diff --git a/.github/CODEOWNERS b/.github/CODEOWNERS new file mode 100644 index 00000000000..ce942deba5f --- /dev/null +++ b/.github/CODEOWNERS @@ -0,0 +1,45 @@ +# Order is important; the last matching pattern takes the most precedence. + +# everything (whole code-base) - Junior Devs +* @pagefaultgames/junior-dev-team + +# github actions/templates etc. - Dev Leads +/.github @pagefaultgames/dev-leads + +# --- Translations --- + +# all translations - Translation Leads +/src/locales @pagefaultgames/translation-leads + +# Catalan (Spain/Spanish) +/src/locales/ca_ES @pagefaultgames/catalan-translation-team + +# German +/src/locales/de @pagefaultgames/german-translation-team + +# English +/src/locales/en @pagefaultgames/english-translation-team + +# Spanish +/src/locales/es @pagefaultgames/spanish-translation-team + +# French +/src/locales/fr @pagefaultgames/french-translation-team + +# Italian +/src/locales/it @pagefaultgames/italian-translation-team + +# Japenese +/src/locales/ja @pagefaultgames/japanese-translation-team + +# Korean +/src/locales/ko @pagefaultgames/korean-translation-team + +# Brasilian (Brasil/Portuguese) +/src/locales/pt_BR @pagefaultgames/portuguese_br-translation-team + +# Chinese (simplified) +/src/locales/zh_CN @pagefaultgames/chinese_simplified-translation-team + +# Chinese (traditional) +/src/locales/zh_TW @pagefaultgames/chinese_traditional-translation-team diff --git a/.github/FUNDING.yml b/.github/FUNDING.yml new file mode 100644 index 00000000000..180c7af1240 --- /dev/null +++ b/.github/FUNDING.yml @@ -0,0 +1 @@ +github: patapancakes diff --git a/.github/ISSUE_TEMPLATE/feature_request.yml b/.github/ISSUE_TEMPLATE/feature_request.yml index 5aec86a0463..843f7feab59 100644 --- a/.github/ISSUE_TEMPLATE/feature_request.yml +++ b/.github/ISSUE_TEMPLATE/feature_request.yml @@ -1,7 +1,7 @@ name: Feature Request description: Suggest an idea for this project title: "[Feature] " -labels: ["enhancement"] +labels: ["Enhancement"] body: - type: markdown attributes: diff --git a/.github/pull_request_template.md b/.github/pull_request_template.md index a765ed4a114..3e6b8bf6d0d 100644 --- a/.github/pull_request_template.md +++ b/.github/pull_request_template.md @@ -30,7 +30,7 @@ - [ ] The PR is self-contained and cannot be split into smaller PRs? - [ ] Have I provided a clear explanation of the changes? - [ ] Have I considered writing automated tests for the issue? -- [ ] If I have text, did I add placeholders for them in locales? +- [ ] If I have text, did I add make it translatable and added a key in the English language? - [ ] Have I tested the changes (manually)? - [ ] Are all unit tests still passing? (`npm run test`) - [ ] Are the changes visual? diff --git a/README.md b/README.md index 77246fa4402..0f9ed992352 100644 --- a/README.md +++ b/README.md @@ -53,6 +53,7 @@ Check out [Github Issues](https://github.com/pagefaultgames/pokerogue/issues) to - Pokémon Sun/Moon - Pokémon Ultra Sun/Ultra Moon - Pokémon Sword/Shield + - Pokémon Legends: Arceus - Pokémon Scarlet/Violet - Firel (Custom Laboratory, Metropolis, Seabed, and Space biome music) - Lmz (Custom Jungle biome music) diff --git a/eslint.config.js b/eslint.config.js index de63fbac82e..eeea38e3178 100644 --- a/eslint.config.js +++ b/eslint.config.js @@ -38,7 +38,8 @@ export default [ "ignoreComments": false // Enforces the rule on lines containing comments }], "space-before-blocks": ["error", "always"], // Enforces a space before blocks - "keyword-spacing": ["error", { "before": true, "after": true }] // Enforces spacing before and after keywords + "keyword-spacing": ["error", { "before": true, "after": true }], // Enforces spacing before and after keywords + "comma-spacing": ["error", { "before": false, "after": true }] // Enforces spacing after comma } } ] diff --git a/index.css b/index.css index 3b74867be5f..abf4f9f708c 100644 --- a/index.css +++ b/index.css @@ -17,6 +17,12 @@ body { background: #484050; } +@media (display-mode: fullscreen) { + body { + background: #000000; + } +} + #links { width: 90%; text-align: center; @@ -142,10 +148,10 @@ input:-internal-autofill-selected { /* Show cycle buttons only on STARTER_SELECT and on touch configuration panel */ #touchControls:not(.config-mode):not([data-ui-mode='STARTER_SELECT']) #apadOpenFilters, -#touchControls:not(.config-mode):not([data-ui-mode='STARTER_SELECT']) #apadCycleForm, -#touchControls:not(.config-mode):not([data-ui-mode='STARTER_SELECT']) #apadCycleShiny, +#touchControls:not(.config-mode):not([data-ui-mode='STARTER_SELECT'], [data-ui-mode='RUN_INFO']) #apadCycleForm, +#touchControls:not(.config-mode):not([data-ui-mode='STARTER_SELECT'], [data-ui-mode='RUN_INFO']) #apadCycleShiny, #touchControls:not(.config-mode):not([data-ui-mode='STARTER_SELECT']) #apadCycleNature, -#touchControls:not(.config-mode):not([data-ui-mode='STARTER_SELECT']) #apadCycleAbility, +#touchControls:not(.config-mode):not([data-ui-mode='STARTER_SELECT'], [data-ui-mode='RUN_INFO']) #apadCycleAbility, #touchControls:not(.config-mode):not([data-ui-mode='STARTER_SELECT']) #apadCycleGender, #touchControls:not(.config-mode):not([data-ui-mode='STARTER_SELECT']) #apadCycleVariant { display: none; diff --git a/public/audio/se/battle_anims/Absorb2.m4a b/public/audio/battle_anims/Absorb2.m4a similarity index 100% rename from public/audio/se/battle_anims/Absorb2.m4a rename to public/audio/battle_anims/Absorb2.m4a diff --git a/public/audio/se/battle_anims/Ace.m4a b/public/audio/battle_anims/Ace.m4a similarity index 100% rename from public/audio/se/battle_anims/Ace.m4a rename to public/audio/battle_anims/Ace.m4a diff --git a/public/audio/se/battle_anims/Acupressure.mp3 b/public/audio/battle_anims/Acupressure.mp3 similarity index 100% rename from public/audio/se/battle_anims/Acupressure.mp3 rename to public/audio/battle_anims/Acupressure.mp3 diff --git a/public/audio/se/battle_anims/Applause.m4a b/public/audio/battle_anims/Applause.m4a similarity index 100% rename from public/audio/se/battle_anims/Applause.m4a rename to public/audio/battle_anims/Applause.m4a diff --git a/public/audio/se/battle_anims/Battle1.m4a b/public/audio/battle_anims/Battle1.m4a similarity index 100% rename from public/audio/se/battle_anims/Battle1.m4a rename to public/audio/battle_anims/Battle1.m4a diff --git a/public/audio/se/battle_anims/Blow1.m4a b/public/audio/battle_anims/Blow1.m4a similarity index 100% rename from public/audio/se/battle_anims/Blow1.m4a rename to public/audio/battle_anims/Blow1.m4a diff --git a/public/audio/se/battle_anims/Blow3.m4a b/public/audio/battle_anims/Blow3.m4a similarity index 100% rename from public/audio/se/battle_anims/Blow3.m4a rename to public/audio/battle_anims/Blow3.m4a diff --git a/public/audio/se/battle_anims/Blow4.m4a b/public/audio/battle_anims/Blow4.m4a similarity index 100% rename from public/audio/se/battle_anims/Blow4.m4a rename to public/audio/battle_anims/Blow4.m4a diff --git a/public/audio/se/battle_anims/Blow5.m4a b/public/audio/battle_anims/Blow5.m4a similarity index 100% rename from public/audio/se/battle_anims/Blow5.m4a rename to public/audio/battle_anims/Blow5.m4a diff --git a/public/audio/se/battle_anims/Blow6.m4a b/public/audio/battle_anims/Blow6.m4a similarity index 100% rename from public/audio/se/battle_anims/Blow6.m4a rename to public/audio/battle_anims/Blow6.m4a diff --git a/public/audio/se/battle_anims/Blow7.m4a b/public/audio/battle_anims/Blow7.m4a similarity index 100% rename from public/audio/se/battle_anims/Blow7.m4a rename to public/audio/battle_anims/Blow7.m4a diff --git a/public/audio/se/battle_anims/Bow1.m4a b/public/audio/battle_anims/Bow1.m4a similarity index 100% rename from public/audio/se/battle_anims/Bow1.m4a rename to public/audio/battle_anims/Bow1.m4a diff --git a/public/audio/se/battle_anims/Collapse1.m4a b/public/audio/battle_anims/Collapse1.m4a similarity index 100% rename from public/audio/se/battle_anims/Collapse1.m4a rename to public/audio/battle_anims/Collapse1.m4a diff --git a/public/audio/se/battle_anims/Comet Punch.mp3 b/public/audio/battle_anims/Comet Punch.mp3 similarity index 100% rename from public/audio/se/battle_anims/Comet Punch.mp3 rename to public/audio/battle_anims/Comet Punch.mp3 diff --git a/public/audio/se/battle_anims/Confuse.m4a b/public/audio/battle_anims/Confuse.m4a similarity index 100% rename from public/audio/se/battle_anims/Confuse.m4a rename to public/audio/battle_anims/Confuse.m4a diff --git a/public/audio/se/battle_anims/Crash.m4a b/public/audio/battle_anims/Crash.m4a similarity index 100% rename from public/audio/se/battle_anims/Crash.m4a rename to public/audio/battle_anims/Crash.m4a diff --git a/public/audio/se/battle_anims/Damage1.m4a b/public/audio/battle_anims/Damage1.m4a similarity index 100% rename from public/audio/se/battle_anims/Damage1.m4a rename to public/audio/battle_anims/Damage1.m4a diff --git a/public/audio/se/battle_anims/Darkness2.m4a b/public/audio/battle_anims/Darkness2.m4a similarity index 100% rename from public/audio/se/battle_anims/Darkness2.m4a rename to public/audio/battle_anims/Darkness2.m4a diff --git a/public/audio/se/battle_anims/Darkness6.m4a b/public/audio/battle_anims/Darkness6.m4a similarity index 100% rename from public/audio/se/battle_anims/Darkness6.m4a rename to public/audio/battle_anims/Darkness6.m4a diff --git a/public/audio/se/battle_anims/Defense Curl.mp3 b/public/audio/battle_anims/Defense Curl.mp3 similarity index 100% rename from public/audio/se/battle_anims/Defense Curl.mp3 rename to public/audio/battle_anims/Defense Curl.mp3 diff --git a/public/audio/se/battle_anims/Dizzy Punch.mp3 b/public/audio/battle_anims/Dizzy Punch.mp3 similarity index 100% rename from public/audio/se/battle_anims/Dizzy Punch.mp3 rename to public/audio/battle_anims/Dizzy Punch.mp3 diff --git a/public/audio/se/battle_anims/Earth1.m4a b/public/audio/battle_anims/Earth1.m4a similarity index 100% rename from public/audio/se/battle_anims/Earth1.m4a rename to public/audio/battle_anims/Earth1.m4a diff --git a/public/audio/se/battle_anims/Earth3.m4a b/public/audio/battle_anims/Earth3.m4a similarity index 100% rename from public/audio/se/battle_anims/Earth3.m4a rename to public/audio/battle_anims/Earth3.m4a diff --git a/public/audio/se/battle_anims/Earth4.m4a b/public/audio/battle_anims/Earth4.m4a similarity index 100% rename from public/audio/se/battle_anims/Earth4.m4a rename to public/audio/battle_anims/Earth4.m4a diff --git a/public/audio/se/battle_anims/Earth5.m4a b/public/audio/battle_anims/Earth5.m4a similarity index 100% rename from public/audio/se/battle_anims/Earth5.m4a rename to public/audio/battle_anims/Earth5.m4a diff --git a/public/audio/se/battle_anims/Explosion.mp3 b/public/audio/battle_anims/Explosion.mp3 similarity index 100% rename from public/audio/se/battle_anims/Explosion.mp3 rename to public/audio/battle_anims/Explosion.mp3 diff --git a/public/audio/se/battle_anims/Explosion1.m4a b/public/audio/battle_anims/Explosion1.m4a similarity index 100% rename from public/audio/se/battle_anims/Explosion1.m4a rename to public/audio/battle_anims/Explosion1.m4a diff --git a/public/audio/se/battle_anims/Explosion2.m4a b/public/audio/battle_anims/Explosion2.m4a similarity index 100% rename from public/audio/se/battle_anims/Explosion2.m4a rename to public/audio/battle_anims/Explosion2.m4a diff --git a/public/audio/se/battle_anims/Explosion3.m4a b/public/audio/battle_anims/Explosion3.m4a similarity index 100% rename from public/audio/se/battle_anims/Explosion3.m4a rename to public/audio/battle_anims/Explosion3.m4a diff --git a/public/audio/se/battle_anims/Explosion4.m4a b/public/audio/battle_anims/Explosion4.m4a similarity index 100% rename from public/audio/se/battle_anims/Explosion4.m4a rename to public/audio/battle_anims/Explosion4.m4a diff --git a/public/audio/se/battle_anims/Explosion6.m4a b/public/audio/battle_anims/Explosion6.m4a similarity index 100% rename from public/audio/se/battle_anims/Explosion6.m4a rename to public/audio/battle_anims/Explosion6.m4a diff --git a/public/audio/se/battle_anims/Explosion7.m4a b/public/audio/battle_anims/Explosion7.m4a similarity index 100% rename from public/audio/se/battle_anims/Explosion7.m4a rename to public/audio/battle_anims/Explosion7.m4a diff --git a/public/audio/se/battle_anims/Fire1.m4a b/public/audio/battle_anims/Fire1.m4a similarity index 100% rename from public/audio/se/battle_anims/Fire1.m4a rename to public/audio/battle_anims/Fire1.m4a diff --git a/public/audio/se/battle_anims/Fire2.m4a b/public/audio/battle_anims/Fire2.m4a similarity index 100% rename from public/audio/se/battle_anims/Fire2.m4a rename to public/audio/battle_anims/Fire2.m4a diff --git a/public/audio/se/battle_anims/Fire3.m4a b/public/audio/battle_anims/Fire3.m4a similarity index 100% rename from public/audio/se/battle_anims/Fire3.m4a rename to public/audio/battle_anims/Fire3.m4a diff --git a/public/audio/se/battle_anims/Fire4.m4a b/public/audio/battle_anims/Fire4.m4a similarity index 100% rename from public/audio/se/battle_anims/Fire4.m4a rename to public/audio/battle_anims/Fire4.m4a diff --git a/public/audio/se/battle_anims/Fire5.m4a b/public/audio/battle_anims/Fire5.m4a similarity index 100% rename from public/audio/se/battle_anims/Fire5.m4a rename to public/audio/battle_anims/Fire5.m4a diff --git a/public/audio/se/battle_anims/Fire6.m4a b/public/audio/battle_anims/Fire6.m4a similarity index 100% rename from public/audio/se/battle_anims/Fire6.m4a rename to public/audio/battle_anims/Fire6.m4a diff --git a/public/audio/se/battle_anims/Flail.mp3 b/public/audio/battle_anims/Flail.mp3 similarity index 100% rename from public/audio/se/battle_anims/Flail.mp3 rename to public/audio/battle_anims/Flail.mp3 diff --git a/public/audio/se/battle_anims/Flash2.m4a b/public/audio/battle_anims/Flash2.m4a similarity index 100% rename from public/audio/se/battle_anims/Flash2.m4a rename to public/audio/battle_anims/Flash2.m4a diff --git a/public/audio/se/battle_anims/Follow Me.mp3 b/public/audio/battle_anims/Follow Me.mp3 similarity index 100% rename from public/audio/se/battle_anims/Follow Me.mp3 rename to public/audio/battle_anims/Follow Me.mp3 diff --git a/public/audio/se/battle_anims/Fury Swipes.m4a b/public/audio/battle_anims/Fury Swipes.m4a similarity index 100% rename from public/audio/se/battle_anims/Fury Swipes.m4a rename to public/audio/battle_anims/Fury Swipes.m4a diff --git a/public/audio/se/battle_anims/GEN8- Electricity1.wav b/public/audio/battle_anims/GEN8- Electricity1.wav similarity index 100% rename from public/audio/se/battle_anims/GEN8- Electricity1.wav rename to public/audio/battle_anims/GEN8- Electricity1.wav diff --git a/public/audio/se/battle_anims/GEN8- Exclaim.wav b/public/audio/battle_anims/GEN8- Exclaim.wav similarity index 100% rename from public/audio/se/battle_anims/GEN8- Exclaim.wav rename to public/audio/battle_anims/GEN8- Exclaim.wav diff --git a/public/audio/se/battle_anims/GEN8- Revelation Dance 1.m4a b/public/audio/battle_anims/GEN8- Revelation Dance 1.m4a similarity index 100% rename from public/audio/se/battle_anims/GEN8- Revelation Dance 1.m4a rename to public/audio/battle_anims/GEN8- Revelation Dance 1.m4a diff --git a/public/audio/se/battle_anims/GEN8- Revelation Dance 2.m4a b/public/audio/battle_anims/GEN8- Revelation Dance 2.m4a similarity index 100% rename from public/audio/se/battle_anims/GEN8- Revelation Dance 2.m4a rename to public/audio/battle_anims/GEN8- Revelation Dance 2.m4a diff --git a/public/audio/se/battle_anims/Gen8- Pyroball.wav b/public/audio/battle_anims/Gen8- Pyroball.wav similarity index 100% rename from public/audio/se/battle_anims/Gen8- Pyroball.wav rename to public/audio/battle_anims/Gen8- Pyroball.wav diff --git a/public/audio/se/battle_anims/Harden.mp3 b/public/audio/battle_anims/Harden.mp3 similarity index 100% rename from public/audio/se/battle_anims/Harden.mp3 rename to public/audio/battle_anims/Harden.mp3 diff --git a/public/audio/se/battle_anims/Ice2.m4a b/public/audio/battle_anims/Ice2.m4a similarity index 100% rename from public/audio/se/battle_anims/Ice2.m4a rename to public/audio/battle_anims/Ice2.m4a diff --git a/public/audio/se/battle_anims/Ice5.m4a b/public/audio/battle_anims/Ice5.m4a similarity index 100% rename from public/audio/se/battle_anims/Ice5.m4a rename to public/audio/battle_anims/Ice5.m4a diff --git a/public/audio/se/battle_anims/Ice8.m4a b/public/audio/battle_anims/Ice8.m4a similarity index 100% rename from public/audio/se/battle_anims/Ice8.m4a rename to public/audio/battle_anims/Ice8.m4a diff --git a/public/audio/se/battle_anims/Knock.m4a b/public/audio/battle_anims/Knock.m4a similarity index 100% rename from public/audio/se/battle_anims/Knock.m4a rename to public/audio/battle_anims/Knock.m4a diff --git a/public/audio/se/battle_anims/Lock On.mp3 b/public/audio/battle_anims/Lock On.mp3 similarity index 100% rename from public/audio/se/battle_anims/Lock On.mp3 rename to public/audio/battle_anims/Lock On.mp3 diff --git a/public/audio/se/battle_anims/Lovely Kiss.mp3 b/public/audio/battle_anims/Lovely Kiss.mp3 similarity index 100% rename from public/audio/se/battle_anims/Lovely Kiss.mp3 rename to public/audio/battle_anims/Lovely Kiss.mp3 diff --git a/public/audio/se/battle_anims/Lucky Chant.mp3 b/public/audio/battle_anims/Lucky Chant.mp3 similarity index 100% rename from public/audio/se/battle_anims/Lucky Chant.mp3 rename to public/audio/battle_anims/Lucky Chant.mp3 diff --git a/public/audio/se/battle_anims/Mega Punch.mp3 b/public/audio/battle_anims/Mega Punch.mp3 similarity index 100% rename from public/audio/se/battle_anims/Mega Punch.mp3 rename to public/audio/battle_anims/Mega Punch.mp3 diff --git a/public/audio/se/battle_anims/Metronome.mp3 b/public/audio/battle_anims/Metronome.mp3 similarity index 100% rename from public/audio/se/battle_anims/Metronome.mp3 rename to public/audio/battle_anims/Metronome.mp3 diff --git a/public/audio/se/battle_anims/MiningCollapse.mp3 b/public/audio/battle_anims/MiningCollapse.mp3 similarity index 100% rename from public/audio/se/battle_anims/MiningCollapse.mp3 rename to public/audio/battle_anims/MiningCollapse.mp3 diff --git a/public/audio/se/battle_anims/MiningPing.mp3 b/public/audio/battle_anims/MiningPing.mp3 similarity index 100% rename from public/audio/se/battle_anims/MiningPing.mp3 rename to public/audio/battle_anims/MiningPing.mp3 diff --git a/public/audio/se/battle_anims/Natural Gift.mp3 b/public/audio/battle_anims/Natural Gift.mp3 similarity index 100% rename from public/audio/se/battle_anims/Natural Gift.mp3 rename to public/audio/battle_anims/Natural Gift.mp3 diff --git a/public/audio/se/battle_anims/PRSFX- Absorb1.wav b/public/audio/battle_anims/PRSFX- Absorb1.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Absorb1.wav rename to public/audio/battle_anims/PRSFX- Absorb1.wav diff --git a/public/audio/se/battle_anims/PRSFX- Absorb2.wav b/public/audio/battle_anims/PRSFX- Absorb2.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Absorb2.wav rename to public/audio/battle_anims/PRSFX- Absorb2.wav diff --git a/public/audio/se/battle_anims/PRSFX- Accelerock1.wav b/public/audio/battle_anims/PRSFX- Accelerock1.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Accelerock1.wav rename to public/audio/battle_anims/PRSFX- Accelerock1.wav diff --git a/public/audio/se/battle_anims/PRSFX- Accelerock2.wav b/public/audio/battle_anims/PRSFX- Accelerock2.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Accelerock2.wav rename to public/audio/battle_anims/PRSFX- Accelerock2.wav diff --git a/public/audio/se/battle_anims/PRSFX- Accelerock3.wav b/public/audio/battle_anims/PRSFX- Accelerock3.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Accelerock3.wav rename to public/audio/battle_anims/PRSFX- Accelerock3.wav diff --git a/public/audio/se/battle_anims/PRSFX- Acid Armor1.wav b/public/audio/battle_anims/PRSFX- Acid Armor1.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Acid Armor1.wav rename to public/audio/battle_anims/PRSFX- Acid Armor1.wav diff --git a/public/audio/se/battle_anims/PRSFX- Acid Armor2.wav b/public/audio/battle_anims/PRSFX- Acid Armor2.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Acid Armor2.wav rename to public/audio/battle_anims/PRSFX- Acid Armor2.wav diff --git a/public/audio/se/battle_anims/PRSFX- Acid Spray.wav b/public/audio/battle_anims/PRSFX- Acid Spray.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Acid Spray.wav rename to public/audio/battle_anims/PRSFX- Acid Spray.wav diff --git a/public/audio/se/battle_anims/PRSFX- Acid.wav b/public/audio/battle_anims/PRSFX- Acid.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Acid.wav rename to public/audio/battle_anims/PRSFX- Acid.wav diff --git a/public/audio/se/battle_anims/PRSFX- Acrobatics1.wav b/public/audio/battle_anims/PRSFX- Acrobatics1.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Acrobatics1.wav rename to public/audio/battle_anims/PRSFX- Acrobatics1.wav diff --git a/public/audio/se/battle_anims/PRSFX- Acrobatics2.wav b/public/audio/battle_anims/PRSFX- Acrobatics2.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Acrobatics2.wav rename to public/audio/battle_anims/PRSFX- Acrobatics2.wav diff --git a/public/audio/se/battle_anims/PRSFX- Acrobatics3.wav b/public/audio/battle_anims/PRSFX- Acrobatics3.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Acrobatics3.wav rename to public/audio/battle_anims/PRSFX- Acrobatics3.wav diff --git a/public/audio/se/battle_anims/PRSFX- Acupressure1.wav b/public/audio/battle_anims/PRSFX- Acupressure1.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Acupressure1.wav rename to public/audio/battle_anims/PRSFX- Acupressure1.wav diff --git a/public/audio/se/battle_anims/PRSFX- Acupressure2.wav b/public/audio/battle_anims/PRSFX- Acupressure2.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Acupressure2.wav rename to public/audio/battle_anims/PRSFX- Acupressure2.wav diff --git a/public/audio/se/battle_anims/PRSFX- Aerial Ace.wav b/public/audio/battle_anims/PRSFX- Aerial Ace.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Aerial Ace.wav rename to public/audio/battle_anims/PRSFX- Aerial Ace.wav diff --git a/public/audio/se/battle_anims/PRSFX- Aeroblast.wav b/public/audio/battle_anims/PRSFX- Aeroblast.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Aeroblast.wav rename to public/audio/battle_anims/PRSFX- Aeroblast.wav diff --git a/public/audio/se/battle_anims/PRSFX- After You1.wav b/public/audio/battle_anims/PRSFX- After You1.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- After You1.wav rename to public/audio/battle_anims/PRSFX- After You1.wav diff --git a/public/audio/se/battle_anims/PRSFX- After You2.wav b/public/audio/battle_anims/PRSFX- After You2.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- After You2.wav rename to public/audio/battle_anims/PRSFX- After You2.wav diff --git a/public/audio/se/battle_anims/PRSFX- Agility.wav b/public/audio/battle_anims/PRSFX- Agility.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Agility.wav rename to public/audio/battle_anims/PRSFX- Agility.wav diff --git a/public/audio/se/battle_anims/PRSFX- Air Cutter1.wav b/public/audio/battle_anims/PRSFX- Air Cutter1.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Air Cutter1.wav rename to public/audio/battle_anims/PRSFX- Air Cutter1.wav diff --git a/public/audio/se/battle_anims/PRSFX- Air Cutter2.wav b/public/audio/battle_anims/PRSFX- Air Cutter2.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Air Cutter2.wav rename to public/audio/battle_anims/PRSFX- Air Cutter2.wav diff --git a/public/audio/se/battle_anims/PRSFX- Air Slash1.wav b/public/audio/battle_anims/PRSFX- Air Slash1.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Air Slash1.wav rename to public/audio/battle_anims/PRSFX- Air Slash1.wav diff --git a/public/audio/se/battle_anims/PRSFX- Air Slash2.wav b/public/audio/battle_anims/PRSFX- Air Slash2.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Air Slash2.wav rename to public/audio/battle_anims/PRSFX- Air Slash2.wav diff --git a/public/audio/se/battle_anims/PRSFX- Air Slash3.wav b/public/audio/battle_anims/PRSFX- Air Slash3.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Air Slash3.wav rename to public/audio/battle_anims/PRSFX- Air Slash3.wav diff --git a/public/audio/se/battle_anims/PRSFX- All Out Pummeling1.wav b/public/audio/battle_anims/PRSFX- All Out Pummeling1.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- All Out Pummeling1.wav rename to public/audio/battle_anims/PRSFX- All Out Pummeling1.wav diff --git a/public/audio/se/battle_anims/PRSFX- All Out Pummeling2.wav b/public/audio/battle_anims/PRSFX- All Out Pummeling2.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- All Out Pummeling2.wav rename to public/audio/battle_anims/PRSFX- All Out Pummeling2.wav diff --git a/public/audio/se/battle_anims/PRSFX- All Out Pummeling3.wav b/public/audio/battle_anims/PRSFX- All Out Pummeling3.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- All Out Pummeling3.wav rename to public/audio/battle_anims/PRSFX- All Out Pummeling3.wav diff --git a/public/audio/se/battle_anims/PRSFX- Ally Switch.wav b/public/audio/battle_anims/PRSFX- Ally Switch.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Ally Switch.wav rename to public/audio/battle_anims/PRSFX- Ally Switch.wav diff --git a/public/audio/se/battle_anims/PRSFX- Amnesia.wav b/public/audio/battle_anims/PRSFX- Amnesia.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Amnesia.wav rename to public/audio/battle_anims/PRSFX- Amnesia.wav diff --git a/public/audio/se/battle_anims/PRSFX- Anchor Shot.wav b/public/audio/battle_anims/PRSFX- Anchor Shot.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Anchor Shot.wav rename to public/audio/battle_anims/PRSFX- Anchor Shot.wav diff --git a/public/audio/se/battle_anims/PRSFX- Anchor Shot1.wav b/public/audio/battle_anims/PRSFX- Anchor Shot1.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Anchor Shot1.wav rename to public/audio/battle_anims/PRSFX- Anchor Shot1.wav diff --git a/public/audio/se/battle_anims/PRSFX- Anchor Shot2.wav b/public/audio/battle_anims/PRSFX- Anchor Shot2.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Anchor Shot2.wav rename to public/audio/battle_anims/PRSFX- Anchor Shot2.wav diff --git a/public/audio/se/battle_anims/PRSFX- Ancient Power1.wav b/public/audio/battle_anims/PRSFX- Ancient Power1.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Ancient Power1.wav rename to public/audio/battle_anims/PRSFX- Ancient Power1.wav diff --git a/public/audio/se/battle_anims/PRSFX- Ancient Power2.wav b/public/audio/battle_anims/PRSFX- Ancient Power2.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Ancient Power2.wav rename to public/audio/battle_anims/PRSFX- Ancient Power2.wav diff --git a/public/audio/se/battle_anims/PRSFX- Aqua Jet.wav b/public/audio/battle_anims/PRSFX- Aqua Jet.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Aqua Jet.wav rename to public/audio/battle_anims/PRSFX- Aqua Jet.wav diff --git a/public/audio/se/battle_anims/PRSFX- Aqua Ring1.wav b/public/audio/battle_anims/PRSFX- Aqua Ring1.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Aqua Ring1.wav rename to public/audio/battle_anims/PRSFX- Aqua Ring1.wav diff --git a/public/audio/se/battle_anims/PRSFX- Aqua Ring2.wav b/public/audio/battle_anims/PRSFX- Aqua Ring2.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Aqua Ring2.wav rename to public/audio/battle_anims/PRSFX- Aqua Ring2.wav diff --git a/public/audio/se/battle_anims/PRSFX- Aqua Tail.wav b/public/audio/battle_anims/PRSFX- Aqua Tail.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Aqua Tail.wav rename to public/audio/battle_anims/PRSFX- Aqua Tail.wav diff --git a/public/audio/se/battle_anims/PRSFX- Arm Thrust.wav b/public/audio/battle_anims/PRSFX- Arm Thrust.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Arm Thrust.wav rename to public/audio/battle_anims/PRSFX- Arm Thrust.wav diff --git a/public/audio/se/battle_anims/PRSFX- Aromatherapy.wav b/public/audio/battle_anims/PRSFX- Aromatherapy.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Aromatherapy.wav rename to public/audio/battle_anims/PRSFX- Aromatherapy.wav diff --git a/public/audio/se/battle_anims/PRSFX- Aromatic Mist.wav b/public/audio/battle_anims/PRSFX- Aromatic Mist.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Aromatic Mist.wav rename to public/audio/battle_anims/PRSFX- Aromatic Mist.wav diff --git a/public/audio/se/battle_anims/PRSFX- Assist.wav b/public/audio/battle_anims/PRSFX- Assist.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Assist.wav rename to public/audio/battle_anims/PRSFX- Assist.wav diff --git a/public/audio/se/battle_anims/PRSFX- Assurance.wav b/public/audio/battle_anims/PRSFX- Assurance.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Assurance.wav rename to public/audio/battle_anims/PRSFX- Assurance.wav diff --git a/public/audio/se/battle_anims/PRSFX- Astonish1.wav b/public/audio/battle_anims/PRSFX- Astonish1.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Astonish1.wav rename to public/audio/battle_anims/PRSFX- Astonish1.wav diff --git a/public/audio/se/battle_anims/PRSFX- Astonish2.wav b/public/audio/battle_anims/PRSFX- Astonish2.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Astonish2.wav rename to public/audio/battle_anims/PRSFX- Astonish2.wav diff --git a/public/audio/se/battle_anims/PRSFX- Attack Order1.wav b/public/audio/battle_anims/PRSFX- Attack Order1.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Attack Order1.wav rename to public/audio/battle_anims/PRSFX- Attack Order1.wav diff --git a/public/audio/se/battle_anims/PRSFX- Attack Order2.wav b/public/audio/battle_anims/PRSFX- Attack Order2.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Attack Order2.wav rename to public/audio/battle_anims/PRSFX- Attack Order2.wav diff --git a/public/audio/se/battle_anims/PRSFX- Attract.wav b/public/audio/battle_anims/PRSFX- Attract.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Attract.wav rename to public/audio/battle_anims/PRSFX- Attract.wav diff --git a/public/audio/se/battle_anims/PRSFX- Attract1.wav b/public/audio/battle_anims/PRSFX- Attract1.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Attract1.wav rename to public/audio/battle_anims/PRSFX- Attract1.wav diff --git a/public/audio/se/battle_anims/PRSFX- Attract2.wav b/public/audio/battle_anims/PRSFX- Attract2.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Attract2.wav rename to public/audio/battle_anims/PRSFX- Attract2.wav diff --git a/public/audio/se/battle_anims/PRSFX- Aura Sphere1.wav b/public/audio/battle_anims/PRSFX- Aura Sphere1.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Aura Sphere1.wav rename to public/audio/battle_anims/PRSFX- Aura Sphere1.wav diff --git a/public/audio/se/battle_anims/PRSFX- Aura Sphere2.wav b/public/audio/battle_anims/PRSFX- Aura Sphere2.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Aura Sphere2.wav rename to public/audio/battle_anims/PRSFX- Aura Sphere2.wav diff --git a/public/audio/se/battle_anims/PRSFX- Aurora Beam.wav b/public/audio/battle_anims/PRSFX- Aurora Beam.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Aurora Beam.wav rename to public/audio/battle_anims/PRSFX- Aurora Beam.wav diff --git a/public/audio/se/battle_anims/PRSFX- Aurora Veil1.wav b/public/audio/battle_anims/PRSFX- Aurora Veil1.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Aurora Veil1.wav rename to public/audio/battle_anims/PRSFX- Aurora Veil1.wav diff --git a/public/audio/se/battle_anims/PRSFX- Aurora Veil2.wav b/public/audio/battle_anims/PRSFX- Aurora Veil2.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Aurora Veil2.wav rename to public/audio/battle_anims/PRSFX- Aurora Veil2.wav diff --git a/public/audio/se/battle_anims/PRSFX- Aurora Veil3.wav b/public/audio/battle_anims/PRSFX- Aurora Veil3.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Aurora Veil3.wav rename to public/audio/battle_anims/PRSFX- Aurora Veil3.wav diff --git a/public/audio/se/battle_anims/PRSFX- Aurora Veil4.wav b/public/audio/battle_anims/PRSFX- Aurora Veil4.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Aurora Veil4.wav rename to public/audio/battle_anims/PRSFX- Aurora Veil4.wav diff --git a/public/audio/se/battle_anims/PRSFX- Autotomize.wav b/public/audio/battle_anims/PRSFX- Autotomize.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Autotomize.wav rename to public/audio/battle_anims/PRSFX- Autotomize.wav diff --git a/public/audio/se/battle_anims/PRSFX- Autotomize1.mp3 b/public/audio/battle_anims/PRSFX- Autotomize1.mp3 similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Autotomize1.mp3 rename to public/audio/battle_anims/PRSFX- Autotomize1.mp3 diff --git a/public/audio/se/battle_anims/PRSFX- Autotomize2.wav b/public/audio/battle_anims/PRSFX- Autotomize2.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Autotomize2.wav rename to public/audio/battle_anims/PRSFX- Autotomize2.wav diff --git a/public/audio/se/battle_anims/PRSFX- Avalanche.wav b/public/audio/battle_anims/PRSFX- Avalanche.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Avalanche.wav rename to public/audio/battle_anims/PRSFX- Avalanche.wav diff --git a/public/audio/se/battle_anims/PRSFX- Baby Doll Eyes.wav b/public/audio/battle_anims/PRSFX- Baby Doll Eyes.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Baby Doll Eyes.wav rename to public/audio/battle_anims/PRSFX- Baby Doll Eyes.wav diff --git a/public/audio/se/battle_anims/PRSFX- Baneful Bunker1.wav b/public/audio/battle_anims/PRSFX- Baneful Bunker1.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Baneful Bunker1.wav rename to public/audio/battle_anims/PRSFX- Baneful Bunker1.wav diff --git a/public/audio/se/battle_anims/PRSFX- Baneful Bunker2.wav b/public/audio/battle_anims/PRSFX- Baneful Bunker2.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Baneful Bunker2.wav rename to public/audio/battle_anims/PRSFX- Baneful Bunker2.wav diff --git a/public/audio/se/battle_anims/PRSFX- Baneful Bunker3.wav b/public/audio/battle_anims/PRSFX- Baneful Bunker3.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Baneful Bunker3.wav rename to public/audio/battle_anims/PRSFX- Baneful Bunker3.wav diff --git a/public/audio/se/battle_anims/PRSFX- Barrage1.wav b/public/audio/battle_anims/PRSFX- Barrage1.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Barrage1.wav rename to public/audio/battle_anims/PRSFX- Barrage1.wav diff --git a/public/audio/se/battle_anims/PRSFX- Barrage2.wav b/public/audio/battle_anims/PRSFX- Barrage2.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Barrage2.wav rename to public/audio/battle_anims/PRSFX- Barrage2.wav diff --git a/public/audio/se/battle_anims/PRSFX- Barrier.wav b/public/audio/battle_anims/PRSFX- Barrier.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Barrier.wav rename to public/audio/battle_anims/PRSFX- Barrier.wav diff --git a/public/audio/se/battle_anims/PRSFX- Baton Pass1.wav b/public/audio/battle_anims/PRSFX- Baton Pass1.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Baton Pass1.wav rename to public/audio/battle_anims/PRSFX- Baton Pass1.wav diff --git a/public/audio/se/battle_anims/PRSFX- Baton Pass2.wav b/public/audio/battle_anims/PRSFX- Baton Pass2.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Baton Pass2.wav rename to public/audio/battle_anims/PRSFX- Baton Pass2.wav diff --git a/public/audio/se/battle_anims/PRSFX- Beak Blast1.wav b/public/audio/battle_anims/PRSFX- Beak Blast1.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Beak Blast1.wav rename to public/audio/battle_anims/PRSFX- Beak Blast1.wav diff --git a/public/audio/se/battle_anims/PRSFX- Beak Blast2.wav b/public/audio/battle_anims/PRSFX- Beak Blast2.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Beak Blast2.wav rename to public/audio/battle_anims/PRSFX- Beak Blast2.wav diff --git a/public/audio/se/battle_anims/PRSFX- Beak Blast3.wav b/public/audio/battle_anims/PRSFX- Beak Blast3.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Beak Blast3.wav rename to public/audio/battle_anims/PRSFX- Beak Blast3.wav diff --git a/public/audio/se/battle_anims/PRSFX- Beak Blast4.wav b/public/audio/battle_anims/PRSFX- Beak Blast4.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Beak Blast4.wav rename to public/audio/battle_anims/PRSFX- Beak Blast4.wav diff --git a/public/audio/se/battle_anims/PRSFX- Beat Up.wav b/public/audio/battle_anims/PRSFX- Beat Up.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Beat Up.wav rename to public/audio/battle_anims/PRSFX- Beat Up.wav diff --git a/public/audio/se/battle_anims/PRSFX- Belch1.wav b/public/audio/battle_anims/PRSFX- Belch1.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Belch1.wav rename to public/audio/battle_anims/PRSFX- Belch1.wav diff --git a/public/audio/se/battle_anims/PRSFX- Belch2.wav b/public/audio/battle_anims/PRSFX- Belch2.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Belch2.wav rename to public/audio/battle_anims/PRSFX- Belch2.wav diff --git a/public/audio/se/battle_anims/PRSFX- Belch3.wav b/public/audio/battle_anims/PRSFX- Belch3.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Belch3.wav rename to public/audio/battle_anims/PRSFX- Belch3.wav diff --git a/public/audio/se/battle_anims/PRSFX- Belly Drum.wav b/public/audio/battle_anims/PRSFX- Belly Drum.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Belly Drum.wav rename to public/audio/battle_anims/PRSFX- Belly Drum.wav diff --git a/public/audio/se/battle_anims/PRSFX- Bestow1.wav b/public/audio/battle_anims/PRSFX- Bestow1.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Bestow1.wav rename to public/audio/battle_anims/PRSFX- Bestow1.wav diff --git a/public/audio/se/battle_anims/PRSFX- Bestow2.wav b/public/audio/battle_anims/PRSFX- Bestow2.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Bestow2.wav rename to public/audio/battle_anims/PRSFX- Bestow2.wav diff --git a/public/audio/se/battle_anims/PRSFX- Bide1.wav b/public/audio/battle_anims/PRSFX- Bide1.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Bide1.wav rename to public/audio/battle_anims/PRSFX- Bide1.wav diff --git a/public/audio/se/battle_anims/PRSFX- Bide2.wav b/public/audio/battle_anims/PRSFX- Bide2.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Bide2.wav rename to public/audio/battle_anims/PRSFX- Bide2.wav diff --git a/public/audio/se/battle_anims/PRSFX- Bind.wav b/public/audio/battle_anims/PRSFX- Bind.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Bind.wav rename to public/audio/battle_anims/PRSFX- Bind.wav diff --git a/public/audio/se/battle_anims/PRSFX- Bite.wav b/public/audio/battle_anims/PRSFX- Bite.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Bite.wav rename to public/audio/battle_anims/PRSFX- Bite.wav diff --git a/public/audio/se/battle_anims/PRSFX- Black Hole Eclipse1.wav b/public/audio/battle_anims/PRSFX- Black Hole Eclipse1.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Black Hole Eclipse1.wav rename to public/audio/battle_anims/PRSFX- Black Hole Eclipse1.wav diff --git a/public/audio/se/battle_anims/PRSFX- Black Hole Eclipse2.wav b/public/audio/battle_anims/PRSFX- Black Hole Eclipse2.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Black Hole Eclipse2.wav rename to public/audio/battle_anims/PRSFX- Black Hole Eclipse2.wav diff --git a/public/audio/se/battle_anims/PRSFX- Black Hole Eclipse3.wav b/public/audio/battle_anims/PRSFX- Black Hole Eclipse3.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Black Hole Eclipse3.wav rename to public/audio/battle_anims/PRSFX- Black Hole Eclipse3.wav diff --git a/public/audio/se/battle_anims/PRSFX- Black Hole Eclipse4.wav b/public/audio/battle_anims/PRSFX- Black Hole Eclipse4.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Black Hole Eclipse4.wav rename to public/audio/battle_anims/PRSFX- Black Hole Eclipse4.wav diff --git a/public/audio/se/battle_anims/PRSFX- Blast Burn.wav b/public/audio/battle_anims/PRSFX- Blast Burn.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Blast Burn.wav rename to public/audio/battle_anims/PRSFX- Blast Burn.wav diff --git a/public/audio/se/battle_anims/PRSFX- Blast Burn2.wav b/public/audio/battle_anims/PRSFX- Blast Burn2.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Blast Burn2.wav rename to public/audio/battle_anims/PRSFX- Blast Burn2.wav diff --git a/public/audio/se/battle_anims/PRSFX- Blast Burn3.wav b/public/audio/battle_anims/PRSFX- Blast Burn3.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Blast Burn3.wav rename to public/audio/battle_anims/PRSFX- Blast Burn3.wav diff --git a/public/audio/se/battle_anims/PRSFX- Blaze Kick1.wav b/public/audio/battle_anims/PRSFX- Blaze Kick1.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Blaze Kick1.wav rename to public/audio/battle_anims/PRSFX- Blaze Kick1.wav diff --git a/public/audio/se/battle_anims/PRSFX- Blaze Kick2.wav b/public/audio/battle_anims/PRSFX- Blaze Kick2.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Blaze Kick2.wav rename to public/audio/battle_anims/PRSFX- Blaze Kick2.wav diff --git a/public/audio/se/battle_anims/PRSFX- Blizzard.wav b/public/audio/battle_anims/PRSFX- Blizzard.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Blizzard.wav rename to public/audio/battle_anims/PRSFX- Blizzard.wav diff --git a/public/audio/se/battle_anims/PRSFX- Block.wav b/public/audio/battle_anims/PRSFX- Block.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Block.wav rename to public/audio/battle_anims/PRSFX- Block.wav diff --git a/public/audio/se/battle_anims/PRSFX- Bloom Doom1.wav b/public/audio/battle_anims/PRSFX- Bloom Doom1.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Bloom Doom1.wav rename to public/audio/battle_anims/PRSFX- Bloom Doom1.wav diff --git a/public/audio/se/battle_anims/PRSFX- Bloom Doom2.wav b/public/audio/battle_anims/PRSFX- Bloom Doom2.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Bloom Doom2.wav rename to public/audio/battle_anims/PRSFX- Bloom Doom2.wav diff --git a/public/audio/se/battle_anims/PRSFX- Bloom Doom3.wav b/public/audio/battle_anims/PRSFX- Bloom Doom3.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Bloom Doom3.wav rename to public/audio/battle_anims/PRSFX- Bloom Doom3.wav diff --git a/public/audio/se/battle_anims/PRSFX- Blue Flare1.wav b/public/audio/battle_anims/PRSFX- Blue Flare1.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Blue Flare1.wav rename to public/audio/battle_anims/PRSFX- Blue Flare1.wav diff --git a/public/audio/se/battle_anims/PRSFX- Blue Flare2.wav b/public/audio/battle_anims/PRSFX- Blue Flare2.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Blue Flare2.wav rename to public/audio/battle_anims/PRSFX- Blue Flare2.wav diff --git a/public/audio/se/battle_anims/PRSFX- Body Slam1.wav b/public/audio/battle_anims/PRSFX- Body Slam1.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Body Slam1.wav rename to public/audio/battle_anims/PRSFX- Body Slam1.wav diff --git a/public/audio/se/battle_anims/PRSFX- Body Slam2.wav b/public/audio/battle_anims/PRSFX- Body Slam2.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Body Slam2.wav rename to public/audio/battle_anims/PRSFX- Body Slam2.wav diff --git a/public/audio/se/battle_anims/PRSFX- Bolt Strike1.wav b/public/audio/battle_anims/PRSFX- Bolt Strike1.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Bolt Strike1.wav rename to public/audio/battle_anims/PRSFX- Bolt Strike1.wav diff --git a/public/audio/se/battle_anims/PRSFX- Bolt Strike2.wav b/public/audio/battle_anims/PRSFX- Bolt Strike2.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Bolt Strike2.wav rename to public/audio/battle_anims/PRSFX- Bolt Strike2.wav diff --git a/public/audio/se/battle_anims/PRSFX- Bone Club1.wav b/public/audio/battle_anims/PRSFX- Bone Club1.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Bone Club1.wav rename to public/audio/battle_anims/PRSFX- Bone Club1.wav diff --git a/public/audio/se/battle_anims/PRSFX- Bone Club2.wav b/public/audio/battle_anims/PRSFX- Bone Club2.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Bone Club2.wav rename to public/audio/battle_anims/PRSFX- Bone Club2.wav diff --git a/public/audio/se/battle_anims/PRSFX- Bone Rush1.wav b/public/audio/battle_anims/PRSFX- Bone Rush1.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Bone Rush1.wav rename to public/audio/battle_anims/PRSFX- Bone Rush1.wav diff --git a/public/audio/se/battle_anims/PRSFX- Bone Rush2.wav b/public/audio/battle_anims/PRSFX- Bone Rush2.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Bone Rush2.wav rename to public/audio/battle_anims/PRSFX- Bone Rush2.wav diff --git a/public/audio/se/battle_anims/PRSFX- Bonemerang1.wav b/public/audio/battle_anims/PRSFX- Bonemerang1.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Bonemerang1.wav rename to public/audio/battle_anims/PRSFX- Bonemerang1.wav diff --git a/public/audio/se/battle_anims/PRSFX- Bonemerang2.wav b/public/audio/battle_anims/PRSFX- Bonemerang2.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Bonemerang2.wav rename to public/audio/battle_anims/PRSFX- Bonemerang2.wav diff --git a/public/audio/se/battle_anims/PRSFX- Boomburst.wav b/public/audio/battle_anims/PRSFX- Boomburst.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Boomburst.wav rename to public/audio/battle_anims/PRSFX- Boomburst.wav diff --git a/public/audio/se/battle_anims/PRSFX- Bounce1.wav b/public/audio/battle_anims/PRSFX- Bounce1.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Bounce1.wav rename to public/audio/battle_anims/PRSFX- Bounce1.wav diff --git a/public/audio/se/battle_anims/PRSFX- Bounce2.wav b/public/audio/battle_anims/PRSFX- Bounce2.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Bounce2.wav rename to public/audio/battle_anims/PRSFX- Bounce2.wav diff --git a/public/audio/se/battle_anims/PRSFX- Bounce3.wav b/public/audio/battle_anims/PRSFX- Bounce3.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Bounce3.wav rename to public/audio/battle_anims/PRSFX- Bounce3.wav diff --git a/public/audio/se/battle_anims/PRSFX- Bounce4.wav b/public/audio/battle_anims/PRSFX- Bounce4.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Bounce4.wav rename to public/audio/battle_anims/PRSFX- Bounce4.wav diff --git a/public/audio/se/battle_anims/PRSFX- Brave Bird1.wav b/public/audio/battle_anims/PRSFX- Brave Bird1.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Brave Bird1.wav rename to public/audio/battle_anims/PRSFX- Brave Bird1.wav diff --git a/public/audio/se/battle_anims/PRSFX- Brave Bird2.wav b/public/audio/battle_anims/PRSFX- Brave Bird2.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Brave Bird2.wav rename to public/audio/battle_anims/PRSFX- Brave Bird2.wav diff --git a/public/audio/se/battle_anims/PRSFX- Brick Break1.wav b/public/audio/battle_anims/PRSFX- Brick Break1.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Brick Break1.wav rename to public/audio/battle_anims/PRSFX- Brick Break1.wav diff --git a/public/audio/se/battle_anims/PRSFX- Brick Break2.wav b/public/audio/battle_anims/PRSFX- Brick Break2.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Brick Break2.wav rename to public/audio/battle_anims/PRSFX- Brick Break2.wav diff --git a/public/audio/se/battle_anims/PRSFX- Brine.wav b/public/audio/battle_anims/PRSFX- Brine.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Brine.wav rename to public/audio/battle_anims/PRSFX- Brine.wav diff --git a/public/audio/se/battle_anims/PRSFX- Brutal Swing1.wav b/public/audio/battle_anims/PRSFX- Brutal Swing1.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Brutal Swing1.wav rename to public/audio/battle_anims/PRSFX- Brutal Swing1.wav diff --git a/public/audio/se/battle_anims/PRSFX- Brutal Swing2.wav b/public/audio/battle_anims/PRSFX- Brutal Swing2.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Brutal Swing2.wav rename to public/audio/battle_anims/PRSFX- Brutal Swing2.wav diff --git a/public/audio/se/battle_anims/PRSFX- Brutal Swing3.wav b/public/audio/battle_anims/PRSFX- Brutal Swing3.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Brutal Swing3.wav rename to public/audio/battle_anims/PRSFX- Brutal Swing3.wav diff --git a/public/audio/se/battle_anims/PRSFX- Bubble.wav b/public/audio/battle_anims/PRSFX- Bubble.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Bubble.wav rename to public/audio/battle_anims/PRSFX- Bubble.wav diff --git a/public/audio/se/battle_anims/PRSFX- Bubblebeam.wav b/public/audio/battle_anims/PRSFX- Bubblebeam.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Bubblebeam.wav rename to public/audio/battle_anims/PRSFX- Bubblebeam.wav diff --git a/public/audio/se/battle_anims/PRSFX- Bug Bite.wav b/public/audio/battle_anims/PRSFX- Bug Bite.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Bug Bite.wav rename to public/audio/battle_anims/PRSFX- Bug Bite.wav diff --git a/public/audio/se/battle_anims/PRSFX- Bug Buzz.wav b/public/audio/battle_anims/PRSFX- Bug Buzz.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Bug Buzz.wav rename to public/audio/battle_anims/PRSFX- Bug Buzz.wav diff --git a/public/audio/se/battle_anims/PRSFX- Bulk Up1.wav b/public/audio/battle_anims/PRSFX- Bulk Up1.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Bulk Up1.wav rename to public/audio/battle_anims/PRSFX- Bulk Up1.wav diff --git a/public/audio/se/battle_anims/PRSFX- Bulk Up2.wav b/public/audio/battle_anims/PRSFX- Bulk Up2.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Bulk Up2.wav rename to public/audio/battle_anims/PRSFX- Bulk Up2.wav diff --git a/public/audio/se/battle_anims/PRSFX- Bulldoze.wav b/public/audio/battle_anims/PRSFX- Bulldoze.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Bulldoze.wav rename to public/audio/battle_anims/PRSFX- Bulldoze.wav diff --git a/public/audio/se/battle_anims/PRSFX- Bullet Punch.wav b/public/audio/battle_anims/PRSFX- Bullet Punch.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Bullet Punch.wav rename to public/audio/battle_anims/PRSFX- Bullet Punch.wav diff --git a/public/audio/se/battle_anims/PRSFX- Bullet Seed.wav b/public/audio/battle_anims/PRSFX- Bullet Seed.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Bullet Seed.wav rename to public/audio/battle_anims/PRSFX- Bullet Seed.wav diff --git a/public/audio/se/battle_anims/PRSFX- Burn Up1.wav b/public/audio/battle_anims/PRSFX- Burn Up1.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Burn Up1.wav rename to public/audio/battle_anims/PRSFX- Burn Up1.wav diff --git a/public/audio/se/battle_anims/PRSFX- Burn Up2.wav b/public/audio/battle_anims/PRSFX- Burn Up2.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Burn Up2.wav rename to public/audio/battle_anims/PRSFX- Burn Up2.wav diff --git a/public/audio/se/battle_anims/PRSFX- Burn.wav b/public/audio/battle_anims/PRSFX- Burn.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Burn.wav rename to public/audio/battle_anims/PRSFX- Burn.wav diff --git a/public/audio/se/battle_anims/PRSFX- Calm Mind.wav b/public/audio/battle_anims/PRSFX- Calm Mind.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Calm Mind.wav rename to public/audio/battle_anims/PRSFX- Calm Mind.wav diff --git a/public/audio/se/battle_anims/PRSFX- Camouflage.wav b/public/audio/battle_anims/PRSFX- Camouflage.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Camouflage.wav rename to public/audio/battle_anims/PRSFX- Camouflage.wav diff --git a/public/audio/se/battle_anims/PRSFX- Captivate.wav b/public/audio/battle_anims/PRSFX- Captivate.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Captivate.wav rename to public/audio/battle_anims/PRSFX- Captivate.wav diff --git a/public/audio/se/battle_anims/PRSFX- Catastropika1.wav b/public/audio/battle_anims/PRSFX- Catastropika1.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Catastropika1.wav rename to public/audio/battle_anims/PRSFX- Catastropika1.wav diff --git a/public/audio/se/battle_anims/PRSFX- Catastropika2.wav b/public/audio/battle_anims/PRSFX- Catastropika2.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Catastropika2.wav rename to public/audio/battle_anims/PRSFX- Catastropika2.wav diff --git a/public/audio/se/battle_anims/PRSFX- Catastropika3.wav b/public/audio/battle_anims/PRSFX- Catastropika3.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Catastropika3.wav rename to public/audio/battle_anims/PRSFX- Catastropika3.wav diff --git a/public/audio/se/battle_anims/PRSFX- Catastropika4.wav b/public/audio/battle_anims/PRSFX- Catastropika4.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Catastropika4.wav rename to public/audio/battle_anims/PRSFX- Catastropika4.wav diff --git a/public/audio/se/battle_anims/PRSFX- Catastropika5.wav b/public/audio/battle_anims/PRSFX- Catastropika5.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Catastropika5.wav rename to public/audio/battle_anims/PRSFX- Catastropika5.wav diff --git a/public/audio/se/battle_anims/PRSFX- Catastropika6.wav b/public/audio/battle_anims/PRSFX- Catastropika6.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Catastropika6.wav rename to public/audio/battle_anims/PRSFX- Catastropika6.wav diff --git a/public/audio/se/battle_anims/PRSFX- Charge Beam.wav b/public/audio/battle_anims/PRSFX- Charge Beam.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Charge Beam.wav rename to public/audio/battle_anims/PRSFX- Charge Beam.wav diff --git a/public/audio/se/battle_anims/PRSFX- Charge.wav b/public/audio/battle_anims/PRSFX- Charge.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Charge.wav rename to public/audio/battle_anims/PRSFX- Charge.wav diff --git a/public/audio/se/battle_anims/PRSFX- Charm.wav b/public/audio/battle_anims/PRSFX- Charm.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Charm.wav rename to public/audio/battle_anims/PRSFX- Charm.wav diff --git a/public/audio/se/battle_anims/PRSFX- Chatter.wav b/public/audio/battle_anims/PRSFX- Chatter.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Chatter.wav rename to public/audio/battle_anims/PRSFX- Chatter.wav diff --git a/public/audio/se/battle_anims/PRSFX- Chip Away.wav b/public/audio/battle_anims/PRSFX- Chip Away.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Chip Away.wav rename to public/audio/battle_anims/PRSFX- Chip Away.wav diff --git a/public/audio/se/battle_anims/PRSFX- Circle Throw1.wav b/public/audio/battle_anims/PRSFX- Circle Throw1.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Circle Throw1.wav rename to public/audio/battle_anims/PRSFX- Circle Throw1.wav diff --git a/public/audio/se/battle_anims/PRSFX- Circle Throw2.wav b/public/audio/battle_anims/PRSFX- Circle Throw2.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Circle Throw2.wav rename to public/audio/battle_anims/PRSFX- Circle Throw2.wav diff --git a/public/audio/se/battle_anims/PRSFX- Clamp1.wav b/public/audio/battle_anims/PRSFX- Clamp1.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Clamp1.wav rename to public/audio/battle_anims/PRSFX- Clamp1.wav diff --git a/public/audio/se/battle_anims/PRSFX- Clamp2.wav b/public/audio/battle_anims/PRSFX- Clamp2.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Clamp2.wav rename to public/audio/battle_anims/PRSFX- Clamp2.wav diff --git a/public/audio/se/battle_anims/PRSFX- Clamp3.wav b/public/audio/battle_anims/PRSFX- Clamp3.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Clamp3.wav rename to public/audio/battle_anims/PRSFX- Clamp3.wav diff --git a/public/audio/se/battle_anims/PRSFX- Clear Smog.wav b/public/audio/battle_anims/PRSFX- Clear Smog.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Clear Smog.wav rename to public/audio/battle_anims/PRSFX- Clear Smog.wav diff --git a/public/audio/se/battle_anims/PRSFX- Close Combat.wav b/public/audio/battle_anims/PRSFX- Close Combat.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Close Combat.wav rename to public/audio/battle_anims/PRSFX- Close Combat.wav diff --git a/public/audio/se/battle_anims/PRSFX- Coil.wav b/public/audio/battle_anims/PRSFX- Coil.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Coil.wav rename to public/audio/battle_anims/PRSFX- Coil.wav diff --git a/public/audio/se/battle_anims/PRSFX- Comet Punch.wav b/public/audio/battle_anims/PRSFX- Comet Punch.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Comet Punch.wav rename to public/audio/battle_anims/PRSFX- Comet Punch.wav diff --git a/public/audio/se/battle_anims/PRSFX- Confide.wav b/public/audio/battle_anims/PRSFX- Confide.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Confide.wav rename to public/audio/battle_anims/PRSFX- Confide.wav diff --git a/public/audio/se/battle_anims/PRSFX- Confuse Ray.wav b/public/audio/battle_anims/PRSFX- Confuse Ray.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Confuse Ray.wav rename to public/audio/battle_anims/PRSFX- Confuse Ray.wav diff --git a/public/audio/se/battle_anims/PRSFX- Confused.wav b/public/audio/battle_anims/PRSFX- Confused.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Confused.wav rename to public/audio/battle_anims/PRSFX- Confused.wav diff --git a/public/audio/se/battle_anims/PRSFX- Confusion.wav b/public/audio/battle_anims/PRSFX- Confusion.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Confusion.wav rename to public/audio/battle_anims/PRSFX- Confusion.wav diff --git a/public/audio/se/battle_anims/PRSFX- Constrict.wav b/public/audio/battle_anims/PRSFX- Constrict.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Constrict.wav rename to public/audio/battle_anims/PRSFX- Constrict.wav diff --git a/public/audio/se/battle_anims/PRSFX- Conversion.wav b/public/audio/battle_anims/PRSFX- Conversion.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Conversion.wav rename to public/audio/battle_anims/PRSFX- Conversion.wav diff --git a/public/audio/se/battle_anims/PRSFX- Conversion2.wav b/public/audio/battle_anims/PRSFX- Conversion2.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Conversion2.wav rename to public/audio/battle_anims/PRSFX- Conversion2.wav diff --git a/public/audio/se/battle_anims/PRSFX- Cosmic Power.wav b/public/audio/battle_anims/PRSFX- Cosmic Power.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Cosmic Power.wav rename to public/audio/battle_anims/PRSFX- Cosmic Power.wav diff --git a/public/audio/se/battle_anims/PRSFX- Cotton Guard.wav b/public/audio/battle_anims/PRSFX- Cotton Guard.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Cotton Guard.wav rename to public/audio/battle_anims/PRSFX- Cotton Guard.wav diff --git a/public/audio/se/battle_anims/PRSFX- Cotton Spore.wav b/public/audio/battle_anims/PRSFX- Cotton Spore.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Cotton Spore.wav rename to public/audio/battle_anims/PRSFX- Cotton Spore.wav diff --git a/public/audio/se/battle_anims/PRSFX- Counter1.wav b/public/audio/battle_anims/PRSFX- Counter1.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Counter1.wav rename to public/audio/battle_anims/PRSFX- Counter1.wav diff --git a/public/audio/se/battle_anims/PRSFX- Counter2.wav b/public/audio/battle_anims/PRSFX- Counter2.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Counter2.wav rename to public/audio/battle_anims/PRSFX- Counter2.wav diff --git a/public/audio/se/battle_anims/PRSFX- Covet1.wav b/public/audio/battle_anims/PRSFX- Covet1.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Covet1.wav rename to public/audio/battle_anims/PRSFX- Covet1.wav diff --git a/public/audio/se/battle_anims/PRSFX- Covet2.wav b/public/audio/battle_anims/PRSFX- Covet2.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Covet2.wav rename to public/audio/battle_anims/PRSFX- Covet2.wav diff --git a/public/audio/se/battle_anims/PRSFX- Crabhammer.wav b/public/audio/battle_anims/PRSFX- Crabhammer.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Crabhammer.wav rename to public/audio/battle_anims/PRSFX- Crabhammer.wav diff --git a/public/audio/se/battle_anims/PRSFX- Crafty Shield.wav b/public/audio/battle_anims/PRSFX- Crafty Shield.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Crafty Shield.wav rename to public/audio/battle_anims/PRSFX- Crafty Shield.wav diff --git a/public/audio/se/battle_anims/PRSFX- Cross Chop1.wav b/public/audio/battle_anims/PRSFX- Cross Chop1.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Cross Chop1.wav rename to public/audio/battle_anims/PRSFX- Cross Chop1.wav diff --git a/public/audio/se/battle_anims/PRSFX- Cross Chop2.wav b/public/audio/battle_anims/PRSFX- Cross Chop2.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Cross Chop2.wav rename to public/audio/battle_anims/PRSFX- Cross Chop2.wav diff --git a/public/audio/se/battle_anims/PRSFX- Cross Poison1.wav b/public/audio/battle_anims/PRSFX- Cross Poison1.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Cross Poison1.wav rename to public/audio/battle_anims/PRSFX- Cross Poison1.wav diff --git a/public/audio/se/battle_anims/PRSFX- Cross Poison2.wav b/public/audio/battle_anims/PRSFX- Cross Poison2.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Cross Poison2.wav rename to public/audio/battle_anims/PRSFX- Cross Poison2.wav diff --git a/public/audio/se/battle_anims/PRSFX- Crunch.wav b/public/audio/battle_anims/PRSFX- Crunch.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Crunch.wav rename to public/audio/battle_anims/PRSFX- Crunch.wav diff --git a/public/audio/se/battle_anims/PRSFX- Crush Claw.wav b/public/audio/battle_anims/PRSFX- Crush Claw.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Crush Claw.wav rename to public/audio/battle_anims/PRSFX- Crush Claw.wav diff --git a/public/audio/se/battle_anims/PRSFX- Crush Grip1.wav b/public/audio/battle_anims/PRSFX- Crush Grip1.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Crush Grip1.wav rename to public/audio/battle_anims/PRSFX- Crush Grip1.wav diff --git a/public/audio/se/battle_anims/PRSFX- Crush Grip2.wav b/public/audio/battle_anims/PRSFX- Crush Grip2.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Crush Grip2.wav rename to public/audio/battle_anims/PRSFX- Crush Grip2.wav diff --git a/public/audio/se/battle_anims/PRSFX- Curse.wav b/public/audio/battle_anims/PRSFX- Curse.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Curse.wav rename to public/audio/battle_anims/PRSFX- Curse.wav diff --git a/public/audio/se/battle_anims/PRSFX- Curse2.wav b/public/audio/battle_anims/PRSFX- Curse2.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Curse2.wav rename to public/audio/battle_anims/PRSFX- Curse2.wav diff --git a/public/audio/se/battle_anims/PRSFX- Cut.wav b/public/audio/battle_anims/PRSFX- Cut.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Cut.wav rename to public/audio/battle_anims/PRSFX- Cut.wav diff --git a/public/audio/se/battle_anims/PRSFX- Dark Pulse1.wav b/public/audio/battle_anims/PRSFX- Dark Pulse1.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Dark Pulse1.wav rename to public/audio/battle_anims/PRSFX- Dark Pulse1.wav diff --git a/public/audio/se/battle_anims/PRSFX- Dark Pulse2.wav b/public/audio/battle_anims/PRSFX- Dark Pulse2.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Dark Pulse2.wav rename to public/audio/battle_anims/PRSFX- Dark Pulse2.wav diff --git a/public/audio/se/battle_anims/PRSFX- Dark Void.wav b/public/audio/battle_anims/PRSFX- Dark Void.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Dark Void.wav rename to public/audio/battle_anims/PRSFX- Dark Void.wav diff --git a/public/audio/se/battle_anims/PRSFX- Dazzling Gleam.wav b/public/audio/battle_anims/PRSFX- Dazzling Gleam.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Dazzling Gleam.wav rename to public/audio/battle_anims/PRSFX- Dazzling Gleam.wav diff --git a/public/audio/se/battle_anims/PRSFX- Defend Order1.wav b/public/audio/battle_anims/PRSFX- Defend Order1.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Defend Order1.wav rename to public/audio/battle_anims/PRSFX- Defend Order1.wav diff --git a/public/audio/se/battle_anims/PRSFX- Defend Order2.wav b/public/audio/battle_anims/PRSFX- Defend Order2.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Defend Order2.wav rename to public/audio/battle_anims/PRSFX- Defend Order2.wav diff --git a/public/audio/se/battle_anims/PRSFX- Defense Curl1.wav b/public/audio/battle_anims/PRSFX- Defense Curl1.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Defense Curl1.wav rename to public/audio/battle_anims/PRSFX- Defense Curl1.wav diff --git a/public/audio/se/battle_anims/PRSFX- Defense Curl2.wav b/public/audio/battle_anims/PRSFX- Defense Curl2.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Defense Curl2.wav rename to public/audio/battle_anims/PRSFX- Defense Curl2.wav diff --git a/public/audio/se/battle_anims/PRSFX- Defog.wav b/public/audio/battle_anims/PRSFX- Defog.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Defog.wav rename to public/audio/battle_anims/PRSFX- Defog.wav diff --git a/public/audio/se/battle_anims/PRSFX- Destiny Bond1.wav b/public/audio/battle_anims/PRSFX- Destiny Bond1.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Destiny Bond1.wav rename to public/audio/battle_anims/PRSFX- Destiny Bond1.wav diff --git a/public/audio/se/battle_anims/PRSFX- Destiny Bond2.wav b/public/audio/battle_anims/PRSFX- Destiny Bond2.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Destiny Bond2.wav rename to public/audio/battle_anims/PRSFX- Destiny Bond2.wav diff --git a/public/audio/se/battle_anims/PRSFX- Detect.wav b/public/audio/battle_anims/PRSFX- Detect.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Detect.wav rename to public/audio/battle_anims/PRSFX- Detect.wav diff --git a/public/audio/se/battle_anims/PRSFX- Devastating Drake1.wav b/public/audio/battle_anims/PRSFX- Devastating Drake1.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Devastating Drake1.wav rename to public/audio/battle_anims/PRSFX- Devastating Drake1.wav diff --git a/public/audio/se/battle_anims/PRSFX- Devastating Drake2.wav b/public/audio/battle_anims/PRSFX- Devastating Drake2.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Devastating Drake2.wav rename to public/audio/battle_anims/PRSFX- Devastating Drake2.wav diff --git a/public/audio/se/battle_anims/PRSFX- Devastating Drake3.wav b/public/audio/battle_anims/PRSFX- Devastating Drake3.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Devastating Drake3.wav rename to public/audio/battle_anims/PRSFX- Devastating Drake3.wav diff --git a/public/audio/se/battle_anims/PRSFX- Diamond Storm1.wav b/public/audio/battle_anims/PRSFX- Diamond Storm1.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Diamond Storm1.wav rename to public/audio/battle_anims/PRSFX- Diamond Storm1.wav diff --git a/public/audio/se/battle_anims/PRSFX- Diamond Storm2.wav b/public/audio/battle_anims/PRSFX- Diamond Storm2.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Diamond Storm2.wav rename to public/audio/battle_anims/PRSFX- Diamond Storm2.wav diff --git a/public/audio/se/battle_anims/PRSFX- Dig1.wav b/public/audio/battle_anims/PRSFX- Dig1.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Dig1.wav rename to public/audio/battle_anims/PRSFX- Dig1.wav diff --git a/public/audio/se/battle_anims/PRSFX- Dig2.wav b/public/audio/battle_anims/PRSFX- Dig2.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Dig2.wav rename to public/audio/battle_anims/PRSFX- Dig2.wav diff --git a/public/audio/se/battle_anims/PRSFX- Disable.wav b/public/audio/battle_anims/PRSFX- Disable.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Disable.wav rename to public/audio/battle_anims/PRSFX- Disable.wav diff --git a/public/audio/se/battle_anims/PRSFX- Discharge.wav b/public/audio/battle_anims/PRSFX- Discharge.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Discharge.wav rename to public/audio/battle_anims/PRSFX- Discharge.wav diff --git a/public/audio/se/battle_anims/PRSFX- Dive1.wav b/public/audio/battle_anims/PRSFX- Dive1.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Dive1.wav rename to public/audio/battle_anims/PRSFX- Dive1.wav diff --git a/public/audio/se/battle_anims/PRSFX- Dive2.wav b/public/audio/battle_anims/PRSFX- Dive2.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Dive2.wav rename to public/audio/battle_anims/PRSFX- Dive2.wav diff --git a/public/audio/se/battle_anims/PRSFX- Dive3.wav b/public/audio/battle_anims/PRSFX- Dive3.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Dive3.wav rename to public/audio/battle_anims/PRSFX- Dive3.wav diff --git a/public/audio/se/battle_anims/PRSFX- Dizzy Punch1.wav b/public/audio/battle_anims/PRSFX- Dizzy Punch1.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Dizzy Punch1.wav rename to public/audio/battle_anims/PRSFX- Dizzy Punch1.wav diff --git a/public/audio/se/battle_anims/PRSFX- Dizzy Punch2.wav b/public/audio/battle_anims/PRSFX- Dizzy Punch2.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Dizzy Punch2.wav rename to public/audio/battle_anims/PRSFX- Dizzy Punch2.wav diff --git a/public/audio/se/battle_anims/PRSFX- Doom Desire1.wav b/public/audio/battle_anims/PRSFX- Doom Desire1.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Doom Desire1.wav rename to public/audio/battle_anims/PRSFX- Doom Desire1.wav diff --git a/public/audio/se/battle_anims/PRSFX- Doom Desire2.wav b/public/audio/battle_anims/PRSFX- Doom Desire2.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Doom Desire2.wav rename to public/audio/battle_anims/PRSFX- Doom Desire2.wav diff --git a/public/audio/se/battle_anims/PRSFX- Double Edge1.wav b/public/audio/battle_anims/PRSFX- Double Edge1.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Double Edge1.wav rename to public/audio/battle_anims/PRSFX- Double Edge1.wav diff --git a/public/audio/se/battle_anims/PRSFX- Double Edge2.wav b/public/audio/battle_anims/PRSFX- Double Edge2.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Double Edge2.wav rename to public/audio/battle_anims/PRSFX- Double Edge2.wav diff --git a/public/audio/se/battle_anims/PRSFX- Double Hit.wav b/public/audio/battle_anims/PRSFX- Double Hit.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Double Hit.wav rename to public/audio/battle_anims/PRSFX- Double Hit.wav diff --git a/public/audio/se/battle_anims/PRSFX- Double Kick.wav b/public/audio/battle_anims/PRSFX- Double Kick.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Double Kick.wav rename to public/audio/battle_anims/PRSFX- Double Kick.wav diff --git a/public/audio/se/battle_anims/PRSFX- Double Slap.wav b/public/audio/battle_anims/PRSFX- Double Slap.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Double Slap.wav rename to public/audio/battle_anims/PRSFX- Double Slap.wav diff --git a/public/audio/se/battle_anims/PRSFX- Double Team.wav b/public/audio/battle_anims/PRSFX- Double Team.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Double Team.wav rename to public/audio/battle_anims/PRSFX- Double Team.wav diff --git a/public/audio/se/battle_anims/PRSFX- Draco Meteor1.wav b/public/audio/battle_anims/PRSFX- Draco Meteor1.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Draco Meteor1.wav rename to public/audio/battle_anims/PRSFX- Draco Meteor1.wav diff --git a/public/audio/se/battle_anims/PRSFX- Draco Meteor2.wav b/public/audio/battle_anims/PRSFX- Draco Meteor2.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Draco Meteor2.wav rename to public/audio/battle_anims/PRSFX- Draco Meteor2.wav diff --git a/public/audio/se/battle_anims/PRSFX- Draco Meteor3.wav b/public/audio/battle_anims/PRSFX- Draco Meteor3.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Draco Meteor3.wav rename to public/audio/battle_anims/PRSFX- Draco Meteor3.wav diff --git a/public/audio/se/battle_anims/PRSFX- Dragon Ascent1.wav b/public/audio/battle_anims/PRSFX- Dragon Ascent1.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Dragon Ascent1.wav rename to public/audio/battle_anims/PRSFX- Dragon Ascent1.wav diff --git a/public/audio/se/battle_anims/PRSFX- Dragon Ascent2.wav b/public/audio/battle_anims/PRSFX- Dragon Ascent2.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Dragon Ascent2.wav rename to public/audio/battle_anims/PRSFX- Dragon Ascent2.wav diff --git a/public/audio/se/battle_anims/PRSFX- Dragon Ascent3.wav b/public/audio/battle_anims/PRSFX- Dragon Ascent3.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Dragon Ascent3.wav rename to public/audio/battle_anims/PRSFX- Dragon Ascent3.wav diff --git a/public/audio/se/battle_anims/PRSFX- Dragon Breath.wav b/public/audio/battle_anims/PRSFX- Dragon Breath.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Dragon Breath.wav rename to public/audio/battle_anims/PRSFX- Dragon Breath.wav diff --git a/public/audio/se/battle_anims/PRSFX- Dragon Claw.wav b/public/audio/battle_anims/PRSFX- Dragon Claw.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Dragon Claw.wav rename to public/audio/battle_anims/PRSFX- Dragon Claw.wav diff --git a/public/audio/se/battle_anims/PRSFX- Dragon Dance.wav b/public/audio/battle_anims/PRSFX- Dragon Dance.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Dragon Dance.wav rename to public/audio/battle_anims/PRSFX- Dragon Dance.wav diff --git a/public/audio/se/battle_anims/PRSFX- Dragon Pulse.wav b/public/audio/battle_anims/PRSFX- Dragon Pulse.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Dragon Pulse.wav rename to public/audio/battle_anims/PRSFX- Dragon Pulse.wav diff --git a/public/audio/se/battle_anims/PRSFX- Dragon Rage.wav b/public/audio/battle_anims/PRSFX- Dragon Rage.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Dragon Rage.wav rename to public/audio/battle_anims/PRSFX- Dragon Rage.wav diff --git a/public/audio/se/battle_anims/PRSFX- Dragon Rush1.wav b/public/audio/battle_anims/PRSFX- Dragon Rush1.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Dragon Rush1.wav rename to public/audio/battle_anims/PRSFX- Dragon Rush1.wav diff --git a/public/audio/se/battle_anims/PRSFX- Dragon Rush2.wav b/public/audio/battle_anims/PRSFX- Dragon Rush2.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Dragon Rush2.wav rename to public/audio/battle_anims/PRSFX- Dragon Rush2.wav diff --git a/public/audio/se/battle_anims/PRSFX- Dragon Tail.wav b/public/audio/battle_anims/PRSFX- Dragon Tail.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Dragon Tail.wav rename to public/audio/battle_anims/PRSFX- Dragon Tail.wav diff --git a/public/audio/se/battle_anims/PRSFX- Drain Punch1.wav b/public/audio/battle_anims/PRSFX- Drain Punch1.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Drain Punch1.wav rename to public/audio/battle_anims/PRSFX- Drain Punch1.wav diff --git a/public/audio/se/battle_anims/PRSFX- Drain Punch2.wav b/public/audio/battle_anims/PRSFX- Drain Punch2.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Drain Punch2.wav rename to public/audio/battle_anims/PRSFX- Drain Punch2.wav diff --git a/public/audio/se/battle_anims/PRSFX- Draining Kiss1.wav b/public/audio/battle_anims/PRSFX- Draining Kiss1.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Draining Kiss1.wav rename to public/audio/battle_anims/PRSFX- Draining Kiss1.wav diff --git a/public/audio/se/battle_anims/PRSFX- Draining Kiss2.wav b/public/audio/battle_anims/PRSFX- Draining Kiss2.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Draining Kiss2.wav rename to public/audio/battle_anims/PRSFX- Draining Kiss2.wav diff --git a/public/audio/se/battle_anims/PRSFX- Dream Eater1.wav b/public/audio/battle_anims/PRSFX- Dream Eater1.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Dream Eater1.wav rename to public/audio/battle_anims/PRSFX- Dream Eater1.wav diff --git a/public/audio/se/battle_anims/PRSFX- Dream Eater2.wav b/public/audio/battle_anims/PRSFX- Dream Eater2.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Dream Eater2.wav rename to public/audio/battle_anims/PRSFX- Dream Eater2.wav diff --git a/public/audio/se/battle_anims/PRSFX- Dream Eater3.wav b/public/audio/battle_anims/PRSFX- Dream Eater3.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Dream Eater3.wav rename to public/audio/battle_anims/PRSFX- Dream Eater3.wav diff --git a/public/audio/se/battle_anims/PRSFX- Drill Peck.wav b/public/audio/battle_anims/PRSFX- Drill Peck.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Drill Peck.wav rename to public/audio/battle_anims/PRSFX- Drill Peck.wav diff --git a/public/audio/se/battle_anims/PRSFX- Drill Run.wav b/public/audio/battle_anims/PRSFX- Drill Run.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Drill Run.wav rename to public/audio/battle_anims/PRSFX- Drill Run.wav diff --git a/public/audio/se/battle_anims/PRSFX- Dual Chop.wav b/public/audio/battle_anims/PRSFX- Dual Chop.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Dual Chop.wav rename to public/audio/battle_anims/PRSFX- Dual Chop.wav diff --git a/public/audio/se/battle_anims/PRSFX- Dynamic Punch1.wav b/public/audio/battle_anims/PRSFX- Dynamic Punch1.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Dynamic Punch1.wav rename to public/audio/battle_anims/PRSFX- Dynamic Punch1.wav diff --git a/public/audio/se/battle_anims/PRSFX- Dynamic Punch2.wav b/public/audio/battle_anims/PRSFX- Dynamic Punch2.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Dynamic Punch2.wav rename to public/audio/battle_anims/PRSFX- Dynamic Punch2.wav diff --git a/public/audio/se/battle_anims/PRSFX- Earth Power.wav b/public/audio/battle_anims/PRSFX- Earth Power.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Earth Power.wav rename to public/audio/battle_anims/PRSFX- Earth Power.wav diff --git a/public/audio/se/battle_anims/PRSFX- Earthquake.wav b/public/audio/battle_anims/PRSFX- Earthquake.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Earthquake.wav rename to public/audio/battle_anims/PRSFX- Earthquake.wav diff --git a/public/audio/se/battle_anims/PRSFX- Earthquake1.wav b/public/audio/battle_anims/PRSFX- Earthquake1.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Earthquake1.wav rename to public/audio/battle_anims/PRSFX- Earthquake1.wav diff --git a/public/audio/se/battle_anims/PRSFX- Earthquake2.wav b/public/audio/battle_anims/PRSFX- Earthquake2.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Earthquake2.wav rename to public/audio/battle_anims/PRSFX- Earthquake2.wav diff --git a/public/audio/se/battle_anims/PRSFX- Echoed Voice.wav b/public/audio/battle_anims/PRSFX- Echoed Voice.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Echoed Voice.wav rename to public/audio/battle_anims/PRSFX- Echoed Voice.wav diff --git a/public/audio/se/battle_anims/PRSFX- Eerie Impulse.wav b/public/audio/battle_anims/PRSFX- Eerie Impulse.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Eerie Impulse.wav rename to public/audio/battle_anims/PRSFX- Eerie Impulse.wav diff --git a/public/audio/se/battle_anims/PRSFX- Egg Bomb1.wav b/public/audio/battle_anims/PRSFX- Egg Bomb1.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Egg Bomb1.wav rename to public/audio/battle_anims/PRSFX- Egg Bomb1.wav diff --git a/public/audio/se/battle_anims/PRSFX- Egg Bomb2.wav b/public/audio/battle_anims/PRSFX- Egg Bomb2.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Egg Bomb2.wav rename to public/audio/battle_anims/PRSFX- Egg Bomb2.wav diff --git a/public/audio/se/battle_anims/PRSFX- Electric Terrain.wav b/public/audio/battle_anims/PRSFX- Electric Terrain.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Electric Terrain.wav rename to public/audio/battle_anims/PRSFX- Electric Terrain.wav diff --git a/public/audio/se/battle_anims/PRSFX- Electric Terrain2.wav b/public/audio/battle_anims/PRSFX- Electric Terrain2.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Electric Terrain2.wav rename to public/audio/battle_anims/PRSFX- Electric Terrain2.wav diff --git a/public/audio/se/battle_anims/PRSFX- Electrify.wav b/public/audio/battle_anims/PRSFX- Electrify.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Electrify.wav rename to public/audio/battle_anims/PRSFX- Electrify.wav diff --git a/public/audio/se/battle_anims/PRSFX- Electro Ball1.wav b/public/audio/battle_anims/PRSFX- Electro Ball1.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Electro Ball1.wav rename to public/audio/battle_anims/PRSFX- Electro Ball1.wav diff --git a/public/audio/se/battle_anims/PRSFX- Electro Ball2.wav b/public/audio/battle_anims/PRSFX- Electro Ball2.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Electro Ball2.wav rename to public/audio/battle_anims/PRSFX- Electro Ball2.wav diff --git a/public/audio/se/battle_anims/PRSFX- Electroweb1.wav b/public/audio/battle_anims/PRSFX- Electroweb1.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Electroweb1.wav rename to public/audio/battle_anims/PRSFX- Electroweb1.wav diff --git a/public/audio/se/battle_anims/PRSFX- Electroweb2.wav b/public/audio/battle_anims/PRSFX- Electroweb2.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Electroweb2.wav rename to public/audio/battle_anims/PRSFX- Electroweb2.wav diff --git a/public/audio/se/battle_anims/PRSFX- Embargo.wav b/public/audio/battle_anims/PRSFX- Embargo.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Embargo.wav rename to public/audio/battle_anims/PRSFX- Embargo.wav diff --git a/public/audio/se/battle_anims/PRSFX- Ember.wav b/public/audio/battle_anims/PRSFX- Ember.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Ember.wav rename to public/audio/battle_anims/PRSFX- Ember.wav diff --git a/public/audio/se/battle_anims/PRSFX- Encore.wav b/public/audio/battle_anims/PRSFX- Encore.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Encore.wav rename to public/audio/battle_anims/PRSFX- Encore.wav diff --git a/public/audio/se/battle_anims/PRSFX- Endeavor1.wav b/public/audio/battle_anims/PRSFX- Endeavor1.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Endeavor1.wav rename to public/audio/battle_anims/PRSFX- Endeavor1.wav diff --git a/public/audio/se/battle_anims/PRSFX- Endeavor2.wav b/public/audio/battle_anims/PRSFX- Endeavor2.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Endeavor2.wav rename to public/audio/battle_anims/PRSFX- Endeavor2.wav diff --git a/public/audio/se/battle_anims/PRSFX- Endure.wav b/public/audio/battle_anims/PRSFX- Endure.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Endure.wav rename to public/audio/battle_anims/PRSFX- Endure.wav diff --git a/public/audio/se/battle_anims/PRSFX- Energy Ball1.wav b/public/audio/battle_anims/PRSFX- Energy Ball1.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Energy Ball1.wav rename to public/audio/battle_anims/PRSFX- Energy Ball1.wav diff --git a/public/audio/se/battle_anims/PRSFX- Energy Ball2.wav b/public/audio/battle_anims/PRSFX- Energy Ball2.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Energy Ball2.wav rename to public/audio/battle_anims/PRSFX- Energy Ball2.wav diff --git a/public/audio/se/battle_anims/PRSFX- Entrainment.wav b/public/audio/battle_anims/PRSFX- Entrainment.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Entrainment.wav rename to public/audio/battle_anims/PRSFX- Entrainment.wav diff --git a/public/audio/se/battle_anims/PRSFX- Eruption1.wav b/public/audio/battle_anims/PRSFX- Eruption1.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Eruption1.wav rename to public/audio/battle_anims/PRSFX- Eruption1.wav diff --git a/public/audio/se/battle_anims/PRSFX- Eruption2.wav b/public/audio/battle_anims/PRSFX- Eruption2.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Eruption2.wav rename to public/audio/battle_anims/PRSFX- Eruption2.wav diff --git a/public/audio/se/battle_anims/PRSFX- Explosion.wav b/public/audio/battle_anims/PRSFX- Explosion.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Explosion.wav rename to public/audio/battle_anims/PRSFX- Explosion.wav diff --git a/public/audio/se/battle_anims/PRSFX- Explosion2.wav b/public/audio/battle_anims/PRSFX- Explosion2.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Explosion2.wav rename to public/audio/battle_anims/PRSFX- Explosion2.wav diff --git a/public/audio/se/battle_anims/PRSFX- Extrasensory.wav b/public/audio/battle_anims/PRSFX- Extrasensory.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Extrasensory.wav rename to public/audio/battle_anims/PRSFX- Extrasensory.wav diff --git a/public/audio/se/battle_anims/PRSFX- Extreme Evoboost1.wav b/public/audio/battle_anims/PRSFX- Extreme Evoboost1.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Extreme Evoboost1.wav rename to public/audio/battle_anims/PRSFX- Extreme Evoboost1.wav diff --git a/public/audio/se/battle_anims/PRSFX- Extreme Evoboost2.wav b/public/audio/battle_anims/PRSFX- Extreme Evoboost2.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Extreme Evoboost2.wav rename to public/audio/battle_anims/PRSFX- Extreme Evoboost2.wav diff --git a/public/audio/se/battle_anims/PRSFX- Extreme Evoboost3.wav b/public/audio/battle_anims/PRSFX- Extreme Evoboost3.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Extreme Evoboost3.wav rename to public/audio/battle_anims/PRSFX- Extreme Evoboost3.wav diff --git a/public/audio/se/battle_anims/PRSFX- Extremespeed1.wav b/public/audio/battle_anims/PRSFX- Extremespeed1.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Extremespeed1.wav rename to public/audio/battle_anims/PRSFX- Extremespeed1.wav diff --git a/public/audio/se/battle_anims/PRSFX- Extremespeed2.wav b/public/audio/battle_anims/PRSFX- Extremespeed2.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Extremespeed2.wav rename to public/audio/battle_anims/PRSFX- Extremespeed2.wav diff --git a/public/audio/se/battle_anims/PRSFX- Facade1.wav b/public/audio/battle_anims/PRSFX- Facade1.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Facade1.wav rename to public/audio/battle_anims/PRSFX- Facade1.wav diff --git a/public/audio/se/battle_anims/PRSFX- Facade2.wav b/public/audio/battle_anims/PRSFX- Facade2.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Facade2.wav rename to public/audio/battle_anims/PRSFX- Facade2.wav diff --git a/public/audio/se/battle_anims/PRSFX- Fairy Lock.wav b/public/audio/battle_anims/PRSFX- Fairy Lock.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Fairy Lock.wav rename to public/audio/battle_anims/PRSFX- Fairy Lock.wav diff --git a/public/audio/se/battle_anims/PRSFX- Fairy Wind.wav b/public/audio/battle_anims/PRSFX- Fairy Wind.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Fairy Wind.wav rename to public/audio/battle_anims/PRSFX- Fairy Wind.wav diff --git a/public/audio/se/battle_anims/PRSFX- Fake Out1.wav b/public/audio/battle_anims/PRSFX- Fake Out1.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Fake Out1.wav rename to public/audio/battle_anims/PRSFX- Fake Out1.wav diff --git a/public/audio/se/battle_anims/PRSFX- Fake Out2.wav b/public/audio/battle_anims/PRSFX- Fake Out2.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Fake Out2.wav rename to public/audio/battle_anims/PRSFX- Fake Out2.wav diff --git a/public/audio/se/battle_anims/PRSFX- Fake Tears.wav b/public/audio/battle_anims/PRSFX- Fake Tears.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Fake Tears.wav rename to public/audio/battle_anims/PRSFX- Fake Tears.wav diff --git a/public/audio/se/battle_anims/PRSFX- False Swipe.wav b/public/audio/battle_anims/PRSFX- False Swipe.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- False Swipe.wav rename to public/audio/battle_anims/PRSFX- False Swipe.wav diff --git a/public/audio/se/battle_anims/PRSFX- Featherdance1.wav b/public/audio/battle_anims/PRSFX- Featherdance1.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Featherdance1.wav rename to public/audio/battle_anims/PRSFX- Featherdance1.wav diff --git a/public/audio/se/battle_anims/PRSFX- Featherdance2.wav b/public/audio/battle_anims/PRSFX- Featherdance2.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Featherdance2.wav rename to public/audio/battle_anims/PRSFX- Featherdance2.wav diff --git a/public/audio/se/battle_anims/PRSFX- Feint Attack1.wav b/public/audio/battle_anims/PRSFX- Feint Attack1.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Feint Attack1.wav rename to public/audio/battle_anims/PRSFX- Feint Attack1.wav diff --git a/public/audio/se/battle_anims/PRSFX- Feint Attack2.wav b/public/audio/battle_anims/PRSFX- Feint Attack2.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Feint Attack2.wav rename to public/audio/battle_anims/PRSFX- Feint Attack2.wav diff --git a/public/audio/se/battle_anims/PRSFX- Feint1.wav b/public/audio/battle_anims/PRSFX- Feint1.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Feint1.wav rename to public/audio/battle_anims/PRSFX- Feint1.wav diff --git a/public/audio/se/battle_anims/PRSFX- Feint2.wav b/public/audio/battle_anims/PRSFX- Feint2.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Feint2.wav rename to public/audio/battle_anims/PRSFX- Feint2.wav diff --git a/public/audio/se/battle_anims/PRSFX- Fell Stinger1.wav b/public/audio/battle_anims/PRSFX- Fell Stinger1.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Fell Stinger1.wav rename to public/audio/battle_anims/PRSFX- Fell Stinger1.wav diff --git a/public/audio/se/battle_anims/PRSFX- Fell Stinger2.wav b/public/audio/battle_anims/PRSFX- Fell Stinger2.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Fell Stinger2.wav rename to public/audio/battle_anims/PRSFX- Fell Stinger2.wav diff --git a/public/audio/se/battle_anims/PRSFX- Fell Stinger3.wav b/public/audio/battle_anims/PRSFX- Fell Stinger3.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Fell Stinger3.wav rename to public/audio/battle_anims/PRSFX- Fell Stinger3.wav diff --git a/public/audio/se/battle_anims/PRSFX- Fiery Dance1.wav b/public/audio/battle_anims/PRSFX- Fiery Dance1.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Fiery Dance1.wav rename to public/audio/battle_anims/PRSFX- Fiery Dance1.wav diff --git a/public/audio/se/battle_anims/PRSFX- Fiery Dance2.wav b/public/audio/battle_anims/PRSFX- Fiery Dance2.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Fiery Dance2.wav rename to public/audio/battle_anims/PRSFX- Fiery Dance2.wav diff --git a/public/audio/se/battle_anims/PRSFX- Final Gambit1.wav b/public/audio/battle_anims/PRSFX- Final Gambit1.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Final Gambit1.wav rename to public/audio/battle_anims/PRSFX- Final Gambit1.wav diff --git a/public/audio/se/battle_anims/PRSFX- Final Gambit2.wav b/public/audio/battle_anims/PRSFX- Final Gambit2.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Final Gambit2.wav rename to public/audio/battle_anims/PRSFX- Final Gambit2.wav diff --git a/public/audio/se/battle_anims/PRSFX- Fire Blast.wav b/public/audio/battle_anims/PRSFX- Fire Blast.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Fire Blast.wav rename to public/audio/battle_anims/PRSFX- Fire Blast.wav diff --git a/public/audio/se/battle_anims/PRSFX- Fire Fang1.wav b/public/audio/battle_anims/PRSFX- Fire Fang1.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Fire Fang1.wav rename to public/audio/battle_anims/PRSFX- Fire Fang1.wav diff --git a/public/audio/se/battle_anims/PRSFX- Fire Fang2.wav b/public/audio/battle_anims/PRSFX- Fire Fang2.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Fire Fang2.wav rename to public/audio/battle_anims/PRSFX- Fire Fang2.wav diff --git a/public/audio/se/battle_anims/PRSFX- Fire Lash1.wav b/public/audio/battle_anims/PRSFX- Fire Lash1.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Fire Lash1.wav rename to public/audio/battle_anims/PRSFX- Fire Lash1.wav diff --git a/public/audio/se/battle_anims/PRSFX- Fire Lash2.wav b/public/audio/battle_anims/PRSFX- Fire Lash2.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Fire Lash2.wav rename to public/audio/battle_anims/PRSFX- Fire Lash2.wav diff --git a/public/audio/se/battle_anims/PRSFX- Fire Lash3.wav b/public/audio/battle_anims/PRSFX- Fire Lash3.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Fire Lash3.wav rename to public/audio/battle_anims/PRSFX- Fire Lash3.wav diff --git a/public/audio/se/battle_anims/PRSFX- Fire Lash4.wav b/public/audio/battle_anims/PRSFX- Fire Lash4.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Fire Lash4.wav rename to public/audio/battle_anims/PRSFX- Fire Lash4.wav diff --git a/public/audio/se/battle_anims/PRSFX- Fire Pledge.wav b/public/audio/battle_anims/PRSFX- Fire Pledge.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Fire Pledge.wav rename to public/audio/battle_anims/PRSFX- Fire Pledge.wav diff --git a/public/audio/se/battle_anims/PRSFX- Fire Punch1.wav b/public/audio/battle_anims/PRSFX- Fire Punch1.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Fire Punch1.wav rename to public/audio/battle_anims/PRSFX- Fire Punch1.wav diff --git a/public/audio/se/battle_anims/PRSFX- Fire Punch2.wav b/public/audio/battle_anims/PRSFX- Fire Punch2.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Fire Punch2.wav rename to public/audio/battle_anims/PRSFX- Fire Punch2.wav diff --git a/public/audio/se/battle_anims/PRSFX- Fire Punch3.wav b/public/audio/battle_anims/PRSFX- Fire Punch3.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Fire Punch3.wav rename to public/audio/battle_anims/PRSFX- Fire Punch3.wav diff --git a/public/audio/se/battle_anims/PRSFX- Fire Spin.wav b/public/audio/battle_anims/PRSFX- Fire Spin.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Fire Spin.wav rename to public/audio/battle_anims/PRSFX- Fire Spin.wav diff --git a/public/audio/se/battle_anims/PRSFX- Fissure.wav b/public/audio/battle_anims/PRSFX- Fissure.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Fissure.wav rename to public/audio/battle_anims/PRSFX- Fissure.wav diff --git a/public/audio/se/battle_anims/PRSFX- Flail.wav b/public/audio/battle_anims/PRSFX- Flail.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Flail.wav rename to public/audio/battle_anims/PRSFX- Flail.wav diff --git a/public/audio/se/battle_anims/PRSFX- Flame Burst.wav b/public/audio/battle_anims/PRSFX- Flame Burst.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Flame Burst.wav rename to public/audio/battle_anims/PRSFX- Flame Burst.wav diff --git a/public/audio/se/battle_anims/PRSFX- Flame Charge1.wav b/public/audio/battle_anims/PRSFX- Flame Charge1.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Flame Charge1.wav rename to public/audio/battle_anims/PRSFX- Flame Charge1.wav diff --git a/public/audio/se/battle_anims/PRSFX- Flame Charge2.wav b/public/audio/battle_anims/PRSFX- Flame Charge2.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Flame Charge2.wav rename to public/audio/battle_anims/PRSFX- Flame Charge2.wav diff --git a/public/audio/se/battle_anims/PRSFX- Flame Wheel1.wav b/public/audio/battle_anims/PRSFX- Flame Wheel1.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Flame Wheel1.wav rename to public/audio/battle_anims/PRSFX- Flame Wheel1.wav diff --git a/public/audio/se/battle_anims/PRSFX- Flame Wheel2.wav b/public/audio/battle_anims/PRSFX- Flame Wheel2.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Flame Wheel2.wav rename to public/audio/battle_anims/PRSFX- Flame Wheel2.wav diff --git a/public/audio/se/battle_anims/PRSFX- Flamethrower.wav b/public/audio/battle_anims/PRSFX- Flamethrower.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Flamethrower.wav rename to public/audio/battle_anims/PRSFX- Flamethrower.wav diff --git a/public/audio/se/battle_anims/PRSFX- Flare Blitz1.wav b/public/audio/battle_anims/PRSFX- Flare Blitz1.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Flare Blitz1.wav rename to public/audio/battle_anims/PRSFX- Flare Blitz1.wav diff --git a/public/audio/se/battle_anims/PRSFX- Flare Blitz2.wav b/public/audio/battle_anims/PRSFX- Flare Blitz2.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Flare Blitz2.wav rename to public/audio/battle_anims/PRSFX- Flare Blitz2.wav diff --git a/public/audio/se/battle_anims/PRSFX- Flare Blitz3.wav b/public/audio/battle_anims/PRSFX- Flare Blitz3.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Flare Blitz3.wav rename to public/audio/battle_anims/PRSFX- Flare Blitz3.wav diff --git a/public/audio/se/battle_anims/PRSFX- Flash Cannon.wav b/public/audio/battle_anims/PRSFX- Flash Cannon.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Flash Cannon.wav rename to public/audio/battle_anims/PRSFX- Flash Cannon.wav diff --git a/public/audio/se/battle_anims/PRSFX- Flash.wav b/public/audio/battle_anims/PRSFX- Flash.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Flash.wav rename to public/audio/battle_anims/PRSFX- Flash.wav diff --git a/public/audio/se/battle_anims/PRSFX- Flatter.wav b/public/audio/battle_anims/PRSFX- Flatter.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Flatter.wav rename to public/audio/battle_anims/PRSFX- Flatter.wav diff --git a/public/audio/se/battle_anims/PRSFX- Fling1.wav b/public/audio/battle_anims/PRSFX- Fling1.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Fling1.wav rename to public/audio/battle_anims/PRSFX- Fling1.wav diff --git a/public/audio/se/battle_anims/PRSFX- Fling2.wav b/public/audio/battle_anims/PRSFX- Fling2.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Fling2.wav rename to public/audio/battle_anims/PRSFX- Fling2.wav diff --git a/public/audio/se/battle_anims/PRSFX- Floral Healing1.wav b/public/audio/battle_anims/PRSFX- Floral Healing1.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Floral Healing1.wav rename to public/audio/battle_anims/PRSFX- Floral Healing1.wav diff --git a/public/audio/se/battle_anims/PRSFX- Floral Healing2.wav b/public/audio/battle_anims/PRSFX- Floral Healing2.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Floral Healing2.wav rename to public/audio/battle_anims/PRSFX- Floral Healing2.wav diff --git a/public/audio/se/battle_anims/PRSFX- Flower Shield.wav b/public/audio/battle_anims/PRSFX- Flower Shield.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Flower Shield.wav rename to public/audio/battle_anims/PRSFX- Flower Shield.wav diff --git a/public/audio/se/battle_anims/PRSFX- Fly1.wav b/public/audio/battle_anims/PRSFX- Fly1.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Fly1.wav rename to public/audio/battle_anims/PRSFX- Fly1.wav diff --git a/public/audio/se/battle_anims/PRSFX- Fly2.wav b/public/audio/battle_anims/PRSFX- Fly2.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Fly2.wav rename to public/audio/battle_anims/PRSFX- Fly2.wav diff --git a/public/audio/se/battle_anims/PRSFX- Flying Press1.wav b/public/audio/battle_anims/PRSFX- Flying Press1.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Flying Press1.wav rename to public/audio/battle_anims/PRSFX- Flying Press1.wav diff --git a/public/audio/se/battle_anims/PRSFX- Flying Press2.wav b/public/audio/battle_anims/PRSFX- Flying Press2.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Flying Press2.wav rename to public/audio/battle_anims/PRSFX- Flying Press2.wav diff --git a/public/audio/se/battle_anims/PRSFX- Flying Press3.wav b/public/audio/battle_anims/PRSFX- Flying Press3.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Flying Press3.wav rename to public/audio/battle_anims/PRSFX- Flying Press3.wav diff --git a/public/audio/se/battle_anims/PRSFX- Focus Blast1.wav b/public/audio/battle_anims/PRSFX- Focus Blast1.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Focus Blast1.wav rename to public/audio/battle_anims/PRSFX- Focus Blast1.wav diff --git a/public/audio/se/battle_anims/PRSFX- Focus Blast2.wav b/public/audio/battle_anims/PRSFX- Focus Blast2.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Focus Blast2.wav rename to public/audio/battle_anims/PRSFX- Focus Blast2.wav diff --git a/public/audio/se/battle_anims/PRSFX- Focus Blast3.wav b/public/audio/battle_anims/PRSFX- Focus Blast3.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Focus Blast3.wav rename to public/audio/battle_anims/PRSFX- Focus Blast3.wav diff --git a/public/audio/se/battle_anims/PRSFX- Focus Energy.wav b/public/audio/battle_anims/PRSFX- Focus Energy.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Focus Energy.wav rename to public/audio/battle_anims/PRSFX- Focus Energy.wav diff --git a/public/audio/se/battle_anims/PRSFX- Focus Punch1.wav b/public/audio/battle_anims/PRSFX- Focus Punch1.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Focus Punch1.wav rename to public/audio/battle_anims/PRSFX- Focus Punch1.wav diff --git a/public/audio/se/battle_anims/PRSFX- Focus Punch2.wav b/public/audio/battle_anims/PRSFX- Focus Punch2.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Focus Punch2.wav rename to public/audio/battle_anims/PRSFX- Focus Punch2.wav diff --git a/public/audio/se/battle_anims/PRSFX- Focus Punch3.wav b/public/audio/battle_anims/PRSFX- Focus Punch3.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Focus Punch3.wav rename to public/audio/battle_anims/PRSFX- Focus Punch3.wav diff --git a/public/audio/se/battle_anims/PRSFX- Follow Me.wav b/public/audio/battle_anims/PRSFX- Follow Me.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Follow Me.wav rename to public/audio/battle_anims/PRSFX- Follow Me.wav diff --git a/public/audio/se/battle_anims/PRSFX- Force Palm1.wav b/public/audio/battle_anims/PRSFX- Force Palm1.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Force Palm1.wav rename to public/audio/battle_anims/PRSFX- Force Palm1.wav diff --git a/public/audio/se/battle_anims/PRSFX- Force Palm2.wav b/public/audio/battle_anims/PRSFX- Force Palm2.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Force Palm2.wav rename to public/audio/battle_anims/PRSFX- Force Palm2.wav diff --git a/public/audio/se/battle_anims/PRSFX- Foresight1.wav b/public/audio/battle_anims/PRSFX- Foresight1.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Foresight1.wav rename to public/audio/battle_anims/PRSFX- Foresight1.wav diff --git a/public/audio/se/battle_anims/PRSFX- Foresight2.wav b/public/audio/battle_anims/PRSFX- Foresight2.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Foresight2.wav rename to public/audio/battle_anims/PRSFX- Foresight2.wav diff --git a/public/audio/se/battle_anims/PRSFX- Forests Curse.wav b/public/audio/battle_anims/PRSFX- Forests Curse.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Forests Curse.wav rename to public/audio/battle_anims/PRSFX- Forests Curse.wav diff --git a/public/audio/se/battle_anims/PRSFX- Foul Play1.wav b/public/audio/battle_anims/PRSFX- Foul Play1.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Foul Play1.wav rename to public/audio/battle_anims/PRSFX- Foul Play1.wav diff --git a/public/audio/se/battle_anims/PRSFX- Foul Play2.wav b/public/audio/battle_anims/PRSFX- Foul Play2.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Foul Play2.wav rename to public/audio/battle_anims/PRSFX- Foul Play2.wav diff --git a/public/audio/se/battle_anims/PRSFX- Freeze Dry1.wav b/public/audio/battle_anims/PRSFX- Freeze Dry1.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Freeze Dry1.wav rename to public/audio/battle_anims/PRSFX- Freeze Dry1.wav diff --git a/public/audio/se/battle_anims/PRSFX- Freeze Dry2.wav b/public/audio/battle_anims/PRSFX- Freeze Dry2.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Freeze Dry2.wav rename to public/audio/battle_anims/PRSFX- Freeze Dry2.wav diff --git a/public/audio/se/battle_anims/PRSFX- Freeze Dry3.wav b/public/audio/battle_anims/PRSFX- Freeze Dry3.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Freeze Dry3.wav rename to public/audio/battle_anims/PRSFX- Freeze Dry3.wav diff --git a/public/audio/se/battle_anims/PRSFX- Freeze Shock1.wav b/public/audio/battle_anims/PRSFX- Freeze Shock1.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Freeze Shock1.wav rename to public/audio/battle_anims/PRSFX- Freeze Shock1.wav diff --git a/public/audio/se/battle_anims/PRSFX- Freeze Shock2.wav b/public/audio/battle_anims/PRSFX- Freeze Shock2.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Freeze Shock2.wav rename to public/audio/battle_anims/PRSFX- Freeze Shock2.wav diff --git a/public/audio/se/battle_anims/PRSFX- Freeze Shock3.wav b/public/audio/battle_anims/PRSFX- Freeze Shock3.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Freeze Shock3.wav rename to public/audio/battle_anims/PRSFX- Freeze Shock3.wav diff --git a/public/audio/se/battle_anims/PRSFX- Frenzy Plant1.wav b/public/audio/battle_anims/PRSFX- Frenzy Plant1.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Frenzy Plant1.wav rename to public/audio/battle_anims/PRSFX- Frenzy Plant1.wav diff --git a/public/audio/se/battle_anims/PRSFX- Frenzy Plant2.wav b/public/audio/battle_anims/PRSFX- Frenzy Plant2.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Frenzy Plant2.wav rename to public/audio/battle_anims/PRSFX- Frenzy Plant2.wav diff --git a/public/audio/se/battle_anims/PRSFX- Frost Breath1.wav b/public/audio/battle_anims/PRSFX- Frost Breath1.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Frost Breath1.wav rename to public/audio/battle_anims/PRSFX- Frost Breath1.wav diff --git a/public/audio/se/battle_anims/PRSFX- Frost Breath2.wav b/public/audio/battle_anims/PRSFX- Frost Breath2.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Frost Breath2.wav rename to public/audio/battle_anims/PRSFX- Frost Breath2.wav diff --git a/public/audio/se/battle_anims/PRSFX- Frozen.wav b/public/audio/battle_anims/PRSFX- Frozen.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Frozen.wav rename to public/audio/battle_anims/PRSFX- Frozen.wav diff --git a/public/audio/se/battle_anims/PRSFX- Frustration1.wav b/public/audio/battle_anims/PRSFX- Frustration1.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Frustration1.wav rename to public/audio/battle_anims/PRSFX- Frustration1.wav diff --git a/public/audio/se/battle_anims/PRSFX- Frustration2.wav b/public/audio/battle_anims/PRSFX- Frustration2.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Frustration2.wav rename to public/audio/battle_anims/PRSFX- Frustration2.wav diff --git a/public/audio/se/battle_anims/PRSFX- Fury Attack.wav b/public/audio/battle_anims/PRSFX- Fury Attack.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Fury Attack.wav rename to public/audio/battle_anims/PRSFX- Fury Attack.wav diff --git a/public/audio/se/battle_anims/PRSFX- Fury Cutter.wav b/public/audio/battle_anims/PRSFX- Fury Cutter.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Fury Cutter.wav rename to public/audio/battle_anims/PRSFX- Fury Cutter.wav diff --git a/public/audio/se/battle_anims/PRSFX- Fury Swipes.wav b/public/audio/battle_anims/PRSFX- Fury Swipes.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Fury Swipes.wav rename to public/audio/battle_anims/PRSFX- Fury Swipes.wav diff --git a/public/audio/se/battle_anims/PRSFX- Fusion Bolt1.wav b/public/audio/battle_anims/PRSFX- Fusion Bolt1.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Fusion Bolt1.wav rename to public/audio/battle_anims/PRSFX- Fusion Bolt1.wav diff --git a/public/audio/se/battle_anims/PRSFX- Fusion Bolt2.wav b/public/audio/battle_anims/PRSFX- Fusion Bolt2.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Fusion Bolt2.wav rename to public/audio/battle_anims/PRSFX- Fusion Bolt2.wav diff --git a/public/audio/se/battle_anims/PRSFX- Fusion Flare1.wav b/public/audio/battle_anims/PRSFX- Fusion Flare1.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Fusion Flare1.wav rename to public/audio/battle_anims/PRSFX- Fusion Flare1.wav diff --git a/public/audio/se/battle_anims/PRSFX- Fusion Flare2.wav b/public/audio/battle_anims/PRSFX- Fusion Flare2.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Fusion Flare2.wav rename to public/audio/battle_anims/PRSFX- Fusion Flare2.wav diff --git a/public/audio/se/battle_anims/PRSFX- Fusion Flare3.wav b/public/audio/battle_anims/PRSFX- Fusion Flare3.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Fusion Flare3.wav rename to public/audio/battle_anims/PRSFX- Fusion Flare3.wav diff --git a/public/audio/se/battle_anims/PRSFX- FusionFlare3.wav b/public/audio/battle_anims/PRSFX- FusionFlare3.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- FusionFlare3.wav rename to public/audio/battle_anims/PRSFX- FusionFlare3.wav diff --git a/public/audio/se/battle_anims/PRSFX- Future Sight1.wav b/public/audio/battle_anims/PRSFX- Future Sight1.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Future Sight1.wav rename to public/audio/battle_anims/PRSFX- Future Sight1.wav diff --git a/public/audio/se/battle_anims/PRSFX- Future Sight2.wav b/public/audio/battle_anims/PRSFX- Future Sight2.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Future Sight2.wav rename to public/audio/battle_anims/PRSFX- Future Sight2.wav diff --git a/public/audio/se/battle_anims/PRSFX- Gastro Acid.wav b/public/audio/battle_anims/PRSFX- Gastro Acid.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Gastro Acid.wav rename to public/audio/battle_anims/PRSFX- Gastro Acid.wav diff --git a/public/audio/se/battle_anims/PRSFX- Gear Grind.wav b/public/audio/battle_anims/PRSFX- Gear Grind.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Gear Grind.wav rename to public/audio/battle_anims/PRSFX- Gear Grind.wav diff --git a/public/audio/se/battle_anims/PRSFX- Gear Up1.wav b/public/audio/battle_anims/PRSFX- Gear Up1.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Gear Up1.wav rename to public/audio/battle_anims/PRSFX- Gear Up1.wav diff --git a/public/audio/se/battle_anims/PRSFX- Gear Up2.wav b/public/audio/battle_anims/PRSFX- Gear Up2.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Gear Up2.wav rename to public/audio/battle_anims/PRSFX- Gear Up2.wav diff --git a/public/audio/se/battle_anims/PRSFX- Gear Up3.wav b/public/audio/battle_anims/PRSFX- Gear Up3.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Gear Up3.wav rename to public/audio/battle_anims/PRSFX- Gear Up3.wav diff --git a/public/audio/se/battle_anims/PRSFX- Gear Up4.wav b/public/audio/battle_anims/PRSFX- Gear Up4.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Gear Up4.wav rename to public/audio/battle_anims/PRSFX- Gear Up4.wav diff --git a/public/audio/se/battle_anims/PRSFX- Gear Up5.wav b/public/audio/battle_anims/PRSFX- Gear Up5.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Gear Up5.wav rename to public/audio/battle_anims/PRSFX- Gear Up5.wav diff --git a/public/audio/se/battle_anims/PRSFX- Gear Up6.wav b/public/audio/battle_anims/PRSFX- Gear Up6.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Gear Up6.wav rename to public/audio/battle_anims/PRSFX- Gear Up6.wav diff --git a/public/audio/se/battle_anims/PRSFX- Geomancy.wav b/public/audio/battle_anims/PRSFX- Geomancy.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Geomancy.wav rename to public/audio/battle_anims/PRSFX- Geomancy.wav diff --git a/public/audio/se/battle_anims/PRSFX- Giga Drain1.wav b/public/audio/battle_anims/PRSFX- Giga Drain1.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Giga Drain1.wav rename to public/audio/battle_anims/PRSFX- Giga Drain1.wav diff --git a/public/audio/se/battle_anims/PRSFX- Giga Drain2.wav b/public/audio/battle_anims/PRSFX- Giga Drain2.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Giga Drain2.wav rename to public/audio/battle_anims/PRSFX- Giga Drain2.wav diff --git a/public/audio/se/battle_anims/PRSFX- Giga Impact1.wav b/public/audio/battle_anims/PRSFX- Giga Impact1.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Giga Impact1.wav rename to public/audio/battle_anims/PRSFX- Giga Impact1.wav diff --git a/public/audio/se/battle_anims/PRSFX- Giga Impact2.wav b/public/audio/battle_anims/PRSFX- Giga Impact2.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Giga Impact2.wav rename to public/audio/battle_anims/PRSFX- Giga Impact2.wav diff --git a/public/audio/se/battle_anims/PRSFX- Gigavolt Havoc1.wav b/public/audio/battle_anims/PRSFX- Gigavolt Havoc1.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Gigavolt Havoc1.wav rename to public/audio/battle_anims/PRSFX- Gigavolt Havoc1.wav diff --git a/public/audio/se/battle_anims/PRSFX- Gigavolt Havoc2.wav b/public/audio/battle_anims/PRSFX- Gigavolt Havoc2.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Gigavolt Havoc2.wav rename to public/audio/battle_anims/PRSFX- Gigavolt Havoc2.wav diff --git a/public/audio/se/battle_anims/PRSFX- Gigavolt Havoc3.wav b/public/audio/battle_anims/PRSFX- Gigavolt Havoc3.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Gigavolt Havoc3.wav rename to public/audio/battle_anims/PRSFX- Gigavolt Havoc3.wav diff --git a/public/audio/se/battle_anims/PRSFX- Glaciate1.wav b/public/audio/battle_anims/PRSFX- Glaciate1.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Glaciate1.wav rename to public/audio/battle_anims/PRSFX- Glaciate1.wav diff --git a/public/audio/se/battle_anims/PRSFX- Glaciate2.wav b/public/audio/battle_anims/PRSFX- Glaciate2.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Glaciate2.wav rename to public/audio/battle_anims/PRSFX- Glaciate2.wav diff --git a/public/audio/se/battle_anims/PRSFX- Glare.wav b/public/audio/battle_anims/PRSFX- Glare.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Glare.wav rename to public/audio/battle_anims/PRSFX- Glare.wav diff --git a/public/audio/se/battle_anims/PRSFX- Glitch1.wav b/public/audio/battle_anims/PRSFX- Glitch1.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Glitch1.wav rename to public/audio/battle_anims/PRSFX- Glitch1.wav diff --git a/public/audio/se/battle_anims/PRSFX- Glitch2.wav b/public/audio/battle_anims/PRSFX- Glitch2.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Glitch2.wav rename to public/audio/battle_anims/PRSFX- Glitch2.wav diff --git a/public/audio/se/battle_anims/PRSFX- Grass Knot1.wav b/public/audio/battle_anims/PRSFX- Grass Knot1.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Grass Knot1.wav rename to public/audio/battle_anims/PRSFX- Grass Knot1.wav diff --git a/public/audio/se/battle_anims/PRSFX- Grass Knot2.wav b/public/audio/battle_anims/PRSFX- Grass Knot2.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Grass Knot2.wav rename to public/audio/battle_anims/PRSFX- Grass Knot2.wav diff --git a/public/audio/se/battle_anims/PRSFX- Grass Pledge1.wav b/public/audio/battle_anims/PRSFX- Grass Pledge1.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Grass Pledge1.wav rename to public/audio/battle_anims/PRSFX- Grass Pledge1.wav diff --git a/public/audio/se/battle_anims/PRSFX- Grass Pledge2.wav b/public/audio/battle_anims/PRSFX- Grass Pledge2.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Grass Pledge2.wav rename to public/audio/battle_anims/PRSFX- Grass Pledge2.wav diff --git a/public/audio/se/battle_anims/PRSFX- Grass Whistle.wav b/public/audio/battle_anims/PRSFX- Grass Whistle.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Grass Whistle.wav rename to public/audio/battle_anims/PRSFX- Grass Whistle.wav diff --git a/public/audio/se/battle_anims/PRSFX- Grassy Terrain.wav b/public/audio/battle_anims/PRSFX- Grassy Terrain.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Grassy Terrain.wav rename to public/audio/battle_anims/PRSFX- Grassy Terrain.wav diff --git a/public/audio/se/battle_anims/PRSFX- Gravity.wav b/public/audio/battle_anims/PRSFX- Gravity.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Gravity.wav rename to public/audio/battle_anims/PRSFX- Gravity.wav diff --git a/public/audio/se/battle_anims/PRSFX- Growth.wav b/public/audio/battle_anims/PRSFX- Growth.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Growth.wav rename to public/audio/battle_anims/PRSFX- Growth.wav diff --git a/public/audio/se/battle_anims/PRSFX- Grudge.wav b/public/audio/battle_anims/PRSFX- Grudge.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Grudge.wav rename to public/audio/battle_anims/PRSFX- Grudge.wav diff --git a/public/audio/se/battle_anims/PRSFX- Guard Split.wav b/public/audio/battle_anims/PRSFX- Guard Split.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Guard Split.wav rename to public/audio/battle_anims/PRSFX- Guard Split.wav diff --git a/public/audio/se/battle_anims/PRSFX- Guard Swap.wav b/public/audio/battle_anims/PRSFX- Guard Swap.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Guard Swap.wav rename to public/audio/battle_anims/PRSFX- Guard Swap.wav diff --git a/public/audio/se/battle_anims/PRSFX- Guillotine1.wav b/public/audio/battle_anims/PRSFX- Guillotine1.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Guillotine1.wav rename to public/audio/battle_anims/PRSFX- Guillotine1.wav diff --git a/public/audio/se/battle_anims/PRSFX- Guillotine2.wav b/public/audio/battle_anims/PRSFX- Guillotine2.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Guillotine2.wav rename to public/audio/battle_anims/PRSFX- Guillotine2.wav diff --git a/public/audio/se/battle_anims/PRSFX- Gunk Shot.wav b/public/audio/battle_anims/PRSFX- Gunk Shot.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Gunk Shot.wav rename to public/audio/battle_anims/PRSFX- Gunk Shot.wav diff --git a/public/audio/se/battle_anims/PRSFX- Gust.wav b/public/audio/battle_anims/PRSFX- Gust.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Gust.wav rename to public/audio/battle_anims/PRSFX- Gust.wav diff --git a/public/audio/se/battle_anims/PRSFX- Gyro Ball1.wav b/public/audio/battle_anims/PRSFX- Gyro Ball1.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Gyro Ball1.wav rename to public/audio/battle_anims/PRSFX- Gyro Ball1.wav diff --git a/public/audio/se/battle_anims/PRSFX- Gyro Ball2.wav b/public/audio/battle_anims/PRSFX- Gyro Ball2.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Gyro Ball2.wav rename to public/audio/battle_anims/PRSFX- Gyro Ball2.wav diff --git a/public/audio/se/battle_anims/PRSFX- Hail.wav b/public/audio/battle_anims/PRSFX- Hail.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Hail.wav rename to public/audio/battle_anims/PRSFX- Hail.wav diff --git a/public/audio/se/battle_anims/PRSFX- HailMove.wav b/public/audio/battle_anims/PRSFX- HailMove.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- HailMove.wav rename to public/audio/battle_anims/PRSFX- HailMove.wav diff --git a/public/audio/se/battle_anims/PRSFX- Hammer Arm1.wav b/public/audio/battle_anims/PRSFX- Hammer Arm1.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Hammer Arm1.wav rename to public/audio/battle_anims/PRSFX- Hammer Arm1.wav diff --git a/public/audio/se/battle_anims/PRSFX- Hammer Arm2.wav b/public/audio/battle_anims/PRSFX- Hammer Arm2.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Hammer Arm2.wav rename to public/audio/battle_anims/PRSFX- Hammer Arm2.wav diff --git a/public/audio/se/battle_anims/PRSFX- Harden.wav b/public/audio/battle_anims/PRSFX- Harden.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Harden.wav rename to public/audio/battle_anims/PRSFX- Harden.wav diff --git a/public/audio/se/battle_anims/PRSFX- Haze.wav b/public/audio/battle_anims/PRSFX- Haze.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Haze.wav rename to public/audio/battle_anims/PRSFX- Haze.wav diff --git a/public/audio/se/battle_anims/PRSFX- Head Charge.wav b/public/audio/battle_anims/PRSFX- Head Charge.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Head Charge.wav rename to public/audio/battle_anims/PRSFX- Head Charge.wav diff --git a/public/audio/se/battle_anims/PRSFX- Head Smash.wav b/public/audio/battle_anims/PRSFX- Head Smash.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Head Smash.wav rename to public/audio/battle_anims/PRSFX- Head Smash.wav diff --git a/public/audio/se/battle_anims/PRSFX- Headbutt1.wav b/public/audio/battle_anims/PRSFX- Headbutt1.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Headbutt1.wav rename to public/audio/battle_anims/PRSFX- Headbutt1.wav diff --git a/public/audio/se/battle_anims/PRSFX- Headbutt2.wav b/public/audio/battle_anims/PRSFX- Headbutt2.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Headbutt2.wav rename to public/audio/battle_anims/PRSFX- Headbutt2.wav diff --git a/public/audio/se/battle_anims/PRSFX- Heal Bell.wav b/public/audio/battle_anims/PRSFX- Heal Bell.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Heal Bell.wav rename to public/audio/battle_anims/PRSFX- Heal Bell.wav diff --git a/public/audio/se/battle_anims/PRSFX- Heal Block.wav b/public/audio/battle_anims/PRSFX- Heal Block.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Heal Block.wav rename to public/audio/battle_anims/PRSFX- Heal Block.wav diff --git a/public/audio/se/battle_anims/PRSFX- Heal Order1.wav b/public/audio/battle_anims/PRSFX- Heal Order1.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Heal Order1.wav rename to public/audio/battle_anims/PRSFX- Heal Order1.wav diff --git a/public/audio/se/battle_anims/PRSFX- Heal Order2.wav b/public/audio/battle_anims/PRSFX- Heal Order2.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Heal Order2.wav rename to public/audio/battle_anims/PRSFX- Heal Order2.wav diff --git a/public/audio/se/battle_anims/PRSFX- Healing Pulse.wav b/public/audio/battle_anims/PRSFX- Healing Pulse.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Healing Pulse.wav rename to public/audio/battle_anims/PRSFX- Healing Pulse.wav diff --git a/public/audio/se/battle_anims/PRSFX- Healing Wish.wav b/public/audio/battle_anims/PRSFX- Healing Wish.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Healing Wish.wav rename to public/audio/battle_anims/PRSFX- Healing Wish.wav diff --git a/public/audio/se/battle_anims/PRSFX- Health Down.wav b/public/audio/battle_anims/PRSFX- Health Down.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Health Down.wav rename to public/audio/battle_anims/PRSFX- Health Down.wav diff --git a/public/audio/se/battle_anims/PRSFX- Health Up.wav b/public/audio/battle_anims/PRSFX- Health Up.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Health Up.wav rename to public/audio/battle_anims/PRSFX- Health Up.wav diff --git a/public/audio/se/battle_anims/PRSFX- Heart Stamp1.wav b/public/audio/battle_anims/PRSFX- Heart Stamp1.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Heart Stamp1.wav rename to public/audio/battle_anims/PRSFX- Heart Stamp1.wav diff --git a/public/audio/se/battle_anims/PRSFX- Heart Stamp2.wav b/public/audio/battle_anims/PRSFX- Heart Stamp2.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Heart Stamp2.wav rename to public/audio/battle_anims/PRSFX- Heart Stamp2.wav diff --git a/public/audio/se/battle_anims/PRSFX- Heart Swap.wav b/public/audio/battle_anims/PRSFX- Heart Swap.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Heart Swap.wav rename to public/audio/battle_anims/PRSFX- Heart Swap.wav diff --git a/public/audio/se/battle_anims/PRSFX- Heat Crash.wav b/public/audio/battle_anims/PRSFX- Heat Crash.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Heat Crash.wav rename to public/audio/battle_anims/PRSFX- Heat Crash.wav diff --git a/public/audio/se/battle_anims/PRSFX- Heat Wave.wav b/public/audio/battle_anims/PRSFX- Heat Wave.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Heat Wave.wav rename to public/audio/battle_anims/PRSFX- Heat Wave.wav diff --git a/public/audio/se/battle_anims/PRSFX- Heavy Slam1.wav b/public/audio/battle_anims/PRSFX- Heavy Slam1.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Heavy Slam1.wav rename to public/audio/battle_anims/PRSFX- Heavy Slam1.wav diff --git a/public/audio/se/battle_anims/PRSFX- Heavy Slam2.wav b/public/audio/battle_anims/PRSFX- Heavy Slam2.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Heavy Slam2.wav rename to public/audio/battle_anims/PRSFX- Heavy Slam2.wav diff --git a/public/audio/se/battle_anims/PRSFX- Helping Hand.wav b/public/audio/battle_anims/PRSFX- Helping Hand.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Helping Hand.wav rename to public/audio/battle_anims/PRSFX- Helping Hand.wav diff --git a/public/audio/se/battle_anims/PRSFX- Hex.wav b/public/audio/battle_anims/PRSFX- Hex.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Hex.wav rename to public/audio/battle_anims/PRSFX- Hex.wav diff --git a/public/audio/se/battle_anims/PRSFX- Hi Jump Kick1.wav b/public/audio/battle_anims/PRSFX- Hi Jump Kick1.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Hi Jump Kick1.wav rename to public/audio/battle_anims/PRSFX- Hi Jump Kick1.wav diff --git a/public/audio/se/battle_anims/PRSFX- Hi Jump Kick2.wav b/public/audio/battle_anims/PRSFX- Hi Jump Kick2.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Hi Jump Kick2.wav rename to public/audio/battle_anims/PRSFX- Hi Jump Kick2.wav diff --git a/public/audio/se/battle_anims/PRSFX- Hidden Power1.wav b/public/audio/battle_anims/PRSFX- Hidden Power1.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Hidden Power1.wav rename to public/audio/battle_anims/PRSFX- Hidden Power1.wav diff --git a/public/audio/se/battle_anims/PRSFX- Hidden Power2.wav b/public/audio/battle_anims/PRSFX- Hidden Power2.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Hidden Power2.wav rename to public/audio/battle_anims/PRSFX- Hidden Power2.wav diff --git a/public/audio/se/battle_anims/PRSFX- High Horse Power1.wav b/public/audio/battle_anims/PRSFX- High Horse Power1.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- High Horse Power1.wav rename to public/audio/battle_anims/PRSFX- High Horse Power1.wav diff --git a/public/audio/se/battle_anims/PRSFX- High Horse Power2.wav b/public/audio/battle_anims/PRSFX- High Horse Power2.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- High Horse Power2.wav rename to public/audio/battle_anims/PRSFX- High Horse Power2.wav diff --git a/public/audio/se/battle_anims/PRSFX- Hone Claws.wav b/public/audio/battle_anims/PRSFX- Hone Claws.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Hone Claws.wav rename to public/audio/battle_anims/PRSFX- Hone Claws.wav diff --git a/public/audio/se/battle_anims/PRSFX- Horn Attack.wav b/public/audio/battle_anims/PRSFX- Horn Attack.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Horn Attack.wav rename to public/audio/battle_anims/PRSFX- Horn Attack.wav diff --git a/public/audio/se/battle_anims/PRSFX- Horn Drill1.wav b/public/audio/battle_anims/PRSFX- Horn Drill1.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Horn Drill1.wav rename to public/audio/battle_anims/PRSFX- Horn Drill1.wav diff --git a/public/audio/se/battle_anims/PRSFX- Horn Drill2.wav b/public/audio/battle_anims/PRSFX- Horn Drill2.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Horn Drill2.wav rename to public/audio/battle_anims/PRSFX- Horn Drill2.wav diff --git a/public/audio/se/battle_anims/PRSFX- Horn Drill3.wav b/public/audio/battle_anims/PRSFX- Horn Drill3.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Horn Drill3.wav rename to public/audio/battle_anims/PRSFX- Horn Drill3.wav diff --git a/public/audio/se/battle_anims/PRSFX- Horn Drill3_1.mp3 b/public/audio/battle_anims/PRSFX- Horn Drill3_1.mp3 similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Horn Drill3_1.mp3 rename to public/audio/battle_anims/PRSFX- Horn Drill3_1.mp3 diff --git a/public/audio/se/battle_anims/PRSFX- Horn Leech1.wav b/public/audio/battle_anims/PRSFX- Horn Leech1.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Horn Leech1.wav rename to public/audio/battle_anims/PRSFX- Horn Leech1.wav diff --git a/public/audio/se/battle_anims/PRSFX- Horn Leech2.wav b/public/audio/battle_anims/PRSFX- Horn Leech2.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Horn Leech2.wav rename to public/audio/battle_anims/PRSFX- Horn Leech2.wav diff --git a/public/audio/se/battle_anims/PRSFX- Hurricane.wav b/public/audio/battle_anims/PRSFX- Hurricane.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Hurricane.wav rename to public/audio/battle_anims/PRSFX- Hurricane.wav diff --git a/public/audio/se/battle_anims/PRSFX- Hydro Cannon.wav b/public/audio/battle_anims/PRSFX- Hydro Cannon.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Hydro Cannon.wav rename to public/audio/battle_anims/PRSFX- Hydro Cannon.wav diff --git a/public/audio/se/battle_anims/PRSFX- Hydro Cannon1.wav b/public/audio/battle_anims/PRSFX- Hydro Cannon1.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Hydro Cannon1.wav rename to public/audio/battle_anims/PRSFX- Hydro Cannon1.wav diff --git a/public/audio/se/battle_anims/PRSFX- Hydro Cannon2.wav b/public/audio/battle_anims/PRSFX- Hydro Cannon2.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Hydro Cannon2.wav rename to public/audio/battle_anims/PRSFX- Hydro Cannon2.wav diff --git a/public/audio/se/battle_anims/PRSFX- Hydro Pump.wav b/public/audio/battle_anims/PRSFX- Hydro Pump.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Hydro Pump.wav rename to public/audio/battle_anims/PRSFX- Hydro Pump.wav diff --git a/public/audio/se/battle_anims/PRSFX- Hydro Vortex1.wav b/public/audio/battle_anims/PRSFX- Hydro Vortex1.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Hydro Vortex1.wav rename to public/audio/battle_anims/PRSFX- Hydro Vortex1.wav diff --git a/public/audio/se/battle_anims/PRSFX- Hydro Vortex2.wav b/public/audio/battle_anims/PRSFX- Hydro Vortex2.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Hydro Vortex2.wav rename to public/audio/battle_anims/PRSFX- Hydro Vortex2.wav diff --git a/public/audio/se/battle_anims/PRSFX- Hydro Vortex3.wav b/public/audio/battle_anims/PRSFX- Hydro Vortex3.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Hydro Vortex3.wav rename to public/audio/battle_anims/PRSFX- Hydro Vortex3.wav diff --git a/public/audio/se/battle_anims/PRSFX- Hyper Beam.wav b/public/audio/battle_anims/PRSFX- Hyper Beam.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Hyper Beam.wav rename to public/audio/battle_anims/PRSFX- Hyper Beam.wav diff --git a/public/audio/se/battle_anims/PRSFX- Hyper Fang.wav b/public/audio/battle_anims/PRSFX- Hyper Fang.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Hyper Fang.wav rename to public/audio/battle_anims/PRSFX- Hyper Fang.wav diff --git a/public/audio/se/battle_anims/PRSFX- Hyperspace Fury1.wav b/public/audio/battle_anims/PRSFX- Hyperspace Fury1.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Hyperspace Fury1.wav rename to public/audio/battle_anims/PRSFX- Hyperspace Fury1.wav diff --git a/public/audio/se/battle_anims/PRSFX- Hyperspace Fury2.wav b/public/audio/battle_anims/PRSFX- Hyperspace Fury2.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Hyperspace Fury2.wav rename to public/audio/battle_anims/PRSFX- Hyperspace Fury2.wav diff --git a/public/audio/se/battle_anims/PRSFX- Hyperspace Hole1.wav b/public/audio/battle_anims/PRSFX- Hyperspace Hole1.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Hyperspace Hole1.wav rename to public/audio/battle_anims/PRSFX- Hyperspace Hole1.wav diff --git a/public/audio/se/battle_anims/PRSFX- Hyperspace Hole2.wav b/public/audio/battle_anims/PRSFX- Hyperspace Hole2.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Hyperspace Hole2.wav rename to public/audio/battle_anims/PRSFX- Hyperspace Hole2.wav diff --git a/public/audio/se/battle_anims/PRSFX- Hypnosis.wav b/public/audio/battle_anims/PRSFX- Hypnosis.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Hypnosis.wav rename to public/audio/battle_anims/PRSFX- Hypnosis.wav diff --git a/public/audio/se/battle_anims/PRSFX- Ice Ball1.wav b/public/audio/battle_anims/PRSFX- Ice Ball1.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Ice Ball1.wav rename to public/audio/battle_anims/PRSFX- Ice Ball1.wav diff --git a/public/audio/se/battle_anims/PRSFX- Ice Ball2.wav b/public/audio/battle_anims/PRSFX- Ice Ball2.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Ice Ball2.wav rename to public/audio/battle_anims/PRSFX- Ice Ball2.wav diff --git a/public/audio/se/battle_anims/PRSFX- Ice Beam.wav b/public/audio/battle_anims/PRSFX- Ice Beam.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Ice Beam.wav rename to public/audio/battle_anims/PRSFX- Ice Beam.wav diff --git a/public/audio/se/battle_anims/PRSFX- Ice Burn1.wav b/public/audio/battle_anims/PRSFX- Ice Burn1.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Ice Burn1.wav rename to public/audio/battle_anims/PRSFX- Ice Burn1.wav diff --git a/public/audio/se/battle_anims/PRSFX- Ice Burn2.wav b/public/audio/battle_anims/PRSFX- Ice Burn2.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Ice Burn2.wav rename to public/audio/battle_anims/PRSFX- Ice Burn2.wav diff --git a/public/audio/se/battle_anims/PRSFX- Ice Burn3.wav b/public/audio/battle_anims/PRSFX- Ice Burn3.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Ice Burn3.wav rename to public/audio/battle_anims/PRSFX- Ice Burn3.wav diff --git a/public/audio/se/battle_anims/PRSFX- Ice Burn4.wav b/public/audio/battle_anims/PRSFX- Ice Burn4.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Ice Burn4.wav rename to public/audio/battle_anims/PRSFX- Ice Burn4.wav diff --git a/public/audio/se/battle_anims/PRSFX- Ice Fang1.wav b/public/audio/battle_anims/PRSFX- Ice Fang1.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Ice Fang1.wav rename to public/audio/battle_anims/PRSFX- Ice Fang1.wav diff --git a/public/audio/se/battle_anims/PRSFX- Ice Fang2.wav b/public/audio/battle_anims/PRSFX- Ice Fang2.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Ice Fang2.wav rename to public/audio/battle_anims/PRSFX- Ice Fang2.wav diff --git a/public/audio/se/battle_anims/PRSFX- Ice Hammer1.wav b/public/audio/battle_anims/PRSFX- Ice Hammer1.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Ice Hammer1.wav rename to public/audio/battle_anims/PRSFX- Ice Hammer1.wav diff --git a/public/audio/se/battle_anims/PRSFX- Ice Hammer2.wav b/public/audio/battle_anims/PRSFX- Ice Hammer2.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Ice Hammer2.wav rename to public/audio/battle_anims/PRSFX- Ice Hammer2.wav diff --git a/public/audio/se/battle_anims/PRSFX- Ice Punch1.wav b/public/audio/battle_anims/PRSFX- Ice Punch1.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Ice Punch1.wav rename to public/audio/battle_anims/PRSFX- Ice Punch1.wav diff --git a/public/audio/se/battle_anims/PRSFX- Ice Punch2.wav b/public/audio/battle_anims/PRSFX- Ice Punch2.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Ice Punch2.wav rename to public/audio/battle_anims/PRSFX- Ice Punch2.wav diff --git a/public/audio/se/battle_anims/PRSFX- Ice Shard.wav b/public/audio/battle_anims/PRSFX- Ice Shard.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Ice Shard.wav rename to public/audio/battle_anims/PRSFX- Ice Shard.wav diff --git a/public/audio/se/battle_anims/PRSFX- Icicle Crash1.wav b/public/audio/battle_anims/PRSFX- Icicle Crash1.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Icicle Crash1.wav rename to public/audio/battle_anims/PRSFX- Icicle Crash1.wav diff --git a/public/audio/se/battle_anims/PRSFX- Icicle Crash2.wav b/public/audio/battle_anims/PRSFX- Icicle Crash2.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Icicle Crash2.wav rename to public/audio/battle_anims/PRSFX- Icicle Crash2.wav diff --git a/public/audio/se/battle_anims/PRSFX- Icicle Spear.wav b/public/audio/battle_anims/PRSFX- Icicle Spear.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Icicle Spear.wav rename to public/audio/battle_anims/PRSFX- Icicle Spear.wav diff --git a/public/audio/se/battle_anims/PRSFX- Icy Wind1.wav b/public/audio/battle_anims/PRSFX- Icy Wind1.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Icy Wind1.wav rename to public/audio/battle_anims/PRSFX- Icy Wind1.wav diff --git a/public/audio/se/battle_anims/PRSFX- Icy Wind2.wav b/public/audio/battle_anims/PRSFX- Icy Wind2.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Icy Wind2.wav rename to public/audio/battle_anims/PRSFX- Icy Wind2.wav diff --git a/public/audio/se/battle_anims/PRSFX- Imprison1.wav b/public/audio/battle_anims/PRSFX- Imprison1.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Imprison1.wav rename to public/audio/battle_anims/PRSFX- Imprison1.wav diff --git a/public/audio/se/battle_anims/PRSFX- Imprison2.wav b/public/audio/battle_anims/PRSFX- Imprison2.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Imprison2.wav rename to public/audio/battle_anims/PRSFX- Imprison2.wav diff --git a/public/audio/se/battle_anims/PRSFX- Incinerate1.wav b/public/audio/battle_anims/PRSFX- Incinerate1.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Incinerate1.wav rename to public/audio/battle_anims/PRSFX- Incinerate1.wav diff --git a/public/audio/se/battle_anims/PRSFX- Incinerate2.wav b/public/audio/battle_anims/PRSFX- Incinerate2.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Incinerate2.wav rename to public/audio/battle_anims/PRSFX- Incinerate2.wav diff --git a/public/audio/se/battle_anims/PRSFX- Inferno Overdrive1.wav b/public/audio/battle_anims/PRSFX- Inferno Overdrive1.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Inferno Overdrive1.wav rename to public/audio/battle_anims/PRSFX- Inferno Overdrive1.wav diff --git a/public/audio/se/battle_anims/PRSFX- Inferno Overdrive2.wav b/public/audio/battle_anims/PRSFX- Inferno Overdrive2.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Inferno Overdrive2.wav rename to public/audio/battle_anims/PRSFX- Inferno Overdrive2.wav diff --git a/public/audio/se/battle_anims/PRSFX- Inferno Overdrive3.wav b/public/audio/battle_anims/PRSFX- Inferno Overdrive3.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Inferno Overdrive3.wav rename to public/audio/battle_anims/PRSFX- Inferno Overdrive3.wav diff --git a/public/audio/se/battle_anims/PRSFX- Inferno Overdrive4.wav b/public/audio/battle_anims/PRSFX- Inferno Overdrive4.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Inferno Overdrive4.wav rename to public/audio/battle_anims/PRSFX- Inferno Overdrive4.wav diff --git a/public/audio/se/battle_anims/PRSFX- Inferno Overdrive5.wav b/public/audio/battle_anims/PRSFX- Inferno Overdrive5.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Inferno Overdrive5.wav rename to public/audio/battle_anims/PRSFX- Inferno Overdrive5.wav diff --git a/public/audio/se/battle_anims/PRSFX- Inferno.wav b/public/audio/battle_anims/PRSFX- Inferno.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Inferno.wav rename to public/audio/battle_anims/PRSFX- Inferno.wav diff --git a/public/audio/se/battle_anims/PRSFX- Infestation.wav b/public/audio/battle_anims/PRSFX- Infestation.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Infestation.wav rename to public/audio/battle_anims/PRSFX- Infestation.wav diff --git a/public/audio/se/battle_anims/PRSFX- Ingrain1.wav b/public/audio/battle_anims/PRSFX- Ingrain1.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Ingrain1.wav rename to public/audio/battle_anims/PRSFX- Ingrain1.wav diff --git a/public/audio/se/battle_anims/PRSFX- Ingrain2.wav b/public/audio/battle_anims/PRSFX- Ingrain2.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Ingrain2.wav rename to public/audio/battle_anims/PRSFX- Ingrain2.wav diff --git a/public/audio/se/battle_anims/PRSFX- Instruct1.wav b/public/audio/battle_anims/PRSFX- Instruct1.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Instruct1.wav rename to public/audio/battle_anims/PRSFX- Instruct1.wav diff --git a/public/audio/se/battle_anims/PRSFX- Instruct2.wav b/public/audio/battle_anims/PRSFX- Instruct2.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Instruct2.wav rename to public/audio/battle_anims/PRSFX- Instruct2.wav diff --git a/public/audio/se/battle_anims/PRSFX- Ion Deluge.wav b/public/audio/battle_anims/PRSFX- Ion Deluge.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Ion Deluge.wav rename to public/audio/battle_anims/PRSFX- Ion Deluge.wav diff --git a/public/audio/se/battle_anims/PRSFX- Iron Defense.wav b/public/audio/battle_anims/PRSFX- Iron Defense.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Iron Defense.wav rename to public/audio/battle_anims/PRSFX- Iron Defense.wav diff --git a/public/audio/se/battle_anims/PRSFX- Iron Head.wav b/public/audio/battle_anims/PRSFX- Iron Head.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Iron Head.wav rename to public/audio/battle_anims/PRSFX- Iron Head.wav diff --git a/public/audio/se/battle_anims/PRSFX- Iron Tail1.wav b/public/audio/battle_anims/PRSFX- Iron Tail1.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Iron Tail1.wav rename to public/audio/battle_anims/PRSFX- Iron Tail1.wav diff --git a/public/audio/se/battle_anims/PRSFX- Iron Tail2.wav b/public/audio/battle_anims/PRSFX- Iron Tail2.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Iron Tail2.wav rename to public/audio/battle_anims/PRSFX- Iron Tail2.wav diff --git a/public/audio/se/battle_anims/PRSFX- Judgment.wav b/public/audio/battle_anims/PRSFX- Judgment.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Judgment.wav rename to public/audio/battle_anims/PRSFX- Judgment.wav diff --git a/public/audio/se/battle_anims/PRSFX- Jump Kick1.wav b/public/audio/battle_anims/PRSFX- Jump Kick1.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Jump Kick1.wav rename to public/audio/battle_anims/PRSFX- Jump Kick1.wav diff --git a/public/audio/se/battle_anims/PRSFX- Jump Kick2.wav b/public/audio/battle_anims/PRSFX- Jump Kick2.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Jump Kick2.wav rename to public/audio/battle_anims/PRSFX- Jump Kick2.wav diff --git a/public/audio/se/battle_anims/PRSFX- Karate Chop1.wav b/public/audio/battle_anims/PRSFX- Karate Chop1.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Karate Chop1.wav rename to public/audio/battle_anims/PRSFX- Karate Chop1.wav diff --git a/public/audio/se/battle_anims/PRSFX- Karate Chop2.wav b/public/audio/battle_anims/PRSFX- Karate Chop2.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Karate Chop2.wav rename to public/audio/battle_anims/PRSFX- Karate Chop2.wav diff --git a/public/audio/se/battle_anims/PRSFX- Kinesis.wav b/public/audio/battle_anims/PRSFX- Kinesis.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Kinesis.wav rename to public/audio/battle_anims/PRSFX- Kinesis.wav diff --git a/public/audio/se/battle_anims/PRSFX- King's Shield1.wav b/public/audio/battle_anims/PRSFX- King's Shield1.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- King's Shield1.wav rename to public/audio/battle_anims/PRSFX- King's Shield1.wav diff --git a/public/audio/se/battle_anims/PRSFX- King's Shield2.wav b/public/audio/battle_anims/PRSFX- King's Shield2.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- King's Shield2.wav rename to public/audio/battle_anims/PRSFX- King's Shield2.wav diff --git a/public/audio/se/battle_anims/PRSFX- Knock Off.wav b/public/audio/battle_anims/PRSFX- Knock Off.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Knock Off.wav rename to public/audio/battle_anims/PRSFX- Knock Off.wav diff --git a/public/audio/se/battle_anims/PRSFX- LTBTS1.wav b/public/audio/battle_anims/PRSFX- LTBTS1.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- LTBTS1.wav rename to public/audio/battle_anims/PRSFX- LTBTS1.wav diff --git a/public/audio/se/battle_anims/PRSFX- LTBTS2.wav b/public/audio/battle_anims/PRSFX- LTBTS2.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- LTBTS2.wav rename to public/audio/battle_anims/PRSFX- LTBTS2.wav diff --git a/public/audio/se/battle_anims/PRSFX- LTBTS3.wav b/public/audio/battle_anims/PRSFX- LTBTS3.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- LTBTS3.wav rename to public/audio/battle_anims/PRSFX- LTBTS3.wav diff --git a/public/audio/se/battle_anims/PRSFX- LTBTS4.wav b/public/audio/battle_anims/PRSFX- LTBTS4.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- LTBTS4.wav rename to public/audio/battle_anims/PRSFX- LTBTS4.wav diff --git a/public/audio/se/battle_anims/PRSFX- Lands Wrath1.wav b/public/audio/battle_anims/PRSFX- Lands Wrath1.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Lands Wrath1.wav rename to public/audio/battle_anims/PRSFX- Lands Wrath1.wav diff --git a/public/audio/se/battle_anims/PRSFX- Lands Wrath2.wav b/public/audio/battle_anims/PRSFX- Lands Wrath2.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Lands Wrath2.wav rename to public/audio/battle_anims/PRSFX- Lands Wrath2.wav diff --git a/public/audio/se/battle_anims/PRSFX- Laser Focus1.wav b/public/audio/battle_anims/PRSFX- Laser Focus1.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Laser Focus1.wav rename to public/audio/battle_anims/PRSFX- Laser Focus1.wav diff --git a/public/audio/se/battle_anims/PRSFX- Laser Focus2.wav b/public/audio/battle_anims/PRSFX- Laser Focus2.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Laser Focus2.wav rename to public/audio/battle_anims/PRSFX- Laser Focus2.wav diff --git a/public/audio/se/battle_anims/PRSFX- Last Resort1.wav b/public/audio/battle_anims/PRSFX- Last Resort1.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Last Resort1.wav rename to public/audio/battle_anims/PRSFX- Last Resort1.wav diff --git a/public/audio/se/battle_anims/PRSFX- Last Resort2.wav b/public/audio/battle_anims/PRSFX- Last Resort2.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Last Resort2.wav rename to public/audio/battle_anims/PRSFX- Last Resort2.wav diff --git a/public/audio/se/battle_anims/PRSFX- Lava Plume.wav b/public/audio/battle_anims/PRSFX- Lava Plume.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Lava Plume.wav rename to public/audio/battle_anims/PRSFX- Lava Plume.wav diff --git a/public/audio/se/battle_anims/PRSFX- Leaf Blade.wav b/public/audio/battle_anims/PRSFX- Leaf Blade.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Leaf Blade.wav rename to public/audio/battle_anims/PRSFX- Leaf Blade.wav diff --git a/public/audio/se/battle_anims/PRSFX- Leaf Storm1.wav b/public/audio/battle_anims/PRSFX- Leaf Storm1.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Leaf Storm1.wav rename to public/audio/battle_anims/PRSFX- Leaf Storm1.wav diff --git a/public/audio/se/battle_anims/PRSFX- Leaf Storm2.wav b/public/audio/battle_anims/PRSFX- Leaf Storm2.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Leaf Storm2.wav rename to public/audio/battle_anims/PRSFX- Leaf Storm2.wav diff --git a/public/audio/se/battle_anims/PRSFX- Leaf Tornado1.wav b/public/audio/battle_anims/PRSFX- Leaf Tornado1.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Leaf Tornado1.wav rename to public/audio/battle_anims/PRSFX- Leaf Tornado1.wav diff --git a/public/audio/se/battle_anims/PRSFX- Leaf Tornado2.wav b/public/audio/battle_anims/PRSFX- Leaf Tornado2.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Leaf Tornado2.wav rename to public/audio/battle_anims/PRSFX- Leaf Tornado2.wav diff --git a/public/audio/se/battle_anims/PRSFX- Leafage 1.wav b/public/audio/battle_anims/PRSFX- Leafage 1.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Leafage 1.wav rename to public/audio/battle_anims/PRSFX- Leafage 1.wav diff --git a/public/audio/se/battle_anims/PRSFX- Leafage 2.wav b/public/audio/battle_anims/PRSFX- Leafage 2.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Leafage 2.wav rename to public/audio/battle_anims/PRSFX- Leafage 2.wav diff --git a/public/audio/se/battle_anims/PRSFX- Leech Life1.wav b/public/audio/battle_anims/PRSFX- Leech Life1.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Leech Life1.wav rename to public/audio/battle_anims/PRSFX- Leech Life1.wav diff --git a/public/audio/se/battle_anims/PRSFX- Leech Life2.wav b/public/audio/battle_anims/PRSFX- Leech Life2.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Leech Life2.wav rename to public/audio/battle_anims/PRSFX- Leech Life2.wav diff --git a/public/audio/se/battle_anims/PRSFX- Leech Seed1.wav b/public/audio/battle_anims/PRSFX- Leech Seed1.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Leech Seed1.wav rename to public/audio/battle_anims/PRSFX- Leech Seed1.wav diff --git a/public/audio/se/battle_anims/PRSFX- Leech Seed2.wav b/public/audio/battle_anims/PRSFX- Leech Seed2.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Leech Seed2.wav rename to public/audio/battle_anims/PRSFX- Leech Seed2.wav diff --git a/public/audio/se/battle_anims/PRSFX- Leech Seed3.wav b/public/audio/battle_anims/PRSFX- Leech Seed3.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Leech Seed3.wav rename to public/audio/battle_anims/PRSFX- Leech Seed3.wav diff --git a/public/audio/se/battle_anims/PRSFX- Leer.wav b/public/audio/battle_anims/PRSFX- Leer.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Leer.wav rename to public/audio/battle_anims/PRSFX- Leer.wav diff --git a/public/audio/se/battle_anims/PRSFX- Lick.wav b/public/audio/battle_anims/PRSFX- Lick.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Lick.wav rename to public/audio/battle_anims/PRSFX- Lick.wav diff --git a/public/audio/se/battle_anims/PRSFX- Light Screen.wav b/public/audio/battle_anims/PRSFX- Light Screen.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Light Screen.wav rename to public/audio/battle_anims/PRSFX- Light Screen.wav diff --git a/public/audio/se/battle_anims/PRSFX- Liquidation1.wav b/public/audio/battle_anims/PRSFX- Liquidation1.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Liquidation1.wav rename to public/audio/battle_anims/PRSFX- Liquidation1.wav diff --git a/public/audio/se/battle_anims/PRSFX- Liquidation2.wav b/public/audio/battle_anims/PRSFX- Liquidation2.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Liquidation2.wav rename to public/audio/battle_anims/PRSFX- Liquidation2.wav diff --git a/public/audio/se/battle_anims/PRSFX- Liquidation3.wav b/public/audio/battle_anims/PRSFX- Liquidation3.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Liquidation3.wav rename to public/audio/battle_anims/PRSFX- Liquidation3.wav diff --git a/public/audio/se/battle_anims/PRSFX- Liquidation4.wav b/public/audio/battle_anims/PRSFX- Liquidation4.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Liquidation4.wav rename to public/audio/battle_anims/PRSFX- Liquidation4.wav diff --git a/public/audio/se/battle_anims/PRSFX- Lock On.wav b/public/audio/battle_anims/PRSFX- Lock On.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Lock On.wav rename to public/audio/battle_anims/PRSFX- Lock On.wav diff --git a/public/audio/se/battle_anims/PRSFX- Lovely Kiss.wav b/public/audio/battle_anims/PRSFX- Lovely Kiss.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Lovely Kiss.wav rename to public/audio/battle_anims/PRSFX- Lovely Kiss.wav diff --git a/public/audio/se/battle_anims/PRSFX- Low Kick.wav b/public/audio/battle_anims/PRSFX- Low Kick.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Low Kick.wav rename to public/audio/battle_anims/PRSFX- Low Kick.wav diff --git a/public/audio/se/battle_anims/PRSFX- Low Sweep.wav b/public/audio/battle_anims/PRSFX- Low Sweep.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Low Sweep.wav rename to public/audio/battle_anims/PRSFX- Low Sweep.wav diff --git a/public/audio/se/battle_anims/PRSFX- Lucky Chant.wav b/public/audio/battle_anims/PRSFX- Lucky Chant.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Lucky Chant.wav rename to public/audio/battle_anims/PRSFX- Lucky Chant.wav diff --git a/public/audio/se/battle_anims/PRSFX- Lunar Dance.wav b/public/audio/battle_anims/PRSFX- Lunar Dance.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Lunar Dance.wav rename to public/audio/battle_anims/PRSFX- Lunar Dance.wav diff --git a/public/audio/se/battle_anims/PRSFX- Luster Purge1.wav b/public/audio/battle_anims/PRSFX- Luster Purge1.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Luster Purge1.wav rename to public/audio/battle_anims/PRSFX- Luster Purge1.wav diff --git a/public/audio/se/battle_anims/PRSFX- Luster Purge2.wav b/public/audio/battle_anims/PRSFX- Luster Purge2.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Luster Purge2.wav rename to public/audio/battle_anims/PRSFX- Luster Purge2.wav diff --git a/public/audio/se/battle_anims/PRSFX- Luster Purge3.wav b/public/audio/battle_anims/PRSFX- Luster Purge3.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Luster Purge3.wav rename to public/audio/battle_anims/PRSFX- Luster Purge3.wav diff --git a/public/audio/se/battle_anims/PRSFX- Mach Punch.wav b/public/audio/battle_anims/PRSFX- Mach Punch.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Mach Punch.wav rename to public/audio/battle_anims/PRSFX- Mach Punch.wav diff --git a/public/audio/se/battle_anims/PRSFX- Magic Coat.wav b/public/audio/battle_anims/PRSFX- Magic Coat.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Magic Coat.wav rename to public/audio/battle_anims/PRSFX- Magic Coat.wav diff --git a/public/audio/se/battle_anims/PRSFX- Magic Room.wav b/public/audio/battle_anims/PRSFX- Magic Room.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Magic Room.wav rename to public/audio/battle_anims/PRSFX- Magic Room.wav diff --git a/public/audio/se/battle_anims/PRSFX- Magical Leaf1.wav b/public/audio/battle_anims/PRSFX- Magical Leaf1.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Magical Leaf1.wav rename to public/audio/battle_anims/PRSFX- Magical Leaf1.wav diff --git a/public/audio/se/battle_anims/PRSFX- Magical Leaf2.wav b/public/audio/battle_anims/PRSFX- Magical Leaf2.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Magical Leaf2.wav rename to public/audio/battle_anims/PRSFX- Magical Leaf2.wav diff --git a/public/audio/se/battle_anims/PRSFX- Magma Storm1.wav b/public/audio/battle_anims/PRSFX- Magma Storm1.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Magma Storm1.wav rename to public/audio/battle_anims/PRSFX- Magma Storm1.wav diff --git a/public/audio/se/battle_anims/PRSFX- Magma Storm2.wav b/public/audio/battle_anims/PRSFX- Magma Storm2.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Magma Storm2.wav rename to public/audio/battle_anims/PRSFX- Magma Storm2.wav diff --git a/public/audio/se/battle_anims/PRSFX- Magnet Bomb1.wav b/public/audio/battle_anims/PRSFX- Magnet Bomb1.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Magnet Bomb1.wav rename to public/audio/battle_anims/PRSFX- Magnet Bomb1.wav diff --git a/public/audio/se/battle_anims/PRSFX- Magnet Bomb2.wav b/public/audio/battle_anims/PRSFX- Magnet Bomb2.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Magnet Bomb2.wav rename to public/audio/battle_anims/PRSFX- Magnet Bomb2.wav diff --git a/public/audio/se/battle_anims/PRSFX- Magnet Rise.wav b/public/audio/battle_anims/PRSFX- Magnet Rise.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Magnet Rise.wav rename to public/audio/battle_anims/PRSFX- Magnet Rise.wav diff --git a/public/audio/se/battle_anims/PRSFX- Magnetic Flux.wav b/public/audio/battle_anims/PRSFX- Magnetic Flux.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Magnetic Flux.wav rename to public/audio/battle_anims/PRSFX- Magnetic Flux.wav diff --git a/public/audio/se/battle_anims/PRSFX- Magnitude.wav b/public/audio/battle_anims/PRSFX- Magnitude.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Magnitude.wav rename to public/audio/battle_anims/PRSFX- Magnitude.wav diff --git a/public/audio/se/battle_anims/PRSFX- Mat Block.wav b/public/audio/battle_anims/PRSFX- Mat Block.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Mat Block.wav rename to public/audio/battle_anims/PRSFX- Mat Block.wav diff --git a/public/audio/se/battle_anims/PRSFX- Me First1.wav b/public/audio/battle_anims/PRSFX- Me First1.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Me First1.wav rename to public/audio/battle_anims/PRSFX- Me First1.wav diff --git a/public/audio/se/battle_anims/PRSFX- Me First2.wav b/public/audio/battle_anims/PRSFX- Me First2.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Me First2.wav rename to public/audio/battle_anims/PRSFX- Me First2.wav diff --git a/public/audio/se/battle_anims/PRSFX- Me First3.wav b/public/audio/battle_anims/PRSFX- Me First3.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Me First3.wav rename to public/audio/battle_anims/PRSFX- Me First3.wav diff --git a/public/audio/se/battle_anims/PRSFX- Mean Look.wav b/public/audio/battle_anims/PRSFX- Mean Look.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Mean Look.wav rename to public/audio/battle_anims/PRSFX- Mean Look.wav diff --git a/public/audio/se/battle_anims/PRSFX- Meditate.wav b/public/audio/battle_anims/PRSFX- Meditate.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Meditate.wav rename to public/audio/battle_anims/PRSFX- Meditate.wav diff --git a/public/audio/se/battle_anims/PRSFX- Mega Drain1.wav b/public/audio/battle_anims/PRSFX- Mega Drain1.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Mega Drain1.wav rename to public/audio/battle_anims/PRSFX- Mega Drain1.wav diff --git a/public/audio/se/battle_anims/PRSFX- Mega Drain2.wav b/public/audio/battle_anims/PRSFX- Mega Drain2.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Mega Drain2.wav rename to public/audio/battle_anims/PRSFX- Mega Drain2.wav diff --git a/public/audio/se/battle_anims/PRSFX- Mega Evolution1.wav b/public/audio/battle_anims/PRSFX- Mega Evolution1.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Mega Evolution1.wav rename to public/audio/battle_anims/PRSFX- Mega Evolution1.wav diff --git a/public/audio/se/battle_anims/PRSFX- Mega Evolution2.wav b/public/audio/battle_anims/PRSFX- Mega Evolution2.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Mega Evolution2.wav rename to public/audio/battle_anims/PRSFX- Mega Evolution2.wav diff --git a/public/audio/se/battle_anims/PRSFX- Mega Punch1.wav b/public/audio/battle_anims/PRSFX- Mega Punch1.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Mega Punch1.wav rename to public/audio/battle_anims/PRSFX- Mega Punch1.wav diff --git a/public/audio/se/battle_anims/PRSFX- Mega Punch2.wav b/public/audio/battle_anims/PRSFX- Mega Punch2.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Mega Punch2.wav rename to public/audio/battle_anims/PRSFX- Mega Punch2.wav diff --git a/public/audio/se/battle_anims/PRSFX- Megahorn1.wav b/public/audio/battle_anims/PRSFX- Megahorn1.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Megahorn1.wav rename to public/audio/battle_anims/PRSFX- Megahorn1.wav diff --git a/public/audio/se/battle_anims/PRSFX- Megahorn2.wav b/public/audio/battle_anims/PRSFX- Megahorn2.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Megahorn2.wav rename to public/audio/battle_anims/PRSFX- Megahorn2.wav diff --git a/public/audio/se/battle_anims/PRSFX- Megakick.wav b/public/audio/battle_anims/PRSFX- Megakick.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Megakick.wav rename to public/audio/battle_anims/PRSFX- Megakick.wav diff --git a/public/audio/se/battle_anims/PRSFX- Memento1.wav b/public/audio/battle_anims/PRSFX- Memento1.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Memento1.wav rename to public/audio/battle_anims/PRSFX- Memento1.wav diff --git a/public/audio/se/battle_anims/PRSFX- Memento2.wav b/public/audio/battle_anims/PRSFX- Memento2.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Memento2.wav rename to public/audio/battle_anims/PRSFX- Memento2.wav diff --git a/public/audio/se/battle_anims/PRSFX- Metal Burst1.wav b/public/audio/battle_anims/PRSFX- Metal Burst1.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Metal Burst1.wav rename to public/audio/battle_anims/PRSFX- Metal Burst1.wav diff --git a/public/audio/se/battle_anims/PRSFX- Metal Burst2.wav b/public/audio/battle_anims/PRSFX- Metal Burst2.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Metal Burst2.wav rename to public/audio/battle_anims/PRSFX- Metal Burst2.wav diff --git a/public/audio/se/battle_anims/PRSFX- Metal Claw1.wav b/public/audio/battle_anims/PRSFX- Metal Claw1.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Metal Claw1.wav rename to public/audio/battle_anims/PRSFX- Metal Claw1.wav diff --git a/public/audio/se/battle_anims/PRSFX- Metal Claw2.wav b/public/audio/battle_anims/PRSFX- Metal Claw2.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Metal Claw2.wav rename to public/audio/battle_anims/PRSFX- Metal Claw2.wav diff --git a/public/audio/se/battle_anims/PRSFX- Metal Sound.wav b/public/audio/battle_anims/PRSFX- Metal Sound.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Metal Sound.wav rename to public/audio/battle_anims/PRSFX- Metal Sound.wav diff --git a/public/audio/se/battle_anims/PRSFX- Meteor Mash1.wav b/public/audio/battle_anims/PRSFX- Meteor Mash1.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Meteor Mash1.wav rename to public/audio/battle_anims/PRSFX- Meteor Mash1.wav diff --git a/public/audio/se/battle_anims/PRSFX- Meteor Mash2.wav b/public/audio/battle_anims/PRSFX- Meteor Mash2.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Meteor Mash2.wav rename to public/audio/battle_anims/PRSFX- Meteor Mash2.wav diff --git a/public/audio/se/battle_anims/PRSFX- Metronome.wav b/public/audio/battle_anims/PRSFX- Metronome.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Metronome.wav rename to public/audio/battle_anims/PRSFX- Metronome.wav diff --git a/public/audio/se/battle_anims/PRSFX- Milk Drink.wav b/public/audio/battle_anims/PRSFX- Milk Drink.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Milk Drink.wav rename to public/audio/battle_anims/PRSFX- Milk Drink.wav diff --git a/public/audio/se/battle_anims/PRSFX- Mimic1.wav b/public/audio/battle_anims/PRSFX- Mimic1.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Mimic1.wav rename to public/audio/battle_anims/PRSFX- Mimic1.wav diff --git a/public/audio/se/battle_anims/PRSFX- Mimic2.wav b/public/audio/battle_anims/PRSFX- Mimic2.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Mimic2.wav rename to public/audio/battle_anims/PRSFX- Mimic2.wav diff --git a/public/audio/se/battle_anims/PRSFX- Mind Blow1.wav b/public/audio/battle_anims/PRSFX- Mind Blow1.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Mind Blow1.wav rename to public/audio/battle_anims/PRSFX- Mind Blow1.wav diff --git a/public/audio/se/battle_anims/PRSFX- Mind Blow2.wav b/public/audio/battle_anims/PRSFX- Mind Blow2.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Mind Blow2.wav rename to public/audio/battle_anims/PRSFX- Mind Blow2.wav diff --git a/public/audio/se/battle_anims/PRSFX- Mind Blow3.wav b/public/audio/battle_anims/PRSFX- Mind Blow3.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Mind Blow3.wav rename to public/audio/battle_anims/PRSFX- Mind Blow3.wav diff --git a/public/audio/se/battle_anims/PRSFX- Mind Blow4.wav b/public/audio/battle_anims/PRSFX- Mind Blow4.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Mind Blow4.wav rename to public/audio/battle_anims/PRSFX- Mind Blow4.wav diff --git a/public/audio/se/battle_anims/PRSFX- Mind Reader.wav b/public/audio/battle_anims/PRSFX- Mind Reader.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Mind Reader.wav rename to public/audio/battle_anims/PRSFX- Mind Reader.wav diff --git a/public/audio/se/battle_anims/PRSFX- Minimize1.wav b/public/audio/battle_anims/PRSFX- Minimize1.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Minimize1.wav rename to public/audio/battle_anims/PRSFX- Minimize1.wav diff --git a/public/audio/se/battle_anims/PRSFX- Minimize2.wav b/public/audio/battle_anims/PRSFX- Minimize2.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Minimize2.wav rename to public/audio/battle_anims/PRSFX- Minimize2.wav diff --git a/public/audio/se/battle_anims/PRSFX- Minimize3.wav b/public/audio/battle_anims/PRSFX- Minimize3.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Minimize3.wav rename to public/audio/battle_anims/PRSFX- Minimize3.wav diff --git a/public/audio/se/battle_anims/PRSFX- Miracle Eye.wav b/public/audio/battle_anims/PRSFX- Miracle Eye.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Miracle Eye.wav rename to public/audio/battle_anims/PRSFX- Miracle Eye.wav diff --git a/public/audio/se/battle_anims/PRSFX- Mirror Coat.wav b/public/audio/battle_anims/PRSFX- Mirror Coat.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Mirror Coat.wav rename to public/audio/battle_anims/PRSFX- Mirror Coat.wav diff --git a/public/audio/se/battle_anims/PRSFX- Mirror Shatter.wav b/public/audio/battle_anims/PRSFX- Mirror Shatter.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Mirror Shatter.wav rename to public/audio/battle_anims/PRSFX- Mirror Shatter.wav diff --git a/public/audio/se/battle_anims/PRSFX- Mirror Shot.wav b/public/audio/battle_anims/PRSFX- Mirror Shot.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Mirror Shot.wav rename to public/audio/battle_anims/PRSFX- Mirror Shot.wav diff --git a/public/audio/se/battle_anims/PRSFX- Mist Ball1.wav b/public/audio/battle_anims/PRSFX- Mist Ball1.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Mist Ball1.wav rename to public/audio/battle_anims/PRSFX- Mist Ball1.wav diff --git a/public/audio/se/battle_anims/PRSFX- Mist Ball2.wav b/public/audio/battle_anims/PRSFX- Mist Ball2.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Mist Ball2.wav rename to public/audio/battle_anims/PRSFX- Mist Ball2.wav diff --git a/public/audio/se/battle_anims/PRSFX- Mist.wav b/public/audio/battle_anims/PRSFX- Mist.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Mist.wav rename to public/audio/battle_anims/PRSFX- Mist.wav diff --git a/public/audio/se/battle_anims/PRSFX- Misty Terrain.wav b/public/audio/battle_anims/PRSFX- Misty Terrain.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Misty Terrain.wav rename to public/audio/battle_anims/PRSFX- Misty Terrain.wav diff --git a/public/audio/se/battle_anims/PRSFX- Moonblast1.wav b/public/audio/battle_anims/PRSFX- Moonblast1.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Moonblast1.wav rename to public/audio/battle_anims/PRSFX- Moonblast1.wav diff --git a/public/audio/se/battle_anims/PRSFX- Moonblast2.wav b/public/audio/battle_anims/PRSFX- Moonblast2.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Moonblast2.wav rename to public/audio/battle_anims/PRSFX- Moonblast2.wav diff --git a/public/audio/se/battle_anims/PRSFX- Moonlight.wav b/public/audio/battle_anims/PRSFX- Moonlight.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Moonlight.wav rename to public/audio/battle_anims/PRSFX- Moonlight.wav diff --git a/public/audio/se/battle_anims/PRSFX- Morning Sun.wav b/public/audio/battle_anims/PRSFX- Morning Sun.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Morning Sun.wav rename to public/audio/battle_anims/PRSFX- Morning Sun.wav diff --git a/public/audio/se/battle_anims/PRSFX- Mud Bomb1.wav b/public/audio/battle_anims/PRSFX- Mud Bomb1.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Mud Bomb1.wav rename to public/audio/battle_anims/PRSFX- Mud Bomb1.wav diff --git a/public/audio/se/battle_anims/PRSFX- Mud Bomb2.wav b/public/audio/battle_anims/PRSFX- Mud Bomb2.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Mud Bomb2.wav rename to public/audio/battle_anims/PRSFX- Mud Bomb2.wav diff --git a/public/audio/se/battle_anims/PRSFX- Mud Shot.wav b/public/audio/battle_anims/PRSFX- Mud Shot.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Mud Shot.wav rename to public/audio/battle_anims/PRSFX- Mud Shot.wav diff --git a/public/audio/se/battle_anims/PRSFX- Mud Slap.wav b/public/audio/battle_anims/PRSFX- Mud Slap.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Mud Slap.wav rename to public/audio/battle_anims/PRSFX- Mud Slap.wav diff --git a/public/audio/se/battle_anims/PRSFX- Mud Sport1.wav b/public/audio/battle_anims/PRSFX- Mud Sport1.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Mud Sport1.wav rename to public/audio/battle_anims/PRSFX- Mud Sport1.wav diff --git a/public/audio/se/battle_anims/PRSFX- Mud Sport2.wav b/public/audio/battle_anims/PRSFX- Mud Sport2.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Mud Sport2.wav rename to public/audio/battle_anims/PRSFX- Mud Sport2.wav diff --git a/public/audio/se/battle_anims/PRSFX- Muddy Water.wav b/public/audio/battle_anims/PRSFX- Muddy Water.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Muddy Water.wav rename to public/audio/battle_anims/PRSFX- Muddy Water.wav diff --git a/public/audio/se/battle_anims/PRSFX- Multi Attack1.wav b/public/audio/battle_anims/PRSFX- Multi Attack1.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Multi Attack1.wav rename to public/audio/battle_anims/PRSFX- Multi Attack1.wav diff --git a/public/audio/se/battle_anims/PRSFX- Multi Attack2.wav b/public/audio/battle_anims/PRSFX- Multi Attack2.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Multi Attack2.wav rename to public/audio/battle_anims/PRSFX- Multi Attack2.wav diff --git a/public/audio/se/battle_anims/PRSFX- Multi Attack3.wav b/public/audio/battle_anims/PRSFX- Multi Attack3.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Multi Attack3.wav rename to public/audio/battle_anims/PRSFX- Multi Attack3.wav diff --git a/public/audio/se/battle_anims/PRSFX- Multi Attack4.wav b/public/audio/battle_anims/PRSFX- Multi Attack4.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Multi Attack4.wav rename to public/audio/battle_anims/PRSFX- Multi Attack4.wav diff --git a/public/audio/se/battle_anims/PRSFX- Multi Attack5.wav b/public/audio/battle_anims/PRSFX- Multi Attack5.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Multi Attack5.wav rename to public/audio/battle_anims/PRSFX- Multi Attack5.wav diff --git a/public/audio/se/battle_anims/PRSFX- Mystical Fire1.wav b/public/audio/battle_anims/PRSFX- Mystical Fire1.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Mystical Fire1.wav rename to public/audio/battle_anims/PRSFX- Mystical Fire1.wav diff --git a/public/audio/se/battle_anims/PRSFX- Mystical Fire2.wav b/public/audio/battle_anims/PRSFX- Mystical Fire2.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Mystical Fire2.wav rename to public/audio/battle_anims/PRSFX- Mystical Fire2.wav diff --git a/public/audio/se/battle_anims/PRSFX- Nasty Plot.wav b/public/audio/battle_anims/PRSFX- Nasty Plot.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Nasty Plot.wav rename to public/audio/battle_anims/PRSFX- Nasty Plot.wav diff --git a/public/audio/se/battle_anims/PRSFX- Natural Gift1.wav b/public/audio/battle_anims/PRSFX- Natural Gift1.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Natural Gift1.wav rename to public/audio/battle_anims/PRSFX- Natural Gift1.wav diff --git a/public/audio/se/battle_anims/PRSFX- Natural Gift2.wav b/public/audio/battle_anims/PRSFX- Natural Gift2.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Natural Gift2.wav rename to public/audio/battle_anims/PRSFX- Natural Gift2.wav diff --git a/public/audio/se/battle_anims/PRSFX- Natures Madness1.wav b/public/audio/battle_anims/PRSFX- Natures Madness1.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Natures Madness1.wav rename to public/audio/battle_anims/PRSFX- Natures Madness1.wav diff --git a/public/audio/se/battle_anims/PRSFX- Natures Madness2.wav b/public/audio/battle_anims/PRSFX- Natures Madness2.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Natures Madness2.wav rename to public/audio/battle_anims/PRSFX- Natures Madness2.wav diff --git a/public/audio/se/battle_anims/PRSFX- Needle Arm1.wav b/public/audio/battle_anims/PRSFX- Needle Arm1.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Needle Arm1.wav rename to public/audio/battle_anims/PRSFX- Needle Arm1.wav diff --git a/public/audio/se/battle_anims/PRSFX- Needle Arm2.wav b/public/audio/battle_anims/PRSFX- Needle Arm2.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Needle Arm2.wav rename to public/audio/battle_anims/PRSFX- Needle Arm2.wav diff --git a/public/audio/se/battle_anims/PRSFX- NeverEndingNightmare1.wav b/public/audio/battle_anims/PRSFX- NeverEndingNightmare1.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- NeverEndingNightmare1.wav rename to public/audio/battle_anims/PRSFX- NeverEndingNightmare1.wav diff --git a/public/audio/se/battle_anims/PRSFX- NeverEndingNightmare2.wav b/public/audio/battle_anims/PRSFX- NeverEndingNightmare2.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- NeverEndingNightmare2.wav rename to public/audio/battle_anims/PRSFX- NeverEndingNightmare2.wav diff --git a/public/audio/se/battle_anims/PRSFX- NeverEndingNightmare3.wav b/public/audio/battle_anims/PRSFX- NeverEndingNightmare3.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- NeverEndingNightmare3.wav rename to public/audio/battle_anims/PRSFX- NeverEndingNightmare3.wav diff --git a/public/audio/se/battle_anims/PRSFX- NeverEndingNightmare4.wav b/public/audio/battle_anims/PRSFX- NeverEndingNightmare4.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- NeverEndingNightmare4.wav rename to public/audio/battle_anims/PRSFX- NeverEndingNightmare4.wav diff --git a/public/audio/se/battle_anims/PRSFX- NeverEndingNightmare5.wav b/public/audio/battle_anims/PRSFX- NeverEndingNightmare5.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- NeverEndingNightmare5.wav rename to public/audio/battle_anims/PRSFX- NeverEndingNightmare5.wav diff --git a/public/audio/se/battle_anims/PRSFX- NeverEndingNightmare6.wav b/public/audio/battle_anims/PRSFX- NeverEndingNightmare6.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- NeverEndingNightmare6.wav rename to public/audio/battle_anims/PRSFX- NeverEndingNightmare6.wav diff --git a/public/audio/se/battle_anims/PRSFX- Night Daze1.wav b/public/audio/battle_anims/PRSFX- Night Daze1.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Night Daze1.wav rename to public/audio/battle_anims/PRSFX- Night Daze1.wav diff --git a/public/audio/se/battle_anims/PRSFX- Night Daze2.wav b/public/audio/battle_anims/PRSFX- Night Daze2.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Night Daze2.wav rename to public/audio/battle_anims/PRSFX- Night Daze2.wav diff --git a/public/audio/se/battle_anims/PRSFX- Night Shade.wav b/public/audio/battle_anims/PRSFX- Night Shade.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Night Shade.wav rename to public/audio/battle_anims/PRSFX- Night Shade.wav diff --git a/public/audio/se/battle_anims/PRSFX- Night Slash1.wav b/public/audio/battle_anims/PRSFX- Night Slash1.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Night Slash1.wav rename to public/audio/battle_anims/PRSFX- Night Slash1.wav diff --git a/public/audio/se/battle_anims/PRSFX- Night Slash2.wav b/public/audio/battle_anims/PRSFX- Night Slash2.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Night Slash2.wav rename to public/audio/battle_anims/PRSFX- Night Slash2.wav diff --git a/public/audio/se/battle_anims/PRSFX- Nightmare.wav b/public/audio/battle_anims/PRSFX- Nightmare.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Nightmare.wav rename to public/audio/battle_anims/PRSFX- Nightmare.wav diff --git a/public/audio/se/battle_anims/PRSFX- Noble Roar1.wav b/public/audio/battle_anims/PRSFX- Noble Roar1.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Noble Roar1.wav rename to public/audio/battle_anims/PRSFX- Noble Roar1.wav diff --git a/public/audio/se/battle_anims/PRSFX- Noble Roar2.wav b/public/audio/battle_anims/PRSFX- Noble Roar2.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Noble Roar2.wav rename to public/audio/battle_anims/PRSFX- Noble Roar2.wav diff --git a/public/audio/se/battle_anims/PRSFX- Nuzzle1.wav b/public/audio/battle_anims/PRSFX- Nuzzle1.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Nuzzle1.wav rename to public/audio/battle_anims/PRSFX- Nuzzle1.wav diff --git a/public/audio/se/battle_anims/PRSFX- Nuzzle2.wav b/public/audio/battle_anims/PRSFX- Nuzzle2.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Nuzzle2.wav rename to public/audio/battle_anims/PRSFX- Nuzzle2.wav diff --git a/public/audio/se/battle_anims/PRSFX- Oblivion Wing1.wav b/public/audio/battle_anims/PRSFX- Oblivion Wing1.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Oblivion Wing1.wav rename to public/audio/battle_anims/PRSFX- Oblivion Wing1.wav diff --git a/public/audio/se/battle_anims/PRSFX- Oblivion Wing2.wav b/public/audio/battle_anims/PRSFX- Oblivion Wing2.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Oblivion Wing2.wav rename to public/audio/battle_anims/PRSFX- Oblivion Wing2.wav diff --git a/public/audio/se/battle_anims/PRSFX- Oceanic Operetta1.wav b/public/audio/battle_anims/PRSFX- Oceanic Operetta1.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Oceanic Operetta1.wav rename to public/audio/battle_anims/PRSFX- Oceanic Operetta1.wav diff --git a/public/audio/se/battle_anims/PRSFX- Oceanic Operetta2.wav b/public/audio/battle_anims/PRSFX- Oceanic Operetta2.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Oceanic Operetta2.wav rename to public/audio/battle_anims/PRSFX- Oceanic Operetta2.wav diff --git a/public/audio/se/battle_anims/PRSFX- Oceanic Operetta3.wav b/public/audio/battle_anims/PRSFX- Oceanic Operetta3.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Oceanic Operetta3.wav rename to public/audio/battle_anims/PRSFX- Oceanic Operetta3.wav diff --git a/public/audio/se/battle_anims/PRSFX- Oceanic Operetta4.wav b/public/audio/battle_anims/PRSFX- Oceanic Operetta4.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Oceanic Operetta4.wav rename to public/audio/battle_anims/PRSFX- Oceanic Operetta4.wav diff --git a/public/audio/se/battle_anims/PRSFX- Octazooka.wav b/public/audio/battle_anims/PRSFX- Octazooka.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Octazooka.wav rename to public/audio/battle_anims/PRSFX- Octazooka.wav diff --git a/public/audio/se/battle_anims/PRSFX- Odor Sleuth1.wav b/public/audio/battle_anims/PRSFX- Odor Sleuth1.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Odor Sleuth1.wav rename to public/audio/battle_anims/PRSFX- Odor Sleuth1.wav diff --git a/public/audio/se/battle_anims/PRSFX- Odor Sleuth2.wav b/public/audio/battle_anims/PRSFX- Odor Sleuth2.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Odor Sleuth2.wav rename to public/audio/battle_anims/PRSFX- Odor Sleuth2.wav diff --git a/public/audio/se/battle_anims/PRSFX- Ominous Wind.wav b/public/audio/battle_anims/PRSFX- Ominous Wind.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Ominous Wind.wav rename to public/audio/battle_anims/PRSFX- Ominous Wind.wav diff --git a/public/audio/se/battle_anims/PRSFX- Origin Pulse.wav b/public/audio/battle_anims/PRSFX- Origin Pulse.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Origin Pulse.wav rename to public/audio/battle_anims/PRSFX- Origin Pulse.wav diff --git a/public/audio/se/battle_anims/PRSFX- Origin Pulse1.wav b/public/audio/battle_anims/PRSFX- Origin Pulse1.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Origin Pulse1.wav rename to public/audio/battle_anims/PRSFX- Origin Pulse1.wav diff --git a/public/audio/se/battle_anims/PRSFX- Origin Pulse2.wav b/public/audio/battle_anims/PRSFX- Origin Pulse2.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Origin Pulse2.wav rename to public/audio/battle_anims/PRSFX- Origin Pulse2.wav diff --git a/public/audio/se/battle_anims/PRSFX- Origin Pulse3.wav b/public/audio/battle_anims/PRSFX- Origin Pulse3.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Origin Pulse3.wav rename to public/audio/battle_anims/PRSFX- Origin Pulse3.wav diff --git a/public/audio/se/battle_anims/PRSFX- Outrage1.wav b/public/audio/battle_anims/PRSFX- Outrage1.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Outrage1.wav rename to public/audio/battle_anims/PRSFX- Outrage1.wav diff --git a/public/audio/se/battle_anims/PRSFX- Outrage2.wav b/public/audio/battle_anims/PRSFX- Outrage2.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Outrage2.wav rename to public/audio/battle_anims/PRSFX- Outrage2.wav diff --git a/public/audio/se/battle_anims/PRSFX- Overheat1.wav b/public/audio/battle_anims/PRSFX- Overheat1.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Overheat1.wav rename to public/audio/battle_anims/PRSFX- Overheat1.wav diff --git a/public/audio/se/battle_anims/PRSFX- Overheat2.wav b/public/audio/battle_anims/PRSFX- Overheat2.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Overheat2.wav rename to public/audio/battle_anims/PRSFX- Overheat2.wav diff --git a/public/audio/se/battle_anims/PRSFX- Pain Split.wav b/public/audio/battle_anims/PRSFX- Pain Split.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Pain Split.wav rename to public/audio/battle_anims/PRSFX- Pain Split.wav diff --git a/public/audio/se/battle_anims/PRSFX- Parabolic Charge.wav b/public/audio/battle_anims/PRSFX- Parabolic Charge.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Parabolic Charge.wav rename to public/audio/battle_anims/PRSFX- Parabolic Charge.wav diff --git a/public/audio/se/battle_anims/PRSFX- Paralysis.wav b/public/audio/battle_anims/PRSFX- Paralysis.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Paralysis.wav rename to public/audio/battle_anims/PRSFX- Paralysis.wav diff --git a/public/audio/se/battle_anims/PRSFX- Parting Shot.wav b/public/audio/battle_anims/PRSFX- Parting Shot.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Parting Shot.wav rename to public/audio/battle_anims/PRSFX- Parting Shot.wav diff --git a/public/audio/se/battle_anims/PRSFX- Pay Day1.wav b/public/audio/battle_anims/PRSFX- Pay Day1.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Pay Day1.wav rename to public/audio/battle_anims/PRSFX- Pay Day1.wav diff --git a/public/audio/se/battle_anims/PRSFX- Pay Day2.wav b/public/audio/battle_anims/PRSFX- Pay Day2.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Pay Day2.wav rename to public/audio/battle_anims/PRSFX- Pay Day2.wav diff --git a/public/audio/se/battle_anims/PRSFX- Payback1.wav b/public/audio/battle_anims/PRSFX- Payback1.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Payback1.wav rename to public/audio/battle_anims/PRSFX- Payback1.wav diff --git a/public/audio/se/battle_anims/PRSFX- Payback2.wav b/public/audio/battle_anims/PRSFX- Payback2.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Payback2.wav rename to public/audio/battle_anims/PRSFX- Payback2.wav diff --git a/public/audio/se/battle_anims/PRSFX- Peck.wav b/public/audio/battle_anims/PRSFX- Peck.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Peck.wav rename to public/audio/battle_anims/PRSFX- Peck.wav diff --git a/public/audio/se/battle_anims/PRSFX- Perish Song.wav b/public/audio/battle_anims/PRSFX- Perish Song.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Perish Song.wav rename to public/audio/battle_anims/PRSFX- Perish Song.wav diff --git a/public/audio/se/battle_anims/PRSFX- Petal Blizzard1.wav b/public/audio/battle_anims/PRSFX- Petal Blizzard1.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Petal Blizzard1.wav rename to public/audio/battle_anims/PRSFX- Petal Blizzard1.wav diff --git a/public/audio/se/battle_anims/PRSFX- Petal Blizzard2.wav b/public/audio/battle_anims/PRSFX- Petal Blizzard2.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Petal Blizzard2.wav rename to public/audio/battle_anims/PRSFX- Petal Blizzard2.wav diff --git a/public/audio/se/battle_anims/PRSFX- Petal Dance.wav b/public/audio/battle_anims/PRSFX- Petal Dance.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Petal Dance.wav rename to public/audio/battle_anims/PRSFX- Petal Dance.wav diff --git a/public/audio/se/battle_anims/PRSFX- Phantom Force1.wav b/public/audio/battle_anims/PRSFX- Phantom Force1.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Phantom Force1.wav rename to public/audio/battle_anims/PRSFX- Phantom Force1.wav diff --git a/public/audio/se/battle_anims/PRSFX- Phantom Force2.wav b/public/audio/battle_anims/PRSFX- Phantom Force2.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Phantom Force2.wav rename to public/audio/battle_anims/PRSFX- Phantom Force2.wav diff --git a/public/audio/se/battle_anims/PRSFX- Photon Guyser1.wav b/public/audio/battle_anims/PRSFX- Photon Guyser1.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Photon Guyser1.wav rename to public/audio/battle_anims/PRSFX- Photon Guyser1.wav diff --git a/public/audio/se/battle_anims/PRSFX- Photon Guyser2.wav b/public/audio/battle_anims/PRSFX- Photon Guyser2.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Photon Guyser2.wav rename to public/audio/battle_anims/PRSFX- Photon Guyser2.wav diff --git a/public/audio/se/battle_anims/PRSFX- Photon Guyser3.wav b/public/audio/battle_anims/PRSFX- Photon Guyser3.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Photon Guyser3.wav rename to public/audio/battle_anims/PRSFX- Photon Guyser3.wav diff --git a/public/audio/se/battle_anims/PRSFX- Pin Missile.wav b/public/audio/battle_anims/PRSFX- Pin Missile.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Pin Missile.wav rename to public/audio/battle_anims/PRSFX- Pin Missile.wav diff --git a/public/audio/se/battle_anims/PRSFX- Plasma Fist1.wav b/public/audio/battle_anims/PRSFX- Plasma Fist1.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Plasma Fist1.wav rename to public/audio/battle_anims/PRSFX- Plasma Fist1.wav diff --git a/public/audio/se/battle_anims/PRSFX- Plasma Fist2.wav b/public/audio/battle_anims/PRSFX- Plasma Fist2.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Plasma Fist2.wav rename to public/audio/battle_anims/PRSFX- Plasma Fist2.wav diff --git a/public/audio/se/battle_anims/PRSFX- Plasma Fist3.wav b/public/audio/battle_anims/PRSFX- Plasma Fist3.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Plasma Fist3.wav rename to public/audio/battle_anims/PRSFX- Plasma Fist3.wav diff --git a/public/audio/se/battle_anims/PRSFX- Play Nice1.wav b/public/audio/battle_anims/PRSFX- Play Nice1.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Play Nice1.wav rename to public/audio/battle_anims/PRSFX- Play Nice1.wav diff --git a/public/audio/se/battle_anims/PRSFX- Play Nice2.wav b/public/audio/battle_anims/PRSFX- Play Nice2.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Play Nice2.wav rename to public/audio/battle_anims/PRSFX- Play Nice2.wav diff --git a/public/audio/se/battle_anims/PRSFX- Play Rough1.wav b/public/audio/battle_anims/PRSFX- Play Rough1.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Play Rough1.wav rename to public/audio/battle_anims/PRSFX- Play Rough1.wav diff --git a/public/audio/se/battle_anims/PRSFX- Play Rough2.wav b/public/audio/battle_anims/PRSFX- Play Rough2.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Play Rough2.wav rename to public/audio/battle_anims/PRSFX- Play Rough2.wav diff --git a/public/audio/se/battle_anims/PRSFX- Play Rough3.wav b/public/audio/battle_anims/PRSFX- Play Rough3.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Play Rough3.wav rename to public/audio/battle_anims/PRSFX- Play Rough3.wav diff --git a/public/audio/se/battle_anims/PRSFX- Play Rough4.wav b/public/audio/battle_anims/PRSFX- Play Rough4.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Play Rough4.wav rename to public/audio/battle_anims/PRSFX- Play Rough4.wav diff --git a/public/audio/se/battle_anims/PRSFX- Pluck1.wav b/public/audio/battle_anims/PRSFX- Pluck1.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Pluck1.wav rename to public/audio/battle_anims/PRSFX- Pluck1.wav diff --git a/public/audio/se/battle_anims/PRSFX- Pluck2.wav b/public/audio/battle_anims/PRSFX- Pluck2.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Pluck2.wav rename to public/audio/battle_anims/PRSFX- Pluck2.wav diff --git a/public/audio/se/battle_anims/PRSFX- Poison Fang1.wav b/public/audio/battle_anims/PRSFX- Poison Fang1.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Poison Fang1.wav rename to public/audio/battle_anims/PRSFX- Poison Fang1.wav diff --git a/public/audio/se/battle_anims/PRSFX- Poison Fang2.wav b/public/audio/battle_anims/PRSFX- Poison Fang2.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Poison Fang2.wav rename to public/audio/battle_anims/PRSFX- Poison Fang2.wav diff --git a/public/audio/se/battle_anims/PRSFX- Poison Gas.wav b/public/audio/battle_anims/PRSFX- Poison Gas.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Poison Gas.wav rename to public/audio/battle_anims/PRSFX- Poison Gas.wav diff --git a/public/audio/se/battle_anims/PRSFX- Poison Jab1.wav b/public/audio/battle_anims/PRSFX- Poison Jab1.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Poison Jab1.wav rename to public/audio/battle_anims/PRSFX- Poison Jab1.wav diff --git a/public/audio/se/battle_anims/PRSFX- Poison Jab2.wav b/public/audio/battle_anims/PRSFX- Poison Jab2.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Poison Jab2.wav rename to public/audio/battle_anims/PRSFX- Poison Jab2.wav diff --git a/public/audio/se/battle_anims/PRSFX- Poison Powder.wav b/public/audio/battle_anims/PRSFX- Poison Powder.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Poison Powder.wav rename to public/audio/battle_anims/PRSFX- Poison Powder.wav diff --git a/public/audio/se/battle_anims/PRSFX- Poison Sting.wav b/public/audio/battle_anims/PRSFX- Poison Sting.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Poison Sting.wav rename to public/audio/battle_anims/PRSFX- Poison Sting.wav diff --git a/public/audio/se/battle_anims/PRSFX- Poison Tail1.wav b/public/audio/battle_anims/PRSFX- Poison Tail1.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Poison Tail1.wav rename to public/audio/battle_anims/PRSFX- Poison Tail1.wav diff --git a/public/audio/se/battle_anims/PRSFX- Poison Tail2.wav b/public/audio/battle_anims/PRSFX- Poison Tail2.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Poison Tail2.wav rename to public/audio/battle_anims/PRSFX- Poison Tail2.wav diff --git a/public/audio/se/battle_anims/PRSFX- Poison.wav b/public/audio/battle_anims/PRSFX- Poison.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Poison.wav rename to public/audio/battle_anims/PRSFX- Poison.wav diff --git a/public/audio/se/battle_anims/PRSFX- Pollen Puff1.wav b/public/audio/battle_anims/PRSFX- Pollen Puff1.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Pollen Puff1.wav rename to public/audio/battle_anims/PRSFX- Pollen Puff1.wav diff --git a/public/audio/se/battle_anims/PRSFX- Pollen Puff2.wav b/public/audio/battle_anims/PRSFX- Pollen Puff2.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Pollen Puff2.wav rename to public/audio/battle_anims/PRSFX- Pollen Puff2.wav diff --git a/public/audio/se/battle_anims/PRSFX- Pollen Puff3.wav b/public/audio/battle_anims/PRSFX- Pollen Puff3.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Pollen Puff3.wav rename to public/audio/battle_anims/PRSFX- Pollen Puff3.wav diff --git a/public/audio/se/battle_anims/PRSFX- Pollen Puff4.wav b/public/audio/battle_anims/PRSFX- Pollen Puff4.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Pollen Puff4.wav rename to public/audio/battle_anims/PRSFX- Pollen Puff4.wav diff --git a/public/audio/se/battle_anims/PRSFX- Pollen Puff5.wav b/public/audio/battle_anims/PRSFX- Pollen Puff5.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Pollen Puff5.wav rename to public/audio/battle_anims/PRSFX- Pollen Puff5.wav diff --git a/public/audio/se/battle_anims/PRSFX- Pollen Puff6.wav b/public/audio/battle_anims/PRSFX- Pollen Puff6.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Pollen Puff6.wav rename to public/audio/battle_anims/PRSFX- Pollen Puff6.wav diff --git a/public/audio/se/battle_anims/PRSFX- Pound.wav b/public/audio/battle_anims/PRSFX- Pound.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Pound.wav rename to public/audio/battle_anims/PRSFX- Pound.wav diff --git a/public/audio/se/battle_anims/PRSFX- Powder 1.wav b/public/audio/battle_anims/PRSFX- Powder 1.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Powder 1.wav rename to public/audio/battle_anims/PRSFX- Powder 1.wav diff --git a/public/audio/se/battle_anims/PRSFX- Powder 2.wav b/public/audio/battle_anims/PRSFX- Powder 2.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Powder 2.wav rename to public/audio/battle_anims/PRSFX- Powder 2.wav diff --git a/public/audio/se/battle_anims/PRSFX- Powder Snow1.wav b/public/audio/battle_anims/PRSFX- Powder Snow1.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Powder Snow1.wav rename to public/audio/battle_anims/PRSFX- Powder Snow1.wav diff --git a/public/audio/se/battle_anims/PRSFX- Powder Snow2.wav b/public/audio/battle_anims/PRSFX- Powder Snow2.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Powder Snow2.wav rename to public/audio/battle_anims/PRSFX- Powder Snow2.wav diff --git a/public/audio/se/battle_anims/PRSFX- Powder common1.wav b/public/audio/battle_anims/PRSFX- Powder common1.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Powder common1.wav rename to public/audio/battle_anims/PRSFX- Powder common1.wav diff --git a/public/audio/se/battle_anims/PRSFX- Powder common2.wav b/public/audio/battle_anims/PRSFX- Powder common2.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Powder common2.wav rename to public/audio/battle_anims/PRSFX- Powder common2.wav diff --git a/public/audio/se/battle_anims/PRSFX- Power Gem1.wav b/public/audio/battle_anims/PRSFX- Power Gem1.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Power Gem1.wav rename to public/audio/battle_anims/PRSFX- Power Gem1.wav diff --git a/public/audio/se/battle_anims/PRSFX- Power Split.wav b/public/audio/battle_anims/PRSFX- Power Split.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Power Split.wav rename to public/audio/battle_anims/PRSFX- Power Split.wav diff --git a/public/audio/se/battle_anims/PRSFX- Power Swap.wav b/public/audio/battle_anims/PRSFX- Power Swap.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Power Swap.wav rename to public/audio/battle_anims/PRSFX- Power Swap.wav diff --git a/public/audio/se/battle_anims/PRSFX- Power Trick.wav b/public/audio/battle_anims/PRSFX- Power Trick.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Power Trick.wav rename to public/audio/battle_anims/PRSFX- Power Trick.wav diff --git a/public/audio/se/battle_anims/PRSFX- Power Trip1.wav b/public/audio/battle_anims/PRSFX- Power Trip1.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Power Trip1.wav rename to public/audio/battle_anims/PRSFX- Power Trip1.wav diff --git a/public/audio/se/battle_anims/PRSFX- Power Trip2.wav b/public/audio/battle_anims/PRSFX- Power Trip2.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Power Trip2.wav rename to public/audio/battle_anims/PRSFX- Power Trip2.wav diff --git a/public/audio/se/battle_anims/PRSFX- Power Trip3.wav b/public/audio/battle_anims/PRSFX- Power Trip3.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Power Trip3.wav rename to public/audio/battle_anims/PRSFX- Power Trip3.wav diff --git a/public/audio/se/battle_anims/PRSFX- Power Trip4.wav b/public/audio/battle_anims/PRSFX- Power Trip4.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Power Trip4.wav rename to public/audio/battle_anims/PRSFX- Power Trip4.wav diff --git a/public/audio/se/battle_anims/PRSFX- Power Trip5.wav b/public/audio/battle_anims/PRSFX- Power Trip5.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Power Trip5.wav rename to public/audio/battle_anims/PRSFX- Power Trip5.wav diff --git a/public/audio/se/battle_anims/PRSFX- Power Up Punch1.wav b/public/audio/battle_anims/PRSFX- Power Up Punch1.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Power Up Punch1.wav rename to public/audio/battle_anims/PRSFX- Power Up Punch1.wav diff --git a/public/audio/se/battle_anims/PRSFX- Power Up Punch2.wav b/public/audio/battle_anims/PRSFX- Power Up Punch2.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Power Up Punch2.wav rename to public/audio/battle_anims/PRSFX- Power Up Punch2.wav diff --git a/public/audio/se/battle_anims/PRSFX- Power Whip.wav b/public/audio/battle_anims/PRSFX- Power Whip.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Power Whip.wav rename to public/audio/battle_anims/PRSFX- Power Whip.wav diff --git a/public/audio/se/battle_anims/PRSFX- Precipice Blades.wav b/public/audio/battle_anims/PRSFX- Precipice Blades.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Precipice Blades.wav rename to public/audio/battle_anims/PRSFX- Precipice Blades.wav diff --git a/public/audio/se/battle_anims/PRSFX- Present1.wav b/public/audio/battle_anims/PRSFX- Present1.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Present1.wav rename to public/audio/battle_anims/PRSFX- Present1.wav diff --git a/public/audio/se/battle_anims/PRSFX- Present2.wav b/public/audio/battle_anims/PRSFX- Present2.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Present2.wav rename to public/audio/battle_anims/PRSFX- Present2.wav diff --git a/public/audio/se/battle_anims/PRSFX- Prismatic Laser1.wav b/public/audio/battle_anims/PRSFX- Prismatic Laser1.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Prismatic Laser1.wav rename to public/audio/battle_anims/PRSFX- Prismatic Laser1.wav diff --git a/public/audio/se/battle_anims/PRSFX- Prismatic Laser2.wav b/public/audio/battle_anims/PRSFX- Prismatic Laser2.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Prismatic Laser2.wav rename to public/audio/battle_anims/PRSFX- Prismatic Laser2.wav diff --git a/public/audio/se/battle_anims/PRSFX- Prismatic Laser3.wav b/public/audio/battle_anims/PRSFX- Prismatic Laser3.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Prismatic Laser3.wav rename to public/audio/battle_anims/PRSFX- Prismatic Laser3.wav diff --git a/public/audio/se/battle_anims/PRSFX- Protect.wav b/public/audio/battle_anims/PRSFX- Protect.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Protect.wav rename to public/audio/battle_anims/PRSFX- Protect.wav diff --git a/public/audio/se/battle_anims/PRSFX- Psybeam.wav b/public/audio/battle_anims/PRSFX- Psybeam.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Psybeam.wav rename to public/audio/battle_anims/PRSFX- Psybeam.wav diff --git a/public/audio/se/battle_anims/PRSFX- Psych Up.wav b/public/audio/battle_anims/PRSFX- Psych Up.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Psych Up.wav rename to public/audio/battle_anims/PRSFX- Psych Up.wav diff --git a/public/audio/se/battle_anims/PRSFX- Psychic Terrain1.wav b/public/audio/battle_anims/PRSFX- Psychic Terrain1.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Psychic Terrain1.wav rename to public/audio/battle_anims/PRSFX- Psychic Terrain1.wav diff --git a/public/audio/se/battle_anims/PRSFX- Psychic Terrain2.wav b/public/audio/battle_anims/PRSFX- Psychic Terrain2.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Psychic Terrain2.wav rename to public/audio/battle_anims/PRSFX- Psychic Terrain2.wav diff --git a/public/audio/se/battle_anims/PRSFX- Psychic Terrain3.wav b/public/audio/battle_anims/PRSFX- Psychic Terrain3.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Psychic Terrain3.wav rename to public/audio/battle_anims/PRSFX- Psychic Terrain3.wav diff --git a/public/audio/se/battle_anims/PRSFX- Psychic.wav b/public/audio/battle_anims/PRSFX- Psychic.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Psychic.wav rename to public/audio/battle_anims/PRSFX- Psychic.wav diff --git a/public/audio/se/battle_anims/PRSFX- Psycho Boost1.wav b/public/audio/battle_anims/PRSFX- Psycho Boost1.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Psycho Boost1.wav rename to public/audio/battle_anims/PRSFX- Psycho Boost1.wav diff --git a/public/audio/se/battle_anims/PRSFX- Psycho Boost2.wav b/public/audio/battle_anims/PRSFX- Psycho Boost2.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Psycho Boost2.wav rename to public/audio/battle_anims/PRSFX- Psycho Boost2.wav diff --git a/public/audio/se/battle_anims/PRSFX- Psycho Cut.wav b/public/audio/battle_anims/PRSFX- Psycho Cut.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Psycho Cut.wav rename to public/audio/battle_anims/PRSFX- Psycho Cut.wav diff --git a/public/audio/se/battle_anims/PRSFX- Psycho Shift.wav b/public/audio/battle_anims/PRSFX- Psycho Shift.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Psycho Shift.wav rename to public/audio/battle_anims/PRSFX- Psycho Shift.wav diff --git a/public/audio/se/battle_anims/PRSFX- Psyshock1.wav b/public/audio/battle_anims/PRSFX- Psyshock1.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Psyshock1.wav rename to public/audio/battle_anims/PRSFX- Psyshock1.wav diff --git a/public/audio/se/battle_anims/PRSFX- Psyshock2.wav b/public/audio/battle_anims/PRSFX- Psyshock2.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Psyshock2.wav rename to public/audio/battle_anims/PRSFX- Psyshock2.wav diff --git a/public/audio/se/battle_anims/PRSFX- Psystrike1.wav b/public/audio/battle_anims/PRSFX- Psystrike1.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Psystrike1.wav rename to public/audio/battle_anims/PRSFX- Psystrike1.wav diff --git a/public/audio/se/battle_anims/PRSFX- Psystrike2.wav b/public/audio/battle_anims/PRSFX- Psystrike2.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Psystrike2.wav rename to public/audio/battle_anims/PRSFX- Psystrike2.wav diff --git a/public/audio/se/battle_anims/PRSFX- Psystrike3.wav b/public/audio/battle_anims/PRSFX- Psystrike3.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Psystrike3.wav rename to public/audio/battle_anims/PRSFX- Psystrike3.wav diff --git a/public/audio/se/battle_anims/PRSFX- Psywave.wav b/public/audio/battle_anims/PRSFX- Psywave.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Psywave.wav rename to public/audio/battle_anims/PRSFX- Psywave.wav diff --git a/public/audio/se/battle_anims/PRSFX- Pulse Evolution1.wav b/public/audio/battle_anims/PRSFX- Pulse Evolution1.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Pulse Evolution1.wav rename to public/audio/battle_anims/PRSFX- Pulse Evolution1.wav diff --git a/public/audio/se/battle_anims/PRSFX- Pulse Evolution2.wav b/public/audio/battle_anims/PRSFX- Pulse Evolution2.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Pulse Evolution2.wav rename to public/audio/battle_anims/PRSFX- Pulse Evolution2.wav diff --git a/public/audio/se/battle_anims/PRSFX- Pulverizing Pancake1.wav b/public/audio/battle_anims/PRSFX- Pulverizing Pancake1.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Pulverizing Pancake1.wav rename to public/audio/battle_anims/PRSFX- Pulverizing Pancake1.wav diff --git a/public/audio/se/battle_anims/PRSFX- Pulverizing Pancake2.wav b/public/audio/battle_anims/PRSFX- Pulverizing Pancake2.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Pulverizing Pancake2.wav rename to public/audio/battle_anims/PRSFX- Pulverizing Pancake2.wav diff --git a/public/audio/se/battle_anims/PRSFX- Pulverizing Pancake3.wav b/public/audio/battle_anims/PRSFX- Pulverizing Pancake3.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Pulverizing Pancake3.wav rename to public/audio/battle_anims/PRSFX- Pulverizing Pancake3.wav diff --git a/public/audio/se/battle_anims/PRSFX- Pulverizing Pancake4.wav b/public/audio/battle_anims/PRSFX- Pulverizing Pancake4.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Pulverizing Pancake4.wav rename to public/audio/battle_anims/PRSFX- Pulverizing Pancake4.wav diff --git a/public/audio/se/battle_anims/PRSFX- Pulverizing Pancake5.wav b/public/audio/battle_anims/PRSFX- Pulverizing Pancake5.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Pulverizing Pancake5.wav rename to public/audio/battle_anims/PRSFX- Pulverizing Pancake5.wav diff --git a/public/audio/se/battle_anims/PRSFX- Punishment1.wav b/public/audio/battle_anims/PRSFX- Punishment1.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Punishment1.wav rename to public/audio/battle_anims/PRSFX- Punishment1.wav diff --git a/public/audio/se/battle_anims/PRSFX- Punishment2.wav b/public/audio/battle_anims/PRSFX- Punishment2.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Punishment2.wav rename to public/audio/battle_anims/PRSFX- Punishment2.wav diff --git a/public/audio/se/battle_anims/PRSFX- Purify1.wav b/public/audio/battle_anims/PRSFX- Purify1.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Purify1.wav rename to public/audio/battle_anims/PRSFX- Purify1.wav diff --git a/public/audio/se/battle_anims/PRSFX- Purify2.wav b/public/audio/battle_anims/PRSFX- Purify2.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Purify2.wav rename to public/audio/battle_anims/PRSFX- Purify2.wav diff --git a/public/audio/se/battle_anims/PRSFX- Purify3.wav b/public/audio/battle_anims/PRSFX- Purify3.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Purify3.wav rename to public/audio/battle_anims/PRSFX- Purify3.wav diff --git a/public/audio/se/battle_anims/PRSFX- Pursuit1.wav b/public/audio/battle_anims/PRSFX- Pursuit1.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Pursuit1.wav rename to public/audio/battle_anims/PRSFX- Pursuit1.wav diff --git a/public/audio/se/battle_anims/PRSFX- Pursuit2.wav b/public/audio/battle_anims/PRSFX- Pursuit2.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Pursuit2.wav rename to public/audio/battle_anims/PRSFX- Pursuit2.wav diff --git a/public/audio/se/battle_anims/PRSFX- Quash.wav b/public/audio/battle_anims/PRSFX- Quash.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Quash.wav rename to public/audio/battle_anims/PRSFX- Quash.wav diff --git a/public/audio/se/battle_anims/PRSFX- Quick Attack.wav b/public/audio/battle_anims/PRSFX- Quick Attack.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Quick Attack.wav rename to public/audio/battle_anims/PRSFX- Quick Attack.wav diff --git a/public/audio/se/battle_anims/PRSFX- Quick Guard.wav b/public/audio/battle_anims/PRSFX- Quick Guard.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Quick Guard.wav rename to public/audio/battle_anims/PRSFX- Quick Guard.wav diff --git a/public/audio/se/battle_anims/PRSFX- Quiver Dance.wav b/public/audio/battle_anims/PRSFX- Quiver Dance.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Quiver Dance.wav rename to public/audio/battle_anims/PRSFX- Quiver Dance.wav diff --git a/public/audio/se/battle_anims/PRSFX- Rage Powder.wav b/public/audio/battle_anims/PRSFX- Rage Powder.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Rage Powder.wav rename to public/audio/battle_anims/PRSFX- Rage Powder.wav diff --git a/public/audio/se/battle_anims/PRSFX- Rage1.wav b/public/audio/battle_anims/PRSFX- Rage1.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Rage1.wav rename to public/audio/battle_anims/PRSFX- Rage1.wav diff --git a/public/audio/se/battle_anims/PRSFX- Rage2.wav b/public/audio/battle_anims/PRSFX- Rage2.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Rage2.wav rename to public/audio/battle_anims/PRSFX- Rage2.wav diff --git a/public/audio/se/battle_anims/PRSFX- Rain Dance.wav b/public/audio/battle_anims/PRSFX- Rain Dance.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Rain Dance.wav rename to public/audio/battle_anims/PRSFX- Rain Dance.wav diff --git a/public/audio/se/battle_anims/PRSFX- Rain.wav b/public/audio/battle_anims/PRSFX- Rain.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Rain.wav rename to public/audio/battle_anims/PRSFX- Rain.wav diff --git a/public/audio/se/battle_anims/PRSFX- Rainbow Field.wav b/public/audio/battle_anims/PRSFX- Rainbow Field.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Rainbow Field.wav rename to public/audio/battle_anims/PRSFX- Rainbow Field.wav diff --git a/public/audio/se/battle_anims/PRSFX- Rapid Spin.wav b/public/audio/battle_anims/PRSFX- Rapid Spin.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Rapid Spin.wav rename to public/audio/battle_anims/PRSFX- Rapid Spin.wav diff --git a/public/audio/se/battle_anims/PRSFX- Razor Leaf1.wav b/public/audio/battle_anims/PRSFX- Razor Leaf1.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Razor Leaf1.wav rename to public/audio/battle_anims/PRSFX- Razor Leaf1.wav diff --git a/public/audio/se/battle_anims/PRSFX- Razor Leaf2.wav b/public/audio/battle_anims/PRSFX- Razor Leaf2.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Razor Leaf2.wav rename to public/audio/battle_anims/PRSFX- Razor Leaf2.wav diff --git a/public/audio/se/battle_anims/PRSFX- Razor Shell.wav b/public/audio/battle_anims/PRSFX- Razor Shell.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Razor Shell.wav rename to public/audio/battle_anims/PRSFX- Razor Shell.wav diff --git a/public/audio/se/battle_anims/PRSFX- Razor Wind1.wav b/public/audio/battle_anims/PRSFX- Razor Wind1.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Razor Wind1.wav rename to public/audio/battle_anims/PRSFX- Razor Wind1.wav diff --git a/public/audio/se/battle_anims/PRSFX- Razor Wind2.wav b/public/audio/battle_anims/PRSFX- Razor Wind2.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Razor Wind2.wav rename to public/audio/battle_anims/PRSFX- Razor Wind2.wav diff --git a/public/audio/se/battle_anims/PRSFX- Recover.wav b/public/audio/battle_anims/PRSFX- Recover.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Recover.wav rename to public/audio/battle_anims/PRSFX- Recover.wav diff --git a/public/audio/se/battle_anims/PRSFX- Recycle.wav b/public/audio/battle_anims/PRSFX- Recycle.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Recycle.wav rename to public/audio/battle_anims/PRSFX- Recycle.wav diff --git a/public/audio/se/battle_anims/PRSFX- Reflect Type.wav b/public/audio/battle_anims/PRSFX- Reflect Type.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Reflect Type.wav rename to public/audio/battle_anims/PRSFX- Reflect Type.wav diff --git a/public/audio/se/battle_anims/PRSFX- Reflect.wav b/public/audio/battle_anims/PRSFX- Reflect.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Reflect.wav rename to public/audio/battle_anims/PRSFX- Reflect.wav diff --git a/public/audio/se/battle_anims/PRSFX- Refresh.wav b/public/audio/battle_anims/PRSFX- Refresh.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Refresh.wav rename to public/audio/battle_anims/PRSFX- Refresh.wav diff --git a/public/audio/se/battle_anims/PRSFX- Relic Song1.wav b/public/audio/battle_anims/PRSFX- Relic Song1.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Relic Song1.wav rename to public/audio/battle_anims/PRSFX- Relic Song1.wav diff --git a/public/audio/se/battle_anims/PRSFX- Relic Song2.wav b/public/audio/battle_anims/PRSFX- Relic Song2.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Relic Song2.wav rename to public/audio/battle_anims/PRSFX- Relic Song2.wav diff --git a/public/audio/se/battle_anims/PRSFX- Retaliate1.wav b/public/audio/battle_anims/PRSFX- Retaliate1.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Retaliate1.wav rename to public/audio/battle_anims/PRSFX- Retaliate1.wav diff --git a/public/audio/se/battle_anims/PRSFX- Retaliate2.wav b/public/audio/battle_anims/PRSFX- Retaliate2.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Retaliate2.wav rename to public/audio/battle_anims/PRSFX- Retaliate2.wav diff --git a/public/audio/se/battle_anims/PRSFX- Return1.wav b/public/audio/battle_anims/PRSFX- Return1.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Return1.wav rename to public/audio/battle_anims/PRSFX- Return1.wav diff --git a/public/audio/se/battle_anims/PRSFX- Return2.wav b/public/audio/battle_anims/PRSFX- Return2.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Return2.wav rename to public/audio/battle_anims/PRSFX- Return2.wav diff --git a/public/audio/se/battle_anims/PRSFX- Revenge1.wav b/public/audio/battle_anims/PRSFX- Revenge1.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Revenge1.wav rename to public/audio/battle_anims/PRSFX- Revenge1.wav diff --git a/public/audio/se/battle_anims/PRSFX- Revenge2.wav b/public/audio/battle_anims/PRSFX- Revenge2.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Revenge2.wav rename to public/audio/battle_anims/PRSFX- Revenge2.wav diff --git a/public/audio/se/battle_anims/PRSFX- Reversal1.wav b/public/audio/battle_anims/PRSFX- Reversal1.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Reversal1.wav rename to public/audio/battle_anims/PRSFX- Reversal1.wav diff --git a/public/audio/se/battle_anims/PRSFX- Reversal2.wav b/public/audio/battle_anims/PRSFX- Reversal2.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Reversal2.wav rename to public/audio/battle_anims/PRSFX- Reversal2.wav diff --git a/public/audio/se/battle_anims/PRSFX- Roar of Time.wav b/public/audio/battle_anims/PRSFX- Roar of Time.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Roar of Time.wav rename to public/audio/battle_anims/PRSFX- Roar of Time.wav diff --git a/public/audio/se/battle_anims/PRSFX- Roar.wav b/public/audio/battle_anims/PRSFX- Roar.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Roar.wav rename to public/audio/battle_anims/PRSFX- Roar.wav diff --git a/public/audio/se/battle_anims/PRSFX- Rock Blast.wav b/public/audio/battle_anims/PRSFX- Rock Blast.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Rock Blast.wav rename to public/audio/battle_anims/PRSFX- Rock Blast.wav diff --git a/public/audio/se/battle_anims/PRSFX- Rock Climb.wav b/public/audio/battle_anims/PRSFX- Rock Climb.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Rock Climb.wav rename to public/audio/battle_anims/PRSFX- Rock Climb.wav diff --git a/public/audio/se/battle_anims/PRSFX- Rock Polish.wav b/public/audio/battle_anims/PRSFX- Rock Polish.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Rock Polish.wav rename to public/audio/battle_anims/PRSFX- Rock Polish.wav diff --git a/public/audio/se/battle_anims/PRSFX- Rock Slide.wav b/public/audio/battle_anims/PRSFX- Rock Slide.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Rock Slide.wav rename to public/audio/battle_anims/PRSFX- Rock Slide.wav diff --git a/public/audio/se/battle_anims/PRSFX- Rock Smash.wav b/public/audio/battle_anims/PRSFX- Rock Smash.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Rock Smash.wav rename to public/audio/battle_anims/PRSFX- Rock Smash.wav diff --git a/public/audio/se/battle_anims/PRSFX- Rock Throw1.wav b/public/audio/battle_anims/PRSFX- Rock Throw1.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Rock Throw1.wav rename to public/audio/battle_anims/PRSFX- Rock Throw1.wav diff --git a/public/audio/se/battle_anims/PRSFX- Rock Throw2.wav b/public/audio/battle_anims/PRSFX- Rock Throw2.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Rock Throw2.wav rename to public/audio/battle_anims/PRSFX- Rock Throw2.wav diff --git a/public/audio/se/battle_anims/PRSFX- Rock Tomb.wav b/public/audio/battle_anims/PRSFX- Rock Tomb.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Rock Tomb.wav rename to public/audio/battle_anims/PRSFX- Rock Tomb.wav diff --git a/public/audio/se/battle_anims/PRSFX- Rock Wrecker1.wav b/public/audio/battle_anims/PRSFX- Rock Wrecker1.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Rock Wrecker1.wav rename to public/audio/battle_anims/PRSFX- Rock Wrecker1.wav diff --git a/public/audio/se/battle_anims/PRSFX- Rock Wrecker2.wav b/public/audio/battle_anims/PRSFX- Rock Wrecker2.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Rock Wrecker2.wav rename to public/audio/battle_anims/PRSFX- Rock Wrecker2.wav diff --git a/public/audio/se/battle_anims/PRSFX- Roleplay.wav b/public/audio/battle_anims/PRSFX- Roleplay.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Roleplay.wav rename to public/audio/battle_anims/PRSFX- Roleplay.wav diff --git a/public/audio/se/battle_anims/PRSFX- Rolling Kick.wav b/public/audio/battle_anims/PRSFX- Rolling Kick.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Rolling Kick.wav rename to public/audio/battle_anims/PRSFX- Rolling Kick.wav diff --git a/public/audio/se/battle_anims/PRSFX- Rollout1.wav b/public/audio/battle_anims/PRSFX- Rollout1.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Rollout1.wav rename to public/audio/battle_anims/PRSFX- Rollout1.wav diff --git a/public/audio/se/battle_anims/PRSFX- Rollout2.wav b/public/audio/battle_anims/PRSFX- Rollout2.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Rollout2.wav rename to public/audio/battle_anims/PRSFX- Rollout2.wav diff --git a/public/audio/se/battle_anims/PRSFX- Roost1.wav b/public/audio/battle_anims/PRSFX- Roost1.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Roost1.wav rename to public/audio/battle_anims/PRSFX- Roost1.wav diff --git a/public/audio/se/battle_anims/PRSFX- Roost2.wav b/public/audio/battle_anims/PRSFX- Roost2.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Roost2.wav rename to public/audio/battle_anims/PRSFX- Roost2.wav diff --git a/public/audio/se/battle_anims/PRSFX- Rototiller.wav b/public/audio/battle_anims/PRSFX- Rototiller.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Rototiller.wav rename to public/audio/battle_anims/PRSFX- Rototiller.wav diff --git a/public/audio/se/battle_anims/PRSFX- Round.wav b/public/audio/battle_anims/PRSFX- Round.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Round.wav rename to public/audio/battle_anims/PRSFX- Round.wav diff --git a/public/audio/se/battle_anims/PRSFX- Sacred Fire1.wav b/public/audio/battle_anims/PRSFX- Sacred Fire1.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Sacred Fire1.wav rename to public/audio/battle_anims/PRSFX- Sacred Fire1.wav diff --git a/public/audio/se/battle_anims/PRSFX- Sacred Fire2.wav b/public/audio/battle_anims/PRSFX- Sacred Fire2.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Sacred Fire2.wav rename to public/audio/battle_anims/PRSFX- Sacred Fire2.wav diff --git a/public/audio/se/battle_anims/PRSFX- Sacred Sword1.wav b/public/audio/battle_anims/PRSFX- Sacred Sword1.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Sacred Sword1.wav rename to public/audio/battle_anims/PRSFX- Sacred Sword1.wav diff --git a/public/audio/se/battle_anims/PRSFX- Sacred Sword2.wav b/public/audio/battle_anims/PRSFX- Sacred Sword2.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Sacred Sword2.wav rename to public/audio/battle_anims/PRSFX- Sacred Sword2.wav diff --git a/public/audio/se/battle_anims/PRSFX- Safeguard.wav b/public/audio/battle_anims/PRSFX- Safeguard.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Safeguard.wav rename to public/audio/battle_anims/PRSFX- Safeguard.wav diff --git a/public/audio/se/battle_anims/PRSFX- Sand Attack.wav b/public/audio/battle_anims/PRSFX- Sand Attack.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Sand Attack.wav rename to public/audio/battle_anims/PRSFX- Sand Attack.wav diff --git a/public/audio/se/battle_anims/PRSFX- Sand Tomb.wav b/public/audio/battle_anims/PRSFX- Sand Tomb.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Sand Tomb.wav rename to public/audio/battle_anims/PRSFX- Sand Tomb.wav diff --git a/public/audio/se/battle_anims/PRSFX- Sand.wav b/public/audio/battle_anims/PRSFX- Sand.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Sand.wav rename to public/audio/battle_anims/PRSFX- Sand.wav diff --git a/public/audio/se/battle_anims/PRSFX- Sandstorm.wav b/public/audio/battle_anims/PRSFX- Sandstorm.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Sandstorm.wav rename to public/audio/battle_anims/PRSFX- Sandstorm.wav diff --git a/public/audio/se/battle_anims/PRSFX- Scald1.wav b/public/audio/battle_anims/PRSFX- Scald1.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Scald1.wav rename to public/audio/battle_anims/PRSFX- Scald1.wav diff --git a/public/audio/se/battle_anims/PRSFX- Scald2.wav b/public/audio/battle_anims/PRSFX- Scald2.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Scald2.wav rename to public/audio/battle_anims/PRSFX- Scald2.wav diff --git a/public/audio/se/battle_anims/PRSFX- Scary Face.wav b/public/audio/battle_anims/PRSFX- Scary Face.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Scary Face.wav rename to public/audio/battle_anims/PRSFX- Scary Face.wav diff --git a/public/audio/se/battle_anims/PRSFX- Scratch.wav b/public/audio/battle_anims/PRSFX- Scratch.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Scratch.wav rename to public/audio/battle_anims/PRSFX- Scratch.wav diff --git a/public/audio/se/battle_anims/PRSFX- Screech.wav b/public/audio/battle_anims/PRSFX- Screech.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Screech.wav rename to public/audio/battle_anims/PRSFX- Screech.wav diff --git a/public/audio/se/battle_anims/PRSFX- Searing Shot1.wav b/public/audio/battle_anims/PRSFX- Searing Shot1.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Searing Shot1.wav rename to public/audio/battle_anims/PRSFX- Searing Shot1.wav diff --git a/public/audio/se/battle_anims/PRSFX- Searing Shot2.wav b/public/audio/battle_anims/PRSFX- Searing Shot2.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Searing Shot2.wav rename to public/audio/battle_anims/PRSFX- Searing Shot2.wav diff --git a/public/audio/se/battle_anims/PRSFX- Searing Shot3.wav b/public/audio/battle_anims/PRSFX- Searing Shot3.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Searing Shot3.wav rename to public/audio/battle_anims/PRSFX- Searing Shot3.wav diff --git a/public/audio/se/battle_anims/PRSFX- Secret Sword1.wav b/public/audio/battle_anims/PRSFX- Secret Sword1.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Secret Sword1.wav rename to public/audio/battle_anims/PRSFX- Secret Sword1.wav diff --git a/public/audio/se/battle_anims/PRSFX- Secret Sword2.wav b/public/audio/battle_anims/PRSFX- Secret Sword2.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Secret Sword2.wav rename to public/audio/battle_anims/PRSFX- Secret Sword2.wav diff --git a/public/audio/se/battle_anims/PRSFX- Secret Sword3.wav b/public/audio/battle_anims/PRSFX- Secret Sword3.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Secret Sword3.wav rename to public/audio/battle_anims/PRSFX- Secret Sword3.wav diff --git a/public/audio/se/battle_anims/PRSFX- Seed Bomb1.wav b/public/audio/battle_anims/PRSFX- Seed Bomb1.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Seed Bomb1.wav rename to public/audio/battle_anims/PRSFX- Seed Bomb1.wav diff --git a/public/audio/se/battle_anims/PRSFX- Seed Bomb2.wav b/public/audio/battle_anims/PRSFX- Seed Bomb2.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Seed Bomb2.wav rename to public/audio/battle_anims/PRSFX- Seed Bomb2.wav diff --git a/public/audio/se/battle_anims/PRSFX- Seed Flare1.wav b/public/audio/battle_anims/PRSFX- Seed Flare1.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Seed Flare1.wav rename to public/audio/battle_anims/PRSFX- Seed Flare1.wav diff --git a/public/audio/se/battle_anims/PRSFX- Seed Flare2.wav b/public/audio/battle_anims/PRSFX- Seed Flare2.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Seed Flare2.wav rename to public/audio/battle_anims/PRSFX- Seed Flare2.wav diff --git a/public/audio/se/battle_anims/PRSFX- Seed Flare3.wav b/public/audio/battle_anims/PRSFX- Seed Flare3.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Seed Flare3.wav rename to public/audio/battle_anims/PRSFX- Seed Flare3.wav diff --git a/public/audio/se/battle_anims/PRSFX- Seismic Toss1.wav b/public/audio/battle_anims/PRSFX- Seismic Toss1.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Seismic Toss1.wav rename to public/audio/battle_anims/PRSFX- Seismic Toss1.wav diff --git a/public/audio/se/battle_anims/PRSFX- Seismic Toss2.wav b/public/audio/battle_anims/PRSFX- Seismic Toss2.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Seismic Toss2.wav rename to public/audio/battle_anims/PRSFX- Seismic Toss2.wav diff --git a/public/audio/se/battle_anims/PRSFX- Seismic Toss3.wav b/public/audio/battle_anims/PRSFX- Seismic Toss3.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Seismic Toss3.wav rename to public/audio/battle_anims/PRSFX- Seismic Toss3.wav diff --git a/public/audio/se/battle_anims/PRSFX- Seismic Toss4.wav b/public/audio/battle_anims/PRSFX- Seismic Toss4.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Seismic Toss4.wav rename to public/audio/battle_anims/PRSFX- Seismic Toss4.wav diff --git a/public/audio/se/battle_anims/PRSFX- Seismic Toss5.wav b/public/audio/battle_anims/PRSFX- Seismic Toss5.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Seismic Toss5.wav rename to public/audio/battle_anims/PRSFX- Seismic Toss5.wav diff --git a/public/audio/se/battle_anims/PRSFX- Selfdestruct1.wav b/public/audio/battle_anims/PRSFX- Selfdestruct1.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Selfdestruct1.wav rename to public/audio/battle_anims/PRSFX- Selfdestruct1.wav diff --git a/public/audio/se/battle_anims/PRSFX- Selfedestruct2.wav b/public/audio/battle_anims/PRSFX- Selfedestruct2.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Selfedestruct2.wav rename to public/audio/battle_anims/PRSFX- Selfedestruct2.wav diff --git a/public/audio/se/battle_anims/PRSFX- Shadow Ball1.wav b/public/audio/battle_anims/PRSFX- Shadow Ball1.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Shadow Ball1.wav rename to public/audio/battle_anims/PRSFX- Shadow Ball1.wav diff --git a/public/audio/se/battle_anims/PRSFX- Shadow Ball2.wav b/public/audio/battle_anims/PRSFX- Shadow Ball2.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Shadow Ball2.wav rename to public/audio/battle_anims/PRSFX- Shadow Ball2.wav diff --git a/public/audio/se/battle_anims/PRSFX- Shadow Claw1.wav b/public/audio/battle_anims/PRSFX- Shadow Claw1.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Shadow Claw1.wav rename to public/audio/battle_anims/PRSFX- Shadow Claw1.wav diff --git a/public/audio/se/battle_anims/PRSFX- Shadow Claw2.wav b/public/audio/battle_anims/PRSFX- Shadow Claw2.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Shadow Claw2.wav rename to public/audio/battle_anims/PRSFX- Shadow Claw2.wav diff --git a/public/audio/se/battle_anims/PRSFX- Shadow Force1.wav b/public/audio/battle_anims/PRSFX- Shadow Force1.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Shadow Force1.wav rename to public/audio/battle_anims/PRSFX- Shadow Force1.wav diff --git a/public/audio/se/battle_anims/PRSFX- Shadow Force2.wav b/public/audio/battle_anims/PRSFX- Shadow Force2.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Shadow Force2.wav rename to public/audio/battle_anims/PRSFX- Shadow Force2.wav diff --git a/public/audio/se/battle_anims/PRSFX- Shadow Punch1.wav b/public/audio/battle_anims/PRSFX- Shadow Punch1.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Shadow Punch1.wav rename to public/audio/battle_anims/PRSFX- Shadow Punch1.wav diff --git a/public/audio/se/battle_anims/PRSFX- Shadow Punch2.wav b/public/audio/battle_anims/PRSFX- Shadow Punch2.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Shadow Punch2.wav rename to public/audio/battle_anims/PRSFX- Shadow Punch2.wav diff --git a/public/audio/se/battle_anims/PRSFX- Shadow Sneak1.wav b/public/audio/battle_anims/PRSFX- Shadow Sneak1.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Shadow Sneak1.wav rename to public/audio/battle_anims/PRSFX- Shadow Sneak1.wav diff --git a/public/audio/se/battle_anims/PRSFX- Shadow Sneak2.wav b/public/audio/battle_anims/PRSFX- Shadow Sneak2.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Shadow Sneak2.wav rename to public/audio/battle_anims/PRSFX- Shadow Sneak2.wav diff --git a/public/audio/se/battle_anims/PRSFX- ShadowBone1.wav b/public/audio/battle_anims/PRSFX- ShadowBone1.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- ShadowBone1.wav rename to public/audio/battle_anims/PRSFX- ShadowBone1.wav diff --git a/public/audio/se/battle_anims/PRSFX- ShadowBone2.wav b/public/audio/battle_anims/PRSFX- ShadowBone2.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- ShadowBone2.wav rename to public/audio/battle_anims/PRSFX- ShadowBone2.wav diff --git a/public/audio/se/battle_anims/PRSFX- Sharpen.wav b/public/audio/battle_anims/PRSFX- Sharpen.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Sharpen.wav rename to public/audio/battle_anims/PRSFX- Sharpen.wav diff --git a/public/audio/se/battle_anims/PRSFX- Shattered Psyche1.wav b/public/audio/battle_anims/PRSFX- Shattered Psyche1.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Shattered Psyche1.wav rename to public/audio/battle_anims/PRSFX- Shattered Psyche1.wav diff --git a/public/audio/se/battle_anims/PRSFX- Shattered Psyche2.wav b/public/audio/battle_anims/PRSFX- Shattered Psyche2.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Shattered Psyche2.wav rename to public/audio/battle_anims/PRSFX- Shattered Psyche2.wav diff --git a/public/audio/se/battle_anims/PRSFX- Shattered Psyche3.wav b/public/audio/battle_anims/PRSFX- Shattered Psyche3.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Shattered Psyche3.wav rename to public/audio/battle_anims/PRSFX- Shattered Psyche3.wav diff --git a/public/audio/se/battle_anims/PRSFX- Sheer Cold.wav b/public/audio/battle_anims/PRSFX- Sheer Cold.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Sheer Cold.wav rename to public/audio/battle_anims/PRSFX- Sheer Cold.wav diff --git a/public/audio/se/battle_anims/PRSFX- Shell Smash1.wav b/public/audio/battle_anims/PRSFX- Shell Smash1.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Shell Smash1.wav rename to public/audio/battle_anims/PRSFX- Shell Smash1.wav diff --git a/public/audio/se/battle_anims/PRSFX- Shell Smash2.wav b/public/audio/battle_anims/PRSFX- Shell Smash2.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Shell Smash2.wav rename to public/audio/battle_anims/PRSFX- Shell Smash2.wav diff --git a/public/audio/se/battle_anims/PRSFX- Shell Trap1.wav b/public/audio/battle_anims/PRSFX- Shell Trap1.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Shell Trap1.wav rename to public/audio/battle_anims/PRSFX- Shell Trap1.wav diff --git a/public/audio/se/battle_anims/PRSFX- Shell Trap2.wav b/public/audio/battle_anims/PRSFX- Shell Trap2.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Shell Trap2.wav rename to public/audio/battle_anims/PRSFX- Shell Trap2.wav diff --git a/public/audio/se/battle_anims/PRSFX- Shell Trap3.wav b/public/audio/battle_anims/PRSFX- Shell Trap3.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Shell Trap3.wav rename to public/audio/battle_anims/PRSFX- Shell Trap3.wav diff --git a/public/audio/se/battle_anims/PRSFX- Shift Gear.wav b/public/audio/battle_anims/PRSFX- Shift Gear.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Shift Gear.wav rename to public/audio/battle_anims/PRSFX- Shift Gear.wav diff --git a/public/audio/se/battle_anims/PRSFX- Shiny.wav b/public/audio/battle_anims/PRSFX- Shiny.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Shiny.wav rename to public/audio/battle_anims/PRSFX- Shiny.wav diff --git a/public/audio/se/battle_anims/PRSFX- Shockwave.wav b/public/audio/battle_anims/PRSFX- Shockwave.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Shockwave.wav rename to public/audio/battle_anims/PRSFX- Shockwave.wav diff --git a/public/audio/se/battle_anims/PRSFX- Shore Up.wav b/public/audio/battle_anims/PRSFX- Shore Up.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Shore Up.wav rename to public/audio/battle_anims/PRSFX- Shore Up.wav diff --git a/public/audio/se/battle_anims/PRSFX- Signal Beam.wav b/public/audio/battle_anims/PRSFX- Signal Beam.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Signal Beam.wav rename to public/audio/battle_anims/PRSFX- Signal Beam.wav diff --git a/public/audio/se/battle_anims/PRSFX- Silver Wind.wav b/public/audio/battle_anims/PRSFX- Silver Wind.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Silver Wind.wav rename to public/audio/battle_anims/PRSFX- Silver Wind.wav diff --git a/public/audio/se/battle_anims/PRSFX- Simple Beam.wav b/public/audio/battle_anims/PRSFX- Simple Beam.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Simple Beam.wav rename to public/audio/battle_anims/PRSFX- Simple Beam.wav diff --git a/public/audio/se/battle_anims/PRSFX- Sing.wav b/public/audio/battle_anims/PRSFX- Sing.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Sing.wav rename to public/audio/battle_anims/PRSFX- Sing.wav diff --git a/public/audio/se/battle_anims/PRSFX- SinisterArrowRaid1.wav b/public/audio/battle_anims/PRSFX- SinisterArrowRaid1.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- SinisterArrowRaid1.wav rename to public/audio/battle_anims/PRSFX- SinisterArrowRaid1.wav diff --git a/public/audio/se/battle_anims/PRSFX- SinisterArrowRaid2.wav b/public/audio/battle_anims/PRSFX- SinisterArrowRaid2.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- SinisterArrowRaid2.wav rename to public/audio/battle_anims/PRSFX- SinisterArrowRaid2.wav diff --git a/public/audio/se/battle_anims/PRSFX- SinisterArrowRaid3.wav b/public/audio/battle_anims/PRSFX- SinisterArrowRaid3.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- SinisterArrowRaid3.wav rename to public/audio/battle_anims/PRSFX- SinisterArrowRaid3.wav diff --git a/public/audio/se/battle_anims/PRSFX- SinisterArrowRaid4.wav b/public/audio/battle_anims/PRSFX- SinisterArrowRaid4.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- SinisterArrowRaid4.wav rename to public/audio/battle_anims/PRSFX- SinisterArrowRaid4.wav diff --git a/public/audio/se/battle_anims/PRSFX- SinisterArrowRaid5.wav b/public/audio/battle_anims/PRSFX- SinisterArrowRaid5.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- SinisterArrowRaid5.wav rename to public/audio/battle_anims/PRSFX- SinisterArrowRaid5.wav diff --git a/public/audio/se/battle_anims/PRSFX- Sketch.wav b/public/audio/battle_anims/PRSFX- Sketch.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Sketch.wav rename to public/audio/battle_anims/PRSFX- Sketch.wav diff --git a/public/audio/se/battle_anims/PRSFX- Skill Swap.wav b/public/audio/battle_anims/PRSFX- Skill Swap.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Skill Swap.wav rename to public/audio/battle_anims/PRSFX- Skill Swap.wav diff --git a/public/audio/se/battle_anims/PRSFX- Skull Bash1.wav b/public/audio/battle_anims/PRSFX- Skull Bash1.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Skull Bash1.wav rename to public/audio/battle_anims/PRSFX- Skull Bash1.wav diff --git a/public/audio/se/battle_anims/PRSFX- Skull Bash2.wav b/public/audio/battle_anims/PRSFX- Skull Bash2.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Skull Bash2.wav rename to public/audio/battle_anims/PRSFX- Skull Bash2.wav diff --git a/public/audio/se/battle_anims/PRSFX- Sky Attack1.wav b/public/audio/battle_anims/PRSFX- Sky Attack1.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Sky Attack1.wav rename to public/audio/battle_anims/PRSFX- Sky Attack1.wav diff --git a/public/audio/se/battle_anims/PRSFX- Sky Attack2.wav b/public/audio/battle_anims/PRSFX- Sky Attack2.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Sky Attack2.wav rename to public/audio/battle_anims/PRSFX- Sky Attack2.wav diff --git a/public/audio/se/battle_anims/PRSFX- Sky Attack3.wav b/public/audio/battle_anims/PRSFX- Sky Attack3.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Sky Attack3.wav rename to public/audio/battle_anims/PRSFX- Sky Attack3.wav diff --git a/public/audio/se/battle_anims/PRSFX- Sky Drop1.wav b/public/audio/battle_anims/PRSFX- Sky Drop1.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Sky Drop1.wav rename to public/audio/battle_anims/PRSFX- Sky Drop1.wav diff --git a/public/audio/se/battle_anims/PRSFX- Sky Drop2.wav b/public/audio/battle_anims/PRSFX- Sky Drop2.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Sky Drop2.wav rename to public/audio/battle_anims/PRSFX- Sky Drop2.wav diff --git a/public/audio/se/battle_anims/PRSFX- Sky Drop3.wav b/public/audio/battle_anims/PRSFX- Sky Drop3.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Sky Drop3.wav rename to public/audio/battle_anims/PRSFX- Sky Drop3.wav diff --git a/public/audio/se/battle_anims/PRSFX- Sky Uppercut1.wav b/public/audio/battle_anims/PRSFX- Sky Uppercut1.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Sky Uppercut1.wav rename to public/audio/battle_anims/PRSFX- Sky Uppercut1.wav diff --git a/public/audio/se/battle_anims/PRSFX- Sky Uppercut2.wav b/public/audio/battle_anims/PRSFX- Sky Uppercut2.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Sky Uppercut2.wav rename to public/audio/battle_anims/PRSFX- Sky Uppercut2.wav diff --git a/public/audio/se/battle_anims/PRSFX- Slack Off.wav b/public/audio/battle_anims/PRSFX- Slack Off.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Slack Off.wav rename to public/audio/battle_anims/PRSFX- Slack Off.wav diff --git a/public/audio/se/battle_anims/PRSFX- Slam.wav b/public/audio/battle_anims/PRSFX- Slam.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Slam.wav rename to public/audio/battle_anims/PRSFX- Slam.wav diff --git a/public/audio/se/battle_anims/PRSFX- Slash.wav b/public/audio/battle_anims/PRSFX- Slash.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Slash.wav rename to public/audio/battle_anims/PRSFX- Slash.wav diff --git a/public/audio/se/battle_anims/PRSFX- Sleep Powder.wav b/public/audio/battle_anims/PRSFX- Sleep Powder.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Sleep Powder.wav rename to public/audio/battle_anims/PRSFX- Sleep Powder.wav diff --git a/public/audio/se/battle_anims/PRSFX- Sleep Talk.wav b/public/audio/battle_anims/PRSFX- Sleep Talk.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Sleep Talk.wav rename to public/audio/battle_anims/PRSFX- Sleep Talk.wav diff --git a/public/audio/se/battle_anims/PRSFX- Sleep.wav b/public/audio/battle_anims/PRSFX- Sleep.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Sleep.wav rename to public/audio/battle_anims/PRSFX- Sleep.wav diff --git a/public/audio/se/battle_anims/PRSFX- Sludge Bomb1.wav b/public/audio/battle_anims/PRSFX- Sludge Bomb1.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Sludge Bomb1.wav rename to public/audio/battle_anims/PRSFX- Sludge Bomb1.wav diff --git a/public/audio/se/battle_anims/PRSFX- Sludge Bomb2.wav b/public/audio/battle_anims/PRSFX- Sludge Bomb2.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Sludge Bomb2.wav rename to public/audio/battle_anims/PRSFX- Sludge Bomb2.wav diff --git a/public/audio/se/battle_anims/PRSFX- Sludge Wave.wav b/public/audio/battle_anims/PRSFX- Sludge Wave.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Sludge Wave.wav rename to public/audio/battle_anims/PRSFX- Sludge Wave.wav diff --git a/public/audio/se/battle_anims/PRSFX- Sludge.wav b/public/audio/battle_anims/PRSFX- Sludge.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Sludge.wav rename to public/audio/battle_anims/PRSFX- Sludge.wav diff --git a/public/audio/se/battle_anims/PRSFX- Smack Down1.wav b/public/audio/battle_anims/PRSFX- Smack Down1.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Smack Down1.wav rename to public/audio/battle_anims/PRSFX- Smack Down1.wav diff --git a/public/audio/se/battle_anims/PRSFX- Smack Down2.wav b/public/audio/battle_anims/PRSFX- Smack Down2.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Smack Down2.wav rename to public/audio/battle_anims/PRSFX- Smack Down2.wav diff --git a/public/audio/se/battle_anims/PRSFX- Smack Down3.wav b/public/audio/battle_anims/PRSFX- Smack Down3.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Smack Down3.wav rename to public/audio/battle_anims/PRSFX- Smack Down3.wav diff --git a/public/audio/se/battle_anims/PRSFX- Smart Strike1.wav b/public/audio/battle_anims/PRSFX- Smart Strike1.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Smart Strike1.wav rename to public/audio/battle_anims/PRSFX- Smart Strike1.wav diff --git a/public/audio/se/battle_anims/PRSFX- Smart Strike2.wav b/public/audio/battle_anims/PRSFX- Smart Strike2.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Smart Strike2.wav rename to public/audio/battle_anims/PRSFX- Smart Strike2.wav diff --git a/public/audio/se/battle_anims/PRSFX- Smart Strike3.wav b/public/audio/battle_anims/PRSFX- Smart Strike3.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Smart Strike3.wav rename to public/audio/battle_anims/PRSFX- Smart Strike3.wav diff --git a/public/audio/se/battle_anims/PRSFX- Smart Strike4.wav b/public/audio/battle_anims/PRSFX- Smart Strike4.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Smart Strike4.wav rename to public/audio/battle_anims/PRSFX- Smart Strike4.wav diff --git a/public/audio/se/battle_anims/PRSFX- Smellingsalts.wav b/public/audio/battle_anims/PRSFX- Smellingsalts.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Smellingsalts.wav rename to public/audio/battle_anims/PRSFX- Smellingsalts.wav diff --git a/public/audio/se/battle_anims/PRSFX- Smog.wav b/public/audio/battle_anims/PRSFX- Smog.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Smog.wav rename to public/audio/battle_anims/PRSFX- Smog.wav diff --git a/public/audio/se/battle_anims/PRSFX- Smokescreen.wav b/public/audio/battle_anims/PRSFX- Smokescreen.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Smokescreen.wav rename to public/audio/battle_anims/PRSFX- Smokescreen.wav diff --git a/public/audio/se/battle_anims/PRSFX- Snarl.wav b/public/audio/battle_anims/PRSFX- Snarl.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Snarl.wav rename to public/audio/battle_anims/PRSFX- Snarl.wav diff --git a/public/audio/se/battle_anims/PRSFX- Snatch.wav b/public/audio/battle_anims/PRSFX- Snatch.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Snatch.wav rename to public/audio/battle_anims/PRSFX- Snatch.wav diff --git a/public/audio/se/battle_anims/PRSFX- Snore.wav b/public/audio/battle_anims/PRSFX- Snore.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Snore.wav rename to public/audio/battle_anims/PRSFX- Snore.wav diff --git a/public/audio/se/battle_anims/PRSFX- Soak.wav b/public/audio/battle_anims/PRSFX- Soak.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Soak.wav rename to public/audio/battle_anims/PRSFX- Soak.wav diff --git a/public/audio/se/battle_anims/PRSFX- Softboiled1.wav b/public/audio/battle_anims/PRSFX- Softboiled1.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Softboiled1.wav rename to public/audio/battle_anims/PRSFX- Softboiled1.wav diff --git a/public/audio/se/battle_anims/PRSFX- Softboiled2.wav b/public/audio/battle_anims/PRSFX- Softboiled2.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Softboiled2.wav rename to public/audio/battle_anims/PRSFX- Softboiled2.wav diff --git a/public/audio/se/battle_anims/PRSFX- Softboiled3.wav b/public/audio/battle_anims/PRSFX- Softboiled3.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Softboiled3.wav rename to public/audio/battle_anims/PRSFX- Softboiled3.wav diff --git a/public/audio/se/battle_anims/PRSFX- Solar Beam1.wav b/public/audio/battle_anims/PRSFX- Solar Beam1.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Solar Beam1.wav rename to public/audio/battle_anims/PRSFX- Solar Beam1.wav diff --git a/public/audio/se/battle_anims/PRSFX- Solar Beam2.wav b/public/audio/battle_anims/PRSFX- Solar Beam2.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Solar Beam2.wav rename to public/audio/battle_anims/PRSFX- Solar Beam2.wav diff --git a/public/audio/se/battle_anims/PRSFX- Sonic Boom1.wav b/public/audio/battle_anims/PRSFX- Sonic Boom1.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Sonic Boom1.wav rename to public/audio/battle_anims/PRSFX- Sonic Boom1.wav diff --git a/public/audio/se/battle_anims/PRSFX- Sonic Boom2.wav b/public/audio/battle_anims/PRSFX- Sonic Boom2.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Sonic Boom2.wav rename to public/audio/battle_anims/PRSFX- Sonic Boom2.wav diff --git a/public/audio/se/battle_anims/PRSFX- Spacial Rend.wav b/public/audio/battle_anims/PRSFX- Spacial Rend.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Spacial Rend.wav rename to public/audio/battle_anims/PRSFX- Spacial Rend.wav diff --git a/public/audio/se/battle_anims/PRSFX- Spark1.wav b/public/audio/battle_anims/PRSFX- Spark1.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Spark1.wav rename to public/audio/battle_anims/PRSFX- Spark1.wav diff --git a/public/audio/se/battle_anims/PRSFX- Spark2.wav b/public/audio/battle_anims/PRSFX- Spark2.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Spark2.wav rename to public/audio/battle_anims/PRSFX- Spark2.wav diff --git a/public/audio/se/battle_anims/PRSFX- Sparkling Aria1.wav b/public/audio/battle_anims/PRSFX- Sparkling Aria1.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Sparkling Aria1.wav rename to public/audio/battle_anims/PRSFX- Sparkling Aria1.wav diff --git a/public/audio/se/battle_anims/PRSFX- Sparkling Aria2.wav b/public/audio/battle_anims/PRSFX- Sparkling Aria2.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Sparkling Aria2.wav rename to public/audio/battle_anims/PRSFX- Sparkling Aria2.wav diff --git a/public/audio/se/battle_anims/PRSFX- Sparkling Aria3.wav b/public/audio/battle_anims/PRSFX- Sparkling Aria3.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Sparkling Aria3.wav rename to public/audio/battle_anims/PRSFX- Sparkling Aria3.wav diff --git a/public/audio/se/battle_anims/PRSFX- Spectral Thief1.wav b/public/audio/battle_anims/PRSFX- Spectral Thief1.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Spectral Thief1.wav rename to public/audio/battle_anims/PRSFX- Spectral Thief1.wav diff --git a/public/audio/se/battle_anims/PRSFX- Spectral Thief2.wav b/public/audio/battle_anims/PRSFX- Spectral Thief2.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Spectral Thief2.wav rename to public/audio/battle_anims/PRSFX- Spectral Thief2.wav diff --git a/public/audio/se/battle_anims/PRSFX- Spectral Thief3.wav b/public/audio/battle_anims/PRSFX- Spectral Thief3.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Spectral Thief3.wav rename to public/audio/battle_anims/PRSFX- Spectral Thief3.wav diff --git a/public/audio/se/battle_anims/PRSFX- Spectral Thief4.wav b/public/audio/battle_anims/PRSFX- Spectral Thief4.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Spectral Thief4.wav rename to public/audio/battle_anims/PRSFX- Spectral Thief4.wav diff --git a/public/audio/se/battle_anims/PRSFX- Speed Swap.wav b/public/audio/battle_anims/PRSFX- Speed Swap.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Speed Swap.wav rename to public/audio/battle_anims/PRSFX- Speed Swap.wav diff --git a/public/audio/se/battle_anims/PRSFX- Spider Web1.wav b/public/audio/battle_anims/PRSFX- Spider Web1.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Spider Web1.wav rename to public/audio/battle_anims/PRSFX- Spider Web1.wav diff --git a/public/audio/se/battle_anims/PRSFX- Spider Web2.wav b/public/audio/battle_anims/PRSFX- Spider Web2.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Spider Web2.wav rename to public/audio/battle_anims/PRSFX- Spider Web2.wav diff --git a/public/audio/se/battle_anims/PRSFX- Spike Cannon.wav b/public/audio/battle_anims/PRSFX- Spike Cannon.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Spike Cannon.wav rename to public/audio/battle_anims/PRSFX- Spike Cannon.wav diff --git a/public/audio/se/battle_anims/PRSFX- Spikes1.wav b/public/audio/battle_anims/PRSFX- Spikes1.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Spikes1.wav rename to public/audio/battle_anims/PRSFX- Spikes1.wav diff --git a/public/audio/se/battle_anims/PRSFX- Spikes2.wav b/public/audio/battle_anims/PRSFX- Spikes2.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Spikes2.wav rename to public/audio/battle_anims/PRSFX- Spikes2.wav diff --git a/public/audio/se/battle_anims/PRSFX- Spiky Shield1.wav b/public/audio/battle_anims/PRSFX- Spiky Shield1.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Spiky Shield1.wav rename to public/audio/battle_anims/PRSFX- Spiky Shield1.wav diff --git a/public/audio/se/battle_anims/PRSFX- Spiky Shield2.wav b/public/audio/battle_anims/PRSFX- Spiky Shield2.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Spiky Shield2.wav rename to public/audio/battle_anims/PRSFX- Spiky Shield2.wav diff --git a/public/audio/se/battle_anims/PRSFX- Spirit Shackle1.wav b/public/audio/battle_anims/PRSFX- Spirit Shackle1.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Spirit Shackle1.wav rename to public/audio/battle_anims/PRSFX- Spirit Shackle1.wav diff --git a/public/audio/se/battle_anims/PRSFX- Spirit Shackle2.wav b/public/audio/battle_anims/PRSFX- Spirit Shackle2.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Spirit Shackle2.wav rename to public/audio/battle_anims/PRSFX- Spirit Shackle2.wav diff --git a/public/audio/se/battle_anims/PRSFX- Spirit Shackle3.wav b/public/audio/battle_anims/PRSFX- Spirit Shackle3.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Spirit Shackle3.wav rename to public/audio/battle_anims/PRSFX- Spirit Shackle3.wav diff --git a/public/audio/se/battle_anims/PRSFX- Spirit Shackle4.wav b/public/audio/battle_anims/PRSFX- Spirit Shackle4.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Spirit Shackle4.wav rename to public/audio/battle_anims/PRSFX- Spirit Shackle4.wav diff --git a/public/audio/se/battle_anims/PRSFX- Spit Up.wav b/public/audio/battle_anims/PRSFX- Spit Up.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Spit Up.wav rename to public/audio/battle_anims/PRSFX- Spit Up.wav diff --git a/public/audio/se/battle_anims/PRSFX- Spite1.wav b/public/audio/battle_anims/PRSFX- Spite1.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Spite1.wav rename to public/audio/battle_anims/PRSFX- Spite1.wav diff --git a/public/audio/se/battle_anims/PRSFX- Spite2.wav b/public/audio/battle_anims/PRSFX- Spite2.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Spite2.wav rename to public/audio/battle_anims/PRSFX- Spite2.wav diff --git a/public/audio/se/battle_anims/PRSFX- Splash.wav b/public/audio/battle_anims/PRSFX- Splash.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Splash.wav rename to public/audio/battle_anims/PRSFX- Splash.wav diff --git a/public/audio/se/battle_anims/PRSFX- Spore.wav b/public/audio/battle_anims/PRSFX- Spore.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Spore.wav rename to public/audio/battle_anims/PRSFX- Spore.wav diff --git a/public/audio/se/battle_anims/PRSFX- Spotlight1.wav b/public/audio/battle_anims/PRSFX- Spotlight1.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Spotlight1.wav rename to public/audio/battle_anims/PRSFX- Spotlight1.wav diff --git a/public/audio/se/battle_anims/PRSFX- Spotlight2.wav b/public/audio/battle_anims/PRSFX- Spotlight2.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Spotlight2.wav rename to public/audio/battle_anims/PRSFX- Spotlight2.wav diff --git a/public/audio/se/battle_anims/PRSFX- Spotlight3.wav b/public/audio/battle_anims/PRSFX- Spotlight3.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Spotlight3.wav rename to public/audio/battle_anims/PRSFX- Spotlight3.wav diff --git a/public/audio/se/battle_anims/PRSFX- Spotlight4.wav b/public/audio/battle_anims/PRSFX- Spotlight4.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Spotlight4.wav rename to public/audio/battle_anims/PRSFX- Spotlight4.wav diff --git a/public/audio/se/battle_anims/PRSFX- Spotlight5.wav b/public/audio/battle_anims/PRSFX- Spotlight5.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Spotlight5.wav rename to public/audio/battle_anims/PRSFX- Spotlight5.wav diff --git a/public/audio/se/battle_anims/PRSFX- Stat Down.wav b/public/audio/battle_anims/PRSFX- Stat Down.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Stat Down.wav rename to public/audio/battle_anims/PRSFX- Stat Down.wav diff --git a/public/audio/se/battle_anims/PRSFX- Stat Up.wav b/public/audio/battle_anims/PRSFX- Stat Up.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Stat Up.wav rename to public/audio/battle_anims/PRSFX- Stat Up.wav diff --git a/public/audio/se/battle_anims/PRSFX- Stealth Rocks.wav b/public/audio/battle_anims/PRSFX- Stealth Rocks.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Stealth Rocks.wav rename to public/audio/battle_anims/PRSFX- Stealth Rocks.wav diff --git a/public/audio/se/battle_anims/PRSFX- Steam Eruption1.wav b/public/audio/battle_anims/PRSFX- Steam Eruption1.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Steam Eruption1.wav rename to public/audio/battle_anims/PRSFX- Steam Eruption1.wav diff --git a/public/audio/se/battle_anims/PRSFX- Steam Eruption2.wav b/public/audio/battle_anims/PRSFX- Steam Eruption2.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Steam Eruption2.wav rename to public/audio/battle_anims/PRSFX- Steam Eruption2.wav diff --git a/public/audio/se/battle_anims/PRSFX- Steamroller1.wav b/public/audio/battle_anims/PRSFX- Steamroller1.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Steamroller1.wav rename to public/audio/battle_anims/PRSFX- Steamroller1.wav diff --git a/public/audio/se/battle_anims/PRSFX- Steamroller2.wav b/public/audio/battle_anims/PRSFX- Steamroller2.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Steamroller2.wav rename to public/audio/battle_anims/PRSFX- Steamroller2.wav diff --git a/public/audio/se/battle_anims/PRSFX- Steel Wing.wav b/public/audio/battle_anims/PRSFX- Steel Wing.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Steel Wing.wav rename to public/audio/battle_anims/PRSFX- Steel Wing.wav diff --git a/public/audio/se/battle_anims/PRSFX- Sticky Web.wav b/public/audio/battle_anims/PRSFX- Sticky Web.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Sticky Web.wav rename to public/audio/battle_anims/PRSFX- Sticky Web.wav diff --git a/public/audio/se/battle_anims/PRSFX- Stockpile.wav b/public/audio/battle_anims/PRSFX- Stockpile.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Stockpile.wav rename to public/audio/battle_anims/PRSFX- Stockpile.wav diff --git a/public/audio/se/battle_anims/PRSFX- Stomp.wav b/public/audio/battle_anims/PRSFX- Stomp.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Stomp.wav rename to public/audio/battle_anims/PRSFX- Stomp.wav diff --git a/public/audio/se/battle_anims/PRSFX- Stomping Tantrum.wav b/public/audio/battle_anims/PRSFX- Stomping Tantrum.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Stomping Tantrum.wav rename to public/audio/battle_anims/PRSFX- Stomping Tantrum.wav diff --git a/public/audio/se/battle_anims/PRSFX- Stone Edge.wav b/public/audio/battle_anims/PRSFX- Stone Edge.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Stone Edge.wav rename to public/audio/battle_anims/PRSFX- Stone Edge.wav diff --git a/public/audio/se/battle_anims/PRSFX- Stored Power1.wav b/public/audio/battle_anims/PRSFX- Stored Power1.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Stored Power1.wav rename to public/audio/battle_anims/PRSFX- Stored Power1.wav diff --git a/public/audio/se/battle_anims/PRSFX- Stored Power2.wav b/public/audio/battle_anims/PRSFX- Stored Power2.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Stored Power2.wav rename to public/audio/battle_anims/PRSFX- Stored Power2.wav diff --git a/public/audio/se/battle_anims/PRSFX- Storm Throw1.wav b/public/audio/battle_anims/PRSFX- Storm Throw1.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Storm Throw1.wav rename to public/audio/battle_anims/PRSFX- Storm Throw1.wav diff --git a/public/audio/se/battle_anims/PRSFX- Storm Throw2.wav b/public/audio/battle_anims/PRSFX- Storm Throw2.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Storm Throw2.wav rename to public/audio/battle_anims/PRSFX- Storm Throw2.wav diff --git a/public/audio/se/battle_anims/PRSFX- Strength Sap1.wav b/public/audio/battle_anims/PRSFX- Strength Sap1.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Strength Sap1.wav rename to public/audio/battle_anims/PRSFX- Strength Sap1.wav diff --git a/public/audio/se/battle_anims/PRSFX- Strength Sap2.wav b/public/audio/battle_anims/PRSFX- Strength Sap2.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Strength Sap2.wav rename to public/audio/battle_anims/PRSFX- Strength Sap2.wav diff --git a/public/audio/se/battle_anims/PRSFX- Strength Sap3.wav b/public/audio/battle_anims/PRSFX- Strength Sap3.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Strength Sap3.wav rename to public/audio/battle_anims/PRSFX- Strength Sap3.wav diff --git a/public/audio/se/battle_anims/PRSFX- Strength.wav b/public/audio/battle_anims/PRSFX- Strength.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Strength.wav rename to public/audio/battle_anims/PRSFX- Strength.wav diff --git a/public/audio/se/battle_anims/PRSFX- String Shot1.wav b/public/audio/battle_anims/PRSFX- String Shot1.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- String Shot1.wav rename to public/audio/battle_anims/PRSFX- String Shot1.wav diff --git a/public/audio/se/battle_anims/PRSFX- String Shot2.wav b/public/audio/battle_anims/PRSFX- String Shot2.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- String Shot2.wav rename to public/audio/battle_anims/PRSFX- String Shot2.wav diff --git a/public/audio/se/battle_anims/PRSFX- Struggle Bug.wav b/public/audio/battle_anims/PRSFX- Struggle Bug.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Struggle Bug.wav rename to public/audio/battle_anims/PRSFX- Struggle Bug.wav diff --git a/public/audio/se/battle_anims/PRSFX- Struggle.wav b/public/audio/battle_anims/PRSFX- Struggle.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Struggle.wav rename to public/audio/battle_anims/PRSFX- Struggle.wav diff --git a/public/audio/se/battle_anims/PRSFX- Stun Spore.wav b/public/audio/battle_anims/PRSFX- Stun Spore.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Stun Spore.wav rename to public/audio/battle_anims/PRSFX- Stun Spore.wav diff --git a/public/audio/se/battle_anims/PRSFX- Submission.wav b/public/audio/battle_anims/PRSFX- Submission.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Submission.wav rename to public/audio/battle_anims/PRSFX- Submission.wav diff --git a/public/audio/se/battle_anims/PRSFX- Substitute1.wav b/public/audio/battle_anims/PRSFX- Substitute1.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Substitute1.wav rename to public/audio/battle_anims/PRSFX- Substitute1.wav diff --git a/public/audio/se/battle_anims/PRSFX- Substitute2.wav b/public/audio/battle_anims/PRSFX- Substitute2.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Substitute2.wav rename to public/audio/battle_anims/PRSFX- Substitute2.wav diff --git a/public/audio/se/battle_anims/PRSFX- Subzero Slammer1.wav b/public/audio/battle_anims/PRSFX- Subzero Slammer1.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Subzero Slammer1.wav rename to public/audio/battle_anims/PRSFX- Subzero Slammer1.wav diff --git a/public/audio/se/battle_anims/PRSFX- Subzero Slammer2.wav b/public/audio/battle_anims/PRSFX- Subzero Slammer2.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Subzero Slammer2.wav rename to public/audio/battle_anims/PRSFX- Subzero Slammer2.wav diff --git a/public/audio/se/battle_anims/PRSFX- Subzero Slammer3.wav b/public/audio/battle_anims/PRSFX- Subzero Slammer3.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Subzero Slammer3.wav rename to public/audio/battle_anims/PRSFX- Subzero Slammer3.wav diff --git a/public/audio/se/battle_anims/PRSFX- Subzero Slammer4.wav b/public/audio/battle_anims/PRSFX- Subzero Slammer4.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Subzero Slammer4.wav rename to public/audio/battle_anims/PRSFX- Subzero Slammer4.wav diff --git a/public/audio/se/battle_anims/PRSFX- Sucker Punch1.wav b/public/audio/battle_anims/PRSFX- Sucker Punch1.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Sucker Punch1.wav rename to public/audio/battle_anims/PRSFX- Sucker Punch1.wav diff --git a/public/audio/se/battle_anims/PRSFX- Sucker Punch2.wav b/public/audio/battle_anims/PRSFX- Sucker Punch2.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Sucker Punch2.wav rename to public/audio/battle_anims/PRSFX- Sucker Punch2.wav diff --git a/public/audio/se/battle_anims/PRSFX- Sunny Day.wav b/public/audio/battle_anims/PRSFX- Sunny Day.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Sunny Day.wav rename to public/audio/battle_anims/PRSFX- Sunny Day.wav diff --git a/public/audio/se/battle_anims/PRSFX- Sunny.wav b/public/audio/battle_anims/PRSFX- Sunny.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Sunny.wav rename to public/audio/battle_anims/PRSFX- Sunny.wav diff --git a/public/audio/se/battle_anims/PRSFX- Super Fang1.wav b/public/audio/battle_anims/PRSFX- Super Fang1.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Super Fang1.wav rename to public/audio/battle_anims/PRSFX- Super Fang1.wav diff --git a/public/audio/se/battle_anims/PRSFX- Super Fang2.wav b/public/audio/battle_anims/PRSFX- Super Fang2.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Super Fang2.wav rename to public/audio/battle_anims/PRSFX- Super Fang2.wav diff --git a/public/audio/se/battle_anims/PRSFX- Superpower1.wav b/public/audio/battle_anims/PRSFX- Superpower1.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Superpower1.wav rename to public/audio/battle_anims/PRSFX- Superpower1.wav diff --git a/public/audio/se/battle_anims/PRSFX- Superpower2.wav b/public/audio/battle_anims/PRSFX- Superpower2.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Superpower2.wav rename to public/audio/battle_anims/PRSFX- Superpower2.wav diff --git a/public/audio/se/battle_anims/PRSFX- Supersonic.wav b/public/audio/battle_anims/PRSFX- Supersonic.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Supersonic.wav rename to public/audio/battle_anims/PRSFX- Supersonic.wav diff --git a/public/audio/se/battle_anims/PRSFX- Surf.wav b/public/audio/battle_anims/PRSFX- Surf.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Surf.wav rename to public/audio/battle_anims/PRSFX- Surf.wav diff --git a/public/audio/se/battle_anims/PRSFX- Swagger1.wav b/public/audio/battle_anims/PRSFX- Swagger1.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Swagger1.wav rename to public/audio/battle_anims/PRSFX- Swagger1.wav diff --git a/public/audio/se/battle_anims/PRSFX- Swagger2.wav b/public/audio/battle_anims/PRSFX- Swagger2.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Swagger2.wav rename to public/audio/battle_anims/PRSFX- Swagger2.wav diff --git a/public/audio/se/battle_anims/PRSFX- Swallow.wav b/public/audio/battle_anims/PRSFX- Swallow.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Swallow.wav rename to public/audio/battle_anims/PRSFX- Swallow.wav diff --git a/public/audio/se/battle_anims/PRSFX- Sweet Kiss1.wav b/public/audio/battle_anims/PRSFX- Sweet Kiss1.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Sweet Kiss1.wav rename to public/audio/battle_anims/PRSFX- Sweet Kiss1.wav diff --git a/public/audio/se/battle_anims/PRSFX- Sweet Kiss2.wav b/public/audio/battle_anims/PRSFX- Sweet Kiss2.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Sweet Kiss2.wav rename to public/audio/battle_anims/PRSFX- Sweet Kiss2.wav diff --git a/public/audio/se/battle_anims/PRSFX- Sweet Scent.wav b/public/audio/battle_anims/PRSFX- Sweet Scent.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Sweet Scent.wav rename to public/audio/battle_anims/PRSFX- Sweet Scent.wav diff --git a/public/audio/se/battle_anims/PRSFX- Swift1.wav b/public/audio/battle_anims/PRSFX- Swift1.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Swift1.wav rename to public/audio/battle_anims/PRSFX- Swift1.wav diff --git a/public/audio/se/battle_anims/PRSFX- Swift2.wav b/public/audio/battle_anims/PRSFX- Swift2.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Swift2.wav rename to public/audio/battle_anims/PRSFX- Swift2.wav diff --git a/public/audio/se/battle_anims/PRSFX- Switcheroo.wav b/public/audio/battle_anims/PRSFX- Switcheroo.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Switcheroo.wav rename to public/audio/battle_anims/PRSFX- Switcheroo.wav diff --git a/public/audio/se/battle_anims/PRSFX- Swords Dance1.wav b/public/audio/battle_anims/PRSFX- Swords Dance1.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Swords Dance1.wav rename to public/audio/battle_anims/PRSFX- Swords Dance1.wav diff --git a/public/audio/se/battle_anims/PRSFX- Swords Dance2.wav b/public/audio/battle_anims/PRSFX- Swords Dance2.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Swords Dance2.wav rename to public/audio/battle_anims/PRSFX- Swords Dance2.wav diff --git a/public/audio/se/battle_anims/PRSFX- Synchronoise.wav b/public/audio/battle_anims/PRSFX- Synchronoise.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Synchronoise.wav rename to public/audio/battle_anims/PRSFX- Synchronoise.wav diff --git a/public/audio/se/battle_anims/PRSFX- Synthesis.wav b/public/audio/battle_anims/PRSFX- Synthesis.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Synthesis.wav rename to public/audio/battle_anims/PRSFX- Synthesis.wav diff --git a/public/audio/se/battle_anims/PRSFX- Tackle.wav b/public/audio/battle_anims/PRSFX- Tackle.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Tackle.wav rename to public/audio/battle_anims/PRSFX- Tackle.wav diff --git a/public/audio/se/battle_anims/PRSFX- Tail Glow.wav b/public/audio/battle_anims/PRSFX- Tail Glow.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Tail Glow.wav rename to public/audio/battle_anims/PRSFX- Tail Glow.wav diff --git a/public/audio/se/battle_anims/PRSFX- Tail Slap.wav b/public/audio/battle_anims/PRSFX- Tail Slap.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Tail Slap.wav rename to public/audio/battle_anims/PRSFX- Tail Slap.wav diff --git a/public/audio/se/battle_anims/PRSFX- Tail Whip.wav b/public/audio/battle_anims/PRSFX- Tail Whip.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Tail Whip.wav rename to public/audio/battle_anims/PRSFX- Tail Whip.wav diff --git a/public/audio/se/battle_anims/PRSFX- Tailwind.wav b/public/audio/battle_anims/PRSFX- Tailwind.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Tailwind.wav rename to public/audio/battle_anims/PRSFX- Tailwind.wav diff --git a/public/audio/se/battle_anims/PRSFX- Take Down1.wav b/public/audio/battle_anims/PRSFX- Take Down1.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Take Down1.wav rename to public/audio/battle_anims/PRSFX- Take Down1.wav diff --git a/public/audio/se/battle_anims/PRSFX- Take Down2.wav b/public/audio/battle_anims/PRSFX- Take Down2.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Take Down2.wav rename to public/audio/battle_anims/PRSFX- Take Down2.wav diff --git a/public/audio/se/battle_anims/PRSFX- Taunt1.wav b/public/audio/battle_anims/PRSFX- Taunt1.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Taunt1.wav rename to public/audio/battle_anims/PRSFX- Taunt1.wav diff --git a/public/audio/se/battle_anims/PRSFX- Taunt2.wav b/public/audio/battle_anims/PRSFX- Taunt2.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Taunt2.wav rename to public/audio/battle_anims/PRSFX- Taunt2.wav diff --git a/public/audio/se/battle_anims/PRSFX- Taunt3.wav b/public/audio/battle_anims/PRSFX- Taunt3.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Taunt3.wav rename to public/audio/battle_anims/PRSFX- Taunt3.wav diff --git a/public/audio/se/battle_anims/PRSFX- Tearful Look1.wav b/public/audio/battle_anims/PRSFX- Tearful Look1.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Tearful Look1.wav rename to public/audio/battle_anims/PRSFX- Tearful Look1.wav diff --git a/public/audio/se/battle_anims/PRSFX- Tearful Look2.wav b/public/audio/battle_anims/PRSFX- Tearful Look2.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Tearful Look2.wav rename to public/audio/battle_anims/PRSFX- Tearful Look2.wav diff --git a/public/audio/se/battle_anims/PRSFX- Tearful Look3.wav b/public/audio/battle_anims/PRSFX- Tearful Look3.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Tearful Look3.wav rename to public/audio/battle_anims/PRSFX- Tearful Look3.wav diff --git a/public/audio/se/battle_anims/PRSFX- Techno Blast 1.wav b/public/audio/battle_anims/PRSFX- Techno Blast 1.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Techno Blast 1.wav rename to public/audio/battle_anims/PRSFX- Techno Blast 1.wav diff --git a/public/audio/se/battle_anims/PRSFX- Techno Blast 2.wav b/public/audio/battle_anims/PRSFX- Techno Blast 2.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Techno Blast 2.wav rename to public/audio/battle_anims/PRSFX- Techno Blast 2.wav diff --git a/public/audio/se/battle_anims/PRSFX- Techno Blast 3.wav b/public/audio/battle_anims/PRSFX- Techno Blast 3.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Techno Blast 3.wav rename to public/audio/battle_anims/PRSFX- Techno Blast 3.wav diff --git a/public/audio/se/battle_anims/PRSFX- Teeter Dance.wav b/public/audio/battle_anims/PRSFX- Teeter Dance.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Teeter Dance.wav rename to public/audio/battle_anims/PRSFX- Teeter Dance.wav diff --git a/public/audio/se/battle_anims/PRSFX- Telekinesis.wav b/public/audio/battle_anims/PRSFX- Telekinesis.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Telekinesis.wav rename to public/audio/battle_anims/PRSFX- Telekinesis.wav diff --git a/public/audio/se/battle_anims/PRSFX- Teleport.wav b/public/audio/battle_anims/PRSFX- Teleport.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Teleport.wav rename to public/audio/battle_anims/PRSFX- Teleport.wav diff --git a/public/audio/se/battle_anims/PRSFX- Theif1.wav b/public/audio/battle_anims/PRSFX- Theif1.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Theif1.wav rename to public/audio/battle_anims/PRSFX- Theif1.wav diff --git a/public/audio/se/battle_anims/PRSFX- Theif2.wav b/public/audio/battle_anims/PRSFX- Theif2.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Theif2.wav rename to public/audio/battle_anims/PRSFX- Theif2.wav diff --git a/public/audio/se/battle_anims/PRSFX- Thousand Arrows1.wav b/public/audio/battle_anims/PRSFX- Thousand Arrows1.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Thousand Arrows1.wav rename to public/audio/battle_anims/PRSFX- Thousand Arrows1.wav diff --git a/public/audio/se/battle_anims/PRSFX- Thousand Arrows2.wav b/public/audio/battle_anims/PRSFX- Thousand Arrows2.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Thousand Arrows2.wav rename to public/audio/battle_anims/PRSFX- Thousand Arrows2.wav diff --git a/public/audio/se/battle_anims/PRSFX- Thousand Waves1.wav b/public/audio/battle_anims/PRSFX- Thousand Waves1.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Thousand Waves1.wav rename to public/audio/battle_anims/PRSFX- Thousand Waves1.wav diff --git a/public/audio/se/battle_anims/PRSFX- Thousand Waves2.wav b/public/audio/battle_anims/PRSFX- Thousand Waves2.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Thousand Waves2.wav rename to public/audio/battle_anims/PRSFX- Thousand Waves2.wav diff --git a/public/audio/se/battle_anims/PRSFX- Thrash.wav b/public/audio/battle_anims/PRSFX- Thrash.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Thrash.wav rename to public/audio/battle_anims/PRSFX- Thrash.wav diff --git a/public/audio/se/battle_anims/PRSFX- Thrash2.wav b/public/audio/battle_anims/PRSFX- Thrash2.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Thrash2.wav rename to public/audio/battle_anims/PRSFX- Thrash2.wav diff --git a/public/audio/se/battle_anims/PRSFX- Throat Chop1.wav b/public/audio/battle_anims/PRSFX- Throat Chop1.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Throat Chop1.wav rename to public/audio/battle_anims/PRSFX- Throat Chop1.wav diff --git a/public/audio/se/battle_anims/PRSFX- Throat Chop2.wav b/public/audio/battle_anims/PRSFX- Throat Chop2.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Throat Chop2.wav rename to public/audio/battle_anims/PRSFX- Throat Chop2.wav diff --git a/public/audio/se/battle_anims/PRSFX- Throat Chop3.wav b/public/audio/battle_anims/PRSFX- Throat Chop3.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Throat Chop3.wav rename to public/audio/battle_anims/PRSFX- Throat Chop3.wav diff --git a/public/audio/se/battle_anims/PRSFX- Throat Chop4.wav b/public/audio/battle_anims/PRSFX- Throat Chop4.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Throat Chop4.wav rename to public/audio/battle_anims/PRSFX- Throat Chop4.wav diff --git a/public/audio/se/battle_anims/PRSFX- Throat Chop5.wav b/public/audio/battle_anims/PRSFX- Throat Chop5.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Throat Chop5.wav rename to public/audio/battle_anims/PRSFX- Throat Chop5.wav diff --git a/public/audio/se/battle_anims/PRSFX- Thunder Fang.wav b/public/audio/battle_anims/PRSFX- Thunder Fang.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Thunder Fang.wav rename to public/audio/battle_anims/PRSFX- Thunder Fang.wav diff --git a/public/audio/se/battle_anims/PRSFX- Thunder Punch1.wav b/public/audio/battle_anims/PRSFX- Thunder Punch1.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Thunder Punch1.wav rename to public/audio/battle_anims/PRSFX- Thunder Punch1.wav diff --git a/public/audio/se/battle_anims/PRSFX- Thunder Punch2.wav b/public/audio/battle_anims/PRSFX- Thunder Punch2.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Thunder Punch2.wav rename to public/audio/battle_anims/PRSFX- Thunder Punch2.wav diff --git a/public/audio/se/battle_anims/PRSFX- Thunder Wave.wav b/public/audio/battle_anims/PRSFX- Thunder Wave.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Thunder Wave.wav rename to public/audio/battle_anims/PRSFX- Thunder Wave.wav diff --git a/public/audio/se/battle_anims/PRSFX- Thunder.wav b/public/audio/battle_anims/PRSFX- Thunder.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Thunder.wav rename to public/audio/battle_anims/PRSFX- Thunder.wav diff --git a/public/audio/se/battle_anims/PRSFX- Thunderbolt1.wav b/public/audio/battle_anims/PRSFX- Thunderbolt1.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Thunderbolt1.wav rename to public/audio/battle_anims/PRSFX- Thunderbolt1.wav diff --git a/public/audio/se/battle_anims/PRSFX- Thunderbolt2.wav b/public/audio/battle_anims/PRSFX- Thunderbolt2.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Thunderbolt2.wav rename to public/audio/battle_anims/PRSFX- Thunderbolt2.wav diff --git a/public/audio/se/battle_anims/PRSFX- Thundershock.wav b/public/audio/battle_anims/PRSFX- Thundershock.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Thundershock.wav rename to public/audio/battle_anims/PRSFX- Thundershock.wav diff --git a/public/audio/se/battle_anims/PRSFX- Tickle.wav b/public/audio/battle_anims/PRSFX- Tickle.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Tickle.wav rename to public/audio/battle_anims/PRSFX- Tickle.wav diff --git a/public/audio/se/battle_anims/PRSFX- Topsy Turvy.wav b/public/audio/battle_anims/PRSFX- Topsy Turvy.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Topsy Turvy.wav rename to public/audio/battle_anims/PRSFX- Topsy Turvy.wav diff --git a/public/audio/se/battle_anims/PRSFX- Torment1.wav b/public/audio/battle_anims/PRSFX- Torment1.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Torment1.wav rename to public/audio/battle_anims/PRSFX- Torment1.wav diff --git a/public/audio/se/battle_anims/PRSFX- Torment2.wav b/public/audio/battle_anims/PRSFX- Torment2.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Torment2.wav rename to public/audio/battle_anims/PRSFX- Torment2.wav diff --git a/public/audio/se/battle_anims/PRSFX- Toxic Spikes1.wav b/public/audio/battle_anims/PRSFX- Toxic Spikes1.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Toxic Spikes1.wav rename to public/audio/battle_anims/PRSFX- Toxic Spikes1.wav diff --git a/public/audio/se/battle_anims/PRSFX- Toxic Spikes2.wav b/public/audio/battle_anims/PRSFX- Toxic Spikes2.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Toxic Spikes2.wav rename to public/audio/battle_anims/PRSFX- Toxic Spikes2.wav diff --git a/public/audio/se/battle_anims/PRSFX- Toxic Thread1.wav b/public/audio/battle_anims/PRSFX- Toxic Thread1.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Toxic Thread1.wav rename to public/audio/battle_anims/PRSFX- Toxic Thread1.wav diff --git a/public/audio/se/battle_anims/PRSFX- Toxic Thread2.wav b/public/audio/battle_anims/PRSFX- Toxic Thread2.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Toxic Thread2.wav rename to public/audio/battle_anims/PRSFX- Toxic Thread2.wav diff --git a/public/audio/se/battle_anims/PRSFX- Toxic Thread3.wav b/public/audio/battle_anims/PRSFX- Toxic Thread3.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Toxic Thread3.wav rename to public/audio/battle_anims/PRSFX- Toxic Thread3.wav diff --git a/public/audio/se/battle_anims/PRSFX- Toxic1.wav b/public/audio/battle_anims/PRSFX- Toxic1.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Toxic1.wav rename to public/audio/battle_anims/PRSFX- Toxic1.wav diff --git a/public/audio/se/battle_anims/PRSFX- Toxic2.wav b/public/audio/battle_anims/PRSFX- Toxic2.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Toxic2.wav rename to public/audio/battle_anims/PRSFX- Toxic2.wav diff --git a/public/audio/se/battle_anims/PRSFX- Trainer.wav b/public/audio/battle_anims/PRSFX- Trainer.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Trainer.wav rename to public/audio/battle_anims/PRSFX- Trainer.wav diff --git a/public/audio/se/battle_anims/PRSFX- Transform.wav b/public/audio/battle_anims/PRSFX- Transform.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Transform.wav rename to public/audio/battle_anims/PRSFX- Transform.wav diff --git a/public/audio/se/battle_anims/PRSFX- Tri Attack.wav b/public/audio/battle_anims/PRSFX- Tri Attack.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Tri Attack.wav rename to public/audio/battle_anims/PRSFX- Tri Attack.wav diff --git a/public/audio/se/battle_anims/PRSFX- Trick Room.wav b/public/audio/battle_anims/PRSFX- Trick Room.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Trick Room.wav rename to public/audio/battle_anims/PRSFX- Trick Room.wav diff --git a/public/audio/se/battle_anims/PRSFX- Trick or Treat.wav b/public/audio/battle_anims/PRSFX- Trick or Treat.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Trick or Treat.wav rename to public/audio/battle_anims/PRSFX- Trick or Treat.wav diff --git a/public/audio/se/battle_anims/PRSFX- Trick.wav b/public/audio/battle_anims/PRSFX- Trick.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Trick.wav rename to public/audio/battle_anims/PRSFX- Trick.wav diff --git a/public/audio/se/battle_anims/PRSFX- Triple Kick.wav b/public/audio/battle_anims/PRSFX- Triple Kick.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Triple Kick.wav rename to public/audio/battle_anims/PRSFX- Triple Kick.wav diff --git a/public/audio/se/battle_anims/PRSFX- Trop Kick1.wav b/public/audio/battle_anims/PRSFX- Trop Kick1.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Trop Kick1.wav rename to public/audio/battle_anims/PRSFX- Trop Kick1.wav diff --git a/public/audio/se/battle_anims/PRSFX- Trop Kick2.wav b/public/audio/battle_anims/PRSFX- Trop Kick2.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Trop Kick2.wav rename to public/audio/battle_anims/PRSFX- Trop Kick2.wav diff --git a/public/audio/se/battle_anims/PRSFX- Trop Kick3.wav b/public/audio/battle_anims/PRSFX- Trop Kick3.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Trop Kick3.wav rename to public/audio/battle_anims/PRSFX- Trop Kick3.wav diff --git a/public/audio/se/battle_anims/PRSFX- Trump Card1.wav b/public/audio/battle_anims/PRSFX- Trump Card1.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Trump Card1.wav rename to public/audio/battle_anims/PRSFX- Trump Card1.wav diff --git a/public/audio/se/battle_anims/PRSFX- Trump Card2.wav b/public/audio/battle_anims/PRSFX- Trump Card2.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Trump Card2.wav rename to public/audio/battle_anims/PRSFX- Trump Card2.wav diff --git a/public/audio/se/battle_anims/PRSFX- Twineedle1.wav b/public/audio/battle_anims/PRSFX- Twineedle1.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Twineedle1.wav rename to public/audio/battle_anims/PRSFX- Twineedle1.wav diff --git a/public/audio/se/battle_anims/PRSFX- Twineedle2.wav b/public/audio/battle_anims/PRSFX- Twineedle2.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Twineedle2.wav rename to public/audio/battle_anims/PRSFX- Twineedle2.wav diff --git a/public/audio/se/battle_anims/PRSFX- Twinkle Tackle1.wav b/public/audio/battle_anims/PRSFX- Twinkle Tackle1.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Twinkle Tackle1.wav rename to public/audio/battle_anims/PRSFX- Twinkle Tackle1.wav diff --git a/public/audio/se/battle_anims/PRSFX- Twinkle Tackle2.wav b/public/audio/battle_anims/PRSFX- Twinkle Tackle2.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Twinkle Tackle2.wav rename to public/audio/battle_anims/PRSFX- Twinkle Tackle2.wav diff --git a/public/audio/se/battle_anims/PRSFX- Twinkle Tackle3.wav b/public/audio/battle_anims/PRSFX- Twinkle Tackle3.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Twinkle Tackle3.wav rename to public/audio/battle_anims/PRSFX- Twinkle Tackle3.wav diff --git a/public/audio/se/battle_anims/PRSFX- Twister.wav b/public/audio/battle_anims/PRSFX- Twister.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Twister.wav rename to public/audio/battle_anims/PRSFX- Twister.wav diff --git a/public/audio/se/battle_anims/PRSFX- U-Turn.wav b/public/audio/battle_anims/PRSFX- U-Turn.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- U-Turn.wav rename to public/audio/battle_anims/PRSFX- U-Turn.wav diff --git a/public/audio/se/battle_anims/PRSFX- U-Turn2.wav b/public/audio/battle_anims/PRSFX- U-Turn2.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- U-Turn2.wav rename to public/audio/battle_anims/PRSFX- U-Turn2.wav diff --git a/public/audio/se/battle_anims/PRSFX- Uproar1.wav b/public/audio/battle_anims/PRSFX- Uproar1.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Uproar1.wav rename to public/audio/battle_anims/PRSFX- Uproar1.wav diff --git a/public/audio/se/battle_anims/PRSFX- Uproar2.wav b/public/audio/battle_anims/PRSFX- Uproar2.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Uproar2.wav rename to public/audio/battle_anims/PRSFX- Uproar2.wav diff --git a/public/audio/se/battle_anims/PRSFX- V-Create1.wav b/public/audio/battle_anims/PRSFX- V-Create1.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- V-Create1.wav rename to public/audio/battle_anims/PRSFX- V-Create1.wav diff --git a/public/audio/se/battle_anims/PRSFX- V-Create2.wav b/public/audio/battle_anims/PRSFX- V-Create2.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- V-Create2.wav rename to public/audio/battle_anims/PRSFX- V-Create2.wav diff --git a/public/audio/se/battle_anims/PRSFX- Vacuum Wave1.wav b/public/audio/battle_anims/PRSFX- Vacuum Wave1.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Vacuum Wave1.wav rename to public/audio/battle_anims/PRSFX- Vacuum Wave1.wav diff --git a/public/audio/se/battle_anims/PRSFX- Vacuum Wave2.wav b/public/audio/battle_anims/PRSFX- Vacuum Wave2.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Vacuum Wave2.wav rename to public/audio/battle_anims/PRSFX- Vacuum Wave2.wav diff --git a/public/audio/se/battle_anims/PRSFX- Venom Drench.wav b/public/audio/battle_anims/PRSFX- Venom Drench.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Venom Drench.wav rename to public/audio/battle_anims/PRSFX- Venom Drench.wav diff --git a/public/audio/se/battle_anims/PRSFX- Venoshock1.wav b/public/audio/battle_anims/PRSFX- Venoshock1.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Venoshock1.wav rename to public/audio/battle_anims/PRSFX- Venoshock1.wav diff --git a/public/audio/se/battle_anims/PRSFX- Venoshock2.wav b/public/audio/battle_anims/PRSFX- Venoshock2.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Venoshock2.wav rename to public/audio/battle_anims/PRSFX- Venoshock2.wav diff --git a/public/audio/se/battle_anims/PRSFX- Vice Grip.wav b/public/audio/battle_anims/PRSFX- Vice Grip.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Vice Grip.wav rename to public/audio/battle_anims/PRSFX- Vice Grip.wav diff --git a/public/audio/se/battle_anims/PRSFX- Vine Whip.wav b/public/audio/battle_anims/PRSFX- Vine Whip.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Vine Whip.wav rename to public/audio/battle_anims/PRSFX- Vine Whip.wav diff --git a/public/audio/se/battle_anims/PRSFX- Vital Throw1.wav b/public/audio/battle_anims/PRSFX- Vital Throw1.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Vital Throw1.wav rename to public/audio/battle_anims/PRSFX- Vital Throw1.wav diff --git a/public/audio/se/battle_anims/PRSFX- Vital Throw2.wav b/public/audio/battle_anims/PRSFX- Vital Throw2.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Vital Throw2.wav rename to public/audio/battle_anims/PRSFX- Vital Throw2.wav diff --git a/public/audio/se/battle_anims/PRSFX- Volt Switch1.wav b/public/audio/battle_anims/PRSFX- Volt Switch1.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Volt Switch1.wav rename to public/audio/battle_anims/PRSFX- Volt Switch1.wav diff --git a/public/audio/se/battle_anims/PRSFX- Volt Switch2.wav b/public/audio/battle_anims/PRSFX- Volt Switch2.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Volt Switch2.wav rename to public/audio/battle_anims/PRSFX- Volt Switch2.wav diff --git a/public/audio/se/battle_anims/PRSFX- Volt Tackle1.wav b/public/audio/battle_anims/PRSFX- Volt Tackle1.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Volt Tackle1.wav rename to public/audio/battle_anims/PRSFX- Volt Tackle1.wav diff --git a/public/audio/se/battle_anims/PRSFX- Volt Tackle2.wav b/public/audio/battle_anims/PRSFX- Volt Tackle2.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Volt Tackle2.wav rename to public/audio/battle_anims/PRSFX- Volt Tackle2.wav diff --git a/public/audio/se/battle_anims/PRSFX- Wake Up Slap.wav b/public/audio/battle_anims/PRSFX- Wake Up Slap.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Wake Up Slap.wav rename to public/audio/battle_anims/PRSFX- Wake Up Slap.wav diff --git a/public/audio/se/battle_anims/PRSFX- Water Gun.wav b/public/audio/battle_anims/PRSFX- Water Gun.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Water Gun.wav rename to public/audio/battle_anims/PRSFX- Water Gun.wav diff --git a/public/audio/se/battle_anims/PRSFX- Water Pledge1.wav b/public/audio/battle_anims/PRSFX- Water Pledge1.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Water Pledge1.wav rename to public/audio/battle_anims/PRSFX- Water Pledge1.wav diff --git a/public/audio/se/battle_anims/PRSFX- Water Pledge2.wav b/public/audio/battle_anims/PRSFX- Water Pledge2.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Water Pledge2.wav rename to public/audio/battle_anims/PRSFX- Water Pledge2.wav diff --git a/public/audio/se/battle_anims/PRSFX- Water Pulse.wav b/public/audio/battle_anims/PRSFX- Water Pulse.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Water Pulse.wav rename to public/audio/battle_anims/PRSFX- Water Pulse.wav diff --git a/public/audio/se/battle_anims/PRSFX- Water Pulse2.wav b/public/audio/battle_anims/PRSFX- Water Pulse2.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Water Pulse2.wav rename to public/audio/battle_anims/PRSFX- Water Pulse2.wav diff --git a/public/audio/se/battle_anims/PRSFX- Water Shurkein.wav b/public/audio/battle_anims/PRSFX- Water Shurkein.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Water Shurkein.wav rename to public/audio/battle_anims/PRSFX- Water Shurkein.wav diff --git a/public/audio/se/battle_anims/PRSFX- Water Sport.wav b/public/audio/battle_anims/PRSFX- Water Sport.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Water Sport.wav rename to public/audio/battle_anims/PRSFX- Water Sport.wav diff --git a/public/audio/se/battle_anims/PRSFX- Water Spout1.wav b/public/audio/battle_anims/PRSFX- Water Spout1.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Water Spout1.wav rename to public/audio/battle_anims/PRSFX- Water Spout1.wav diff --git a/public/audio/se/battle_anims/PRSFX- Water Spout2.wav b/public/audio/battle_anims/PRSFX- Water Spout2.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Water Spout2.wav rename to public/audio/battle_anims/PRSFX- Water Spout2.wav diff --git a/public/audio/se/battle_anims/PRSFX- Waterfall1.wav b/public/audio/battle_anims/PRSFX- Waterfall1.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Waterfall1.wav rename to public/audio/battle_anims/PRSFX- Waterfall1.wav diff --git a/public/audio/se/battle_anims/PRSFX- Waterfall2.wav b/public/audio/battle_anims/PRSFX- Waterfall2.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Waterfall2.wav rename to public/audio/battle_anims/PRSFX- Waterfall2.wav diff --git a/public/audio/se/battle_anims/PRSFX- Weather Ball1.wav b/public/audio/battle_anims/PRSFX- Weather Ball1.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Weather Ball1.wav rename to public/audio/battle_anims/PRSFX- Weather Ball1.wav diff --git a/public/audio/se/battle_anims/PRSFX- Weather Ball2.wav b/public/audio/battle_anims/PRSFX- Weather Ball2.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Weather Ball2.wav rename to public/audio/battle_anims/PRSFX- Weather Ball2.wav diff --git a/public/audio/se/battle_anims/PRSFX- Weather Ball3.wav b/public/audio/battle_anims/PRSFX- Weather Ball3.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Weather Ball3.wav rename to public/audio/battle_anims/PRSFX- Weather Ball3.wav diff --git a/public/audio/se/battle_anims/PRSFX- Weather Ball4.wav b/public/audio/battle_anims/PRSFX- Weather Ball4.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Weather Ball4.wav rename to public/audio/battle_anims/PRSFX- Weather Ball4.wav diff --git a/public/audio/se/battle_anims/PRSFX- Weather Ball5.wav b/public/audio/battle_anims/PRSFX- Weather Ball5.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Weather Ball5.wav rename to public/audio/battle_anims/PRSFX- Weather Ball5.wav diff --git a/public/audio/se/battle_anims/PRSFX- Weather Ball6.wav b/public/audio/battle_anims/PRSFX- Weather Ball6.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Weather Ball6.wav rename to public/audio/battle_anims/PRSFX- Weather Ball6.wav diff --git a/public/audio/se/battle_anims/PRSFX- Whirlpool.wav b/public/audio/battle_anims/PRSFX- Whirlpool.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Whirlpool.wav rename to public/audio/battle_anims/PRSFX- Whirlpool.wav diff --git a/public/audio/se/battle_anims/PRSFX- Whirlpool2.wav b/public/audio/battle_anims/PRSFX- Whirlpool2.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Whirlpool2.wav rename to public/audio/battle_anims/PRSFX- Whirlpool2.wav diff --git a/public/audio/se/battle_anims/PRSFX- Whirlwind.wav b/public/audio/battle_anims/PRSFX- Whirlwind.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Whirlwind.wav rename to public/audio/battle_anims/PRSFX- Whirlwind.wav diff --git a/public/audio/se/battle_anims/PRSFX- Wide Guard.wav b/public/audio/battle_anims/PRSFX- Wide Guard.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Wide Guard.wav rename to public/audio/battle_anims/PRSFX- Wide Guard.wav diff --git a/public/audio/se/battle_anims/PRSFX- Wild Charge1.wav b/public/audio/battle_anims/PRSFX- Wild Charge1.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Wild Charge1.wav rename to public/audio/battle_anims/PRSFX- Wild Charge1.wav diff --git a/public/audio/se/battle_anims/PRSFX- Wild Charge2.wav b/public/audio/battle_anims/PRSFX- Wild Charge2.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Wild Charge2.wav rename to public/audio/battle_anims/PRSFX- Wild Charge2.wav diff --git a/public/audio/se/battle_anims/PRSFX- Will O Wisp1.wav b/public/audio/battle_anims/PRSFX- Will O Wisp1.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Will O Wisp1.wav rename to public/audio/battle_anims/PRSFX- Will O Wisp1.wav diff --git a/public/audio/se/battle_anims/PRSFX- Will O Wisp2.wav b/public/audio/battle_anims/PRSFX- Will O Wisp2.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Will O Wisp2.wav rename to public/audio/battle_anims/PRSFX- Will O Wisp2.wav diff --git a/public/audio/se/battle_anims/PRSFX- Wind.wav b/public/audio/battle_anims/PRSFX- Wind.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Wind.wav rename to public/audio/battle_anims/PRSFX- Wind.wav diff --git a/public/audio/se/battle_anims/PRSFX- Wing Attack1.wav b/public/audio/battle_anims/PRSFX- Wing Attack1.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Wing Attack1.wav rename to public/audio/battle_anims/PRSFX- Wing Attack1.wav diff --git a/public/audio/se/battle_anims/PRSFX- Wing Attack2.wav b/public/audio/battle_anims/PRSFX- Wing Attack2.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Wing Attack2.wav rename to public/audio/battle_anims/PRSFX- Wing Attack2.wav diff --git a/public/audio/se/battle_anims/PRSFX- Wish.wav b/public/audio/battle_anims/PRSFX- Wish.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Wish.wav rename to public/audio/battle_anims/PRSFX- Wish.wav diff --git a/public/audio/se/battle_anims/PRSFX- Wish2.wav b/public/audio/battle_anims/PRSFX- Wish2.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Wish2.wav rename to public/audio/battle_anims/PRSFX- Wish2.wav diff --git a/public/audio/se/battle_anims/PRSFX- Withdraw.wav b/public/audio/battle_anims/PRSFX- Withdraw.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Withdraw.wav rename to public/audio/battle_anims/PRSFX- Withdraw.wav diff --git a/public/audio/se/battle_anims/PRSFX- Wonder Room.wav b/public/audio/battle_anims/PRSFX- Wonder Room.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Wonder Room.wav rename to public/audio/battle_anims/PRSFX- Wonder Room.wav diff --git a/public/audio/se/battle_anims/PRSFX- Wood Hammer.wav b/public/audio/battle_anims/PRSFX- Wood Hammer.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Wood Hammer.wav rename to public/audio/battle_anims/PRSFX- Wood Hammer.wav diff --git a/public/audio/se/battle_anims/PRSFX- Work Up.wav b/public/audio/battle_anims/PRSFX- Work Up.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Work Up.wav rename to public/audio/battle_anims/PRSFX- Work Up.wav diff --git a/public/audio/se/battle_anims/PRSFX- Worry Seed1.wav b/public/audio/battle_anims/PRSFX- Worry Seed1.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Worry Seed1.wav rename to public/audio/battle_anims/PRSFX- Worry Seed1.wav diff --git a/public/audio/se/battle_anims/PRSFX- Worry Seed2.wav b/public/audio/battle_anims/PRSFX- Worry Seed2.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Worry Seed2.wav rename to public/audio/battle_anims/PRSFX- Worry Seed2.wav diff --git a/public/audio/se/battle_anims/PRSFX- Wrap.wav b/public/audio/battle_anims/PRSFX- Wrap.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Wrap.wav rename to public/audio/battle_anims/PRSFX- Wrap.wav diff --git a/public/audio/se/battle_anims/PRSFX- Wring Out1.wav b/public/audio/battle_anims/PRSFX- Wring Out1.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Wring Out1.wav rename to public/audio/battle_anims/PRSFX- Wring Out1.wav diff --git a/public/audio/se/battle_anims/PRSFX- Wring Out2.wav b/public/audio/battle_anims/PRSFX- Wring Out2.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Wring Out2.wav rename to public/audio/battle_anims/PRSFX- Wring Out2.wav diff --git a/public/audio/se/battle_anims/PRSFX- X Scissor.wav b/public/audio/battle_anims/PRSFX- X Scissor.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- X Scissor.wav rename to public/audio/battle_anims/PRSFX- X Scissor.wav diff --git a/public/audio/se/battle_anims/PRSFX- Yawn.wav b/public/audio/battle_anims/PRSFX- Yawn.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Yawn.wav rename to public/audio/battle_anims/PRSFX- Yawn.wav diff --git a/public/audio/se/battle_anims/PRSFX- ZPower2.wav b/public/audio/battle_anims/PRSFX- ZPower2.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- ZPower2.wav rename to public/audio/battle_anims/PRSFX- ZPower2.wav diff --git a/public/audio/se/battle_anims/PRSFX- ZPower3.wav b/public/audio/battle_anims/PRSFX- ZPower3.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- ZPower3.wav rename to public/audio/battle_anims/PRSFX- ZPower3.wav diff --git a/public/audio/se/battle_anims/PRSFX- Zap Cannon1.wav b/public/audio/battle_anims/PRSFX- Zap Cannon1.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Zap Cannon1.wav rename to public/audio/battle_anims/PRSFX- Zap Cannon1.wav diff --git a/public/audio/se/battle_anims/PRSFX- Zap Cannon2.wav b/public/audio/battle_anims/PRSFX- Zap Cannon2.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Zap Cannon2.wav rename to public/audio/battle_anims/PRSFX- Zap Cannon2.wav diff --git a/public/audio/se/battle_anims/PRSFX- Zap Cannon3.wav b/public/audio/battle_anims/PRSFX- Zap Cannon3.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Zap Cannon3.wav rename to public/audio/battle_anims/PRSFX- Zap Cannon3.wav diff --git a/public/audio/se/battle_anims/PRSFX- Zen Headbutt1.wav b/public/audio/battle_anims/PRSFX- Zen Headbutt1.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Zen Headbutt1.wav rename to public/audio/battle_anims/PRSFX- Zen Headbutt1.wav diff --git a/public/audio/se/battle_anims/PRSFX- Zen Headbutt2.wav b/public/audio/battle_anims/PRSFX- Zen Headbutt2.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Zen Headbutt2.wav rename to public/audio/battle_anims/PRSFX- Zen Headbutt2.wav diff --git a/public/audio/se/battle_anims/PRSFX- Zing Zap1.wav b/public/audio/battle_anims/PRSFX- Zing Zap1.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Zing Zap1.wav rename to public/audio/battle_anims/PRSFX- Zing Zap1.wav diff --git a/public/audio/se/battle_anims/PRSFX- Zing Zap2.wav b/public/audio/battle_anims/PRSFX- Zing Zap2.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Zing Zap2.wav rename to public/audio/battle_anims/PRSFX- Zing Zap2.wav diff --git a/public/audio/se/battle_anims/PRSFX- Zing Zap3.wav b/public/audio/battle_anims/PRSFX- Zing Zap3.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Zing Zap3.wav rename to public/audio/battle_anims/PRSFX- Zing Zap3.wav diff --git a/public/audio/se/battle_anims/PRSFX- Zing Zap4.wav b/public/audio/battle_anims/PRSFX- Zing Zap4.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Zing Zap4.wav rename to public/audio/battle_anims/PRSFX- Zing Zap4.wav diff --git a/public/audio/se/battle_anims/PRSFX- Zpower1.wav b/public/audio/battle_anims/PRSFX- Zpower1.wav similarity index 100% rename from public/audio/se/battle_anims/PRSFX- Zpower1.wav rename to public/audio/battle_anims/PRSFX- Zpower1.wav diff --git a/public/audio/se/battle_anims/Paralyze1.m4a b/public/audio/battle_anims/Paralyze1.m4a similarity index 100% rename from public/audio/se/battle_anims/Paralyze1.m4a rename to public/audio/battle_anims/Paralyze1.m4a diff --git a/public/audio/se/battle_anims/Paralyze3.m4a b/public/audio/battle_anims/Paralyze3.m4a similarity index 100% rename from public/audio/se/battle_anims/Paralyze3.m4a rename to public/audio/battle_anims/Paralyze3.m4a diff --git a/public/audio/se/battle_anims/Poison.m4a b/public/audio/battle_anims/Poison.m4a similarity index 100% rename from public/audio/se/battle_anims/Poison.m4a rename to public/audio/battle_anims/Poison.m4a diff --git a/public/audio/se/battle_anims/Pollen.m4a b/public/audio/battle_anims/Pollen.m4a similarity index 100% rename from public/audio/se/battle_anims/Pollen.m4a rename to public/audio/battle_anims/Pollen.m4a diff --git a/public/audio/se/battle_anims/Present - Heal.mp3 b/public/audio/battle_anims/Present - Heal.mp3 similarity index 100% rename from public/audio/se/battle_anims/Present - Heal.mp3 rename to public/audio/battle_anims/Present - Heal.mp3 diff --git a/public/audio/se/battle_anims/Psych Up.mp3 b/public/audio/battle_anims/Psych Up.mp3 similarity index 100% rename from public/audio/se/battle_anims/Psych Up.mp3 rename to public/audio/battle_anims/Psych Up.mp3 diff --git a/public/audio/se/battle_anims/Psycho Cut.wav b/public/audio/battle_anims/Psycho Cut.wav similarity index 100% rename from public/audio/se/battle_anims/Psycho Cut.wav rename to public/audio/battle_anims/Psycho Cut.wav diff --git a/public/audio/se/battle_anims/Recovery.m4a b/public/audio/battle_anims/Recovery.m4a similarity index 100% rename from public/audio/se/battle_anims/Recovery.m4a rename to public/audio/battle_anims/Recovery.m4a diff --git a/public/audio/se/battle_anims/Refresh.mp3 b/public/audio/battle_anims/Refresh.mp3 similarity index 100% rename from public/audio/se/battle_anims/Refresh.mp3 rename to public/audio/battle_anims/Refresh.mp3 diff --git a/public/audio/se/battle_anims/RockFall1.wav b/public/audio/battle_anims/RockFall1.wav similarity index 100% rename from public/audio/se/battle_anims/RockFall1.wav rename to public/audio/battle_anims/RockFall1.wav diff --git a/public/audio/se/battle_anims/Saint1.m4a b/public/audio/battle_anims/Saint1.m4a similarity index 100% rename from public/audio/se/battle_anims/Saint1.m4a rename to public/audio/battle_anims/Saint1.m4a diff --git a/public/audio/se/battle_anims/Saint3.m4a b/public/audio/battle_anims/Saint3.m4a similarity index 100% rename from public/audio/se/battle_anims/Saint3.m4a rename to public/audio/battle_anims/Saint3.m4a diff --git a/public/audio/se/battle_anims/Saint4.m4a b/public/audio/battle_anims/Saint4.m4a similarity index 100% rename from public/audio/se/battle_anims/Saint4.m4a rename to public/audio/battle_anims/Saint4.m4a diff --git a/public/audio/se/battle_anims/Saint6.m4a b/public/audio/battle_anims/Saint6.m4a similarity index 100% rename from public/audio/se/battle_anims/Saint6.m4a rename to public/audio/battle_anims/Saint6.m4a diff --git a/public/audio/se/battle_anims/Saint7.m4a b/public/audio/battle_anims/Saint7.m4a similarity index 100% rename from public/audio/se/battle_anims/Saint7.m4a rename to public/audio/battle_anims/Saint7.m4a diff --git a/public/audio/se/battle_anims/Saint8.m4a b/public/audio/battle_anims/Saint8.m4a similarity index 100% rename from public/audio/se/battle_anims/Saint8.m4a rename to public/audio/battle_anims/Saint8.m4a diff --git a/public/audio/se/battle_anims/Saint9.m4a b/public/audio/battle_anims/Saint9.m4a similarity index 100% rename from public/audio/se/battle_anims/Saint9.m4a rename to public/audio/battle_anims/Saint9.m4a diff --git a/public/audio/se/battle_anims/Sand.m4a b/public/audio/battle_anims/Sand.m4a similarity index 100% rename from public/audio/se/battle_anims/Sand.m4a rename to public/audio/battle_anims/Sand.m4a diff --git a/public/audio/se/battle_anims/Scary Face.mp3 b/public/audio/battle_anims/Scary Face.mp3 similarity index 100% rename from public/audio/se/battle_anims/Scary Face.mp3 rename to public/audio/battle_anims/Scary Face.mp3 diff --git a/public/audio/se/battle_anims/Select.WAV b/public/audio/battle_anims/Select.WAV similarity index 100% rename from public/audio/se/battle_anims/Select.WAV rename to public/audio/battle_anims/Select.WAV diff --git a/public/audio/se/battle_anims/Shell Smash.mp3 b/public/audio/battle_anims/Shell Smash.mp3 similarity index 100% rename from public/audio/se/battle_anims/Shell Smash.mp3 rename to public/audio/battle_anims/Shell Smash.mp3 diff --git a/public/audio/se/battle_anims/Shiny sparkle.m4a b/public/audio/battle_anims/Shiny sparkle.m4a similarity index 100% rename from public/audio/se/battle_anims/Shiny sparkle.m4a rename to public/audio/battle_anims/Shiny sparkle.m4a diff --git a/public/audio/se/battle_anims/Sing.m4a b/public/audio/battle_anims/Sing.m4a similarity index 100% rename from public/audio/se/battle_anims/Sing.m4a rename to public/audio/battle_anims/Sing.m4a diff --git a/public/audio/se/battle_anims/Slam.mp3 b/public/audio/battle_anims/Slam.mp3 similarity index 100% rename from public/audio/se/battle_anims/Slam.mp3 rename to public/audio/battle_anims/Slam.mp3 diff --git a/public/audio/se/battle_anims/Slash.mp3 b/public/audio/battle_anims/Slash.mp3 similarity index 100% rename from public/audio/se/battle_anims/Slash.mp3 rename to public/audio/battle_anims/Slash.mp3 diff --git a/public/audio/se/battle_anims/Slash1.m4a b/public/audio/battle_anims/Slash1.m4a similarity index 100% rename from public/audio/se/battle_anims/Slash1.m4a rename to public/audio/battle_anims/Slash1.m4a diff --git a/public/audio/se/battle_anims/Slash10.m4a b/public/audio/battle_anims/Slash10.m4a similarity index 100% rename from public/audio/se/battle_anims/Slash10.m4a rename to public/audio/battle_anims/Slash10.m4a diff --git a/public/audio/se/battle_anims/Slash11.m4a b/public/audio/battle_anims/Slash11.m4a similarity index 100% rename from public/audio/se/battle_anims/Slash11.m4a rename to public/audio/battle_anims/Slash11.m4a diff --git a/public/audio/se/battle_anims/Slash2.m4a b/public/audio/battle_anims/Slash2.m4a similarity index 100% rename from public/audio/se/battle_anims/Slash2.m4a rename to public/audio/battle_anims/Slash2.m4a diff --git a/public/audio/se/battle_anims/Slash3.m4a b/public/audio/battle_anims/Slash3.m4a similarity index 100% rename from public/audio/se/battle_anims/Slash3.m4a rename to public/audio/battle_anims/Slash3.m4a diff --git a/public/audio/se/battle_anims/Slash6.m4a b/public/audio/battle_anims/Slash6.m4a similarity index 100% rename from public/audio/se/battle_anims/Slash6.m4a rename to public/audio/battle_anims/Slash6.m4a diff --git a/public/audio/se/battle_anims/Slash8.m4a b/public/audio/battle_anims/Slash8.m4a similarity index 100% rename from public/audio/se/battle_anims/Slash8.m4a rename to public/audio/battle_anims/Slash8.m4a diff --git a/public/audio/se/battle_anims/Slash9.m4a b/public/audio/battle_anims/Slash9.m4a similarity index 100% rename from public/audio/se/battle_anims/Slash9.m4a rename to public/audio/battle_anims/Slash9.m4a diff --git a/public/audio/se/battle_anims/Sleep.m4a b/public/audio/battle_anims/Sleep.m4a similarity index 100% rename from public/audio/se/battle_anims/Sleep.m4a rename to public/audio/battle_anims/Sleep.m4a diff --git a/public/audio/se/battle_anims/Smokescreen.mp3 b/public/audio/battle_anims/Smokescreen.mp3 similarity index 100% rename from public/audio/se/battle_anims/Smokescreen.mp3 rename to public/audio/battle_anims/Smokescreen.mp3 diff --git a/public/audio/se/battle_anims/Snore.mp3 b/public/audio/battle_anims/Snore.mp3 similarity index 100% rename from public/audio/se/battle_anims/Snore.mp3 rename to public/audio/battle_anims/Snore.mp3 diff --git a/public/audio/se/battle_anims/Sound2.m4a b/public/audio/battle_anims/Sound2.m4a similarity index 100% rename from public/audio/se/battle_anims/Sound2.m4a rename to public/audio/battle_anims/Sound2.m4a diff --git a/public/audio/se/battle_anims/Stare.m4a b/public/audio/battle_anims/Stare.m4a similarity index 100% rename from public/audio/se/battle_anims/Stare.m4a rename to public/audio/battle_anims/Stare.m4a diff --git a/public/audio/se/battle_anims/Stone Axe 1.m4a b/public/audio/battle_anims/Stone Axe 1.m4a similarity index 100% rename from public/audio/se/battle_anims/Stone Axe 1.m4a rename to public/audio/battle_anims/Stone Axe 1.m4a diff --git a/public/audio/se/battle_anims/Stone Axe 2.wav b/public/audio/battle_anims/Stone Axe 2.wav similarity index 100% rename from public/audio/se/battle_anims/Stone Axe 2.wav rename to public/audio/battle_anims/Stone Axe 2.wav diff --git a/public/audio/se/battle_anims/Substitute.mp3 b/public/audio/battle_anims/Substitute.mp3 similarity index 100% rename from public/audio/se/battle_anims/Substitute.mp3 rename to public/audio/battle_anims/Substitute.mp3 diff --git a/public/audio/se/battle_anims/Super Fang.mp3 b/public/audio/battle_anims/Super Fang.mp3 similarity index 100% rename from public/audio/se/battle_anims/Super Fang.mp3 rename to public/audio/battle_anims/Super Fang.mp3 diff --git a/public/audio/se/battle_anims/Swagger.mp3 b/public/audio/battle_anims/Swagger.mp3 similarity index 100% rename from public/audio/se/battle_anims/Swagger.mp3 rename to public/audio/battle_anims/Swagger.mp3 diff --git a/public/audio/se/battle_anims/Sweet Scent.m4a b/public/audio/battle_anims/Sweet Scent.m4a similarity index 100% rename from public/audio/se/battle_anims/Sweet Scent.m4a rename to public/audio/battle_anims/Sweet Scent.m4a diff --git a/public/audio/se/battle_anims/Sword1.m4a b/public/audio/battle_anims/Sword1.m4a similarity index 100% rename from public/audio/se/battle_anims/Sword1.m4a rename to public/audio/battle_anims/Sword1.m4a diff --git a/public/audio/se/battle_anims/Sword2.m4a b/public/audio/battle_anims/Sword2.m4a similarity index 100% rename from public/audio/se/battle_anims/Sword2.m4a rename to public/audio/battle_anims/Sword2.m4a diff --git a/public/audio/se/battle_anims/Swords Dance.mp3 b/public/audio/battle_anims/Swords Dance.mp3 similarity index 100% rename from public/audio/se/battle_anims/Swords Dance.mp3 rename to public/audio/battle_anims/Swords Dance.mp3 diff --git a/public/audio/se/battle_anims/Take Down.mp3 b/public/audio/battle_anims/Take Down.mp3 similarity index 100% rename from public/audio/se/battle_anims/Take Down.mp3 rename to public/audio/battle_anims/Take Down.mp3 diff --git a/public/audio/se/battle_anims/Teleport.m4a b/public/audio/battle_anims/Teleport.m4a similarity index 100% rename from public/audio/se/battle_anims/Teleport.m4a rename to public/audio/battle_anims/Teleport.m4a diff --git a/public/audio/se/battle_anims/Thunder1.m4a b/public/audio/battle_anims/Thunder1.m4a similarity index 100% rename from public/audio/se/battle_anims/Thunder1.m4a rename to public/audio/battle_anims/Thunder1.m4a diff --git a/public/audio/se/battle_anims/Thunder3.m4a b/public/audio/battle_anims/Thunder3.m4a similarity index 100% rename from public/audio/se/battle_anims/Thunder3.m4a rename to public/audio/battle_anims/Thunder3.m4a diff --git a/public/audio/se/battle_anims/Thunder4.m4a b/public/audio/battle_anims/Thunder4.m4a similarity index 100% rename from public/audio/se/battle_anims/Thunder4.m4a rename to public/audio/battle_anims/Thunder4.m4a diff --git a/public/audio/se/battle_anims/Thunder9.m4a b/public/audio/battle_anims/Thunder9.m4a similarity index 100% rename from public/audio/se/battle_anims/Thunder9.m4a rename to public/audio/battle_anims/Thunder9.m4a diff --git a/public/audio/se/battle_anims/Trump Card.mp3 b/public/audio/battle_anims/Trump Card.mp3 similarity index 100% rename from public/audio/se/battle_anims/Trump Card.mp3 rename to public/audio/battle_anims/Trump Card.mp3 diff --git a/public/audio/se/battle_anims/Twine.m4a b/public/audio/battle_anims/Twine.m4a similarity index 100% rename from public/audio/se/battle_anims/Twine.m4a rename to public/audio/battle_anims/Twine.m4a diff --git a/public/audio/se/battle_anims/Up.m4a b/public/audio/battle_anims/Up.m4a similarity index 100% rename from public/audio/se/battle_anims/Up.m4a rename to public/audio/battle_anims/Up.m4a diff --git a/public/audio/se/battle_anims/Uproar.mp3 b/public/audio/battle_anims/Uproar.mp3 similarity index 100% rename from public/audio/se/battle_anims/Uproar.mp3 rename to public/audio/battle_anims/Uproar.mp3 diff --git a/public/audio/se/battle_anims/Vice Grip.mp3 b/public/audio/battle_anims/Vice Grip.mp3 similarity index 100% rename from public/audio/se/battle_anims/Vice Grip.mp3 rename to public/audio/battle_anims/Vice Grip.mp3 diff --git a/public/audio/se/battle_anims/Voltorb Flip Explosion.mp3 b/public/audio/battle_anims/Voltorb Flip Explosion.mp3 similarity index 100% rename from public/audio/se/battle_anims/Voltorb Flip Explosion.mp3 rename to public/audio/battle_anims/Voltorb Flip Explosion.mp3 diff --git a/public/audio/se/battle_anims/Voltorb Flip Mark.wav b/public/audio/battle_anims/Voltorb Flip Mark.wav similarity index 100% rename from public/audio/se/battle_anims/Voltorb Flip Mark.wav rename to public/audio/battle_anims/Voltorb Flip Mark.wav diff --git a/public/audio/se/battle_anims/Water1.m4a b/public/audio/battle_anims/Water1.m4a similarity index 100% rename from public/audio/se/battle_anims/Water1.m4a rename to public/audio/battle_anims/Water1.m4a diff --git a/public/audio/se/battle_anims/Water2.m4a b/public/audio/battle_anims/Water2.m4a similarity index 100% rename from public/audio/se/battle_anims/Water2.m4a rename to public/audio/battle_anims/Water2.m4a diff --git a/public/audio/se/battle_anims/Water3.m4a b/public/audio/battle_anims/Water3.m4a similarity index 100% rename from public/audio/se/battle_anims/Water3.m4a rename to public/audio/battle_anims/Water3.m4a diff --git a/public/audio/se/battle_anims/Water5.m4a b/public/audio/battle_anims/Water5.m4a similarity index 100% rename from public/audio/se/battle_anims/Water5.m4a rename to public/audio/battle_anims/Water5.m4a diff --git a/public/audio/se/battle_anims/Weatherball.mp3 b/public/audio/battle_anims/Weatherball.mp3 similarity index 100% rename from public/audio/se/battle_anims/Weatherball.mp3 rename to public/audio/battle_anims/Weatherball.mp3 diff --git a/public/audio/se/battle_anims/Whirlwind.mp3 b/public/audio/battle_anims/Whirlwind.mp3 similarity index 100% rename from public/audio/se/battle_anims/Whirlwind.mp3 rename to public/audio/battle_anims/Whirlwind.mp3 diff --git a/public/audio/se/battle_anims/Wind1.m4a b/public/audio/battle_anims/Wind1.m4a similarity index 100% rename from public/audio/se/battle_anims/Wind1.m4a rename to public/audio/battle_anims/Wind1.m4a diff --git a/public/audio/se/battle_anims/Wind5.m4a b/public/audio/battle_anims/Wind5.m4a similarity index 100% rename from public/audio/se/battle_anims/Wind5.m4a rename to public/audio/battle_anims/Wind5.m4a diff --git a/public/audio/se/battle_anims/Wind7.m4a b/public/audio/battle_anims/Wind7.m4a similarity index 100% rename from public/audio/se/battle_anims/Wind7.m4a rename to public/audio/battle_anims/Wind7.m4a diff --git a/public/audio/se/battle_anims/Wind8.m4a b/public/audio/battle_anims/Wind8.m4a similarity index 100% rename from public/audio/se/battle_anims/Wind8.m4a rename to public/audio/battle_anims/Wind8.m4a diff --git a/public/audio/se/battle_anims/Work Up.mp3 b/public/audio/battle_anims/Work Up.mp3 similarity index 100% rename from public/audio/se/battle_anims/Work Up.mp3 rename to public/audio/battle_anims/Work Up.mp3 diff --git a/public/audio/se/battle_anims/Wring Out.mp3 b/public/audio/battle_anims/Wring Out.mp3 similarity index 100% rename from public/audio/se/battle_anims/Wring Out.mp3 rename to public/audio/battle_anims/Wring Out.mp3 diff --git a/public/audio/se/battle_anims/Yawn.mp3 b/public/audio/battle_anims/Yawn.mp3 similarity index 100% rename from public/audio/se/battle_anims/Yawn.mp3 rename to public/audio/battle_anims/Yawn.mp3 diff --git a/public/audio/se/battle_anims/buzzer.wav b/public/audio/battle_anims/buzzer.wav similarity index 100% rename from public/audio/se/battle_anims/buzzer.wav rename to public/audio/battle_anims/buzzer.wav diff --git a/public/audio/se/battle_anims/decrease.m4a b/public/audio/battle_anims/decrease.m4a similarity index 100% rename from public/audio/se/battle_anims/decrease.m4a rename to public/audio/battle_anims/decrease.m4a diff --git a/public/audio/se/battle_anims/fog2.mp3 b/public/audio/battle_anims/fog2.mp3 similarity index 100% rename from public/audio/se/battle_anims/fog2.mp3 rename to public/audio/battle_anims/fog2.mp3 diff --git a/public/audio/se/battle_anims/gust.mp3 b/public/audio/battle_anims/gust.mp3 similarity index 100% rename from public/audio/se/battle_anims/gust.mp3 rename to public/audio/battle_anims/gust.mp3 diff --git a/public/audio/se/battle_anims/hit.wav b/public/audio/battle_anims/hit.wav similarity index 100% rename from public/audio/se/battle_anims/hit.wav rename to public/audio/battle_anims/hit.wav diff --git a/public/audio/se/battle_anims/increase.m4a b/public/audio/battle_anims/increase.m4a similarity index 100% rename from public/audio/se/battle_anims/increase.m4a rename to public/audio/battle_anims/increase.m4a diff --git a/public/audio/se/battle_anims/infatuated.mp3 b/public/audio/battle_anims/infatuated.mp3 similarity index 100% rename from public/audio/se/battle_anims/infatuated.mp3 rename to public/audio/battle_anims/infatuated.mp3 diff --git a/public/audio/se/battle_anims/metal.m4a b/public/audio/battle_anims/metal.m4a similarity index 100% rename from public/audio/se/battle_anims/metal.m4a rename to public/audio/battle_anims/metal.m4a diff --git a/public/audio/se/battle_anims/normaldamage.m4a b/public/audio/battle_anims/normaldamage.m4a similarity index 100% rename from public/audio/se/battle_anims/normaldamage.m4a rename to public/audio/battle_anims/normaldamage.m4a diff --git a/public/audio/se/battle_anims/punch5.wav b/public/audio/battle_anims/punch5.wav similarity index 100% rename from public/audio/se/battle_anims/punch5.wav rename to public/audio/battle_anims/punch5.wav diff --git a/public/audio/se/battle_anims/superdamage.m4a b/public/audio/battle_anims/superdamage.m4a similarity index 100% rename from public/audio/se/battle_anims/superdamage.m4a rename to public/audio/battle_anims/superdamage.m4a diff --git a/public/audio/se/battle_anims/throw.m4a b/public/audio/battle_anims/throw.m4a similarity index 100% rename from public/audio/se/battle_anims/throw.m4a rename to public/audio/battle_anims/throw.m4a diff --git a/public/audio/bgm/battle_aether_boss.mp3 b/public/audio/bgm/battle_aether_boss.mp3 new file mode 100644 index 00000000000..7b776976777 Binary files /dev/null and b/public/audio/bgm/battle_aether_boss.mp3 differ diff --git a/public/audio/bgm/battle_aether_grunt.mp3 b/public/audio/bgm/battle_aether_grunt.mp3 new file mode 100644 index 00000000000..ede518c8c3f Binary files /dev/null and b/public/audio/bgm/battle_aether_grunt.mp3 differ diff --git a/public/audio/bgm/battle_galactic_admin.mp3 b/public/audio/bgm/battle_galactic_admin.mp3 new file mode 100644 index 00000000000..69b6ea918dd Binary files /dev/null and b/public/audio/bgm/battle_galactic_admin.mp3 differ diff --git a/public/audio/bgm/battle_legendary_origin_forme.mp3 b/public/audio/bgm/battle_legendary_origin_forme.mp3 new file mode 100644 index 00000000000..830eeff2f84 Binary files /dev/null and b/public/audio/bgm/battle_legendary_origin_forme.mp3 differ diff --git a/public/audio/bgm/battle_legendary_riders.mp3 b/public/audio/bgm/battle_legendary_riders.mp3 new file mode 100644 index 00000000000..8e9e5f47312 Binary files /dev/null and b/public/audio/bgm/battle_legendary_riders.mp3 differ diff --git a/public/audio/bgm/battle_macro_boss.mp3 b/public/audio/bgm/battle_macro_boss.mp3 new file mode 100644 index 00000000000..b72d5238b4d Binary files /dev/null and b/public/audio/bgm/battle_macro_boss.mp3 differ diff --git a/public/audio/bgm/battle_macro_grunt.mp3 b/public/audio/bgm/battle_macro_grunt.mp3 new file mode 100644 index 00000000000..8a80bfb553b Binary files /dev/null and b/public/audio/bgm/battle_macro_grunt.mp3 differ diff --git a/public/audio/bgm/battle_oleana.mp3 b/public/audio/bgm/battle_oleana.mp3 new file mode 100644 index 00000000000..b75bdcb337e Binary files /dev/null and b/public/audio/bgm/battle_oleana.mp3 differ diff --git a/public/audio/bgm/battle_skull_admin.mp3 b/public/audio/bgm/battle_skull_admin.mp3 new file mode 100644 index 00000000000..a6ac5cf1bf7 Binary files /dev/null and b/public/audio/bgm/battle_skull_admin.mp3 differ diff --git a/public/audio/bgm/battle_skull_boss.mp3 b/public/audio/bgm/battle_skull_boss.mp3 new file mode 100644 index 00000000000..2fde7a5524a Binary files /dev/null and b/public/audio/bgm/battle_skull_boss.mp3 differ diff --git a/public/audio/bgm/battle_skull_grunt.mp3 b/public/audio/bgm/battle_skull_grunt.mp3 new file mode 100644 index 00000000000..b6f575fc2ad Binary files /dev/null and b/public/audio/bgm/battle_skull_grunt.mp3 differ diff --git a/public/audio/se/error.wav b/public/audio/ui/error.wav similarity index 100% rename from public/audio/se/error.wav rename to public/audio/ui/error.wav diff --git a/public/audio/se/menu_open.wav b/public/audio/ui/menu_open.wav similarity index 100% rename from public/audio/se/menu_open.wav rename to public/audio/ui/menu_open.wav diff --git a/public/audio/se/select.wav b/public/audio/ui/select.wav similarity index 100% rename from public/audio/se/select.wav rename to public/audio/ui/select.wav diff --git a/public/battle-anims/baddy-bad.json b/public/battle-anims/baddy-bad.json new file mode 100644 index 00000000000..0cf840ff8b9 --- /dev/null +++ b/public/battle-anims/baddy-bad.json @@ -0,0 +1,2186 @@ +{ + "id": 822, + "graphic": "GEN8- Fiery", + "frames": [ + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 3, + "y": -18.5, + "zoomX": 180, + "zoomY": 180, + "visible": true, + "target": 2, + "graphicFrame": 0, + "opacity": 120, + "priority": 1, + "focus": 2 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 3, + "y": -18.5, + "zoomX": 180, + "zoomY": 180, + "visible": true, + "target": 2, + "graphicFrame": 1, + "opacity": 120, + "priority": 1, + "focus": 2 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 3, + "y": -18.5, + "zoomX": 180, + "zoomY": 180, + "visible": true, + "target": 2, + "graphicFrame": 1, + "opacity": 120, + "priority": 1, + "focus": 2 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 3, + "y": -19, + "zoomX": 180, + "zoomY": 180, + "visible": true, + "target": 2, + "graphicFrame": 2, + "opacity": 120, + "priority": 1, + "focus": 2 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 3, + "y": -19, + "zoomX": 180, + "zoomY": 180, + "visible": true, + "target": 2, + "graphicFrame": 2, + "opacity": 120, + "priority": 1, + "focus": 2 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 3, + "y": -19, + "zoomX": 180, + "zoomY": 180, + "visible": true, + "target": 2, + "graphicFrame": 3, + "opacity": 120, + "priority": 1, + "focus": 2 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 3, + "y": -19, + "zoomX": 180, + "zoomY": 180, + "visible": true, + "target": 2, + "graphicFrame": 3, + "opacity": 120, + "priority": 1, + "focus": 2 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 3, + "y": -19, + "zoomX": 180, + "zoomY": 180, + "visible": true, + "target": 2, + "graphicFrame": 4, + "opacity": 120, + "priority": 1, + "focus": 2 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 3, + "y": -19, + "zoomX": 181, + "zoomY": 180, + "visible": true, + "target": 2, + "graphicFrame": 4, + "opacity": 120, + "priority": 1, + "focus": 2 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 3, + "y": -19, + "zoomX": 180, + "zoomY": 180, + "visible": true, + "target": 2, + "graphicFrame": 5, + "opacity": 120, + "priority": 1, + "focus": 2 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 3, + "y": -19, + "zoomX": 180, + "zoomY": 180, + "visible": true, + "target": 2, + "graphicFrame": 5, + "opacity": 120, + "priority": 1, + "focus": 2 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 3, + "y": -19, + "zoomX": 180, + "zoomY": 180, + "visible": true, + "target": 2, + "graphicFrame": 6, + "opacity": 120, + "priority": 1, + "focus": 2 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 3, + "y": -19, + "zoomX": 180, + "zoomY": 180, + "visible": true, + "target": 2, + "graphicFrame": 6, + "opacity": 120, + "priority": 1, + "focus": 2 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 3, + "y": -19, + "zoomX": 180, + "zoomY": 180, + "visible": true, + "target": 2, + "graphicFrame": 7, + "opacity": 120, + "priority": 1, + "focus": 2 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 3, + "y": -19, + "zoomX": 180, + "zoomY": 180, + "visible": true, + "target": 2, + "graphicFrame": 7, + "opacity": 120, + "priority": 1, + "focus": 2 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 3, + "y": -19, + "zoomX": 180, + "zoomY": 180, + "visible": true, + "target": 2, + "graphicFrame": 8, + "opacity": 120, + "priority": 1, + "focus": 2 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 3, + "y": -19, + "zoomX": 180, + "zoomY": 180, + "visible": true, + "target": 2, + "graphicFrame": 8, + "opacity": 120, + "priority": 1, + "focus": 2 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 3, + "y": -19, + "zoomX": 180, + "zoomY": 180, + "visible": true, + "target": 2, + "graphicFrame": 9, + "opacity": 120, + "priority": 1, + "focus": 2 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 15, + "opacity": 255, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 17, + "opacity": 255, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 128, + "y": -64.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 17, + "opacity": 255, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 18, + "opacity": 255, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 19, + "opacity": 255, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 20, + "opacity": 255, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 21, + "opacity": 255, + "priority": 1, + "focus": 1 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 8, + "opacity": 200, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 22, + "opacity": 255, + "priority": 1, + "focus": 1 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 7, + "opacity": 200, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 23, + "opacity": 255, + "priority": 1, + "focus": 1 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 6, + "opacity": 200, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 24, + "opacity": 255, + "priority": 1, + "focus": 1 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 5, + "opacity": 200, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 24, + "opacity": 255, + "priority": 1, + "focus": 1 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 4, + "opacity": 200, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 25, + "opacity": 255, + "priority": 1, + "focus": 1 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 3, + "opacity": 200, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 128, + "y": -63.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 26, + "opacity": 255, + "priority": 1, + "focus": 1 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 2, + "opacity": 200, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 27, + "opacity": 255, + "priority": 1, + "focus": 1 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 1, + "opacity": 200, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 28, + "opacity": 255, + "priority": 1, + "focus": 1 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 0, + "opacity": 200, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 29, + "opacity": 255, + "priority": 1, + "focus": 1 + }, + { + "x": 129, + "y": -65, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 0, + "opacity": 255, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 30, + "opacity": 255, + "priority": 1, + "focus": 1 + }, + { + "x": 129.5, + "y": -65.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 1, + "opacity": 255, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 30, + "opacity": 255, + "priority": 1, + "focus": 1 + }, + { + "x": 130, + "y": -66, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 2, + "opacity": 255, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 31, + "opacity": 255, + "priority": 1, + "focus": 1 + }, + { + "x": 130, + "y": -67, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 3, + "opacity": 255, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 32, + "opacity": 255, + "priority": 1, + "focus": 1 + }, + { + "x": 130, + "y": -66, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 4, + "opacity": 255, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 33, + "opacity": 255, + "priority": 1, + "focus": 1 + }, + { + "x": 130, + "y": -66, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 5, + "opacity": 255, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 34, + "opacity": 255, + "priority": 1, + "focus": 1 + }, + { + "x": 130, + "y": -66, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 6, + "opacity": 255, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 35, + "opacity": 255, + "priority": 1, + "focus": 1 + }, + { + "x": 130, + "y": -66, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 7, + "opacity": 255, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 36, + "opacity": 255, + "priority": 1, + "focus": 1 + }, + { + "x": 130, + "y": -66, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 8, + "opacity": 255, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 128, + "y": -64.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 37, + "opacity": 255, + "priority": 1, + "focus": 1 + }, + { + "x": 130, + "y": -66, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 9, + "opacity": 255, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 128, + "y": -64.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 38, + "opacity": 255, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 39, + "opacity": 255, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + } + ] + ], + "frameTimedEvents": { + "0": [ + { + "frameIndex": 0, + "resourceName": "GEN8- Fiery_bg", + "bgX": 0, + "bgY": 0, + "opacity": 255, + "duration": 5, + "eventType": "AnimTimedAddBgEvent" + }, + { + "frameIndex": 0, + "resourceName": "PRSFX- Dark Pulse1.wav", + "volume": 80, + "pitch": 100, + "eventType": "AnimTimedSoundEvent" + } + ], + "21": [ + { + "frameIndex": 21, + "resourceName": "PRSFX- Fire Pledge.wav", + "volume": 80, + "pitch": 100, + "eventType": "AnimTimedSoundEvent" + } + ], + "35": [ + { + "frameIndex": 35, + "resourceName": "PRSFX- Fire Pledge.wav", + "volume": 80, + "pitch": 100, + "eventType": "AnimTimedSoundEvent" + } + ] + }, + "position": 1, + "hue": 0 +} \ No newline at end of file diff --git a/public/battle-anims/blazing-torque.json b/public/battle-anims/blazing-torque.json new file mode 100644 index 00000000000..354aa5f1a8c --- /dev/null +++ b/public/battle-anims/blazing-torque.json @@ -0,0 +1,2109 @@ +{ + "id": 394, + "graphic": "PRAS- Fire", + "frames": [ + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + 28, + 0, + 0, + 0 + ], + "locked": true, + "priority": 1, + "focus": 3 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 3 + }, + { + "x": 0, + "y": 0, + "zoomX": 108, + "zoomY": 108, + "visible": true, + "target": 2, + "graphicFrame": 6, + "opacity": 255, + "priority": 1, + "focus": 3 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + 56, + 0, + 0, + 0 + ], + "locked": true, + "priority": 1, + "focus": 3 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 3 + }, + { + "x": 0, + "y": 0, + "zoomX": 117, + "zoomY": 117, + "visible": true, + "target": 2, + "graphicFrame": 7, + "opacity": 255, + "priority": 1, + "focus": 3 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + 85, + 0, + 0, + 0 + ], + "locked": true, + "priority": 1, + "focus": 3 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 3 + }, + { + "x": 0, + "y": 0, + "zoomX": 126, + "zoomY": 126, + "visible": true, + "target": 2, + "graphicFrame": 8, + "opacity": 255, + "priority": 1, + "focus": 3 + }, + { + "x": -20, + "y": -6.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 19, + "opacity": 140, + "priority": 1, + "focus": 3 + }, + { + "x": 0, + "y": 9.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 19, + "opacity": 140, + "priority": 1, + "focus": 3 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + 113, + 0, + 0, + 0 + ], + "locked": true, + "priority": 1, + "focus": 3 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 3 + }, + { + "x": 0, + "y": 0, + "zoomX": 135, + "zoomY": 135, + "visible": true, + "target": 2, + "graphicFrame": 9, + "opacity": 255, + "priority": 1, + "focus": 3 + }, + { + "x": -48, + "y": 2, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 20, + "opacity": 255, + "priority": 1, + "focus": 3 + }, + { + "x": -8, + "y": 24, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 20, + "opacity": 255, + "priority": 1, + "focus": 3 + }, + { + "x": -16, + "y": 4, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 19, + "opacity": 140, + "priority": 1, + "focus": 3 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + 141, + 0, + 0, + 0 + ], + "locked": true, + "priority": 1, + "focus": 3 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 3 + }, + { + "x": 0, + "y": 0, + "zoomX": 135, + "zoomY": 135, + "visible": true, + "target": 2, + "graphicFrame": 10, + "opacity": 255, + "priority": 1, + "focus": 3 + }, + { + "x": -64, + "y": 14, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 21, + "opacity": 255, + "priority": 1, + "focus": 3 + }, + { + "x": -20, + "y": 38.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 21, + "opacity": 255, + "priority": 1, + "focus": 3 + }, + { + "x": -32, + "y": 11, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 20, + "opacity": 255, + "priority": 1, + "focus": 3 + }, + { + "x": 8, + "y": 8, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 19, + "opacity": 140, + "priority": 1, + "focus": 3 + }, + { + "x": -16, + "y": -13, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 19, + "opacity": 140, + "priority": 1, + "focus": 3 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + 170, + 0, + 0, + 0 + ], + "locked": true, + "priority": 1, + "focus": 3 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 3 + }, + { + "x": 0, + "y": 0, + "zoomX": 135, + "zoomY": 135, + "visible": true, + "target": 2, + "graphicFrame": 11, + "opacity": 255, + "priority": 1, + "focus": 3 + }, + { + "x": -84, + "y": 19.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 22, + "opacity": 145, + "priority": 1, + "focus": 3 + }, + { + "x": -28, + "y": 54, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 22, + "opacity": 142, + "priority": 1, + "focus": 3 + }, + { + "x": -48, + "y": 23, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 21, + "opacity": 255, + "priority": 1, + "focus": 3 + }, + { + "x": 4, + "y": 27, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 20, + "opacity": 255, + "priority": 1, + "focus": 3 + }, + { + "x": -44, + "y": -9, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 20, + "opacity": 255, + "priority": 1, + "focus": 3 + }, + { + "x": -12, + "y": 2.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 19, + "opacity": 140, + "priority": 1, + "focus": 3 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + 198, + 0, + 0, + 0 + ], + "locked": true, + "priority": 1, + "focus": 3 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 3 + }, + { + "x": 0, + "y": 0, + "zoomX": 135, + "zoomY": 135, + "visible": true, + "target": 2, + "graphicFrame": 9, + "opacity": 255, + "priority": 1, + "focus": 3 + }, + { + "x": -64, + "y": 29.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 22, + "opacity": 135, + "priority": 1, + "focus": 3 + }, + { + "x": -4, + "y": 39, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 21, + "opacity": 255, + "priority": 1, + "focus": 3 + }, + { + "x": -68, + "y": -4, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 21, + "opacity": 255, + "priority": 1, + "focus": 3 + }, + { + "x": -32, + "y": 10.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 20, + "opacity": 255, + "priority": 1, + "focus": 3 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + 226, + 0, + 0, + 0 + ], + "locked": true, + "priority": 1, + "focus": 3 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 3 + }, + { + "x": 0, + "y": 0, + "zoomX": 135, + "zoomY": 135, + "visible": true, + "target": 2, + "graphicFrame": 10, + "opacity": 255, + "priority": 1, + "focus": 3 + }, + { + "x": -16, + "y": 53, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 22, + "opacity": 145, + "priority": 1, + "focus": 3 + }, + { + "x": -84, + "y": 2.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 22, + "opacity": 135, + "priority": 1, + "focus": 3 + }, + { + "x": -48, + "y": 22, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 21, + "opacity": 255, + "priority": 1, + "focus": 3 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + 255, + 0, + 0, + 0 + ], + "locked": true, + "priority": 1, + "focus": 3 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 3 + }, + { + "x": 0, + "y": 0, + "zoomX": 135, + "zoomY": 135, + "visible": true, + "target": 2, + "graphicFrame": 11, + "opacity": 255, + "priority": 1, + "focus": 3 + }, + { + "x": -64, + "y": 27.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 22, + "opacity": 145, + "priority": 1, + "focus": 3 + } + ], + [ + { + "x": 24.5, + "y": -12, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + 255, + 0, + 0, + 0 + ], + "locked": true, + "priority": 1, + "focus": 3 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 3 + }, + { + "x": 24.5, + "y": -12, + "zoomX": 135, + "zoomY": 135, + "visible": true, + "target": 2, + "graphicFrame": 9, + "opacity": 255, + "priority": 1, + "focus": 3 + } + ], + [ + { + "x": 49.5, + "y": -24, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + 255, + 0, + 0, + 0 + ], + "locked": true, + "priority": 1, + "focus": 3 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 3 + }, + { + "x": 49.5, + "y": -24, + "zoomX": 135, + "zoomY": 135, + "visible": true, + "target": 2, + "graphicFrame": 10, + "opacity": 255, + "priority": 1, + "focus": 3 + } + ], + [ + { + "x": 74, + "y": -36, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + 255, + 0, + 0, + 0 + ], + "locked": true, + "priority": 1, + "focus": 3 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 3 + }, + { + "x": 74, + "y": -36, + "zoomX": 135, + "zoomY": 135, + "visible": true, + "target": 2, + "graphicFrame": 11, + "opacity": 255, + "priority": 1, + "focus": 3 + } + ], + [ + { + "x": 99, + "y": -48, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + 255, + 0, + 0, + 0 + ], + "locked": true, + "priority": 1, + "focus": 3 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 3 + }, + { + "x": 99, + "y": -48, + "zoomX": 135, + "zoomY": 135, + "visible": true, + "target": 2, + "graphicFrame": 9, + "opacity": 255, + "priority": 1, + "focus": 3 + } + ], + [ + { + "x": 124, + "y": -60, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + 255, + 0, + 0, + 0 + ], + "priority": 1, + "focus": 3 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 3 + }, + { + "x": 124, + "y": -60, + "zoomX": 135, + "zoomY": 135, + "visible": true, + "target": 2, + "graphicFrame": 10, + "opacity": 255, + "priority": 1, + "focus": 3 + } + ], + [ + { + "x": 124, + "y": -60, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + 255, + 0, + 0, + 0 + ], + "priority": 1, + "focus": 3 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + 51, + 0, + 0, + 0 + ], + "locked": true, + "priority": 1, + "focus": 3 + }, + { + "x": 124, + "y": -60, + "zoomX": 135, + "zoomY": 135, + "visible": true, + "target": 2, + "graphicFrame": 11, + "opacity": 255, + "priority": 1, + "focus": 3 + }, + { + "x": 124, + "y": -59, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 66, + "opacity": 130, + "priority": 1, + "focus": 3 + } + ], + [ + { + "x": 112, + "y": -68, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + 255, + 0, + 0, + 0 + ], + "priority": 1, + "focus": 3 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + 102, + 0, + 0, + 0 + ], + "locked": true, + "priority": 1, + "focus": 3 + }, + { + "x": 128, + "y": -62.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 66, + "opacity": 255, + "priority": 1, + "focus": 3 + }, + { + "x": 132, + "y": -53, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 66, + "opacity": 145, + "priority": 1, + "focus": 3 + }, + { + "x": 116, + "y": -65.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 66, + "opacity": 145, + "priority": 1, + "focus": 3 + }, + { + "x": 128, + "y": -50, + "zoomX": 120, + "zoomY": 120, + "visible": true, + "target": 2, + "graphicFrame": 24, + "opacity": 100, + "priority": 1, + "focus": 3 + }, + { + "x": 124, + "y": -58.5, + "zoomX": 135, + "zoomY": 135, + "visible": true, + "target": 2, + "graphicFrame": 11, + "opacity": 145, + "priority": 1, + "focus": 3 + } + ], + [ + { + "x": 100, + "y": -72, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + 255, + 0, + 0, + 0 + ], + "priority": 1, + "focus": 3 + }, + { + "x": 136, + "y": -60, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + 153, + 0, + 0, + 0 + ], + "priority": 1, + "focus": 3 + }, + { + "x": 140, + "y": -69.5, + "zoomX": 100, + "zoomY": 100, + "angle": 51, + "visible": true, + "target": 2, + "graphicFrame": 66, + "opacity": 255, + "priority": 1, + "focus": 3 + }, + { + "x": 144.5, + "y": -51.5, + "zoomX": 100, + "zoomY": 100, + "angle": 51, + "visible": true, + "target": 2, + "graphicFrame": 66, + "opacity": 255, + "priority": 1, + "focus": 3 + }, + { + "x": 121, + "y": -76, + "zoomX": 100, + "zoomY": 100, + "angle": 51, + "visible": true, + "target": 2, + "graphicFrame": 66, + "opacity": 255, + "priority": 1, + "focus": 3 + }, + { + "x": 140, + "y": -55, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 24, + "opacity": 160, + "priority": 3, + "focus": 3 + }, + { + "x": 124, + "y": -61.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 24, + "opacity": 160, + "priority": 3, + "focus": 3 + }, + { + "x": 148, + "y": -36, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 24, + "opacity": 160, + "priority": 3, + "focus": 3 + } + ], + [ + { + "x": 88, + "y": -68, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + 255, + 0, + 0, + 0 + ], + "priority": 1, + "focus": 3 + }, + { + "x": 144, + "y": -56, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + 204, + 0, + 0, + 0 + ], + "priority": 1, + "focus": 3 + }, + { + "x": 152, + "y": -76, + "zoomX": 100, + "zoomY": 100, + "angle": 102, + "visible": true, + "target": 2, + "graphicFrame": 66, + "opacity": 255, + "priority": 1, + "focus": 3 + }, + { + "x": 157, + "y": -50, + "zoomX": 100, + "zoomY": 100, + "angle": 102, + "visible": true, + "target": 2, + "graphicFrame": 66, + "opacity": 255, + "priority": 1, + "focus": 3 + }, + { + "x": 126, + "y": -86.5, + "zoomX": 100, + "zoomY": 100, + "angle": 102, + "visible": true, + "target": 2, + "graphicFrame": 66, + "opacity": 255, + "priority": 1, + "focus": 3 + }, + { + "x": 152, + "y": -60, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 24, + "opacity": 160, + "priority": 3, + "focus": 3 + }, + { + "x": 128, + "y": -71.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 24, + "opacity": 160, + "priority": 3, + "focus": 3 + }, + { + "x": 156, + "y": -36, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 24, + "opacity": 160, + "priority": 3, + "focus": 3 + } + ], + [ + { + "x": 76, + "y": -60, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + 255, + 0, + 0, + 0 + ], + "priority": 1, + "focus": 3 + }, + { + "x": 152, + "y": -52, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + 255, + 0, + 0, + 0 + ], + "priority": 1, + "focus": 3 + }, + { + "x": 164, + "y": -83, + "zoomX": 100, + "zoomY": 100, + "angle": 153, + "visible": true, + "target": 2, + "graphicFrame": 66, + "opacity": 255, + "priority": 1, + "focus": 3 + }, + { + "x": 169.5, + "y": -48.5, + "zoomX": 100, + "zoomY": 100, + "angle": 153, + "visible": true, + "target": 2, + "graphicFrame": 66, + "opacity": 255, + "priority": 1, + "focus": 3 + }, + { + "x": 131, + "y": -97, + "zoomX": 100, + "zoomY": 100, + "angle": 153, + "visible": true, + "target": 2, + "graphicFrame": 66, + "opacity": 255, + "priority": 1, + "focus": 3 + }, + { + "x": 164, + "y": -67.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 24, + "opacity": 160, + "priority": 3, + "focus": 3 + }, + { + "x": 132, + "y": -81.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 24, + "opacity": 160, + "priority": 3, + "focus": 3 + }, + { + "x": 172, + "y": -34.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 24, + "opacity": 160, + "priority": 3, + "focus": 3 + } + ], + [ + { + "x": 60, + "y": -56, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + 255, + 0, + 0, + 0 + ], + "priority": 1, + "focus": 3 + }, + { + "x": 160, + "y": -48, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + 255, + 0, + 0, + 0 + ], + "priority": 1, + "focus": 3 + }, + { + "x": 176, + "y": -89.5, + "zoomX": 100, + "zoomY": 100, + "angle": 205, + "visible": true, + "target": 2, + "graphicFrame": 66, + "opacity": 255, + "priority": 1, + "focus": 3 + }, + { + "x": 182, + "y": -47, + "zoomX": 100, + "zoomY": 100, + "angle": 205, + "visible": true, + "target": 2, + "graphicFrame": 66, + "opacity": 255, + "priority": 1, + "focus": 3 + }, + { + "x": 136.5, + "y": -107.5, + "zoomX": 100, + "zoomY": 100, + "angle": 205, + "visible": true, + "target": 2, + "graphicFrame": 66, + "opacity": 255, + "priority": 1, + "focus": 3 + }, + { + "x": 176, + "y": -73.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 24, + "opacity": 160, + "priority": 3, + "focus": 3 + }, + { + "x": 136, + "y": -94, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 24, + "opacity": 160, + "priority": 3, + "focus": 3 + }, + { + "x": 184, + "y": -31, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 24, + "opacity": 160, + "priority": 3, + "focus": 3 + } + ], + [ + { + "x": 48, + "y": -52, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + 255, + 0, + 0, + 0 + ], + "priority": 1, + "focus": 3 + }, + { + "x": 152, + "y": -52, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + 255, + 0, + 0, + 0 + ], + "priority": 1, + "focus": 3 + }, + { + "x": 188, + "y": -96.5, + "zoomX": 100, + "zoomY": 100, + "angle": 256, + "visible": true, + "target": 2, + "graphicFrame": 66, + "opacity": 255, + "priority": 1, + "focus": 3 + }, + { + "x": 194.5, + "y": -45.5, + "zoomX": 100, + "zoomY": 100, + "angle": 256, + "visible": true, + "target": 2, + "graphicFrame": 66, + "opacity": 255, + "priority": 1, + "focus": 3 + }, + { + "x": 141.5, + "y": -118, + "zoomX": 100, + "zoomY": 100, + "angle": 256, + "visible": true, + "target": 2, + "graphicFrame": 66, + "opacity": 255, + "priority": 1, + "focus": 3 + }, + { + "x": 188, + "y": -83, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 24, + "opacity": 160, + "priority": 3, + "focus": 3 + }, + { + "x": 144, + "y": -103.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 24, + "opacity": 160, + "priority": 3, + "focus": 3 + }, + { + "x": 196, + "y": -29.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 24, + "opacity": 160, + "priority": 3, + "focus": 3 + } + ], + [ + { + "x": 28, + "y": -48, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + 255, + 0, + 0, + 0 + ], + "priority": 1, + "focus": 3 + }, + { + "x": 144, + "y": -56, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + 255, + 0, + 0, + 0 + ], + "priority": 1, + "focus": 3 + }, + { + "x": 200, + "y": -103, + "zoomX": 100, + "zoomY": 100, + "angle": 307, + "visible": true, + "target": 2, + "graphicFrame": 66, + "opacity": 255, + "priority": 1, + "focus": 3 + }, + { + "x": 207, + "y": -44, + "zoomX": 100, + "zoomY": 100, + "angle": 307, + "visible": true, + "target": 2, + "graphicFrame": 66, + "opacity": 255, + "priority": 1, + "focus": 3 + }, + { + "x": 146.5, + "y": -128.5, + "zoomX": 100, + "zoomY": 100, + "angle": 307, + "visible": true, + "target": 2, + "graphicFrame": 66, + "opacity": 255, + "priority": 1, + "focus": 3 + }, + { + "x": 200, + "y": -87, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 24, + "opacity": 160, + "priority": 3, + "focus": 3 + }, + { + "x": 148, + "y": -113, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 24, + "opacity": 160, + "priority": 3, + "focus": 3 + }, + { + "x": 208, + "y": -27.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 24, + "opacity": 160, + "priority": 3, + "focus": 3 + } + ], + [ + { + "x": 16, + "y": -40, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + 255, + 0, + 0, + 0 + ], + "priority": 1, + "focus": 3 + }, + { + "x": 136, + "y": -60, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + 255, + 0, + 0, + 0 + ], + "priority": 1, + "focus": 3 + }, + { + "x": 212, + "y": -109.5, + "zoomX": 100, + "zoomY": 100, + "angle": 359, + "visible": true, + "target": 2, + "graphicFrame": 66, + "opacity": 75, + "priority": 1, + "focus": 3 + }, + { + "x": 220, + "y": -42, + "zoomX": 100, + "zoomY": 100, + "angle": 359, + "visible": true, + "target": 2, + "graphicFrame": 66, + "opacity": 120, + "priority": 1, + "focus": 3 + }, + { + "x": 152, + "y": -138.5, + "zoomX": 100, + "zoomY": 100, + "angle": 359, + "visible": true, + "target": 2, + "graphicFrame": 66, + "opacity": 120, + "priority": 1, + "focus": 3 + }, + { + "x": 212, + "y": -94, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 24, + "opacity": 78, + "priority": 3, + "focus": 3 + }, + { + "x": 152, + "y": -122.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 24, + "opacity": 78, + "priority": 3, + "focus": 3 + }, + { + "x": 220, + "y": -30, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 24, + "opacity": 78, + "priority": 3, + "focus": 3 + } + ], + [ + { + "x": 8, + "y": -28, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + 191, + 0, + 0, + 0 + ], + "priority": 1, + "focus": 3 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + 191, + 0, + 0, + 0 + ], + "priority": 1, + "focus": 3 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + 127, + 0, + 0, + 0 + ], + "priority": 1, + "focus": 3 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + 127, + 0, + 0, + 0 + ], + "priority": 1, + "focus": 3 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + 63, + 0, + 0, + 0 + ], + "priority": 1, + "focus": 3 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + 63, + 0, + 0, + 0 + ], + "priority": 1, + "focus": 3 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "priority": 1, + "focus": 3 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 3 + } + ] + ], + "frameTimedEvents": { + "0": [ + { + "frameIndex": 0, + "resourceName": "PRSFX- Flare Blitz1.wav", + "volume": 100, + "pitch": 75, + "eventType": "AnimTimedSoundEvent" + } + ], + "9": [ + { + "frameIndex": 9, + "resourceName": "PRAS- Outrage BG", + "bgX": 0, + "bgY": 0, + "opacity": 0, + "duration": 5, + "eventType": "AnimTimedAddBgEvent" + }, + { + "frameIndex": 9, + "resourceName": "", + "bgX": 0, + "bgY": 0, + "opacity": 255, + "duration": 5, + "eventType": "AnimTimedUpdateBgEvent" + } + ], + "13": [ + { + "frameIndex": 13, + "resourceName": "PRSFX- Flare Blitz3.wav", + "volume": 100, + "pitch": 80, + "eventType": "AnimTimedSoundEvent" + } + ], + "14": [ + { + "frameIndex": 14, + "resourceName": "PRSFX- Flare Blitz2.wav", + "volume": 100, + "pitch": 80, + "eventType": "AnimTimedSoundEvent" + } + ], + "16": [ + { + "frameIndex": 16, + "resourceName": "PRSFX- Flare Blitz3.wav", + "volume": 100, + "pitch": 100, + "eventType": "AnimTimedSoundEvent" + } + ], + "19": [ + { + "frameIndex": 19, + "resourceName": "", + "bgX": 0, + "bgY": 0, + "opacity": 0, + "duration": 5, + "eventType": "AnimTimedUpdateBgEvent" + }, + { + "frameIndex": 19, + "resourceName": "PRSFX- Flare Blitz3.wav", + "volume": 100, + "pitch": 120, + "eventType": "AnimTimedSoundEvent" + } + ] + }, + "position": 3, + "hue": 0 +} \ No newline at end of file diff --git a/public/battle-anims/bouncy-bubble.json b/public/battle-anims/bouncy-bubble.json new file mode 100644 index 00000000000..b1d931b62fa --- /dev/null +++ b/public/battle-anims/bouncy-bubble.json @@ -0,0 +1,3322 @@ +{ + "id": 61, + "graphic": "PRAS- Water", + "frames": [ + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 44.5, + "y": -19.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 28, + "opacity": 100, + "priority": 1, + "focus": 3 + }, + { + "x": 24, + "y": -12, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 28, + "opacity": 100, + "priority": 1, + "focus": 3 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 65.5, + "y": -30.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 28, + "opacity": 100, + "priority": 1, + "focus": 3 + }, + { + "x": 44, + "y": -21, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 28, + "opacity": 100, + "priority": 1, + "focus": 3 + }, + { + "x": 24, + "y": -4, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 28, + "opacity": 100, + "priority": 1, + "focus": 3 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 86, + "y": -42, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 28, + "opacity": 100, + "priority": 1, + "focus": 3 + }, + { + "x": 64, + "y": -34, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 28, + "opacity": 100, + "priority": 1, + "focus": 3 + }, + { + "x": 46, + "y": -19.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 28, + "opacity": 100, + "priority": 1, + "focus": 3 + }, + { + "x": 28, + "y": -8, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 28, + "opacity": 100, + "priority": 1, + "focus": 3 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 107, + "y": -53, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 28, + "opacity": 100, + "priority": 1, + "focus": 3 + }, + { + "x": 84, + "y": -46.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 28, + "opacity": 100, + "priority": 1, + "focus": 3 + }, + { + "x": 68.5, + "y": -30.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 28, + "opacity": 100, + "priority": 1, + "focus": 3 + }, + { + "x": 41.5, + "y": -18.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 28, + "opacity": 100, + "priority": 1, + "focus": 3 + }, + { + "x": 24, + "y": -8, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 28, + "opacity": 100, + "priority": 1, + "focus": 3 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 28, + "opacity": 100, + "priority": 1, + "focus": 3 + }, + { + "x": 104, + "y": -59.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 28, + "opacity": 100, + "priority": 1, + "focus": 3 + }, + { + "x": 91, + "y": -42, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 28, + "opacity": 100, + "priority": 1, + "focus": 3 + }, + { + "x": 59, + "y": -29, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 28, + "opacity": 100, + "priority": 1, + "focus": 3 + }, + { + "x": 45.5, + "y": -18, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 28, + "opacity": 100, + "priority": 1, + "focus": 3 + }, + { + "x": 22, + "y": -6, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 28, + "opacity": 100, + "priority": 1, + "focus": 3 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 20, + "y": -8, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 28, + "opacity": 100, + "priority": 1, + "focus": 3 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 29, + "opacity": 100, + "priority": 1, + "focus": 3 + }, + { + "x": 113.5, + "y": -53, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 28, + "opacity": 100, + "priority": 1, + "focus": 3 + }, + { + "x": 76.5, + "y": -39.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 28, + "opacity": 100, + "priority": 1, + "focus": 3 + }, + { + "x": 67, + "y": -27.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 28, + "opacity": 100, + "priority": 1, + "focus": 3 + }, + { + "x": 46.5, + "y": -22, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 28, + "opacity": 100, + "priority": 1, + "focus": 3 + }, + { + "x": 124, + "y": -72, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 28, + "opacity": 100, + "priority": 1, + "focus": 3 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 44.5, + "y": -19.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 28, + "opacity": 100, + "priority": 1, + "focus": 3 + }, + { + "x": 26, + "y": -10, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 28, + "opacity": 100, + "priority": 1, + "focus": 3 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 30, + "opacity": 100, + "priority": 1, + "focus": 3 + }, + { + "x": 94, + "y": -50, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 28, + "opacity": 100, + "priority": 1, + "focus": 3 + }, + { + "x": 88.5, + "y": -37, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 28, + "opacity": 100, + "priority": 1, + "focus": 3 + }, + { + "x": 70, + "y": -35.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 28, + "opacity": 100, + "priority": 1, + "focus": 3 + }, + { + "x": 124, + "y": -72, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 29, + "opacity": 100, + "priority": 1, + "focus": 3 + }, + { + "x": 136, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 28, + "opacity": 100, + "priority": 1, + "focus": 3 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 65.5, + "y": -30.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 28, + "opacity": 100, + "priority": 1, + "focus": 3 + }, + { + "x": 42, + "y": -19.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 28, + "opacity": 100, + "priority": 1, + "focus": 3 + }, + { + "x": 28, + "y": -8, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 28, + "opacity": 100, + "priority": 1, + "focus": 3 + }, + { + "x": 112, + "y": -60, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 28, + "opacity": 100, + "priority": 1, + "focus": 3 + }, + { + "x": 110, + "y": -46.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 28, + "opacity": 100, + "priority": 1, + "focus": 3 + }, + { + "x": 93.5, + "y": -49, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 28, + "opacity": 100, + "priority": 1, + "focus": 3 + }, + { + "x": 136, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 29, + "opacity": 100, + "priority": 1, + "focus": 3 + }, + { + "x": 124, + "y": -72, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 30, + "opacity": 100, + "priority": 1, + "focus": 3 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 126, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "priority": 1, + "focus": 1 + }, + { + "x": 86, + "y": -42, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 28, + "opacity": 100, + "priority": 1, + "focus": 3 + }, + { + "x": 60.5, + "y": -30.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 28, + "opacity": 100, + "priority": 1, + "focus": 3 + }, + { + "x": 47, + "y": -18.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 28, + "opacity": 100, + "priority": 1, + "focus": 3 + }, + { + "x": 24, + "y": -4, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 28, + "opacity": 100, + "priority": 1, + "focus": 3 + }, + { + "x": 136, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 30, + "opacity": 100, + "priority": 1, + "focus": 3 + }, + { + "x": 112, + "y": -60, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 29, + "opacity": 100, + "priority": 1, + "focus": 3 + }, + { + "x": 116.5, + "y": -62.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 28, + "opacity": 100, + "priority": 1, + "focus": 3 + }, + { + "x": 132, + "y": -56, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 28, + "opacity": 100, + "priority": 1, + "focus": 3 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 124, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "priority": 1, + "focus": 1 + }, + { + "x": 112, + "y": -60, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 30, + "opacity": 100, + "priority": 1, + "focus": 3 + }, + { + "x": 79, + "y": -42, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 28, + "opacity": 100, + "priority": 1, + "focus": 3 + }, + { + "x": 70, + "y": -29, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 28, + "opacity": 100, + "priority": 1, + "focus": 3 + }, + { + "x": 43.5, + "y": -22, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 28, + "opacity": 100, + "priority": 1, + "focus": 3 + }, + { + "x": 26, + "y": -5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 28, + "opacity": 100, + "priority": 1, + "focus": 3 + }, + { + "x": 140, + "y": -76, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 28, + "opacity": 100, + "priority": 1, + "focus": 3 + }, + { + "x": 132, + "y": -56, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 29, + "opacity": 100, + "priority": 1, + "focus": 3 + }, + { + "x": 107, + "y": -53, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 28, + "opacity": 100, + "priority": 1, + "focus": 3 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 122, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "priority": 1, + "focus": 1 + }, + { + "x": 132, + "y": -56, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 30, + "opacity": 100, + "priority": 1, + "focus": 3 + }, + { + "x": 97.5, + "y": -53, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 28, + "opacity": 100, + "priority": 1, + "focus": 3 + }, + { + "x": 93.5, + "y": -39.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 28, + "opacity": 100, + "priority": 1, + "focus": 3 + }, + { + "x": 63.5, + "y": -35.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 28, + "opacity": 100, + "priority": 1, + "focus": 3 + }, + { + "x": 44.5, + "y": -19.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 28, + "opacity": 100, + "priority": 1, + "focus": 3 + }, + { + "x": 24, + "y": -8, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 28, + "opacity": 100, + "priority": 1, + "focus": 3 + }, + { + "x": 140, + "y": -76, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 29, + "opacity": 100, + "priority": 1, + "focus": 3 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 28, + "opacity": 100, + "priority": 1, + "focus": 3 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 120, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "priority": 1, + "focus": 1 + }, + { + "x": 20, + "y": -8, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 28, + "opacity": 100, + "priority": 1, + "focus": 3 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 29, + "opacity": 100, + "priority": 1, + "focus": 3 + }, + { + "x": 116.5, + "y": -50, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 28, + "opacity": 100, + "priority": 1, + "focus": 3 + }, + { + "x": 83, + "y": -49, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 28, + "opacity": 100, + "priority": 1, + "focus": 3 + }, + { + "x": 65.5, + "y": -30.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 28, + "opacity": 100, + "priority": 1, + "focus": 3 + }, + { + "x": 44, + "y": -18, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 28, + "opacity": 100, + "priority": 1, + "focus": 3 + }, + { + "x": 116, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 28, + "opacity": 100, + "priority": 1, + "focus": 3 + }, + { + "x": 140, + "y": -76, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 30, + "opacity": 100, + "priority": 1, + "focus": 3 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 120, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "priority": 1, + "focus": 1 + }, + { + "x": 44.5, + "y": -21, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 28, + "opacity": 100, + "priority": 1, + "focus": 3 + }, + { + "x": 28, + "y": -12, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 28, + "opacity": 100, + "priority": 1, + "focus": 3 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 30, + "opacity": 100, + "priority": 1, + "focus": 3 + }, + { + "x": 116, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 29, + "opacity": 100, + "priority": 1, + "focus": 3 + }, + { + "x": 86, + "y": -42, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 28, + "opacity": 100, + "priority": 1, + "focus": 3 + }, + { + "x": 64, + "y": -27.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 28, + "opacity": 100, + "priority": 1, + "focus": 3 + }, + { + "x": 103, + "y": -62.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 28, + "opacity": 100, + "priority": 1, + "focus": 3 + }, + { + "x": 140, + "y": -60, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 28, + "opacity": 100, + "priority": 1, + "focus": 3 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 122, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "priority": 1, + "focus": 1 + }, + { + "x": 65.5, + "y": -34, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 28, + "opacity": 100, + "priority": 1, + "focus": 3 + }, + { + "x": 46, + "y": -21, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 28, + "opacity": 100, + "priority": 1, + "focus": 3 + }, + { + "x": 26, + "y": -6, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 28, + "opacity": 100, + "priority": 1, + "focus": 3 + }, + { + "x": 123, + "y": -76, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 28, + "opacity": 100, + "priority": 1, + "focus": 3 + }, + { + "x": 107, + "y": -53, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 28, + "opacity": 100, + "priority": 1, + "focus": 3 + }, + { + "x": 84, + "y": -37, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 28, + "opacity": 100, + "priority": 1, + "focus": 3 + }, + { + "x": 140, + "y": -60, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 29, + "opacity": 100, + "priority": 1, + "focus": 3 + }, + { + "x": 116, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 30, + "opacity": 100, + "priority": 1, + "focus": 3 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 126, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "priority": 1, + "focus": 1 + }, + { + "x": 86, + "y": -46.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 28, + "opacity": 100, + "priority": 1, + "focus": 3 + }, + { + "x": 68.5, + "y": -34, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 28, + "opacity": 100, + "priority": 1, + "focus": 3 + }, + { + "x": 48, + "y": -19.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 28, + "opacity": 100, + "priority": 1, + "focus": 3 + }, + { + "x": 22, + "y": -8, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 28, + "opacity": 100, + "priority": 1, + "focus": 3 + }, + { + "x": 123, + "y": -76, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 29, + "opacity": 100, + "priority": 1, + "focus": 3 + }, + { + "x": 104, + "y": -46.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 28, + "opacity": 100, + "priority": 1, + "focus": 3 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 28, + "opacity": 100, + "priority": 1, + "focus": 3 + }, + { + "x": 140, + "y": -60, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 30, + "opacity": 100, + "priority": 1, + "focus": 3 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "priority": 1, + "focus": 1 + }, + { + "x": 107, + "y": -59.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 28, + "opacity": 100, + "priority": 1, + "focus": 3 + }, + { + "x": 91, + "y": -46.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 28, + "opacity": 100, + "priority": 1, + "focus": 3 + }, + { + "x": 72, + "y": -30.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 28, + "opacity": 100, + "priority": 1, + "focus": 3 + }, + { + "x": 46, + "y": -18, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 28, + "opacity": 100, + "priority": 1, + "focus": 3 + }, + { + "x": 24, + "y": -4, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 28, + "opacity": 100, + "priority": 1, + "focus": 3 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 29, + "opacity": 100, + "priority": 1, + "focus": 3 + }, + { + "x": 124, + "y": -56, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 28, + "opacity": 100, + "priority": 1, + "focus": 3 + }, + { + "x": 123, + "y": -76, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 30, + "opacity": 100, + "priority": 1, + "focus": 3 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 132, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "priority": 1, + "focus": 1 + }, + { + "x": 123, + "y": -76, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 30, + "opacity": 100, + "priority": 1, + "focus": 3 + }, + { + "x": 124, + "y": -56, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 29, + "opacity": 100, + "priority": 1, + "focus": 3 + }, + { + "x": 96, + "y": -42, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 28, + "opacity": 100, + "priority": 1, + "focus": 3 + }, + { + "x": 68.5, + "y": -27.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 28, + "opacity": 100, + "priority": 1, + "focus": 3 + }, + { + "x": 44.5, + "y": -17, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 28, + "opacity": 100, + "priority": 1, + "focus": 3 + }, + { + "x": 27, + "y": -6, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 28, + "opacity": 100, + "priority": 1, + "focus": 3 + }, + { + "x": 113.5, + "y": -59.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 28, + "opacity": 100, + "priority": 1, + "focus": 3 + }, + { + "x": 128, + "y": -72, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 28, + "opacity": 100, + "priority": 1, + "focus": 3 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 132, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "priority": 1, + "focus": 1 + }, + { + "x": 24, + "y": -8, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 28, + "opacity": 100, + "priority": 1, + "focus": 3 + }, + { + "x": 128, + "y": -72, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 29, + "opacity": 100, + "priority": 1, + "focus": 3 + }, + { + "x": 124, + "y": -56, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 30, + "opacity": 100, + "priority": 1, + "focus": 3 + }, + { + "x": 91, + "y": -37, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 28, + "opacity": 100, + "priority": 1, + "focus": 3 + }, + { + "x": 65.5, + "y": -26, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 28, + "opacity": 100, + "priority": 1, + "focus": 3 + }, + { + "x": 41.5, + "y": -18.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 28, + "opacity": 100, + "priority": 1, + "focus": 3 + }, + { + "x": 136, + "y": -72, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 28, + "opacity": 100, + "priority": 1, + "focus": 3 + }, + { + "x": 120, + "y": -53, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 28, + "opacity": 100, + "priority": 1, + "focus": 3 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 130, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "priority": 1, + "focus": 1 + }, + { + "x": 40.5, + "y": -20, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 28, + "opacity": 100, + "priority": 1, + "focus": 3 + }, + { + "x": 24, + "y": -12, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 28, + "opacity": 100, + "priority": 1, + "focus": 3 + }, + { + "x": 136, + "y": -72, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 29, + "opacity": 100, + "priority": 1, + "focus": 3 + }, + { + "x": 113.5, + "y": -46.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 28, + "opacity": 100, + "priority": 1, + "focus": 3 + }, + { + "x": 86, + "y": -34.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 28, + "opacity": 100, + "priority": 1, + "focus": 3 + }, + { + "x": 59, + "y": -29, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 28, + "opacity": 100, + "priority": 1, + "focus": 3 + }, + { + "x": 144, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 28, + "opacity": 100, + "priority": 1, + "focus": 3 + }, + { + "x": 128, + "y": -72, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 30, + "opacity": 100, + "priority": 1, + "focus": 3 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 129, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "priority": 1, + "focus": 1 + }, + { + "x": 57.5, + "y": -32, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 28, + "opacity": 100, + "priority": 1, + "focus": 3 + }, + { + "x": 42, + "y": -22, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 28, + "opacity": 100, + "priority": 1, + "focus": 3 + }, + { + "x": 28, + "y": -8, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 28, + "opacity": 100, + "priority": 1, + "focus": 3 + }, + { + "x": 144, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 29, + "opacity": 100, + "priority": 1, + "focus": 3 + }, + { + "x": 107, + "y": -43.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 28, + "opacity": 100, + "priority": 1, + "focus": 3 + }, + { + "x": 76.5, + "y": -39.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 28, + "opacity": 100, + "priority": 1, + "focus": 3 + }, + { + "x": 136, + "y": -56, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 28, + "opacity": 100, + "priority": 1, + "focus": 3 + }, + { + "x": 136, + "y": -72, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 30, + "opacity": 100, + "priority": 1, + "focus": 3 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 127, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "priority": 1, + "focus": 1 + }, + { + "x": 74, + "y": -44, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 28, + "opacity": 100, + "priority": 1, + "focus": 3 + }, + { + "x": 60.5, + "y": -35.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 28, + "opacity": 100, + "priority": 1, + "focus": 3 + }, + { + "x": 44.5, + "y": -22, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 28, + "opacity": 100, + "priority": 1, + "focus": 3 + }, + { + "x": 26, + "y": -6, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 28, + "opacity": 100, + "priority": 1, + "focus": 3 + }, + { + "x": 136, + "y": -56, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 29, + "opacity": 100, + "priority": 1, + "focus": 3 + }, + { + "x": 94, + "y": -50, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 28, + "opacity": 100, + "priority": 1, + "focus": 3 + }, + { + "x": 128, + "y": -52, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 28, + "opacity": 100, + "priority": 1, + "focus": 3 + }, + { + "x": 144, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 30, + "opacity": 100, + "priority": 1, + "focus": 3 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 125, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "priority": 1, + "focus": 1 + }, + { + "x": 91, + "y": -56, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 28, + "opacity": 100, + "priority": 1, + "focus": 3 + }, + { + "x": 79, + "y": -49, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 28, + "opacity": 100, + "priority": 1, + "focus": 3 + }, + { + "x": 65.5, + "y": -35.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 28, + "opacity": 100, + "priority": 1, + "focus": 3 + }, + { + "x": 46, + "y": -21, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 28, + "opacity": 100, + "priority": 1, + "focus": 3 + }, + { + "x": 28, + "y": -12, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 28, + "opacity": 100, + "priority": 1, + "focus": 3 + }, + { + "x": 112, + "y": -60, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 28, + "opacity": 100, + "priority": 1, + "focus": 3 + }, + { + "x": 128, + "y": -52, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 29, + "opacity": 100, + "priority": 1, + "focus": 3 + }, + { + "x": 136, + "y": -56, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 30, + "opacity": 100, + "priority": 1, + "focus": 3 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 123, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "priority": 1, + "focus": 1 + }, + { + "x": 112, + "y": -60, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 29, + "opacity": 100, + "priority": 1, + "focus": 3 + }, + { + "x": 108, + "y": -68, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 28, + "opacity": 100, + "priority": 1, + "focus": 3 + }, + { + "x": 86, + "y": -49, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 28, + "opacity": 100, + "priority": 1, + "focus": 3 + }, + { + "x": 68.5, + "y": -34, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 28, + "opacity": 100, + "priority": 1, + "focus": 3 + }, + { + "x": 47, + "y": -19.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 28, + "opacity": 100, + "priority": 1, + "focus": 3 + }, + { + "x": 28, + "y": -8, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 28, + "opacity": 100, + "priority": 1, + "focus": 3 + }, + { + "x": 97.5, + "y": -62.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 28, + "opacity": 100, + "priority": 1, + "focus": 3 + }, + { + "x": 128, + "y": -52, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 30, + "opacity": 100, + "priority": 1, + "focus": 3 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 123, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "priority": 1, + "focus": 1 + }, + { + "x": 108, + "y": -68, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 29, + "opacity": 100, + "priority": 1, + "focus": 3 + }, + { + "x": 116, + "y": -76, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 28, + "opacity": 100, + "priority": 1, + "focus": 3 + }, + { + "x": 112, + "y": -60, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 30, + "opacity": 100, + "priority": 1, + "focus": 3 + }, + { + "x": 91, + "y": -46.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 28, + "opacity": 100, + "priority": 1, + "focus": 3 + }, + { + "x": 70, + "y": -30.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 28, + "opacity": 100, + "priority": 1, + "focus": 3 + }, + { + "x": 45.5, + "y": -18, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 28, + "opacity": 100, + "priority": 1, + "focus": 3 + }, + { + "x": 107, + "y": -62.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 28, + "opacity": 100, + "priority": 1, + "focus": 3 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 125, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "priority": 1, + "focus": 1 + }, + { + "x": 116, + "y": -76, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 29, + "opacity": 100, + "priority": 1, + "focus": 3 + }, + { + "x": 108, + "y": -68, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 30, + "opacity": 100, + "priority": 1, + "focus": 3 + }, + { + "x": 128, + "y": -76, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 28, + "opacity": 100, + "priority": 1, + "focus": 3 + }, + { + "x": 113.5, + "y": -59.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 28, + "opacity": 100, + "priority": 1, + "focus": 3 + }, + { + "x": 93.5, + "y": -42, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 28, + "opacity": 100, + "priority": 1, + "focus": 3 + }, + { + "x": 67, + "y": -27.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 28, + "opacity": 100, + "priority": 1, + "focus": 3 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 127, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "priority": 1, + "focus": 1 + }, + { + "x": 128, + "y": -76, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 29, + "opacity": 100, + "priority": 1, + "focus": 3 + }, + { + "x": 116, + "y": -76, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 30, + "opacity": 100, + "priority": 1, + "focus": 3 + }, + { + "x": 136, + "y": -72, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 28, + "opacity": 100, + "priority": 1, + "focus": 3 + }, + { + "x": 116.5, + "y": -53, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 28, + "opacity": 100, + "priority": 1, + "focus": 3 + }, + { + "x": 88.5, + "y": -37, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 28, + "opacity": 100, + "priority": 1, + "focus": 3 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 127, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "priority": 1, + "focus": 1 + }, + { + "x": 136, + "y": -72, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 29, + "opacity": 100, + "priority": 1, + "focus": 3 + }, + { + "x": 128, + "y": -76, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 30, + "opacity": 100, + "priority": 1, + "focus": 3 + }, + { + "x": 140, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 28, + "opacity": 100, + "priority": 1, + "focus": 3 + }, + { + "x": 110, + "y": -46.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 28, + "opacity": 100, + "priority": 1, + "focus": 3 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "priority": 1, + "focus": 1 + }, + { + "x": 140, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 29, + "opacity": 100, + "priority": 1, + "focus": 3 + }, + { + "x": 136, + "y": -72, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 30, + "opacity": 100, + "priority": 1, + "focus": 3 + }, + { + "x": 132, + "y": -56, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 28, + "opacity": 100, + "priority": 1, + "focus": 3 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 132, + "y": -56, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 29, + "opacity": 100, + "priority": 1, + "focus": 3 + }, + { + "x": 140, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 30, + "opacity": 100, + "priority": 1, + "focus": 3 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 132, + "y": -56, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 30, + "opacity": 100, + "priority": 1, + "focus": 3 + } + ] + ], + "frameTimedEvents": { + "0": [ + { + "frameIndex": 0, + "resourceName": "PRSFX- Bubblebeam.wav", + "volume": 100, + "pitch": 100, + "eventType": "AnimTimedSoundEvent" + } + ] + }, + "position": 3, + "hue": 0 +} \ No newline at end of file diff --git a/public/battle-anims/buzzy-buzz.json b/public/battle-anims/buzzy-buzz.json new file mode 100644 index 00000000000..b1cd7daa82d --- /dev/null +++ b/public/battle-anims/buzzy-buzz.json @@ -0,0 +1,1419 @@ +{ + "id": 570, + "graphic": "PRAS- Electric", + "frames": [ + [ + { + "x": 0, + "y": 0, + "zoomX": 105, + "zoomY": 90, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 110, + "zoomY": 80, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 0, + "y": 0, + "zoomX": 200, + "zoomY": 200, + "visible": true, + "target": 2, + "graphicFrame": 53, + "opacity": 255, + "priority": 1, + "focus": 2 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 105, + "zoomY": 90, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 12, + "y": -25.5, + "zoomX": 100, + "zoomY": 100, + "angle": 45, + "visible": true, + "target": 2, + "graphicFrame": 12, + "opacity": 255, + "priority": 1, + "focus": 3 + }, + { + "x": 28.5, + "y": -20, + "zoomX": 100, + "zoomY": 100, + "angle": 30, + "visible": true, + "target": 2, + "graphicFrame": 13, + "opacity": 255, + "priority": 1, + "focus": 3 + }, + { + "x": 0, + "y": 0, + "zoomX": 200, + "zoomY": 200, + "visible": true, + "target": 2, + "graphicFrame": 53, + "opacity": 255, + "priority": 1, + "focus": 2 + }, + { + "x": 43, + "y": -7.5, + "zoomX": 100, + "zoomY": 100, + "angle": 30, + "visible": true, + "target": 2, + "graphicFrame": 13, + "opacity": 255, + "priority": 1, + "focus": 3 + }, + { + "x": 48, + "y": 8, + "zoomX": 100, + "zoomY": 100, + "angle": 30, + "visible": true, + "target": 2, + "graphicFrame": 12, + "opacity": 255, + "priority": 1, + "focus": 3 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 19, + "y": -34, + "zoomX": 100, + "zoomY": 100, + "angle": 44, + "visible": true, + "target": 2, + "graphicFrame": 12, + "opacity": 255, + "priority": 1, + "focus": 3 + }, + { + "x": 37, + "y": -28, + "zoomX": 100, + "zoomY": 100, + "angle": 30, + "visible": true, + "target": 2, + "graphicFrame": 13, + "opacity": 255, + "priority": 1, + "focus": 3 + }, + { + "x": 0, + "y": 0, + "zoomX": 200, + "zoomY": 200, + "visible": true, + "target": 2, + "graphicFrame": 54, + "opacity": 255, + "priority": 1, + "focus": 2 + }, + { + "x": 53, + "y": -14.5, + "zoomX": 100, + "zoomY": 100, + "angle": 30, + "visible": true, + "target": 2, + "graphicFrame": 13, + "opacity": 255, + "priority": 1, + "focus": 3 + }, + { + "x": 59.5, + "y": 2, + "zoomX": 100, + "zoomY": 100, + "angle": 30, + "visible": true, + "target": 2, + "graphicFrame": 12, + "opacity": 255, + "priority": 1, + "focus": 3 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 26.5, + "y": -42.5, + "zoomX": 100, + "zoomY": 100, + "angle": 44, + "visible": true, + "target": 2, + "graphicFrame": 12, + "opacity": 255, + "priority": 1, + "focus": 3 + }, + { + "x": 46, + "y": -36, + "zoomX": 100, + "zoomY": 100, + "angle": 30, + "visible": true, + "target": 2, + "graphicFrame": 13, + "opacity": 255, + "priority": 1, + "focus": 3 + }, + { + "x": 0, + "y": 0, + "zoomX": 200, + "zoomY": 200, + "visible": true, + "target": 2, + "graphicFrame": 54, + "opacity": 255, + "priority": 1, + "focus": 2 + }, + { + "x": 63.5, + "y": -21.5, + "zoomX": 100, + "zoomY": 100, + "angle": 30, + "visible": true, + "target": 2, + "graphicFrame": 13, + "opacity": 255, + "priority": 1, + "focus": 3 + }, + { + "x": 71, + "y": -4, + "zoomX": 100, + "zoomY": 100, + "angle": 30, + "visible": true, + "target": 2, + "graphicFrame": 12, + "opacity": 255, + "priority": 1, + "focus": 3 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 34, + "y": -50.5, + "zoomX": 100, + "zoomY": 100, + "angle": 43, + "visible": true, + "target": 2, + "graphicFrame": 12, + "opacity": 255, + "priority": 1, + "focus": 3 + }, + { + "x": 54.5, + "y": -43.5, + "zoomX": 100, + "zoomY": 100, + "angle": 30, + "visible": true, + "target": 2, + "graphicFrame": 13, + "opacity": 255, + "priority": 1, + "focus": 3 + }, + { + "x": 0, + "y": 0, + "zoomX": 200, + "zoomY": 200, + "visible": true, + "target": 2, + "graphicFrame": 55, + "opacity": 255, + "priority": 1, + "focus": 2 + }, + { + "x": 74, + "y": -28.5, + "zoomX": 100, + "zoomY": 100, + "angle": 30, + "visible": true, + "target": 2, + "graphicFrame": 13, + "opacity": 255, + "priority": 1, + "focus": 3 + }, + { + "x": 83, + "y": -10, + "zoomX": 100, + "zoomY": 100, + "angle": 30, + "visible": true, + "target": 2, + "graphicFrame": 12, + "opacity": 255, + "priority": 1, + "focus": 3 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 41.5, + "y": -59, + "zoomX": 100, + "zoomY": 100, + "angle": 43, + "visible": true, + "target": 2, + "graphicFrame": 12, + "opacity": 255, + "priority": 1, + "focus": 3 + }, + { + "x": 63.5, + "y": -51.5, + "zoomX": 100, + "zoomY": 100, + "angle": 30, + "visible": true, + "target": 2, + "graphicFrame": 13, + "opacity": 255, + "priority": 1, + "focus": 3 + }, + { + "x": 0, + "y": 0, + "zoomX": 200, + "zoomY": 200, + "visible": true, + "target": 2, + "graphicFrame": 55, + "opacity": 255, + "priority": 1, + "focus": 2 + }, + { + "x": 84.5, + "y": -35.5, + "zoomX": 100, + "zoomY": 100, + "angle": 30, + "visible": true, + "target": 2, + "graphicFrame": 13, + "opacity": 255, + "priority": 1, + "focus": 3 + }, + { + "x": 94.5, + "y": -16, + "zoomX": 100, + "zoomY": 100, + "angle": 30, + "visible": true, + "target": 2, + "graphicFrame": 12, + "opacity": 255, + "priority": 1, + "focus": 3 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 49, + "y": -67.5, + "zoomX": 100, + "zoomY": 100, + "angle": 42, + "visible": true, + "target": 2, + "graphicFrame": 12, + "opacity": 255, + "priority": 1, + "focus": 3 + }, + { + "x": 72.5, + "y": -59.5, + "zoomX": 100, + "zoomY": 100, + "angle": 30, + "visible": true, + "target": 2, + "graphicFrame": 13, + "opacity": 255, + "priority": 1, + "focus": 3 + }, + { + "x": 0, + "y": 0, + "zoomX": 200, + "zoomY": 200, + "visible": true, + "target": 2, + "graphicFrame": 56, + "opacity": 255, + "priority": 1, + "focus": 2 + }, + { + "x": 95, + "y": -42.5, + "zoomX": 100, + "zoomY": 100, + "angle": 30, + "visible": true, + "target": 2, + "graphicFrame": 13, + "opacity": 255, + "priority": 1, + "focus": 3 + }, + { + "x": 106.5, + "y": -22, + "zoomX": 100, + "zoomY": 100, + "angle": 30, + "visible": true, + "target": 2, + "graphicFrame": 12, + "opacity": 255, + "priority": 1, + "focus": 3 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 56, + "y": -75.5, + "zoomX": 100, + "zoomY": 100, + "angle": 42, + "visible": true, + "target": 2, + "graphicFrame": 12, + "opacity": 255, + "priority": 1, + "focus": 3 + }, + { + "x": 81, + "y": -67, + "zoomX": 100, + "zoomY": 100, + "angle": 30, + "visible": true, + "target": 2, + "graphicFrame": 13, + "opacity": 255, + "priority": 1, + "focus": 3 + }, + { + "x": 0, + "y": 0, + "zoomX": 200, + "zoomY": 200, + "visible": true, + "target": 2, + "graphicFrame": 56, + "opacity": 255, + "priority": 1, + "focus": 2 + }, + { + "x": 105.5, + "y": -49.5, + "zoomX": 100, + "zoomY": 100, + "angle": 30, + "visible": true, + "target": 2, + "graphicFrame": 13, + "opacity": 255, + "priority": 1, + "focus": 3 + }, + { + "x": 118, + "y": -28, + "zoomX": 100, + "zoomY": 100, + "angle": 30, + "visible": true, + "target": 2, + "graphicFrame": 12, + "opacity": 255, + "priority": 1, + "focus": 3 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 63.5, + "y": -84, + "zoomX": 100, + "zoomY": 100, + "angle": 41, + "visible": true, + "target": 2, + "graphicFrame": 12, + "opacity": 255, + "priority": 1, + "focus": 3 + }, + { + "x": 90, + "y": -75, + "zoomX": 100, + "zoomY": 100, + "angle": 30, + "visible": true, + "target": 2, + "graphicFrame": 13, + "opacity": 255, + "priority": 1, + "focus": 3 + }, + { + "x": 0, + "y": 0, + "zoomX": 200, + "zoomY": 200, + "visible": true, + "target": 2, + "graphicFrame": 53, + "opacity": 255, + "priority": 1, + "focus": 2 + }, + { + "x": 116, + "y": -56.5, + "zoomX": 100, + "zoomY": 100, + "angle": 30, + "visible": true, + "target": 2, + "graphicFrame": 13, + "opacity": 255, + "priority": 1, + "focus": 3 + }, + { + "x": 130, + "y": -34, + "zoomX": 100, + "zoomY": 100, + "angle": 30, + "visible": true, + "target": 2, + "graphicFrame": 12, + "opacity": 255, + "priority": 1, + "focus": 3 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 71, + "y": -92.5, + "zoomX": 100, + "zoomY": 100, + "angle": 41, + "visible": true, + "target": 2, + "graphicFrame": 12, + "opacity": 255, + "priority": 1, + "focus": 3 + }, + { + "x": 99, + "y": -83, + "zoomX": 100, + "zoomY": 100, + "angle": 30, + "visible": true, + "target": 2, + "graphicFrame": 13, + "opacity": 255, + "priority": 1, + "focus": 3 + }, + { + "x": 0, + "y": 0, + "zoomX": 200, + "zoomY": 200, + "visible": true, + "target": 2, + "graphicFrame": 53, + "opacity": 255, + "priority": 1, + "focus": 2 + }, + { + "x": 126.5, + "y": -63.5, + "zoomX": 100, + "zoomY": 100, + "angle": 30, + "visible": true, + "target": 2, + "graphicFrame": 13, + "opacity": 255, + "priority": 1, + "focus": 3 + }, + { + "x": 141.5, + "y": -40, + "zoomX": 100, + "zoomY": 100, + "angle": 30, + "visible": true, + "target": 2, + "graphicFrame": 12, + "opacity": 255, + "priority": 1, + "focus": 3 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 78.5, + "y": -100.5, + "zoomX": 100, + "zoomY": 100, + "angle": 40, + "visible": true, + "target": 2, + "graphicFrame": 12, + "opacity": 255, + "priority": 1, + "focus": 3 + }, + { + "x": 107.5, + "y": -90.5, + "zoomX": 100, + "zoomY": 100, + "angle": 30, + "visible": true, + "target": 2, + "graphicFrame": 13, + "opacity": 255, + "priority": 1, + "focus": 3 + }, + { + "x": 0, + "y": 0, + "zoomX": 200, + "zoomY": 200, + "visible": true, + "target": 2, + "graphicFrame": 54, + "opacity": 255, + "priority": 1, + "focus": 2 + }, + { + "x": 137, + "y": -70.5, + "zoomX": 100, + "zoomY": 100, + "angle": 30, + "visible": true, + "target": 2, + "graphicFrame": 13, + "opacity": 255, + "priority": 1, + "focus": 3 + }, + { + "x": 153.5, + "y": -46, + "zoomX": 100, + "zoomY": 100, + "angle": 30, + "visible": true, + "target": 2, + "graphicFrame": 12, + "opacity": 255, + "priority": 1, + "focus": 3 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 86, + "y": -109, + "zoomX": 100, + "zoomY": 100, + "angle": 40, + "visible": true, + "target": 2, + "graphicFrame": 12, + "opacity": 255, + "priority": 1, + "focus": 3 + }, + { + "x": 116.5, + "y": -98.5, + "zoomX": 100, + "zoomY": 100, + "angle": 30, + "visible": true, + "target": 2, + "graphicFrame": 13, + "opacity": 255, + "priority": 1, + "focus": 3 + }, + { + "x": 0, + "y": 0, + "zoomX": 200, + "zoomY": 200, + "visible": true, + "target": 2, + "graphicFrame": 54, + "opacity": 255, + "priority": 1, + "focus": 2 + }, + { + "x": 147.5, + "y": -77.5, + "zoomX": 100, + "zoomY": 100, + "angle": 30, + "visible": true, + "target": 2, + "graphicFrame": 13, + "opacity": 255, + "priority": 1, + "focus": 3 + }, + { + "x": 165, + "y": -52, + "zoomX": 100, + "zoomY": 100, + "angle": 30, + "visible": true, + "target": 2, + "graphicFrame": 12, + "opacity": 255, + "priority": 1, + "focus": 3 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 93.5, + "y": -117, + "zoomX": 100, + "zoomY": 100, + "angle": 40, + "visible": true, + "target": 2, + "graphicFrame": 12, + "opacity": 255, + "priority": 1, + "focus": 3 + }, + { + "x": 125.5, + "y": -106, + "zoomX": 100, + "zoomY": 100, + "angle": 30, + "visible": true, + "target": 2, + "graphicFrame": 13, + "opacity": 255, + "priority": 1, + "focus": 3 + }, + { + "x": 0, + "y": 0, + "zoomX": 200, + "zoomY": 200, + "visible": true, + "target": 2, + "graphicFrame": 55, + "opacity": 255, + "priority": 1, + "focus": 2 + }, + { + "x": 158, + "y": -84, + "zoomX": 100, + "zoomY": 100, + "angle": 30, + "visible": true, + "target": 2, + "graphicFrame": 13, + "opacity": 255, + "priority": 1, + "focus": 3 + }, + { + "x": 177, + "y": -57.5, + "zoomX": 100, + "zoomY": 100, + "angle": 30, + "visible": true, + "target": 2, + "graphicFrame": 12, + "opacity": 255, + "priority": 1, + "focus": 3 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 0, + "y": 0, + "zoomX": 200, + "zoomY": 200, + "visible": true, + "target": 2, + "graphicFrame": 55, + "opacity": 255, + "priority": 1, + "focus": 2 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 0, + "y": 0, + "zoomX": 200, + "zoomY": 200, + "visible": true, + "target": 2, + "graphicFrame": 56, + "opacity": 255, + "priority": 1, + "focus": 2 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 0, + "y": 0, + "zoomX": 200, + "zoomY": 200, + "visible": true, + "target": 2, + "graphicFrame": 56, + "opacity": 255, + "priority": 1, + "focus": 2 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 0, + "y": 0, + "zoomX": 200, + "zoomY": 200, + "visible": true, + "target": 2, + "graphicFrame": 57, + "opacity": 255, + "priority": 1, + "focus": 2 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 0, + "y": 0, + "zoomX": 200, + "zoomY": 200, + "visible": true, + "target": 2, + "graphicFrame": 57, + "opacity": 255, + "priority": 1, + "focus": 2 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + } + ] + ], + "frameTimedEvents": { + "3": [ + { + "frameIndex": 3, + "resourceName": "PRSFX- Electro Ball2.wav", + "volume": 80, + "pitch": 100, + "eventType": "AnimTimedSoundEvent" + } + ] + }, + "position": 3, + "hue": 0 +} \ No newline at end of file diff --git a/public/battle-anims/combat-torque.json b/public/battle-anims/combat-torque.json new file mode 100644 index 00000000000..8390263edaa --- /dev/null +++ b/public/battle-anims/combat-torque.json @@ -0,0 +1,3667 @@ +[ + { + "id": 794, + "graphic": "PRAS- Me First", + "frames": [ + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "angle": 359, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + 64, + 64, + 64, + 0 + ], + "priority": 1, + "focus": 3 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 9, + "opacity": 20, + "focus": 1 + } + ], + [ + { + "x": -4, + "y": 4, + "zoomX": 100, + "zoomY": 100, + "angle": 350, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + 96, + 96, + 96, + 0 + ], + "locked": true, + "priority": 1, + "focus": 3 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 9, + "opacity": 20, + "focus": 1 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 8, + "opacity": 40, + "focus": 1 + } + ], + [ + { + "x": -8, + "y": 8, + "zoomX": 100, + "zoomY": 100, + "angle": 340, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + 128, + 128, + 128, + 0 + ], + "priority": 1, + "focus": 3 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 9, + "opacity": 20, + "focus": 1 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 8, + "opacity": 40, + "focus": 1 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 7, + "opacity": 60, + "focus": 1 + } + ], + [ + { + "x": -12, + "y": 12, + "zoomX": 100, + "zoomY": 100, + "angle": 330, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + 160, + 160, + 160, + 0 + ], + "priority": 1, + "focus": 3 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 9, + "opacity": 20, + "focus": 1 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 8, + "opacity": 40, + "focus": 1 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 7, + "opacity": 60, + "focus": 1 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 6, + "opacity": 80, + "focus": 1 + } + ], + [ + { + "x": -16, + "y": 16, + "zoomX": 100, + "zoomY": 100, + "angle": 320, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + 192, + 192, + 192, + 0 + ], + "locked": true, + "priority": 1, + "focus": 3 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 9, + "opacity": 20, + "focus": 1 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 8, + "opacity": 40, + "focus": 1 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 7, + "opacity": 60, + "focus": 1 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 6, + "opacity": 80, + "focus": 1 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 5, + "opacity": 100, + "focus": 1 + } + ], + [ + { + "x": -20, + "y": 20, + "zoomX": 100, + "zoomY": 100, + "angle": 310, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + 224, + 224, + 224, + 0 + ], + "priority": 1, + "focus": 3 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 9, + "opacity": 20, + "focus": 1 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 8, + "opacity": 40, + "focus": 1 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 7, + "opacity": 60, + "focus": 1 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 6, + "opacity": 80, + "focus": 1 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 5, + "opacity": 100, + "focus": 1 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 4, + "opacity": 120, + "focus": 1 + } + ], + [ + { + "x": -20, + "y": 20, + "zoomX": 100, + "zoomY": 100, + "angle": 310, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + 255, + 255, + 255, + 0 + ], + "priority": 1, + "focus": 3 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 8, + "opacity": 40, + "focus": 1 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 7, + "opacity": 60, + "focus": 1 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 6, + "opacity": 80, + "focus": 1 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 5, + "opacity": 100, + "focus": 1 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 4, + "opacity": 120, + "focus": 1 + } + ], + [ + { + "x": -20, + "y": 20, + "zoomX": 100, + "zoomY": 100, + "angle": 310, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + 255, + 255, + 255, + 0 + ], + "priority": 1, + "focus": 3 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 8, + "opacity": 40, + "focus": 1 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 7, + "opacity": 60, + "focus": 1 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 6, + "opacity": 80, + "focus": 1 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 5, + "opacity": 100, + "focus": 1 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 4, + "opacity": 120, + "focus": 1 + } + ], + [ + { + "x": -20, + "y": 20, + "zoomX": 100, + "zoomY": 100, + "angle": 310, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + 255, + 255, + 255, + 0 + ], + "priority": 1, + "focus": 3 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 8, + "opacity": 40, + "focus": 1 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 7, + "opacity": 60, + "focus": 1 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 6, + "opacity": 80, + "focus": 1 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 5, + "opacity": 100, + "focus": 1 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 4, + "opacity": 120, + "focus": 1 + } + ], + [ + { + "x": -20, + "y": 20, + "zoomX": 100, + "zoomY": 100, + "angle": 310, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + 255, + 255, + 255, + 0 + ], + "priority": 1, + "focus": 3 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 8, + "opacity": 40, + "focus": 1 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 7, + "opacity": 60, + "focus": 1 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 6, + "opacity": 80, + "focus": 1 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 5, + "opacity": 100, + "focus": 1 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 4, + "opacity": 120, + "focus": 1 + } + ], + [ + { + "x": -20, + "y": 20, + "zoomX": 100, + "zoomY": 100, + "angle": 310, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + 255, + 255, + 255, + 0 + ], + "priority": 1, + "focus": 3 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 8, + "opacity": 40, + "focus": 1 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 7, + "opacity": 60, + "focus": 1 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 6, + "opacity": 80, + "focus": 1 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 5, + "opacity": 100, + "focus": 1 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 4, + "opacity": 120, + "focus": 1 + } + ], + [ + { + "x": -20, + "y": 20, + "zoomX": 100, + "zoomY": 100, + "angle": 310, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + 255, + 255, + 255, + 0 + ], + "priority": 1, + "focus": 3 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 8, + "opacity": 40, + "focus": 1 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 7, + "opacity": 60, + "focus": 1 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 6, + "opacity": 80, + "focus": 1 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 5, + "opacity": 100, + "focus": 1 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 4, + "opacity": 120, + "focus": 1 + } + ], + [ + { + "x": -20, + "y": 20, + "zoomX": 100, + "zoomY": 100, + "angle": 310, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + 255, + 255, + 255, + 0 + ], + "priority": 1, + "focus": 3 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 8, + "opacity": 40, + "focus": 1 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 7, + "opacity": 60, + "focus": 1 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 6, + "opacity": 80, + "focus": 1 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 5, + "opacity": 100, + "focus": 1 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 4, + "opacity": 120, + "focus": 1 + } + ], + [ + { + "x": 78.5, + "y": -36, + "zoomX": 100, + "zoomY": 100, + "angle": 310, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + 255, + 255, + 255, + 0 + ], + "priority": 1, + "focus": 3 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 2, + "opacity": 160, + "focus": 1 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 1, + "opacity": 180, + "focus": 1 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 0, + "opacity": 200, + "focus": 1 + } + ], + [ + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "angle": 310, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + 255, + 255, + 255, + 0 + ], + "priority": 1, + "focus": 3 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 3 + } + ], + [ + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "angle": 310, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + 255, + 255, + 255, + 0 + ], + "priority": 1, + "focus": 3 + }, + { + "x": 152, + "y": -83.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "priority": 1, + "focus": 3 + } + ], + [ + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "angle": 310, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + 255, + 255, + 255, + 0 + ], + "priority": 1, + "focus": 3 + }, + { + "x": 176, + "y": -103, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "priority": 1, + "focus": 3 + } + ], + [ + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "angle": 310, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + 255, + 255, + 255, + 0 + ], + "priority": 1, + "focus": 3 + }, + { + "x": 200, + "y": -122.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 170, + "priority": 1, + "focus": 3 + } + ], + [ + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "angle": 310, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + 255, + 255, + 255, + 0 + ], + "priority": 1, + "focus": 3 + }, + { + "x": 224, + "y": -141.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 86, + "priority": 1, + "focus": 3 + } + ], + [ + { + "x": 102, + "y": -51.5, + "zoomX": 100, + "zoomY": 100, + "angle": 320, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + 255, + 255, + 255, + 0 + ], + "priority": 1, + "focus": 3 + }, + { + "x": 224, + "y": -141.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 76.5, + "y": -38.5, + "zoomX": 100, + "zoomY": 100, + "angle": 330, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + 255, + 255, + 255, + 0 + ], + "priority": 1, + "focus": 3 + }, + { + "x": 224.5, + "y": -141.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 51, + "y": -26, + "zoomX": 100, + "zoomY": 100, + "angle": 340, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + 255, + 255, + 255, + 0 + ], + "priority": 1, + "focus": 3 + }, + { + "x": 224.5, + "y": -141.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 25.5, + "y": -13, + "zoomX": 100, + "zoomY": 100, + "angle": 350, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + 255, + 255, + 255, + 0 + ], + "priority": 1, + "focus": 3 + }, + { + "x": 224.5, + "y": -141.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + 255, + 255, + 255, + 0 + ], + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 224.5, + "y": -141.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + 224, + 224, + 224, + 0 + ], + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + 192, + 192, + 192, + 0 + ], + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + 160, + 160, + 160, + 0 + ], + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + 128, + 128, + 128, + 0 + ], + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 36, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + 96, + 96, + 96, + 0 + ], + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 72, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + 64, + 64, + 64, + 0 + ], + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 109, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + 32, + 32, + 32, + 0 + ], + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 145, + "locked": true, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 182, + "locked": true, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 218, + "locked": true, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + } + ] + ], + "frameTimedEvents": { + "0": [ + { + "frameIndex": 0, + "resourceName": "GEN8- Meteor Assault BG", + "bgX": 0, + "bgY": 0, + "opacity": 0, + "duration": 5, + "eventType": "AnimTimedAddBgEvent" + }, + { + "frameIndex": 0, + "resourceName": "", + "bgX": 0, + "bgY": 0, + "opacity": 255, + "duration": 8, + "eventType": "AnimTimedUpdateBgEvent" + }, + { + "frameIndex": 0, + "resourceName": "PRSFX- Giga Impact2.wav", + "volume": 100, + "pitch": 100, + "eventType": "AnimTimedSoundEvent" + } + ], + "15": [ + { + "frameIndex": 15, + "resourceName": "PRSFX- Giga Impact1.wav", + "volume": 100, + "pitch": 100, + "eventType": "AnimTimedSoundEvent" + } + ], + "24": [ + { + "frameIndex": 24, + "resourceName": "", + "bgX": 0, + "bgY": 0, + "opacity": 0, + "duration": 3, + "eventType": "AnimTimedUpdateBgEvent" + } + ] + }, + "position": 4, + "hue": 215 + }, + { + "id": 794, + "graphic": "PRAS- Me First", + "frames": [ + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "priority": 1, + "focus": 3 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "angle": 1, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + 64, + 64, + 64, + 0 + ], + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 9, + "opacity": 20, + "focus": 2 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 3 + }, + { + "x": 132, + "y": -68, + "zoomX": 100, + "zoomY": 100, + "angle": 10, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + 96, + 96, + 96, + 0 + ], + "priority": 1, + "focus": 1 + }, + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 9, + "opacity": 20, + "focus": 2 + }, + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 8, + "opacity": 40, + "focus": 2 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "priority": 1, + "focus": 3 + }, + { + "x": 136, + "y": -72, + "zoomX": 100, + "zoomY": 100, + "angle": 20, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + 128, + 128, + 128, + 0 + ], + "priority": 1, + "focus": 1 + }, + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 9, + "opacity": 20, + "focus": 2 + }, + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 8, + "opacity": 40, + "focus": 2 + }, + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 7, + "opacity": 60, + "focus": 2 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "priority": 1, + "focus": 3 + }, + { + "x": 140, + "y": -76, + "zoomX": 100, + "zoomY": 100, + "angle": 30, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + 160, + 160, + 160, + 0 + ], + "priority": 1, + "focus": 1 + }, + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 9, + "opacity": 20, + "focus": 2 + }, + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 8, + "opacity": 40, + "focus": 2 + }, + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 7, + "opacity": 60, + "focus": 2 + }, + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 6, + "opacity": 80, + "focus": 2 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 3 + }, + { + "x": 144, + "y": -80, + "zoomX": 100, + "zoomY": 100, + "angle": 40, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + 192, + 192, + 192, + 0 + ], + "priority": 1, + "focus": 1 + }, + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 9, + "opacity": 20, + "focus": 2 + }, + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 8, + "opacity": 40, + "focus": 2 + }, + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 7, + "opacity": 60, + "focus": 2 + }, + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 6, + "opacity": 80, + "focus": 2 + }, + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 5, + "opacity": 100, + "focus": 2 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "priority": 1, + "focus": 3 + }, + { + "x": 148, + "y": -88, + "zoomX": 100, + "zoomY": 100, + "angle": 50, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + 224, + 224, + 224, + 0 + ], + "priority": 1, + "focus": 1 + }, + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 9, + "opacity": 20, + "focus": 2 + }, + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 8, + "opacity": 40, + "focus": 2 + }, + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 7, + "opacity": 60, + "locked": true, + "focus": 2 + }, + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 6, + "opacity": 80, + "focus": 2 + }, + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 5, + "opacity": 100, + "focus": 2 + }, + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 4, + "opacity": 120, + "focus": 2 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "priority": 1, + "focus": 3 + }, + { + "x": 148, + "y": -88, + "zoomX": 100, + "zoomY": 100, + "angle": 50, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + 255, + 255, + 255, + 0 + ], + "priority": 1, + "focus": 1 + }, + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 8, + "opacity": 40, + "focus": 2 + }, + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 7, + "opacity": 60, + "focus": 2 + }, + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 6, + "opacity": 80, + "focus": 2 + }, + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 5, + "opacity": 100, + "focus": 2 + }, + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 4, + "opacity": 120, + "focus": 2 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "priority": 1, + "focus": 3 + }, + { + "x": 148, + "y": -88, + "zoomX": 100, + "zoomY": 100, + "angle": 50, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + 255, + 255, + 255, + 0 + ], + "priority": 1, + "focus": 1 + }, + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 8, + "opacity": 40, + "focus": 2 + }, + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 7, + "opacity": 60, + "focus": 2 + }, + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 6, + "opacity": 80, + "focus": 2 + }, + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 5, + "opacity": 100, + "focus": 2 + }, + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 4, + "opacity": 120, + "focus": 2 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "priority": 1, + "focus": 3 + }, + { + "x": 148, + "y": -88, + "zoomX": 100, + "zoomY": 100, + "angle": 50, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + 255, + 255, + 255, + 0 + ], + "priority": 1, + "focus": 1 + }, + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 8, + "opacity": 40, + "focus": 2 + }, + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 7, + "opacity": 60, + "focus": 2 + }, + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 6, + "opacity": 80, + "focus": 2 + }, + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 5, + "opacity": 100, + "focus": 2 + }, + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 4, + "opacity": 120, + "focus": 2 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "priority": 1, + "focus": 3 + }, + { + "x": 148, + "y": -88, + "zoomX": 100, + "zoomY": 100, + "angle": 50, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + 255, + 255, + 255, + 0 + ], + "priority": 1, + "focus": 1 + }, + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 8, + "opacity": 40, + "focus": 2 + }, + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 7, + "opacity": 60, + "focus": 2 + }, + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 6, + "opacity": 80, + "focus": 2 + }, + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 5, + "opacity": 100, + "focus": 2 + }, + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 4, + "opacity": 120, + "focus": 2 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "priority": 1, + "focus": 3 + }, + { + "x": 148, + "y": -88, + "zoomX": 100, + "zoomY": 100, + "angle": 50, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + 255, + 255, + 255, + 0 + ], + "priority": 1, + "focus": 1 + }, + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 8, + "opacity": 40, + "focus": 2 + }, + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 7, + "opacity": 60, + "focus": 2 + }, + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 6, + "opacity": 80, + "focus": 2 + }, + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 5, + "opacity": 100, + "focus": 2 + }, + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 4, + "opacity": 120, + "focus": 2 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "priority": 1, + "focus": 3 + }, + { + "x": 100, + "y": -60, + "zoomX": 100, + "zoomY": 100, + "angle": 50, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + 255, + 255, + 255, + 0 + ], + "priority": 1, + "focus": 1 + }, + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 5, + "opacity": 100, + "focus": 2 + }, + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 4, + "opacity": 120, + "focus": 2 + }, + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 3, + "opacity": 140, + "focus": 2 + }, + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 2, + "opacity": 160, + "focus": 2 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "priority": 1, + "focus": 3 + }, + { + "x": 52, + "y": -32, + "zoomX": 100, + "zoomY": 100, + "angle": 50, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + 255, + 255, + 255, + 0 + ], + "priority": 1, + "focus": 1 + }, + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 2, + "opacity": 160, + "focus": 2 + }, + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 1, + "opacity": 180, + "focus": 2 + }, + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 0, + "opacity": 200, + "focus": 2 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "priority": 1, + "focus": 3 + }, + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "angle": 50, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + 255, + 255, + 255, + 0 + ], + "priority": 1, + "focus": 3 + } + ], + [ + { + "x": -24, + "y": 12, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "priority": 1, + "focus": 3 + }, + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "angle": 50, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + 255, + 255, + 255, + 0 + ], + "priority": 1, + "focus": 3 + } + ], + [ + { + "x": -48, + "y": 32, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "priority": 1, + "focus": 3 + }, + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "angle": 50, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + 255, + 255, + 255, + 0 + ], + "priority": 1, + "focus": 3 + } + ], + [ + { + "x": -72, + "y": 52, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 170, + "priority": 1, + "focus": 3 + }, + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "angle": 50, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + 255, + 255, + 255, + 0 + ], + "priority": 1, + "focus": 3 + } + ], + [ + { + "x": -96, + "y": 72, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 85, + "priority": 1, + "focus": 3 + }, + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "angle": 50, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + 255, + 255, + 255, + 0 + ], + "priority": 1, + "focus": 3 + } + ], + [ + { + "x": -96, + "y": 72, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "priority": 1, + "focus": 3 + }, + { + "x": 28, + "y": -12, + "zoomX": 100, + "zoomY": 100, + "angle": 40, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + 255, + 255, + 255, + 0 + ], + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": -96, + "y": 72, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "priority": 1, + "focus": 3 + }, + { + "x": 52, + "y": -24, + "zoomX": 100, + "zoomY": 100, + "angle": 30, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + 255, + 255, + 255, + 0 + ], + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": -96, + "y": 72, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "priority": 1, + "focus": 3 + }, + { + "x": 76, + "y": -36, + "zoomX": 100, + "zoomY": 100, + "angle": 20, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + 255, + 255, + 255, + 0 + ], + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": -96, + "y": 72, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "priority": 1, + "focus": 3 + }, + { + "x": 104, + "y": -52, + "zoomX": 100, + "zoomY": 100, + "angle": 10, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + 255, + 255, + 255, + 0 + ], + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": -96, + "y": 72, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "priority": 1, + "focus": 3 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + 255, + 255, + 255, + 0 + ], + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": -96, + "y": 72, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "priority": 1, + "focus": 3 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + 224, + 224, + 224, + 0 + ], + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": -96, + "y": 72, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "priority": 1, + "focus": 3 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + 192, + 192, + 192, + 0 + ], + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "priority": 1, + "focus": 3 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + 160, + 160, + 160, + 0 + ], + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 36, + "priority": 1, + "focus": 3 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + 128, + 128, + 128, + 0 + ], + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 72, + "priority": 1, + "focus": 3 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + 96, + 96, + 96, + 0 + ], + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 109, + "priority": 1, + "focus": 3 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + 64, + 64, + 64, + 0 + ], + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 146, + "priority": 1, + "focus": 3 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + 32, + 32, + 32, + 0 + ], + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 182, + "locked": true, + "priority": 1, + "focus": 3 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 218, + "locked": true, + "priority": 1, + "focus": 3 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 3 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + } + ] + ], + "frameTimedEvents": { + "0": [ + { + "frameIndex": 0, + "resourceName": "GEN8- Meteor Assault BG Opp", + "bgX": 0, + "bgY": 0, + "opacity": 0, + "duration": 5, + "eventType": "AnimTimedAddBgEvent" + }, + { + "frameIndex": 0, + "resourceName": "", + "bgX": 0, + "bgY": 0, + "opacity": 255, + "duration": 8, + "eventType": "AnimTimedUpdateBgEvent" + }, + { + "frameIndex": 0, + "resourceName": "PRSFX- Giga Impact2.wav", + "volume": 100, + "pitch": 100, + "eventType": "AnimTimedSoundEvent" + } + ], + "15": [ + { + "frameIndex": 15, + "resourceName": "PRSFX- Giga Impact1.wav", + "volume": 100, + "pitch": 100, + "eventType": "AnimTimedSoundEvent" + } + ], + "24": [ + { + "frameIndex": 24, + "resourceName": "", + "bgX": 0, + "bgY": 0, + "opacity": 0, + "duration": 3, + "eventType": "AnimTimedUpdateBgEvent" + } + ] + }, + "position": 4, + "hue": 0 + } +] \ No newline at end of file diff --git a/public/battle-anims/floaty-fall.json b/public/battle-anims/floaty-fall.json new file mode 100644 index 00000000000..814ddda1bd9 --- /dev/null +++ b/public/battle-anims/floaty-fall.json @@ -0,0 +1,1665 @@ +[ + { + "id": 560, + "graphic": "PRAS- Strike", + "frames": [ + [ + { + "x": 4, + "y": -12, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 12, + "y": -36, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 24, + "y": -84, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 40, + "y": -156, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 40, + "y": -144, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 40, + "y": -144, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 40, + "y": -144, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 40, + "y": -144, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 40, + "y": -144, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 40, + "y": -144, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 40, + "y": -144, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 40, + "y": -144, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 40, + "y": -144, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 128, + "y": -200, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 128, + "y": -200, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 128, + "y": -128, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 90, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 128, + "y": -70, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 11, + "opacity": 140, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -52, + "zoomX": 100, + "zoomY": 40, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "priority": 1, + "focus": 1 + }, + { + "x": 128, + "y": -51, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 11, + "opacity": 255, + "priority": 3, + "focus": 1 + } + ], + [ + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -52, + "zoomX": 100, + "zoomY": 40, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "priority": 1, + "focus": 1 + }, + { + "x": 128, + "y": -51, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 11, + "opacity": 255, + "priority": 3, + "focus": 1 + } + ], + [ + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -52, + "zoomX": 100, + "zoomY": 40, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "priority": 1, + "focus": 1 + }, + { + "x": 128, + "y": -51, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 11, + "opacity": 255, + "priority": 3, + "focus": 1 + } + ], + [ + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -52, + "zoomX": 100, + "zoomY": 40, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "priority": 1, + "focus": 1 + }, + { + "x": 128, + "y": -51, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 11, + "opacity": 255, + "priority": 3, + "focus": 1 + } + ], + [ + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -52, + "zoomX": 100, + "zoomY": 40, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "priority": 1, + "focus": 1 + }, + { + "x": 128, + "y": -51, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 11, + "opacity": 255, + "priority": 3, + "focus": 1 + } + ], + [ + { + "x": 102, + "y": -51.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -54.5, + "zoomX": 100, + "zoomY": 52, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 127.5, + "y": -51, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 11, + "opacity": 145, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 76.5, + "y": -38.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -57, + "zoomX": 100, + "zoomY": 64, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 51, + "y": -26, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -59.5, + "zoomX": 100, + "zoomY": 76, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 25.5, + "y": -13, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -62, + "zoomX": 100, + "zoomY": 88, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + } + ] + ], + "frameTimedEvents": { + "0": [ + { + "frameIndex": 0, + "resourceName": "PRSFX- Flying Press2.wav", + "volume": 100, + "pitch": 100, + "eventType": "AnimTimedSoundEvent" + } + ], + "16": [ + { + "frameIndex": 16, + "resourceName": "PRSFX- Flying Press3.wav", + "volume": 100, + "pitch": 100, + "eventType": "AnimTimedSoundEvent" + } + ], + "17": [ + { + "frameIndex": 17, + "resourceName": "PRSFX- Flying Press1.wav", + "volume": 100, + "pitch": 100, + "eventType": "AnimTimedSoundEvent" + } + ] + }, + "position": 1, + "hue": 0 + }, + { + "id": 560, + "graphic": "PRAS- Strike", + "frames": [ + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "priority": 1, + "focus": 2 + }, + { + "x": 124, + "y": -80, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "priority": 1, + "focus": 2 + }, + { + "x": 116, + "y": -104, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "priority": 1, + "focus": 2 + }, + { + "x": 104, + "y": -144, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "priority": 1, + "focus": 2 + }, + { + "x": 77, + "y": -144, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "priority": 1, + "focus": 2 + }, + { + "x": 77, + "y": -144, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "priority": 1, + "focus": 2 + }, + { + "x": 77, + "y": -144, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "priority": 1, + "focus": 2 + }, + { + "x": 77, + "y": -144, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "priority": 1, + "focus": 2 + }, + { + "x": 77, + "y": -144, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "priority": 1, + "focus": 2 + }, + { + "x": 77, + "y": -144, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "priority": 1, + "focus": 2 + }, + { + "x": 77, + "y": -144, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "priority": 1, + "focus": 2 + }, + { + "x": 77, + "y": -144, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "priority": 1, + "focus": 2 + }, + { + "x": 77, + "y": -144, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "priority": 1, + "focus": 2 + }, + { + "x": 77, + "y": -144, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "priority": 1, + "focus": 2 + }, + { + "x": 77, + "y": -144, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "priority": 1, + "focus": 2 + }, + { + "x": 0, + "y": -144, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 70, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "priority": 1, + "focus": 2 + }, + { + "x": 0, + "y": -94, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "priority": 1, + "focus": 1 + }, + { + "x": 0, + "y": -34, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 11, + "opacity": 140, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 40, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "priority": 1, + "focus": 2 + }, + { + "x": 0, + "y": -44, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "priority": 1, + "focus": 1 + }, + { + "x": 0, + "y": -7, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 11, + "opacity": 255, + "priority": 3, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 40, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "priority": 1, + "focus": 2 + }, + { + "x": 0, + "y": -44, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "priority": 1, + "focus": 1 + }, + { + "x": 0, + "y": -7, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 11, + "opacity": 255, + "priority": 3, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 40, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "priority": 1, + "focus": 2 + }, + { + "x": 0, + "y": -44, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "priority": 1, + "focus": 1 + }, + { + "x": 0, + "y": -7, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 11, + "opacity": 255, + "priority": 3, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 40, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "priority": 1, + "focus": 2 + }, + { + "x": 0, + "y": -44, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "priority": 1, + "focus": 1 + }, + { + "x": 0, + "y": -7, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 11, + "opacity": 255, + "priority": 3, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 40, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "priority": 1, + "focus": 2 + }, + { + "x": 0, + "y": -44, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "priority": 1, + "focus": 1 + }, + { + "x": 0, + "y": -7, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 11, + "opacity": 255, + "priority": 3, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 80, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "priority": 1, + "focus": 2 + }, + { + "x": 0, + "y": -44, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "priority": 1, + "focus": 1 + }, + { + "x": 0, + "y": -7, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 11, + "opacity": 145, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 85, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "priority": 1, + "focus": 2 + }, + { + "x": 32, + "y": -49, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 90, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 64, + "y": -54, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 95, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 96, + "y": -59, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + } + ] + ], + "frameTimedEvents": { + "0": [ + { + "frameIndex": 0, + "resourceName": "PRSFX- Flying Press2.wav", + "volume": 100, + "pitch": 100, + "eventType": "AnimTimedSoundEvent" + } + ], + "16": [ + { + "frameIndex": 16, + "resourceName": "PRSFX- Flying Press3.wav", + "volume": 100, + "pitch": 100, + "eventType": "AnimTimedSoundEvent" + } + ], + "17": [ + { + "frameIndex": 17, + "resourceName": "PRSFX- Flying Press1.wav", + "volume": 100, + "pitch": 100, + "eventType": "AnimTimedSoundEvent" + } + ] + }, + "position": 1, + "hue": 0 + } +] \ No newline at end of file diff --git a/public/battle-anims/freezy-frost.json b/public/battle-anims/freezy-frost.json new file mode 100644 index 00000000000..191706696c5 --- /dev/null +++ b/public/battle-anims/freezy-frost.json @@ -0,0 +1,3755 @@ +{ + "id": 329, + "graphic": "PRAS- Sheer Cold", + "frames": [ + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 72, + "y": -44.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 4, + "opacity": 40, + "priority": 1, + "focus": 1 + }, + { + "x": 64, + "y": -36.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 4, + "opacity": 20, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 80, + "y": -44.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 4, + "opacity": 60, + "priority": 1, + "focus": 1 + }, + { + "x": 72, + "y": -36.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 4, + "opacity": 40, + "priority": 1, + "focus": 1 + }, + { + "x": 64, + "y": -28.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 4, + "opacity": 20, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 64, + "y": -44.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 4, + "opacity": 20, + "priority": 1, + "focus": 1 + }, + { + "x": 72, + "y": -28.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 4, + "opacity": 40, + "priority": 1, + "focus": 1 + }, + { + "x": 80, + "y": -36.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 4, + "opacity": 60, + "priority": 1, + "focus": 1 + }, + { + "x": 88, + "y": -44.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 5, + "opacity": 80, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 80, + "y": -28.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 4, + "opacity": 60, + "priority": 1, + "focus": 1 + }, + { + "x": 88, + "y": -36.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 5, + "opacity": 80, + "priority": 1, + "focus": 1 + }, + { + "x": 72, + "y": -44.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 4, + "opacity": 40, + "priority": 1, + "focus": 1 + }, + { + "x": 64, + "y": -36.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 4, + "opacity": 20, + "priority": 1, + "focus": 1 + }, + { + "x": 95.5, + "y": -44.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 6, + "opacity": 100, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + 0, + 0, + 10, + 30 + ], + "priority": 1, + "focus": 1 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 9, + "opacity": 30, + "priority": 1, + "focus": 1 + }, + { + "x": 88, + "y": -28.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 5, + "opacity": 80, + "priority": 1, + "focus": 1 + }, + { + "x": 96, + "y": -36.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 6, + "opacity": 100, + "priority": 1, + "focus": 1 + }, + { + "x": 80, + "y": -44.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 4, + "opacity": 60, + "priority": 1, + "focus": 1 + }, + { + "x": 72, + "y": -36.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 4, + "opacity": 40, + "priority": 1, + "focus": 1 + }, + { + "x": 64, + "y": -28.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 4, + "opacity": 20, + "priority": 1, + "focus": 1 + }, + { + "x": 104, + "y": -44.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 7, + "opacity": 100, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + 0, + 0, + 20, + 60 + ], + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 9, + "opacity": 60, + "priority": 1, + "focus": 1 + }, + { + "x": 96, + "y": -28.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 6, + "opacity": 100, + "priority": 1, + "focus": 1 + }, + { + "x": 104, + "y": -36.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 7, + "opacity": 100, + "priority": 1, + "focus": 1 + }, + { + "x": 88, + "y": -44.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 5, + "opacity": 80, + "priority": 1, + "focus": 1 + }, + { + "x": 80, + "y": -36.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 4, + "opacity": 60, + "priority": 1, + "focus": 1 + }, + { + "x": 72, + "y": -28.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 4, + "opacity": 40, + "priority": 1, + "focus": 1 + }, + { + "x": 64, + "y": -44.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 4, + "opacity": 20, + "priority": 1, + "focus": 1 + }, + { + "x": 112, + "y": -44.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 8, + "opacity": 100, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + 0, + 0, + 30, + 90 + ], + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 9, + "opacity": 90, + "priority": 1, + "focus": 1 + }, + { + "x": 104, + "y": -28.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 7, + "opacity": 100, + "priority": 1, + "focus": 1 + }, + { + "x": 112, + "y": -36.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 8, + "opacity": 100, + "priority": 1, + "focus": 1 + }, + { + "x": 96, + "y": -44.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 6, + "opacity": 100, + "priority": 1, + "focus": 1 + }, + { + "x": 88, + "y": -36.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 5, + "opacity": 80, + "priority": 1, + "focus": 1 + }, + { + "x": 80, + "y": -28.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 4, + "opacity": 60, + "priority": 1, + "focus": 1 + }, + { + "x": 72, + "y": -44.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 4, + "opacity": 40, + "priority": 1, + "focus": 1 + }, + { + "x": 64, + "y": -36.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 4, + "opacity": 20, + "priority": 1, + "focus": 1 + }, + { + "x": 120, + "y": -44.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 8, + "opacity": 100, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + 0, + 0, + 40, + 120 + ], + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 9, + "opacity": 120, + "priority": 1, + "focus": 1 + }, + { + "x": 112, + "y": -28.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 8, + "opacity": 100, + "priority": 1, + "focus": 1 + }, + { + "x": 120, + "y": -36.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 8, + "opacity": 100, + "priority": 1, + "focus": 1 + }, + { + "x": 104, + "y": -44.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 7, + "opacity": 100, + "priority": 1, + "focus": 1 + }, + { + "x": 96, + "y": -36.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 6, + "opacity": 100, + "priority": 1, + "focus": 1 + }, + { + "x": 88, + "y": -28.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 5, + "opacity": 80, + "priority": 1, + "focus": 1 + }, + { + "x": 80, + "y": -44.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 4, + "opacity": 60, + "priority": 1, + "focus": 1 + }, + { + "x": 72, + "y": -36.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 4, + "opacity": 40, + "priority": 1, + "focus": 1 + }, + { + "x": 64, + "y": -28.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 4, + "opacity": 20, + "priority": 1, + "focus": 1 + }, + { + "x": 128, + "y": -44.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 8, + "opacity": 100, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + 0, + 0, + 50, + 150 + ], + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 9, + "opacity": 150, + "priority": 1, + "focus": 1 + }, + { + "x": 120, + "y": -28.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 8, + "opacity": 100, + "priority": 1, + "focus": 1 + }, + { + "x": 128, + "y": -36.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 8, + "opacity": 100, + "priority": 1, + "focus": 1 + }, + { + "x": 112, + "y": -44.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 8, + "opacity": 100, + "priority": 1, + "focus": 1 + }, + { + "x": 104, + "y": -36.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 7, + "opacity": 100, + "priority": 1, + "focus": 1 + }, + { + "x": 96, + "y": -28.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 6, + "opacity": 100, + "priority": 1, + "focus": 1 + }, + { + "x": 88, + "y": -44.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 5, + "opacity": 80, + "priority": 1, + "focus": 1 + }, + { + "x": 80, + "y": -36.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 4, + "opacity": 60, + "priority": 1, + "focus": 1 + }, + { + "x": 72, + "y": -28.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 4, + "opacity": 40, + "priority": 1, + "focus": 1 + }, + { + "x": 64, + "y": -44.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 4, + "opacity": 20, + "priority": 1, + "focus": 1 + }, + { + "x": 136, + "y": -44.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 8, + "opacity": 100, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + 0, + 0, + 60, + 180 + ], + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 9, + "opacity": 180, + "priority": 1, + "focus": 1 + }, + { + "x": 128, + "y": -28.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 8, + "opacity": 100, + "priority": 1, + "focus": 1 + }, + { + "x": 136, + "y": -36.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 8, + "opacity": 100, + "priority": 1, + "focus": 1 + }, + { + "x": 120, + "y": -44.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 8, + "opacity": 100, + "priority": 1, + "focus": 1 + }, + { + "x": 112, + "y": -36.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 8, + "opacity": 100, + "priority": 1, + "focus": 1 + }, + { + "x": 104, + "y": -28.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 7, + "opacity": 100, + "priority": 1, + "focus": 1 + }, + { + "x": 96, + "y": -44.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 6, + "opacity": 100, + "priority": 1, + "focus": 1 + }, + { + "x": 88, + "y": -36.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 5, + "opacity": 80, + "priority": 1, + "focus": 1 + }, + { + "x": 80, + "y": -28.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 4, + "opacity": 60, + "priority": 1, + "focus": 1 + }, + { + "x": 72, + "y": -44.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 4, + "opacity": 40, + "priority": 1, + "focus": 1 + }, + { + "x": 64, + "y": -36.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 4, + "opacity": 20, + "priority": 1, + "focus": 1 + }, + { + "x": 144, + "y": -44.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 8, + "opacity": 100, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + 0, + 0, + 70, + 210 + ], + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 9, + "opacity": 210, + "priority": 1, + "focus": 1 + }, + { + "x": 136, + "y": -28.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 8, + "opacity": 100, + "priority": 1, + "focus": 1 + }, + { + "x": 144, + "y": -36.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 8, + "opacity": 100, + "priority": 1, + "focus": 1 + }, + { + "x": 128, + "y": -44.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 8, + "opacity": 100, + "priority": 1, + "focus": 1 + }, + { + "x": 120, + "y": -36.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 8, + "opacity": 100, + "priority": 1, + "focus": 1 + }, + { + "x": 112, + "y": -28.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 8, + "opacity": 100, + "priority": 1, + "focus": 1 + }, + { + "x": 104, + "y": -44.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 7, + "opacity": 100, + "priority": 1, + "focus": 1 + }, + { + "x": 96, + "y": -36.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 6, + "opacity": 100, + "priority": 1, + "focus": 1 + }, + { + "x": 88, + "y": -28.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 5, + "opacity": 80, + "priority": 1, + "focus": 1 + }, + { + "x": 80, + "y": -44.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 4, + "opacity": 60, + "priority": 1, + "focus": 1 + }, + { + "x": 72, + "y": -36.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 4, + "opacity": 40, + "priority": 1, + "focus": 1 + }, + { + "x": 64, + "y": -28.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 4, + "opacity": 20, + "priority": 1, + "focus": 1 + }, + { + "x": 152, + "y": -44.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 7, + "opacity": 80, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + 0, + 0, + 70, + 240 + ], + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 9, + "opacity": 210, + "priority": 1, + "focus": 1 + }, + { + "x": 144, + "y": -28.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 8, + "opacity": 100, + "priority": 1, + "focus": 1 + }, + { + "x": 152, + "y": -36.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 7, + "opacity": 80, + "priority": 1, + "focus": 1 + }, + { + "x": 136, + "y": -44.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 8, + "opacity": 100, + "priority": 1, + "focus": 1 + }, + { + "x": 128, + "y": -36.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 8, + "opacity": 100, + "priority": 1, + "focus": 1 + }, + { + "x": 120, + "y": -28.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 8, + "opacity": 100, + "priority": 1, + "focus": 1 + }, + { + "x": 112, + "y": -44.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 8, + "opacity": 100, + "priority": 1, + "focus": 1 + }, + { + "x": 104, + "y": -36.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 7, + "opacity": 100, + "priority": 1, + "focus": 1 + }, + { + "x": 96, + "y": -28.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 5, + "opacity": 100, + "priority": 1, + "focus": 1 + }, + { + "x": 88, + "y": -44.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 5, + "opacity": 80, + "priority": 1, + "focus": 1 + }, + { + "x": 80, + "y": -36.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 4, + "opacity": 60, + "priority": 1, + "focus": 1 + }, + { + "x": 72, + "y": -28.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 4, + "opacity": 40, + "priority": 1, + "focus": 1 + }, + { + "x": 160, + "y": -44.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 6, + "opacity": 60, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + 0, + 0, + 70, + 210 + ], + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 9, + "opacity": 210, + "priority": 1, + "focus": 1 + }, + { + "x": 152, + "y": -28.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 6, + "opacity": 60, + "priority": 1, + "focus": 1 + }, + { + "x": 160, + "y": -36.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 6, + "opacity": 60, + "priority": 1, + "focus": 1 + }, + { + "x": 144, + "y": -44.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 8, + "opacity": 100, + "priority": 1, + "focus": 1 + }, + { + "x": 136, + "y": -36.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 8, + "opacity": 100, + "priority": 1, + "focus": 1 + }, + { + "x": 128, + "y": -28.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 8, + "opacity": 100, + "priority": 1, + "focus": 1 + }, + { + "x": 120, + "y": -44.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 8, + "opacity": 100, + "priority": 1, + "focus": 1 + }, + { + "x": 112, + "y": -36.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 8, + "opacity": 100, + "priority": 1, + "focus": 1 + }, + { + "x": 104, + "y": -28.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 5, + "opacity": 100, + "priority": 1, + "focus": 1 + }, + { + "x": 96, + "y": -44.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 6, + "opacity": 100, + "priority": 1, + "focus": 1 + }, + { + "x": 88, + "y": -36.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 5, + "opacity": 80, + "priority": 1, + "focus": 1 + }, + { + "x": 80, + "y": -28.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 4, + "opacity": 60, + "priority": 1, + "focus": 1 + }, + { + "x": 168, + "y": -44.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 5, + "opacity": 40, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + 0, + 0, + 70, + 210 + ], + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 9, + "opacity": 210, + "priority": 1, + "focus": 1 + }, + { + "x": 160, + "y": -28.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 6, + "opacity": 60, + "priority": 1, + "focus": 1 + }, + { + "x": 168, + "y": -36.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 5, + "opacity": 40, + "priority": 1, + "focus": 1 + }, + { + "x": 152, + "y": -44.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 7, + "opacity": 80, + "priority": 1, + "focus": 1 + }, + { + "x": 144, + "y": -36.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 8, + "opacity": 100, + "priority": 1, + "focus": 1 + }, + { + "x": 136, + "y": -28.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 8, + "opacity": 100, + "priority": 1, + "focus": 1 + }, + { + "x": 128, + "y": -44.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 8, + "opacity": 100, + "priority": 1, + "focus": 1 + }, + { + "x": 120, + "y": -36.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 8, + "opacity": 100, + "priority": 1, + "focus": 1 + }, + { + "x": 112, + "y": -28.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 5, + "opacity": 100, + "priority": 1, + "focus": 1 + }, + { + "x": 104, + "y": -44.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 7, + "opacity": 100, + "priority": 1, + "focus": 1 + }, + { + "x": 96, + "y": -36.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 6, + "opacity": 100, + "priority": 1, + "focus": 1 + }, + { + "x": 88, + "y": -28.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 5, + "opacity": 80, + "priority": 1, + "focus": 1 + }, + { + "x": 176, + "y": -44.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 4, + "opacity": 20, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + 0, + 0, + 70, + 210 + ], + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 9, + "opacity": 210, + "priority": 1, + "focus": 1 + }, + { + "x": 168, + "y": -28.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 5, + "opacity": 40, + "priority": 1, + "focus": 1 + }, + { + "x": 176, + "y": -36.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 4, + "opacity": 20, + "priority": 1, + "focus": 1 + }, + { + "x": 160, + "y": -44.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 6, + "opacity": 50, + "priority": 1, + "focus": 1 + }, + { + "x": 152, + "y": -36.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 7, + "opacity": 80, + "priority": 1, + "focus": 1 + }, + { + "x": 144, + "y": -28.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 8, + "opacity": 100, + "priority": 1, + "focus": 1 + }, + { + "x": 136, + "y": -44.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 8, + "opacity": 100, + "priority": 1, + "focus": 1 + }, + { + "x": 128, + "y": -36.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 8, + "opacity": 100, + "priority": 1, + "focus": 1 + }, + { + "x": 120, + "y": -28.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 5, + "opacity": 100, + "priority": 1, + "focus": 1 + }, + { + "x": 112, + "y": -44.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 8, + "opacity": 100, + "priority": 1, + "focus": 1 + }, + { + "x": 104, + "y": -36.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 7, + "opacity": 100, + "priority": 1, + "focus": 1 + }, + { + "x": 96, + "y": -28.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 6, + "opacity": 100, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + 0, + 0, + 70, + 210 + ], + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 9, + "opacity": 210, + "priority": 1, + "focus": 1 + }, + { + "x": 176, + "y": -28.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 5, + "opacity": 20, + "priority": 1, + "focus": 1 + }, + { + "x": 168, + "y": -44.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 6, + "opacity": 40, + "priority": 1, + "focus": 1 + }, + { + "x": 160, + "y": -36.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 6, + "opacity": 60, + "priority": 1, + "focus": 1 + }, + { + "x": 152, + "y": -28.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 7, + "opacity": 80, + "priority": 1, + "focus": 1 + }, + { + "x": 144, + "y": -44.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 8, + "opacity": 100, + "priority": 1, + "focus": 1 + }, + { + "x": 136, + "y": -36.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 8, + "opacity": 100, + "priority": 1, + "focus": 1 + }, + { + "x": 128, + "y": -28.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 5, + "opacity": 100, + "priority": 1, + "focus": 1 + }, + { + "x": 120, + "y": -44.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 8, + "opacity": 100, + "priority": 1, + "focus": 1 + }, + { + "x": 112, + "y": -36.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 8, + "opacity": 100, + "priority": 1, + "focus": 1 + }, + { + "x": 104, + "y": -28.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 7, + "opacity": 100, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + 0, + 0, + 70, + 210 + ], + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 9, + "opacity": 210, + "priority": 1, + "focus": 1 + }, + { + "x": 176, + "y": -44.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 4, + "opacity": 20, + "priority": 1, + "focus": 1 + }, + { + "x": 168, + "y": -36.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 5, + "opacity": 40, + "priority": 1, + "focus": 1 + }, + { + "x": 160, + "y": -28.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 6, + "opacity": 60, + "priority": 1, + "focus": 1 + }, + { + "x": 152, + "y": -44.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 7, + "opacity": 80, + "priority": 1, + "focus": 1 + }, + { + "x": 144, + "y": -36.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 8, + "opacity": 100, + "priority": 1, + "focus": 1 + }, + { + "x": 136, + "y": -28.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 5, + "opacity": 100, + "priority": 1, + "focus": 1 + }, + { + "x": 128, + "y": -44.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 8, + "opacity": 100, + "priority": 1, + "focus": 1 + }, + { + "x": 120, + "y": -36.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 8, + "opacity": 100, + "priority": 1, + "focus": 1 + }, + { + "x": 112, + "y": -28.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 8, + "opacity": 100, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + 0, + 0, + 70, + 210 + ], + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 9, + "opacity": 210, + "priority": 1, + "focus": 1 + }, + { + "x": 176, + "y": -36.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 4, + "opacity": 20, + "priority": 1, + "focus": 1 + }, + { + "x": 168, + "y": -28.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 5, + "opacity": 40, + "priority": 1, + "focus": 1 + }, + { + "x": 160, + "y": -44.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 6, + "opacity": 60, + "priority": 1, + "focus": 1 + }, + { + "x": 152, + "y": -36.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 7, + "opacity": 80, + "priority": 1, + "focus": 1 + }, + { + "x": 144, + "y": -28.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 5, + "opacity": 100, + "priority": 1, + "focus": 1 + }, + { + "x": 136, + "y": -44.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 8, + "opacity": 100, + "priority": 1, + "focus": 1 + }, + { + "x": 128, + "y": -36.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 8, + "opacity": 100, + "priority": 1, + "focus": 1 + }, + { + "x": 120, + "y": -28.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 8, + "opacity": 100, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + 0, + 0, + 70, + 210 + ], + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 9, + "opacity": 210, + "priority": 1, + "focus": 1 + }, + { + "x": 176, + "y": -28.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 4, + "opacity": 20, + "priority": 1, + "focus": 1 + }, + { + "x": 168, + "y": -44.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 5, + "opacity": 40, + "priority": 1, + "focus": 1 + }, + { + "x": 160, + "y": -36.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 6, + "opacity": 60, + "priority": 1, + "focus": 1 + }, + { + "x": 152, + "y": -28.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 7, + "opacity": 80, + "priority": 1, + "focus": 1 + }, + { + "x": 144, + "y": -44.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 8, + "opacity": 100, + "priority": 1, + "focus": 1 + }, + { + "x": 136, + "y": -36.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 8, + "opacity": 100, + "priority": 1, + "focus": 1 + }, + { + "x": 128, + "y": -28.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 8, + "opacity": 100, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + 0, + 0, + 70, + 210 + ], + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 9, + "opacity": 210, + "priority": 1, + "focus": 1 + }, + { + "x": 176, + "y": -44.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 4, + "opacity": 20, + "priority": 1, + "focus": 1 + }, + { + "x": 168, + "y": -36.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 5, + "opacity": 40, + "priority": 1, + "focus": 1 + }, + { + "x": 160, + "y": -28.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 6, + "opacity": 60, + "priority": 1, + "focus": 1 + }, + { + "x": 152, + "y": -44.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 7, + "opacity": 80, + "priority": 1, + "focus": 1 + }, + { + "x": 144, + "y": -36.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 8, + "opacity": 100, + "priority": 1, + "focus": 1 + }, + { + "x": 136, + "y": -28.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 8, + "opacity": 100, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + 0, + 0, + 70, + 210 + ], + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 9, + "opacity": 210, + "priority": 1, + "focus": 1 + }, + { + "x": 176, + "y": -36.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 4, + "opacity": 20, + "priority": 1, + "focus": 1 + }, + { + "x": 160, + "y": -28.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 5, + "opacity": 40, + "priority": 1, + "focus": 1 + }, + { + "x": 160, + "y": -44.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 6, + "opacity": 60, + "priority": 1, + "focus": 1 + }, + { + "x": 152, + "y": -36.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 7, + "opacity": 80, + "priority": 1, + "focus": 1 + }, + { + "x": 144, + "y": -28.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 8, + "opacity": 100, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + 0, + 0, + 70, + 210 + ], + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 9, + "opacity": 210, + "priority": 1, + "focus": 1 + }, + { + "x": 168, + "y": -28.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 4, + "opacity": 20, + "priority": 1, + "focus": 1 + }, + { + "x": 168, + "y": -44.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 5, + "opacity": 40, + "priority": 1, + "focus": 1 + }, + { + "x": 160, + "y": -36.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 6, + "opacity": 60, + "priority": 1, + "focus": 1 + }, + { + "x": 152, + "y": -28.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 7, + "opacity": 80, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + 0, + 0, + 70, + 210 + ], + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 9, + "opacity": 210, + "priority": 1, + "focus": 1 + }, + { + "x": 176, + "y": -44.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 4, + "opacity": 20, + "priority": 1, + "focus": 1 + }, + { + "x": 168, + "y": -36.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 5, + "opacity": 40, + "priority": 1, + "focus": 1 + }, + { + "x": 160, + "y": -28.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 6, + "opacity": 60, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + 0, + 0, + 70, + 210 + ], + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 9, + "opacity": 210, + "priority": 1, + "focus": 1 + }, + { + "x": 176, + "y": -36.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 4, + "opacity": 20, + "priority": 1, + "focus": 1 + }, + { + "x": 168, + "y": -28.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 5, + "opacity": 40, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + 0, + 0, + 70, + 210 + ], + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 9, + "opacity": 210, + "priority": 1, + "focus": 1 + }, + { + "x": 176, + "y": -28.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 4, + "opacity": 20, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + 0, + 0, + 70, + 210 + ], + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 9, + "opacity": 210, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + 0, + 0, + 70, + 210 + ], + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 9, + "opacity": 210, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + 0, + 0, + 60, + 180 + ], + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 9, + "opacity": 180, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + 0, + 0, + 50, + 150 + ], + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 9, + "opacity": 150, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + 0, + 0, + 40, + 120 + ], + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 9, + "opacity": 120, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + 0, + 0, + 30, + 90 + ], + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 9, + "opacity": 90, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + 0, + 0, + 20, + 60 + ], + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 9, + "opacity": 60, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + 0, + 0, + 10, + 30 + ], + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 9, + "opacity": 30, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + } + ] + ], + "frameTimedEvents": { + "0": [ + { + "frameIndex": 0, + "resourceName": "PRAS- Sheer Cold BG", + "bgX": 0, + "bgY": 0, + "opacity": 0, + "duration": 5, + "eventType": "AnimTimedAddBgEvent" + }, + { + "frameIndex": 0, + "resourceName": "", + "bgX": 0, + "bgY": 0, + "opacity": 255, + "duration": 8, + "eventType": "AnimTimedUpdateBgEvent" + } + ], + "4": [ + { + "frameIndex": 4, + "resourceName": "PRSFX- Sheer Cold.wav", + "volume": 100, + "pitch": 100, + "eventType": "AnimTimedSoundEvent" + } + ], + "29": [ + { + "frameIndex": 29, + "resourceName": "", + "bgX": 0, + "bgY": 0, + "opacity": 0, + "duration": 8, + "eventType": "AnimTimedUpdateBgEvent" + } + ] + }, + "position": 1, + "hue": 0 +} \ No newline at end of file diff --git a/public/battle-anims/glitzy-glow.json b/public/battle-anims/glitzy-glow.json new file mode 100644 index 00000000000..87ea70debe7 --- /dev/null +++ b/public/battle-anims/glitzy-glow.json @@ -0,0 +1,7757 @@ +[ + { + "id": 354, + "graphic": "PRAS- Psycho Boost", + "frames": [ + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 20, + "y": -16.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 1, + "opacity": 80, + "tone": [ + 0, + -113, + -30, + 0 + ], + "focus": 3 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 20, + "y": -16.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 2, + "opacity": 120, + "tone": [ + 0, + -120, + -8, + 0 + ], + "focus": 3 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 20, + "y": -16.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 3, + "opacity": 200, + "tone": [ + 0, + -128, + 15, + 0 + ], + "focus": 3 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 20, + "y": -16.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 0, + "opacity": 200, + "tone": [ + 0, + -135, + 37, + 0 + ], + "focus": 3 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 20, + "y": -16.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 1, + "opacity": 200, + "tone": [ + 0, + -143, + 60, + 0 + ], + "focus": 3 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 20, + "y": -16.5, + "zoomX": 130, + "zoomY": 130, + "visible": true, + "target": 2, + "graphicFrame": 2, + "opacity": 200, + "tone": [ + 0, + -150, + 82, + 0 + ], + "focus": 3 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 20, + "y": -16.5, + "zoomX": 130, + "zoomY": 130, + "visible": true, + "target": 2, + "graphicFrame": 3, + "opacity": 200, + "tone": [ + 0, + -157, + 105, + 0 + ], + "focus": 3 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 20, + "y": -16.5, + "zoomX": 130, + "zoomY": 130, + "visible": true, + "target": 2, + "graphicFrame": 0, + "opacity": 200, + "tone": [ + -4, + -164, + 111, + 0 + ], + "focus": 3 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 20, + "y": -16.5, + "zoomX": 130, + "zoomY": 130, + "visible": true, + "target": 2, + "graphicFrame": 1, + "opacity": 200, + "tone": [ + -7, + -170, + 118, + 0 + ], + "focus": 3 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 20, + "y": -16.5, + "zoomX": 130, + "zoomY": 130, + "visible": true, + "target": 2, + "graphicFrame": 2, + "opacity": 200, + "tone": [ + -10, + -176, + 124, + 0 + ], + "focus": 3 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 20, + "y": -16.5, + "zoomX": 130, + "zoomY": 130, + "visible": true, + "target": 2, + "graphicFrame": 3, + "opacity": 200, + "tone": [ + -13, + -182, + 131, + 0 + ], + "focus": 3 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 20, + "y": -16.5, + "zoomX": 130, + "zoomY": 130, + "visible": true, + "target": 2, + "graphicFrame": 0, + "opacity": 200, + "tone": [ + -16, + -189, + 137, + 0 + ], + "focus": 3 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 20, + "y": -16.5, + "zoomX": 130, + "zoomY": 130, + "visible": true, + "target": 2, + "graphicFrame": 1, + "opacity": 200, + "tone": [ + -19, + -195, + 144, + 0 + ], + "focus": 3 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 20, + "y": -16.5, + "zoomX": 160, + "zoomY": 160, + "visible": true, + "target": 2, + "graphicFrame": 2, + "opacity": 200, + "tone": [ + -22, + -201, + 150, + 0 + ], + "focus": 3 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 20, + "y": -16.5, + "zoomX": 160, + "zoomY": 160, + "visible": true, + "target": 2, + "graphicFrame": 3, + "opacity": 200, + "tone": [ + -25, + -207, + 157, + 0 + ], + "focus": 3 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 20, + "y": -16.5, + "zoomX": 160, + "zoomY": 160, + "visible": true, + "target": 2, + "graphicFrame": 0, + "opacity": 200, + "tone": [ + -29, + -213, + 163, + 0 + ], + "focus": 3 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 20, + "y": -16.5, + "zoomX": 160, + "zoomY": 160, + "visible": true, + "target": 2, + "graphicFrame": 1, + "opacity": 200, + "tone": [ + -32, + -219, + 169, + 0 + ], + "focus": 3 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 20, + "y": -16.5, + "zoomX": 160, + "zoomY": 160, + "visible": true, + "target": 2, + "graphicFrame": 2, + "opacity": 200, + "tone": [ + -35, + -225, + 175, + 0 + ], + "focus": 3 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 20, + "y": -16.5, + "zoomX": 160, + "zoomY": 160, + "visible": true, + "target": 2, + "graphicFrame": 3, + "opacity": 200, + "tone": [ + -38, + -231, + 182, + 0 + ], + "focus": 3 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 20, + "y": -16.5, + "zoomX": 160, + "zoomY": 160, + "visible": true, + "target": 2, + "graphicFrame": 0, + "opacity": 200, + "tone": [ + -41, + -237, + 188, + 0 + ], + "focus": 3 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 20, + "y": -16.5, + "zoomX": 160, + "zoomY": 160, + "visible": true, + "target": 2, + "graphicFrame": 1, + "opacity": 200, + "tone": [ + -44, + -243, + 194, + 0 + ], + "focus": 3 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 20, + "y": -16.5, + "zoomX": 160, + "zoomY": 160, + "visible": true, + "target": 2, + "graphicFrame": 2, + "opacity": 200, + "tone": [ + -47, + -249, + 200, + 0 + ], + "focus": 3 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 20, + "y": -16.5, + "zoomX": 160, + "zoomY": 160, + "visible": true, + "target": 2, + "graphicFrame": 3, + "opacity": 200, + "tone": [ + -50, + -255, + 207, + 0 + ], + "focus": 3 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 33.5, + "y": -22.5, + "zoomX": 160, + "zoomY": 160, + "visible": true, + "target": 2, + "graphicFrame": 0, + "opacity": 200, + "tone": [ + -50, + -255, + 207, + 0 + ], + "focus": 3 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 47, + "y": -28.5, + "zoomX": 160, + "zoomY": 160, + "visible": true, + "target": 2, + "graphicFrame": 1, + "opacity": 200, + "tone": [ + -50, + -255, + 207, + 0 + ], + "focus": 3 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 60.5, + "y": -34.5, + "zoomX": 160, + "zoomY": 160, + "visible": true, + "target": 2, + "graphicFrame": 2, + "opacity": 200, + "tone": [ + -50, + -255, + 207, + 0 + ], + "priority": 1, + "focus": 3 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 74, + "y": -40.5, + "zoomX": 160, + "zoomY": 160, + "visible": true, + "target": 2, + "graphicFrame": 3, + "opacity": 200, + "tone": [ + -50, + -255, + 207, + 0 + ], + "priority": 1, + "focus": 3 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 87.5, + "y": -46.5, + "zoomX": 170, + "zoomY": 170, + "visible": true, + "target": 2, + "graphicFrame": 0, + "opacity": 200, + "tone": [ + -50, + -255, + 207, + 0 + ], + "priority": 1, + "focus": 3 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 101, + "y": -52.5, + "zoomX": 170, + "zoomY": 170, + "visible": true, + "target": 2, + "graphicFrame": 1, + "opacity": 200, + "tone": [ + -50, + -255, + 207, + 0 + ], + "priority": 1, + "focus": 3 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 114.5, + "y": -58.5, + "zoomX": 170, + "zoomY": 170, + "visible": true, + "target": 2, + "graphicFrame": 2, + "opacity": 200, + "tone": [ + -50, + -255, + 207, + 0 + ], + "priority": 1, + "focus": 3 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "priority": 1, + "focus": 1 + }, + { + "x": 128, + "y": -64, + "zoomX": 170, + "zoomY": 170, + "visible": true, + "target": 2, + "graphicFrame": 3, + "opacity": 200, + "tone": [ + -50, + -255, + 207, + 0 + ], + "priority": 1, + "focus": 3 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + -15, + -10, + -15, + 0 + ], + "priority": 1, + "focus": 1 + }, + { + "x": 128, + "y": -64, + "zoomX": 180, + "zoomY": 180, + "visible": true, + "target": 2, + "graphicFrame": 0, + "opacity": 127, + "tone": [ + -45, + -230, + 186, + 0 + ], + "priority": 1, + "focus": 3 + }, + { + "x": 110, + "y": -82.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 4, + "opacity": 60, + "priority": 1, + "focus": 3 + }, + { + "x": 128, + "y": -64, + "zoomX": 160, + "zoomY": 160, + "visible": true, + "target": 2, + "graphicFrame": 9, + "opacity": 50, + "priority": 1, + "focus": 3 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + -30, + -19, + -30, + 0 + ], + "priority": 1, + "focus": 1 + }, + { + "x": 128, + "y": -64, + "zoomX": 180, + "zoomY": 180, + "visible": true, + "target": 2, + "graphicFrame": 1, + "opacity": 63, + "tone": [ + -40, + -204, + 165, + 0 + ], + "priority": 1, + "focus": 3 + }, + { + "x": 110, + "y": -82.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 4, + "opacity": 120, + "priority": 1, + "focus": 3 + }, + { + "x": 128, + "y": -64, + "zoomX": 140, + "zoomY": 140, + "angle": 60, + "visible": true, + "target": 2, + "graphicFrame": 9, + "opacity": 100, + "priority": 1, + "focus": 3 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 124, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + -45, + -28, + -45, + 0 + ], + "priority": 1, + "focus": 1 + }, + { + "x": 110, + "y": -82.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 5, + "opacity": 180, + "priority": 1, + "focus": 3 + }, + { + "x": 145, + "y": -50.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 4, + "opacity": 60, + "priority": 1, + "focus": 3 + }, + { + "x": 124, + "y": -64, + "zoomX": 120, + "zoomY": 120, + "angle": 120, + "visible": true, + "target": 2, + "graphicFrame": 9, + "opacity": 150, + "priority": 1, + "focus": 3 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 120, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + -60, + -38, + -60, + 0 + ], + "priority": 1, + "focus": 1 + }, + { + "x": 110, + "y": -82.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 6, + "opacity": 180, + "priority": 1, + "focus": 3 + }, + { + "x": 145, + "y": -50.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 4, + "opacity": 120, + "priority": 1, + "focus": 3 + }, + { + "x": 120, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "angle": 180, + "visible": true, + "target": 2, + "graphicFrame": 9, + "opacity": 200, + "priority": 1, + "focus": 3 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 124, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + -75, + -47, + -75, + 0 + ], + "priority": 1, + "focus": 1 + }, + { + "x": 110, + "y": -82.5, + "zoomX": 120, + "zoomY": 120, + "visible": true, + "target": 2, + "graphicFrame": 6, + "opacity": 180, + "priority": 1, + "focus": 3 + }, + { + "x": 145, + "y": -51, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 5, + "opacity": 180, + "priority": 1, + "focus": 3 + }, + { + "x": 124, + "y": -64, + "zoomX": 180, + "zoomY": 180, + "angle": 240, + "visible": true, + "target": 2, + "graphicFrame": 8, + "opacity": 200, + "priority": 1, + "focus": 3 + }, + { + "x": 98.5, + "y": -45.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 4, + "opacity": 60, + "priority": 1, + "focus": 3 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + -90, + -56, + -90, + 0 + ], + "priority": 1, + "focus": 1 + }, + { + "x": 110, + "y": -82.5, + "zoomX": 140, + "zoomY": 140, + "visible": true, + "target": 2, + "graphicFrame": 7, + "opacity": 180, + "tone": [ + -20, + -102, + 82, + 0 + ], + "priority": 1, + "focus": 3 + }, + { + "x": 145, + "y": -51, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 6, + "opacity": 180, + "priority": 1, + "focus": 3 + }, + { + "x": 128, + "y": -64, + "zoomX": 160, + "zoomY": 160, + "angle": 300, + "visible": true, + "target": 2, + "graphicFrame": 8, + "opacity": 200, + "priority": 1, + "focus": 3 + }, + { + "x": 98.5, + "y": -45.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 4, + "opacity": 120, + "priority": 1, + "focus": 3 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 132, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + -105, + -66, + -105, + 0 + ], + "priority": 1, + "focus": 1 + }, + { + "x": 110, + "y": -82.5, + "zoomX": 160, + "zoomY": 160, + "visible": true, + "target": 2, + "graphicFrame": 7, + "opacity": 120, + "tone": [ + -15, + -77, + 62, + 0 + ], + "priority": 1, + "focus": 3 + }, + { + "x": 145, + "y": -51, + "zoomX": 120, + "zoomY": 120, + "visible": true, + "target": 2, + "graphicFrame": 6, + "opacity": 180, + "priority": 1, + "focus": 3 + }, + { + "x": 132, + "y": -64, + "zoomX": 140, + "zoomY": 140, + "visible": true, + "target": 2, + "graphicFrame": 8, + "opacity": 200, + "priority": 1, + "focus": 3 + }, + { + "x": 98.5, + "y": -45.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 5, + "opacity": 180, + "priority": 1, + "focus": 3 + }, + { + "x": 145.5, + "y": -87, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 4, + "opacity": 60, + "priority": 1, + "focus": 3 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 136, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + -120, + -75, + -120, + 0 + ], + "priority": 1, + "focus": 1 + }, + { + "x": 110, + "y": -82.5, + "zoomX": 180, + "zoomY": 180, + "visible": true, + "target": 2, + "graphicFrame": 7, + "opacity": 60, + "tone": [ + -10, + -51, + 41, + 0 + ], + "priority": 1, + "focus": 3 + }, + { + "x": 145, + "y": -51, + "zoomX": 140, + "zoomY": 140, + "visible": true, + "target": 2, + "graphicFrame": 7, + "opacity": 180, + "priority": 1, + "focus": 3 + }, + { + "x": 136, + "y": -64, + "zoomX": 120, + "zoomY": 120, + "angle": 60, + "visible": true, + "target": 2, + "graphicFrame": 8, + "opacity": 200, + "priority": 1, + "focus": 3 + }, + { + "x": 98.5, + "y": -45.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 6, + "opacity": 180, + "priority": 1, + "focus": 3 + }, + { + "x": 145.5, + "y": -87, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 4, + "opacity": 120, + "priority": 1, + "focus": 3 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 132, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + -135, + -84, + -135, + 0 + ], + "priority": 1, + "focus": 1 + }, + { + "x": 145, + "y": -51, + "zoomX": 160, + "zoomY": 160, + "visible": true, + "target": 2, + "graphicFrame": 7, + "opacity": 120, + "tone": [ + -5, + -26, + 20, + 0 + ], + "priority": 1, + "focus": 3 + }, + { + "x": 132, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "angle": 120, + "visible": true, + "target": 2, + "graphicFrame": 8, + "opacity": 200, + "priority": 1, + "focus": 3 + }, + { + "x": 98.5, + "y": -45.5, + "zoomX": 120, + "zoomY": 120, + "visible": true, + "target": 2, + "graphicFrame": 6, + "opacity": 180, + "priority": 1, + "focus": 3 + }, + { + "x": 145.5, + "y": -87, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 5, + "opacity": 180, + "priority": 1, + "focus": 3 + }, + { + "x": 111, + "y": -81, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 4, + "opacity": 60, + "priority": 1, + "focus": 3 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + -138, + -95, + -132, + 0 + ], + "priority": 1, + "focus": 1 + }, + { + "x": 145, + "y": -51, + "zoomX": 180, + "zoomY": 180, + "visible": true, + "target": 2, + "graphicFrame": 7, + "opacity": 60, + "priority": 1, + "focus": 3 + }, + { + "x": 128, + "y": -64, + "zoomX": 80, + "zoomY": 80, + "angle": 180, + "visible": true, + "target": 2, + "graphicFrame": 8, + "opacity": 200, + "priority": 1, + "focus": 3 + }, + { + "x": 98.5, + "y": -45.5, + "zoomX": 140, + "zoomY": 140, + "visible": true, + "target": 2, + "graphicFrame": 7, + "opacity": 180, + "priority": 1, + "focus": 3 + }, + { + "x": 145.5, + "y": -87, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 6, + "opacity": 180, + "priority": 1, + "focus": 3 + }, + { + "x": 111, + "y": -81, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 4, + "opacity": 120, + "priority": 1, + "focus": 3 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 124, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + -140, + -106, + -128, + 0 + ], + "priority": 1, + "focus": 1 + }, + { + "x": 124, + "y": -64, + "zoomX": 60, + "zoomY": 60, + "angle": 240, + "visible": true, + "target": 2, + "graphicFrame": 8, + "opacity": 150, + "priority": 1, + "focus": 3 + }, + { + "x": 98.5, + "y": -45.5, + "zoomX": 160, + "zoomY": 160, + "visible": true, + "target": 2, + "graphicFrame": 7, + "opacity": 120, + "tone": [ + -5, + -26, + 20, + 0 + ], + "priority": 1, + "focus": 3 + }, + { + "x": 145.5, + "y": -87, + "zoomX": 120, + "zoomY": 120, + "visible": true, + "target": 2, + "graphicFrame": 6, + "opacity": 180, + "priority": 1, + "focus": 3 + }, + { + "x": 111, + "y": -81, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 5, + "opacity": 180, + "priority": 1, + "focus": 3 + }, + { + "x": 124, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 4, + "opacity": 60, + "priority": 1, + "focus": 3 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 120, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + -142, + -117, + -125, + 0 + ], + "priority": 1, + "focus": 1 + }, + { + "x": 120, + "y": -64, + "zoomX": 40, + "zoomY": 40, + "angle": 300, + "visible": true, + "target": 2, + "graphicFrame": 8, + "opacity": 100, + "priority": 1, + "focus": 3 + }, + { + "x": 98.5, + "y": -45.5, + "zoomX": 180, + "zoomY": 180, + "visible": true, + "target": 2, + "graphicFrame": 7, + "opacity": 60, + "priority": 1, + "focus": 3 + }, + { + "x": 145.5, + "y": -87, + "zoomX": 140, + "zoomY": 140, + "visible": true, + "target": 2, + "graphicFrame": 7, + "opacity": 180, + "priority": 1, + "focus": 3 + }, + { + "x": 111, + "y": -81, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 6, + "opacity": 180, + "priority": 1, + "focus": 3 + }, + { + "x": 124, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 4, + "opacity": 120, + "priority": 1, + "focus": 3 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 124, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + -144, + -127, + -121, + 0 + ], + "priority": 1, + "focus": 1 + }, + { + "x": 124, + "y": -64, + "zoomX": 20, + "zoomY": 20, + "visible": true, + "target": 2, + "graphicFrame": 8, + "opacity": 50, + "priority": 1, + "focus": 3 + }, + { + "x": 145.5, + "y": -87, + "zoomX": 160, + "zoomY": 160, + "visible": true, + "target": 2, + "graphicFrame": 7, + "opacity": 120, + "tone": [ + -5, + -26, + 20, + 0 + ], + "priority": 1, + "focus": 3 + }, + { + "x": 111, + "y": -81, + "zoomX": 120, + "zoomY": 120, + "visible": true, + "target": 2, + "graphicFrame": 6, + "opacity": 180, + "priority": 1, + "focus": 3 + }, + { + "x": 124.5, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 5, + "opacity": 180, + "priority": 1, + "focus": 3 + }, + { + "x": 148.5, + "y": -44.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 4, + "opacity": 60, + "priority": 1, + "focus": 3 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + -146, + -138, + -118, + 0 + ], + "priority": 1, + "focus": 1 + }, + { + "x": 145.5, + "y": -87, + "zoomX": 180, + "zoomY": 180, + "visible": true, + "target": 2, + "graphicFrame": 7, + "opacity": 60, + "priority": 1, + "focus": 3 + }, + { + "x": 111, + "y": -81, + "zoomX": 140, + "zoomY": 140, + "visible": true, + "target": 2, + "graphicFrame": 7, + "opacity": 180, + "priority": 1, + "focus": 3 + }, + { + "x": 124.5, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 6, + "opacity": 180, + "priority": 1, + "focus": 3 + }, + { + "x": 148.5, + "y": -44.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 4, + "opacity": 120, + "priority": 1, + "focus": 3 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 132, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + -148, + -149, + -114, + 0 + ], + "priority": 1, + "focus": 1 + }, + { + "x": 111, + "y": -81, + "zoomX": 160, + "zoomY": 160, + "visible": true, + "target": 2, + "graphicFrame": 7, + "opacity": 120, + "tone": [ + -5, + -26, + 20, + 0 + ], + "priority": 1, + "focus": 3 + }, + { + "x": 128, + "y": -64, + "zoomX": 120, + "zoomY": 120, + "visible": true, + "target": 2, + "graphicFrame": 6, + "opacity": 180, + "priority": 1, + "focus": 3 + }, + { + "x": 148.5, + "y": -44.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 5, + "opacity": 180, + "priority": 1, + "focus": 3 + }, + { + "x": 99, + "y": -38.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 4, + "opacity": 60, + "priority": 1, + "focus": 3 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 136, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + -150, + -159, + -110, + 0 + ], + "priority": 1, + "focus": 1 + }, + { + "x": 111, + "y": -81, + "zoomX": 180, + "zoomY": 180, + "visible": true, + "target": 2, + "graphicFrame": 7, + "opacity": 60, + "priority": 1, + "focus": 3 + }, + { + "x": 128, + "y": -64, + "zoomX": 140, + "zoomY": 140, + "visible": true, + "target": 2, + "graphicFrame": 7, + "opacity": 180, + "priority": 1, + "focus": 3 + }, + { + "x": 148.5, + "y": -44.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 6, + "opacity": 180, + "priority": 1, + "focus": 3 + }, + { + "x": 99, + "y": -38.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 4, + "opacity": 120, + "priority": 1, + "focus": 3 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 132, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + -150, + -165, + -116, + 0 + ], + "priority": 1, + "focus": 1 + }, + { + "x": 128, + "y": -64, + "zoomX": 160, + "zoomY": 160, + "visible": true, + "target": 2, + "graphicFrame": 7, + "opacity": 120, + "tone": [ + -5, + -26, + 20, + 0 + ], + "priority": 1, + "focus": 3 + }, + { + "x": 148.5, + "y": -44.5, + "zoomX": 120, + "zoomY": 120, + "visible": true, + "target": 2, + "graphicFrame": 6, + "opacity": 180, + "priority": 1, + "focus": 3 + }, + { + "x": 99, + "y": -38.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 5, + "opacity": 180, + "priority": 1, + "focus": 3 + }, + { + "x": 132.5, + "y": -92, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 4, + "opacity": 60, + "priority": 1, + "focus": 3 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + -150, + -171, + -122, + 0 + ], + "priority": 1, + "focus": 1 + }, + { + "x": 132, + "y": -64, + "zoomX": 180, + "zoomY": 180, + "visible": true, + "target": 2, + "graphicFrame": 7, + "opacity": 60, + "priority": 1, + "focus": 3 + }, + { + "x": 148.5, + "y": -44.5, + "zoomX": 140, + "zoomY": 140, + "visible": true, + "target": 2, + "graphicFrame": 7, + "opacity": 180, + "priority": 1, + "focus": 3 + }, + { + "x": 99, + "y": -38.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 6, + "opacity": 180, + "priority": 1, + "focus": 3 + }, + { + "x": 132.5, + "y": -92, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 4, + "opacity": 60, + "priority": 1, + "focus": 3 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 124, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + -150, + -177, + -128, + 0 + ], + "priority": 1, + "focus": 1 + }, + { + "x": 148.5, + "y": -44.5, + "zoomX": 160, + "zoomY": 160, + "visible": true, + "target": 2, + "graphicFrame": 7, + "opacity": 120, + "tone": [ + -5, + -26, + 20, + 0 + ], + "priority": 1, + "focus": 3 + }, + { + "x": 99, + "y": -38.5, + "zoomX": 120, + "zoomY": 120, + "visible": true, + "target": 2, + "graphicFrame": 6, + "opacity": 180, + "priority": 1, + "focus": 3 + }, + { + "x": 132.5, + "y": -92, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 5, + "opacity": 180, + "priority": 1, + "focus": 3 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 4, + "opacity": 60, + "priority": 1, + "focus": 3 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 120, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + -150, + -183, + -133, + 0 + ], + "priority": 1, + "focus": 1 + }, + { + "x": 148.5, + "y": -44.5, + "zoomX": 180, + "zoomY": 180, + "visible": true, + "target": 2, + "graphicFrame": 7, + "opacity": 60, + "priority": 1, + "focus": 3 + }, + { + "x": 99, + "y": -38.5, + "zoomX": 140, + "zoomY": 140, + "visible": true, + "target": 2, + "graphicFrame": 7, + "opacity": 180, + "priority": 1, + "focus": 3 + }, + { + "x": 132.5, + "y": -92, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 6, + "opacity": 180, + "priority": 1, + "focus": 3 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 4, + "opacity": 120, + "priority": 1, + "focus": 3 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 124, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + -150, + -189, + -139, + 0 + ], + "priority": 1, + "focus": 1 + }, + { + "x": 99, + "y": -38.5, + "zoomX": 160, + "zoomY": 160, + "visible": true, + "target": 2, + "graphicFrame": 7, + "opacity": 120, + "tone": [ + -5, + -26, + 20, + 0 + ], + "priority": 1, + "focus": 3 + }, + { + "x": 132.5, + "y": -92, + "zoomX": 120, + "zoomY": 120, + "visible": true, + "target": 2, + "graphicFrame": 6, + "opacity": 180, + "priority": 1, + "focus": 3 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 5, + "opacity": 180, + "priority": 1, + "focus": 3 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + -150, + -195, + -145, + 0 + ], + "priority": 1, + "focus": 1 + }, + { + "x": 99, + "y": -38.5, + "zoomX": 180, + "zoomY": 180, + "visible": true, + "target": 2, + "graphicFrame": 7, + "opacity": 60, + "priority": 1, + "focus": 3 + }, + { + "x": 132.5, + "y": -92, + "zoomX": 140, + "zoomY": 140, + "visible": true, + "target": 2, + "graphicFrame": 7, + "opacity": 180, + "priority": 1, + "focus": 3 + }, + { + "x": 124, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 6, + "opacity": 180, + "priority": 1, + "focus": 3 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 132, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + -150, + -200, + -150, + 0 + ], + "priority": 1, + "focus": 1 + }, + { + "x": 132.5, + "y": -92, + "zoomX": 160, + "zoomY": 160, + "visible": true, + "target": 2, + "graphicFrame": 7, + "opacity": 120, + "tone": [ + -5, + -26, + 20, + 0 + ], + "priority": 1, + "focus": 3 + }, + { + "x": 128, + "y": -64, + "zoomX": 120, + "zoomY": 120, + "visible": true, + "target": 2, + "graphicFrame": 6, + "opacity": 180, + "priority": 1, + "focus": 3 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 136, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + -135, + -180, + -135, + 0 + ], + "priority": 1, + "focus": 1 + }, + { + "x": 132.5, + "y": -92, + "zoomX": 180, + "zoomY": 180, + "visible": true, + "target": 2, + "graphicFrame": 7, + "opacity": 60, + "priority": 1, + "focus": 3 + }, + { + "x": 128, + "y": -64, + "zoomX": 140, + "zoomY": 140, + "visible": true, + "target": 2, + "graphicFrame": 7, + "opacity": 180, + "priority": 1, + "focus": 3 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 132, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + -120, + -160, + -120, + 0 + ], + "priority": 1, + "focus": 1 + }, + { + "x": 128, + "y": -64, + "zoomX": 160, + "zoomY": 160, + "visible": true, + "target": 2, + "graphicFrame": 7, + "opacity": 120, + "tone": [ + -5, + -26, + 20, + 0 + ], + "priority": 1, + "focus": 3 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + -105, + -140, + -105, + 0 + ], + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 128, + "y": -64, + "zoomX": 180, + "zoomY": 180, + "visible": true, + "target": 2, + "graphicFrame": 7, + "opacity": 60, + "locked": true, + "priority": 1, + "focus": 3 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + -90, + -120, + -90, + 0 + ], + "locked": true, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + -75, + -100, + -75, + 0 + ], + "locked": true, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + -60, + -80, + -60, + 0 + ], + "locked": true, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + -45, + -60, + -45, + 0 + ], + "locked": true, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + -30, + -40, + -30, + 0 + ], + "locked": true, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + -15, + -20, + -15, + 0 + ], + "locked": true, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + } + ] + ], + "frameTimedEvents": { + "0": [ + { + "frameIndex": 0, + "resourceName": "PRAS- Psycho Boost BG", + "bgX": 0, + "bgY": 0, + "opacity": 0, + "duration": 5, + "eventType": "AnimTimedAddBgEvent" + }, + { + "frameIndex": 0, + "resourceName": "", + "bgX": 0, + "bgY": 0, + "opacity": 255, + "duration": 10, + "eventType": "AnimTimedUpdateBgEvent" + }, + { + "frameIndex": 0, + "resourceName": "PRSFX- Psycho Boost1.wav", + "volume": 100, + "pitch": 100, + "eventType": "AnimTimedSoundEvent" + } + ], + "32": [ + { + "frameIndex": 32, + "resourceName": "PRSFX- Psycho Boost2.wav", + "volume": 100, + "pitch": 110, + "eventType": "AnimTimedSoundEvent" + } + ], + "62": [ + { + "frameIndex": 62, + "resourceName": "", + "bgX": 0, + "bgY": 0, + "opacity": 0, + "duration": 5, + "eventType": "AnimTimedUpdateBgEvent" + } + ] + }, + "position": 4, + "hue": 0 + }, + { + "id": 354, + "graphic": "PRAS- Psycho Boost", + "frames": [ + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 108, + "y": -48.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 3, + "opacity": 80, + "tone": [ + 0, + -113, + -30, + 0 + ], + "priority": 1, + "focus": 3 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 108, + "y": -48.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 2, + "opacity": 120, + "tone": [ + 0, + -120, + -8, + 0 + ], + "priority": 1, + "focus": 3 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 108, + "y": -48.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 1, + "opacity": 200, + "tone": [ + 0, + -128, + 15, + 0 + ], + "priority": 1, + "focus": 3 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 108, + "y": -48.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 0, + "opacity": 200, + "tone": [ + 0, + -135, + 37, + 0 + ], + "priority": 1, + "focus": 3 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 108, + "y": -48.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 3, + "opacity": 200, + "tone": [ + 0, + -143, + 60, + 0 + ], + "priority": 1, + "focus": 3 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 108, + "y": -48.5, + "zoomX": 130, + "zoomY": 130, + "visible": true, + "target": 2, + "graphicFrame": 2, + "opacity": 200, + "tone": [ + 0, + -150, + 82, + 0 + ], + "priority": 1, + "focus": 3 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 108, + "y": -48.5, + "zoomX": 130, + "zoomY": 130, + "visible": true, + "target": 2, + "graphicFrame": 1, + "opacity": 200, + "tone": [ + 0, + -157, + 105, + 0 + ], + "priority": 1, + "focus": 3 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 108, + "y": -48.5, + "zoomX": 130, + "zoomY": 130, + "visible": true, + "target": 2, + "graphicFrame": 0, + "opacity": 200, + "tone": [ + -4, + -164, + 111, + 0 + ], + "priority": 1, + "focus": 3 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 108, + "y": -48.5, + "zoomX": 130, + "zoomY": 130, + "visible": true, + "target": 2, + "graphicFrame": 3, + "opacity": 200, + "tone": [ + -7, + -170, + 118, + 0 + ], + "priority": 1, + "focus": 3 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 108, + "y": -48.5, + "zoomX": 130, + "zoomY": 130, + "visible": true, + "target": 2, + "graphicFrame": 2, + "opacity": 200, + "tone": [ + -10, + -176, + 124, + 0 + ], + "priority": 1, + "focus": 3 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 108, + "y": -48.5, + "zoomX": 130, + "zoomY": 130, + "visible": true, + "target": 2, + "graphicFrame": 1, + "opacity": 200, + "tone": [ + -13, + -182, + 131, + 0 + ], + "priority": 1, + "focus": 3 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 108, + "y": -48.5, + "zoomX": 130, + "zoomY": 130, + "visible": true, + "target": 2, + "graphicFrame": 0, + "opacity": 200, + "tone": [ + -16, + -189, + 137, + 0 + ], + "priority": 1, + "focus": 3 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 108, + "y": -48.5, + "zoomX": 130, + "zoomY": 130, + "visible": true, + "target": 2, + "graphicFrame": 3, + "opacity": 200, + "tone": [ + -19, + -195, + 144, + 0 + ], + "priority": 1, + "focus": 3 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 108, + "y": -48.5, + "zoomX": 160, + "zoomY": 160, + "visible": true, + "target": 2, + "graphicFrame": 2, + "opacity": 200, + "tone": [ + -22, + -201, + 150, + 0 + ], + "priority": 1, + "focus": 3 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 108, + "y": -48.5, + "zoomX": 160, + "zoomY": 160, + "visible": true, + "target": 2, + "graphicFrame": 1, + "opacity": 200, + "tone": [ + -25, + -207, + 157, + 0 + ], + "priority": 1, + "focus": 3 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 108, + "y": -48.5, + "zoomX": 160, + "zoomY": 160, + "visible": true, + "target": 2, + "graphicFrame": 0, + "opacity": 200, + "tone": [ + -29, + -213, + 163, + 0 + ], + "priority": 1, + "focus": 3 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 108, + "y": -48.5, + "zoomX": 160, + "zoomY": 160, + "visible": true, + "target": 2, + "graphicFrame": 3, + "opacity": 200, + "tone": [ + -32, + -219, + 169, + 0 + ], + "priority": 1, + "focus": 3 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 108, + "y": -48.5, + "zoomX": 160, + "zoomY": 160, + "visible": true, + "target": 2, + "graphicFrame": 2, + "opacity": 200, + "tone": [ + -35, + -225, + 175, + 0 + ], + "priority": 1, + "focus": 3 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 108, + "y": -48.5, + "zoomX": 160, + "zoomY": 160, + "visible": true, + "target": 2, + "graphicFrame": 1, + "opacity": 200, + "tone": [ + -38, + -231, + 182, + 0 + ], + "priority": 1, + "focus": 3 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 108, + "y": -48.5, + "zoomX": 160, + "zoomY": 160, + "visible": true, + "target": 2, + "graphicFrame": 0, + "opacity": 200, + "tone": [ + -41, + -237, + 188, + 0 + ], + "priority": 1, + "focus": 3 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 108, + "y": -48.5, + "zoomX": 160, + "zoomY": 160, + "visible": true, + "target": 2, + "graphicFrame": 3, + "opacity": 200, + "tone": [ + -44, + -243, + 194, + 0 + ], + "priority": 1, + "focus": 3 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 108, + "y": -48.5, + "zoomX": 160, + "zoomY": 160, + "visible": true, + "target": 2, + "graphicFrame": 2, + "opacity": 200, + "tone": [ + -47, + -249, + 200, + 0 + ], + "priority": 1, + "focus": 3 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 96, + "y": -43.5, + "zoomX": 152, + "zoomY": 152, + "visible": true, + "target": 2, + "graphicFrame": 1, + "opacity": 200, + "tone": [ + -50, + -255, + 207, + 0 + ], + "priority": 1, + "focus": 3 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 84, + "y": -38, + "zoomX": 154, + "zoomY": 154, + "visible": true, + "target": 2, + "graphicFrame": 0, + "opacity": 200, + "tone": [ + -50, + -255, + 207, + 0 + ], + "priority": 1, + "focus": 3 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 72, + "y": -32.5, + "zoomX": 156, + "zoomY": 156, + "visible": true, + "target": 2, + "graphicFrame": 3, + "opacity": 200, + "tone": [ + -50, + -255, + 207, + 0 + ], + "priority": 1, + "focus": 3 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 60, + "y": -27, + "zoomX": 158, + "zoomY": 158, + "visible": true, + "target": 2, + "graphicFrame": 2, + "opacity": 200, + "tone": [ + -50, + -255, + 207, + 0 + ], + "priority": 1, + "focus": 3 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 48, + "y": -22, + "zoomX": 161, + "zoomY": 161, + "visible": true, + "target": 2, + "graphicFrame": 1, + "opacity": 200, + "tone": [ + -50, + -255, + 207, + 0 + ], + "focus": 3 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 36, + "y": -16.5, + "zoomX": 163, + "zoomY": 163, + "visible": true, + "target": 2, + "graphicFrame": 0, + "opacity": 200, + "tone": [ + -50, + -255, + 207, + 0 + ], + "focus": 3 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 24, + "y": -11, + "zoomX": 165, + "zoomY": 165, + "visible": true, + "target": 2, + "graphicFrame": 3, + "opacity": 200, + "tone": [ + -50, + -255, + 207, + 0 + ], + "focus": 3 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 12, + "y": -5.5, + "zoomX": 167, + "zoomY": 167, + "visible": true, + "target": 2, + "graphicFrame": 2, + "opacity": 200, + "tone": [ + -50, + -255, + 207, + 0 + ], + "focus": 3 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "priority": 1, + "focus": 1 + }, + { + "x": 0, + "y": 0, + "zoomX": 170, + "zoomY": 170, + "visible": true, + "target": 2, + "graphicFrame": 1, + "opacity": 200, + "tone": [ + -50, + -255, + 207, + 0 + ], + "focus": 3 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + -15, + -10, + -15, + 0 + ], + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 0, + "y": 0, + "zoomX": 180, + "zoomY": 180, + "visible": true, + "target": 2, + "graphicFrame": 0, + "opacity": 127, + "tone": [ + -45, + -230, + 186, + 0 + ], + "priority": 1, + "focus": 2 + }, + { + "x": -18, + "y": -18.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 4, + "opacity": 60, + "priority": 1, + "focus": 3 + }, + { + "x": 0, + "y": 0, + "zoomX": 160, + "zoomY": 160, + "visible": true, + "target": 2, + "graphicFrame": 9, + "opacity": 50, + "priority": 1, + "focus": 3 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + -30, + -19, + -30, + 0 + ], + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 0, + "y": 0, + "zoomX": 180, + "zoomY": 180, + "visible": true, + "target": 2, + "graphicFrame": 3, + "opacity": 63, + "tone": [ + -40, + -205, + 165, + 0 + ], + "priority": 1, + "focus": 2 + }, + { + "x": -18, + "y": -18.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 4, + "opacity": 120, + "priority": 1, + "focus": 3 + }, + { + "x": 0, + "y": 0, + "zoomX": 140, + "zoomY": 140, + "angle": 60, + "visible": true, + "target": 2, + "graphicFrame": 9, + "opacity": 100, + "priority": 1, + "focus": 3 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + -45, + -28, + -45, + 0 + ], + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": -18, + "y": -18.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 5, + "opacity": 180, + "tone": [ + -35, + -179, + 144, + 0 + ], + "priority": 1, + "focus": 2 + }, + { + "x": 17, + "y": 13.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 4, + "opacity": 60, + "priority": 1, + "focus": 2 + }, + { + "x": -4, + "y": 0, + "zoomX": 120, + "zoomY": 120, + "angle": 120, + "visible": true, + "target": 2, + "graphicFrame": 9, + "opacity": 150, + "priority": 1, + "focus": 2 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + -60, + -38, + -60, + 0 + ], + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": -18, + "y": -18.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 6, + "opacity": 180, + "tone": [ + -30, + -154, + 123, + 0 + ], + "priority": 1, + "focus": 2 + }, + { + "x": 17, + "y": 13.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 4, + "opacity": 120, + "priority": 1, + "focus": 2 + }, + { + "x": -8, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "angle": 180, + "visible": true, + "target": 2, + "graphicFrame": 9, + "opacity": 200, + "priority": 1, + "focus": 2 + } + ], + [ + { + "x": -4, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + -75, + -47, + -75, + 0 + ], + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "priority": 1, + "focus": 1 + }, + { + "x": -18, + "y": -18.5, + "zoomX": 120, + "zoomY": 120, + "visible": true, + "target": 2, + "graphicFrame": 6, + "opacity": 180, + "tone": [ + -25, + -128, + 103, + 0 + ], + "priority": 1, + "focus": 2 + }, + { + "x": 17, + "y": 13, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 5, + "opacity": 180, + "priority": 1, + "focus": 2 + }, + { + "x": -4, + "y": 0, + "zoomX": 180, + "zoomY": 180, + "angle": 240, + "visible": true, + "target": 2, + "graphicFrame": 8, + "opacity": 200, + "priority": 1, + "focus": 2 + }, + { + "x": -29.5, + "y": 18.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 4, + "opacity": 60, + "priority": 1, + "focus": 2 + } + ], + [ + { + "x": -8, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + -90, + -56, + -90, + 0 + ], + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "priority": 1, + "focus": 1 + }, + { + "x": -18, + "y": -18.5, + "zoomX": 140, + "zoomY": 140, + "visible": true, + "target": 2, + "graphicFrame": 7, + "opacity": 180, + "tone": [ + -20, + -103, + 82, + 0 + ], + "priority": 1, + "focus": 2 + }, + { + "x": 17, + "y": 13, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 6, + "opacity": 180, + "priority": 1, + "focus": 2 + }, + { + "x": 0, + "y": 0, + "zoomX": 160, + "zoomY": 160, + "angle": 300, + "visible": true, + "target": 2, + "graphicFrame": 8, + "opacity": 200, + "priority": 1, + "focus": 2 + }, + { + "x": -29.5, + "y": 18.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 4, + "opacity": 120, + "priority": 1, + "focus": 2 + } + ], + [ + { + "x": -4, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + -105, + -66, + -105, + 0 + ], + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "priority": 1, + "focus": 1 + }, + { + "x": -18, + "y": -18.5, + "zoomX": 160, + "zoomY": 160, + "visible": true, + "target": 2, + "graphicFrame": 7, + "opacity": 120, + "tone": [ + -15, + -77, + 61, + 0 + ], + "priority": 1, + "focus": 2 + }, + { + "x": 17, + "y": 13, + "zoomX": 120, + "zoomY": 120, + "visible": true, + "target": 2, + "graphicFrame": 6, + "opacity": 180, + "priority": 1, + "focus": 2 + }, + { + "x": 4, + "y": 0, + "zoomX": 140, + "zoomY": 140, + "visible": true, + "target": 2, + "graphicFrame": 8, + "opacity": 200, + "priority": 1, + "focus": 2 + }, + { + "x": -29.5, + "y": 18.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 5, + "opacity": 180, + "priority": 1, + "focus": 2 + }, + { + "x": 17.5, + "y": -23, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 4, + "opacity": 60, + "priority": 1, + "focus": 2 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + -120, + -75, + -120, + 0 + ], + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "priority": 1, + "focus": 1 + }, + { + "x": -18, + "y": -18.5, + "zoomX": 180, + "zoomY": 180, + "visible": true, + "target": 2, + "graphicFrame": 7, + "opacity": 60, + "tone": [ + -10, + -52, + 40, + 0 + ], + "priority": 1, + "focus": 2 + }, + { + "x": 17, + "y": 13, + "zoomX": 140, + "zoomY": 140, + "visible": true, + "target": 2, + "graphicFrame": 7, + "opacity": 180, + "priority": 1, + "focus": 2 + }, + { + "x": 8, + "y": 0, + "zoomX": 120, + "zoomY": 120, + "angle": 60, + "visible": true, + "target": 2, + "graphicFrame": 8, + "opacity": 200, + "priority": 1, + "focus": 2 + }, + { + "x": -29.5, + "y": 18.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 6, + "opacity": 180, + "priority": 1, + "focus": 2 + }, + { + "x": 17.5, + "y": -23, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 4, + "opacity": 120, + "priority": 1, + "focus": 2 + } + ], + [ + { + "x": 4, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + -135, + -84, + -135, + 0 + ], + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "priority": 1, + "focus": 1 + }, + { + "x": 17, + "y": 13, + "zoomX": 160, + "zoomY": 160, + "visible": true, + "target": 2, + "graphicFrame": 7, + "opacity": 120, + "tone": [ + -5, + -26, + 20, + 0 + ], + "priority": 1, + "focus": 2 + }, + { + "x": 4, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "angle": 120, + "visible": true, + "target": 2, + "graphicFrame": 8, + "opacity": 200, + "priority": 1, + "focus": 2 + }, + { + "x": -29.5, + "y": 18.5, + "zoomX": 120, + "zoomY": 120, + "visible": true, + "target": 2, + "graphicFrame": 6, + "opacity": 180, + "priority": 1, + "focus": 2 + }, + { + "x": 17.5, + "y": -23, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 5, + "opacity": 180, + "priority": 1, + "focus": 2 + }, + { + "x": -17, + "y": -17, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 4, + "opacity": 60, + "priority": 1, + "focus": 2 + } + ], + [ + { + "x": 8, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + -138, + -95, + -132, + 0 + ], + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "priority": 1, + "focus": 1 + }, + { + "x": 17, + "y": 13, + "zoomX": 180, + "zoomY": 180, + "visible": true, + "target": 2, + "graphicFrame": 7, + "opacity": 60, + "tone": [ + -5, + -23, + 17, + 0 + ], + "priority": 1, + "focus": 2 + }, + { + "x": 0, + "y": 0, + "zoomX": 80, + "zoomY": 80, + "angle": 180, + "visible": true, + "target": 2, + "graphicFrame": 8, + "opacity": 200, + "priority": 1, + "focus": 2 + }, + { + "x": -29.5, + "y": 18.5, + "zoomX": 140, + "zoomY": 140, + "visible": true, + "target": 2, + "graphicFrame": 7, + "opacity": 180, + "priority": 1, + "focus": 2 + }, + { + "x": 17.5, + "y": -23, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 6, + "opacity": 180, + "priority": 1, + "focus": 2 + }, + { + "x": -17, + "y": -17, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 4, + "opacity": 120, + "priority": 1, + "focus": 2 + } + ], + [ + { + "x": 4, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + -140, + -106, + -128, + 0 + ], + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "priority": 1, + "focus": 1 + }, + { + "x": -4, + "y": 0, + "zoomX": 60, + "zoomY": 60, + "angle": 240, + "visible": true, + "target": 2, + "graphicFrame": 8, + "opacity": 150, + "tone": [ + -4, + -19, + 14, + 0 + ], + "priority": 1, + "focus": 2 + }, + { + "x": -29.5, + "y": 18.5, + "zoomX": 160, + "zoomY": 160, + "visible": true, + "target": 2, + "graphicFrame": 7, + "opacity": 120, + "priority": 1, + "focus": 2 + }, + { + "x": 17.5, + "y": -23, + "zoomX": 120, + "zoomY": 120, + "visible": true, + "target": 2, + "graphicFrame": 6, + "opacity": 180, + "priority": 1, + "focus": 2 + }, + { + "x": -17, + "y": -17, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 5, + "opacity": 180, + "priority": 1, + "focus": 2 + }, + { + "x": -4, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 4, + "opacity": 60, + "priority": 1, + "focus": 2 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + -142, + -117, + -125, + 0 + ], + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "priority": 1, + "focus": 1 + }, + { + "x": -8, + "y": 0, + "zoomX": 40, + "zoomY": 40, + "angle": 300, + "visible": true, + "target": 2, + "graphicFrame": 8, + "opacity": 100, + "tone": [ + -3, + -15, + 11, + 0 + ], + "priority": 1, + "focus": 2 + }, + { + "x": -29.5, + "y": 18.5, + "zoomX": 180, + "zoomY": 180, + "visible": true, + "target": 2, + "graphicFrame": 7, + "opacity": 60, + "priority": 1, + "focus": 2 + }, + { + "x": 17.5, + "y": -23, + "zoomX": 140, + "zoomY": 140, + "visible": true, + "target": 2, + "graphicFrame": 7, + "opacity": 180, + "priority": 1, + "focus": 2 + }, + { + "x": -17, + "y": -17, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 6, + "opacity": 180, + "priority": 1, + "focus": 2 + }, + { + "x": -4, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 4, + "opacity": 120, + "priority": 1, + "focus": 2 + } + ], + [ + { + "x": -4, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + -144, + -127, + -121, + 0 + ], + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "priority": 1, + "focus": 1 + }, + { + "x": -4, + "y": 0, + "zoomX": 20, + "zoomY": 20, + "visible": true, + "target": 2, + "graphicFrame": 8, + "opacity": 50, + "tone": [ + -3, + -12, + 8, + 0 + ], + "priority": 1, + "focus": 2 + }, + { + "x": 17.5, + "y": -23, + "zoomX": 160, + "zoomY": 160, + "visible": true, + "target": 2, + "graphicFrame": 7, + "opacity": 120, + "priority": 1, + "focus": 2 + }, + { + "x": -17, + "y": -17, + "zoomX": 120, + "zoomY": 120, + "visible": true, + "target": 2, + "graphicFrame": 6, + "opacity": 180, + "priority": 1, + "focus": 2 + }, + { + "x": -3.5, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 5, + "opacity": 180, + "priority": 1, + "focus": 2 + }, + { + "x": 20.5, + "y": 19.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 4, + "opacity": 60, + "priority": 1, + "focus": 2 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + -146, + -138, + -118, + 0 + ], + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "priority": 1, + "focus": 1 + }, + { + "x": 17.5, + "y": -23, + "zoomX": 180, + "zoomY": 180, + "visible": true, + "target": 2, + "graphicFrame": 7, + "opacity": 60, + "tone": [ + -2, + -8, + 5, + 0 + ], + "priority": 1, + "focus": 2 + }, + { + "x": -17, + "y": -17, + "zoomX": 140, + "zoomY": 140, + "visible": true, + "target": 2, + "graphicFrame": 7, + "opacity": 180, + "priority": 1, + "focus": 2 + }, + { + "x": -3.5, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 6, + "opacity": 180, + "priority": 1, + "focus": 2 + }, + { + "x": 20.5, + "y": 19.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 4, + "opacity": 120, + "priority": 1, + "focus": 2 + } + ], + [ + { + "x": 4, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + -148, + -149, + -114, + 0 + ], + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "priority": 1, + "focus": 1 + }, + { + "x": -17, + "y": -17, + "zoomX": 160, + "zoomY": 160, + "visible": true, + "target": 2, + "graphicFrame": 7, + "opacity": 120, + "tone": [ + -1, + -4, + 2, + 0 + ], + "priority": 1, + "focus": 2 + }, + { + "x": -4, + "y": 0, + "zoomX": 120, + "zoomY": 120, + "visible": true, + "target": 2, + "graphicFrame": 6, + "opacity": 180, + "priority": 1, + "focus": 2 + }, + { + "x": 20, + "y": 19.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 5, + "opacity": 180, + "priority": 1, + "focus": 2 + }, + { + "x": -29, + "y": 25.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 4, + "opacity": 60, + "priority": 1, + "focus": 2 + } + ], + [ + { + "x": 8, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + -150, + -159, + -110, + 0 + ], + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "priority": 1, + "focus": 1 + }, + { + "x": -17, + "y": -17, + "zoomX": 180, + "zoomY": 180, + "visible": true, + "target": 2, + "graphicFrame": 7, + "opacity": 60, + "priority": 1, + "focus": 2 + }, + { + "x": 0, + "y": 0, + "zoomX": 140, + "zoomY": 140, + "visible": true, + "target": 2, + "graphicFrame": 7, + "opacity": 180, + "priority": 1, + "focus": 2 + }, + { + "x": 20.5, + "y": 19.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 6, + "opacity": 180, + "priority": 1, + "focus": 2 + }, + { + "x": -29, + "y": 25.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 4, + "opacity": 120, + "priority": 1, + "focus": 2 + } + ], + [ + { + "x": 4, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + -149, + -162, + -114, + 0 + ], + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "priority": 1, + "focus": 1 + }, + { + "x": 0, + "y": 0, + "zoomX": 160, + "zoomY": 160, + "visible": true, + "target": 2, + "graphicFrame": 7, + "opacity": 120, + "priority": 1, + "focus": 2 + }, + { + "x": 20.5, + "y": 19.5, + "zoomX": 120, + "zoomY": 120, + "visible": true, + "target": 2, + "graphicFrame": 6, + "opacity": 180, + "priority": 1, + "focus": 2 + }, + { + "x": -29, + "y": 25.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 5, + "opacity": 180, + "priority": 1, + "focus": 2 + }, + { + "x": 4.5, + "y": -28, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 4, + "opacity": 60, + "priority": 1, + "focus": 2 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + -147, + -165, + -117, + 0 + ], + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "priority": 1, + "focus": 1 + }, + { + "x": 4, + "y": 0, + "zoomX": 180, + "zoomY": 180, + "visible": true, + "target": 2, + "graphicFrame": 7, + "opacity": 60, + "priority": 1, + "focus": 2 + }, + { + "x": 20.5, + "y": 19.5, + "zoomX": 140, + "zoomY": 140, + "visible": true, + "target": 2, + "graphicFrame": 7, + "opacity": 180, + "priority": 1, + "focus": 2 + }, + { + "x": -29, + "y": 25.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 6, + "opacity": 180, + "priority": 1, + "focus": 2 + }, + { + "x": 4.5, + "y": -28, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 4, + "opacity": 60, + "priority": 1, + "focus": 2 + } + ], + [ + { + "x": -4, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + -145, + -167, + -120, + 0 + ], + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "priority": 1, + "focus": 1 + }, + { + "x": 20.5, + "y": 19.5, + "zoomX": 160, + "zoomY": 160, + "visible": true, + "target": 2, + "graphicFrame": 7, + "opacity": 120, + "priority": 1, + "focus": 2 + }, + { + "x": -29, + "y": 25.5, + "zoomX": 120, + "zoomY": 120, + "visible": true, + "target": 2, + "graphicFrame": 6, + "opacity": 180, + "priority": 1, + "focus": 2 + }, + { + "x": 4.5, + "y": -28, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 5, + "opacity": 180, + "priority": 1, + "focus": 2 + }, + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 4, + "opacity": 60, + "priority": 1, + "focus": 2 + } + ], + [ + { + "x": -8, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + -143, + -170, + -123, + 0 + ], + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "priority": 1, + "focus": 1 + }, + { + "x": 20.5, + "y": 19.5, + "zoomX": 180, + "zoomY": 180, + "visible": true, + "target": 2, + "graphicFrame": 7, + "opacity": 60, + "priority": 1, + "focus": 2 + }, + { + "x": -29, + "y": 25.5, + "zoomX": 140, + "zoomY": 140, + "visible": true, + "target": 2, + "graphicFrame": 7, + "opacity": 180, + "priority": 1, + "focus": 2 + }, + { + "x": 4.5, + "y": -28, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 6, + "opacity": 180, + "priority": 1, + "focus": 2 + }, + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 4, + "opacity": 120, + "priority": 1, + "focus": 2 + } + ], + [ + { + "x": -4, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + -141, + -173, + -126, + 0 + ], + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "priority": 1, + "focus": 1 + }, + { + "x": -29, + "y": 25.5, + "zoomX": 160, + "zoomY": 160, + "visible": true, + "target": 2, + "graphicFrame": 7, + "opacity": 120, + "priority": 1, + "focus": 2 + }, + { + "x": 4.5, + "y": -28, + "zoomX": 120, + "zoomY": 120, + "visible": true, + "target": 2, + "graphicFrame": 6, + "opacity": 180, + "priority": 1, + "focus": 2 + }, + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 5, + "opacity": 180, + "priority": 1, + "focus": 2 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + -139, + -175, + -129, + 0 + ], + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "priority": 1, + "focus": 1 + }, + { + "x": -29, + "y": 25.5, + "zoomX": 180, + "zoomY": 180, + "visible": true, + "target": 2, + "graphicFrame": 7, + "opacity": 60, + "priority": 1, + "focus": 2 + }, + { + "x": 4.5, + "y": -28, + "zoomX": 140, + "zoomY": 140, + "visible": true, + "target": 2, + "graphicFrame": 7, + "opacity": 180, + "priority": 1, + "focus": 2 + }, + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 6, + "opacity": 180, + "priority": 1, + "focus": 2 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + -137, + -178, + -132, + 0 + ], + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "priority": 1, + "focus": 1 + }, + { + "x": 4.5, + "y": -28, + "zoomX": 160, + "zoomY": 160, + "visible": true, + "target": 2, + "graphicFrame": 7, + "opacity": 120, + "priority": 1, + "focus": 2 + }, + { + "x": 0, + "y": 0, + "zoomX": 120, + "zoomY": 120, + "visible": true, + "target": 2, + "graphicFrame": 6, + "opacity": 180, + "priority": 1, + "focus": 2 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + -135, + -180, + -135, + 0 + ], + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "priority": 1, + "focus": 1 + }, + { + "x": 4.5, + "y": -28, + "zoomX": 180, + "zoomY": 180, + "visible": true, + "target": 2, + "graphicFrame": 7, + "opacity": 60, + "priority": 1, + "focus": 2 + }, + { + "x": 0, + "y": 0, + "zoomX": 140, + "zoomY": 140, + "visible": true, + "target": 2, + "graphicFrame": 7, + "opacity": 180, + "priority": 1, + "focus": 2 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + -120, + -160, + -120, + 0 + ], + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "priority": 1, + "focus": 1 + }, + { + "x": 0, + "y": 0, + "zoomX": 160, + "zoomY": 160, + "visible": true, + "target": 2, + "graphicFrame": 7, + "opacity": 120, + "tone": [ + -5, + -26, + 20, + 0 + ], + "priority": 1, + "focus": 2 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + -105, + -140, + -105, + 0 + ], + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "priority": 1, + "focus": 1 + }, + { + "x": 0, + "y": 0, + "zoomX": 180, + "zoomY": 180, + "visible": true, + "target": 2, + "graphicFrame": 7, + "opacity": 60, + "locked": true, + "priority": 1, + "focus": 2 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + -90, + -120, + -90, + 0 + ], + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + -75, + -100, + -75, + 0 + ], + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + -60, + -80, + -60, + 0 + ], + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + -45, + -60, + -45, + 0 + ], + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + -30, + -40, + -30, + 0 + ], + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + -15, + -20, + -15, + 0 + ], + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + } + ] + ], + "frameTimedEvents": { + "0": [ + { + "frameIndex": 0, + "resourceName": "PRAS- Psycho Boost Opp BG", + "bgX": 0, + "bgY": 0, + "opacity": 0, + "duration": 5, + "eventType": "AnimTimedAddBgEvent" + }, + { + "frameIndex": 0, + "resourceName": "", + "bgX": 0, + "bgY": 0, + "opacity": 255, + "duration": 10, + "eventType": "AnimTimedUpdateBgEvent" + }, + { + "frameIndex": 0, + "resourceName": "PRSFX- Psycho Boost1.wav", + "volume": 100, + "pitch": 100, + "eventType": "AnimTimedSoundEvent" + } + ], + "32": [ + { + "frameIndex": 32, + "resourceName": "PRSFX- Psycho Boost2.wav", + "volume": 100, + "pitch": 100, + "eventType": "AnimTimedSoundEvent" + } + ], + "62": [ + { + "frameIndex": 62, + "resourceName": "", + "bgX": 0, + "bgY": 0, + "opacity": 0, + "duration": 5, + "eventType": "AnimTimedUpdateBgEvent" + } + ] + }, + "position": 4, + "hue": 0 + } +] \ No newline at end of file diff --git a/public/battle-anims/ivy-cudgel.json b/public/battle-anims/ivy-cudgel.json new file mode 100644 index 00000000000..ee46f86bebe --- /dev/null +++ b/public/battle-anims/ivy-cudgel.json @@ -0,0 +1,1245 @@ +{ + "id": 452, + "graphic": "PRAS- Wood Hammer", + "frames": [ + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 2, + "opacity": 160, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 2, + "opacity": 140, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 2, + "opacity": 255, + "priority": 1, + "focus": 1 + }, + { + "x": 112, + "y": -73, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 0, + "opacity": 80, + "priority": 1, + "focus": 1 + }, + { + "x": 148, + "y": -73, + "zoomX": 100, + "zoomY": 100, + "angle": 90, + "visible": true, + "target": 2, + "graphicFrame": 0, + "opacity": 80, + "priority": 1, + "focus": 1 + }, + { + "x": 132, + "y": -32, + "zoomX": 100, + "zoomY": 100, + "angle": 139, + "visible": true, + "target": 2, + "graphicFrame": 0, + "opacity": 80, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 3, + "opacity": 255, + "priority": 1, + "focus": 1 + }, + { + "x": 101.5, + "y": -82, + "zoomX": 100, + "zoomY": 100, + "angle": 46, + "visible": true, + "target": 2, + "graphicFrame": 0, + "opacity": 160, + "priority": 1, + "focus": 1 + }, + { + "x": 156, + "y": -79, + "zoomX": 100, + "zoomY": 100, + "angle": 143, + "visible": true, + "target": 2, + "graphicFrame": 0, + "opacity": 160, + "priority": 1, + "focus": 1 + }, + { + "x": 116, + "y": -54.5, + "zoomX": 100, + "zoomY": 100, + "angle": 125, + "visible": true, + "target": 2, + "graphicFrame": 1, + "opacity": 140, + "priority": 1, + "focus": 1 + }, + { + "x": 130, + "y": -20.5, + "zoomX": 100, + "zoomY": 100, + "angle": 170, + "visible": true, + "target": 2, + "graphicFrame": 0, + "opacity": 160, + "priority": 1, + "focus": 1 + }, + { + "x": 136, + "y": -66, + "zoomX": 100, + "zoomY": 100, + "angle": 340, + "visible": true, + "target": 2, + "graphicFrame": 1, + "opacity": 140, + "priority": 1, + "focus": 1 + }, + { + "x": 128, + "y": -55.5, + "zoomX": 100, + "zoomY": 100, + "angle": 225, + "visible": true, + "target": 2, + "graphicFrame": 1, + "opacity": 140, + "priority": 1, + "focus": 1 + }, + { + "x": 120, + "y": -49, + "zoomX": 100, + "zoomY": 100, + "angle": 45, + "visible": true, + "target": 2, + "graphicFrame": 1, + "opacity": 140, + "priority": 1, + "focus": 1 + }, + { + "x": 132, + "y": -68, + "zoomX": 100, + "zoomY": 100, + "angle": 20, + "visible": true, + "target": 2, + "graphicFrame": 1, + "opacity": 140, + "priority": 1, + "focus": 1 + }, + { + "x": 132, + "y": -43, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 1, + "opacity": 140, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 2, + "opacity": 255, + "priority": 1, + "focus": 1 + }, + { + "x": 91, + "y": -91, + "zoomX": 100, + "zoomY": 100, + "angle": 93, + "visible": true, + "target": 2, + "graphicFrame": 0, + "opacity": 255, + "priority": 1, + "focus": 1 + }, + { + "x": 164, + "y": -84.5, + "zoomX": 100, + "zoomY": 100, + "angle": 197, + "visible": true, + "target": 2, + "graphicFrame": 0, + "opacity": 255, + "priority": 1, + "focus": 1 + }, + { + "x": 114.5, + "y": -47.5, + "zoomX": 100, + "zoomY": 100, + "angle": 125, + "visible": true, + "target": 2, + "graphicFrame": 1, + "opacity": 255, + "priority": 1, + "focus": 1 + }, + { + "x": 128, + "y": -9, + "zoomX": 100, + "zoomY": 100, + "angle": 201, + "visible": true, + "target": 2, + "graphicFrame": 0, + "opacity": 255, + "priority": 1, + "focus": 1 + }, + { + "x": 138.5, + "y": -69.5, + "zoomX": 100, + "zoomY": 100, + "angle": 340, + "visible": true, + "target": 2, + "graphicFrame": 1, + "opacity": 255, + "priority": 1, + "focus": 1 + }, + { + "x": 134, + "y": -51.5, + "zoomX": 100, + "zoomY": 100, + "angle": 225, + "visible": true, + "target": 2, + "graphicFrame": 1, + "opacity": 255, + "priority": 1, + "focus": 1 + }, + { + "x": 116, + "y": -51.5, + "zoomX": 100, + "zoomY": 100, + "angle": 45, + "visible": true, + "target": 2, + "graphicFrame": 1, + "opacity": 255, + "priority": 1, + "focus": 1 + }, + { + "x": 130, + "y": -72, + "zoomX": 100, + "zoomY": 100, + "angle": 20, + "visible": true, + "target": 2, + "graphicFrame": 1, + "opacity": 255, + "priority": 1, + "focus": 1 + }, + { + "x": 134, + "y": -39, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 1, + "opacity": 255, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 3, + "opacity": 255, + "priority": 1, + "focus": 1 + }, + { + "x": 80.5, + "y": -99.5, + "zoomX": 100, + "zoomY": 100, + "angle": 139, + "visible": true, + "target": 2, + "graphicFrame": 0, + "opacity": 255, + "priority": 1, + "focus": 1 + }, + { + "x": 172, + "y": -90.5, + "zoomX": 100, + "zoomY": 100, + "angle": 251, + "visible": true, + "target": 2, + "graphicFrame": 0, + "opacity": 255, + "priority": 1, + "focus": 1 + }, + { + "x": 113, + "y": -40, + "zoomX": 100, + "zoomY": 100, + "angle": 125, + "visible": true, + "target": 2, + "graphicFrame": 1, + "opacity": 255, + "priority": 1, + "focus": 1 + }, + { + "x": 126.5, + "y": 3, + "zoomX": 100, + "zoomY": 100, + "angle": 233, + "visible": true, + "target": 2, + "graphicFrame": 0, + "opacity": 255, + "priority": 1, + "focus": 1 + }, + { + "x": 141, + "y": -73, + "zoomX": 100, + "zoomY": 100, + "angle": 340, + "visible": true, + "target": 2, + "graphicFrame": 1, + "opacity": 255, + "priority": 1, + "focus": 1 + }, + { + "x": 140, + "y": -47.5, + "zoomX": 100, + "zoomY": 100, + "angle": 225, + "visible": true, + "target": 2, + "graphicFrame": 1, + "opacity": 255, + "priority": 1, + "focus": 1 + }, + { + "x": 112, + "y": -53.5, + "zoomX": 100, + "zoomY": 100, + "angle": 45, + "visible": true, + "target": 2, + "graphicFrame": 1, + "opacity": 255, + "priority": 1, + "focus": 1 + }, + { + "x": 128, + "y": -76, + "zoomX": 100, + "zoomY": 100, + "angle": 21, + "visible": true, + "target": 2, + "graphicFrame": 1, + "opacity": 255, + "priority": 1, + "focus": 1 + }, + { + "x": 136, + "y": -35, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 1, + "opacity": 255, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 2, + "opacity": 255, + "priority": 1, + "focus": 1 + }, + { + "x": 70, + "y": -108.5, + "zoomX": 100, + "zoomY": 100, + "angle": 186, + "visible": true, + "target": 2, + "graphicFrame": 0, + "opacity": 140, + "priority": 1, + "focus": 1 + }, + { + "x": 180, + "y": -96, + "zoomX": 100, + "zoomY": 100, + "angle": 305, + "visible": true, + "target": 2, + "graphicFrame": 0, + "opacity": 140, + "priority": 1, + "focus": 1 + }, + { + "x": 112, + "y": -32.5, + "zoomX": 100, + "zoomY": 100, + "angle": 125, + "visible": true, + "target": 2, + "graphicFrame": 1, + "opacity": 255, + "priority": 1, + "focus": 1 + }, + { + "x": 124.5, + "y": 14.5, + "zoomX": 100, + "zoomY": 100, + "angle": 264, + "visible": true, + "target": 2, + "graphicFrame": 0, + "opacity": 255, + "priority": 1, + "focus": 1 + }, + { + "x": 144, + "y": -76, + "zoomX": 100, + "zoomY": 100, + "angle": 340, + "visible": true, + "target": 2, + "graphicFrame": 1, + "opacity": 255, + "priority": 1, + "focus": 1 + }, + { + "x": 146, + "y": -43.5, + "zoomX": 100, + "zoomY": 100, + "angle": 225, + "visible": true, + "target": 2, + "graphicFrame": 1, + "opacity": 255, + "priority": 1, + "focus": 1 + }, + { + "x": 108, + "y": -55.5, + "zoomX": 100, + "zoomY": 100, + "angle": 45, + "visible": true, + "target": 2, + "graphicFrame": 1, + "opacity": 255, + "priority": 1, + "focus": 1 + }, + { + "x": 126, + "y": -80, + "zoomX": 100, + "zoomY": 100, + "angle": 22, + "visible": true, + "target": 2, + "graphicFrame": 1, + "opacity": 255, + "priority": 1, + "focus": 1 + }, + { + "x": 138, + "y": -31, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 1, + "opacity": 255, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 3, + "opacity": 255, + "priority": 1, + "focus": 1 + }, + { + "x": 60, + "y": -117, + "zoomX": 100, + "zoomY": 100, + "angle": 233, + "visible": true, + "target": 2, + "graphicFrame": 0, + "opacity": 70, + "priority": 1, + "focus": 1 + }, + { + "x": 188, + "y": -101.5, + "zoomX": 100, + "zoomY": 100, + "angle": 359, + "visible": true, + "target": 2, + "graphicFrame": 0, + "opacity": 70, + "priority": 1, + "focus": 1 + }, + { + "x": 110.5, + "y": -25.5, + "zoomX": 100, + "zoomY": 100, + "angle": 125, + "visible": true, + "target": 2, + "graphicFrame": 1, + "opacity": 255, + "priority": 1, + "focus": 1 + }, + { + "x": 123, + "y": 26.5, + "zoomX": 100, + "zoomY": 100, + "angle": 296, + "visible": true, + "target": 2, + "graphicFrame": 0, + "opacity": 255, + "priority": 1, + "focus": 1 + }, + { + "x": 146.5, + "y": -79.5, + "zoomX": 100, + "zoomY": 100, + "angle": 340, + "visible": true, + "target": 2, + "graphicFrame": 1, + "opacity": 255, + "priority": 1, + "focus": 1 + }, + { + "x": 152, + "y": -39.5, + "zoomX": 100, + "zoomY": 100, + "angle": 225, + "visible": true, + "target": 2, + "graphicFrame": 1, + "opacity": 255, + "priority": 1, + "focus": 1 + }, + { + "x": 104, + "y": -58, + "zoomX": 100, + "zoomY": 100, + "angle": 45, + "visible": true, + "target": 2, + "graphicFrame": 1, + "opacity": 255, + "priority": 1, + "focus": 1 + }, + { + "x": 124, + "y": -84, + "zoomX": 100, + "zoomY": 100, + "angle": 23, + "visible": true, + "target": 2, + "graphicFrame": 1, + "opacity": 255, + "priority": 1, + "focus": 1 + }, + { + "x": 140, + "y": -27, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 1, + "opacity": 255, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 3, + "opacity": 160, + "priority": 1, + "focus": 1 + }, + { + "x": 109, + "y": -18, + "zoomX": 100, + "zoomY": 100, + "angle": 125, + "visible": true, + "target": 2, + "graphicFrame": 1, + "opacity": 255, + "priority": 1, + "focus": 1 + }, + { + "x": 121, + "y": 38, + "zoomX": 100, + "zoomY": 100, + "angle": 327, + "visible": true, + "target": 2, + "graphicFrame": 0, + "opacity": 150, + "priority": 1, + "focus": 1 + }, + { + "x": 149, + "y": -83, + "zoomX": 100, + "zoomY": 100, + "angle": 340, + "visible": true, + "target": 2, + "graphicFrame": 1, + "opacity": 255, + "priority": 1, + "focus": 1 + }, + { + "x": 158, + "y": -35.5, + "zoomX": 100, + "zoomY": 100, + "angle": 225, + "visible": true, + "target": 2, + "graphicFrame": 1, + "opacity": 255, + "priority": 1, + "focus": 1 + }, + { + "x": 100, + "y": -60, + "zoomX": 100, + "zoomY": 100, + "angle": 45, + "visible": true, + "target": 2, + "graphicFrame": 1, + "opacity": 255, + "priority": 1, + "focus": 1 + }, + { + "x": 122, + "y": -88, + "zoomX": 100, + "zoomY": 100, + "angle": 24, + "visible": true, + "target": 2, + "graphicFrame": 1, + "opacity": 255, + "priority": 1, + "focus": 1 + }, + { + "x": 142, + "y": -23, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 1, + "opacity": 255, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 3, + "opacity": 60, + "priority": 1, + "focus": 1 + }, + { + "x": 108, + "y": -10.5, + "zoomX": 100, + "zoomY": 100, + "angle": 125, + "visible": true, + "target": 2, + "graphicFrame": 1, + "opacity": 140, + "priority": 1, + "focus": 1 + }, + { + "x": 119.5, + "y": 50, + "zoomX": 100, + "zoomY": 100, + "angle": 359, + "visible": true, + "target": 2, + "graphicFrame": 0, + "opacity": 80, + "priority": 1, + "focus": 1 + }, + { + "x": 152, + "y": -86, + "zoomX": 100, + "zoomY": 100, + "angle": 340, + "visible": true, + "target": 2, + "graphicFrame": 1, + "opacity": 140, + "priority": 1, + "focus": 1 + }, + { + "x": 164, + "y": -31.5, + "zoomX": 100, + "zoomY": 100, + "angle": 225, + "visible": true, + "target": 2, + "graphicFrame": 1, + "opacity": 140, + "priority": 1, + "focus": 1 + }, + { + "x": 96, + "y": -62, + "zoomX": 100, + "zoomY": 100, + "angle": 45, + "visible": true, + "target": 2, + "graphicFrame": 1, + "opacity": 140, + "priority": 1, + "focus": 1 + }, + { + "x": 120, + "y": -92, + "zoomX": 100, + "zoomY": 100, + "angle": 25, + "visible": true, + "target": 2, + "graphicFrame": 1, + "opacity": 140, + "priority": 1, + "focus": 1 + }, + { + "x": 144, + "y": -18.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 1, + "opacity": 140, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + } + ] + ], + "frameTimedEvents": { + "0": [ + { + "frameIndex": 0, + "resourceName": "PRSFX- Wood Hammer.wav", + "volume": 100, + "pitch": 100, + "eventType": "AnimTimedSoundEvent" + } + ] + }, + "position": 1, + "hue": 0 +} \ No newline at end of file diff --git a/public/battle-anims/magical-torque.json b/public/battle-anims/magical-torque.json new file mode 100644 index 00000000000..7f006e1b98d --- /dev/null +++ b/public/battle-anims/magical-torque.json @@ -0,0 +1,1260 @@ +{ + "id": 789, + "graphic": "PRAS- Psystrike", + "frames": [ + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + 32, + -32, + 64, + 0 + ], + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 4, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + 64, + -64, + 128, + 0 + ], + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + 64, + -64, + 128, + 0 + ], + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": -4, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + 64, + -64, + 128, + 0 + ], + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + 64, + -64, + 128, + 0 + ], + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 4, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + 64, + -64, + 128, + 0 + ], + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + 64, + -64, + 128, + 0 + ], + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": -4, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + 64, + -64, + 128, + 0 + ], + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + 64, + -64, + 128, + 0 + ], + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 4, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + 64, + -64, + 128, + 0 + ], + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + 64, + -64, + 128, + 0 + ], + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": -4, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + 64, + -64, + 128, + 0 + ], + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + 64, + -64, + 128, + 0 + ], + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 4, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + 64, + -64, + 128, + 0 + ], + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + 64, + -64, + 128, + 0 + ], + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 128, + "y": -64, + "zoomX": 150, + "zoomY": 150, + "visible": true, + "target": 2, + "graphicFrame": 1, + "opacity": 255, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + 64, + -64, + 128, + 0 + ], + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 128, + "y": -64, + "zoomX": 150, + "zoomY": 150, + "visible": true, + "target": 2, + "graphicFrame": 1, + "opacity": 255, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + 64, + -64, + 128, + 0 + ], + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 128, + "y": -64, + "zoomX": 150, + "zoomY": 150, + "visible": true, + "target": 2, + "graphicFrame": 2, + "opacity": 255, + "priority": 1, + "focus": 1 + }, + { + "x": 100, + "y": -85.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 1, + "opacity": 255, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + 64, + -64, + 128, + 0 + ], + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 128, + "y": -64, + "zoomX": 150, + "zoomY": 150, + "visible": true, + "target": 2, + "graphicFrame": 2, + "opacity": 255, + "priority": 1, + "focus": 1 + }, + { + "x": 100, + "y": -85.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 1, + "opacity": 255, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + 64, + -64, + 128, + 0 + ], + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 128, + "y": -64, + "zoomX": 150, + "zoomY": 150, + "visible": true, + "target": 2, + "graphicFrame": 3, + "opacity": 255, + "priority": 1, + "focus": 1 + }, + { + "x": 100, + "y": -85.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 2, + "opacity": 255, + "priority": 1, + "focus": 1 + }, + { + "x": 157, + "y": -53, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 1, + "opacity": 255, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + 64, + -64, + 128, + 0 + ], + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 128, + "y": -64, + "zoomX": 150, + "zoomY": 150, + "visible": true, + "target": 2, + "graphicFrame": 3, + "opacity": 255, + "priority": 1, + "focus": 1 + }, + { + "x": 100, + "y": -85.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 2, + "opacity": 255, + "priority": 1, + "focus": 1 + }, + { + "x": 157, + "y": -53, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 1, + "opacity": 255, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + 64, + -64, + 128, + 0 + ], + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 128, + "y": -64, + "zoomX": 150, + "zoomY": 150, + "visible": true, + "target": 2, + "graphicFrame": 4, + "opacity": 255, + "priority": 1, + "focus": 1 + }, + { + "x": 100, + "y": -85.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 3, + "opacity": 255, + "priority": 1, + "focus": 1 + }, + { + "x": 157, + "y": -53, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 2, + "opacity": 255, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + 64, + -64, + 128, + 0 + ], + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 128, + "y": -64, + "zoomX": 150, + "zoomY": 150, + "visible": true, + "target": 2, + "graphicFrame": 4, + "opacity": 255, + "priority": 1, + "focus": 1 + }, + { + "x": 100, + "y": -85.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 3, + "opacity": 255, + "priority": 1, + "focus": 1 + }, + { + "x": 157, + "y": -53, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 2, + "opacity": 255, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 100, + "y": -85.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 4, + "opacity": 255, + "priority": 1, + "focus": 1 + }, + { + "x": 157, + "y": -53, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 3, + "opacity": 255, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 100, + "y": -85.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 4, + "opacity": 255, + "priority": 1, + "focus": 1 + }, + { + "x": 157, + "y": -53, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 3, + "opacity": 255, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 157, + "y": -53, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 4, + "opacity": 255, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 157, + "y": -53, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 4, + "opacity": 255, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + } + ] + ], + "frameTimedEvents": { + "0": [ + { + "frameIndex": 0, + "resourceName": "Darkness2.m4a", + "volume": 80, + "pitch": 60, + "eventType": "AnimTimedSoundEvent" + } + ], + "15": [ + { + "frameIndex": 15, + "resourceName": "Explosion6.m4a", + "volume": 80, + "pitch": 100, + "eventType": "AnimTimedSoundEvent" + } + ] + }, + "position": 1, + "hue": 0 +} \ No newline at end of file diff --git a/public/battle-anims/mortal-spin.json b/public/battle-anims/mortal-spin.json new file mode 100644 index 00000000000..f795b3c5898 --- /dev/null +++ b/public/battle-anims/mortal-spin.json @@ -0,0 +1,3846 @@ +[ + { + "id": 342, + "graphic": "PRAS- Poison Tail", + "frames": [ + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 108, + "y": -87, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 0, + "opacity": 55, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 108, + "y": -87, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 0, + "opacity": 55, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 108, + "y": -87, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 0, + "opacity": 255, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 116, + "y": -81.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 0, + "opacity": 255, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 124, + "y": -75.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 1, + "opacity": 255, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 132, + "y": -69.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 1, + "opacity": 255, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 140, + "y": -63.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 2, + "opacity": 255, + "priority": 1, + "focus": 1 + }, + { + "x": 128, + "y": -45.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 3, + "opacity": 55, + "priority": 1, + "focus": 3 + }, + { + "x": 139, + "y": -59, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 3, + "opacity": 55, + "priority": 1, + "focus": 3 + }, + { + "x": 100, + "y": -66, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 3, + "opacity": 55, + "priority": 1, + "focus": 3 + }, + { + "x": 120, + "y": -81.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 3, + "opacity": 55, + "priority": 1, + "focus": 3 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 140, + "y": -63.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 2, + "opacity": 255, + "priority": 1, + "focus": 1 + }, + { + "x": 128, + "y": -45.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 3, + "opacity": 155, + "priority": 1, + "focus": 3 + }, + { + "x": 148, + "y": -59, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 3, + "opacity": 155, + "priority": 1, + "focus": 3 + }, + { + "x": 100, + "y": -66, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 3, + "opacity": 155, + "priority": 1, + "focus": 3 + }, + { + "x": 120, + "y": -81.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 3, + "opacity": 155, + "priority": 1, + "focus": 3 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 148, + "y": -57.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 2, + "opacity": 188, + "priority": 1, + "focus": 1 + }, + { + "x": 128, + "y": -46, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 3, + "opacity": 255, + "priority": 1, + "focus": 3 + }, + { + "x": 148, + "y": -58.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 3, + "opacity": 255, + "priority": 1, + "focus": 3 + }, + { + "x": 100, + "y": -66, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 3, + "opacity": 255, + "priority": 1, + "focus": 3 + }, + { + "x": 120, + "y": -81.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 3, + "opacity": 255, + "priority": 1, + "focus": 3 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 148, + "y": -57.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 2, + "opacity": 121, + "priority": 1, + "focus": 1 + }, + { + "x": 128, + "y": -49.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 3, + "opacity": 255, + "priority": 1, + "focus": 3 + }, + { + "x": 148, + "y": -61.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 3, + "opacity": 255, + "priority": 1, + "focus": 3 + }, + { + "x": 100, + "y": -65.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 3, + "opacity": 255, + "priority": 1, + "focus": 3 + }, + { + "x": 120, + "y": -81, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 3, + "opacity": 255, + "priority": 1, + "focus": 3 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 148, + "y": -57.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 2, + "opacity": 55, + "priority": 1, + "focus": 1 + }, + { + "x": 128, + "y": -53, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 3, + "opacity": 255, + "priority": 1, + "focus": 3 + }, + { + "x": 148, + "y": -64.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 3, + "opacity": 255, + "priority": 1, + "focus": 3 + }, + { + "x": 100, + "y": -70, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 3, + "opacity": 255, + "priority": 1, + "focus": 3 + }, + { + "x": 120, + "y": -85, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 3, + "opacity": 255, + "priority": 1, + "focus": 3 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 128, + "y": -56.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 3, + "opacity": 255, + "priority": 1, + "focus": 3 + }, + { + "x": 148, + "y": -67, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 3, + "opacity": 255, + "priority": 1, + "focus": 3 + }, + { + "x": 100, + "y": -74, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 3, + "opacity": 255, + "priority": 1, + "focus": 3 + }, + { + "x": 120, + "y": -89, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 3, + "opacity": 255, + "priority": 1, + "focus": 3 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 128, + "y": -60, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 3, + "opacity": 255, + "priority": 1, + "focus": 3 + }, + { + "x": 148, + "y": -70, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 3, + "opacity": 255, + "priority": 1, + "focus": 3 + }, + { + "x": 100, + "y": -78, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 3, + "opacity": 255, + "priority": 1, + "focus": 3 + }, + { + "x": 120, + "y": -92.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 3, + "opacity": 255, + "priority": 1, + "focus": 3 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 128, + "y": -63.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 3, + "opacity": 255, + "priority": 1, + "focus": 3 + }, + { + "x": 148, + "y": -73, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 3, + "opacity": 255, + "priority": 1, + "focus": 3 + }, + { + "x": 100, + "y": -82, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 3, + "opacity": 255, + "priority": 1, + "focus": 3 + }, + { + "x": 120, + "y": -96.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 3, + "opacity": 255, + "priority": 1, + "focus": 3 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 128, + "y": -67, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 3, + "opacity": 255, + "priority": 1, + "focus": 3 + }, + { + "x": 148, + "y": -75.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 3, + "opacity": 255, + "priority": 1, + "focus": 3 + }, + { + "x": 100, + "y": -86, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 3, + "opacity": 255, + "priority": 1, + "focus": 3 + }, + { + "x": 120, + "y": -100.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 3, + "opacity": 255, + "priority": 1, + "focus": 3 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 128, + "y": -70.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 3, + "opacity": 255, + "priority": 1, + "focus": 3 + }, + { + "x": 148, + "y": -78.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 3, + "opacity": 255, + "priority": 1, + "focus": 3 + }, + { + "x": 100, + "y": -90, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 3, + "opacity": 255, + "priority": 1, + "focus": 3 + }, + { + "x": 120, + "y": -104, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 3, + "opacity": 255, + "priority": 1, + "focus": 3 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 128, + "y": -74, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 3, + "opacity": 155, + "priority": 1, + "focus": 3 + }, + { + "x": 148, + "y": -81.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 3, + "opacity": 155, + "priority": 1, + "focus": 3 + }, + { + "x": 100, + "y": -94, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 3, + "opacity": 155, + "priority": 1, + "focus": 3 + }, + { + "x": 120, + "y": -104, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 3, + "opacity": 155, + "priority": 1, + "focus": 3 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 128, + "y": -77.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 3, + "opacity": 55, + "priority": 1, + "focus": 3 + }, + { + "x": 148, + "y": -84, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 3, + "opacity": 55, + "priority": 1, + "focus": 3 + }, + { + "x": 100, + "y": -98, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 3, + "opacity": 55, + "priority": 1, + "focus": 3 + }, + { + "x": 120, + "y": -104, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 3, + "opacity": 55, + "priority": 1, + "focus": 3 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 128, + "y": -81, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 3, + "opacity": 55, + "priority": 1, + "focus": 3 + }, + { + "x": 148, + "y": -87, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 3, + "opacity": 55, + "priority": 1, + "focus": 3 + }, + { + "x": 100, + "y": -102, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 3, + "opacity": 55, + "priority": 1, + "focus": 3 + }, + { + "x": 120, + "y": -111, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 3, + "opacity": 55, + "priority": 1, + "focus": 3 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 128, + "y": -84.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 3, + "opacity": 55, + "priority": 1, + "focus": 3 + }, + { + "x": 148, + "y": -89.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 3, + "opacity": 55, + "priority": 1, + "focus": 3 + }, + { + "x": 100, + "y": -106, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 3, + "opacity": 55, + "priority": 1, + "focus": 3 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 128, + "y": -88, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 3, + "opacity": 55, + "priority": 1, + "focus": 3 + }, + { + "x": 148, + "y": -92.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 3, + "opacity": 55, + "priority": 1, + "focus": 3 + }, + { + "x": 100, + "y": -110, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 3, + "opacity": 55, + "priority": 1, + "focus": 3 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 128, + "y": -91.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 3, + "opacity": 55, + "priority": 1, + "focus": 3 + }, + { + "x": 148, + "y": -95.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 3, + "opacity": 55, + "priority": 1, + "focus": 3 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 128, + "y": -95, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 3, + "opacity": 55, + "priority": 1, + "focus": 3 + }, + { + "x": 148, + "y": -98, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 3, + "opacity": 55, + "priority": 1, + "focus": 3 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 128, + "y": -98.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 3, + "opacity": 55, + "priority": 1, + "focus": 3 + }, + { + "x": 148, + "y": -101, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 3, + "opacity": 55, + "priority": 1, + "focus": 3 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 128, + "y": -102, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 3, + "opacity": 55, + "priority": 1, + "focus": 3 + }, + { + "x": 148, + "y": -104, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 3, + "opacity": 55, + "priority": 1, + "focus": 3 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 128, + "y": -105.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 3, + "opacity": 55, + "priority": 1, + "focus": 3 + }, + { + "x": 148, + "y": -106.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 3, + "opacity": 55, + "priority": 1, + "focus": 3 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 128, + "y": -109, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 3, + "opacity": 55, + "priority": 1, + "focus": 3 + }, + { + "x": 148, + "y": -109.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 3, + "opacity": 55, + "priority": 1, + "focus": 3 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 128, + "y": -112, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 3, + "opacity": 55, + "priority": 1, + "focus": 3 + }, + { + "x": 148, + "y": -112, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 3, + "opacity": 55, + "priority": 1, + "focus": 3 + } + ] + ], + "frameTimedEvents": { + "4": [ + { + "frameIndex": 4, + "resourceName": "PRSFX- Poison Tail2.wav", + "volume": 100, + "pitch": 100, + "eventType": "AnimTimedSoundEvent" + } + ], + "5": [ + { + "frameIndex": 5, + "resourceName": "PRSFX- Poison Tail2.wav", + "volume": 100, + "pitch": 70, + "eventType": "AnimTimedSoundEvent" + } + ], + "10": [ + { + "frameIndex": 10, + "resourceName": "PRSFX- Poison Tail1.wav", + "volume": 100, + "pitch": 100, + "eventType": "AnimTimedSoundEvent" + } + ] + }, + "position": 1, + "hue": 0 + }, + { + "id": 342, + "graphic": "PRAS- Poison Tail", + "frames": [ + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 28, + "y": -35.5, + "zoomX": 100, + "zoomY": 100, + "mirror": true, + "visible": true, + "target": 2, + "graphicFrame": 0, + "opacity": 55, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 24, + "y": -31, + "zoomX": 100, + "zoomY": 100, + "mirror": true, + "visible": true, + "target": 2, + "graphicFrame": 0, + "opacity": 155, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 20, + "y": -26, + "zoomX": 100, + "zoomY": 100, + "mirror": true, + "visible": true, + "target": 2, + "graphicFrame": 0, + "opacity": 255, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 16, + "y": -21.5, + "zoomX": 100, + "zoomY": 100, + "mirror": true, + "visible": true, + "target": 2, + "graphicFrame": 0, + "opacity": 255, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 12, + "y": -16.5, + "zoomX": 100, + "zoomY": 100, + "mirror": true, + "visible": true, + "target": 2, + "graphicFrame": 1, + "opacity": 255, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 8, + "y": -11.5, + "zoomX": 100, + "zoomY": 100, + "mirror": true, + "visible": true, + "target": 2, + "graphicFrame": 1, + "opacity": 255, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 4, + "y": -7, + "zoomX": 100, + "zoomY": 100, + "mirror": true, + "visible": true, + "target": 2, + "graphicFrame": 2, + "opacity": 255, + "priority": 1, + "focus": 1 + }, + { + "x": 6.5, + "y": -8.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 3, + "opacity": 55, + "priority": 1, + "focus": 1 + }, + { + "x": -20, + "y": 9.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 3, + "opacity": 55, + "priority": 1, + "focus": 1 + }, + { + "x": -30.5, + "y": -13, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 3, + "opacity": 55, + "priority": 1, + "focus": 1 + }, + { + "x": 5, + "y": 21, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 3, + "opacity": 55, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 0, + "y": -2, + "zoomX": 100, + "zoomY": 100, + "mirror": true, + "visible": true, + "target": 2, + "graphicFrame": 2, + "opacity": 255, + "priority": 1, + "focus": 1 + }, + { + "x": 6.5, + "y": -8.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 3, + "opacity": 155, + "priority": 1, + "focus": 1 + }, + { + "x": -20, + "y": 9.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 3, + "opacity": 155, + "priority": 1, + "focus": 1 + }, + { + "x": -30.5, + "y": -13, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 3, + "opacity": 155, + "priority": 1, + "focus": 1 + }, + { + "x": 5, + "y": 21, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 3, + "opacity": 155, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": -4, + "y": 3, + "zoomX": 100, + "zoomY": 100, + "mirror": true, + "visible": true, + "target": 2, + "graphicFrame": 2, + "opacity": 255, + "priority": 1, + "focus": 1 + }, + { + "x": 6, + "y": -8, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 3, + "opacity": 255, + "priority": 1, + "focus": 1 + }, + { + "x": -20, + "y": 9.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 3, + "opacity": 255, + "priority": 1, + "focus": 1 + }, + { + "x": -31, + "y": -13, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 3, + "opacity": 255, + "priority": 1, + "focus": 1 + }, + { + "x": 4, + "y": 21.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 3, + "opacity": 255, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": -4, + "y": 3, + "zoomX": 100, + "zoomY": 100, + "mirror": true, + "visible": true, + "target": 2, + "graphicFrame": 2, + "opacity": 155, + "priority": 1, + "focus": 1 + }, + { + "x": 7, + "y": -12, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 3, + "opacity": 255, + "priority": 1, + "focus": 1 + }, + { + "x": -20.5, + "y": 6.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 3, + "opacity": 255, + "priority": 1, + "focus": 1 + }, + { + "x": -31, + "y": -17, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 3, + "opacity": 255, + "priority": 1, + "focus": 1 + }, + { + "x": 5.5, + "y": 18.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 3, + "opacity": 255, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": -4, + "y": 3, + "zoomX": 100, + "zoomY": 100, + "mirror": true, + "visible": true, + "target": 2, + "graphicFrame": 2, + "opacity": 55, + "priority": 1, + "focus": 1 + }, + { + "x": 8, + "y": -16, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 3, + "opacity": 255, + "priority": 1, + "focus": 1 + }, + { + "x": -21, + "y": 3.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 3, + "opacity": 255, + "priority": 1, + "focus": 1 + }, + { + "x": -30.5, + "y": -21, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 3, + "opacity": 255, + "priority": 1, + "focus": 1 + }, + { + "x": 6.5, + "y": 16, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 3, + "opacity": 255, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 9, + "y": -20, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 3, + "opacity": 255, + "priority": 1, + "focus": 1 + }, + { + "x": -21.5, + "y": 0.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 3, + "opacity": 255, + "priority": 1, + "focus": 1 + }, + { + "x": -30, + "y": -25, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 3, + "opacity": 255, + "priority": 1, + "focus": 1 + }, + { + "x": 7.5, + "y": 13, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 3, + "opacity": 255, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 10, + "y": -24, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 3, + "opacity": 255, + "priority": 1, + "focus": 1 + }, + { + "x": -22, + "y": -2, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 3, + "opacity": 255, + "priority": 1, + "focus": 1 + }, + { + "x": -29.5, + "y": -29, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 3, + "opacity": 255, + "priority": 1, + "focus": 1 + }, + { + "x": 8, + "y": 10.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 3, + "opacity": 255, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 11, + "y": -28, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 3, + "opacity": 255, + "priority": 1, + "focus": 1 + }, + { + "x": -22.5, + "y": -5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 3, + "opacity": 255, + "priority": 1, + "focus": 1 + }, + { + "x": -29.5, + "y": -33, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 3, + "opacity": 255, + "priority": 1, + "focus": 1 + }, + { + "x": 9, + "y": 7.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 3, + "opacity": 255, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 12, + "y": -31.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 3, + "opacity": 255, + "priority": 1, + "focus": 1 + }, + { + "x": -23, + "y": -8, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 3, + "opacity": 255, + "priority": 1, + "focus": 1 + }, + { + "x": -29, + "y": -36.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 3, + "opacity": 255, + "priority": 1, + "focus": 1 + }, + { + "x": 10, + "y": 5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 3, + "opacity": 255, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 13, + "y": -35.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 3, + "opacity": 255, + "priority": 1, + "focus": 1 + }, + { + "x": -23.5, + "y": -10.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 3, + "opacity": 255, + "priority": 1, + "focus": 1 + }, + { + "x": -28.5, + "y": -40.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 3, + "opacity": 255, + "priority": 1, + "focus": 1 + }, + { + "x": 10.5, + "y": 2, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 3, + "opacity": 255, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 14, + "y": -39.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 3, + "opacity": 255, + "priority": 1, + "focus": 1 + }, + { + "x": -24, + "y": -13.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 3, + "opacity": 255, + "priority": 1, + "focus": 1 + }, + { + "x": -28, + "y": -44.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 3, + "opacity": 255, + "priority": 1, + "focus": 1 + }, + { + "x": 11.5, + "y": -0.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 3, + "opacity": 255, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 15, + "y": -43.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 3, + "opacity": 255, + "priority": 1, + "focus": 1 + }, + { + "x": -24.5, + "y": -16.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 3, + "opacity": 255, + "priority": 1, + "focus": 1 + }, + { + "x": -28, + "y": -48.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 3, + "opacity": 255, + "priority": 1, + "focus": 1 + }, + { + "x": 12.5, + "y": -3.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 3, + "opacity": 255, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 16, + "y": -47.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 3, + "opacity": 255, + "priority": 1, + "focus": 1 + }, + { + "x": -25, + "y": -19, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 3, + "opacity": 255, + "priority": 1, + "focus": 1 + }, + { + "x": -27.5, + "y": -52.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 3, + "opacity": 255, + "priority": 1, + "focus": 1 + }, + { + "x": 13, + "y": -6, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 3, + "opacity": 255, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 17, + "y": -51, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 3, + "opacity": 255, + "priority": 1, + "focus": 1 + }, + { + "x": -25.5, + "y": -22, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 3, + "opacity": 255, + "priority": 1, + "focus": 1 + }, + { + "x": -27, + "y": -56, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 3, + "opacity": 255, + "priority": 1, + "focus": 1 + }, + { + "x": 14, + "y": -9, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 3, + "opacity": 255, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 18, + "y": -55, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 3, + "opacity": 255, + "priority": 1, + "focus": 1 + }, + { + "x": -26, + "y": -25, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 3, + "opacity": 255, + "priority": 1, + "focus": 1 + }, + { + "x": -26.5, + "y": -60, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 3, + "opacity": 255, + "priority": 1, + "focus": 1 + }, + { + "x": 15, + "y": -11.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 3, + "opacity": 255, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 19, + "y": -59, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 3, + "opacity": 255, + "priority": 1, + "focus": 1 + }, + { + "x": -26.5, + "y": -27.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 3, + "opacity": 255, + "priority": 1, + "focus": 1 + }, + { + "x": -26.5, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 3, + "opacity": 255, + "priority": 1, + "focus": 1 + }, + { + "x": 15.5, + "y": -14.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 3, + "opacity": 255, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 20, + "y": -63, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 3, + "opacity": 255, + "priority": 1, + "focus": 1 + }, + { + "x": -27, + "y": -30.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 3, + "opacity": 255, + "priority": 1, + "focus": 1 + }, + { + "x": -26, + "y": -68, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 3, + "opacity": 255, + "priority": 1, + "focus": 1 + }, + { + "x": 16.5, + "y": -17, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 3, + "opacity": 255, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 21, + "y": -67, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 3, + "opacity": 255, + "priority": 1, + "focus": 1 + }, + { + "x": -27.5, + "y": -33.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 3, + "opacity": 255, + "priority": 1, + "focus": 1 + }, + { + "x": -25.5, + "y": -72, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 3, + "opacity": 255, + "priority": 1, + "focus": 1 + }, + { + "x": 17.5, + "y": -20, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 3, + "opacity": 255, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 22.5, + "y": -70.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 3, + "opacity": 255, + "priority": 1, + "focus": 1 + }, + { + "x": -27.5, + "y": -36, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 3, + "opacity": 255, + "priority": 1, + "focus": 1 + }, + { + "x": -25, + "y": -75.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 3, + "opacity": 255, + "priority": 1, + "focus": 1 + }, + { + "x": 18.5, + "y": -22.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 3, + "opacity": 255, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 22.5, + "y": -70.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 3, + "opacity": 155, + "priority": 1, + "focus": 1 + }, + { + "x": -27.5, + "y": -36, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 3, + "opacity": 149, + "priority": 1, + "focus": 1 + }, + { + "x": -25, + "y": -75.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 3, + "opacity": 155, + "priority": 1, + "focus": 1 + }, + { + "x": 18.5, + "y": -22.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 3, + "opacity": 155, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 22.5, + "y": -70.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 3, + "opacity": 55, + "priority": 1, + "focus": 1 + }, + { + "x": -27.5, + "y": -36, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 3, + "opacity": 44, + "priority": 1, + "focus": 1 + }, + { + "x": -25, + "y": -75.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 3, + "opacity": 55, + "priority": 1, + "focus": 1 + }, + { + "x": 18.5, + "y": -22.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 3, + "opacity": 55, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + } + ] + ], + "frameTimedEvents": { + "5": [ + { + "frameIndex": 5, + "resourceName": "PRSFX- Poison Tail2.wav", + "volume": 80, + "pitch": 100, + "eventType": "AnimTimedSoundEvent" + } + ], + "6": [ + { + "frameIndex": 6, + "resourceName": "PRSFX- Poison Tail2.wav", + "volume": 100, + "pitch": 70, + "eventType": "AnimTimedSoundEvent" + } + ], + "10": [ + { + "frameIndex": 10, + "resourceName": "PRSFX- Poison Tail1.wav", + "volume": 80, + "pitch": 100, + "eventType": "AnimTimedSoundEvent" + } + ] + }, + "position": 1, + "hue": 0 + } +] \ No newline at end of file diff --git a/public/battle-anims/noxious-torque.json b/public/battle-anims/noxious-torque.json new file mode 100644 index 00000000000..67c060cc8b9 --- /dev/null +++ b/public/battle-anims/noxious-torque.json @@ -0,0 +1,1129 @@ +{ + "id": 839, + "graphic": "PRAS- Poison Sting", + "frames": [ + [ + { + "x": 0, + "y": -4, + "zoomX": 110, + "zoomY": 110, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": -6, + "zoomX": 115, + "zoomY": 115, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": -8, + "zoomX": 120, + "zoomY": 120, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": -10, + "zoomX": 125, + "zoomY": 125, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": -10, + "zoomX": 125, + "zoomY": 125, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 128, + "y": -20.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 0, + "opacity": 255, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": -10, + "zoomX": 125, + "zoomY": 125, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 128, + "y": -32.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 0, + "opacity": 255, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": -10, + "zoomX": 125, + "zoomY": 125, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 128, + "y": -44.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 0, + "opacity": 255, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": -10, + "zoomX": 125, + "zoomY": 125, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 128, + "y": -56.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 0, + "opacity": 255, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": -10, + "zoomX": 125, + "zoomY": 125, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 128, + "y": -107.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 0, + "opacity": 255, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": -10, + "zoomX": 125, + "zoomY": 125, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 128, + "y": -95.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 0, + "opacity": 255, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": -10, + "zoomX": 125, + "zoomY": 125, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 128, + "y": -83.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 0, + "opacity": 255, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": -10, + "zoomX": 125, + "zoomY": 125, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 128, + "y": -71.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 0, + "opacity": 255, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": -10, + "zoomX": 125, + "zoomY": 125, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 84.5, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "angle": 90, + "visible": true, + "target": 2, + "graphicFrame": 0, + "opacity": 255, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": -10, + "zoomX": 125, + "zoomY": 125, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 96.5, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "angle": 90, + "visible": true, + "target": 2, + "graphicFrame": 0, + "opacity": 255, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": -10, + "zoomX": 125, + "zoomY": 125, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 108.5, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "angle": 90, + "visible": true, + "target": 2, + "graphicFrame": 0, + "opacity": 255, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": -10, + "zoomX": 125, + "zoomY": 125, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 120.5, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "angle": 90, + "visible": true, + "target": 2, + "graphicFrame": 0, + "opacity": 255, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": -10, + "zoomX": 125, + "zoomY": 125, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 171.5, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "angle": 90, + "visible": true, + "target": 2, + "graphicFrame": 0, + "opacity": 255, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": -10, + "zoomX": 125, + "zoomY": 125, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 159.5, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "angle": 90, + "visible": true, + "target": 2, + "graphicFrame": 0, + "opacity": 255, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": -10, + "zoomX": 125, + "zoomY": 125, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 147.5, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "angle": 90, + "visible": true, + "target": 2, + "graphicFrame": 0, + "opacity": 255, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": -10, + "zoomX": 125, + "zoomY": 125, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 135.5, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "angle": 90, + "visible": true, + "target": 2, + "graphicFrame": 0, + "opacity": 255, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": -10, + "zoomX": 125, + "zoomY": 125, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 96.5, + "y": -72, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 1, + "opacity": 100, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": -8, + "zoomX": 120, + "zoomY": 120, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 96.5, + "y": -80, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 1, + "opacity": 255, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": -6, + "zoomX": 115, + "zoomY": 115, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 130, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 159.5, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 1, + "opacity": 100, + "priority": 1, + "focus": 1 + }, + { + "x": 96.5, + "y": -88, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 1, + "opacity": 255, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": -4, + "zoomX": 110, + "zoomY": 110, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 159.5, + "y": -72, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 1, + "opacity": 255, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": -2, + "zoomX": 105, + "zoomY": 105, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 126, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 159.5, + "y": -80, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 1, + "opacity": 255, + "priority": 1, + "focus": 1 + }, + { + "x": 128, + "y": -52, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 1, + "opacity": 100, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 128, + "y": -60, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 1, + "opacity": 255, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 130, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 128, + "y": -68, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 1, + "opacity": 255, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + } + ] + ], + "frameTimedEvents": { + "0": [ + { + "frameIndex": 0, + "resourceName": "PRSFX- Weather Ball3.wav", + "volume": 80, + "pitch": 100, + "eventType": "AnimTimedSoundEvent" + } + ], + "7": [ + { + "frameIndex": 7, + "resourceName": "Twine.m4a", + "volume": 80, + "pitch": 100, + "eventType": "AnimTimedSoundEvent" + } + ], + "21": [ + { + "frameIndex": 21, + "resourceName": "PRSFX- Toxic2.wav", + "volume": 80, + "pitch": 100, + "eventType": "AnimTimedSoundEvent" + } + ] + }, + "position": 1, + "hue": 0 +} \ No newline at end of file diff --git a/public/battle-anims/pika-papow.json b/public/battle-anims/pika-papow.json new file mode 100644 index 00000000000..3282acb1e81 --- /dev/null +++ b/public/battle-anims/pika-papow.json @@ -0,0 +1,6994 @@ +{ + "id": 892, + "graphic": "PRAS- Electric", + "frames": [ + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + -10, + -10, + -10, + 14 + ], + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 0, + "y": 0, + "zoomX": 36, + "zoomY": 36, + "angle": 315, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 7, + "opacity": 102, + "color": [ + 0, + 0, + 15, + 12 + ], + "priority": 1, + "focus": 3 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + -19, + -19, + -19, + 28 + ], + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 0, + "y": 0, + "zoomX": 42, + "zoomY": 42, + "angle": 270, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 8, + "opacity": 153, + "color": [ + 0, + 0, + 31, + 25 + ], + "priority": 1, + "focus": 3 + }, + { + "x": 0, + "y": 0, + "zoomX": 30, + "zoomY": 30, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 6, + "opacity": 51, + "priority": 1, + "focus": 3 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + -29, + -29, + -29, + 42 + ], + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 0, + "y": 0, + "zoomX": 48, + "zoomY": 48, + "angle": 225, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 9, + "opacity": 204, + "color": [ + 0, + 0, + 47, + 37 + ], + "priority": 1, + "focus": 3 + }, + { + "x": 0, + "y": 0, + "zoomX": 36, + "zoomY": 36, + "angle": 315, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 7, + "opacity": 102, + "color": [ + 0, + 0, + 15, + 12 + ], + "priority": 1, + "focus": 3 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + -38, + -38, + -38, + 56 + ], + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 0, + "y": 0, + "zoomX": 54, + "zoomY": 54, + "angle": 180, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 10, + "opacity": 255, + "color": [ + 0, + 0, + 63, + 50 + ], + "priority": 1, + "focus": 3 + }, + { + "x": 0, + "y": 0, + "zoomX": 42, + "zoomY": 42, + "angle": 270, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 8, + "opacity": 153, + "color": [ + 0, + 0, + 31, + 25 + ], + "priority": 1, + "focus": 3 + }, + { + "x": 0, + "y": 0, + "zoomX": 30, + "zoomY": 30, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 6, + "opacity": 51, + "priority": 1, + "focus": 3 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + -48, + -48, + -48, + 70 + ], + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 0, + "y": 0, + "zoomX": 60, + "zoomY": 60, + "angle": 135, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 10, + "opacity": 255, + "color": [ + 0, + 0, + 79, + 62 + ], + "priority": 1, + "focus": 3 + }, + { + "x": 0, + "y": 0, + "zoomX": 48, + "zoomY": 48, + "angle": 225, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 9, + "opacity": 204, + "color": [ + 0, + 0, + 47, + 37 + ], + "priority": 1, + "focus": 3 + }, + { + "x": 0, + "y": 0, + "zoomX": 36, + "zoomY": 36, + "angle": 315, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 7, + "opacity": 102, + "color": [ + 0, + 0, + 15, + 12 + ], + "priority": 1, + "focus": 3 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + -57, + -57, + -57, + 85 + ], + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 0, + "y": 0, + "zoomX": 66, + "zoomY": 66, + "angle": 90, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 10, + "opacity": 255, + "color": [ + 0, + 0, + 95, + 75 + ], + "priority": 1, + "focus": 3 + }, + { + "x": 0, + "y": 0, + "zoomX": 54, + "zoomY": 54, + "angle": 180, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 10, + "opacity": 255, + "color": [ + 0, + 0, + 63, + 50 + ], + "priority": 1, + "focus": 3 + }, + { + "x": 0, + "y": 0, + "zoomX": 42, + "zoomY": 42, + "angle": 270, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 8, + "opacity": 153, + "color": [ + 0, + 0, + 31, + 25 + ], + "priority": 1, + "focus": 3 + }, + { + "x": 0, + "y": 0, + "zoomX": 30, + "zoomY": 30, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 6, + "opacity": 51, + "priority": 1, + "focus": 3 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + -67, + -67, + -67, + 99 + ], + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 0, + "y": 0, + "zoomX": 72, + "zoomY": 72, + "angle": 45, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 10, + "opacity": 255, + "color": [ + 0, + 0, + 111, + 87 + ], + "priority": 1, + "focus": 3 + }, + { + "x": 0, + "y": 0, + "zoomX": 60, + "zoomY": 60, + "angle": 135, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 10, + "opacity": 255, + "color": [ + 0, + 0, + 79, + 62 + ], + "priority": 1, + "focus": 3 + }, + { + "x": 0, + "y": 0, + "zoomX": 48, + "zoomY": 48, + "angle": 225, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 9, + "opacity": 204, + "color": [ + 0, + 0, + 47, + 37 + ], + "priority": 1, + "focus": 3 + }, + { + "x": 0, + "y": 0, + "zoomX": 36, + "zoomY": 36, + "angle": 315, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 7, + "opacity": 102, + "color": [ + 0, + 0, + 15, + 12 + ], + "priority": 1, + "focus": 3 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + -76, + -76, + -76, + 113 + ], + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 0, + "y": 0, + "zoomX": 78, + "zoomY": 78, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 10, + "opacity": 255, + "color": [ + 0, + 0, + 127, + 100 + ], + "priority": 1, + "focus": 3 + }, + { + "x": 0, + "y": 0, + "zoomX": 66, + "zoomY": 66, + "angle": 90, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 10, + "opacity": 255, + "color": [ + 0, + 0, + 95, + 75 + ], + "priority": 1, + "focus": 3 + }, + { + "x": 0, + "y": 0, + "zoomX": 54, + "zoomY": 54, + "angle": 180, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 10, + "opacity": 255, + "color": [ + 0, + 0, + 63, + 50 + ], + "priority": 1, + "focus": 3 + }, + { + "x": 0, + "y": 0, + "zoomX": 42, + "zoomY": 42, + "angle": 270, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 8, + "opacity": 153, + "color": [ + 0, + 0, + 31, + 25 + ], + "priority": 1, + "focus": 3 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + -85, + -85, + -85, + 127 + ], + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 0, + "y": 0, + "zoomX": 84, + "zoomY": 84, + "angle": 315, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 10, + "opacity": 255, + "color": [ + 0, + 0, + 143, + 112 + ], + "priority": 1, + "focus": 3 + }, + { + "x": 0, + "y": 0, + "zoomX": 72, + "zoomY": 72, + "angle": 45, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 10, + "opacity": 255, + "color": [ + 0, + 0, + 111, + 87 + ], + "priority": 1, + "focus": 3 + }, + { + "x": 0, + "y": 0, + "zoomX": 60, + "zoomY": 60, + "angle": 135, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 10, + "opacity": 255, + "color": [ + 0, + 0, + 79, + 62 + ], + "priority": 1, + "focus": 3 + }, + { + "x": 0, + "y": 0, + "zoomX": 48, + "zoomY": 48, + "angle": 225, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 9, + "opacity": 204, + "color": [ + 0, + 0, + 47, + 37 + ], + "priority": 1, + "focus": 3 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + -95, + -95, + -95, + 141 + ], + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 0, + "y": 0, + "zoomX": 90, + "zoomY": 90, + "angle": 270, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 10, + "opacity": 255, + "color": [ + 0, + 0, + 159, + 125 + ], + "priority": 1, + "focus": 3 + }, + { + "x": 0, + "y": 0, + "zoomX": 78, + "zoomY": 78, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 10, + "opacity": 255, + "color": [ + 0, + 0, + 127, + 100 + ], + "priority": 1, + "focus": 3 + }, + { + "x": 0, + "y": 0, + "zoomX": 66, + "zoomY": 66, + "angle": 90, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 10, + "opacity": 255, + "color": [ + 0, + 0, + 95, + 75 + ], + "priority": 1, + "focus": 3 + }, + { + "x": 0, + "y": 0, + "zoomX": 54, + "zoomY": 54, + "angle": 180, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 10, + "opacity": 255, + "color": [ + 0, + 0, + 63, + 50 + ], + "priority": 1, + "focus": 3 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + -104, + -104, + -104, + 155 + ], + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 0, + "y": 0, + "zoomX": 96, + "zoomY": 96, + "angle": 225, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 10, + "opacity": 255, + "color": [ + 0, + 0, + 175, + 137 + ], + "priority": 1, + "focus": 3 + }, + { + "x": 0, + "y": 0, + "zoomX": 84, + "zoomY": 84, + "angle": 315, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 10, + "opacity": 255, + "color": [ + 0, + 0, + 143, + 112 + ], + "priority": 1, + "focus": 3 + }, + { + "x": 0, + "y": 0, + "zoomX": 72, + "zoomY": 72, + "angle": 45, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 10, + "opacity": 255, + "color": [ + 0, + 0, + 111, + 87 + ], + "priority": 1, + "focus": 3 + }, + { + "x": 0, + "y": 0, + "zoomX": 60, + "zoomY": 60, + "angle": 135, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 10, + "opacity": 255, + "color": [ + 0, + 0, + 79, + 62 + ], + "priority": 1, + "focus": 3 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + -114, + -114, + -114, + 170 + ], + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 0, + "y": 0, + "zoomX": 102, + "zoomY": 102, + "angle": 180, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 10, + "opacity": 255, + "color": [ + 0, + 0, + 191, + 150 + ], + "priority": 1, + "focus": 3 + }, + { + "x": 0, + "y": 0, + "zoomX": 90, + "zoomY": 90, + "angle": 270, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 10, + "opacity": 255, + "color": [ + 0, + 0, + 159, + 125 + ], + "priority": 1, + "focus": 3 + }, + { + "x": 0, + "y": 0, + "zoomX": 78, + "zoomY": 78, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 10, + "opacity": 255, + "color": [ + 0, + 0, + 127, + 100 + ], + "priority": 1, + "focus": 3 + }, + { + "x": 0, + "y": 0, + "zoomX": 66, + "zoomY": 66, + "angle": 90, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 10, + "opacity": 255, + "color": [ + 0, + 0, + 95, + 75 + ], + "priority": 1, + "focus": 3 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + -123, + -123, + -123, + 184 + ], + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 0, + "y": 0, + "zoomX": 108, + "zoomY": 108, + "angle": 135, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 10, + "opacity": 255, + "color": [ + 0, + 0, + 207, + 162 + ], + "priority": 1, + "focus": 3 + }, + { + "x": 0, + "y": 0, + "zoomX": 96, + "zoomY": 96, + "angle": 225, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 10, + "opacity": 255, + "color": [ + 0, + 0, + 175, + 137 + ], + "priority": 1, + "focus": 3 + }, + { + "x": 0, + "y": 0, + "zoomX": 84, + "zoomY": 84, + "angle": 315, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 10, + "opacity": 255, + "color": [ + 0, + 0, + 143, + 112 + ], + "priority": 1, + "focus": 3 + }, + { + "x": 0, + "y": 0, + "zoomX": 72, + "zoomY": 72, + "angle": 45, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 10, + "opacity": 255, + "color": [ + 0, + 0, + 111, + 87 + ], + "priority": 1, + "focus": 3 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + -133, + -133, + -133, + 198 + ], + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 0, + "y": 0, + "zoomX": 114, + "zoomY": 114, + "angle": 90, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 10, + "opacity": 255, + "color": [ + 0, + 0, + 223, + 175 + ], + "priority": 1, + "focus": 3 + }, + { + "x": 0, + "y": 0, + "zoomX": 102, + "zoomY": 102, + "angle": 180, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 10, + "opacity": 255, + "color": [ + 0, + 0, + 191, + 150 + ], + "priority": 1, + "focus": 3 + }, + { + "x": 0, + "y": 0, + "zoomX": 90, + "zoomY": 90, + "angle": 270, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 10, + "opacity": 255, + "color": [ + 0, + 0, + 159, + 125 + ], + "priority": 1, + "focus": 3 + }, + { + "x": 0, + "y": 0, + "zoomX": 78, + "zoomY": 78, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 10, + "opacity": 255, + "color": [ + 0, + 0, + 127, + 100 + ], + "priority": 1, + "focus": 3 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + -142, + -142, + -142, + 212 + ], + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 0, + "y": 0, + "zoomX": 120, + "zoomY": 120, + "angle": 45, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 10, + "opacity": 255, + "color": [ + 0, + 0, + 239, + 187 + ], + "priority": 1, + "focus": 3 + }, + { + "x": 0, + "y": 0, + "zoomX": 108, + "zoomY": 108, + "angle": 135, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 10, + "opacity": 255, + "color": [ + 0, + 0, + 207, + 162 + ], + "priority": 1, + "focus": 3 + }, + { + "x": 0, + "y": 0, + "zoomX": 96, + "zoomY": 96, + "angle": 225, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 10, + "opacity": 255, + "color": [ + 0, + 0, + 175, + 137 + ], + "priority": 1, + "focus": 3 + }, + { + "x": 0, + "y": 0, + "zoomX": 84, + "zoomY": 84, + "angle": 315, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 10, + "opacity": 255, + "color": [ + 0, + 0, + 143, + 112 + ], + "priority": 1, + "focus": 3 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + -152, + -152, + -152, + 226 + ], + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 0, + "y": 0, + "zoomX": 120, + "zoomY": 120, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 10, + "opacity": 255, + "color": [ + 0, + 0, + 255, + 200 + ], + "priority": 1, + "focus": 3 + }, + { + "x": 0, + "y": 0, + "zoomX": 114, + "zoomY": 114, + "angle": 90, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 10, + "opacity": 255, + "color": [ + 0, + 0, + 223, + 175 + ], + "priority": 1, + "focus": 3 + }, + { + "x": 0, + "y": 0, + "zoomX": 102, + "zoomY": 102, + "angle": 180, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 10, + "opacity": 255, + "color": [ + 0, + 0, + 191, + 150 + ], + "priority": 1, + "focus": 3 + }, + { + "x": 0, + "y": 0, + "zoomX": 90, + "zoomY": 90, + "angle": 270, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 10, + "opacity": 255, + "color": [ + 0, + 0, + 159, + 125 + ], + "priority": 1, + "focus": 3 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + -161, + -161, + -161, + 240 + ], + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 0, + "y": 0, + "zoomX": 120, + "zoomY": 120, + "angle": 315, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 10, + "opacity": 255, + "color": [ + 0, + 0, + 255, + 200 + ], + "priority": 1, + "focus": 3 + }, + { + "x": 0, + "y": 0, + "zoomX": 120, + "zoomY": 120, + "angle": 45, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 10, + "opacity": 255, + "color": [ + 0, + 0, + 239, + 187 + ], + "priority": 1, + "focus": 3 + }, + { + "x": 0, + "y": 0, + "zoomX": 108, + "zoomY": 108, + "angle": 135, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 10, + "opacity": 255, + "color": [ + 0, + 0, + 207, + 162 + ], + "priority": 1, + "focus": 3 + }, + { + "x": 0, + "y": 0, + "zoomX": 96, + "zoomY": 96, + "angle": 225, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 10, + "opacity": 255, + "color": [ + 0, + 0, + 175, + 137 + ], + "priority": 1, + "focus": 3 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + -170, + -170, + -170, + 255 + ], + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 0, + "y": 0, + "zoomX": 120, + "zoomY": 120, + "angle": 270, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 10, + "opacity": 255, + "color": [ + 0, + 0, + 255, + 200 + ], + "priority": 1, + "focus": 3 + }, + { + "x": 0, + "y": 0, + "zoomX": 120, + "zoomY": 120, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 10, + "opacity": 255, + "color": [ + 0, + 0, + 255, + 200 + ], + "priority": 1, + "focus": 3 + }, + { + "x": 0, + "y": 0, + "zoomX": 114, + "zoomY": 114, + "angle": 90, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 10, + "opacity": 255, + "color": [ + 0, + 0, + 223, + 175 + ], + "priority": 1, + "focus": 3 + }, + { + "x": 0, + "y": 0, + "zoomX": 102, + "zoomY": 102, + "angle": 180, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 10, + "opacity": 255, + "color": [ + 0, + 0, + 191, + 150 + ], + "priority": 1, + "focus": 3 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + -170, + -170, + -170, + 255 + ], + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 0, + "y": 0, + "zoomX": 120, + "zoomY": 120, + "angle": 225, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 10, + "opacity": 255, + "color": [ + 0, + 0, + 255, + 200 + ], + "priority": 1, + "focus": 3 + }, + { + "x": 0, + "y": 0, + "zoomX": 120, + "zoomY": 120, + "angle": 315, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 10, + "opacity": 255, + "color": [ + 0, + 0, + 255, + 200 + ], + "priority": 1, + "focus": 3 + }, + { + "x": 0, + "y": 0, + "zoomX": 120, + "zoomY": 120, + "angle": 45, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 10, + "opacity": 255, + "color": [ + 0, + 0, + 239, + 187 + ], + "priority": 1, + "focus": 3 + }, + { + "x": 0, + "y": 0, + "zoomX": 108, + "zoomY": 108, + "angle": 135, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 10, + "opacity": 255, + "color": [ + 0, + 0, + 207, + 162 + ], + "priority": 1, + "focus": 3 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + -170, + -170, + -170, + 255 + ], + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 0, + "y": 0, + "zoomX": 120, + "zoomY": 120, + "angle": 180, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 10, + "opacity": 255, + "color": [ + 0, + 0, + 255, + 200 + ], + "priority": 1, + "focus": 3 + }, + { + "x": 0, + "y": 0, + "zoomX": 120, + "zoomY": 120, + "angle": 270, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 10, + "opacity": 255, + "color": [ + 0, + 0, + 255, + 200 + ], + "priority": 1, + "focus": 3 + }, + { + "x": 0, + "y": 0, + "zoomX": 120, + "zoomY": 120, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 10, + "opacity": 255, + "color": [ + 0, + 0, + 255, + 200 + ], + "priority": 1, + "focus": 3 + }, + { + "x": 0, + "y": 0, + "zoomX": 114, + "zoomY": 114, + "angle": 90, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 10, + "opacity": 255, + "color": [ + 0, + 0, + 223, + 175 + ], + "priority": 1, + "focus": 3 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + -170, + -170, + -170, + 255 + ], + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 0, + "y": 0, + "zoomX": 120, + "zoomY": 120, + "angle": 135, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 10, + "opacity": 255, + "color": [ + 0, + 0, + 255, + 200 + ], + "priority": 1, + "focus": 3 + }, + { + "x": 0, + "y": 0, + "zoomX": 120, + "zoomY": 120, + "angle": 225, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 10, + "opacity": 255, + "color": [ + 0, + 0, + 255, + 200 + ], + "priority": 1, + "focus": 3 + }, + { + "x": 0, + "y": 0, + "zoomX": 120, + "zoomY": 120, + "angle": 315, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 10, + "opacity": 255, + "color": [ + 0, + 0, + 255, + 200 + ], + "priority": 1, + "focus": 3 + }, + { + "x": 0, + "y": 0, + "zoomX": 120, + "zoomY": 120, + "angle": 45, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 10, + "opacity": 255, + "color": [ + 0, + 0, + 239, + 187 + ], + "priority": 1, + "focus": 3 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + -170, + -170, + -170, + 255 + ], + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 0, + "y": 0, + "zoomX": 120, + "zoomY": 120, + "angle": 90, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 10, + "opacity": 255, + "color": [ + 0, + 0, + 255, + 200 + ], + "priority": 1, + "focus": 3 + }, + { + "x": 0, + "y": 0, + "zoomX": 120, + "zoomY": 120, + "angle": 180, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 10, + "opacity": 255, + "color": [ + 0, + 0, + 255, + 200 + ], + "priority": 1, + "focus": 3 + }, + { + "x": 0, + "y": 0, + "zoomX": 120, + "zoomY": 120, + "angle": 270, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 10, + "opacity": 255, + "color": [ + 0, + 0, + 255, + 200 + ], + "priority": 1, + "focus": 3 + }, + { + "x": 0, + "y": 0, + "zoomX": 120, + "zoomY": 120, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 10, + "opacity": 255, + "color": [ + 0, + 0, + 255, + 200 + ], + "priority": 1, + "focus": 3 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + -170, + -170, + -170, + 255 + ], + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 0, + "y": 0, + "zoomX": 120, + "zoomY": 120, + "angle": 45, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 10, + "opacity": 255, + "color": [ + 27, + 27, + 250, + 200 + ], + "priority": 1, + "focus": 3 + }, + { + "x": 0, + "y": 0, + "zoomX": 120, + "zoomY": 120, + "angle": 135, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 10, + "opacity": 255, + "color": [ + 27, + 27, + 250, + 200 + ], + "priority": 1, + "focus": 3 + }, + { + "x": 0, + "y": 0, + "zoomX": 120, + "zoomY": 120, + "angle": 225, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 10, + "opacity": 255, + "color": [ + 27, + 27, + 250, + 200 + ], + "priority": 1, + "focus": 3 + }, + { + "x": 0, + "y": 0, + "zoomX": 120, + "zoomY": 120, + "angle": 315, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 10, + "opacity": 255, + "color": [ + 27, + 27, + 250, + 200 + ], + "priority": 1, + "focus": 3 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + -170, + -170, + -170, + 255 + ], + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 0, + "y": 0, + "zoomX": 120, + "zoomY": 120, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 10, + "opacity": 255, + "color": [ + 55, + 55, + 246, + 200 + ], + "priority": 1, + "focus": 3 + }, + { + "x": 0, + "y": 0, + "zoomX": 120, + "zoomY": 120, + "angle": 90, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 10, + "opacity": 255, + "color": [ + 55, + 55, + 246, + 200 + ], + "priority": 1, + "focus": 3 + }, + { + "x": 0, + "y": 0, + "zoomX": 120, + "zoomY": 120, + "angle": 180, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 10, + "opacity": 255, + "color": [ + 55, + 55, + 246, + 200 + ], + "priority": 1, + "focus": 3 + }, + { + "x": 0, + "y": 0, + "zoomX": 120, + "zoomY": 120, + "angle": 270, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 10, + "opacity": 255, + "color": [ + 55, + 55, + 246, + 200 + ], + "priority": 1, + "focus": 3 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + -170, + -170, + -170, + 255 + ], + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 0, + "y": 0, + "zoomX": 120, + "zoomY": 120, + "angle": 315, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 10, + "opacity": 255, + "color": [ + 82, + 82, + 241, + 200 + ], + "priority": 1, + "focus": 3 + }, + { + "x": 0, + "y": 0, + "zoomX": 120, + "zoomY": 120, + "angle": 45, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 10, + "opacity": 255, + "color": [ + 82, + 82, + 241, + 200 + ], + "priority": 1, + "focus": 3 + }, + { + "x": 0, + "y": 0, + "zoomX": 120, + "zoomY": 120, + "angle": 135, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 10, + "opacity": 255, + "color": [ + 82, + 82, + 241, + 200 + ], + "priority": 1, + "focus": 3 + }, + { + "x": 0, + "y": 0, + "zoomX": 120, + "zoomY": 120, + "angle": 225, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 10, + "opacity": 255, + "color": [ + 82, + 82, + 241, + 200 + ], + "priority": 1, + "focus": 3 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + -170, + -170, + -170, + 255 + ], + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 0, + "y": 0, + "zoomX": 120, + "zoomY": 120, + "angle": 90, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 10, + "opacity": 255, + "color": [ + 110, + 110, + 237, + 200 + ], + "priority": 1, + "focus": 3 + }, + { + "x": 0, + "y": 0, + "zoomX": 120, + "zoomY": 120, + "angle": 180, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 10, + "opacity": 255, + "color": [ + 110, + 110, + 237, + 200 + ], + "priority": 1, + "focus": 3 + }, + { + "x": 0, + "y": 0, + "zoomX": 120, + "zoomY": 120, + "angle": 270, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 10, + "opacity": 255, + "color": [ + 110, + 110, + 237, + 200 + ], + "priority": 1, + "focus": 3 + }, + { + "x": 0, + "y": 0, + "zoomX": 120, + "zoomY": 120, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 10, + "opacity": 255, + "color": [ + 110, + 110, + 237, + 200 + ], + "priority": 1, + "focus": 3 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + -170, + -170, + -170, + 255 + ], + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 0, + "y": 0, + "zoomX": 120, + "zoomY": 120, + "angle": 45, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 10, + "opacity": 255, + "color": [ + 137, + 137, + 233, + 200 + ], + "priority": 1, + "focus": 3 + }, + { + "x": 0, + "y": 0, + "zoomX": 120, + "zoomY": 120, + "angle": 135, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 10, + "opacity": 255, + "color": [ + 137, + 137, + 233, + 200 + ], + "priority": 1, + "focus": 3 + }, + { + "x": 0, + "y": 0, + "zoomX": 120, + "zoomY": 120, + "angle": 225, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 10, + "opacity": 255, + "color": [ + 137, + 137, + 233, + 200 + ], + "priority": 1, + "focus": 3 + }, + { + "x": 0, + "y": 0, + "zoomX": 120, + "zoomY": 120, + "angle": 315, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 10, + "opacity": 255, + "color": [ + 137, + 137, + 233, + 200 + ], + "priority": 1, + "focus": 3 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + -170, + -170, + -170, + 255 + ], + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 0, + "y": 0, + "zoomX": 120, + "zoomY": 120, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 10, + "opacity": 255, + "color": [ + 165, + 165, + 228, + 200 + ], + "priority": 1, + "focus": 3 + }, + { + "x": 0, + "y": 0, + "zoomX": 120, + "zoomY": 120, + "angle": 90, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 10, + "opacity": 255, + "color": [ + 165, + 165, + 228, + 200 + ], + "priority": 1, + "focus": 3 + }, + { + "x": 0, + "y": 0, + "zoomX": 120, + "zoomY": 120, + "angle": 180, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 10, + "opacity": 255, + "color": [ + 165, + 165, + 228, + 200 + ], + "priority": 1, + "focus": 3 + }, + { + "x": 0, + "y": 0, + "zoomX": 120, + "zoomY": 120, + "angle": 270, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 10, + "opacity": 255, + "color": [ + 165, + 165, + 228, + 200 + ], + "priority": 1, + "focus": 3 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + -170, + -170, + -170, + 255 + ], + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 0, + "y": 0, + "zoomX": 120, + "zoomY": 120, + "angle": 45, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 10, + "opacity": 255, + "color": [ + 192, + 192, + 224, + 200 + ], + "priority": 1, + "focus": 3 + }, + { + "x": 0, + "y": 0, + "zoomX": 120, + "zoomY": 120, + "angle": 135, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 10, + "opacity": 255, + "color": [ + 192, + 192, + 224, + 200 + ], + "priority": 1, + "focus": 3 + }, + { + "x": 0, + "y": 0, + "zoomX": 120, + "zoomY": 120, + "angle": 225, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 10, + "opacity": 255, + "color": [ + 192, + 192, + 224, + 200 + ], + "priority": 1, + "focus": 3 + }, + { + "x": 0, + "y": 0, + "zoomX": 120, + "zoomY": 120, + "angle": 315, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 10, + "opacity": 255, + "color": [ + 192, + 192, + 224, + 200 + ], + "priority": 1, + "focus": 3 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + -170, + -170, + -170, + 255 + ], + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 0, + "y": 0, + "zoomX": 120, + "zoomY": 120, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 10, + "opacity": 255, + "color": [ + 220, + 220, + 220, + 200 + ], + "priority": 1, + "focus": 3 + }, + { + "x": 0, + "y": 0, + "zoomX": 120, + "zoomY": 120, + "angle": 90, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 10, + "opacity": 255, + "color": [ + 220, + 220, + 220, + 200 + ], + "priority": 1, + "focus": 3 + }, + { + "x": 0, + "y": 0, + "zoomX": 120, + "zoomY": 120, + "angle": 180, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 10, + "opacity": 255, + "color": [ + 220, + 220, + 220, + 200 + ], + "priority": 1, + "focus": 3 + }, + { + "x": 0, + "y": 0, + "zoomX": 120, + "zoomY": 120, + "angle": 270, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 10, + "opacity": 255, + "color": [ + 220, + 220, + 220, + 200 + ], + "priority": 1, + "focus": 3 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + -170, + -170, + -170, + 255 + ], + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 32, + "y": -16, + "zoomX": 120, + "zoomY": 120, + "angle": 315, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 10, + "opacity": 255, + "color": [ + 220, + 220, + 220, + 200 + ], + "priority": 1, + "focus": 3 + }, + { + "x": 32, + "y": -16, + "zoomX": 120, + "zoomY": 120, + "angle": 45, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 10, + "opacity": 255, + "color": [ + 220, + 220, + 220, + 200 + ], + "priority": 1, + "focus": 3 + }, + { + "x": 32, + "y": -16, + "zoomX": 120, + "zoomY": 120, + "angle": 135, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 10, + "opacity": 255, + "color": [ + 220, + 220, + 220, + 200 + ], + "priority": 1, + "focus": 3 + }, + { + "x": 32, + "y": -16, + "zoomX": 120, + "zoomY": 120, + "angle": 225, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 10, + "opacity": 255, + "color": [ + 220, + 220, + 220, + 200 + ], + "priority": 1, + "focus": 3 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + -170, + -170, + -170, + 255 + ], + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 64, + "y": -32, + "zoomX": 120, + "zoomY": 120, + "angle": 270, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 10, + "opacity": 255, + "color": [ + 220, + 220, + 220, + 200 + ], + "priority": 1, + "focus": 3 + }, + { + "x": 64, + "y": -32, + "zoomX": 120, + "zoomY": 120, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 10, + "opacity": 255, + "color": [ + 220, + 220, + 220, + 200 + ], + "priority": 1, + "focus": 3 + }, + { + "x": 64, + "y": -32, + "zoomX": 120, + "zoomY": 120, + "angle": 90, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 10, + "opacity": 255, + "color": [ + 220, + 220, + 220, + 200 + ], + "priority": 1, + "focus": 3 + }, + { + "x": 64, + "y": -32, + "zoomX": 120, + "zoomY": 120, + "angle": 180, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 10, + "opacity": 255, + "color": [ + 220, + 220, + 220, + 200 + ], + "priority": 1, + "focus": 3 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + -170, + -170, + -170, + 255 + ], + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 96, + "y": -48, + "zoomX": 120, + "zoomY": 120, + "angle": 225, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 10, + "opacity": 255, + "color": [ + 220, + 220, + 220, + 200 + ], + "priority": 1, + "focus": 3 + }, + { + "x": 96, + "y": -48, + "zoomX": 120, + "zoomY": 120, + "angle": 315, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 10, + "opacity": 255, + "color": [ + 220, + 220, + 220, + 200 + ], + "priority": 1, + "focus": 3 + }, + { + "x": 96, + "y": -48, + "zoomX": 120, + "zoomY": 120, + "angle": 45, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 10, + "opacity": 255, + "color": [ + 220, + 220, + 220, + 200 + ], + "priority": 1, + "focus": 3 + }, + { + "x": 96, + "y": -48, + "zoomX": 120, + "zoomY": 120, + "angle": 135, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 10, + "opacity": 255, + "color": [ + 220, + 220, + 220, + 200 + ], + "priority": 1, + "focus": 3 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + -170, + -170, + -170, + 255 + ], + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "priority": 1, + "focus": 1 + }, + { + "x": 128, + "y": -64, + "zoomX": 120, + "zoomY": 120, + "angle": 180, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 10, + "opacity": 255, + "color": [ + 220, + 220, + 220, + 200 + ], + "priority": 1, + "focus": 3 + }, + { + "x": 128, + "y": -64, + "zoomX": 120, + "zoomY": 120, + "angle": 270, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 10, + "opacity": 255, + "color": [ + 220, + 220, + 220, + 200 + ], + "priority": 1, + "focus": 3 + }, + { + "x": 128, + "y": -64, + "zoomX": 120, + "zoomY": 120, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 10, + "opacity": 255, + "color": [ + 220, + 220, + 220, + 200 + ], + "priority": 1, + "focus": 3 + }, + { + "x": 128, + "y": -64, + "zoomX": 120, + "zoomY": 120, + "angle": 90, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 10, + "opacity": 255, + "color": [ + 220, + 220, + 220, + 200 + ], + "priority": 1, + "focus": 3 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + -170, + -170, + -170, + 255 + ], + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -68, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + -36, + -36, + -36, + 0 + ], + "priority": 1, + "focus": 1 + }, + { + "x": 128, + "y": -64, + "zoomX": 120, + "zoomY": 120, + "angle": 135, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 10, + "opacity": 204, + "color": [ + 220, + 220, + 220, + 200 + ], + "priority": 1, + "focus": 3 + }, + { + "x": 128, + "y": -64, + "zoomX": 120, + "zoomY": 120, + "angle": 225, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 10, + "opacity": 204, + "color": [ + 220, + 220, + 220, + 200 + ], + "priority": 1, + "focus": 3 + }, + { + "x": 128, + "y": -64, + "zoomX": 120, + "zoomY": 120, + "angle": 315, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 10, + "opacity": 204, + "color": [ + 220, + 220, + 220, + 200 + ], + "priority": 1, + "focus": 3 + }, + { + "x": 128, + "y": -64, + "zoomX": 120, + "zoomY": 120, + "angle": 45, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 10, + "opacity": 204, + "color": [ + 220, + 220, + 220, + 200 + ], + "priority": 1, + "focus": 3 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + -170, + -170, + -170, + 255 + ], + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -72, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + -72, + -72, + -72, + 0 + ], + "priority": 1, + "focus": 1 + }, + { + "x": 128, + "y": -64, + "zoomX": 120, + "zoomY": 120, + "angle": 180, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 11, + "opacity": 153, + "color": [ + 220, + 220, + 220, + 200 + ], + "priority": 1, + "focus": 3 + }, + { + "x": 128, + "y": -64, + "zoomX": 120, + "zoomY": 120, + "angle": 270, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 11, + "opacity": 153, + "color": [ + 220, + 220, + 220, + 200 + ], + "priority": 1, + "focus": 3 + }, + { + "x": 128, + "y": -64, + "zoomX": 120, + "zoomY": 120, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 11, + "opacity": 153, + "color": [ + 220, + 220, + 220, + 200 + ], + "priority": 1, + "focus": 3 + }, + { + "x": 128, + "y": -64, + "zoomX": 120, + "zoomY": 120, + "angle": 90, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 11, + "opacity": 153, + "color": [ + 220, + 220, + 220, + 200 + ], + "priority": 1, + "focus": 3 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + -170, + -170, + -170, + 255 + ], + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -76, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + -108, + -108, + -108, + 0 + ], + "priority": 1, + "focus": 1 + }, + { + "x": 128, + "y": -64, + "zoomX": 120, + "zoomY": 120, + "angle": 135, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 12, + "opacity": 102, + "color": [ + 220, + 220, + 220, + 200 + ], + "priority": 1, + "focus": 3 + }, + { + "x": 128, + "y": -64, + "zoomX": 120, + "zoomY": 120, + "angle": 315, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 12, + "opacity": 102, + "color": [ + 220, + 220, + 220, + 200 + ], + "priority": 1, + "focus": 3 + }, + { + "x": 128, + "y": -64, + "zoomX": 120, + "zoomY": 120, + "angle": 225, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 12, + "opacity": 102, + "color": [ + 220, + 220, + 220, + 200 + ], + "priority": 1, + "focus": 3 + }, + { + "x": 128, + "y": -64, + "zoomX": 120, + "zoomY": 120, + "angle": 45, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 12, + "opacity": 102, + "color": [ + 220, + 220, + 220, + 200 + ], + "priority": 1, + "focus": 3 + }, + { + "x": 116, + "y": -34.5, + "zoomX": 100, + "zoomY": 100, + "mirror": true, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 6, + "opacity": 85, + "color": [ + 220, + 220, + 220, + 200 + ], + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + -170, + -170, + -170, + 255 + ], + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -72, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + -144, + -144, + -144, + 0 + ], + "priority": 1, + "focus": 1 + }, + { + "x": 128, + "y": -64, + "zoomX": 120, + "zoomY": 120, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 13, + "opacity": 51, + "color": [ + 220, + 220, + 220, + 200 + ], + "priority": 1, + "focus": 3 + }, + { + "x": 128, + "y": -64, + "zoomX": 120, + "zoomY": 120, + "angle": 270, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 13, + "opacity": 51, + "color": [ + 220, + 220, + 220, + 200 + ], + "priority": 1, + "focus": 3 + }, + { + "x": 128, + "y": -64, + "zoomX": 120, + "zoomY": 120, + "angle": 180, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 13, + "opacity": 51, + "color": [ + 220, + 220, + 220, + 200 + ], + "priority": 1, + "focus": 3 + }, + { + "x": 128, + "y": -64, + "zoomX": 120, + "zoomY": 120, + "angle": 90, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 13, + "opacity": 51, + "color": [ + 220, + 220, + 220, + 200 + ], + "priority": 1, + "focus": 3 + }, + { + "x": 116, + "y": -42, + "zoomX": 100, + "zoomY": 100, + "mirror": true, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 7, + "opacity": 85, + "color": [ + 220, + 220, + 220, + 200 + ], + "priority": 1, + "focus": 1 + }, + { + "x": 139.5, + "y": -31.5, + "zoomX": 100, + "zoomY": 100, + "mirror": true, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 6, + "opacity": 85, + "color": [ + 220, + 220, + 220, + 200 + ], + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + -170, + -170, + -170, + 255 + ], + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -68, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + -180, + -180, + -180, + 0 + ], + "priority": 1, + "focus": 1 + }, + { + "x": 139.5, + "y": -39.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 7, + "opacity": 170, + "color": [ + 220, + 220, + 220, + 200 + ], + "priority": 1, + "focus": 1 + }, + { + "x": 116, + "y": -50, + "zoomX": 100, + "zoomY": 100, + "mirror": true, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 8, + "opacity": 255, + "color": [ + 220, + 220, + 220, + 200 + ], + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + -170, + -170, + -170, + 255 + ], + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + -180, + -180, + -180, + 0 + ], + "priority": 1, + "focus": 1 + }, + { + "x": 116, + "y": -58, + "zoomX": 100, + "zoomY": 100, + "mirror": true, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 10, + "opacity": 255, + "color": [ + 220, + 220, + 220, + 200 + ], + "priority": 1, + "focus": 1 + }, + { + "x": 139.5, + "y": -47.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 8, + "opacity": 255, + "color": [ + 220, + 220, + 220, + 200 + ], + "priority": 1, + "focus": 1 + }, + { + "x": 116, + "y": -30.5, + "zoomX": 100, + "zoomY": 100, + "mirror": true, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 6, + "opacity": 85, + "color": [ + 220, + 220, + 220, + 200 + ], + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + -170, + -170, + -170, + 255 + ], + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -68, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + -180, + -180, + -180, + 0 + ], + "priority": 1, + "focus": 1 + }, + { + "x": 116, + "y": -66, + "zoomX": 100, + "zoomY": 100, + "mirror": true, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 11, + "opacity": 255, + "color": [ + 220, + 220, + 220, + 200 + ], + "priority": 1, + "focus": 1 + }, + { + "x": 139.5, + "y": -55.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 9, + "opacity": 255, + "color": [ + 220, + 220, + 220, + 200 + ], + "priority": 1, + "focus": 1 + }, + { + "x": 116, + "y": -38.5, + "zoomX": 100, + "zoomY": 100, + "mirror": true, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 7, + "opacity": 170, + "color": [ + 220, + 220, + 220, + 200 + ], + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + -170, + -170, + -170, + 255 + ], + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -72, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + -180, + -180, + -180, + 0 + ], + "priority": 1, + "focus": 1 + }, + { + "x": 116, + "y": -74.5, + "zoomX": 100, + "zoomY": 100, + "mirror": true, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 8, + "opacity": 255, + "color": [ + 220, + 220, + 220, + 200 + ], + "priority": 1, + "focus": 1 + }, + { + "x": 139.5, + "y": -63.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 10, + "opacity": 255, + "color": [ + 220, + 220, + 220, + 200 + ], + "priority": 1, + "focus": 1 + }, + { + "x": 116, + "y": -46.5, + "zoomX": 100, + "zoomY": 100, + "mirror": true, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 8, + "opacity": 170, + "color": [ + 220, + 220, + 220, + 200 + ], + "priority": 1, + "focus": 1 + }, + { + "x": 139.5, + "y": -26.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 6, + "opacity": 85, + "color": [ + 220, + 220, + 220, + 200 + ], + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + -170, + -170, + -170, + 255 + ], + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -76, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + -180, + -180, + -180, + 0 + ], + "priority": 1, + "focus": 1 + }, + { + "x": 116, + "y": -54, + "zoomX": 100, + "zoomY": 100, + "mirror": true, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 13, + "opacity": 85, + "color": [ + 220, + 220, + 220, + 200 + ], + "priority": 1, + "focus": 1 + }, + { + "x": 139.5, + "y": -71.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 11, + "opacity": 255, + "color": [ + 220, + 220, + 220, + 200 + ], + "priority": 1, + "focus": 1 + }, + { + "x": 116, + "y": -82.5, + "zoomX": 100, + "zoomY": 100, + "mirror": true, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 9, + "opacity": 255, + "color": [ + 220, + 220, + 220, + 200 + ], + "priority": 1, + "focus": 1 + }, + { + "x": 139.5, + "y": -34.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 7, + "opacity": 170, + "color": [ + 220, + 220, + 220, + 200 + ], + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + -170, + -170, + -170, + 255 + ], + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -72, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + -180, + -180, + -180, + 0 + ], + "priority": 1, + "focus": 1 + }, + { + "x": 116, + "y": -62.5, + "zoomX": 100, + "zoomY": 100, + "mirror": true, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 10, + "opacity": 170, + "color": [ + 220, + 220, + 220, + 200 + ], + "priority": 1, + "focus": 1 + }, + { + "x": 139.5, + "y": -79.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 12, + "opacity": 170, + "color": [ + 220, + 220, + 220, + 200 + ], + "priority": 1, + "focus": 1 + }, + { + "x": 139.5, + "y": -42.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 8, + "opacity": 255, + "color": [ + 220, + 220, + 220, + 200 + ], + "priority": 1, + "focus": 1 + }, + { + "x": 116, + "y": -36.5, + "zoomX": 100, + "zoomY": 100, + "mirror": true, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 6, + "opacity": 85, + "color": [ + 220, + 220, + 220, + 200 + ], + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + -170, + -170, + -170, + 255 + ], + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -68, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + -180, + -180, + -180, + 0 + ], + "priority": 1, + "focus": 1 + }, + { + "x": 139.5, + "y": -50, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 9, + "opacity": 255, + "color": [ + 220, + 220, + 220, + 200 + ], + "priority": 1, + "focus": 1 + }, + { + "x": 139.5, + "y": -87.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 13, + "opacity": 85, + "color": [ + 220, + 220, + 220, + 200 + ], + "priority": 1, + "focus": 1 + }, + { + "x": 116, + "y": -70.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 11, + "opacity": 255, + "color": [ + 220, + 220, + 220, + 200 + ], + "priority": 1, + "focus": 1 + }, + { + "x": 116, + "y": -44.5, + "zoomX": 100, + "zoomY": 100, + "mirror": true, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 7, + "opacity": 170, + "color": [ + 220, + 220, + 220, + 200 + ], + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + -170, + -170, + -170, + 255 + ], + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + -180, + -180, + -180, + 0 + ], + "priority": 1, + "focus": 1 + }, + { + "x": 116, + "y": -82.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 12, + "opacity": 170, + "color": [ + 220, + 220, + 220, + 200 + ], + "priority": 1, + "focus": 1 + }, + { + "x": 139.5, + "y": -58, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 10, + "opacity": 255, + "color": [ + 220, + 220, + 220, + 200 + ], + "priority": 1, + "focus": 1 + }, + { + "x": 116, + "y": -52.5, + "zoomX": 100, + "zoomY": 100, + "mirror": true, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 8, + "opacity": 255, + "color": [ + 220, + 220, + 220, + 200 + ], + "priority": 1, + "focus": 1 + }, + { + "x": 139.5, + "y": -38.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 6, + "opacity": 85, + "color": [ + 220, + 220, + 220, + 200 + ], + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + -170, + -170, + -170, + 255 + ], + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -68, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + -180, + -180, + -180, + 0 + ], + "priority": 1, + "focus": 1 + }, + { + "x": 116, + "y": -94.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 13, + "opacity": 85, + "color": [ + 220, + 220, + 220, + 200 + ], + "priority": 1, + "focus": 1 + }, + { + "x": 139.5, + "y": -66, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 11, + "opacity": 255, + "color": [ + 220, + 220, + 220, + 200 + ], + "priority": 1, + "focus": 1 + }, + { + "x": 116, + "y": -60.5, + "zoomX": 100, + "zoomY": 100, + "mirror": true, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 9, + "opacity": 85, + "color": [ + 220, + 220, + 220, + 200 + ], + "priority": 1, + "focus": 1 + }, + { + "x": 139.5, + "y": -46.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 7, + "opacity": 170, + "color": [ + 220, + 220, + 220, + 200 + ], + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + -170, + -170, + -170, + 255 + ], + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -72, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + -180, + -180, + -180, + 0 + ], + "priority": 1, + "focus": 1 + }, + { + "x": 139.5, + "y": -74, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 12, + "opacity": 170, + "color": [ + 220, + 220, + 220, + 200 + ], + "priority": 1, + "focus": 1 + }, + { + "x": 116, + "y": -60.5, + "zoomX": 100, + "zoomY": 100, + "mirror": true, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 10, + "opacity": 85, + "color": [ + 220, + 220, + 220, + 200 + ], + "priority": 1, + "focus": 1 + }, + { + "x": 139.5, + "y": -54.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 8, + "opacity": 255, + "color": [ + 220, + 220, + 220, + 200 + ], + "priority": 1, + "focus": 1 + }, + { + "x": 116, + "y": -30, + "zoomX": 100, + "zoomY": 100, + "mirror": true, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 6, + "opacity": 85, + "color": [ + 220, + 220, + 220, + 200 + ], + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + -170, + -170, + -170, + 255 + ], + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -76, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + -180, + -180, + -180, + 0 + ], + "priority": 1, + "focus": 1 + }, + { + "x": 139.5, + "y": -86, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 13, + "opacity": 85, + "color": [ + 220, + 220, + 220, + 200 + ], + "priority": 1, + "focus": 1 + }, + { + "x": 116, + "y": -68.5, + "zoomX": 100, + "zoomY": 100, + "mirror": true, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 11, + "opacity": 255, + "color": [ + 220, + 220, + 220, + 200 + ], + "priority": 1, + "focus": 1 + }, + { + "x": 139.5, + "y": -62.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 9, + "opacity": 255, + "color": [ + 220, + 220, + 220, + 200 + ], + "priority": 1, + "focus": 1 + }, + { + "x": 116, + "y": -38, + "zoomX": 100, + "zoomY": 100, + "mirror": true, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 7, + "opacity": 170, + "color": [ + 220, + 220, + 220, + 200 + ], + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + -170, + -170, + -170, + 255 + ], + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -72, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + -180, + -180, + -180, + 0 + ], + "priority": 1, + "focus": 1 + }, + { + "x": 116, + "y": -76.5, + "zoomX": 100, + "zoomY": 100, + "mirror": true, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 12, + "opacity": 170, + "color": [ + 220, + 220, + 220, + 200 + ], + "priority": 1, + "focus": 1 + }, + { + "x": 139.5, + "y": -70.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 10, + "opacity": 255, + "color": [ + 220, + 220, + 220, + 200 + ], + "priority": 1, + "focus": 1 + }, + { + "x": 116, + "y": -46, + "zoomX": 100, + "zoomY": 100, + "mirror": true, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 8, + "opacity": 255, + "color": [ + 220, + 220, + 220, + 200 + ], + "priority": 1, + "focus": 1 + }, + { + "x": 143.5, + "y": -38, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 6, + "opacity": 85, + "color": [ + 220, + 220, + 220, + 200 + ], + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + -170, + -170, + -170, + 255 + ], + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -68, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + -180, + -180, + -180, + 0 + ], + "priority": 1, + "focus": 1 + }, + { + "x": 116, + "y": -84.5, + "zoomX": 100, + "zoomY": 100, + "mirror": true, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 13, + "opacity": 85, + "color": [ + 220, + 220, + 220, + 200 + ], + "priority": 1, + "focus": 1 + }, + { + "x": 139.5, + "y": -78.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 11, + "opacity": 255, + "color": [ + 220, + 220, + 220, + 200 + ], + "priority": 1, + "focus": 1 + }, + { + "x": 116, + "y": -54, + "zoomX": 100, + "zoomY": 100, + "mirror": true, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 9, + "opacity": 255, + "color": [ + 220, + 220, + 220, + 200 + ], + "priority": 1, + "focus": 1 + }, + { + "x": 143.5, + "y": -46, + "zoomX": 100, + "zoomY": 100, + "mirror": true, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 7, + "opacity": 170, + "color": [ + 220, + 220, + 220, + 200 + ], + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + -170, + -170, + -170, + 255 + ], + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + -180, + -180, + -180, + 0 + ], + "priority": 1, + "focus": 1 + }, + { + "x": 139.5, + "y": -86.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 12, + "opacity": 170, + "color": [ + 220, + 220, + 220, + 200 + ], + "priority": 1, + "focus": 1 + }, + { + "x": 116, + "y": -62, + "zoomX": 100, + "zoomY": 100, + "mirror": true, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 10, + "opacity": 255, + "color": [ + 220, + 220, + 220, + 200 + ], + "priority": 1, + "focus": 1 + }, + { + "x": 143.5, + "y": -54, + "zoomX": 100, + "zoomY": 100, + "mirror": true, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 8, + "opacity": 255, + "color": [ + 220, + 220, + 220, + 200 + ], + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + -170, + -170, + -170, + 255 + ], + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + -180, + -180, + -180, + 0 + ], + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 139.5, + "y": -94.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 13, + "opacity": 85, + "color": [ + 220, + 220, + 220, + 200 + ], + "priority": 1, + "focus": 1 + }, + { + "x": 116, + "y": -70, + "zoomX": 100, + "zoomY": 100, + "mirror": true, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 11, + "opacity": 255, + "color": [ + 220, + 220, + 220, + 200 + ], + "priority": 1, + "focus": 1 + }, + { + "x": 143.5, + "y": -62, + "zoomX": 100, + "zoomY": 100, + "mirror": true, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 9, + "opacity": 255, + "color": [ + 220, + 220, + 220, + 200 + ], + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + -170, + -170, + -170, + 255 + ], + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + -180, + -180, + -180, + 0 + ], + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 116, + "y": -78, + "zoomX": 100, + "zoomY": 100, + "mirror": true, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 12, + "opacity": 170, + "color": [ + 220, + 220, + 220, + 200 + ], + "priority": 1, + "focus": 1 + }, + { + "x": 143.5, + "y": -70, + "zoomX": 100, + "zoomY": 100, + "mirror": true, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 10, + "opacity": 255, + "color": [ + 220, + 220, + 220, + 200 + ], + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + -170, + -170, + -170, + 255 + ], + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + -180, + -180, + -180, + 0 + ], + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 116, + "y": -86, + "zoomX": 100, + "zoomY": 100, + "mirror": true, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 13, + "opacity": 85, + "color": [ + 220, + 220, + 220, + 200 + ], + "priority": 1, + "focus": 1 + }, + { + "x": 143.5, + "y": -78, + "zoomX": 100, + "zoomY": 100, + "mirror": true, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 11, + "opacity": 255, + "color": [ + 220, + 220, + 220, + 200 + ], + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + -170, + -170, + -170, + 255 + ], + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + -180, + -180, + -180, + 0 + ], + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 143.5, + "y": -86, + "zoomX": 100, + "zoomY": 100, + "mirror": true, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 12, + "opacity": 170, + "color": [ + 220, + 220, + 220, + 200 + ], + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + -170, + -170, + -170, + 255 + ], + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + -180, + -180, + -180, + 0 + ], + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 143.5, + "y": -94, + "zoomX": 100, + "zoomY": 100, + "mirror": true, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 13, + "opacity": 85, + "color": [ + 220, + 220, + 220, + 200 + ], + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + -170, + -170, + -170, + 255 + ], + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + -160, + -160, + -160, + 0 + ], + "locked": true, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + -170, + -170, + -170, + 255 + ], + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + -140, + -140, + -140, + 0 + ], + "locked": true, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + -170, + -170, + -170, + 255 + ], + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + -120, + -120, + -120, + 0 + ], + "locked": true, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + -170, + -170, + -170, + 255 + ], + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + -100, + -100, + -100, + 0 + ], + "locked": true, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + -170, + -170, + -170, + 255 + ], + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + -80, + -80, + -80, + 0 + ], + "locked": true, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + -170, + -170, + -170, + 255 + ], + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + -60, + -60, + -60, + 0 + ], + "locked": true, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + -170, + -170, + -170, + 255 + ], + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + -40, + -40, + -40, + 0 + ], + "locked": true, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + -170, + -170, + -170, + 255 + ], + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + -20, + -20, + -20, + 0 + ], + "locked": true, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + -170, + -170, + -170, + 255 + ], + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + -170, + -170, + -170, + 255 + ], + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + -170, + -170, + -170, + 255 + ], + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + -170, + -170, + -170, + 255 + ], + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + -170, + -170, + -170, + 255 + ], + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + -170, + -170, + -170, + 255 + ], + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + -170, + -170, + -170, + 255 + ], + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + -170, + -170, + -170, + 255 + ], + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + -142, + -142, + -142, + 212 + ], + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + -114, + -114, + -114, + 170 + ], + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + -85, + -85, + -85, + 127 + ], + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + -57, + -57, + -57, + 85 + ], + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + -29, + -29, + -29, + 42 + ], + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + } + ] + ], + "frameTimedEvents": { + "0": [ + { + "frameIndex": 0, + "resourceName": "Thunder9.m4a", + "volume": 100, + "pitch": 100, + "eventType": "AnimTimedSoundEvent" + } + ], + "29": [ + { + "frameIndex": 29, + "resourceName": "", + "volume": 80, + "pitch": 100, + "eventType": "AnimTimedSoundEvent" + } + ], + "38": [ + { + "frameIndex": 38, + "resourceName": "PRSFX- Burn Up1.wav", + "volume": 100, + "pitch": 100, + "eventType": "AnimTimedSoundEvent" + } + ], + "40": [ + { + "frameIndex": 40, + "resourceName": "PRSFX- Burn Up1.wav", + "volume": 100, + "pitch": 100, + "eventType": "AnimTimedSoundEvent" + } + ], + "42": [ + { + "frameIndex": 42, + "resourceName": "PRSFX- Burn Up1.wav", + "volume": 100, + "pitch": 100, + "eventType": "AnimTimedSoundEvent" + } + ], + "44": [ + { + "frameIndex": 44, + "resourceName": "PRSFX- Burn Up1.wav", + "volume": 100, + "pitch": 100, + "eventType": "AnimTimedSoundEvent" + } + ], + "46": [ + { + "frameIndex": 46, + "resourceName": "PRSFX- Burn Up1.wav", + "volume": 100, + "pitch": 100, + "eventType": "AnimTimedSoundEvent" + } + ], + "48": [ + { + "frameIndex": 48, + "resourceName": "PRSFX- Burn Up1.wav", + "volume": 100, + "pitch": 100, + "eventType": "AnimTimedSoundEvent" + } + ], + "50": [ + { + "frameIndex": 50, + "resourceName": "PRSFX- Burn Up1.wav", + "volume": 100, + "pitch": 100, + "eventType": "AnimTimedSoundEvent" + } + ] + }, + "position": 2, + "hue": 0 +} \ No newline at end of file diff --git a/public/battle-anims/psyblade.json b/public/battle-anims/psyblade.json new file mode 100644 index 00000000000..1f4ce283302 --- /dev/null +++ b/public/battle-anims/psyblade.json @@ -0,0 +1,1923 @@ +[ + { + "id": 427, + "graphic": "PRAS- Psycho Cut", + "frames": [ + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 3 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 3 + }, + { + "x": 24, + "y": -5, + "zoomX": 100, + "zoomY": 100, + "angle": 359, + "visible": true, + "target": 2, + "graphicFrame": 0, + "opacity": 255, + "focus": 3 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 3 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 3 + }, + { + "x": 24, + "y": -5, + "zoomX": 100, + "zoomY": 100, + "angle": 287, + "visible": true, + "target": 2, + "graphicFrame": 0, + "opacity": 255, + "focus": 3 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 3 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 3 + }, + { + "x": 24, + "y": -5, + "zoomX": 100, + "zoomY": 100, + "angle": 215, + "visible": true, + "target": 2, + "graphicFrame": 0, + "opacity": 255, + "focus": 3 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 3 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 3 + }, + { + "x": 24, + "y": -5, + "zoomX": 100, + "zoomY": 100, + "angle": 143, + "visible": true, + "target": 2, + "graphicFrame": 0, + "opacity": 255, + "focus": 3 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 3 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 3 + }, + { + "x": 24, + "y": -5, + "zoomX": 100, + "zoomY": 100, + "angle": 71, + "visible": true, + "target": 2, + "graphicFrame": 0, + "opacity": 255, + "focus": 3 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 3 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 3 + }, + { + "x": 24, + "y": -5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 0, + "opacity": 255, + "focus": 3 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 3 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 3 + }, + { + "x": 36.5, + "y": -12.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 0, + "opacity": 255, + "focus": 3 + }, + { + "x": 24, + "y": -5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 0, + "opacity": 150, + "priority": 1, + "focus": 3 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 3 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 3 + }, + { + "x": 49, + "y": -20, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 0, + "opacity": 255, + "focus": 3 + }, + { + "x": 36, + "y": -12.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 0, + "opacity": 150, + "priority": 1, + "focus": 3 + }, + { + "x": 24, + "y": -5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 0, + "opacity": 100, + "priority": 1, + "focus": 3 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 3 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 3 + }, + { + "x": 61.5, + "y": -27.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 0, + "opacity": 255, + "focus": 3 + }, + { + "x": 49, + "y": -20, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 0, + "opacity": 150, + "priority": 1, + "focus": 3 + }, + { + "x": 36, + "y": -12.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 0, + "opacity": 100, + "priority": 1, + "focus": 3 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 3 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 3 + }, + { + "x": 74, + "y": -35, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 0, + "opacity": 255, + "priority": 1, + "focus": 3 + }, + { + "x": 61, + "y": -28, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 0, + "opacity": 150, + "priority": 1, + "focus": 3 + }, + { + "x": 49, + "y": -20, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 0, + "opacity": 100, + "priority": 1, + "focus": 3 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 3 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 3 + }, + { + "x": 86.5, + "y": -42.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 0, + "opacity": 255, + "priority": 1, + "focus": 3 + }, + { + "x": 74, + "y": -34.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 0, + "opacity": 150, + "priority": 1, + "focus": 3 + }, + { + "x": 61, + "y": -27.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 0, + "opacity": 100, + "priority": 1, + "focus": 3 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 3 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 3 + }, + { + "x": 99, + "y": -50, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 0, + "opacity": 255, + "priority": 1, + "focus": 3 + }, + { + "x": 86, + "y": -42.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 0, + "opacity": 150, + "priority": 1, + "focus": 3 + }, + { + "x": 74, + "y": -34, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 0, + "opacity": 100, + "priority": 1, + "focus": 3 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 3 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 3 + }, + { + "x": 111.5, + "y": -57.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 0, + "opacity": 255, + "priority": 1, + "focus": 3 + }, + { + "x": 99, + "y": -50, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 0, + "opacity": 150, + "priority": 1, + "focus": 3 + }, + { + "x": 86, + "y": -42.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 0, + "opacity": 100, + "priority": 1, + "focus": 3 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 3 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 3 + }, + { + "x": 124, + "y": -65, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 0, + "opacity": 255, + "priority": 1, + "focus": 3 + }, + { + "x": 112, + "y": -57.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 0, + "opacity": 150, + "priority": 1, + "focus": 3 + }, + { + "x": 99, + "y": -49.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 0, + "opacity": 100, + "priority": 1, + "focus": 3 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 3 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 3 + }, + { + "x": 124, + "y": -65, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 0, + "opacity": 255, + "priority": 1, + "focus": 3 + }, + { + "x": 112, + "y": -57.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 0, + "opacity": 100, + "priority": 1, + "focus": 3 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 3 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 3 + }, + { + "x": 124, + "y": -65, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 0, + "opacity": 150, + "priority": 1, + "focus": 3 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 3 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 3 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 3 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 3 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 3 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 3 + } + ] + ], + "frameTimedEvents": { + "0": [ + { + "frameIndex": 0, + "resourceName": "PRSFX- Psycho Cut.wav", + "volume": 100, + "pitch": 100, + "eventType": "AnimTimedSoundEvent" + } + ] + }, + "position": 3, + "hue": 0 + }, + { + "id": 427, + "graphic": "PRAS- Psycho Cut", + "frames": [ + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 3 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 3 + }, + { + "x": 120, + "y": -65, + "zoomX": 100, + "zoomY": 100, + "angle": 213, + "visible": true, + "target": 2, + "graphicFrame": 0, + "opacity": 255, + "priority": 1, + "focus": 3 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 3 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 3 + }, + { + "x": 120, + "y": -65, + "zoomX": 100, + "zoomY": 100, + "angle": 252, + "visible": true, + "target": 2, + "graphicFrame": 0, + "opacity": 255, + "priority": 1, + "focus": 3 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 3 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 3 + }, + { + "x": 120, + "y": -65, + "zoomX": 100, + "zoomY": 100, + "angle": 291, + "visible": true, + "target": 2, + "graphicFrame": 0, + "opacity": 255, + "priority": 1, + "focus": 3 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 3 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 3 + }, + { + "x": 120, + "y": -65, + "zoomX": 100, + "zoomY": 100, + "angle": 330, + "visible": true, + "target": 2, + "graphicFrame": 0, + "opacity": 255, + "priority": 1, + "focus": 3 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 3 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 3 + }, + { + "x": 120, + "y": -65, + "zoomX": 100, + "zoomY": 100, + "angle": 10, + "visible": true, + "target": 2, + "graphicFrame": 0, + "opacity": 255, + "priority": 1, + "focus": 3 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 3 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 3 + }, + { + "x": 120, + "y": -65, + "zoomX": 100, + "zoomY": 100, + "angle": 60, + "mirror": true, + "visible": true, + "target": 2, + "graphicFrame": 0, + "opacity": 255, + "priority": 1, + "focus": 3 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 3 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 3 + }, + { + "x": 107, + "y": -58, + "zoomX": 100, + "zoomY": 100, + "angle": 60, + "mirror": true, + "visible": true, + "target": 2, + "graphicFrame": 0, + "opacity": 255, + "priority": 1, + "focus": 3 + }, + { + "x": 120, + "y": -65, + "zoomX": 100, + "zoomY": 100, + "angle": 60, + "mirror": true, + "visible": true, + "target": 2, + "graphicFrame": 0, + "opacity": 150, + "priority": 1, + "focus": 3 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 3 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 3 + }, + { + "x": 94, + "y": -50.5, + "zoomX": 100, + "zoomY": 100, + "angle": 60, + "mirror": true, + "visible": true, + "target": 2, + "graphicFrame": 0, + "opacity": 255, + "priority": 1, + "focus": 3 + }, + { + "x": 107, + "y": -58, + "zoomX": 100, + "zoomY": 100, + "angle": 60, + "mirror": true, + "visible": true, + "target": 2, + "graphicFrame": 0, + "opacity": 150, + "priority": 1, + "focus": 3 + }, + { + "x": 120, + "y": -65, + "zoomX": 100, + "zoomY": 100, + "angle": 60, + "mirror": true, + "visible": true, + "target": 2, + "graphicFrame": 0, + "opacity": 100, + "priority": 1, + "focus": 3 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 3 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 3 + }, + { + "x": 81, + "y": -43.5, + "zoomX": 100, + "zoomY": 100, + "angle": 60, + "mirror": true, + "visible": true, + "target": 2, + "graphicFrame": 0, + "opacity": 255, + "priority": 1, + "focus": 3 + }, + { + "x": 94, + "y": -50.5, + "zoomX": 100, + "zoomY": 100, + "angle": 60, + "mirror": true, + "visible": true, + "target": 2, + "graphicFrame": 0, + "opacity": 150, + "priority": 1, + "focus": 3 + }, + { + "x": 107, + "y": -58, + "zoomX": 100, + "zoomY": 100, + "angle": 60, + "mirror": true, + "visible": true, + "target": 2, + "graphicFrame": 0, + "opacity": 100, + "priority": 1, + "focus": 3 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 3 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 3 + }, + { + "x": 68, + "y": -36, + "zoomX": 100, + "zoomY": 100, + "angle": 60, + "mirror": true, + "visible": true, + "target": 2, + "graphicFrame": 0, + "opacity": 255, + "priority": 1, + "focus": 3 + }, + { + "x": 81, + "y": -43.5, + "zoomX": 100, + "zoomY": 100, + "angle": 60, + "mirror": true, + "visible": true, + "target": 2, + "graphicFrame": 0, + "opacity": 150, + "priority": 1, + "focus": 3 + }, + { + "x": 94, + "y": -50, + "zoomX": 100, + "zoomY": 100, + "angle": 60, + "mirror": true, + "visible": true, + "target": 2, + "graphicFrame": 0, + "opacity": 100, + "priority": 1, + "focus": 3 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 3 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 3 + }, + { + "x": 55, + "y": -29, + "zoomX": 100, + "zoomY": 100, + "angle": 60, + "mirror": true, + "visible": true, + "target": 2, + "graphicFrame": 0, + "opacity": 255, + "priority": 1, + "focus": 3 + }, + { + "x": 68, + "y": -36, + "zoomX": 100, + "zoomY": 100, + "angle": 60, + "mirror": true, + "visible": true, + "target": 2, + "graphicFrame": 0, + "opacity": 150, + "priority": 1, + "focus": 3 + }, + { + "x": 81, + "y": -43.5, + "zoomX": 100, + "zoomY": 100, + "angle": 60, + "mirror": true, + "visible": true, + "target": 2, + "graphicFrame": 0, + "opacity": 100, + "priority": 1, + "focus": 3 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 3 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 3 + }, + { + "x": 42, + "y": -21.5, + "zoomX": 100, + "zoomY": 100, + "angle": 60, + "mirror": true, + "visible": true, + "target": 2, + "graphicFrame": 0, + "opacity": 255, + "priority": 1, + "focus": 3 + }, + { + "x": 55, + "y": -29, + "zoomX": 100, + "zoomY": 100, + "angle": 60, + "mirror": true, + "visible": true, + "target": 2, + "graphicFrame": 0, + "opacity": 150, + "priority": 1, + "focus": 3 + }, + { + "x": 68, + "y": -36, + "zoomX": 100, + "zoomY": 100, + "angle": 60, + "mirror": true, + "visible": true, + "target": 2, + "graphicFrame": 0, + "opacity": 100, + "priority": 1, + "focus": 3 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 3 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 3 + }, + { + "x": 29, + "y": -14.5, + "zoomX": 100, + "zoomY": 100, + "angle": 60, + "mirror": true, + "visible": true, + "target": 2, + "graphicFrame": 0, + "opacity": 255, + "focus": 3 + }, + { + "x": 42, + "y": -21.5, + "zoomX": 100, + "zoomY": 100, + "angle": 60, + "mirror": true, + "visible": true, + "target": 2, + "graphicFrame": 0, + "opacity": 150, + "priority": 1, + "focus": 3 + }, + { + "x": 55, + "y": -29, + "zoomX": 100, + "zoomY": 100, + "angle": 60, + "mirror": true, + "visible": true, + "target": 2, + "graphicFrame": 0, + "opacity": 100, + "priority": 1, + "focus": 3 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 3 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 3 + }, + { + "x": 16.5, + "y": -7, + "zoomX": 100, + "zoomY": 100, + "angle": 60, + "mirror": true, + "visible": true, + "target": 2, + "graphicFrame": 0, + "opacity": 255, + "focus": 3 + }, + { + "x": 29, + "y": -14.5, + "zoomX": 100, + "zoomY": 100, + "angle": 60, + "mirror": true, + "visible": true, + "target": 2, + "graphicFrame": 0, + "opacity": 150, + "priority": 1, + "focus": 3 + }, + { + "x": 42, + "y": -21.5, + "zoomX": 100, + "zoomY": 100, + "angle": 60, + "mirror": true, + "visible": true, + "target": 2, + "graphicFrame": 0, + "opacity": 100, + "priority": 1, + "focus": 3 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 3 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 3 + }, + { + "x": 16.5, + "y": -7, + "zoomX": 100, + "zoomY": 100, + "angle": 60, + "mirror": true, + "visible": true, + "target": 2, + "graphicFrame": 0, + "opacity": 255, + "focus": 3 + }, + { + "x": 29, + "y": -14.5, + "zoomX": 100, + "zoomY": 100, + "angle": 60, + "mirror": true, + "visible": true, + "target": 2, + "graphicFrame": 0, + "opacity": 100, + "priority": 1, + "focus": 3 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 3 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 3 + }, + { + "x": 16.5, + "y": -7, + "zoomX": 100, + "zoomY": 100, + "angle": 60, + "mirror": true, + "visible": true, + "target": 2, + "graphicFrame": 0, + "opacity": 150, + "focus": 3 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 3 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 3 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 3 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 3 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 3 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 3 + } + ] + ], + "frameTimedEvents": { + "0": [ + { + "frameIndex": 0, + "resourceName": "PRSFX- Psycho Cut.wav", + "volume": 100, + "pitch": 100, + "eventType": "AnimTimedSoundEvent" + } + ] + }, + "position": 3, + "hue": 0 + } +] \ No newline at end of file diff --git a/public/battle-anims/sappy-seed.json b/public/battle-anims/sappy-seed.json new file mode 100644 index 00000000000..d32c2bb2417 --- /dev/null +++ b/public/battle-anims/sappy-seed.json @@ -0,0 +1,4895 @@ +[ + { + "id": 73, + "graphic": "PRAS- Leech Seed", + "frames": [ + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 4, + "y": -22.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 0, + "focus": 3 + }, + { + "x": 5, + "y": -21.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 0, + "focus": 3 + }, + { + "x": 4, + "y": -21.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 0, + "opacity": 63, + "focus": 3 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 4, + "y": -21.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 0, + "focus": 3 + }, + { + "x": 5, + "y": -21.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 0, + "focus": 3 + }, + { + "x": 4, + "y": -21.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 0, + "opacity": 127, + "focus": 3 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 4, + "y": -21.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 0, + "focus": 3 + }, + { + "x": 5, + "y": -21.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 0, + "opacity": 51, + "focus": 3 + }, + { + "x": 4, + "y": -21.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 0, + "opacity": 191, + "focus": 3 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 4, + "y": -21.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 0, + "focus": 3 + }, + { + "x": 5, + "y": -21.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 0, + "opacity": 102, + "focus": 3 + }, + { + "x": 4, + "y": -21.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 0, + "opacity": 255, + "focus": 3 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 5, + "y": -21.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 0, + "focus": 3 + }, + { + "x": 5, + "y": -21.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 0, + "opacity": 153, + "focus": 3 + }, + { + "x": 21.5, + "y": -32.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 0, + "opacity": 255, + "focus": 3 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 4, + "y": -21.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 0, + "opacity": 51, + "focus": 3 + }, + { + "x": 5, + "y": -21.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 0, + "opacity": 204, + "focus": 3 + }, + { + "x": 26.5, + "y": -43, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 0, + "opacity": 255, + "focus": 3 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 4, + "y": -21.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 0, + "opacity": 102, + "focus": 3 + }, + { + "x": 5, + "y": -21.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 0, + "opacity": 255, + "focus": 3 + }, + { + "x": 36, + "y": -51, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 0, + "opacity": 255, + "focus": 3 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 4, + "y": -21.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 0, + "opacity": 153, + "focus": 3 + }, + { + "x": 22, + "y": -35, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 0, + "opacity": 255, + "focus": 3 + }, + { + "x": 46, + "y": -58.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 0, + "opacity": 255, + "priority": 1, + "focus": 3 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 4, + "y": -21.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 0, + "opacity": 204, + "focus": 3 + }, + { + "x": 29, + "y": -39.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 0, + "opacity": 255, + "focus": 3 + }, + { + "x": 62, + "y": -65, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 0, + "opacity": 255, + "priority": 1, + "focus": 3 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 4, + "y": -21.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 0, + "opacity": 255, + "focus": 3 + }, + { + "x": 36, + "y": -43.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 0, + "opacity": 255, + "focus": 3 + }, + { + "x": 78, + "y": -71, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 0, + "opacity": 255, + "priority": 1, + "focus": 3 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 18.5, + "y": -39.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 0, + "opacity": 255, + "focus": 3 + }, + { + "x": 64.5, + "y": -65, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 0, + "opacity": 255, + "priority": 1, + "focus": 3 + }, + { + "x": 101.5, + "y": -66.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 0, + "opacity": 255, + "priority": 1, + "focus": 3 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 44, + "y": -57, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 0, + "opacity": 255, + "priority": 1, + "focus": 3 + }, + { + "x": 87, + "y": -70, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 0, + "opacity": 255, + "priority": 1, + "focus": 3 + }, + { + "x": 125, + "y": -61.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 0, + "opacity": 255, + "priority": 1, + "focus": 3 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 64, + "y": -66, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 0, + "opacity": 255, + "priority": 1, + "focus": 3 + }, + { + "x": 109.5, + "y": -74.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 0, + "opacity": 255, + "priority": 1, + "focus": 3 + }, + { + "x": 137, + "y": -53.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 0, + "opacity": 255, + "priority": 1, + "focus": 3 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 80, + "y": -74.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 0, + "opacity": 255, + "priority": 1, + "focus": 3 + }, + { + "x": 116, + "y": -62, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 0, + "opacity": 255, + "priority": 1, + "focus": 3 + }, + { + "x": 148, + "y": -45.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 0, + "opacity": 255, + "priority": 1, + "focus": 3 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 92, + "y": -69.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 0, + "opacity": 255, + "priority": 1, + "focus": 3 + }, + { + "x": 124, + "y": -54.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 0, + "opacity": 255, + "priority": 1, + "focus": 3 + }, + { + "x": 148, + "y": -45.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 0, + "opacity": 255, + "priority": 1, + "focus": 3 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 104, + "y": -56.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 0, + "opacity": 255, + "priority": 1, + "focus": 3 + }, + { + "x": 128, + "y": -46.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 0, + "opacity": 255, + "priority": 1, + "focus": 3 + }, + { + "x": 148, + "y": -45.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 0, + "opacity": 255, + "priority": 1, + "focus": 3 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 108, + "y": -46, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 0, + "opacity": 255, + "priority": 1, + "focus": 3 + }, + { + "x": 128, + "y": -46.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 0, + "opacity": 255, + "priority": 1, + "focus": 3 + }, + { + "x": 148, + "y": -46.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 0, + "opacity": 255, + "priority": 1, + "focus": 3 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 107, + "y": -46, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 0, + "opacity": 187, + "priority": 1, + "focus": 3 + }, + { + "x": 128, + "y": -46.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 0, + "opacity": 187, + "priority": 1, + "focus": 3 + }, + { + "x": 149, + "y": -46.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 0, + "opacity": 187, + "priority": 1, + "focus": 3 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 108, + "y": -46, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 0, + "opacity": 110, + "priority": 1, + "focus": 3 + }, + { + "x": 128, + "y": -46.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 0, + "opacity": 110, + "priority": 1, + "focus": 3 + }, + { + "x": 149, + "y": -46.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 0, + "opacity": 110, + "priority": 1, + "focus": 3 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 108, + "y": -46, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 0, + "opacity": 40, + "priority": 1, + "focus": 3 + }, + { + "x": 128, + "y": -46.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 0, + "opacity": 40, + "priority": 1, + "focus": 3 + }, + { + "x": 149, + "y": -46.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 0, + "opacity": 40, + "priority": 1, + "focus": 3 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 108, + "y": -46, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 1, + "opacity": 40, + "priority": 1, + "focus": 3 + }, + { + "x": 128, + "y": -46.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 1, + "opacity": 40, + "priority": 1, + "focus": 3 + }, + { + "x": 149, + "y": -46.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 1, + "opacity": 40, + "priority": 1, + "focus": 3 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 108, + "y": -46, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 1, + "opacity": 110, + "priority": 1, + "focus": 3 + }, + { + "x": 128, + "y": -46.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 1, + "opacity": 110, + "priority": 1, + "focus": 3 + }, + { + "x": 149, + "y": -46.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 1, + "opacity": 110, + "priority": 1, + "focus": 3 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 108, + "y": -46, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 1, + "opacity": 187, + "priority": 1, + "focus": 3 + }, + { + "x": 128, + "y": -46.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 1, + "opacity": 187, + "priority": 1, + "focus": 3 + }, + { + "x": 149, + "y": -46.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 1, + "opacity": 187, + "priority": 1, + "focus": 3 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 108, + "y": -46, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 1, + "opacity": 187, + "priority": 1, + "focus": 3 + }, + { + "x": 128, + "y": -46.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 1, + "opacity": 187, + "priority": 1, + "focus": 3 + }, + { + "x": 149, + "y": -46.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 1, + "opacity": 187, + "priority": 1, + "focus": 3 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 108, + "y": -46, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 1, + "opacity": 255, + "priority": 1, + "focus": 3 + }, + { + "x": 128, + "y": -46.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 1, + "opacity": 255, + "priority": 1, + "focus": 3 + }, + { + "x": 149, + "y": -46.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 1, + "opacity": 255, + "priority": 1, + "focus": 3 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 108, + "y": -46, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 2, + "opacity": 255, + "priority": 1, + "focus": 3 + }, + { + "x": 128, + "y": -46.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 2, + "opacity": 255, + "priority": 1, + "focus": 3 + }, + { + "x": 149, + "y": -46.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 2, + "opacity": 255, + "priority": 1, + "focus": 3 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 108, + "y": -46, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 3, + "opacity": 255, + "priority": 1, + "focus": 3 + }, + { + "x": 128, + "y": -46.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 3, + "opacity": 255, + "priority": 1, + "focus": 3 + }, + { + "x": 149, + "y": -46.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 3, + "opacity": 255, + "priority": 1, + "focus": 3 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 108, + "y": -46, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 2, + "opacity": 255, + "priority": 1, + "focus": 3 + }, + { + "x": 128, + "y": -46.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 2, + "opacity": 255, + "priority": 1, + "focus": 3 + }, + { + "x": 149, + "y": -46.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 2, + "opacity": 255, + "priority": 1, + "focus": 3 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 108, + "y": -46, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 1, + "opacity": 255, + "priority": 1, + "focus": 3 + }, + { + "x": 128, + "y": -46.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 1, + "opacity": 255, + "priority": 1, + "focus": 3 + }, + { + "x": 149, + "y": -46.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 1, + "opacity": 255, + "priority": 1, + "focus": 3 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 108, + "y": -46, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 2, + "opacity": 255, + "priority": 1, + "focus": 3 + }, + { + "x": 128, + "y": -46.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 2, + "opacity": 255, + "priority": 1, + "focus": 3 + }, + { + "x": 149, + "y": -46.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 2, + "opacity": 255, + "priority": 1, + "focus": 3 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 108, + "y": -46, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 3, + "opacity": 255, + "priority": 1, + "focus": 3 + }, + { + "x": 128, + "y": -46.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 3, + "opacity": 255, + "priority": 1, + "focus": 3 + }, + { + "x": 149, + "y": -46.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 3, + "opacity": 255, + "priority": 1, + "focus": 3 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 108, + "y": -46, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 2, + "opacity": 255, + "priority": 1, + "focus": 3 + }, + { + "x": 128, + "y": -46.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 2, + "opacity": 255, + "priority": 1, + "focus": 3 + }, + { + "x": 149, + "y": -46.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 2, + "opacity": 255, + "priority": 1, + "focus": 3 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 108, + "y": -46, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 1, + "opacity": 255, + "priority": 1, + "focus": 3 + }, + { + "x": 128, + "y": -46.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 1, + "opacity": 255, + "priority": 1, + "focus": 3 + }, + { + "x": 149, + "y": -46.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 1, + "opacity": 255, + "priority": 1, + "focus": 3 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 108, + "y": -46, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 3, + "opacity": 255, + "priority": 1, + "focus": 3 + }, + { + "x": 128, + "y": -46.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 3, + "opacity": 255, + "priority": 1, + "focus": 3 + }, + { + "x": 149, + "y": -46.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 3, + "opacity": 255, + "priority": 1, + "focus": 3 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 108, + "y": -46, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 2, + "opacity": 204, + "priority": 1, + "focus": 3 + }, + { + "x": 128, + "y": -46.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 2, + "opacity": 204, + "priority": 1, + "focus": 3 + }, + { + "x": 149, + "y": -46.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 2, + "opacity": 204, + "priority": 1, + "focus": 3 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 108, + "y": -46, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 1, + "opacity": 153, + "priority": 1, + "focus": 3 + }, + { + "x": 128, + "y": -46.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 1, + "opacity": 153, + "priority": 1, + "focus": 3 + }, + { + "x": 149, + "y": -46.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 1, + "opacity": 153, + "priority": 1, + "focus": 3 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 108, + "y": -46, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 2, + "opacity": 102, + "priority": 1, + "focus": 3 + }, + { + "x": 128, + "y": -46.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 2, + "opacity": 102, + "priority": 1, + "focus": 3 + }, + { + "x": 149, + "y": -46.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 2, + "opacity": 102, + "priority": 1, + "focus": 3 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 108, + "y": -46, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 3, + "opacity": 51, + "priority": 1, + "focus": 3 + }, + { + "x": 128, + "y": -46.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 3, + "opacity": 51, + "priority": 1, + "focus": 3 + }, + { + "x": 149, + "y": -46.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 3, + "opacity": 51, + "priority": 1, + "focus": 3 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 108, + "y": -46, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 2, + "priority": 1, + "focus": 3 + }, + { + "x": 128, + "y": -46.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 2, + "priority": 1, + "focus": 3 + }, + { + "x": 149, + "y": -46.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 2, + "priority": 1, + "focus": 3 + } + ] + ], + "frameTimedEvents": { + "4": [ + { + "frameIndex": 4, + "resourceName": "PRSFX- Leech Seed2.wav", + "volume": 100, + "pitch": 100, + "eventType": "AnimTimedSoundEvent" + } + ] + }, + "position": 3, + "hue": 0 + }, + { + "id": 73, + "graphic": "PRAS- Leech Seed", + "frames": [ + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 120, + "y": -63, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 0, + "priority": 1, + "focus": 2 + }, + { + "x": 120, + "y": -63, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 0, + "priority": 1, + "focus": 2 + }, + { + "x": 120, + "y": -63, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 0, + "opacity": 63, + "priority": 1, + "focus": 2 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 120, + "y": -63, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 0, + "priority": 1, + "focus": 2 + }, + { + "x": 120, + "y": -63, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 0, + "priority": 1, + "focus": 2 + }, + { + "x": 120, + "y": -63, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 0, + "opacity": 127, + "priority": 1, + "focus": 2 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 120, + "y": -63, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 0, + "priority": 1, + "focus": 2 + }, + { + "x": 120, + "y": -63, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 0, + "priority": 1, + "focus": 2 + }, + { + "x": 120, + "y": -63, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 0, + "opacity": 191, + "priority": 1, + "focus": 2 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 120, + "y": -63, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 0, + "priority": 1, + "focus": 2 + }, + { + "x": 120, + "y": -63, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 0, + "priority": 1, + "focus": 2 + }, + { + "x": 120, + "y": -63, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 0, + "opacity": 255, + "priority": 1, + "focus": 2 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 120, + "y": -63, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 0, + "priority": 1, + "focus": 2 + }, + { + "x": 120, + "y": -63, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 0, + "opacity": 85, + "priority": 1, + "focus": 2 + }, + { + "x": 104, + "y": -67, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 0, + "opacity": 255, + "priority": 1, + "focus": 2 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 120, + "y": -63, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 0, + "priority": 1, + "focus": 2 + }, + { + "x": 120, + "y": -63, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 0, + "opacity": 170, + "priority": 1, + "focus": 2 + }, + { + "x": 92, + "y": -63, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 0, + "opacity": 255, + "priority": 1, + "focus": 2 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 120, + "y": -63, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 0, + "priority": 1, + "focus": 2 + }, + { + "x": 120, + "y": -63, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 0, + "opacity": 255, + "priority": 1, + "focus": 2 + }, + { + "x": 72, + "y": -58.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 0, + "opacity": 255, + "priority": 1, + "focus": 2 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 120, + "y": -63, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 0, + "opacity": 85, + "priority": 1, + "focus": 2 + }, + { + "x": 104, + "y": -67, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 0, + "opacity": 255, + "priority": 1, + "focus": 2 + }, + { + "x": 53, + "y": -50, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 0, + "opacity": 255, + "priority": 1, + "focus": 2 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 120, + "y": -63, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 0, + "opacity": 170, + "priority": 1, + "focus": 2 + }, + { + "x": 84, + "y": -63, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 0, + "opacity": 255, + "priority": 1, + "focus": 2 + }, + { + "x": 37.5, + "y": -37.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 0, + "opacity": 255, + "focus": 2 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 120, + "y": -63, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 0, + "opacity": 255, + "priority": 1, + "focus": 2 + }, + { + "x": 70, + "y": -56.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 0, + "opacity": 255, + "priority": 1, + "focus": 2 + }, + { + "x": 22, + "y": -25, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 0, + "opacity": 255, + "focus": 2 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 88, + "y": -59, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 0, + "opacity": 255, + "priority": 1, + "focus": 2 + }, + { + "x": 56, + "y": -46, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 0, + "opacity": 255, + "priority": 1, + "focus": 2 + }, + { + "x": 6.5, + "y": -12.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 0, + "opacity": 255, + "focus": 2 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 75.19999999999999, + "y": -51, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 0, + "opacity": 255, + "priority": 1, + "focus": 2 + }, + { + "x": 42, + "y": -31, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 0, + "opacity": 255, + "focus": 2 + }, + { + "x": -9, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 0, + "opacity": 255, + "focus": 2 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 62.400000000000006, + "y": -35, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 0, + "opacity": 255, + "priority": 1, + "focus": 2 + }, + { + "x": 28, + "y": -16.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 0, + "opacity": 255, + "focus": 2 + }, + { + "x": -24, + "y": 13, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 0, + "opacity": 255, + "focus": 2 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 49.599999999999994, + "y": -19, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 0, + "opacity": 255, + "focus": 2 + }, + { + "x": 14, + "y": -2, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 0, + "opacity": 255, + "focus": 2 + }, + { + "x": -28, + "y": 17, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 0, + "opacity": 255, + "focus": 2 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 36.8, + "y": -3, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 0, + "opacity": 255, + "focus": 2 + }, + { + "x": 0, + "y": 13, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 0, + "opacity": 255, + "focus": 2 + }, + { + "x": -28, + "y": 17, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 0, + "opacity": 255, + "focus": 2 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 24, + "y": 13, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 0, + "opacity": 255, + "focus": 2 + }, + { + "x": -4, + "y": 17, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 0, + "opacity": 255, + "focus": 2 + }, + { + "x": -28, + "y": 17, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 0, + "opacity": 255, + "focus": 2 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 20, + "y": 17, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 0, + "opacity": 255, + "focus": 2 + }, + { + "x": -4, + "y": 17, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 0, + "opacity": 255, + "focus": 2 + }, + { + "x": -28, + "y": 17, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 0, + "opacity": 255, + "focus": 2 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 20, + "y": 17, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 0, + "opacity": 183, + "focus": 2 + }, + { + "x": -4, + "y": 17, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 0, + "opacity": 183, + "focus": 2 + }, + { + "x": -28, + "y": 17, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 0, + "opacity": 183, + "focus": 2 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 20, + "y": 17, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 0, + "opacity": 111, + "focus": 2 + }, + { + "x": -4, + "y": 17, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 0, + "opacity": 111, + "focus": 2 + }, + { + "x": -28, + "y": 17, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 0, + "opacity": 111, + "focus": 2 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 20, + "y": 17, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 0, + "opacity": 40, + "focus": 2 + }, + { + "x": -4, + "y": 17, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 0, + "opacity": 40, + "focus": 2 + }, + { + "x": -28, + "y": 17, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 0, + "opacity": 40, + "focus": 2 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 20, + "y": 17, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 1, + "opacity": 40, + "focus": 2 + }, + { + "x": -4, + "y": 17, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 1, + "opacity": 40, + "focus": 2 + }, + { + "x": -28, + "y": 17, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 1, + "opacity": 40, + "focus": 2 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 20, + "y": 17, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 1, + "opacity": 93, + "focus": 2 + }, + { + "x": -4, + "y": 17, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 1, + "opacity": 93, + "focus": 2 + }, + { + "x": -28, + "y": 17, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 1, + "opacity": 93, + "focus": 2 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 20, + "y": 17, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 1, + "opacity": 147, + "focus": 2 + }, + { + "x": -4, + "y": 17, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 1, + "opacity": 147, + "focus": 2 + }, + { + "x": -28, + "y": 17, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 1, + "opacity": 147, + "focus": 2 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 20, + "y": 17, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 1, + "opacity": 201, + "focus": 2 + }, + { + "x": -4, + "y": 17, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 1, + "opacity": 201, + "focus": 2 + }, + { + "x": -28, + "y": 17, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 1, + "opacity": 201, + "focus": 2 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 20, + "y": 17, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 1, + "opacity": 255, + "focus": 2 + }, + { + "x": -4, + "y": 17, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 1, + "opacity": 255, + "focus": 2 + }, + { + "x": -28, + "y": 17, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 1, + "opacity": 255, + "focus": 2 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 20, + "y": 17, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 2, + "opacity": 255, + "focus": 2 + }, + { + "x": -4, + "y": 17, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 2, + "opacity": 255, + "focus": 2 + }, + { + "x": -28, + "y": 17, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 2, + "opacity": 255, + "focus": 2 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 20, + "y": 17, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 3, + "opacity": 255, + "focus": 2 + }, + { + "x": -4, + "y": 17, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 3, + "opacity": 255, + "focus": 2 + }, + { + "x": -28, + "y": 17, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 3, + "opacity": 255, + "focus": 2 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 20, + "y": 17, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 2, + "opacity": 255, + "focus": 2 + }, + { + "x": -4, + "y": 17, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 2, + "opacity": 255, + "focus": 2 + }, + { + "x": -28, + "y": 17, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 2, + "opacity": 255, + "focus": 2 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 20, + "y": 17, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 1, + "opacity": 255, + "focus": 2 + }, + { + "x": -4, + "y": 17, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 1, + "opacity": 255, + "focus": 2 + }, + { + "x": -28, + "y": 17, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 1, + "opacity": 255, + "focus": 2 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 20, + "y": 17, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 2, + "opacity": 255, + "focus": 2 + }, + { + "x": -4, + "y": 17, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 2, + "opacity": 255, + "focus": 2 + }, + { + "x": -28, + "y": 17, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 2, + "opacity": 255, + "focus": 2 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 20, + "y": 17, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 3, + "opacity": 255, + "focus": 2 + }, + { + "x": -4, + "y": 17, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 3, + "opacity": 255, + "focus": 2 + }, + { + "x": -28, + "y": 17, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 3, + "opacity": 255, + "focus": 2 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 20, + "y": 17, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 2, + "opacity": 255, + "focus": 2 + }, + { + "x": -4, + "y": 17, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 2, + "opacity": 255, + "focus": 2 + }, + { + "x": -28, + "y": 17, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 2, + "opacity": 255, + "focus": 2 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 20, + "y": 17, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 1, + "opacity": 255, + "focus": 2 + }, + { + "x": -4, + "y": 17, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 1, + "opacity": 255, + "focus": 2 + }, + { + "x": -28, + "y": 17, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 1, + "opacity": 255, + "focus": 2 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 20, + "y": 17, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 2, + "opacity": 255, + "focus": 2 + }, + { + "x": -4, + "y": 17, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 2, + "opacity": 255, + "focus": 2 + }, + { + "x": -28, + "y": 17, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 2, + "opacity": 255, + "focus": 2 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 20, + "y": 17, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 3, + "opacity": 204, + "focus": 2 + }, + { + "x": -4, + "y": 17, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 3, + "opacity": 204, + "focus": 2 + }, + { + "x": -28, + "y": 17, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 3, + "opacity": 204, + "focus": 2 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 20, + "y": 17, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 1, + "opacity": 153, + "focus": 2 + }, + { + "x": -4, + "y": 17, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 1, + "opacity": 153, + "focus": 2 + }, + { + "x": -28, + "y": 17, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 1, + "opacity": 153, + "focus": 2 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 20, + "y": 17, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 2, + "opacity": 102, + "focus": 2 + }, + { + "x": -4, + "y": 17, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 2, + "opacity": 102, + "focus": 2 + }, + { + "x": -28, + "y": 17, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 2, + "opacity": 102, + "focus": 2 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 20, + "y": 17, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 3, + "opacity": 51, + "focus": 2 + }, + { + "x": -4, + "y": 17, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 3, + "opacity": 51, + "focus": 2 + }, + { + "x": -28, + "y": 17, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 3, + "opacity": 51, + "focus": 2 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 20, + "y": 17, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 2, + "focus": 2 + }, + { + "x": -4, + "y": 17, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 2, + "focus": 2 + }, + { + "x": -28, + "y": 17, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 2, + "focus": 2 + } + ] + ], + "frameTimedEvents": { + "0": [ + { + "frameIndex": 0, + "resourceName": "PRSFX- Leech Seed2.wav", + "volume": 100, + "pitch": 100, + "eventType": "AnimTimedSoundEvent" + } + ] + }, + "position": 3, + "hue": 0 + } +] \ No newline at end of file diff --git a/public/battle-anims/sizzly-slide.json b/public/battle-anims/sizzly-slide.json new file mode 100644 index 00000000000..a045f425f9c --- /dev/null +++ b/public/battle-anims/sizzly-slide.json @@ -0,0 +1,2715 @@ +[ + { + "id": 488, + "graphic": "PRAS- Fire", + "frames": [ + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 3 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 3 + }, + { + "x": -4, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 6, + "opacity": 155, + "priority": 1, + "focus": 3 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 3 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 3 + }, + { + "x": -4, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 6, + "opacity": 255, + "priority": 1, + "focus": 3 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 3 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 3 + }, + { + "x": -4, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 6, + "opacity": 255, + "priority": 1, + "focus": 3 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 3 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 3 + }, + { + "x": -4, + "y": -0.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 7, + "opacity": 255, + "priority": 1, + "focus": 3 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + 255, + 0, + 0, + 0 + ], + "locked": true, + "priority": 1, + "focus": 3 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 3 + }, + { + "x": -4, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 8, + "opacity": 255, + "priority": 1, + "focus": 3 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + 255, + 0, + 0, + 0 + ], + "locked": true, + "priority": 1, + "focus": 3 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 3 + }, + { + "x": -4, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 9, + "opacity": 255, + "priority": 1, + "focus": 3 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + 255, + 0, + 0, + 0 + ], + "locked": true, + "priority": 1, + "focus": 3 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 3 + }, + { + "x": -4, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 10, + "opacity": 255, + "priority": 1, + "focus": 3 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + 255, + 0, + 0, + 0 + ], + "locked": true, + "priority": 1, + "focus": 3 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 3 + }, + { + "x": -4, + "y": -0.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 11, + "opacity": 255, + "priority": 1, + "focus": 3 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + 255, + 0, + 0, + 0 + ], + "locked": true, + "priority": 1, + "focus": 3 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 3 + }, + { + "x": -4, + "y": -1, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 8, + "opacity": 255, + "priority": 1, + "focus": 3 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + 255, + 0, + 0, + 0 + ], + "locked": true, + "priority": 1, + "focus": 3 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 3 + }, + { + "x": -4, + "y": -0.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 9, + "opacity": 255, + "priority": 1, + "focus": 3 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + 255, + 0, + 0, + 0 + ], + "locked": true, + "priority": 1, + "focus": 3 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 3 + }, + { + "x": -4, + "y": -0.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 10, + "opacity": 255, + "priority": 1, + "focus": 3 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + 255, + 0, + 0, + 0 + ], + "locked": true, + "priority": 1, + "focus": 3 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 3 + }, + { + "x": -4, + "y": -0.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 11, + "opacity": 255, + "priority": 1, + "focus": 3 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + 255, + 0, + 0, + 0 + ], + "locked": true, + "priority": 1, + "focus": 3 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 3 + }, + { + "x": -4, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 8, + "opacity": 255, + "priority": 1, + "focus": 3 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + 255, + 0, + 0, + 0 + ], + "locked": true, + "priority": 1, + "focus": 3 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 3 + }, + { + "x": -4, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 9, + "opacity": 255, + "priority": 1, + "focus": 3 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + 255, + 0, + 0, + 0 + ], + "locked": true, + "priority": 1, + "focus": 3 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 3 + }, + { + "x": -4, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 10, + "opacity": 255, + "priority": 1, + "focus": 3 + } + ], + [ + { + "x": 25, + "y": -12, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + 255, + 0, + 0, + 0 + ], + "locked": true, + "priority": 1, + "focus": 3 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "priority": 1, + "focus": 3 + }, + { + "x": 21.5, + "y": -13, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 11, + "opacity": 255, + "priority": 1, + "focus": 3 + } + ], + [ + { + "x": 50.5, + "y": -23.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + 255, + 0, + 0, + 0 + ], + "locked": true, + "priority": 1, + "focus": 3 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "priority": 1, + "focus": 3 + }, + { + "x": 47, + "y": -25.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 8, + "opacity": 255, + "priority": 1, + "focus": 3 + } + ], + [ + { + "x": 75.5, + "y": -35.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + 255, + 0, + 0, + 0 + ], + "locked": true, + "priority": 1, + "focus": 3 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "priority": 1, + "focus": 3 + }, + { + "x": 72.5, + "y": -38, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 9, + "opacity": 255, + "priority": 1, + "focus": 3 + } + ], + [ + { + "x": 101, + "y": -47, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + 255, + 0, + 0, + 0 + ], + "locked": true, + "priority": 1, + "focus": 3 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "priority": 1, + "focus": 3 + }, + { + "x": 98, + "y": -50.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 10, + "opacity": 255, + "priority": 1, + "focus": 3 + } + ], + [ + { + "x": 126.5, + "y": -58.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + 255, + 0, + 0, + 0 + ], + "priority": 1, + "focus": 3 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "priority": 1, + "focus": 3 + }, + { + "x": 123.5, + "y": -63, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 11, + "opacity": 255, + "priority": 1, + "focus": 3 + } + ], + [ + { + "x": 144, + "y": -70.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + 255, + 0, + 0, + 0 + ], + "locked": true, + "priority": 1, + "focus": 3 + }, + { + "x": 145.5, + "y": -73.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "priority": 1, + "focus": 3 + }, + { + "x": 140.5, + "y": -69.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 8, + "opacity": 255, + "priority": 1, + "focus": 3 + } + ], + [ + { + "x": 162, + "y": -82.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "color": [ + 255, + 0, + 0, + 0 + ], + "tone": [ + 255, + 0, + 0, + 0 + ], + "locked": true, + "priority": 1, + "focus": 3 + }, + { + "x": 163.5, + "y": -83, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "priority": 1, + "focus": 3 + }, + { + "x": 157.5, + "y": -75.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 9, + "opacity": 255, + "priority": 1, + "focus": 3 + } + ], + [ + { + "x": 180, + "y": -94.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + 255, + 0, + 0, + 0 + ], + "priority": 1, + "focus": 3 + }, + { + "x": 181.5, + "y": -92, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "priority": 1, + "focus": 3 + }, + { + "x": 174.5, + "y": -81.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 10, + "opacity": 255, + "priority": 1, + "focus": 3 + } + ], + [ + { + "x": 198, + "y": -106.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + 255, + 0, + 0, + 0 + ], + "priority": 1, + "focus": 3 + }, + { + "x": 168, + "y": -85, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "priority": 1, + "focus": 3 + }, + { + "x": 193, + "y": -96.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 11, + "opacity": 255, + "priority": 1, + "focus": 3 + } + ], + [ + { + "x": 168.5, + "y": -86, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "priority": 1, + "focus": 3 + }, + { + "x": 154.5, + "y": -78, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 3 + } + ], + [ + { + "x": 162.5, + "y": -82, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "priority": 1, + "focus": 3 + }, + { + "x": 141, + "y": -71, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 3 + } + ], + [ + { + "x": 157, + "y": -77.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "priority": 1, + "focus": 3 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 3 + } + ], + [ + { + "x": 157, + "y": -77.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "priority": 1, + "focus": 3 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 3 + } + ], + [ + { + "x": -54.5, + "y": 38.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "priority": 1, + "focus": 3 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "priority": 1, + "focus": 3 + } + ], + [ + { + "x": -36.5, + "y": 25.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "priority": 1, + "focus": 3 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "priority": 1, + "focus": 3 + } + ], + [ + { + "x": -18.5, + "y": 12.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "priority": 1, + "focus": 3 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "priority": 1, + "focus": 3 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "priority": 1, + "focus": 3 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "priority": 1, + "focus": 3 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "priority": 1, + "focus": 3 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "priority": 1, + "focus": 3 + } + ] + ], + "frameTimedEvents": { + "1": [ + { + "frameIndex": 1, + "resourceName": "PRSFX- Flame Charge1.wav", + "volume": 100, + "pitch": 100, + "eventType": "AnimTimedSoundEvent" + } + ], + "15": [ + { + "frameIndex": 15, + "resourceName": "PRSFX- Flame Charge1.wav", + "volume": 100, + "pitch": 100, + "eventType": "AnimTimedSoundEvent" + } + ], + "20": [ + { + "frameIndex": 20, + "resourceName": "PRSFX- Flame Charge2.wav", + "volume": 100, + "pitch": 100, + "eventType": "AnimTimedSoundEvent" + } + ] + }, + "position": 1, + "hue": 0 + }, + { + "id": 488, + "graphic": "PRAS- Fire", + "frames": [ + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 3 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 3 + }, + { + "x": 128, + "y": -54.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 6, + "opacity": 155, + "priority": 2, + "focus": 3 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 3 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 3 + }, + { + "x": 128, + "y": -54.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 6, + "opacity": 255, + "priority": 2, + "focus": 3 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 3 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 3 + }, + { + "x": 128, + "y": -54, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 7, + "opacity": 255, + "priority": 2, + "focus": 3 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 3 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + 117, + 0, + 0, + 0 + ], + "locked": true, + "priority": 1, + "focus": 3 + }, + { + "x": 128, + "y": -53.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 8, + "opacity": 255, + "priority": 2, + "focus": 3 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 3 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + 255, + 0, + 0, + 0 + ], + "locked": true, + "priority": 1, + "focus": 3 + }, + { + "x": 128, + "y": -53.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 9, + "opacity": 255, + "priority": 2, + "focus": 3 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 3 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + 255, + 0, + 0, + 0 + ], + "locked": true, + "priority": 1, + "focus": 3 + }, + { + "x": 128, + "y": -53, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 10, + "opacity": 255, + "priority": 2, + "focus": 3 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 3 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + 255, + 0, + 0, + 0 + ], + "locked": true, + "priority": 1, + "focus": 3 + }, + { + "x": 128, + "y": -53, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 11, + "opacity": 255, + "priority": 2, + "focus": 3 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 3 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + 255, + 0, + 0, + 0 + ], + "locked": true, + "priority": 1, + "focus": 3 + }, + { + "x": 128, + "y": -52.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 8, + "opacity": 255, + "priority": 2, + "focus": 3 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 3 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + 255, + 0, + 0, + 0 + ], + "locked": true, + "priority": 1, + "focus": 3 + }, + { + "x": 128, + "y": -52.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 9, + "opacity": 255, + "priority": 2, + "focus": 3 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 3 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + 255, + 0, + 0, + 0 + ], + "locked": true, + "priority": 1, + "focus": 3 + }, + { + "x": 128, + "y": -52, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 10, + "opacity": 255, + "priority": 2, + "focus": 3 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 3 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + 255, + 0, + 0, + 0 + ], + "locked": true, + "priority": 1, + "focus": 3 + }, + { + "x": 128, + "y": -52, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 11, + "opacity": 255, + "priority": 2, + "focus": 3 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 3 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + 255, + 0, + 0, + 0 + ], + "locked": true, + "priority": 1, + "focus": 3 + }, + { + "x": 128, + "y": -51.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 8, + "opacity": 255, + "priority": 2, + "focus": 3 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 3 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + 255, + 0, + 0, + 0 + ], + "locked": true, + "priority": 1, + "focus": 3 + }, + { + "x": 128, + "y": -51.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 9, + "opacity": 255, + "priority": 2, + "focus": 3 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 3 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + 255, + 0, + 0, + 0 + ], + "locked": true, + "priority": 1, + "focus": 3 + }, + { + "x": 128, + "y": -51.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 10, + "opacity": 255, + "priority": 2, + "focus": 3 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 3 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + 255, + 0, + 0, + 0 + ], + "locked": true, + "priority": 1, + "focus": 3 + }, + { + "x": 128, + "y": -51, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 11, + "opacity": 255, + "priority": 2, + "focus": 3 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 3 + }, + { + "x": 102.5, + "y": -52, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + 255, + 0, + 0, + 0 + ], + "locked": true, + "priority": 1, + "focus": 3 + }, + { + "x": 101, + "y": -39.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 8, + "opacity": 255, + "priority": 2, + "focus": 3 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "priority": 1, + "focus": 3 + }, + { + "x": 77, + "y": -40, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + 255, + 0, + 0, + 0 + ], + "locked": true, + "priority": 1, + "focus": 3 + }, + { + "x": 74, + "y": -28, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 9, + "opacity": 255, + "priority": 2, + "focus": 3 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "priority": 1, + "focus": 3 + }, + { + "x": 51.5, + "y": -28, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + 255, + 0, + 0, + 0 + ], + "locked": true, + "priority": 1, + "focus": 3 + }, + { + "x": 47, + "y": -16.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 10, + "opacity": 255, + "priority": 2, + "focus": 3 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "priority": 1, + "focus": 3 + }, + { + "x": 26, + "y": -16, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + 255, + 0, + 0, + 0 + ], + "locked": true, + "priority": 1, + "focus": 3 + }, + { + "x": 20, + "y": -5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 11, + "opacity": 255, + "priority": 2, + "focus": 3 + } + ], + [ + { + "x": -2.5, + "y": 1.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 3 + }, + { + "x": 0.5, + "y": -4, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + 255, + 0, + 0, + 0 + ], + "priority": 1, + "focus": 3 + }, + { + "x": -6.5, + "y": 7, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 8, + "opacity": 255, + "priority": 2, + "focus": 3 + } + ], + [ + { + "x": -18, + "y": 9.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 3 + }, + { + "x": -10, + "y": 0.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + 255, + 0, + 0, + 0 + ], + "locked": true, + "priority": 1, + "focus": 3 + }, + { + "x": -18, + "y": 12.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 9, + "opacity": 255, + "priority": 2, + "focus": 3 + } + ], + [ + { + "x": -33, + "y": 18, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 3 + }, + { + "x": -20.5, + "y": 5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + 255, + 0, + 0, + 0 + ], + "priority": 1, + "focus": 3 + }, + { + "x": -29.5, + "y": 18, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 10, + "opacity": 255, + "priority": 2, + "focus": 3 + } + ], + [ + { + "x": -48, + "y": 26.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "priority": 1, + "focus": 3 + }, + { + "x": -30.5, + "y": 9.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + 255, + 0, + 0, + 0 + ], + "priority": 1, + "focus": 3 + }, + { + "x": -41, + "y": 23.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 11, + "opacity": 255, + "priority": 2, + "focus": 3 + } + ], + [ + { + "x": -48, + "y": 26.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "priority": 1, + "focus": 3 + }, + { + "x": -54.5, + "y": 38.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + 255, + 0, + 0, + 0 + ], + "priority": 1, + "focus": 3 + }, + { + "x": -63.5, + "y": 44.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 11, + "opacity": 255, + "priority": 2, + "focus": 3 + } + ], + [ + { + "x": -48, + "y": 26.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "priority": 1, + "focus": 3 + }, + { + "x": -54.5, + "y": 38.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "tone": [ + 255, + 0, + 0, + 0 + ], + "priority": 1, + "focus": 3 + } + ], + [ + { + "x": -16, + "y": 8.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 3 + }, + { + "x": -31.5, + "y": 16, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "tone": [ + 255, + 0, + 0, + 0 + ], + "focus": 3 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 3 + }, + { + "x": -20, + "y": 5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "tone": [ + 255, + 0, + 0, + 0 + ], + "focus": 3 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 3 + }, + { + "x": -20, + "y": 5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "tone": [ + 255, + 0, + 0, + 0 + ], + "focus": 3 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 3 + }, + { + "x": 178.5, + "y": -86.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "focus": 3 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 3 + }, + { + "x": 165.5, + "y": -81, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "focus": 3 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 3 + }, + { + "x": 153, + "y": -75.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "focus": 3 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 3 + }, + { + "x": 140.5, + "y": -70, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "focus": 3 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 3 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "focus": 3 + } + ] + ], + "frameTimedEvents": { + "1": [ + { + "frameIndex": 1, + "resourceName": "PRSFX- Flame Charge1.wav", + "volume": 100, + "pitch": 110, + "eventType": "AnimTimedSoundEvent" + } + ], + "15": [ + { + "frameIndex": 15, + "resourceName": "PRSFX- Flame Charge1.wav", + "volume": 100, + "pitch": 100, + "eventType": "AnimTimedSoundEvent" + } + ], + "20": [ + { + "frameIndex": 20, + "resourceName": "PRSFX- Flame Charge2.wav", + "volume": 100, + "pitch": 100, + "eventType": "AnimTimedSoundEvent" + } + ] + }, + "position": 1, + "hue": 0 + } +] \ No newline at end of file diff --git a/public/battle-anims/sparkly-swirl.json b/public/battle-anims/sparkly-swirl.json new file mode 100644 index 00000000000..7972d6bec03 --- /dev/null +++ b/public/battle-anims/sparkly-swirl.json @@ -0,0 +1,2236 @@ +{ + "id": 617, + "graphic": "PRAS- Strike", + "frames": [ + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + -40, + -40, + -40, + 0 + ], + "locked": true, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + -80, + -80, + -80, + 0 + ], + "locked": true, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 132, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + -120, + -120, + -120, + 0 + ], + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 110, + "y": -48, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 0, + "opacity": 255, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + -120, + -120, + -120, + 0 + ], + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 154.5, + "y": -54, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 0, + "opacity": 255, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 132, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + -120, + -120, + -120, + 0 + ], + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 106, + "y": -80.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 0, + "opacity": 255, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + -120, + -120, + -120, + 0 + ], + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 141.5, + "y": -79, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 0, + "opacity": 255, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 132, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + -120, + -120, + -120, + 0 + ], + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 141.5, + "y": -45.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 0, + "opacity": 255, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + -120, + -120, + -120, + 0 + ], + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 114, + "y": -77.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 0, + "opacity": 255, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 132, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + -120, + -120, + -120, + 0 + ], + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 146, + "y": -58.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 0, + "opacity": 255, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + -120, + -120, + -120, + 0 + ], + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 108.5, + "y": -38, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 0, + "opacity": 255, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 132, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + -120, + -120, + -120, + 0 + ], + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 154.5, + "y": -78, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 0, + "opacity": 255, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + -120, + -120, + -120, + 0 + ], + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 107, + "y": -73.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 0, + "opacity": 255, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 132, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + -120, + -120, + -120, + 0 + ], + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 134.5, + "y": -51.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 0, + "opacity": 255, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + -120, + -120, + -120, + 0 + ], + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 111.5, + "y": -43, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 0, + "opacity": 255, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 132, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + -120, + -120, + -120, + 0 + ], + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 151.5, + "y": -40, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 0, + "opacity": 255, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + -120, + -120, + -120, + 0 + ], + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 125.5, + "y": -88.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 0, + "opacity": 255, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 132, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + -120, + -120, + -120, + 0 + ], + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 102.5, + "y": -42.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 0, + "opacity": 255, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + -120, + -120, + -120, + 0 + ], + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 146, + "y": -44.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 0, + "opacity": 255, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 132, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + -120, + -120, + -120, + 0 + ], + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 113.5, + "y": -57, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 0, + "opacity": 255, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + -120, + -120, + -120, + 0 + ], + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 140.5, + "y": -70.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 0, + "opacity": 255, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 132, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + -120, + -120, + -120, + 0 + ], + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 148, + "y": -37, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 0, + "opacity": 255, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + -120, + -120, + -120, + 0 + ], + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 93.5, + "y": -75.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 0, + "opacity": 255, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 132, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + -120, + -120, + -120, + 0 + ], + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 99.5, + "y": -41.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 0, + "opacity": 255, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + -120, + -120, + -120, + 0 + ], + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 154, + "y": -40.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 0, + "opacity": 255, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 132, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + -120, + -120, + -120, + 0 + ], + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 155.5, + "y": -85, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 0, + "opacity": 255, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + -120, + -120, + -120, + 0 + ], + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 104.5, + "y": -41.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 0, + "opacity": 255, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 132, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + -120, + -120, + -120, + 0 + ], + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 134, + "y": -43, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 0, + "opacity": 255, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + -120, + -120, + -120, + 0 + ], + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 154.5, + "y": -60, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 0, + "opacity": 255, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 132, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + -120, + -120, + -120, + 0 + ], + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 100, + "y": -56.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 0, + "opacity": 255, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + -120, + -120, + -120, + 0 + ], + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 149, + "y": -86.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 0, + "opacity": 255, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 132, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + -120, + -120, + -120, + 0 + ], + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 147, + "y": -41, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 0, + "opacity": 255, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + -120, + -120, + -120, + 0 + ], + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 107, + "y": -53.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 0, + "opacity": 255, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 132, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + -120, + -120, + -120, + 0 + ], + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 160, + "y": -69, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 0, + "opacity": 255, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + -120, + -120, + -120, + 0 + ], + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 102.5, + "y": -45, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 0, + "opacity": 255, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 132, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + -120, + -120, + -120, + 0 + ], + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 113, + "y": -80, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 0, + "opacity": 255, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + -120, + -120, + -120, + 0 + ], + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 144, + "y": -43, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 0, + "opacity": 255, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 132, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + -120, + -120, + -120, + 0 + ], + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 105, + "y": -39.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 0, + "opacity": 255, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + -80, + -80, + -80, + 0 + ], + "locked": true, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + -40, + -40, + -40, + 0 + ], + "locked": true, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + } + ] + ], + "frameTimedEvents": { + "0": [ + { + "frameIndex": 0, + "resourceName": "PRAS- Flash FG", + "bgX": 0, + "bgY": 0, + "opacity": 0, + "duration": 5, + "eventType": "AnimTimedAddBgEvent" + }, + { + "frameIndex": 0, + "resourceName": "", + "bgX": 0, + "bgY": 0, + "opacity": 255, + "duration": 4, + "eventType": "AnimTimedUpdateBgEvent" + } + ], + "1": [ + { + "frameIndex": 1, + "resourceName": "Saint7.m4a", + "volume": 80, + "pitch": 100, + "eventType": "AnimTimedSoundEvent" + } + ], + "6": [ + { + "frameIndex": 6, + "resourceName": "Saint8.m4a", + "volume": 80, + "pitch": 60, + "eventType": "AnimTimedSoundEvent" + } + ], + "11": [ + { + "frameIndex": 11, + "resourceName": "Blow1.m4a", + "volume": 80, + "pitch": 100, + "eventType": "AnimTimedSoundEvent" + } + ], + "13": [ + { + "frameIndex": 13, + "resourceName": "Blow1.m4a", + "volume": 80, + "pitch": 100, + "eventType": "AnimTimedSoundEvent" + } + ], + "15": [ + { + "frameIndex": 15, + "resourceName": "Blow1.m4a", + "volume": 80, + "pitch": 100, + "eventType": "AnimTimedSoundEvent" + } + ], + "17": [ + { + "frameIndex": 17, + "resourceName": "Blow1.m4a", + "volume": 80, + "pitch": 100, + "eventType": "AnimTimedSoundEvent" + } + ], + "19": [ + { + "frameIndex": 19, + "resourceName": "Blow1.m4a", + "volume": 80, + "pitch": 100, + "eventType": "AnimTimedSoundEvent" + } + ], + "21": [ + { + "frameIndex": 21, + "resourceName": "Blow1.m4a", + "volume": 80, + "pitch": 100, + "eventType": "AnimTimedSoundEvent" + } + ], + "23": [ + { + "frameIndex": 23, + "resourceName": "Blow1.m4a", + "volume": 80, + "pitch": 100, + "eventType": "AnimTimedSoundEvent" + } + ], + "25": [ + { + "frameIndex": 25, + "resourceName": "Blow1.m4a", + "volume": 80, + "pitch": 100, + "eventType": "AnimTimedSoundEvent" + } + ], + "27": [ + { + "frameIndex": 27, + "resourceName": "Blow1.m4a", + "volume": 80, + "pitch": 100, + "eventType": "AnimTimedSoundEvent" + } + ], + "29": [ + { + "frameIndex": 29, + "resourceName": "Blow1.m4a", + "volume": 80, + "pitch": 100, + "eventType": "AnimTimedSoundEvent" + } + ], + "31": [ + { + "frameIndex": 31, + "resourceName": "Blow1.m4a", + "volume": 80, + "pitch": 100, + "eventType": "AnimTimedSoundEvent" + } + ], + "33": [ + { + "frameIndex": 33, + "resourceName": "Blow1.m4a", + "volume": 80, + "pitch": 100, + "eventType": "AnimTimedSoundEvent" + } + ], + "35": [ + { + "frameIndex": 35, + "resourceName": "Blow1.m4a", + "volume": 80, + "pitch": 100, + "eventType": "AnimTimedSoundEvent" + } + ], + "37": [ + { + "frameIndex": 37, + "resourceName": "Blow1.m4a", + "volume": 80, + "pitch": 100, + "eventType": "AnimTimedSoundEvent" + } + ], + "39": [ + { + "frameIndex": 39, + "resourceName": "", + "bgX": 0, + "bgY": 0, + "opacity": 0, + "duration": 4, + "eventType": "AnimTimedUpdateBgEvent" + }, + { + "frameIndex": 39, + "resourceName": "Blow1.m4a", + "volume": 80, + "pitch": 100, + "eventType": "AnimTimedSoundEvent" + } + ], + "41": [ + { + "frameIndex": 41, + "resourceName": "Blow1.m4a", + "volume": 80, + "pitch": 100, + "eventType": "AnimTimedSoundEvent" + } + ], + "43": [ + { + "frameIndex": 43, + "resourceName": "Blow1.m4a", + "volume": 80, + "pitch": 100, + "eventType": "AnimTimedSoundEvent" + } + ] + }, + "position": 4, + "hue": 0 +} \ No newline at end of file diff --git a/public/battle-anims/splishy-splash.json b/public/battle-anims/splishy-splash.json new file mode 100644 index 00000000000..99718798bb5 --- /dev/null +++ b/public/battle-anims/splishy-splash.json @@ -0,0 +1,2458 @@ +[ + { + "id": 57, + "graphic": "", + "frames": [ + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + } + ] + ], + "frameTimedEvents": { + "0": [ + { + "frameIndex": 0, + "resourceName": "PRSFX- Surf.wav", + "volume": 100, + "pitch": 100, + "eventType": "AnimTimedSoundEvent" + }, + { + "frameIndex": 0, + "resourceName": "PRAS- Surf FG", + "bgX": -10, + "bgY": 365, + "opacity": 0, + "duration": 2, + "eventType": "AnimTimedAddBgEvent" + }, + { + "frameIndex": 0, + "resourceName": "", + "bgX": 400, + "bgY": 340, + "duration": 45, + "eventType": "AnimTimedUpdateBgEvent" + } + ], + "1": [ + { + "frameIndex": 1, + "resourceName": "", + "opacity": 200, + "duration": 6, + "eventType": "AnimTimedUpdateBgEvent" + } + ], + "30": [ + { + "frameIndex": 30, + "resourceName": "", + "opacity": 0, + "duration": 15, + "eventType": "AnimTimedUpdateBgEvent" + } + ] + }, + "position": 4, + "hue": 0 + }, + { + "id": 57, + "graphic": "", + "frames": [ + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + } + ] + ], + "frameTimedEvents": { + "0": [ + { + "frameIndex": 0, + "resourceName": "PRSFX- Surf.wav", + "volume": 100, + "pitch": 100, + "eventType": "AnimTimedSoundEvent" + }, + { + "frameIndex": 0, + "resourceName": "PRAS- Surf FG Opp - Copie", + "bgX": -50, + "bgY": 0, + "opacity": 0, + "duration": 2, + "eventType": "AnimTimedAddBgEvent" + }, + { + "frameIndex": 0, + "resourceName": "", + "bgX": -600, + "bgY": 200, + "duration": 45, + "eventType": "AnimTimedUpdateBgEvent" + } + ], + "1": [ + { + "frameIndex": 1, + "resourceName": "", + "opacity": 200, + "duration": 6, + "eventType": "AnimTimedUpdateBgEvent" + } + ], + "30": [ + { + "frameIndex": 30, + "resourceName": "", + "opacity": 0, + "duration": 15, + "eventType": "AnimTimedUpdateBgEvent" + } + ] + }, + "position": 4, + "hue": 0 + } +] diff --git a/public/battle-anims/syrup-bomb.json b/public/battle-anims/syrup-bomb.json new file mode 100644 index 00000000000..82b3a39253e --- /dev/null +++ b/public/battle-anims/syrup-bomb.json @@ -0,0 +1,1800 @@ +[ + { + "id": 787, + "graphic": "GEN8- Apple Acid", + "frames": [ + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 80, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 70, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 80, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 90, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 90, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 80, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 70, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 80, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 90, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 14, + "y": -14, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 0, + "opacity": 255, + "priority": 1, + "focus": 3 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 32, + "y": -36, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 0, + "opacity": 255, + "priority": 1, + "focus": 3 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 52, + "y": -51.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 0, + "opacity": 255, + "priority": 1, + "focus": 3 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 70, + "y": -66.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 0, + "opacity": 255, + "priority": 1, + "focus": 3 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 89.5, + "y": -78.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 0, + "opacity": 255, + "priority": 1, + "focus": 3 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 115, + "y": -75, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 0, + "opacity": 255, + "priority": 1, + "focus": 3 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 128.5, + "y": -66.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 2, + "opacity": 255, + "priority": 1, + "focus": 3 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 128.5, + "y": -66.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 2, + "opacity": 255, + "priority": 1, + "focus": 3 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 1, + "opacity": 255, + "priority": 1, + "focus": 3 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 128, + "y": -59, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 1, + "opacity": 255, + "priority": 1, + "focus": 3 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 128, + "y": -53.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 1, + "opacity": 255, + "priority": 1, + "focus": 3 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 128, + "y": -48, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 1, + "opacity": 255, + "priority": 1, + "focus": 3 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 128, + "y": -42.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 1, + "opacity": 255, + "priority": 1, + "focus": 3 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 128, + "y": -37, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 1, + "opacity": 255, + "priority": 1, + "focus": 3 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 128.5, + "y": -29.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 1, + "opacity": 255, + "priority": 1, + "focus": 3 + } + ] + ], + "frameTimedEvents": { + "0": [ + { + "frameIndex": 0, + "resourceName": "Poison.m4a", + "volume": 80, + "pitch": 100, + "eventType": "AnimTimedSoundEvent" + } + ] + }, + "position": 3, + "hue": 0 + }, + { + "id": 787, + "graphic": "GEN8- Apple Acid", + "frames": [ + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 80, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 70, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 80, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 90, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 90, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 80, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 70, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 80, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 90, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 103, + "y": -77.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 0, + "opacity": 255, + "priority": 1, + "focus": 3 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 80, + "y": -74, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 0, + "opacity": 255, + "priority": 1, + "focus": 3 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 64, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 0, + "opacity": 255, + "priority": 1, + "focus": 3 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 50.5, + "y": -54.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 0, + "opacity": 255, + "priority": 1, + "focus": 3 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 33, + "y": -38, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 0, + "opacity": 255, + "priority": 1, + "focus": 3 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 16.5, + "y": -13.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 0, + "opacity": 255, + "priority": 1, + "focus": 3 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 0.5, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 2, + "opacity": 255, + "priority": 1, + "focus": 3 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 0.5, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 2, + "opacity": 255, + "priority": 1, + "focus": 3 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 1, + "opacity": 255, + "priority": 1, + "focus": 3 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 0, + "y": 7, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 1, + "opacity": 255, + "priority": 1, + "focus": 4 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 0, + "y": 14, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 1, + "opacity": 255, + "priority": 1, + "focus": 4 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 0, + "y": 21, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 1, + "opacity": 255, + "priority": 1, + "focus": 4 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 0, + "y": 28, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 1, + "opacity": 255, + "priority": 1, + "focus": 4 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 0, + "y": 35, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 1, + "opacity": 255, + "priority": 1, + "focus": 4 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 0, + "y": 42, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 1, + "opacity": 255, + "priority": 1, + "focus": 3 + } + ] + ], + "frameTimedEvents": { + "0": [ + { + "frameIndex": 0, + "resourceName": "Poison.m4a", + "volume": 80, + "pitch": 100, + "eventType": "AnimTimedSoundEvent" + } + ] + }, + "position": 3, + "hue": 0 + } +] \ No newline at end of file diff --git a/public/battle-anims/veevee-volley.json b/public/battle-anims/veevee-volley.json new file mode 100644 index 00000000000..7590707e65e --- /dev/null +++ b/public/battle-anims/veevee-volley.json @@ -0,0 +1,886 @@ +{ + "id": 216, + "graphic": "PRAS- Love", + "frames": [ + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "priority": 1, + "focus": 3 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 3 + }, + { + "x": 27, + "y": 0.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 3, + "opacity": 255, + "priority": 1, + "focus": 2 + }, + { + "x": -30, + "y": -6.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 3, + "opacity": 255, + "priority": 1, + "focus": 2 + }, + { + "x": -0.5, + "y": 18.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 3, + "opacity": 135, + "priority": 1, + "focus": 2 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "priority": 1, + "focus": 3 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 3 + }, + { + "x": 27, + "y": -3, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 4, + "opacity": 255, + "priority": 1, + "focus": 2 + }, + { + "x": -30, + "y": -10, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 4, + "opacity": 255, + "priority": 1, + "focus": 2 + }, + { + "x": -0.5, + "y": 14.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 3, + "opacity": 255, + "priority": 1, + "focus": 2 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "priority": 1, + "focus": 3 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 3 + }, + { + "x": 27, + "y": -7, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 5, + "opacity": 255, + "priority": 1, + "focus": 2 + }, + { + "x": -30, + "y": -13.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 5, + "opacity": 255, + "priority": 1, + "focus": 2 + }, + { + "x": -0.5, + "y": 10.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 4, + "opacity": 255, + "priority": 1, + "focus": 2 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 3 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 3 + }, + { + "x": 27, + "y": -10.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 5, + "opacity": 255, + "priority": 1, + "focus": 2 + }, + { + "x": -30, + "y": -17, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 5, + "opacity": 255, + "priority": 1, + "focus": 2 + }, + { + "x": -0.5, + "y": 6.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 5, + "opacity": 255, + "priority": 1, + "focus": 2 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 3 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 3 + }, + { + "x": 27, + "y": -14.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 5, + "opacity": 255, + "priority": 1, + "focus": 2 + }, + { + "x": -30, + "y": -21, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 5, + "opacity": 255, + "priority": 1, + "focus": 2 + }, + { + "x": -0.5, + "y": 2.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 5, + "opacity": 255, + "priority": 1, + "focus": 2 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 3 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 3 + }, + { + "x": 27, + "y": -18, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 4, + "opacity": 255, + "priority": 1, + "focus": 2 + }, + { + "x": -30, + "y": -24.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 4, + "opacity": 255, + "priority": 1, + "focus": 2 + }, + { + "x": -0.5, + "y": -1, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 5, + "opacity": 255, + "priority": 1, + "focus": 2 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 3 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 3 + }, + { + "x": 27, + "y": -22, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 4, + "opacity": 255, + "priority": 1, + "focus": 2 + }, + { + "x": -30, + "y": -28, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 4, + "opacity": 255, + "priority": 1, + "focus": 2 + }, + { + "x": -0.5, + "y": -5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 5, + "opacity": 255, + "priority": 1, + "focus": 2 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 3 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 3 + }, + { + "x": 27, + "y": -25.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 4, + "opacity": 255, + "priority": 1, + "focus": 2 + }, + { + "x": -30, + "y": -31.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 4, + "opacity": 255, + "priority": 1, + "focus": 2 + }, + { + "x": -0.5, + "y": -9, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 5, + "opacity": 255, + "priority": 1, + "focus": 2 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 3 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 3 + }, + { + "x": 27, + "y": -29, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 5, + "opacity": 255, + "priority": 1, + "focus": 2 + }, + { + "x": -30, + "y": -35, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 5, + "opacity": 255, + "priority": 1, + "focus": 2 + }, + { + "x": -0.5, + "y": -13, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 4, + "opacity": 255, + "priority": 1, + "focus": 2 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 3 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 3 + }, + { + "x": 27, + "y": -33, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 5, + "opacity": 130, + "priority": 1, + "focus": 2 + }, + { + "x": -30, + "y": -39, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 5, + "opacity": 130, + "priority": 1, + "focus": 2 + }, + { + "x": 0, + "y": -16.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 4, + "opacity": 255, + "priority": 1, + "focus": 2 + } + ], + [ + { + "x": 8, + "y": -2, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "priority": 1, + "focus": 3 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 3 + }, + { + "x": 27, + "y": -37, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 5, + "opacity": 70, + "priority": 1, + "focus": 2 + }, + { + "x": -30, + "y": -43.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 5, + "opacity": 70, + "priority": 1, + "focus": 2 + }, + { + "x": 0, + "y": -20.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 4, + "opacity": 130, + "priority": 1, + "focus": 2 + } + ], + [ + { + "x": 16, + "y": -6, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "priority": 1, + "focus": 3 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 3 + }, + { + "x": 0, + "y": -24.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 4, + "opacity": 70, + "priority": 1, + "focus": 2 + } + ], + [ + { + "x": 24, + "y": -8, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "priority": 1, + "focus": 3 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 3 + }, + { + "x": 124, + "y": -58, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 6, + "opacity": 255, + "priority": 1, + "focus": 3 + } + ], + [ + { + "x": 12, + "y": -4, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 3 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 3 + }, + { + "x": 124, + "y": -58, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 6, + "opacity": 255, + "priority": 1, + "focus": 3 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 3 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 3 + }, + { + "x": 124, + "y": -58, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 6, + "opacity": 130, + "priority": 1, + "focus": 3 + } + ] + ], + "frameTimedEvents": { + "0": [ + { + "frameIndex": 0, + "resourceName": "PRSFX- Return1.wav", + "volume": 100, + "pitch": 100, + "eventType": "AnimTimedSoundEvent" + } + ], + "11": [ + { + "frameIndex": 11, + "resourceName": "PRSFX- Return2.wav", + "volume": 100, + "pitch": 100, + "eventType": "AnimTimedSoundEvent" + } + ] + }, + "position": 3, + "hue": 0 +} \ No newline at end of file diff --git a/public/battle-anims/wicked-torque.json b/public/battle-anims/wicked-torque.json new file mode 100644 index 00000000000..c20bac6a4f1 --- /dev/null +++ b/public/battle-anims/wicked-torque.json @@ -0,0 +1,14194 @@ +{ + "id": 663, + "graphic": "PRAS- Coil", + "frames": [ + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "mirror": true, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "color": [ + 27, + 0, + 0, + 19 + ], + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 0, + "y": -20, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 4, + "opacity": 144, + "color": [ + 150, + 0, + 0, + 150 + ], + "priority": 1, + "focus": 2 + }, + { + "x": 0, + "y": -20, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 5, + "opacity": 144, + "color": [ + 120, + 0, + 0, + 120 + ], + "priority": 1, + "focus": 2 + }, + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 4, + "opacity": 144, + "color": [ + 150, + 0, + 0, + 150 + ], + "priority": 1, + "focus": 2 + }, + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 5, + "opacity": 144, + "color": [ + 120, + 0, + 0, + 120 + ], + "priority": 1, + "focus": 2 + }, + { + "x": 0, + "y": 20, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 4, + "opacity": 144, + "color": [ + 150, + 0, + 0, + 150 + ], + "priority": 1, + "focus": 2 + }, + { + "x": 0, + "y": 20, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 5, + "opacity": 144, + "color": [ + 120, + 0, + 0, + 120 + ], + "priority": 1, + "focus": 2 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "color": [ + 54, + 0, + 0, + 39 + ], + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 0, + "y": -20, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 3, + "opacity": 144, + "color": [ + 150, + 0, + 0, + 150 + ], + "priority": 1, + "focus": 2 + }, + { + "x": 0, + "y": -20, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 4, + "opacity": 144, + "color": [ + 120, + 0, + 0, + 120 + ], + "priority": 1, + "focus": 2 + }, + { + "x": 0, + "y": -20, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 5, + "opacity": 144, + "color": [ + 90, + 0, + 0, + 90 + ], + "priority": 1, + "focus": 2 + }, + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 3, + "opacity": 144, + "color": [ + 150, + 0, + 0, + 150 + ], + "priority": 1, + "focus": 2 + }, + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 4, + "opacity": 144, + "color": [ + 120, + 0, + 0, + 120 + ], + "priority": 1, + "focus": 2 + }, + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 5, + "opacity": 144, + "color": [ + 90, + 0, + 0, + 90 + ], + "priority": 1, + "focus": 2 + }, + { + "x": 0, + "y": 20, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 3, + "opacity": 144, + "color": [ + 150, + 0, + 0, + 150 + ], + "priority": 1, + "focus": 2 + }, + { + "x": 0, + "y": 20, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 4, + "opacity": 144, + "color": [ + 120, + 0, + 0, + 120 + ], + "priority": 1, + "focus": 2 + }, + { + "x": 0, + "y": 20, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 5, + "opacity": 144, + "color": [ + 90, + 0, + 0, + 90 + ], + "priority": 1, + "focus": 2 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "mirror": true, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "color": [ + 82, + 0, + 0, + 59 + ], + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 0, + "y": -20, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 0, + "opacity": 144, + "color": [ + 150, + 0, + 0, + 150 + ], + "focus": 2 + }, + { + "x": 0, + "y": -20, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 3, + "opacity": 144, + "color": [ + 120, + 0, + 0, + 120 + ], + "priority": 1, + "focus": 2 + }, + { + "x": 0, + "y": -20, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 4, + "opacity": 144, + "color": [ + 90, + 0, + 0, + 90 + ], + "priority": 1, + "focus": 2 + }, + { + "x": 0, + "y": -20, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 5, + "opacity": 144, + "color": [ + 60, + 0, + 0, + 60 + ], + "priority": 1, + "focus": 2 + }, + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 0, + "opacity": 144, + "color": [ + 150, + 0, + 0, + 150 + ], + "focus": 2 + }, + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 3, + "opacity": 144, + "color": [ + 120, + 0, + 0, + 120 + ], + "priority": 1, + "focus": 2 + }, + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 4, + "opacity": 144, + "color": [ + 90, + 0, + 0, + 90 + ], + "priority": 1, + "focus": 2 + }, + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 5, + "opacity": 144, + "color": [ + 60, + 0, + 0, + 60 + ], + "priority": 1, + "focus": 2 + }, + { + "x": 0, + "y": 20, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 0, + "opacity": 144, + "color": [ + 150, + 0, + 0, + 150 + ], + "focus": 2 + }, + { + "x": 0, + "y": 20, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 3, + "opacity": 144, + "color": [ + 120, + 0, + 0, + 120 + ], + "priority": 1, + "focus": 2 + }, + { + "x": 0, + "y": 20, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 4, + "opacity": 144, + "color": [ + 90, + 0, + 0, + 90 + ], + "priority": 1, + "focus": 2 + }, + { + "x": 0, + "y": 20, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 5, + "opacity": 144, + "color": [ + 60, + 0, + 0, + 60 + ], + "priority": 1, + "focus": 2 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "color": [ + 109, + 0, + 0, + 78 + ], + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 0, + "y": -20, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 1, + "opacity": 144, + "color": [ + 150, + 0, + 0, + 150 + ], + "focus": 2 + }, + { + "x": 0, + "y": -20, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 0, + "opacity": 144, + "color": [ + 120, + 0, + 0, + 120 + ], + "focus": 2 + }, + { + "x": 0, + "y": -20, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 3, + "opacity": 144, + "color": [ + 90, + 0, + 0, + 90 + ], + "priority": 1, + "focus": 2 + }, + { + "x": 0, + "y": -20, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 4, + "opacity": 144, + "color": [ + 60, + 0, + 0, + 60 + ], + "priority": 1, + "focus": 2 + }, + { + "x": 0, + "y": -20, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 5, + "opacity": 144, + "color": [ + 30, + 0, + 0, + 30 + ], + "priority": 1, + "focus": 2 + }, + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 1, + "opacity": 144, + "color": [ + 150, + 0, + 0, + 150 + ], + "focus": 2 + }, + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 0, + "opacity": 144, + "color": [ + 120, + 0, + 0, + 120 + ], + "focus": 2 + }, + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 3, + "opacity": 144, + "color": [ + 90, + 0, + 0, + 90 + ], + "priority": 1, + "focus": 2 + }, + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 4, + "opacity": 144, + "color": [ + 60, + 0, + 0, + 60 + ], + "priority": 1, + "focus": 2 + }, + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 5, + "opacity": 144, + "color": [ + 30, + 0, + 0, + 30 + ], + "priority": 1, + "focus": 2 + }, + { + "x": 0, + "y": 20, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 1, + "opacity": 144, + "color": [ + 150, + 0, + 0, + 150 + ], + "focus": 2 + }, + { + "x": 0, + "y": 20, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 0, + "opacity": 144, + "color": [ + 120, + 0, + 0, + 120 + ], + "focus": 2 + }, + { + "x": 0, + "y": 20, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 3, + "opacity": 144, + "color": [ + 90, + 0, + 0, + 90 + ], + "priority": 1, + "focus": 2 + }, + { + "x": 0, + "y": 20, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 4, + "opacity": 144, + "color": [ + 60, + 0, + 0, + 60 + ], + "priority": 1, + "focus": 2 + }, + { + "x": 0, + "y": 20, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 5, + "opacity": 144, + "color": [ + 30, + 0, + 0, + 30 + ], + "priority": 1, + "focus": 2 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "mirror": true, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "color": [ + 137, + 0, + 0, + 98 + ], + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 0, + "y": -20, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 2, + "opacity": 144, + "color": [ + 150, + 0, + 0, + 150 + ], + "focus": 2 + }, + { + "x": 0, + "y": -20, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 1, + "opacity": 144, + "color": [ + 120, + 0, + 0, + 120 + ], + "focus": 2 + }, + { + "x": 0, + "y": -20, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 0, + "opacity": 144, + "color": [ + 90, + 0, + 0, + 90 + ], + "focus": 2 + }, + { + "x": 0, + "y": -20, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 3, + "opacity": 144, + "color": [ + 60, + 0, + 0, + 60 + ], + "priority": 1, + "focus": 2 + }, + { + "x": 0, + "y": -20, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 4, + "opacity": 144, + "color": [ + 30, + 0, + 0, + 30 + ], + "priority": 1, + "focus": 2 + }, + { + "x": 0, + "y": -20, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 5, + "opacity": 144, + "priority": 1, + "focus": 2 + }, + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 2, + "opacity": 144, + "color": [ + 150, + 0, + 0, + 150 + ], + "focus": 2 + }, + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 1, + "opacity": 144, + "color": [ + 120, + 0, + 0, + 120 + ], + "focus": 2 + }, + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 0, + "opacity": 144, + "color": [ + 90, + 0, + 0, + 90 + ], + "focus": 2 + }, + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 3, + "opacity": 144, + "color": [ + 60, + 0, + 0, + 60 + ], + "priority": 1, + "focus": 2 + }, + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 4, + "opacity": 144, + "color": [ + 30, + 0, + 0, + 30 + ], + "priority": 1, + "focus": 2 + }, + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 5, + "opacity": 144, + "priority": 1, + "focus": 2 + }, + { + "x": 0, + "y": 20, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 2, + "opacity": 144, + "color": [ + 150, + 0, + 0, + 150 + ], + "focus": 2 + }, + { + "x": 0, + "y": 20, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 1, + "opacity": 144, + "color": [ + 120, + 0, + 0, + 120 + ], + "focus": 2 + }, + { + "x": 0, + "y": 20, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 0, + "opacity": 144, + "color": [ + 90, + 0, + 0, + 90 + ], + "focus": 2 + }, + { + "x": 0, + "y": 20, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 3, + "opacity": 144, + "color": [ + 60, + 0, + 0, + 60 + ], + "priority": 1, + "focus": 2 + }, + { + "x": 0, + "y": 20, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 4, + "opacity": 144, + "color": [ + 30, + 0, + 0, + 30 + ], + "priority": 1, + "focus": 2 + }, + { + "x": 0, + "y": 20, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 5, + "opacity": 144, + "priority": 1, + "focus": 2 + }, + { + "x": 58, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 12, + "opacity": 144, + "priority": 1, + "focus": 2 + } + ], + [ + { + "x": -22.5, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "color": [ + 164, + 0, + 0, + 118 + ], + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": -22.5, + "y": -20, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 5, + "opacity": 144, + "color": [ + 150, + 0, + 0, + 150 + ], + "priority": 1, + "focus": 2 + }, + { + "x": -22.5, + "y": -20, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 2, + "opacity": 144, + "color": [ + 120, + 0, + 0, + 120 + ], + "focus": 2 + }, + { + "x": -22.5, + "y": -20, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 1, + "opacity": 144, + "color": [ + 90, + 0, + 0, + 90 + ], + "focus": 2 + }, + { + "x": -22.5, + "y": -20, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 0, + "opacity": 144, + "color": [ + 60, + 0, + 0, + 60 + ], + "focus": 2 + }, + { + "x": -22.5, + "y": -20, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 3, + "opacity": 144, + "color": [ + 30, + 0, + 0, + 30 + ], + "priority": 1, + "focus": 2 + }, + { + "x": -22.5, + "y": -20, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 4, + "opacity": 144, + "priority": 1, + "focus": 2 + }, + { + "x": -22.5, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 5, + "opacity": 144, + "color": [ + 150, + 0, + 0, + 150 + ], + "priority": 1, + "focus": 2 + }, + { + "x": -22.5, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 2, + "opacity": 144, + "color": [ + 120, + 0, + 0, + 120 + ], + "focus": 2 + }, + { + "x": -22.5, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 1, + "opacity": 144, + "color": [ + 90, + 0, + 0, + 90 + ], + "focus": 2 + }, + { + "x": -22.5, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 0, + "opacity": 144, + "color": [ + 60, + 0, + 0, + 60 + ], + "focus": 2 + }, + { + "x": -22.5, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 3, + "opacity": 144, + "color": [ + 30, + 0, + 0, + 30 + ], + "priority": 1, + "focus": 2 + }, + { + "x": -22.5, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 4, + "opacity": 144, + "priority": 1, + "focus": 2 + }, + { + "x": -22.5, + "y": 20, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 5, + "opacity": 144, + "color": [ + 150, + 0, + 0, + 150 + ], + "priority": 1, + "focus": 2 + }, + { + "x": -22.5, + "y": 20, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 2, + "opacity": 144, + "color": [ + 120, + 0, + 0, + 120 + ], + "focus": 2 + }, + { + "x": -22.5, + "y": 20, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 1, + "opacity": 144, + "color": [ + 90, + 0, + 0, + 90 + ], + "focus": 2 + }, + { + "x": -22.5, + "y": 20, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 0, + "opacity": 144, + "color": [ + 60, + 0, + 0, + 60 + ], + "focus": 2 + }, + { + "x": -22.5, + "y": 20, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 3, + "opacity": 144, + "color": [ + 30, + 0, + 0, + 30 + ], + "priority": 1, + "focus": 2 + }, + { + "x": -22.5, + "y": 20, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 4, + "opacity": 144, + "priority": 1, + "focus": 2 + }, + { + "x": 35.5, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 12, + "opacity": 144, + "priority": 1, + "focus": 2 + }, + { + "x": 58, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 12, + "opacity": 144, + "priority": 1, + "focus": 2 + } + ], + [ + { + "x": -45, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "mirror": true, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "color": [ + 192, + 0, + 0, + 138 + ], + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": -45, + "y": -20, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 4, + "opacity": 144, + "color": [ + 150, + 0, + 0, + 150 + ], + "priority": 1, + "focus": 2 + }, + { + "x": -45, + "y": -20, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 5, + "opacity": 144, + "color": [ + 120, + 0, + 0, + 120 + ], + "priority": 1, + "focus": 2 + }, + { + "x": -45, + "y": -20, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 2, + "opacity": 144, + "color": [ + 90, + 0, + 0, + 90 + ], + "focus": 2 + }, + { + "x": -45, + "y": -20, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 1, + "opacity": 144, + "color": [ + 60, + 0, + 0, + 60 + ], + "focus": 2 + }, + { + "x": -45, + "y": -20, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 0, + "opacity": 144, + "color": [ + 30, + 0, + 0, + 30 + ], + "focus": 2 + }, + { + "x": -45, + "y": -20, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 3, + "opacity": 144, + "priority": 1, + "focus": 2 + }, + { + "x": -45, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 4, + "opacity": 144, + "color": [ + 150, + 0, + 0, + 150 + ], + "priority": 1, + "focus": 2 + }, + { + "x": -45, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 5, + "opacity": 144, + "color": [ + 120, + 0, + 0, + 120 + ], + "priority": 1, + "focus": 2 + }, + { + "x": -45, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 2, + "opacity": 144, + "color": [ + 90, + 0, + 0, + 90 + ], + "focus": 2 + }, + { + "x": -45, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 1, + "opacity": 144, + "color": [ + 60, + 0, + 0, + 60 + ], + "focus": 2 + }, + { + "x": -45, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 0, + "opacity": 144, + "color": [ + 30, + 0, + 0, + 30 + ], + "focus": 2 + }, + { + "x": -45, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 3, + "opacity": 144, + "priority": 1, + "focus": 2 + }, + { + "x": -45, + "y": 20, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 4, + "opacity": 144, + "color": [ + 150, + 0, + 0, + 150 + ], + "priority": 1, + "focus": 2 + }, + { + "x": -45, + "y": 20, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 5, + "opacity": 144, + "color": [ + 120, + 0, + 0, + 120 + ], + "priority": 1, + "focus": 2 + }, + { + "x": -45, + "y": 20, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 2, + "opacity": 144, + "color": [ + 90, + 0, + 0, + 90 + ], + "focus": 2 + }, + { + "x": -45, + "y": 20, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 1, + "opacity": 144, + "color": [ + 60, + 0, + 0, + 60 + ], + "focus": 2 + }, + { + "x": -45, + "y": 20, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 0, + "opacity": 144, + "color": [ + 30, + 0, + 0, + 30 + ], + "focus": 2 + }, + { + "x": -45, + "y": 20, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 3, + "opacity": 144, + "priority": 1, + "focus": 2 + }, + { + "x": 13, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 12, + "opacity": 144, + "priority": 1, + "focus": 2 + }, + { + "x": 35.5, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 12, + "opacity": 144, + "priority": 1, + "focus": 2 + }, + { + "x": 58, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 12, + "opacity": 144, + "priority": 1, + "focus": 2 + } + ], + [ + { + "x": -67.5, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "color": [ + 192, + 0, + 0, + 138 + ], + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": -67.5, + "y": -20, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 3, + "opacity": 144, + "color": [ + 150, + 0, + 0, + 150 + ], + "priority": 1, + "focus": 2 + }, + { + "x": -67.5, + "y": -20, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 4, + "opacity": 144, + "color": [ + 120, + 0, + 0, + 120 + ], + "priority": 1, + "focus": 2 + }, + { + "x": -67.5, + "y": -20, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 5, + "opacity": 144, + "color": [ + 90, + 0, + 0, + 90 + ], + "priority": 1, + "focus": 2 + }, + { + "x": -67.5, + "y": -20, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 2, + "opacity": 144, + "color": [ + 60, + 0, + 0, + 60 + ], + "focus": 2 + }, + { + "x": -67.5, + "y": -20, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 1, + "opacity": 144, + "color": [ + 30, + 0, + 0, + 30 + ], + "focus": 2 + }, + { + "x": -67.5, + "y": -20, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 0, + "opacity": 144, + "focus": 2 + }, + { + "x": -67.5, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 3, + "opacity": 144, + "color": [ + 150, + 0, + 0, + 150 + ], + "priority": 1, + "focus": 2 + }, + { + "x": -67.5, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 4, + "opacity": 144, + "color": [ + 120, + 0, + 0, + 120 + ], + "priority": 1, + "focus": 2 + }, + { + "x": -67.5, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 5, + "opacity": 144, + "color": [ + 90, + 0, + 0, + 90 + ], + "priority": 1, + "focus": 2 + }, + { + "x": -67.5, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 2, + "opacity": 144, + "color": [ + 60, + 0, + 0, + 60 + ], + "focus": 2 + }, + { + "x": -67.5, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 1, + "opacity": 144, + "color": [ + 30, + 0, + 0, + 30 + ], + "focus": 2 + }, + { + "x": -67.5, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 0, + "opacity": 144, + "focus": 2 + }, + { + "x": -67.5, + "y": 20, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 3, + "opacity": 144, + "color": [ + 150, + 0, + 0, + 150 + ], + "priority": 1, + "focus": 2 + }, + { + "x": -67.5, + "y": 20, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 4, + "opacity": 144, + "color": [ + 120, + 0, + 0, + 120 + ], + "priority": 1, + "focus": 2 + }, + { + "x": -67.5, + "y": 20, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 5, + "opacity": 144, + "color": [ + 90, + 0, + 0, + 90 + ], + "priority": 1, + "focus": 2 + }, + { + "x": -67.5, + "y": 20, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 2, + "opacity": 144, + "color": [ + 60, + 0, + 0, + 60 + ], + "focus": 2 + }, + { + "x": -67.5, + "y": 20, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 1, + "opacity": 144, + "color": [ + 30, + 0, + 0, + 30 + ], + "focus": 2 + }, + { + "x": -67.5, + "y": 20, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 0, + "opacity": 144, + "focus": 2 + }, + { + "x": -8.5, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 12, + "opacity": 144, + "priority": 1, + "focus": 2 + }, + { + "x": 13, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 12, + "opacity": 144, + "priority": 1, + "focus": 2 + }, + { + "x": 35.5, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 12, + "opacity": 144, + "priority": 1, + "focus": 2 + } + ], + [ + { + "x": -90, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "mirror": true, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "color": [ + 192, + 0, + 0, + 138 + ], + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": -90, + "y": -20, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 0, + "opacity": 144, + "color": [ + 150, + 0, + 0, + 150 + ], + "focus": 2 + }, + { + "x": -90, + "y": -20, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 3, + "opacity": 144, + "color": [ + 120, + 0, + 0, + 120 + ], + "priority": 1, + "focus": 2 + }, + { + "x": -90, + "y": -20, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 4, + "opacity": 144, + "color": [ + 90, + 0, + 0, + 90 + ], + "priority": 1, + "focus": 2 + }, + { + "x": -90, + "y": -20, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 5, + "opacity": 144, + "color": [ + 60, + 0, + 0, + 60 + ], + "priority": 1, + "focus": 2 + }, + { + "x": -90, + "y": -20, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 2, + "opacity": 144, + "color": [ + 30, + 0, + 0, + 30 + ], + "focus": 2 + }, + { + "x": -90, + "y": -20, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 1, + "opacity": 144, + "focus": 2 + }, + { + "x": -90, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 0, + "opacity": 144, + "color": [ + 150, + 0, + 0, + 150 + ], + "focus": 2 + }, + { + "x": -90, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 3, + "opacity": 144, + "color": [ + 120, + 0, + 0, + 120 + ], + "priority": 1, + "focus": 2 + }, + { + "x": -90, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 4, + "opacity": 144, + "color": [ + 90, + 0, + 0, + 90 + ], + "priority": 1, + "focus": 2 + }, + { + "x": -90, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 5, + "opacity": 144, + "color": [ + 60, + 0, + 0, + 60 + ], + "priority": 1, + "focus": 2 + }, + { + "x": -90, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 2, + "opacity": 144, + "color": [ + 30, + 0, + 0, + 30 + ], + "focus": 2 + }, + { + "x": -90, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 1, + "opacity": 144, + "focus": 2 + }, + { + "x": -90, + "y": 20, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 0, + "opacity": 144, + "color": [ + 150, + 0, + 0, + 150 + ], + "focus": 2 + }, + { + "x": -90, + "y": 20, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 3, + "opacity": 144, + "color": [ + 120, + 0, + 0, + 120 + ], + "priority": 1, + "focus": 2 + }, + { + "x": -90, + "y": 20, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 4, + "opacity": 144, + "color": [ + 90, + 0, + 0, + 90 + ], + "priority": 1, + "focus": 2 + }, + { + "x": -90, + "y": 20, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 5, + "opacity": 144, + "color": [ + 60, + 0, + 0, + 60 + ], + "priority": 1, + "focus": 2 + }, + { + "x": -90, + "y": 20, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 2, + "opacity": 144, + "color": [ + 30, + 0, + 0, + 30 + ], + "focus": 2 + }, + { + "x": -90, + "y": 20, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 1, + "opacity": 144, + "focus": 2 + }, + { + "x": -32, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 12, + "opacity": 144, + "priority": 1, + "focus": 2 + }, + { + "x": -8.5, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 12, + "opacity": 144, + "priority": 1, + "focus": 2 + }, + { + "x": 13, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 12, + "opacity": 144, + "priority": 1, + "focus": 2 + } + ], + [ + { + "x": -112, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "color": [ + 192, + 0, + 0, + 138 + ], + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": -112, + "y": -20, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 1, + "opacity": 144, + "color": [ + 150, + 0, + 0, + 150 + ], + "focus": 2 + }, + { + "x": -112, + "y": -20, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 0, + "opacity": 144, + "color": [ + 120, + 0, + 0, + 120 + ], + "focus": 2 + }, + { + "x": -112, + "y": -20, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 3, + "opacity": 144, + "color": [ + 90, + 0, + 0, + 90 + ], + "priority": 1, + "focus": 2 + }, + { + "x": -112, + "y": -20, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 4, + "opacity": 144, + "color": [ + 60, + 0, + 0, + 60 + ], + "priority": 1, + "focus": 2 + }, + { + "x": -112, + "y": -20, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 5, + "opacity": 144, + "color": [ + 30, + 0, + 0, + 30 + ], + "priority": 1, + "focus": 2 + }, + { + "x": -112, + "y": -20, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 2, + "opacity": 144, + "focus": 2 + }, + { + "x": -112, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 1, + "opacity": 144, + "color": [ + 150, + 0, + 0, + 150 + ], + "focus": 2 + }, + { + "x": -112, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 0, + "opacity": 144, + "color": [ + 120, + 0, + 0, + 120 + ], + "focus": 2 + }, + { + "x": -112, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 3, + "opacity": 144, + "color": [ + 90, + 0, + 0, + 90 + ], + "priority": 1, + "focus": 2 + }, + { + "x": -112, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 4, + "opacity": 144, + "color": [ + 60, + 0, + 0, + 60 + ], + "priority": 1, + "focus": 2 + }, + { + "x": -112, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 5, + "opacity": 144, + "color": [ + 30, + 0, + 0, + 30 + ], + "priority": 1, + "focus": 2 + }, + { + "x": -112, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 2, + "opacity": 144, + "focus": 2 + }, + { + "x": -112, + "y": 20, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 1, + "opacity": 144, + "color": [ + 150, + 0, + 0, + 150 + ], + "focus": 2 + }, + { + "x": -112, + "y": 20, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 0, + "opacity": 144, + "color": [ + 120, + 0, + 0, + 120 + ], + "focus": 2 + }, + { + "x": -112, + "y": 20, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 3, + "opacity": 144, + "color": [ + 90, + 0, + 0, + 90 + ], + "priority": 1, + "focus": 2 + }, + { + "x": -112, + "y": 20, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 4, + "opacity": 144, + "color": [ + 60, + 0, + 0, + 60 + ], + "priority": 1, + "focus": 2 + }, + { + "x": -112, + "y": 20, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 5, + "opacity": 144, + "color": [ + 30, + 0, + 0, + 30 + ], + "priority": 1, + "focus": 2 + }, + { + "x": -112, + "y": 20, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 2, + "opacity": 144, + "focus": 2 + }, + { + "x": -54, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 12, + "opacity": 144, + "priority": 1, + "focus": 2 + }, + { + "x": -32, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 12, + "opacity": 144, + "priority": 1, + "focus": 2 + }, + { + "x": -8.5, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 12, + "opacity": 144, + "priority": 1, + "focus": 2 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "color": [ + 192, + 0, + 0, + 138 + ], + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": -80, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 12, + "opacity": 144, + "priority": 1, + "focus": 2 + }, + { + "x": -54, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 12, + "opacity": 144, + "priority": 1, + "focus": 2 + }, + { + "x": -32, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 12, + "opacity": 144, + "priority": 1, + "focus": 2 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "color": [ + 192, + 0, + 0, + 138 + ], + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": -80, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 12, + "opacity": 144, + "priority": 1, + "focus": 2 + }, + { + "x": -54, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 12, + "opacity": 144, + "priority": 1, + "focus": 2 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "color": [ + 192, + 0, + 0, + 138 + ], + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": -107, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "mirror": true, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "color": [ + 192, + 0, + 0, + 138 + ], + "priority": 1, + "focus": 1 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": -107, + "y": -84, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 3, + "opacity": 144, + "color": [ + 150, + 0, + 0, + 150 + ], + "priority": 1, + "focus": 1 + }, + { + "x": -107, + "y": -84, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 4, + "opacity": 144, + "color": [ + 120, + 0, + 0, + 120 + ], + "priority": 1, + "focus": 1 + }, + { + "x": -107, + "y": -84, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 5, + "opacity": 144, + "color": [ + 90, + 0, + 0, + 90 + ], + "priority": 1, + "focus": 1 + }, + { + "x": -107, + "y": -84, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 2, + "opacity": 144, + "color": [ + 60, + 0, + 0, + 60 + ], + "focus": 1 + }, + { + "x": -107, + "y": -84, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 1, + "opacity": 144, + "color": [ + 30, + 0, + 0, + 30 + ], + "focus": 1 + }, + { + "x": -107, + "y": -84, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 0, + "opacity": 144, + "focus": 1 + }, + { + "x": -107, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 3, + "opacity": 144, + "color": [ + 150, + 0, + 0, + 150 + ], + "priority": 1, + "focus": 1 + }, + { + "x": -107, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 4, + "opacity": 144, + "color": [ + 120, + 0, + 0, + 120 + ], + "priority": 1, + "focus": 1 + }, + { + "x": -107, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 5, + "opacity": 144, + "color": [ + 90, + 0, + 0, + 90 + ], + "priority": 1, + "focus": 1 + }, + { + "x": -107, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 2, + "opacity": 144, + "color": [ + 60, + 0, + 0, + 60 + ], + "focus": 1 + }, + { + "x": -107, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 1, + "opacity": 144, + "color": [ + 30, + 0, + 0, + 30 + ], + "focus": 1 + }, + { + "x": -107, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 0, + "opacity": 144, + "focus": 1 + }, + { + "x": -107, + "y": -44, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 3, + "opacity": 144, + "color": [ + 150, + 0, + 0, + 150 + ], + "priority": 1, + "focus": 1 + }, + { + "x": -107, + "y": -44, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 4, + "opacity": 144, + "color": [ + 120, + 0, + 0, + 120 + ], + "priority": 1, + "focus": 1 + }, + { + "x": -107, + "y": -44, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 5, + "opacity": 144, + "color": [ + 90, + 0, + 0, + 90 + ], + "priority": 1, + "focus": 1 + }, + { + "x": -107, + "y": -44, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 2, + "opacity": 144, + "color": [ + 60, + 0, + 0, + 60 + ], + "focus": 1 + }, + { + "x": -107, + "y": -44, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 1, + "opacity": 144, + "color": [ + 30, + 0, + 0, + 30 + ], + "focus": 1 + }, + { + "x": -107, + "y": -44, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 0, + "opacity": 144, + "focus": 1 + } + ], + [ + { + "x": -84, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "color": [ + 192, + 0, + 0, + 138 + ], + "priority": 1, + "focus": 1 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": -83.5, + "y": -84, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 0, + "opacity": 144, + "color": [ + 150, + 0, + 0, + 150 + ], + "focus": 1 + }, + { + "x": -83.5, + "y": -84, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 3, + "opacity": 144, + "color": [ + 120, + 0, + 0, + 120 + ], + "priority": 1, + "focus": 1 + }, + { + "x": -83.5, + "y": -84, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 4, + "opacity": 144, + "color": [ + 90, + 0, + 0, + 90 + ], + "priority": 1, + "focus": 1 + }, + { + "x": -83.5, + "y": -84, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 5, + "opacity": 144, + "color": [ + 60, + 0, + 0, + 60 + ], + "priority": 1, + "focus": 1 + }, + { + "x": -83.5, + "y": -84, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 2, + "opacity": 144, + "color": [ + 30, + 0, + 0, + 30 + ], + "focus": 1 + }, + { + "x": -83.5, + "y": -84, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 1, + "opacity": 144, + "focus": 1 + }, + { + "x": -83.5, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 0, + "opacity": 144, + "color": [ + 150, + 0, + 0, + 150 + ], + "focus": 1 + }, + { + "x": -83.5, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 3, + "opacity": 144, + "color": [ + 120, + 0, + 0, + 120 + ], + "priority": 1, + "focus": 1 + }, + { + "x": -83.5, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 4, + "opacity": 144, + "color": [ + 90, + 0, + 0, + 90 + ], + "priority": 1, + "focus": 1 + }, + { + "x": -83.5, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 5, + "opacity": 144, + "color": [ + 60, + 0, + 0, + 60 + ], + "priority": 1, + "focus": 1 + }, + { + "x": -83.5, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 2, + "opacity": 144, + "color": [ + 30, + 0, + 0, + 30 + ], + "focus": 1 + }, + { + "x": -83.5, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 1, + "opacity": 144, + "focus": 1 + }, + { + "x": -83.5, + "y": -44, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 0, + "opacity": 144, + "color": [ + 150, + 0, + 0, + 150 + ], + "focus": 1 + }, + { + "x": -83.5, + "y": -44, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 3, + "opacity": 144, + "color": [ + 120, + 0, + 0, + 120 + ], + "priority": 1, + "focus": 1 + }, + { + "x": -83.5, + "y": -44, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 4, + "opacity": 144, + "color": [ + 90, + 0, + 0, + 90 + ], + "priority": 1, + "focus": 1 + }, + { + "x": -83.5, + "y": -44, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 5, + "opacity": 144, + "color": [ + 60, + 0, + 0, + 60 + ], + "priority": 1, + "focus": 1 + }, + { + "x": -83.5, + "y": -44, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 2, + "opacity": 144, + "color": [ + 30, + 0, + 0, + 30 + ], + "focus": 1 + }, + { + "x": -83.5, + "y": -44, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 1, + "opacity": 144, + "focus": 1 + } + ], + [ + { + "x": -60.5, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "mirror": true, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "color": [ + 192, + 0, + 0, + 138 + ], + "priority": 1, + "focus": 1 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": -59.5, + "y": -84, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 1, + "opacity": 144, + "color": [ + 150, + 0, + 0, + 150 + ], + "focus": 1 + }, + { + "x": -59.5, + "y": -84, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 0, + "opacity": 144, + "color": [ + 120, + 0, + 0, + 120 + ], + "focus": 1 + }, + { + "x": -59.5, + "y": -84, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 3, + "opacity": 144, + "color": [ + 90, + 0, + 0, + 90 + ], + "priority": 1, + "focus": 1 + }, + { + "x": -59.5, + "y": -84, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 4, + "opacity": 144, + "color": [ + 60, + 0, + 0, + 60 + ], + "priority": 1, + "focus": 1 + }, + { + "x": -59.5, + "y": -84, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 5, + "opacity": 144, + "color": [ + 30, + 0, + 0, + 30 + ], + "priority": 1, + "focus": 1 + }, + { + "x": -59.5, + "y": -84, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 2, + "opacity": 144, + "focus": 1 + }, + { + "x": -59.5, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 1, + "opacity": 144, + "color": [ + 150, + 0, + 0, + 150 + ], + "focus": 1 + }, + { + "x": -59.5, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 0, + "opacity": 144, + "color": [ + 120, + 0, + 0, + 120 + ], + "focus": 1 + }, + { + "x": -59.5, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 3, + "opacity": 144, + "color": [ + 90, + 0, + 0, + 90 + ], + "priority": 1, + "focus": 1 + }, + { + "x": -59.5, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 4, + "opacity": 144, + "color": [ + 60, + 0, + 0, + 60 + ], + "priority": 1, + "focus": 1 + }, + { + "x": -59.5, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 5, + "opacity": 144, + "color": [ + 30, + 0, + 0, + 30 + ], + "priority": 1, + "focus": 1 + }, + { + "x": -59.5, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 2, + "opacity": 144, + "focus": 1 + }, + { + "x": -59.5, + "y": -44, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 1, + "opacity": 144, + "color": [ + 150, + 0, + 0, + 150 + ], + "focus": 1 + }, + { + "x": -59.5, + "y": -44, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 0, + "opacity": 144, + "color": [ + 120, + 0, + 0, + 120 + ], + "focus": 1 + }, + { + "x": -59.5, + "y": -44, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 3, + "opacity": 144, + "color": [ + 90, + 0, + 0, + 90 + ], + "priority": 1, + "focus": 1 + }, + { + "x": -59.5, + "y": -44, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 4, + "opacity": 144, + "color": [ + 60, + 0, + 0, + 60 + ], + "priority": 1, + "focus": 1 + }, + { + "x": -59.5, + "y": -44, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 5, + "opacity": 144, + "color": [ + 30, + 0, + 0, + 30 + ], + "priority": 1, + "focus": 1 + }, + { + "x": -59.5, + "y": -44, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 2, + "opacity": 144, + "focus": 1 + } + ], + [ + { + "x": -35.5, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "color": [ + 192, + 0, + 0, + 138 + ], + "priority": 1, + "focus": 1 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": -35.5, + "y": -84, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 2, + "opacity": 144, + "color": [ + 150, + 0, + 0, + 150 + ], + "focus": 1 + }, + { + "x": -35.5, + "y": -84, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 1, + "opacity": 144, + "color": [ + 120, + 0, + 0, + 120 + ], + "focus": 1 + }, + { + "x": -35.5, + "y": -84, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 0, + "opacity": 144, + "color": [ + 90, + 0, + 0, + 90 + ], + "focus": 1 + }, + { + "x": -35.5, + "y": -84, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 3, + "opacity": 144, + "color": [ + 60, + 0, + 0, + 60 + ], + "priority": 1, + "focus": 1 + }, + { + "x": -35.5, + "y": -84, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 4, + "opacity": 144, + "color": [ + 30, + 0, + 0, + 30 + ], + "priority": 1, + "focus": 1 + }, + { + "x": -35.5, + "y": -84, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 5, + "opacity": 144, + "priority": 1, + "focus": 1 + }, + { + "x": -35.5, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 2, + "opacity": 144, + "color": [ + 150, + 0, + 0, + 150 + ], + "focus": 1 + }, + { + "x": -35.5, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 1, + "opacity": 144, + "color": [ + 120, + 0, + 0, + 120 + ], + "focus": 1 + }, + { + "x": -35.5, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 0, + "opacity": 144, + "color": [ + 90, + 0, + 0, + 90 + ], + "focus": 1 + }, + { + "x": -35.5, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 3, + "opacity": 144, + "color": [ + 60, + 0, + 0, + 60 + ], + "priority": 1, + "focus": 1 + }, + { + "x": -35.5, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 4, + "opacity": 144, + "color": [ + 30, + 0, + 0, + 30 + ], + "priority": 1, + "focus": 1 + }, + { + "x": -35.5, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 5, + "opacity": 144, + "priority": 1, + "focus": 1 + }, + { + "x": -35.5, + "y": -44, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 2, + "opacity": 144, + "color": [ + 150, + 0, + 0, + 150 + ], + "focus": 1 + }, + { + "x": -35.5, + "y": -44, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 1, + "opacity": 144, + "color": [ + 120, + 0, + 0, + 120 + ], + "focus": 1 + }, + { + "x": -35.5, + "y": -44, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 0, + "opacity": 144, + "color": [ + 90, + 0, + 0, + 90 + ], + "focus": 1 + }, + { + "x": -35.5, + "y": -44, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 3, + "opacity": 144, + "color": [ + 60, + 0, + 0, + 60 + ], + "priority": 1, + "focus": 1 + }, + { + "x": -35.5, + "y": -44, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 4, + "opacity": 144, + "color": [ + 30, + 0, + 0, + 30 + ], + "priority": 1, + "focus": 1 + }, + { + "x": -35.5, + "y": -44, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 5, + "opacity": 144, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": -11.5, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "mirror": true, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "color": [ + 192, + 0, + 0, + 138 + ], + "priority": 1, + "focus": 1 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": -11.5, + "y": -84, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 5, + "opacity": 144, + "color": [ + 150, + 0, + 0, + 150 + ], + "priority": 1, + "focus": 1 + }, + { + "x": -11.5, + "y": -84, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 2, + "opacity": 144, + "color": [ + 120, + 0, + 0, + 120 + ], + "focus": 1 + }, + { + "x": -11.5, + "y": -84, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 1, + "opacity": 144, + "color": [ + 90, + 0, + 0, + 90 + ], + "focus": 1 + }, + { + "x": -11.5, + "y": -84, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 0, + "opacity": 144, + "color": [ + 60, + 0, + 0, + 60 + ], + "focus": 1 + }, + { + "x": -11.5, + "y": -84, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 3, + "opacity": 144, + "color": [ + 30, + 0, + 0, + 30 + ], + "priority": 1, + "focus": 1 + }, + { + "x": -11.5, + "y": -84, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 4, + "opacity": 144, + "priority": 1, + "focus": 1 + }, + { + "x": -11.5, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 5, + "opacity": 144, + "color": [ + 150, + 0, + 0, + 150 + ], + "priority": 1, + "focus": 1 + }, + { + "x": -11.5, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 2, + "opacity": 144, + "color": [ + 120, + 0, + 0, + 120 + ], + "focus": 1 + }, + { + "x": -11.5, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 1, + "opacity": 144, + "color": [ + 90, + 0, + 0, + 90 + ], + "focus": 1 + }, + { + "x": -11.5, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 0, + "opacity": 144, + "color": [ + 60, + 0, + 0, + 60 + ], + "focus": 1 + }, + { + "x": -11.5, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 3, + "opacity": 144, + "color": [ + 30, + 0, + 0, + 30 + ], + "priority": 1, + "focus": 1 + }, + { + "x": -11.5, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 4, + "opacity": 144, + "priority": 1, + "focus": 1 + }, + { + "x": -11.5, + "y": -44, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 5, + "opacity": 144, + "color": [ + 150, + 0, + 0, + 150 + ], + "priority": 1, + "focus": 1 + }, + { + "x": -11.5, + "y": -44, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 2, + "opacity": 144, + "color": [ + 120, + 0, + 0, + 120 + ], + "focus": 1 + }, + { + "x": -11.5, + "y": -44, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 1, + "opacity": 144, + "color": [ + 90, + 0, + 0, + 90 + ], + "focus": 1 + }, + { + "x": -11.5, + "y": -44, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 0, + "opacity": 144, + "color": [ + 60, + 0, + 0, + 60 + ], + "focus": 1 + }, + { + "x": -11.5, + "y": -44, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 3, + "opacity": 144, + "color": [ + 30, + 0, + 0, + 30 + ], + "priority": 1, + "focus": 1 + }, + { + "x": -11.5, + "y": -44, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 4, + "opacity": 144, + "priority": 1, + "focus": 1 + }, + { + "x": -67.5, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 12, + "opacity": 144, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 12.5, + "y": -63.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "color": [ + 192, + 0, + 0, + 138 + ], + "priority": 1, + "focus": 1 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 12.5, + "y": -84, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 4, + "opacity": 144, + "color": [ + 150, + 0, + 0, + 150 + ], + "priority": 1, + "focus": 1 + }, + { + "x": 12.5, + "y": -84, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 5, + "opacity": 144, + "color": [ + 120, + 0, + 0, + 120 + ], + "priority": 1, + "focus": 1 + }, + { + "x": 12.5, + "y": -84, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 2, + "opacity": 144, + "color": [ + 90, + 0, + 0, + 90 + ], + "focus": 1 + }, + { + "x": 12.5, + "y": -84, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 1, + "opacity": 144, + "color": [ + 60, + 0, + 0, + 60 + ], + "focus": 1 + }, + { + "x": 12.5, + "y": -84, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 0, + "opacity": 144, + "color": [ + 30, + 0, + 0, + 30 + ], + "focus": 1 + }, + { + "x": 12.5, + "y": -84, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 3, + "opacity": 144, + "priority": 1, + "focus": 1 + }, + { + "x": 12.5, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 4, + "opacity": 144, + "color": [ + 150, + 0, + 0, + 150 + ], + "priority": 1, + "focus": 1 + }, + { + "x": 12.5, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 5, + "opacity": 144, + "color": [ + 120, + 0, + 0, + 120 + ], + "priority": 1, + "focus": 1 + }, + { + "x": 12.5, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 2, + "opacity": 144, + "color": [ + 90, + 0, + 0, + 90 + ], + "focus": 1 + }, + { + "x": 12.5, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 1, + "opacity": 144, + "color": [ + 60, + 0, + 0, + 60 + ], + "focus": 1 + }, + { + "x": 12.5, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 0, + "opacity": 144, + "color": [ + 30, + 0, + 0, + 30 + ], + "focus": 1 + }, + { + "x": 12.5, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 3, + "opacity": 144, + "priority": 1, + "focus": 1 + }, + { + "x": 12.5, + "y": -44, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 4, + "opacity": 144, + "color": [ + 150, + 0, + 0, + 150 + ], + "priority": 1, + "focus": 1 + }, + { + "x": 12.5, + "y": -44, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 5, + "opacity": 144, + "color": [ + 120, + 0, + 0, + 120 + ], + "priority": 1, + "focus": 1 + }, + { + "x": 12.5, + "y": -44, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 2, + "opacity": 144, + "color": [ + 90, + 0, + 0, + 90 + ], + "focus": 1 + }, + { + "x": 12.5, + "y": -44, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 1, + "opacity": 144, + "color": [ + 60, + 0, + 0, + 60 + ], + "focus": 1 + }, + { + "x": 12.5, + "y": -44, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 0, + "opacity": 144, + "color": [ + 30, + 0, + 0, + 30 + ], + "focus": 1 + }, + { + "x": 12.5, + "y": -44, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 3, + "opacity": 144, + "priority": 1, + "focus": 1 + }, + { + "x": -45, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 12, + "opacity": 144, + "priority": 1, + "focus": 1 + }, + { + "x": -67.5, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 12, + "opacity": 144, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 36.5, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "mirror": true, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "color": [ + 192, + 0, + 0, + 138 + ], + "priority": 1, + "focus": 1 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 36.5, + "y": -84, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 3, + "opacity": 144, + "color": [ + 150, + 0, + 0, + 150 + ], + "priority": 1, + "focus": 1 + }, + { + "x": 36.5, + "y": -84, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 4, + "opacity": 144, + "color": [ + 120, + 0, + 0, + 120 + ], + "priority": 1, + "focus": 1 + }, + { + "x": 36.5, + "y": -84, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 5, + "opacity": 144, + "color": [ + 90, + 0, + 0, + 90 + ], + "priority": 1, + "focus": 1 + }, + { + "x": 36.5, + "y": -84, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 2, + "opacity": 144, + "color": [ + 60, + 0, + 0, + 60 + ], + "focus": 1 + }, + { + "x": 36.5, + "y": -84, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 1, + "opacity": 144, + "color": [ + 30, + 0, + 0, + 30 + ], + "focus": 1 + }, + { + "x": 36.5, + "y": -84, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 0, + "opacity": 144, + "focus": 1 + }, + { + "x": 36.5, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 3, + "opacity": 144, + "color": [ + 150, + 0, + 0, + 150 + ], + "priority": 1, + "focus": 1 + }, + { + "x": 36.5, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 4, + "opacity": 144, + "color": [ + 120, + 0, + 0, + 120 + ], + "priority": 1, + "focus": 1 + }, + { + "x": 36.5, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 5, + "opacity": 144, + "color": [ + 90, + 0, + 0, + 90 + ], + "priority": 1, + "focus": 1 + }, + { + "x": 36.5, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 2, + "opacity": 144, + "color": [ + 60, + 0, + 0, + 60 + ], + "focus": 1 + }, + { + "x": 36.5, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 1, + "opacity": 144, + "color": [ + 30, + 0, + 0, + 30 + ], + "focus": 1 + }, + { + "x": 36.5, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 0, + "opacity": 144, + "focus": 1 + }, + { + "x": 36.5, + "y": -44, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 3, + "opacity": 144, + "color": [ + 150, + 0, + 0, + 150 + ], + "priority": 1, + "focus": 1 + }, + { + "x": 36.5, + "y": -44, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 4, + "opacity": 144, + "color": [ + 120, + 0, + 0, + 120 + ], + "priority": 1, + "focus": 1 + }, + { + "x": 36.5, + "y": -44, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 5, + "opacity": 144, + "color": [ + 90, + 0, + 0, + 90 + ], + "priority": 1, + "focus": 1 + }, + { + "x": 36.5, + "y": -44, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 2, + "opacity": 144, + "color": [ + 60, + 0, + 0, + 60 + ], + "focus": 1 + }, + { + "x": 36.5, + "y": -44, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 1, + "opacity": 144, + "color": [ + 30, + 0, + 0, + 30 + ], + "focus": 1 + }, + { + "x": 36.5, + "y": -44, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 0, + "opacity": 144, + "focus": 1 + }, + { + "x": -20, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 12, + "opacity": 144, + "priority": 1, + "focus": 1 + }, + { + "x": -45, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 12, + "opacity": 144, + "priority": 1, + "focus": 1 + }, + { + "x": -67.5, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 12, + "opacity": 144, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 60, + "y": -64.5, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "color": [ + 192, + 0, + 0, + 138 + ], + "priority": 1, + "focus": 1 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 60.5, + "y": -84, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 0, + "opacity": 144, + "color": [ + 150, + 0, + 0, + 150 + ], + "focus": 1 + }, + { + "x": 60.5, + "y": -84, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 3, + "opacity": 144, + "color": [ + 120, + 0, + 0, + 120 + ], + "priority": 1, + "focus": 1 + }, + { + "x": 60.5, + "y": -84, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 4, + "opacity": 144, + "color": [ + 90, + 0, + 0, + 90 + ], + "priority": 1, + "focus": 1 + }, + { + "x": 60.5, + "y": -84, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 5, + "opacity": 144, + "color": [ + 60, + 0, + 0, + 60 + ], + "priority": 1, + "focus": 1 + }, + { + "x": 60.5, + "y": -84, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 2, + "opacity": 144, + "color": [ + 30, + 0, + 0, + 30 + ], + "focus": 1 + }, + { + "x": 60.5, + "y": -84, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 1, + "opacity": 144, + "focus": 1 + }, + { + "x": 60.5, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 0, + "opacity": 144, + "color": [ + 150, + 0, + 0, + 150 + ], + "focus": 1 + }, + { + "x": 60.5, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 3, + "opacity": 144, + "color": [ + 120, + 0, + 0, + 120 + ], + "priority": 1, + "focus": 1 + }, + { + "x": 60.5, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 4, + "opacity": 144, + "color": [ + 90, + 0, + 0, + 90 + ], + "priority": 1, + "focus": 1 + }, + { + "x": 60.5, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 5, + "opacity": 144, + "color": [ + 60, + 0, + 0, + 60 + ], + "priority": 1, + "focus": 1 + }, + { + "x": 60.5, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 2, + "opacity": 144, + "color": [ + 30, + 0, + 0, + 30 + ], + "focus": 1 + }, + { + "x": 60.5, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 1, + "opacity": 144, + "focus": 1 + }, + { + "x": 60.5, + "y": -44, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 0, + "opacity": 144, + "color": [ + 150, + 0, + 0, + 150 + ], + "focus": 1 + }, + { + "x": 60.5, + "y": -44, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 3, + "opacity": 144, + "color": [ + 120, + 0, + 0, + 120 + ], + "priority": 1, + "focus": 1 + }, + { + "x": 60.5, + "y": -44, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 4, + "opacity": 144, + "color": [ + 90, + 0, + 0, + 90 + ], + "priority": 1, + "focus": 1 + }, + { + "x": 60.5, + "y": -44, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 5, + "opacity": 144, + "color": [ + 60, + 0, + 0, + 60 + ], + "priority": 1, + "focus": 1 + }, + { + "x": 60.5, + "y": -44, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 2, + "opacity": 144, + "color": [ + 30, + 0, + 0, + 30 + ], + "focus": 1 + }, + { + "x": 60.5, + "y": -44, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 1, + "opacity": 144, + "focus": 1 + }, + { + "x": 4, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 12, + "opacity": 144, + "priority": 1, + "focus": 1 + }, + { + "x": -20, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 12, + "opacity": 144, + "priority": 1, + "focus": 1 + }, + { + "x": -45, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 12, + "opacity": 144, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 84, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "mirror": true, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "color": [ + 192, + 0, + 0, + 138 + ], + "priority": 1, + "focus": 1 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 84, + "y": -84, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 1, + "opacity": 144, + "color": [ + 150, + 0, + 0, + 150 + ], + "focus": 1 + }, + { + "x": 84, + "y": -84, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 0, + "opacity": 144, + "color": [ + 120, + 0, + 0, + 120 + ], + "focus": 1 + }, + { + "x": 84, + "y": -84, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 3, + "opacity": 144, + "color": [ + 90, + 0, + 0, + 90 + ], + "priority": 1, + "focus": 1 + }, + { + "x": 84, + "y": -84, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 4, + "opacity": 144, + "color": [ + 60, + 0, + 0, + 60 + ], + "priority": 1, + "focus": 1 + }, + { + "x": 84, + "y": -84, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 5, + "opacity": 144, + "color": [ + 30, + 0, + 0, + 30 + ], + "priority": 1, + "focus": 1 + }, + { + "x": 84, + "y": -84, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 2, + "opacity": 144, + "focus": 1 + }, + { + "x": 84, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 1, + "opacity": 144, + "color": [ + 150, + 0, + 0, + 150 + ], + "focus": 1 + }, + { + "x": 84, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 0, + "opacity": 144, + "color": [ + 120, + 0, + 0, + 120 + ], + "focus": 1 + }, + { + "x": 84, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 3, + "opacity": 144, + "color": [ + 90, + 0, + 0, + 90 + ], + "priority": 1, + "focus": 1 + }, + { + "x": 84, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 4, + "opacity": 144, + "color": [ + 60, + 0, + 0, + 60 + ], + "priority": 1, + "focus": 1 + }, + { + "x": 84, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 5, + "opacity": 144, + "color": [ + 30, + 0, + 0, + 30 + ], + "priority": 1, + "focus": 1 + }, + { + "x": 84, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 2, + "opacity": 144, + "focus": 1 + }, + { + "x": 84, + "y": -44, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 1, + "opacity": 144, + "color": [ + 150, + 0, + 0, + 150 + ], + "focus": 1 + }, + { + "x": 84, + "y": -44, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 0, + "opacity": 144, + "color": [ + 120, + 0, + 0, + 120 + ], + "focus": 1 + }, + { + "x": 84, + "y": -44, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 3, + "opacity": 144, + "color": [ + 90, + 0, + 0, + 90 + ], + "priority": 1, + "focus": 1 + }, + { + "x": 84, + "y": -44, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 4, + "opacity": 144, + "color": [ + 60, + 0, + 0, + 60 + ], + "priority": 1, + "focus": 1 + }, + { + "x": 84, + "y": -44, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 5, + "opacity": 144, + "color": [ + 30, + 0, + 0, + 30 + ], + "priority": 1, + "focus": 1 + }, + { + "x": 84, + "y": -44, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 2, + "opacity": 144, + "focus": 1 + }, + { + "x": 27.5, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 12, + "opacity": 144, + "priority": 1, + "focus": 1 + }, + { + "x": 4, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 12, + "opacity": 144, + "priority": 1, + "focus": 1 + }, + { + "x": -20, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 12, + "opacity": 144, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 108, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "color": [ + 192, + 0, + 0, + 138 + ], + "priority": 1, + "focus": 1 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 108, + "y": -84, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 2, + "opacity": 144, + "color": [ + 150, + 0, + 0, + 150 + ], + "focus": 1 + }, + { + "x": 108, + "y": -84, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 1, + "opacity": 144, + "color": [ + 120, + 0, + 0, + 120 + ], + "focus": 1 + }, + { + "x": 108, + "y": -84, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 0, + "opacity": 144, + "color": [ + 90, + 0, + 0, + 90 + ], + "focus": 1 + }, + { + "x": 108, + "y": -84, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 3, + "opacity": 144, + "color": [ + 60, + 0, + 0, + 60 + ], + "priority": 1, + "focus": 1 + }, + { + "x": 108, + "y": -84, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 4, + "opacity": 144, + "color": [ + 30, + 0, + 0, + 30 + ], + "priority": 1, + "focus": 1 + }, + { + "x": 108, + "y": -84, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 5, + "opacity": 144, + "priority": 1, + "focus": 1 + }, + { + "x": 108, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 2, + "opacity": 144, + "color": [ + 150, + 0, + 0, + 150 + ], + "focus": 1 + }, + { + "x": 108, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 1, + "opacity": 144, + "color": [ + 120, + 0, + 0, + 120 + ], + "focus": 1 + }, + { + "x": 108, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 0, + "opacity": 144, + "color": [ + 90, + 0, + 0, + 90 + ], + "focus": 1 + }, + { + "x": 108, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 3, + "opacity": 144, + "color": [ + 60, + 0, + 0, + 60 + ], + "priority": 1, + "focus": 1 + }, + { + "x": 108, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 4, + "opacity": 144, + "color": [ + 30, + 0, + 0, + 30 + ], + "priority": 1, + "focus": 1 + }, + { + "x": 108, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 5, + "opacity": 144, + "priority": 1, + "focus": 1 + }, + { + "x": 108, + "y": -44, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 2, + "opacity": 144, + "color": [ + 150, + 0, + 0, + 150 + ], + "focus": 1 + }, + { + "x": 108, + "y": -44, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 1, + "opacity": 144, + "color": [ + 120, + 0, + 0, + 120 + ], + "focus": 1 + }, + { + "x": 108, + "y": -44, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 0, + "opacity": 144, + "color": [ + 90, + 0, + 0, + 90 + ], + "focus": 1 + }, + { + "x": 108, + "y": -44, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 3, + "opacity": 144, + "color": [ + 60, + 0, + 0, + 60 + ], + "priority": 1, + "focus": 1 + }, + { + "x": 108, + "y": -44, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 4, + "opacity": 144, + "color": [ + 30, + 0, + 0, + 30 + ], + "priority": 1, + "focus": 1 + }, + { + "x": 108, + "y": -44, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 5, + "opacity": 144, + "priority": 1, + "focus": 1 + }, + { + "x": 51.5, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 12, + "opacity": 144, + "priority": 1, + "focus": 1 + }, + { + "x": 27.5, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 12, + "opacity": 144, + "priority": 1, + "focus": 1 + }, + { + "x": 4, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 12, + "opacity": 144, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 132.5, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "mirror": true, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "color": [ + 192, + 0, + 0, + 138 + ], + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 132, + "y": -84, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 2, + "opacity": 144, + "color": [ + 120, + 0, + 0, + 120 + ], + "focus": 1 + }, + { + "x": 132, + "y": -84, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 1, + "opacity": 144, + "color": [ + 90, + 0, + 0, + 90 + ], + "focus": 1 + }, + { + "x": 132, + "y": -84, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 0, + "opacity": 144, + "color": [ + 60, + 0, + 0, + 60 + ], + "focus": 1 + }, + { + "x": 132, + "y": -84, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 3, + "opacity": 144, + "color": [ + 30, + 0, + 0, + 30 + ], + "priority": 1, + "focus": 1 + }, + { + "x": 132, + "y": -84, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 4, + "opacity": 144, + "priority": 1, + "focus": 1 + }, + { + "x": 132, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 5, + "opacity": 144, + "color": [ + 150, + 0, + 0, + 150 + ], + "priority": 1, + "focus": 1 + }, + { + "x": 132, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 2, + "opacity": 144, + "color": [ + 120, + 0, + 0, + 120 + ], + "focus": 1 + }, + { + "x": 132, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 1, + "opacity": 144, + "color": [ + 90, + 0, + 0, + 90 + ], + "focus": 1 + }, + { + "x": 132, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 0, + "opacity": 144, + "color": [ + 60, + 0, + 0, + 60 + ], + "focus": 1 + }, + { + "x": 132, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 3, + "opacity": 144, + "color": [ + 30, + 0, + 0, + 30 + ], + "priority": 1, + "focus": 1 + }, + { + "x": 132, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 4, + "opacity": 144, + "priority": 1, + "focus": 1 + }, + { + "x": 132, + "y": -44, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 5, + "opacity": 144, + "color": [ + 150, + 0, + 0, + 150 + ], + "priority": 1, + "focus": 1 + }, + { + "x": 132, + "y": -44, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 2, + "opacity": 144, + "color": [ + 120, + 0, + 0, + 120 + ], + "focus": 1 + }, + { + "x": 132, + "y": -44, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 1, + "opacity": 144, + "color": [ + 90, + 0, + 0, + 90 + ], + "focus": 1 + }, + { + "x": 132, + "y": -44, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 0, + "opacity": 144, + "color": [ + 60, + 0, + 0, + 60 + ], + "focus": 1 + }, + { + "x": 132, + "y": -44, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 3, + "opacity": 144, + "color": [ + 30, + 0, + 0, + 30 + ], + "priority": 1, + "focus": 1 + }, + { + "x": 132, + "y": -44, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 4, + "opacity": 144, + "priority": 1, + "focus": 1 + }, + { + "x": 76, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 12, + "opacity": 144, + "priority": 1, + "focus": 1 + }, + { + "x": 51.5, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 12, + "opacity": 144, + "priority": 1, + "focus": 1 + }, + { + "x": 27.5, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 12, + "opacity": 144, + "priority": 1, + "focus": 1 + }, + { + "x": 132, + "y": -84, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 5, + "opacity": 144, + "color": [ + 150, + 0, + 0, + 150 + ], + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 155, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "color": [ + 192, + 0, + 0, + 138 + ], + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 156, + "y": -84, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 5, + "opacity": 144, + "color": [ + 120, + 0, + 0, + 120 + ], + "priority": 1, + "focus": 1 + }, + { + "x": 156, + "y": -84, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 2, + "opacity": 144, + "color": [ + 90, + 0, + 0, + 90 + ], + "focus": 1 + }, + { + "x": 156, + "y": -84, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 1, + "opacity": 144, + "color": [ + 60, + 0, + 0, + 60 + ], + "focus": 1 + }, + { + "x": 156, + "y": -84, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 0, + "opacity": 144, + "color": [ + 30, + 0, + 0, + 30 + ], + "focus": 1 + }, + { + "x": 156, + "y": -84, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 3, + "opacity": 144, + "priority": 1, + "focus": 1 + }, + { + "x": 156, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 4, + "opacity": 144, + "color": [ + 150, + 0, + 0, + 150 + ], + "priority": 1, + "focus": 1 + }, + { + "x": 156, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 5, + "opacity": 144, + "color": [ + 120, + 0, + 0, + 120 + ], + "priority": 1, + "focus": 1 + }, + { + "x": 156, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 2, + "opacity": 144, + "color": [ + 90, + 0, + 0, + 90 + ], + "focus": 1 + }, + { + "x": 156, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 1, + "opacity": 144, + "color": [ + 60, + 0, + 0, + 60 + ], + "focus": 1 + }, + { + "x": 156, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 0, + "opacity": 144, + "color": [ + 30, + 0, + 0, + 30 + ], + "focus": 1 + }, + { + "x": 156, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 3, + "opacity": 144, + "priority": 1, + "focus": 1 + }, + { + "x": 156, + "y": -44, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 4, + "opacity": 144, + "color": [ + 150, + 0, + 0, + 150 + ], + "priority": 1, + "focus": 1 + }, + { + "x": 156, + "y": -44, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 5, + "opacity": 144, + "color": [ + 120, + 0, + 0, + 120 + ], + "priority": 1, + "focus": 1 + }, + { + "x": 156, + "y": -44, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 2, + "opacity": 144, + "color": [ + 90, + 0, + 0, + 90 + ], + "focus": 1 + }, + { + "x": 156, + "y": -44, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 1, + "opacity": 144, + "color": [ + 60, + 0, + 0, + 60 + ], + "focus": 1 + }, + { + "x": 156, + "y": -44, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 0, + "opacity": 144, + "color": [ + 30, + 0, + 0, + 30 + ], + "focus": 1 + }, + { + "x": 156, + "y": -44, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 3, + "opacity": 144, + "priority": 1, + "focus": 1 + }, + { + "x": 99.5, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 12, + "opacity": 144, + "priority": 1, + "focus": 1 + }, + { + "x": 76, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 12, + "opacity": 144, + "priority": 1, + "focus": 1 + }, + { + "x": 51.5, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 12, + "opacity": 144, + "priority": 1, + "focus": 1 + }, + { + "x": 156, + "y": -84, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 4, + "opacity": 144, + "color": [ + 150, + 0, + 0, + 150 + ], + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 178, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "mirror": true, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "color": [ + 192, + 0, + 0, + 138 + ], + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 180, + "y": -84, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 4, + "opacity": 144, + "color": [ + 120, + 0, + 0, + 120 + ], + "priority": 1, + "focus": 1 + }, + { + "x": 180, + "y": -84, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 5, + "opacity": 144, + "color": [ + 90, + 0, + 0, + 90 + ], + "priority": 1, + "focus": 1 + }, + { + "x": 180, + "y": -84, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 2, + "opacity": 144, + "color": [ + 60, + 0, + 0, + 60 + ], + "focus": 1 + }, + { + "x": 180, + "y": -84, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 1, + "opacity": 144, + "color": [ + 30, + 0, + 0, + 30 + ], + "focus": 1 + }, + { + "x": 180, + "y": -84, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 0, + "opacity": 144, + "focus": 1 + }, + { + "x": 180, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 3, + "opacity": 144, + "color": [ + 150, + 0, + 0, + 150 + ], + "priority": 1, + "focus": 1 + }, + { + "x": 180, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 4, + "opacity": 144, + "color": [ + 120, + 0, + 0, + 120 + ], + "priority": 1, + "focus": 1 + }, + { + "x": 180, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 5, + "opacity": 144, + "color": [ + 90, + 0, + 0, + 90 + ], + "priority": 1, + "focus": 1 + }, + { + "x": 180, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 2, + "opacity": 144, + "color": [ + 60, + 0, + 0, + 60 + ], + "focus": 1 + }, + { + "x": 180, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 1, + "opacity": 144, + "color": [ + 30, + 0, + 0, + 30 + ], + "focus": 1 + }, + { + "x": 180, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 0, + "opacity": 144, + "focus": 1 + }, + { + "x": 180, + "y": -44, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 3, + "opacity": 144, + "color": [ + 150, + 0, + 0, + 150 + ], + "priority": 1, + "focus": 1 + }, + { + "x": 180, + "y": -44, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 4, + "opacity": 144, + "color": [ + 120, + 0, + 0, + 120 + ], + "priority": 1, + "focus": 1 + }, + { + "x": 180, + "y": -44, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 5, + "opacity": 144, + "color": [ + 90, + 0, + 0, + 90 + ], + "priority": 1, + "focus": 1 + }, + { + "x": 180, + "y": -44, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 2, + "opacity": 144, + "color": [ + 60, + 0, + 0, + 60 + ], + "focus": 1 + }, + { + "x": 180, + "y": -44, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 1, + "opacity": 144, + "color": [ + 30, + 0, + 0, + 30 + ], + "focus": 1 + }, + { + "x": 180, + "y": -44, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 0, + "opacity": 144, + "focus": 1 + }, + { + "x": 124, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 12, + "opacity": 144, + "priority": 1, + "focus": 1 + }, + { + "x": 99.5, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 12, + "opacity": 144, + "priority": 1, + "focus": 1 + }, + { + "x": 76, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 12, + "opacity": 144, + "priority": 1, + "focus": 1 + }, + { + "x": 180, + "y": -84, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 3, + "opacity": 144, + "color": [ + 150, + 0, + 0, + 150 + ], + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 204, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "color": [ + 192, + 0, + 0, + 138 + ], + "priority": 1, + "focus": 1 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 204, + "y": -84, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 3, + "opacity": 144, + "color": [ + 120, + 0, + 0, + 120 + ], + "priority": 1, + "focus": 1 + }, + { + "x": 204, + "y": -84, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 4, + "opacity": 144, + "color": [ + 90, + 0, + 0, + 90 + ], + "priority": 1, + "focus": 1 + }, + { + "x": 204, + "y": -84, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 5, + "opacity": 144, + "color": [ + 60, + 0, + 0, + 60 + ], + "priority": 1, + "focus": 1 + }, + { + "x": 204, + "y": -84, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 2, + "opacity": 144, + "color": [ + 30, + 0, + 0, + 30 + ], + "focus": 1 + }, + { + "x": 204, + "y": -84, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 1, + "opacity": 144, + "focus": 1 + }, + { + "x": 204, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 0, + "opacity": 144, + "color": [ + 150, + 0, + 0, + 150 + ], + "focus": 1 + }, + { + "x": 204, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 3, + "opacity": 144, + "color": [ + 120, + 0, + 0, + 120 + ], + "priority": 1, + "focus": 1 + }, + { + "x": 204, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 4, + "opacity": 144, + "color": [ + 90, + 0, + 0, + 90 + ], + "priority": 1, + "focus": 1 + }, + { + "x": 204, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 5, + "opacity": 144, + "color": [ + 60, + 0, + 0, + 60 + ], + "priority": 1, + "focus": 1 + }, + { + "x": 204, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 2, + "opacity": 144, + "color": [ + 30, + 0, + 0, + 30 + ], + "focus": 1 + }, + { + "x": 204, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 1, + "opacity": 144, + "focus": 1 + }, + { + "x": 204, + "y": -44, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 0, + "opacity": 144, + "color": [ + 150, + 0, + 0, + 150 + ], + "focus": 1 + }, + { + "x": 204, + "y": -44, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 3, + "opacity": 144, + "color": [ + 120, + 0, + 0, + 120 + ], + "priority": 1, + "focus": 1 + }, + { + "x": 204, + "y": -44, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 4, + "opacity": 144, + "color": [ + 90, + 0, + 0, + 90 + ], + "priority": 1, + "focus": 1 + }, + { + "x": 204, + "y": -44, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 5, + "opacity": 144, + "color": [ + 60, + 0, + 0, + 60 + ], + "priority": 1, + "focus": 1 + }, + { + "x": 204, + "y": -44, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 2, + "opacity": 144, + "color": [ + 30, + 0, + 0, + 30 + ], + "focus": 1 + }, + { + "x": 204, + "y": -44, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 1, + "opacity": 144, + "focus": 1 + }, + { + "x": 148, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 12, + "opacity": 144, + "priority": 1, + "focus": 1 + }, + { + "x": 124, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 12, + "opacity": 144, + "priority": 1, + "focus": 1 + }, + { + "x": 99.5, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 12, + "opacity": 144, + "priority": 1, + "focus": 1 + }, + { + "x": 204, + "y": -84, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 0, + "opacity": 144, + "color": [ + 150, + 0, + 0, + 150 + ], + "focus": 1 + } + ], + [ + { + "x": 224, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "mirror": true, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "color": [ + 192, + 0, + 0, + 138 + ], + "priority": 1, + "focus": 1 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 228, + "y": -84, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 0, + "opacity": 144, + "color": [ + 120, + 0, + 0, + 120 + ], + "focus": 1 + }, + { + "x": 228, + "y": -84, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 3, + "opacity": 144, + "color": [ + 90, + 0, + 0, + 90 + ], + "priority": 1, + "focus": 1 + }, + { + "x": 228, + "y": -84, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 4, + "opacity": 144, + "color": [ + 60, + 0, + 0, + 60 + ], + "priority": 1, + "focus": 1 + }, + { + "x": 228, + "y": -84, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 5, + "opacity": 144, + "color": [ + 30, + 0, + 0, + 30 + ], + "priority": 1, + "focus": 1 + }, + { + "x": 228, + "y": -84, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 2, + "opacity": 144, + "focus": 1 + }, + { + "x": 228, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 1, + "opacity": 144, + "color": [ + 150, + 0, + 0, + 150 + ], + "focus": 1 + }, + { + "x": 228, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 0, + "opacity": 144, + "color": [ + 120, + 0, + 0, + 120 + ], + "focus": 1 + }, + { + "x": 228, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 3, + "opacity": 144, + "color": [ + 90, + 0, + 0, + 90 + ], + "priority": 1, + "focus": 1 + }, + { + "x": 228, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 4, + "opacity": 144, + "color": [ + 60, + 0, + 0, + 60 + ], + "priority": 1, + "focus": 1 + }, + { + "x": 228, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 5, + "opacity": 144, + "color": [ + 30, + 0, + 0, + 30 + ], + "priority": 1, + "focus": 1 + }, + { + "x": 228, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 2, + "opacity": 144, + "focus": 1 + }, + { + "x": 228, + "y": -44, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 1, + "opacity": 144, + "color": [ + 150, + 0, + 0, + 150 + ], + "focus": 1 + }, + { + "x": 228, + "y": -44, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 0, + "opacity": 144, + "color": [ + 120, + 0, + 0, + 120 + ], + "focus": 1 + }, + { + "x": 228, + "y": -44, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 3, + "opacity": 144, + "color": [ + 90, + 0, + 0, + 90 + ], + "priority": 1, + "focus": 1 + }, + { + "x": 228, + "y": -44, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 4, + "opacity": 144, + "color": [ + 60, + 0, + 0, + 60 + ], + "priority": 1, + "focus": 1 + }, + { + "x": 228, + "y": -44, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 5, + "opacity": 144, + "color": [ + 30, + 0, + 0, + 30 + ], + "priority": 1, + "focus": 1 + }, + { + "x": 228, + "y": -44, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 2, + "opacity": 144, + "focus": 1 + }, + { + "x": 170.5, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 12, + "opacity": 144, + "priority": 1, + "focus": 1 + }, + { + "x": 148, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 12, + "opacity": 144, + "priority": 1, + "focus": 1 + }, + { + "x": 124, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 12, + "opacity": 144, + "priority": 1, + "focus": 1 + }, + { + "x": 228, + "y": -84, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 1, + "opacity": 144, + "color": [ + 150, + 0, + 0, + 150 + ], + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "color": [ + 192, + 0, + 0, + 138 + ], + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 169, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 12, + "opacity": 144, + "priority": 1, + "focus": 1 + }, + { + "x": 148, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 12, + "opacity": 144, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "color": [ + 192, + 0, + 0, + 138 + ], + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 192, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 12, + "opacity": 144, + "priority": 1, + "focus": 1 + }, + { + "x": 169, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 12, + "opacity": 144, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "color": [ + 192, + 0, + 0, + 138 + ], + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 192, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 12, + "opacity": 144, + "priority": 1, + "focus": 1 + } + ], + [ + { + "x": 241, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "color": [ + 192, + 0, + 0, + 138 + ], + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 241, + "y": -20, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 3, + "opacity": 144, + "color": [ + 150, + 0, + 0, + 150 + ], + "priority": 1, + "focus": 2 + }, + { + "x": 241, + "y": -20, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 4, + "opacity": 144, + "color": [ + 120, + 0, + 0, + 120 + ], + "priority": 1, + "focus": 2 + }, + { + "x": 241, + "y": -20, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 5, + "opacity": 144, + "color": [ + 90, + 0, + 0, + 90 + ], + "priority": 1, + "focus": 2 + }, + { + "x": 241, + "y": -20, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 2, + "opacity": 144, + "color": [ + 60, + 0, + 0, + 60 + ], + "focus": 2 + }, + { + "x": 241, + "y": -20, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 1, + "opacity": 144, + "color": [ + 30, + 0, + 0, + 30 + ], + "focus": 2 + }, + { + "x": 241, + "y": -20, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 0, + "opacity": 144, + "focus": 2 + }, + { + "x": 241, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 3, + "opacity": 144, + "color": [ + 150, + 0, + 0, + 150 + ], + "priority": 1, + "focus": 2 + }, + { + "x": 241, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 4, + "opacity": 144, + "color": [ + 120, + 0, + 0, + 120 + ], + "priority": 1, + "focus": 2 + }, + { + "x": 241, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 5, + "opacity": 144, + "color": [ + 90, + 0, + 0, + 90 + ], + "priority": 1, + "focus": 2 + }, + { + "x": 241, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 2, + "opacity": 144, + "color": [ + 60, + 0, + 0, + 60 + ], + "focus": 2 + }, + { + "x": 241, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 1, + "opacity": 144, + "color": [ + 30, + 0, + 0, + 30 + ], + "focus": 2 + }, + { + "x": 241, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 0, + "opacity": 144, + "focus": 2 + }, + { + "x": 241, + "y": 20, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 3, + "opacity": 144, + "color": [ + 150, + 0, + 0, + 150 + ], + "priority": 1, + "focus": 2 + }, + { + "x": 241, + "y": 20, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 4, + "opacity": 144, + "color": [ + 120, + 0, + 0, + 120 + ], + "priority": 1, + "focus": 2 + }, + { + "x": 241, + "y": 20, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 5, + "opacity": 144, + "color": [ + 90, + 0, + 0, + 90 + ], + "priority": 1, + "focus": 2 + }, + { + "x": 241, + "y": 20, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 2, + "opacity": 144, + "color": [ + 60, + 0, + 0, + 60 + ], + "focus": 2 + }, + { + "x": 241, + "y": 20, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 1, + "opacity": 144, + "color": [ + 30, + 0, + 0, + 30 + ], + "focus": 2 + }, + { + "x": 241, + "y": 20, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 0, + "opacity": 144, + "focus": 2 + } + ], + [ + { + "x": 210.5, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "mirror": true, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "color": [ + 192, + 0, + 0, + 138 + ], + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 210.5, + "y": -20, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 0, + "opacity": 144, + "color": [ + 150, + 0, + 0, + 150 + ], + "focus": 2 + }, + { + "x": 210.5, + "y": -20, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 3, + "opacity": 144, + "color": [ + 120, + 0, + 0, + 120 + ], + "priority": 1, + "focus": 2 + }, + { + "x": 210.5, + "y": -20, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 4, + "opacity": 144, + "color": [ + 90, + 0, + 0, + 90 + ], + "priority": 1, + "focus": 2 + }, + { + "x": 210.5, + "y": -20, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 5, + "opacity": 144, + "color": [ + 60, + 0, + 0, + 60 + ], + "priority": 1, + "focus": 2 + }, + { + "x": 210.5, + "y": -20, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 2, + "opacity": 144, + "color": [ + 30, + 0, + 0, + 30 + ], + "focus": 2 + }, + { + "x": 210.5, + "y": -20, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 1, + "opacity": 144, + "focus": 2 + }, + { + "x": 210.5, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 0, + "opacity": 144, + "color": [ + 150, + 0, + 0, + 150 + ], + "focus": 2 + }, + { + "x": 210.5, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 3, + "opacity": 144, + "color": [ + 120, + 0, + 0, + 120 + ], + "priority": 1, + "focus": 2 + }, + { + "x": 210.5, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 4, + "opacity": 144, + "color": [ + 90, + 0, + 0, + 90 + ], + "priority": 1, + "focus": 2 + }, + { + "x": 210.5, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 5, + "opacity": 144, + "color": [ + 60, + 0, + 0, + 60 + ], + "priority": 1, + "focus": 2 + }, + { + "x": 210.5, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 2, + "opacity": 144, + "color": [ + 30, + 0, + 0, + 30 + ], + "focus": 2 + }, + { + "x": 210.5, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 1, + "opacity": 144, + "focus": 2 + }, + { + "x": 210.5, + "y": 20, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 0, + "opacity": 144, + "color": [ + 150, + 0, + 0, + 150 + ], + "focus": 2 + }, + { + "x": 210.5, + "y": 20, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 3, + "opacity": 144, + "color": [ + 120, + 0, + 0, + 120 + ], + "priority": 1, + "focus": 2 + }, + { + "x": 210.5, + "y": 20, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 4, + "opacity": 144, + "color": [ + 90, + 0, + 0, + 90 + ], + "priority": 1, + "focus": 2 + }, + { + "x": 210.5, + "y": 20, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 5, + "opacity": 144, + "color": [ + 60, + 0, + 0, + 60 + ], + "priority": 1, + "focus": 2 + }, + { + "x": 210.5, + "y": 20, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 2, + "opacity": 144, + "color": [ + 30, + 0, + 0, + 30 + ], + "focus": 2 + }, + { + "x": 210.5, + "y": 20, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 1, + "opacity": 144, + "focus": 2 + } + ], + [ + { + "x": 180.5, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "color": [ + 192, + 0, + 0, + 138 + ], + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 180.5, + "y": -20, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 0, + "opacity": 144, + "color": [ + 120, + 0, + 0, + 120 + ], + "focus": 2 + }, + { + "x": 180.5, + "y": -20, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 3, + "opacity": 144, + "color": [ + 90, + 0, + 0, + 90 + ], + "priority": 1, + "focus": 2 + }, + { + "x": 180.5, + "y": -20, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 4, + "opacity": 144, + "color": [ + 60, + 0, + 0, + 60 + ], + "priority": 1, + "focus": 2 + }, + { + "x": 180.5, + "y": -20, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 5, + "opacity": 144, + "color": [ + 30, + 0, + 0, + 30 + ], + "priority": 1, + "focus": 2 + }, + { + "x": 180.5, + "y": -20, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 2, + "opacity": 144, + "focus": 2 + }, + { + "x": 180.5, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 1, + "opacity": 144, + "color": [ + 150, + 0, + 0, + 150 + ], + "focus": 2 + }, + { + "x": 180.5, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 0, + "opacity": 144, + "color": [ + 120, + 0, + 0, + 120 + ], + "focus": 2 + }, + { + "x": 180.5, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 3, + "opacity": 144, + "color": [ + 90, + 0, + 0, + 90 + ], + "priority": 1, + "focus": 2 + }, + { + "x": 180.5, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 4, + "opacity": 144, + "color": [ + 60, + 0, + 0, + 60 + ], + "priority": 1, + "focus": 2 + }, + { + "x": 180.5, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 5, + "opacity": 144, + "color": [ + 30, + 0, + 0, + 30 + ], + "priority": 1, + "focus": 2 + }, + { + "x": 180.5, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 2, + "opacity": 144, + "focus": 2 + }, + { + "x": 180.5, + "y": 20, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 1, + "opacity": 144, + "color": [ + 150, + 0, + 0, + 150 + ], + "focus": 2 + }, + { + "x": 180.5, + "y": 20, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 0, + "opacity": 144, + "color": [ + 120, + 0, + 0, + 120 + ], + "focus": 2 + }, + { + "x": 180.5, + "y": 20, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 3, + "opacity": 144, + "color": [ + 90, + 0, + 0, + 90 + ], + "priority": 1, + "focus": 2 + }, + { + "x": 180.5, + "y": 20, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 4, + "opacity": 144, + "color": [ + 60, + 0, + 0, + 60 + ], + "priority": 1, + "focus": 2 + }, + { + "x": 180.5, + "y": 20, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 5, + "opacity": 144, + "color": [ + 30, + 0, + 0, + 30 + ], + "priority": 1, + "focus": 2 + }, + { + "x": 180.5, + "y": 20, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 2, + "opacity": 144, + "focus": 2 + }, + { + "x": 180.5, + "y": -20, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 1, + "opacity": 144, + "color": [ + 150, + 0, + 0, + 150 + ], + "focus": 2 + } + ], + [ + { + "x": 150.5, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "mirror": true, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "color": [ + 192, + 0, + 0, + 138 + ], + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 150.5, + "y": -20, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 1, + "opacity": 144, + "color": [ + 120, + 0, + 0, + 120 + ], + "focus": 2 + }, + { + "x": 150.5, + "y": -20, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 0, + "opacity": 144, + "color": [ + 90, + 0, + 0, + 90 + ], + "focus": 2 + }, + { + "x": 150.5, + "y": -20, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 3, + "opacity": 144, + "color": [ + 60, + 0, + 0, + 60 + ], + "priority": 1, + "focus": 2 + }, + { + "x": 150.5, + "y": -20, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 4, + "opacity": 144, + "color": [ + 30, + 0, + 0, + 30 + ], + "priority": 1, + "focus": 2 + }, + { + "x": 150.5, + "y": -20, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 5, + "opacity": 144, + "priority": 1, + "focus": 2 + }, + { + "x": 150.5, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 2, + "opacity": 144, + "color": [ + 150, + 0, + 0, + 150 + ], + "focus": 2 + }, + { + "x": 150.5, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 1, + "opacity": 144, + "color": [ + 120, + 0, + 0, + 120 + ], + "focus": 2 + }, + { + "x": 150.5, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 0, + "opacity": 144, + "color": [ + 90, + 0, + 0, + 90 + ], + "focus": 2 + }, + { + "x": 150.5, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 3, + "opacity": 144, + "color": [ + 60, + 0, + 0, + 60 + ], + "priority": 1, + "focus": 2 + }, + { + "x": 150.5, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 4, + "opacity": 144, + "color": [ + 30, + 0, + 0, + 30 + ], + "priority": 1, + "focus": 2 + }, + { + "x": 150.5, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 5, + "opacity": 144, + "priority": 1, + "focus": 2 + }, + { + "x": 150.5, + "y": 20, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 2, + "opacity": 144, + "color": [ + 150, + 0, + 0, + 150 + ], + "focus": 2 + }, + { + "x": 150.5, + "y": 20, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 1, + "opacity": 144, + "color": [ + 120, + 0, + 0, + 120 + ], + "focus": 2 + }, + { + "x": 150.5, + "y": 20, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 0, + "opacity": 144, + "color": [ + 90, + 0, + 0, + 90 + ], + "focus": 2 + }, + { + "x": 150.5, + "y": 20, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 3, + "opacity": 144, + "color": [ + 60, + 0, + 0, + 60 + ], + "priority": 1, + "focus": 2 + }, + { + "x": 150.5, + "y": 20, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 4, + "opacity": 144, + "color": [ + 30, + 0, + 0, + 30 + ], + "priority": 1, + "focus": 2 + }, + { + "x": 150.5, + "y": 20, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 5, + "opacity": 144, + "priority": 1, + "focus": 2 + }, + { + "x": 150.5, + "y": -20, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 2, + "opacity": 144, + "color": [ + 150, + 0, + 0, + 150 + ], + "focus": 2 + } + ], + [ + { + "x": 120.5, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "color": [ + 192, + 0, + 0, + 138 + ], + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 120.5, + "y": -20, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 2, + "opacity": 144, + "color": [ + 120, + 0, + 0, + 120 + ], + "focus": 2 + }, + { + "x": 120.5, + "y": -20, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 1, + "opacity": 144, + "color": [ + 90, + 0, + 0, + 90 + ], + "focus": 2 + }, + { + "x": 120.5, + "y": -20, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 5, + "opacity": 144, + "color": [ + 150, + 0, + 0, + 150 + ], + "priority": 1, + "focus": 2 + }, + { + "x": 120.5, + "y": -20, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 3, + "opacity": 144, + "color": [ + 30, + 0, + 0, + 30 + ], + "priority": 1, + "focus": 2 + }, + { + "x": 120.5, + "y": -20, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 4, + "opacity": 144, + "priority": 1, + "focus": 2 + }, + { + "x": 120.5, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 5, + "opacity": 144, + "color": [ + 150, + 0, + 0, + 150 + ], + "priority": 1, + "focus": 2 + }, + { + "x": 120.5, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 2, + "opacity": 144, + "color": [ + 120, + 0, + 0, + 120 + ], + "focus": 2 + }, + { + "x": 120.5, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 1, + "opacity": 144, + "color": [ + 90, + 0, + 0, + 90 + ], + "focus": 2 + }, + { + "x": 120.5, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 0, + "opacity": 144, + "color": [ + 60, + 0, + 0, + 60 + ], + "focus": 2 + }, + { + "x": 120.5, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 3, + "opacity": 144, + "color": [ + 30, + 0, + 0, + 30 + ], + "priority": 1, + "focus": 2 + }, + { + "x": 120.5, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 4, + "opacity": 144, + "priority": 1, + "focus": 2 + }, + { + "x": 120.5, + "y": 20, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 5, + "opacity": 144, + "color": [ + 150, + 0, + 0, + 150 + ], + "priority": 1, + "focus": 2 + }, + { + "x": 120.5, + "y": 20, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 2, + "opacity": 144, + "color": [ + 120, + 0, + 0, + 120 + ], + "focus": 2 + }, + { + "x": 120.5, + "y": 20, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 1, + "opacity": 144, + "color": [ + 90, + 0, + 0, + 90 + ], + "focus": 2 + }, + { + "x": 120.5, + "y": 20, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 0, + "opacity": 144, + "color": [ + 60, + 0, + 0, + 60 + ], + "focus": 2 + }, + { + "x": 120.5, + "y": 20, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 3, + "opacity": 144, + "color": [ + 30, + 0, + 0, + 30 + ], + "priority": 1, + "focus": 2 + }, + { + "x": 120.5, + "y": 20, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 4, + "opacity": 144, + "priority": 1, + "focus": 2 + }, + { + "x": 178.5, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 12, + "opacity": 144, + "priority": 1, + "focus": 2 + }, + { + "x": 120.5, + "y": -20, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 0, + "opacity": 144, + "color": [ + 60, + 0, + 0, + 60 + ], + "focus": 2 + } + ], + [ + { + "x": 90, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "mirror": true, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "color": [ + 192, + 0, + 0, + 138 + ], + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 90, + "y": -20, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 5, + "opacity": 144, + "color": [ + 120, + 0, + 0, + 120 + ], + "priority": 1, + "focus": 2 + }, + { + "x": 90, + "y": -20, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 2, + "opacity": 144, + "color": [ + 90, + 0, + 0, + 90 + ], + "focus": 2 + }, + { + "x": 90, + "y": -20, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 1, + "opacity": 144, + "color": [ + 60, + 0, + 0, + 60 + ], + "focus": 2 + }, + { + "x": 90, + "y": -20, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 0, + "opacity": 144, + "color": [ + 30, + 0, + 0, + 30 + ], + "focus": 2 + }, + { + "x": 90, + "y": -20, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 3, + "opacity": 144, + "priority": 1, + "focus": 2 + }, + { + "x": 90, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 4, + "opacity": 144, + "color": [ + 150, + 0, + 0, + 150 + ], + "priority": 1, + "focus": 2 + }, + { + "x": 90, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 5, + "opacity": 144, + "color": [ + 120, + 0, + 0, + 120 + ], + "priority": 1, + "focus": 2 + }, + { + "x": 90, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 2, + "opacity": 144, + "color": [ + 90, + 0, + 0, + 90 + ], + "focus": 2 + }, + { + "x": 90, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 1, + "opacity": 144, + "color": [ + 60, + 0, + 0, + 60 + ], + "focus": 2 + }, + { + "x": 90, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 0, + "opacity": 144, + "color": [ + 30, + 0, + 0, + 30 + ], + "focus": 2 + }, + { + "x": 90, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 3, + "opacity": 144, + "priority": 1, + "focus": 2 + }, + { + "x": 90, + "y": 20, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 4, + "opacity": 144, + "color": [ + 150, + 0, + 0, + 150 + ], + "priority": 1, + "focus": 2 + }, + { + "x": 90, + "y": 20, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 5, + "opacity": 144, + "color": [ + 120, + 0, + 0, + 120 + ], + "priority": 1, + "focus": 2 + }, + { + "x": 90, + "y": 20, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 2, + "opacity": 144, + "color": [ + 90, + 0, + 0, + 90 + ], + "focus": 2 + }, + { + "x": 90, + "y": 20, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 1, + "opacity": 144, + "color": [ + 60, + 0, + 0, + 60 + ], + "focus": 2 + }, + { + "x": 90, + "y": 20, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 0, + "opacity": 144, + "color": [ + 30, + 0, + 0, + 30 + ], + "focus": 2 + }, + { + "x": 90, + "y": 20, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 3, + "opacity": 144, + "priority": 1, + "focus": 2 + }, + { + "x": 148.5, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 12, + "opacity": 144, + "priority": 1, + "focus": 2 + }, + { + "x": 178.5, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 12, + "opacity": 144, + "priority": 1, + "focus": 2 + }, + { + "x": 90, + "y": -20, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 4, + "opacity": 144, + "color": [ + 150, + 0, + 0, + 150 + ], + "priority": 1, + "focus": 2 + } + ], + [ + { + "x": 60, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "color": [ + 192, + 0, + 0, + 138 + ], + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 60, + "y": -20, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 3, + "opacity": 144, + "color": [ + 150, + 0, + 0, + 150 + ], + "priority": 1, + "focus": 2 + }, + { + "x": 60, + "y": -20, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 4, + "opacity": 144, + "color": [ + 120, + 0, + 0, + 120 + ], + "priority": 1, + "focus": 2 + }, + { + "x": 60, + "y": -20, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 5, + "opacity": 144, + "color": [ + 90, + 0, + 0, + 90 + ], + "priority": 1, + "focus": 2 + }, + { + "x": 60, + "y": -20, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 2, + "opacity": 144, + "color": [ + 60, + 0, + 0, + 60 + ], + "focus": 2 + }, + { + "x": 60, + "y": -20, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 1, + "opacity": 144, + "color": [ + 30, + 0, + 0, + 30 + ], + "focus": 2 + }, + { + "x": 60, + "y": -20, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 0, + "opacity": 144, + "focus": 2 + }, + { + "x": 60, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 3, + "opacity": 144, + "color": [ + 150, + 0, + 0, + 150 + ], + "priority": 1, + "focus": 2 + }, + { + "x": 60, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 4, + "opacity": 144, + "color": [ + 120, + 0, + 0, + 120 + ], + "priority": 1, + "focus": 2 + }, + { + "x": 60, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 5, + "opacity": 144, + "color": [ + 90, + 0, + 0, + 90 + ], + "priority": 1, + "focus": 2 + }, + { + "x": 60, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 2, + "opacity": 144, + "color": [ + 60, + 0, + 0, + 60 + ], + "focus": 2 + }, + { + "x": 60, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 1, + "opacity": 144, + "color": [ + 30, + 0, + 0, + 30 + ], + "focus": 2 + }, + { + "x": 60, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 0, + "opacity": 144, + "focus": 2 + }, + { + "x": 60, + "y": 20, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 3, + "opacity": 144, + "color": [ + 150, + 0, + 0, + 150 + ], + "priority": 1, + "focus": 2 + }, + { + "x": 60, + "y": 20, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 4, + "opacity": 144, + "color": [ + 120, + 0, + 0, + 120 + ], + "priority": 1, + "focus": 2 + }, + { + "x": 60, + "y": 20, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 5, + "opacity": 144, + "color": [ + 90, + 0, + 0, + 90 + ], + "priority": 1, + "focus": 2 + }, + { + "x": 60, + "y": 20, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 2, + "opacity": 144, + "color": [ + 60, + 0, + 0, + 60 + ], + "focus": 2 + }, + { + "x": 60, + "y": 20, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 1, + "opacity": 144, + "color": [ + 30, + 0, + 0, + 30 + ], + "focus": 2 + }, + { + "x": 60, + "y": 20, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 0, + "opacity": 144, + "focus": 2 + }, + { + "x": 120, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 12, + "opacity": 144, + "priority": 1, + "focus": 2 + }, + { + "x": 148.5, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 12, + "opacity": 144, + "priority": 1, + "focus": 2 + }, + { + "x": 178.5, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 12, + "opacity": 144, + "priority": 1, + "focus": 2 + } + ], + [ + { + "x": 30, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "mirror": true, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "color": [ + 192, + 0, + 0, + 138 + ], + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 30, + "y": -20, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 0, + "opacity": 144, + "color": [ + 150, + 0, + 0, + 150 + ], + "focus": 2 + }, + { + "x": 30, + "y": -20, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 3, + "opacity": 144, + "color": [ + 120, + 0, + 0, + 120 + ], + "priority": 1, + "focus": 2 + }, + { + "x": 30, + "y": -20, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 4, + "opacity": 144, + "color": [ + 90, + 0, + 0, + 90 + ], + "priority": 1, + "focus": 2 + }, + { + "x": 30, + "y": -20, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 5, + "opacity": 144, + "color": [ + 60, + 0, + 0, + 60 + ], + "priority": 1, + "focus": 2 + }, + { + "x": 30, + "y": -20, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 2, + "opacity": 144, + "color": [ + 30, + 0, + 0, + 30 + ], + "focus": 2 + }, + { + "x": 30, + "y": -20, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 1, + "opacity": 144, + "focus": 2 + }, + { + "x": 30, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 0, + "opacity": 144, + "color": [ + 150, + 0, + 0, + 150 + ], + "focus": 2 + }, + { + "x": 30, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 3, + "opacity": 144, + "color": [ + 120, + 0, + 0, + 120 + ], + "priority": 1, + "focus": 2 + }, + { + "x": 30, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 4, + "opacity": 144, + "color": [ + 90, + 0, + 0, + 90 + ], + "priority": 1, + "focus": 2 + }, + { + "x": 30, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 5, + "opacity": 144, + "color": [ + 60, + 0, + 0, + 60 + ], + "priority": 1, + "focus": 2 + }, + { + "x": 30, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 2, + "opacity": 144, + "color": [ + 30, + 0, + 0, + 30 + ], + "focus": 2 + }, + { + "x": 30, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 1, + "opacity": 144, + "focus": 2 + }, + { + "x": 30, + "y": 20, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 0, + "opacity": 144, + "color": [ + 150, + 0, + 0, + 150 + ], + "focus": 2 + }, + { + "x": 30, + "y": 20, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 3, + "opacity": 144, + "color": [ + 120, + 0, + 0, + 120 + ], + "priority": 1, + "focus": 2 + }, + { + "x": 30, + "y": 20, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 4, + "opacity": 144, + "color": [ + 90, + 0, + 0, + 90 + ], + "priority": 1, + "focus": 2 + }, + { + "x": 30, + "y": 20, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 5, + "opacity": 144, + "color": [ + 60, + 0, + 0, + 60 + ], + "priority": 1, + "focus": 2 + }, + { + "x": 30, + "y": 20, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 2, + "opacity": 144, + "color": [ + 30, + 0, + 0, + 30 + ], + "focus": 2 + }, + { + "x": 30, + "y": 20, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 1, + "opacity": 144, + "focus": 2 + }, + { + "x": 88, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 12, + "opacity": 144, + "priority": 1, + "focus": 2 + }, + { + "x": 120, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 12, + "opacity": 144, + "priority": 1, + "focus": 2 + }, + { + "x": 148.5, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 12, + "opacity": 144, + "priority": 1, + "focus": 2 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "color": [ + 192, + 0, + 0, + 138 + ], + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 0, + "y": -20, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 1, + "opacity": 144, + "color": [ + 150, + 0, + 0, + 150 + ], + "focus": 2 + }, + { + "x": 0, + "y": -20, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 0, + "opacity": 144, + "color": [ + 120, + 0, + 0, + 120 + ], + "focus": 2 + }, + { + "x": 0, + "y": -20, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 3, + "opacity": 144, + "color": [ + 90, + 0, + 0, + 90 + ], + "priority": 1, + "focus": 2 + }, + { + "x": 0, + "y": -20, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 4, + "opacity": 144, + "color": [ + 60, + 0, + 0, + 60 + ], + "priority": 1, + "focus": 2 + }, + { + "x": 0, + "y": -20, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 5, + "opacity": 144, + "color": [ + 30, + 0, + 0, + 30 + ], + "priority": 1, + "focus": 2 + }, + { + "x": 0, + "y": -20, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 2, + "opacity": 144, + "focus": 2 + }, + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 1, + "opacity": 144, + "color": [ + 150, + 0, + 0, + 150 + ], + "focus": 2 + }, + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 0, + "opacity": 144, + "color": [ + 120, + 0, + 0, + 120 + ], + "focus": 2 + }, + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 3, + "opacity": 144, + "color": [ + 90, + 0, + 0, + 90 + ], + "priority": 1, + "focus": 2 + }, + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 4, + "opacity": 144, + "color": [ + 60, + 0, + 0, + 60 + ], + "priority": 1, + "focus": 2 + }, + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 5, + "opacity": 144, + "color": [ + 30, + 0, + 0, + 30 + ], + "priority": 1, + "focus": 2 + }, + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 2, + "opacity": 144, + "focus": 2 + }, + { + "x": 0, + "y": 20, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 1, + "opacity": 144, + "color": [ + 150, + 0, + 0, + 150 + ], + "focus": 2 + }, + { + "x": 0, + "y": 20, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 0, + "opacity": 144, + "color": [ + 120, + 0, + 0, + 120 + ], + "focus": 2 + }, + { + "x": 0, + "y": 20, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 3, + "opacity": 144, + "color": [ + 90, + 0, + 0, + 90 + ], + "priority": 1, + "focus": 2 + }, + { + "x": 0, + "y": 20, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 4, + "opacity": 144, + "color": [ + 60, + 0, + 0, + 60 + ], + "priority": 1, + "focus": 2 + }, + { + "x": 0, + "y": 20, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 5, + "opacity": 144, + "color": [ + 30, + 0, + 0, + 30 + ], + "priority": 1, + "focus": 2 + }, + { + "x": 0, + "y": 20, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 2, + "opacity": 144, + "focus": 2 + }, + { + "x": 60, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 12, + "opacity": 144, + "priority": 1, + "focus": 2 + }, + { + "x": 88, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 12, + "opacity": 144, + "priority": 1, + "focus": 2 + }, + { + "x": 120, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 12, + "opacity": 144, + "priority": 1, + "focus": 2 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "mirror": true, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "color": [ + 168, + 0, + 0, + 120 + ], + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 0, + "y": -20, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 2, + "opacity": 144, + "color": [ + 150, + 0, + 0, + 150 + ], + "focus": 2 + }, + { + "x": 0, + "y": -20, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 1, + "opacity": 144, + "color": [ + 120, + 0, + 0, + 120 + ], + "focus": 2 + }, + { + "x": 0, + "y": -20, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 0, + "opacity": 144, + "color": [ + 90, + 0, + 0, + 90 + ], + "focus": 2 + }, + { + "x": 0, + "y": -20, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 3, + "opacity": 144, + "color": [ + 60, + 0, + 0, + 60 + ], + "priority": 1, + "focus": 2 + }, + { + "x": 0, + "y": -20, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 4, + "opacity": 144, + "color": [ + 30, + 0, + 0, + 30 + ], + "priority": 1, + "focus": 2 + }, + { + "x": 0, + "y": -20, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 5, + "opacity": 144, + "priority": 1, + "focus": 2 + }, + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 2, + "opacity": 144, + "color": [ + 150, + 0, + 0, + 150 + ], + "focus": 2 + }, + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 1, + "opacity": 144, + "color": [ + 120, + 0, + 0, + 120 + ], + "focus": 2 + }, + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 0, + "opacity": 144, + "color": [ + 90, + 0, + 0, + 90 + ], + "focus": 2 + }, + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 3, + "opacity": 144, + "color": [ + 60, + 0, + 0, + 60 + ], + "priority": 1, + "focus": 2 + }, + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 4, + "opacity": 144, + "color": [ + 30, + 0, + 0, + 30 + ], + "priority": 1, + "focus": 2 + }, + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 5, + "opacity": 144, + "priority": 1, + "focus": 2 + }, + { + "x": 0, + "y": 20, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 2, + "opacity": 144, + "color": [ + 150, + 0, + 0, + 150 + ], + "focus": 2 + }, + { + "x": 0, + "y": 20, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 1, + "opacity": 144, + "color": [ + 120, + 0, + 0, + 120 + ], + "focus": 2 + }, + { + "x": 0, + "y": 20, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 0, + "opacity": 144, + "color": [ + 90, + 0, + 0, + 90 + ], + "focus": 2 + }, + { + "x": 0, + "y": 20, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 3, + "opacity": 144, + "color": [ + 60, + 0, + 0, + 60 + ], + "priority": 1, + "focus": 2 + }, + { + "x": 0, + "y": 20, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 4, + "opacity": 144, + "color": [ + 30, + 0, + 0, + 30 + ], + "priority": 1, + "focus": 2 + }, + { + "x": 0, + "y": 20, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 5, + "opacity": 144, + "priority": 1, + "focus": 2 + }, + { + "x": 60, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 12, + "opacity": 144, + "priority": 1, + "focus": 2 + }, + { + "x": 88, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 12, + "opacity": 144, + "priority": 1, + "focus": 2 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "color": [ + 144, + 0, + 0, + 103 + ], + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 0, + "y": -20, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 5, + "opacity": 144, + "color": [ + 150, + 0, + 0, + 150 + ], + "priority": 1, + "focus": 2 + }, + { + "x": 0, + "y": -20, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 2, + "opacity": 144, + "color": [ + 120, + 0, + 0, + 120 + ], + "focus": 2 + }, + { + "x": 0, + "y": -20, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 1, + "opacity": 144, + "color": [ + 90, + 0, + 0, + 90 + ], + "focus": 2 + }, + { + "x": 0, + "y": -20, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 0, + "opacity": 144, + "color": [ + 60, + 0, + 0, + 60 + ], + "focus": 2 + }, + { + "x": 0, + "y": -20, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 3, + "opacity": 144, + "color": [ + 30, + 0, + 0, + 30 + ], + "priority": 1, + "focus": 2 + }, + { + "x": 0, + "y": -20, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 4, + "opacity": 144, + "priority": 1, + "focus": 2 + }, + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 5, + "opacity": 144, + "color": [ + 150, + 0, + 0, + 150 + ], + "priority": 1, + "focus": 2 + }, + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 2, + "opacity": 144, + "color": [ + 120, + 0, + 0, + 120 + ], + "focus": 2 + }, + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 1, + "opacity": 144, + "color": [ + 90, + 0, + 0, + 90 + ], + "focus": 2 + }, + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 0, + "opacity": 144, + "color": [ + 60, + 0, + 0, + 60 + ], + "focus": 2 + }, + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 3, + "opacity": 144, + "color": [ + 30, + 0, + 0, + 30 + ], + "priority": 1, + "focus": 2 + }, + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 4, + "opacity": 144, + "priority": 1, + "focus": 2 + }, + { + "x": 0, + "y": 20, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 5, + "opacity": 144, + "color": [ + 150, + 0, + 0, + 150 + ], + "priority": 1, + "focus": 2 + }, + { + "x": 0, + "y": 20, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 2, + "opacity": 144, + "color": [ + 120, + 0, + 0, + 120 + ], + "focus": 2 + }, + { + "x": 0, + "y": 20, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 1, + "opacity": 144, + "color": [ + 90, + 0, + 0, + 90 + ], + "focus": 2 + }, + { + "x": 0, + "y": 20, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 0, + "opacity": 144, + "color": [ + 60, + 0, + 0, + 60 + ], + "focus": 2 + }, + { + "x": 0, + "y": 20, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 3, + "opacity": 144, + "color": [ + 30, + 0, + 0, + 30 + ], + "priority": 1, + "focus": 2 + }, + { + "x": 0, + "y": 20, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 4, + "opacity": 144, + "priority": 1, + "focus": 2 + }, + { + "x": 60, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 12, + "opacity": 144, + "priority": 1, + "focus": 2 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "mirror": true, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "color": [ + 120, + 0, + 0, + 86 + ], + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 0, + "y": -20, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 5, + "opacity": 144, + "color": [ + 120, + 0, + 0, + 120 + ], + "priority": 1, + "focus": 2 + }, + { + "x": 0, + "y": -20, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 2, + "opacity": 144, + "color": [ + 90, + 0, + 0, + 90 + ], + "focus": 2 + }, + { + "x": 0, + "y": -20, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 1, + "opacity": 144, + "color": [ + 60, + 0, + 0, + 60 + ], + "focus": 2 + }, + { + "x": 0, + "y": -20, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 0, + "opacity": 144, + "color": [ + 30, + 0, + 0, + 30 + ], + "focus": 2 + }, + { + "x": 0, + "y": -20, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 3, + "opacity": 144, + "priority": 1, + "focus": 2 + }, + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 5, + "opacity": 144, + "color": [ + 120, + 0, + 0, + 120 + ], + "priority": 1, + "focus": 2 + }, + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 2, + "opacity": 144, + "color": [ + 90, + 0, + 0, + 90 + ], + "focus": 2 + }, + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 1, + "opacity": 144, + "color": [ + 60, + 0, + 0, + 60 + ], + "focus": 2 + }, + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 0, + "opacity": 144, + "color": [ + 30, + 0, + 0, + 30 + ], + "focus": 2 + }, + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 3, + "opacity": 144, + "priority": 1, + "focus": 2 + }, + { + "x": 0, + "y": 20, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 5, + "opacity": 144, + "color": [ + 120, + 0, + 0, + 120 + ], + "priority": 1, + "focus": 2 + }, + { + "x": 0, + "y": 20, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 2, + "opacity": 144, + "color": [ + 90, + 0, + 0, + 90 + ], + "focus": 2 + }, + { + "x": 0, + "y": 20, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 1, + "opacity": 144, + "color": [ + 60, + 0, + 0, + 60 + ], + "focus": 2 + }, + { + "x": 0, + "y": 20, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 0, + "opacity": 144, + "color": [ + 30, + 0, + 0, + 30 + ], + "focus": 2 + }, + { + "x": 0, + "y": 20, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 3, + "opacity": 144, + "priority": 1, + "focus": 2 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "color": [ + 96, + 0, + 0, + 69 + ], + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 0, + "y": -20, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 5, + "opacity": 144, + "color": [ + 90, + 0, + 0, + 90 + ], + "priority": 1, + "focus": 2 + }, + { + "x": 0, + "y": -20, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 2, + "opacity": 144, + "color": [ + 60, + 0, + 0, + 60 + ], + "focus": 2 + }, + { + "x": 0, + "y": -20, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 1, + "opacity": 144, + "color": [ + 30, + 0, + 0, + 30 + ], + "focus": 2 + }, + { + "x": 0, + "y": -20, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 0, + "opacity": 144, + "focus": 2 + }, + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 5, + "opacity": 144, + "color": [ + 90, + 0, + 0, + 90 + ], + "priority": 1, + "focus": 2 + }, + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 2, + "opacity": 144, + "color": [ + 60, + 0, + 0, + 60 + ], + "focus": 2 + }, + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 1, + "opacity": 144, + "color": [ + 30, + 0, + 0, + 30 + ], + "focus": 2 + }, + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 0, + "opacity": 144, + "focus": 2 + }, + { + "x": 0, + "y": 20, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 5, + "opacity": 144, + "color": [ + 90, + 0, + 0, + 90 + ], + "priority": 1, + "focus": 2 + }, + { + "x": 0, + "y": 20, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 2, + "opacity": 144, + "color": [ + 60, + 0, + 0, + 60 + ], + "focus": 2 + }, + { + "x": 0, + "y": 20, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 1, + "opacity": 144, + "color": [ + 30, + 0, + 0, + 30 + ], + "focus": 2 + }, + { + "x": 0, + "y": 20, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 0, + "opacity": 144, + "focus": 2 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "mirror": true, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "color": [ + 72, + 0, + 0, + 51 + ], + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 0, + "y": -20, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 5, + "opacity": 144, + "color": [ + 60, + 0, + 0, + 60 + ], + "priority": 1, + "focus": 2 + }, + { + "x": 0, + "y": -20, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 2, + "opacity": 144, + "color": [ + 30, + 0, + 0, + 30 + ], + "focus": 2 + }, + { + "x": 0, + "y": -20, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 1, + "opacity": 144, + "focus": 2 + }, + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 5, + "opacity": 144, + "color": [ + 60, + 0, + 0, + 60 + ], + "priority": 1, + "focus": 2 + }, + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 2, + "opacity": 144, + "color": [ + 30, + 0, + 0, + 30 + ], + "focus": 2 + }, + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 1, + "opacity": 144, + "focus": 2 + }, + { + "x": 0, + "y": 20, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 5, + "opacity": 144, + "color": [ + 60, + 0, + 0, + 60 + ], + "priority": 1, + "focus": 2 + }, + { + "x": 0, + "y": 20, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 2, + "opacity": 144, + "color": [ + 30, + 0, + 0, + 30 + ], + "focus": 2 + }, + { + "x": 0, + "y": 20, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 1, + "opacity": 144, + "focus": 2 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "color": [ + 48, + 0, + 0, + 34 + ], + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 0, + "y": -20, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 5, + "opacity": 144, + "color": [ + 30, + 0, + 0, + 30 + ], + "priority": 1, + "focus": 2 + }, + { + "x": 0, + "y": -20, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 2, + "opacity": 144, + "focus": 2 + }, + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 5, + "opacity": 144, + "color": [ + 30, + 0, + 0, + 30 + ], + "priority": 1, + "focus": 2 + }, + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 2, + "opacity": 144, + "focus": 2 + }, + { + "x": 0, + "y": 20, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 5, + "opacity": 144, + "color": [ + 30, + 0, + 0, + 30 + ], + "priority": 1, + "focus": 2 + }, + { + "x": 0, + "y": 20, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 2, + "opacity": 144, + "focus": 2 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "color": [ + 24, + 0, + 0, + 17 + ], + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 0, + "y": -20, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 5, + "opacity": 144, + "priority": 1, + "focus": 2 + }, + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 5, + "opacity": 144, + "priority": 1, + "focus": 2 + }, + { + "x": 0, + "y": 20, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "blendType": 2, + "target": 2, + "graphicFrame": 5, + "opacity": 144, + "priority": 1, + "focus": 2 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + } + ] + ], + "frameTimedEvents": { + "0": [ + { + "frameIndex": 0, + "resourceName": "PRSFX- Brutal Swing1.wav", + "volume": 100, + "pitch": 100, + "eventType": "AnimTimedSoundEvent" + } + ], + "5": [ + { + "frameIndex": 5, + "resourceName": "PRSFX- Brutal Swing2.wav", + "volume": 100, + "pitch": 100, + "eventType": "AnimTimedSoundEvent" + } + ], + "14": [ + { + "frameIndex": 14, + "resourceName": "PRSFX- Brutal Swing2.wav", + "volume": 100, + "pitch": 100, + "eventType": "AnimTimedSoundEvent" + } + ], + "31": [ + { + "frameIndex": 31, + "resourceName": "PRSFX- Brutal Swing2.wav", + "volume": 100, + "pitch": 100, + "eventType": "AnimTimedSoundEvent" + } + ], + "40": [ + { + "frameIndex": 40, + "resourceName": "PRSFX- Brutal Swing1.wav", + "volume": 100, + "pitch": 120, + "eventType": "AnimTimedSoundEvent" + } + ] + }, + "position": 2, + "hue": 0 +} \ No newline at end of file diff --git a/public/battle-anims/zippy-zap.json b/public/battle-anims/zippy-zap.json new file mode 100644 index 00000000000..ffc22e7b75a --- /dev/null +++ b/public/battle-anims/zippy-zap.json @@ -0,0 +1,3133 @@ +{ + "id": 716, + "graphic": "PRAS- Electric", + "frames": [ + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 7, + "opacity": 255, + "priority": 1, + "focus": 2 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 6, + "opacity": 255, + "priority": 1, + "focus": 2 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 5, + "opacity": 255, + "priority": 1, + "focus": 2 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 2, + "opacity": 255, + "priority": 1, + "focus": 2 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 4, + "opacity": 255, + "priority": 1, + "focus": 2 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 3, + "opacity": 255, + "priority": 1, + "focus": 2 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 1, + "opacity": 255, + "priority": 1, + "focus": 2 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 0, + "opacity": 255, + "priority": 1, + "focus": 2 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 4, + "opacity": 255, + "priority": 1, + "focus": 2 + }, + { + "x": 0, + "y": 0, + "zoomX": 50, + "zoomY": 50, + "angle": 126, + "visible": true, + "target": 2, + "graphicFrame": 46, + "opacity": 90, + "priority": 1, + "focus": 2 + }, + { + "x": 0, + "y": 0, + "zoomX": 50, + "zoomY": 50, + "angle": 306, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 46, + "opacity": 90, + "priority": 1, + "focus": 2 + }, + { + "x": 0, + "y": 0, + "zoomX": 50, + "zoomY": 50, + "angle": 195, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 46, + "opacity": 90, + "priority": 1, + "focus": 2 + }, + { + "x": 0, + "y": 0, + "zoomX": 50, + "zoomY": 50, + "angle": 101, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 46, + "opacity": 90, + "priority": 1, + "focus": 2 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + 25, + 25, + -26, + 0 + ], + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 3, + "opacity": 255, + "priority": 1, + "focus": 2 + }, + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "angle": 251, + "visible": true, + "target": 2, + "graphicFrame": 46, + "opacity": 90, + "priority": 1, + "focus": 2 + }, + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "angle": 155, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 46, + "opacity": 90, + "priority": 1, + "focus": 2 + }, + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "angle": 38, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 46, + "opacity": 90, + "priority": 1, + "focus": 2 + }, + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "angle": 91, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 46, + "opacity": 90, + "priority": 1, + "focus": 2 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + 51, + 51, + -51, + 0 + ], + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 0, + "y": 0, + "zoomX": 140, + "zoomY": 140, + "angle": 139, + "visible": true, + "target": 2, + "graphicFrame": 46, + "opacity": 90, + "priority": 1, + "focus": 2 + }, + { + "x": 0, + "y": 0, + "zoomX": 140, + "zoomY": 140, + "angle": 252, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 46, + "opacity": 90, + "priority": 1, + "focus": 2 + }, + { + "x": 0, + "y": 0, + "zoomX": 140, + "zoomY": 140, + "angle": 291, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 46, + "opacity": 90, + "priority": 1, + "focus": 2 + }, + { + "x": 0, + "y": 0, + "zoomX": 140, + "zoomY": 140, + "angle": 145, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 46, + "opacity": 90, + "priority": 1, + "focus": 2 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + 76, + 76, + -77, + 0 + ], + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 0, + "y": 0, + "zoomX": 170, + "zoomY": 170, + "angle": 205, + "visible": true, + "target": 2, + "graphicFrame": 46, + "opacity": 90, + "priority": 1, + "focus": 2 + }, + { + "x": 0, + "y": 0, + "zoomX": 170, + "zoomY": 170, + "angle": 45, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 46, + "opacity": 90, + "priority": 1, + "focus": 2 + }, + { + "x": 0, + "y": 0, + "zoomX": 170, + "zoomY": 170, + "angle": 228, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 46, + "opacity": 90, + "priority": 1, + "focus": 2 + }, + { + "x": 0, + "y": 0, + "zoomX": 170, + "zoomY": 170, + "angle": 121, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 46, + "opacity": 90, + "priority": 1, + "focus": 2 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + 102, + 102, + -102, + 0 + ], + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 0, + "y": 0, + "zoomX": 190, + "zoomY": 190, + "angle": 210, + "visible": true, + "target": 2, + "graphicFrame": 46, + "opacity": 90, + "priority": 1, + "focus": 2 + }, + { + "x": 0, + "y": 0, + "zoomX": 190, + "zoomY": 190, + "angle": 124, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 46, + "opacity": 90, + "priority": 1, + "focus": 2 + }, + { + "x": 0, + "y": 0, + "zoomX": 190, + "zoomY": 190, + "angle": 10, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 46, + "opacity": 90, + "priority": 1, + "focus": 2 + }, + { + "x": 0, + "y": 0, + "zoomX": 190, + "zoomY": 190, + "angle": 242, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 46, + "opacity": 90, + "priority": 1, + "focus": 2 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + 127, + 127, + -128, + 0 + ], + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 0, + "y": 0, + "zoomX": 200, + "zoomY": 200, + "angle": 253, + "visible": true, + "target": 2, + "graphicFrame": 46, + "opacity": 90, + "priority": 1, + "focus": 2 + }, + { + "x": 0, + "y": 0, + "zoomX": 200, + "zoomY": 200, + "angle": 53, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 46, + "opacity": 90, + "priority": 1, + "focus": 2 + }, + { + "x": 0, + "y": 0, + "zoomX": 200, + "zoomY": 200, + "angle": 225, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 46, + "opacity": 90, + "priority": 1, + "focus": 2 + }, + { + "x": 0, + "y": 0, + "zoomX": 200, + "zoomY": 200, + "angle": 324, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 46, + "opacity": 90, + "priority": 1, + "focus": 2 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + 153, + 153, + -153, + 0 + ], + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 0, + "y": 0, + "zoomX": 205, + "zoomY": 205, + "angle": 58, + "visible": true, + "target": 2, + "graphicFrame": 46, + "opacity": 90, + "priority": 1, + "focus": 2 + }, + { + "x": 0, + "y": 0, + "zoomX": 205, + "zoomY": 205, + "angle": 152, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 46, + "opacity": 90, + "priority": 1, + "focus": 2 + }, + { + "x": 0, + "y": 0, + "zoomX": 205, + "zoomY": 205, + "angle": 269, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 46, + "opacity": 90, + "priority": 1, + "focus": 2 + }, + { + "x": 0, + "y": 0, + "zoomX": 205, + "zoomY": 205, + "angle": 205, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 46, + "opacity": 90, + "priority": 1, + "focus": 2 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "tone": [ + 178, + 178, + -179, + 0 + ], + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 0, + "y": 0, + "zoomX": 210, + "zoomY": 210, + "angle": 339, + "visible": true, + "target": 2, + "graphicFrame": 46, + "opacity": 90, + "priority": 1, + "focus": 2 + }, + { + "x": 0, + "y": 0, + "zoomX": 210, + "zoomY": 210, + "angle": 133, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 46, + "opacity": 90, + "priority": 1, + "focus": 2 + }, + { + "x": 0, + "y": 0, + "zoomX": 210, + "zoomY": 210, + "angle": 39, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 46, + "opacity": 90, + "priority": 1, + "focus": 2 + }, + { + "x": 0, + "y": 0, + "zoomX": 210, + "zoomY": 210, + "angle": 346, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 46, + "opacity": 90, + "priority": 1, + "focus": 2 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 170, + "tone": [ + 204, + 204, + -204, + 0 + ], + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 0, + "y": 0, + "zoomX": 210, + "zoomY": 210, + "angle": 43, + "visible": true, + "target": 2, + "graphicFrame": 46, + "opacity": 90, + "priority": 1, + "focus": 2 + }, + { + "x": 0, + "y": 0, + "zoomX": 210, + "zoomY": 210, + "angle": 192, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 46, + "opacity": 90, + "priority": 1, + "focus": 2 + }, + { + "x": 0, + "y": 0, + "zoomX": 210, + "zoomY": 210, + "angle": 154, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 46, + "opacity": 90, + "priority": 1, + "focus": 2 + }, + { + "x": 0, + "y": 0, + "zoomX": 210, + "zoomY": 210, + "angle": 355, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 46, + "opacity": 90, + "priority": 1, + "focus": 2 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 85, + "tone": [ + 229, + 229, + -230, + 0 + ], + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 0, + "y": 0, + "zoomX": 210, + "zoomY": 210, + "angle": 160, + "visible": true, + "target": 2, + "graphicFrame": 46, + "opacity": 90, + "priority": 1, + "focus": 2 + }, + { + "x": 0, + "y": 0, + "zoomX": 210, + "zoomY": 210, + "angle": 74, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 46, + "opacity": 90, + "priority": 1, + "focus": 2 + }, + { + "x": 0, + "y": 0, + "zoomX": 210, + "zoomY": 210, + "angle": 187, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 46, + "opacity": 90, + "priority": 1, + "focus": 2 + }, + { + "x": 0, + "y": 0, + "zoomX": 210, + "zoomY": 210, + "angle": 223, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 46, + "opacity": 90, + "priority": 1, + "focus": 2 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "tone": [ + 255, + 255, + -255, + 0 + ], + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 0, + "y": 0, + "zoomX": 210, + "zoomY": 210, + "angle": 111, + "visible": true, + "target": 2, + "graphicFrame": 46, + "opacity": 90, + "priority": 1, + "focus": 2 + }, + { + "x": 0, + "y": 0, + "zoomX": 210, + "zoomY": 210, + "angle": 304, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 46, + "opacity": 90, + "priority": 1, + "focus": 2 + }, + { + "x": 0, + "y": 0, + "zoomX": 210, + "zoomY": 210, + "angle": 346, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 46, + "opacity": 90, + "priority": 1, + "focus": 2 + }, + { + "x": 0, + "y": 0, + "zoomX": 210, + "zoomY": 210, + "angle": 199, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 46, + "opacity": 90, + "priority": 1, + "focus": 2 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 0, + "y": 0, + "zoomX": 210, + "zoomY": 210, + "angle": 232, + "visible": true, + "target": 2, + "graphicFrame": 46, + "opacity": 90, + "priority": 1, + "focus": 2 + }, + { + "x": 0, + "y": 0, + "zoomX": 210, + "zoomY": 210, + "angle": 268, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 46, + "opacity": 90, + "priority": 1, + "focus": 2 + }, + { + "x": 0, + "y": 0, + "zoomX": 210, + "zoomY": 210, + "angle": 83, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 46, + "opacity": 90, + "priority": 1, + "focus": 2 + }, + { + "x": 0, + "y": 0, + "zoomX": 210, + "zoomY": 210, + "angle": 158, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 46, + "opacity": 90, + "priority": 1, + "focus": 2 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 0, + "y": 0, + "zoomX": 210, + "zoomY": 210, + "angle": 134, + "visible": true, + "target": 2, + "graphicFrame": 46, + "opacity": 90, + "priority": 1, + "focus": 2 + }, + { + "x": 0, + "y": 0, + "zoomX": 210, + "zoomY": 210, + "angle": 331, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 46, + "opacity": 90, + "priority": 1, + "focus": 2 + }, + { + "x": 0, + "y": 0, + "zoomX": 210, + "zoomY": 210, + "angle": 252, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 46, + "opacity": 90, + "priority": 1, + "focus": 2 + }, + { + "x": 0, + "y": 0, + "zoomX": 210, + "zoomY": 210, + "angle": 191, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 46, + "opacity": 90, + "priority": 1, + "focus": 2 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 0, + "y": 0, + "zoomX": 210, + "zoomY": 210, + "angle": 192, + "visible": true, + "target": 2, + "graphicFrame": 46, + "opacity": 90, + "priority": 1, + "focus": 2 + }, + { + "x": 0, + "y": 0, + "zoomX": 210, + "zoomY": 210, + "angle": 46, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 46, + "opacity": 90, + "priority": 1, + "focus": 2 + }, + { + "x": 0, + "y": 0, + "zoomX": 210, + "zoomY": 210, + "angle": 308, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 46, + "opacity": 90, + "priority": 1, + "focus": 2 + }, + { + "x": 0, + "y": 0, + "zoomX": 210, + "zoomY": 210, + "angle": 241, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 46, + "opacity": 90, + "priority": 1, + "focus": 2 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 0, + "y": 0, + "zoomX": 210, + "zoomY": 210, + "angle": 312, + "visible": true, + "target": 2, + "graphicFrame": 46, + "opacity": 90, + "priority": 1, + "focus": 2 + }, + { + "x": 0, + "y": 0, + "zoomX": 210, + "zoomY": 210, + "angle": 196, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 46, + "opacity": 90, + "priority": 1, + "focus": 2 + }, + { + "x": 0, + "y": 0, + "zoomX": 210, + "zoomY": 210, + "angle": 18, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 46, + "opacity": 90, + "priority": 1, + "focus": 2 + }, + { + "x": 0, + "y": 0, + "zoomX": 210, + "zoomY": 210, + "angle": 149, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 46, + "opacity": 90, + "priority": 1, + "focus": 2 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 0, + "y": 0, + "zoomX": 210, + "zoomY": 210, + "angle": 11, + "visible": true, + "target": 2, + "graphicFrame": 46, + "opacity": 90, + "priority": 1, + "focus": 2 + }, + { + "x": 0, + "y": 0, + "zoomX": 210, + "zoomY": 210, + "angle": 135, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 46, + "opacity": 90, + "priority": 1, + "focus": 2 + }, + { + "x": 0, + "y": 0, + "zoomX": 210, + "zoomY": 210, + "angle": 325, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 46, + "opacity": 90, + "priority": 1, + "focus": 2 + }, + { + "x": 0, + "y": 0, + "zoomX": 210, + "zoomY": 210, + "angle": 248, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 46, + "opacity": 90, + "priority": 1, + "focus": 2 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 32, + "y": -16, + "zoomX": 130, + "zoomY": 130, + "angle": 167, + "visible": true, + "target": 2, + "graphicFrame": 46, + "opacity": 60, + "tone": [ + 127, + 127, + 127, + 0 + ], + "priority": 1, + "focus": 3 + }, + { + "x": 32, + "y": -16, + "zoomX": 130, + "zoomY": 130, + "angle": 117, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 46, + "opacity": 60, + "tone": [ + 127, + 127, + 127, + 0 + ], + "priority": 1, + "focus": 3 + }, + { + "x": 32, + "y": -16, + "zoomX": 130, + "zoomY": 130, + "angle": 224, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 46, + "opacity": 60, + "tone": [ + 127, + 127, + 127, + 0 + ], + "priority": 1, + "focus": 3 + }, + { + "x": 32, + "y": -16, + "zoomX": 130, + "zoomY": 130, + "angle": 341, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 46, + "opacity": 60, + "tone": [ + 127, + 127, + 127, + 0 + ], + "priority": 1, + "focus": 3 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 64, + "y": -32, + "zoomX": 50, + "zoomY": 50, + "visible": true, + "target": 2, + "graphicFrame": 46, + "opacity": 30, + "tone": [ + 255, + 255, + 255, + 0 + ], + "priority": 1, + "focus": 3 + }, + { + "x": 64, + "y": -32, + "zoomX": 50, + "zoomY": 50, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 46, + "opacity": 30, + "tone": [ + 255, + 255, + 255, + 0 + ], + "priority": 1, + "focus": 3 + }, + { + "x": 64, + "y": -32, + "zoomX": 50, + "zoomY": 50, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 46, + "opacity": 30, + "tone": [ + 255, + 255, + 255, + 0 + ], + "priority": 1, + "focus": 3 + }, + { + "x": 64, + "y": -32, + "zoomX": 50, + "zoomY": 50, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 46, + "opacity": 30, + "tone": [ + 255, + 255, + 255, + 0 + ], + "priority": 1, + "focus": 3 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 112, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 26, + "opacity": 255, + "tone": [ + 0, + 75, + 0, + 0 + ], + "priority": 1, + "focus": 3 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 5, + "opacity": 255, + "priority": 1, + "focus": 1 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 27, + "opacity": 255, + "tone": [ + 75, + 150, + 0, + 0 + ], + "priority": 1, + "focus": 3 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 0, + "opacity": 255, + "priority": 1, + "focus": 1 + }, + { + "x": 144, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 28, + "opacity": 255, + "tone": [ + 0, + 75, + 0, + 0 + ], + "priority": 1, + "focus": 3 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 1, + "opacity": 255, + "priority": 1, + "focus": 1 + }, + { + "x": 64, + "y": -32, + "zoomX": 50, + "zoomY": 50, + "visible": true, + "target": 2, + "graphicFrame": 46, + "opacity": 30, + "tone": [ + 255, + 255, + 255, + 0 + ], + "priority": 1, + "focus": 3 + }, + { + "x": 64, + "y": -32, + "zoomX": 50, + "zoomY": 50, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 46, + "opacity": 30, + "tone": [ + 255, + 255, + 255, + 0 + ], + "priority": 1, + "focus": 3 + }, + { + "x": 64, + "y": -32, + "zoomX": 50, + "zoomY": 50, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 46, + "opacity": 30, + "tone": [ + 255, + 255, + 255, + 0 + ], + "priority": 1, + "focus": 3 + }, + { + "x": 64, + "y": -32, + "zoomX": 50, + "zoomY": 50, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 46, + "opacity": 30, + "tone": [ + 255, + 255, + 255, + 0 + ], + "priority": 1, + "focus": 3 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 2, + "opacity": 255, + "priority": 1, + "focus": 1 + }, + { + "x": 32, + "y": -16, + "zoomX": 130, + "zoomY": 130, + "angle": 10, + "visible": true, + "target": 2, + "graphicFrame": 46, + "opacity": 60, + "tone": [ + 127, + 127, + 127, + 0 + ], + "priority": 1, + "focus": 3 + }, + { + "x": 32, + "y": -16, + "zoomX": 130, + "zoomY": 130, + "angle": 111, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 46, + "opacity": 60, + "tone": [ + 127, + 127, + 127, + 0 + ], + "priority": 1, + "focus": 3 + }, + { + "x": 32, + "y": -16, + "zoomX": 130, + "zoomY": 130, + "angle": 192, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 46, + "opacity": 60, + "tone": [ + 127, + 127, + 127, + 0 + ], + "priority": 1, + "focus": 3 + }, + { + "x": 32, + "y": -16, + "zoomX": 130, + "zoomY": 130, + "angle": 252, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 46, + "opacity": 60, + "tone": [ + 127, + 127, + 127, + 0 + ], + "priority": 1, + "focus": 3 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 3, + "opacity": 255, + "priority": 1, + "focus": 1 + }, + { + "x": 0, + "y": 0, + "zoomX": 210, + "zoomY": 210, + "angle": 292, + "visible": true, + "target": 2, + "graphicFrame": 46, + "opacity": 90, + "priority": 1, + "focus": 3 + }, + { + "x": 0, + "y": 0, + "zoomX": 210, + "zoomY": 210, + "angle": 343, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 46, + "opacity": 90, + "priority": 1, + "focus": 3 + }, + { + "x": 0, + "y": 0, + "zoomX": 210, + "zoomY": 210, + "angle": 168, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 46, + "opacity": 90, + "priority": 1, + "focus": 3 + }, + { + "x": 0, + "y": 0, + "zoomX": 210, + "zoomY": 210, + "angle": 88, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 46, + "opacity": 90, + "priority": 1, + "focus": 3 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 4, + "opacity": 255, + "priority": 1, + "focus": 1 + }, + { + "x": 0, + "y": 0, + "zoomX": 210, + "zoomY": 210, + "angle": 341, + "visible": true, + "target": 2, + "graphicFrame": 46, + "opacity": 90, + "priority": 1, + "focus": 3 + }, + { + "x": 0, + "y": 0, + "zoomX": 210, + "zoomY": 210, + "angle": 129, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 46, + "opacity": 90, + "priority": 1, + "focus": 3 + }, + { + "x": 0, + "y": 0, + "zoomX": 210, + "zoomY": 210, + "angle": 227, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 46, + "opacity": 90, + "priority": 1, + "focus": 3 + }, + { + "x": 0, + "y": 0, + "zoomX": 210, + "zoomY": 210, + "angle": 286, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 46, + "opacity": 90, + "priority": 1, + "focus": 3 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 85, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 5, + "opacity": 255, + "priority": 1, + "focus": 1 + }, + { + "x": 0, + "y": 0, + "zoomX": 210, + "zoomY": 210, + "angle": 359, + "visible": true, + "target": 2, + "graphicFrame": 46, + "opacity": 90, + "priority": 1, + "focus": 3 + }, + { + "x": 0, + "y": 0, + "zoomX": 210, + "zoomY": 210, + "angle": 162, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 46, + "opacity": 90, + "priority": 1, + "focus": 3 + }, + { + "x": 0, + "y": 0, + "zoomX": 210, + "zoomY": 210, + "angle": 44, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 46, + "opacity": 90, + "priority": 1, + "focus": 3 + }, + { + "x": 0, + "y": 0, + "zoomX": 210, + "zoomY": 210, + "angle": 288, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 46, + "opacity": 90, + "priority": 1, + "focus": 3 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 175, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 6, + "opacity": 255, + "priority": 1, + "focus": 1 + }, + { + "x": 0, + "y": 0, + "zoomX": 210, + "zoomY": 210, + "angle": 15, + "visible": true, + "target": 2, + "graphicFrame": 46, + "opacity": 90, + "priority": 1, + "focus": 3 + }, + { + "x": 0, + "y": 0, + "zoomX": 210, + "zoomY": 210, + "angle": 170, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 46, + "opacity": 90, + "priority": 1, + "focus": 3 + }, + { + "x": 0, + "y": 0, + "zoomX": 210, + "zoomY": 210, + "angle": 226, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 46, + "opacity": 90, + "priority": 1, + "focus": 3 + }, + { + "x": 0, + "y": 0, + "zoomX": 210, + "zoomY": 210, + "angle": 73, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 46, + "opacity": 90, + "priority": 1, + "focus": 3 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 191, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 7, + "opacity": 214, + "priority": 1, + "focus": 1 + }, + { + "x": 0, + "y": 0, + "zoomX": 170, + "zoomY": 170, + "angle": 85, + "visible": true, + "target": 2, + "graphicFrame": 46, + "opacity": 72, + "priority": 1, + "focus": 3 + }, + { + "x": 0, + "y": 0, + "zoomX": 170, + "zoomY": 170, + "angle": 145, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 46, + "opacity": 72, + "priority": 1, + "focus": 3 + }, + { + "x": 0, + "y": 0, + "zoomX": 170, + "zoomY": 170, + "angle": 18, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 46, + "opacity": 72, + "priority": 1, + "focus": 3 + }, + { + "x": 0, + "y": 0, + "zoomX": 170, + "zoomY": 170, + "angle": 344, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 46, + "opacity": 72, + "priority": 1, + "focus": 3 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 207, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 2, + "graphicFrame": 8, + "opacity": 173, + "priority": 1, + "focus": 1 + }, + { + "x": 0, + "y": 0, + "zoomX": 130, + "zoomY": 130, + "angle": 12, + "visible": true, + "target": 2, + "graphicFrame": 46, + "opacity": 54, + "priority": 1, + "focus": 3 + }, + { + "x": 0, + "y": 0, + "zoomX": 130, + "zoomY": 130, + "angle": 282, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 46, + "opacity": 54, + "priority": 1, + "focus": 3 + }, + { + "x": 0, + "y": 0, + "zoomX": 130, + "zoomY": 130, + "angle": 341, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 46, + "opacity": 54, + "priority": 1, + "focus": 3 + }, + { + "x": 0, + "y": 0, + "zoomX": 130, + "zoomY": 130, + "angle": 107, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 46, + "opacity": 54, + "priority": 1, + "focus": 3 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 223, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 0, + "y": 0, + "zoomX": 90, + "zoomY": 90, + "angle": 76, + "visible": true, + "target": 2, + "graphicFrame": 46, + "opacity": 36, + "priority": 1, + "focus": 3 + }, + { + "x": 0, + "y": 0, + "zoomX": 90, + "zoomY": 90, + "angle": 115, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 46, + "opacity": 36, + "priority": 1, + "focus": 3 + }, + { + "x": 0, + "y": 0, + "zoomX": 90, + "zoomY": 90, + "angle": 284, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 46, + "opacity": 36, + "priority": 1, + "focus": 3 + }, + { + "x": 0, + "y": 0, + "zoomX": 90, + "zoomY": 90, + "angle": 227, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 46, + "opacity": 36, + "priority": 1, + "focus": 3 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 239, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + }, + { + "x": 0, + "y": 0, + "zoomX": 50, + "zoomY": 50, + "angle": 260, + "visible": true, + "target": 2, + "graphicFrame": 46, + "opacity": 18, + "priority": 1, + "focus": 3 + }, + { + "x": 0, + "y": 0, + "zoomX": 50, + "zoomY": 50, + "angle": 4, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 46, + "opacity": 18, + "priority": 1, + "focus": 3 + }, + { + "x": 0, + "y": 0, + "zoomX": 50, + "zoomY": 50, + "angle": 320, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 46, + "opacity": 18, + "priority": 1, + "focus": 3 + }, + { + "x": 0, + "y": 0, + "zoomX": 50, + "zoomY": 50, + "angle": 190, + "visible": true, + "blendType": 1, + "target": 2, + "graphicFrame": 46, + "opacity": 18, + "priority": 1, + "focus": 3 + } + ], + [ + { + "x": 0, + "y": 0, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 0, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 2 + }, + { + "x": 128, + "y": -64, + "zoomX": 100, + "zoomY": 100, + "visible": true, + "target": 1, + "graphicFrame": 0, + "opacity": 255, + "locked": true, + "priority": 1, + "focus": 1 + } + ] + ], + "frameTimedEvents": { + "0": [ + { + "frameIndex": 0, + "resourceName": "PRSFX- Zing Zap1.wav", + "volume": 100, + "pitch": 100, + "eventType": "AnimTimedSoundEvent" + } + ], + "9": [ + { + "frameIndex": 9, + "resourceName": "PRSFX- Zing Zap2.wav", + "volume": 100, + "pitch": 100, + "eventType": "AnimTimedSoundEvent" + } + ], + "25": [ + { + "frameIndex": 25, + "resourceName": "PRSFX- Zing Zap3.wav", + "volume": 65, + "pitch": 100, + "eventType": "AnimTimedSoundEvent" + } + ], + "28": [ + { + "frameIndex": 28, + "resourceName": "PRSFX- Zing Zap4.wav", + "volume": 100, + "pitch": 100, + "eventType": "AnimTimedSoundEvent" + } + ] + }, + "position": 2, + "hue": 0 +} \ No newline at end of file diff --git a/public/fonts/PokePT_Wansung.woff2 b/public/fonts/PokePT_Wansung.woff2 index 02b299ef7a0..15aab3eb4f4 100644 Binary files a/public/fonts/PokePT_Wansung.woff2 and b/public/fonts/PokePT_Wansung.woff2 differ diff --git a/public/images/egg/egg.json b/public/images/egg/egg.json index 420d9e57e7b..4e5f7a7de21 100644 --- a/public/images/egg/egg.json +++ b/public/images/egg/egg.json @@ -5,7 +5,7 @@ "format": "RGBA8888", "size": { "w": 138, - "h": 30 + "h": 31 }, "scale": 1, "frames": [ @@ -99,19 +99,19 @@ "trimmed": false, "sourceSize": { "w": 26, - "h": 30 + "h": 31 }, "spriteSourceSize": { "x": 0, "y": 0, "w": 26, - "h": 30 + "h": 31 }, "frame": { "x": 112, "y": 0, "w": 26, - "h": 30 + "h": 31 } } ] diff --git a/public/images/egg/egg.png b/public/images/egg/egg.png index 5269eff1680..2943e83b5ea 100644 Binary files a/public/images/egg/egg.png and b/public/images/egg/egg.png differ diff --git a/public/images/items.json b/public/images/items.json index c347790b92f..bb86b46aa4d 100644 --- a/public/images/items.json +++ b/public/images/items.json @@ -4,8 +4,8 @@ "image": "items.png", "format": "RGBA8888", "size": { - "w": 425, - "h": 425 + "w": 426, + "h": 426 }, "scale": 1, "frames": [ @@ -240,6 +240,27 @@ "h": 31 } }, + { + "filename": "inverse", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 32, + "h": 32 + }, + "spriteSourceSize": { + "x": 5, + "y": 1, + "w": 22, + "h": 30 + }, + "frame": { + "x": 0, + "y": 241, + "w": 22, + "h": 30 + } + }, { "filename": "ribbon_gen3", "rotated": false, @@ -256,7 +277,7 @@ }, "frame": { "x": 0, - "y": 241, + "y": 271, "w": 22, "h": 29 } @@ -277,7 +298,7 @@ }, "frame": { "x": 0, - "y": 270, + "y": 300, "w": 22, "h": 29 } @@ -298,7 +319,7 @@ }, "frame": { "x": 0, - "y": 299, + "y": 329, "w": 22, "h": 29 } @@ -340,7 +361,7 @@ }, "frame": { "x": 0, - "y": 328, + "y": 358, "w": 22, "h": 28 } @@ -361,28 +382,7 @@ }, "frame": { "x": 0, - "y": 356, - "w": 22, - "h": 28 - } - }, - { - "filename": "ribbon_gen6", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 32 - }, - "spriteSourceSize": { - "x": 5, - "y": 2, - "w": 22, - "h": 28 - }, - "frame": { - "x": 0, - "y": 384, + "y": 386, "w": 22, "h": 28 } @@ -619,7 +619,7 @@ } }, { - "filename": "elixir", + "filename": "lock_capsule", "rotated": false, "trimmed": true, "sourceSize": { @@ -628,15 +628,15 @@ }, "spriteSourceSize": { "x": 7, - "y": 4, - "w": 18, - "h": 24 + "y": 5, + "w": 19, + "h": 22 }, "frame": { "x": 407, "y": 0, - "w": 18, - "h": 24 + "w": 19, + "h": 22 } }, { @@ -724,7 +724,7 @@ } }, { - "filename": "ribbon_gen8", + "filename": "ribbon_gen6", "rotated": false, "trimmed": true, "sourceSize": { @@ -744,6 +744,27 @@ "h": 28 } }, + { + "filename": "ribbon_gen8", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 32, + "h": 32 + }, + "spriteSourceSize": { + "x": 5, + "y": 2, + "w": 22, + "h": 28 + }, + "frame": { + "x": 22, + "y": 237, + "w": 22, + "h": 28 + } + }, { "filename": "black_augurite", "rotated": false, @@ -760,7 +781,7 @@ }, "frame": { "x": 22, - "y": 237, + "y": 265, "w": 22, "h": 25 } @@ -781,7 +802,7 @@ }, "frame": { "x": 22, - "y": 262, + "y": 290, "w": 23, "h": 24 } @@ -802,7 +823,7 @@ }, "frame": { "x": 22, - "y": 286, + "y": 314, "w": 24, "h": 24 } @@ -823,7 +844,7 @@ }, "frame": { "x": 22, - "y": 310, + "y": 338, "w": 24, "h": 24 } @@ -844,7 +865,7 @@ }, "frame": { "x": 22, - "y": 334, + "y": 362, "w": 24, "h": 24 } @@ -865,13 +886,13 @@ }, "frame": { "x": 22, - "y": 358, + "y": 386, "w": 24, "h": 24 } }, { - "filename": "earth_plate", + "filename": "mega_bracelet", "rotated": false, "trimmed": true, "sourceSize": { @@ -879,20 +900,20 @@ "h": 32 }, "spriteSourceSize": { - "x": 4, - "y": 4, - "w": 24, - "h": 24 + "x": 6, + "y": 8, + "w": 20, + "h": 16 }, "frame": { "x": 22, - "y": 382, - "w": 24, - "h": 24 + "y": 410, + "w": 20, + "h": 16 } }, { - "filename": "coupon", + "filename": "relic_band", "rotated": false, "trimmed": true, "sourceSize": { @@ -900,37 +921,16 @@ "h": 32 }, "spriteSourceSize": { - "x": 4, - "y": 7, - "w": 23, - "h": 19 + "x": 7, + "y": 9, + "w": 17, + "h": 16 }, "frame": { - "x": 22, - "y": 406, - "w": 23, - "h": 19 - } - }, - { - "filename": "golden_mystic_ticket", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 32 - }, - "spriteSourceSize": { - "x": 4, - "y": 7, - "w": 23, - "h": 19 - }, - "frame": { - "x": 45, - "y": 406, - "w": 23, - "h": 19 + "x": 42, + "y": 410, + "w": 17, + "h": 16 } }, { @@ -955,7 +955,7 @@ } }, { - "filename": "mega_bracelet", + "filename": "abomasite", "rotated": false, "trimmed": true, "sourceSize": { @@ -963,20 +963,20 @@ "h": 32 }, "spriteSourceSize": { - "x": 6, + "x": 8, "y": 8, - "w": 20, + "w": 16, "h": 16 }, "frame": { "x": 28, "y": 70, - "w": 20, + "w": 16, "h": 16 } }, { - "filename": "calcium", + "filename": "absolite", "rotated": false, "trimmed": true, "sourceSize": { @@ -985,36 +985,15 @@ }, "spriteSourceSize": { "x": 8, - "y": 4, + "y": 8, "w": 16, - "h": 24 + "h": 16 }, "frame": { - "x": 39, - "y": 86, + "x": 44, + "y": 70, "w": 16, - "h": 24 - } - }, - { - "filename": "carbos", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 32 - }, - "spriteSourceSize": { - "x": 8, - "y": 4, - "w": 16, - "h": 24 - }, - "frame": { - "x": 39, - "y": 110, - "w": 16, - "h": 24 + "h": 16 } }, { @@ -1033,11 +1012,32 @@ }, "frame": { "x": 39, - "y": 134, + "y": 86, "w": 21, "h": 24 } }, + { + "filename": "earth_plate", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 32, + "h": 32 + }, + "spriteSourceSize": { + "x": 4, + "y": 4, + "w": 24, + "h": 24 + }, + "frame": { + "x": 39, + "y": 110, + "w": 24, + "h": 24 + } + }, { "filename": "fist_plate", "rotated": false, @@ -1054,7 +1054,7 @@ }, "frame": { "x": 39, - "y": 158, + "y": 134, "w": 24, "h": 24 } @@ -1075,7 +1075,7 @@ }, "frame": { "x": 39, - "y": 182, + "y": 158, "w": 24, "h": 24 } @@ -1095,8 +1095,8 @@ "h": 24 }, "frame": { - "x": 44, - "y": 206, + "x": 39, + "y": 182, "w": 24, "h": 24 } @@ -1117,7 +1117,7 @@ }, "frame": { "x": 44, - "y": 230, + "y": 206, "w": 24, "h": 24 } @@ -1137,8 +1137,8 @@ "h": 24 }, "frame": { - "x": 45, - "y": 254, + "x": 44, + "y": 230, "w": 24, "h": 24 } @@ -1158,8 +1158,8 @@ "h": 24 }, "frame": { - "x": 46, - "y": 278, + "x": 44, + "y": 254, "w": 24, "h": 24 } @@ -1179,8 +1179,8 @@ "h": 24 }, "frame": { - "x": 46, - "y": 302, + "x": 45, + "y": 278, "w": 24, "h": 24 } @@ -1201,7 +1201,7 @@ }, "frame": { "x": 46, - "y": 326, + "y": 302, "w": 24, "h": 24 } @@ -1222,7 +1222,7 @@ }, "frame": { "x": 46, - "y": 350, + "y": 326, "w": 24, "h": 24 } @@ -1243,137 +1243,11 @@ }, "frame": { "x": 46, - "y": 374, + "y": 350, "w": 24, "h": 24 } }, - { - "filename": "abomasite", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 32 - }, - "spriteSourceSize": { - "x": 8, - "y": 8, - "w": 16, - "h": 16 - }, - "frame": { - "x": 48, - "y": 70, - "w": 16, - "h": 16 - } - }, - { - "filename": "ether", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 32 - }, - "spriteSourceSize": { - "x": 7, - "y": 4, - "w": 18, - "h": 24 - }, - "frame": { - "x": 55, - "y": 86, - "w": 18, - "h": 24 - } - }, - { - "filename": "full_restore", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 32 - }, - "spriteSourceSize": { - "x": 7, - "y": 4, - "w": 18, - "h": 24 - }, - "frame": { - "x": 55, - "y": 110, - "w": 18, - "h": 24 - } - }, - { - "filename": "hp_up", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 32 - }, - "spriteSourceSize": { - "x": 8, - "y": 4, - "w": 16, - "h": 24 - }, - "frame": { - "x": 60, - "y": 134, - "w": 16, - "h": 24 - } - }, - { - "filename": "iron", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 32 - }, - "spriteSourceSize": { - "x": 8, - "y": 4, - "w": 16, - "h": 24 - }, - "frame": { - "x": 63, - "y": 158, - "w": 16, - "h": 24 - } - }, - { - "filename": "kings_rock", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 32 - }, - "spriteSourceSize": { - "x": 5, - "y": 4, - "w": 23, - "h": 24 - }, - "frame": { - "x": 63, - "y": 182, - "w": 23, - "h": 24 - } - }, { "filename": "lucky_punch_great", "rotated": false, @@ -1389,180 +1263,12 @@ "h": 24 }, "frame": { - "x": 68, - "y": 206, - "w": 24, - "h": 24 - } - }, - { - "filename": "lucky_punch_master", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 32 - }, - "spriteSourceSize": { - "x": 4, - "y": 4, - "w": 24, - "h": 24 - }, - "frame": { - "x": 68, - "y": 230, - "w": 24, - "h": 24 - } - }, - { - "filename": "lucky_punch_ultra", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 32 - }, - "spriteSourceSize": { - "x": 4, - "y": 4, - "w": 24, - "h": 24 - }, - "frame": { - "x": 69, - "y": 254, - "w": 24, - "h": 24 - } - }, - { - "filename": "lustrous_globe", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 32 - }, - "spriteSourceSize": { - "x": 4, - "y": 4, - "w": 24, - "h": 24 - }, - "frame": { - "x": 70, - "y": 278, - "w": 24, - "h": 24 - } - }, - { - "filename": "meadow_plate", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 32 - }, - "spriteSourceSize": { - "x": 4, - "y": 4, - "w": 24, - "h": 24 - }, - "frame": { - "x": 70, - "y": 302, - "w": 24, - "h": 24 - } - }, - { - "filename": "mind_plate", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 32 - }, - "spriteSourceSize": { - "x": 4, - "y": 4, - "w": 24, - "h": 24 - }, - "frame": { - "x": 70, - "y": 326, - "w": 24, - "h": 24 - } - }, - { - "filename": "muscle_band", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 32 - }, - "spriteSourceSize": { - "x": 4, - "y": 4, - "w": 24, - "h": 24 - }, - "frame": { - "x": 70, - "y": 350, - "w": 24, - "h": 24 - } - }, - { - "filename": "pixie_plate", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 32 - }, - "spriteSourceSize": { - "x": 4, - "y": 4, - "w": 24, - "h": 24 - }, - "frame": { - "x": 70, + "x": 46, "y": 374, "w": 24, "h": 24 } }, - { - "filename": "salac_berry", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 32 - }, - "spriteSourceSize": { - "x": 4, - "y": 4, - "w": 24, - "h": 24 - }, - "frame": { - "x": 68, - "y": 398, - "w": 24, - "h": 24 - } - }, { "filename": "ability_capsule", "rotated": false, @@ -1585,7 +1291,7 @@ } }, { - "filename": "lure", + "filename": "calcium", "rotated": false, "trimmed": true, "sourceSize": { @@ -1595,39 +1301,18 @@ "spriteSourceSize": { "x": 8, "y": 4, - "w": 17, - "h": 24 - }, - "frame": { - "x": 92, - "y": 398, - "w": 17, - "h": 24 - } - }, - { - "filename": "max_elixir", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 32 - }, - "spriteSourceSize": { - "x": 7, - "y": 4, - "w": 18, + "w": 16, "h": 24 }, "frame": { "x": 59, "y": 27, - "w": 18, + "w": 16, "h": 24 } }, { - "filename": "scanner", + "filename": "lucky_punch_master", "rotated": false, "trimmed": true, "sourceSize": { @@ -1641,14 +1326,14 @@ "h": 24 }, "frame": { - "x": 77, + "x": 75, "y": 26, "w": 24, "h": 24 } }, { - "filename": "silk_scarf", + "filename": "lucky_punch_ultra", "rotated": false, "trimmed": true, "sourceSize": { @@ -1662,12 +1347,33 @@ "h": 24 }, "frame": { - "x": 101, + "x": 99, "y": 26, "w": 24, "h": 24 } }, + { + "filename": "revive", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 32, + "h": 32 + }, + "spriteSourceSize": { + "x": 10, + "y": 8, + "w": 12, + "h": 17 + }, + "frame": { + "x": 123, + "y": 26, + "w": 12, + "h": 17 + } + }, { "filename": "big_mushroom", "rotated": false, @@ -1710,6 +1416,69 @@ "h": 23 } }, + { + "filename": "elixir", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 32, + "h": 32 + }, + "spriteSourceSize": { + "x": 7, + "y": 4, + "w": 18, + "h": 24 + }, + "frame": { + "x": 60, + "y": 70, + "w": 18, + "h": 24 + } + }, + { + "filename": "coin_case", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 32, + "h": 32 + }, + "spriteSourceSize": { + "x": 4, + "y": 5, + "w": 24, + "h": 23 + }, + "frame": { + "x": 78, + "y": 73, + "w": 24, + "h": 23 + } + }, + { + "filename": "kings_rock", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 32, + "h": 32 + }, + "spriteSourceSize": { + "x": 5, + "y": 4, + "w": 23, + "h": 24 + }, + "frame": { + "x": 102, + "y": 50, + "w": 23, + "h": 24 + } + }, { "filename": "berry_pouch", "rotated": false, @@ -1726,11 +1495,284 @@ }, "frame": { "x": 102, - "y": 50, + "y": 74, "w": 23, "h": 23 } }, + { + "filename": "aerodactylite", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 32, + "h": 32 + }, + "spriteSourceSize": { + "x": 8, + "y": 8, + "w": 16, + "h": 16 + }, + "frame": { + "x": 60, + "y": 94, + "w": 16, + "h": 16 + } + }, + { + "filename": "carbos", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 32, + "h": 32 + }, + "spriteSourceSize": { + "x": 8, + "y": 4, + "w": 16, + "h": 24 + }, + "frame": { + "x": 63, + "y": 110, + "w": 16, + "h": 24 + } + }, + { + "filename": "ether", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 32, + "h": 32 + }, + "spriteSourceSize": { + "x": 7, + "y": 4, + "w": 18, + "h": 24 + }, + "frame": { + "x": 63, + "y": 134, + "w": 18, + "h": 24 + } + }, + { + "filename": "full_restore", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 32, + "h": 32 + }, + "spriteSourceSize": { + "x": 7, + "y": 4, + "w": 18, + "h": 24 + }, + "frame": { + "x": 63, + "y": 158, + "w": 18, + "h": 24 + } + }, + { + "filename": "lustrous_globe", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 32, + "h": 32 + }, + "spriteSourceSize": { + "x": 4, + "y": 4, + "w": 24, + "h": 24 + }, + "frame": { + "x": 63, + "y": 182, + "w": 24, + "h": 24 + } + }, + { + "filename": "max_revive", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 32, + "h": 32 + }, + "spriteSourceSize": { + "x": 5, + "y": 4, + "w": 22, + "h": 24 + }, + "frame": { + "x": 68, + "y": 206, + "w": 22, + "h": 24 + } + }, + { + "filename": "meadow_plate", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 32, + "h": 32 + }, + "spriteSourceSize": { + "x": 4, + "y": 4, + "w": 24, + "h": 24 + }, + "frame": { + "x": 68, + "y": 230, + "w": 24, + "h": 24 + } + }, + { + "filename": "mind_plate", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 32, + "h": 32 + }, + "spriteSourceSize": { + "x": 4, + "y": 4, + "w": 24, + "h": 24 + }, + "frame": { + "x": 68, + "y": 254, + "w": 24, + "h": 24 + } + }, + { + "filename": "muscle_band", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 32, + "h": 32 + }, + "spriteSourceSize": { + "x": 4, + "y": 4, + "w": 24, + "h": 24 + }, + "frame": { + "x": 69, + "y": 278, + "w": 24, + "h": 24 + } + }, + { + "filename": "pixie_plate", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 32, + "h": 32 + }, + "spriteSourceSize": { + "x": 4, + "y": 4, + "w": 24, + "h": 24 + }, + "frame": { + "x": 70, + "y": 302, + "w": 24, + "h": 24 + } + }, + { + "filename": "salac_berry", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 32, + "h": 32 + }, + "spriteSourceSize": { + "x": 4, + "y": 4, + "w": 24, + "h": 24 + }, + "frame": { + "x": 70, + "y": 326, + "w": 24, + "h": 24 + } + }, + { + "filename": "scanner", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 32, + "h": 32 + }, + "spriteSourceSize": { + "x": 4, + "y": 4, + "w": 24, + "h": 24 + }, + "frame": { + "x": 70, + "y": 350, + "w": 24, + "h": 24 + } + }, + { + "filename": "silk_scarf", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 32, + "h": 32 + }, + "spriteSourceSize": { + "x": 4, + "y": 4, + "w": 24, + "h": 24 + }, + "frame": { + "x": 70, + "y": 374, + "w": 24, + "h": 24 + } + }, { "filename": "sky_plate", "rotated": false, @@ -1746,14 +1788,14 @@ "h": 24 }, "frame": { - "x": 125, - "y": 36, + "x": 59, + "y": 398, "w": 24, "h": 24 } }, { - "filename": "choice_specs", + "filename": "hp_up", "rotated": false, "trimmed": true, "sourceSize": { @@ -1761,41 +1803,20 @@ "h": 32 }, "spriteSourceSize": { - "x": 4, - "y": 8, - "w": 24, - "h": 18 - }, - "frame": { - "x": 125, - "y": 60, - "w": 24, - "h": 18 - } - }, - { - "filename": "max_ether", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 32 - }, - "spriteSourceSize": { - "x": 7, + "x": 8, "y": 4, - "w": 18, + "w": 16, "h": 24 }, "frame": { - "x": 149, - "y": 36, - "w": 18, + "x": 83, + "y": 398, + "w": 16, "h": 24 } }, { - "filename": "adamant_crystal", + "filename": "reveal_glass", "rotated": false, "trimmed": true, "sourceSize": { @@ -1804,15 +1825,36 @@ }, "spriteSourceSize": { "x": 4, - "y": 6, + "y": 4, "w": 23, - "h": 21 + "h": 24 }, "frame": { - "x": 149, - "y": 60, + "x": 79, + "y": 96, "w": 23, - "h": 21 + "h": 24 + } + }, + { + "filename": "dynamax_band", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 32, + "h": 32 + }, + "spriteSourceSize": { + "x": 4, + "y": 4, + "w": 23, + "h": 23 + }, + "frame": { + "x": 102, + "y": 97, + "w": 23, + "h": 23 } }, { @@ -1830,8 +1872,8 @@ "h": 24 }, "frame": { - "x": 167, - "y": 21, + "x": 81, + "y": 120, "w": 24, "h": 24 } @@ -1851,12 +1893,54 @@ "h": 24 }, "frame": { - "x": 191, - "y": 21, + "x": 81, + "y": 144, "w": 24, "h": 24 } }, + { + "filename": "oval_charm", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 32, + "h": 32 + }, + "spriteSourceSize": { + "x": 6, + "y": 4, + "w": 21, + "h": 24 + }, + "frame": { + "x": 105, + "y": 120, + "w": 21, + "h": 24 + } + }, + { + "filename": "shiny_charm", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 32, + "h": 32 + }, + "spriteSourceSize": { + "x": 6, + "y": 4, + "w": 21, + "h": 24 + }, + "frame": { + "x": 105, + "y": 144, + "w": 21, + "h": 24 + } + }, { "filename": "stone_plate", "rotated": false, @@ -1872,12 +1956,33 @@ "h": 24 }, "frame": { - "x": 215, - "y": 21, + "x": 87, + "y": 168, "w": 24, "h": 24 } }, + { + "filename": "iron", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 32, + "h": 32 + }, + "spriteSourceSize": { + "x": 8, + "y": 4, + "w": 16, + "h": 24 + }, + "frame": { + "x": 111, + "y": 168, + "w": 16, + "h": 24 + } + }, { "filename": "sun_stone", "rotated": false, @@ -1893,12 +1998,33 @@ "h": 24 }, "frame": { - "x": 239, - "y": 21, + "x": 90, + "y": 192, "w": 24, "h": 24 } }, + { + "filename": "lure", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 32, + "h": 32 + }, + "spriteSourceSize": { + "x": 8, + "y": 4, + "w": 17, + "h": 24 + }, + "frame": { + "x": 114, + "y": 192, + "w": 17, + "h": 24 + } + }, { "filename": "toxic_plate", "rotated": false, @@ -1914,8 +2040,8 @@ "h": 24 }, "frame": { - "x": 263, - "y": 21, + "x": 92, + "y": 216, "w": 24, "h": 24 } @@ -1935,14 +2061,14 @@ "h": 24 }, "frame": { - "x": 287, - "y": 21, + "x": 92, + "y": 240, "w": 24, "h": 24 } }, { - "filename": "silver_powder", + "filename": "max_elixir", "rotated": false, "trimmed": true, "sourceSize": { @@ -1950,41 +2076,20 @@ "h": 32 }, "spriteSourceSize": { - "x": 4, - "y": 11, - "w": 24, - "h": 15 - }, - "frame": { - "x": 167, - "y": 45, - "w": 24, - "h": 15 - } - }, - { - "filename": "max_revive", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 32 - }, - "spriteSourceSize": { - "x": 5, + "x": 7, "y": 4, - "w": 22, + "w": 18, "h": 24 }, "frame": { - "x": 311, - "y": 21, - "w": 22, + "x": 116, + "y": 216, + "w": 18, "h": 24 } }, { - "filename": "coin_case", + "filename": "max_ether", "rotated": false, "trimmed": true, "sourceSize": { @@ -1992,16 +2097,16 @@ "h": 32 }, "spriteSourceSize": { - "x": 4, - "y": 5, - "w": 24, - "h": 23 + "x": 7, + "y": 4, + "w": 18, + "h": 24 }, "frame": { - "x": 333, - "y": 20, - "w": 24, - "h": 23 + "x": 116, + "y": 240, + "w": 18, + "h": 24 } }, { @@ -2019,12 +2124,75 @@ "h": 23 }, "frame": { - "x": 357, - "y": 20, + "x": 93, + "y": 264, "w": 24, "h": 23 } }, + { + "filename": "black_belt", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 32, + "h": 32 + }, + "spriteSourceSize": { + "x": 5, + "y": 4, + "w": 22, + "h": 23 + }, + "frame": { + "x": 117, + "y": 264, + "w": 22, + "h": 23 + } + }, + { + "filename": "silver_powder", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 32, + "h": 32 + }, + "spriteSourceSize": { + "x": 4, + "y": 11, + "w": 24, + "h": 15 + }, + "frame": { + "x": 93, + "y": 287, + "w": 24, + "h": 15 + } + }, + { + "filename": "griseous_core", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 32, + "h": 32 + }, + "spriteSourceSize": { + "x": 5, + "y": 5, + "w": 23, + "h": 23 + }, + "frame": { + "x": 94, + "y": 302, + "w": 23, + "h": 23 + } + }, { "filename": "hearthflame_mask", "rotated": false, @@ -2040,138 +2208,12 @@ "h": 23 }, "frame": { - "x": 381, - "y": 20, + "x": 94, + "y": 325, "w": 24, "h": 23 } }, - { - "filename": "red_orb", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 32 - }, - "spriteSourceSize": { - "x": 6, - "y": 4, - "w": 20, - "h": 24 - }, - "frame": { - "x": 405, - "y": 24, - "w": 20, - "h": 24 - } - }, - { - "filename": "amulet_coin", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 32 - }, - "spriteSourceSize": { - "x": 6, - "y": 5, - "w": 23, - "h": 21 - }, - "frame": { - "x": 172, - "y": 60, - "w": 23, - "h": 21 - } - }, - { - "filename": "candy_overlay", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 32 - }, - "spriteSourceSize": { - "x": 8, - "y": 12, - "w": 16, - "h": 15 - }, - "frame": { - "x": 191, - "y": 45, - "w": 16, - "h": 15 - } - }, - { - "filename": "dragon_scale", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 32 - }, - "spriteSourceSize": { - "x": 4, - "y": 8, - "w": 24, - "h": 18 - }, - "frame": { - "x": 207, - "y": 45, - "w": 24, - "h": 18 - } - }, - { - "filename": "exp_balance", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 32 - }, - "spriteSourceSize": { - "x": 4, - "y": 5, - "w": 24, - "h": 22 - }, - "frame": { - "x": 231, - "y": 45, - "w": 24, - "h": 22 - } - }, - { - "filename": "exp_share", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 32 - }, - "spriteSourceSize": { - "x": 4, - "y": 5, - "w": 24, - "h": 22 - }, - "frame": { - "x": 255, - "y": 45, - "w": 24, - "h": 22 - } - }, { "filename": "leppa_berry", "rotated": false, @@ -2187,8 +2229,8 @@ "h": 23 }, "frame": { - "x": 279, - "y": 45, + "x": 94, + "y": 348, "w": 24, "h": 23 } @@ -2208,264 +2250,12 @@ "h": 23 }, "frame": { - "x": 303, - "y": 45, + "x": 94, + "y": 371, "w": 24, "h": 23 } }, - { - "filename": "revive", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 32 - }, - "spriteSourceSize": { - "x": 10, - "y": 8, - "w": 12, - "h": 17 - }, - "frame": { - "x": 195, - "y": 60, - "w": 12, - "h": 17 - } - }, - { - "filename": "icy_reins_of_unity", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 32 - }, - "spriteSourceSize": { - "x": 4, - "y": 7, - "w": 24, - "h": 20 - }, - "frame": { - "x": 207, - "y": 63, - "w": 24, - "h": 20 - } - }, - { - "filename": "metal_powder", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 32 - }, - "spriteSourceSize": { - "x": 4, - "y": 6, - "w": 24, - "h": 20 - }, - "frame": { - "x": 231, - "y": 67, - "w": 24, - "h": 20 - } - }, - { - "filename": "peat_block", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 32 - }, - "spriteSourceSize": { - "x": 4, - "y": 5, - "w": 24, - "h": 22 - }, - "frame": { - "x": 255, - "y": 67, - "w": 24, - "h": 22 - } - }, - { - "filename": "twisted_spoon", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 32 - }, - "spriteSourceSize": { - "x": 4, - "y": 5, - "w": 24, - "h": 23 - }, - "frame": { - "x": 279, - "y": 68, - "w": 24, - "h": 23 - } - }, - { - "filename": "dynamax_band", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 32 - }, - "spriteSourceSize": { - "x": 4, - "y": 4, - "w": 23, - "h": 23 - }, - "frame": { - "x": 303, - "y": 68, - "w": 23, - "h": 23 - } - }, - { - "filename": "black_belt", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 32 - }, - "spriteSourceSize": { - "x": 5, - "y": 4, - "w": 22, - "h": 23 - }, - "frame": { - "x": 327, - "y": 45, - "w": 22, - "h": 23 - } - }, - { - "filename": "griseous_core", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 32 - }, - "spriteSourceSize": { - "x": 5, - "y": 5, - "w": 23, - "h": 23 - }, - "frame": { - "x": 326, - "y": 68, - "w": 23, - "h": 23 - } - }, - { - "filename": "reveal_glass", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 32 - }, - "spriteSourceSize": { - "x": 4, - "y": 4, - "w": 23, - "h": 24 - }, - "frame": { - "x": 349, - "y": 43, - "w": 23, - "h": 24 - } - }, - { - "filename": "leek", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 32 - }, - "spriteSourceSize": { - "x": 4, - "y": 5, - "w": 23, - "h": 23 - }, - "frame": { - "x": 372, - "y": 43, - "w": 23, - "h": 23 - } - }, - { - "filename": "rare_candy", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 32 - }, - "spriteSourceSize": { - "x": 4, - "y": 5, - "w": 23, - "h": 23 - }, - "frame": { - "x": 349, - "y": 67, - "w": 23, - "h": 23 - } - }, - { - "filename": "rarer_candy", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 32 - }, - "spriteSourceSize": { - "x": 4, - "y": 5, - "w": 23, - "h": 23 - }, - "frame": { - "x": 372, - "y": 66, - "w": 23, - "h": 23 - } - }, { "filename": "bug_tera_shard", "rotated": false, @@ -2481,14 +2271,98 @@ "h": 23 }, "frame": { - "x": 395, - "y": 48, + "x": 117, + "y": 287, "w": 22, "h": 23 } }, { - "filename": "auspicious_armor", + "filename": "red_orb", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 32, + "h": 32 + }, + "spriteSourceSize": { + "x": 6, + "y": 4, + "w": 20, + "h": 24 + }, + "frame": { + "x": 99, + "y": 394, + "w": 20, + "h": 24 + } + }, + { + "filename": "candy_overlay", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 32, + "h": 32 + }, + "spriteSourceSize": { + "x": 8, + "y": 12, + "w": 16, + "h": 15 + }, + "frame": { + "x": 117, + "y": 310, + "w": 16, + "h": 15 + } + }, + { + "filename": "max_lure", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 32, + "h": 32 + }, + "spriteSourceSize": { + "x": 8, + "y": 4, + "w": 17, + "h": 24 + }, + "frame": { + "x": 118, + "y": 325, + "w": 17, + "h": 24 + } + }, + { + "filename": "max_potion", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 32, + "h": 32 + }, + "spriteSourceSize": { + "x": 7, + "y": 4, + "w": 18, + "h": 24 + }, + "frame": { + "x": 118, + "y": 349, + "w": 18, + "h": 24 + } + }, + { + "filename": "adamant_crystal", "rotated": false, "trimmed": true, "sourceSize": { @@ -2497,78 +2371,15 @@ }, "spriteSourceSize": { "x": 4, - "y": 5, - "w": 23, - "h": 21 - }, - "frame": { - "x": 395, - "y": 71, - "w": 23, - "h": 21 - } - }, - { - "filename": "binding_band", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 32 - }, - "spriteSourceSize": { - "x": 5, "y": 6, "w": 23, - "h": 20 + "h": 21 }, "frame": { - "x": 372, - "y": 89, + "x": 118, + "y": 373, "w": 23, - "h": 20 - } - }, - { - "filename": "healing_charm", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 32 - }, - "spriteSourceSize": { - "x": 5, - "y": 5, - "w": 23, - "h": 22 - }, - "frame": { - "x": 349, - "y": 90, - "w": 23, - "h": 22 - } - }, - { - "filename": "black_glasses", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 32 - }, - "spriteSourceSize": { - "x": 4, - "y": 8, - "w": 23, - "h": 17 - }, - "frame": { - "x": 395, - "y": 92, - "w": 23, - "h": 17 + "h": 21 } }, { @@ -2586,12 +2397,96 @@ "h": 23 }, "frame": { - "x": 73, - "y": 73, + "x": 119, + "y": 394, "w": 22, "h": 23 } }, + { + "filename": "choice_specs", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 32, + "h": 32 + }, + "spriteSourceSize": { + "x": 4, + "y": 8, + "w": 24, + "h": 18 + }, + "frame": { + "x": 135, + "y": 36, + "w": 24, + "h": 18 + } + }, + { + "filename": "twisted_spoon", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 32, + "h": 32 + }, + "spriteSourceSize": { + "x": 4, + "y": 5, + "w": 24, + "h": 23 + }, + "frame": { + "x": 125, + "y": 54, + "w": 24, + "h": 23 + } + }, + { + "filename": "exp_balance", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 32, + "h": 32 + }, + "spriteSourceSize": { + "x": 4, + "y": 5, + "w": 24, + "h": 22 + }, + "frame": { + "x": 125, + "y": 77, + "w": 24, + "h": 22 + } + }, + { + "filename": "amulet_coin", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 32, + "h": 32 + }, + "spriteSourceSize": { + "x": 6, + "y": 5, + "w": 23, + "h": 21 + }, + "frame": { + "x": 125, + "y": 99, + "w": 23, + "h": 21 + } + }, { "filename": "dragon_tera_shard", "rotated": false, @@ -2607,8 +2502,8 @@ "h": 23 }, "frame": { - "x": 95, - "y": 73, + "x": 126, + "y": 120, "w": 22, "h": 23 } @@ -2628,56 +2523,14 @@ "h": 23 }, "frame": { - "x": 73, - "y": 96, + "x": 126, + "y": 143, "w": 22, "h": 23 } }, { - "filename": "fairy_tera_shard", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 32 - }, - "spriteSourceSize": { - "x": 6, - "y": 4, - "w": 22, - "h": 23 - }, - "frame": { - "x": 95, - "y": 96, - "w": 22, - "h": 23 - } - }, - { - "filename": "fighting_tera_shard", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 32 - }, - "spriteSourceSize": { - "x": 6, - "y": 4, - "w": 22, - "h": 23 - }, - "frame": { - "x": 117, - "y": 78, - "w": 22, - "h": 23 - } - }, - { - "filename": "blank_memory", + "filename": "dragon_fang", "rotated": false, "trimmed": true, "sourceSize": { @@ -2687,102 +2540,18 @@ "spriteSourceSize": { "x": 5, "y": 5, - "w": 22, - "h": 22 - }, - "frame": { - "x": 117, - "y": 101, - "w": 22, - "h": 22 - } - }, - { - "filename": "fire_stone", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 32 - }, - "spriteSourceSize": { - "x": 5, - "y": 5, - "w": 22, + "w": 21, "h": 23 }, "frame": { - "x": 139, - "y": 81, - "w": 22, + "x": 127, + "y": 166, + "w": 21, "h": 23 } }, { - "filename": "fire_tera_shard", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 32 - }, - "spriteSourceSize": { - "x": 6, - "y": 4, - "w": 22, - "h": 23 - }, - "frame": { - "x": 161, - "y": 81, - "w": 22, - "h": 23 - } - }, - { - "filename": "quick_powder", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 32 - }, - "spriteSourceSize": { - "x": 4, - "y": 6, - "w": 24, - "h": 20 - }, - "frame": { - "x": 139, - "y": 104, - "w": 24, - "h": 20 - } - }, - { - "filename": "big_nugget", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 32 - }, - "spriteSourceSize": { - "x": 6, - "y": 6, - "w": 20, - "h": 20 - }, - "frame": { - "x": 163, - "y": 104, - "w": 20, - "h": 20 - } - }, - { - "filename": "max_lure", + "filename": "super_lure", "rotated": false, "trimmed": true, "sourceSize": { @@ -2796,348 +2565,12 @@ "h": 24 }, "frame": { - "x": 183, - "y": 81, + "x": 131, + "y": 189, "w": 17, "h": 24 } }, - { - "filename": "rusted_sword", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 32 - }, - "spriteSourceSize": { - "x": 4, - "y": 5, - "w": 23, - "h": 22 - }, - "frame": { - "x": 200, - "y": 83, - "w": 23, - "h": 22 - } - }, - { - "filename": "rusted_shield", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 32 - }, - "spriteSourceSize": { - "x": 4, - "y": 6, - "w": 24, - "h": 20 - }, - "frame": { - "x": 183, - "y": 105, - "w": 24, - "h": 20 - } - }, - { - "filename": "apicot_berry", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 32 - }, - "spriteSourceSize": { - "x": 6, - "y": 6, - "w": 19, - "h": 20 - }, - "frame": { - "x": 207, - "y": 105, - "w": 19, - "h": 20 - } - }, - { - "filename": "relic_crown", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 32 - }, - "spriteSourceSize": { - "x": 4, - "y": 7, - "w": 23, - "h": 18 - }, - "frame": { - "x": 223, - "y": 87, - "w": 23, - "h": 18 - } - }, - { - "filename": "blue_orb", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 32 - }, - "spriteSourceSize": { - "x": 6, - "y": 6, - "w": 20, - "h": 20 - }, - "frame": { - "x": 226, - "y": 105, - "w": 20, - "h": 20 - } - }, - { - "filename": "flying_tera_shard", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 32 - }, - "spriteSourceSize": { - "x": 6, - "y": 4, - "w": 22, - "h": 23 - }, - "frame": { - "x": 246, - "y": 89, - "w": 22, - "h": 23 - } - }, - { - "filename": "blunder_policy", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 32 - }, - "spriteSourceSize": { - "x": 5, - "y": 6, - "w": 22, - "h": 19 - }, - "frame": { - "x": 246, - "y": 112, - "w": 22, - "h": 19 - } - }, - { - "filename": "focus_sash", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 32 - }, - "spriteSourceSize": { - "x": 5, - "y": 4, - "w": 22, - "h": 23 - }, - "frame": { - "x": 268, - "y": 91, - "w": 22, - "h": 23 - } - }, - { - "filename": "ghost_tera_shard", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 32 - }, - "spriteSourceSize": { - "x": 6, - "y": 4, - "w": 22, - "h": 23 - }, - "frame": { - "x": 290, - "y": 91, - "w": 22, - "h": 23 - } - }, - { - "filename": "grass_tera_shard", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 32 - }, - "spriteSourceSize": { - "x": 6, - "y": 4, - "w": 22, - "h": 23 - }, - "frame": { - "x": 312, - "y": 91, - "w": 22, - "h": 23 - } - }, - { - "filename": "full_heal", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 32 - }, - "spriteSourceSize": { - "x": 9, - "y": 4, - "w": 15, - "h": 23 - }, - "frame": { - "x": 334, - "y": 91, - "w": 15, - "h": 23 - } - }, - { - "filename": "sacred_ash", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 32 - }, - "spriteSourceSize": { - "x": 4, - "y": 7, - "w": 24, - "h": 20 - }, - "frame": { - "x": 268, - "y": 114, - "w": 24, - "h": 20 - } - }, - { - "filename": "shadow_reins_of_unity", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 32 - }, - "spriteSourceSize": { - "x": 4, - "y": 7, - "w": 24, - "h": 20 - }, - "frame": { - "x": 292, - "y": 114, - "w": 24, - "h": 20 - } - }, - { - "filename": "soft_sand", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 32 - }, - "spriteSourceSize": { - "x": 4, - "y": 7, - "w": 24, - "h": 20 - }, - "frame": { - "x": 316, - "y": 114, - "w": 24, - "h": 20 - } - }, - { - "filename": "eviolite", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 32 - }, - "spriteSourceSize": { - "x": 8, - "y": 8, - "w": 15, - "h": 15 - }, - "frame": { - "x": 73, - "y": 119, - "w": 15, - "h": 15 - } - }, - { - "filename": "max_potion", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 32 - }, - "spriteSourceSize": { - "x": 7, - "y": 4, - "w": 18, - "h": 24 - }, - "frame": { - "x": 76, - "y": 134, - "w": 18, - "h": 24 - } - }, { "filename": "max_repel", "rotated": false, @@ -3153,33 +2586,12 @@ "h": 24 }, "frame": { - "x": 79, - "y": 158, + "x": 134, + "y": 213, "w": 16, "h": 24 } }, - { - "filename": "oval_charm", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 32 - }, - "spriteSourceSize": { - "x": 6, - "y": 4, - "w": 21, - "h": 24 - }, - "frame": { - "x": 86, - "y": 182, - "w": 21, - "h": 24 - } - }, { "filename": "pp_max", "rotated": false, @@ -3195,8 +2607,8 @@ "h": 24 }, "frame": { - "x": 92, - "y": 206, + "x": 134, + "y": 237, "w": 16, "h": 24 } @@ -3216,12 +2628,180 @@ "h": 24 }, "frame": { - "x": 92, - "y": 230, + "x": 149, + "y": 54, "w": 16, "h": 24 } }, + { + "filename": "auspicious_armor", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 32, + "h": 32 + }, + "spriteSourceSize": { + "x": 4, + "y": 5, + "w": 23, + "h": 21 + }, + "frame": { + "x": 149, + "y": 78, + "w": 23, + "h": 21 + } + }, + { + "filename": "exp_share", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 32, + "h": 32 + }, + "spriteSourceSize": { + "x": 4, + "y": 5, + "w": 24, + "h": 22 + }, + "frame": { + "x": 148, + "y": 99, + "w": 24, + "h": 22 + } + }, + { + "filename": "leek", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 32, + "h": 32 + }, + "spriteSourceSize": { + "x": 4, + "y": 5, + "w": 23, + "h": 23 + }, + "frame": { + "x": 148, + "y": 121, + "w": 23, + "h": 23 + } + }, + { + "filename": "rare_candy", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 32, + "h": 32 + }, + "spriteSourceSize": { + "x": 4, + "y": 5, + "w": 23, + "h": 23 + }, + "frame": { + "x": 148, + "y": 144, + "w": 23, + "h": 23 + } + }, + { + "filename": "rarer_candy", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 32, + "h": 32 + }, + "spriteSourceSize": { + "x": 4, + "y": 5, + "w": 23, + "h": 23 + }, + "frame": { + "x": 148, + "y": 167, + "w": 23, + "h": 23 + } + }, + { + "filename": "fairy_tera_shard", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 32, + "h": 32 + }, + "spriteSourceSize": { + "x": 6, + "y": 4, + "w": 22, + "h": 23 + }, + "frame": { + "x": 148, + "y": 190, + "w": 22, + "h": 23 + } + }, + { + "filename": "fighting_tera_shard", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 32, + "h": 32 + }, + "spriteSourceSize": { + "x": 6, + "y": 4, + "w": 22, + "h": 23 + }, + "frame": { + "x": 150, + "y": 213, + "w": 22, + "h": 23 + } + }, + { + "filename": "fire_stone", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 32, + "h": 32 + }, + "spriteSourceSize": { + "x": 5, + "y": 5, + "w": 22, + "h": 23 + }, + "frame": { + "x": 150, + "y": 236, + "w": 22, + "h": 23 + } + }, { "filename": "protein", "rotated": false, @@ -3237,8 +2817,8 @@ "h": 24 }, "frame": { - "x": 93, - "y": 254, + "x": 139, + "y": 261, "w": 16, "h": 24 } @@ -3258,56 +2838,14 @@ "h": 24 }, "frame": { - "x": 94, - "y": 278, + "x": 139, + "y": 285, "w": 16, "h": 24 } }, { - "filename": "shiny_charm", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 32 - }, - "spriteSourceSize": { - "x": 6, - "y": 4, - "w": 21, - "h": 24 - }, - "frame": { - "x": 94, - "y": 302, - "w": 21, - "h": 24 - } - }, - { - "filename": "dragon_fang", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 32 - }, - "spriteSourceSize": { - "x": 5, - "y": 5, - "w": 21, - "h": 23 - }, - "frame": { - "x": 94, - "y": 326, - "w": 21, - "h": 23 - } - }, - { - "filename": "ground_tera_shard", + "filename": "fire_tera_shard", "rotated": false, "trimmed": true, "sourceSize": { @@ -3321,14 +2859,14 @@ "h": 23 }, "frame": { - "x": 94, - "y": 349, + "x": 155, + "y": 259, "w": 22, "h": 23 } }, { - "filename": "ice_tera_shard", + "filename": "flying_tera_shard", "rotated": false, "trimmed": true, "sourceSize": { @@ -3342,54 +2880,12 @@ "h": 23 }, "frame": { - "x": 94, - "y": 372, + "x": 155, + "y": 282, "w": 22, "h": 23 } }, - { - "filename": "prism_scale", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 32 - }, - "spriteSourceSize": { - "x": 9, - "y": 8, - "w": 15, - "h": 15 - }, - "frame": { - "x": 88, - "y": 119, - "w": 15, - "h": 15 - } - }, - { - "filename": "super_lure", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 32 - }, - "spriteSourceSize": { - "x": 8, - "y": 4, - "w": 17, - "h": 24 - }, - "frame": { - "x": 94, - "y": 134, - "w": 17, - "h": 24 - } - }, { "filename": "super_repel", "rotated": false, @@ -3405,14 +2901,14 @@ "h": 24 }, "frame": { - "x": 95, - "y": 158, + "x": 159, + "y": 22, "w": 16, "h": 24 } }, { - "filename": "berry_pot", + "filename": "peat_block", "rotated": false, "trimmed": true, "sourceSize": { @@ -3420,20 +2916,20 @@ "h": 32 }, "spriteSourceSize": { - "x": 7, + "x": 4, "y": 5, - "w": 18, + "w": 24, "h": 22 }, "frame": { - "x": 340, - "y": 114, - "w": 18, + "x": 175, + "y": 21, + "w": 24, "h": 22 } }, { - "filename": "unknown", + "filename": "healing_charm", "rotated": false, "trimmed": true, "sourceSize": { @@ -3441,20 +2937,41 @@ "h": 32 }, "spriteSourceSize": { - "x": 8, - "y": 4, - "w": 16, - "h": 24 + "x": 5, + "y": 5, + "w": 23, + "h": 22 }, "frame": { - "x": 358, - "y": 112, - "w": 16, - "h": 24 + "x": 199, + "y": 21, + "w": 23, + "h": 22 } }, { - "filename": "never_melt_ice", + "filename": "rusted_sword", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 32, + "h": 32 + }, + "spriteSourceSize": { + "x": 4, + "y": 5, + "w": 23, + "h": 22 + }, + "frame": { + "x": 222, + "y": 21, + "w": 23, + "h": 22 + } + }, + { + "filename": "blank_memory", "rotated": false, "trimmed": true, "sourceSize": { @@ -3465,307 +2982,13 @@ "x": 5, "y": 5, "w": 22, - "h": 23 + "h": 22 }, "frame": { - "x": 374, - "y": 109, + "x": 245, + "y": 21, "w": 22, - "h": 23 - } - }, - { - "filename": "normal_tera_shard", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 32 - }, - "spriteSourceSize": { - "x": 6, - "y": 4, - "w": 22, - "h": 23 - }, - "frame": { - "x": 396, - "y": 109, - "w": 22, - "h": 23 - } - }, - { - "filename": "zinc", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 32 - }, - "spriteSourceSize": { - "x": 8, - "y": 4, - "w": 16, - "h": 24 - }, - "frame": { - "x": 107, - "y": 182, - "w": 16, - "h": 24 - } - }, - { - "filename": "hyper_potion", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 32 - }, - "spriteSourceSize": { - "x": 8, - "y": 5, - "w": 17, - "h": 23 - }, - "frame": { - "x": 108, - "y": 206, - "w": 17, - "h": 23 - } - }, - { - "filename": "lansat_berry", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 32 - }, - "spriteSourceSize": { - "x": 5, - "y": 4, - "w": 21, - "h": 23 - }, - "frame": { - "x": 108, - "y": 229, - "w": 21, - "h": 23 - } - }, - { - "filename": "leaf_stone", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 32 - }, - "spriteSourceSize": { - "x": 5, - "y": 5, - "w": 21, - "h": 23 - }, - "frame": { - "x": 109, - "y": 252, - "w": 21, - "h": 23 - } - }, - { - "filename": "mystic_water", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 32 - }, - "spriteSourceSize": { - "x": 6, - "y": 5, - "w": 20, - "h": 23 - }, - "frame": { - "x": 110, - "y": 275, - "w": 20, - "h": 23 - } - }, - { - "filename": "petaya_berry", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 32 - }, - "spriteSourceSize": { - "x": 5, - "y": 5, - "w": 22, - "h": 23 - }, - "frame": { - "x": 115, - "y": 298, - "w": 22, - "h": 23 - } - }, - { - "filename": "poison_tera_shard", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 32 - }, - "spriteSourceSize": { - "x": 6, - "y": 4, - "w": 22, - "h": 23 - }, - "frame": { - "x": 115, - "y": 321, - "w": 22, - "h": 23 - } - }, - { - "filename": "psychic_tera_shard", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 32 - }, - "spriteSourceSize": { - "x": 6, - "y": 4, - "w": 22, - "h": 23 - }, - "frame": { - "x": 116, - "y": 344, - "w": 22, - "h": 23 - } - }, - { - "filename": "reaper_cloth", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 32 - }, - "spriteSourceSize": { - "x": 5, - "y": 5, - "w": 22, - "h": 23 - }, - "frame": { - "x": 116, - "y": 367, - "w": 22, - "h": 23 - } - }, - { - "filename": "rock_tera_shard", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 32 - }, - "spriteSourceSize": { - "x": 6, - "y": 4, - "w": 22, - "h": 23 - }, - "frame": { - "x": 111, - "y": 123, - "w": 22, - "h": 23 - } - }, - { - "filename": "steel_tera_shard", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 32 - }, - "spriteSourceSize": { - "x": 6, - "y": 4, - "w": 22, - "h": 23 - }, - "frame": { - "x": 111, - "y": 146, - "w": 22, - "h": 23 - } - }, - { - "filename": "stellar_tera_shard", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 32 - }, - "spriteSourceSize": { - "x": 6, - "y": 4, - "w": 22, - "h": 23 - }, - "frame": { - "x": 133, - "y": 124, - "w": 22, - "h": 23 - } - }, - { - "filename": "water_tera_shard", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 32 - }, - "spriteSourceSize": { - "x": 6, - "y": 4, - "w": 22, - "h": 23 - }, - "frame": { - "x": 155, - "y": 124, - "w": 22, - "h": 23 + "h": 22 } }, { @@ -3783,8 +3006,8 @@ "h": 22 }, "frame": { - "x": 133, - "y": 147, + "x": 267, + "y": 21, "w": 22, "h": 22 } @@ -3804,33 +3027,12 @@ "h": 22 }, "frame": { - "x": 155, - "y": 147, + "x": 289, + "y": 21, "w": 22, "h": 22 } }, - { - "filename": "wide_lens", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 32 - }, - "spriteSourceSize": { - "x": 5, - "y": 4, - "w": 22, - "h": 23 - }, - "frame": { - "x": 177, - "y": 125, - "w": 22, - "h": 23 - } - }, { "filename": "dark_memory", "rotated": false, @@ -3846,14 +3048,14 @@ "h": 22 }, "frame": { - "x": 199, - "y": 125, + "x": 311, + "y": 21, "w": 22, "h": 22 } }, { - "filename": "dire_hit", + "filename": "focus_sash", "rotated": false, "trimmed": true, "sourceSize": { @@ -3862,19 +3064,229 @@ }, "spriteSourceSize": { "x": 5, - "y": 5, + "y": 4, "w": 22, - "h": 22 + "h": 23 }, "frame": { - "x": 221, - "y": 125, + "x": 333, + "y": 20, "w": 22, - "h": 22 + "h": 23 } }, { - "filename": "deep_sea_tooth", + "filename": "ghost_tera_shard", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 32, + "h": 32 + }, + "spriteSourceSize": { + "x": 6, + "y": 4, + "w": 22, + "h": 23 + }, + "frame": { + "x": 355, + "y": 20, + "w": 22, + "h": 23 + } + }, + { + "filename": "grass_tera_shard", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 32, + "h": 32 + }, + "spriteSourceSize": { + "x": 6, + "y": 4, + "w": 22, + "h": 23 + }, + "frame": { + "x": 377, + "y": 20, + "w": 22, + "h": 23 + } + }, + { + "filename": "icy_reins_of_unity", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 32, + "h": 32 + }, + "spriteSourceSize": { + "x": 4, + "y": 7, + "w": 24, + "h": 20 + }, + "frame": { + "x": 399, + "y": 22, + "w": 24, + "h": 20 + } + }, + { + "filename": "dragon_scale", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 32, + "h": 32 + }, + "spriteSourceSize": { + "x": 4, + "y": 8, + "w": 24, + "h": 18 + }, + "frame": { + "x": 175, + "y": 43, + "w": 24, + "h": 18 + } + }, + { + "filename": "metal_powder", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 32, + "h": 32 + }, + "spriteSourceSize": { + "x": 4, + "y": 6, + "w": 24, + "h": 20 + }, + "frame": { + "x": 199, + "y": 43, + "w": 24, + "h": 20 + } + }, + { + "filename": "quick_powder", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 32, + "h": 32 + }, + "spriteSourceSize": { + "x": 4, + "y": 6, + "w": 24, + "h": 20 + }, + "frame": { + "x": 223, + "y": 43, + "w": 24, + "h": 20 + } + }, + { + "filename": "rusted_shield", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 32, + "h": 32 + }, + "spriteSourceSize": { + "x": 4, + "y": 6, + "w": 24, + "h": 20 + }, + "frame": { + "x": 247, + "y": 43, + "w": 24, + "h": 20 + } + }, + { + "filename": "sacred_ash", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 32, + "h": 32 + }, + "spriteSourceSize": { + "x": 4, + "y": 7, + "w": 24, + "h": 20 + }, + "frame": { + "x": 271, + "y": 43, + "w": 24, + "h": 20 + } + }, + { + "filename": "shadow_reins_of_unity", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 32, + "h": 32 + }, + "spriteSourceSize": { + "x": 4, + "y": 7, + "w": 24, + "h": 20 + }, + "frame": { + "x": 295, + "y": 43, + "w": 24, + "h": 20 + } + }, + { + "filename": "soft_sand", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 32, + "h": 32 + }, + "spriteSourceSize": { + "x": 4, + "y": 7, + "w": 24, + "h": 20 + }, + "frame": { + "x": 319, + "y": 43, + "w": 24, + "h": 20 + } + }, + { + "filename": "binding_band", "rotated": false, "trimmed": true, "sourceSize": { @@ -3884,77 +3296,14 @@ "spriteSourceSize": { "x": 5, "y": 6, - "w": 22, - "h": 21 + "w": 23, + "h": 20 }, "frame": { - "x": 177, - "y": 148, - "w": 22, - "h": 21 - } - }, - { - "filename": "dna_splicers", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 32 - }, - "spriteSourceSize": { - "x": 5, - "y": 5, - "w": 22, - "h": 22 - }, - "frame": { - "x": 199, - "y": 147, - "w": 22, - "h": 22 - } - }, - { - "filename": "dragon_memory", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 32 - }, - "spriteSourceSize": { - "x": 5, - "y": 5, - "w": 22, - "h": 22 - }, - "frame": { - "x": 221, - "y": 147, - "w": 22, - "h": 22 - } - }, - { - "filename": "electirizer", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 32 - }, - "spriteSourceSize": { - "x": 5, - "y": 5, - "w": 22, - "h": 22 - }, - "frame": { - "x": 243, - "y": 131, - "w": 22, - "h": 22 + "x": 343, + "y": 43, + "w": 23, + "h": 20 } }, { @@ -3972,12 +3321,558 @@ "h": 21 }, "frame": { - "x": 265, - "y": 134, + "x": 366, + "y": 43, "w": 23, "h": 21 } }, + { + "filename": "black_glasses", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 32, + "h": 32 + }, + "spriteSourceSize": { + "x": 4, + "y": 8, + "w": 23, + "h": 17 + }, + "frame": { + "x": 165, + "y": 61, + "w": 23, + "h": 17 + } + }, + { + "filename": "unknown", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 32, + "h": 32 + }, + "spriteSourceSize": { + "x": 8, + "y": 4, + "w": 16, + "h": 24 + }, + "frame": { + "x": 172, + "y": 78, + "w": 16, + "h": 24 + } + }, + { + "filename": "apicot_berry", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 32, + "h": 32 + }, + "spriteSourceSize": { + "x": 6, + "y": 6, + "w": 19, + "h": 20 + }, + "frame": { + "x": 172, + "y": 102, + "w": 19, + "h": 20 + } + }, + { + "filename": "ground_tera_shard", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 32, + "h": 32 + }, + "spriteSourceSize": { + "x": 6, + "y": 4, + "w": 22, + "h": 23 + }, + "frame": { + "x": 171, + "y": 122, + "w": 22, + "h": 23 + } + }, + { + "filename": "ice_tera_shard", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 32, + "h": 32 + }, + "spriteSourceSize": { + "x": 6, + "y": 4, + "w": 22, + "h": 23 + }, + "frame": { + "x": 171, + "y": 145, + "w": 22, + "h": 23 + } + }, + { + "filename": "dire_hit", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 32, + "h": 32 + }, + "spriteSourceSize": { + "x": 5, + "y": 5, + "w": 22, + "h": 22 + }, + "frame": { + "x": 171, + "y": 168, + "w": 22, + "h": 22 + } + }, + { + "filename": "never_melt_ice", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 32, + "h": 32 + }, + "spriteSourceSize": { + "x": 5, + "y": 5, + "w": 22, + "h": 23 + }, + "frame": { + "x": 170, + "y": 190, + "w": 22, + "h": 23 + } + }, + { + "filename": "lansat_berry", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 32, + "h": 32 + }, + "spriteSourceSize": { + "x": 5, + "y": 4, + "w": 21, + "h": 23 + }, + "frame": { + "x": 172, + "y": 213, + "w": 21, + "h": 23 + } + }, + { + "filename": "leaf_stone", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 32, + "h": 32 + }, + "spriteSourceSize": { + "x": 5, + "y": 5, + "w": 21, + "h": 23 + }, + "frame": { + "x": 172, + "y": 236, + "w": 21, + "h": 23 + } + }, + { + "filename": "zinc", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 32, + "h": 32 + }, + "spriteSourceSize": { + "x": 8, + "y": 4, + "w": 16, + "h": 24 + }, + "frame": { + "x": 177, + "y": 259, + "w": 16, + "h": 24 + } + }, + { + "filename": "berry_pot", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 32, + "h": 32 + }, + "spriteSourceSize": { + "x": 7, + "y": 5, + "w": 18, + "h": 22 + }, + "frame": { + "x": 177, + "y": 283, + "w": 18, + "h": 22 + } + }, + { + "filename": "normal_tera_shard", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 32, + "h": 32 + }, + "spriteSourceSize": { + "x": 6, + "y": 4, + "w": 22, + "h": 23 + }, + "frame": { + "x": 188, + "y": 63, + "w": 22, + "h": 23 + } + }, + { + "filename": "petaya_berry", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 32, + "h": 32 + }, + "spriteSourceSize": { + "x": 5, + "y": 5, + "w": 22, + "h": 23 + }, + "frame": { + "x": 210, + "y": 63, + "w": 22, + "h": 23 + } + }, + { + "filename": "poison_tera_shard", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 32, + "h": 32 + }, + "spriteSourceSize": { + "x": 6, + "y": 4, + "w": 22, + "h": 23 + }, + "frame": { + "x": 232, + "y": 63, + "w": 22, + "h": 23 + } + }, + { + "filename": "psychic_tera_shard", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 32, + "h": 32 + }, + "spriteSourceSize": { + "x": 6, + "y": 4, + "w": 22, + "h": 23 + }, + "frame": { + "x": 254, + "y": 63, + "w": 22, + "h": 23 + } + }, + { + "filename": "reaper_cloth", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 32, + "h": 32 + }, + "spriteSourceSize": { + "x": 5, + "y": 5, + "w": 22, + "h": 23 + }, + "frame": { + "x": 276, + "y": 63, + "w": 22, + "h": 23 + } + }, + { + "filename": "rock_tera_shard", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 32, + "h": 32 + }, + "spriteSourceSize": { + "x": 6, + "y": 4, + "w": 22, + "h": 23 + }, + "frame": { + "x": 298, + "y": 63, + "w": 22, + "h": 23 + } + }, + { + "filename": "steel_tera_shard", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 32, + "h": 32 + }, + "spriteSourceSize": { + "x": 6, + "y": 4, + "w": 22, + "h": 23 + }, + "frame": { + "x": 320, + "y": 63, + "w": 22, + "h": 23 + } + }, + { + "filename": "stellar_tera_shard", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 32, + "h": 32 + }, + "spriteSourceSize": { + "x": 6, + "y": 4, + "w": 22, + "h": 23 + }, + "frame": { + "x": 342, + "y": 63, + "w": 22, + "h": 23 + } + }, + { + "filename": "dna_splicers", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 32, + "h": 32 + }, + "spriteSourceSize": { + "x": 5, + "y": 5, + "w": 22, + "h": 22 + }, + "frame": { + "x": 364, + "y": 64, + "w": 22, + "h": 22 + } + }, + { + "filename": "aggronite", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 32, + "h": 32 + }, + "spriteSourceSize": { + "x": 8, + "y": 8, + "w": 16, + "h": 16 + }, + "frame": { + "x": 188, + "y": 86, + "w": 16, + "h": 16 + } + }, + { + "filename": "burn_drive", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 32, + "h": 32 + }, + "spriteSourceSize": { + "x": 4, + "y": 8, + "w": 23, + "h": 17 + }, + "frame": { + "x": 204, + "y": 86, + "w": 23, + "h": 17 + } + }, + { + "filename": "chill_drive", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 32, + "h": 32 + }, + "spriteSourceSize": { + "x": 4, + "y": 8, + "w": 23, + "h": 17 + }, + "frame": { + "x": 227, + "y": 86, + "w": 23, + "h": 17 + } + }, + { + "filename": "coupon", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 32, + "h": 32 + }, + "spriteSourceSize": { + "x": 4, + "y": 7, + "w": 23, + "h": 19 + }, + "frame": { + "x": 250, + "y": 86, + "w": 23, + "h": 19 + } + }, + { + "filename": "golden_mystic_ticket", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 32, + "h": 32 + }, + "spriteSourceSize": { + "x": 4, + "y": 7, + "w": 23, + "h": 19 + }, + "frame": { + "x": 273, + "y": 86, + "w": 23, + "h": 19 + } + }, + { + "filename": "mystic_ticket", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 32, + "h": 32 + }, + "spriteSourceSize": { + "x": 4, + "y": 7, + "w": 23, + "h": 19 + }, + "frame": { + "x": 296, + "y": 86, + "w": 23, + "h": 19 + } + }, { "filename": "n_lunarizer", "rotated": false, @@ -3993,8 +3888,8 @@ "h": 21 }, "frame": { - "x": 288, - "y": 134, + "x": 319, + "y": 86, "w": 23, "h": 21 } @@ -4014,14 +3909,14 @@ "h": 21 }, "frame": { - "x": 311, - "y": 134, + "x": 342, + "y": 86, "w": 23, "h": 21 } }, { - "filename": "deep_sea_scale", + "filename": "deep_sea_tooth", "rotated": false, "trimmed": true, "sourceSize": { @@ -4032,17 +3927,17 @@ "x": 5, "y": 6, "w": 22, - "h": 20 + "h": 21 }, "frame": { - "x": 243, - "y": 153, + "x": 365, + "y": 86, "w": 22, - "h": 20 + "h": 21 } }, { - "filename": "mystic_ticket", + "filename": "dawn_stone", "rotated": false, "trimmed": true, "sourceSize": { @@ -4050,16 +3945,121 @@ "h": 32 }, "spriteSourceSize": { - "x": 4, - "y": 7, - "w": 23, - "h": 19 + "x": 6, + "y": 6, + "w": 20, + "h": 21 }, "frame": { - "x": 265, - "y": 155, - "w": 23, - "h": 19 + "x": 389, + "y": 43, + "w": 20, + "h": 21 + } + }, + { + "filename": "hyper_potion", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 32, + "h": 32 + }, + "spriteSourceSize": { + "x": 8, + "y": 5, + "w": 17, + "h": 23 + }, + "frame": { + "x": 409, + "y": 42, + "w": 17, + "h": 23 + } + }, + { + "filename": "dragon_memory", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 32, + "h": 32 + }, + "spriteSourceSize": { + "x": 5, + "y": 5, + "w": 22, + "h": 22 + }, + "frame": { + "x": 386, + "y": 64, + "w": 22, + "h": 22 + } + }, + { + "filename": "sachet", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 32, + "h": 32 + }, + "spriteSourceSize": { + "x": 6, + "y": 4, + "w": 18, + "h": 23 + }, + "frame": { + "x": 408, + "y": 65, + "w": 18, + "h": 23 + } + }, + { + "filename": "dusk_stone", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 32, + "h": 32 + }, + "spriteSourceSize": { + "x": 6, + "y": 6, + "w": 21, + "h": 21 + }, + "frame": { + "x": 387, + "y": 86, + "w": 21, + "h": 21 + } + }, + { + "filename": "razor_fang", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 32, + "h": 32 + }, + "spriteSourceSize": { + "x": 7, + "y": 6, + "w": 18, + "h": 20 + }, + "frame": { + "x": 408, + "y": 88, + "w": 18, + "h": 20 } }, { @@ -4077,14 +4077,14 @@ "h": 19 }, "frame": { - "x": 288, - "y": 155, + "x": 191, + "y": 103, "w": 23, "h": 19 } }, { - "filename": "reviver_seed", + "filename": "sharp_beak", "rotated": false, "trimmed": true, "sourceSize": { @@ -4093,15 +4093,99 @@ }, "spriteSourceSize": { "x": 5, - "y": 8, - "w": 23, - "h": 20 + "y": 5, + "w": 21, + "h": 23 }, "frame": { - "x": 311, - "y": 155, - "w": 23, - "h": 20 + "x": 193, + "y": 122, + "w": 21, + "h": 23 + } + }, + { + "filename": "water_tera_shard", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 32, + "h": 32 + }, + "spriteSourceSize": { + "x": 6, + "y": 4, + "w": 22, + "h": 23 + }, + "frame": { + "x": 214, + "y": 103, + "w": 22, + "h": 23 + } + }, + { + "filename": "whipped_dream", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 32, + "h": 32 + }, + "spriteSourceSize": { + "x": 5, + "y": 4, + "w": 21, + "h": 23 + }, + "frame": { + "x": 193, + "y": 145, + "w": 21, + "h": 23 + } + }, + { + "filename": "wide_lens", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 32, + "h": 32 + }, + "spriteSourceSize": { + "x": 5, + "y": 4, + "w": 22, + "h": 23 + }, + "frame": { + "x": 214, + "y": 126, + "w": 22, + "h": 23 + } + }, + { + "filename": "electirizer", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 32, + "h": 32 + }, + "spriteSourceSize": { + "x": 5, + "y": 5, + "w": 22, + "h": 22 + }, + "frame": { + "x": 193, + "y": 168, + "w": 22, + "h": 22 } }, { @@ -4119,12 +4203,33 @@ "h": 22 }, "frame": { - "x": 334, - "y": 136, + "x": 192, + "y": 190, "w": 22, "h": 22 } }, + { + "filename": "blunder_policy", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 32, + "h": 32 + }, + "spriteSourceSize": { + "x": 5, + "y": 6, + "w": 22, + "h": 19 + }, + "frame": { + "x": 214, + "y": 149, + "w": 22, + "h": 19 + } + }, { "filename": "enigma_berry", "rotated": false, @@ -4140,33 +4245,12 @@ "h": 22 }, "frame": { - "x": 356, - "y": 136, + "x": 215, + "y": 168, "w": 22, "h": 22 } }, - { - "filename": "burn_drive", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 32 - }, - "spriteSourceSize": { - "x": 4, - "y": 8, - "w": 23, - "h": 17 - }, - "frame": { - "x": 334, - "y": 158, - "w": 23, - "h": 17 - } - }, { "filename": "fairy_memory", "rotated": false, @@ -4182,8 +4266,8 @@ "h": 22 }, "frame": { - "x": 378, - "y": 132, + "x": 214, + "y": 190, "w": 22, "h": 22 } @@ -4203,54 +4287,12 @@ "h": 22 }, "frame": { - "x": 400, - "y": 132, + "x": 193, + "y": 212, "w": 22, "h": 22 } }, - { - "filename": "chill_drive", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 32 - }, - "spriteSourceSize": { - "x": 4, - "y": 8, - "w": 23, - "h": 17 - }, - "frame": { - "x": 357, - "y": 158, - "w": 23, - "h": 17 - } - }, - { - "filename": "wellspring_mask", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 32 - }, - "spriteSourceSize": { - "x": 4, - "y": 5, - "w": 23, - "h": 21 - }, - "frame": { - "x": 380, - "y": 154, - "w": 23, - "h": 21 - } - }, { "filename": "fire_memory", "rotated": false, @@ -4266,8 +4308,8 @@ "h": 22 }, "frame": { - "x": 403, - "y": 154, + "x": 193, + "y": 234, "w": 22, "h": 22 } @@ -4287,8 +4329,8 @@ "h": 22 }, "frame": { - "x": 123, - "y": 169, + "x": 193, + "y": 256, "w": 22, "h": 22 } @@ -4308,8 +4350,8 @@ "h": 22 }, "frame": { - "x": 145, - "y": 169, + "x": 215, + "y": 212, "w": 22, "h": 22 } @@ -4329,8 +4371,8 @@ "h": 22 }, "frame": { - "x": 167, - "y": 169, + "x": 215, + "y": 234, "w": 22, "h": 22 } @@ -4350,8 +4392,8 @@ "h": 22 }, "frame": { - "x": 189, - "y": 169, + "x": 215, + "y": 256, "w": 22, "h": 22 } @@ -4371,75 +4413,12 @@ "h": 22 }, "frame": { - "x": 211, - "y": 169, + "x": 195, + "y": 278, "w": 22, "h": 22 } }, - { - "filename": "shell_bell", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 32 - }, - "spriteSourceSize": { - "x": 5, - "y": 7, - "w": 23, - "h": 20 - }, - "frame": { - "x": 233, - "y": 173, - "w": 23, - "h": 20 - } - }, - { - "filename": "dubious_disc", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 32 - }, - "spriteSourceSize": { - "x": 5, - "y": 7, - "w": 22, - "h": 19 - }, - "frame": { - "x": 256, - "y": 174, - "w": 22, - "h": 19 - } - }, - { - "filename": "fairy_feather", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 32 - }, - "spriteSourceSize": { - "x": 5, - "y": 7, - "w": 22, - "h": 20 - }, - "frame": { - "x": 278, - "y": 174, - "w": 22, - "h": 20 - } - }, { "filename": "guard_spec", "rotated": false, @@ -4455,8 +4434,8 @@ "h": 22 }, "frame": { - "x": 300, - "y": 175, + "x": 217, + "y": 278, "w": 22, "h": 22 } @@ -4476,8 +4455,8 @@ "h": 22 }, "frame": { - "x": 322, - "y": 175, + "x": 236, + "y": 105, "w": 22, "h": 22 } @@ -4497,8 +4476,8 @@ "h": 22 }, "frame": { - "x": 344, - "y": 175, + "x": 236, + "y": 127, "w": 22, "h": 22 } @@ -4518,33 +4497,12 @@ "h": 22 }, "frame": { - "x": 366, - "y": 175, + "x": 258, + "y": 105, "w": 22, "h": 22 } }, - { - "filename": "leftovers", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 32 - }, - "spriteSourceSize": { - "x": 8, - "y": 5, - "w": 15, - "h": 22 - }, - "frame": { - "x": 388, - "y": 175, - "w": 15, - "h": 22 - } - }, { "filename": "mini_black_hole", "rotated": false, @@ -4560,8 +4518,8 @@ "h": 22 }, "frame": { - "x": 403, - "y": 176, + "x": 280, + "y": 105, "w": 22, "h": 22 } @@ -4581,8 +4539,8 @@ "h": 22 }, "frame": { - "x": 125, - "y": 191, + "x": 258, + "y": 127, "w": 22, "h": 22 } @@ -4602,12 +4560,33 @@ "h": 22 }, "frame": { - "x": 147, - "y": 191, + "x": 280, + "y": 127, "w": 22, "h": 22 } }, + { + "filename": "dubious_disc", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 32, + "h": 32 + }, + "spriteSourceSize": { + "x": 5, + "y": 7, + "w": 22, + "h": 19 + }, + "frame": { + "x": 236, + "y": 149, + "w": 22, + "h": 19 + } + }, { "filename": "psychic_memory", "rotated": false, @@ -4623,8 +4602,8 @@ "h": 22 }, "frame": { - "x": 169, - "y": 191, + "x": 237, + "y": 168, "w": 22, "h": 22 } @@ -4644,12 +4623,33 @@ "h": 22 }, "frame": { - "x": 191, - "y": 191, + "x": 236, + "y": 190, "w": 22, "h": 22 } }, + { + "filename": "mystic_water", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 32, + "h": 32 + }, + "spriteSourceSize": { + "x": 6, + "y": 5, + "w": 20, + "h": 23 + }, + "frame": { + "x": 237, + "y": 212, + "w": 20, + "h": 23 + } + }, { "filename": "hard_meteorite", "rotated": false, @@ -4665,8 +4665,8 @@ "h": 22 }, "frame": { - "x": 213, - "y": 191, + "x": 237, + "y": 235, "w": 20, "h": 22 } @@ -4686,12 +4686,75 @@ "h": 21 }, "frame": { - "x": 233, - "y": 193, + "x": 237, + "y": 257, "w": 22, "h": 21 } }, + { + "filename": "potion", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 32, + "h": 32 + }, + "spriteSourceSize": { + "x": 8, + "y": 5, + "w": 17, + "h": 23 + }, + "frame": { + "x": 302, + "y": 105, + "w": 17, + "h": 23 + } + }, + { + "filename": "wellspring_mask", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 32, + "h": 32 + }, + "spriteSourceSize": { + "x": 4, + "y": 5, + "w": 23, + "h": 21 + }, + "frame": { + "x": 319, + "y": 107, + "w": 23, + "h": 21 + } + }, + { + "filename": "reviver_seed", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 32, + "h": 32 + }, + "spriteSourceSize": { + "x": 5, + "y": 8, + "w": 23, + "h": 20 + }, + "frame": { + "x": 302, + "y": 128, + "w": 23, + "h": 20 + } + }, { "filename": "scroll_of_darkness", "rotated": false, @@ -4707,117 +4770,12 @@ "h": 22 }, "frame": { - "x": 255, - "y": 193, + "x": 342, + "y": 107, "w": 22, "h": 22 } }, - { - "filename": "douse_drive", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 32 - }, - "spriteSourceSize": { - "x": 4, - "y": 8, - "w": 23, - "h": 17 - }, - "frame": { - "x": 277, - "y": 194, - "w": 23, - "h": 17 - } - }, - { - "filename": "relic_band", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 32 - }, - "spriteSourceSize": { - "x": 7, - "y": 9, - "w": 17, - "h": 16 - }, - "frame": { - "x": 125, - "y": 213, - "w": 17, - "h": 16 - } - }, - { - "filename": "shock_drive", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 32 - }, - "spriteSourceSize": { - "x": 4, - "y": 8, - "w": 23, - "h": 17 - }, - "frame": { - "x": 142, - "y": 213, - "w": 23, - "h": 17 - } - }, - { - "filename": "wise_glasses", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 32 - }, - "spriteSourceSize": { - "x": 4, - "y": 8, - "w": 23, - "h": 17 - }, - "frame": { - "x": 165, - "y": 213, - "w": 23, - "h": 17 - } - }, - { - "filename": "malicious_armor", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 32 - }, - "spriteSourceSize": { - "x": 5, - "y": 6, - "w": 22, - "h": 20 - }, - "frame": { - "x": 188, - "y": 213, - "w": 22, - "h": 20 - } - }, { "filename": "scroll_of_waters", "rotated": false, @@ -4833,8 +4791,8 @@ "h": 22 }, "frame": { - "x": 210, - "y": 213, + "x": 364, + "y": 107, "w": 22, "h": 22 } @@ -4854,12 +4812,75 @@ "h": 22 }, "frame": { - "x": 232, - "y": 214, + "x": 386, + "y": 107, "w": 22, "h": 22 } }, + { + "filename": "oval_stone", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 32, + "h": 32 + }, + "spriteSourceSize": { + "x": 7, + "y": 7, + "w": 18, + "h": 19 + }, + "frame": { + "x": 408, + "y": 108, + "w": 18, + "h": 19 + } + }, + { + "filename": "sitrus_berry", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 32, + "h": 32 + }, + "spriteSourceSize": { + "x": 6, + "y": 5, + "w": 20, + "h": 22 + }, + "frame": { + "x": 239, + "y": 278, + "w": 20, + "h": 22 + } + }, + { + "filename": "upgrade", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 32, + "h": 32 + }, + "spriteSourceSize": { + "x": 5, + "y": 7, + "w": 22, + "h": 19 + }, + "frame": { + "x": 258, + "y": 149, + "w": 22, + "h": 19 + } + }, { "filename": "starf_berry", "rotated": false, @@ -4875,8 +4896,8 @@ "h": 22 }, "frame": { - "x": 254, - "y": 215, + "x": 259, + "y": 168, "w": 22, "h": 22 } @@ -4896,8 +4917,8 @@ "h": 22 }, "frame": { - "x": 300, - "y": 197, + "x": 258, + "y": 190, "w": 22, "h": 22 } @@ -4917,8 +4938,8 @@ "h": 22 }, "frame": { - "x": 322, - "y": 197, + "x": 257, + "y": 212, "w": 22, "h": 22 } @@ -4938,12 +4959,33 @@ "h": 22 }, "frame": { - "x": 344, - "y": 197, + "x": 257, + "y": 234, "w": 22, "h": 22 } }, + { + "filename": "metal_alloy", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 32, + "h": 32 + }, + "spriteSourceSize": { + "x": 6, + "y": 7, + "w": 21, + "h": 19 + }, + "frame": { + "x": 280, + "y": 149, + "w": 21, + "h": 19 + } + }, { "filename": "tm_bug", "rotated": false, @@ -4959,8 +5001,8 @@ "h": 22 }, "frame": { - "x": 366, - "y": 197, + "x": 281, + "y": 168, "w": 22, "h": 22 } @@ -4980,54 +5022,12 @@ "h": 22 }, "frame": { - "x": 129, - "y": 230, + "x": 280, + "y": 190, "w": 22, "h": 22 } }, - { - "filename": "sharp_beak", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 32 - }, - "spriteSourceSize": { - "x": 5, - "y": 5, - "w": 21, - "h": 23 - }, - "frame": { - "x": 130, - "y": 252, - "w": 21, - "h": 23 - } - }, - { - "filename": "whipped_dream", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 32 - }, - "spriteSourceSize": { - "x": 5, - "y": 4, - "w": 21, - "h": 23 - }, - "frame": { - "x": 130, - "y": 275, - "w": 21, - "h": 23 - } - }, { "filename": "tm_dragon", "rotated": false, @@ -5043,8 +5043,8 @@ "h": 22 }, "frame": { - "x": 151, - "y": 230, + "x": 279, + "y": 212, "w": 22, "h": 22 } @@ -5064,8 +5064,8 @@ "h": 22 }, "frame": { - "x": 151, - "y": 252, + "x": 279, + "y": 234, "w": 22, "h": 22 } @@ -5085,138 +5085,12 @@ "h": 22 }, "frame": { - "x": 151, - "y": 274, + "x": 259, + "y": 256, "w": 22, "h": 22 } }, - { - "filename": "potion", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 32 - }, - "spriteSourceSize": { - "x": 8, - "y": 5, - "w": 17, - "h": 23 - }, - "frame": { - "x": 137, - "y": 298, - "w": 17, - "h": 23 - } - }, - { - "filename": "sachet", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 32 - }, - "spriteSourceSize": { - "x": 6, - "y": 4, - "w": 18, - "h": 23 - }, - "frame": { - "x": 137, - "y": 321, - "w": 18, - "h": 23 - } - }, - { - "filename": "super_potion", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 32 - }, - "spriteSourceSize": { - "x": 8, - "y": 5, - "w": 17, - "h": 23 - }, - "frame": { - "x": 138, - "y": 344, - "w": 17, - "h": 23 - } - }, - { - "filename": "lock_capsule", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 32 - }, - "spriteSourceSize": { - "x": 7, - "y": 5, - "w": 19, - "h": 22 - }, - "frame": { - "x": 154, - "y": 296, - "w": 19, - "h": 22 - } - }, - { - "filename": "metal_coat", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 32 - }, - "spriteSourceSize": { - "x": 6, - "y": 5, - "w": 19, - "h": 22 - }, - "frame": { - "x": 138, - "y": 367, - "w": 19, - "h": 22 - } - }, - { - "filename": "sitrus_berry", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 32 - }, - "spriteSourceSize": { - "x": 6, - "y": 5, - "w": 20, - "h": 22 - }, - "frame": { - "x": 155, - "y": 318, - "w": 20, - "h": 22 - } - }, { "filename": "tm_fighting", "rotated": false, @@ -5232,8 +5106,8 @@ "h": 22 }, "frame": { - "x": 155, - "y": 340, + "x": 259, + "y": 278, "w": 22, "h": 22 } @@ -5253,75 +5127,12 @@ "h": 22 }, "frame": { - "x": 157, - "y": 362, + "x": 281, + "y": 256, "w": 22, "h": 22 } }, - { - "filename": "relic_gold", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 32 - }, - "spriteSourceSize": { - "x": 9, - "y": 11, - "w": 15, - "h": 11 - }, - "frame": { - "x": 173, - "y": 230, - "w": 15, - "h": 11 - } - }, - { - "filename": "metronome", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 32 - }, - "spriteSourceSize": { - "x": 7, - "y": 5, - "w": 17, - "h": 22 - }, - "frame": { - "x": 173, - "y": 241, - "w": 17, - "h": 22 - } - }, - { - "filename": "soothe_bell", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 32 - }, - "spriteSourceSize": { - "x": 8, - "y": 5, - "w": 17, - "h": 22 - }, - "frame": { - "x": 173, - "y": 263, - "w": 17, - "h": 22 - } - }, { "filename": "tm_flying", "rotated": false, @@ -5337,14 +5148,224 @@ "h": 22 }, "frame": { - "x": 173, - "y": 285, + "x": 281, + "y": 278, "w": 22, "h": 22 } }, { - "filename": "dawn_stone", + "filename": "baton", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 32, + "h": 32 + }, + "spriteSourceSize": { + "x": 7, + "y": 7, + "w": 18, + "h": 18 + }, + "frame": { + "x": 408, + "y": 127, + "w": 18, + "h": 18 + } + }, + { + "filename": "golden_egg", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 32, + "h": 32 + }, + "spriteSourceSize": { + "x": 7, + "y": 6, + "w": 17, + "h": 20 + }, + "frame": { + "x": 325, + "y": 128, + "w": 17, + "h": 20 + } + }, + { + "filename": "shell_bell", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 32, + "h": 32 + }, + "spriteSourceSize": { + "x": 5, + "y": 7, + "w": 23, + "h": 20 + }, + "frame": { + "x": 342, + "y": 129, + "w": 23, + "h": 20 + } + }, + { + "filename": "deep_sea_scale", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 32, + "h": 32 + }, + "spriteSourceSize": { + "x": 5, + "y": 6, + "w": 22, + "h": 20 + }, + "frame": { + "x": 365, + "y": 129, + "w": 22, + "h": 20 + } + }, + { + "filename": "poison_barb", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 32, + "h": 32 + }, + "spriteSourceSize": { + "x": 5, + "y": 6, + "w": 21, + "h": 21 + }, + "frame": { + "x": 387, + "y": 129, + "w": 21, + "h": 21 + } + }, + { + "filename": "candy", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 32, + "h": 32 + }, + "spriteSourceSize": { + "x": 7, + "y": 11, + "w": 18, + "h": 18 + }, + "frame": { + "x": 408, + "y": 145, + "w": 18, + "h": 18 + } + }, + { + "filename": "douse_drive", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 32, + "h": 32 + }, + "spriteSourceSize": { + "x": 4, + "y": 8, + "w": 23, + "h": 17 + }, + "frame": { + "x": 195, + "y": 300, + "w": 23, + "h": 17 + } + }, + { + "filename": "relic_crown", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 32, + "h": 32 + }, + "spriteSourceSize": { + "x": 4, + "y": 7, + "w": 23, + "h": 18 + }, + "frame": { + "x": 218, + "y": 300, + "w": 23, + "h": 18 + } + }, + { + "filename": "fairy_feather", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 32, + "h": 32 + }, + "spriteSourceSize": { + "x": 5, + "y": 7, + "w": 22, + "h": 20 + }, + "frame": { + "x": 241, + "y": 300, + "w": 22, + "h": 20 + } + }, + { + "filename": "malicious_armor", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 32, + "h": 32 + }, + "spriteSourceSize": { + "x": 5, + "y": 6, + "w": 22, + "h": 20 + }, + "frame": { + "x": 263, + "y": 300, + "w": 22, + "h": 20 + } + }, + { + "filename": "big_nugget", "rotated": false, "trimmed": true, "sourceSize": { @@ -5355,13 +5376,76 @@ "x": 6, "y": 6, "w": 20, - "h": 21 + "h": 20 }, "frame": { - "x": 190, - "y": 233, + "x": 285, + "y": 300, "w": 20, - "h": 21 + "h": 20 + } + }, + { + "filename": "shock_drive", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 32, + "h": 32 + }, + "spriteSourceSize": { + "x": 4, + "y": 8, + "w": 23, + "h": 17 + }, + "frame": { + "x": 155, + "y": 305, + "w": 23, + "h": 17 + } + }, + { + "filename": "lucky_egg", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 32, + "h": 32 + }, + "spriteSourceSize": { + "x": 7, + "y": 6, + "w": 17, + "h": 20 + }, + "frame": { + "x": 178, + "y": 305, + "w": 17, + "h": 20 + } + }, + { + "filename": "wise_glasses", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 32, + "h": 32 + }, + "spriteSourceSize": { + "x": 4, + "y": 8, + "w": 23, + "h": 17 + }, + "frame": { + "x": 195, + "y": 317, + "w": 23, + "h": 17 } }, { @@ -5379,8 +5463,8 @@ "h": 21 }, "frame": { - "x": 210, - "y": 235, + "x": 218, + "y": 318, "w": 22, "h": 21 } @@ -5400,33 +5484,12 @@ "h": 21 }, "frame": { - "x": 232, - "y": 236, + "x": 240, + "y": 320, "w": 22, "h": 21 } }, - { - "filename": "gb", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 32 - }, - "spriteSourceSize": { - "x": 6, - "y": 6, - "w": 20, - "h": 20 - }, - "frame": { - "x": 190, - "y": 254, - "w": 20, - "h": 20 - } - }, { "filename": "tart_apple", "rotated": false, @@ -5442,14 +5505,14 @@ "h": 21 }, "frame": { - "x": 254, - "y": 237, + "x": 262, + "y": 320, "w": 22, "h": 21 } }, { - "filename": "tera_orb", + "filename": "shiny_stone", "rotated": false, "trimmed": true, "sourceSize": { @@ -5459,14 +5522,35 @@ "spriteSourceSize": { "x": 5, "y": 6, - "w": 22, - "h": 20 + "w": 21, + "h": 21 }, "frame": { - "x": 210, - "y": 256, - "w": 22, - "h": 20 + "x": 284, + "y": 320, + "w": 21, + "h": 21 + } + }, + { + "filename": "alakazite", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 32, + "h": 32 + }, + "spriteSourceSize": { + "x": 8, + "y": 8, + "w": 16, + "h": 16 + }, + "frame": { + "x": 139, + "y": 309, + "w": 16, + "h": 16 } }, { @@ -5484,12 +5568,54 @@ "h": 22 }, "frame": { - "x": 232, - "y": 257, + "x": 135, + "y": 325, "w": 22, "h": 22 } }, + { + "filename": "zoom_lens", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 32, + "h": 32 + }, + "spriteSourceSize": { + "x": 5, + "y": 6, + "w": 21, + "h": 21 + }, + "frame": { + "x": 157, + "y": 322, + "w": 21, + "h": 21 + } + }, + { + "filename": "metronome", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 32, + "h": 32 + }, + "spriteSourceSize": { + "x": 7, + "y": 5, + "w": 17, + "h": 22 + }, + "frame": { + "x": 178, + "y": 325, + "w": 17, + "h": 22 + } + }, { "filename": "tm_grass", "rotated": false, @@ -5505,12 +5631,54 @@ "h": 22 }, "frame": { - "x": 254, - "y": 258, + "x": 136, + "y": 347, "w": 22, "h": 22 } }, + { + "filename": "blue_orb", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 32, + "h": 32 + }, + "spriteSourceSize": { + "x": 6, + "y": 6, + "w": 20, + "h": 20 + }, + "frame": { + "x": 158, + "y": 343, + "w": 20, + "h": 20 + } + }, + { + "filename": "super_potion", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 32, + "h": 32 + }, + "spriteSourceSize": { + "x": 8, + "y": 5, + "w": 17, + "h": 23 + }, + "frame": { + "x": 141, + "y": 369, + "w": 17, + "h": 23 + } + }, { "filename": "tm_ground", "rotated": false, @@ -5526,12 +5694,54 @@ "h": 22 }, "frame": { - "x": 175, - "y": 307, + "x": 158, + "y": 363, "w": 22, "h": 22 } }, + { + "filename": "metal_coat", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 32, + "h": 32 + }, + "spriteSourceSize": { + "x": 6, + "y": 5, + "w": 19, + "h": 22 + }, + "frame": { + "x": 141, + "y": 392, + "w": 19, + "h": 22 + } + }, + { + "filename": "tera_orb", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 32, + "h": 32 + }, + "spriteSourceSize": { + "x": 5, + "y": 6, + "w": 22, + "h": 20 + }, + "frame": { + "x": 195, + "y": 334, + "w": 22, + "h": 20 + } + }, { "filename": "tm_ice", "rotated": false, @@ -5547,8 +5757,8 @@ "h": 22 }, "frame": { - "x": 177, - "y": 329, + "x": 217, + "y": 339, "w": 22, "h": 22 } @@ -5568,8 +5778,8 @@ "h": 22 }, "frame": { - "x": 179, - "y": 351, + "x": 239, + "y": 341, "w": 22, "h": 22 } @@ -5589,8 +5799,8 @@ "h": 22 }, "frame": { - "x": 179, - "y": 373, + "x": 261, + "y": 341, "w": 22, "h": 22 } @@ -5610,14 +5820,14 @@ "h": 22 }, "frame": { - "x": 157, - "y": 384, + "x": 283, + "y": 341, "w": 22, "h": 22 } }, { - "filename": "upgrade", + "filename": "tm_rock", "rotated": false, "trimmed": true, "sourceSize": { @@ -5626,36 +5836,15 @@ }, "spriteSourceSize": { "x": 5, - "y": 7, + "y": 5, "w": 22, - "h": 19 + "h": 22 }, "frame": { - "x": 109, - "y": 406, + "x": 160, + "y": 385, "w": 22, - "h": 19 - } - }, - { - "filename": "metal_alloy", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 32 - }, - "spriteSourceSize": { - "x": 6, - "y": 7, - "w": 21, - "h": 19 - }, - "frame": { - "x": 131, - "y": 406, - "w": 21, - "h": 19 + "h": 22 } }, { @@ -5673,8 +5862,8 @@ "h": 19 }, "frame": { - "x": 152, - "y": 406, + "x": 160, + "y": 407, "w": 20, "h": 19 } @@ -5694,14 +5883,14 @@ "h": 19 }, "frame": { - "x": 172, - "y": 406, + "x": 180, + "y": 407, "w": 20, "h": 19 } }, { - "filename": "absolite", + "filename": "altarianite", "rotated": false, "trimmed": true, "sourceSize": { @@ -5715,14 +5904,14 @@ "h": 16 }, "frame": { - "x": 116, - "y": 390, + "x": 178, + "y": 347, "w": 16, "h": 16 } }, { - "filename": "aerodactylite", + "filename": "leftovers", "rotated": false, "trimmed": true, "sourceSize": { @@ -5731,35 +5920,14 @@ }, "spriteSourceSize": { "x": 8, - "y": 8, - "w": 16, - "h": 16 - }, - "frame": { - "x": 132, - "y": 390, - "w": 16, - "h": 16 - } - }, - { - "filename": "tm_rock", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 32 - }, - "spriteSourceSize": { - "x": 5, "y": 5, - "w": 22, + "w": 15, "h": 22 }, "frame": { - "x": 388, - "y": 198, - "w": 22, + "x": 180, + "y": 363, + "w": 15, "h": 22 } }, @@ -5778,12 +5946,33 @@ "h": 22 }, "frame": { - "x": 277, - "y": 211, + "x": 182, + "y": 385, "w": 22, "h": 22 } }, + { + "filename": "razor_claw", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 32, + "h": 32 + }, + "spriteSourceSize": { + "x": 6, + "y": 7, + "w": 20, + "h": 19 + }, + "frame": { + "x": 200, + "y": 407, + "w": 20, + "h": 19 + } + }, { "filename": "tm_water", "rotated": false, @@ -5799,8 +5988,8 @@ "h": 22 }, "frame": { - "x": 276, - "y": 233, + "x": 195, + "y": 354, "w": 22, "h": 22 } @@ -5820,8 +6009,8 @@ "h": 22 }, "frame": { - "x": 276, - "y": 255, + "x": 217, + "y": 361, "w": 22, "h": 22 } @@ -5841,8 +6030,8 @@ "h": 22 }, "frame": { - "x": 299, - "y": 219, + "x": 239, + "y": 363, "w": 22, "h": 22 } @@ -5862,8 +6051,8 @@ "h": 22 }, "frame": { - "x": 321, - "y": 219, + "x": 261, + "y": 363, "w": 22, "h": 22 } @@ -5883,12 +6072,54 @@ "h": 22 }, "frame": { - "x": 343, - "y": 219, + "x": 283, + "y": 363, "w": 22, "h": 22 } }, + { + "filename": "soothe_bell", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 32, + "h": 32 + }, + "spriteSourceSize": { + "x": 8, + "y": 5, + "w": 17, + "h": 22 + }, + "frame": { + "x": 204, + "y": 385, + "w": 17, + "h": 22 + } + }, + { + "filename": "white_herb", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 32, + "h": 32 + }, + "spriteSourceSize": { + "x": 6, + "y": 7, + "w": 20, + "h": 19 + }, + "frame": { + "x": 220, + "y": 407, + "w": 20, + "h": 19 + } + }, { "filename": "x_defense", "rotated": false, @@ -5904,8 +6135,8 @@ "h": 22 }, "frame": { - "x": 365, - "y": 219, + "x": 221, + "y": 385, "w": 22, "h": 22 } @@ -5925,12 +6156,33 @@ "h": 22 }, "frame": { - "x": 298, - "y": 241, + "x": 243, + "y": 385, "w": 22, "h": 22 } }, + { + "filename": "miracle_seed", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 32, + "h": 32 + }, + "spriteSourceSize": { + "x": 6, + "y": 7, + "w": 19, + "h": 19 + }, + "frame": { + "x": 240, + "y": 407, + "w": 19, + "h": 19 + } + }, { "filename": "x_sp_def", "rotated": false, @@ -5946,8 +6198,8 @@ "h": 22 }, "frame": { - "x": 320, - "y": 241, + "x": 265, + "y": 385, "w": 22, "h": 22 } @@ -5967,117 +6219,12 @@ "h": 22 }, "frame": { - "x": 342, - "y": 241, + "x": 287, + "y": 385, "w": 22, "h": 22 } }, - { - "filename": "dusk_stone", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 32 - }, - "spriteSourceSize": { - "x": 6, - "y": 6, - "w": 21, - "h": 21 - }, - "frame": { - "x": 364, - "y": 241, - "w": 21, - "h": 21 - } - }, - { - "filename": "poison_barb", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 32 - }, - "spriteSourceSize": { - "x": 5, - "y": 6, - "w": 21, - "h": 21 - }, - "frame": { - "x": 387, - "y": 220, - "w": 21, - "h": 21 - } - }, - { - "filename": "golden_egg", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 32 - }, - "spriteSourceSize": { - "x": 7, - "y": 6, - "w": 17, - "h": 20 - }, - "frame": { - "x": 408, - "y": 220, - "w": 17, - "h": 20 - } - }, - { - "filename": "shiny_stone", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 32 - }, - "spriteSourceSize": { - "x": 5, - "y": 6, - "w": 21, - "h": 21 - }, - "frame": { - "x": 385, - "y": 241, - "w": 21, - "h": 21 - } - }, - { - "filename": "quick_claw", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 32 - }, - "spriteSourceSize": { - "x": 6, - "y": 6, - "w": 19, - "h": 21 - }, - "frame": { - "x": 406, - "y": 241, - "w": 19, - "h": 21 - } - }, { "filename": "masterpiece_teacup", "rotated": false, @@ -6093,8 +6240,8 @@ "h": 18 }, "frame": { - "x": 298, - "y": 263, + "x": 259, + "y": 407, "w": 21, "h": 18 } @@ -6114,14 +6261,14 @@ "h": 18 }, "frame": { - "x": 319, - "y": 263, + "x": 280, + "y": 407, "w": 21, "h": 18 } }, { - "filename": "unremarkable_teacup", + "filename": "dark_stone", "rotated": false, "trimmed": true, "sourceSize": { @@ -6129,20 +6276,20 @@ "h": 32 }, "spriteSourceSize": { - "x": 5, + "x": 7, "y": 7, - "w": 21, + "w": 18, "h": 18 }, "frame": { - "x": 340, - "y": 263, - "w": 21, + "x": 301, + "y": 407, + "w": 18, "h": 18 } }, { - "filename": "zoom_lens", + "filename": "relic_gold", "rotated": false, "trimmed": true, "sourceSize": { @@ -6150,20 +6297,41 @@ "h": 32 }, "spriteSourceSize": { - "x": 5, - "y": 6, - "w": 21, - "h": 21 + "x": 9, + "y": 11, + "w": 15, + "h": 11 }, "frame": { - "x": 276, - "y": 277, - "w": 21, - "h": 21 + "x": 0, + "y": 414, + "w": 15, + "h": 11 } }, { - "filename": "everstone", + "filename": "full_heal", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 32, + "h": 32 + }, + "spriteSourceSize": { + "x": 9, + "y": 4, + "w": 15, + "h": 23 + }, + "frame": { + "x": 301, + "y": 212, + "w": 15, + "h": 23 + } + }, + { + "filename": "quick_claw", "rotated": false, "trimmed": true, "sourceSize": { @@ -6172,15 +6340,78 @@ }, "spriteSourceSize": { "x": 6, - "y": 8, - "w": 20, - "h": 17 + "y": 6, + "w": 19, + "h": 21 }, "frame": { - "x": 297, - "y": 281, + "x": 301, + "y": 235, + "w": 19, + "h": 21 + } + }, + { + "filename": "spell_tag", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 32, + "h": 32 + }, + "spriteSourceSize": { + "x": 7, + "y": 6, + "w": 19, + "h": 21 + }, + "frame": { + "x": 303, + "y": 256, + "w": 19, + "h": 21 + } + }, + { + "filename": "candy_jar", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 32, + "h": 32 + }, + "spriteSourceSize": { + "x": 6, + "y": 6, + "w": 19, + "h": 20 + }, + "frame": { + "x": 303, + "y": 277, + "w": 19, + "h": 20 + } + }, + { + "filename": "gb", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 32, + "h": 32 + }, + "spriteSourceSize": { + "x": 6, + "y": 6, "w": 20, - "h": 17 + "h": 20 + }, + "frame": { + "x": 305, + "y": 297, + "w": 20, + "h": 20 } }, { @@ -6198,8 +6429,8 @@ "h": 20 }, "frame": { - "x": 317, - "y": 281, + "x": 305, + "y": 317, "w": 20, "h": 20 } @@ -6219,54 +6450,12 @@ "h": 20 }, "frame": { - "x": 337, - "y": 281, + "x": 305, + "y": 337, "w": 20, "h": 20 } }, - { - "filename": "candy_jar", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 32 - }, - "spriteSourceSize": { - "x": 6, - "y": 6, - "w": 19, - "h": 20 - }, - "frame": { - "x": 357, - "y": 281, - "w": 19, - "h": 20 - } - }, - { - "filename": "baton", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 32 - }, - "spriteSourceSize": { - "x": 7, - "y": 7, - "w": 18, - "h": 18 - }, - "frame": { - "x": 361, - "y": 263, - "w": 18, - "h": 18 - } - }, { "filename": "pb", "rotated": false, @@ -6282,12 +6471,33 @@ "h": 20 }, "frame": { - "x": 379, - "y": 262, + "x": 305, + "y": 357, "w": 20, "h": 20 } }, + { + "filename": "hard_stone", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 32, + "h": 32 + }, + "spriteSourceSize": { + "x": 6, + "y": 6, + "w": 19, + "h": 20 + }, + "frame": { + "x": 309, + "y": 377, + "w": 19, + "h": 20 + } + }, { "filename": "pb_gold", "rotated": false, @@ -6303,33 +6513,12 @@ "h": 20 }, "frame": { - "x": 399, - "y": 262, + "x": 302, + "y": 148, "w": 20, "h": 20 } }, - { - "filename": "razor_claw", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 32 - }, - "spriteSourceSize": { - "x": 6, - "y": 7, - "w": 20, - "h": 19 - }, - "frame": { - "x": 376, - "y": 282, - "w": 20, - "h": 19 - } - }, { "filename": "rb", "rotated": false, @@ -6345,33 +6534,12 @@ "h": 20 }, "frame": { - "x": 396, - "y": 282, + "x": 322, + "y": 148, "w": 20, "h": 20 } }, - { - "filename": "spell_tag", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 32 - }, - "spriteSourceSize": { - "x": 7, - "y": 6, - "w": 19, - "h": 21 - }, - "frame": { - "x": 192, - "y": 395, - "w": 19, - "h": 21 - } - }, { "filename": "smooth_meteorite", "rotated": false, @@ -6387,8 +6555,8 @@ "h": 20 }, "frame": { - "x": 211, - "y": 276, + "x": 303, + "y": 168, "w": 20, "h": 20 } @@ -6408,8 +6576,8 @@ "h": 20 }, "frame": { - "x": 231, - "y": 279, + "x": 342, + "y": 149, "w": 20, "h": 20 } @@ -6429,14 +6597,14 @@ "h": 20 }, "frame": { - "x": 251, - "y": 280, + "x": 362, + "y": 149, "w": 20, "h": 20 } }, { - "filename": "mystery_egg", + "filename": "flame_orb", "rotated": false, "trimmed": true, "sourceSize": { @@ -6444,20 +6612,20 @@ "h": 32 }, "spriteSourceSize": { - "x": 8, - "y": 8, - "w": 16, + "x": 7, + "y": 7, + "w": 18, "h": 18 }, "frame": { - "x": 195, - "y": 276, - "w": 16, + "x": 323, + "y": 168, + "w": 18, "h": 18 } }, { - "filename": "white_herb", + "filename": "unremarkable_teacup", "rotated": false, "trimmed": true, "sourceSize": { @@ -6465,16 +6633,16 @@ "h": 32 }, "spriteSourceSize": { - "x": 6, + "x": 5, "y": 7, - "w": 20, - "h": 19 + "w": 21, + "h": 18 }, "frame": { - "x": 211, - "y": 296, - "w": 20, - "h": 19 + "x": 341, + "y": 169, + "w": 21, + "h": 18 } }, { @@ -6492,8 +6660,8 @@ "h": 18 }, "frame": { - "x": 231, - "y": 299, + "x": 362, + "y": 169, "w": 20, "h": 18 } @@ -6513,54 +6681,12 @@ "h": 18 }, "frame": { - "x": 251, - "y": 300, + "x": 382, + "y": 150, "w": 20, "h": 18 } }, - { - "filename": "hard_stone", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 32 - }, - "spriteSourceSize": { - "x": 6, - "y": 6, - "w": 19, - "h": 20 - }, - "frame": { - "x": 271, - "y": 298, - "w": 19, - "h": 20 - } - }, - { - "filename": "miracle_seed", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 32 - }, - "spriteSourceSize": { - "x": 6, - "y": 7, - "w": 19, - "h": 19 - }, - "frame": { - "x": 290, - "y": 298, - "w": 19, - "h": 19 - } - }, { "filename": "wl_awakening", "rotated": false, @@ -6576,8 +6702,8 @@ "h": 18 }, "frame": { - "x": 309, - "y": 301, + "x": 382, + "y": 168, "w": 20, "h": 18 } @@ -6597,12 +6723,33 @@ "h": 18 }, "frame": { - "x": 329, - "y": 301, + "x": 402, + "y": 163, "w": 20, "h": 18 } }, + { + "filename": "everstone", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 32, + "h": 32 + }, + "spriteSourceSize": { + "x": 6, + "y": 8, + "w": 20, + "h": 17 + }, + "frame": { + "x": 402, + "y": 181, + "w": 20, + "h": 17 + } + }, { "filename": "wl_custom_spliced", "rotated": false, @@ -6618,8 +6765,8 @@ "h": 18 }, "frame": { - "x": 349, - "y": 301, + "x": 382, + "y": 186, "w": 20, "h": 18 } @@ -6639,8 +6786,8 @@ "h": 18 }, "frame": { - "x": 369, - "y": 301, + "x": 402, + "y": 198, "w": 20, "h": 18 } @@ -6660,14 +6807,14 @@ "h": 18 }, "frame": { - "x": 389, - "y": 302, + "x": 303, + "y": 188, "w": 20, "h": 18 } }, { - "filename": "aggronite", + "filename": "light_ball", "rotated": false, "trimmed": true, "sourceSize": { @@ -6675,37 +6822,16 @@ "h": 32 }, "spriteSourceSize": { - "x": 8, - "y": 8, - "w": 16, - "h": 16 + "x": 7, + "y": 7, + "w": 18, + "h": 18 }, "frame": { - "x": 409, - "y": 302, - "w": 16, - "h": 16 - } - }, - { - "filename": "alakazite", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 32 - }, - "spriteSourceSize": { - "x": 8, - "y": 8, - "w": 16, - "h": 16 - }, - "frame": { - "x": 409, - "y": 318, - "w": 16, - "h": 16 + "x": 323, + "y": 186, + "w": 18, + "h": 18 } }, { @@ -6723,8 +6849,8 @@ "h": 18 }, "frame": { - "x": 211, - "y": 315, + "x": 341, + "y": 187, "w": 20, "h": 18 } @@ -6744,12 +6870,33 @@ "h": 18 }, "frame": { - "x": 231, - "y": 317, + "x": 361, + "y": 187, "w": 20, "h": 18 } }, + { + "filename": "light_stone", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 32, + "h": 32 + }, + "spriteSourceSize": { + "x": 7, + "y": 7, + "w": 18, + "h": 18 + }, + "frame": { + "x": 323, + "y": 204, + "w": 18, + "h": 18 + } + }, { "filename": "wl_full_restore", "rotated": false, @@ -6765,8 +6912,8 @@ "h": 18 }, "frame": { - "x": 251, - "y": 318, + "x": 341, + "y": 205, "w": 20, "h": 18 } @@ -6786,33 +6933,12 @@ "h": 18 }, "frame": { - "x": 271, - "y": 318, + "x": 361, + "y": 205, "w": 20, "h": 18 } }, - { - "filename": "oval_stone", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 32 - }, - "spriteSourceSize": { - "x": 7, - "y": 7, - "w": 18, - "h": 19 - }, - "frame": { - "x": 291, - "y": 317, - "w": 18, - "h": 19 - } - }, { "filename": "wl_hyper_potion", "rotated": false, @@ -6828,8 +6954,8 @@ "h": 18 }, "frame": { - "x": 309, - "y": 319, + "x": 381, + "y": 204, "w": 20, "h": 18 } @@ -6849,8 +6975,8 @@ "h": 18 }, "frame": { - "x": 329, - "y": 319, + "x": 401, + "y": 216, "w": 20, "h": 18 } @@ -6870,8 +6996,8 @@ "h": 18 }, "frame": { - "x": 349, - "y": 319, + "x": 381, + "y": 222, "w": 20, "h": 18 } @@ -6891,8 +7017,8 @@ "h": 18 }, "frame": { - "x": 369, - "y": 319, + "x": 401, + "y": 234, "w": 20, "h": 18 } @@ -6912,33 +7038,12 @@ "h": 18 }, "frame": { - "x": 389, - "y": 320, + "x": 320, + "y": 222, "w": 20, "h": 18 } }, - { - "filename": "altarianite", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 32 - }, - "spriteSourceSize": { - "x": 8, - "y": 8, - "w": 16, - "h": 16 - }, - "frame": { - "x": 409, - "y": 334, - "w": 16, - "h": 16 - } - }, { "filename": "wl_max_ether", "rotated": false, @@ -6954,54 +7059,12 @@ "h": 18 }, "frame": { - "x": 199, - "y": 333, + "x": 340, + "y": 223, "w": 20, "h": 18 } }, - { - "filename": "razor_fang", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 32 - }, - "spriteSourceSize": { - "x": 7, - "y": 6, - "w": 18, - "h": 20 - }, - "frame": { - "x": 201, - "y": 351, - "w": 18, - "h": 20 - } - }, - { - "filename": "lucky_egg", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 32 - }, - "spriteSourceSize": { - "x": 7, - "y": 6, - "w": 17, - "h": 20 - }, - "frame": { - "x": 201, - "y": 371, - "w": 17, - "h": 20 - } - }, { "filename": "wl_max_potion", "rotated": false, @@ -7017,12 +7080,96 @@ "h": 18 }, "frame": { - "x": 219, - "y": 335, + "x": 360, + "y": 223, "w": 20, "h": 18 } }, + { + "filename": "ampharosite", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 32, + "h": 32 + }, + "spriteSourceSize": { + "x": 8, + "y": 8, + "w": 16, + "h": 16 + }, + "frame": { + "x": 320, + "y": 240, + "w": 16, + "h": 16 + } + }, + { + "filename": "mystery_egg", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 32, + "h": 32 + }, + "spriteSourceSize": { + "x": 8, + "y": 8, + "w": 16, + "h": 18 + }, + "frame": { + "x": 322, + "y": 256, + "w": 16, + "h": 18 + } + }, + { + "filename": "toxic_orb", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 32, + "h": 32 + }, + "spriteSourceSize": { + "x": 7, + "y": 7, + "w": 18, + "h": 18 + }, + "frame": { + "x": 322, + "y": 274, + "w": 18, + "h": 18 + } + }, + { + "filename": "eviolite", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 32, + "h": 32 + }, + "spriteSourceSize": { + "x": 8, + "y": 8, + "w": 15, + "h": 15 + }, + "frame": { + "x": 336, + "y": 241, + "w": 15, + "h": 15 + } + }, { "filename": "wl_max_revive", "rotated": false, @@ -7038,8 +7185,8 @@ "h": 18 }, "frame": { - "x": 219, - "y": 353, + "x": 351, + "y": 241, "w": 20, "h": 18 } @@ -7059,8 +7206,8 @@ "h": 18 }, "frame": { - "x": 218, - "y": 371, + "x": 325, + "y": 292, "w": 20, "h": 18 } @@ -7080,8 +7227,8 @@ "h": 18 }, "frame": { - "x": 239, - "y": 336, + "x": 325, + "y": 310, "w": 20, "h": 18 } @@ -7101,8 +7248,8 @@ "h": 18 }, "frame": { - "x": 259, - "y": 336, + "x": 325, + "y": 328, "w": 20, "h": 18 } @@ -7122,8 +7269,8 @@ "h": 18 }, "frame": { - "x": 279, - "y": 336, + "x": 325, + "y": 346, "w": 20, "h": 18 } @@ -7143,159 +7290,12 @@ "h": 18 }, "frame": { - "x": 239, - "y": 354, + "x": 371, + "y": 241, "w": 20, "h": 18 } }, - { - "filename": "candy", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 32 - }, - "spriteSourceSize": { - "x": 7, - "y": 11, - "w": 18, - "h": 18 - }, - "frame": { - "x": 259, - "y": 354, - "w": 18, - "h": 18 - } - }, - { - "filename": "dark_stone", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 32 - }, - "spriteSourceSize": { - "x": 7, - "y": 7, - "w": 18, - "h": 18 - }, - "frame": { - "x": 277, - "y": 354, - "w": 18, - "h": 18 - } - }, - { - "filename": "flame_orb", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 32 - }, - "spriteSourceSize": { - "x": 7, - "y": 7, - "w": 18, - "h": 18 - }, - "frame": { - "x": 238, - "y": 372, - "w": 18, - "h": 18 - } - }, - { - "filename": "light_ball", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 32 - }, - "spriteSourceSize": { - "x": 7, - "y": 7, - "w": 18, - "h": 18 - }, - "frame": { - "x": 256, - "y": 372, - "w": 18, - "h": 18 - } - }, - { - "filename": "light_stone", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 32 - }, - "spriteSourceSize": { - "x": 7, - "y": 7, - "w": 18, - "h": 18 - }, - "frame": { - "x": 274, - "y": 372, - "w": 18, - "h": 18 - } - }, - { - "filename": "toxic_orb", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 32 - }, - "spriteSourceSize": { - "x": 7, - "y": 7, - "w": 18, - "h": 18 - }, - "frame": { - "x": 299, - "y": 337, - "w": 18, - "h": 18 - } - }, - { - "filename": "ampharosite", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 32 - }, - "spriteSourceSize": { - "x": 8, - "y": 8, - "w": 16, - "h": 16 - }, - "frame": { - "x": 317, - "y": 337, - "w": 16, - "h": 16 - } - }, { "filename": "audinite", "rotated": false, @@ -7311,8 +7311,8 @@ "h": 16 }, "frame": { - "x": 333, - "y": 337, + "x": 328, + "y": 364, "w": 16, "h": 16 } @@ -7332,12 +7332,33 @@ "h": 16 }, "frame": { - "x": 349, - "y": 337, + "x": 328, + "y": 380, "w": 16, "h": 16 } }, + { + "filename": "prism_scale", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 32, + "h": 32 + }, + "spriteSourceSize": { + "x": 9, + "y": 8, + "w": 15, + "h": 15 + }, + "frame": { + "x": 338, + "y": 259, + "w": 15, + "h": 15 + } + }, { "filename": "beedrillite", "rotated": false, @@ -7353,8 +7374,8 @@ "h": 16 }, "frame": { - "x": 365, - "y": 337, + "x": 353, + "y": 259, "w": 16, "h": 16 } @@ -7374,8 +7395,8 @@ "h": 16 }, "frame": { - "x": 295, - "y": 355, + "x": 369, + "y": 259, "w": 16, "h": 16 } @@ -7395,8 +7416,8 @@ "h": 16 }, "frame": { - "x": 381, - "y": 338, + "x": 385, + "y": 259, "w": 16, "h": 16 } @@ -7416,8 +7437,8 @@ "h": 16 }, "frame": { - "x": 311, - "y": 355, + "x": 401, + "y": 252, "w": 16, "h": 16 } @@ -7437,8 +7458,8 @@ "h": 16 }, "frame": { - "x": 327, - "y": 353, + "x": 401, + "y": 268, "w": 16, "h": 16 } @@ -7458,8 +7479,8 @@ "h": 16 }, "frame": { - "x": 343, - "y": 353, + "x": 340, + "y": 275, "w": 16, "h": 16 } @@ -7479,8 +7500,8 @@ "h": 16 }, "frame": { - "x": 359, - "y": 353, + "x": 356, + "y": 275, "w": 16, "h": 16 } @@ -7500,8 +7521,8 @@ "h": 16 }, "frame": { - "x": 375, - "y": 354, + "x": 372, + "y": 275, "w": 16, "h": 16 } @@ -7521,8 +7542,8 @@ "h": 16 }, "frame": { - "x": 391, - "y": 354, + "x": 345, + "y": 291, "w": 16, "h": 16 } @@ -7542,8 +7563,8 @@ "h": 16 }, "frame": { - "x": 407, - "y": 350, + "x": 345, + "y": 307, "w": 16, "h": 16 } @@ -7563,8 +7584,8 @@ "h": 16 }, "frame": { - "x": 407, - "y": 366, + "x": 361, + "y": 291, "w": 16, "h": 16 } @@ -7584,8 +7605,8 @@ "h": 16 }, "frame": { - "x": 211, - "y": 391, + "x": 345, + "y": 323, "w": 16, "h": 16 } @@ -7605,8 +7626,8 @@ "h": 16 }, "frame": { - "x": 211, - "y": 407, + "x": 361, + "y": 307, "w": 16, "h": 16 } @@ -7626,8 +7647,8 @@ "h": 16 }, "frame": { - "x": 227, - "y": 390, + "x": 345, + "y": 339, "w": 16, "h": 16 } @@ -7647,8 +7668,8 @@ "h": 16 }, "frame": { - "x": 227, - "y": 406, + "x": 361, + "y": 323, "w": 16, "h": 16 } @@ -7668,8 +7689,8 @@ "h": 16 }, "frame": { - "x": 243, - "y": 390, + "x": 361, + "y": 339, "w": 16, "h": 16 } @@ -7689,8 +7710,8 @@ "h": 16 }, "frame": { - "x": 243, - "y": 406, + "x": 377, + "y": 291, "w": 16, "h": 16 } @@ -7710,8 +7731,8 @@ "h": 16 }, "frame": { - "x": 259, - "y": 390, + "x": 377, + "y": 307, "w": 16, "h": 16 } @@ -7731,8 +7752,8 @@ "h": 16 }, "frame": { - "x": 259, - "y": 406, + "x": 377, + "y": 323, "w": 16, "h": 16 } @@ -7752,8 +7773,8 @@ "h": 16 }, "frame": { - "x": 275, - "y": 390, + "x": 377, + "y": 339, "w": 16, "h": 16 } @@ -7773,8 +7794,8 @@ "h": 16 }, "frame": { - "x": 275, - "y": 406, + "x": 345, + "y": 355, "w": 16, "h": 16 } @@ -7794,8 +7815,8 @@ "h": 16 }, "frame": { - "x": 292, - "y": 372, + "x": 361, + "y": 355, "w": 16, "h": 16 } @@ -7815,8 +7836,8 @@ "h": 16 }, "frame": { - "x": 308, - "y": 371, + "x": 377, + "y": 355, "w": 16, "h": 16 } @@ -7836,7 +7857,7 @@ "h": 16 }, "frame": { - "x": 324, + "x": 344, "y": 371, "w": 16, "h": 16 @@ -7857,8 +7878,8 @@ "h": 16 }, "frame": { - "x": 340, - "y": 369, + "x": 360, + "y": 371, "w": 16, "h": 16 } @@ -7878,8 +7899,8 @@ "h": 16 }, "frame": { - "x": 356, - "y": 369, + "x": 376, + "y": 371, "w": 16, "h": 16 } @@ -7899,8 +7920,8 @@ "h": 16 }, "frame": { - "x": 372, - "y": 370, + "x": 344, + "y": 387, "w": 16, "h": 16 } @@ -7920,8 +7941,8 @@ "h": 16 }, "frame": { - "x": 388, - "y": 370, + "x": 360, + "y": 387, "w": 16, "h": 16 } @@ -7941,8 +7962,8 @@ "h": 16 }, "frame": { - "x": 292, - "y": 388, + "x": 376, + "y": 387, "w": 16, "h": 16 } @@ -7962,8 +7983,8 @@ "h": 16 }, "frame": { - "x": 308, - "y": 387, + "x": 328, + "y": 396, "w": 16, "h": 16 } @@ -7983,8 +8004,8 @@ "h": 16 }, "frame": { - "x": 324, - "y": 387, + "x": 344, + "y": 403, "w": 16, "h": 16 } @@ -8004,8 +8025,8 @@ "h": 16 }, "frame": { - "x": 340, - "y": 385, + "x": 360, + "y": 403, "w": 16, "h": 16 } @@ -8025,8 +8046,8 @@ "h": 16 }, "frame": { - "x": 356, - "y": 385, + "x": 376, + "y": 403, "w": 16, "h": 16 } @@ -8046,8 +8067,8 @@ "h": 16 }, "frame": { - "x": 291, - "y": 404, + "x": 393, + "y": 284, "w": 16, "h": 16 } @@ -8067,8 +8088,8 @@ "h": 16 }, "frame": { - "x": 372, - "y": 386, + "x": 393, + "y": 300, "w": 16, "h": 16 } @@ -8088,8 +8109,8 @@ "h": 16 }, "frame": { - "x": 388, - "y": 386, + "x": 393, + "y": 316, "w": 16, "h": 16 } @@ -8109,8 +8130,8 @@ "h": 16 }, "frame": { - "x": 404, - "y": 382, + "x": 393, + "y": 332, "w": 16, "h": 16 } @@ -8130,8 +8151,8 @@ "h": 16 }, "frame": { - "x": 404, - "y": 398, + "x": 393, + "y": 348, "w": 16, "h": 16 } @@ -8151,8 +8172,8 @@ "h": 16 }, "frame": { - "x": 340, - "y": 401, + "x": 409, + "y": 284, "w": 16, "h": 16 } @@ -8172,8 +8193,8 @@ "h": 16 }, "frame": { - "x": 356, - "y": 401, + "x": 409, + "y": 300, "w": 16, "h": 16 } @@ -8193,8 +8214,8 @@ "h": 16 }, "frame": { - "x": 372, - "y": 402, + "x": 409, + "y": 316, "w": 16, "h": 16 } @@ -8214,8 +8235,8 @@ "h": 16 }, "frame": { - "x": 388, - "y": 402, + "x": 409, + "y": 332, "w": 16, "h": 16 } @@ -8226,6 +8247,6 @@ "meta": { "app": "https://www.codeandweb.com/texturepacker", "version": "3.0", - "smartupdate": "$TexturePacker:SmartUpdate:4669e332ee400e355936594c14e7221c:1a1f5a801c94e8eb8589e13bc50105a1:110e074689c9edd2c54833ce2e4d9270$" + "smartupdate": "$TexturePacker:SmartUpdate:6dd58685cd89890a4361a424b59bfe65:ff9159978f3a103ee1d656fb76e37457:110e074689c9edd2c54833ce2e4d9270$" } } diff --git a/public/images/items.png b/public/images/items.png index 9de02d9e0e9..23c87cf3204 100644 Binary files a/public/images/items.png and b/public/images/items.png differ diff --git a/public/images/items/inverse.png b/public/images/items/inverse.png new file mode 100644 index 00000000000..b1ad5d2c00e Binary files /dev/null and b/public/images/items/inverse.png differ diff --git a/public/images/pokemon/469.png b/public/images/pokemon/469.png index 698f94fd61b..f9f9ea8af1a 100644 Binary files a/public/images/pokemon/469.png and b/public/images/pokemon/469.png differ diff --git a/public/images/pokemon/472.png b/public/images/pokemon/472.png index 56f3c91aa9b..cc13377bd53 100644 Binary files a/public/images/pokemon/472.png and b/public/images/pokemon/472.png differ diff --git a/public/images/pokemon/back/469.png b/public/images/pokemon/back/469.png index c9d40e7349a..f55bdd8f25f 100644 Binary files a/public/images/pokemon/back/469.png and b/public/images/pokemon/back/469.png differ diff --git a/public/images/pokemon/back/472.png b/public/images/pokemon/back/472.png index 223e43838d9..af5bfd64473 100644 Binary files a/public/images/pokemon/back/472.png and b/public/images/pokemon/back/472.png differ diff --git a/public/images/pokemon/back/821.png b/public/images/pokemon/back/821.png index a102a0491de..24e0edd705d 100644 Binary files a/public/images/pokemon/back/821.png and b/public/images/pokemon/back/821.png differ diff --git a/public/images/pokemon/back/shiny/821.png b/public/images/pokemon/back/shiny/821.png index 200489518c4..6d29988ed9f 100644 Binary files a/public/images/pokemon/back/shiny/821.png and b/public/images/pokemon/back/shiny/821.png differ diff --git a/public/images/pokemon/exp/751.json b/public/images/pokemon/exp/751.json index 7ac34e0ac04..2e28048706d 100644 --- a/public/images/pokemon/exp/751.json +++ b/public/images/pokemon/exp/751.json @@ -4,71 +4,155 @@ "image": "751.png", "format": "RGBA8888", "size": { - "w": 146, - "h": 146 + "w": 169, + "h": 169 }, "scale": 1, "frames": [ { - "filename": "0005.png", + "filename": "0006.png", "rotated": false, "trimmed": true, "sourceSize": { - "w": 32, - "h": 55 + "w": 35, + "h": 43 }, "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 32, - "h": 52 - }, - "frame": { "x": 0, "y": 0, - "w": 32, - "h": 52 - } - }, - { - "filename": "0004.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 55 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 32, - "h": 51 - }, - "frame": { - "x": 0, - "y": 52, - "w": 32, - "h": 51 - } - }, - { - "filename": "0011.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 55 - }, - "spriteSourceSize": { - "x": 0, - "y": 12, - "w": 32, + "w": 33, "h": 43 }, "frame": { "x": 0, - "y": 103, - "w": 32, + "y": 0, + "w": 33, + "h": 43 + } + }, + { + "filename": "0007.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 35, + "h": 43 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 33, + "h": 43 + }, + "frame": { + "x": 0, + "y": 0, + "w": 33, + "h": 43 + } + }, + { + "filename": "0045.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 35, + "h": 43 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 33, + "h": 43 + }, + "frame": { + "x": 0, + "y": 0, + "w": 33, + "h": 43 + } + }, + { + "filename": "0046.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 35, + "h": 43 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 33, + "h": 43 + }, + "frame": { + "x": 0, + "y": 0, + "w": 33, + "h": 43 + } + }, + { + "filename": "0084.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 35, + "h": 43 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 33, + "h": 43 + }, + "frame": { + "x": 0, + "y": 0, + "w": 33, + "h": 43 + } + }, + { + "filename": "0085.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 35, + "h": 43 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 33, + "h": 43 + }, + "frame": { + "x": 0, + "y": 0, + "w": 33, + "h": 43 + } + }, + { + "filename": "0008.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 35, + "h": 43 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 33, + "h": 43 + }, + "frame": { + "x": 0, + "y": 43, + "w": 33, "h": 43 } }, @@ -77,104 +161,104 @@ "rotated": false, "trimmed": true, "sourceSize": { - "w": 32, - "h": 55 + "w": 35, + "h": 43 }, "spriteSourceSize": { "x": 0, - "y": 4, - "w": 32, - "h": 50 + "y": 0, + "w": 33, + "h": 43 }, "frame": { - "x": 32, - "y": 0, - "w": 32, - "h": 50 + "x": 0, + "y": 43, + "w": 33, + "h": 43 } }, { - "filename": "0006.png", + "filename": "0047.png", "rotated": false, "trimmed": true, "sourceSize": { - "w": 32, - "h": 55 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 30, - "h": 51 - }, - "frame": { - "x": 32, - "y": 50, - "w": 30, - "h": 51 - } - }, - { - "filename": "0003.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 55 + "w": 35, + "h": 43 }, "spriteSourceSize": { "x": 0, - "y": 10, - "w": 32, - "h": 45 - }, - "frame": { - "x": 32, - "y": 101, - "w": 32, - "h": 45 - } - }, - { - "filename": "0008.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 32, - "h": 55 - }, - "spriteSourceSize": { - "x": 1, "y": 0, - "w": 31, - "h": 50 + "w": 33, + "h": 43 }, "frame": { - "x": 62, - "y": 50, - "w": 31, - "h": 50 + "x": 0, + "y": 43, + "w": 33, + "h": 43 } }, { - "filename": "0002.png", + "filename": "0048.png", "rotated": false, "trimmed": true, "sourceSize": { - "w": 32, - "h": 55 + "w": 35, + "h": 43 }, "spriteSourceSize": { "x": 0, - "y": 9, - "w": 32, - "h": 46 + "y": 0, + "w": 33, + "h": 43 }, "frame": { - "x": 64, - "y": 100, - "w": 32, - "h": 46 + "x": 0, + "y": 43, + "w": 33, + "h": 43 + } + }, + { + "filename": "0086.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 35, + "h": 43 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 33, + "h": 43 + }, + "frame": { + "x": 0, + "y": 43, + "w": 33, + "h": 43 + } + }, + { + "filename": "0087.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 35, + "h": 43 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 33, + "h": 43 + }, + "frame": { + "x": 0, + "y": 43, + "w": 33, + "h": 43 } }, { @@ -182,62 +266,377 @@ "rotated": false, "trimmed": true, "sourceSize": { - "w": 32, - "h": 55 + "w": 35, + "h": 43 }, "spriteSourceSize": { "x": 0, - "y": 4, - "w": 32, - "h": 49 + "y": 0, + "w": 33, + "h": 43 }, "frame": { - "x": 64, + "x": 33, "y": 0, - "w": 32, - "h": 49 + "w": 33, + "h": 43 } }, { - "filename": "0007.png", + "filename": "0011.png", "rotated": false, "trimmed": true, "sourceSize": { - "w": 32, - "h": 55 + "w": 35, + "h": 43 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 33, + "h": 43 + }, + "frame": { + "x": 33, + "y": 0, + "w": 33, + "h": 43 + } + }, + { + "filename": "0049.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 35, + "h": 43 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 33, + "h": 43 + }, + "frame": { + "x": 33, + "y": 0, + "w": 33, + "h": 43 + } + }, + { + "filename": "0050.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 35, + "h": 43 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 33, + "h": 43 + }, + "frame": { + "x": 33, + "y": 0, + "w": 33, + "h": 43 + } + }, + { + "filename": "0088.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 35, + "h": 43 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 33, + "h": 43 + }, + "frame": { + "x": 33, + "y": 0, + "w": 33, + "h": 43 + } + }, + { + "filename": "0089.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 35, + "h": 43 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 33, + "h": 43 + }, + "frame": { + "x": 33, + "y": 0, + "w": 33, + "h": 43 + } + }, + { + "filename": "0004.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 35, + "h": 43 }, "spriteSourceSize": { "x": 1, "y": 0, - "w": 31, - "h": 49 + "w": 32, + "h": 43 }, "frame": { - "x": 93, - "y": 49, - "w": 31, - "h": 49 + "x": 0, + "y": 86, + "w": 32, + "h": 43 } }, { - "filename": "0001.png", + "filename": "0005.png", "rotated": false, "trimmed": true, "sourceSize": { + "w": 35, + "h": 43 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, "w": 32, - "h": 55 + "h": 43 + }, + "frame": { + "x": 0, + "y": 86, + "w": 32, + "h": 43 + } + }, + { + "filename": "0043.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 35, + "h": 43 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 32, + "h": 43 + }, + "frame": { + "x": 0, + "y": 86, + "w": 32, + "h": 43 + } + }, + { + "filename": "0044.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 35, + "h": 43 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 32, + "h": 43 + }, + "frame": { + "x": 0, + "y": 86, + "w": 32, + "h": 43 + } + }, + { + "filename": "0082.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 35, + "h": 43 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 32, + "h": 43 + }, + "frame": { + "x": 0, + "y": 86, + "w": 32, + "h": 43 + } + }, + { + "filename": "0083.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 35, + "h": 43 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 32, + "h": 43 + }, + "frame": { + "x": 0, + "y": 86, + "w": 32, + "h": 43 + } + }, + { + "filename": "0014.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 35, + "h": 43 }, "spriteSourceSize": { "x": 0, - "y": 7, - "w": 32, - "h": 48 + "y": 3, + "w": 34, + "h": 40 }, "frame": { - "x": 96, - "y": 98, - "w": 32, - "h": 48 + "x": 0, + "y": 129, + "w": 34, + "h": 40 + } + }, + { + "filename": "0033.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 35, + "h": 43 + }, + "spriteSourceSize": { + "x": 0, + "y": 3, + "w": 34, + "h": 40 + }, + "frame": { + "x": 0, + "y": 129, + "w": 34, + "h": 40 + } + }, + { + "filename": "0053.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 35, + "h": 43 + }, + "spriteSourceSize": { + "x": 0, + "y": 3, + "w": 34, + "h": 40 + }, + "frame": { + "x": 0, + "y": 129, + "w": 34, + "h": 40 + } + }, + { + "filename": "0072.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 35, + "h": 43 + }, + "spriteSourceSize": { + "x": 0, + "y": 3, + "w": 34, + "h": 40 + }, + "frame": { + "x": 0, + "y": 129, + "w": 34, + "h": 40 + } + }, + { + "filename": "0092.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 35, + "h": 43 + }, + "spriteSourceSize": { + "x": 0, + "y": 3, + "w": 34, + "h": 40 + }, + "frame": { + "x": 0, + "y": 129, + "w": 34, + "h": 40 + } + }, + { + "filename": "0111.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 35, + "h": 43 + }, + "spriteSourceSize": { + "x": 0, + "y": 3, + "w": 34, + "h": 40 + }, + "frame": { + "x": 0, + "y": 129, + "w": 34, + "h": 40 } }, { @@ -245,20 +644,2393 @@ "rotated": false, "trimmed": true, "sourceSize": { + "w": 35, + "h": 43 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, "w": 32, - "h": 55 + "h": 43 + }, + "frame": { + "x": 66, + "y": 0, + "w": 32, + "h": 43 + } + }, + { + "filename": "0051.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 35, + "h": 43 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 32, + "h": 43 + }, + "frame": { + "x": 66, + "y": 0, + "w": 32, + "h": 43 + } + }, + { + "filename": "0090.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 35, + "h": 43 + }, + "spriteSourceSize": { + "x": 1, + "y": 0, + "w": 32, + "h": 43 + }, + "frame": { + "x": 66, + "y": 0, + "w": 32, + "h": 43 + } + }, + { + "filename": "0017.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 35, + "h": 43 }, "spriteSourceSize": { "x": 0, - "y": 10, - "w": 32, - "h": 45 + "y": 2, + "w": 34, + "h": 41 }, "frame": { - "x": 96, + "x": 33, + "y": 43, + "w": 34, + "h": 41 + } + }, + { + "filename": "0018.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 35, + "h": 43 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 34, + "h": 41 + }, + "frame": { + "x": 33, + "y": 43, + "w": 34, + "h": 41 + } + }, + { + "filename": "0036.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 35, + "h": 43 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 34, + "h": 41 + }, + "frame": { + "x": 33, + "y": 43, + "w": 34, + "h": 41 + } + }, + { + "filename": "0037.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 35, + "h": 43 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 34, + "h": 41 + }, + "frame": { + "x": 33, + "y": 43, + "w": 34, + "h": 41 + } + }, + { + "filename": "0056.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 35, + "h": 43 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 34, + "h": 41 + }, + "frame": { + "x": 33, + "y": 43, + "w": 34, + "h": 41 + } + }, + { + "filename": "0057.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 35, + "h": 43 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 34, + "h": 41 + }, + "frame": { + "x": 33, + "y": 43, + "w": 34, + "h": 41 + } + }, + { + "filename": "0075.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 35, + "h": 43 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 34, + "h": 41 + }, + "frame": { + "x": 33, + "y": 43, + "w": 34, + "h": 41 + } + }, + { + "filename": "0076.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 35, + "h": 43 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 34, + "h": 41 + }, + "frame": { + "x": 33, + "y": 43, + "w": 34, + "h": 41 + } + }, + { + "filename": "0095.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 35, + "h": 43 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 34, + "h": 41 + }, + "frame": { + "x": 33, + "y": 43, + "w": 34, + "h": 41 + } + }, + { + "filename": "0096.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 35, + "h": 43 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 34, + "h": 41 + }, + "frame": { + "x": 33, + "y": 43, + "w": 34, + "h": 41 + } + }, + { + "filename": "0114.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 35, + "h": 43 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 34, + "h": 41 + }, + "frame": { + "x": 33, + "y": 43, + "w": 34, + "h": 41 + } + }, + { + "filename": "0115.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 35, + "h": 43 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 34, + "h": 41 + }, + "frame": { + "x": 33, + "y": 43, + "w": 34, + "h": 41 + } + }, + { + "filename": "0029.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 35, + "h": 43 + }, + "spriteSourceSize": { + "x": 3, "y": 0, "w": 32, - "h": 45 + "h": 43 + }, + "frame": { + "x": 98, + "y": 0, + "w": 32, + "h": 43 + } + }, + { + "filename": "0030.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 35, + "h": 43 + }, + "spriteSourceSize": { + "x": 3, + "y": 0, + "w": 32, + "h": 43 + }, + "frame": { + "x": 98, + "y": 0, + "w": 32, + "h": 43 + } + }, + { + "filename": "0068.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 35, + "h": 43 + }, + "spriteSourceSize": { + "x": 3, + "y": 0, + "w": 32, + "h": 43 + }, + "frame": { + "x": 98, + "y": 0, + "w": 32, + "h": 43 + } + }, + { + "filename": "0069.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 35, + "h": 43 + }, + "spriteSourceSize": { + "x": 3, + "y": 0, + "w": 32, + "h": 43 + }, + "frame": { + "x": 98, + "y": 0, + "w": 32, + "h": 43 + } + }, + { + "filename": "0107.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 35, + "h": 43 + }, + "spriteSourceSize": { + "x": 3, + "y": 0, + "w": 32, + "h": 43 + }, + "frame": { + "x": 98, + "y": 0, + "w": 32, + "h": 43 + } + }, + { + "filename": "0108.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 35, + "h": 43 + }, + "spriteSourceSize": { + "x": 3, + "y": 0, + "w": 32, + "h": 43 + }, + "frame": { + "x": 98, + "y": 0, + "w": 32, + "h": 43 + } + }, + { + "filename": "0122.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 35, + "h": 43 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 34, + "h": 41 + }, + "frame": { + "x": 67, + "y": 43, + "w": 34, + "h": 41 + } + }, + { + "filename": "0134.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 35, + "h": 43 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 34, + "h": 41 + }, + "frame": { + "x": 67, + "y": 43, + "w": 34, + "h": 41 + } + }, + { + "filename": "0123.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 35, + "h": 43 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 34, + "h": 41 + }, + "frame": { + "x": 130, + "y": 0, + "w": 34, + "h": 41 + } + }, + { + "filename": "0129.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 35, + "h": 43 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 34, + "h": 41 + }, + "frame": { + "x": 130, + "y": 0, + "w": 34, + "h": 41 + } + }, + { + "filename": "0135.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 35, + "h": 43 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 34, + "h": 41 + }, + "frame": { + "x": 130, + "y": 0, + "w": 34, + "h": 41 + } + }, + { + "filename": "0141.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 35, + "h": 43 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 34, + "h": 41 + }, + "frame": { + "x": 130, + "y": 0, + "w": 34, + "h": 41 + } + }, + { + "filename": "0001.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 35, + "h": 43 + }, + "spriteSourceSize": { + "x": 2, + "y": 1, + "w": 31, + "h": 42 + }, + "frame": { + "x": 101, + "y": 43, + "w": 31, + "h": 42 + } + }, + { + "filename": "0002.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 35, + "h": 43 + }, + "spriteSourceSize": { + "x": 2, + "y": 1, + "w": 31, + "h": 42 + }, + "frame": { + "x": 101, + "y": 43, + "w": 31, + "h": 42 + } + }, + { + "filename": "0003.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 35, + "h": 43 + }, + "spriteSourceSize": { + "x": 2, + "y": 1, + "w": 31, + "h": 42 + }, + "frame": { + "x": 101, + "y": 43, + "w": 31, + "h": 42 + } + }, + { + "filename": "0015.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 35, + "h": 43 + }, + "spriteSourceSize": { + "x": 2, + "y": 1, + "w": 31, + "h": 42 + }, + "frame": { + "x": 101, + "y": 43, + "w": 31, + "h": 42 + } + }, + { + "filename": "0016.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 35, + "h": 43 + }, + "spriteSourceSize": { + "x": 2, + "y": 1, + "w": 31, + "h": 42 + }, + "frame": { + "x": 101, + "y": 43, + "w": 31, + "h": 42 + } + }, + { + "filename": "0019.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 35, + "h": 43 + }, + "spriteSourceSize": { + "x": 2, + "y": 1, + "w": 31, + "h": 42 + }, + "frame": { + "x": 101, + "y": 43, + "w": 31, + "h": 42 + } + }, + { + "filename": "0020.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 35, + "h": 43 + }, + "spriteSourceSize": { + "x": 2, + "y": 1, + "w": 31, + "h": 42 + }, + "frame": { + "x": 101, + "y": 43, + "w": 31, + "h": 42 + } + }, + { + "filename": "0021.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 35, + "h": 43 + }, + "spriteSourceSize": { + "x": 2, + "y": 1, + "w": 31, + "h": 42 + }, + "frame": { + "x": 101, + "y": 43, + "w": 31, + "h": 42 + } + }, + { + "filename": "0022.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 35, + "h": 43 + }, + "spriteSourceSize": { + "x": 2, + "y": 1, + "w": 31, + "h": 42 + }, + "frame": { + "x": 101, + "y": 43, + "w": 31, + "h": 42 + } + }, + { + "filename": "0034.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 35, + "h": 43 + }, + "spriteSourceSize": { + "x": 2, + "y": 1, + "w": 31, + "h": 42 + }, + "frame": { + "x": 101, + "y": 43, + "w": 31, + "h": 42 + } + }, + { + "filename": "0035.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 35, + "h": 43 + }, + "spriteSourceSize": { + "x": 2, + "y": 1, + "w": 31, + "h": 42 + }, + "frame": { + "x": 101, + "y": 43, + "w": 31, + "h": 42 + } + }, + { + "filename": "0038.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 35, + "h": 43 + }, + "spriteSourceSize": { + "x": 2, + "y": 1, + "w": 31, + "h": 42 + }, + "frame": { + "x": 101, + "y": 43, + "w": 31, + "h": 42 + } + }, + { + "filename": "0039.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 35, + "h": 43 + }, + "spriteSourceSize": { + "x": 2, + "y": 1, + "w": 31, + "h": 42 + }, + "frame": { + "x": 101, + "y": 43, + "w": 31, + "h": 42 + } + }, + { + "filename": "0040.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 35, + "h": 43 + }, + "spriteSourceSize": { + "x": 2, + "y": 1, + "w": 31, + "h": 42 + }, + "frame": { + "x": 101, + "y": 43, + "w": 31, + "h": 42 + } + }, + { + "filename": "0041.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 35, + "h": 43 + }, + "spriteSourceSize": { + "x": 2, + "y": 1, + "w": 31, + "h": 42 + }, + "frame": { + "x": 101, + "y": 43, + "w": 31, + "h": 42 + } + }, + { + "filename": "0042.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 35, + "h": 43 + }, + "spriteSourceSize": { + "x": 2, + "y": 1, + "w": 31, + "h": 42 + }, + "frame": { + "x": 101, + "y": 43, + "w": 31, + "h": 42 + } + }, + { + "filename": "0054.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 35, + "h": 43 + }, + "spriteSourceSize": { + "x": 2, + "y": 1, + "w": 31, + "h": 42 + }, + "frame": { + "x": 101, + "y": 43, + "w": 31, + "h": 42 + } + }, + { + "filename": "0055.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 35, + "h": 43 + }, + "spriteSourceSize": { + "x": 2, + "y": 1, + "w": 31, + "h": 42 + }, + "frame": { + "x": 101, + "y": 43, + "w": 31, + "h": 42 + } + }, + { + "filename": "0058.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 35, + "h": 43 + }, + "spriteSourceSize": { + "x": 2, + "y": 1, + "w": 31, + "h": 42 + }, + "frame": { + "x": 101, + "y": 43, + "w": 31, + "h": 42 + } + }, + { + "filename": "0059.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 35, + "h": 43 + }, + "spriteSourceSize": { + "x": 2, + "y": 1, + "w": 31, + "h": 42 + }, + "frame": { + "x": 101, + "y": 43, + "w": 31, + "h": 42 + } + }, + { + "filename": "0060.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 35, + "h": 43 + }, + "spriteSourceSize": { + "x": 2, + "y": 1, + "w": 31, + "h": 42 + }, + "frame": { + "x": 101, + "y": 43, + "w": 31, + "h": 42 + } + }, + { + "filename": "0061.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 35, + "h": 43 + }, + "spriteSourceSize": { + "x": 2, + "y": 1, + "w": 31, + "h": 42 + }, + "frame": { + "x": 101, + "y": 43, + "w": 31, + "h": 42 + } + }, + { + "filename": "0073.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 35, + "h": 43 + }, + "spriteSourceSize": { + "x": 2, + "y": 1, + "w": 31, + "h": 42 + }, + "frame": { + "x": 101, + "y": 43, + "w": 31, + "h": 42 + } + }, + { + "filename": "0074.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 35, + "h": 43 + }, + "spriteSourceSize": { + "x": 2, + "y": 1, + "w": 31, + "h": 42 + }, + "frame": { + "x": 101, + "y": 43, + "w": 31, + "h": 42 + } + }, + { + "filename": "0077.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 35, + "h": 43 + }, + "spriteSourceSize": { + "x": 2, + "y": 1, + "w": 31, + "h": 42 + }, + "frame": { + "x": 101, + "y": 43, + "w": 31, + "h": 42 + } + }, + { + "filename": "0078.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 35, + "h": 43 + }, + "spriteSourceSize": { + "x": 2, + "y": 1, + "w": 31, + "h": 42 + }, + "frame": { + "x": 101, + "y": 43, + "w": 31, + "h": 42 + } + }, + { + "filename": "0079.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 35, + "h": 43 + }, + "spriteSourceSize": { + "x": 2, + "y": 1, + "w": 31, + "h": 42 + }, + "frame": { + "x": 101, + "y": 43, + "w": 31, + "h": 42 + } + }, + { + "filename": "0080.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 35, + "h": 43 + }, + "spriteSourceSize": { + "x": 2, + "y": 1, + "w": 31, + "h": 42 + }, + "frame": { + "x": 101, + "y": 43, + "w": 31, + "h": 42 + } + }, + { + "filename": "0081.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 35, + "h": 43 + }, + "spriteSourceSize": { + "x": 2, + "y": 1, + "w": 31, + "h": 42 + }, + "frame": { + "x": 101, + "y": 43, + "w": 31, + "h": 42 + } + }, + { + "filename": "0093.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 35, + "h": 43 + }, + "spriteSourceSize": { + "x": 2, + "y": 1, + "w": 31, + "h": 42 + }, + "frame": { + "x": 101, + "y": 43, + "w": 31, + "h": 42 + } + }, + { + "filename": "0094.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 35, + "h": 43 + }, + "spriteSourceSize": { + "x": 2, + "y": 1, + "w": 31, + "h": 42 + }, + "frame": { + "x": 101, + "y": 43, + "w": 31, + "h": 42 + } + }, + { + "filename": "0097.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 35, + "h": 43 + }, + "spriteSourceSize": { + "x": 2, + "y": 1, + "w": 31, + "h": 42 + }, + "frame": { + "x": 101, + "y": 43, + "w": 31, + "h": 42 + } + }, + { + "filename": "0098.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 35, + "h": 43 + }, + "spriteSourceSize": { + "x": 2, + "y": 1, + "w": 31, + "h": 42 + }, + "frame": { + "x": 101, + "y": 43, + "w": 31, + "h": 42 + } + }, + { + "filename": "0099.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 35, + "h": 43 + }, + "spriteSourceSize": { + "x": 2, + "y": 1, + "w": 31, + "h": 42 + }, + "frame": { + "x": 101, + "y": 43, + "w": 31, + "h": 42 + } + }, + { + "filename": "0100.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 35, + "h": 43 + }, + "spriteSourceSize": { + "x": 2, + "y": 1, + "w": 31, + "h": 42 + }, + "frame": { + "x": 101, + "y": 43, + "w": 31, + "h": 42 + } + }, + { + "filename": "0112.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 35, + "h": 43 + }, + "spriteSourceSize": { + "x": 2, + "y": 1, + "w": 31, + "h": 42 + }, + "frame": { + "x": 101, + "y": 43, + "w": 31, + "h": 42 + } + }, + { + "filename": "0113.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 35, + "h": 43 + }, + "spriteSourceSize": { + "x": 2, + "y": 1, + "w": 31, + "h": 42 + }, + "frame": { + "x": 101, + "y": 43, + "w": 31, + "h": 42 + } + }, + { + "filename": "0116.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 35, + "h": 43 + }, + "spriteSourceSize": { + "x": 2, + "y": 1, + "w": 31, + "h": 42 + }, + "frame": { + "x": 101, + "y": 43, + "w": 31, + "h": 42 + } + }, + { + "filename": "0117.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 35, + "h": 43 + }, + "spriteSourceSize": { + "x": 2, + "y": 1, + "w": 31, + "h": 42 + }, + "frame": { + "x": 101, + "y": 43, + "w": 31, + "h": 42 + } + }, + { + "filename": "0118.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 35, + "h": 43 + }, + "spriteSourceSize": { + "x": 2, + "y": 1, + "w": 31, + "h": 42 + }, + "frame": { + "x": 101, + "y": 43, + "w": 31, + "h": 42 + } + }, + { + "filename": "0124.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 35, + "h": 43 + }, + "spriteSourceSize": { + "x": 2, + "y": 1, + "w": 31, + "h": 42 + }, + "frame": { + "x": 101, + "y": 43, + "w": 31, + "h": 42 + } + }, + { + "filename": "0130.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 35, + "h": 43 + }, + "spriteSourceSize": { + "x": 2, + "y": 1, + "w": 31, + "h": 42 + }, + "frame": { + "x": 101, + "y": 43, + "w": 31, + "h": 42 + } + }, + { + "filename": "0136.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 35, + "h": 43 + }, + "spriteSourceSize": { + "x": 2, + "y": 1, + "w": 31, + "h": 42 + }, + "frame": { + "x": 101, + "y": 43, + "w": 31, + "h": 42 + } + }, + { + "filename": "0142.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 35, + "h": 43 + }, + "spriteSourceSize": { + "x": 2, + "y": 1, + "w": 31, + "h": 42 + }, + "frame": { + "x": 101, + "y": 43, + "w": 31, + "h": 42 + } + }, + { + "filename": "0143.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 35, + "h": 43 + }, + "spriteSourceSize": { + "x": 2, + "y": 1, + "w": 31, + "h": 42 + }, + "frame": { + "x": 101, + "y": 43, + "w": 31, + "h": 42 + } + }, + { + "filename": "0144.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 35, + "h": 43 + }, + "spriteSourceSize": { + "x": 2, + "y": 1, + "w": 31, + "h": 42 + }, + "frame": { + "x": 101, + "y": 43, + "w": 31, + "h": 42 + } + }, + { + "filename": "0023.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 35, + "h": 43 + }, + "spriteSourceSize": { + "x": 2, + "y": 0, + "w": 31, + "h": 43 + }, + "frame": { + "x": 132, + "y": 41, + "w": 31, + "h": 43 + } + }, + { + "filename": "0024.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 35, + "h": 43 + }, + "spriteSourceSize": { + "x": 2, + "y": 0, + "w": 31, + "h": 43 + }, + "frame": { + "x": 132, + "y": 41, + "w": 31, + "h": 43 + } + }, + { + "filename": "0062.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 35, + "h": 43 + }, + "spriteSourceSize": { + "x": 2, + "y": 0, + "w": 31, + "h": 43 + }, + "frame": { + "x": 132, + "y": 41, + "w": 31, + "h": 43 + } + }, + { + "filename": "0063.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 35, + "h": 43 + }, + "spriteSourceSize": { + "x": 2, + "y": 0, + "w": 31, + "h": 43 + }, + "frame": { + "x": 132, + "y": 41, + "w": 31, + "h": 43 + } + }, + { + "filename": "0101.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 35, + "h": 43 + }, + "spriteSourceSize": { + "x": 2, + "y": 0, + "w": 31, + "h": 43 + }, + "frame": { + "x": 132, + "y": 41, + "w": 31, + "h": 43 + } + }, + { + "filename": "0102.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 35, + "h": 43 + }, + "spriteSourceSize": { + "x": 2, + "y": 0, + "w": 31, + "h": 43 + }, + "frame": { + "x": 132, + "y": 41, + "w": 31, + "h": 43 + } + }, + { + "filename": "0025.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 35, + "h": 43 + }, + "spriteSourceSize": { + "x": 3, + "y": 0, + "w": 31, + "h": 43 + }, + "frame": { + "x": 32, + "y": 86, + "w": 31, + "h": 43 + } + }, + { + "filename": "0026.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 35, + "h": 43 + }, + "spriteSourceSize": { + "x": 3, + "y": 0, + "w": 31, + "h": 43 + }, + "frame": { + "x": 32, + "y": 86, + "w": 31, + "h": 43 + } + }, + { + "filename": "0064.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 35, + "h": 43 + }, + "spriteSourceSize": { + "x": 3, + "y": 0, + "w": 31, + "h": 43 + }, + "frame": { + "x": 32, + "y": 86, + "w": 31, + "h": 43 + } + }, + { + "filename": "0065.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 35, + "h": 43 + }, + "spriteSourceSize": { + "x": 3, + "y": 0, + "w": 31, + "h": 43 + }, + "frame": { + "x": 32, + "y": 86, + "w": 31, + "h": 43 + } + }, + { + "filename": "0103.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 35, + "h": 43 + }, + "spriteSourceSize": { + "x": 3, + "y": 0, + "w": 31, + "h": 43 + }, + "frame": { + "x": 32, + "y": 86, + "w": 31, + "h": 43 + } + }, + { + "filename": "0104.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 35, + "h": 43 + }, + "spriteSourceSize": { + "x": 3, + "y": 0, + "w": 31, + "h": 43 + }, + "frame": { + "x": 32, + "y": 86, + "w": 31, + "h": 43 + } + }, + { + "filename": "0128.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 35, + "h": 43 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 34, + "h": 41 + }, + "frame": { + "x": 63, + "y": 84, + "w": 34, + "h": 41 + } + }, + { + "filename": "0140.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 35, + "h": 43 + }, + "spriteSourceSize": { + "x": 0, + "y": 2, + "w": 34, + "h": 41 + }, + "frame": { + "x": 63, + "y": 84, + "w": 34, + "h": 41 + } + }, + { + "filename": "0121.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 35, + "h": 43 + }, + "spriteSourceSize": { + "x": 0, + "y": 4, + "w": 35, + "h": 39 + }, + "frame": { + "x": 97, + "y": 85, + "w": 35, + "h": 39 + } + }, + { + "filename": "0127.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 35, + "h": 43 + }, + "spriteSourceSize": { + "x": 0, + "y": 4, + "w": 35, + "h": 39 + }, + "frame": { + "x": 97, + "y": 85, + "w": 35, + "h": 39 + } + }, + { + "filename": "0133.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 35, + "h": 43 + }, + "spriteSourceSize": { + "x": 0, + "y": 4, + "w": 35, + "h": 39 + }, + "frame": { + "x": 97, + "y": 85, + "w": 35, + "h": 39 + } + }, + { + "filename": "0139.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 35, + "h": 43 + }, + "spriteSourceSize": { + "x": 0, + "y": 4, + "w": 35, + "h": 39 + }, + "frame": { + "x": 97, + "y": 85, + "w": 35, + "h": 39 + } + }, + { + "filename": "0027.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 35, + "h": 43 + }, + "spriteSourceSize": { + "x": 3, + "y": 1, + "w": 32, + "h": 42 + }, + "frame": { + "x": 132, + "y": 84, + "w": 32, + "h": 42 + } + }, + { + "filename": "0028.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 35, + "h": 43 + }, + "spriteSourceSize": { + "x": 3, + "y": 1, + "w": 32, + "h": 42 + }, + "frame": { + "x": 132, + "y": 84, + "w": 32, + "h": 42 + } + }, + { + "filename": "0066.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 35, + "h": 43 + }, + "spriteSourceSize": { + "x": 3, + "y": 1, + "w": 32, + "h": 42 + }, + "frame": { + "x": 132, + "y": 84, + "w": 32, + "h": 42 + } + }, + { + "filename": "0067.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 35, + "h": 43 + }, + "spriteSourceSize": { + "x": 3, + "y": 1, + "w": 32, + "h": 42 + }, + "frame": { + "x": 132, + "y": 84, + "w": 32, + "h": 42 + } + }, + { + "filename": "0105.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 35, + "h": 43 + }, + "spriteSourceSize": { + "x": 3, + "y": 1, + "w": 32, + "h": 42 + }, + "frame": { + "x": 132, + "y": 84, + "w": 32, + "h": 42 + } + }, + { + "filename": "0106.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 35, + "h": 43 + }, + "spriteSourceSize": { + "x": 3, + "y": 1, + "w": 32, + "h": 42 + }, + "frame": { + "x": 132, + "y": 84, + "w": 32, + "h": 42 + } + }, + { + "filename": "0013.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 35, + "h": 43 + }, + "spriteSourceSize": { + "x": 0, + "y": 5, + "w": 35, + "h": 38 + }, + "frame": { + "x": 34, + "y": 129, + "w": 35, + "h": 38 + } + }, + { + "filename": "0032.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 35, + "h": 43 + }, + "spriteSourceSize": { + "x": 0, + "y": 5, + "w": 35, + "h": 38 + }, + "frame": { + "x": 34, + "y": 129, + "w": 35, + "h": 38 + } + }, + { + "filename": "0052.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 35, + "h": 43 + }, + "spriteSourceSize": { + "x": 0, + "y": 5, + "w": 35, + "h": 38 + }, + "frame": { + "x": 34, + "y": 129, + "w": 35, + "h": 38 + } + }, + { + "filename": "0071.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 35, + "h": 43 + }, + "spriteSourceSize": { + "x": 0, + "y": 5, + "w": 35, + "h": 38 + }, + "frame": { + "x": 34, + "y": 129, + "w": 35, + "h": 38 + } + }, + { + "filename": "0091.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 35, + "h": 43 + }, + "spriteSourceSize": { + "x": 0, + "y": 5, + "w": 35, + "h": 38 + }, + "frame": { + "x": 34, + "y": 129, + "w": 35, + "h": 38 + } + }, + { + "filename": "0110.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 35, + "h": 43 + }, + "spriteSourceSize": { + "x": 0, + "y": 5, + "w": 35, + "h": 38 + }, + "frame": { + "x": 34, + "y": 129, + "w": 35, + "h": 38 + } + }, + { + "filename": "0031.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 35, + "h": 43 + }, + "spriteSourceSize": { + "x": 3, + "y": 0, + "w": 31, + "h": 43 + }, + "frame": { + "x": 69, + "y": 126, + "w": 31, + "h": 43 + } + }, + { + "filename": "0070.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 35, + "h": 43 + }, + "spriteSourceSize": { + "x": 3, + "y": 0, + "w": 31, + "h": 43 + }, + "frame": { + "x": 69, + "y": 126, + "w": 31, + "h": 43 + } + }, + { + "filename": "0109.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 35, + "h": 43 + }, + "spriteSourceSize": { + "x": 3, + "y": 0, + "w": 31, + "h": 43 + }, + "frame": { + "x": 69, + "y": 126, + "w": 31, + "h": 43 + } + }, + { + "filename": "0119.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 35, + "h": 43 + }, + "spriteSourceSize": { + "x": 3, + "y": 0, + "w": 31, + "h": 43 + }, + "frame": { + "x": 100, + "y": 126, + "w": 31, + "h": 43 + } + }, + { + "filename": "0125.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 35, + "h": 43 + }, + "spriteSourceSize": { + "x": 3, + "y": 0, + "w": 31, + "h": 43 + }, + "frame": { + "x": 100, + "y": 126, + "w": 31, + "h": 43 + } + }, + { + "filename": "0131.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 35, + "h": 43 + }, + "spriteSourceSize": { + "x": 3, + "y": 0, + "w": 31, + "h": 43 + }, + "frame": { + "x": 100, + "y": 126, + "w": 31, + "h": 43 + } + }, + { + "filename": "0137.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 35, + "h": 43 + }, + "spriteSourceSize": { + "x": 3, + "y": 0, + "w": 31, + "h": 43 + }, + "frame": { + "x": 100, + "y": 126, + "w": 31, + "h": 43 + } + }, + { + "filename": "0120.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 35, + "h": 43 + }, + "spriteSourceSize": { + "x": 3, + "y": 0, + "w": 31, + "h": 43 + }, + "frame": { + "x": 131, + "y": 126, + "w": 31, + "h": 43 + } + }, + { + "filename": "0126.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 35, + "h": 43 + }, + "spriteSourceSize": { + "x": 3, + "y": 0, + "w": 31, + "h": 43 + }, + "frame": { + "x": 131, + "y": 126, + "w": 31, + "h": 43 + } + }, + { + "filename": "0132.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 35, + "h": 43 + }, + "spriteSourceSize": { + "x": 3, + "y": 0, + "w": 31, + "h": 43 + }, + "frame": { + "x": 131, + "y": 126, + "w": 31, + "h": 43 + } + }, + { + "filename": "0138.png", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 35, + "h": 43 + }, + "spriteSourceSize": { + "x": 3, + "y": 0, + "w": 31, + "h": 43 + }, + "frame": { + "x": 131, + "y": 126, + "w": 31, + "h": 43 } } ] @@ -267,6 +3039,6 @@ "meta": { "app": "https://www.codeandweb.com/texturepacker", "version": "3.0", - "smartupdate": "$TexturePacker:SmartUpdate:cc1e42833991a58e9cbe6f8a40a3d179:832e53524cd611a274742603a96b9ff4:1d193c65e68b1611f35fce7f3295865c$" + "smartupdate": "$TexturePacker:SmartUpdate:4cce3abef08fd679bfca3bda14d2e7a8:fa6cfa01fadaa0ac727b8c3a4d1d49fc:1d193c65e68b1611f35fce7f3295865c$" } } diff --git a/public/images/pokemon/exp/751.png b/public/images/pokemon/exp/751.png index 2f331ba746a..b670acad126 100644 Binary files a/public/images/pokemon/exp/751.png and b/public/images/pokemon/exp/751.png differ diff --git a/public/images/pokemon/exp/821.png b/public/images/pokemon/exp/821.png index e4a73a66140..8bb00063bcb 100644 Binary files a/public/images/pokemon/exp/821.png and b/public/images/pokemon/exp/821.png differ diff --git a/public/images/pokemon/exp/953.png b/public/images/pokemon/exp/953.png index fb4255a112b..8a6ca2e7eff 100644 Binary files a/public/images/pokemon/exp/953.png and b/public/images/pokemon/exp/953.png differ diff --git a/public/images/pokemon/exp/back/821.png b/public/images/pokemon/exp/back/821.png index 80d88dce2f9..13aa5c24e83 100644 Binary files a/public/images/pokemon/exp/back/821.png and b/public/images/pokemon/exp/back/821.png differ diff --git a/public/images/pokemon/exp/back/970.json b/public/images/pokemon/exp/back/970.json index 9be45f39fd2..a516771c02b 100644 --- a/public/images/pokemon/exp/back/970.json +++ b/public/images/pokemon/exp/back/970.json @@ -1,419 +1,167 @@ -{ - "textures": [ - { - "image": "970.png", - "format": "RGBA8888", - "size": { - "w": 296, - "h": 296 - }, - "scale": 1, - "frames": [ - { - "filename": "0007.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 61, - "h": 77 - }, - "spriteSourceSize": { - "x": 2, - "y": 8, - "w": 59, - "h": 60 - }, - "frame": { - "x": 0, - "y": 0, - "w": 59, - "h": 60 - } - }, - { - "filename": "0008.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 61, - "h": 77 - }, - "spriteSourceSize": { - "x": 2, - "y": 8, - "w": 59, - "h": 60 - }, - "frame": { - "x": 59, - "y": 0, - "w": 59, - "h": 60 - } - }, - { - "filename": "0006.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 61, - "h": 77 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 59, - "h": 62 - }, - "frame": { - "x": 118, - "y": 0, - "w": 59, - "h": 62 - } - }, - { - "filename": "0005.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 61, - "h": 77 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 58, - "h": 63 - }, - "frame": { - "x": 177, - "y": 0, - "w": 58, - "h": 63 - } - }, - { - "filename": "0009.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 61, - "h": 77 - }, - "spriteSourceSize": { - "x": 2, - "y": 5, - "w": 59, - "h": 66 - }, - "frame": { - "x": 235, - "y": 0, - "w": 59, - "h": 66 - } - }, - { - "filename": "0010.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 61, - "h": 77 - }, - "spriteSourceSize": { - "x": 1, - "y": 4, - "w": 60, - "h": 66 - }, - "frame": { - "x": 0, - "y": 60, - "w": 60, - "h": 66 - } - }, - { - "filename": "0018.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 61, - "h": 77 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 59, - "h": 66 - }, - "frame": { - "x": 60, - "y": 62, - "w": 59, - "h": 66 - } - }, - { - "filename": "0004.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 61, - "h": 77 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 59, - "h": 67 - }, - "frame": { - "x": 119, - "y": 63, - "w": 59, - "h": 67 - } - }, - { - "filename": "0017.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 61, - "h": 77 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 59, - "h": 67 - }, - "frame": { - "x": 178, - "y": 66, - "w": 59, - "h": 67 - } - }, - { - "filename": "0012.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 61, - "h": 77 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 59, - "h": 68 - }, - "frame": { - "x": 237, - "y": 66, - "w": 59, - "h": 68 - } - }, - { - "filename": "0015.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 61, - "h": 77 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 59, - "h": 68 - }, - "frame": { - "x": 0, - "y": 126, - "w": 59, - "h": 68 - } - }, - { - "filename": "0014.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 61, - "h": 77 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 60, - "h": 69 - }, - "frame": { - "x": 59, - "y": 128, - "w": 60, - "h": 69 - } - }, - { - "filename": "0001.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 61, - "h": 77 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 61, - "h": 69 - }, - "frame": { - "x": 119, - "y": 133, - "w": 61, - "h": 69 - } - }, - { - "filename": "0011.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 61, - "h": 77 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 61, - "h": 69 - }, - "frame": { - "x": 119, - "y": 133, - "w": 61, - "h": 69 - } - }, - { - "filename": "0002.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 61, - "h": 77 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 61, - "h": 69 - }, - "frame": { - "x": 180, - "y": 134, - "w": 61, - "h": 69 - } - }, - { - "filename": "0003.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 61, - "h": 77 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 61, - "h": 69 - }, - "frame": { - "x": 0, - "y": 197, - "w": 61, - "h": 69 - } - }, - { - "filename": "0019.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 61, - "h": 77 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 61, - "h": 69 - }, - "frame": { - "x": 61, - "y": 202, - "w": 61, - "h": 69 - } - }, - { - "filename": "0013.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 61, - "h": 77 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 61, - "h": 71 - }, - "frame": { - "x": 122, - "y": 203, - "w": 61, - "h": 71 - } - }, - { - "filename": "0016.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 61, - "h": 77 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 61, - "h": 71 - }, - "frame": { - "x": 183, - "y": 203, - "w": 61, - "h": 71 - } - } - ] - } - ], - "meta": { - "app": "https://www.codeandweb.com/texturepacker", - "version": "3.0", - "smartupdate": "$TexturePacker:SmartUpdate:826f0c54b74572cfb274b9973fbd50bf:a0d3e34e9b94dc843d98c54879e0c70e:97e320d73d4227f4b083688478fb20b2$" - } +{ "textures": [ + { + "image": "970.png", + "format": "RGBA8888", + "size": { "w": 294, "h": 294 }, + "scale": 1, + "frames": [ + { + "filename": "0001.png", + "rotated": false, + "trimmed": true, + "sourceSize": { "w": 61, "h": 77 }, + "spriteSourceSize": { "x": 0, "y": 2, "w": 59, "h": 67 }, + "frame": { "x": 120, "y": 0, "w": 59, "h": 67 } + }, + { + "filename": "0002.png", + "rotated": false, + "trimmed": true, + "sourceSize": { "w": 61, "h": 77 }, + "spriteSourceSize": { "x": 0, "y": 3, "w": 59, "h": 67 }, + "frame": { "x": 179, "y": 0, "w": 59, "h": 67 } + }, + { + "filename": "0003.png", + "rotated": false, + "trimmed": true, + "sourceSize": { "w": 61, "h": 77 }, + "spriteSourceSize": { "x": 0, "y": 2, "w": 59, "h": 67 }, + "frame": { "x": 120, "y": 67, "w": 59, "h": 67 } + }, + { + "filename": "0004.png", + "rotated": false, + "trimmed": true, + "sourceSize": { "w": 61, "h": 77 }, + "spriteSourceSize": { "x": 0, "y": 2, "w": 57, "h": 65 }, + "frame": { "x": 230, "y": 134, "w": 57, "h": 65 } + }, + { + "filename": "0005.png", + "rotated": false, + "trimmed": true, + "sourceSize": { "w": 61, "h": 77 }, + "spriteSourceSize": { "x": 0, "y": 5, "w": 56, "h": 61 }, + "frame": { "x": 238, "y": 0, "w": 56, "h": 61 } + }, + { + "filename": "0006.png", + "rotated": false, + "trimmed": true, + "sourceSize": { "w": 61, "h": 77 }, + "spriteSourceSize": { "x": 0, "y": 6, "w": 57, "h": 60 }, + "frame": { "x": 114, "y": 198, "w": 57, "h": 60 } + }, + { + "filename": "0007.png", + "rotated": false, + "trimmed": true, + "sourceSize": { "w": 61, "h": 77 }, + "spriteSourceSize": { "x": 2, "y": 8, "w": 57, "h": 58 }, + "frame": { "x": 57, "y": 199, "w": 57, "h": 58 } + }, + { + "filename": "0008.png", + "rotated": false, + "trimmed": true, + "sourceSize": { "w": 61, "h": 77 }, + "spriteSourceSize": { "x": 2, "y": 8, "w": 58, "h": 58 }, + "frame": { "x": 171, "y": 198, "w": 58, "h": 58 } + }, + { + "filename": "0009.png", + "rotated": false, + "trimmed": true, + "sourceSize": { "w": 61, "h": 77 }, + "spriteSourceSize": { "x": 2, "y": 5, "w": 58, "h": 64 }, + "frame": { "x": 114, "y": 134, "w": 58, "h": 64 } + }, + { + "filename": "0010.png", + "rotated": false, + "trimmed": true, + "sourceSize": { "w": 61, "h": 77 }, + "spriteSourceSize": { "x": 1, "y": 4, "w": 58, "h": 64 }, + "frame": { "x": 172, "y": 134, "w": 58, "h": 64 } + }, + { + "filename": "0011.png", + "rotated": false, + "trimmed": true, + "sourceSize": { "w": 61, "h": 77 }, + "spriteSourceSize": { "x": 0, "y": 2, "w": 59, "h": 67 }, + "frame": { "x": 120, "y": 0, "w": 59, "h": 67 } + }, + { + "filename": "0012.png", + "rotated": false, + "trimmed": true, + "sourceSize": { "w": 61, "h": 77 }, + "spriteSourceSize": { "x": 0, "y": 4, "w": 57, "h": 66 }, + "frame": { "x": 0, "y": 69, "w": 57, "h": 66 } + }, + { + "filename": "0013.png", + "rotated": false, + "trimmed": true, + "sourceSize": { "w": 61, "h": 77 }, + "spriteSourceSize": { "x": 0, "y": 0, "w": 60, "h": 69 }, + "frame": { "x": 0, "y": 0, "w": 60, "h": 69 } + }, + { + "filename": "0014.png", + "rotated": false, + "trimmed": true, + "sourceSize": { "w": 61, "h": 77 }, + "spriteSourceSize": { "x": 1, "y": 1, "w": 59, "h": 67 }, + "frame": { "x": 120, "y": 0, "w": 59, "h": 67 } + }, + { + "filename": "0015.png", + "rotated": false, + "trimmed": true, + "sourceSize": { "w": 61, "h": 77 }, + "spriteSourceSize": { "x": 0, "y": 4, "w": 57, "h": 66 }, + "frame": { "x": 57, "y": 69, "w": 57, "h": 66 } + }, + { + "filename": "0016.png", + "rotated": false, + "trimmed": true, + "sourceSize": { "w": 61, "h": 77 }, + "spriteSourceSize": { "x": 0, "y": 0, "w": 60, "h": 69 }, + "frame": { "x": 60, "y": 0, "w": 60, "h": 69 } + }, + { + "filename": "0017.png", + "rotated": false, + "trimmed": true, + "sourceSize": { "w": 61, "h": 77 }, + "spriteSourceSize": { "x": 0, "y": 2, "w": 57, "h": 65 }, + "frame": { "x": 0, "y": 135, "w": 57, "h": 65 } + }, + { + "filename": "0018.png", + "rotated": false, + "trimmed": true, + "sourceSize": { "w": 61, "h": 77 }, + "spriteSourceSize": { "x": 0, "y": 4, "w": 57, "h": 64 }, + "frame": { "x": 57, "y": 135, "w": 57, "h": 64 } + }, + { + "filename": "0019.png", + "rotated": false, + "trimmed": true, + "sourceSize": { "w": 61, "h": 77 }, + "spriteSourceSize": { "x": 0, "y": 2, "w": 59, "h": 67 }, + "frame": { "x": 179, "y": 67, "w": 59, "h": 67 } + } + ] +} +], + "meta": { + "app": "https://www.aseprite.org/", + "version": "1.3.7-x64" + } } diff --git a/public/images/pokemon/exp/back/970.png b/public/images/pokemon/exp/back/970.png index bd6464a7bfa..533b680c117 100644 Binary files a/public/images/pokemon/exp/back/970.png and b/public/images/pokemon/exp/back/970.png differ diff --git a/public/images/pokemon/exp/back/shiny/745-midnight.png b/public/images/pokemon/exp/back/shiny/745-midnight.png index 94a9c328d01..a7d7e0497b5 100644 Binary files a/public/images/pokemon/exp/back/shiny/745-midnight.png and b/public/images/pokemon/exp/back/shiny/745-midnight.png differ diff --git a/public/images/pokemon/exp/back/shiny/821.png b/public/images/pokemon/exp/back/shiny/821.png index 426a1e81fea..d069d59ef72 100644 Binary files a/public/images/pokemon/exp/back/shiny/821.png and b/public/images/pokemon/exp/back/shiny/821.png differ diff --git a/public/images/pokemon/exp/back/shiny/970.json b/public/images/pokemon/exp/back/shiny/970.json index 9be45f39fd2..a516771c02b 100644 --- a/public/images/pokemon/exp/back/shiny/970.json +++ b/public/images/pokemon/exp/back/shiny/970.json @@ -1,419 +1,167 @@ -{ - "textures": [ - { - "image": "970.png", - "format": "RGBA8888", - "size": { - "w": 296, - "h": 296 - }, - "scale": 1, - "frames": [ - { - "filename": "0007.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 61, - "h": 77 - }, - "spriteSourceSize": { - "x": 2, - "y": 8, - "w": 59, - "h": 60 - }, - "frame": { - "x": 0, - "y": 0, - "w": 59, - "h": 60 - } - }, - { - "filename": "0008.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 61, - "h": 77 - }, - "spriteSourceSize": { - "x": 2, - "y": 8, - "w": 59, - "h": 60 - }, - "frame": { - "x": 59, - "y": 0, - "w": 59, - "h": 60 - } - }, - { - "filename": "0006.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 61, - "h": 77 - }, - "spriteSourceSize": { - "x": 0, - "y": 6, - "w": 59, - "h": 62 - }, - "frame": { - "x": 118, - "y": 0, - "w": 59, - "h": 62 - } - }, - { - "filename": "0005.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 61, - "h": 77 - }, - "spriteSourceSize": { - "x": 0, - "y": 5, - "w": 58, - "h": 63 - }, - "frame": { - "x": 177, - "y": 0, - "w": 58, - "h": 63 - } - }, - { - "filename": "0009.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 61, - "h": 77 - }, - "spriteSourceSize": { - "x": 2, - "y": 5, - "w": 59, - "h": 66 - }, - "frame": { - "x": 235, - "y": 0, - "w": 59, - "h": 66 - } - }, - { - "filename": "0010.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 61, - "h": 77 - }, - "spriteSourceSize": { - "x": 1, - "y": 4, - "w": 60, - "h": 66 - }, - "frame": { - "x": 0, - "y": 60, - "w": 60, - "h": 66 - } - }, - { - "filename": "0018.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 61, - "h": 77 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 59, - "h": 66 - }, - "frame": { - "x": 60, - "y": 62, - "w": 59, - "h": 66 - } - }, - { - "filename": "0004.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 61, - "h": 77 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 59, - "h": 67 - }, - "frame": { - "x": 119, - "y": 63, - "w": 59, - "h": 67 - } - }, - { - "filename": "0017.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 61, - "h": 77 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 59, - "h": 67 - }, - "frame": { - "x": 178, - "y": 66, - "w": 59, - "h": 67 - } - }, - { - "filename": "0012.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 61, - "h": 77 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 59, - "h": 68 - }, - "frame": { - "x": 237, - "y": 66, - "w": 59, - "h": 68 - } - }, - { - "filename": "0015.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 61, - "h": 77 - }, - "spriteSourceSize": { - "x": 0, - "y": 4, - "w": 59, - "h": 68 - }, - "frame": { - "x": 0, - "y": 126, - "w": 59, - "h": 68 - } - }, - { - "filename": "0014.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 61, - "h": 77 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 60, - "h": 69 - }, - "frame": { - "x": 59, - "y": 128, - "w": 60, - "h": 69 - } - }, - { - "filename": "0001.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 61, - "h": 77 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 61, - "h": 69 - }, - "frame": { - "x": 119, - "y": 133, - "w": 61, - "h": 69 - } - }, - { - "filename": "0011.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 61, - "h": 77 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 61, - "h": 69 - }, - "frame": { - "x": 119, - "y": 133, - "w": 61, - "h": 69 - } - }, - { - "filename": "0002.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 61, - "h": 77 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 61, - "h": 69 - }, - "frame": { - "x": 180, - "y": 134, - "w": 61, - "h": 69 - } - }, - { - "filename": "0003.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 61, - "h": 77 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 61, - "h": 69 - }, - "frame": { - "x": 0, - "y": 197, - "w": 61, - "h": 69 - } - }, - { - "filename": "0019.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 61, - "h": 77 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 61, - "h": 69 - }, - "frame": { - "x": 61, - "y": 202, - "w": 61, - "h": 69 - } - }, - { - "filename": "0013.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 61, - "h": 77 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 61, - "h": 71 - }, - "frame": { - "x": 122, - "y": 203, - "w": 61, - "h": 71 - } - }, - { - "filename": "0016.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 61, - "h": 77 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 61, - "h": 71 - }, - "frame": { - "x": 183, - "y": 203, - "w": 61, - "h": 71 - } - } - ] - } - ], - "meta": { - "app": "https://www.codeandweb.com/texturepacker", - "version": "3.0", - "smartupdate": "$TexturePacker:SmartUpdate:826f0c54b74572cfb274b9973fbd50bf:a0d3e34e9b94dc843d98c54879e0c70e:97e320d73d4227f4b083688478fb20b2$" - } +{ "textures": [ + { + "image": "970.png", + "format": "RGBA8888", + "size": { "w": 294, "h": 294 }, + "scale": 1, + "frames": [ + { + "filename": "0001.png", + "rotated": false, + "trimmed": true, + "sourceSize": { "w": 61, "h": 77 }, + "spriteSourceSize": { "x": 0, "y": 2, "w": 59, "h": 67 }, + "frame": { "x": 120, "y": 0, "w": 59, "h": 67 } + }, + { + "filename": "0002.png", + "rotated": false, + "trimmed": true, + "sourceSize": { "w": 61, "h": 77 }, + "spriteSourceSize": { "x": 0, "y": 3, "w": 59, "h": 67 }, + "frame": { "x": 179, "y": 0, "w": 59, "h": 67 } + }, + { + "filename": "0003.png", + "rotated": false, + "trimmed": true, + "sourceSize": { "w": 61, "h": 77 }, + "spriteSourceSize": { "x": 0, "y": 2, "w": 59, "h": 67 }, + "frame": { "x": 120, "y": 67, "w": 59, "h": 67 } + }, + { + "filename": "0004.png", + "rotated": false, + "trimmed": true, + "sourceSize": { "w": 61, "h": 77 }, + "spriteSourceSize": { "x": 0, "y": 2, "w": 57, "h": 65 }, + "frame": { "x": 230, "y": 134, "w": 57, "h": 65 } + }, + { + "filename": "0005.png", + "rotated": false, + "trimmed": true, + "sourceSize": { "w": 61, "h": 77 }, + "spriteSourceSize": { "x": 0, "y": 5, "w": 56, "h": 61 }, + "frame": { "x": 238, "y": 0, "w": 56, "h": 61 } + }, + { + "filename": "0006.png", + "rotated": false, + "trimmed": true, + "sourceSize": { "w": 61, "h": 77 }, + "spriteSourceSize": { "x": 0, "y": 6, "w": 57, "h": 60 }, + "frame": { "x": 114, "y": 198, "w": 57, "h": 60 } + }, + { + "filename": "0007.png", + "rotated": false, + "trimmed": true, + "sourceSize": { "w": 61, "h": 77 }, + "spriteSourceSize": { "x": 2, "y": 8, "w": 57, "h": 58 }, + "frame": { "x": 57, "y": 199, "w": 57, "h": 58 } + }, + { + "filename": "0008.png", + "rotated": false, + "trimmed": true, + "sourceSize": { "w": 61, "h": 77 }, + "spriteSourceSize": { "x": 2, "y": 8, "w": 58, "h": 58 }, + "frame": { "x": 171, "y": 198, "w": 58, "h": 58 } + }, + { + "filename": "0009.png", + "rotated": false, + "trimmed": true, + "sourceSize": { "w": 61, "h": 77 }, + "spriteSourceSize": { "x": 2, "y": 5, "w": 58, "h": 64 }, + "frame": { "x": 114, "y": 134, "w": 58, "h": 64 } + }, + { + "filename": "0010.png", + "rotated": false, + "trimmed": true, + "sourceSize": { "w": 61, "h": 77 }, + "spriteSourceSize": { "x": 1, "y": 4, "w": 58, "h": 64 }, + "frame": { "x": 172, "y": 134, "w": 58, "h": 64 } + }, + { + "filename": "0011.png", + "rotated": false, + "trimmed": true, + "sourceSize": { "w": 61, "h": 77 }, + "spriteSourceSize": { "x": 0, "y": 2, "w": 59, "h": 67 }, + "frame": { "x": 120, "y": 0, "w": 59, "h": 67 } + }, + { + "filename": "0012.png", + "rotated": false, + "trimmed": true, + "sourceSize": { "w": 61, "h": 77 }, + "spriteSourceSize": { "x": 0, "y": 4, "w": 57, "h": 66 }, + "frame": { "x": 0, "y": 69, "w": 57, "h": 66 } + }, + { + "filename": "0013.png", + "rotated": false, + "trimmed": true, + "sourceSize": { "w": 61, "h": 77 }, + "spriteSourceSize": { "x": 0, "y": 0, "w": 60, "h": 69 }, + "frame": { "x": 0, "y": 0, "w": 60, "h": 69 } + }, + { + "filename": "0014.png", + "rotated": false, + "trimmed": true, + "sourceSize": { "w": 61, "h": 77 }, + "spriteSourceSize": { "x": 1, "y": 1, "w": 59, "h": 67 }, + "frame": { "x": 120, "y": 0, "w": 59, "h": 67 } + }, + { + "filename": "0015.png", + "rotated": false, + "trimmed": true, + "sourceSize": { "w": 61, "h": 77 }, + "spriteSourceSize": { "x": 0, "y": 4, "w": 57, "h": 66 }, + "frame": { "x": 57, "y": 69, "w": 57, "h": 66 } + }, + { + "filename": "0016.png", + "rotated": false, + "trimmed": true, + "sourceSize": { "w": 61, "h": 77 }, + "spriteSourceSize": { "x": 0, "y": 0, "w": 60, "h": 69 }, + "frame": { "x": 60, "y": 0, "w": 60, "h": 69 } + }, + { + "filename": "0017.png", + "rotated": false, + "trimmed": true, + "sourceSize": { "w": 61, "h": 77 }, + "spriteSourceSize": { "x": 0, "y": 2, "w": 57, "h": 65 }, + "frame": { "x": 0, "y": 135, "w": 57, "h": 65 } + }, + { + "filename": "0018.png", + "rotated": false, + "trimmed": true, + "sourceSize": { "w": 61, "h": 77 }, + "spriteSourceSize": { "x": 0, "y": 4, "w": 57, "h": 64 }, + "frame": { "x": 57, "y": 135, "w": 57, "h": 64 } + }, + { + "filename": "0019.png", + "rotated": false, + "trimmed": true, + "sourceSize": { "w": 61, "h": 77 }, + "spriteSourceSize": { "x": 0, "y": 2, "w": 59, "h": 67 }, + "frame": { "x": 179, "y": 67, "w": 59, "h": 67 } + } + ] +} +], + "meta": { + "app": "https://www.aseprite.org/", + "version": "1.3.7-x64" + } } diff --git a/public/images/pokemon/exp/back/shiny/970.png b/public/images/pokemon/exp/back/shiny/970.png index 1d092da94cd..03ed35af776 100644 Binary files a/public/images/pokemon/exp/back/shiny/970.png and b/public/images/pokemon/exp/back/shiny/970.png differ diff --git a/public/images/pokemon/exp/shiny/4077.png b/public/images/pokemon/exp/shiny/4077.png index f2f5891883d..ab414e058e1 100644 Binary files a/public/images/pokemon/exp/shiny/4077.png and b/public/images/pokemon/exp/shiny/4077.png differ diff --git a/public/images/pokemon/exp/shiny/821.png b/public/images/pokemon/exp/shiny/821.png index 5c03c17c793..6f6cf7f2991 100644 Binary files a/public/images/pokemon/exp/shiny/821.png and b/public/images/pokemon/exp/shiny/821.png differ diff --git a/public/images/pokemon/icons/1/84-f.png b/public/images/pokemon/icons/1/84-f.png new file mode 100644 index 00000000000..88531308131 Binary files /dev/null and b/public/images/pokemon/icons/1/84-f.png differ diff --git a/public/images/pokemon/icons/1/84s-f.png b/public/images/pokemon/icons/1/84s-f.png new file mode 100644 index 00000000000..0b616beff56 Binary files /dev/null and b/public/images/pokemon/icons/1/84s-f.png differ diff --git a/public/images/pokemon/icons/1/85-f.png b/public/images/pokemon/icons/1/85-f.png new file mode 100644 index 00000000000..ca34e9fc554 Binary files /dev/null and b/public/images/pokemon/icons/1/85-f.png differ diff --git a/public/images/pokemon/icons/1/85s-f.png b/public/images/pokemon/icons/1/85s-f.png new file mode 100644 index 00000000000..73bb083f2d9 Binary files /dev/null and b/public/images/pokemon/icons/1/85s-f.png differ diff --git a/public/images/pokemon/icons/3/354-mega.png b/public/images/pokemon/icons/3/354-mega.png index bf2858b4722..048af586a5d 100644 Binary files a/public/images/pokemon/icons/3/354-mega.png and b/public/images/pokemon/icons/3/354-mega.png differ diff --git a/public/images/pokemon/icons/3/354s-mega.png b/public/images/pokemon/icons/3/354s-mega.png index 3c54955fc26..9dc66f686c6 100644 Binary files a/public/images/pokemon/icons/3/354s-mega.png and b/public/images/pokemon/icons/3/354s-mega.png differ diff --git a/public/images/pokemon/icons/3/378s.png b/public/images/pokemon/icons/3/378s.png index 8e1b371140c..e2fc99bbc87 100644 Binary files a/public/images/pokemon/icons/3/378s.png and b/public/images/pokemon/icons/3/378s.png differ diff --git a/public/images/pokemon/icons/4/429.png b/public/images/pokemon/icons/4/429.png index 4468836a94b..cc682ff940a 100644 Binary files a/public/images/pokemon/icons/4/429.png and b/public/images/pokemon/icons/4/429.png differ diff --git a/public/images/pokemon/icons/5/546.png b/public/images/pokemon/icons/5/546.png index c6e84e1fe31..d3d4ac196b2 100644 Binary files a/public/images/pokemon/icons/5/546.png and b/public/images/pokemon/icons/5/546.png differ diff --git a/public/images/pokemon/icons/5/546s.png b/public/images/pokemon/icons/5/546s.png index 2c10d91c9e8..7a8d1ba4be3 100644 Binary files a/public/images/pokemon/icons/5/546s.png and b/public/images/pokemon/icons/5/546s.png differ diff --git a/public/images/pokemon/icons/5/571.png b/public/images/pokemon/icons/5/571.png index 698b916a675..094f9d44126 100644 Binary files a/public/images/pokemon/icons/5/571.png and b/public/images/pokemon/icons/5/571.png differ diff --git a/public/images/pokemon/icons/5/571s.png b/public/images/pokemon/icons/5/571s.png index 8371f12d1a1..ba25df5eb72 100644 Binary files a/public/images/pokemon/icons/5/571s.png and b/public/images/pokemon/icons/5/571s.png differ diff --git a/public/images/pokemon/icons/5/592s-f.png b/public/images/pokemon/icons/5/592s-f.png index f320ce8dbed..3df6258da5b 100644 Binary files a/public/images/pokemon/icons/5/592s-f.png and b/public/images/pokemon/icons/5/592s-f.png differ diff --git a/public/images/pokemon/icons/6/664s.png b/public/images/pokemon/icons/6/664s.png index 985fbf88781..52ef9b2d436 100644 Binary files a/public/images/pokemon/icons/6/664s.png and b/public/images/pokemon/icons/6/664s.png differ diff --git a/public/images/pokemon/icons/6/692.png b/public/images/pokemon/icons/6/692.png index 61cebe369f4..71533bc0c63 100644 Binary files a/public/images/pokemon/icons/6/692.png and b/public/images/pokemon/icons/6/692.png differ diff --git a/public/images/pokemon/icons/6/692s.png b/public/images/pokemon/icons/6/692s.png index 5a63ced809b..8d9d998e1c3 100644 Binary files a/public/images/pokemon/icons/6/692s.png and b/public/images/pokemon/icons/6/692s.png differ diff --git a/public/images/pokemon/icons/6/693.png b/public/images/pokemon/icons/6/693.png index 73a39c76dbc..bc57f981079 100644 Binary files a/public/images/pokemon/icons/6/693.png and b/public/images/pokemon/icons/6/693.png differ diff --git a/public/images/pokemon/icons/9/945.png b/public/images/pokemon/icons/9/945.png index bcf5bdc054e..25abfaf8f6c 100644 Binary files a/public/images/pokemon/icons/9/945.png and b/public/images/pokemon/icons/9/945.png differ diff --git a/public/images/pokemon/icons/9/945s.png b/public/images/pokemon/icons/9/945s.png index cd29ac73e36..20c24c77a85 100644 Binary files a/public/images/pokemon/icons/9/945s.png and b/public/images/pokemon/icons/9/945s.png differ diff --git a/public/images/pokemon/icons/variant/1/116_2.png b/public/images/pokemon/icons/variant/1/116_2.png new file mode 100644 index 00000000000..42cfbd3c3b5 Binary files /dev/null and b/public/images/pokemon/icons/variant/1/116_2.png differ diff --git a/public/images/pokemon/icons/variant/1/116_3.png b/public/images/pokemon/icons/variant/1/116_3.png new file mode 100644 index 00000000000..55020e28a8e Binary files /dev/null and b/public/images/pokemon/icons/variant/1/116_3.png differ diff --git a/public/images/pokemon/icons/variant/1/117_2.png b/public/images/pokemon/icons/variant/1/117_2.png new file mode 100644 index 00000000000..9c0d619df68 Binary files /dev/null and b/public/images/pokemon/icons/variant/1/117_2.png differ diff --git a/public/images/pokemon/icons/variant/1/117_3.png b/public/images/pokemon/icons/variant/1/117_3.png new file mode 100644 index 00000000000..e4889e5fb0d Binary files /dev/null and b/public/images/pokemon/icons/variant/1/117_3.png differ diff --git a/public/images/pokemon/icons/variant/1/120_2.png b/public/images/pokemon/icons/variant/1/120_2.png new file mode 100644 index 00000000000..87ba9303cee Binary files /dev/null and b/public/images/pokemon/icons/variant/1/120_2.png differ diff --git a/public/images/pokemon/icons/variant/1/120_3.png b/public/images/pokemon/icons/variant/1/120_3.png new file mode 100644 index 00000000000..921165fa535 Binary files /dev/null and b/public/images/pokemon/icons/variant/1/120_3.png differ diff --git a/public/images/pokemon/icons/variant/1/121_2.png b/public/images/pokemon/icons/variant/1/121_2.png new file mode 100644 index 00000000000..2c240fc05c5 Binary files /dev/null and b/public/images/pokemon/icons/variant/1/121_2.png differ diff --git a/public/images/pokemon/icons/variant/1/121_3.png b/public/images/pokemon/icons/variant/1/121_3.png new file mode 100644 index 00000000000..3fe75e12157 Binary files /dev/null and b/public/images/pokemon/icons/variant/1/121_3.png differ diff --git a/public/images/pokemon/icons/variant/1/126_2.png b/public/images/pokemon/icons/variant/1/126_2.png new file mode 100644 index 00000000000..629efc9c10b Binary files /dev/null and b/public/images/pokemon/icons/variant/1/126_2.png differ diff --git a/public/images/pokemon/icons/variant/1/126_3.png b/public/images/pokemon/icons/variant/1/126_3.png new file mode 100644 index 00000000000..7ad95578477 Binary files /dev/null and b/public/images/pokemon/icons/variant/1/126_3.png differ diff --git a/public/images/pokemon/icons/variant/1/137_2.png b/public/images/pokemon/icons/variant/1/137_2.png new file mode 100644 index 00000000000..93ddd4a83ad Binary files /dev/null and b/public/images/pokemon/icons/variant/1/137_2.png differ diff --git a/public/images/pokemon/icons/variant/1/137_3.png b/public/images/pokemon/icons/variant/1/137_3.png new file mode 100644 index 00000000000..044cc212b2b Binary files /dev/null and b/public/images/pokemon/icons/variant/1/137_3.png differ diff --git a/public/images/pokemon/icons/variant/1/23_2.png b/public/images/pokemon/icons/variant/1/23_2.png new file mode 100644 index 00000000000..1152d493c8f Binary files /dev/null and b/public/images/pokemon/icons/variant/1/23_2.png differ diff --git a/public/images/pokemon/icons/variant/1/23_3.png b/public/images/pokemon/icons/variant/1/23_3.png new file mode 100644 index 00000000000..6088043415b Binary files /dev/null and b/public/images/pokemon/icons/variant/1/23_3.png differ diff --git a/public/images/pokemon/icons/variant/1/24_2.png b/public/images/pokemon/icons/variant/1/24_2.png new file mode 100644 index 00000000000..015a5c97884 Binary files /dev/null and b/public/images/pokemon/icons/variant/1/24_2.png differ diff --git a/public/images/pokemon/icons/variant/1/24_3.png b/public/images/pokemon/icons/variant/1/24_3.png new file mode 100644 index 00000000000..c9cf33f3412 Binary files /dev/null and b/public/images/pokemon/icons/variant/1/24_3.png differ diff --git a/public/images/pokemon/icons/variant/1/38_3.png b/public/images/pokemon/icons/variant/1/38_3.png index 0834d588d5a..28d2d97ab23 100644 Binary files a/public/images/pokemon/icons/variant/1/38_3.png and b/public/images/pokemon/icons/variant/1/38_3.png differ diff --git a/public/images/pokemon/icons/variant/1/43_2.png b/public/images/pokemon/icons/variant/1/43_2.png new file mode 100644 index 00000000000..b47f662212c Binary files /dev/null and b/public/images/pokemon/icons/variant/1/43_2.png differ diff --git a/public/images/pokemon/icons/variant/1/43_3.png b/public/images/pokemon/icons/variant/1/43_3.png new file mode 100644 index 00000000000..3d3d47875a0 Binary files /dev/null and b/public/images/pokemon/icons/variant/1/43_3.png differ diff --git a/public/images/pokemon/icons/variant/1/44_2.png b/public/images/pokemon/icons/variant/1/44_2.png new file mode 100644 index 00000000000..3b6a6aa082e Binary files /dev/null and b/public/images/pokemon/icons/variant/1/44_2.png differ diff --git a/public/images/pokemon/icons/variant/1/44_3.png b/public/images/pokemon/icons/variant/1/44_3.png new file mode 100644 index 00000000000..c543307d22e Binary files /dev/null and b/public/images/pokemon/icons/variant/1/44_3.png differ diff --git a/public/images/pokemon/icons/variant/1/45_2.png b/public/images/pokemon/icons/variant/1/45_2.png new file mode 100644 index 00000000000..79e094ec9b2 Binary files /dev/null and b/public/images/pokemon/icons/variant/1/45_2.png differ diff --git a/public/images/pokemon/icons/variant/1/45_3.png b/public/images/pokemon/icons/variant/1/45_3.png new file mode 100644 index 00000000000..1afbf809c8d Binary files /dev/null and b/public/images/pokemon/icons/variant/1/45_3.png differ diff --git a/public/images/pokemon/icons/variant/1/46_1.png b/public/images/pokemon/icons/variant/1/46_1.png index 6f29d16ed7d..eb9e15001f6 100644 Binary files a/public/images/pokemon/icons/variant/1/46_1.png and b/public/images/pokemon/icons/variant/1/46_1.png differ diff --git a/public/images/pokemon/icons/variant/1/46_2.png b/public/images/pokemon/icons/variant/1/46_2.png index 45bd33c6230..bc21946d322 100644 Binary files a/public/images/pokemon/icons/variant/1/46_2.png and b/public/images/pokemon/icons/variant/1/46_2.png differ diff --git a/public/images/pokemon/icons/variant/1/46_3.png b/public/images/pokemon/icons/variant/1/46_3.png index c2a0e958745..b3da371304e 100644 Binary files a/public/images/pokemon/icons/variant/1/46_3.png and b/public/images/pokemon/icons/variant/1/46_3.png differ diff --git a/public/images/pokemon/icons/variant/1/47_1.png b/public/images/pokemon/icons/variant/1/47_1.png index 6dfafffe8de..cf7ab4f7a4f 100644 Binary files a/public/images/pokemon/icons/variant/1/47_1.png and b/public/images/pokemon/icons/variant/1/47_1.png differ diff --git a/public/images/pokemon/icons/variant/1/47_2.png b/public/images/pokemon/icons/variant/1/47_2.png index 193a3e786fb..2ce9c0a289d 100644 Binary files a/public/images/pokemon/icons/variant/1/47_2.png and b/public/images/pokemon/icons/variant/1/47_2.png differ diff --git a/public/images/pokemon/icons/variant/1/47_3.png b/public/images/pokemon/icons/variant/1/47_3.png index 6a19f28aab5..911cb37c8d8 100644 Binary files a/public/images/pokemon/icons/variant/1/47_3.png and b/public/images/pokemon/icons/variant/1/47_3.png differ diff --git a/public/images/pokemon/icons/variant/1/79_2.png b/public/images/pokemon/icons/variant/1/79_2.png new file mode 100644 index 00000000000..af6caaa5994 Binary files /dev/null and b/public/images/pokemon/icons/variant/1/79_2.png differ diff --git a/public/images/pokemon/icons/variant/1/79_3.png b/public/images/pokemon/icons/variant/1/79_3.png new file mode 100644 index 00000000000..11e229bb868 Binary files /dev/null and b/public/images/pokemon/icons/variant/1/79_3.png differ diff --git a/public/images/pokemon/icons/variant/1/80-mega_2.png b/public/images/pokemon/icons/variant/1/80-mega_2.png new file mode 100644 index 00000000000..cc5a0b87d24 Binary files /dev/null and b/public/images/pokemon/icons/variant/1/80-mega_2.png differ diff --git a/public/images/pokemon/icons/variant/1/80-mega_3.png b/public/images/pokemon/icons/variant/1/80-mega_3.png new file mode 100644 index 00000000000..11871ef80a5 Binary files /dev/null and b/public/images/pokemon/icons/variant/1/80-mega_3.png differ diff --git a/public/images/pokemon/icons/variant/1/80_2.png b/public/images/pokemon/icons/variant/1/80_2.png new file mode 100644 index 00000000000..dab6fc6f06e Binary files /dev/null and b/public/images/pokemon/icons/variant/1/80_2.png differ diff --git a/public/images/pokemon/icons/variant/1/80_3.png b/public/images/pokemon/icons/variant/1/80_3.png new file mode 100644 index 00000000000..a6180e61a02 Binary files /dev/null and b/public/images/pokemon/icons/variant/1/80_3.png differ diff --git a/public/images/pokemon/icons/variant/1/84-f_1.png b/public/images/pokemon/icons/variant/1/84-f_1.png new file mode 100644 index 00000000000..a0ca4a89b2e Binary files /dev/null and b/public/images/pokemon/icons/variant/1/84-f_1.png differ diff --git a/public/images/pokemon/icons/variant/1/84-f_2.png b/public/images/pokemon/icons/variant/1/84-f_2.png new file mode 100644 index 00000000000..f8b34a5d810 Binary files /dev/null and b/public/images/pokemon/icons/variant/1/84-f_2.png differ diff --git a/public/images/pokemon/icons/variant/1/84-f_3.png b/public/images/pokemon/icons/variant/1/84-f_3.png new file mode 100644 index 00000000000..b3aeb8a21fc Binary files /dev/null and b/public/images/pokemon/icons/variant/1/84-f_3.png differ diff --git a/public/images/pokemon/icons/variant/1/84_1.png b/public/images/pokemon/icons/variant/1/84_1.png index cc0efb19cb2..a0ca4a89b2e 100644 Binary files a/public/images/pokemon/icons/variant/1/84_1.png and b/public/images/pokemon/icons/variant/1/84_1.png differ diff --git a/public/images/pokemon/icons/variant/1/84_2.png b/public/images/pokemon/icons/variant/1/84_2.png index 6c0e7350679..e51e2107263 100644 Binary files a/public/images/pokemon/icons/variant/1/84_2.png and b/public/images/pokemon/icons/variant/1/84_2.png differ diff --git a/public/images/pokemon/icons/variant/1/84_3.png b/public/images/pokemon/icons/variant/1/84_3.png index a6df8472737..a7127a59620 100644 Binary files a/public/images/pokemon/icons/variant/1/84_3.png and b/public/images/pokemon/icons/variant/1/84_3.png differ diff --git a/public/images/pokemon/icons/variant/1/85-f_1.png b/public/images/pokemon/icons/variant/1/85-f_1.png new file mode 100644 index 00000000000..acd9943420b Binary files /dev/null and b/public/images/pokemon/icons/variant/1/85-f_1.png differ diff --git a/public/images/pokemon/icons/variant/1/85-f_2.png b/public/images/pokemon/icons/variant/1/85-f_2.png new file mode 100644 index 00000000000..ff1841c63c5 Binary files /dev/null and b/public/images/pokemon/icons/variant/1/85-f_2.png differ diff --git a/public/images/pokemon/icons/variant/1/85-f_3.png b/public/images/pokemon/icons/variant/1/85-f_3.png new file mode 100644 index 00000000000..6c166af1f78 Binary files /dev/null and b/public/images/pokemon/icons/variant/1/85-f_3.png differ diff --git a/public/images/pokemon/icons/variant/1/85_1.png b/public/images/pokemon/icons/variant/1/85_1.png index 7fd63b7268f..acd9943420b 100644 Binary files a/public/images/pokemon/icons/variant/1/85_1.png and b/public/images/pokemon/icons/variant/1/85_1.png differ diff --git a/public/images/pokemon/icons/variant/1/85_2.png b/public/images/pokemon/icons/variant/1/85_2.png index f17bdee3edb..1efa6f238f3 100644 Binary files a/public/images/pokemon/icons/variant/1/85_2.png and b/public/images/pokemon/icons/variant/1/85_2.png differ diff --git a/public/images/pokemon/icons/variant/1/85_3.png b/public/images/pokemon/icons/variant/1/85_3.png index af16ce4828b..dd2a8a32d1f 100644 Binary files a/public/images/pokemon/icons/variant/1/85_3.png and b/public/images/pokemon/icons/variant/1/85_3.png differ diff --git a/public/images/pokemon/icons/variant/1/98_2.png b/public/images/pokemon/icons/variant/1/98_2.png new file mode 100644 index 00000000000..ea5f1ebf5de Binary files /dev/null and b/public/images/pokemon/icons/variant/1/98_2.png differ diff --git a/public/images/pokemon/icons/variant/1/98_3.png b/public/images/pokemon/icons/variant/1/98_3.png new file mode 100644 index 00000000000..71014d948f4 Binary files /dev/null and b/public/images/pokemon/icons/variant/1/98_3.png differ diff --git a/public/images/pokemon/icons/variant/1/99-gigantamax_2.png b/public/images/pokemon/icons/variant/1/99-gigantamax_2.png new file mode 100644 index 00000000000..f56f7edbfe4 Binary files /dev/null and b/public/images/pokemon/icons/variant/1/99-gigantamax_2.png differ diff --git a/public/images/pokemon/icons/variant/1/99-gigantamax_3.png b/public/images/pokemon/icons/variant/1/99-gigantamax_3.png new file mode 100644 index 00000000000..dbd95345af8 Binary files /dev/null and b/public/images/pokemon/icons/variant/1/99-gigantamax_3.png differ diff --git a/public/images/pokemon/icons/variant/1/99_2.png b/public/images/pokemon/icons/variant/1/99_2.png new file mode 100644 index 00000000000..fff774d519c Binary files /dev/null and b/public/images/pokemon/icons/variant/1/99_2.png differ diff --git a/public/images/pokemon/icons/variant/1/99_3.png b/public/images/pokemon/icons/variant/1/99_3.png new file mode 100644 index 00000000000..f5274f2745b Binary files /dev/null and b/public/images/pokemon/icons/variant/1/99_3.png differ diff --git a/public/images/pokemon/icons/variant/2/173_2.png b/public/images/pokemon/icons/variant/2/173_2.png new file mode 100644 index 00000000000..3ffaaca89dd Binary files /dev/null and b/public/images/pokemon/icons/variant/2/173_2.png differ diff --git a/public/images/pokemon/icons/variant/2/182_2.png b/public/images/pokemon/icons/variant/2/182_2.png new file mode 100644 index 00000000000..f39877edc1e Binary files /dev/null and b/public/images/pokemon/icons/variant/2/182_2.png differ diff --git a/public/images/pokemon/icons/variant/2/182_3.png b/public/images/pokemon/icons/variant/2/182_3.png new file mode 100644 index 00000000000..9830d956812 Binary files /dev/null and b/public/images/pokemon/icons/variant/2/182_3.png differ diff --git a/public/images/pokemon/icons/variant/2/185_2.png b/public/images/pokemon/icons/variant/2/185_2.png new file mode 100644 index 00000000000..810aa3354ed Binary files /dev/null and b/public/images/pokemon/icons/variant/2/185_2.png differ diff --git a/public/images/pokemon/icons/variant/2/185_3.png b/public/images/pokemon/icons/variant/2/185_3.png new file mode 100644 index 00000000000..5de578717a5 Binary files /dev/null and b/public/images/pokemon/icons/variant/2/185_3.png differ diff --git a/public/images/pokemon/icons/variant/2/190_2.png b/public/images/pokemon/icons/variant/2/190_2.png new file mode 100644 index 00000000000..eced210ae5c Binary files /dev/null and b/public/images/pokemon/icons/variant/2/190_2.png differ diff --git a/public/images/pokemon/icons/variant/2/190_3.png b/public/images/pokemon/icons/variant/2/190_3.png new file mode 100644 index 00000000000..ad3523ceb6b Binary files /dev/null and b/public/images/pokemon/icons/variant/2/190_3.png differ diff --git a/public/images/pokemon/icons/variant/2/193_2.png b/public/images/pokemon/icons/variant/2/193_2.png new file mode 100644 index 00000000000..63de94c2fb1 Binary files /dev/null and b/public/images/pokemon/icons/variant/2/193_2.png differ diff --git a/public/images/pokemon/icons/variant/2/193_3.png b/public/images/pokemon/icons/variant/2/193_3.png new file mode 100644 index 00000000000..defaaa1ece3 Binary files /dev/null and b/public/images/pokemon/icons/variant/2/193_3.png differ diff --git a/public/images/pokemon/icons/variant/2/199_2.png b/public/images/pokemon/icons/variant/2/199_2.png new file mode 100644 index 00000000000..050cb7836e6 Binary files /dev/null and b/public/images/pokemon/icons/variant/2/199_2.png differ diff --git a/public/images/pokemon/icons/variant/2/199_3.png b/public/images/pokemon/icons/variant/2/199_3.png new file mode 100644 index 00000000000..f3c63115f78 Binary files /dev/null and b/public/images/pokemon/icons/variant/2/199_3.png differ diff --git a/public/images/pokemon/icons/variant/2/203_2.png b/public/images/pokemon/icons/variant/2/203_2.png new file mode 100644 index 00000000000..8ca96e9d14c Binary files /dev/null and b/public/images/pokemon/icons/variant/2/203_2.png differ diff --git a/public/images/pokemon/icons/variant/2/203_3.png b/public/images/pokemon/icons/variant/2/203_3.png new file mode 100644 index 00000000000..8fcb3c7eb3e Binary files /dev/null and b/public/images/pokemon/icons/variant/2/203_3.png differ diff --git a/public/images/pokemon/icons/variant/2/213_2.png b/public/images/pokemon/icons/variant/2/213_2.png new file mode 100644 index 00000000000..832fe44e1cd Binary files /dev/null and b/public/images/pokemon/icons/variant/2/213_2.png differ diff --git a/public/images/pokemon/icons/variant/2/213_3.png b/public/images/pokemon/icons/variant/2/213_3.png new file mode 100644 index 00000000000..6a0edbc1bff Binary files /dev/null and b/public/images/pokemon/icons/variant/2/213_3.png differ diff --git a/public/images/pokemon/icons/variant/2/216_1.png b/public/images/pokemon/icons/variant/2/216_1.png new file mode 100644 index 00000000000..141771743e7 Binary files /dev/null and b/public/images/pokemon/icons/variant/2/216_1.png differ diff --git a/public/images/pokemon/icons/variant/2/230_2.png b/public/images/pokemon/icons/variant/2/230_2.png new file mode 100644 index 00000000000..531b9e30568 Binary files /dev/null and b/public/images/pokemon/icons/variant/2/230_2.png differ diff --git a/public/images/pokemon/icons/variant/2/230_3.png b/public/images/pokemon/icons/variant/2/230_3.png new file mode 100644 index 00000000000..334483d449e Binary files /dev/null and b/public/images/pokemon/icons/variant/2/230_3.png differ diff --git a/public/images/pokemon/icons/variant/2/233_2.png b/public/images/pokemon/icons/variant/2/233_2.png new file mode 100644 index 00000000000..b36994631dc Binary files /dev/null and b/public/images/pokemon/icons/variant/2/233_2.png differ diff --git a/public/images/pokemon/icons/variant/2/233_3.png b/public/images/pokemon/icons/variant/2/233_3.png new file mode 100644 index 00000000000..09d9ae1fe59 Binary files /dev/null and b/public/images/pokemon/icons/variant/2/233_3.png differ diff --git a/public/images/pokemon/icons/variant/2/240_2.png b/public/images/pokemon/icons/variant/2/240_2.png new file mode 100644 index 00000000000..118ad1f4fd2 Binary files /dev/null and b/public/images/pokemon/icons/variant/2/240_2.png differ diff --git a/public/images/pokemon/icons/variant/2/240_3.png b/public/images/pokemon/icons/variant/2/240_3.png new file mode 100644 index 00000000000..5d21cedde2d Binary files /dev/null and b/public/images/pokemon/icons/variant/2/240_3.png differ diff --git a/public/images/pokemon/icons/variant/3/255-f_2.png b/public/images/pokemon/icons/variant/3/255-f_2.png new file mode 100644 index 00000000000..adf8c6ea8bc Binary files /dev/null and b/public/images/pokemon/icons/variant/3/255-f_2.png differ diff --git a/public/images/pokemon/icons/variant/3/255-f_3.png b/public/images/pokemon/icons/variant/3/255-f_3.png new file mode 100644 index 00000000000..48fc5610e94 Binary files /dev/null and b/public/images/pokemon/icons/variant/3/255-f_3.png differ diff --git a/public/images/pokemon/icons/variant/3/255_2.png b/public/images/pokemon/icons/variant/3/255_2.png new file mode 100644 index 00000000000..adf8c6ea8bc Binary files /dev/null and b/public/images/pokemon/icons/variant/3/255_2.png differ diff --git a/public/images/pokemon/icons/variant/3/255_3.png b/public/images/pokemon/icons/variant/3/255_3.png new file mode 100644 index 00000000000..6ed47e69afa Binary files /dev/null and b/public/images/pokemon/icons/variant/3/255_3.png differ diff --git a/public/images/pokemon/icons/variant/3/256-f_2.png b/public/images/pokemon/icons/variant/3/256-f_2.png new file mode 100644 index 00000000000..b372f1ff981 Binary files /dev/null and b/public/images/pokemon/icons/variant/3/256-f_2.png differ diff --git a/public/images/pokemon/icons/variant/3/256-f_3.png b/public/images/pokemon/icons/variant/3/256-f_3.png new file mode 100644 index 00000000000..5d36370218b Binary files /dev/null and b/public/images/pokemon/icons/variant/3/256-f_3.png differ diff --git a/public/images/pokemon/icons/variant/3/256_2.png b/public/images/pokemon/icons/variant/3/256_2.png new file mode 100644 index 00000000000..b372f1ff981 Binary files /dev/null and b/public/images/pokemon/icons/variant/3/256_2.png differ diff --git a/public/images/pokemon/icons/variant/3/256_3.png b/public/images/pokemon/icons/variant/3/256_3.png new file mode 100644 index 00000000000..0c529f838ba Binary files /dev/null and b/public/images/pokemon/icons/variant/3/256_3.png differ diff --git a/public/images/pokemon/icons/variant/3/257-f_2.png b/public/images/pokemon/icons/variant/3/257-f_2.png new file mode 100644 index 00000000000..05dec9629ed Binary files /dev/null and b/public/images/pokemon/icons/variant/3/257-f_2.png differ diff --git a/public/images/pokemon/icons/variant/3/257-f_3.png b/public/images/pokemon/icons/variant/3/257-f_3.png new file mode 100644 index 00000000000..df9584837b0 Binary files /dev/null and b/public/images/pokemon/icons/variant/3/257-f_3.png differ diff --git a/public/images/pokemon/icons/variant/3/257-mega_2.png b/public/images/pokemon/icons/variant/3/257-mega_2.png new file mode 100644 index 00000000000..e04d8d8e1fe Binary files /dev/null and b/public/images/pokemon/icons/variant/3/257-mega_2.png differ diff --git a/public/images/pokemon/icons/variant/3/257-mega_3.png b/public/images/pokemon/icons/variant/3/257-mega_3.png new file mode 100644 index 00000000000..f32e684a503 Binary files /dev/null and b/public/images/pokemon/icons/variant/3/257-mega_3.png differ diff --git a/public/images/pokemon/icons/variant/3/257_2.png b/public/images/pokemon/icons/variant/3/257_2.png new file mode 100644 index 00000000000..305fab85238 Binary files /dev/null and b/public/images/pokemon/icons/variant/3/257_2.png differ diff --git a/public/images/pokemon/icons/variant/3/257_3.png b/public/images/pokemon/icons/variant/3/257_3.png new file mode 100644 index 00000000000..c7853c73d4f Binary files /dev/null and b/public/images/pokemon/icons/variant/3/257_3.png differ diff --git a/public/images/pokemon/icons/variant/3/261_2.png b/public/images/pokemon/icons/variant/3/261_2.png new file mode 100644 index 00000000000..31d46738062 Binary files /dev/null and b/public/images/pokemon/icons/variant/3/261_2.png differ diff --git a/public/images/pokemon/icons/variant/3/261_3.png b/public/images/pokemon/icons/variant/3/261_3.png new file mode 100644 index 00000000000..a00afc04114 Binary files /dev/null and b/public/images/pokemon/icons/variant/3/261_3.png differ diff --git a/public/images/pokemon/icons/variant/3/262_2.png b/public/images/pokemon/icons/variant/3/262_2.png new file mode 100644 index 00000000000..0490ad8b552 Binary files /dev/null and b/public/images/pokemon/icons/variant/3/262_2.png differ diff --git a/public/images/pokemon/icons/variant/3/262_3.png b/public/images/pokemon/icons/variant/3/262_3.png new file mode 100644 index 00000000000..eec06b91c5c Binary files /dev/null and b/public/images/pokemon/icons/variant/3/262_3.png differ diff --git a/public/images/pokemon/icons/variant/3/327_2.png b/public/images/pokemon/icons/variant/3/327_2.png new file mode 100644 index 00000000000..3013d175e7b Binary files /dev/null and b/public/images/pokemon/icons/variant/3/327_2.png differ diff --git a/public/images/pokemon/icons/variant/3/327_3.png b/public/images/pokemon/icons/variant/3/327_3.png new file mode 100644 index 00000000000..85d494eb661 Binary files /dev/null and b/public/images/pokemon/icons/variant/3/327_3.png differ diff --git a/public/images/pokemon/icons/variant/3/337_2.png b/public/images/pokemon/icons/variant/3/337_2.png new file mode 100644 index 00000000000..feb9de9766c Binary files /dev/null and b/public/images/pokemon/icons/variant/3/337_2.png differ diff --git a/public/images/pokemon/icons/variant/3/337_3.png b/public/images/pokemon/icons/variant/3/337_3.png new file mode 100644 index 00000000000..456109305ad Binary files /dev/null and b/public/images/pokemon/icons/variant/3/337_3.png differ diff --git a/public/images/pokemon/icons/variant/3/352_1.png b/public/images/pokemon/icons/variant/3/352_1.png index f6e0f96024a..2368c95ed59 100644 Binary files a/public/images/pokemon/icons/variant/3/352_1.png and b/public/images/pokemon/icons/variant/3/352_1.png differ diff --git a/public/images/pokemon/icons/variant/3/352_2.png b/public/images/pokemon/icons/variant/3/352_2.png index 88d67f91e1a..d0776e840c3 100644 Binary files a/public/images/pokemon/icons/variant/3/352_2.png and b/public/images/pokemon/icons/variant/3/352_2.png differ diff --git a/public/images/pokemon/icons/variant/3/352_3.png b/public/images/pokemon/icons/variant/3/352_3.png index e4f659efac0..36189d852a2 100644 Binary files a/public/images/pokemon/icons/variant/3/352_3.png and b/public/images/pokemon/icons/variant/3/352_3.png differ diff --git a/public/images/pokemon/icons/variant/3/370_2.png b/public/images/pokemon/icons/variant/3/370_2.png new file mode 100644 index 00000000000..97be23cb47b Binary files /dev/null and b/public/images/pokemon/icons/variant/3/370_2.png differ diff --git a/public/images/pokemon/icons/variant/3/370_3.png b/public/images/pokemon/icons/variant/3/370_3.png new file mode 100644 index 00000000000..39bbbf7277f Binary files /dev/null and b/public/images/pokemon/icons/variant/3/370_3.png differ diff --git a/public/images/pokemon/icons/variant/3/382-primal_2.png b/public/images/pokemon/icons/variant/3/382-primal_2.png index 2380442f03d..ef646e58170 100644 Binary files a/public/images/pokemon/icons/variant/3/382-primal_2.png and b/public/images/pokemon/icons/variant/3/382-primal_2.png differ diff --git a/public/images/pokemon/icons/variant/3/382_2.png b/public/images/pokemon/icons/variant/3/382_2.png index 040d5b47203..987672917b5 100644 Binary files a/public/images/pokemon/icons/variant/3/382_2.png and b/public/images/pokemon/icons/variant/3/382_2.png differ diff --git a/public/images/pokemon/icons/variant/3/427_2.png b/public/images/pokemon/icons/variant/3/427_2.png new file mode 100644 index 00000000000..ceaf11acb48 Binary files /dev/null and b/public/images/pokemon/icons/variant/3/427_2.png differ diff --git a/public/images/pokemon/icons/variant/3/427_3.png b/public/images/pokemon/icons/variant/3/427_3.png new file mode 100644 index 00000000000..5972f5e9489 Binary files /dev/null and b/public/images/pokemon/icons/variant/3/427_3.png differ diff --git a/public/images/pokemon/icons/variant/3/428-mega_2.png b/public/images/pokemon/icons/variant/3/428-mega_2.png new file mode 100644 index 00000000000..32c3293a796 Binary files /dev/null and b/public/images/pokemon/icons/variant/3/428-mega_2.png differ diff --git a/public/images/pokemon/icons/variant/3/428_2.png b/public/images/pokemon/icons/variant/3/428_2.png new file mode 100644 index 00000000000..5b325f3256a Binary files /dev/null and b/public/images/pokemon/icons/variant/3/428_2.png differ diff --git a/public/images/pokemon/icons/variant/3/429_1.png b/public/images/pokemon/icons/variant/3/429_1.png new file mode 100644 index 00000000000..667f389f5c1 Binary files /dev/null and b/public/images/pokemon/icons/variant/3/429_1.png differ diff --git a/public/images/pokemon/icons/variant/3/429_2.png b/public/images/pokemon/icons/variant/3/429_2.png new file mode 100644 index 00000000000..85cd47bd85f Binary files /dev/null and b/public/images/pokemon/icons/variant/3/429_2.png differ diff --git a/public/images/pokemon/icons/variant/3/429_3.png b/public/images/pokemon/icons/variant/3/429_3.png new file mode 100644 index 00000000000..bb9b2384514 Binary files /dev/null and b/public/images/pokemon/icons/variant/3/429_3.png differ diff --git a/public/images/pokemon/icons/variant/4/393_2.png b/public/images/pokemon/icons/variant/4/393_2.png new file mode 100644 index 00000000000..e26a72dd850 Binary files /dev/null and b/public/images/pokemon/icons/variant/4/393_2.png differ diff --git a/public/images/pokemon/icons/variant/4/393_3.png b/public/images/pokemon/icons/variant/4/393_3.png new file mode 100644 index 00000000000..7fcd8815e4f Binary files /dev/null and b/public/images/pokemon/icons/variant/4/393_3.png differ diff --git a/public/images/pokemon/icons/variant/4/394_2.png b/public/images/pokemon/icons/variant/4/394_2.png new file mode 100644 index 00000000000..637cc289736 Binary files /dev/null and b/public/images/pokemon/icons/variant/4/394_2.png differ diff --git a/public/images/pokemon/icons/variant/4/394_3.png b/public/images/pokemon/icons/variant/4/394_3.png new file mode 100644 index 00000000000..2a471dcc51e Binary files /dev/null and b/public/images/pokemon/icons/variant/4/394_3.png differ diff --git a/public/images/pokemon/icons/variant/4/395_2.png b/public/images/pokemon/icons/variant/4/395_2.png new file mode 100644 index 00000000000..733fede6d6b Binary files /dev/null and b/public/images/pokemon/icons/variant/4/395_2.png differ diff --git a/public/images/pokemon/icons/variant/4/395_3.png b/public/images/pokemon/icons/variant/4/395_3.png new file mode 100644 index 00000000000..43bd23c5c58 Binary files /dev/null and b/public/images/pokemon/icons/variant/4/395_3.png differ diff --git a/public/images/pokemon/icons/variant/4/418_2.png b/public/images/pokemon/icons/variant/4/418_2.png new file mode 100644 index 00000000000..7712de363c1 Binary files /dev/null and b/public/images/pokemon/icons/variant/4/418_2.png differ diff --git a/public/images/pokemon/icons/variant/4/418_3.png b/public/images/pokemon/icons/variant/4/418_3.png new file mode 100644 index 00000000000..c400f59a7ab Binary files /dev/null and b/public/images/pokemon/icons/variant/4/418_3.png differ diff --git a/public/images/pokemon/icons/variant/4/419_2.png b/public/images/pokemon/icons/variant/4/419_2.png new file mode 100644 index 00000000000..a95721362bd Binary files /dev/null and b/public/images/pokemon/icons/variant/4/419_2.png differ diff --git a/public/images/pokemon/icons/variant/4/419_3.png b/public/images/pokemon/icons/variant/4/419_3.png new file mode 100644 index 00000000000..89fa83adf14 Binary files /dev/null and b/public/images/pokemon/icons/variant/4/419_3.png differ diff --git a/public/images/pokemon/icons/variant/4/424_2.png b/public/images/pokemon/icons/variant/4/424_2.png new file mode 100644 index 00000000000..356858005eb Binary files /dev/null and b/public/images/pokemon/icons/variant/4/424_2.png differ diff --git a/public/images/pokemon/icons/variant/4/424_3.png b/public/images/pokemon/icons/variant/4/424_3.png new file mode 100644 index 00000000000..78e066ba68c Binary files /dev/null and b/public/images/pokemon/icons/variant/4/424_3.png differ diff --git a/public/images/pokemon/icons/variant/4/438_2.png b/public/images/pokemon/icons/variant/4/438_2.png new file mode 100644 index 00000000000..17e9774a8da Binary files /dev/null and b/public/images/pokemon/icons/variant/4/438_2.png differ diff --git a/public/images/pokemon/icons/variant/4/438_3.png b/public/images/pokemon/icons/variant/4/438_3.png new file mode 100644 index 00000000000..d5022d89135 Binary files /dev/null and b/public/images/pokemon/icons/variant/4/438_3.png differ diff --git a/public/images/pokemon/icons/variant/4/441_2.png b/public/images/pokemon/icons/variant/4/441_2.png new file mode 100644 index 00000000000..de8e6a96d56 Binary files /dev/null and b/public/images/pokemon/icons/variant/4/441_2.png differ diff --git a/public/images/pokemon/icons/variant/4/441_3.png b/public/images/pokemon/icons/variant/4/441_3.png new file mode 100644 index 00000000000..1ad59d63241 Binary files /dev/null and b/public/images/pokemon/icons/variant/4/441_3.png differ diff --git a/public/images/pokemon/icons/variant/4/456_2.png b/public/images/pokemon/icons/variant/4/456_2.png new file mode 100644 index 00000000000..c3817b56fb4 Binary files /dev/null and b/public/images/pokemon/icons/variant/4/456_2.png differ diff --git a/public/images/pokemon/icons/variant/4/456_3.png b/public/images/pokemon/icons/variant/4/456_3.png new file mode 100644 index 00000000000..1af49a05518 Binary files /dev/null and b/public/images/pokemon/icons/variant/4/456_3.png differ diff --git a/public/images/pokemon/icons/variant/4/457_2.png b/public/images/pokemon/icons/variant/4/457_2.png new file mode 100644 index 00000000000..8f120cc478d Binary files /dev/null and b/public/images/pokemon/icons/variant/4/457_2.png differ diff --git a/public/images/pokemon/icons/variant/4/457_3.png b/public/images/pokemon/icons/variant/4/457_3.png new file mode 100644 index 00000000000..e65119dd11a Binary files /dev/null and b/public/images/pokemon/icons/variant/4/457_3.png differ diff --git a/public/images/pokemon/icons/variant/4/467_2.png b/public/images/pokemon/icons/variant/4/467_2.png new file mode 100644 index 00000000000..46395657b20 Binary files /dev/null and b/public/images/pokemon/icons/variant/4/467_2.png differ diff --git a/public/images/pokemon/icons/variant/4/467_3.png b/public/images/pokemon/icons/variant/4/467_3.png new file mode 100644 index 00000000000..0a5821dc61f Binary files /dev/null and b/public/images/pokemon/icons/variant/4/467_3.png differ diff --git a/public/images/pokemon/icons/variant/4/469_2.png b/public/images/pokemon/icons/variant/4/469_2.png new file mode 100644 index 00000000000..8eb2dfece00 Binary files /dev/null and b/public/images/pokemon/icons/variant/4/469_2.png differ diff --git a/public/images/pokemon/icons/variant/4/469_3.png b/public/images/pokemon/icons/variant/4/469_3.png new file mode 100644 index 00000000000..10f4c01442b Binary files /dev/null and b/public/images/pokemon/icons/variant/4/469_3.png differ diff --git a/public/images/pokemon/icons/variant/4/472_2.png b/public/images/pokemon/icons/variant/4/472_2.png index 80282fd1f75..29cb7014389 100644 Binary files a/public/images/pokemon/icons/variant/4/472_2.png and b/public/images/pokemon/icons/variant/4/472_2.png differ diff --git a/public/images/pokemon/icons/variant/4/474_2.png b/public/images/pokemon/icons/variant/4/474_2.png new file mode 100644 index 00000000000..cbc6b709c8d Binary files /dev/null and b/public/images/pokemon/icons/variant/4/474_2.png differ diff --git a/public/images/pokemon/icons/variant/4/474_3.png b/public/images/pokemon/icons/variant/4/474_3.png new file mode 100644 index 00000000000..5cc48efdaf2 Binary files /dev/null and b/public/images/pokemon/icons/variant/4/474_3.png differ diff --git a/public/images/pokemon/icons/variant/4/479-fan_2.png b/public/images/pokemon/icons/variant/4/479-fan_2.png new file mode 100644 index 00000000000..2d421219259 Binary files /dev/null and b/public/images/pokemon/icons/variant/4/479-fan_2.png differ diff --git a/public/images/pokemon/icons/variant/4/479-fan_3.png b/public/images/pokemon/icons/variant/4/479-fan_3.png new file mode 100644 index 00000000000..590e3c7e7a2 Binary files /dev/null and b/public/images/pokemon/icons/variant/4/479-fan_3.png differ diff --git a/public/images/pokemon/icons/variant/4/479-frost_2.png b/public/images/pokemon/icons/variant/4/479-frost_2.png new file mode 100644 index 00000000000..abe9280ab03 Binary files /dev/null and b/public/images/pokemon/icons/variant/4/479-frost_2.png differ diff --git a/public/images/pokemon/icons/variant/4/479-frost_3.png b/public/images/pokemon/icons/variant/4/479-frost_3.png new file mode 100644 index 00000000000..55576d669da Binary files /dev/null and b/public/images/pokemon/icons/variant/4/479-frost_3.png differ diff --git a/public/images/pokemon/icons/variant/4/479-heat_2.png b/public/images/pokemon/icons/variant/4/479-heat_2.png new file mode 100644 index 00000000000..9a440f95b3b Binary files /dev/null and b/public/images/pokemon/icons/variant/4/479-heat_2.png differ diff --git a/public/images/pokemon/icons/variant/4/479-heat_3.png b/public/images/pokemon/icons/variant/4/479-heat_3.png new file mode 100644 index 00000000000..5c9482a5ff8 Binary files /dev/null and b/public/images/pokemon/icons/variant/4/479-heat_3.png differ diff --git a/public/images/pokemon/icons/variant/4/479-mow_2.png b/public/images/pokemon/icons/variant/4/479-mow_2.png new file mode 100644 index 00000000000..9a785ccafd4 Binary files /dev/null and b/public/images/pokemon/icons/variant/4/479-mow_2.png differ diff --git a/public/images/pokemon/icons/variant/4/479-mow_3.png b/public/images/pokemon/icons/variant/4/479-mow_3.png new file mode 100644 index 00000000000..ac6b5121458 Binary files /dev/null and b/public/images/pokemon/icons/variant/4/479-mow_3.png differ diff --git a/public/images/pokemon/icons/variant/4/479-wash_2.png b/public/images/pokemon/icons/variant/4/479-wash_2.png new file mode 100644 index 00000000000..8f09f7b8992 Binary files /dev/null and b/public/images/pokemon/icons/variant/4/479-wash_2.png differ diff --git a/public/images/pokemon/icons/variant/4/479-wash_3.png b/public/images/pokemon/icons/variant/4/479-wash_3.png new file mode 100644 index 00000000000..8b5e3bb99fb Binary files /dev/null and b/public/images/pokemon/icons/variant/4/479-wash_3.png differ diff --git a/public/images/pokemon/icons/variant/4/479_2.png b/public/images/pokemon/icons/variant/4/479_2.png new file mode 100644 index 00000000000..3e9c85463b8 Binary files /dev/null and b/public/images/pokemon/icons/variant/4/479_2.png differ diff --git a/public/images/pokemon/icons/variant/4/479_3.png b/public/images/pokemon/icons/variant/4/479_3.png new file mode 100644 index 00000000000..ec7a623f0fe Binary files /dev/null and b/public/images/pokemon/icons/variant/4/479_3.png differ diff --git a/public/images/pokemon/icons/variant/5/524_2.png b/public/images/pokemon/icons/variant/5/524_2.png new file mode 100644 index 00000000000..a93dcb3c02f Binary files /dev/null and b/public/images/pokemon/icons/variant/5/524_2.png differ diff --git a/public/images/pokemon/icons/variant/5/524_3.png b/public/images/pokemon/icons/variant/5/524_3.png new file mode 100644 index 00000000000..25f6deb2438 Binary files /dev/null and b/public/images/pokemon/icons/variant/5/524_3.png differ diff --git a/public/images/pokemon/icons/variant/5/525_2.png b/public/images/pokemon/icons/variant/5/525_2.png new file mode 100644 index 00000000000..794d8596d0d Binary files /dev/null and b/public/images/pokemon/icons/variant/5/525_2.png differ diff --git a/public/images/pokemon/icons/variant/5/525_3.png b/public/images/pokemon/icons/variant/5/525_3.png new file mode 100644 index 00000000000..8b96d696d69 Binary files /dev/null and b/public/images/pokemon/icons/variant/5/525_3.png differ diff --git a/public/images/pokemon/icons/variant/5/526_2.png b/public/images/pokemon/icons/variant/5/526_2.png new file mode 100644 index 00000000000..13b1cf0d0ac Binary files /dev/null and b/public/images/pokemon/icons/variant/5/526_2.png differ diff --git a/public/images/pokemon/icons/variant/5/526_3.png b/public/images/pokemon/icons/variant/5/526_3.png new file mode 100644 index 00000000000..e563cfc41be Binary files /dev/null and b/public/images/pokemon/icons/variant/5/526_3.png differ diff --git a/public/images/pokemon/icons/variant/5/546_2.png b/public/images/pokemon/icons/variant/5/546_2.png index e5db5b4f74f..3b5ab0b300b 100644 Binary files a/public/images/pokemon/icons/variant/5/546_2.png and b/public/images/pokemon/icons/variant/5/546_2.png differ diff --git a/public/images/pokemon/icons/variant/5/546_3.png b/public/images/pokemon/icons/variant/5/546_3.png index 126bd405d95..2bc5d147c8c 100644 Binary files a/public/images/pokemon/icons/variant/5/546_3.png and b/public/images/pokemon/icons/variant/5/546_3.png differ diff --git a/public/images/pokemon/icons/variant/5/556_2.png b/public/images/pokemon/icons/variant/5/556_2.png new file mode 100644 index 00000000000..06c906d32d8 Binary files /dev/null and b/public/images/pokemon/icons/variant/5/556_2.png differ diff --git a/public/images/pokemon/icons/variant/5/556_3.png b/public/images/pokemon/icons/variant/5/556_3.png new file mode 100644 index 00000000000..d617014f75f Binary files /dev/null and b/public/images/pokemon/icons/variant/5/556_3.png differ diff --git a/public/images/pokemon/icons/variant/5/571_2.png b/public/images/pokemon/icons/variant/5/571_2.png index 1e238ee619d..8153cdb98e9 100644 Binary files a/public/images/pokemon/icons/variant/5/571_2.png and b/public/images/pokemon/icons/variant/5/571_2.png differ diff --git a/public/images/pokemon/icons/variant/5/571_3.png b/public/images/pokemon/icons/variant/5/571_3.png index 528bfc4b719..f8602ad7aff 100644 Binary files a/public/images/pokemon/icons/variant/5/571_3.png and b/public/images/pokemon/icons/variant/5/571_3.png differ diff --git a/public/images/pokemon/icons/variant/5/594_2.png b/public/images/pokemon/icons/variant/5/594_2.png new file mode 100644 index 00000000000..a646222959f Binary files /dev/null and b/public/images/pokemon/icons/variant/5/594_2.png differ diff --git a/public/images/pokemon/icons/variant/5/594_3.png b/public/images/pokemon/icons/variant/5/594_3.png new file mode 100644 index 00000000000..8fb7c319cf2 Binary files /dev/null and b/public/images/pokemon/icons/variant/5/594_3.png differ diff --git a/public/images/pokemon/icons/variant/5/618_2.png b/public/images/pokemon/icons/variant/5/618_2.png new file mode 100644 index 00000000000..8b134146ccf Binary files /dev/null and b/public/images/pokemon/icons/variant/5/618_2.png differ diff --git a/public/images/pokemon/icons/variant/5/618_3.png b/public/images/pokemon/icons/variant/5/618_3.png new file mode 100644 index 00000000000..fd9f3994b22 Binary files /dev/null and b/public/images/pokemon/icons/variant/5/618_3.png differ diff --git a/public/images/pokemon/icons/variant/5/631_2.png b/public/images/pokemon/icons/variant/5/631_2.png new file mode 100644 index 00000000000..564fb16c4a0 Binary files /dev/null and b/public/images/pokemon/icons/variant/5/631_2.png differ diff --git a/public/images/pokemon/icons/variant/5/631_3.png b/public/images/pokemon/icons/variant/5/631_3.png new file mode 100644 index 00000000000..08779f3e130 Binary files /dev/null and b/public/images/pokemon/icons/variant/5/631_3.png differ diff --git a/public/images/pokemon/icons/variant/5/636_2.png b/public/images/pokemon/icons/variant/5/636_2.png new file mode 100644 index 00000000000..57a29619e10 Binary files /dev/null and b/public/images/pokemon/icons/variant/5/636_2.png differ diff --git a/public/images/pokemon/icons/variant/5/636_3.png b/public/images/pokemon/icons/variant/5/636_3.png new file mode 100644 index 00000000000..d63a8d77787 Binary files /dev/null and b/public/images/pokemon/icons/variant/5/636_3.png differ diff --git a/public/images/pokemon/icons/variant/5/637_2.png b/public/images/pokemon/icons/variant/5/637_2.png new file mode 100644 index 00000000000..e44609653b7 Binary files /dev/null and b/public/images/pokemon/icons/variant/5/637_2.png differ diff --git a/public/images/pokemon/icons/variant/5/637_3.png b/public/images/pokemon/icons/variant/5/637_3.png new file mode 100644 index 00000000000..29d176bea57 Binary files /dev/null and b/public/images/pokemon/icons/variant/5/637_3.png differ diff --git a/public/images/pokemon/icons/variant/6/2670_2.png b/public/images/pokemon/icons/variant/6/2670_2.png new file mode 100644 index 00000000000..4f9321285d4 Binary files /dev/null and b/public/images/pokemon/icons/variant/6/2670_2.png differ diff --git a/public/images/pokemon/icons/variant/6/2670_3.png b/public/images/pokemon/icons/variant/6/2670_3.png new file mode 100644 index 00000000000..ef884ede7c8 Binary files /dev/null and b/public/images/pokemon/icons/variant/6/2670_3.png differ diff --git a/public/images/pokemon/icons/variant/6/669-blue_2.png b/public/images/pokemon/icons/variant/6/669-blue_2.png new file mode 100644 index 00000000000..d6f545f8db4 Binary files /dev/null and b/public/images/pokemon/icons/variant/6/669-blue_2.png differ diff --git a/public/images/pokemon/icons/variant/6/669-blue_3.png b/public/images/pokemon/icons/variant/6/669-blue_3.png new file mode 100644 index 00000000000..72df3b2555a Binary files /dev/null and b/public/images/pokemon/icons/variant/6/669-blue_3.png differ diff --git a/public/images/pokemon/icons/variant/6/669-orange_2.png b/public/images/pokemon/icons/variant/6/669-orange_2.png new file mode 100644 index 00000000000..d2fe737b886 Binary files /dev/null and b/public/images/pokemon/icons/variant/6/669-orange_2.png differ diff --git a/public/images/pokemon/icons/variant/6/669-orange_3.png b/public/images/pokemon/icons/variant/6/669-orange_3.png new file mode 100644 index 00000000000..886794562fb Binary files /dev/null and b/public/images/pokemon/icons/variant/6/669-orange_3.png differ diff --git a/public/images/pokemon/icons/variant/6/669-red_2.png b/public/images/pokemon/icons/variant/6/669-red_2.png new file mode 100644 index 00000000000..b86bc30ad3d Binary files /dev/null and b/public/images/pokemon/icons/variant/6/669-red_2.png differ diff --git a/public/images/pokemon/icons/variant/6/669-red_3.png b/public/images/pokemon/icons/variant/6/669-red_3.png new file mode 100644 index 00000000000..7400bf698d3 Binary files /dev/null and b/public/images/pokemon/icons/variant/6/669-red_3.png differ diff --git a/public/images/pokemon/icons/variant/6/669-white_2.png b/public/images/pokemon/icons/variant/6/669-white_2.png new file mode 100644 index 00000000000..d3cc24cdb4b Binary files /dev/null and b/public/images/pokemon/icons/variant/6/669-white_2.png differ diff --git a/public/images/pokemon/icons/variant/6/669-white_3.png b/public/images/pokemon/icons/variant/6/669-white_3.png new file mode 100644 index 00000000000..fab0591042d Binary files /dev/null and b/public/images/pokemon/icons/variant/6/669-white_3.png differ diff --git a/public/images/pokemon/icons/variant/6/669-yellow_2.png b/public/images/pokemon/icons/variant/6/669-yellow_2.png new file mode 100644 index 00000000000..87feaaf1f1d Binary files /dev/null and b/public/images/pokemon/icons/variant/6/669-yellow_2.png differ diff --git a/public/images/pokemon/icons/variant/6/669-yellow_3.png b/public/images/pokemon/icons/variant/6/669-yellow_3.png new file mode 100644 index 00000000000..41fe7eddd72 Binary files /dev/null and b/public/images/pokemon/icons/variant/6/669-yellow_3.png differ diff --git a/public/images/pokemon/icons/variant/6/670-blue_2.png b/public/images/pokemon/icons/variant/6/670-blue_2.png new file mode 100644 index 00000000000..650685edd9a Binary files /dev/null and b/public/images/pokemon/icons/variant/6/670-blue_2.png differ diff --git a/public/images/pokemon/icons/variant/6/670-blue_3.png b/public/images/pokemon/icons/variant/6/670-blue_3.png new file mode 100644 index 00000000000..50a0051db07 Binary files /dev/null and b/public/images/pokemon/icons/variant/6/670-blue_3.png differ diff --git a/public/images/pokemon/icons/variant/6/670-orange_2.png b/public/images/pokemon/icons/variant/6/670-orange_2.png new file mode 100644 index 00000000000..349923809b0 Binary files /dev/null and b/public/images/pokemon/icons/variant/6/670-orange_2.png differ diff --git a/public/images/pokemon/icons/variant/6/670-orange_3.png b/public/images/pokemon/icons/variant/6/670-orange_3.png new file mode 100644 index 00000000000..5b49789aa16 Binary files /dev/null and b/public/images/pokemon/icons/variant/6/670-orange_3.png differ diff --git a/public/images/pokemon/icons/variant/6/670-red_2.png b/public/images/pokemon/icons/variant/6/670-red_2.png new file mode 100644 index 00000000000..e50036769d8 Binary files /dev/null and b/public/images/pokemon/icons/variant/6/670-red_2.png differ diff --git a/public/images/pokemon/icons/variant/6/670-red_3.png b/public/images/pokemon/icons/variant/6/670-red_3.png new file mode 100644 index 00000000000..591e95e3ea8 Binary files /dev/null and b/public/images/pokemon/icons/variant/6/670-red_3.png differ diff --git a/public/images/pokemon/icons/variant/6/670-white_2.png b/public/images/pokemon/icons/variant/6/670-white_2.png new file mode 100644 index 00000000000..6c5fe0d1770 Binary files /dev/null and b/public/images/pokemon/icons/variant/6/670-white_2.png differ diff --git a/public/images/pokemon/icons/variant/6/670-white_3.png b/public/images/pokemon/icons/variant/6/670-white_3.png new file mode 100644 index 00000000000..73a1767a90f Binary files /dev/null and b/public/images/pokemon/icons/variant/6/670-white_3.png differ diff --git a/public/images/pokemon/icons/variant/6/670-yellow_2.png b/public/images/pokemon/icons/variant/6/670-yellow_2.png new file mode 100644 index 00000000000..1cc3cfddf3e Binary files /dev/null and b/public/images/pokemon/icons/variant/6/670-yellow_2.png differ diff --git a/public/images/pokemon/icons/variant/6/670-yellow_3.png b/public/images/pokemon/icons/variant/6/670-yellow_3.png new file mode 100644 index 00000000000..6152ca04d95 Binary files /dev/null and b/public/images/pokemon/icons/variant/6/670-yellow_3.png differ diff --git a/public/images/pokemon/icons/variant/6/671-blue_2.png b/public/images/pokemon/icons/variant/6/671-blue_2.png new file mode 100644 index 00000000000..44de46ce581 Binary files /dev/null and b/public/images/pokemon/icons/variant/6/671-blue_2.png differ diff --git a/public/images/pokemon/icons/variant/6/671-blue_3.png b/public/images/pokemon/icons/variant/6/671-blue_3.png new file mode 100644 index 00000000000..9546669842e Binary files /dev/null and b/public/images/pokemon/icons/variant/6/671-blue_3.png differ diff --git a/public/images/pokemon/icons/variant/6/671-orange_2.png b/public/images/pokemon/icons/variant/6/671-orange_2.png new file mode 100644 index 00000000000..419fc8d4781 Binary files /dev/null and b/public/images/pokemon/icons/variant/6/671-orange_2.png differ diff --git a/public/images/pokemon/icons/variant/6/671-orange_3.png b/public/images/pokemon/icons/variant/6/671-orange_3.png new file mode 100644 index 00000000000..dc5730f086e Binary files /dev/null and b/public/images/pokemon/icons/variant/6/671-orange_3.png differ diff --git a/public/images/pokemon/icons/variant/6/671-red_2.png b/public/images/pokemon/icons/variant/6/671-red_2.png new file mode 100644 index 00000000000..0a2f5d20fd6 Binary files /dev/null and b/public/images/pokemon/icons/variant/6/671-red_2.png differ diff --git a/public/images/pokemon/icons/variant/6/671-red_3.png b/public/images/pokemon/icons/variant/6/671-red_3.png new file mode 100644 index 00000000000..62b6be12943 Binary files /dev/null and b/public/images/pokemon/icons/variant/6/671-red_3.png differ diff --git a/public/images/pokemon/icons/variant/6/671-white_2.png b/public/images/pokemon/icons/variant/6/671-white_2.png new file mode 100644 index 00000000000..7bb347d0799 Binary files /dev/null and b/public/images/pokemon/icons/variant/6/671-white_2.png differ diff --git a/public/images/pokemon/icons/variant/6/671-white_3.png b/public/images/pokemon/icons/variant/6/671-white_3.png new file mode 100644 index 00000000000..9de027625c2 Binary files /dev/null and b/public/images/pokemon/icons/variant/6/671-white_3.png differ diff --git a/public/images/pokemon/icons/variant/6/671-yellow_2.png b/public/images/pokemon/icons/variant/6/671-yellow_2.png new file mode 100644 index 00000000000..48aea0a7d99 Binary files /dev/null and b/public/images/pokemon/icons/variant/6/671-yellow_2.png differ diff --git a/public/images/pokemon/icons/variant/6/671-yellow_3.png b/public/images/pokemon/icons/variant/6/671-yellow_3.png new file mode 100644 index 00000000000..57c17f66d77 Binary files /dev/null and b/public/images/pokemon/icons/variant/6/671-yellow_3.png differ diff --git a/public/images/pokemon/icons/variant/6/677_2.png b/public/images/pokemon/icons/variant/6/677_2.png new file mode 100644 index 00000000000..df72af379d6 Binary files /dev/null and b/public/images/pokemon/icons/variant/6/677_2.png differ diff --git a/public/images/pokemon/icons/variant/6/677_3.png b/public/images/pokemon/icons/variant/6/677_3.png new file mode 100644 index 00000000000..3eaf9b54ef8 Binary files /dev/null and b/public/images/pokemon/icons/variant/6/677_3.png differ diff --git a/public/images/pokemon/icons/variant/6/678-female_2.png b/public/images/pokemon/icons/variant/6/678-female_2.png new file mode 100644 index 00000000000..220e8a97077 Binary files /dev/null and b/public/images/pokemon/icons/variant/6/678-female_2.png differ diff --git a/public/images/pokemon/icons/variant/6/678-female_3.png b/public/images/pokemon/icons/variant/6/678-female_3.png new file mode 100644 index 00000000000..d27883df1ae Binary files /dev/null and b/public/images/pokemon/icons/variant/6/678-female_3.png differ diff --git a/public/images/pokemon/icons/variant/6/678_2.png b/public/images/pokemon/icons/variant/6/678_2.png new file mode 100644 index 00000000000..9c625e911c0 Binary files /dev/null and b/public/images/pokemon/icons/variant/6/678_2.png differ diff --git a/public/images/pokemon/icons/variant/6/678_3.png b/public/images/pokemon/icons/variant/6/678_3.png new file mode 100644 index 00000000000..372759b3aa4 Binary files /dev/null and b/public/images/pokemon/icons/variant/6/678_3.png differ diff --git a/public/images/pokemon/icons/variant/6/698_2.png b/public/images/pokemon/icons/variant/6/698_2.png new file mode 100644 index 00000000000..61b7d962358 Binary files /dev/null and b/public/images/pokemon/icons/variant/6/698_2.png differ diff --git a/public/images/pokemon/icons/variant/6/698_3.png b/public/images/pokemon/icons/variant/6/698_3.png new file mode 100644 index 00000000000..8165d2686d7 Binary files /dev/null and b/public/images/pokemon/icons/variant/6/698_3.png differ diff --git a/public/images/pokemon/icons/variant/6/699_2.png b/public/images/pokemon/icons/variant/6/699_2.png new file mode 100644 index 00000000000..9bf9f4c0441 Binary files /dev/null and b/public/images/pokemon/icons/variant/6/699_2.png differ diff --git a/public/images/pokemon/icons/variant/6/699_3.png b/public/images/pokemon/icons/variant/6/699_3.png new file mode 100644 index 00000000000..d6b861addbd Binary files /dev/null and b/public/images/pokemon/icons/variant/6/699_3.png differ diff --git a/public/images/pokemon/icons/variant/6/702_2.png b/public/images/pokemon/icons/variant/6/702_2.png new file mode 100644 index 00000000000..d7b70505077 Binary files /dev/null and b/public/images/pokemon/icons/variant/6/702_2.png differ diff --git a/public/images/pokemon/icons/variant/6/702_3.png b/public/images/pokemon/icons/variant/6/702_3.png new file mode 100644 index 00000000000..91e443c323d Binary files /dev/null and b/public/images/pokemon/icons/variant/6/702_3.png differ diff --git a/public/images/pokemon/icons/variant/6/703_2.png b/public/images/pokemon/icons/variant/6/703_2.png new file mode 100644 index 00000000000..e30a1896440 Binary files /dev/null and b/public/images/pokemon/icons/variant/6/703_2.png differ diff --git a/public/images/pokemon/icons/variant/6/703_3.png b/public/images/pokemon/icons/variant/6/703_3.png new file mode 100644 index 00000000000..ac69636d1ec Binary files /dev/null and b/public/images/pokemon/icons/variant/6/703_3.png differ diff --git a/public/images/pokemon/icons/variant/7/2027_2.png b/public/images/pokemon/icons/variant/7/2027_2.png new file mode 100644 index 00000000000..33e95951d2e Binary files /dev/null and b/public/images/pokemon/icons/variant/7/2027_2.png differ diff --git a/public/images/pokemon/icons/variant/7/2027_3.png b/public/images/pokemon/icons/variant/7/2027_3.png new file mode 100644 index 00000000000..19849e146a3 Binary files /dev/null and b/public/images/pokemon/icons/variant/7/2027_3.png differ diff --git a/public/images/pokemon/icons/variant/7/2028_2.png b/public/images/pokemon/icons/variant/7/2028_2.png new file mode 100644 index 00000000000..a05e916a6cd Binary files /dev/null and b/public/images/pokemon/icons/variant/7/2028_2.png differ diff --git a/public/images/pokemon/icons/variant/7/2028_3.png b/public/images/pokemon/icons/variant/7/2028_3.png new file mode 100644 index 00000000000..3521427080f Binary files /dev/null and b/public/images/pokemon/icons/variant/7/2028_3.png differ diff --git a/public/images/pokemon/icons/variant/7/803_2.png b/public/images/pokemon/icons/variant/7/803_2.png new file mode 100644 index 00000000000..3e20203fdef Binary files /dev/null and b/public/images/pokemon/icons/variant/7/803_2.png differ diff --git a/public/images/pokemon/icons/variant/7/803_3.png b/public/images/pokemon/icons/variant/7/803_3.png new file mode 100644 index 00000000000..3225ab47b11 Binary files /dev/null and b/public/images/pokemon/icons/variant/7/803_3.png differ diff --git a/public/images/pokemon/icons/variant/7/804_2.png b/public/images/pokemon/icons/variant/7/804_2.png new file mode 100644 index 00000000000..aa5a0541637 Binary files /dev/null and b/public/images/pokemon/icons/variant/7/804_2.png differ diff --git a/public/images/pokemon/icons/variant/7/804_3.png b/public/images/pokemon/icons/variant/7/804_3.png new file mode 100644 index 00000000000..a4fc1828c29 Binary files /dev/null and b/public/images/pokemon/icons/variant/7/804_3.png differ diff --git a/public/images/pokemon/icons/variant/8/1003_2.png b/public/images/pokemon/icons/variant/8/1003_2.png new file mode 100644 index 00000000000..2cbc2f4e26a Binary files /dev/null and b/public/images/pokemon/icons/variant/8/1003_2.png differ diff --git a/public/images/pokemon/icons/variant/8/1003_3.png b/public/images/pokemon/icons/variant/8/1003_3.png new file mode 100644 index 00000000000..36e80525b0f Binary files /dev/null and b/public/images/pokemon/icons/variant/8/1003_3.png differ diff --git a/public/images/pokemon/icons/variant/8/1006_2.png b/public/images/pokemon/icons/variant/8/1006_2.png new file mode 100644 index 00000000000..65f7ce87a83 Binary files /dev/null and b/public/images/pokemon/icons/variant/8/1006_2.png differ diff --git a/public/images/pokemon/icons/variant/8/1006_3.png b/public/images/pokemon/icons/variant/8/1006_3.png new file mode 100644 index 00000000000..97240b73609 Binary files /dev/null and b/public/images/pokemon/icons/variant/8/1006_3.png differ diff --git a/public/images/pokemon/icons/variant/8/1010_2.png b/public/images/pokemon/icons/variant/8/1010_2.png new file mode 100644 index 00000000000..7e20810c2b4 Binary files /dev/null and b/public/images/pokemon/icons/variant/8/1010_2.png differ diff --git a/public/images/pokemon/icons/variant/8/1010_3.png b/public/images/pokemon/icons/variant/8/1010_3.png new file mode 100644 index 00000000000..ff6cd6e71b0 Binary files /dev/null and b/public/images/pokemon/icons/variant/8/1010_3.png differ diff --git a/public/images/pokemon/icons/variant/8/4079_2.png b/public/images/pokemon/icons/variant/8/4079_2.png new file mode 100644 index 00000000000..7ae8cf28c75 Binary files /dev/null and b/public/images/pokemon/icons/variant/8/4079_2.png differ diff --git a/public/images/pokemon/icons/variant/8/4079_3.png b/public/images/pokemon/icons/variant/8/4079_3.png new file mode 100644 index 00000000000..95133e719e7 Binary files /dev/null and b/public/images/pokemon/icons/variant/8/4079_3.png differ diff --git a/public/images/pokemon/icons/variant/8/4080_2.png b/public/images/pokemon/icons/variant/8/4080_2.png new file mode 100644 index 00000000000..cfeffb41ca7 Binary files /dev/null and b/public/images/pokemon/icons/variant/8/4080_2.png differ diff --git a/public/images/pokemon/icons/variant/8/4080_3.png b/public/images/pokemon/icons/variant/8/4080_3.png new file mode 100644 index 00000000000..36e4fd9e55a Binary files /dev/null and b/public/images/pokemon/icons/variant/8/4080_3.png differ diff --git a/public/images/pokemon/icons/variant/8/4199_2.png b/public/images/pokemon/icons/variant/8/4199_2.png new file mode 100644 index 00000000000..151aad6c285 Binary files /dev/null and b/public/images/pokemon/icons/variant/8/4199_2.png differ diff --git a/public/images/pokemon/icons/variant/8/4199_3.png b/public/images/pokemon/icons/variant/8/4199_3.png new file mode 100644 index 00000000000..72e730de86e Binary files /dev/null and b/public/images/pokemon/icons/variant/8/4199_3.png differ diff --git a/public/images/pokemon/icons/variant/8/4562_2.png b/public/images/pokemon/icons/variant/8/4562_2.png new file mode 100644 index 00000000000..3b8add56b50 Binary files /dev/null and b/public/images/pokemon/icons/variant/8/4562_2.png differ diff --git a/public/images/pokemon/icons/variant/8/4562_3.png b/public/images/pokemon/icons/variant/8/4562_3.png new file mode 100644 index 00000000000..b3cfdd0d7c4 Binary files /dev/null and b/public/images/pokemon/icons/variant/8/4562_3.png differ diff --git a/public/images/pokemon/icons/variant/8/867_2.png b/public/images/pokemon/icons/variant/8/867_2.png new file mode 100644 index 00000000000..7330147db2a Binary files /dev/null and b/public/images/pokemon/icons/variant/8/867_2.png differ diff --git a/public/images/pokemon/icons/variant/8/867_3.png b/public/images/pokemon/icons/variant/8/867_3.png new file mode 100644 index 00000000000..f93d7c8bfb4 Binary files /dev/null and b/public/images/pokemon/icons/variant/8/867_3.png differ diff --git a/public/images/pokemon/icons/variant/8/880_2.png b/public/images/pokemon/icons/variant/8/880_2.png new file mode 100644 index 00000000000..be07577cd25 Binary files /dev/null and b/public/images/pokemon/icons/variant/8/880_2.png differ diff --git a/public/images/pokemon/icons/variant/8/880_3.png b/public/images/pokemon/icons/variant/8/880_3.png new file mode 100644 index 00000000000..e02ed7193ad Binary files /dev/null and b/public/images/pokemon/icons/variant/8/880_3.png differ diff --git a/public/images/pokemon/icons/variant/8/881_2.png b/public/images/pokemon/icons/variant/8/881_2.png new file mode 100644 index 00000000000..1d861c0a9f6 Binary files /dev/null and b/public/images/pokemon/icons/variant/8/881_2.png differ diff --git a/public/images/pokemon/icons/variant/8/881_3.png b/public/images/pokemon/icons/variant/8/881_3.png new file mode 100644 index 00000000000..a88bfb50dab Binary files /dev/null and b/public/images/pokemon/icons/variant/8/881_3.png differ diff --git a/public/images/pokemon/icons/variant/8/882_2.png b/public/images/pokemon/icons/variant/8/882_2.png new file mode 100644 index 00000000000..d80cda17872 Binary files /dev/null and b/public/images/pokemon/icons/variant/8/882_2.png differ diff --git a/public/images/pokemon/icons/variant/8/882_3.png b/public/images/pokemon/icons/variant/8/882_3.png new file mode 100644 index 00000000000..14715f47721 Binary files /dev/null and b/public/images/pokemon/icons/variant/8/882_3.png differ diff --git a/public/images/pokemon/icons/variant/8/883_2.png b/public/images/pokemon/icons/variant/8/883_2.png new file mode 100644 index 00000000000..18215b74d5b Binary files /dev/null and b/public/images/pokemon/icons/variant/8/883_2.png differ diff --git a/public/images/pokemon/icons/variant/8/883_3.png b/public/images/pokemon/icons/variant/8/883_3.png new file mode 100644 index 00000000000..25172d687e7 Binary files /dev/null and b/public/images/pokemon/icons/variant/8/883_3.png differ diff --git a/public/images/pokemon/icons/variant/8/888-crowned_2.png b/public/images/pokemon/icons/variant/8/888-crowned_2.png new file mode 100644 index 00000000000..51e654cc108 Binary files /dev/null and b/public/images/pokemon/icons/variant/8/888-crowned_2.png differ diff --git a/public/images/pokemon/icons/variant/8/888-crowned_3.png b/public/images/pokemon/icons/variant/8/888-crowned_3.png new file mode 100644 index 00000000000..8e45189e15f Binary files /dev/null and b/public/images/pokemon/icons/variant/8/888-crowned_3.png differ diff --git a/public/images/pokemon/icons/variant/8/888_2.png b/public/images/pokemon/icons/variant/8/888_2.png new file mode 100644 index 00000000000..58f023ed3ea Binary files /dev/null and b/public/images/pokemon/icons/variant/8/888_2.png differ diff --git a/public/images/pokemon/icons/variant/8/888_3.png b/public/images/pokemon/icons/variant/8/888_3.png new file mode 100644 index 00000000000..336cbecadd0 Binary files /dev/null and b/public/images/pokemon/icons/variant/8/888_3.png differ diff --git a/public/images/pokemon/icons/variant/8/889-crowned_2.png b/public/images/pokemon/icons/variant/8/889-crowned_2.png new file mode 100644 index 00000000000..3a72aa9c587 Binary files /dev/null and b/public/images/pokemon/icons/variant/8/889-crowned_2.png differ diff --git a/public/images/pokemon/icons/variant/8/889-crowned_3.png b/public/images/pokemon/icons/variant/8/889-crowned_3.png new file mode 100644 index 00000000000..81929666ba1 Binary files /dev/null and b/public/images/pokemon/icons/variant/8/889-crowned_3.png differ diff --git a/public/images/pokemon/icons/variant/8/889_2.png b/public/images/pokemon/icons/variant/8/889_2.png new file mode 100644 index 00000000000..91bde36e526 Binary files /dev/null and b/public/images/pokemon/icons/variant/8/889_2.png differ diff --git a/public/images/pokemon/icons/variant/8/889_3.png b/public/images/pokemon/icons/variant/8/889_3.png new file mode 100644 index 00000000000..93b547d3e03 Binary files /dev/null and b/public/images/pokemon/icons/variant/8/889_3.png differ diff --git a/public/images/pokemon/icons/variant/8/909_2.png b/public/images/pokemon/icons/variant/8/909_2.png new file mode 100644 index 00000000000..73f71bd49d3 Binary files /dev/null and b/public/images/pokemon/icons/variant/8/909_2.png differ diff --git a/public/images/pokemon/icons/variant/8/909_3.png b/public/images/pokemon/icons/variant/8/909_3.png new file mode 100644 index 00000000000..5fb79e5b917 Binary files /dev/null and b/public/images/pokemon/icons/variant/8/909_3.png differ diff --git a/public/images/pokemon/icons/variant/8/912_2.png b/public/images/pokemon/icons/variant/8/912_2.png new file mode 100644 index 00000000000..80bc8fb2c46 Binary files /dev/null and b/public/images/pokemon/icons/variant/8/912_2.png differ diff --git a/public/images/pokemon/icons/variant/8/912_3.png b/public/images/pokemon/icons/variant/8/912_3.png new file mode 100644 index 00000000000..c52bdd2fb73 Binary files /dev/null and b/public/images/pokemon/icons/variant/8/912_3.png differ diff --git a/public/images/pokemon/icons/variant/8/913_2.png b/public/images/pokemon/icons/variant/8/913_2.png new file mode 100644 index 00000000000..bb39165f68d Binary files /dev/null and b/public/images/pokemon/icons/variant/8/913_2.png differ diff --git a/public/images/pokemon/icons/variant/8/913_3.png b/public/images/pokemon/icons/variant/8/913_3.png new file mode 100644 index 00000000000..71cb697ee3b Binary files /dev/null and b/public/images/pokemon/icons/variant/8/913_3.png differ diff --git a/public/images/pokemon/icons/variant/8/914_2.png b/public/images/pokemon/icons/variant/8/914_2.png new file mode 100644 index 00000000000..ecf60fef07f Binary files /dev/null and b/public/images/pokemon/icons/variant/8/914_2.png differ diff --git a/public/images/pokemon/icons/variant/8/914_3.png b/public/images/pokemon/icons/variant/8/914_3.png new file mode 100644 index 00000000000..c7ea5441d4b Binary files /dev/null and b/public/images/pokemon/icons/variant/8/914_3.png differ diff --git a/public/images/pokemon/icons/variant/8/940_2.png b/public/images/pokemon/icons/variant/8/940_2.png new file mode 100644 index 00000000000..2344679d987 Binary files /dev/null and b/public/images/pokemon/icons/variant/8/940_2.png differ diff --git a/public/images/pokemon/icons/variant/8/940_3.png b/public/images/pokemon/icons/variant/8/940_3.png new file mode 100644 index 00000000000..56a17f4d4dd Binary files /dev/null and b/public/images/pokemon/icons/variant/8/940_3.png differ diff --git a/public/images/pokemon/icons/variant/8/941_2.png b/public/images/pokemon/icons/variant/8/941_2.png new file mode 100644 index 00000000000..57ed730a37c Binary files /dev/null and b/public/images/pokemon/icons/variant/8/941_2.png differ diff --git a/public/images/pokemon/icons/variant/8/941_3.png b/public/images/pokemon/icons/variant/8/941_3.png new file mode 100644 index 00000000000..6d0dea04b0e Binary files /dev/null and b/public/images/pokemon/icons/variant/8/941_3.png differ diff --git a/public/images/pokemon/icons/variant/8/953_2.png b/public/images/pokemon/icons/variant/8/953_2.png new file mode 100644 index 00000000000..8b200581cff Binary files /dev/null and b/public/images/pokemon/icons/variant/8/953_2.png differ diff --git a/public/images/pokemon/icons/variant/8/953_3.png b/public/images/pokemon/icons/variant/8/953_3.png new file mode 100644 index 00000000000..0e35868ebc7 Binary files /dev/null and b/public/images/pokemon/icons/variant/8/953_3.png differ diff --git a/public/images/pokemon/icons/variant/8/954_2.png b/public/images/pokemon/icons/variant/8/954_2.png new file mode 100644 index 00000000000..7e3607698bf Binary files /dev/null and b/public/images/pokemon/icons/variant/8/954_2.png differ diff --git a/public/images/pokemon/icons/variant/8/954_3.png b/public/images/pokemon/icons/variant/8/954_3.png new file mode 100644 index 00000000000..affd07a9df9 Binary files /dev/null and b/public/images/pokemon/icons/variant/8/954_3.png differ diff --git a/public/images/pokemon/icons/variant/8/981_2.png b/public/images/pokemon/icons/variant/8/981_2.png new file mode 100644 index 00000000000..1bceb5c2291 Binary files /dev/null and b/public/images/pokemon/icons/variant/8/981_2.png differ diff --git a/public/images/pokemon/icons/variant/8/981_3.png b/public/images/pokemon/icons/variant/8/981_3.png new file mode 100644 index 00000000000..217b607125e Binary files /dev/null and b/public/images/pokemon/icons/variant/8/981_3.png differ diff --git a/public/images/pokemon/variant/469.json b/public/images/pokemon/variant/469.json new file mode 100644 index 00000000000..afaaeab8796 --- /dev/null +++ b/public/images/pokemon/variant/469.json @@ -0,0 +1,38 @@ +{ + "1": { + "3a5a29": "8577e0", + "797982": "ba4369", + "f75a52": "5555ab", + "739c63": "dfbaff", + "733100": "322966", + "213a19": "534fab", + "4a4a52": "942b5a", + "ffffff": "c4f2ff", + "52844a": "c59eff", + "c5cee6": "91c2fa", + "7b7b84": "6143b3", + "797983": "6143b3", + "a5adc5": "6e8ce0", + "292931": "511d5e", + "b53119": "403a91", + "ff948c": "5c7db5" + }, + "2": { + "3a5a29": "965a2f", + "797982": "516d82", + "f75a52": "21b0a6", + "739c63": "ebcf7c", + "733100": "2e5785", + "213a19": "70331d", + "4a4a52": "2e4a52", + "ffffff": "c1dede", + "52844a": "e0a14f", + "c5cee6": "97c0c4", + "7b7b84": "4f6b80", + "797983": "4f6b80", + "a5adc5": "678ea6", + "292931": "1f3144", + "b53119": "2c8199", + "ff948c": "79d4ba" + } +} \ No newline at end of file diff --git a/public/images/pokemon/variant/472.json b/public/images/pokemon/variant/472.json index a98fd1a0355..937ea1334de 100644 --- a/public/images/pokemon/variant/472.json +++ b/public/images/pokemon/variant/472.json @@ -1,44 +1,33 @@ { "1": { "5a63a5": "974d16", - "293163": "5c2a09", - "9c8cef": "d28b36", - "b5a5ff": "e9bb57", - "ffffff": "ffffff", - "737bc5": "b86f27", - "101010": "101010", - "730800": "143262", - "ad2131": "2a6197", "de3a6b": "4c83a9", - "43050d": "5c2a09", - "ad9400": "4b64ff", - "ffde00": "84b8ff", - "2a2a2a": "130e27", + "293163": "5c2a09", "424252": "2a2752", - "c55294": "5270c5", - "d8d8d8": "d8d8d8", + "ffde00": "84b8ff", + "b5a5ff": "e9bb57", "6b6b7b": "48487a", - "103f47": "103f47" + "737bc5": "b86f27", + "730800": "143262", + "9c8cef": "d28b36", + "ad2131": "2a6197", + "c55294": "5270c5", + "ad9400": "4b64ff", + "2a2a2a": "130e27" }, "2": { "5a63a5": "731e37", - "293163": "43050d", - "9c8cef": "b3404a", - "b5a5ff": "eb6a64", - "ffffff": "ffffff", - "737bc5": "952b41", - "101010": "101010", - "730800": "262138", - "ad2131": "453b57", "de3a6b": "594b6a", - "43050d": "43050d", - "ad9400": "16a9c0", - "ffde00": "6bffd4", - "2a2a2a": "1a554f", + "293163": "43050d", "424252": "57b6a6", - "c55294": "c55294", - "d8d8d8": "d8d8d8", + "ffde00": "6bffd4", + "b5a5ff": "eb6a64", "6b6b7b": "81e4c2", - "103f47": "103f47" + "737bc5": "952b41", + "730800": "262138", + "9c8cef": "b3404a", + "ad2131": "453b57", + "ad9400": "16a9c0", + "2a2a2a": "103f47" } } \ No newline at end of file diff --git a/public/images/pokemon/variant/751.json b/public/images/pokemon/variant/751.json index 19dc7bedb56..f58b50b56a4 100644 --- a/public/images/pokemon/variant/751.json +++ b/public/images/pokemon/variant/751.json @@ -1,30 +1,33 @@ { "1": { - "8895ac": "ae504b", - "e8e8ea": "ffc8d1", + "5e9cbd": "cc7854", + "39628d": "a14835", + "516a7b": "812b3e", + "32455b": "4c152c", + "aed7ee": "f6e4c2", + "fcfcfd": "fffae3", + "cedf42": "673252", + "dee3f1": "ffc8d1", "9bad34": "4e1f42", "69670e": "3a112f", - "cedf42": "673252", - "fcfcfc": "fcfcfc", - "3c4459": "4c152c", - "aed7ee": "aed7ee", + "8895ac": "ae504b", + "8e99ad": "98433e", "79c4d4": "f3bd8a", - "101010": "101010", - "516a7b": "812b3e", - "5e9cbd": "cc7854" + "3a4055": "4c152c" }, "2": { - "8895ac": "ea9b43", - "e8e8ea": "f1dcc2", + "5e9cbd": "253155", + "39628d": "1c2246", + "516a7b": "ba5c2c", + "32455b": "7b3836", + "fcfcfd": "f0f0f2", + "cedf42": "72add9", + "dee3f1": "f1dcc2", "9bad34": "4980ac", "69670e": "263756", - "cedf42": "72add9", - "fcfcfc": "fcfcfc", - "3c4459": "73312f", - "aed7ee": "aed7ee", + "8895ac": "ea9b43", + "8e99ad": "cd8330", "79c4d4": "3b5373", - "101010": "101010", - "516a7b": "ba5c2c", - "5e9cbd": "253155" + "3a4055": "73312f" } } \ No newline at end of file diff --git a/public/images/pokemon/variant/_masterlist.json b/public/images/pokemon/variant/_masterlist.json index 11578f2e084..87f80fd17c4 100644 --- a/public/images/pokemon/variant/_masterlist.json +++ b/public/images/pokemon/variant/_masterlist.json @@ -1711,8 +1711,8 @@ ], "469": [ 0, - 2, - 2 + 1, + 1 ], "470": [ 1, @@ -4312,6 +4312,11 @@ 1, 1 ], + "99-gigantamax": [ + 0, + 1, + 1 + ], "100": [ 0, 1, @@ -5704,7 +5709,7 @@ ], "469": [ 0, - 2, + 1, 1 ], "470": [ @@ -5720,7 +5725,7 @@ "472": [ 0, 1, - 2 + 1 ], "474": [ 0, @@ -9298,8 +9303,8 @@ ], "970": [ 0, - 2, - 2 + 1, + 1 ], "973": [ 1, @@ -9940,12 +9945,12 @@ ], "672": [ 0, - 2, + 1, 1 ], "673": [ 0, - 2, + 1, 1 ], "677": [ @@ -10806,7 +10811,7 @@ "962": [ 1, 1, - 2 + 1 ], "967": [ 0, @@ -11095,4 +11100,4 @@ 1 ] } -} \ No newline at end of file +} diff --git a/public/images/pokemon/variant/back/469.json b/public/images/pokemon/variant/back/469.json index 21d89cec3d5..d07bfada1c8 100644 --- a/public/images/pokemon/variant/back/469.json +++ b/public/images/pokemon/variant/back/469.json @@ -1,19 +1,34 @@ { + "1": { + "797982": "ba4369", + "52844a": "c59eff", + "f75a52": "5555ab", + "47474f": "6143b3", + "a5adc5": "6e8ce0", + "b53119": "403a91", + "739c63": "dfbaff", + "4a4a52": "942b5a", + "213a19": "534fab", + "ffffff": "c4f2ff", + "733100": "322966", + "c5cee6": "91c2fa", + "3a5a29": "8577e0", + "7b7b84": "3b3687" + }, "2": { - "101010": "101010", "797982": "516d82", - "4a4a52": "2e4a52", - "b53119": "2c8199", + "52844a": "e0a14f", "f75a52": "21b0a6", + "47474f": "4f6b80", "a5adc5": "678ea6", + "b53119": "2c8199", + "739c63": "ebcf7c", + "4a4a52": "2e4a52", "213a19": "70331d", + "ffffff": "c1dede", + "733100": "2e5785", "c5cee6": "97c0c4", "3a5a29": "965a2f", - "ffffff": "c1dede", - "52844a": "e0a14f", - "739c63": "ebcf7c", - "733100": "2e5785", - "7b7b84": "4d687d", - "47474f": "4f6b80" + "7b7b84": "4d687d" } } \ No newline at end of file diff --git a/public/images/pokemon/variant/back/472.json b/public/images/pokemon/variant/back/472.json index a47102ad603..eedf44dc6ec 100644 --- a/public/images/pokemon/variant/back/472.json +++ b/public/images/pokemon/variant/back/472.json @@ -1,15 +1,25 @@ { "1": { "5a63a5": "974d16", - "293163": "401b02", - "9c8cef": "d28b36", - "b5a5ff": "e9bb57", "737bc5": "b86f27", - "ffffff": "ffffff", - "101010": "101010", - "6b6b7b": "48487a", - "424252": "2a2752", + "ad2131": "2a6197", + "9c8cef": "d28b36", "730800": "143262", - "ad2131": "2a6197" + "293163": "401b02", + "424252": "2a2752", + "b5a5ff": "e9bb57", + "6b6b7b": "48487a" + }, + "2": { + "5a63a5": "731e37", + "737bc5": "952b41", + "ad2131": "594b6a", + "9c8cef": "b3404a", + "730800": "262138", + "293163": "43050d", + "424252": "57b6a6", + "b5a5ff": "eb6a64", + "0d0d0d": "1a554f", + "6b6b7b": "81e4c2" } } \ No newline at end of file diff --git a/public/images/pokemon/variant/back/99-gigantamax.json b/public/images/pokemon/variant/back/99-gigantamax.json new file mode 100644 index 00000000000..31fa87f0e8d --- /dev/null +++ b/public/images/pokemon/variant/back/99-gigantamax.json @@ -0,0 +1,32 @@ +{ + "1": { + "c56a5a": "6232a9", + "f6c58b": "9f60d5", + "832908": "3b1c69", + "ee8b4a": "8853bf", + "101010": "101010", + "735210": "534681", + "fdfdfd": "ffdbdb", + "e1d0db": "d5869b", + "ffe6b4": "c3d6ff", + "eebd8b": "9ba3d9", + "b47b5a": "7c72b6", + "b5a6b5": "b65782", + "9a859a": "872d65" + }, + "2": { + "c56a5a": "2d6f9e", + "f6c58b": "75e0e8", + "832908": "22447d", + "ee8b4a": "43adc4", + "101010": "101010", + "735210": "1e1743", + "fdfdfd": "b1f1cf", + "e1d0db": "73c1c2", + "ffe6b4": "464d89", + "eebd8b": "31296f", + "b47b5a": "231b4e", + "b5a6b5": "44778a", + "9a859a": "2f4c6b" + } +} \ No newline at end of file diff --git a/public/images/pokemon/variant/exp/751.json b/public/images/pokemon/variant/exp/751.json index 70af2b6d7f4..fd1955824af 100644 --- a/public/images/pokemon/variant/exp/751.json +++ b/public/images/pokemon/variant/exp/751.json @@ -1,50 +1,33 @@ { "1": { - "85abc8": "ae504b", - "bdd9e5": "ffc8d1", - "acc38c": "a65f86", + "dee3f1": "ffc8d1", + "79c4d4": "f3bd8a", + "fcfcfd": "fffae3", + "39628d": "a14835", + "5e9cbd": "cc7854", + "32455b": "4c152c", + "8895ac": "ae504b", "9bad34": "4e1f42", - "c6dc93": "8a4d6d", - "cedf42": "673252", - "93a079": "6c3064", - "697d89": "8d4358", "69670e": "3a112f", - "8dd0e6": "f8b29c", - "101010": "101010", - "6893a5": "b0546e", - "8da0ac": "d37075", - "8397aa": "8397aa", - "66747a": "c75c5b", - "d3e1e8": "d3e1e8", - "81bbd1": "da826e", - "788a94": "9e4155", - "8ba8b8": "d37075", - "5d6773": "ae504b", - "15222d": "15222d", - "343c43": "812b3e" + "516a7b": "812b3e", + "aed7ee": "f6e4c2", + "cedf42": "673252", + "3a4055": "4c152c", + "8e99ad": "98433e" }, "2": { - "85abc8": "ecaa61", - "bdd9e5": "f1dcc2", - "acc38c": "7196b1", + "dee3f1": "f1dcc2", + "79c4d4": "3b5373", + "fcfcfd": "f0f0f2", + "39628d": "1c2246", + "5e9cbd": "253155", + "32455b": "7b3836", + "8895ac": "ea9b43", "9bad34": "4980ac", - "c6dc93": "90b8d4", - "cedf42": "72add9", - "93a079": "586d7a", - "697d89": "915952", "69670e": "263756", - "8dd0e6": "667386", - "101010": "101010", - "6893a5": "b76545", - "8da0ac": "ecaa61", - "8397aa": "8397aa", - "66747a": "66747a", - "d3e1e8": "d3e1e8", - "81bbd1": "55596f", - "788a94": "c77a4f", - "8ba8b8": "c77a4f", - "5d6773": "ea9b43", - "15222d": "15222d", - "343c43": "ba5c2c" + "516a7b": "ba5c2c", + "cedf42": "72add9", + "3a4055": "73312f", + "8e99ad": "cd8330" } } \ No newline at end of file diff --git a/public/images/pokemon/variant/exp/953.json b/public/images/pokemon/variant/exp/953.json index df4262f3ed2..6f2885be607 100644 --- a/public/images/pokemon/variant/exp/953.json +++ b/public/images/pokemon/variant/exp/953.json @@ -2,79 +2,35 @@ "1": { "5a4d37": "1c1e76", "766348": "323aa5", - "9d8361": "4059bd", "c5b4aa": "d3e6e6", "37332b": "104139", "9e8360": "4059bd", - "f18725": "2e8c19", - "f18625": "2e8c19", - "bb6f2a": "2f7410", "0f0f0f": "0f0f0f", "575243": "18734a", - "b8702d": "2f7410", "777462": "199e46", - "585243": "18734a", - "4f4531": "b29c3e", - "4d4530": "b29c3e", - "aea56b": "f9fba2", - "afa667": "f9fba2", - "a28e85": "c1d8db", - "a28c8c": "c1d8db", - "b64c95": "dedb64", + "afa668": "f9fba2", + "a28c88": "c1d8db", "f2f2f2": "e8eab5", - "b05f8f": "dedb64", - "776348": "323aa5", + "b45492": "dedb64", "f28625": "2e8c19", - "bc6e28": "2f7410", - "bb6e27": "2f7410", - "4d4430": "b29c3e", - "b0a766": "f9fba2", - "a18f8d": "c1d8db", - "a28f86": "c1d8db", - "b74a94": "dedb64", - "9e8461": "4059bd", - "777362": "199e46", - "ba6d27": "2f7410", - "afa567": "f9fba2", - "a18f85": "c1d8db" + "4e4530": "b29c3e", + "ba6e29": "2f7410" }, "2": { "5a4d37": "333e5f", "766348": "8c9fbf", - "9d8361": "dbedec", "c5b4aa": "39cfbc", "37332b": "261031", "9e8360": "dbedec", - "f18725": "4baecd", - "f18625": "4baecd", - "bb6f2a": "4792bd", "0f0f0f": "0f0f0f", "575243": "5e2d72", - "b8702d": "4792bd", "777462": "8358a1", - "585243": "5e2d72", - "4f4531": "534b8c", - "4d4530": "534b8c", - "aea56b": "c9dbac", - "afa667": "c9dbac", - "a28e85": "52b0b0", - "a28c8c": "52b0b0", - "b64c95": "b56c3e", + "afa668": "c9dbac", + "a28e88": "52b0b0", "f2f2f2": "d9c951", - "b05f8f": "b56c3e", - "776348": "8c9fbf", + "b45492": "b56c3e", "f28625": "4baecd", - "bc6e28": "4792bd", - "bb6e27": "4792bd", - "4d4430": "534b8c", - "b0a766": "c9dbac", - "a18f8d": "52b0b0", - "a28f86": "52b0b0", - "b74a94": "b56c3e", - "9e8461": "dbedec", - "777362": "8358a1", - "ba6d27": "4792bd", - "afa567": "c9dbac", - "a18f85": "52b0b0" + "4e4530": "534b8c", + "ba6e29": "4792bd" } -} \ No newline at end of file +} diff --git a/public/images/pokemon/variant/exp/970.json b/public/images/pokemon/variant/exp/970.json new file mode 100644 index 00000000000..7e25970c4bc --- /dev/null +++ b/public/images/pokemon/variant/exp/970.json @@ -0,0 +1,36 @@ +{ + "1": { + "366956": "692915", + "ffff31": "dde4e6", + "5de0aa": "fbce5d", + "5a869c": "bd2646", + "2c369a": "435469", + "4d6076": "6b1933", + "3d464b": "44111b", + "000000": "ffffff", + "41968b": "c57833", + "e0548f": "758eb4", + "fd84ba": "bbe3ee", + "a02c75": "3f4a6f", + "3253d6": "577b81", + "242737": "171c28", + "262b6b": "323b51" + }, + "2": { + "366956": "6d171f", + "ffff31": "c0efff", + "5de0aa": "df543b", + "5a869c": "656b8b", + "2c369a": "e1a47a", + "4d6076": "433e53", + "3d464b": "2d293a", + "000000": "ffffff", + "41968b": "a51414", + "e0548f": "235c65", + "fd84ba": "3e8768", + "a02c75": "1b3842", + "3253d6": "ffedd1", + "242737": "352b2f", + "262b6b": "bb7154" + } +} \ No newline at end of file diff --git a/public/images/pokemon/variant/exp/back/672.json b/public/images/pokemon/variant/exp/back/672.json index 8ee91469917..7282ef5e693 100644 --- a/public/images/pokemon/variant/exp/back/672.json +++ b/public/images/pokemon/variant/exp/back/672.json @@ -1,4 +1,20 @@ { + "1": { + "3d3128": "69112a", + "000000": "000000", + "67615b": "9e2c3d", + "615140": "89431b", + "7e6d5a": "b3743e", + "554538": "642509", + "efeded": "f8e2b7", + "beb8b6": "e3a378", + "0e5d58": "8c6859", + "09a77c": "f8f0e2", + "0d8374": "d2af94", + "c16a3f": "321512", + "c6b379": "552d30", + "a8905c": "4b2525" + }, "2": { "3d3128": "161526", "000000": "000000", @@ -15,4 +31,4 @@ "c6b379": "9f5f9b", "a8905c": "854d87" } -} \ No newline at end of file +} diff --git a/public/images/pokemon/variant/exp/back/672_2.json b/public/images/pokemon/variant/exp/back/672_2.json deleted file mode 100644 index 216c213bc12..00000000000 --- a/public/images/pokemon/variant/exp/back/672_2.json +++ /dev/null @@ -1,965 +0,0 @@ -{ - "textures": [ - { - "image": "672_2.png", - "format": "RGBA8888", - "size": { - "w": 282, - "h": 282 - }, - "scale": 1, - "frames": [ - { - "filename": "0001.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 41, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 41, - "h": 42 - }, - "frame": { - "x": 0, - "y": 0, - "w": 41, - "h": 42 - } - }, - { - "filename": "0002.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 41, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 41, - "h": 42 - }, - "frame": { - "x": 0, - "y": 0, - "w": 41, - "h": 42 - } - }, - { - "filename": "0021.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 41, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 41, - "h": 42 - }, - "frame": { - "x": 0, - "y": 0, - "w": 41, - "h": 42 - } - }, - { - "filename": "0022.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 41, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 41, - "h": 42 - }, - "frame": { - "x": 0, - "y": 0, - "w": 41, - "h": 42 - } - }, - { - "filename": "0023.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 41, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 41, - "h": 42 - }, - "frame": { - "x": 0, - "y": 0, - "w": 41, - "h": 42 - } - }, - { - "filename": "0024.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 41, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 41, - "h": 42 - }, - "frame": { - "x": 0, - "y": 0, - "w": 41, - "h": 42 - } - }, - { - "filename": "0045.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 41, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 41, - "h": 42 - }, - "frame": { - "x": 0, - "y": 0, - "w": 41, - "h": 42 - } - }, - { - "filename": "0003.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 41, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 41, - "h": 42 - }, - "frame": { - "x": 0, - "y": 42, - "w": 41, - "h": 42 - } - }, - { - "filename": "0004.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 41, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 41, - "h": 42 - }, - "frame": { - "x": 0, - "y": 42, - "w": 41, - "h": 42 - } - }, - { - "filename": "0005.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 41, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 41, - "h": 42 - }, - "frame": { - "x": 0, - "y": 84, - "w": 41, - "h": 42 - } - }, - { - "filename": "0006.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 41, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 41, - "h": 42 - }, - "frame": { - "x": 0, - "y": 126, - "w": 41, - "h": 42 - } - }, - { - "filename": "0007.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 41, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 41, - "h": 42 - }, - "frame": { - "x": 0, - "y": 168, - "w": 41, - "h": 42 - } - }, - { - "filename": "0018.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 41, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 41, - "h": 42 - }, - "frame": { - "x": 0, - "y": 210, - "w": 41, - "h": 42 - } - }, - { - "filename": "0019.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 41, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 41, - "h": 42 - }, - "frame": { - "x": 41, - "y": 0, - "w": 41, - "h": 42 - } - }, - { - "filename": "0020.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 41, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 41, - "h": 42 - }, - "frame": { - "x": 82, - "y": 0, - "w": 41, - "h": 42 - } - }, - { - "filename": "0025.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 41, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 41, - "h": 42 - }, - "frame": { - "x": 123, - "y": 0, - "w": 41, - "h": 42 - } - }, - { - "filename": "0026.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 41, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 41, - "h": 42 - }, - "frame": { - "x": 164, - "y": 0, - "w": 41, - "h": 42 - } - }, - { - "filename": "0027.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 41, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 41, - "h": 42 - }, - "frame": { - "x": 205, - "y": 0, - "w": 41, - "h": 42 - } - }, - { - "filename": "0042.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 41, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 41, - "h": 42 - }, - "frame": { - "x": 41, - "y": 42, - "w": 41, - "h": 42 - } - }, - { - "filename": "0043.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 41, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 41, - "h": 42 - }, - "frame": { - "x": 41, - "y": 84, - "w": 41, - "h": 42 - } - }, - { - "filename": "0044.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 41, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 41, - "h": 42 - }, - "frame": { - "x": 41, - "y": 126, - "w": 41, - "h": 42 - } - }, - { - "filename": "0008.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 41, - "h": 41 - }, - "frame": { - "x": 41, - "y": 168, - "w": 41, - "h": 41 - } - }, - { - "filename": "0009.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 41, - "h": 41 - }, - "frame": { - "x": 41, - "y": 209, - "w": 41, - "h": 41 - } - }, - { - "filename": "0010.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 41, - "h": 41 - }, - "frame": { - "x": 82, - "y": 42, - "w": 41, - "h": 41 - } - }, - { - "filename": "0015.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 41, - "h": 41 - }, - "frame": { - "x": 123, - "y": 42, - "w": 41, - "h": 41 - } - }, - { - "filename": "0016.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 41, - "h": 41 - }, - "frame": { - "x": 164, - "y": 42, - "w": 41, - "h": 41 - } - }, - { - "filename": "0017.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 41, - "h": 41 - }, - "frame": { - "x": 205, - "y": 42, - "w": 41, - "h": 41 - } - }, - { - "filename": "0028.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 41, - "h": 41 - }, - "frame": { - "x": 82, - "y": 83, - "w": 41, - "h": 41 - } - }, - { - "filename": "0029.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 41, - "h": 41 - }, - "frame": { - "x": 82, - "y": 124, - "w": 41, - "h": 41 - } - }, - { - "filename": "0040.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 42 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 40, - "h": 42 - }, - "frame": { - "x": 82, - "y": 165, - "w": 40, - "h": 42 - } - }, - { - "filename": "0041.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 42 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 40, - "h": 42 - }, - "frame": { - "x": 82, - "y": 207, - "w": 40, - "h": 42 - } - }, - { - "filename": "0011.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 40, - "h": 41 - }, - "frame": { - "x": 122, - "y": 165, - "w": 40, - "h": 41 - } - }, - { - "filename": "0012.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 40, - "h": 41 - }, - "frame": { - "x": 122, - "y": 206, - "w": 40, - "h": 41 - } - }, - { - "filename": "0013.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 40, - "h": 41 - }, - "frame": { - "x": 123, - "y": 83, - "w": 40, - "h": 41 - } - }, - { - "filename": "0014.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 1, - "w": 40, - "h": 41 - }, - "frame": { - "x": 123, - "y": 124, - "w": 40, - "h": 41 - } - }, - { - "filename": "0037.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 42 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 40, - "h": 41 - }, - "frame": { - "x": 162, - "y": 165, - "w": 40, - "h": 41 - } - }, - { - "filename": "0038.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 42 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 40, - "h": 41 - }, - "frame": { - "x": 162, - "y": 206, - "w": 40, - "h": 41 - } - }, - { - "filename": "0039.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 42 - }, - "spriteSourceSize": { - "x": 1, - "y": 1, - "w": 40, - "h": 41 - }, - "frame": { - "x": 163, - "y": 83, - "w": 40, - "h": 41 - } - }, - { - "filename": "0030.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 41, - "h": 40 - }, - "frame": { - "x": 163, - "y": 124, - "w": 41, - "h": 40 - } - }, - { - "filename": "0031.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 42 - }, - "spriteSourceSize": { - "x": 0, - "y": 2, - "w": 41, - "h": 40 - }, - "frame": { - "x": 203, - "y": 83, - "w": 41, - "h": 40 - } - }, - { - "filename": "0032.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 42 - }, - "spriteSourceSize": { - "x": 1, - "y": 2, - "w": 40, - "h": 40 - }, - "frame": { - "x": 202, - "y": 164, - "w": 40, - "h": 40 - } - }, - { - "filename": "0033.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 42 - }, - "spriteSourceSize": { - "x": 1, - "y": 2, - "w": 40, - "h": 40 - }, - "frame": { - "x": 204, - "y": 123, - "w": 40, - "h": 40 - } - }, - { - "filename": "0034.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 42 - }, - "spriteSourceSize": { - "x": 1, - "y": 2, - "w": 40, - "h": 40 - }, - "frame": { - "x": 242, - "y": 163, - "w": 40, - "h": 40 - } - }, - { - "filename": "0035.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 42 - }, - "spriteSourceSize": { - "x": 1, - "y": 2, - "w": 40, - "h": 40 - }, - "frame": { - "x": 242, - "y": 203, - "w": 40, - "h": 40 - } - }, - { - "filename": "0036.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 41, - "h": 42 - }, - "spriteSourceSize": { - "x": 1, - "y": 2, - "w": 40, - "h": 40 - }, - "frame": { - "x": 202, - "y": 204, - "w": 40, - "h": 40 - } - } - ] - } - ], - "meta": { - "app": "https://www.codeandweb.com/texturepacker", - "version": "3.0", - "smartupdate": "$TexturePacker:SmartUpdate:b36f1de558a8fa8ac8b56a9ba43a0dfd:5fe84a3f522e543bfbbfe0837355266b:2e4767b7cd134fc0ab1bb6e9eee82bc7$" - } -} \ No newline at end of file diff --git a/public/images/pokemon/variant/exp/back/672_2.png b/public/images/pokemon/variant/exp/back/672_2.png deleted file mode 100644 index a51b8cba11f..00000000000 Binary files a/public/images/pokemon/variant/exp/back/672_2.png and /dev/null differ diff --git a/public/images/pokemon/variant/exp/back/673.json b/public/images/pokemon/variant/exp/back/673.json index be9d3af3965..7e5bc69976d 100644 --- a/public/images/pokemon/variant/exp/back/673.json +++ b/public/images/pokemon/variant/exp/back/673.json @@ -1,4 +1,20 @@ { + "1": { + "3d3128": "5a0e24", + "000000": "000000", + "554538": "471405", + "67615b": "8f2837", + "0d835a": "d2af94", + "0e5d58": "8c6352", + "74593a": "61240a", + "09a766": "f8f0e2", + "cabfbb": "e3a378", + "efeded": "f8e2b7", + "a8905c": "9e4e21", + "c6b379": "ce8648", + "ae492a": "321512", + "c16a3f": "552d30" + }, "2": { "3d3128": "121123", "000000": "000000", @@ -15,4 +31,4 @@ "ae492a": "612c6b", "c16a3f": "9f5f9b" } -} \ No newline at end of file +} diff --git a/public/images/pokemon/variant/exp/back/673_2.json b/public/images/pokemon/variant/exp/back/673_2.json deleted file mode 100644 index b9c2b2d54e7..00000000000 --- a/public/images/pokemon/variant/exp/back/673_2.json +++ /dev/null @@ -1,965 +0,0 @@ -{ - "textures": [ - { - "image": "673_2.png", - "format": "RGBA8888", - "size": { - "w": 384, - "h": 384 - }, - "scale": 1, - "frames": [ - { - "filename": "0029.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 62, - "h": 65 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 62, - "h": 65 - }, - "frame": { - "x": 0, - "y": 0, - "w": 62, - "h": 65 - } - }, - { - "filename": "0039.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 62, - "h": 65 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 62, - "h": 65 - }, - "frame": { - "x": 0, - "y": 0, - "w": 62, - "h": 65 - } - }, - { - "filename": "0030.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 62, - "h": 65 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 62, - "h": 65 - }, - "frame": { - "x": 62, - "y": 0, - "w": 62, - "h": 65 - } - }, - { - "filename": "0038.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 62, - "h": 65 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 62, - "h": 65 - }, - "frame": { - "x": 62, - "y": 0, - "w": 62, - "h": 65 - } - }, - { - "filename": "0031.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 62, - "h": 65 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 62, - "h": 65 - }, - "frame": { - "x": 124, - "y": 0, - "w": 62, - "h": 65 - } - }, - { - "filename": "0032.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 62, - "h": 65 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 62, - "h": 65 - }, - "frame": { - "x": 186, - "y": 0, - "w": 62, - "h": 65 - } - }, - { - "filename": "0033.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 62, - "h": 65 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 62, - "h": 65 - }, - "frame": { - "x": 248, - "y": 0, - "w": 62, - "h": 65 - } - }, - { - "filename": "0035.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 62, - "h": 65 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 62, - "h": 65 - }, - "frame": { - "x": 248, - "y": 0, - "w": 62, - "h": 65 - } - }, - { - "filename": "0034.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 62, - "h": 65 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 62, - "h": 65 - }, - "frame": { - "x": 310, - "y": 0, - "w": 62, - "h": 65 - } - }, - { - "filename": "0036.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 62, - "h": 65 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 62, - "h": 65 - }, - "frame": { - "x": 0, - "y": 65, - "w": 62, - "h": 65 - } - }, - { - "filename": "0037.png", - "rotated": false, - "trimmed": false, - "sourceSize": { - "w": 62, - "h": 65 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 62, - "h": 65 - }, - "frame": { - "x": 62, - "y": 65, - "w": 62, - "h": 65 - } - }, - { - "filename": "0028.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 62, - "h": 65 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 61, - "h": 65 - }, - "frame": { - "x": 124, - "y": 65, - "w": 61, - "h": 65 - } - }, - { - "filename": "0040.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 62, - "h": 65 - }, - "spriteSourceSize": { - "x": 0, - "y": 0, - "w": 61, - "h": 65 - }, - "frame": { - "x": 124, - "y": 65, - "w": 61, - "h": 65 - } - }, - { - "filename": "0026.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 62, - "h": 65 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 60, - "h": 65 - }, - "frame": { - "x": 185, - "y": 65, - "w": 60, - "h": 65 - } - }, - { - "filename": "0027.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 62, - "h": 65 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 60, - "h": 65 - }, - "frame": { - "x": 245, - "y": 65, - "w": 60, - "h": 65 - } - }, - { - "filename": "0041.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 62, - "h": 65 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 60, - "h": 65 - }, - "frame": { - "x": 305, - "y": 65, - "w": 60, - "h": 65 - } - }, - { - "filename": "0042.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 62, - "h": 65 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 60, - "h": 65 - }, - "frame": { - "x": 0, - "y": 130, - "w": 60, - "h": 65 - } - }, - { - "filename": "0013.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 62, - "h": 65 - }, - "spriteSourceSize": { - "x": 0, - "y": 3, - "w": 60, - "h": 62 - }, - "frame": { - "x": 60, - "y": 130, - "w": 60, - "h": 62 - } - }, - { - "filename": "0001.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 62, - "h": 65 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 59, - "h": 65 - }, - "frame": { - "x": 120, - "y": 130, - "w": 59, - "h": 65 - } - }, - { - "filename": "0023.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 62, - "h": 65 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 59, - "h": 65 - }, - "frame": { - "x": 120, - "y": 130, - "w": 59, - "h": 65 - } - }, - { - "filename": "0024.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 62, - "h": 65 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 59, - "h": 65 - }, - "frame": { - "x": 120, - "y": 130, - "w": 59, - "h": 65 - } - }, - { - "filename": "0045.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 62, - "h": 65 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 59, - "h": 65 - }, - "frame": { - "x": 120, - "y": 130, - "w": 59, - "h": 65 - } - }, - { - "filename": "0002.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 62, - "h": 65 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 59, - "h": 65 - }, - "frame": { - "x": 60, - "y": 192, - "w": 59, - "h": 65 - } - }, - { - "filename": "0022.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 62, - "h": 65 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 59, - "h": 65 - }, - "frame": { - "x": 60, - "y": 192, - "w": 59, - "h": 65 - } - }, - { - "filename": "0025.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 62, - "h": 65 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 59, - "h": 65 - }, - "frame": { - "x": 60, - "y": 192, - "w": 59, - "h": 65 - } - }, - { - "filename": "0043.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 62, - "h": 65 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 59, - "h": 65 - }, - "frame": { - "x": 60, - "y": 192, - "w": 59, - "h": 65 - } - }, - { - "filename": "0021.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 62, - "h": 65 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 59, - "h": 65 - }, - "frame": { - "x": 0, - "y": 195, - "w": 59, - "h": 65 - } - }, - { - "filename": "0044.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 62, - "h": 65 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 59, - "h": 65 - }, - "frame": { - "x": 179, - "y": 130, - "w": 59, - "h": 65 - } - }, - { - "filename": "0003.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 62, - "h": 65 - }, - "spriteSourceSize": { - "x": 2, - "y": 1, - "w": 58, - "h": 64 - }, - "frame": { - "x": 238, - "y": 130, - "w": 58, - "h": 64 - } - }, - { - "filename": "0004.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 62, - "h": 65 - }, - "spriteSourceSize": { - "x": 2, - "y": 1, - "w": 58, - "h": 64 - }, - "frame": { - "x": 238, - "y": 130, - "w": 58, - "h": 64 - } - }, - { - "filename": "0005.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 62, - "h": 65 - }, - "spriteSourceSize": { - "x": 2, - "y": 1, - "w": 58, - "h": 64 - }, - "frame": { - "x": 238, - "y": 194, - "w": 58, - "h": 64 - } - }, - { - "filename": "0006.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 62, - "h": 65 - }, - "spriteSourceSize": { - "x": 2, - "y": 1, - "w": 58, - "h": 64 - }, - "frame": { - "x": 59, - "y": 257, - "w": 58, - "h": 64 - } - }, - { - "filename": "0019.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 62, - "h": 65 - }, - "spriteSourceSize": { - "x": 2, - "y": 1, - "w": 58, - "h": 64 - }, - "frame": { - "x": 0, - "y": 260, - "w": 58, - "h": 64 - } - }, - { - "filename": "0020.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 62, - "h": 65 - }, - "spriteSourceSize": { - "x": 2, - "y": 1, - "w": 58, - "h": 64 - }, - "frame": { - "x": 117, - "y": 257, - "w": 58, - "h": 64 - } - }, - { - "filename": "0012.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 62, - "h": 65 - }, - "spriteSourceSize": { - "x": 2, - "y": 3, - "w": 58, - "h": 62 - }, - "frame": { - "x": 119, - "y": 195, - "w": 58, - "h": 62 - } - }, - { - "filename": "0018.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 62, - "h": 65 - }, - "spriteSourceSize": { - "x": 3, - "y": 1, - "w": 57, - "h": 64 - }, - "frame": { - "x": 175, - "y": 257, - "w": 57, - "h": 64 - } - }, - { - "filename": "0014.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 62, - "h": 65 - }, - "spriteSourceSize": { - "x": 2, - "y": 3, - "w": 58, - "h": 62 - }, - "frame": { - "x": 177, - "y": 195, - "w": 58, - "h": 62 - } - }, - { - "filename": "0007.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 62, - "h": 65 - }, - "spriteSourceSize": { - "x": 3, - "y": 2, - "w": 57, - "h": 63 - }, - "frame": { - "x": 232, - "y": 258, - "w": 57, - "h": 63 - } - }, - { - "filename": "0008.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 62, - "h": 65 - }, - "spriteSourceSize": { - "x": 3, - "y": 2, - "w": 57, - "h": 63 - }, - "frame": { - "x": 289, - "y": 258, - "w": 57, - "h": 63 - } - }, - { - "filename": "0009.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 62, - "h": 65 - }, - "spriteSourceSize": { - "x": 3, - "y": 2, - "w": 57, - "h": 63 - }, - "frame": { - "x": 296, - "y": 130, - "w": 57, - "h": 63 - } - }, - { - "filename": "0017.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 62, - "h": 65 - }, - "spriteSourceSize": { - "x": 3, - "y": 2, - "w": 57, - "h": 63 - }, - "frame": { - "x": 296, - "y": 193, - "w": 57, - "h": 63 - } - }, - { - "filename": "0015.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 62, - "h": 65 - }, - "spriteSourceSize": { - "x": 4, - "y": 2, - "w": 56, - "h": 63 - }, - "frame": { - "x": 58, - "y": 321, - "w": 56, - "h": 63 - } - }, - { - "filename": "0016.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 62, - "h": 65 - }, - "spriteSourceSize": { - "x": 4, - "y": 2, - "w": 56, - "h": 63 - }, - "frame": { - "x": 114, - "y": 321, - "w": 56, - "h": 63 - } - }, - { - "filename": "0010.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 62, - "h": 65 - }, - "spriteSourceSize": { - "x": 4, - "y": 3, - "w": 56, - "h": 62 - }, - "frame": { - "x": 170, - "y": 321, - "w": 56, - "h": 62 - } - }, - { - "filename": "0011.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 62, - "h": 65 - }, - "spriteSourceSize": { - "x": 4, - "y": 3, - "w": 56, - "h": 62 - }, - "frame": { - "x": 226, - "y": 321, - "w": 56, - "h": 62 - } - } - ] - } - ], - "meta": { - "app": "https://www.codeandweb.com/texturepacker", - "version": "3.0", - "smartupdate": "$TexturePacker:SmartUpdate:05149e465b79b92adcb764d8f903ce8d:523fbed3890bc743f1863e6db3150ddb:5d92dd5d09b0875a1d8f3606df775958$" - } -} \ No newline at end of file diff --git a/public/images/pokemon/variant/exp/back/673_2.png b/public/images/pokemon/variant/exp/back/673_2.png deleted file mode 100644 index be4e73acce4..00000000000 Binary files a/public/images/pokemon/variant/exp/back/673_2.png and /dev/null differ diff --git a/public/images/pokemon/variant/exp/back/962.json b/public/images/pokemon/variant/exp/back/962.json index 860c4515df7..118a0f26768 100644 --- a/public/images/pokemon/variant/exp/back/962.json +++ b/public/images/pokemon/variant/exp/back/962.json @@ -28,5 +28,20 @@ "fffbff": "edf8e6", "7b827b": "6a856a", "a7aba7": "98a798" + }, + "2": { + "342930": "754156", + "0f0f0f": "0f0f0f", + "4a3942": "a5777f", + "937d85": "2f2655", + "b9aaaf": "453863", + "665b60": "211f45", + "efe3e1": "67548a", + "a7aba7": "ddac84", + "fffbff": "f7e5d0", + "e64c62": "aba7a8", + "993e49": "797877", + "501d25": "545151", + "7b827b": "a96c4b" } -} \ No newline at end of file +} diff --git a/public/images/pokemon/variant/exp/back/962_3.json b/public/images/pokemon/variant/exp/back/962_3.json deleted file mode 100644 index 397453d3274..00000000000 --- a/public/images/pokemon/variant/exp/back/962_3.json +++ /dev/null @@ -1,167 +0,0 @@ -{ - "textures": [ - { - "image": "962_3.png", - "format": "RGBA8888", - "size": { - "w": 224, - "h": 224 - }, - "scale": 1, - "frames": [ - { - "filename": "0003.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 101, - "h": 97 - }, - "spriteSourceSize": { - "x": 1, - "y": 0, - "w": 82, - "h": 86 - }, - "frame": { - "x": 0, - "y": 0, - "w": 82, - "h": 86 - } - }, - { - "filename": "0002.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 101, - "h": 97 - }, - "spriteSourceSize": { - "x": 1, - "y": 4, - "w": 87, - "h": 79 - }, - "frame": { - "x": 0, - "y": 86, - "w": 87, - "h": 79 - } - }, - { - "filename": "0001.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 101, - "h": 97 - }, - "spriteSourceSize": { - "x": 1, - "y": 6, - "w": 92, - "h": 74 - }, - "frame": { - "x": 82, - "y": 0, - "w": 92, - "h": 74 - } - }, - { - "filename": "0006.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 101, - "h": 97 - }, - "spriteSourceSize": { - "x": 1, - "y": 38, - "w": 91, - "h": 59 - }, - "frame": { - "x": 0, - "y": 165, - "w": 91, - "h": 59 - } - }, - { - "filename": "0007.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 101, - "h": 97 - }, - "spriteSourceSize": { - "x": 1, - "y": 36, - "w": 91, - "h": 60 - }, - "frame": { - "x": 87, - "y": 74, - "w": 91, - "h": 60 - } - }, - { - "filename": "0004.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 101, - "h": 97 - }, - "spriteSourceSize": { - "x": 0, - "y": 41, - "w": 101, - "h": 41 - }, - "frame": { - "x": 91, - "y": 134, - "w": 101, - "h": 41 - } - }, - { - "filename": "0005.png", - "rotated": false, - "trimmed": true, - "sourceSize": { - "w": 101, - "h": 97 - }, - "spriteSourceSize": { - "x": 0, - "y": 40, - "w": 100, - "h": 38 - }, - "frame": { - "x": 91, - "y": 175, - "w": 100, - "h": 38 - } - } - ] - } - ], - "meta": { - "app": "https://www.codeandweb.com/texturepacker", - "version": "3.0", - "smartupdate": "$TexturePacker:SmartUpdate:ee54d59ae73a6775b5d1d9b10f273445:828dff0b1dc45966e927a7a1419412f2:1e70eb3d02dd5c47565da4b5d26e2400$" - } -} \ No newline at end of file diff --git a/public/images/pokemon/variant/exp/back/962_3.png b/public/images/pokemon/variant/exp/back/962_3.png deleted file mode 100644 index 9356040a0e9..00000000000 Binary files a/public/images/pokemon/variant/exp/back/962_3.png and /dev/null differ diff --git a/public/images/trainer/aether_grunt_f.json b/public/images/trainer/aether_grunt_f.json new file mode 100644 index 00000000000..c43bdae9b2e --- /dev/null +++ b/public/images/trainer/aether_grunt_f.json @@ -0,0 +1,41 @@ +{ + "textures": [ + { + "image": "aether_grunt_f.png", + "format": "RGBA8888", + "size": { + "w": 69, + "h": 69 + }, + "scale": 1, + "frames": [ + { + "filename": "0001.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 80, + "h": 80 + }, + "spriteSourceSize": { + "x": 23, + "y": 10, + "w": 35, + "h": 69 + }, + "frame": { + "x": 0, + "y": 0, + "w": 35, + "h": 69 + } + } + ] + } + ], + "meta": { + "app": "https://www.codeandweb.com/texturepacker", + "version": "3.0", + "smartupdate": "$TexturePacker:SmartUpdate:0c9e77856d3b434e719021572bcb93de:f9c45dc5d67009b134dd1bbc5593f6ec:a694f8828aff21c718e5161e2fd63ade$" + } +} diff --git a/public/images/trainer/aether_grunt_f.png b/public/images/trainer/aether_grunt_f.png new file mode 100644 index 00000000000..b43c5e71a51 Binary files /dev/null and b/public/images/trainer/aether_grunt_f.png differ diff --git a/public/images/trainer/aether_grunt_m.json b/public/images/trainer/aether_grunt_m.json new file mode 100644 index 00000000000..eba00096f8d --- /dev/null +++ b/public/images/trainer/aether_grunt_m.json @@ -0,0 +1,41 @@ +{ + "textures": [ + { + "image": "aether_grunt_m.png", + "format": "RGBA8888", + "size": { + "w": 65, + "h": 65 + }, + "scale": 1, + "frames": [ + { + "filename": "0001.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 80, + "h": 80 + }, + "spriteSourceSize": { + "x": 16, + "y": 14, + "w": 47, + "h": 65 + }, + "frame": { + "x": 0, + "y": 0, + "w": 47, + "h": 65 + } + } + ] + } + ], + "meta": { + "app": "https://www.codeandweb.com/texturepacker", + "version": "3.0", + "smartupdate": "$TexturePacker:SmartUpdate:963887cf29549ad3c123b8055cb4d701:68004c4a6e04c93bd21c26a6f8921f0c:d2241fc11d0fc31b26ecbedae6da74f4$" + } +} diff --git a/public/images/trainer/aether_grunt_m.png b/public/images/trainer/aether_grunt_m.png new file mode 100644 index 00000000000..f4df26ef007 Binary files /dev/null and b/public/images/trainer/aether_grunt_m.png differ diff --git a/public/images/trainer/courtney.png b/public/images/trainer/courtney.png index 991e7ac006f..0efdb615fcd 100644 Binary files a/public/images/trainer/courtney.png and b/public/images/trainer/courtney.png differ diff --git a/public/images/trainer/faba.json b/public/images/trainer/faba.json new file mode 100644 index 00000000000..0e9544e2529 --- /dev/null +++ b/public/images/trainer/faba.json @@ -0,0 +1,41 @@ +{ + "textures": [ + { + "image": "faba.png", + "format": "RGBA8888", + "size": { + "w": 74, + "h": 74 + }, + "scale": 1, + "frames": [ + { + "filename": "0001.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 80, + "h": 80 + }, + "spriteSourceSize": { + "x": 25, + "y": 5, + "w": 31, + "h": 74 + }, + "frame": { + "x": 0, + "y": 0, + "w": 31, + "h": 74 + } + } + ] + } + ], + "meta": { + "app": "https://www.codeandweb.com/texturepacker", + "version": "3.0", + "smartupdate": "$TexturePacker:SmartUpdate:47622708d99a504998950bd9c389a504:fe1c51be191dd9fafb5b6f309c08ae1a:8d64db18930325b8b513740c1d83ce4c$" + } +} diff --git a/public/images/trainer/faba.png b/public/images/trainer/faba.png new file mode 100644 index 00000000000..a7fa0fb4879 Binary files /dev/null and b/public/images/trainer/faba.png differ diff --git a/public/images/trainer/guzma.json b/public/images/trainer/guzma.json new file mode 100644 index 00000000000..c278d68be24 --- /dev/null +++ b/public/images/trainer/guzma.json @@ -0,0 +1,41 @@ +{ + "textures": [ + { + "image": "guzma.png", + "format": "RGBA8888", + "size": { + "w": 58, + "h": 58 + }, + "scale": 1, + "frames": [ + { + "filename": "0001.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 80, + "h": 80 + }, + "spriteSourceSize": { + "x": 21, + "y": 20, + "w": 37, + "h": 58 + }, + "frame": { + "x": 0, + "y": 0, + "w": 37, + "h": 58 + } + } + ] + } + ], + "meta": { + "app": "https://www.codeandweb.com/texturepacker", + "version": "3.0", + "smartupdate": "$TexturePacker:SmartUpdate:c3b08a562a2882d1ca8b5e031e245da9:72a8305e547f091d15abccd2b142e401:3b302c7f9eb6ea81b65bcaeead4a95a9$" + } +} diff --git a/public/images/trainer/guzma.png b/public/images/trainer/guzma.png new file mode 100644 index 00000000000..6afd6f3b34a Binary files /dev/null and b/public/images/trainer/guzma.png differ diff --git a/public/images/trainer/lusamine.json b/public/images/trainer/lusamine.json new file mode 100644 index 00000000000..55a711a21fb --- /dev/null +++ b/public/images/trainer/lusamine.json @@ -0,0 +1,41 @@ +{ + "textures": [ + { + "image": "lusamine.png", + "format": "RGBA8888", + "size": { + "w": 74, + "h": 74 + }, + "scale": 1, + "frames": [ + { + "filename": "0001.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 80, + "h": 80 + }, + "spriteSourceSize": { + "x": 22, + "y": 5, + "w": 36, + "h": 74 + }, + "frame": { + "x": 0, + "y": 0, + "w": 36, + "h": 74 + } + } + ] + } + ], + "meta": { + "app": "https://www.codeandweb.com/texturepacker", + "version": "3.0", + "smartupdate": "$TexturePacker:SmartUpdate:41da3a1299e3831be70016dc91e49313:2413ba06767fb10fdc6fde8cc736c51c:4012333084c529872232c8d052561dc1$" + } +} diff --git a/public/images/trainer/lusamine.png b/public/images/trainer/lusamine.png new file mode 100644 index 00000000000..8b835a2d0be Binary files /dev/null and b/public/images/trainer/lusamine.png differ diff --git a/public/images/trainer/macro_grunt_f.json b/public/images/trainer/macro_grunt_f.json new file mode 100644 index 00000000000..04b30ec4ca5 --- /dev/null +++ b/public/images/trainer/macro_grunt_f.json @@ -0,0 +1,41 @@ +{ + "textures": [ + { + "image": "macro_grunt_f.png", + "format": "RGBA8888", + "size": { + "w": 74, + "h": 74 + }, + "scale": 1, + "frames": [ + { + "filename": "0001.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 80, + "h": 80 + }, + "spriteSourceSize": { + "x": 24, + "y": 5, + "w": 31, + "h": 74 + }, + "frame": { + "x": 0, + "y": 0, + "w": 31, + "h": 74 + } + } + ] + } + ], + "meta": { + "app": "https://www.codeandweb.com/texturepacker", + "version": "3.0", + "smartupdate": "$TexturePacker:SmartUpdate:a015c43d80f8fd1932758e0e2cfcec61:59fc8205ea5ca04295831b4a2eb623ec:30df2ea8e9dac9e95f70534ec43d5ecd$" + } +} diff --git a/public/images/trainer/macro_grunt_f.png b/public/images/trainer/macro_grunt_f.png new file mode 100644 index 00000000000..892299d701e Binary files /dev/null and b/public/images/trainer/macro_grunt_f.png differ diff --git a/public/images/trainer/macro_grunt_m.json b/public/images/trainer/macro_grunt_m.json new file mode 100644 index 00000000000..5357fdb0767 --- /dev/null +++ b/public/images/trainer/macro_grunt_m.json @@ -0,0 +1,41 @@ +{ + "textures": [ + { + "image": "macro_grunt_m.png", + "format": "RGBA8888", + "size": { + "w": 75, + "h": 75 + }, + "scale": 1, + "frames": [ + { + "filename": "0001.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 80, + "h": 80 + }, + "spriteSourceSize": { + "x": 15, + "y": 4, + "w": 48, + "h": 75 + }, + "frame": { + "x": 0, + "y": 0, + "w": 48, + "h": 75 + } + } + ] + } + ], + "meta": { + "app": "https://www.codeandweb.com/texturepacker", + "version": "3.0", + "smartupdate": "$TexturePacker:SmartUpdate:52fccff2a0675b4e10139ddb7067d4cf:10d254175d2d8a9111cce096ffb55fa3:d57016467aa07cafdfaf13e0ff643c1b$" + } +} diff --git a/public/images/trainer/macro_grunt_m.png b/public/images/trainer/macro_grunt_m.png new file mode 100644 index 00000000000..aa6b3607a87 Binary files /dev/null and b/public/images/trainer/macro_grunt_m.png differ diff --git a/public/images/trainer/oleana.json b/public/images/trainer/oleana.json new file mode 100644 index 00000000000..7219b640c38 --- /dev/null +++ b/public/images/trainer/oleana.json @@ -0,0 +1,41 @@ +{ + "textures": [ + { + "image": "oleana.png", + "format": "RGBA8888", + "size": { + "w": 79, + "h": 79 + }, + "scale": 1, + "frames": [ + { + "filename": "0001.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 80, + "h": 80 + }, + "spriteSourceSize": { + "x": 10, + "y": 1, + "w": 53, + "h": 79 + }, + "frame": { + "x": 0, + "y": 0, + "w": 53, + "h": 79 + } + } + ] + } + ], + "meta": { + "app": "https://www.codeandweb.com/texturepacker", + "version": "3.0", + "smartupdate": "$TexturePacker:SmartUpdate:30987a671771127a38491a588c465964:38b28effcfd5c6cbc0f358912a775af3:82e2a1f8afed29be57f6c2473f4c5be2$" + } +} diff --git a/public/images/trainer/oleana.png b/public/images/trainer/oleana.png new file mode 100644 index 00000000000..3252c67ab8e Binary files /dev/null and b/public/images/trainer/oleana.png differ diff --git a/public/images/trainer/plumeria.json b/public/images/trainer/plumeria.json new file mode 100644 index 00000000000..936a8766750 --- /dev/null +++ b/public/images/trainer/plumeria.json @@ -0,0 +1,41 @@ +{ + "textures": [ + { + "image": "plumeria.png", + "format": "RGBA8888", + "size": { + "w": 72, + "h": 72 + }, + "scale": 1, + "frames": [ + { + "filename": "0001.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 80, + "h": 80 + }, + "spriteSourceSize": { + "x": 23, + "y": 7, + "w": 36, + "h": 72 + }, + "frame": { + "x": 0, + "y": 0, + "w": 36, + "h": 72 + } + } + ] + } + ], + "meta": { + "app": "https://www.codeandweb.com/texturepacker", + "version": "3.0", + "smartupdate": "$TexturePacker:SmartUpdate:5527e7b646932d429928b53f055e9d27:c0640510780d2974f9b74a7f8e6b29aa:7bfec029bae78c9d483f59c35b73afad$" + } +} diff --git a/public/images/trainer/plumeria.png b/public/images/trainer/plumeria.png new file mode 100644 index 00000000000..b7382f6afde Binary files /dev/null and b/public/images/trainer/plumeria.png differ diff --git a/public/images/trainer/rose.json b/public/images/trainer/rose.json new file mode 100644 index 00000000000..86869257b63 --- /dev/null +++ b/public/images/trainer/rose.json @@ -0,0 +1,41 @@ +{ + "textures": [ + { + "image": "rose.png", + "format": "RGBA8888", + "size": { + "w": 79, + "h": 79 + }, + "scale": 1, + "frames": [ + { + "filename": "0001.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 80, + "h": 80 + }, + "spriteSourceSize": { + "x": 16, + "y": 1, + "w": 52, + "h": 79 + }, + "frame": { + "x": 0, + "y": 0, + "w": 52, + "h": 79 + } + } + ] + } + ], + "meta": { + "app": "https://www.codeandweb.com/texturepacker", + "version": "3.0", + "smartupdate": "$TexturePacker:SmartUpdate:2b4ccaff7255c7d72661eac13de83ff8:72ee3660cdf470bd67375d355307e19d:8d35b104fc841baa4443581e6cea979e$" + } +} diff --git a/public/images/trainer/rose.png b/public/images/trainer/rose.png new file mode 100644 index 00000000000..f90da7568d4 Binary files /dev/null and b/public/images/trainer/rose.png differ diff --git a/public/images/trainer/skull_grunt_f.json b/public/images/trainer/skull_grunt_f.json new file mode 100644 index 00000000000..182f9300ad5 --- /dev/null +++ b/public/images/trainer/skull_grunt_f.json @@ -0,0 +1,41 @@ +{ + "textures": [ + { + "image": "skull_grunt_f.png", + "format": "RGBA8888", + "size": { + "w": 74, + "h": 74 + }, + "scale": 1, + "frames": [ + { + "filename": "0001.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 31, + "h": 74 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 31, + "h": 74 + }, + "frame": { + "x": 0, + "y": 0, + "w": 31, + "h": 74 + } + } + ] + } + ], + "meta": { + "app": "https://www.codeandweb.com/texturepacker", + "version": "3.0", + "smartupdate": "$TexturePacker:SmartUpdate:71a1f5b1981674c6e81163ac8ea576c3:a5e612d58e5f0a1489e111212baea09d:dd369353af16e4c5eb6547e129dfac18$" + } +} diff --git a/public/images/trainer/skull_grunt_f.png b/public/images/trainer/skull_grunt_f.png new file mode 100644 index 00000000000..fe7834ba4a8 Binary files /dev/null and b/public/images/trainer/skull_grunt_f.png differ diff --git a/public/images/trainer/skull_grunt_m.json b/public/images/trainer/skull_grunt_m.json new file mode 100644 index 00000000000..7c728e9d3fc --- /dev/null +++ b/public/images/trainer/skull_grunt_m.json @@ -0,0 +1,41 @@ +{ + "textures": [ + { + "image": "skull_grunt_m.png", + "format": "RGBA8888", + "size": { + "w": 72, + "h": 72 + }, + "scale": 1, + "frames": [ + { + "filename": "0001.png", + "rotated": false, + "trimmed": false, + "sourceSize": { + "w": 51, + "h": 72 + }, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 51, + "h": 72 + }, + "frame": { + "x": 0, + "y": 0, + "w": 51, + "h": 72 + } + } + ] + } + ], + "meta": { + "app": "https://www.codeandweb.com/texturepacker", + "version": "3.0", + "smartupdate": "$TexturePacker:SmartUpdate:4deb2a68e4d168bb1a40cb5d190a7d1f:be3d7b29f4b544ba51cf907691fef51d:df57ca2c9bf5f80d930306e15a851d4d$" + } +} diff --git a/public/images/trainer/skull_grunt_m.png b/public/images/trainer/skull_grunt_m.png new file mode 100644 index 00000000000..f2b8acba984 Binary files /dev/null and b/public/images/trainer/skull_grunt_m.png differ diff --git a/public/images/ui/hall_of_fame_blue.png b/public/images/ui/hall_of_fame_blue.png new file mode 100644 index 00000000000..87fadf565fd Binary files /dev/null and b/public/images/ui/hall_of_fame_blue.png differ diff --git a/public/images/ui/hall_of_fame_red.png b/public/images/ui/hall_of_fame_red.png new file mode 100644 index 00000000000..5d4d5e41e9c Binary files /dev/null and b/public/images/ui/hall_of_fame_red.png differ diff --git a/public/images/ui/legacy/hall_of_fame_blue.png b/public/images/ui/legacy/hall_of_fame_blue.png new file mode 100644 index 00000000000..87fadf565fd Binary files /dev/null and b/public/images/ui/legacy/hall_of_fame_blue.png differ diff --git a/public/images/ui/legacy/hall_of_fame_red.png b/public/images/ui/legacy/hall_of_fame_red.png new file mode 100644 index 00000000000..5d4d5e41e9c Binary files /dev/null and b/public/images/ui/legacy/hall_of_fame_red.png differ diff --git a/src/@types/i18next.d.ts b/src/@types/i18next.d.ts index a1cf70d91d5..d895659acef 100644 --- a/src/@types/i18next.d.ts +++ b/src/@types/i18next.d.ts @@ -1,9 +1,18 @@ import { type enConfig } from "#app/locales/en/config.js"; +import { TOptions } from "i18next"; +//TODO: this needs to be type properly in the future // Module declared to make referencing keys in the localization files type-safe. declare module "i18next" { interface CustomTypeOptions { defaultNS: "menu", // needed here as well for typedoc resources: typeof enConfig } + + interface TFunction { + ( + key: string | string[], + options?: TOptions & Record + ): string; + } } diff --git a/src/account.ts b/src/account.ts index 6682e3e0b7c..c6d2f85489a 100644 --- a/src/account.ts +++ b/src/account.ts @@ -6,6 +6,7 @@ export interface UserInfo { lastSessionSlot: integer; discordId: string; googleId: string; + hasAdminRole: boolean; } export let loggedInUser: UserInfo | null = null; @@ -13,13 +14,13 @@ export let loggedInUser: UserInfo | null = null; export const clientSessionId = Utils.randomString(32); export function initLoggedInUser(): void { - loggedInUser = { username: "Guest", lastSessionSlot: -1, discordId: "", googleId: ""}; + loggedInUser = { username: "Guest", lastSessionSlot: -1, discordId: "", googleId: "", hasAdminRole: false }; } export function updateUserInfo(): Promise<[boolean, integer]> { return new Promise<[boolean, integer]>(resolve => { if (bypassLogin) { - loggedInUser = { username: "Guest", lastSessionSlot: -1, discordId: "", googleId: "" }; + loggedInUser = { username: "Guest", lastSessionSlot: -1, discordId: "", googleId: "", hasAdminRole: false}; let lastSessionSlot = -1; for (let s = 0; s < 5; s++) { if (localStorage.getItem(`sessionData${s ? s : ""}_${loggedInUser.username}`)) { diff --git a/src/battle-scene.ts b/src/battle-scene.ts index b72e79c866d..2a920864850 100644 --- a/src/battle-scene.ts +++ b/src/battle-scene.ts @@ -49,8 +49,8 @@ import CandyBar from "./ui/candy-bar"; import { Variant, variantData } from "./data/variant"; import { Localizable } from "#app/interfaces/locales"; import Overrides from "#app/overrides"; -import {InputsController} from "./inputs-controller"; -import {UiInputs} from "./ui-inputs"; +import { InputsController } from "./inputs-controller"; +import { UiInputs } from "./ui-inputs"; import { NewArenaEvent } from "./events/battle-scene"; import { ArenaFlyout } from "./ui/arena-flyout"; import { EaseType } from "#enums/ease-type"; @@ -65,7 +65,7 @@ import { Species } from "#enums/species"; import { UiTheme } from "#enums/ui-theme"; import { TimedEventManager } from "#app/timed-event-manager.js"; import i18next from "i18next"; -import {TrainerType} from "#enums/trainer-type"; +import { TrainerType } from "#enums/trainer-type"; import { battleSpecDialogue } from "./data/dialogue"; import { LoadingScene } from "./loading-scene"; import { LevelCapPhase } from "./phases/level-cap-phase"; @@ -83,6 +83,7 @@ import { SwitchPhase } from "./phases/switch-phase"; import { TitlePhase } from "./phases/title-phase"; import { ToggleDoublePositionPhase } from "./phases/toggle-double-position-phase"; import { TurnInitPhase } from "./phases/turn-init-phase"; +import { ShopCursorTarget } from "./enums/shop-cursor-target"; export const bypassLogin = import.meta.env.VITE_BYPASS_LOGIN === "1"; @@ -123,10 +124,13 @@ export default class BattleScene extends SceneBase { public lastSavePlayTime: integer | null = null; public masterVolume: number = 0.5; public bgmVolume: number = 1; + public fieldVolume: number = 1; public seVolume: number = 1; + public uiVolume: number = 1; public gameSpeed: integer = 1; public damageNumbersMode: integer = 0; public reroll: boolean = false; + public shopCursorTarget: number = ShopCursorTarget.CHECK_TEAM; public showMovesetFlyout: boolean = true; public showArenaFlyout: boolean = true; public showTimeOfDayWidget: boolean = true; @@ -840,14 +844,13 @@ export default class BattleScene extends SceneBase { if (Overrides.OPP_SPECIES_OVERRIDE) { species = getPokemonSpecies(Overrides.OPP_SPECIES_OVERRIDE); } - const pokemon = new EnemyPokemon(this, species, level, trainerSlot, boss, dataSource); + if (Overrides.OPP_LEVEL_OVERRIDE !== 0) { - pokemon.level = Overrides.OPP_LEVEL_OVERRIDE; + level = Overrides.OPP_LEVEL_OVERRIDE; } - if (Overrides.OPP_GENDER_OVERRIDE !== null) { - pokemon.gender = Overrides.OPP_GENDER_OVERRIDE; - } + const pokemon = new EnemyPokemon(this, species, level, trainerSlot, boss, dataSource); + overrideModifiers(this, false); overrideHeldItems(this, pokemon, false); if (boss && !dataSource) { @@ -1100,7 +1103,7 @@ export default class BattleScene extends SceneBase { } else if (trainerConfigs[trainerType].hasDouble) { const doubleChance = new Utils.IntegerHolder(newWaveIndex % 10 === 0 ? 32 : 8); this.applyModifiers(DoubleBattleChanceBoosterModifier, true, doubleChance); - playerField.forEach(p => applyAbAttrs(DoubleBattleChanceAbAttr, p, null, doubleChance)); + playerField.forEach(p => applyAbAttrs(DoubleBattleChanceAbAttr, p, null, false, doubleChance)); doubleTrainer = !Utils.randSeedInt(doubleChance.value); // Add a check that special trainers can't be double except for tate and liza - they should use the normal double chance if (trainerConfigs[trainerType].trainerTypeDouble && ![ TrainerType.TATE, TrainerType.LIZA ].includes(trainerType)) { @@ -1116,7 +1119,7 @@ export default class BattleScene extends SceneBase { if (newBattleType === BattleType.WILD && !this.gameMode.isWaveFinal(newWaveIndex)) { const doubleChance = new Utils.IntegerHolder(newWaveIndex % 10 === 0 ? 32 : 8); this.applyModifiers(DoubleBattleChanceBoosterModifier, true, doubleChance); - playerField.forEach(p => applyAbAttrs(DoubleBattleChanceAbAttr, p, null, doubleChance)); + playerField.forEach(p => applyAbAttrs(DoubleBattleChanceAbAttr, p, null, false, doubleChance)); newDouble = !Utils.randSeedInt(doubleChance.value); } else if (newBattleType === BattleType.TRAINER) { newDouble = newTrainer?.variant === TrainerVariant.DOUBLE; @@ -1518,7 +1521,7 @@ export default class BattleScene extends SceneBase { return; } const formattedMoney = Utils.formatMoney(this.moneyFormat, this.money); - this.moneyText.setText(`₽${formattedMoney}`); + this.moneyText.setText(i18next.t("battleScene:moneyOwned", { formattedMoney })); this.fieldUI.moveAbove(this.moneyText, this.luckText); if (forceVisible) { this.moneyText.setVisible(true); @@ -1627,7 +1630,7 @@ export default class BattleScene extends SceneBase { randomSpecies(waveIndex: integer, level: integer, fromArenaPool?: boolean, speciesFilter?: PokemonSpeciesFilter, filterAllEvolutions?: boolean): PokemonSpecies { if (fromArenaPool) { - return this.arena.randomSpecies(waveIndex, level, undefined , getPartyLuckValue(this.party)); + return this.arena.randomSpecies(waveIndex, level, undefined, getPartyLuckValue(this.party)); } const filteredSpecies = speciesFilter ? [...new Set(allSpecies.filter(s => s.isCatchable()).filter(speciesFilter).map(s => { if (!filterAllEvolutions) { @@ -1746,8 +1749,26 @@ export default class BattleScene extends SceneBase { updateSoundVolume(): void { if (this.sound) { - for (const sound of this.sound.getAllPlaying()) { - (sound as AnySound).setVolume(this.masterVolume * (this.bgmCache.has(sound.key) ? this.bgmVolume : this.seVolume)); + for (const sound of this.sound.getAllPlaying() as AnySound[]) { + if (this.bgmCache.has(sound.key)) { + sound.setVolume(this.masterVolume * this.bgmVolume); + } else { + const soundDetails = sound.key.split("/"); + switch (soundDetails[0]) { + + case "battle_anims": + case "cry": + if (soundDetails[1].startsWith("PRSFX- ")) { + sound.setVolume(this.masterVolume*this.fieldVolume*0.5); + } else { + sound.setVolume(this.masterVolume*this.fieldVolume); + } + break; + case "se": + case "ui": + sound.setVolume(this.masterVolume*this.seVolume); + } + } } } } @@ -1766,25 +1787,42 @@ export default class BattleScene extends SceneBase { } playSound(sound: string | AnySound, config?: object): AnySound { - if (config) { - if (config.hasOwnProperty("volume")) { - config["volume"] *= this.masterVolume * this.seVolume; - } else { + const key = typeof sound === "string" ? sound : sound.key; + config = config ?? {}; + try { + const keyDetails = key.split("/"); + switch (keyDetails[0]) { + case "level_up_fanfare": + case "item_fanfare": + case "minor_fanfare": + case "heal": + case "evolution": + case "evolution_fanfare": + // These sounds are loaded in as BGM, but played as sound effects + // When these sounds are updated in updateVolume(), they are treated as BGM however because they are placed in the BGM Cache through being called by playSoundWithoutBGM() + config["volume"] = this.masterVolume * this.bgmVolume; + break; + case "battle_anims": + case "cry": + config["volume"] = this.masterVolume * this.fieldVolume; + //PRSFX sound files are unusually loud + if (keyDetails[1].startsWith("PRSFX- ")) { + config["volume"] *= 0.5; + } + break; + case "ui": + //As of, right now this applies to the "select", "menu_open", "error" sound effects + config["volume"] = this.masterVolume * this.uiVolume; + break; + case "se": config["volume"] = this.masterVolume * this.seVolume; + break; } - } else { - config = { volume: this.masterVolume * this.seVolume }; - } - // PRSFX sounds are mixed too loud - if ((typeof sound === "string" ? sound : sound.key).startsWith("PRSFX- ")) { - config["volume"] *= 0.5; - } - if (typeof sound === "string") { - this.sound.play(sound, config); - return this.sound.get(sound) as AnySound; - } else { - sound.play(config); - return sound; + this.sound.play(key, config); + return this.sound.get(key) as AnySound; + } catch { + console.log(`${key} not found`); + return sound as AnySound; } } @@ -1895,6 +1933,8 @@ export default class BattleScene extends SceneBase { return 22.770; case "battle_legendary_dia_pal": //ORAS Dialga & Palkia Battle return 16.009; + case "battle_legendary_origin_forme": //LA Origin Dialga & Palkia Battle + return 18.961; case "battle_legendary_giratina": //ORAS Giratina Battle return 10.451; case "battle_legendary_arceus": //HGSS Arceus Battle @@ -1923,6 +1963,8 @@ export default class BattleScene extends SceneBase { return 12.503; case "battle_legendary_calyrex": //SWSH Calyrex Battle return 50.641; + case "battle_legendary_riders": //SWSH Ice & Shadow Rider Calyrex Battle + return 18.155; case "battle_legendary_birds_galar": //SWSH Galarian Legendary Birds Battle return 0.175; case "battle_legendary_ruinous": //SV Treasures of Ruin Battle @@ -1961,6 +2003,18 @@ export default class BattleScene extends SceneBase { return 12.974; case "battle_flare_grunt": //XY Team Flare Battle return 4.228; + case "battle_aether_grunt": // SM Aether Foundation Battle + return 16.00; + case "battle_skull_grunt": // SM Team Skull Battle + return 20.87; + case "battle_macro_grunt": // SWSH Trainer Battle + return 11.56; + case "battle_galactic_admin": //BDSP Team Galactic Admin Battle + return 11.997; + case "battle_skull_admin": //SM Team Skull Admin Battle + return 15.463; + case "battle_oleana": //SWSH Oleana Battle + return 14.110; case "battle_rocket_boss": //USUM Giovanni Battle return 9.115; case "battle_aqua_magma_boss": //ORAS Archie & Maxie Battle @@ -1971,6 +2025,12 @@ export default class BattleScene extends SceneBase { return 25.624; case "battle_flare_boss": //XY Lysandre Battle return 8.085; + case "battle_aether_boss": //SM Lusamine Battle + return 11.33; + case "battle_skull_boss": //SM Guzma Battle + return 13.13; + case "battle_macro_boss": //SWSH Rose Battle + return 11.42; } return 0; @@ -2136,7 +2196,7 @@ export default class BattleScene extends SceneBase { pushMovePhase(movePhase: MovePhase, priorityOverride?: integer): void { const movePriority = new Utils.IntegerHolder(priorityOverride !== undefined ? priorityOverride : movePhase.move.getMove().priority); - applyAbAttrs(ChangeMovePriorityAbAttr, movePhase.pokemon, null, movePhase.move.getMove(), movePriority); + applyAbAttrs(ChangeMovePriorityAbAttr, movePhase.pokemon, null, false, movePhase.move.getMove(), movePriority); const lowerPriorityPhase = this.phaseQueue.find(p => p instanceof MovePhase && p.move.getMove().priority < movePriority.value); if (lowerPriorityPhase) { this.phaseQueue.splice(this.phaseQueue.indexOf(lowerPriorityPhase), 0, movePhase); @@ -2666,7 +2726,8 @@ export default class BattleScene extends SceneBase { wave: this.currentBattle?.waveIndex || 0, party: this.party ? this.party.map(p => { return { name: p.name, level: p.level }; - }) : [] + }) : [], + modeChain: this.ui?.getModeChain() ?? [], }; (window as any).gameInfo = gameInfo; } diff --git a/src/battle.ts b/src/battle.ts index a82f1a3db9b..f9afbf09604 100644 --- a/src/battle.ts +++ b/src/battle.ts @@ -275,7 +275,12 @@ export default class Battle { return "battle_legendary_sinnoh"; } if (pokemon.species.speciesId === Species.DIALGA || pokemon.species.speciesId === Species.PALKIA) { - return "battle_legendary_dia_pal"; + if (pokemon.getFormKey() === "") { + return "battle_legendary_dia_pal"; + } + if (pokemon.getFormKey() === "origin") { + return "battle_legendary_origin_forme"; + } } if (pokemon.species.speciesId === Species.GIRATINA) { return "battle_legendary_giratina"; @@ -319,7 +324,12 @@ export default class Battle { return "battle_legendary_glas_spec"; } if (pokemon.species.speciesId === Species.CALYREX) { - return "battle_legendary_calyrex"; + if (pokemon.getFormKey() === "") { + return "battle_legendary_calyrex"; + } + if (pokemon.getFormKey() === "ice" || pokemon.getFormKey() === "shadow") { + return "battle_legendary_riders"; + } } if (pokemon.species.speciesId === Species.GALAR_ARTICUNO || pokemon.species.speciesId === Species.GALAR_ZAPDOS || pokemon.species.speciesId === Species.GALAR_MOLTRES) { return "battle_legendary_birds_galar"; @@ -485,27 +495,27 @@ export const classicFixedBattles: FixedBattleConfigs = { [25]: new FixedBattleConfig().setBattleType(BattleType.TRAINER) .setGetTrainerFunc(scene => new Trainer(scene, TrainerType.RIVAL_2, scene.gameData.gender === PlayerGender.MALE ? TrainerVariant.FEMALE : TrainerVariant.DEFAULT)), [35]: new FixedBattleConfig().setBattleType(BattleType.TRAINER) - .setGetTrainerFunc(getRandomTrainerFunc([ TrainerType.ROCKET_GRUNT, TrainerType.MAGMA_GRUNT, TrainerType.AQUA_GRUNT, TrainerType.GALACTIC_GRUNT, TrainerType.PLASMA_GRUNT, TrainerType.FLARE_GRUNT ], true)), + .setGetTrainerFunc(getRandomTrainerFunc([ TrainerType.ROCKET_GRUNT, TrainerType.MAGMA_GRUNT, TrainerType.AQUA_GRUNT, TrainerType.GALACTIC_GRUNT, TrainerType.PLASMA_GRUNT, TrainerType.FLARE_GRUNT, TrainerType.AETHER_GRUNT, TrainerType.SKULL_GRUNT, TrainerType.MACRO_GRUNT ], true)), [55]: new FixedBattleConfig().setBattleType(BattleType.TRAINER) .setGetTrainerFunc(scene => new Trainer(scene, TrainerType.RIVAL_3, scene.gameData.gender === PlayerGender.MALE ? TrainerVariant.FEMALE : TrainerVariant.DEFAULT)), [62]: new FixedBattleConfig().setBattleType(BattleType.TRAINER).setSeedOffsetWave(35) - .setGetTrainerFunc(getRandomTrainerFunc([ TrainerType.ROCKET_GRUNT, TrainerType.MAGMA_GRUNT, TrainerType.AQUA_GRUNT, TrainerType.GALACTIC_GRUNT, TrainerType.PLASMA_GRUNT, TrainerType.FLARE_GRUNT ], true)), + .setGetTrainerFunc(getRandomTrainerFunc([ TrainerType.ROCKET_GRUNT, TrainerType.MAGMA_GRUNT, TrainerType.AQUA_GRUNT, TrainerType.GALACTIC_GRUNT, TrainerType.PLASMA_GRUNT, TrainerType.FLARE_GRUNT, TrainerType.AETHER_GRUNT, TrainerType.SKULL_GRUNT, TrainerType.MACRO_GRUNT ], true)), [64]: new FixedBattleConfig().setBattleType(BattleType.TRAINER).setSeedOffsetWave(35) - .setGetTrainerFunc(getRandomTrainerFunc([ TrainerType.ROCKET_GRUNT, TrainerType.MAGMA_GRUNT, TrainerType.AQUA_GRUNT, TrainerType.GALACTIC_GRUNT, TrainerType.PLASMA_GRUNT, TrainerType.FLARE_GRUNT ], true)), + .setGetTrainerFunc(getRandomTrainerFunc([ TrainerType.ROCKET_GRUNT, TrainerType.MAGMA_GRUNT, TrainerType.AQUA_GRUNT, TrainerType.GALACTIC_GRUNT, TrainerType.PLASMA_GRUNT, TrainerType.FLARE_GRUNT, TrainerType.AETHER_GRUNT, TrainerType.SKULL_GRUNT, TrainerType.MACRO_GRUNT ], true)), [66]: new FixedBattleConfig().setBattleType(BattleType.TRAINER).setSeedOffsetWave(35) - .setGetTrainerFunc(getRandomTrainerFunc([[ TrainerType.ARCHER, TrainerType.ARIANA, TrainerType.PROTON, TrainerType.PETREL ], [ TrainerType.TABITHA, TrainerType.COURTNEY ], [ TrainerType.MATT, TrainerType.SHELLY ], [ TrainerType.JUPITER, TrainerType.MARS, TrainerType.SATURN ], [ TrainerType.ZINZOLIN, TrainerType.ROOD ], [ TrainerType.XEROSIC, TrainerType.BRYONY ] ], true)), + .setGetTrainerFunc(getRandomTrainerFunc([[ TrainerType.ARCHER, TrainerType.ARIANA, TrainerType.PROTON, TrainerType.PETREL ], [ TrainerType.TABITHA, TrainerType.COURTNEY ], [ TrainerType.MATT, TrainerType.SHELLY ], [ TrainerType.JUPITER, TrainerType.MARS, TrainerType.SATURN ], [ TrainerType.ZINZOLIN, TrainerType.ROOD ], [ TrainerType.XEROSIC, TrainerType.BRYONY ], TrainerType.FABA, TrainerType.PLUMERIA, TrainerType.OLEANA ], true)), [95]: new FixedBattleConfig().setBattleType(BattleType.TRAINER) .setGetTrainerFunc(scene => new Trainer(scene, TrainerType.RIVAL_4, scene.gameData.gender === PlayerGender.MALE ? TrainerVariant.FEMALE : TrainerVariant.DEFAULT)), [112]: new FixedBattleConfig().setBattleType(BattleType.TRAINER).setSeedOffsetWave(35) - .setGetTrainerFunc(getRandomTrainerFunc([ TrainerType.ROCKET_GRUNT, TrainerType.MAGMA_GRUNT, TrainerType.AQUA_GRUNT, TrainerType.GALACTIC_GRUNT, TrainerType.PLASMA_GRUNT, TrainerType.FLARE_GRUNT ], true)), + .setGetTrainerFunc(getRandomTrainerFunc([ TrainerType.ROCKET_GRUNT, TrainerType.MAGMA_GRUNT, TrainerType.AQUA_GRUNT, TrainerType.GALACTIC_GRUNT, TrainerType.PLASMA_GRUNT, TrainerType.FLARE_GRUNT, TrainerType.AETHER_GRUNT, TrainerType.SKULL_GRUNT, TrainerType.MACRO_GRUNT ], true)), [114]: new FixedBattleConfig().setBattleType(BattleType.TRAINER).setSeedOffsetWave(35) - .setGetTrainerFunc(getRandomTrainerFunc([[ TrainerType.ARCHER, TrainerType.ARIANA, TrainerType.PROTON, TrainerType.PETREL ], [ TrainerType.TABITHA, TrainerType.COURTNEY ], [ TrainerType.MATT, TrainerType.SHELLY ], [ TrainerType.JUPITER, TrainerType.MARS, TrainerType.SATURN ], [ TrainerType.ZINZOLIN, TrainerType.ROOD ], [ TrainerType.XEROSIC, TrainerType.BRYONY ] ], true,1)), + .setGetTrainerFunc(getRandomTrainerFunc([[ TrainerType.ARCHER, TrainerType.ARIANA, TrainerType.PROTON, TrainerType.PETREL ], [ TrainerType.TABITHA, TrainerType.COURTNEY ], [ TrainerType.MATT, TrainerType.SHELLY ], [ TrainerType.JUPITER, TrainerType.MARS, TrainerType.SATURN ], [ TrainerType.ZINZOLIN, TrainerType.ROOD ], [ TrainerType.XEROSIC, TrainerType.BRYONY ], TrainerType.FABA, TrainerType.PLUMERIA, TrainerType.OLEANA ], true, 1)), [115]: new FixedBattleConfig().setBattleType(BattleType.TRAINER).setSeedOffsetWave(35) - .setGetTrainerFunc(getRandomTrainerFunc([ TrainerType.ROCKET_BOSS_GIOVANNI_1, TrainerType.MAXIE, TrainerType.ARCHIE, TrainerType.CYRUS, TrainerType.GHETSIS, TrainerType.LYSANDRE ])), + .setGetTrainerFunc(getRandomTrainerFunc([ TrainerType.ROCKET_BOSS_GIOVANNI_1, TrainerType.MAXIE, TrainerType.ARCHIE, TrainerType.CYRUS, TrainerType.GHETSIS, TrainerType.LYSANDRE, TrainerType.LUSAMINE, TrainerType.GUZMA, TrainerType.ROSE ])), [145]: new FixedBattleConfig().setBattleType(BattleType.TRAINER) .setGetTrainerFunc(scene => new Trainer(scene, TrainerType.RIVAL_5, scene.gameData.gender === PlayerGender.MALE ? TrainerVariant.FEMALE : TrainerVariant.DEFAULT)), - [165]: new FixedBattleConfig().setBattleType(BattleType.TRAINER).setSeedOffsetWave(35) - .setGetTrainerFunc(getRandomTrainerFunc([ TrainerType.ROCKET_BOSS_GIOVANNI_2, TrainerType.MAXIE_2, TrainerType.ARCHIE_2, TrainerType.CYRUS_2, TrainerType.GHETSIS_2, TrainerType.LYSANDRE_2 ])), + [165]: new FixedBattleConfig().setBattleType(BattleType.TRAINER).setSeedOffsetWave(35) + .setGetTrainerFunc(getRandomTrainerFunc([ TrainerType.ROCKET_BOSS_GIOVANNI_2, TrainerType.MAXIE_2, TrainerType.ARCHIE_2, TrainerType.CYRUS_2, TrainerType.GHETSIS_2, TrainerType.LYSANDRE_2, TrainerType.LUSAMINE_2, TrainerType.GUZMA_2, TrainerType.ROSE_2 ])), [182]: new FixedBattleConfig().setBattleType(BattleType.TRAINER) .setGetTrainerFunc(getRandomTrainerFunc([ TrainerType.LORELEI, TrainerType.WILL, TrainerType.SIDNEY, TrainerType.AARON, TrainerType.SHAUNTAL, TrainerType.MALVA, [ TrainerType.HALA, TrainerType.MOLAYNE ], TrainerType.MARNIE_ELITE, TrainerType.RIKA, TrainerType.CRISPIN ])), [184]: new FixedBattleConfig().setBattleType(BattleType.TRAINER).setSeedOffsetWave(182) diff --git a/src/data/ability.ts b/src/data/ability.ts index 8e020849a17..8b7a7772efe 100644 --- a/src/data/ability.ts +++ b/src/data/ability.ts @@ -8,12 +8,12 @@ import { Weather, WeatherType } from "./weather"; import { BattlerTag, GroundedTag, GulpMissileTag, SemiInvulnerableTag } from "./battler-tags"; import { StatusEffect, getNonVolatileStatusEffects, getStatusEffectDescriptor, getStatusEffectHealText } from "./status-effect"; import { Gender } from "./gender"; -import Move, { AttackMove, MoveCategory, MoveFlags, MoveTarget, FlinchAttr, OneHitKOAttr, HitHealAttr, allMoves, StatusMove, SelfStatusMove, VariablePowerAttr, applyMoveAttrs, IncrementMovePriorityAttr, VariableMoveTypeAttr, RandomMovesetMoveAttr, RandomMoveAttr, NaturePowerAttr, CopyMoveAttr, MoveAttr, MultiHitAttr, ChargeAttr, SacrificialAttr, SacrificialAttrOnHit } from "./move"; +import Move, { AttackMove, MoveCategory, MoveFlags, MoveTarget, FlinchAttr, OneHitKOAttr, HitHealAttr, allMoves, StatusMove, SelfStatusMove, VariablePowerAttr, applyMoveAttrs, IncrementMovePriorityAttr, VariableMoveTypeAttr, RandomMovesetMoveAttr, RandomMoveAttr, NaturePowerAttr, CopyMoveAttr, MoveAttr, MultiHitAttr, ChargeAttr, SacrificialAttr, SacrificialAttrOnHit, NeutralDamageAgainstFlyingTypeMultiplierAttr } from "./move"; import { ArenaTagSide, ArenaTrapTag } from "./arena-tag"; import { Stat, getStatName } from "./pokemon-stat"; import { BerryModifier, PokemonHeldItemModifier } from "../modifier/modifier"; import { TerrainType } from "./terrain"; -import { SpeciesFormChangeManualTrigger } from "./pokemon-forms"; +import { SpeciesFormChangeManualTrigger, SpeciesFormChangeRevertWeatherFormTrigger, SpeciesFormChangeWeatherTrigger } from "./pokemon-forms"; import i18next from "i18next"; import { Localizable } from "#app/interfaces/locales.js"; import { Command } from "../ui/command-ui-handler"; @@ -25,10 +25,11 @@ import { ArenaTagType } from "#enums/arena-tag-type"; import { BattlerTagType } from "#enums/battler-tag-type"; import { Moves } from "#enums/moves"; import { Species } from "#enums/species"; -import { MovePhase } from "#app/phases/move-phase.js"; -import { PokemonHealPhase } from "#app/phases/pokemon-heal-phase.js"; -import { ShowAbilityPhase } from "#app/phases/show-ability-phase.js"; -import { StatChangePhase } from "#app/phases/stat-change-phase.js"; +import { MovePhase } from "#app/phases/move-phase"; +import { PokemonHealPhase } from "#app/phases/pokemon-heal-phase"; +import { ShowAbilityPhase } from "#app/phases/show-ability-phase"; +import { StatChangePhase } from "#app/phases/stat-change-phase"; +import BattleScene from "#app/battle-scene"; export class Ability implements Localizable { public id: Abilities; @@ -135,7 +136,7 @@ export abstract class AbAttr { this.showAbility = showAbility; } - apply(pokemon: Pokemon, passive: boolean, cancelled: Utils.BooleanHolder | null, args: any[]): boolean | Promise { + apply(pokemon: Pokemon, passive: boolean, simulated: boolean, cancelled: Utils.BooleanHolder | null, args: any[]): boolean | Promise { return false; } @@ -154,7 +155,7 @@ export abstract class AbAttr { } export class BlockRecoilDamageAttr extends AbAttr { - apply(pokemon: Pokemon, passive: boolean, cancelled: Utils.BooleanHolder, args: any[]): boolean { + apply(pokemon: Pokemon, passive: boolean, simulated: boolean, cancelled: Utils.BooleanHolder, args: any[]): boolean { cancelled.value = true; return true; @@ -170,7 +171,7 @@ export class DoubleBattleChanceAbAttr extends AbAttr { super(false); } - apply(pokemon: Pokemon, passive: boolean, cancelled: Utils.BooleanHolder, args: any[]): boolean { + apply(pokemon: Pokemon, passive: boolean, simulated: boolean, cancelled: Utils.BooleanHolder, args: any[]): boolean { const doubleChance = (args[0] as Utils.IntegerHolder); doubleChance.value = Math.max(doubleChance.value / 2, 1); return true; @@ -178,7 +179,7 @@ export class DoubleBattleChanceAbAttr extends AbAttr { } export class PostBattleInitAbAttr extends AbAttr { - applyPostBattleInit(pokemon: Pokemon, passive: boolean, args: any[]): boolean | Promise { + applyPostBattleInit(pokemon: Pokemon, passive: boolean, simulated: boolean, args: any[]): boolean | Promise { return false; } } @@ -192,9 +193,9 @@ export class PostBattleInitFormChangeAbAttr extends PostBattleInitAbAttr { this.formFunc = formFunc; } - applyPostBattleInit(pokemon: Pokemon, passive: boolean, args: any[]): boolean { + applyPostBattleInit(pokemon: Pokemon, passive: boolean, simulated: boolean, args: any[]): boolean { const formIndex = this.formFunc(pokemon); - if (formIndex !== pokemon.formIndex) { + if (formIndex !== pokemon.formIndex && !simulated) { return pokemon.scene.triggerPokemonFormChange(pokemon, SpeciesFormChangeManualTrigger, false); } @@ -217,22 +218,24 @@ export class PostBattleInitStatChangeAbAttr extends PostBattleInitAbAttr { this.selfTarget = !!selfTarget; } - applyPostBattleInit(pokemon: Pokemon, passive: boolean, args: any[]): boolean { + applyPostBattleInit(pokemon: Pokemon, passive: boolean, simulated: boolean, args: any[]): boolean { const statChangePhases: StatChangePhase[] = []; - if (this.selfTarget) { - statChangePhases.push(new StatChangePhase(pokemon.scene, pokemon.getBattlerIndex(), true, this.stats, this.levels)); - } else { - for (const opponent of pokemon.getOpponents()) { - statChangePhases.push(new StatChangePhase(pokemon.scene, opponent.getBattlerIndex(), false, this.stats, this.levels)); + if (!simulated) { + if (this.selfTarget) { + statChangePhases.push(new StatChangePhase(pokemon.scene, pokemon.getBattlerIndex(), true, this.stats, this.levels)); + } else { + for (const opponent of pokemon.getOpponents()) { + statChangePhases.push(new StatChangePhase(pokemon.scene, opponent.getBattlerIndex(), false, this.stats, this.levels)); + } } - } - for (const statChangePhase of statChangePhases) { - if (!this.selfTarget && !statChangePhase.getPokemon()?.summonData) { - pokemon.scene.pushPhase(statChangePhase); - } else { // TODO: This causes the ability bar to be shown at the wrong time - pokemon.scene.unshiftPhase(statChangePhase); + for (const statChangePhase of statChangePhases) { + if (!this.selfTarget && !statChangePhase.getPokemon()?.summonData) { + pokemon.scene.pushPhase(statChangePhase); + } else { // TODO: This causes the ability bar to be shown at the wrong time + pokemon.scene.unshiftPhase(statChangePhase); + } } } @@ -243,17 +246,17 @@ export class PostBattleInitStatChangeAbAttr extends PostBattleInitAbAttr { type PreDefendAbAttrCondition = (pokemon: Pokemon, attacker: Pokemon, move: Move) => boolean; export class PreDefendAbAttr extends AbAttr { - applyPreDefend(pokemon: Pokemon, passive: boolean, attacker: Pokemon, move: Move | null, cancelled: Utils.BooleanHolder | null, args: any[]): boolean | Promise { + applyPreDefend(pokemon: Pokemon, passive: boolean, simulated: boolean, attacker: Pokemon, move: Move | null, cancelled: Utils.BooleanHolder | null, args: any[]): boolean | Promise { return false; } } export class PreDefendFullHpEndureAbAttr extends PreDefendAbAttr { - applyPreDefend(pokemon: Pokemon, passive: boolean, attacker: Pokemon, move: Move, cancelled: Utils.BooleanHolder, args: any[]): boolean { - if (pokemon.isFullHp() && - pokemon.getMaxHp() > 1 && //Checks if pokemon has wonder_guard (which forces 1hp) - (args[0] as Utils.NumberHolder).value >= pokemon.hp) { //Damage >= hp - return pokemon.addTag(BattlerTagType.STURDY, 1); + applyPreDefend(pokemon: Pokemon, passive: boolean, simulated: boolean, attacker: Pokemon, move: Move, cancelled: Utils.BooleanHolder, args: any[]): boolean { + if (pokemon.isFullHp() + && pokemon.getMaxHp() > 1 //Checks if pokemon has wonder_guard (which forces 1hp) + && (args[0] as Utils.NumberHolder).value >= pokemon.hp) { //Damage >= hp + return simulated || pokemon.addTag(BattlerTagType.STURDY, 1); } return false; @@ -261,7 +264,7 @@ export class PreDefendFullHpEndureAbAttr extends PreDefendAbAttr { } export class BlockItemTheftAbAttr extends AbAttr { - apply(pokemon: Pokemon, passive: boolean, cancelled: Utils.BooleanHolder, args: any[]): boolean { + apply(pokemon: Pokemon, passive: boolean, simulated: boolean, cancelled: Utils.BooleanHolder, args: any[]): boolean { cancelled.value = true; return true; @@ -276,7 +279,7 @@ export class BlockItemTheftAbAttr extends AbAttr { } export class StabBoostAbAttr extends AbAttr { - apply(pokemon: Pokemon, passive: boolean, cancelled: Utils.BooleanHolder, args: any[]): boolean { + apply(pokemon: Pokemon, passive: boolean, simulated: boolean, cancelled: Utils.BooleanHolder, args: any[]): boolean { if ((args[0] as Utils.NumberHolder).value > 1) { (args[0] as Utils.NumberHolder).value += 0.5; return true; @@ -297,9 +300,9 @@ export class ReceivedMoveDamageMultiplierAbAttr extends PreDefendAbAttr { this.damageMultiplier = damageMultiplier; } - applyPreDefend(pokemon: Pokemon, passive: boolean, attacker: Pokemon, move: Move, cancelled: Utils.BooleanHolder, args: any[]): boolean { + applyPreDefend(pokemon: Pokemon, passive: boolean, simulated: boolean, attacker: Pokemon, move: Move, cancelled: Utils.BooleanHolder, args: any[]): boolean { if (this.condition(pokemon, attacker, move)) { - (args[0] as Utils.NumberHolder).value = Math.floor((args[0] as Utils.NumberHolder).value * this.damageMultiplier); + (args[0] as Utils.NumberHolder).value = Utils.toDmgValue((args[0] as Utils.NumberHolder).value * this.damageMultiplier); return true; } @@ -341,12 +344,12 @@ export class TypeImmunityAbAttr extends PreDefendAbAttr { * @param args [0] {@linkcode Utils.NumberHolder} gets set to 0 if move is immuned by an ability. * @param args [1] - Whether the move is simulated. */ - applyPreDefend(pokemon: Pokemon, passive: boolean, attacker: Pokemon, move: Move, cancelled: Utils.BooleanHolder, args: any[]): boolean { + applyPreDefend(pokemon: Pokemon, passive: boolean, simulated: boolean, attacker: Pokemon, move: Move, cancelled: Utils.BooleanHolder, args: any[]): boolean { // Field moves should ignore immunity if ([ MoveTarget.BOTH_SIDES, MoveTarget.ENEMY_SIDE, MoveTarget.USER_SIDE ].includes(move.moveTarget)) { return false; } - if (attacker !== pokemon && move.type === this.immuneType) { + if (attacker !== pokemon && attacker.getMoveType(move) === this.immuneType) { (args[0] as Utils.NumberHolder).value = 0; return true; } @@ -368,9 +371,10 @@ export class AttackTypeImmunityAbAttr extends TypeImmunityAbAttr { * Type immunity abilities that do not give additional benefits (HP recovery, stat boosts, etc) are not immune to status moves of the type * Example: Levitate */ - applyPreDefend(pokemon: Pokemon, passive: boolean, attacker: Pokemon, move: Move, cancelled: Utils.BooleanHolder, args: any[]): boolean { - if (move.category !== MoveCategory.STATUS) { - return super.applyPreDefend(pokemon, passive, attacker, move, cancelled, args); + applyPreDefend(pokemon: Pokemon, passive: boolean, simulated: boolean, attacker: Pokemon, move: Move, cancelled: Utils.BooleanHolder, args: any[]): boolean { + // this is a hacky way to fix the Levitate/Thousand Arrows interaction, but it works for now... + if (move.category !== MoveCategory.STATUS && !move.hasAttr(NeutralDamageAgainstFlyingTypeMultiplierAttr)) { + return super.applyPreDefend(pokemon, passive, simulated, attacker, move, cancelled, args); } return false; } @@ -381,17 +385,15 @@ export class TypeImmunityHealAbAttr extends TypeImmunityAbAttr { super(immuneType); } - applyPreDefend(pokemon: Pokemon, passive: boolean, attacker: Pokemon, move: Move, cancelled: Utils.BooleanHolder, args: any[]): boolean { - const ret = super.applyPreDefend(pokemon, passive, attacker, move, cancelled, args); + applyPreDefend(pokemon: Pokemon, passive: boolean, simulated: boolean, attacker: Pokemon, move: Move, cancelled: Utils.BooleanHolder, args: any[]): boolean { + const ret = super.applyPreDefend(pokemon, passive, simulated, attacker, move, cancelled, args); if (ret) { - if (!pokemon.isFullHp()) { - const simulated = args.length > 1 && args[1]; - if (!simulated) { - const abilityName = (!passive ? pokemon.getAbility() : pokemon.getPassiveAbility()).name; - pokemon.scene.unshiftPhase(new PokemonHealPhase(pokemon.scene, pokemon.getBattlerIndex(), - Math.max(Math.floor(pokemon.getMaxHp() / 4), 1), i18next.t("abilityTriggers:typeImmunityHeal", { pokemonNameWithAffix: getPokemonNameWithAffix(pokemon), abilityName }), true)); - } + if (!pokemon.isFullHp() && !simulated) { + const abilityName = (!passive ? pokemon.getAbility() : pokemon.getPassiveAbility()).name; + pokemon.scene.unshiftPhase(new PokemonHealPhase(pokemon.scene, pokemon.getBattlerIndex(), + Utils.toDmgValue(pokemon.getMaxHp() / 4), i18next.t("abilityTriggers:typeImmunityHeal", { pokemonNameWithAffix: getPokemonNameWithAffix(pokemon), abilityName }), true)); + cancelled.value = true; // Suppresses "No Effect" message } return true; } @@ -411,12 +413,11 @@ class TypeImmunityStatChangeAbAttr extends TypeImmunityAbAttr { this.levels = levels; } - applyPreDefend(pokemon: Pokemon, passive: boolean, attacker: Pokemon, move: Move, cancelled: Utils.BooleanHolder, args: any[]): boolean { - const ret = super.applyPreDefend(pokemon, passive, attacker, move, cancelled, args); + applyPreDefend(pokemon: Pokemon, passive: boolean, simulated: boolean, attacker: Pokemon, move: Move, cancelled: Utils.BooleanHolder, args: any[]): boolean { + const ret = super.applyPreDefend(pokemon, passive, simulated, attacker, move, cancelled, args); if (ret) { - cancelled.value = true; - const simulated = args.length > 1 && args[1]; + cancelled.value = true; // Suppresses "No Effect" message if (!simulated) { pokemon.scene.unshiftPhase(new StatChangePhase(pokemon.scene, pokemon.getBattlerIndex(), true, [ this.stat ], this.levels)); } @@ -437,12 +438,11 @@ class TypeImmunityAddBattlerTagAbAttr extends TypeImmunityAbAttr { this.turnCount = turnCount; } - applyPreDefend(pokemon: Pokemon, passive: boolean, attacker: Pokemon, move: Move, cancelled: Utils.BooleanHolder, args: any[]): boolean { - const ret = super.applyPreDefend(pokemon, passive, attacker, move, cancelled, args); + applyPreDefend(pokemon: Pokemon, passive: boolean, simulated: boolean, attacker: Pokemon, move: Move, cancelled: Utils.BooleanHolder, args: any[]): boolean { + const ret = super.applyPreDefend(pokemon, passive, simulated, attacker, move, cancelled, args); if (ret) { - cancelled.value = true; - const simulated = args.length > 1 && args[1]; + cancelled.value = true; // Suppresses "No Effect" message if (!simulated) { pokemon.addTag(this.tagType, this.turnCount, undefined, pokemon.id); } @@ -457,9 +457,9 @@ export class NonSuperEffectiveImmunityAbAttr extends TypeImmunityAbAttr { super(null, condition); } - applyPreDefend(pokemon: Pokemon, passive: boolean, attacker: Pokemon, move: Move, cancelled: Utils.BooleanHolder, args: any[]): boolean { - if (move instanceof AttackMove && pokemon.getAttackTypeEffectiveness(move.type, attacker) < 2) { - cancelled.value = true; + applyPreDefend(pokemon: Pokemon, passive: boolean, simulated: boolean, attacker: Pokemon, move: Move, cancelled: Utils.BooleanHolder, args: any[]): boolean { + if (move instanceof AttackMove && pokemon.getAttackTypeEffectiveness(pokemon.getMoveType(move), attacker) < 2) { + cancelled.value = true; // Suppresses "No Effect" message (args[0] as Utils.NumberHolder).value = 0; return true; } @@ -476,7 +476,7 @@ export class NonSuperEffectiveImmunityAbAttr extends TypeImmunityAbAttr { } export class PostDefendAbAttr extends AbAttr { - applyPostDefend(pokemon: Pokemon, passive: boolean, attacker: Pokemon, move: Move, hitResult: HitResult | null, args: any[]): boolean | Promise { + applyPostDefend(pokemon: Pokemon, passive: boolean, simulated: boolean, attacker: Pokemon, move: Move, hitResult: HitResult | null, args: any[]): boolean | Promise { return false; } } @@ -500,12 +500,16 @@ export class PostDefendGulpMissileAbAttr extends PostDefendAbAttr { * @param {any[]} args - n/a * @returns Whether the effects of the ability are applied. */ - applyPostDefend(pokemon: Pokemon, passive: boolean, attacker: Pokemon, move: Move, hitResult: HitResult, args: any[]): boolean | Promise { + applyPostDefend(pokemon: Pokemon, passive: boolean, simulated: boolean, attacker: Pokemon, move: Move, hitResult: HitResult, args: any[]): boolean | Promise { const battlerTag = pokemon.getTag(GulpMissileTag); if (!battlerTag || move.category === MoveCategory.STATUS || pokemon.getTag(SemiInvulnerableTag)) { return false; } + if (simulated) { + return true; + } + const cancelled = new Utils.BooleanHolder(false); applyAbAttrs(BlockNonDirectDamageAbAttr, attacker, cancelled); @@ -525,12 +529,12 @@ export class PostDefendGulpMissileAbAttr extends PostDefendAbAttr { } export class FieldPriorityMoveImmunityAbAttr extends PreDefendAbAttr { - applyPreDefend(pokemon: Pokemon, passive: boolean, attacker: Pokemon, move: Move, cancelled: Utils.BooleanHolder, args: any[]): boolean { + applyPreDefend(pokemon: Pokemon, passive: boolean, simulated: boolean, attacker: Pokemon, move: Move, cancelled: Utils.BooleanHolder, args: any[]): boolean { const attackPriority = new Utils.IntegerHolder(move.priority); - applyMoveAttrs(IncrementMovePriorityAttr,attacker,null,move,attackPriority); - applyAbAttrs(ChangeMovePriorityAbAttr, attacker, null, move, attackPriority); + applyMoveAttrs(IncrementMovePriorityAttr, attacker, null, move, attackPriority); + applyAbAttrs(ChangeMovePriorityAbAttr, attacker, null, simulated, move, attackPriority); - if (move.moveTarget===MoveTarget.USER || move.moveTarget===MoveTarget.NEAR_ALLY) { + if (move.moveTarget === MoveTarget.USER || move.moveTarget === MoveTarget.NEAR_ALLY) { return false; } @@ -544,7 +548,7 @@ export class FieldPriorityMoveImmunityAbAttr extends PreDefendAbAttr { } export class PostStatChangeAbAttr extends AbAttr { - applyPostStatChange(pokemon: Pokemon, statsChanged: BattleStat[], levelChanged: integer, selfTarget: boolean, args: any[]): boolean | Promise { + applyPostStatChange(pokemon: Pokemon, simulated: boolean, statsChanged: BattleStat[], levelChanged: integer, selfTarget: boolean, args: any[]): boolean | Promise { return false; } } @@ -558,7 +562,7 @@ export class MoveImmunityAbAttr extends PreDefendAbAttr { this.immuneCondition = immuneCondition; } - applyPreDefend(pokemon: Pokemon, passive: boolean, attacker: Pokemon, move: Move, cancelled: Utils.BooleanHolder, args: any[]): boolean { + applyPreDefend(pokemon: Pokemon, passive: boolean, simulated: boolean, attacker: Pokemon, move: Move, cancelled: Utils.BooleanHolder, args: any[]): boolean { if (this.immuneCondition(pokemon, attacker, move)) { cancelled.value = true; return true; @@ -579,7 +583,7 @@ export class MoveImmunityAbAttr extends PreDefendAbAttr { * @extends PreDefendAbAttr */ export class WonderSkinAbAttr extends PreDefendAbAttr { - applyPreDefend(pokemon: Pokemon, passive: boolean, attacker: Pokemon, move: Move, cancelled: Utils.BooleanHolder, args: any[]): boolean { + applyPreDefend(pokemon: Pokemon, passive: boolean, simulated: boolean, attacker: Pokemon, move: Move, cancelled: Utils.BooleanHolder, args: any[]): boolean { const moveAccuracy = args[0] as Utils.NumberHolder; if (move.category === MoveCategory.STATUS && moveAccuracy.value >= 50) { moveAccuracy.value = 50; @@ -600,13 +604,10 @@ export class MoveImmunityStatChangeAbAttr extends MoveImmunityAbAttr { this.levels = levels; } - applyPreDefend(pokemon: Pokemon, passive: boolean, attacker: Pokemon, move: Move, cancelled: Utils.BooleanHolder, args: any[]): boolean { - const ret = super.applyPreDefend(pokemon, passive, attacker, move, cancelled, args); - if (ret) { - const simulated = args.length > 1 && args[1]; - if (!simulated) { - pokemon.scene.unshiftPhase(new StatChangePhase(pokemon.scene, pokemon.getBattlerIndex(), true, [ this.stat ], this.levels)); - } + applyPreDefend(pokemon: Pokemon, passive: boolean, simulated: boolean, attacker: Pokemon, move: Move, cancelled: Utils.BooleanHolder, args: any[]): boolean { + const ret = super.applyPreDefend(pokemon, passive, simulated, attacker, move, cancelled, args); + if (ret && !simulated) { + pokemon.scene.unshiftPhase(new StatChangePhase(pokemon.scene, pokemon.getBattlerIndex(), true, [ this.stat ], this.levels)); } return ret; @@ -630,9 +631,11 @@ export class ReverseDrainAbAttr extends PostDefendAbAttr { * @args N/A * @returns true if healing should be reversed on a healing move, false otherwise. */ - applyPostDefend(pokemon: Pokemon, passive: boolean, attacker: Pokemon, move: Move, hitResult: HitResult, args: any[]): boolean { + applyPostDefend(pokemon: Pokemon, passive: boolean, simulated: boolean, attacker: Pokemon, move: Move, hitResult: HitResult, args: any[]): boolean { if (move.hasAttr(HitHealAttr)) { - pokemon.scene.queueMessage(i18next.t("abilityTriggers:reverseDrain", { pokemonNameWithAffix: getPokemonNameWithAffix(attacker) })); + if (!simulated) { + pokemon.scene.queueMessage(i18next.t("abilityTriggers:reverseDrain", { pokemonNameWithAffix: getPokemonNameWithAffix(attacker) })); + } return true; } return false; @@ -656,8 +659,12 @@ export class PostDefendStatChangeAbAttr extends PostDefendAbAttr { this.allOthers = allOthers; } - applyPostDefend(pokemon: Pokemon, passive: boolean, attacker: Pokemon, move: Move, hitResult: HitResult, args: any[]): boolean { + applyPostDefend(pokemon: Pokemon, passive: boolean, simulated: boolean, attacker: Pokemon, move: Move, hitResult: HitResult, args: any[]): boolean { if (this.condition(pokemon, attacker, move)) { + if (simulated) { + return true; + } + if (this.allOthers) { const otherPokemon = pokemon.getAlly() ? pokemon.getOpponents().concat([ pokemon.getAlly() ]) : pokemon.getOpponents(); for (const other of otherPokemon) { @@ -690,13 +697,15 @@ export class PostDefendHpGatedStatChangeAbAttr extends PostDefendAbAttr { this.selfTarget = selfTarget; } - applyPostDefend(pokemon: Pokemon, passive: boolean, attacker: Pokemon, move: Move, hitResult: HitResult, args: any[]): boolean { + applyPostDefend(pokemon: Pokemon, passive: boolean, simulated: boolean, attacker: Pokemon, move: Move, hitResult: HitResult, args: any[]): boolean { const hpGateFlat: integer = Math.ceil(pokemon.getMaxHp() * this.hpGate); const lastAttackReceived = pokemon.turnData.attacksReceived[pokemon.turnData.attacksReceived.length - 1]; const damageReceived = lastAttackReceived?.damage || 0; if (this.condition(pokemon, attacker, move) && (pokemon.hp <= hpGateFlat && (pokemon.hp + damageReceived) > hpGateFlat)) { - pokemon.scene.unshiftPhase(new StatChangePhase(pokemon.scene, (this.selfTarget ? pokemon : attacker).getBattlerIndex(), true, this.stats, this.levels)); + if (!simulated) { + pokemon.scene.unshiftPhase(new StatChangePhase(pokemon.scene, (this.selfTarget ? pokemon : attacker).getBattlerIndex(), true, this.stats, this.levels)); + } return true; } @@ -715,11 +724,13 @@ export class PostDefendApplyArenaTrapTagAbAttr extends PostDefendAbAttr { this.tagType = tagType; } - applyPostDefend(pokemon: Pokemon, passive: boolean, attacker: Pokemon, move: Move, hitResult: HitResult, args: any[]): boolean { + applyPostDefend(pokemon: Pokemon, passive: boolean, simulated: boolean, attacker: Pokemon, move: Move, hitResult: HitResult, args: any[]): boolean { if (this.condition(pokemon, attacker, move)) { const tag = pokemon.scene.arena.getTag(this.tagType) as ArenaTrapTag; if (!pokemon.scene.arena.getTag(this.tagType) || tag.layers < tag.maxLayers) { - pokemon.scene.arena.addTag(this.tagType, 0, undefined, pokemon.id, pokemon.isPlayer() ? ArenaTagSide.ENEMY : ArenaTagSide.PLAYER); + if (!simulated) { + pokemon.scene.arena.addTag(this.tagType, 0, undefined, pokemon.id, pokemon.isPlayer() ? ArenaTagSide.ENEMY : ArenaTagSide.PLAYER); + } return true; } } @@ -737,9 +748,9 @@ export class PostDefendApplyBattlerTagAbAttr extends PostDefendAbAttr { this.tagType = tagType; } - applyPostDefend(pokemon: Pokemon, passive: boolean, attacker: Pokemon, move: Move, hitResult: HitResult, args: any[]): boolean { + applyPostDefend(pokemon: Pokemon, passive: boolean, simulated: boolean, attacker: Pokemon, move: Move, hitResult: HitResult, args: any[]): boolean { if (this.condition(pokemon, attacker, move)) { - if (!pokemon.getTag(this.tagType)) { + if (!pokemon.getTag(this.tagType) && !simulated) { pokemon.addTag(this.tagType, undefined, undefined, pokemon.id); pokemon.scene.queueMessage(i18next.t("abilityTriggers:windPowerCharged", { pokemonName: getPokemonNameWithAffix(pokemon), moveName: move.name })); } @@ -750,9 +761,12 @@ export class PostDefendApplyBattlerTagAbAttr extends PostDefendAbAttr { } export class PostDefendTypeChangeAbAttr extends PostDefendAbAttr { - applyPostDefend(pokemon: Pokemon, passive: boolean, attacker: Pokemon, move: Move, hitResult: HitResult, args: any[]): boolean { + applyPostDefend(pokemon: Pokemon, passive: boolean, simulated: boolean, attacker: Pokemon, move: Move, hitResult: HitResult, args: any[]): boolean { if (hitResult < HitResult.NO_EFFECT) { - const type = move.type; + if (simulated) { + return true; + } + const type = attacker.getMoveType(move); const pokemonTypes = pokemon.getTypes(true); if (pokemonTypes.length !== 1 || pokemonTypes[0] !== type) { pokemon.summonData.types = [ type ]; @@ -781,9 +795,13 @@ export class PostDefendTerrainChangeAbAttr extends PostDefendAbAttr { this.terrainType = terrainType; } - applyPostDefend(pokemon: Pokemon, passive: boolean, attacker: Pokemon, move: Move, hitResult: HitResult, args: any[]): boolean { + applyPostDefend(pokemon: Pokemon, passive: boolean, simulated: boolean, attacker: Pokemon, move: Move, hitResult: HitResult, args: any[]): boolean { if (hitResult < HitResult.NO_EFFECT) { - return pokemon.scene.arena.trySetTerrain(this.terrainType, true); + if (simulated) { + return pokemon.scene.arena.terrain?.terrainType !== (this.terrainType || undefined); + } else { + return pokemon.scene.arena.trySetTerrain(this.terrainType, true); + } } return false; @@ -801,10 +819,14 @@ export class PostDefendContactApplyStatusEffectAbAttr extends PostDefendAbAttr { this.effects = effects; } - applyPostDefend(pokemon: Pokemon, passive: boolean, attacker: Pokemon, move: Move, hitResult: HitResult, args: any[]): boolean { + applyPostDefend(pokemon: Pokemon, passive: boolean, simulated: boolean, attacker: Pokemon, move: Move, hitResult: HitResult, args: any[]): boolean { if (move.checkFlag(MoveFlags.MAKES_CONTACT, attacker, pokemon) && !attacker.status && (this.chance === -1 || pokemon.randSeedInt(100) < this.chance)) { const effect = this.effects.length === 1 ? this.effects[0] : this.effects[pokemon.randSeedInt(this.effects.length)]; - return attacker.trySetStatus(effect, true, pokemon); + if (simulated) { + return attacker.canSetStatus(effect, true, false, pokemon); + } else { + return attacker.trySetStatus(effect, true, pokemon); + } } return false; @@ -816,11 +838,11 @@ export class EffectSporeAbAttr extends PostDefendContactApplyStatusEffectAbAttr super(10, StatusEffect.POISON, StatusEffect.PARALYSIS, StatusEffect.SLEEP); } - applyPostDefend(pokemon: Pokemon, passive: boolean, attacker: Pokemon, move: Move, hitResult: HitResult, args: any[]): boolean { + applyPostDefend(pokemon: Pokemon, passive: boolean, simulated: boolean, attacker: Pokemon, move: Move, 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); + return super.applyPostDefend(pokemon, passive, simulated, attacker, move, hitResult, args); } } @@ -837,9 +859,13 @@ export class PostDefendContactApplyTagChanceAbAttr extends PostDefendAbAttr { this.turnCount = turnCount; } - applyPostDefend(pokemon: Pokemon, passive: boolean, attacker: Pokemon, move: Move, hitResult: HitResult, args: any[]): boolean { + applyPostDefend(pokemon: Pokemon, passive: boolean, simulated: boolean, attacker: Pokemon, move: Move, hitResult: HitResult, args: any[]): boolean { if (move.checkFlag(MoveFlags.MAKES_CONTACT, attacker, pokemon) && pokemon.randSeedInt(100) < this.chance) { - return attacker.addTag(this.tagType, this.turnCount, move.id, attacker.id); + if (simulated) { + return attacker.canAddTag(this.tagType); + } else { + return attacker.addTag(this.tagType, this.turnCount, move.id, attacker.id); + } } return false; @@ -857,8 +883,10 @@ export class PostDefendCritStatChangeAbAttr extends PostDefendAbAttr { this.levels = levels; } - applyPostDefend(pokemon: Pokemon, passive: boolean, attacker: Pokemon, move: Move, hitResult: HitResult, args: any[]): boolean { - pokemon.scene.unshiftPhase(new StatChangePhase(pokemon.scene, pokemon.getBattlerIndex(), true, [ this.stat ], this.levels)); + applyPostDefend(pokemon: Pokemon, passive: boolean, simulated: boolean, attacker: Pokemon, move: Move, hitResult: HitResult, args: any[]): boolean { + if (!simulated) { + pokemon.scene.unshiftPhase(new StatChangePhase(pokemon.scene, pokemon.getBattlerIndex(), true, [ this.stat ], this.levels)); + } return true; } @@ -877,10 +905,10 @@ export class PostDefendContactDamageAbAttr extends PostDefendAbAttr { this.damageRatio = damageRatio; } - applyPostDefend(pokemon: Pokemon, passive: boolean, attacker: Pokemon, move: Move, hitResult: HitResult, args: any[]): boolean { - if (move.checkFlag(MoveFlags.MAKES_CONTACT, attacker, pokemon) && !attacker.hasAbilityWithAttr(BlockNonDirectDamageAbAttr)) { - attacker.damageAndUpdate(Math.ceil(attacker.getMaxHp() * (1 / this.damageRatio)), HitResult.OTHER); - attacker.turnData.damageTaken += Math.ceil(attacker.getMaxHp() * (1 / this.damageRatio)); + applyPostDefend(pokemon: Pokemon, passive: boolean, simulated: boolean, attacker: Pokemon, move: Move, hitResult: HitResult, args: any[]): boolean { + if (!simulated && move.checkFlag(MoveFlags.MAKES_CONTACT, attacker, pokemon) && !attacker.hasAbilityWithAttr(BlockNonDirectDamageAbAttr)) { + attacker.damageAndUpdate(Utils.toDmgValue(attacker.getMaxHp() * (1 / this.damageRatio)), HitResult.OTHER); + attacker.turnData.damageTaken += Utils.toDmgValue(attacker.getMaxHp() * (1 / this.damageRatio)); return true; } @@ -910,13 +938,15 @@ export class PostDefendPerishSongAbAttr extends PostDefendAbAttr { this.turns = turns; } - applyPostDefend(pokemon: Pokemon, passive: boolean, attacker: Pokemon, move: Move, hitResult: HitResult, args: any[]): boolean { + applyPostDefend(pokemon: Pokemon, passive: boolean, simulated: boolean, attacker: Pokemon, move: Move, hitResult: HitResult, args: any[]): boolean { if (move.checkFlag(MoveFlags.MAKES_CONTACT, attacker, pokemon)) { if (pokemon.getTag(BattlerTagType.PERISH_SONG) || attacker.getTag(BattlerTagType.PERISH_SONG)) { return false; } else { - attacker.addTag(BattlerTagType.PERISH_SONG, this.turns); - pokemon.addTag(BattlerTagType.PERISH_SONG, this.turns); + if (!simulated) { + attacker.addTag(BattlerTagType.PERISH_SONG, this.turns); + pokemon.addTag(BattlerTagType.PERISH_SONG, this.turns); + } return true; } } @@ -939,11 +969,14 @@ export class PostDefendWeatherChangeAbAttr extends PostDefendAbAttr { this.condition = condition ?? null; } - applyPostDefend(pokemon: Pokemon, passive: boolean, attacker: Pokemon, move: Move, hitResult: HitResult, args: any[]): boolean { + applyPostDefend(pokemon: Pokemon, passive: boolean, simulated: boolean, attacker: Pokemon, move: Move, hitResult: HitResult, args: any[]): boolean { if (this.condition !== null && !this.condition(pokemon, attacker, move)) { return false; } if (!pokemon.scene.arena.weather?.isImmutable()) { + if (simulated) { + return pokemon.scene.arena.weather?.weatherType !== this.weatherType; + } return pokemon.scene.arena.trySetWeather(this.weatherType, true); } @@ -956,11 +989,13 @@ export class PostDefendAbilitySwapAbAttr extends PostDefendAbAttr { super(); } - applyPostDefend(pokemon: Pokemon, passive: boolean, attacker: Pokemon, move: Move, hitResult: HitResult, args: any[]): boolean { + applyPostDefend(pokemon: Pokemon, passive: boolean, simulated: boolean, attacker: Pokemon, move: Move, hitResult: HitResult, args: any[]): boolean { if (move.checkFlag(MoveFlags.MAKES_CONTACT, attacker, pokemon) && !attacker.getAbility().hasAttr(UnswappableAbilityAbAttr)) { - const tempAbilityId = attacker.getAbility().id; - attacker.summonData.ability = pokemon.getAbility().id; - pokemon.summonData.ability = tempAbilityId; + if (!simulated) { + const tempAbilityId = attacker.getAbility().id; + attacker.summonData.ability = pokemon.getAbility().id; + pokemon.summonData.ability = tempAbilityId; + } return true; } @@ -980,9 +1015,11 @@ export class PostDefendAbilityGiveAbAttr extends PostDefendAbAttr { this.ability = ability; } - applyPostDefend(pokemon: Pokemon, passive: boolean, attacker: Pokemon, move: Move, hitResult: HitResult, args: any[]): boolean { + applyPostDefend(pokemon: Pokemon, passive: boolean, simulated: boolean, attacker: Pokemon, move: Move, hitResult: HitResult, args: any[]): boolean { if (move.checkFlag(MoveFlags.MAKES_CONTACT, attacker, pokemon) && !attacker.getAbility().hasAttr(UnsuppressableAbilityAbAttr) && !attacker.getAbility().hasAttr(PostDefendAbilityGiveAbAttr)) { - attacker.summonData.ability = this.ability; + if (!simulated) { + attacker.summonData.ability = this.ability; + } return true; } @@ -1009,9 +1046,13 @@ export class PostDefendMoveDisableAbAttr extends PostDefendAbAttr { this.chance = chance; } - applyPostDefend(pokemon: Pokemon, passive: boolean, attacker: Pokemon, move: Move, hitResult: HitResult, args: any[]): boolean { + applyPostDefend(pokemon: Pokemon, passive: boolean, simulated: boolean, attacker: Pokemon, move: Move, hitResult: HitResult, args: any[]): boolean { if (!attacker.summonData.disabledMove) { if (move.checkFlag(MoveFlags.MAKES_CONTACT, attacker, pokemon) && (this.chance === -1 || pokemon.randSeedInt(100) < this.chance) && !attacker.isMax()) { + if (simulated) { + return true; + } + this.attacker = attacker; this.move = move; @@ -1044,9 +1085,11 @@ export class PostStatChangeStatChangeAbAttr extends PostStatChangeAbAttr { this.levels = levels; } - applyPostStatChange(pokemon: Pokemon, statsChanged: BattleStat[], levelsChanged: integer, selfTarget: boolean, args: any[]): boolean { + applyPostStatChange(pokemon: Pokemon, simulated: boolean, statsChanged: BattleStat[], levelsChanged: integer, selfTarget: boolean, args: any[]): boolean { if (this.condition(pokemon, statsChanged, levelsChanged) && !selfTarget) { - pokemon.scene.unshiftPhase(new StatChangePhase(pokemon.scene, (pokemon).getBattlerIndex(), true, this.statsToChange, this.levels)); + if (!simulated) { + pokemon.scene.unshiftPhase(new StatChangePhase(pokemon.scene, (pokemon).getBattlerIndex(), true, this.statsToChange, this.levels)); + } return true; } @@ -1055,7 +1098,7 @@ export class PostStatChangeStatChangeAbAttr extends PostStatChangeAbAttr { } export class PreAttackAbAttr extends AbAttr { - applyPreAttack(pokemon: Pokemon, passive: boolean, defender: Pokemon | null, move: Move, args: any[]): boolean | Promise { + applyPreAttack(pokemon: Pokemon, passive: boolean, simulated: boolean, defender: Pokemon | null, move: Move, args: any[]): boolean | Promise { return false; } } @@ -1076,7 +1119,7 @@ export class MoveEffectChanceMultiplierAbAttr extends AbAttr { * @param args [0]: {@linkcode Utils.NumberHolder} Move additional effect chance. Has to be higher than or equal to 0. * [1]: {@linkcode Moves } Move used by the ability user. */ - apply(pokemon: Pokemon, passive: boolean, cancelled: Utils.BooleanHolder, args: any[]): boolean { + apply(pokemon: Pokemon, passive: boolean, simulated: boolean, cancelled: Utils.BooleanHolder, args: any[]): boolean { // Disable showAbility during getTargetBenefitScore this.showAbility = args[4]; if ((args[0] as Utils.NumberHolder).value <= 0 || (args[1] as Move).id === Moves.ORDER_UP) { @@ -1099,7 +1142,7 @@ export class IgnoreMoveEffectsAbAttr extends PreDefendAbAttr { /** * @param args [0]: {@linkcode Utils.NumberHolder} Move additional effect chance. */ - applyPreDefend(pokemon: Pokemon, passive: boolean, attacker: Pokemon, move: Move, cancelled: Utils.BooleanHolder, args: any[]): boolean { + applyPreDefend(pokemon: Pokemon, passive: boolean, simulated: boolean, attacker: Pokemon, move: Move, cancelled: Utils.BooleanHolder, args: any[]): boolean { if ((args[0] as Utils.NumberHolder).value <= 0) { return false; @@ -1112,14 +1155,14 @@ export class IgnoreMoveEffectsAbAttr extends PreDefendAbAttr { } export class VariableMovePowerAbAttr extends PreAttackAbAttr { - applyPreAttack(pokemon: Pokemon, passive: boolean, defender: Pokemon, move: Move, args: any[]): boolean { + applyPreAttack(pokemon: Pokemon, passive: boolean, simulated: boolean, defender: Pokemon, move: Move, args: any[]): boolean { //const power = args[0] as Utils.NumberHolder; return false; } } export class FieldPreventExplosiveMovesAbAttr extends AbAttr { - apply(pokemon: Pokemon, passive: boolean, cancelled: Utils.BooleanHolder, args: any[]): boolean | Promise { + apply(pokemon: Pokemon, passive: boolean, simulated: boolean, cancelled: Utils.BooleanHolder, args: any[]): boolean | Promise { cancelled.value = true; return true; } @@ -1156,7 +1199,7 @@ export class FieldMultiplyBattleStatAbAttr extends AbAttr { * @param args {any[]} unused * @returns true if this changed the checked stat, false otherwise. */ - applyFieldBattleStat(pokemon: Pokemon, passive: boolean, stat: Stat, statValue: Utils.NumberHolder, checkedPokemon: Pokemon, hasApplied: Utils.BooleanHolder, args: any[]): boolean { + applyFieldBattleStat(pokemon: Pokemon, passive: boolean, simulated: boolean, stat: Stat, statValue: Utils.NumberHolder, checkedPokemon: Pokemon, hasApplied: Utils.BooleanHolder, args: any[]): boolean { if (!this.canStack && hasApplied.value) { return false; } @@ -1171,7 +1214,7 @@ export class FieldMultiplyBattleStatAbAttr extends AbAttr { } -export class MoveTypeChangeAttr extends PreAttackAbAttr { +export class MoveTypeChangeAbAttr extends PreAttackAbAttr { constructor( private newType: Type, private powerMultiplier: number, @@ -1180,11 +1223,14 @@ export class MoveTypeChangeAttr extends PreAttackAbAttr { super(true); } - applyPreAttack(pokemon: Pokemon, passive: boolean, defender: Pokemon, move: Move, args: any[]): boolean { + // TODO: Decouple this into two attributes (type change / power boost) + applyPreAttack(pokemon: Pokemon, passive: boolean, simulated: boolean, defender: Pokemon, move: Move, args: any[]): boolean { if (this.condition && this.condition(pokemon, defender, move)) { - move.type = this.newType; if (args[0] && args[0] instanceof Utils.NumberHolder) { - args[0].value *= this.powerMultiplier; + args[0].value = this.newType; + } + if (args[1] && args[1] instanceof Utils.NumberHolder) { + args[1].value *= this.powerMultiplier; } return true; } @@ -1201,7 +1247,7 @@ export class PokemonTypeChangeAbAttr extends PreAttackAbAttr { super(true); } - applyPreAttack(pokemon: Pokemon, passive: boolean, defender: Pokemon, move: Move, args: any[]): boolean { + applyPreAttack(pokemon: Pokemon, passive: boolean, simulated: boolean, defender: Pokemon, move: Move, args: any[]): boolean { if ( !pokemon.isTerastallized() && move.id !== Moves.STRUGGLE && @@ -1216,22 +1262,14 @@ export class PokemonTypeChangeAbAttr extends PreAttackAbAttr { attr instanceof CopyMoveAttr ) ) { - // TODO remove this copy when phase order is changed so that damage, type, category, etc. - // TODO are all calculated prior to playing the move animation. - const moveCopy = new Move(move.id, move.type, move.category, move.moveTarget, move.power, move.accuracy, move.pp, move.chance, move.priority, move.generation); - moveCopy.attrs = move.attrs; + const moveType = pokemon.getMoveType(move); - // Moves like Weather Ball ignore effects of abilities like Normalize and Refrigerate - if (move.findAttr(attr => attr instanceof VariableMoveTypeAttr)) { - applyMoveAttrs(VariableMoveTypeAttr, pokemon, null, moveCopy); - } else { - applyPreAttackAbAttrs(MoveTypeChangeAttr, pokemon, null, moveCopy); - } - - if (pokemon.getTypes().some((t) => t !== moveCopy.type)) { - this.moveType = moveCopy.type; - pokemon.summonData.types = [moveCopy.type]; - pokemon.updateInfo(); + if (pokemon.getTypes().some((t) => t !== moveType)) { + if (!simulated) { + this.moveType = moveType; + pokemon.summonData.types = [moveType]; + pokemon.updateInfo(); + } return true; } @@ -1307,7 +1345,7 @@ export class AddSecondStrikeAbAttr extends PreAttackAbAttr { * @param {Utils.NumberHolder} args\[2\] the damage multiplier for the current strike * @returns */ - applyPreAttack(pokemon: Pokemon, passive: boolean, defender: Pokemon, move: Move, args: any[]): boolean { + applyPreAttack(pokemon: Pokemon, passive: boolean, simulated: boolean, defender: Pokemon, move: Move, args: any[]): boolean { const numTargets = args[0] as integer; const hitCount = args[1] as Utils.IntegerHolder; const multiplier = args[2] as Utils.NumberHolder; @@ -1352,7 +1390,7 @@ export class DamageBoostAbAttr extends PreAttackAbAttr { * @param args Utils.NumberHolder as damage * @returns true if the function succeeds */ - applyPreAttack(pokemon: Pokemon, passive: boolean, defender: Pokemon, move: Move, args: any[]): boolean { + applyPreAttack(pokemon: Pokemon, passive: boolean, simulated: boolean, defender: Pokemon, move: Move, args: any[]): boolean { if (this.condition(pokemon, defender, move)) { const power = args[0] as Utils.NumberHolder; power.value = Math.floor(power.value * this.damageMultiplier); @@ -1373,7 +1411,7 @@ export class MovePowerBoostAbAttr extends VariableMovePowerAbAttr { this.powerMultiplier = powerMultiplier; } - applyPreAttack(pokemon: Pokemon, passive: boolean, defender: Pokemon, move: Move, args: any[]): boolean { + applyPreAttack(pokemon: Pokemon, passive: boolean, simulated: boolean, defender: Pokemon, move: Move, args: any[]): boolean { if (this.condition(pokemon, defender, move)) { (args[0] as Utils.NumberHolder).value *= this.powerMultiplier; @@ -1420,7 +1458,7 @@ export class VariableMovePowerBoostAbAttr extends VariableMovePowerAbAttr { /** * @override */ - applyPreAttack(pokemon: Pokemon, passive: boolean, defender: Pokemon, move, args: any[]): boolean { + applyPreAttack(pokemon: Pokemon, passive: boolean, simulated: boolean, defender: Pokemon, move, args: any[]): boolean { const multiplier = this.mult(pokemon, defender, move); if (multiplier !== 1) { (args[0] as Utils.NumberHolder).value *= multiplier; @@ -1449,7 +1487,7 @@ export class FieldMovePowerBoostAbAttr extends AbAttr { this.powerMultiplier = powerMultiplier; } - applyPreAttack(pokemon: Pokemon | null, passive: boolean | null, defender: Pokemon | null, move: Move, args: any[]): boolean { + applyPreAttack(pokemon: Pokemon | null, passive: boolean | null, simulated: boolean, defender: Pokemon | null, move: Move, args: any[]): boolean { if (this.condition(pokemon, defender, move)) { (args[0] as Utils.NumberHolder).value *= this.powerMultiplier; @@ -1513,7 +1551,7 @@ export class BattleStatMultiplierAbAttr extends AbAttr { this.condition = condition ?? null; } - applyBattleStat(pokemon: Pokemon, passive: boolean, battleStat: BattleStat, statValue: Utils.NumberHolder, args: any[]): boolean | Promise { + applyBattleStat(pokemon: Pokemon, passive: boolean, simulated: boolean, battleStat: BattleStat, statValue: Utils.NumberHolder, args: any[]): boolean | Promise { const move = (args[0] as Move); if (battleStat === this.battleStat && (!this.condition || this.condition(pokemon, null, move))) { statValue.value *= this.multiplier; @@ -1539,11 +1577,11 @@ export class PostAttackAbAttr extends AbAttr { * applying the effect of any inherited class. This can be changed by providing a different {@link attackCondition} to the constructor. See {@link ConfusionOnStatusEffectAbAttr} * for an example of an effect that does not require a damaging move. */ - applyPostAttack(pokemon: Pokemon, passive: boolean, defender: Pokemon, move: Move, hitResult: HitResult | null, args: any[]): boolean | Promise { + applyPostAttack(pokemon: Pokemon, passive: boolean, simulated: boolean, defender: Pokemon, move: Move, hitResult: HitResult | null, args: any[]): boolean | Promise { // When attackRequired is true, we require the move to be an attack move and to deal damage before checking secondary requirements. // If attackRequired is false, we always defer to the secondary requirements. if (this.attackCondition(pokemon, defender, move)) { - return this.applyPostAttackAfterMoveTypeCheck(pokemon, passive, defender, move, hitResult, args); + return this.applyPostAttackAfterMoveTypeCheck(pokemon, passive, simulated, defender, move, hitResult, args); } else { return false; } @@ -1552,7 +1590,7 @@ export class PostAttackAbAttr extends AbAttr { /** * This method is only called after {@link applyPostAttack} has already been applied. Use this for handling checks specific to the ability in question. */ - applyPostAttackAfterMoveTypeCheck(pokemon: Pokemon, passive: boolean, defender: Pokemon, move: Move, hitResult: HitResult | null, args: any[]): boolean | Promise { + applyPostAttackAfterMoveTypeCheck(pokemon: Pokemon, passive: boolean, simulated: boolean, defender: Pokemon, move: Move, hitResult: HitResult | null, args: any[]): boolean | Promise { return false; } } @@ -1566,9 +1604,9 @@ export class PostAttackStealHeldItemAbAttr extends PostAttackAbAttr { this.stealCondition = stealCondition ?? null; } - applyPostAttackAfterMoveTypeCheck(pokemon: Pokemon, passive: boolean, defender: Pokemon, move: Move, hitResult: HitResult, args: any[]): Promise { + applyPostAttackAfterMoveTypeCheck(pokemon: Pokemon, passive: boolean, simulated: boolean, defender: Pokemon, move: Move, hitResult: HitResult, args: any[]): Promise { return new Promise(resolve => { - if (hitResult < HitResult.NO_EFFECT && (!this.stealCondition || this.stealCondition(pokemon, defender, move))) { + if (!simulated && hitResult < HitResult.NO_EFFECT && (!this.stealCondition || this.stealCondition(pokemon, defender, move))) { const heldItems = this.getTargetHeldItems(defender).filter(i => i.isTransferrable); if (heldItems.length) { const stolenItem = heldItems[pokemon.randSeedInt(heldItems.length)]; @@ -1581,7 +1619,7 @@ export class PostAttackStealHeldItemAbAttr extends PostAttackAbAttr { return; } } - resolve(false); + resolve(simulated); }); } @@ -1604,14 +1642,14 @@ export class PostAttackApplyStatusEffectAbAttr extends PostAttackAbAttr { this.effects = effects; } - applyPostAttackAfterMoveTypeCheck(pokemon: Pokemon, passive: boolean, attacker: Pokemon, move: Move, hitResult: HitResult, args: any[]): boolean { + applyPostAttackAfterMoveTypeCheck(pokemon: Pokemon, passive: boolean, simulated: boolean, attacker: Pokemon, move: Move, hitResult: HitResult, args: any[]): boolean { /**Status inflicted by abilities post attacking are also considered additional effects.*/ - if (!attacker.hasAbilityWithAttr(IgnoreMoveEffectsAbAttr) && pokemon !== attacker && (!this.contactRequired || move.checkFlag(MoveFlags.MAKES_CONTACT, attacker, pokemon)) && pokemon.randSeedInt(100) < this.chance && !pokemon.status) { + if (!attacker.hasAbilityWithAttr(IgnoreMoveEffectsAbAttr) && !simulated && pokemon !== attacker && (!this.contactRequired || move.checkFlag(MoveFlags.MAKES_CONTACT, attacker, pokemon)) && pokemon.randSeedInt(100) < this.chance && !pokemon.status) { const effect = this.effects.length === 1 ? this.effects[0] : this.effects[pokemon.randSeedInt(this.effects.length)]; return attacker.trySetStatus(effect, true, pokemon); } - return false; + return simulated; } } @@ -1635,11 +1673,11 @@ export class PostAttackApplyBattlerTagAbAttr extends PostAttackAbAttr { this.effects = effects; } - applyPostAttackAfterMoveTypeCheck(pokemon: Pokemon, passive: boolean, attacker: Pokemon, move: Move, hitResult: HitResult, args: any[]): boolean { + applyPostAttackAfterMoveTypeCheck(pokemon: Pokemon, passive: boolean, simulated: boolean, attacker: Pokemon, move: Move, hitResult: HitResult, args: any[]): boolean { /**Battler tags inflicted by abilities post attacking are also considered additional effects.*/ if (!attacker.hasAbilityWithAttr(IgnoreMoveEffectsAbAttr) && pokemon !== attacker && (!this.contactRequired || move.checkFlag(MoveFlags.MAKES_CONTACT, attacker, pokemon)) && pokemon.randSeedInt(100) < this.chance(attacker, pokemon, move) && !pokemon.status) { const effect = this.effects.length === 1 ? this.effects[0] : this.effects[pokemon.randSeedInt(this.effects.length)]; - return attacker.addTag(effect); + return simulated || attacker.addTag(effect); } return false; @@ -1655,9 +1693,9 @@ export class PostDefendStealHeldItemAbAttr extends PostDefendAbAttr { this.condition = condition ?? null; } - applyPostDefend(pokemon: Pokemon, passive: boolean, attacker: Pokemon, move: Move, hitResult: HitResult, args: any[]): Promise { + applyPostDefend(pokemon: Pokemon, passive: boolean, simulated: boolean, attacker: Pokemon, move: Move, hitResult: HitResult, args: any[]): Promise { return new Promise(resolve => { - if (hitResult < HitResult.NO_EFFECT && (!this.condition || this.condition(pokemon, attacker, move))) { + if (!simulated && hitResult < HitResult.NO_EFFECT && (!this.condition || this.condition(pokemon, attacker, move))) { const heldItems = this.getTargetHeldItems(attacker).filter(i => i.isTransferrable); if (heldItems.length) { const stolenItem = heldItems[pokemon.randSeedInt(heldItems.length)]; @@ -1670,7 +1708,7 @@ export class PostDefendStealHeldItemAbAttr extends PostDefendAbAttr { return; } } - resolve(false); + resolve(simulated); }); } @@ -1681,7 +1719,7 @@ export class PostDefendStealHeldItemAbAttr extends PostDefendAbAttr { } export class PostVictoryAbAttr extends AbAttr { - applyPostVictory(pokemon: Pokemon, passive: boolean, args: any[]): boolean | Promise { + applyPostVictory(pokemon: Pokemon, passive: boolean, simulated: boolean, args: any[]): boolean | Promise { return false; } } @@ -1697,12 +1735,13 @@ class PostVictoryStatChangeAbAttr extends PostVictoryAbAttr { this.levels = levels; } - applyPostVictory(pokemon: Pokemon, passive: boolean, args: any[]): boolean | Promise { + applyPostVictory(pokemon: Pokemon, passive: boolean, simulated: boolean, args: any[]): boolean | Promise { const stat = typeof this.stat === "function" ? this.stat(pokemon) : this.stat; - pokemon.scene.unshiftPhase(new StatChangePhase(pokemon.scene, pokemon.getBattlerIndex(), true, [ stat ], this.levels)); - + if (!simulated) { + pokemon.scene.unshiftPhase(new StatChangePhase(pokemon.scene, pokemon.getBattlerIndex(), true, [ stat ], this.levels)); + } return true; } } @@ -1716,10 +1755,12 @@ export class PostVictoryFormChangeAbAttr extends PostVictoryAbAttr { this.formFunc = formFunc; } - applyPostVictory(pokemon: Pokemon, passive: boolean, args: any[]): boolean | Promise { + applyPostVictory(pokemon: Pokemon, passive: boolean, simulated: boolean, args: any[]): boolean | Promise { const formIndex = this.formFunc(pokemon); if (formIndex !== pokemon.formIndex) { - pokemon.scene.triggerPokemonFormChange(pokemon, SpeciesFormChangeManualTrigger, false); + if (!simulated) { + pokemon.scene.triggerPokemonFormChange(pokemon, SpeciesFormChangeManualTrigger, false); + } return true; } @@ -1728,7 +1769,7 @@ export class PostVictoryFormChangeAbAttr extends PostVictoryAbAttr { } export class PostKnockOutAbAttr extends AbAttr { - applyPostKnockOut(pokemon: Pokemon, passive: boolean, knockedOut: Pokemon, args: any[]): boolean | Promise { + applyPostKnockOut(pokemon: Pokemon, passive: boolean, simulated: boolean, knockedOut: Pokemon, args: any[]): boolean | Promise { return false; } } @@ -1744,12 +1785,13 @@ export class PostKnockOutStatChangeAbAttr extends PostKnockOutAbAttr { this.levels = levels; } - applyPostKnockOut(pokemon: Pokemon, passive: boolean, knockedOut: Pokemon, args: any[]): boolean | Promise { + applyPostKnockOut(pokemon: Pokemon, passive: boolean, simulated: boolean, knockedOut: Pokemon, args: any[]): boolean | Promise { const stat = typeof this.stat === "function" ? this.stat(pokemon) : this.stat; - pokemon.scene.unshiftPhase(new StatChangePhase(pokemon.scene, pokemon.getBattlerIndex(), true, [ stat ], this.levels)); - + if (!simulated) { + pokemon.scene.unshiftPhase(new StatChangePhase(pokemon.scene, pokemon.getBattlerIndex(), true, [ stat ], this.levels)); + } return true; } } @@ -1759,10 +1801,12 @@ export class CopyFaintedAllyAbilityAbAttr extends PostKnockOutAbAttr { super(); } - applyPostKnockOut(pokemon: Pokemon, passive: boolean, knockedOut: Pokemon, args: any[]): boolean | Promise { + applyPostKnockOut(pokemon: Pokemon, passive: boolean, simulated: boolean, knockedOut: Pokemon, args: any[]): boolean | Promise { if (pokemon.isPlayer() === knockedOut.isPlayer() && !knockedOut.getAbility().hasAttr(UncopiableAbilityAbAttr)) { - pokemon.summonData.ability = knockedOut.getAbility().id; - pokemon.scene.queueMessage(i18next.t("abilityTriggers:copyFaintedAllyAbility", { pokemonNameWithAffix: getPokemonNameWithAffix(knockedOut), abilityName: allAbilities[knockedOut.getAbility().id].name })); + if (!simulated) { + pokemon.summonData.ability = knockedOut.getAbility().id; + pokemon.scene.queueMessage(i18next.t("abilityTriggers:copyFaintedAllyAbility", { pokemonNameWithAffix: getPokemonNameWithAffix(knockedOut), abilityName: allAbilities[knockedOut.getAbility().id].name })); + } return true; } @@ -1775,7 +1819,7 @@ export class IgnoreOpponentStatChangesAbAttr extends AbAttr { super(false); } - apply(pokemon: Pokemon, passive: boolean, cancelled: Utils.BooleanHolder, args: any[]) { + apply(pokemon: Pokemon, passive: boolean, simulated: boolean, cancelled: Utils.BooleanHolder, args: any[]) { (args[0] as Utils.IntegerHolder).value = 0; return true; @@ -1798,7 +1842,7 @@ export class IgnoreOpponentEvasionAbAttr extends AbAttr { * @param args [0] {@linkcode Utils.IntegerHolder} of BattleStat.EVA * @returns if evasion level was successfully considered as 0 */ - apply(pokemon: Pokemon, passive: boolean, cancelled: Utils.BooleanHolder, args: any[]) { + apply(pokemon: Pokemon, passive: boolean, simulated: boolean, cancelled: Utils.BooleanHolder, args: any[]) { (args[0] as Utils.IntegerHolder).value = 0; return true; } @@ -1809,7 +1853,7 @@ export class IntimidateImmunityAbAttr extends AbAttr { super(false); } - apply(pokemon: Pokemon, passive: boolean, cancelled: Utils.BooleanHolder, args: any[]): boolean { + apply(pokemon: Pokemon, passive: boolean, simulated: boolean, cancelled: Utils.BooleanHolder, args: any[]): boolean { cancelled.value = true; return true; } @@ -1834,8 +1878,10 @@ export class PostIntimidateStatChangeAbAttr extends AbAttr { this.overwrites = !!overwrites; } - apply(pokemon: Pokemon, passive: boolean, cancelled: Utils.BooleanHolder, args: any[]): boolean { - pokemon.scene.pushPhase(new StatChangePhase(pokemon.scene, pokemon.getBattlerIndex(), false, this.stats, this.levels)); + apply(pokemon: Pokemon, passive: boolean, simulated: boolean, cancelled: Utils.BooleanHolder, args: any[]): boolean { + if (!simulated) { + pokemon.scene.pushPhase(new StatChangePhase(pokemon.scene, pokemon.getBattlerIndex(), false, this.stats, this.levels)); + } cancelled.value = this.overwrites; return true; } @@ -1853,7 +1899,7 @@ export class PostSummonAbAttr extends AbAttr { * @param args Set of unique arguments needed by this attribute * @returns true if application of the ability succeeds */ - applyPostSummon(pokemon: Pokemon, passive: boolean, args: any[]): boolean | Promise { + applyPostSummon(pokemon: Pokemon, passive: boolean, simulated: boolean, args: any[]): boolean | Promise { return false; } } @@ -1872,9 +1918,11 @@ export class PostSummonRemoveArenaTagAbAttr extends PostSummonAbAttr { this.arenaTags = arenaTags; } - applyPostSummon(pokemon: Pokemon, passive: boolean, args: any[]): boolean | Promise { - for (const arenaTag of this.arenaTags) { - pokemon.scene.arena.removeTag(arenaTag); + applyPostSummon(pokemon: Pokemon, passive: boolean, simulated: boolean, args: any[]): boolean | Promise { + if (!simulated) { + for (const arenaTag of this.arenaTags) { + pokemon.scene.arena.removeTag(arenaTag); + } } return true; } @@ -1889,8 +1937,10 @@ export class PostSummonMessageAbAttr extends PostSummonAbAttr { this.messageFunc = messageFunc; } - applyPostSummon(pokemon: Pokemon, passive: boolean, args: any[]): boolean { - pokemon.scene.queueMessage(this.messageFunc(pokemon)); + applyPostSummon(pokemon: Pokemon, passive: boolean, simulated: boolean, args: any[]): boolean { + if (!simulated) { + pokemon.scene.queueMessage(this.messageFunc(pokemon)); + } return true; } @@ -1906,8 +1956,10 @@ export class PostSummonUnnamedMessageAbAttr extends PostSummonAbAttr { this.message = message; } - applyPostSummon(pokemon: Pokemon, passive: boolean, args: any[]): boolean { - pokemon.scene.queueMessage(this.message); + applyPostSummon(pokemon: Pokemon, passive: boolean, simulated: boolean, args: any[]): boolean { + if (!simulated) { + pokemon.scene.queueMessage(this.message); + } return true; } @@ -1924,8 +1976,12 @@ export class PostSummonAddBattlerTagAbAttr extends PostSummonAbAttr { this.turnCount = turnCount; } - applyPostSummon(pokemon: Pokemon, passive: boolean, args: any[]): boolean { - return pokemon.addTag(this.tagType, this.turnCount); + applyPostSummon(pokemon: Pokemon, passive: boolean, simulated: boolean, args: any[]): boolean { + if (simulated) { + return pokemon.canAddTag(this.tagType); + } else { + return pokemon.addTag(this.tagType, this.turnCount); + } } } @@ -1946,7 +2002,11 @@ export class PostSummonStatChangeAbAttr extends PostSummonAbAttr { this.intimidate = !!intimidate; } - applyPostSummon(pokemon: Pokemon, passive: boolean, args: any[]): boolean { + applyPostSummon(pokemon: Pokemon, passive: boolean, simulated: boolean, args: any[]): boolean { + if (simulated) { + return true; + } + queueShowAbility(pokemon, passive); // TODO: Better solution than manually showing the ability here if (this.selfTarget) { // we unshift the StatChangePhase to put it right after the showAbility and not at the end of the @@ -1957,8 +2017,8 @@ export class PostSummonStatChangeAbAttr extends PostSummonAbAttr { for (const opponent of pokemon.getOpponents()) { const cancelled = new Utils.BooleanHolder(false); if (this.intimidate) { - applyAbAttrs(IntimidateImmunityAbAttr, opponent, cancelled); - applyAbAttrs(PostIntimidateStatChangeAbAttr, opponent, cancelled); + applyAbAttrs(IntimidateImmunityAbAttr, opponent, cancelled, simulated); + applyAbAttrs(PostIntimidateStatChangeAbAttr, opponent, cancelled, simulated); } if (!cancelled.value) { const statChangePhase = new StatChangePhase(pokemon.scene, opponent.getBattlerIndex(), false, this.stats, this.levels); @@ -1980,11 +2040,14 @@ export class PostSummonAllyHealAbAttr extends PostSummonAbAttr { this.showAnim = showAnim; } - applyPostSummon(pokemon: Pokemon, passive: boolean, args: any[]): boolean { + applyPostSummon(pokemon: Pokemon, passive: boolean, simulated: boolean, args: any[]): boolean { const target = pokemon.getAlly(); if (target?.isActive(true)) { - target.scene.unshiftPhase(new PokemonHealPhase(target.scene, target.getBattlerIndex(), - Math.max(Math.floor(pokemon.getMaxHp() / this.healRatio), 1), i18next.t("abilityTriggers:postSummonAllyHeal", { pokemonNameWithAffix: getPokemonNameWithAffix(target), pokemonName: pokemon.name }), true, !this.showAnim)); + if (!simulated) { + target.scene.unshiftPhase(new PokemonHealPhase(target.scene, target.getBattlerIndex(), + Utils.toDmgValue(pokemon.getMaxHp() / this.healRatio), i18next.t("abilityTriggers:postSummonAllyHeal", { pokemonNameWithAffix: getPokemonNameWithAffix(target), pokemonName: pokemon.name }), true, !this.showAnim)); + } + return true; } @@ -2005,14 +2068,16 @@ export class PostSummonClearAllyStatsAbAttr extends PostSummonAbAttr { super(); } - applyPostSummon(pokemon: Pokemon, passive: boolean, args: any[]): boolean { + applyPostSummon(pokemon: Pokemon, passive: boolean, simulated: boolean, args: any[]): boolean { const target = pokemon.getAlly(); if (target?.isActive(true)) { - for (let s = 0; s < target.summonData.battleStats.length; s++) { - target.summonData.battleStats[s] = 0; - } + if (!simulated) { + for (let s = 0; s < target.summonData.battleStats.length; s++) { + target.summonData.battleStats[s] = 0; + } - target.scene.queueMessage(i18next.t("abilityTriggers:postSummonClearAllyStats", { pokemonNameWithAffix: getPokemonNameWithAffix(target) })); + target.scene.queueMessage(i18next.t("abilityTriggers:postSummonClearAllyStats", { pokemonNameWithAffix: getPokemonNameWithAffix(target) })); + } return true; } @@ -2043,7 +2108,7 @@ export class DownloadAbAttr extends PostSummonAbAttr { * @param {any[]} args N/A * @returns Returns true if ability is used successful, false if not. */ - applyPostSummon(pokemon: Pokemon, passive: boolean, args: any[]): boolean { + applyPostSummon(pokemon: Pokemon, passive: boolean, simulated: boolean, args: any[]): boolean { this.enemyDef = 0; this.enemySpDef = 0; this.enemyCountTally = 0; @@ -2063,7 +2128,9 @@ export class DownloadAbAttr extends PostSummonAbAttr { } if (this.enemyDef > 0 && this.enemySpDef > 0) { // only activate if there's actually an enemy to download from - pokemon.scene.unshiftPhase(new StatChangePhase(pokemon.scene, pokemon.getBattlerIndex(), false, this.stats, 1)); + if (!simulated) { + pokemon.scene.unshiftPhase(new StatChangePhase(pokemon.scene, pokemon.getBattlerIndex(), false, this.stats, 1)); + } return true; } @@ -2080,11 +2147,15 @@ export class PostSummonWeatherChangeAbAttr extends PostSummonAbAttr { this.weatherType = weatherType; } - applyPostSummon(pokemon: Pokemon, passive: boolean, args: any[]): boolean { + applyPostSummon(pokemon: Pokemon, passive: boolean, simulated: boolean, args: any[]): boolean { if ((this.weatherType === WeatherType.HEAVY_RAIN || this.weatherType === WeatherType.HARSH_SUN || this.weatherType === WeatherType.STRONG_WINDS) || !pokemon.scene.arena.weather?.isImmutable()) { - return pokemon.scene.arena.trySetWeather(this.weatherType, true); + if (simulated) { + return pokemon.scene.arena.weather?.weatherType !== this.weatherType; + } else { + return pokemon.scene.arena.trySetWeather(this.weatherType, true); + } } return false; @@ -2100,8 +2171,12 @@ export class PostSummonTerrainChangeAbAttr extends PostSummonAbAttr { this.terrainType = terrainType; } - applyPostSummon(pokemon: Pokemon, passive: boolean, args: any[]): boolean { - return pokemon.scene.arena.trySetTerrain(this.terrainType, true); + applyPostSummon(pokemon: Pokemon, passive: boolean, simulated: boolean, args: any[]): boolean { + if (simulated) { + return pokemon.scene.arena.terrain?.terrainType !== this.terrainType; + } else { + return pokemon.scene.arena.trySetTerrain(this.terrainType, true); + } } } @@ -2114,10 +2189,10 @@ export class PostSummonFormChangeAbAttr extends PostSummonAbAttr { this.formFunc = formFunc; } - applyPostSummon(pokemon: Pokemon, passive: boolean, args: any[]): boolean { + applyPostSummon(pokemon: Pokemon, passive: boolean, simulated: boolean, args: any[]): boolean { const formIndex = this.formFunc(pokemon); if (formIndex !== pokemon.formIndex) { - return pokemon.scene.triggerPokemonFormChange(pokemon, SpeciesFormChangeManualTrigger, false); + return simulated || pokemon.scene.triggerPokemonFormChange(pokemon, SpeciesFormChangeManualTrigger, false); } return false; @@ -2129,7 +2204,7 @@ export class PostSummonCopyAbilityAbAttr extends PostSummonAbAttr { private target: Pokemon; private targetAbilityName: string; - applyPostSummon(pokemon: Pokemon, passive: boolean, args: any[]): boolean { + applyPostSummon(pokemon: Pokemon, passive: boolean, simulated: boolean, args: any[]): boolean { const targets = pokemon.getOpponents(); if (!targets.length) { return false; @@ -2150,11 +2225,13 @@ export class PostSummonCopyAbilityAbAttr extends PostSummonAbAttr { return false; } - this.target = target!; - this.targetAbilityName = allAbilities[target!.getAbility().id].name; - pokemon.summonData.ability = target!.getAbility().id; - setAbilityRevealed(target!); - pokemon.updateInfo(); + if (!simulated) { + this.target = target!; + this.targetAbilityName = allAbilities[target!.getAbility().id].name; + pokemon.summonData.ability = target!.getAbility().id; + setAbilityRevealed(target!); + pokemon.updateInfo(); + } return true; } @@ -2191,7 +2268,7 @@ export class PostSummonUserFieldRemoveStatusEffectAbAttr extends PostSummonAbAtt * @param args - n/a * @returns A boolean or a promise that resolves to a boolean indicating the result of the ability application. */ - applyPostSummon(pokemon: Pokemon, passive: boolean, args: any[]): boolean | Promise { + applyPostSummon(pokemon: Pokemon, passive: boolean, simulated: boolean, args: any[]): boolean | Promise { const party = pokemon instanceof PlayerPokemon ? pokemon.scene.getPlayerField() : pokemon.scene.getEnemyField(); const allowedParty = party.filter(p => p.isAllowedInBattle()); @@ -2199,14 +2276,15 @@ export class PostSummonUserFieldRemoveStatusEffectAbAttr extends PostSummonAbAtt return false; } - for (const pokemon of allowedParty) { - if (pokemon.status && this.statusEffect.includes(pokemon.status.effect)) { - pokemon.scene.queueMessage(getStatusEffectHealText(pokemon.status.effect, getPokemonNameWithAffix(pokemon))); - pokemon.resetStatus(false); - pokemon.updateInfo(); + if (!simulated) { + for (const pokemon of allowedParty) { + if (pokemon.status && this.statusEffect.includes(pokemon.status.effect)) { + pokemon.scene.queueMessage(getStatusEffectHealText(pokemon.status.effect, getPokemonNameWithAffix(pokemon))); + pokemon.resetStatus(false); + pokemon.updateInfo(); + } } } - return true; } } @@ -2214,7 +2292,7 @@ export class PostSummonUserFieldRemoveStatusEffectAbAttr extends PostSummonAbAtt /** Attempt to copy the stat changes on an ally pokemon */ export class PostSummonCopyAllyStatsAbAttr extends PostSummonAbAttr { - applyPostSummon(pokemon: Pokemon, passive: boolean, args: any[]): boolean { + applyPostSummon(pokemon: Pokemon, passive: boolean, simulated: boolean, args: any[]): boolean { if (!pokemon.scene.currentBattle.double) { return false; } @@ -2224,8 +2302,10 @@ export class PostSummonCopyAllyStatsAbAttr extends PostSummonAbAttr { return false; } - pokemon.summonData.battleStats = ally.summonData.battleStats; - pokemon.updateInfo(); + if (!simulated) { + pokemon.summonData.battleStats = ally.summonData.battleStats; + pokemon.updateInfo(); + } return true; } @@ -2243,10 +2323,10 @@ export class PostSummonTransformAbAttr extends PostSummonAbAttr { super(true); } - applyPostSummon(pokemon: Pokemon, passive: boolean, args: any[]): boolean { + applyPostSummon(pokemon: Pokemon, passive: boolean, simulated: boolean, args: any[]): boolean { const targets = pokemon.getOpponents(); - if (!targets.length) { - return false; + if (simulated || !targets.length) { + return simulated; } let target: Pokemon; @@ -2267,7 +2347,7 @@ export class PostSummonTransformAbAttr extends PostSummonAbAttr { pokemon.summonData.moveset = target.getMoveset().map(m => new PokemonMove(m!.moveId, m!.ppUsed, m!.ppUp)); // TODO: are those bangs correct? pokemon.summonData.types = target.getTypes(); - pokemon.scene.playSound("PRSFX- Transform"); + pokemon.scene.playSound("battle_anims/PRSFX- Transform"); pokemon.loadAssets(false).then(() => pokemon.playAnim()); @@ -2277,21 +2357,91 @@ export class PostSummonTransformAbAttr extends PostSummonAbAttr { } } +/** + * Reverts weather-based forms to their normal forms when the user is summoned. + * Used by Cloud Nine and Air Lock. + * @extends PostSummonAbAttr + */ +export class PostSummonWeatherSuppressedFormChangeAbAttr extends PostSummonAbAttr { + /** + * Triggers {@linkcode Arena.triggerWeatherBasedFormChangesToNormal | triggerWeatherBasedFormChangesToNormal} + * @param {Pokemon} pokemon the Pokemon with this ability + * @param passive n/a + * @param args n/a + * @returns whether a Pokemon was reverted to its normal form + */ + applyPostSummon(pokemon: Pokemon, passive: boolean, simulated: boolean, args: any[]) { + const pokemonToTransform = getPokemonWithWeatherBasedForms(pokemon.scene); + + if (pokemonToTransform.length < 1) { + return false; + } + + if (!simulated) { + pokemon.scene.arena.triggerWeatherBasedFormChangesToNormal(); + } + + return true; + } +} + +/** + * Triggers weather-based form change when summoned into an active weather. + * Used by Forecast. + * @extends PostSummonAbAttr + */ +export class PostSummonFormChangeByWeatherAbAttr extends PostSummonAbAttr { + private ability: Abilities; + + constructor(ability: Abilities) { + super(false); + + this.ability = ability; + } + + /** + * Calls the {@linkcode BattleScene.triggerPokemonFormChange | triggerPokemonFormChange} for both + * {@linkcode SpeciesFormChange.SpeciesFormChangeWeatherTrigger | SpeciesFormChangeWeatherTrigger} and + * {@linkcode SpeciesFormChange.SpeciesFormChangeWeatherTrigger | SpeciesFormChangeRevertWeatherFormTrigger} if it + * is the specific Pokemon and ability + * @param {Pokemon} pokemon the Pokemon with this ability + * @param passive n/a + * @param args n/a + * @returns whether the form change was triggered + */ + applyPostSummon(pokemon: Pokemon, passive: boolean, simulated: boolean, args: any[]): boolean { + if (pokemon.species.speciesId === Species.CASTFORM && this.ability === Abilities.FORECAST) { + if (simulated) { + return simulated; + } + + pokemon.scene.triggerPokemonFormChange(pokemon, SpeciesFormChangeWeatherTrigger); + pokemon.scene.triggerPokemonFormChange(pokemon, SpeciesFormChangeRevertWeatherFormTrigger); + queueShowAbility(pokemon, passive); + return true; + } + return false; + } +} + export class PreSwitchOutAbAttr extends AbAttr { constructor() { super(true); } - applyPreSwitchOut(pokemon: Pokemon, passive: boolean, args: any[]): boolean | Promise { + applyPreSwitchOut(pokemon: Pokemon, passive: boolean, simulated: boolean, args: any[]): boolean | Promise { return false; } } export class PreSwitchOutResetStatusAbAttr extends PreSwitchOutAbAttr { - applyPreSwitchOut(pokemon: Pokemon, passive: boolean, args: any[]): boolean | Promise { + applyPreSwitchOut(pokemon: Pokemon, passive: boolean, simulated: boolean, args: any[]): boolean | Promise { if (pokemon.status) { - pokemon.resetStatus(); - pokemon.updateInfo(); + if (!simulated) { + pokemon.resetStatus(); + pokemon.updateInfo(); + } + return true; } @@ -2310,7 +2460,7 @@ export class PreSwitchOutClearWeatherAbAttr extends PreSwitchOutAbAttr { * @param args N/A * @returns {boolean} Returns true if the weather clears, otherwise false. */ - applyPreSwitchOut(pokemon: Pokemon, passive: boolean, args: any[]): boolean | Promise { + applyPreSwitchOut(pokemon: Pokemon, passive: boolean, simulated: boolean, args: any[]): boolean | Promise { const weatherType = pokemon.scene.arena.weather?.weatherType; let turnOffWeather = false; @@ -2336,6 +2486,10 @@ export class PreSwitchOutClearWeatherAbAttr extends PreSwitchOutAbAttr { break; } + if (simulated) { + return turnOffWeather; + } + if (turnOffWeather) { pokemon.scene.arena.trySetWeather(WeatherType.NONE, false); return true; @@ -2346,11 +2500,14 @@ export class PreSwitchOutClearWeatherAbAttr extends PreSwitchOutAbAttr { } export class PreSwitchOutHealAbAttr extends PreSwitchOutAbAttr { - applyPreSwitchOut(pokemon: Pokemon, passive: boolean, args: any[]): boolean | Promise { + applyPreSwitchOut(pokemon: Pokemon, passive: boolean, simulated: boolean, args: any[]): boolean | Promise { if (!pokemon.isFullHp()) { - const healAmount = Math.floor(pokemon.getMaxHp() * 0.33); - pokemon.heal(healAmount); - pokemon.updateInfo(); + if (!simulated) { + const healAmount = Utils.toDmgValue(pokemon.getMaxHp() * 0.33); + pokemon.heal(healAmount); + pokemon.updateInfo(); + } + return true; } @@ -2379,10 +2536,12 @@ export class PreSwitchOutFormChangeAbAttr extends PreSwitchOutAbAttr { * @param args N/A * @returns true if the form change was successful */ - applyPreSwitchOut(pokemon: Pokemon, passive: boolean, args: any[]): boolean | Promise { + applyPreSwitchOut(pokemon: Pokemon, passive: boolean, simulated: boolean, args: any[]): boolean | Promise { const formIndex = this.formFunc(pokemon); if (formIndex !== pokemon.formIndex) { - pokemon.scene.triggerPokemonFormChange(pokemon, SpeciesFormChangeManualTrigger, false); + if (!simulated) { + pokemon.scene.triggerPokemonFormChange(pokemon, SpeciesFormChangeManualTrigger, false); + } return true; } @@ -2392,7 +2551,7 @@ export class PreSwitchOutFormChangeAbAttr extends PreSwitchOutAbAttr { } export class PreStatChangeAbAttr extends AbAttr { - applyPreStatChange(pokemon: Pokemon | null, passive: boolean, stat: BattleStat, cancelled: Utils.BooleanHolder, args: any[]): boolean | Promise { + applyPreStatChange(pokemon: Pokemon | null, passive: boolean, simulated: boolean, stat: BattleStat, cancelled: Utils.BooleanHolder, args: any[]): boolean | Promise { return false; } } @@ -2406,7 +2565,7 @@ export class ProtectStatAbAttr extends PreStatChangeAbAttr { this.protectedStat = protectedStat; } - applyPreStatChange(pokemon: Pokemon, passive: boolean, stat: BattleStat, cancelled: Utils.BooleanHolder, args: any[]): boolean { + applyPreStatChange(pokemon: Pokemon, passive: boolean, simulated: boolean, stat: BattleStat, cancelled: Utils.BooleanHolder, args: any[]): boolean { if (Utils.isNullOrUndefined(this.protectedStat) || stat === this.protectedStat) { cancelled.value = true; return true; @@ -2450,16 +2609,20 @@ export class ConfusionOnStatusEffectAbAttr extends PostAttackAbAttr { * @param args [0] {@linkcode StatusEffect} applied by move * @returns true if defender is confused */ - applyPostAttackAfterMoveTypeCheck(pokemon: Pokemon, passive: boolean, defender: Pokemon, move: Move, hitResult: HitResult, args: any[]): boolean { + applyPostAttackAfterMoveTypeCheck(pokemon: Pokemon, passive: boolean, simulated: boolean, defender: Pokemon, move: Move, hitResult: HitResult, args: any[]): boolean { if (this.effects.indexOf(args[0]) > -1 && !defender.isFainted()) { - return defender.addTag(BattlerTagType.CONFUSED, pokemon.randSeedInt(3,2), move.id, defender.id); + if (simulated) { + return defender.canAddTag(BattlerTagType.CONFUSED); + } else { + return defender.addTag(BattlerTagType.CONFUSED, pokemon.randSeedInt(3, 2), move.id, defender.id); + } } return false; } } export class PreSetStatusAbAttr extends AbAttr { - applyPreSetStatus(pokemon: Pokemon, passive: boolean, effect: StatusEffect | undefined, cancelled: Utils.BooleanHolder, args: any[]): boolean | Promise { + applyPreSetStatus(pokemon: Pokemon, passive: boolean, simulated: boolean, effect: StatusEffect | undefined, cancelled: Utils.BooleanHolder, args: any[]): boolean | Promise { return false; } } @@ -2489,7 +2652,7 @@ export class PreSetStatusEffectImmunityAbAttr extends PreSetStatusAbAttr { * @param args - n/a * @returns A boolean indicating the result of the status application. */ - applyPreSetStatus(pokemon: Pokemon, passive: boolean, effect: StatusEffect, cancelled: Utils.BooleanHolder, args: any[]): boolean { + applyPreSetStatus(pokemon: Pokemon, passive: boolean, simulated: boolean, effect: StatusEffect, cancelled: Utils.BooleanHolder, args: any[]): boolean { if (this.immuneEffects.length < 1 || this.immuneEffects.includes(effect)) { cancelled.value = true; return true; @@ -2525,7 +2688,7 @@ export class StatusEffectImmunityAbAttr extends PreSetStatusEffectImmunityAbAttr export class UserFieldStatusEffectImmunityAbAttr extends PreSetStatusEffectImmunityAbAttr { } export class PreApplyBattlerTagAbAttr extends AbAttr { - applyPreApplyBattlerTag(pokemon: Pokemon, passive: boolean, tag: BattlerTag, cancelled: Utils.BooleanHolder, args: any[]): boolean | Promise { + applyPreApplyBattlerTag(pokemon: Pokemon, passive: boolean, simulated: boolean, tag: BattlerTag, cancelled: Utils.BooleanHolder, args: any[]): boolean | Promise { return false; } } @@ -2543,10 +2706,12 @@ export class PreApplyBattlerTagImmunityAbAttr extends PreApplyBattlerTagAbAttr { this.immuneTagType = immuneTagType; } - applyPreApplyBattlerTag(pokemon: Pokemon, passive: boolean, tag: BattlerTag, cancelled: Utils.BooleanHolder, args: any[]): boolean { + applyPreApplyBattlerTag(pokemon: Pokemon, passive: boolean, simulated: boolean, tag: BattlerTag, cancelled: Utils.BooleanHolder, args: any[]): boolean { if (tag.tagType === this.immuneTagType) { cancelled.value = true; - this.battlerTag = tag; + if (!simulated) { + this.battlerTag = tag; + } return true; } @@ -2575,14 +2740,14 @@ export class BattlerTagImmunityAbAttr extends PreApplyBattlerTagImmunityAbAttr { export class UserFieldBattlerTagImmunityAbAttr extends PreApplyBattlerTagImmunityAbAttr { } export class BlockCritAbAttr extends AbAttr { - apply(pokemon: Pokemon, passive: boolean, cancelled: Utils.BooleanHolder, args: any[]): boolean { + apply(pokemon: Pokemon, passive: boolean, simulated: boolean, cancelled: Utils.BooleanHolder, args: any[]): boolean { (args[0] as Utils.BooleanHolder).value = true; return true; } } export class BonusCritAbAttr extends AbAttr { - apply(pokemon: Pokemon, passive: boolean, cancelled: Utils.BooleanHolder, args: any[]): boolean { + apply(pokemon: Pokemon, passive: boolean, simulated: boolean, cancelled: Utils.BooleanHolder, args: any[]): boolean { (args[0] as Utils.BooleanHolder).value = true; return true; } @@ -2597,7 +2762,7 @@ export class MultCritAbAttr extends AbAttr { this.multAmount = multAmount; } - apply(pokemon: Pokemon, passive: boolean, cancelled: Utils.BooleanHolder, args: any[]): boolean { + apply(pokemon: Pokemon, passive: boolean, simulated: boolean, cancelled: Utils.BooleanHolder, args: any[]): boolean { const critMult = args[0] as Utils.NumberHolder; if (critMult.value > 1) { critMult.value *= this.multAmount; @@ -2628,10 +2793,10 @@ export class ConditionalCritAbAttr extends AbAttr { * [1] {@linkcode Pokemon} Target. * [2] {@linkcode Move} used by ability user. */ - apply(pokemon: Pokemon, passive: boolean, cancelled: Utils.BooleanHolder, args: any[]): boolean { + apply(pokemon: Pokemon, passive: boolean, simulated: boolean, cancelled: Utils.BooleanHolder, args: any[]): boolean { const target = (args[1] as Pokemon); const move = (args[2] as Move); - if (!this.condition(pokemon,target,move)) { + if (!this.condition(pokemon, target, move)) { return false; } @@ -2641,7 +2806,7 @@ export class ConditionalCritAbAttr extends AbAttr { } export class BlockNonDirectDamageAbAttr extends AbAttr { - apply(pokemon: Pokemon, passive: boolean, cancelled: Utils.BooleanHolder, args: any[]): boolean { + apply(pokemon: Pokemon, passive: boolean, simulated: boolean, cancelled: Utils.BooleanHolder, args: any[]): boolean { cancelled.value = true; return true; } @@ -2669,7 +2834,7 @@ export class BlockStatusDamageAbAttr extends AbAttr { * @param {any[]} args N/A * @returns Returns true if status damage is blocked */ - apply(pokemon: Pokemon, passive: boolean, cancelled: Utils.BooleanHolder, args: any[]): boolean { + apply(pokemon: Pokemon, passive: boolean, simulated: boolean, cancelled: Utils.BooleanHolder, args: any[]): boolean { if (pokemon.status && this.effects.includes(pokemon.status.effect)) { cancelled.value = true; return true; @@ -2679,7 +2844,7 @@ export class BlockStatusDamageAbAttr extends AbAttr { } export class BlockOneHitKOAbAttr extends AbAttr { - apply(pokemon: Pokemon, passive: boolean, cancelled: Utils.BooleanHolder, args: any[]): boolean { + apply(pokemon: Pokemon, passive: boolean, simulated: boolean, cancelled: Utils.BooleanHolder, args: any[]): boolean { cancelled.value = true; return true; } @@ -2705,7 +2870,7 @@ export class ChangeMovePriorityAbAttr extends AbAttr { this.changeAmount = changeAmount; } - apply(pokemon: Pokemon, passive: boolean, cancelled: Utils.BooleanHolder, args: any[]): boolean { + apply(pokemon: Pokemon, passive: boolean, simulated: boolean, cancelled: Utils.BooleanHolder, args: any[]): boolean { if (!this.moveFunc(pokemon, args[0] as Move)) { return false; } @@ -2718,7 +2883,7 @@ export class ChangeMovePriorityAbAttr extends AbAttr { export class IgnoreContactAbAttr extends AbAttr { } export class PreWeatherEffectAbAttr extends AbAttr { - applyPreWeatherEffect(pokemon: Pokemon, passive: boolean, weather: Weather | null, cancelled: Utils.BooleanHolder, args: any[]): boolean | Promise { + applyPreWeatherEffect(pokemon: Pokemon, passive: Boolean, simulated: boolean, weather: Weather | null, cancelled: Utils.BooleanHolder, args: any[]): boolean | Promise { return false; } } @@ -2734,7 +2899,7 @@ export class BlockWeatherDamageAttr extends PreWeatherDamageAbAttr { this.weatherTypes = weatherTypes; } - applyPreWeatherEffect(pokemon: Pokemon, passive: boolean, weather: Weather, cancelled: Utils.BooleanHolder, args: any[]): boolean { + applyPreWeatherEffect(pokemon: Pokemon, passive: boolean, simulated: boolean, weather: Weather, cancelled: Utils.BooleanHolder, args: any[]): boolean { if (!this.weatherTypes.length || this.weatherTypes.indexOf(weather?.weatherType) > -1) { cancelled.value = true; } @@ -2752,7 +2917,7 @@ export class SuppressWeatherEffectAbAttr extends PreWeatherEffectAbAttr { this.affectsImmutable = !!affectsImmutable; } - applyPreWeatherEffect(pokemon: Pokemon, passive: boolean, weather: Weather, cancelled: Utils.BooleanHolder, args: any[]): boolean { + applyPreWeatherEffect(pokemon: Pokemon, passive: boolean, simulated: boolean, weather: Weather, cancelled: Utils.BooleanHolder, args: any[]): boolean { if (this.affectsImmutable || weather.isImmutable()) { cancelled.value = true; return true; @@ -2808,16 +2973,20 @@ function getAnticipationCondition(): AbAttrCondition { return (pokemon: Pokemon) => { for (const opponent of pokemon.getOpponents()) { for (const move of opponent.moveset) { - // move is super effective - if (move!.getMove() instanceof AttackMove && pokemon.getAttackTypeEffectiveness(move!.getMove().type, opponent, true) >= 2) { // TODO: is this bang correct? + // ignore null/undefined moves + if (!move) { + continue; + } + // the move's base type (not accounting for variable type changes) is super effective + if (move.getMove() instanceof AttackMove && pokemon.getAttackTypeEffectiveness(move.getMove().type, opponent, true) >= 2) { return true; } // move is a OHKO - if (move?.getMove().hasAttr(OneHitKOAttr)) { + if (move.getMove().hasAttr(OneHitKOAttr)) { return true; } // edge case for hidden power, type is computed - if (move?.getMove().id === Moves.HIDDEN_POWER) { + if (move.getMove().id === Moves.HIDDEN_POWER) { const iv_val = Math.floor(((opponent.ivs[Stat.HP] & 1) +(opponent.ivs[Stat.ATK] & 1) * 2 +(opponent.ivs[Stat.DEF] & 1) * 4 @@ -2859,7 +3028,7 @@ export class ForewarnAbAttr extends PostSummonAbAttr { super(true); } - applyPostSummon(pokemon: Pokemon, passive: boolean, args: any[]): boolean { + applyPostSummon(pokemon: Pokemon, passive: boolean, simulated: boolean, args: any[]): boolean { let maxPowerSeen = 0; let maxMove = ""; let movePower = 0; @@ -2883,7 +3052,9 @@ export class ForewarnAbAttr extends PostSummonAbAttr { } } } - pokemon.scene.queueMessage(i18next.t("abilityTriggers:forewarn", { pokemonNameWithAffix: getPokemonNameWithAffix(pokemon), moveName: maxMove })); + if (!simulated) { + pokemon.scene.queueMessage(i18next.t("abilityTriggers:forewarn", { pokemonNameWithAffix: getPokemonNameWithAffix(pokemon), moveName: maxMove })); + } return true; } } @@ -2893,17 +3064,62 @@ export class FriskAbAttr extends PostSummonAbAttr { super(true); } - applyPostSummon(pokemon: Pokemon, passive: boolean, args: any[]): boolean { - for (const opponent of pokemon.getOpponents()) { - pokemon.scene.queueMessage(i18next.t("abilityTriggers:frisk", { pokemonNameWithAffix: getPokemonNameWithAffix(pokemon), opponentName: opponent.name, opponentAbilityName: opponent.getAbility().name })); - setAbilityRevealed(opponent); + applyPostSummon(pokemon: Pokemon, passive: boolean, simulated: boolean, args: any[]): boolean { + if (!simulated) { + for (const opponent of pokemon.getOpponents()) { + pokemon.scene.queueMessage(i18next.t("abilityTriggers:frisk", { pokemonNameWithAffix: getPokemonNameWithAffix(pokemon), opponentName: opponent.name, opponentAbilityName: opponent.getAbility().name })); + setAbilityRevealed(opponent); + } } return true; } } export class PostWeatherChangeAbAttr extends AbAttr { - applyPostWeatherChange(pokemon: Pokemon, passive: boolean, weather: WeatherType, args: any[]): boolean { + applyPostWeatherChange(pokemon: Pokemon, passive: boolean, simulated: boolean, weather: WeatherType, args: any[]): boolean { + return false; + } +} + +/** + * Triggers weather-based form change when weather changes. + * Used by Forecast. + * @extends PostWeatherChangeAbAttr + */ +export class PostWeatherChangeFormChangeAbAttr extends PostWeatherChangeAbAttr { + private ability: Abilities; + + constructor(ability: Abilities) { + super(false); + + this.ability = ability; + } + + /** + * Calls {@linkcode Arena.triggerWeatherBasedFormChangesToNormal | triggerWeatherBasedFormChangesToNormal} when the + * weather changed to form-reverting weather, otherwise calls {@linkcode Arena.triggerWeatherBasedFormChanges | triggerWeatherBasedFormChanges} + * @param {Pokemon} pokemon the Pokemon that changed the weather + * @param passive n/a + * @param weather n/a + * @param args n/a + * @returns whether the form change was triggered + */ + applyPostWeatherChange(pokemon: Pokemon, passive: boolean, simulated: boolean, weather: WeatherType, args: any[]): boolean { + if (pokemon.species.speciesId === Species.CASTFORM && this.ability === Abilities.FORECAST) { + if (simulated) { + return simulated; + } + + const formRevertingWeathers: WeatherType[] = [ WeatherType.NONE, WeatherType.SANDSTORM, WeatherType.STRONG_WINDS, WeatherType.FOG ]; + const weatherType = pokemon.scene.arena.weather?.weatherType; + + if (weatherType && formRevertingWeathers.includes(weatherType)) { + pokemon.scene.arena.triggerWeatherBasedFormChangesToNormal(); + } else { + pokemon.scene.arena.triggerWeatherBasedFormChanges(); + } + return true; + } return false; } } @@ -2921,13 +3137,17 @@ export class PostWeatherChangeAddBattlerTagAttr extends PostWeatherChangeAbAttr this.weatherTypes = weatherTypes; } - applyPostWeatherChange(pokemon: Pokemon, passive: boolean, weather: WeatherType, args: any[]): boolean { + applyPostWeatherChange(pokemon: Pokemon, passive: boolean, simulated: boolean, weather: WeatherType, args: any[]): boolean { console.log(this.weatherTypes.find(w => weather === w), WeatherType[weather]); if (!this.weatherTypes.find(w => weather === w)) { return false; } - return pokemon.addTag(this.tagType, this.turnCount); + if (simulated) { + return pokemon.canAddTag(this.tagType); + } else { + return pokemon.addTag(this.tagType, this.turnCount); + } } } @@ -2940,7 +3160,7 @@ export class PostWeatherLapseAbAttr extends AbAttr { this.weatherTypes = weatherTypes; } - applyPostWeatherLapse(pokemon: Pokemon, passive: boolean, weather: Weather | null, args: any[]): boolean | Promise { + applyPostWeatherLapse(pokemon: Pokemon, passive: boolean, simulated: boolean, weather: Weather | null, args: any[]): boolean | Promise { return false; } @@ -2958,12 +3178,14 @@ export class PostWeatherLapseHealAbAttr extends PostWeatherLapseAbAttr { this.healFactor = healFactor; } - applyPostWeatherLapse(pokemon: Pokemon, passive: boolean, weather: Weather, args: any[]): boolean { + applyPostWeatherLapse(pokemon: Pokemon, passive: boolean, simulated: boolean, weather: Weather, args: any[]): boolean { if (!pokemon.isFullHp()) { const scene = pokemon.scene; const abilityName = (!passive ? pokemon.getAbility() : pokemon.getPassiveAbility()).name; - scene.unshiftPhase(new PokemonHealPhase(scene, pokemon.getBattlerIndex(), - Math.max(Math.floor(pokemon.getMaxHp() / (16 / this.healFactor)), 1), i18next.t("abilityTriggers:postWeatherLapseHeal", { pokemonNameWithAffix: getPokemonNameWithAffix(pokemon), abilityName }), true)); + if (!simulated) { + scene.unshiftPhase(new PokemonHealPhase(scene, pokemon.getBattlerIndex(), + Utils.toDmgValue(pokemon.getMaxHp() / (16 / this.healFactor)), i18next.t("abilityTriggers:postWeatherLapseHeal", { pokemonNameWithAffix: getPokemonNameWithAffix(pokemon), abilityName }), true)); + } return true; } @@ -2980,20 +3202,24 @@ export class PostWeatherLapseDamageAbAttr extends PostWeatherLapseAbAttr { this.damageFactor = damageFactor; } - applyPostWeatherLapse(pokemon: Pokemon, passive: boolean, weather: Weather, args: any[]): boolean { + applyPostWeatherLapse(pokemon: Pokemon, passive: boolean, simulated: boolean, weather: Weather, args: any[]): boolean { const scene = pokemon.scene; if (pokemon.hasAbilityWithAttr(BlockNonDirectDamageAbAttr)) { return false; } - const abilityName = (!passive ? pokemon.getAbility() : pokemon.getPassiveAbility()).name; - scene.queueMessage(i18next.t("abilityTriggers:postWeatherLapseDamage", { pokemonNameWithAffix: getPokemonNameWithAffix(pokemon), abilityName })); - pokemon.damageAndUpdate(Math.ceil(pokemon.getMaxHp() / (16 / this.damageFactor)), HitResult.OTHER); + + if (!simulated) { + const abilityName = (!passive ? pokemon.getAbility() : pokemon.getPassiveAbility()).name; + scene.queueMessage(i18next.t("abilityTriggers:postWeatherLapseDamage", { pokemonNameWithAffix: getPokemonNameWithAffix(pokemon), abilityName })); + pokemon.damageAndUpdate(Utils.toDmgValue(pokemon.getMaxHp() / (16 / this.damageFactor)), HitResult.OTHER); + } + return true; } } export class PostTerrainChangeAbAttr extends AbAttr { - applyPostTerrainChange(pokemon: Pokemon, passive: boolean, terrain: TerrainType, args: any[]): boolean { + applyPostTerrainChange(pokemon: Pokemon, passive: boolean, simulated: boolean, terrain: TerrainType, args: any[]): boolean { return false; } } @@ -3011,12 +3237,16 @@ export class PostTerrainChangeAddBattlerTagAttr extends PostTerrainChangeAbAttr this.terrainTypes = terrainTypes; } - applyPostTerrainChange(pokemon: Pokemon, passive: boolean, terrain: TerrainType, args: any[]): boolean { + applyPostTerrainChange(pokemon: Pokemon, passive: boolean, simulated: boolean, terrain: TerrainType, args: any[]): boolean { if (!this.terrainTypes.find(t => t === terrain)) { return false; } - return pokemon.addTag(this.tagType, this.turnCount); + if (simulated) { + return pokemon.canAddTag(this.tagType); + } else { + return pokemon.addTag(this.tagType, this.turnCount); + } } } @@ -3028,7 +3258,7 @@ function getTerrainCondition(...terrainTypes: TerrainType[]): AbAttrCondition { } export class PostTurnAbAttr extends AbAttr { - applyPostTurn(pokemon: Pokemon, passive: boolean, args: any[]): boolean | Promise { + applyPostTurn(pokemon: Pokemon, passive: boolean, simulated: boolean, args: any[]): boolean | Promise { return false; } } @@ -3054,13 +3284,15 @@ export class PostTurnStatusHealAbAttr extends PostTurnAbAttr { * @param {any[]} args N/A * @returns Returns true if healed from status, false if not */ - applyPostTurn(pokemon: Pokemon, passive: boolean, args: any[]): boolean | Promise { + applyPostTurn(pokemon: Pokemon, passive: boolean, simulated: boolean, args: any[]): boolean | Promise { if (pokemon.status && this.effects.includes(pokemon.status.effect)) { if (!pokemon.isFullHp()) { - const scene = pokemon.scene; - const abilityName = (!passive ? pokemon.getAbility() : pokemon.getPassiveAbility()).name; - scene.unshiftPhase(new PokemonHealPhase(scene, pokemon.getBattlerIndex(), - Math.max(Math.floor(pokemon.getMaxHp() / 8), 1), i18next.t("abilityTriggers:poisonHeal", { pokemonName: getPokemonNameWithAffix(pokemon), abilityName }), true)); + if (!simulated) { + const scene = pokemon.scene; + const abilityName = (!passive ? pokemon.getAbility() : pokemon.getPassiveAbility()).name; + scene.unshiftPhase(new PokemonHealPhase(scene, pokemon.getBattlerIndex(), + Utils.toDmgValue(pokemon.getMaxHp() / 8), i18next.t("abilityTriggers:poisonHeal", { pokemonName: getPokemonNameWithAffix(pokemon), abilityName }), true)); + } return true; } } @@ -3081,17 +3313,19 @@ export class PostTurnResetStatusAbAttr extends PostTurnAbAttr { this.allyTarget = allyTarget; } - applyPostTurn(pokemon: Pokemon, passive: boolean, args: any[]): boolean { + applyPostTurn(pokemon: Pokemon, passive: boolean, simulated: boolean, args: any[]): boolean { if (this.allyTarget) { this.target = pokemon.getAlly(); } else { this.target = pokemon; } if (this.target?.status) { + if (!simulated) { + this.target.scene.queueMessage(getStatusEffectHealText(this.target.status?.effect, getPokemonNameWithAffix(this.target))); + this.target.resetStatus(false); + this.target.updateInfo(); + } - this.target.scene.queueMessage(getStatusEffectHealText(this.target.status?.effect, getPokemonNameWithAffix(this.target))); - this.target.resetStatus(false); - this.target.updateInfo(); return true; } @@ -3116,7 +3350,7 @@ export class PostTurnLootAbAttr extends PostTurnAbAttr { super(); } - applyPostTurn(pokemon: Pokemon, passive: boolean, args: any[]): boolean { + applyPostTurn(pokemon: Pokemon, passive: boolean, simulated: boolean, args: any[]): boolean { const pass = Phaser.Math.RND.realInRange(0, 1); // Clamp procChance to [0, 1]. Skip if didn't proc (less than pass) if (Math.max(Math.min(this.procChance(pokemon), 1), 0) < pass) { @@ -3124,7 +3358,7 @@ export class PostTurnLootAbAttr extends PostTurnAbAttr { } if (this.itemType === "EATEN_BERRIES") { - return this.createEatenBerry(pokemon); + return this.createEatenBerry(pokemon, simulated); } else { return false; } @@ -3133,15 +3367,20 @@ export class PostTurnLootAbAttr extends PostTurnAbAttr { /** * Create a new berry chosen randomly from the berries the pokemon ate this battle * @param pokemon The pokemon with this ability + * @param simulated whether the associated ability call is simulated * @returns whether a new berry was created */ - createEatenBerry(pokemon: Pokemon): boolean { + createEatenBerry(pokemon: Pokemon, simulated: boolean): boolean { const berriesEaten = pokemon.battleData.berriesEaten; if (!berriesEaten.length) { return false; } + if (simulated) { + return true; + } + const randomIdx = Utils.randSeedInt(berriesEaten.length); const chosenBerryType = berriesEaten[randomIdx]; const chosenBerry = new BerryModifierType(chosenBerryType); @@ -3170,23 +3409,37 @@ export class PostTurnLootAbAttr extends PostTurnAbAttr { } } +/** + * Attribute used for {@linkcode Abilities.MOODY} + */ export class MoodyAbAttr extends PostTurnAbAttr { constructor() { super(true); } - - applyPostTurn(pokemon: Pokemon, passive: boolean, args: any[]): boolean { + /** + * Randomly increases one BattleStat by 2 stages and decreases a different BattleStat by 1 stage + * @param {Pokemon} pokemon Pokemon that has this ability + * @param passive N/A + * @param simulated true if applying in a simulated call. + * @param args N/A + * @returns true + * + * Any BattleStats at +6 or -6 are excluded from being increased or decreased, respectively + * If the pokemon already has all BattleStats raised to stage 6, it will only decrease one BattleStat by 1 stage + * If the pokemon already has all BattleStats lowered to stage -6, it will only increase one BattleStat by 2 stages + */ + applyPostTurn(pokemon: Pokemon, passive: boolean, simulated: boolean, args: any[]): boolean { const selectableStats = [BattleStat.ATK, BattleStat.DEF, BattleStat.SPATK, BattleStat.SPDEF, BattleStat.SPD]; const increaseStatArray = selectableStats.filter(s => pokemon.summonData.battleStats[s] < 6); let decreaseStatArray = selectableStats.filter(s => pokemon.summonData.battleStats[s] > -6); - if (increaseStatArray.length > 0) { + if (!simulated && increaseStatArray.length > 0) { const increaseStat = increaseStatArray[Utils.randInt(increaseStatArray.length)]; decreaseStatArray = decreaseStatArray.filter(s => s !== increaseStat); pokemon.scene.unshiftPhase(new StatChangePhase(pokemon.scene, pokemon.getBattlerIndex(), true, [increaseStat], 2)); } - if (decreaseStatArray.length > 0) { - const decreaseStat = selectableStats[Utils.randInt(selectableStats.length)]; + if (!simulated && decreaseStatArray.length > 0) { + const decreaseStat = decreaseStatArray[Utils.randInt(decreaseStatArray.length)]; pokemon.scene.unshiftPhase(new StatChangePhase(pokemon.scene, pokemon.getBattlerIndex(), true, [decreaseStat], -1)); } return true; @@ -3206,19 +3459,24 @@ export class PostTurnStatChangeAbAttr extends PostTurnAbAttr { this.levels = levels; } - applyPostTurn(pokemon: Pokemon, passive: boolean, args: any[]): boolean { - pokemon.scene.unshiftPhase(new StatChangePhase(pokemon.scene, pokemon.getBattlerIndex(), true, this.stats, this.levels)); + applyPostTurn(pokemon: Pokemon, passive: boolean, simulated: boolean, args: any[]): boolean { + if (!simulated) { + pokemon.scene.unshiftPhase(new StatChangePhase(pokemon.scene, pokemon.getBattlerIndex(), true, this.stats, this.levels)); + } return true; } } export class PostTurnHealAbAttr extends PostTurnAbAttr { - applyPostTurn(pokemon: Pokemon, passive: boolean, args: any[]): boolean { + applyPostTurn(pokemon: Pokemon, passive: boolean, simulated: boolean, args: any[]): boolean { if (!pokemon.isFullHp()) { - const scene = pokemon.scene; - const abilityName = (!passive ? pokemon.getAbility() : pokemon.getPassiveAbility()).name; - scene.unshiftPhase(new PokemonHealPhase(scene, pokemon.getBattlerIndex(), - Math.max(Math.floor(pokemon.getMaxHp() / 16), 1), i18next.t("abilityTriggers:postTurnHeal", { pokemonNameWithAffix: getPokemonNameWithAffix(pokemon), abilityName }), true)); + if (!simulated) { + const scene = pokemon.scene; + const abilityName = (!passive ? pokemon.getAbility() : pokemon.getPassiveAbility()).name; + scene.unshiftPhase(new PokemonHealPhase(scene, pokemon.getBattlerIndex(), + Utils.toDmgValue(pokemon.getMaxHp() / 16), i18next.t("abilityTriggers:postTurnHeal", { pokemonNameWithAffix: getPokemonNameWithAffix(pokemon), abilityName }), true)); + } + return true; } @@ -3235,10 +3493,13 @@ export class PostTurnFormChangeAbAttr extends PostTurnAbAttr { this.formFunc = formFunc; } - applyPostTurn(pokemon: Pokemon, passive: boolean, args: any[]): boolean { + applyPostTurn(pokemon: Pokemon, passive: boolean, simulated: boolean, args: any[]): boolean { const formIndex = this.formFunc(pokemon); if (formIndex !== pokemon.formIndex) { - pokemon.scene.triggerPokemonFormChange(pokemon, SpeciesFormChangeManualTrigger, false); + if (!simulated) { + pokemon.scene.triggerPokemonFormChange(pokemon, SpeciesFormChangeManualTrigger, false); + } + return true; } @@ -3256,15 +3517,18 @@ export class PostTurnHurtIfSleepingAbAttr extends PostTurnAbAttr { * Deals damage to all sleeping opponents equal to 1/8 of their max hp (min 1) * @param {Pokemon} pokemon Pokemon that has this ability * @param {boolean} passive N/A + * @param {boolean} simulated true if applying in a simulated call. * @param {any[]} args N/A * @returns {boolean} true if any opponents are sleeping */ - applyPostTurn(pokemon: Pokemon, passive: boolean, args: any[]): boolean | Promise { + applyPostTurn(pokemon: Pokemon, passive: boolean, simulated: boolean, args: any[]): boolean | Promise { let hadEffect: boolean = false; for (const opp of pokemon.getOpponents()) { if ((opp.status?.effect === StatusEffect.SLEEP || opp.hasAbility(Abilities.COMATOSE)) && !opp.hasAbilityWithAttr(BlockNonDirectDamageAbAttr)) { - opp.damageAndUpdate(Math.floor(Math.max(1, opp.getMaxHp() / 8)), HitResult.OTHER); - pokemon.scene.queueMessage(i18next.t("abilityTriggers:badDreams", {pokemonName: getPokemonNameWithAffix(opp)})); + if (!simulated) { + opp.damageAndUpdate(Utils.toDmgValue(opp.getMaxHp() / 8), HitResult.OTHER); + pokemon.scene.queueMessage(i18next.t("abilityTriggers:badDreams", {pokemonName: getPokemonNameWithAffix(opp)})); + } hadEffect = true; } @@ -3289,7 +3553,10 @@ export class FetchBallAbAttr extends PostTurnAbAttr { * @param args N/A * @returns true if player has used a pokeball and this pokemon is owned by the player */ - applyPostTurn(pokemon: Pokemon, passive: boolean, args: any[]): boolean { + applyPostTurn(pokemon: Pokemon, passive: boolean, simulated: boolean, args: any[]): boolean { + if (simulated) { + return false; + } const lastUsed = pokemon.scene.currentBattle.lastUsedPokeball; if (lastUsed !== null && !!pokemon.isPlayer) { pokemon.scene.pokeballCounts[lastUsed]++; @@ -3312,9 +3579,13 @@ export class PostBiomeChangeWeatherChangeAbAttr extends PostBiomeChangeAbAttr { this.weatherType = weatherType; } - apply(pokemon: Pokemon, passive: boolean, cancelled: Utils.BooleanHolder, args: any[]): boolean { + apply(pokemon: Pokemon, passive: boolean, simulated: boolean, cancelled: Utils.BooleanHolder, args: any[]): boolean { if (!pokemon.scene.arena.weather?.isImmutable()) { - return pokemon.scene.arena.trySetWeather(this.weatherType, true); + if (simulated) { + return pokemon.scene.arena.weather?.weatherType !== this.weatherType; + } else { + return pokemon.scene.arena.trySetWeather(this.weatherType, true); + } } return false; @@ -3330,8 +3601,12 @@ export class PostBiomeChangeTerrainChangeAbAttr extends PostBiomeChangeAbAttr { this.terrainType = terrainType; } - apply(pokemon: Pokemon, passive: boolean, cancelled: Utils.BooleanHolder, args: any[]): boolean { - return pokemon.scene.arena.trySetTerrain(this.terrainType, true); + apply(pokemon: Pokemon, passive: boolean, simulated: boolean, cancelled: Utils.BooleanHolder, args: any[]): boolean { + if (simulated) { + return pokemon.scene.arena.terrain?.terrainType !== this.terrainType; + } else { + return pokemon.scene.arena.trySetTerrain(this.terrainType, true); + } } } @@ -3340,7 +3615,7 @@ export class PostBiomeChangeTerrainChangeAbAttr extends PostBiomeChangeAbAttr { * @extends AbAttr */ export class PostMoveUsedAbAttr extends AbAttr { - applyPostMoveUsed(pokemon: Pokemon, move: PokemonMove, source: Pokemon, targets: BattlerIndex[], args: any[]): boolean | Promise { + applyPostMoveUsed(pokemon: Pokemon, move: PokemonMove, source: Pokemon, targets: BattlerIndex[], simulated: boolean, args: any[]): boolean | Promise { return false; } } @@ -3361,20 +3636,22 @@ export class PostDancingMoveAbAttr extends PostMoveUsedAbAttr { * * @return true if the Dancer ability was resolved */ - applyPostMoveUsed(dancer: Pokemon, move: PokemonMove, source: Pokemon, targets: BattlerIndex[], args: any[]): boolean | Promise { + applyPostMoveUsed(dancer: Pokemon, move: PokemonMove, source: Pokemon, targets: BattlerIndex[], simulated: boolean, args: any[]): boolean | Promise { // List of tags that prevent the Dancer from replicating the move const forbiddenTags = [BattlerTagType.FLYING, BattlerTagType.UNDERWATER, BattlerTagType.UNDERGROUND, BattlerTagType.HIDDEN]; // The move to replicate cannot come from the Dancer if (source.getBattlerIndex() !== dancer.getBattlerIndex() && !dancer.summonData.tags.some(tag => forbiddenTags.includes(tag.tagType))) { - // If the move is an AttackMove or a StatusMove the Dancer must replicate the move on the source of the Dance - if (move.getMove() instanceof AttackMove || move.getMove() instanceof StatusMove) { - const target = this.getTarget(dancer, source, targets); - dancer.scene.unshiftPhase(new MovePhase(dancer.scene, dancer, target, move, true)); - } else if (move.getMove() instanceof SelfStatusMove) { - // If the move is a SelfStatusMove (ie. Swords Dance) the Dancer should replicate it on itself - dancer.scene.unshiftPhase(new MovePhase(dancer.scene, dancer, [dancer.getBattlerIndex()], move, true)); + if (!simulated) { + // If the move is an AttackMove or a StatusMove the Dancer must replicate the move on the source of the Dance + if (move.getMove() instanceof AttackMove || move.getMove() instanceof StatusMove) { + const target = this.getTarget(dancer, source, targets); + dancer.scene.unshiftPhase(new MovePhase(dancer.scene, dancer, target, move, true)); + } else if (move.getMove() instanceof SelfStatusMove) { + // If the move is a SelfStatusMove (ie. Swords Dance) the Dancer should replicate it on itself + dancer.scene.unshiftPhase(new MovePhase(dancer.scene, dancer, [dancer.getBattlerIndex()], move, true)); + } } return true; } @@ -3405,7 +3682,7 @@ export class StatChangeMultiplierAbAttr extends AbAttr { this.multiplier = multiplier; } - apply(pokemon: Pokemon, passive: boolean, cancelled: Utils.BooleanHolder, args: any[]): boolean { + apply(pokemon: Pokemon, passive: boolean, simulated: boolean, cancelled: Utils.BooleanHolder, args: any[]): boolean { (args[0] as Utils.IntegerHolder).value *= this.multiplier; return true; @@ -3413,8 +3690,10 @@ export class StatChangeMultiplierAbAttr extends AbAttr { } export class StatChangeCopyAbAttr extends AbAttr { - apply(pokemon: Pokemon, passive: boolean, cancelled: Utils.BooleanHolder, args: any[]): boolean | Promise { - pokemon.scene.unshiftPhase(new StatChangePhase(pokemon.scene, pokemon.getBattlerIndex(), true, (args[0] as BattleStat[]), (args[1] as integer), true, false, false)); + apply(pokemon: Pokemon, passive: boolean, simulated: boolean, cancelled: Utils.BooleanHolder, args: any[]): boolean | Promise { + if (!simulated) { + pokemon.scene.unshiftPhase(new StatChangePhase(pokemon.scene, pokemon.getBattlerIndex(), true, (args[0] as BattleStat[]), (args[1] as integer), true, false, false)); + } return true; } } @@ -3424,7 +3703,7 @@ export class BypassBurnDamageReductionAbAttr extends AbAttr { super(false); } - apply(pokemon: Pokemon, passive: boolean, cancelled: Utils.BooleanHolder, args: any[]): boolean { + apply(pokemon: Pokemon, passive: boolean, simulated: boolean, cancelled: Utils.BooleanHolder, args: any[]): boolean { cancelled.value = true; return true; @@ -3448,15 +3727,15 @@ export class ReduceBurnDamageAbAttr extends AbAttr { * @param args `[0]` {@linkcode Utils.NumberHolder} The damage value being modified * @returns `true` */ - apply(pokemon: Pokemon, passive: boolean, cancelled: Utils.BooleanHolder, args: any[]): boolean { - (args[0] as Utils.NumberHolder).value = Math.max(Math.floor((args[0] as Utils.NumberHolder).value * this.multiplier), 1); + apply(pokemon: Pokemon, passive: boolean, simulated: boolean, cancelled: Utils.BooleanHolder, args: any[]): boolean { + (args[0] as Utils.NumberHolder).value = Utils.toDmgValue((args[0] as Utils.NumberHolder).value * this.multiplier); return true; } } export class DoubleBerryEffectAbAttr extends AbAttr { - apply(pokemon: Pokemon, passive: boolean, cancelled: Utils.BooleanHolder, args: any[]): boolean { + apply(pokemon: Pokemon, passive: boolean, simulated: boolean, cancelled: Utils.BooleanHolder, args: any[]): boolean { (args[0] as Utils.NumberHolder).value *= 2; return true; @@ -3464,7 +3743,7 @@ export class DoubleBerryEffectAbAttr extends AbAttr { } export class PreventBerryUseAbAttr extends AbAttr { - apply(pokemon: Pokemon, passive: boolean, cancelled: Utils.BooleanHolder, args: any[]): boolean { + apply(pokemon: Pokemon, passive: boolean, simulated: boolean, cancelled: Utils.BooleanHolder, args: any[]): boolean { cancelled.value = true; return true; @@ -3487,24 +3766,25 @@ export class HealFromBerryUseAbAttr extends AbAttr { this.healPercent = Math.max(Math.min(healPercent, 1), 0); } - apply(pokemon: Pokemon, passive: boolean, ...args: [Utils.BooleanHolder, any[]]): boolean { + apply(pokemon: Pokemon, passive: boolean, simulated: boolean, ...args: [Utils.BooleanHolder, any[]]): boolean { const { name: abilityName } = passive ? pokemon.getPassiveAbility() : pokemon.getAbility(); - pokemon.scene.unshiftPhase( - new PokemonHealPhase( - pokemon.scene, - pokemon.getBattlerIndex(), - Math.max(Math.floor(pokemon.getMaxHp() * this.healPercent), 1), - i18next.t("abilityTriggers:healFromBerryUse", { pokemonNameWithAffix: getPokemonNameWithAffix(pokemon), abilityName }), - true - ) - ); - + if (!simulated) { + pokemon.scene.unshiftPhase( + new PokemonHealPhase( + pokemon.scene, + pokemon.getBattlerIndex(), + Utils.toDmgValue(pokemon.getMaxHp() * this.healPercent), + i18next.t("abilityTriggers:healFromBerryUse", { pokemonNameWithAffix: getPokemonNameWithAffix(pokemon), abilityName }), + true + ) + ); + } return true; } } export class RunSuccessAbAttr extends AbAttr { - apply(pokemon: Pokemon, passive: boolean, cancelled: Utils.BooleanHolder, args: any[]): boolean { + apply(pokemon: Pokemon, passive: boolean, simulated: boolean, cancelled: Utils.BooleanHolder, args: any[]): boolean { (args[0] as Utils.IntegerHolder).value = 256; return true; @@ -3527,7 +3807,7 @@ export class CheckTrappedAbAttr extends AbAttr { this.arenaTrapCondition = condition; } - applyCheckTrapped(pokemon: Pokemon, passive: boolean, trapped: Utils.BooleanHolder, otherPokemon: Pokemon, args: any[]): boolean | Promise { + applyCheckTrapped(pokemon: Pokemon, passive: boolean, simulated: boolean, trapped: Utils.BooleanHolder, otherPokemon: Pokemon, args: any[]): boolean | Promise { return false; } } @@ -3552,7 +3832,7 @@ export class ArenaTrapAbAttr extends CheckTrappedAbAttr { * @param args N/A * @returns if enemy Pokemon is trapped or not */ - applyCheckTrapped(pokemon: Pokemon, passive: boolean, trapped: Utils.BooleanHolder, otherPokemon: Pokemon, args: any[]): boolean { + applyCheckTrapped(pokemon: Pokemon, passive: boolean, simulated: boolean, trapped: Utils.BooleanHolder, otherPokemon: Pokemon, args: any[]): boolean { if (this.arenaTrapCondition(pokemon, otherPokemon)) { if (otherPokemon.getTypes(true).includes(Type.GHOST) || (otherPokemon.getTypes(true).includes(Type.STELLAR) && otherPokemon.getTypes().includes(Type.GHOST))) { trapped.value = false; @@ -3574,7 +3854,7 @@ export class ArenaTrapAbAttr extends CheckTrappedAbAttr { } export class MaxMultiHitAbAttr extends AbAttr { - apply(pokemon: Pokemon, passive: boolean, cancelled: Utils.BooleanHolder, args: any[]): boolean { + apply(pokemon: Pokemon, passive: boolean, simulated: boolean, cancelled: Utils.BooleanHolder, args: any[]): boolean { (args[0] as Utils.IntegerHolder).value = 0; return true; @@ -3586,15 +3866,15 @@ export class PostBattleAbAttr extends AbAttr { super(true); } - applyPostBattle(pokemon: Pokemon, passive: boolean, args: any[]): boolean { + applyPostBattle(pokemon: Pokemon, passive: boolean, simulated: boolean, args: any[]): boolean { return false; } } export class PostBattleLootAbAttr extends PostBattleAbAttr { - applyPostBattle(pokemon: Pokemon, passive: boolean, args: any[]): boolean { + applyPostBattle(pokemon: Pokemon, passive: boolean, simulated: boolean, args: any[]): boolean { const postBattleLoot = pokemon.scene.currentBattle.postBattleLoot; - if (postBattleLoot.length) { + if (!simulated && postBattleLoot.length) { const randItem = Utils.randSeedItem(postBattleLoot); //@ts-ignore - TODO see below if (pokemon.scene.tryTransferHeldItemModifier(randItem, pokemon, true, 1, true)) { // TODO: fix. This is a promise!? @@ -3609,11 +3889,43 @@ export class PostBattleLootAbAttr extends PostBattleAbAttr { } export class PostFaintAbAttr extends AbAttr { - applyPostFaint(pokemon: Pokemon, passive: boolean, attacker: Pokemon, move: Move, hitResult: HitResult, args: any[]): boolean { + applyPostFaint(pokemon: Pokemon, passive: boolean, simulated: boolean, attacker: Pokemon, move: Move, hitResult: HitResult, args: any[]): boolean { return false; } } +/** + * Used for weather suppressing abilities to trigger weather-based form changes upon being fainted. + * Used by Cloud Nine and Air Lock. + * @extends PostFaintAbAttr + */ +export class PostFaintUnsuppressedWeatherFormChangeAbAttr extends PostFaintAbAttr { + /** + * Triggers {@linkcode Arena.triggerWeatherBasedFormChanges | triggerWeatherBasedFormChanges} + * when the user of the ability faints + * @param {Pokemon} pokemon the fainted Pokemon + * @param passive n/a + * @param attacker n/a + * @param move n/a + * @param hitResult n/a + * @param args n/a + * @returns whether the form change was triggered + */ + applyPostFaint(pokemon: Pokemon, passive: boolean, simulated: boolean, attacker: Pokemon, move: Move, hitResult: HitResult, args: any[]): boolean { + const pokemonToTransform = getPokemonWithWeatherBasedForms(pokemon.scene); + + if (pokemonToTransform.length < 1) { + return false; + } + + if (!simulated) { + pokemon.scene.arena.triggerWeatherBasedFormChanges(); + } + + return true; + } +} + /** * Clears Desolate Land/Primordial Sea/Delta Stream upon the Pokemon fainting */ @@ -3628,7 +3940,7 @@ export class PostFaintClearWeatherAbAttr extends PostFaintAbAttr { * @param args N/A * @returns {boolean} Returns true if the weather clears, otherwise false. */ - applyPostFaint(pokemon: Pokemon, passive: boolean, attacker: Pokemon, move: Move, hitResult: HitResult, args: any[]): boolean { + applyPostFaint(pokemon: Pokemon, passive: boolean, simulated: boolean, attacker: Pokemon, move: Move, hitResult: HitResult, args: any[]): boolean { const weatherType = pokemon.scene.arena.weather?.weatherType; let turnOffWeather = false; @@ -3654,6 +3966,10 @@ export class PostFaintClearWeatherAbAttr extends PostFaintAbAttr { break; } + if (simulated) { + return turnOffWeather; + } + if (turnOffWeather) { pokemon.scene.arena.trySetWeather(WeatherType.NONE, false); return true; @@ -3672,15 +3988,17 @@ export class PostFaintContactDamageAbAttr extends PostFaintAbAttr { this.damageRatio = damageRatio; } - applyPostFaint(pokemon: Pokemon, passive: boolean, attacker: Pokemon, move: Move, hitResult: HitResult, args: any[]): boolean { + applyPostFaint(pokemon: Pokemon, passive: boolean, simulated: boolean, attacker: Pokemon, move: Move, hitResult: HitResult, args: any[]): boolean { if (move.checkFlag(MoveFlags.MAKES_CONTACT, attacker, pokemon)) { const cancelled = new Utils.BooleanHolder(false); - pokemon.scene.getField(true).map(p=>applyAbAttrs(FieldPreventExplosiveMovesAbAttr, p, cancelled)); + pokemon.scene.getField(true).map(p => applyAbAttrs(FieldPreventExplosiveMovesAbAttr, p, cancelled, simulated)); if (cancelled.value || attacker.hasAbilityWithAttr(BlockNonDirectDamageAbAttr)) { return false; } - attacker.damageAndUpdate(Math.ceil(attacker.getMaxHp() * (1 / this.damageRatio)), HitResult.OTHER); - attacker.turnData.damageTaken += Math.ceil(attacker.getMaxHp() * (1 / this.damageRatio)); + if (!simulated) { + attacker.damageAndUpdate(Utils.toDmgValue(attacker.getMaxHp() * (1 / this.damageRatio)), HitResult.OTHER); + attacker.turnData.damageTaken += Utils.toDmgValue(attacker.getMaxHp() * (1 / this.damageRatio)); + } return true; } @@ -3700,10 +4018,12 @@ export class PostFaintHPDamageAbAttr extends PostFaintAbAttr { super (); } - applyPostFaint(pokemon: Pokemon, passive: boolean, attacker: Pokemon, move: Move, hitResult: HitResult, args: any[]): boolean { - const damage = pokemon.turnData.attacksReceived[0].damage; - attacker.damageAndUpdate((damage), HitResult.OTHER); - attacker.turnData.damageTaken += damage; + applyPostFaint(pokemon: Pokemon, passive: boolean, simulated: boolean, attacker: Pokemon, move: Move, hitResult: HitResult, args: any[]): boolean { + if (!simulated) { + const damage = pokemon.turnData.attacksReceived[0].damage; + attacker.damageAndUpdate((damage), HitResult.OTHER); + attacker.turnData.damageTaken += damage; + } return true; } @@ -3713,7 +4033,7 @@ export class PostFaintHPDamageAbAttr extends PostFaintAbAttr { } export class RedirectMoveAbAttr extends AbAttr { - apply(pokemon: Pokemon, passive: boolean, cancelled: Utils.BooleanHolder, args: any[]): boolean { + apply(pokemon: Pokemon, passive: boolean, simulated: boolean, cancelled: Utils.BooleanHolder, args: any[]): boolean { if (this.canRedirect(args[0] as Moves)) { const target = args[1] as Utils.IntegerHolder; const newTarget = pokemon.getBattlerIndex(); @@ -3756,9 +4076,9 @@ export class ReduceStatusEffectDurationAbAttr extends AbAttr { this.statusEffect = statusEffect; } - apply(pokemon: Pokemon, passive: boolean, cancelled: Utils.BooleanHolder, args: any[]): boolean { + apply(pokemon: Pokemon, passive: boolean, simulated: boolean, cancelled: Utils.BooleanHolder, args: any[]): boolean { if (args[0] === this.statusEffect) { - (args[1] as Utils.IntegerHolder).value = Math.floor((args[1] as Utils.IntegerHolder).value / 2); + (args[1] as Utils.IntegerHolder).value = Utils.toDmgValue((args[1] as Utils.IntegerHolder).value / 2); return true; } @@ -3785,8 +4105,10 @@ export class FlinchStatChangeAbAttr extends FlinchEffectAbAttr { this.levels = levels; } - apply(pokemon: Pokemon, passive: boolean, cancelled: Utils.BooleanHolder, args: any[]): boolean { - pokemon.scene.unshiftPhase(new StatChangePhase(pokemon.scene, pokemon.getBattlerIndex(), true, this.stats, this.levels)); + apply(pokemon: Pokemon, passive: boolean, simulated: boolean, cancelled: Utils.BooleanHolder, args: any[]): boolean { + if (!simulated) { + pokemon.scene.unshiftPhase(new StatChangePhase(pokemon.scene, pokemon.getBattlerIndex(), true, this.stats, this.levels)); + } return true; } } @@ -3794,7 +4116,7 @@ export class FlinchStatChangeAbAttr extends FlinchEffectAbAttr { export class IncreasePpAbAttr extends AbAttr { } export class ForceSwitchOutImmunityAbAttr extends AbAttr { - apply(pokemon: Pokemon, passive: boolean, cancelled: Utils.BooleanHolder, args: any[]): boolean { + apply(pokemon: Pokemon, passive: boolean, simulated: boolean, cancelled: Utils.BooleanHolder, args: any[]): boolean { cancelled.value = true; return true; } @@ -3805,7 +4127,7 @@ export class ReduceBerryUseThresholdAbAttr extends AbAttr { super(); } - apply(pokemon: Pokemon, passive: boolean, cancelled: Utils.BooleanHolder, args: any[]): boolean { + apply(pokemon: Pokemon, passive: boolean, simulated: boolean, cancelled: Utils.BooleanHolder, args: any[]): boolean { const hpRatio = pokemon.getHpRatio(); if (args[0].value < hpRatio) { @@ -3826,7 +4148,7 @@ export class WeightMultiplierAbAttr extends AbAttr { this.multiplier = multiplier; } - apply(pokemon: Pokemon, passive: boolean, cancelled: Utils.BooleanHolder, args: any[]): boolean { + apply(pokemon: Pokemon, passive: boolean, simulated: boolean, cancelled: Utils.BooleanHolder, args: any[]): boolean { (args[0] as Utils.NumberHolder).value *= this.multiplier; return true; @@ -3838,7 +4160,7 @@ export class SyncEncounterNatureAbAttr extends AbAttr { super(false); } - apply(pokemon: Pokemon, passive: boolean, cancelled: Utils.BooleanHolder, args: any[]): boolean { + apply(pokemon: Pokemon, passive: boolean, simulated: boolean, cancelled: Utils.BooleanHolder, args: any[]): boolean { (args[0] as Pokemon).setNature(pokemon.getNature()); return true; @@ -3854,7 +4176,7 @@ export class MoveAbilityBypassAbAttr extends AbAttr { this.moveIgnoreFunc = moveIgnoreFunc || ((pokemon, move) => true); } - apply(pokemon: Pokemon, passive: boolean, cancelled: Utils.BooleanHolder, args: any[]): boolean { + apply(pokemon: Pokemon, passive: boolean, simulated: boolean, cancelled: Utils.BooleanHolder, args: any[]): boolean { if (this.moveIgnoreFunc(pokemon, (args[0] as Move))) { cancelled.value = true; return true; @@ -3868,7 +4190,7 @@ export class SuppressFieldAbilitiesAbAttr extends AbAttr { super(false); } - apply(pokemon: Pokemon, passive: boolean, cancelled: Utils.BooleanHolder, args: any[]): boolean { + apply(pokemon: Pokemon, passive: boolean, simulated: boolean, cancelled: Utils.BooleanHolder, args: any[]): boolean { const ability = (args[0] as Ability); if (!ability.hasAttr(UnsuppressableAbilityAbAttr) && !ability.hasAttr(SuppressFieldAbilitiesAbAttr)) { cancelled.value = true; @@ -3923,7 +4245,7 @@ export class IgnoreTypeImmunityAbAttr extends AbAttr { this.allowedMoveTypes = allowedMoveTypes; } - apply(pokemon: Pokemon, passive: boolean, cancelled: Utils.BooleanHolder, args: any[]): boolean { + apply(pokemon: Pokemon, passive: boolean, simulated: boolean, cancelled: Utils.BooleanHolder, args: any[]): boolean { if (this.defenderType === (args[1] as Type) && this.allowedMoveTypes.includes(args[0] as Type)) { cancelled.value = true; return true; @@ -3946,7 +4268,7 @@ export class IgnoreTypeStatusEffectImmunityAbAttr extends AbAttr { this.defenderType = defenderType; } - apply(pokemon: Pokemon, passive: boolean, cancelled: Utils.BooleanHolder, args: any[]): boolean { + apply(pokemon: Pokemon, passive: boolean, simulated: boolean, cancelled: Utils.BooleanHolder, args: any[]): boolean { if (this.statusEffect.includes(args[0] as StatusEffect) && this.defenderType.includes(args[1] as Type)) { cancelled.value = true; return true; @@ -3973,8 +4295,10 @@ export class MoneyAbAttr extends PostBattleAbAttr { * @param args N/A * @returns true */ - applyPostBattle(pokemon: Pokemon, passive: boolean, args: any[]): boolean { - pokemon.scene.currentBattle.moneyScattered += pokemon.scene.getWaveMoneyAmount(0.2); + applyPostBattle(pokemon: Pokemon, passive: boolean, simulated: boolean, args: any[]): boolean { + if (!simulated) { + pokemon.scene.currentBattle.moneyScattered += pokemon.scene.getWaveMoneyAmount(0.2); + } return true; } } @@ -4013,11 +4337,11 @@ export class PostSummonStatChangeOnArenaAbAttr extends PostSummonStatChangeAbAtt * @param {any[]} args - Additional arguments. * @returns {boolean} - Returns true if the stat change was applied, otherwise false. */ - applyPostSummon(pokemon: Pokemon, passive: boolean, args: any[]): boolean { + applyPostSummon(pokemon: Pokemon, passive: boolean, simulated: boolean, args: any[]): boolean { const side = pokemon.isPlayer() ? ArenaTagSide.PLAYER : ArenaTagSide.ENEMY; if (pokemon.scene.arena.getTagOnSide(this.tagType, side)) { - return super.applyPostSummon(pokemon, passive, args); + return super.applyPostSummon(pokemon, passive, simulated, args); } return false; } @@ -4055,12 +4379,14 @@ export class FormBlockDamageAbAttr extends ReceivedMoveDamageMultiplierAbAttr { * @param {any[]} args Additional arguments. * @returns {boolean} Whether the immunity was applied. */ - applyPreDefend(pokemon: Pokemon, passive: boolean, attacker: Pokemon, move: Move, cancelled: Utils.BooleanHolder, args: any[]): boolean { + applyPreDefend(pokemon: Pokemon, passive: boolean, simulated: boolean, attacker: Pokemon, move: Move, cancelled: Utils.BooleanHolder, args: any[]): boolean { if (this.condition(pokemon, attacker, move)) { - (args[0] as Utils.NumberHolder).value = this.multiplier; - pokemon.removeTag(this.tagType); - if (this.recoilDamageFunc) { - pokemon.damageAndUpdate(this.recoilDamageFunc(pokemon), HitResult.OTHER); + if (!simulated) { + (args[0] as Utils.NumberHolder).value = this.multiplier; + pokemon.removeTag(this.tagType); + if (this.recoilDamageFunc) { + pokemon.damageAndUpdate(this.recoilDamageFunc(pokemon), HitResult.OTHER, false, false, true, true); + } } return true; } @@ -4104,7 +4430,10 @@ export class BypassSpeedChanceAbAttr extends AbAttr { * @param {any[]} args [0] {@linkcode Utils.BooleanHolder} set to true when the ability activated * @returns {boolean} - whether the ability was activated. */ - apply(pokemon: Pokemon, passive: boolean, cancelled: Utils.BooleanHolder, args: any[]): boolean { + apply(pokemon: Pokemon, passive: boolean, simulated: boolean, cancelled: Utils.BooleanHolder, args: any[]): boolean { + if (simulated) { + return false; + } const bypassSpeed = args[0] as Utils.BooleanHolder; if (!bypassSpeed.value && pokemon.randSeedInt(100) < this.chance) { @@ -4147,7 +4476,7 @@ export class PreventBypassSpeedChanceAbAttr extends AbAttr { * @argument {boolean} bypassSpeed - determines if a Pokemon is able to bypass speed at the moment * @argument {boolean} canCheckHeldItems - determines if a Pokemon has access to Quick Claw's effects or not */ - apply(pokemon: Pokemon, passive: boolean, cancelled: Utils.BooleanHolder, args: any[]): boolean { + apply(pokemon: Pokemon, passive: boolean, simulated: boolean, cancelled: Utils.BooleanHolder, args: any[]): boolean { const bypassSpeed = args[0] as Utils.BooleanHolder; const canCheckHeldItems = args[1] as Utils.BooleanHolder; @@ -4169,7 +4498,7 @@ async function applyAbAttrsInternal( applyFunc: AbAttrApplyFunc, args: any[], showAbilityInstant: boolean = false, - isQuiet: boolean = false, + simulated: boolean = false, messages: string[] = [], ) { for (const passive of [false, true]) { @@ -4191,65 +4520,60 @@ async function applyAbAttrsInternal( if (result instanceof Promise) { result = await result; } - if (result) { if (pokemon.summonData && !pokemon.summonData.abilitiesApplied.includes(ability.id)) { pokemon.summonData.abilitiesApplied.push(ability.id); } - if (pokemon.battleData && !pokemon.battleData.abilitiesApplied.includes(ability.id)) { + if (pokemon.battleData && !simulated && !pokemon.battleData.abilitiesApplied.includes(ability.id)) { pokemon.battleData.abilitiesApplied.push(ability.id); } - - if (attr.showAbility && !isQuiet) { + if (attr.showAbility && !simulated) { if (showAbilityInstant) { pokemon.scene.abilityBar.showAbility(pokemon, passive); } else { queueShowAbility(pokemon, passive); } } - const message = attr.getTriggerMessage(pokemon, ability.name, args); if (message) { - if (!isQuiet) { + if (!simulated) { pokemon.scene.queueMessage(message); } - messages.push(message); } + messages.push(message!); } } - pokemon.scene.clearPhaseQueueSplice(); } } -export function applyAbAttrs(attrType: Constructor, pokemon: Pokemon, cancelled: Utils.BooleanHolder | null, ...args: any[]): Promise { - return applyAbAttrsInternal(attrType, pokemon, (attr, passive) => attr.apply(pokemon, passive, cancelled, args), args); +export function applyAbAttrs(attrType: Constructor, pokemon: Pokemon, cancelled: Utils.BooleanHolder | null, simulated: boolean = false, ...args: any[]): Promise { + return applyAbAttrsInternal(attrType, pokemon, (attr, passive) => attr.apply(pokemon, passive, simulated, cancelled, args), args, false, simulated); } export function applyPostBattleInitAbAttrs(attrType: Constructor, - pokemon: Pokemon, ...args: any[]): Promise { - return applyAbAttrsInternal(attrType, pokemon, (attr, passive) => attr.applyPostBattleInit(pokemon, passive, args), args); + pokemon: Pokemon, simulated: boolean = false, ...args: any[]): Promise { + return applyAbAttrsInternal(attrType, pokemon, (attr, passive) => attr.applyPostBattleInit(pokemon, passive, simulated, args), args, false, simulated); } export function applyPreDefendAbAttrs(attrType: Constructor, - pokemon: Pokemon, attacker: Pokemon, move: Move | null, cancelled: Utils.BooleanHolder | null, ...args: any[]): Promise { - const simulated = args.length > 1 && args[1]; - return applyAbAttrsInternal(attrType, pokemon, (attr, passive) => attr.applyPreDefend(pokemon, passive, attacker, move, cancelled, args), args, false, simulated); + pokemon: Pokemon, attacker: Pokemon, move: Move | null, cancelled: Utils.BooleanHolder | null, simulated: boolean = false, ...args: any[]): Promise { + return applyAbAttrsInternal(attrType, pokemon, (attr, passive) => attr.applyPreDefend(pokemon, passive, simulated, attacker, move, cancelled, args), args, false, simulated); } export function applyPostDefendAbAttrs(attrType: Constructor, - pokemon: Pokemon, attacker: Pokemon, move: Move, hitResult: HitResult | null, ...args: any[]): Promise { - return applyAbAttrsInternal(attrType, pokemon, (attr, passive) => attr.applyPostDefend(pokemon, passive, attacker, move, hitResult, args), args); + pokemon: Pokemon, attacker: Pokemon, move: Move, hitResult: HitResult | null, simulated: boolean = false, ...args: any[]): Promise { + return applyAbAttrsInternal(attrType, pokemon, (attr, passive) => attr.applyPostDefend(pokemon, passive, simulated, attacker, move, hitResult, args), args, false, simulated); } export function applyPostMoveUsedAbAttrs(attrType: Constructor, - pokemon: Pokemon, move: PokemonMove, source: Pokemon, targets: BattlerIndex[], ...args: any[]): Promise { - return applyAbAttrsInternal(attrType, pokemon, (attr, passive) => attr.applyPostMoveUsed(pokemon, move, source, targets, args), args); + pokemon: Pokemon, move: PokemonMove, source: Pokemon, targets: BattlerIndex[], simulated: boolean = false, ...args: any[]): Promise { + return applyAbAttrsInternal(attrType, pokemon, (attr, passive) => attr.applyPostMoveUsed(pokemon, move, source, targets, simulated, args), args, false, simulated); } export function applyBattleStatMultiplierAbAttrs(attrType: Constructor, - pokemon: Pokemon, battleStat: BattleStat, statValue: Utils.NumberHolder, ...args: any[]): Promise { - return applyAbAttrsInternal(attrType, pokemon, (attr, passive) => attr.applyBattleStat(pokemon, passive, battleStat, statValue, args), args); + pokemon: Pokemon, battleStat: BattleStat, statValue: Utils.NumberHolder, simulated: boolean = false, ...args: any[]): Promise { + return applyAbAttrsInternal(attrType, pokemon, (attr, passive) => attr.applyBattleStat(pokemon, passive, simulated, battleStat, statValue, args), args, false, simulated); } /** @@ -4263,99 +4587,98 @@ export function applyBattleStatMultiplierAbAttrs(attrType: Constructor, - pokemon: Pokemon, stat: Stat, statValue: Utils.NumberHolder, checkedPokemon: Pokemon, hasApplied: Utils.BooleanHolder, ...args: any[]): Promise { - return applyAbAttrsInternal(attrType, pokemon, (attr, passive) => attr.applyFieldBattleStat(pokemon, passive, stat, statValue, checkedPokemon, hasApplied, args), args); + pokemon: Pokemon, stat: Stat, statValue: Utils.NumberHolder, checkedPokemon: Pokemon, hasApplied: Utils.BooleanHolder, simulated: boolean = false, ...args: any[]): Promise { + return applyAbAttrsInternal(attrType, pokemon, (attr, passive) => attr.applyFieldBattleStat(pokemon, passive, simulated, stat, statValue, checkedPokemon, hasApplied, args), args, false, simulated); } export function applyPreAttackAbAttrs(attrType: Constructor, - pokemon: Pokemon, defender: Pokemon | null, move: Move, ...args: any[]): Promise { - return applyAbAttrsInternal(attrType, pokemon, (attr, passive) => attr.applyPreAttack(pokemon, passive, defender, move, args), args); + pokemon: Pokemon, defender: Pokemon | null, move: Move, simulated: boolean = false, ...args: any[]): Promise { + return applyAbAttrsInternal(attrType, pokemon, (attr, passive) => attr.applyPreAttack(pokemon, passive, simulated, defender, move, args), args, false, simulated); } export function applyPostAttackAbAttrs(attrType: Constructor, - pokemon: Pokemon, defender: Pokemon, move: Move, hitResult: HitResult | null, ...args: any[]): Promise { - return applyAbAttrsInternal(attrType, pokemon, (attr, passive) => attr.applyPostAttack(pokemon, passive, defender, move, hitResult, args), args); + pokemon: Pokemon, defender: Pokemon, move: Move, hitResult: HitResult | null, simulated: boolean = false, ...args: any[]): Promise { + return applyAbAttrsInternal(attrType, pokemon, (attr, passive) => attr.applyPostAttack(pokemon, passive, simulated, defender, move, hitResult, args), args, false, simulated); } export function applyPostKnockOutAbAttrs(attrType: Constructor, - pokemon: Pokemon, knockedOut: Pokemon, ...args: any[]): Promise { - return applyAbAttrsInternal(attrType, pokemon, (attr, passive) => attr.applyPostKnockOut(pokemon, passive, knockedOut, args), args); + pokemon: Pokemon, knockedOut: Pokemon, simulated: boolean = false, ...args: any[]): Promise { + return applyAbAttrsInternal(attrType, pokemon, (attr, passive) => attr.applyPostKnockOut(pokemon, passive, simulated, knockedOut, args), args, false, simulated); } export function applyPostVictoryAbAttrs(attrType: Constructor, - pokemon: Pokemon, ...args: any[]): Promise { - return applyAbAttrsInternal(attrType, pokemon, (attr, passive) => attr.applyPostVictory(pokemon, passive, args), args); + pokemon: Pokemon, simulated: boolean = false, ...args: any[]): Promise { + return applyAbAttrsInternal(attrType, pokemon, (attr, passive) => attr.applyPostVictory(pokemon, passive, simulated, args), args, false, simulated); } export function applyPostSummonAbAttrs(attrType: Constructor, - pokemon: Pokemon, ...args: any[]): Promise { - return applyAbAttrsInternal(attrType, pokemon, (attr, passive) => attr.applyPostSummon(pokemon, passive, args), args); + pokemon: Pokemon, simulated: boolean = false, ...args: any[]): Promise { + return applyAbAttrsInternal(attrType, pokemon, (attr, passive) => attr.applyPostSummon(pokemon, passive, simulated, args), args, false, simulated); } export function applyPreSwitchOutAbAttrs(attrType: Constructor, - pokemon: Pokemon, ...args: any[]): Promise { - return applyAbAttrsInternal(attrType, pokemon, (attr, passive) => attr.applyPreSwitchOut(pokemon, passive, args), args, true); + pokemon: Pokemon, simulated: boolean = false, ...args: any[]): Promise { + return applyAbAttrsInternal(attrType, pokemon, (attr, passive) => attr.applyPreSwitchOut(pokemon, passive, simulated, args), args, true, simulated); } export function applyPreStatChangeAbAttrs(attrType: Constructor, - pokemon: Pokemon | null, stat: BattleStat, cancelled: Utils.BooleanHolder, ...args: any[]): Promise { - return applyAbAttrsInternal(attrType, pokemon, (attr, passive) => attr.applyPreStatChange(pokemon, passive, stat, cancelled, args), args); + pokemon: Pokemon | null, stat: BattleStat, cancelled: Utils.BooleanHolder, simulated: boolean = false, ...args: any[]): Promise { + return applyAbAttrsInternal(attrType, pokemon, (attr, passive) => attr.applyPreStatChange(pokemon, passive, simulated, stat, cancelled, args), args, false, simulated); } export function applyPostStatChangeAbAttrs(attrType: Constructor, - pokemon: Pokemon, stats: BattleStat[], levels: integer, selfTarget: boolean, ...args: any[]): Promise { - return applyAbAttrsInternal(attrType, pokemon, (attr, passive) => attr.applyPostStatChange(pokemon, stats, levels, selfTarget, args), args); + pokemon: Pokemon, stats: BattleStat[], levels: integer, selfTarget: boolean, simulated: boolean = false, ...args: any[]): Promise { + return applyAbAttrsInternal(attrType, pokemon, (attr, passive) => attr.applyPostStatChange(pokemon, simulated, stats, levels, selfTarget, args), args, false, simulated); } export function applyPreSetStatusAbAttrs(attrType: Constructor, - pokemon: Pokemon, effect: StatusEffect | undefined, cancelled: Utils.BooleanHolder, ...args: any[]): Promise { - const simulated = args.length > 1 && args[1]; - return applyAbAttrsInternal(attrType, pokemon, (attr, passive) => attr.applyPreSetStatus(pokemon, passive, effect, cancelled, args), args, false, !simulated); + pokemon: Pokemon, effect: StatusEffect | undefined, cancelled: Utils.BooleanHolder, simulated: boolean = false, ...args: any[]): Promise { + return applyAbAttrsInternal(attrType, pokemon, (attr, passive) => attr.applyPreSetStatus(pokemon, passive, simulated, effect, cancelled, args), args, false, simulated); } export function applyPreApplyBattlerTagAbAttrs(attrType: Constructor, - pokemon: Pokemon, tag: BattlerTag, cancelled: Utils.BooleanHolder, ...args: any[]): Promise { - return applyAbAttrsInternal(attrType, pokemon, (attr, passive) => attr.applyPreApplyBattlerTag(pokemon, passive, tag, cancelled, args), args); + pokemon: Pokemon, tag: BattlerTag, cancelled: Utils.BooleanHolder, simulated: boolean = false, ...args: any[]): Promise { + return applyAbAttrsInternal(attrType, pokemon, (attr, passive) => attr.applyPreApplyBattlerTag(pokemon, passive, simulated, tag, cancelled, args), args, false, simulated); } export function applyPreWeatherEffectAbAttrs(attrType: Constructor, - pokemon: Pokemon, weather: Weather | null, cancelled: Utils.BooleanHolder, ...args: any[]): Promise { - return applyAbAttrsInternal(attrType, pokemon, (attr, passive) => attr.applyPreWeatherEffect(pokemon, passive, weather, cancelled, args), args, true); + pokemon: Pokemon, weather: Weather | null, cancelled: Utils.BooleanHolder, simulated: boolean = false, ...args: any[]): Promise { + return applyAbAttrsInternal(attrType, pokemon, (attr, passive) => attr.applyPreWeatherEffect(pokemon, passive, simulated, weather, cancelled, args), args, true, simulated); } export function applyPostTurnAbAttrs(attrType: Constructor, - pokemon: Pokemon, ...args: any[]): Promise { - return applyAbAttrsInternal(attrType, pokemon, (attr, passive) => attr.applyPostTurn(pokemon, passive, args), args); + pokemon: Pokemon, simulated: boolean = false, ...args: any[]): Promise { + return applyAbAttrsInternal(attrType, pokemon, (attr, passive) => attr.applyPostTurn(pokemon, passive, simulated, args), args, false, simulated); } export function applyPostWeatherChangeAbAttrs(attrType: Constructor, - pokemon: Pokemon, weather: WeatherType, ...args: any[]): Promise { - return applyAbAttrsInternal(attrType, pokemon, (attr, passive) => attr.applyPostWeatherChange(pokemon, passive, weather, args), args); + pokemon: Pokemon, weather: WeatherType, simulated: boolean = false, ...args: any[]): Promise { + return applyAbAttrsInternal(attrType, pokemon, (attr, passive) => attr.applyPostWeatherChange(pokemon, passive, simulated, weather, args), args, false, simulated); } export function applyPostWeatherLapseAbAttrs(attrType: Constructor, - pokemon: Pokemon, weather: Weather | null, ...args: any[]): Promise { - return applyAbAttrsInternal(attrType, pokemon, (attr, passive) => attr.applyPostWeatherLapse(pokemon, passive, weather, args), args); + pokemon: Pokemon, weather: Weather | null, simulated: boolean = false, ...args: any[]): Promise { + return applyAbAttrsInternal(attrType, pokemon, (attr, passive) => attr.applyPostWeatherLapse(pokemon, passive, simulated, weather, args), args, false, simulated); } export function applyPostTerrainChangeAbAttrs(attrType: Constructor, - pokemon: Pokemon, terrain: TerrainType, ...args: any[]): Promise { - return applyAbAttrsInternal(attrType, pokemon, (attr, passive) => attr.applyPostTerrainChange(pokemon, passive, terrain, args), args); + pokemon: Pokemon, terrain: TerrainType, simulated: boolean = false, ...args: any[]): Promise { + return applyAbAttrsInternal(attrType, pokemon, (attr, passive) => attr.applyPostTerrainChange(pokemon, passive, simulated, terrain, args), args, false, simulated); } export function applyCheckTrappedAbAttrs(attrType: Constructor, - pokemon: Pokemon, trapped: Utils.BooleanHolder, otherPokemon: Pokemon, isQuiet: boolean, messages: string[], ...args: any[]): Promise { - return applyAbAttrsInternal(attrType, pokemon, (attr, passive) => attr.applyCheckTrapped(pokemon, passive, trapped, otherPokemon, args), args, false, isQuiet, messages); + pokemon: Pokemon, trapped: Utils.BooleanHolder, otherPokemon: Pokemon, messages: string[], simulated: boolean = false, ...args: any[]): Promise { + return applyAbAttrsInternal(attrType, pokemon, (attr, passive) => attr.applyCheckTrapped(pokemon, passive, simulated, trapped, otherPokemon, args), args, false, simulated, messages); } export function applyPostBattleAbAttrs(attrType: Constructor, - pokemon: Pokemon, ...args: any[]): Promise { - return applyAbAttrsInternal(attrType, pokemon, (attr, passive) => attr.applyPostBattle(pokemon, passive, args), args); + pokemon: Pokemon, simulated: boolean = false, ...args: any[]): Promise { + return applyAbAttrsInternal(attrType, pokemon, (attr, passive) => attr.applyPostBattle(pokemon, passive, simulated, args), args, false, simulated); } export function applyPostFaintAbAttrs(attrType: Constructor, - pokemon: Pokemon, attacker: Pokemon, move: Move, hitResult: HitResult, ...args: any[]): Promise { - return applyAbAttrsInternal(attrType, pokemon, (attr, passive) => attr.applyPostFaint(pokemon, passive, attacker, move, hitResult, args), args); + pokemon: Pokemon, attacker: Pokemon, move: Move, hitResult: HitResult, simulated: boolean = false, ...args: any[]): Promise { + return applyAbAttrsInternal(attrType, pokemon, (attr, passive) => attr.applyPostFaint(pokemon, passive, simulated, attacker, move, hitResult, args), args, false, simulated); } function queueShowAbility(pokemon: Pokemon, passive: boolean): void { @@ -4374,6 +4697,16 @@ function setAbilityRevealed(pokemon: Pokemon): void { } } +/** + * Returns the Pokemon with weather-based forms + * @param {BattleScene} scene - The current scene + */ +function getPokemonWithWeatherBasedForms(scene: BattleScene) { + return scene.getField(true).filter(p => + p.hasAbility(Abilities.FORECAST) && p.species.speciesId === Species.CASTFORM + ); +} + export const allAbilities = [ new Ability(Abilities.NONE, 3) ]; export function initAbilities() { @@ -4420,7 +4753,10 @@ export function initAbilities() { .ignorable(), new Ability(Abilities.CLOUD_NINE, 3) .attr(SuppressWeatherEffectAbAttr, true) - .attr(PostSummonUnnamedMessageAbAttr, "The effects of the weather disappeared."), + .attr(PostSummonUnnamedMessageAbAttr, i18next.t("abilityTriggers:weatherEffectDisappeared")) + .attr(PostSummonWeatherSuppressedFormChangeAbAttr) + .attr(PostFaintUnsuppressedWeatherFormChangeAbAttr) + .bypassFaint(), new Ability(Abilities.COMPOUND_EYES, 3) .attr(BattleStatMultiplierAbAttr, BattleStat.ACC, 1.3), new Ability(Abilities.INSOMNIA, 3) @@ -4565,7 +4901,8 @@ export function initAbilities() { new Ability(Abilities.FORECAST, 3) .attr(UncopiableAbilityAbAttr) .attr(NoFusionAbilityAbAttr) - .unimplemented(), + .attr(PostSummonFormChangeByWeatherAbAttr, Abilities.FORECAST) + .attr(PostWeatherChangeFormChangeAbAttr, Abilities.FORECAST), new Ability(Abilities.STICKY_HOLD, 3) .attr(BlockItemTheftAbAttr) .bypassFaint() @@ -4615,7 +4952,10 @@ export function initAbilities() { .ignorable(), new Ability(Abilities.AIR_LOCK, 3) .attr(SuppressWeatherEffectAbAttr, true) - .attr(PostSummonUnnamedMessageAbAttr, "The effects of the weather disappeared."), + .attr(PostSummonUnnamedMessageAbAttr, i18next.t("abilityTriggers:weatherEffectDisappeared")) + .attr(PostSummonWeatherSuppressedFormChangeAbAttr) + .attr(PostFaintUnsuppressedWeatherFormChangeAbAttr) + .bypassFaint(), new Ability(Abilities.TANGLED_FEET, 4) .conditionalAttr(pokemon => !!pokemon.getTag(BattlerTagType.CONFUSED), BattleStatMultiplierAbAttr, BattleStat.EVA, 2) .ignorable(), @@ -4674,7 +5014,7 @@ export function initAbilities() { .conditionalAttr(pokemon => pokemon.status ? pokemon.status.effect === StatusEffect.PARALYSIS : false, BattleStatMultiplierAbAttr, BattleStat.SPD, 2) .conditionalAttr(pokemon => !!pokemon.status || pokemon.hasAbility(Abilities.COMATOSE), BattleStatMultiplierAbAttr, BattleStat.SPD, 1.5), new Ability(Abilities.NORMALIZE, 4) - .attr(MoveTypeChangeAttr, Type.NORMAL, 1.2, (user, target, move) => { + .attr(MoveTypeChangeAbAttr, Type.NORMAL, 1.2, (user, target, move) => { return ![Moves.HIDDEN_POWER, Moves.WEATHER_BALL, Moves.NATURAL_GIFT, Moves.JUDGMENT, Moves.TECHNO_BLAST].includes(move.id); }), new Ability(Abilities.SNIPER, 4) @@ -4705,7 +5045,7 @@ export function initAbilities() { .attr(BonusCritAbAttr) .partial(), new Ability(Abilities.AFTERMATH, 4) - .attr(PostFaintContactDamageAbAttr,4) + .attr(PostFaintContactDamageAbAttr, 4) .bypassFaint(), new Ability(Abilities.ANTICIPATION, 4) .conditionalAttr(getAnticipationCondition(), PostSummonMessageAbAttr, (pokemon: Pokemon) => i18next.t("abilityTriggers:postSummonAnticipation", { pokemonNameWithAffix: getPokemonNameWithAffix(pokemon) })), @@ -4718,7 +5058,7 @@ export function initAbilities() { //@ts-ignore .attr(DamageBoostAbAttr, 2, (user, target, move) => target.getAttackTypeEffectiveness(move.type, user) <= 0.5), // TODO: fix TS issues new Ability(Abilities.FILTER, 4) - .attr(ReceivedMoveDamageMultiplierAbAttr,(target, user, move) => target.getAttackTypeEffectiveness(move.type, user) >= 2, 0.75) + .attr(ReceivedMoveDamageMultiplierAbAttr, (target, user, move) => target.getAttackTypeEffectiveness(move.type, user) >= 2, 0.75) .ignorable(), new Ability(Abilities.SLOW_START, 4) .attr(PostSummonAddBattlerTagAbAttr, BattlerTagType.SLOW_START, 5), @@ -4734,7 +5074,7 @@ export function initAbilities() { .attr(PostWeatherLapseHealAbAttr, 1, WeatherType.HAIL, WeatherType.SNOW) .partial(), // Healing not blocked by Heal Block new Ability(Abilities.SOLID_ROCK, 4) - .attr(ReceivedMoveDamageMultiplierAbAttr,(target, user, move) => target.getAttackTypeEffectiveness(move.type, user) >= 2, 0.75) + .attr(ReceivedMoveDamageMultiplierAbAttr, (target, user, move) => target.getAttackTypeEffectiveness(move.type, user) >= 2, 0.75) .ignorable(), new Ability(Abilities.SNOW_WARNING, 4) .attr(PostSummonWeatherChangeAbAttr, WeatherType.SNOW) @@ -4795,7 +5135,7 @@ export function initAbilities() { .attr(WeightMultiplierAbAttr, 0.5) .ignorable(), new Ability(Abilities.MULTISCALE, 5) - .attr(ReceivedMoveDamageMultiplierAbAttr,(target, user, move) => target.isFullHp(), 0.5) + .attr(ReceivedMoveDamageMultiplierAbAttr, (target, user, move) => target.isFullHp(), 0.5) .ignorable(), new Ability(Abilities.TOXIC_BOOST, 5) .attr(MovePowerBoostAbAttr, (user, target, move) => move.category === MoveCategory.PHYSICAL && (user?.status?.effect === StatusEffect.POISON || user?.status?.effect === StatusEffect.TOXIC), 1.5), @@ -4915,7 +5255,7 @@ export function initAbilities() { new Ability(Abilities.STRONG_JAW, 6) .attr(MovePowerBoostAbAttr, (user, target, move) => move.hasFlag(MoveFlags.BITING_MOVE), 1.5), new Ability(Abilities.REFRIGERATE, 6) - .attr(MoveTypeChangeAttr, Type.ICE, 1.2, (user, target, move) => move.type === Type.NORMAL), + .attr(MoveTypeChangeAbAttr, Type.ICE, 1.2, (user, target, move) => move.type === Type.NORMAL && !move.hasAttr(VariableMoveTypeAttr)), new Ability(Abilities.SWEET_VEIL, 6) .attr(UserFieldStatusEffectImmunityAbAttr, StatusEffect.SLEEP) .attr(UserFieldBattlerTagImmunityAbAttr, BattlerTagType.DROWSY) @@ -4938,11 +5278,11 @@ export function initAbilities() { new Ability(Abilities.TOUGH_CLAWS, 6) .attr(MovePowerBoostAbAttr, (user, target, move) => move.hasFlag(MoveFlags.MAKES_CONTACT), 1.3), new Ability(Abilities.PIXILATE, 6) - .attr(MoveTypeChangeAttr, Type.FAIRY, 1.2, (user, target, move) => move.type === Type.NORMAL), + .attr(MoveTypeChangeAbAttr, Type.FAIRY, 1.2, (user, target, move) => move.type === Type.NORMAL && !move.hasAttr(VariableMoveTypeAttr)), new Ability(Abilities.GOOEY, 6) .attr(PostDefendStatChangeAbAttr, (target, user, move) => move.hasFlag(MoveFlags.MAKES_CONTACT), BattleStat.SPD, -1, false), new Ability(Abilities.AERILATE, 6) - .attr(MoveTypeChangeAttr, Type.FLYING, 1.2, (user, target, move) => move.type === Type.NORMAL), + .attr(MoveTypeChangeAbAttr, Type.FLYING, 1.2, (user, target, move) => move.type === Type.NORMAL && !move.hasAttr(VariableMoveTypeAttr)), new Ability(Abilities.PARENTAL_BOND, 6) .attr(AddSecondStrikeAbAttr, 0.25), new Ability(Abilities.DARK_AURA, 6) @@ -5014,11 +5354,11 @@ export function initAbilities() { new Ability(Abilities.LONG_REACH, 7) .attr(IgnoreContactAbAttr), new Ability(Abilities.LIQUID_VOICE, 7) - .attr(MoveTypeChangeAttr, Type.WATER, 1, (user, target, move) => move.hasFlag(MoveFlags.SOUND_BASED)), + .attr(MoveTypeChangeAbAttr, Type.WATER, 1, (user, target, move) => move.hasFlag(MoveFlags.SOUND_BASED)), new Ability(Abilities.TRIAGE, 7) .attr(ChangeMovePriorityAbAttr, (pokemon, move) => move.hasFlag(MoveFlags.TRIAGE_MOVE), 3), new Ability(Abilities.GALVANIZE, 7) - .attr(MoveTypeChangeAttr, Type.ELECTRIC, 1.2, (user, target, move) => move.type === Type.NORMAL), + .attr(MoveTypeChangeAbAttr, Type.ELECTRIC, 1.2, (user, target, move) => move.type === Type.NORMAL && !move.hasAttr(VariableMoveTypeAttr)), new Ability(Abilities.SURGE_SURFER, 7) .conditionalAttr(getTerrainCondition(TerrainType.ELECTRIC), BattleStatMultiplierAbAttr, BattleStat.SPD, 2), new Ability(Abilities.SCHOOLING, 7) @@ -5040,7 +5380,7 @@ export function initAbilities() { .conditionalAttr(pokemon => pokemon.formIndex === 0, PostSummonAddBattlerTagAbAttr, BattlerTagType.DISGUISE, 0, false) .attr(FormBlockDamageAbAttr, (target, user, move) => !!target.getTag(BattlerTagType.DISGUISE) && target.getAttackTypeEffectiveness(move.type, user) > 0, 0, BattlerTagType.DISGUISE, (pokemon, abilityName) => i18next.t("abilityTriggers:disguiseAvoidedDamage", { pokemonNameWithAffix: getPokemonNameWithAffix(pokemon), abilityName: abilityName }), - (pokemon) => Math.floor(pokemon.getMaxHp() / 8)) + (pokemon) => Utils.toDmgValue(pokemon.getMaxHp() / 8)) .attr(PostBattleInitFormChangeAbAttr, () => 0) .bypassFaint() .ignorable(), @@ -5132,9 +5472,9 @@ export function initAbilities() { new Ability(Abilities.FULL_METAL_BODY, 7) .attr(ProtectStatAbAttr), new Ability(Abilities.SHADOW_SHIELD, 7) - .attr(ReceivedMoveDamageMultiplierAbAttr,(target, user, move) => target.isFullHp(), 0.5), + .attr(ReceivedMoveDamageMultiplierAbAttr, (target, user, move) => target.isFullHp(), 0.5), new Ability(Abilities.PRISM_ARMOR, 7) - .attr(ReceivedMoveDamageMultiplierAbAttr,(target, user, move) => target.getAttackTypeEffectiveness(move.type, user) >= 2, 0.75), + .attr(ReceivedMoveDamageMultiplierAbAttr, (target, user, move) => target.getAttackTypeEffectiveness(move.type, user) >= 2, 0.75), new Ability(Abilities.NEUROFORCE, 7) //@ts-ignore .attr(MovePowerBoostAbAttr, (user, target, move) => target.getAttackTypeEffectiveness(move.type, user) >= 2, 1.25), // TODO: fix TS issues @@ -5432,6 +5772,6 @@ export function initAbilities() { new Ability(Abilities.POISON_PUPPETEER, 9) .attr(UncopiableAbilityAbAttr) .attr(UnswappableAbilityAbAttr) - .conditionalAttr(pokemon => pokemon.species.speciesId===Species.PECHARUNT,ConfusionOnStatusEffectAbAttr,StatusEffect.POISON,StatusEffect.TOXIC) + .conditionalAttr(pokemon => pokemon.species.speciesId===Species.PECHARUNT, ConfusionOnStatusEffectAbAttr, StatusEffect.POISON, StatusEffect.TOXIC) ); } diff --git a/src/data/arena-tag.ts b/src/data/arena-tag.ts index c545b04e733..acb5bc74424 100644 --- a/src/data/arena-tag.ts +++ b/src/data/arena-tag.ts @@ -281,7 +281,7 @@ const QuickGuardConditionFunc: ProtectConditionFunc = (arena, moveId) => { if (effectPhase instanceof MoveEffectPhase) { const attacker = effectPhase.getUserPokemon()!; applyMoveAttrs(IncrementMovePriorityAttr, attacker, null, move, priority); - applyAbAttrs(ChangeMovePriorityAbAttr, attacker, null, move, priority); + applyAbAttrs(ChangeMovePriorityAbAttr, attacker, null, false, move, priority); } return priority.value > 0; }; @@ -439,7 +439,7 @@ class WishTag extends ArenaTag { if (user) { this.battlerIndex = user.getBattlerIndex(); this.triggerMessage = i18next.t("arenaTag:wishTagOnAdd", { pokemonNameWithAffix: getPokemonNameWithAffix(user) }); - this.healHp = Math.max(Math.floor(user.getMaxHp() / 2), 1); + this.healHp = Utils.toDmgValue(user.getMaxHp() / 2); } else { console.warn("Failed to get source for WishTag onAdd"); } @@ -603,7 +603,7 @@ class SpikesTag extends ArenaTrapTag { if (!cancelled.value) { const damageHpRatio = 1 / (10 - 2 * this.layers); - const damage = Math.ceil(pokemon.getMaxHp() * damageHpRatio); + const damage = Utils.toDmgValue(pokemon.getMaxHp() * damageHpRatio); pokemon.scene.queueMessage(i18next.t("arenaTag:spikesActivateTrap", { pokemonNameWithAffix: getPokemonNameWithAffix(pokemon) })); pokemon.damageAndUpdate(damage, HitResult.OTHER); @@ -763,7 +763,7 @@ class StealthRockTag extends ArenaTrapTag { const damageHpRatio = this.getDamageHpRatio(pokemon); if (damageHpRatio) { - const damage = Math.ceil(pokemon.getMaxHp() * damageHpRatio); + const damage = Utils.toDmgValue(pokemon.getMaxHp() * damageHpRatio); pokemon.scene.queueMessage(i18next.t("arenaTag:stealthRockActivateTrap", { pokemonNameWithAffix: getPokemonNameWithAffix(pokemon) })); pokemon.damageAndUpdate(damage, HitResult.OTHER); if (pokemon.turnData) { diff --git a/src/data/battle-anims.ts b/src/data/battle-anims.ts index c86f3db5085..a2f6e41f4ae 100644 --- a/src/data/battle-anims.ts +++ b/src/data/battle-anims.ts @@ -325,11 +325,11 @@ class AnimTimedSoundEvent extends AnimTimedEvent { const soundConfig = { rate: (this.pitch * 0.01), volume: (this.volume * 0.01) }; if (this.resourceName) { try { - scene.playSound(this.resourceName, soundConfig); + scene.playSound(`battle_anims/${this.resourceName}`, soundConfig); } catch (err) { console.error(err); } - return Math.ceil((scene.sound.get(this.resourceName).totalDuration * 1000) / 33.33); + return Math.ceil((scene.sound.get(`battle_anims/${this.resourceName}`).totalDuration * 1000) / 33.33); } else { return Math.ceil((battleAnim.user!.cry(soundConfig).totalDuration * 1000) / 33.33); // TODO: is the bang behind user correct? } diff --git a/src/data/battler-tags.ts b/src/data/battler-tags.ts index ede8d029327..8c05d296e76 100644 --- a/src/data/battler-tags.ts +++ b/src/data/battler-tags.ts @@ -347,7 +347,7 @@ export class ConfusedTag extends BattlerTag { if (pokemon.randSeedInt(3) === 0) { const atk = pokemon.getBattleStat(Stat.ATK); const def = pokemon.getBattleStat(Stat.DEF); - const damage = Math.ceil(((((2 * pokemon.level / 5 + 2) * 40 * atk / def) / 50) + 2) * (pokemon.randSeedInt(15, 85) / 100)); + const damage = Utils.toDmgValue(((((2 * pokemon.level / 5 + 2) * 40 * atk / def) / 50) + 2) * (pokemon.randSeedInt(15, 85) / 100)); pokemon.scene.queueMessage(i18next.t("battlerTags:confusedLapseHurtItself")); pokemon.damageAndUpdate(damage); pokemon.battleData.hitCount++; @@ -524,7 +524,7 @@ export class SeedTag extends BattlerTag { if (!cancelled.value) { pokemon.scene.unshiftPhase(new CommonAnimPhase(pokemon.scene, source.getBattlerIndex(), pokemon.getBattlerIndex(), CommonAnim.LEECH_SEED)); - const damage = pokemon.damageAndUpdate(Math.max(Math.floor(pokemon.getMaxHp() / 8), 1)); + const damage = pokemon.damageAndUpdate(Utils.toDmgValue(pokemon.getMaxHp() / 8)); const reverseDrain = pokemon.hasAbilityWithAttr(ReverseDrainAbAttr, false); pokemon.scene.unshiftPhase(new PokemonHealPhase(pokemon.scene, source.getBattlerIndex(), !reverseDrain ? damage : damage * -1, @@ -570,7 +570,7 @@ export class NightmareTag extends BattlerTag { applyAbAttrs(BlockNonDirectDamageAbAttr, pokemon, cancelled); if (!cancelled.value) { - pokemon.damageAndUpdate(Math.ceil(pokemon.getMaxHp() / 4)); + pokemon.damageAndUpdate(Utils.toDmgValue(pokemon.getMaxHp() / 4)); } } @@ -714,7 +714,7 @@ export class IngrainTag extends TrappedTag { new PokemonHealPhase( pokemon.scene, pokemon.getBattlerIndex(), - Math.floor(pokemon.getMaxHp() / 16), + Utils.toDmgValue(pokemon.getMaxHp() / 16), i18next.t("battlerTags:ingrainLapse", { pokemonNameWithAffix: getPokemonNameWithAffix(pokemon) }), true ) @@ -777,7 +777,7 @@ export class AquaRingTag extends BattlerTag { new PokemonHealPhase( pokemon.scene, pokemon.getBattlerIndex(), - Math.floor(pokemon.getMaxHp() / 16), + Utils.toDmgValue(pokemon.getMaxHp() / 16), i18next.t("battlerTags:aquaRingLapse", { moveName: this.getMoveName(), pokemonName: getPokemonNameWithAffix(pokemon) @@ -883,7 +883,7 @@ export abstract class DamagingTrapTag extends TrappedTag { applyAbAttrs(BlockNonDirectDamageAbAttr, pokemon, cancelled); if (!cancelled.value) { - pokemon.damageAndUpdate(Math.ceil(pokemon.getMaxHp() / 8)); + pokemon.damageAndUpdate(Utils.toDmgValue(pokemon.getMaxHp() / 8)); } } @@ -1067,7 +1067,7 @@ export class ContactDamageProtectedTag extends ProtectedTag { if (effectPhase instanceof MoveEffectPhase && effectPhase.move.getMove().hasFlag(MoveFlags.MAKES_CONTACT)) { const attacker = effectPhase.getPokemon(); if (!attacker.hasAbilityWithAttr(BlockNonDirectDamageAbAttr)) { - attacker.damageAndUpdate(Math.ceil(attacker.getMaxHp() * (1 / this.damageRatio)), HitResult.OTHER); + attacker.damageAndUpdate(Utils.toDmgValue(attacker.getMaxHp() * (1 / this.damageRatio)), HitResult.OTHER); } } } @@ -1541,7 +1541,7 @@ export class SaltCuredTag extends BattlerTag { if (!cancelled.value) { const pokemonSteelOrWater = pokemon.isOfType(Type.STEEL) || pokemon.isOfType(Type.WATER); - pokemon.damageAndUpdate(Math.max(Math.floor(pokemonSteelOrWater ? pokemon.getMaxHp() / 4 : pokemon.getMaxHp() / 8), 1)); + pokemon.damageAndUpdate(Utils.toDmgValue(pokemonSteelOrWater ? pokemon.getMaxHp() / 4 : pokemon.getMaxHp() / 8)); pokemon.scene.queueMessage( i18next.t("battlerTags:saltCuredLapse", { @@ -1587,7 +1587,7 @@ export class CursedTag extends BattlerTag { applyAbAttrs(BlockNonDirectDamageAbAttr, pokemon, cancelled); if (!cancelled.value) { - pokemon.damageAndUpdate(Math.max(Math.floor(pokemon.getMaxHp() / 4), 1)); + pokemon.damageAndUpdate(Utils.toDmgValue(pokemon.getMaxHp() / 4)); pokemon.scene.queueMessage(i18next.t("battlerTags:cursedLapse", { pokemonNameWithAffix: getPokemonNameWithAffix(pokemon) })); } } diff --git a/src/data/berry.ts b/src/data/berry.ts index e962219ca46..d0c9c311e16 100644 --- a/src/data/berry.ts +++ b/src/data/berry.ts @@ -36,25 +36,25 @@ export function getBerryPredicate(berryType: BerryType): BerryPredicate { return (pokemon: Pokemon) => { const threshold = new Utils.NumberHolder(0.25); const battleStat = (berryType - BerryType.LIECHI) as BattleStat; - applyAbAttrs(ReduceBerryUseThresholdAbAttr, pokemon, null, threshold); + applyAbAttrs(ReduceBerryUseThresholdAbAttr, pokemon, null, false, threshold); return pokemon.getHpRatio() < threshold.value && pokemon.summonData.battleStats[battleStat] < 6; }; case BerryType.LANSAT: return (pokemon: Pokemon) => { const threshold = new Utils.NumberHolder(0.25); - applyAbAttrs(ReduceBerryUseThresholdAbAttr, pokemon, null, threshold); + applyAbAttrs(ReduceBerryUseThresholdAbAttr, pokemon, null, false, threshold); return pokemon.getHpRatio() < 0.25 && !pokemon.getTag(BattlerTagType.CRIT_BOOST); }; case BerryType.STARF: return (pokemon: Pokemon) => { const threshold = new Utils.NumberHolder(0.25); - applyAbAttrs(ReduceBerryUseThresholdAbAttr, pokemon, null, threshold); + applyAbAttrs(ReduceBerryUseThresholdAbAttr, pokemon, null, false, threshold); return pokemon.getHpRatio() < 0.25; }; case BerryType.LEPPA: return (pokemon: Pokemon) => { const threshold = new Utils.NumberHolder(0.25); - applyAbAttrs(ReduceBerryUseThresholdAbAttr, pokemon, null, threshold); + applyAbAttrs(ReduceBerryUseThresholdAbAttr, pokemon, null, false, threshold); return !!pokemon.getMoveset().find(m => !m?.getPpRatio()); }; } @@ -70,8 +70,8 @@ export function getBerryEffectFunc(berryType: BerryType): BerryEffectFunc { if (pokemon.battleData) { pokemon.battleData.berriesEaten.push(berryType); } - const hpHealed = new Utils.NumberHolder(Math.floor(pokemon.getMaxHp() / 4)); - applyAbAttrs(DoubleBerryEffectAbAttr, pokemon, null, hpHealed); + const hpHealed = new Utils.NumberHolder(Utils.toDmgValue(pokemon.getMaxHp() / 4)); + applyAbAttrs(DoubleBerryEffectAbAttr, pokemon, null, false, hpHealed); pokemon.scene.unshiftPhase(new PokemonHealPhase(pokemon.scene, pokemon.getBattlerIndex(), hpHealed.value, i18next.t("battle:hpHealBerry", { pokemonNameWithAffix: getPokemonNameWithAffix(pokemon), berryName: getBerryName(berryType) }), true)); }; @@ -97,7 +97,7 @@ export function getBerryEffectFunc(berryType: BerryType): BerryEffectFunc { } const battleStat = (berryType - BerryType.LIECHI) as BattleStat; const statLevels = new Utils.NumberHolder(1); - applyAbAttrs(DoubleBerryEffectAbAttr, pokemon, null, statLevels); + applyAbAttrs(DoubleBerryEffectAbAttr, pokemon, null, false, statLevels); pokemon.scene.unshiftPhase(new StatChangePhase(pokemon.scene, pokemon.getBattlerIndex(), true, [ battleStat ], statLevels.value)); }; case BerryType.LANSAT: @@ -113,7 +113,7 @@ export function getBerryEffectFunc(berryType: BerryType): BerryEffectFunc { pokemon.battleData.berriesEaten.push(berryType); } const statLevels = new Utils.NumberHolder(2); - applyAbAttrs(DoubleBerryEffectAbAttr, pokemon, null, statLevels); + applyAbAttrs(DoubleBerryEffectAbAttr, pokemon, null, false, statLevels); pokemon.scene.unshiftPhase(new StatChangePhase(pokemon.scene, pokemon.getBattlerIndex(), true, [ BattleStat.RAND ], statLevels.value)); }; case BerryType.LEPPA: diff --git a/src/data/biomes.ts b/src/data/biomes.ts index ed579112249..d9ea22f50f2 100644 --- a/src/data/biomes.ts +++ b/src/data/biomes.ts @@ -37,34 +37,34 @@ export const biomeLinks: BiomeLinks = { [Biome.PLAINS]: [ Biome.GRASS, Biome.METROPOLIS, Biome.LAKE ], [Biome.GRASS]: Biome.TALL_GRASS, [Biome.TALL_GRASS]: [ Biome.FOREST, Biome.CAVE ], - [Biome.SLUM]: Biome.CONSTRUCTION_SITE, + [Biome.SLUM]: [ Biome.CONSTRUCTION_SITE, [ Biome.SWAMP, 2 ] ], [Biome.FOREST]: [ Biome.JUNGLE, Biome.MEADOW ], [Biome.SEA]: [ Biome.SEABED, Biome.ICE_CAVE ], [Biome.SWAMP]: [ Biome.GRAVEYARD, Biome.TALL_GRASS ], - [Biome.BEACH]: [ Biome.SEA, [ Biome.ISLAND, 4 ] ], + [Biome.BEACH]: [ Biome.SEA, [ Biome.ISLAND, 2 ] ], [Biome.LAKE]: [ Biome.BEACH, Biome.SWAMP, Biome.CONSTRUCTION_SITE ], - [Biome.SEABED]: [ Biome.CAVE, [ Biome.VOLCANO, 4 ] ], - [Biome.MOUNTAIN]: [ Biome.VOLCANO, [ Biome.WASTELAND, 3 ] ], + [Biome.SEABED]: [ Biome.CAVE, [ Biome.VOLCANO, 3 ] ], + [Biome.MOUNTAIN]: [ Biome.VOLCANO, [ Biome.WASTELAND, 2 ], [ Biome.SPACE, 3 ] ], [Biome.BADLANDS]: [ Biome.DESERT, Biome.MOUNTAIN ], - [Biome.CAVE]: [ Biome.BADLANDS, Biome.LAKE ], - [Biome.DESERT]: Biome.RUINS, + [Biome.CAVE]: [ Biome.BADLANDS, Biome.LAKE [ Biome.LABORATORY, 2 ] ], + [Biome.DESERT]: [ Biome.RUINS, [ Biome.CONSTRUCTION_SITE, 2 ] ], [Biome.ICE_CAVE]: Biome.SNOWY_FOREST, - [Biome.MEADOW]: [ Biome.PLAINS, [ Biome.FAIRY_CAVE, 2 ] ], + [Biome.MEADOW]: [ Biome.PLAINS, Biome.FAIRY_CAVE ], [Biome.POWER_PLANT]: Biome.FACTORY, - [Biome.VOLCANO]: [ Biome.BEACH, [ Biome.ICE_CAVE, 4 ] ], + [Biome.VOLCANO]: [ Biome.BEACH, [ Biome.ICE_CAVE, 3 ] ], [Biome.GRAVEYARD]: Biome.ABYSS, - [Biome.DOJO]: [ Biome.PLAINS, [ Biome.TEMPLE, 3 ] ], - [Biome.FACTORY]: [ Biome.PLAINS, [ Biome.LABORATORY, 4 ] ], - [Biome.RUINS]: [ Biome.FOREST ], + [Biome.DOJO]: [ Biome.PLAINS, [ Biome.JUNGLE, 2], [ Biome.TEMPLE, 2 ] ], + [Biome.FACTORY]: [ Biome.PLAINS, [ Biome.LABORATORY, 2 ] ], + [Biome.RUINS]: [ Biome.MOUNTAIN, [ Biome.FOREST, 2 ] ], [Biome.WASTELAND]: Biome.BADLANDS, - [Biome.ABYSS]: [ Biome.CAVE, [ Biome.SPACE, 3 ], [ Biome.WASTELAND, 3 ] ], + [Biome.ABYSS]: [ Biome.CAVE, [ Biome.SPACE, 2 ], [ Biome.WASTELAND, 2 ] ], [Biome.SPACE]: Biome.RUINS, - [Biome.CONSTRUCTION_SITE]: [ Biome.DOJO, Biome.POWER_PLANT ], + [Biome.CONSTRUCTION_SITE]: [ Biome.POWER_PLANT, [ Biome.DOJO, 2 ] ], [Biome.JUNGLE]: [ Biome.TEMPLE ], - [Biome.FAIRY_CAVE]: [ Biome.ICE_CAVE, [ Biome.SPACE, 3 ] ], - [Biome.TEMPLE]: [ Biome.SWAMP, [ Biome.RUINS, 3 ] ], + [Biome.FAIRY_CAVE]: [ Biome.ICE_CAVE, [ Biome.SPACE, 2 ] ], + [Biome.TEMPLE]: [ Biome.DESERT, [ Biome.SWAMP, 2 ], [ Biome.RUINS, 2 ] ], [Biome.METROPOLIS]: Biome.SLUM, - [Biome.SNOWY_FOREST]: [ Biome.FOREST, Biome.LAKE, Biome.MOUNTAIN ], + [Biome.SNOWY_FOREST]: [ Biome.FOREST, [ Biome.MOUNTAIN, 2 ], [ Biome.LAKE, 2 ] ], [Biome.ISLAND]: Biome.SEA, [Biome.LABORATORY]: Biome.CONSTRUCTION_SITE }; @@ -7663,6 +7663,12 @@ export function initBiomes() { biomeDepths[Biome.TOWN] = [ 0, 1 ]; const traverseBiome = (biome: Biome, depth: integer) => { + if (biome === Biome.END) { + const biomeList = Object.keys(Biome).filter(key => !isNaN(Number(key))); + biomeList.pop(); // Removes Biome.END from the list + const randIndex = Utils.randInt(biomeList.length, 2); // Will never be Biome.TOWN or Biome.PLAINS + biome = Biome[biomeList[randIndex]]; + } const linkedBiomes: (Biome | [ Biome, integer ])[] = Array.isArray(biomeLinks[biome]) ? biomeLinks[biome] as (Biome | [ Biome, integer ])[] : [ biomeLinks[biome] as Biome ]; diff --git a/src/data/challenge.ts b/src/data/challenge.ts index 0df496c2ea4..36f696e63c1 100644 --- a/src/data/challenge.ts +++ b/src/data/challenge.ts @@ -55,6 +55,11 @@ export enum ChallengeType { * @see {@link Challenge.applyFixedBattle} */ FIXED_BATTLES, + /** + * Modifies the effectiveness of Type matchups in battle + * @see {@linkcode Challenge.applyTypeEffectiveness} + */ + TYPE_EFFECTIVENESS, /** * Modifies what level the AI pokemon are. UNIMPLEMENTED. */ @@ -327,6 +332,15 @@ export abstract class Challenge { return false; } + /** + * An apply function for TYPE_EFFECTIVENESS challenges. Derived classes should alter this. + * @param effectiveness {@linkcode Utils.NumberHolder} The current effectiveness of the move. + * @returns Whether this function did anything. + */ + applyTypeEffectiveness(effectiveness: Utils.NumberHolder): boolean { + return false; + } + /** * An apply function for AI_LEVEL challenges. Derived classes should alter this. * @param level {@link Utils.IntegerHolder} The generated level. @@ -439,13 +453,13 @@ export class SingleGenerationChallenge extends Challenge { let trainerTypes: TrainerType[] = []; switch (waveIndex) { case 182: - trainerTypes = [ TrainerType.LORELEI, TrainerType.WILL, TrainerType.SIDNEY, TrainerType.AARON, TrainerType.SHAUNTAL, TrainerType.MALVA, Utils.randSeedItem([ TrainerType.HALA, TrainerType.MOLAYNE ]),TrainerType.MARNIE_ELITE, TrainerType.RIKA ]; + trainerTypes = [ TrainerType.LORELEI, TrainerType.WILL, TrainerType.SIDNEY, TrainerType.AARON, TrainerType.SHAUNTAL, TrainerType.MALVA, Utils.randSeedItem([ TrainerType.HALA, TrainerType.MOLAYNE ]), TrainerType.MARNIE_ELITE, TrainerType.RIKA ]; break; case 184: trainerTypes = [ TrainerType.BRUNO, TrainerType.KOGA, TrainerType.PHOEBE, TrainerType.BERTHA, TrainerType.MARSHAL, TrainerType.SIEBOLD, TrainerType.OLIVIA, TrainerType.NESSA_ELITE, TrainerType.POPPY ]; break; case 186: - trainerTypes = [ TrainerType.AGATHA, TrainerType.BRUNO, TrainerType.GLACIA, TrainerType.FLINT, TrainerType.GRIMSLEY, TrainerType.WIKSTROM, TrainerType.ACEROLA, Utils.randSeedItem([TrainerType.BEA_ELITE,TrainerType.ALLISTER_ELITE]), TrainerType.LARRY_ELITE ]; + trainerTypes = [ TrainerType.AGATHA, TrainerType.BRUNO, TrainerType.GLACIA, TrainerType.FLINT, TrainerType.GRIMSLEY, TrainerType.WIKSTROM, TrainerType.ACEROLA, Utils.randSeedItem([TrainerType.BEA_ELITE, TrainerType.ALLISTER_ELITE]), TrainerType.LARRY_ELITE ]; break; case 188: trainerTypes = [ TrainerType.LANCE, TrainerType.KAREN, TrainerType.DRAKE, TrainerType.LUCIAN, TrainerType.CAITLIN, TrainerType.DRASNA, TrainerType.KAHILI, TrainerType.RAIHAN_ELITE, TrainerType.HASSEL ]; @@ -651,10 +665,7 @@ export class FreshStartChallenge extends Challenge { return true; } - /** - * @overrides - */ - getDifficulty(): number { + override getDifficulty(): number { return 0; } @@ -666,6 +677,38 @@ export class FreshStartChallenge extends Challenge { } } +/** + * Implements an inverse battle challenge. + */ +export class InverseBattleChallenge extends Challenge { + constructor() { + super(Challenges.INVERSE_BATTLE, 1); + } + + static loadChallenge(source: InverseBattleChallenge | any): InverseBattleChallenge { + const newChallenge = new InverseBattleChallenge(); + newChallenge.value = source.value; + newChallenge.severity = source.severity; + return newChallenge; + } + + override getDifficulty(): number { + return 0; + } + + applyTypeEffectiveness(effectiveness: Utils.NumberHolder): boolean { + if (effectiveness.value < 1) { + effectiveness.value = 2; + return true; + } else if (effectiveness.value > 1) { + effectiveness.value = 0.5; + return true; + } + + return false; + } +} + /** * Lowers the amount of starter points available. */ @@ -785,6 +828,14 @@ export function applyChallenges(gameMode: GameMode, challengeType: ChallengeType * @returns True if any challenge was successfully applied. */ export function applyChallenges(gameMode: GameMode, challengeType: ChallengeType.FIXED_BATTLES, waveIndex: Number, battleConfig: FixedBattleConfig): boolean; +/** + * Apply all challenges that modify type effectiveness. + * @param gameMode {@linkcode GameMode} The current gameMode + * @param challengeType {@linkcode ChallengeType} ChallengeType.TYPE_EFFECTIVENESS + * @param effectiveness {@linkcode Utils.NumberHolder} The current effectiveness of the move. + * @returns True if any challenge was successfully applied. + */ +export function applyChallenges(gameMode: GameMode, challengeType: ChallengeType.TYPE_EFFECTIVENESS, effectiveness: Utils.NumberHolder): boolean; /** * Apply all challenges that modify what level AI are. * @param gameMode {@link GameMode} The current gameMode @@ -866,6 +917,9 @@ export function applyChallenges(gameMode: GameMode, challengeType: ChallengeType case ChallengeType.FIXED_BATTLES: ret ||= c.applyFixedBattle(args[0], args[1]); break; + case ChallengeType.TYPE_EFFECTIVENESS: + ret ||= c.applyTypeEffectiveness(args[0]); + break; case ChallengeType.AI_LEVEL: ret ||= c.applyLevelChange(args[0], args[1], args[2], args[3]); break; @@ -907,6 +961,8 @@ export function copyChallenge(source: Challenge | any): Challenge { return LowerStarterPointsChallenge.loadChallenge(source); case Challenges.FRESH_START: return FreshStartChallenge.loadChallenge(source); + case Challenges.INVERSE_BATTLE: + return InverseBattleChallenge.loadChallenge(source); } throw new Error("Unknown challenge copied"); } @@ -918,5 +974,6 @@ export function initChallenges() { new SingleGenerationChallenge(), new SingleTypeChallenge(), new FreshStartChallenge(), + new InverseBattleChallenge(), ); } diff --git a/src/data/daily-run.ts b/src/data/daily-run.ts index b875877f99e..370b13ea3a3 100644 --- a/src/data/daily-run.ts +++ b/src/data/daily-run.ts @@ -40,7 +40,7 @@ export function getDailyRunStarters(scene: BattleScene, seed: string): Starter[] } const starterCosts: integer[] = []; - starterCosts.push(Math.round(3.5 + Math.abs(Utils.randSeedGauss(1)))); + starterCosts.push(Math.min(Math.round(3.5 + Math.abs(Utils.randSeedGauss(1))), 8)); starterCosts.push(Utils.randSeedInt(9 - starterCosts[0], 1)); starterCosts.push(10 - (starterCosts[0] + starterCosts[1])); @@ -49,7 +49,8 @@ export function getDailyRunStarters(scene: BattleScene, seed: string): Starter[] const costSpecies = Object.keys(speciesStarters) .map(s => parseInt(s) as Species) .filter(s => speciesStarters[s] === cost); - const starterSpecies = getPokemonSpecies(getPokemonSpecies(Utils.randSeedItem(costSpecies)).getTrainerSpeciesForLevel(startingLevel, true, PartyMemberStrength.STRONGER)); + const randPkmSpecies = getPokemonSpecies(Utils.randSeedItem(costSpecies)); + const starterSpecies = getPokemonSpecies(randPkmSpecies.getTrainerSpeciesForLevel(startingLevel, true, PartyMemberStrength.STRONGER)); starters.push(getDailyRunStarter(scene, starterSpecies, startingLevel)); } }, 0, seed); diff --git a/src/data/dialogue.ts b/src/data/dialogue.ts index 3e48d81ed12..3ef6d30643c 100644 --- a/src/data/dialogue.ts +++ b/src/data/dialogue.ts @@ -753,6 +753,98 @@ export const trainerTypeDialogue: TrainerTypeDialogue = { ] } ], + [TrainerType.AETHER_GRUNT]: [ + { + encounter: [ + "dialogue:aether_grunt.encounter.1", + "dialogue:aether_grunt.encounter.2", + "dialogue:aether_grunt.encounter.3", + "dialogue:aether_grunt.encounter.4", + "dialogue:aether_grunt.encounter.5", + ], + victory: [ + "dialogue:aether_grunt.victory.1", + "dialogue:aether_grunt.victory.2", + "dialogue:aether_grunt.victory.3", + "dialogue:aether_grunt.victory.4", + "dialogue:aether_grunt.victory.5", + ] + } + ], + [TrainerType.FABA]: [ + { + encounter: [ + "dialogue:faba.encounter.1", + "dialogue:faba.encounter.2", + "dialogue:faba.encounter.3", + ], + victory: [ + "dialogue:faba.victory.1", + "dialogue:faba.victory.2", + "dialogue:faba.victory.3", + ] + } + ], + [TrainerType.SKULL_GRUNT]: [ + { + encounter: [ + "dialogue:skull_grunt.encounter.1", + "dialogue:skull_grunt.encounter.2", + "dialogue:skull_grunt.encounter.3", + "dialogue:skull_grunt.encounter.4", + "dialogue:skull_grunt.encounter.5", + ], + victory: [ + "dialogue:skull_grunt.victory.1", + "dialogue:skull_grunt.victory.2", + "dialogue:skull_grunt.victory.3", + "dialogue:skull_grunt.victory.4", + "dialogue:skull_grunt.victory.5", + ] + } + ], + [TrainerType.PLUMERIA]: [ + { + encounter: [ + "dialogue:plumeria.encounter.1", + "dialogue:plumeria.encounter.2", + "dialogue:plumeria.encounter.3", + ], + victory: [ + "dialogue:plumeria.victory.1", + "dialogue:plumeria.victory.2", + "dialogue:plumeria.victory.3", + ] + } + ], + [TrainerType.MACRO_GRUNT]: [ + { + encounter: [ + "dialogue:macro_grunt.encounter.1", + "dialogue:macro_grunt.encounter.2", + "dialogue:macro_grunt.encounter.3", + ], + victory: [ + "dialogue:macro_grunt.victory.1", + "dialogue:macro_grunt.victory.2", + "dialogue:macro_grunt.victory.3", + ] + } + ], + [TrainerType.OLEANA]: [ + { + encounter: [ + "dialogue:oleana.encounter.1", + "dialogue:oleana.encounter.2", + "dialogue:oleana.encounter.3", + ], + victory: [ + "dialogue:oleana.victory.1", + "dialogue:oleana.victory.2", + "dialogue:oleana.victory.3", + ] + } + ], [TrainerType.ROCKET_BOSS_GIOVANNI_1]: [ { encounter: [ @@ -909,6 +1001,84 @@ export const trainerTypeDialogue: TrainerTypeDialogue = { ] } ], + [TrainerType.LUSAMINE]: [ + { + encounter: [ + "dialogue:aether_boss_lusamine_1.encounter.1" + ], + victory: [ + "dialogue:aether_boss_lusamine_1.victory.1" + ], + defeat: [ + "dialogue:aether_boss_lusamine_1.defeat.1" + ] + } + ], + [TrainerType.LUSAMINE_2]: [ + { + encounter: [ + "dialogue:aether_boss_lusamine_2.encounter.1" + ], + victory: [ + "dialogue:aether_boss_lusamine_2.victory.1" + ], + defeat: [ + "dialogue:aether_boss_lusamine_2.defeat.1" + ] + } + ], + [TrainerType.GUZMA]: [ + { + encounter: [ + "dialogue:skull_boss_guzma_1.encounter.1" + ], + victory: [ + "dialogue:skull_boss_guzma_1.victory.1" + ], + defeat: [ + "dialogue:skull_boss_guzma_1.defeat.1" + ] + } + ], + [TrainerType.GUZMA_2]: [ + { + encounter: [ + "dialogue:skull_boss_guzma_2.encounter.1" + ], + victory: [ + "dialogue:skull_boss_guzma_2.victory.1" + ], + defeat: [ + "dialogue:skull_boss_guzma_2.defeat.1" + ] + } + ], + [TrainerType.ROSE]: [ + { + encounter: [ + "dialogue:macro_boss_rose_1.encounter.1" + ], + victory: [ + "dialogue:macro_boss_rose_1.victory.1" + ], + defeat: [ + "dialogue:macro_boss_rose_1.defeat.1" + ] + } + ], + [TrainerType.ROSE_2]: [ + { + encounter: [ + "dialogue:macro_boss_rose_2.encounter.1" + ], + victory: [ + "dialogue:macro_boss_rose_2.victory.1" + ], + defeat: [ + "dialogue:macro_boss_rose_2.defeat.1" + ] + } + ], [TrainerType.BROCK]: { encounter: [ "dialogue:brock.encounter.1", diff --git a/src/data/egg-moves.ts b/src/data/egg-moves.ts index f88ac2c71b2..b516238c46e 100644 --- a/src/data/egg-moves.ts +++ b/src/data/egg-moves.ts @@ -43,7 +43,7 @@ export const speciesEggMoves = { [Species.SHELLDER]: [ Moves.ROCK_BLAST, Moves.WATER_SHURIKEN, Moves.BANEFUL_BUNKER, Moves.BONE_RUSH ], [Species.GASTLY]: [ Moves.SLUDGE_BOMB, Moves.AURA_SPHERE, Moves.NASTY_PLOT, Moves.ASTRAL_BARRAGE ], [Species.ONIX]: [ Moves.SHORE_UP, Moves.BODY_PRESS, Moves.HEAVY_SLAM, Moves.DIAMOND_STORM ], - [Species.DROWZEE]: [ Moves.BADDY_BAD, Moves.STRENGTH_SAP, Moves.LUMINA_CRASH, Moves.SPORE ], + [Species.DROWZEE]: [ Moves.BADDY_BAD, Moves.STRENGTH_SAP, Moves.LUMINA_CRASH, Moves.DARK_VOID ], [Species.KRABBY]: [ Moves.FIRE_LASH, Moves.PLAY_ROUGH, Moves.IVY_CUDGEL, Moves.SHELL_SMASH ], [Species.VOLTORB]: [ Moves.NASTY_PLOT, Moves.OVERHEAT, Moves.FROST_BREATH, Moves.ELECTRO_DRIFT ], [Species.EXEGGCUTE]: [ Moves.FICKLE_BEAM, Moves.APPLE_ACID, Moves.TRICK_ROOM, Moves.LUMINA_CRASH ], @@ -125,7 +125,7 @@ export const speciesEggMoves = { [Species.SUICUNE]: [ Moves.RECOVER, Moves.NASTY_PLOT, Moves.FREEZE_DRY, Moves.STEAM_ERUPTION ], [Species.LARVITAR]: [ Moves.DRAGON_DANCE, Moves.MOUNTAIN_GALE, Moves.SHORE_UP, Moves.DIAMOND_STORM ], [Species.LUGIA]: [ Moves.NASTY_PLOT, Moves.LUMINA_CRASH, Moves.AURA_SPHERE, Moves.OBLIVION_WING ], - [Species.HO_OH]: [ Moves.FLOATY_FALL, Moves.SOLAR_BLADE, Moves.REVIVAL_BLESSING, Moves.BOLT_BEAK ], + [Species.HO_OH]: [ Moves.FLOATY_FALL, Moves.PRECIPICE_BLADES, Moves.REVIVAL_BLESSING, Moves.BOLT_BEAK ], [Species.CELEBI]: [ Moves.PHOTON_GEYSER, Moves.MATCHA_GOTCHA, Moves.REVIVAL_BLESSING, Moves.QUIVER_DANCE ], [Species.TREECKO]: [ Moves.NASTY_PLOT, Moves.APPLE_ACID, Moves.SECRET_SWORD, Moves.DRAGON_ENERGY ], [Species.TORCHIC]: [ Moves.HIGH_JUMP_KICK, Moves.SUPERCELL_SLAM, Moves.KNOCK_OFF, Moves.V_CREATE ], @@ -249,7 +249,7 @@ export const speciesEggMoves = { [Species.CRESSELIA]: [ Moves.COSMIC_POWER, Moves.SECRET_SWORD, Moves.SIZZLY_SLIDE, Moves.LUMINA_CRASH ], [Species.PHIONE]: [ Moves.BOUNCY_BUBBLE, Moves.FREEZE_DRY, Moves.SPLISHY_SPLASH, Moves.QUIVER_DANCE ], [Species.MANAPHY]: [ Moves.BOUNCY_BUBBLE, Moves.FREEZE_DRY, Moves.SPLISHY_SPLASH, Moves.QUIVER_DANCE ], - [Species.DARKRAI]: [ Moves.FIERY_WRATH, Moves.MOONBLAST, Moves.SEARING_SHOT, Moves.SPORE ], + [Species.DARKRAI]: [ Moves.FIERY_WRATH, Moves.MOONBLAST, Moves.FIERY_DANCE, Moves.MAKE_IT_RAIN ], [Species.SHAYMIN]: [ Moves.MATCHA_GOTCHA, Moves.FIERY_DANCE, Moves.AEROBLAST, Moves.QUIVER_DANCE ], [Species.ARCEUS]: [ Moves.NO_RETREAT, Moves.COLLISION_COURSE, Moves.ASTRAL_BARRAGE, Moves.MULTI_ATTACK ], [Species.VICTINI]: [ Moves.BLUE_FLARE, Moves.BOLT_STRIKE, Moves.LUSTER_PURGE, Moves.VICTORY_DANCE ], diff --git a/src/data/move.ts b/src/data/move.ts index af3f49bea0d..d50dc7e2074 100644 --- a/src/data/move.ts +++ b/src/data/move.ts @@ -3,13 +3,13 @@ import { BattleStat, getBattleStatName } from "./battle-stat"; import { EncoreTag, GulpMissileTag, HelpingHandTag, SemiInvulnerableTag, ShellTrapTag, StockpilingTag, TrappedTag, TypeBoostTag } from "./battler-tags"; import { getPokemonNameWithAffix } from "../messages"; import Pokemon, { AttackMoveResult, EnemyPokemon, HitResult, MoveResult, PlayerPokemon, PokemonMove, TurnMove } from "../field/pokemon"; -import { StatusEffect, getStatusEffectHealText, isNonVolatileStatusEffect, getNonVolatileStatusEffects} from "./status-effect"; -import { getTypeResistances, Type } from "./type"; +import { StatusEffect, getStatusEffectHealText, isNonVolatileStatusEffect, getNonVolatileStatusEffects } from "./status-effect"; +import { getTypeDamageMultiplier, Type } from "./type"; import { Constructor } from "#app/utils"; import * as Utils from "../utils"; import { WeatherType } from "./weather"; import { ArenaTagSide, ArenaTrapTag, WeakenMoveTypeTag } from "./arena-tag"; -import { UnswappableAbilityAbAttr, UncopiableAbilityAbAttr, UnsuppressableAbilityAbAttr, BlockRecoilDamageAttr, BlockOneHitKOAbAttr, IgnoreContactAbAttr, MaxMultiHitAbAttr, applyAbAttrs, BlockNonDirectDamageAbAttr, MoveAbilityBypassAbAttr, ReverseDrainAbAttr, FieldPreventExplosiveMovesAbAttr, ForceSwitchOutImmunityAbAttr, BlockItemTheftAbAttr, applyPostAttackAbAttrs, ConfusionOnStatusEffectAbAttr, HealFromBerryUseAbAttr, IgnoreProtectOnContactAbAttr, IgnoreMoveEffectsAbAttr, applyPreDefendAbAttrs, MoveEffectChanceMultiplierAbAttr, WonderSkinAbAttr, applyPreAttackAbAttrs, MoveTypeChangeAttr, UserFieldMoveTypePowerBoostAbAttr, FieldMoveTypePowerBoostAbAttr, AllyMoveCategoryPowerBoostAbAttr, VariableMovePowerAbAttr } from "./ability"; +import { UnswappableAbilityAbAttr, UncopiableAbilityAbAttr, UnsuppressableAbilityAbAttr, BlockRecoilDamageAttr, BlockOneHitKOAbAttr, IgnoreContactAbAttr, MaxMultiHitAbAttr, applyAbAttrs, BlockNonDirectDamageAbAttr, MoveAbilityBypassAbAttr, ReverseDrainAbAttr, FieldPreventExplosiveMovesAbAttr, ForceSwitchOutImmunityAbAttr, BlockItemTheftAbAttr, applyPostAttackAbAttrs, ConfusionOnStatusEffectAbAttr, HealFromBerryUseAbAttr, IgnoreProtectOnContactAbAttr, IgnoreMoveEffectsAbAttr, applyPreDefendAbAttrs, MoveEffectChanceMultiplierAbAttr, WonderSkinAbAttr, applyPreAttackAbAttrs, MoveTypeChangeAbAttr, UserFieldMoveTypePowerBoostAbAttr, FieldMoveTypePowerBoostAbAttr, AllyMoveCategoryPowerBoostAbAttr, VariableMovePowerAbAttr } from "./ability"; import { allAbilities } from "./ability"; import { PokemonHeldItemModifier, BerryModifier, PreserveBerryModifier, PokemonMoveAccuracyBoosterModifier, AttackTypeBoosterModifier, PokemonMultiHitModifier } from "../modifier/modifier"; import { BattlerIndex, BattleType } from "../battle"; @@ -26,16 +26,20 @@ import { BattlerTagType } from "#enums/battler-tag-type"; import { Biome } from "#enums/biome"; import { Moves } from "#enums/moves"; import { Species } from "#enums/species"; -import { MoveUsedEvent } from "#app/events/battle-scene.js"; -import { PartyStatusCurePhase } from "#app/phases/party-status-cure-phase.js"; -import { BattleEndPhase } from "#app/phases/battle-end-phase.js"; -import { MoveEndPhase } from "#app/phases/move-end-phase.js"; -import { MovePhase } from "#app/phases/move-phase.js"; -import { NewBattlePhase } from "#app/phases/new-battle-phase.js"; -import { PokemonHealPhase } from "#app/phases/pokemon-heal-phase.js"; -import { StatChangePhase } from "#app/phases/stat-change-phase.js"; -import { SwitchPhase } from "#app/phases/switch-phase.js"; -import { SwitchSummonPhase } from "#app/phases/switch-summon-phase.js"; +import { MoveUsedEvent } from "#app/events/battle-scene"; +import { PartyStatusCurePhase } from "#app/phases/party-status-cure-phase"; +import { BattleEndPhase } from "#app/phases/battle-end-phase"; +import { MoveEndPhase } from "#app/phases/move-end-phase"; +import { MovePhase } from "#app/phases/move-phase"; +import { NewBattlePhase } from "#app/phases/new-battle-phase"; +import { PokemonHealPhase } from "#app/phases/pokemon-heal-phase"; +import { StatChangePhase } from "#app/phases/stat-change-phase"; +import { SwitchPhase } from "#app/phases/switch-phase"; +import { SwitchSummonPhase } from "#app/phases/switch-summon-phase"; +import { SpeciesFormChangeRevertWeatherFormTrigger } from "./pokemon-forms"; +import { NumberHolder } from "#app/utils"; +import { GameMode } from "#app/game-mode"; +import { applyChallenges, ChallengeType } from "./challenge"; export enum MoveCategory { PHYSICAL, @@ -112,9 +116,8 @@ type UserMoveConditionFunc = (user: Pokemon, move: Move) => boolean; export default class Move implements Localizable { public id: Moves; public name: string; - public type: Type; - public defaultType: Type; - public category: MoveCategory; + private _type: Type; + private _category: MoveCategory; public moveTarget: MoveTarget; public power: integer; public accuracy: integer; @@ -132,9 +135,8 @@ export default class Move implements Localizable { this.id = id; this.nameAppend = ""; - this.type = type; - this.defaultType = type; - this.category = category; + this._type = type; + this._category = category; this.moveTarget = defaultMoveTarget; this.power = power; this.accuracy = accuracy; @@ -157,6 +159,13 @@ export default class Move implements Localizable { this.localize(); } + get type() { + return this._type; + } + get category() { + return this._category; + } + localize(): void { const i18nKey = Moves[this.id].split("_").filter(f => f).map((f, i) => i ? `${f[0]}${f.slice(1).toLowerCase()}` : f.toLowerCase()).join("") as unknown as string; @@ -590,16 +599,18 @@ export default class Move implements Localizable { case MoveFlags.IGNORE_ABILITIES: if (user.hasAbilityWithAttr(MoveAbilityBypassAbAttr)) { const abilityEffectsIgnored = new Utils.BooleanHolder(false); - applyAbAttrs(MoveAbilityBypassAbAttr, user, abilityEffectsIgnored, this); + applyAbAttrs(MoveAbilityBypassAbAttr, user, abilityEffectsIgnored, false, this); if (abilityEffectsIgnored.value) { return true; } } + break; case MoveFlags.IGNORE_PROTECT: if (user.hasAbilityWithAttr(IgnoreProtectOnContactAbAttr) && this.checkFlag(MoveFlags.MAKES_CONTACT, user, target)) { return true; } + break; } return !!(this.flags & flag); @@ -686,11 +697,11 @@ export default class Move implements Localizable { * @param target {@linkcode Pokemon} The Pokémon being targeted by the move. * @returns The calculated accuracy of the move. */ - calculateBattleAccuracy(user: Pokemon, target: Pokemon) { + calculateBattleAccuracy(user: Pokemon, target: Pokemon, simulated: boolean = false) { const moveAccuracy = new Utils.NumberHolder(this.accuracy); applyMoveAttrs(VariableAccuracyAttr, user, target, this, moveAccuracy); - applyPreDefendAbAttrs(WonderSkinAbAttr, target, user, this, { value: false }, moveAccuracy); + applyPreDefendAbAttrs(WonderSkinAbAttr, target, user, this, { value: false }, simulated, moveAccuracy); if (moveAccuracy.value === -1) { return moveAccuracy.value; @@ -724,7 +735,7 @@ export default class Move implements Localizable { * @param target {@linkcode Pokemon} The Pokémon being targeted by the move. * @returns The calculated power of the move. */ - calculateBattlePower(source: Pokemon, target: Pokemon): number { + calculateBattlePower(source: Pokemon, target: Pokemon, simulated: boolean = false): number { if (this.category === MoveCategory.STATUS) { return -1; } @@ -732,17 +743,17 @@ export default class Move implements Localizable { const power = new Utils.NumberHolder(this.power); const typeChangeMovePowerMultiplier = new Utils.NumberHolder(1); - applyPreAttackAbAttrs(MoveTypeChangeAttr, source, target, this, typeChangeMovePowerMultiplier); + applyPreAttackAbAttrs(MoveTypeChangeAbAttr, source, target, this, true, null, typeChangeMovePowerMultiplier); const sourceTeraType = source.getTeraType(); if (sourceTeraType !== Type.UNKNOWN && sourceTeraType === this.type && power.value < 60 && this.priority <= 0 && !this.hasAttr(MultiHitAttr) && !source.scene.findModifier(m => m instanceof PokemonMultiHitModifier && m.pokemonId === source.id)) { power.value = 60; } - applyPreAttackAbAttrs(VariableMovePowerAbAttr, source, target, this, power); + applyPreAttackAbAttrs(VariableMovePowerAbAttr, source, target, this, simulated, power); if (source.getAlly()) { - applyPreAttackAbAttrs(AllyMoveCategoryPowerBoostAbAttr, source.getAlly(), target, this, power); + applyPreAttackAbAttrs(AllyMoveCategoryPowerBoostAbAttr, source.getAlly(), target, this, simulated, power); } const fieldAuras = new Set( @@ -752,11 +763,11 @@ export default class Move implements Localizable { ); for (const aura of fieldAuras) { // The only relevant values are `move` and the `power` holder - aura.applyPreAttack(null, null, null, this, [power]); + aura.applyPreAttack(null, null, simulated, null, this, [power]); } const alliedField: Pokemon[] = source instanceof PlayerPokemon ? source.scene.getPlayerField() : source.scene.getEnemyField(); - alliedField.forEach(p => applyPreAttackAbAttrs(UserFieldMoveTypePowerBoostAbAttr, p, target, this, power)); + alliedField.forEach(p => applyPreAttackAbAttrs(UserFieldMoveTypePowerBoostAbAttr, p, target, this, simulated, power)); power.value *= typeChangeMovePowerMultiplier.value; @@ -984,9 +995,9 @@ export class MoveEffectAttr extends MoveAttr { */ getMoveChance(user: Pokemon, target: Pokemon, move: Move, selfEffect?: Boolean, showAbility?: Boolean): integer { const moveChance = new Utils.NumberHolder(move.chance); - applyAbAttrs(MoveEffectChanceMultiplierAbAttr, user, null, moveChance, move, target, selfEffect, showAbility); + applyAbAttrs(MoveEffectChanceMultiplierAbAttr, user, null, false, moveChance, move, target, selfEffect, showAbility); if (!selfEffect) { - applyPreDefendAbAttrs(IgnoreMoveEffectsAbAttr, target, user, null, null, moveChance); + applyPreDefendAbAttrs(IgnoreMoveEffectsAbAttr, target, user, null, null, false, moveChance); } return moveChance.value; } @@ -1082,15 +1093,12 @@ export class PreMoveMessageAttr extends MoveAttr { } } -export class StatusMoveTypeImmunityAttr extends MoveAttr { - public immuneType: Type; - - constructor(immuneType: Type) { - super(false); - - this.immuneType = immuneType; - } -} +/** + * Attribute for Status moves that take attack type effectiveness + * into consideration (i.e. {@linkcode https://bulbapedia.bulbagarden.net/wiki/Thunder_Wave_(move) | Thunder Wave}) + * @extends MoveAttr + */ +export class RespectAttackTypeImmunityAttr extends MoveAttr { } export class IgnoreOpponentStatChangesAttr extends MoveAttr { apply(user: Pokemon, target: Pokemon, move: Move, args: any[]): boolean { @@ -1162,7 +1170,7 @@ export class TargetHalfHpDamageAttr extends FixedDamageAttr { } apply(user: Pokemon, target: Pokemon, move: Move, args: any[]): boolean { - (args[0] as Utils.IntegerHolder).value = Math.max(Math.floor(target.hp / 2), 1); + (args[0] as Utils.IntegerHolder).value = Utils.toDmgValue(target.hp / 2); return true; } @@ -1208,7 +1216,7 @@ export class CounterDamageAttr extends FixedDamageAttr { apply(user: Pokemon, target: Pokemon, move: Move, args: any[]): boolean { const damage = user.turnData.attacksReceived.filter(ar => this.moveFilter(allMoves[ar.move])).reduce((total: integer, ar: AttackMoveResult) => total + ar.damage, 0); - (args[0] as Utils.IntegerHolder).value = Math.floor(Math.max(damage * this.multiplier, 1)); + (args[0] as Utils.IntegerHolder).value = Utils.toDmgValue(damage * this.multiplier); return true; } @@ -1234,7 +1242,7 @@ export class RandomLevelDamageAttr extends FixedDamageAttr { } getDamage(user: Pokemon, target: Pokemon, move: Move): number { - return Math.max(Math.floor(user.level * (user.randSeedIntRange(50, 150) * 0.01)), 1); + return Utils.toDmgValue(user.level * (user.randSeedIntRange(50, 150) * 0.01)); } } @@ -1293,8 +1301,9 @@ export class RecoilAttr extends MoveEffectAttr { return false; } - const recoilDamage = Math.max(Math.floor((!this.useHp ? user.turnData.damageDealt : user.getMaxHp()) * this.damageRatio), - user.turnData.damageDealt ? 1 : 0); + const damageValue = (!this.useHp ? user.turnData.damageDealt : user.getMaxHp()) * this.damageRatio; + const minValue = user.turnData.damageDealt ? 1 : 0; + const recoilDamage = Utils.toDmgValue(damageValue, minValue); if (!recoilDamage) { return false; } @@ -1415,7 +1424,7 @@ export class HalfSacrificialAttr extends MoveEffectAttr { // Check to see if the Pokemon has an ability that blocks non-direct damage applyAbAttrs(BlockNonDirectDamageAbAttr, user, cancelled); if (!cancelled.value) { - user.damageAndUpdate(Math.ceil(user.getMaxHp()/2), HitResult.OTHER, false, true, true); + user.damageAndUpdate(Utils.toDmgValue(user.getMaxHp()/2), HitResult.OTHER, false, true, true); user.scene.queueMessage(i18next.t("moveTriggers:cutHpPowerUpMove", {pokemonName: getPokemonNameWithAffix(user)})); // Queue recoil message } return true; @@ -1466,7 +1475,7 @@ export class HealAttr extends MoveEffectAttr { */ addHealPhase(target: Pokemon, healRatio: number) { target.scene.unshiftPhase(new PokemonHealPhase(target.scene, target.getBattlerIndex(), - Math.max(Math.floor(target.getMaxHp() * healRatio), 1), i18next.t("moveTriggers:healHp", {pokemonName: getPokemonNameWithAffix(target)}), true, !this.showAnim)); + Utils.toDmgValue(target.getMaxHp() * healRatio), i18next.t("moveTriggers:healHp", {pokemonName: getPokemonNameWithAffix(target)}), true, !this.showAnim)); } getTargetBenefitScore(user: Pokemon, target: Pokemon, move: Move): integer { @@ -1750,7 +1759,7 @@ export class HitHealAttr extends MoveEffectAttr { message = i18next.t("battle:drainMessage", {pokemonName: getPokemonNameWithAffix(target)}); } else { // Default healing formula used by draining moves like Absorb, Draining Kiss, Bitter Blade, etc. - healAmount = Math.max(Math.floor(user.turnData.currDamageDealt * this.healRatio), 1); + healAmount = Utils.toDmgValue(user.turnData.currDamageDealt * this.healRatio); message = i18next.t("battle:regainHealth", {pokemonName: getPokemonNameWithAffix(user)}); } if (reverseDrain) { @@ -1849,19 +1858,11 @@ export class MultiHitAttr extends MoveAttr { * @returns True */ apply(user: Pokemon, target: Pokemon, move: Move, args: any[]): boolean { - let hitTimes: integer; + const hitType = new Utils.NumberHolder(this.multiHitType); + applyMoveAttrs(ChangeMultiHitTypeAttr, user, target, move, hitType); + this.multiHitType = hitType.value; - if (target.getAttackMoveEffectiveness(user, new PokemonMove(move.id)) === 0) { - // If there is a type immunity, the attack will stop no matter what - hitTimes = 1; - } else { - const hitType = new Utils.IntegerHolder(this.multiHitType); - applyMoveAttrs(ChangeMultiHitTypeAttr, user, target, move, hitType); - this.multiHitType = hitType.value; - hitTimes = this.getHitCount(user, target); - } - - (args[0] as Utils.IntegerHolder).value = hitTimes; + (args[0] as Utils.NumberHolder).value = this.getHitCount(user, target); return true; } @@ -1883,7 +1884,7 @@ export class MultiHitAttr extends MoveAttr { { const rand = user.randSeedInt(16); const hitValue = new Utils.IntegerHolder(rand); - applyAbAttrs(MaxMultiHitAbAttr, user, null, hitValue); + applyAbAttrs(MaxMultiHitAbAttr, user, null, false, hitValue); if (hitValue.value >= 10) { return 2; } else if (hitValue.value >= 4) { @@ -1954,7 +1955,7 @@ export class StatusEffectAttr extends MoveEffectAttr { } if ((!pokemon.status || (pokemon.status.effect === this.effect && moveChance < 0)) && pokemon.trySetStatus(this.effect, true, user, this.cureTurn)) { - applyPostAttackAbAttrs(ConfusionOnStatusEffectAbAttr, user, target, move, null, this.effect); + applyPostAttackAbAttrs(ConfusionOnStatusEffectAbAttr, user, target, move, null, false, this.effect); return true; } } @@ -2710,7 +2711,7 @@ export class CutHpStatBoostAttr extends StatChangeAttr { apply(user: Pokemon, target: Pokemon, move: Move, args: any[]): Promise { return new Promise(resolve => { - user.damageAndUpdate(Math.floor(user.getMaxHp() / this.cutRatio), HitResult.OTHER, false, true); + user.damageAndUpdate(Utils.toDmgValue(user.getMaxHp() / this.cutRatio), HitResult.OTHER, false, true); user.updateInfo().then(() => { const ret = super.apply(user, target, move, args); if (this.messageCallback) { @@ -3190,7 +3191,7 @@ export class CompareWeightPowerAttr extends VariablePowerAttr { export class HpPowerAttr extends VariablePowerAttr { apply(user: Pokemon, target: Pokemon, move: Move, args: any[]): boolean { - (args[0] as Utils.NumberHolder).value = Math.max(Math.floor(150 * user.getHpRatio()), 1); + (args[0] as Utils.NumberHolder).value = Utils.toDmgValue(150 * user.getHpRatio()); return true; } @@ -3218,7 +3219,7 @@ export class OpponentHighHpPowerAttr extends VariablePowerAttr { * @returns true */ apply(user: Pokemon, target: Pokemon, move: Move, args: any[]): boolean { - (args[0] as Utils.NumberHolder).value = Math.max(Math.floor(this.maxBasePower * target.getHpRatio()), 1); + (args[0] as Utils.NumberHolder).value = Utils.toDmgValue(this.maxBasePower * target.getHpRatio()); return true; } @@ -3412,7 +3413,7 @@ export class PresentPowerAttr extends VariablePowerAttr { // If this move is multi-hit, disable all other hits user.stopMultiHit(); target.scene.unshiftPhase(new PokemonHealPhase(target.scene, target.getBattlerIndex(), - Math.max(Math.floor(target.getMaxHp() / 4), 1), i18next.t("moveTriggers:regainedHealth", {pokemonName: getPokemonNameWithAffix(target)}), true)); + Utils.toDmgValue(target.getMaxHp() / 4), i18next.t("moveTriggers:regainedHealth", {pokemonName: getPokemonNameWithAffix(target)}), true)); } return true; @@ -3760,7 +3761,7 @@ export class VariableMoveCategoryAttr extends MoveAttr { export class PhotonGeyserCategoryAttr extends VariableMoveCategoryAttr { apply(user: Pokemon, target: Pokemon, move: Move, args: any[]): boolean { - const category = (args[0] as Utils.IntegerHolder); + const category = (args[0] as Utils.NumberHolder); if (user.getBattleStat(Stat.ATK, target, move) > user.getBattleStat(Stat.SPATK, target, move)) { category.value = MoveCategory.PHYSICAL; @@ -3773,7 +3774,7 @@ export class PhotonGeyserCategoryAttr extends VariableMoveCategoryAttr { export class TeraBlastCategoryAttr extends VariableMoveCategoryAttr { apply(user: Pokemon, target: Pokemon, move: Move, args: any[]): boolean { - const category = (args[0] as Utils.IntegerHolder); + const category = (args[0] as Utils.NumberHolder); if (user.isTerastallized() && user.getBattleStat(Stat.ATK, target, move) > user.getBattleStat(Stat.SPATK, target, move)) { category.value = MoveCategory.PHYSICAL; @@ -3784,6 +3785,33 @@ export class TeraBlastCategoryAttr extends VariableMoveCategoryAttr { } } +/** + * Increases the power of Tera Blast if the user is Terastallized into Stellar type + * @extends VariablePowerAttr + */ +export class TeraBlastPowerAttr extends VariablePowerAttr { + /** + * Sets Tera Blast's power to 100 if the user is terastallized with + * the Stellar tera type. + * @param user {@linkcode Pokemon} the Pokemon using this move + * @param target n/a + * @param move {@linkcode Move} the Move with this attribute (i.e. Tera Blast) + * @param args + * - [0] {@linkcode Utils.NumberHolder} the applied move's power, factoring in + * previously applied power modifiers. + * @returns + */ + apply(user: Pokemon, target: Pokemon, move: Move, args: any[]): boolean { + const power = args[0] as Utils.NumberHolder; + if (user.isTerastallized() && user.getTeraType() === Type.STELLAR) { + power.value = 100; + return true; + } + + return false; + } +} + /** * Change the move category to status when used on the ally * @extends VariableMoveCategoryAttr @@ -3836,10 +3864,15 @@ export class VariableMoveTypeAttr extends MoveAttr { export class FormChangeItemTypeAttr extends VariableMoveTypeAttr { apply(user: Pokemon, target: Pokemon, move: Move, args: any[]): boolean { + const moveType = args[0]; + if (!(moveType instanceof Utils.NumberHolder)) { + return false; + } + if ([user.species.speciesId, user.fusionSpecies?.speciesId].includes(Species.ARCEUS) || [user.species.speciesId, user.fusionSpecies?.speciesId].includes(Species.SILVALLY)) { const form = user.species.speciesId === Species.ARCEUS || user.species.speciesId === Species.SILVALLY ? user.formIndex : user.fusionSpecies?.formIndex!; // TODO: is this bang correct? - move.type = Type[Type[form]]; + moveType.value = Type[Type[form]]; return true; } @@ -3849,24 +3882,29 @@ export class FormChangeItemTypeAttr extends VariableMoveTypeAttr { export class TechnoBlastTypeAttr extends VariableMoveTypeAttr { apply(user: Pokemon, target: Pokemon, move: Move, args: any[]): boolean { + const moveType = args[0]; + if (!(moveType instanceof Utils.NumberHolder)) { + return false; + } + if ([user.species.speciesId, user.fusionSpecies?.speciesId].includes(Species.GENESECT)) { const form = user.species.speciesId === Species.GENESECT ? user.formIndex : user.fusionSpecies?.formIndex; switch (form) { case 1: // Shock Drive - move.type = Type.ELECTRIC; + moveType.value = Type.ELECTRIC; break; case 2: // Burn Drive - move.type = Type.FIRE; + moveType.value = Type.FIRE; break; case 3: // Chill Drive - move.type = Type.ICE; + moveType.value = Type.ICE; break; case 4: // Douse Drive - move.type = Type.WATER; + moveType.value = Type.WATER; break; default: - move.type = Type.NORMAL; + moveType.value = Type.NORMAL; break; } return true; @@ -3878,15 +3916,20 @@ export class TechnoBlastTypeAttr extends VariableMoveTypeAttr { export class AuraWheelTypeAttr extends VariableMoveTypeAttr { apply(user: Pokemon, target: Pokemon, move: Move, args: any[]): boolean { + const moveType = args[0]; + if (!(moveType instanceof Utils.NumberHolder)) { + return false; + } + if ([user.species.speciesId, user.fusionSpecies?.speciesId].includes(Species.MORPEKO)) { const form = user.species.speciesId === Species.MORPEKO ? user.formIndex : user.fusionSpecies?.formIndex; switch (form) { case 1: // Hangry Mode - move.type = Type.DARK; + moveType.value = Type.DARK; break; default: // Full Belly Mode - move.type = Type.ELECTRIC; + moveType.value = Type.ELECTRIC; break; } return true; @@ -3898,18 +3941,23 @@ export class AuraWheelTypeAttr extends VariableMoveTypeAttr { export class RagingBullTypeAttr extends VariableMoveTypeAttr { apply(user: Pokemon, target: Pokemon, move: Move, args: any[]): boolean { + const moveType = args[0]; + if (!(moveType instanceof Utils.NumberHolder)) { + return false; + } + if ([user.species.speciesId, user.fusionSpecies?.speciesId].includes(Species.PALDEA_TAUROS)) { const form = user.species.speciesId === Species.PALDEA_TAUROS ? user.formIndex : user.fusionSpecies?.formIndex; switch (form) { case 1: // Blaze breed - move.type = Type.FIRE; + moveType.value = Type.FIRE; break; case 2: // Aqua breed - move.type = Type.WATER; + moveType.value = Type.WATER; break; default: - move.type = Type.FIGHTING; + moveType.value = Type.FIGHTING; break; } return true; @@ -3921,25 +3969,30 @@ export class RagingBullTypeAttr extends VariableMoveTypeAttr { export class IvyCudgelTypeAttr extends VariableMoveTypeAttr { apply(user: Pokemon, target: Pokemon, move: Move, args: any[]): boolean { + const moveType = args[0]; + if (!(moveType instanceof Utils.NumberHolder)) { + return false; + } + if ([user.species.speciesId, user.fusionSpecies?.speciesId].includes(Species.OGERPON)) { const form = user.species.speciesId === Species.OGERPON ? user.formIndex : user.fusionSpecies?.formIndex; switch (form) { case 1: // Wellspring Mask case 5: // Wellspring Mask Tera - move.type = Type.WATER; + moveType.value = Type.WATER; break; case 2: // Hearthflame Mask case 6: // Hearthflame Mask Tera - move.type = Type.FIRE; + moveType.value = Type.FIRE; break; case 3: // Cornerstone Mask case 7: // Cornerstone Mask Tera - move.type = Type.ROCK; + moveType.value = Type.ROCK; break; case 4: // Teal Mask Tera default: - move.type = Type.GRASS; + moveType.value = Type.GRASS; break; } return true; @@ -3951,22 +4004,27 @@ export class IvyCudgelTypeAttr extends VariableMoveTypeAttr { export class WeatherBallTypeAttr extends VariableMoveTypeAttr { apply(user: Pokemon, target: Pokemon, move: Move, args: any[]): boolean { + const moveType = args[0]; + if (!(moveType instanceof Utils.NumberHolder)) { + return false; + } + if (!user.scene.arena.weather?.isEffectSuppressed(user.scene)) { switch (user.scene.arena.weather?.weatherType) { case WeatherType.SUNNY: case WeatherType.HARSH_SUN: - move.type = Type.FIRE; + moveType.value = Type.FIRE; break; case WeatherType.RAIN: case WeatherType.HEAVY_RAIN: - move.type = Type.WATER; + moveType.value = Type.WATER; break; case WeatherType.SANDSTORM: - move.type = Type.ROCK; + moveType.value = Type.ROCK; break; case WeatherType.HAIL: case WeatherType.SNOW: - move.type = Type.ICE; + moveType.value = Type.ICE; break; default: return false; @@ -3989,10 +4047,15 @@ export class TerrainPulseTypeAttr extends VariableMoveTypeAttr { * @param user {@linkcode Pokemon} using this move * @param target N/A * @param move N/A - * @param args [0] {@linkcode Utils.IntegerHolder} The move's type to be modified + * @param args [0] {@linkcode Utils.NumberHolder} The move's type to be modified * @returns true if the function succeeds */ apply(user: Pokemon, target: Pokemon, move: Move, args: any[]): boolean { + const moveType = args[0]; + if (!(moveType instanceof Utils.NumberHolder)) { + return false; + } + if (!user.isGrounded()) { return false; } @@ -4000,16 +4063,16 @@ export class TerrainPulseTypeAttr extends VariableMoveTypeAttr { const currentTerrain = user.scene.arena.getTerrainType(); switch (currentTerrain) { case TerrainType.MISTY: - move.type = Type.FAIRY; + moveType.value = Type.FAIRY; break; case TerrainType.ELECTRIC: - move.type = Type.ELECTRIC; + moveType.value = Type.ELECTRIC; break; case TerrainType.GRASSY: - move.type = Type.GRASS; + moveType.value = Type.GRASS; break; case TerrainType.PSYCHIC: - move.type = Type.PSYCHIC; + moveType.value = Type.PSYCHIC; break; default: return false; @@ -4018,8 +4081,17 @@ export class TerrainPulseTypeAttr extends VariableMoveTypeAttr { } } +/** + * Changes type based on the user's IVs + * @extends VariableMoveTypeAttr + */ export class HiddenPowerTypeAttr extends VariableMoveTypeAttr { apply(user: Pokemon, target: Pokemon, move: Move, args: any[]): boolean { + const moveType = args[0]; + if (!(moveType instanceof Utils.NumberHolder)) { + return false; + } + const iv_val = Math.floor(((user.ivs[Stat.HP] & 1) +(user.ivs[Stat.ATK] & 1) * 2 +(user.ivs[Stat.DEF] & 1) * 4 @@ -4027,7 +4099,7 @@ export class HiddenPowerTypeAttr extends VariableMoveTypeAttr { +(user.ivs[Stat.SPATK] & 1) * 16 +(user.ivs[Stat.SPDEF] & 1) * 32) * 15/63); - move.type = [ + moveType.value = [ Type.FIGHTING, Type.FLYING, Type.POISON, Type.GROUND, Type.ROCK, Type.BUG, Type.GHOST, Type.STEEL, Type.FIRE, Type.WATER, Type.GRASS, Type.ELECTRIC, @@ -4037,16 +4109,47 @@ export class HiddenPowerTypeAttr extends VariableMoveTypeAttr { } } +/** + * Changes the type of Tera Blast to match the user's tera type + * @extends VariableMoveTypeAttr + */ +export class TeraBlastTypeAttr extends VariableMoveTypeAttr { + /** + * @param user {@linkcode Pokemon} the user of the move + * @param target {@linkcode Pokemon} N/A + * @param move {@linkcode Move} the move with this attribute + * @param args `[0]` the move's type to be modified + * @returns `true` if the move's type was modified; `false` otherwise + */ + apply(user: Pokemon, target: Pokemon, move: Move, args: any[]): boolean { + const moveType = args[0]; + if (!(moveType instanceof Utils.NumberHolder)) { + return false; + } + + if (user.isTerastallized()) { + moveType.value = user.getTeraType(); // changes move type to tera type + return true; + } + + return false; + } +} + export class MatchUserTypeAttr extends VariableMoveTypeAttr { apply(user: Pokemon, target: Pokemon, move: Move, args: any[]): boolean { + const moveType = args[0]; + if (!(moveType instanceof Utils.NumberHolder)) { + return false; + } const userTypes = user.getTypes(true); if (userTypes.includes(Type.STELLAR)) { // will not change to stellar type const nonTeraTypes = user.getTypes(); - move.type = nonTeraTypes[0]; + moveType.value = nonTeraTypes[0]; return true; } else if (userTypes.length > 0) { - move.type = userTypes[0]; + moveType.value = userTypes[0]; return true; } else { return false; @@ -4065,8 +4168,8 @@ export class NeutralDamageAgainstFlyingTypeMultiplierAttr extends VariableMoveTy apply(user: Pokemon, target: Pokemon, move: Move, args: any[]): boolean { if (!target.getTag(BattlerTagType.IGNORE_FLYING)) { const multiplier = args[0] as Utils.NumberHolder; - //When a flying type is hit, the first hit is always 1x multiplier. Levitating pokemon are instantly affected by typing - if (target.isOfType(Type.FLYING) || target.hasAbility(Abilities.LEVITATE)) { + //When a flying type is hit, the first hit is always 1x multiplier. + if (target.isOfType(Type.FLYING)) { multiplier.value = 1; } return true; @@ -4080,8 +4183,12 @@ export class WaterSuperEffectTypeMultiplierAttr extends VariableMoveTypeMultipli apply(user: Pokemon, target: Pokemon, move: Move, args: any[]): boolean { const multiplier = args[0] as Utils.NumberHolder; if (target.isOfType(Type.WATER)) { - multiplier.value *= 4; // Increased twice because initial reduction against water - return true; + const effectivenessAgainstWater = new Utils.NumberHolder(getTypeDamageMultiplier(move.type, Type.WATER)); + applyChallenges(user.scene.gameMode, ChallengeType.TYPE_EFFECTIVENESS, effectivenessAgainstWater); + if (effectivenessAgainstWater.value !== 0) { + multiplier.value *= 2 / effectivenessAgainstWater.value; + return true; + } } return false; @@ -4186,9 +4293,9 @@ const crashDamageFunc = (user: Pokemon, move: Move) => { return false; } - user.damageAndUpdate(Math.floor(user.getMaxHp() / 2), HitResult.OTHER, false, true); + user.damageAndUpdate(Utils.toDmgValue(user.getMaxHp() / 2), HitResult.OTHER, false, true); user.scene.queueMessage(i18next.t("moveTriggers:keptGoingAndCrashed", {pokemonName: getPokemonNameWithAffix(user)})); - user.turnData.damageTaken += Math.floor(user.getMaxHp() / 2); + user.turnData.damageTaken += Utils.toDmgValue(user.getMaxHp() / 2); return true; }; @@ -4390,7 +4497,7 @@ export class AddBattlerTagAttr extends MoveEffectAttr { } getTargetBenefitScore(user: Pokemon, target: Pokemon, move: Move): integer { - let moveChance = this.getMoveChance(user,target,move,this.selfTarget, false); + let moveChance = this.getMoveChance(user, target, move, this.selfTarget, false); if (moveChance < 0) { moveChance = 100; } @@ -4438,6 +4545,39 @@ export class GulpMissileTagAttr extends MoveEffectAttr { } } +/** + * Attribute to implement Jaw Lock's linked trapping effect between the user and target + * @extends AddBattlerTagAttr + */ +export class JawLockAttr extends AddBattlerTagAttr { + constructor() { + super(BattlerTagType.TRAPPED); + } + + apply(user: Pokemon, target: Pokemon, move: Move, args: any[]): boolean { + if (!super.canApply(user, target, move, args)) { + return false; + } + + // If either the user or the target already has the tag, do not apply + if (user.getTag(TrappedTag) || target.getTag(TrappedTag)) { + return false; + } + + const moveChance = this.getMoveChance(user, target, move, this.selfTarget); + if (moveChance < 0 || moveChance === 100 || user.randSeedInt(100) < moveChance) { + /** + * Add the tag to both the user and the target. + * The target's tag source is considered to be the user and vice versa + */ + return target.addTag(BattlerTagType.TRAPPED, 1, move.id, user.id) + && user.addTag(BattlerTagType.TRAPPED, 1, move.id, target.id); + } + + return false; + } +} + export class CurseAttr extends MoveEffectAttr { apply(user: Pokemon, target: Pokemon, move:Move, args: any[]): boolean { @@ -4705,7 +4845,7 @@ export class AddArenaTrapTagHitAttr extends AddArenaTagAttr { * @param move {@linkcode Move} being used */ apply(user: Pokemon, target: Pokemon, move: Move, args: any[]): boolean { - const moveChance = this.getMoveChance(user,target,move,this.selfTarget, true); + const moveChance = this.getMoveChance(user, target, move, this.selfTarget, true); const side = (this.selfSideTarget ? user : target).isPlayer() ? ArenaTagSide.PLAYER : ArenaTagSide.ENEMY; const tag = user.scene.arena.getTagOnSide(this.tagType, side) as ArenaTrapTag; if ((moveChance < 0 || moveChance === 100 || user.randSeedInt(100) < moveChance) && user.getLastXMoves(1)[0].result === MoveResult.SUCCESS) { @@ -4825,7 +4965,7 @@ export class SwapArenaTagsAttr extends MoveEffectAttr { } - user.scene.queueMessage( i18next.t("moveTriggers:swapArenaTags", {pokemonName: getPokemonNameWithAffix(user)})); + user.scene.queueMessage(i18next.t("moveTriggers:swapArenaTags", {pokemonName: getPokemonNameWithAffix(user)})); return true; } } @@ -4865,15 +5005,15 @@ export class RevivalBlessingAttr extends MoveEffectAttr { const pokemon = faintedPokemon[user.randSeedInt(faintedPokemon.length)]; const slotIndex = user.scene.getEnemyParty().findIndex(p => pokemon.id === p.id); pokemon.resetStatus(); - pokemon.heal(Math.min(Math.max(Math.ceil(Math.floor(0.5 * pokemon.getMaxHp())), 1), pokemon.getMaxHp())); - user.scene.queueMessage(`${getPokemonNameWithAffix(pokemon)} was revived!`,0,true); + pokemon.heal(Math.min(Utils.toDmgValue(0.5 * pokemon.getMaxHp()), pokemon.getMaxHp())); + user.scene.queueMessage(i18next.t("moveTriggers:revivalBlessing", {pokemonName: getPokemonNameWithAffix(pokemon)}), 0, true); if (user.scene.currentBattle.double && user.scene.getEnemyParty().length > 1) { const allyPokemon = user.getAlly(); if (slotIndex<=1) { user.scene.unshiftPhase(new SwitchSummonPhase(user.scene, pokemon.getFieldIndex(), slotIndex, false, false, false)); } else if (allyPokemon.isFainted()) { - user.scene.unshiftPhase(new SwitchSummonPhase(user.scene, allyPokemon.getFieldIndex(), slotIndex, false, false,false)); + user.scene.unshiftPhase(new SwitchSummonPhase(user.scene, allyPokemon.getFieldIndex(), slotIndex, false, false, false)); } } resolve(true); @@ -5659,7 +5799,10 @@ export class AbilityChangeAttr extends MoveEffectAttr { return false; } - (this.selfTarget ? user : target).summonData.ability = this.ability; + const moveTarget = this.selfTarget ? user : target; + + moveTarget.summonData.ability = this.ability; + user.scene.triggerPokemonFormChange(moveTarget, SpeciesFormChangeRevertWeatherFormTrigger); user.scene.queueMessage(i18next.t("moveTriggers:acquiredAbility", {pokemonName: getPokemonNameWithAffix((this.selfTarget ? user : target)), abilityName: allAbilities[this.ability].name})); @@ -5745,6 +5888,10 @@ export class SwitchAbilitiesAttr extends MoveEffectAttr { target.summonData.ability = tempAbilityId; user.scene.queueMessage(i18next.t("moveTriggers:swappedAbilitiesWithTarget", {pokemonName: getPokemonNameWithAffix(user)})); + // Swaps Forecast from Castform + user.scene.arena.triggerWeatherBasedFormChangesToNormal(); + // Swaps Forecast to Castform (edge case) + user.scene.arena.triggerWeatherBasedFormChanges(); return true; } @@ -5770,6 +5917,7 @@ export class SuppressAbilitiesAttr extends MoveEffectAttr { } target.summonData.abilitySuppressed = true; + target.scene.arena.triggerWeatherBasedFormChangesToNormal(); target.scene.queueMessage(i18next.t("moveTriggers:suppressAbilities", {pokemonName: getPokemonNameWithAffix(target)})); @@ -6062,7 +6210,7 @@ export class ResistLastMoveTypeAttr extends MoveEffectAttr { return false; } const userTypes = user.getTypes(); - const validTypes = getTypeResistances(moveData.type).filter(t => !userTypes.includes(t)); // valid types are ones that are not already the user's types + const validTypes = this.getTypeResistances(user.scene.gameMode, moveData.type).filter(t => !userTypes.includes(t)); // valid types are ones that are not already the user's types if (!validTypes.length) { return false; } @@ -6074,6 +6222,25 @@ export class ResistLastMoveTypeAttr extends MoveEffectAttr { return true; } + /** + * Retrieve the types resisting a given type. Used by Conversion 2 + * @returns An array populated with Types, or an empty array if no resistances exist (Unknown or Stellar type) + */ + getTypeResistances(gameMode: GameMode, type: number): Type[] { + const typeResistances: Type[] = []; + + for (let i = 0; i < Object.keys(Type).length; i++) { + const multiplier = new NumberHolder(1); + multiplier.value = getTypeDamageMultiplier(type, i); + applyChallenges(gameMode, ChallengeType.TYPE_EFFECTIVENESS, multiplier); + if (multiplier.value < 1) { + typeResistances.push(i); + } + } + + return typeResistances; + } + getCondition(): MoveConditionFunc { return (user, target, move) => { const moveHistory = target.getLastXMoves(); @@ -6416,7 +6583,7 @@ export function initMoves() { .attr(StatusEffectAttr, StatusEffect.PARALYSIS), new StatusMove(Moves.THUNDER_WAVE, Type.ELECTRIC, 90, 20, -1, 0, 1) .attr(StatusEffectAttr, StatusEffect.PARALYSIS) - .attr(StatusMoveTypeImmunityAttr, Type.GROUND), + .attr(RespectAttackTypeImmunityAttr), new AttackMove(Moves.THUNDER, Type.ELECTRIC, MoveCategory.SPECIAL, 110, 70, 10, 30, 0, 1) .attr(StatusEffectAttr, StatusEffect.PARALYSIS) .attr(ThunderAccuracyAttr) @@ -6713,7 +6880,16 @@ export function initMoves() { .attr(ExposedMoveAttr, BattlerTagType.IGNORE_GHOST), new SelfStatusMove(Moves.DESTINY_BOND, Type.GHOST, -1, 5, -1, 0, 2) .ignoresProtect() - .attr(DestinyBondAttr), + .attr(DestinyBondAttr) + .condition((user, target, move) => { + // Retrieves user's previous move, returns empty array if no moves have been used + const lastTurnMove = user.getLastXMoves(1); + // Checks last move and allows destiny bond to be used if: + // - no previous moves have been made + // - the previous move used was not destiny bond + // - the previous move was unsuccessful + return lastTurnMove.length === 0 || lastTurnMove[0].move !== move.id || lastTurnMove[0].result !== MoveResult.SUCCESS; + }), new StatusMove(Moves.PERISH_SONG, Type.NORMAL, -1, 5, -1, 0, 2) .attr(FaintCountdownAttr) .ignoresProtect() @@ -7474,7 +7650,7 @@ export function initMoves() { .attr(OpponentHighHpPowerAttr, 120), new AttackMove(Moves.MAGMA_STORM, Type.FIRE, MoveCategory.SPECIAL, 100, 75, 5, -1, 0, 4) .attr(TrapAttr, BattlerTagType.MAGMA_STORM), - new StatusMove(Moves.DARK_VOID, Type.DARK, 50, 10, -1, 0, 4) + new StatusMove(Moves.DARK_VOID, Type.DARK, 80, 10, -1, 0, 4) //Accuracy from Generations 4-6 .attr(StatusEffectAttr, StatusEffect.SLEEP) .target(MoveTarget.ALL_NEAR_ENEMIES), new AttackMove(Moves.SEED_FLARE, Type.GRASS, MoveCategory.SPECIAL, 120, 85, 5, 40, 0, 4) @@ -7754,9 +7930,9 @@ export function initMoves() { .condition((user, target, move) => user.battleData.berriesEaten.length > 0), new StatusMove(Moves.ROTOTILLER, Type.GROUND, -1, 10, -1, 0, 6) .target(MoveTarget.ALL) - .condition((user,target,move) => { + .condition((user, target, move) => { // If any fielded pokémon is grass-type and grounded. - return [...user.scene.getEnemyParty(),...user.scene.getParty()].some((poke) => poke.isOfType(Type.GRASS) && poke.isGrounded()); + return [...user.scene.getEnemyParty(), ...user.scene.getParty()].some((poke) => poke.isOfType(Type.GRASS) && poke.isGrounded()); }) .attr(StatChangeAttr, [BattleStat.ATK, BattleStat.SPATK], 1, false, (user, target, move) => target.isOfType(Type.GRASS) && target.isGrounded()), new StatusMove(Moves.STICKY_WEB, Type.BUG, -1, 20, -1, 0, 6) @@ -7790,7 +7966,8 @@ export function initMoves() { .target(MoveTarget.ALL_NEAR_OTHERS), new AttackMove(Moves.FREEZE_DRY, Type.ICE, MoveCategory.SPECIAL, 70, 100, 20, 10, 0, 6) .attr(StatusEffectAttr, StatusEffect.FREEZE) - .attr(WaterSuperEffectTypeMultiplierAttr), + .attr(WaterSuperEffectTypeMultiplierAttr) + .partial(), // This currently just multiplies the move's power instead of changing its effectiveness. It also doesn't account for abilities that modify type effectiveness such as tera shell. new AttackMove(Moves.DISARMING_VOICE, Type.FAIRY, MoveCategory.SPECIAL, 40, -1, 15, -1, 0, 6) .soundBased() .target(MoveTarget.ALL_NEAR_ENEMIES), @@ -8256,8 +8433,8 @@ export function initMoves() { .partial() .ignoresVirtual(), /* End Unused */ - new AttackMove(Moves.ZIPPY_ZAP, Type.ELECTRIC, MoveCategory.PHYSICAL, 80, 100, 10, 100, 2, 7) - .attr(StatChangeAttr, BattleStat.EVA, 1, true), + new AttackMove(Moves.ZIPPY_ZAP, Type.ELECTRIC, MoveCategory.PHYSICAL, 50, 100, 15, 100, 2, 7) //LGPE Implementation + .attr(CritOnlyAttr), new AttackMove(Moves.SPLISHY_SPLASH, Type.WATER, MoveCategory.SPECIAL, 90, 100, 15, 30, 0, 7) .attr(StatusEffectAttr, StatusEffect.PARALYSIS) .target(MoveTarget.ALL_NEAR_ENEMIES), @@ -8313,8 +8490,7 @@ export function initMoves() { .attr(HighCritAttr) .attr(BypassRedirectAttr), new AttackMove(Moves.JAW_LOCK, Type.DARK, MoveCategory.PHYSICAL, 80, 100, 10, -1, 0, 8) - .attr(AddBattlerTagAttr, BattlerTagType.TRAPPED, false, false, 1, 1, false, true) - .attr(AddBattlerTagAttr, BattlerTagType.TRAPPED, true, false, 1, 1, false, true) + .attr(JawLockAttr) .bitingMove(), new SelfStatusMove(Moves.STUFF_CHEEKS, Type.NORMAL, -1, 10, -1, 0, 8) // TODO: Stuff Cheeks should not be selectable when the user does not have a berry, see wiki .attr(EatBerryAttr) @@ -8430,7 +8606,8 @@ export function initMoves() { new AttackMove(Moves.BODY_PRESS, Type.FIGHTING, MoveCategory.PHYSICAL, 80, 100, 10, -1, 0, 8) .attr(DefAtkAttr), new StatusMove(Moves.DECORATE, Type.FAIRY, -1, 15, -1, 0, 8) - .attr(StatChangeAttr, [ BattleStat.ATK, BattleStat.SPATK ], 2), + .attr(StatChangeAttr, [ BattleStat.ATK, BattleStat.SPATK ], 2) + .ignoresProtect(), new AttackMove(Moves.DRUM_BEATING, Type.GRASS, MoveCategory.PHYSICAL, 80, 100, 10, 100, 0, 8) .attr(StatChangeAttr, BattleStat.SPD, -1) .makesContact(false), @@ -8507,7 +8684,7 @@ export function initMoves() { .condition(failIfDampCondition) .makesContact(false), new AttackMove(Moves.GRASSY_GLIDE, Type.GRASS, MoveCategory.PHYSICAL, 55, 100, 20, -1, 0, 8) - .attr(IncrementMovePriorityAttr,(user,target,move) =>user.scene.arena.getTerrainType()===TerrainType.GRASSY&&user.isGrounded()), + .attr(IncrementMovePriorityAttr, (user, target, move) =>user.scene.arena.getTerrainType()===TerrainType.GRASSY&&user.isGrounded()), new AttackMove(Moves.RISING_VOLTAGE, Type.ELECTRIC, MoveCategory.SPECIAL, 70, 100, 20, -1, 0, 8) .attr(MovePowerMultiplierAttr, (user, target, move) => user.scene.arena.getTerrainType() === TerrainType.ELECTRIC && target.isGrounded() ? 2 : 1), new AttackMove(Moves.TERRAIN_PULSE, Type.NORMAL, MoveCategory.SPECIAL, 50, 100, 10, -1, 0, 8) @@ -8544,7 +8721,6 @@ export function initMoves() { .attr(StatusEffectAttr, StatusEffect.BURN), new StatusMove(Moves.JUNGLE_HEALING, Type.GRASS, -1, 10, -1, 0, 8) .attr(HealAttr, 0.25, true, false) - .attr(HealStatusEffectAttr, true, StatusEffect.PARALYSIS, StatusEffect.POISON, StatusEffect.TOXIC, StatusEffect.BURN, StatusEffect.SLEEP) .attr(HealStatusEffectAttr, false, StatusEffect.PARALYSIS, StatusEffect.POISON, StatusEffect.TOXIC, StatusEffect.BURN, StatusEffect.SLEEP) .target(MoveTarget.USER_AND_ALLIES), new AttackMove(Moves.WICKED_BLOW, Type.DARK, MoveCategory.PHYSICAL, 75, 100, 5, -1, 0, 8) @@ -8648,8 +8824,7 @@ export function initMoves() { .windMove() .target(MoveTarget.ALL_NEAR_ENEMIES), new StatusMove(Moves.LUNAR_BLESSING, Type.PSYCHIC, -1, 5, -1, 0, 8) - .attr(HealAttr, 0.25) - .attr(HealStatusEffectAttr, true, StatusEffect.PARALYSIS, StatusEffect.POISON, StatusEffect.TOXIC, StatusEffect.BURN, StatusEffect.SLEEP) + .attr(HealAttr, 0.25, true, false) .attr(HealStatusEffectAttr, false, StatusEffect.PARALYSIS, StatusEffect.POISON, StatusEffect.TOXIC, StatusEffect.BURN, StatusEffect.SLEEP) .target(MoveTarget.USER_AND_ALLIES) .triageMove(), @@ -8759,7 +8934,10 @@ export function initMoves() { End Unused */ new AttackMove(Moves.TERA_BLAST, Type.NORMAL, MoveCategory.SPECIAL, 80, 100, 10, -1, 0, 9) .attr(TeraBlastCategoryAttr) - .unimplemented(), + .attr(TeraBlastTypeAttr) + .attr(TeraBlastPowerAttr) + .attr(StatChangeAttr, [ BattleStat.ATK, BattleStat.SPATK ], -1, true, (user, target, move) => user.isTerastallized() && user.isOfType(Type.STELLAR)) + .partial(), new SelfStatusMove(Moves.SILK_TRAP, Type.BUG, -1, 10, -1, 4, 9) .attr(ProtectAttr, BattlerTagType.SILK_TRAP), new AttackMove(Moves.AXE_KICK, Type.FIGHTING, MoveCategory.PHYSICAL, 120, 90, 10, 30, 0, 9) diff --git a/src/data/pokeball.ts b/src/data/pokeball.ts index f26451b802b..59ff4ed86ce 100644 --- a/src/data/pokeball.ts +++ b/src/data/pokeball.ts @@ -95,7 +95,7 @@ export function doPokeballBounceAnim(scene: BattleScene, pokeball: Phaser.GameOb duration: bouncePower * baseBounceDuration, ease: "Cubic.easeIn", onComplete: () => { - scene.playSound("pb_bounce_1", { volume: bouncePower }); + scene.playSound("se/pb_bounce_1", { volume: bouncePower }); bouncePower = bouncePower > 0.01 ? bouncePower * 0.5 : 0; diff --git a/src/data/pokemon-evolutions.ts b/src/data/pokemon-evolutions.ts index 0c91263f1f3..315e75e53e1 100644 --- a/src/data/pokemon-evolutions.ts +++ b/src/data/pokemon-evolutions.ts @@ -1582,7 +1582,8 @@ export const pokemonEvolutions: PokemonEvolutions = { new SpeciesEvolution(Species.BLISSEY, 1, null, new SpeciesFriendshipEvolutionCondition(200), SpeciesWildEvolutionDelay.LONG) ], [Species.PICHU]: [ - new SpeciesEvolution(Species.PIKACHU, 1, null, new SpeciesFriendshipEvolutionCondition(90), SpeciesWildEvolutionDelay.SHORT) + new SpeciesFormEvolution(Species.PIKACHU, "spiky", "partner", 1, null, new SpeciesFriendshipEvolutionCondition(90), SpeciesWildEvolutionDelay.SHORT), + new SpeciesFormEvolution(Species.PIKACHU, "", "", 1, null, new SpeciesFriendshipEvolutionCondition(90), SpeciesWildEvolutionDelay.SHORT), ], [Species.CLEFFA]: [ new SpeciesEvolution(Species.CLEFAIRY, 1, null, new SpeciesFriendshipEvolutionCondition(160), SpeciesWildEvolutionDelay.SHORT) diff --git a/src/data/pokemon-forms.ts b/src/data/pokemon-forms.ts index 95a89c7c640..e4417f8e8bb 100644 --- a/src/data/pokemon-forms.ts +++ b/src/data/pokemon-forms.ts @@ -10,6 +10,7 @@ import { Species } from "#enums/species"; import { TimeOfDay } from "#enums/time-of-day"; import { getPokemonNameWithAffix } from "#app/messages.js"; import i18next from "i18next"; +import { WeatherType } from "./weather"; export enum FormChangeItem { NONE, @@ -356,6 +357,78 @@ export class SpeciesDefaultFormMatchTrigger extends SpeciesFormChangeTrigger { } } +/** + * Class used for triggering form changes based on weather. + * Used by Castform. + * @extends SpeciesFormChangeTrigger + */ +export class SpeciesFormChangeWeatherTrigger extends SpeciesFormChangeTrigger { + /** The ability that triggers the form change */ + public ability: Abilities; + /** The list of weathers that trigger the form change */ + public weathers: WeatherType[]; + + constructor(ability: Abilities, weathers: WeatherType[]) { + super(); + this.ability = ability; + this.weathers = weathers; + } + + /** + * Checks if the Pokemon has the required ability and is in the correct weather while + * the weather or ability is also not suppressed. + * @param {Pokemon} pokemon the pokemon that is trying to do the form change + * @returns `true` if the Pokemon can change forms, `false` otherwise + */ + canChange(pokemon: Pokemon): boolean { + const currentWeather = pokemon.scene.arena.weather?.weatherType ?? WeatherType.NONE; + const isWeatherSuppressed = pokemon.scene.arena.weather?.isEffectSuppressed(pokemon.scene); + const isAbilitySuppressed = pokemon.summonData.abilitySuppressed; + + return !isAbilitySuppressed && !isWeatherSuppressed && (pokemon.hasAbility(this.ability) && this.weathers.includes(currentWeather)); + } +} + +/** + * Class used for reverting to the original form when the weather runs out + * or when the user loses the ability/is suppressed. + * Used by Castform. + * @extends SpeciesFormChangeTrigger + */ +export class SpeciesFormChangeRevertWeatherFormTrigger extends SpeciesFormChangeTrigger { + /** The ability that triggers the form change*/ + public ability: Abilities; + /** The list of weathers that will also trigger a form change to original form */ + public weathers: WeatherType[]; + + constructor(ability: Abilities, weathers: WeatherType[]) { + super(); + this.ability = ability; + this.weathers = weathers; + } + + /** + * Checks if the Pokemon has the required ability and the weather is one that will revert + * the Pokemon to its original form or the weather or ability is suppressed + * @param {Pokemon} pokemon the pokemon that is trying to do the form change + * @returns `true` if the Pokemon will revert to its original form, `false` otherwise + */ + canChange(pokemon: Pokemon): boolean { + if (pokemon.hasAbility(this.ability, false, true)) { + const currentWeather = pokemon.scene.arena.weather?.weatherType ?? WeatherType.NONE; + const isWeatherSuppressed = pokemon.scene.arena.weather?.isEffectSuppressed(pokemon.scene); + const isAbilitySuppressed = pokemon.summonData.abilitySuppressed; + const summonDataAbility = pokemon.summonData.ability; + const isAbilityChanged = summonDataAbility !== this.ability && summonDataAbility !== Abilities.NONE; + + if (this.weathers.includes(currentWeather) || isWeatherSuppressed || isAbilitySuppressed || isAbilityChanged) { + return true; + } + } + return false; + } +} + export function getSpeciesFormChangeMessage(pokemon: Pokemon, formChange: SpeciesFormChange, preName: string): string { const isMega = formChange.formKey.indexOf(SpeciesFormKey.MEGA) > -1; const isGmax = formChange.formKey.indexOf(SpeciesFormKey.GIGANTAMAX) > -1; @@ -839,7 +912,24 @@ export const pokemonFormChanges: PokemonFormChanges = { new SpeciesFormChange(Species.CRAMORANT, "gorging", "", new SpeciesFormChangeManualTrigger, true), new SpeciesFormChange(Species.CRAMORANT, "gulping", "", new SpeciesFormChangeActiveTrigger(false), true), new SpeciesFormChange(Species.CRAMORANT, "gorging", "", new SpeciesFormChangeActiveTrigger(false), true), - ] + ], + [Species.CASTFORM]: [ + new SpeciesFormChange(Species.CASTFORM, "", "sunny", new SpeciesFormChangeWeatherTrigger(Abilities.FORECAST, [WeatherType.SUNNY, WeatherType.HARSH_SUN]), true), + new SpeciesFormChange(Species.CASTFORM, "rainy", "sunny", new SpeciesFormChangeWeatherTrigger(Abilities.FORECAST, [WeatherType.SUNNY, WeatherType.HARSH_SUN]), true), + new SpeciesFormChange(Species.CASTFORM, "snowy", "sunny", new SpeciesFormChangeWeatherTrigger(Abilities.FORECAST, [WeatherType.SUNNY, WeatherType.HARSH_SUN]), true), + new SpeciesFormChange(Species.CASTFORM, "", "rainy", new SpeciesFormChangeWeatherTrigger(Abilities.FORECAST, [WeatherType.RAIN, WeatherType.HEAVY_RAIN]), true), + new SpeciesFormChange(Species.CASTFORM, "sunny", "rainy", new SpeciesFormChangeWeatherTrigger(Abilities.FORECAST, [WeatherType.RAIN, WeatherType.HEAVY_RAIN]), true), + new SpeciesFormChange(Species.CASTFORM, "snowy", "rainy", new SpeciesFormChangeWeatherTrigger(Abilities.FORECAST, [WeatherType.RAIN, WeatherType.HEAVY_RAIN]), true), + new SpeciesFormChange(Species.CASTFORM, "", "snowy", new SpeciesFormChangeWeatherTrigger(Abilities.FORECAST, [WeatherType.HAIL, WeatherType.SNOW]), true), + new SpeciesFormChange(Species.CASTFORM, "sunny", "snowy", new SpeciesFormChangeWeatherTrigger(Abilities.FORECAST, [WeatherType.HAIL, WeatherType.SNOW]), true), + new SpeciesFormChange(Species.CASTFORM, "rainy", "snowy", new SpeciesFormChangeWeatherTrigger(Abilities.FORECAST, [WeatherType.HAIL, WeatherType.SNOW]), true), + new SpeciesFormChange(Species.CASTFORM, "sunny", "", new SpeciesFormChangeRevertWeatherFormTrigger(Abilities.FORECAST, [WeatherType.NONE, WeatherType.SANDSTORM, WeatherType.STRONG_WINDS, WeatherType.FOG]), true), + new SpeciesFormChange(Species.CASTFORM, "rainy", "", new SpeciesFormChangeRevertWeatherFormTrigger(Abilities.FORECAST, [WeatherType.NONE, WeatherType.SANDSTORM, WeatherType.STRONG_WINDS, WeatherType.FOG]), true), + new SpeciesFormChange(Species.CASTFORM, "snowy", "", new SpeciesFormChangeRevertWeatherFormTrigger(Abilities.FORECAST, [WeatherType.NONE, WeatherType.SANDSTORM, WeatherType.STRONG_WINDS, WeatherType.FOG]), true), + new SpeciesFormChange(Species.CASTFORM, "sunny", "", new SpeciesFormChangeActiveTrigger(), true), + new SpeciesFormChange(Species.CASTFORM, "rainy", "", new SpeciesFormChangeActiveTrigger(), true), + new SpeciesFormChange(Species.CASTFORM, "snowy", "", new SpeciesFormChangeActiveTrigger(), true), + ], }; export function initPokemonForms() { diff --git a/src/data/pokemon-level-moves.ts b/src/data/pokemon-level-moves.ts index 9e8c7053334..93bd57ae32c 100644 --- a/src/data/pokemon-level-moves.ts +++ b/src/data/pokemon-level-moves.ts @@ -18800,6 +18800,85 @@ export const pokemonFormLevelMoves: PokemonSpeciesFormLevelMoves = { [ 44, Moves.THUNDER ], [ 48, Moves.PIKA_PAPOW ], ], + 8: [ + [ 1, Moves.TAIL_WHIP ], + [ 1, Moves.GROWL ], + [ 1, Moves.THUNDER_SHOCK ], + [ 1, Moves.QUICK_ATTACK ], + [ 1, Moves.SWEET_KISS ], + [ 1, Moves.CHARM ], + [ 1, Moves.NASTY_PLOT ], + [ 1, Moves.PLAY_NICE ], + [ 1, Moves.NUZZLE ], + [ 4, Moves.THUNDER_WAVE ], + [ 8, Moves.DOUBLE_TEAM ], + [ 12, Moves.ELECTRO_BALL ], + [ 16, Moves.FEINT ], + [ 20, Moves.ZIPPY_ZAP ], //Custom + [ 24, Moves.AGILITY ], + [ 28, Moves.IRON_TAIL ], + [ 32, Moves.DISCHARGE ], + [ 34, Moves.FLOATY_FALL ], //Custom + [ 36, Moves.THUNDERBOLT ], + [ 40, Moves.LIGHT_SCREEN ], + [ 42, Moves.SPLISHY_SPLASH ], //Custom + [ 44, Moves.THUNDER ], + [ 48, Moves.PIKA_PAPOW ], + ], + }, + [Species.EEVEE]: { //Custom + 1: [ + [ 1, Moves.TACKLE ], + [ 1, Moves.TAIL_WHIP ], + [ 1, Moves.GROWL ], + [ 1, Moves.HELPING_HAND ], + [ 1, Moves.COVET ], + [ 5, Moves.SAND_ATTACK ], + [ 10, Moves.QUICK_ATTACK ], + [ 15, Moves.BABY_DOLL_EYES ], + [ 18, Moves.BOUNCY_BUBBLE ], //Custom + [ 18, Moves.SIZZLY_SLIDE ], //Custom + [ 18, Moves.BUZZY_BUZZ ], //Custom + [ 20, Moves.SWIFT ], + [ 25, Moves.BITE ], + [ 30, Moves.COPYCAT ], + [ 33, Moves.BADDY_BAD ], //Custom + [ 33, Moves.GLITZY_GLOW ], //Custom + [ 35, Moves.BATON_PASS ], + [ 40, Moves.VEEVEE_VOLLEY ], //Custom, replaces Take Down + [ 43, Moves.FREEZY_FROST ], //Custom + [ 43, Moves.SAPPY_SEED ], //Custom + [ 45, Moves.CHARM ], + [ 50, Moves.DOUBLE_EDGE ], + [ 53, Moves.SPARKLY_SWIRL ], //Custom + [ 55, Moves.LAST_RESORT ], + ], + 2: [ + [ 1, Moves.TACKLE ], + [ 1, Moves.TAIL_WHIP ], + [ 1, Moves.GROWL ], + [ 1, Moves.HELPING_HAND ], + [ 1, Moves.COVET ], + [ 5, Moves.SAND_ATTACK ], + [ 10, Moves.QUICK_ATTACK ], + [ 15, Moves.BABY_DOLL_EYES ], + [ 18, Moves.BOUNCY_BUBBLE ], //Custom + [ 18, Moves.SIZZLY_SLIDE ], //Custom + [ 18, Moves.BUZZY_BUZZ ], //Custom + [ 20, Moves.SWIFT ], + [ 25, Moves.BITE ], + [ 30, Moves.COPYCAT ], + [ 33, Moves.BADDY_BAD ], //Custom + [ 33, Moves.GLITZY_GLOW ], //Custom + [ 35, Moves.BATON_PASS ], + [ 40, Moves.VEEVEE_VOLLEY ], //Custom, replaces Take Down + [ 43, Moves.FREEZY_FROST ], //Custom + [ 43, Moves.SAPPY_SEED ], //Custom + [ 45, Moves.CHARM ], + [ 50, Moves.DOUBLE_EDGE ], + [ 53, Moves.SPARKLY_SWIRL ], //Custom + [ 55, Moves.LAST_RESORT ], + ], }, [Species.DEOXYS]: { 1: [ diff --git a/src/data/pokemon-species.ts b/src/data/pokemon-species.ts index aa2c29a9725..17f2de794ae 100644 --- a/src/data/pokemon-species.ts +++ b/src/data/pokemon-species.ts @@ -1,24 +1,21 @@ - -import BattleScene, { AnySound } from "../battle-scene"; -import { Variant, variantColorCache } from "./variant"; -import { variantData } from "./variant"; -import { GrowthRate } from "./exp"; -import { EvolutionLevel,SpeciesWildEvolutionDelay, pokemonEvolutions, pokemonPrevolutions } from "./pokemon-evolutions"; -import { Type } from "./type"; -import { LevelMoves, pokemonFormLevelMoves, pokemonFormLevelMoves as pokemonSpeciesFormLevelMoves, pokemonSpeciesLevelMoves } from "./pokemon-level-moves"; -import { uncatchableSpecies } from "./biomes"; -import * as Utils from "../utils"; -import { StarterMoveset } from "../system/game-data"; -import { speciesEggMoves } from "./egg-moves"; -import { GameMode } from "../game-mode"; -import { QuantizerCelebi, argbFromRgba, rgbaFromArgb } from "@material/material-color-utilities"; -import { VariantSet } from "./variant"; -import i18next from "i18next"; import { Localizable } from "#app/interfaces/locales"; -import { Stat } from "./pokemon-stat"; import { Abilities } from "#enums/abilities"; import { PartyMemberStrength } from "#enums/party-member-strength"; import { Species } from "#enums/species"; +import { QuantizerCelebi, argbFromRgba, rgbaFromArgb } from "@material/material-color-utilities"; +import i18next from "i18next"; +import BattleScene, { AnySound } from "../battle-scene"; +import { GameMode } from "../game-mode"; +import { StarterMoveset } from "../system/game-data"; +import * as Utils from "../utils"; +import { uncatchableSpecies } from "./biomes"; +import { speciesEggMoves } from "./egg-moves"; +import { GrowthRate } from "./exp"; +import { EvolutionLevel, SpeciesWildEvolutionDelay, pokemonEvolutions, pokemonPrevolutions } from "./pokemon-evolutions"; +import { Type } from "./type"; +import { LevelMoves, pokemonFormLevelMoves, pokemonFormLevelMoves as pokemonSpeciesFormLevelMoves, pokemonSpeciesLevelMoves } from "./pokemon-level-moves"; +import { Stat } from "./pokemon-stat"; +import { Variant, VariantSet, variantColorCache, variantData } from "./variant"; export enum Region { NORMAL, @@ -28,7 +25,15 @@ export enum Region { PALDEA } -export function getPokemonSpecies(species: Species | Species[]): PokemonSpecies { +/** + * Gets the {@linkcode PokemonSpecies} object associated with the {@linkcode Species} enum given + * @param species The species to fetch + * @returns The associated {@linkcode PokemonSpecies} object + */ +export function getPokemonSpecies(species: Species | Species[] | undefined): PokemonSpecies { + if (!species) { + throw new Error("`species` must not be undefined in `getPokemonSpecies()`"); + } // If a special pool (named trainers) is used here it CAN happen that they have a array as species (which means choose one of those two). So we catch that with this code block if (Array.isArray(species)) { // Pick a random species from the list @@ -301,7 +306,7 @@ export abstract class PokemonSpeciesForm { let variantDataIndex: integer | string = this.speciesId; const species = getPokemonSpecies(this.speciesId); if (species.forms.length > 0 && formIndex !== undefined) { - formkey = species.forms[formIndex]?.formSpriteKey; + formkey = species.forms[formIndex]?.getFormSpriteKey(formIndex); if (formkey) { variantDataIndex = `${this.speciesId}-${formkey}`; } @@ -455,7 +460,7 @@ export abstract class PokemonSpeciesForm { return new Promise(resolve => { const spriteKey = this.getSpriteKey(female, formIndex, shiny, variant); scene.loadPokemonAtlas(spriteKey, this.getSpriteAtlasPath(female, formIndex, shiny, variant)); - scene.load.audio(this.getCryKey(formIndex), `audio/cry/${this.getCryKey(formIndex)}.m4a`); + scene.load.audio(`cry/${this.getCryKey(formIndex)}`, `audio/cry/${this.getCryKey(formIndex)}.m4a`); scene.load.once(Phaser.Loader.Events.COMPLETE, () => { const originalWarn = console.warn; // Ignore warnings for missing frames, because there will be a lot @@ -511,7 +516,7 @@ export abstract class PokemonSpeciesForm { if (cry?.pendingRemove) { cry = null; } - cry = scene.playSound(cry || cryKey, soundConfig); + cry = scene.playSound(`cry/${(cry ?? cryKey)}`, soundConfig); if (ignorePlay) { cry.stop(); } @@ -648,8 +653,8 @@ export default class PokemonSpecies extends PokemonSpeciesForm implements Locali return this.getSpeciesForLevel(level, allowEvolving, false, (isBoss ? PartyMemberStrength.WEAKER : PartyMemberStrength.AVERAGE) + (gameMode?.isEndless ? 1 : 0)); } - getTrainerSpeciesForLevel(level: integer, allowEvolving: boolean = false, strength: PartyMemberStrength): Species { - return this.getSpeciesForLevel(level, allowEvolving, true, strength); + getTrainerSpeciesForLevel(level: integer, allowEvolving: boolean = false, strength: PartyMemberStrength, currentWave: number = 0): Species { + return this.getSpeciesForLevel(level, allowEvolving, true, strength, currentWave); } private getStrengthLevelDiff(strength: PartyMemberStrength): integer { @@ -669,7 +674,7 @@ export default class PokemonSpecies extends PokemonSpeciesForm implements Locali } } - getSpeciesForLevel(level: integer, allowEvolving: boolean = false, forTrainer: boolean = false, strength: PartyMemberStrength = PartyMemberStrength.WEAKER): Species { + getSpeciesForLevel(level: integer, allowEvolving: boolean = false, forTrainer: boolean = false, strength: PartyMemberStrength = PartyMemberStrength.WEAKER, currentWave: number = 0): Species { const prevolutionLevels = this.getPrevolutionLevels(); if (prevolutionLevels.length) { @@ -730,6 +735,11 @@ export default class PokemonSpecies extends PokemonSpeciesForm implements Locali evolutionChance = Math.min(0.65 * easeInFunc(Math.min(Math.max(level - evolutionLevel, 0), preferredMinLevel) / preferredMinLevel) + 0.35 * easeOutFunc(Math.min(Math.max(level - evolutionLevel, 0), preferredMinLevel * 2.5) / (preferredMinLevel * 2.5)), 1); } } + /* (Most) Trainers shouldn't be using unevolved Pokemon by the third gym leader / wave 80. Exceptions to this include Breeders, whose large teams are balanced by the use of weaker pokemon */ + if (currentWave >= 80 && forTrainer && strength > PartyMemberStrength.WEAKER) { + evolutionChance = 1; + noEvolutionChance = 0; + } if (evolutionChance > 0) { if (isRegionalEvolution) { @@ -754,7 +764,7 @@ export default class PokemonSpecies extends PokemonSpeciesForm implements Locali for (const weight of evolutionPool.keys()) { if (randValue < weight) { - return getPokemonSpecies(evolutionPool.get(weight)!).getSpeciesForLevel(level, true, forTrainer, strength); // TODO: is the bang correct? + return getPokemonSpecies(evolutionPool.get(weight)).getSpeciesForLevel(level, true, forTrainer, strength, currentWave); } } @@ -913,7 +923,7 @@ export function initSpecies() { new PokemonSpecies(Species.VENUSAUR, 1, false, false, false, "Seed Pokémon", Type.GRASS, Type.POISON, 2, 100, Abilities.OVERGROW, Abilities.NONE, Abilities.CHLOROPHYLL, 525, 80, 82, 83, 100, 100, 80, 45, 50, 263, GrowthRate.MEDIUM_SLOW, 87.5, true, true, new PokemonForm("Normal", "", Type.GRASS, Type.POISON, 2, 100, Abilities.OVERGROW, Abilities.NONE, Abilities.CHLOROPHYLL, 525, 80, 82, 83, 100, 100, 80, 45, 50, 263, true, null, true), new PokemonForm("Mega", SpeciesFormKey.MEGA, Type.GRASS, Type.POISON, 2.4, 155.5, Abilities.THICK_FAT, Abilities.THICK_FAT, Abilities.THICK_FAT, 625, 80, 100, 123, 122, 120, 80, 45, 50, 263, true), - new PokemonForm("G-Max", SpeciesFormKey.GIGANTAMAX, Type.GRASS, Type.POISON, 24, 100, Abilities.OVERGROW, Abilities.NONE, Abilities.CHLOROPHYLL, 625, 100, 90, 120, 110, 130, 75, 45, 50, 263, true), + new PokemonForm("G-Max", SpeciesFormKey.GIGANTAMAX, Type.GRASS, Type.POISON, 24, 100, Abilities.CHLOROPHYLL, Abilities.CHLOROPHYLL, Abilities.CHLOROPHYLL, 625, 120, 82, 98, 130, 115, 80, 45, 50, 263, true), ), new PokemonSpecies(Species.CHARMANDER, 1, false, false, false, "Lizard Pokémon", Type.FIRE, null, 0.6, 8.5, Abilities.BLAZE, Abilities.NONE, Abilities.SOLAR_POWER, 309, 39, 52, 43, 60, 50, 65, 45, 50, 62, GrowthRate.MEDIUM_SLOW, 87.5, false), new PokemonSpecies(Species.CHARMELEON, 1, false, false, false, "Flame Pokémon", Type.FIRE, null, 1.1, 19, Abilities.BLAZE, Abilities.NONE, Abilities.SOLAR_POWER, 405, 58, 64, 58, 80, 65, 80, 45, 50, 142, GrowthRate.MEDIUM_SLOW, 87.5, false), @@ -921,20 +931,20 @@ export function initSpecies() { new PokemonForm("Normal", "", Type.FIRE, Type.FLYING, 1.7, 90.5, Abilities.BLAZE, Abilities.NONE, Abilities.SOLAR_POWER, 534, 78, 84, 78, 109, 85, 100, 45, 50, 267, false, null, true), new PokemonForm("Mega X", SpeciesFormKey.MEGA_X, Type.FIRE, Type.DRAGON, 1.7, 110.5, Abilities.TOUGH_CLAWS, Abilities.NONE, Abilities.TOUGH_CLAWS, 634, 78, 130, 111, 130, 85, 100, 45, 50, 267), new PokemonForm("Mega Y", SpeciesFormKey.MEGA_Y, Type.FIRE, Type.FLYING, 1.7, 100.5, Abilities.DROUGHT, Abilities.NONE, Abilities.DROUGHT, 634, 78, 104, 78, 159, 115, 100, 45, 50, 267), - new PokemonForm("G-Max", SpeciesFormKey.GIGANTAMAX, Type.FIRE, Type.FLYING, 28, 90.5, Abilities.BLAZE, Abilities.NONE, Abilities.SOLAR_POWER, 634, 98, 100, 96, 135, 110, 95, 45, 50, 267), + new PokemonForm("G-Max", SpeciesFormKey.GIGANTAMAX, Type.FIRE, Type.FLYING, 28, 90.5, Abilities.SOLAR_POWER, Abilities.SOLAR_POWER, Abilities.SOLAR_POWER, 634, 118, 84, 93, 139, 110, 100, 45, 50, 267), ), new PokemonSpecies(Species.SQUIRTLE, 1, false, false, false, "Tiny Turtle Pokémon", Type.WATER, null, 0.5, 9, Abilities.TORRENT, Abilities.NONE, Abilities.RAIN_DISH, 314, 44, 48, 65, 50, 64, 43, 45, 50, 63, GrowthRate.MEDIUM_SLOW, 87.5, false), new PokemonSpecies(Species.WARTORTLE, 1, false, false, false, "Turtle Pokémon", Type.WATER, null, 1, 22.5, Abilities.TORRENT, Abilities.NONE, Abilities.RAIN_DISH, 405, 59, 63, 80, 65, 80, 58, 45, 50, 142, GrowthRate.MEDIUM_SLOW, 87.5, false), new PokemonSpecies(Species.BLASTOISE, 1, false, false, false, "Shellfish Pokémon", Type.WATER, null, 1.6, 85.5, Abilities.TORRENT, Abilities.NONE, Abilities.RAIN_DISH, 530, 79, 83, 100, 85, 105, 78, 45, 50, 265, GrowthRate.MEDIUM_SLOW, 87.5, false, true, new PokemonForm("Normal", "", Type.WATER, null, 1.6, 85.5, Abilities.TORRENT, Abilities.NONE, Abilities.RAIN_DISH, 530, 79, 83, 100, 85, 105, 78, 45, 50, 265, false, null, true), new PokemonForm("Mega", SpeciesFormKey.MEGA, Type.WATER, null, 1.6, 101.1, Abilities.MEGA_LAUNCHER, Abilities.NONE, Abilities.MEGA_LAUNCHER, 630, 79, 103, 120, 135, 115, 78, 45, 50, 265), - new PokemonForm("G-Max", SpeciesFormKey.GIGANTAMAX, Type.WATER, null, 25, 85.5, Abilities.TORRENT, Abilities.NONE, Abilities.RAIN_DISH, 630, 100, 95, 130, 105, 125, 75, 45, 50, 265), + new PokemonForm("G-Max", SpeciesFormKey.GIGANTAMAX, Type.WATER, Type.STEEL, 25, 85.5, Abilities.SHELL_ARMOR, Abilities.SHELL_ARMOR, Abilities.SHELL_ARMOR, 630, 119, 83, 130, 115, 115, 68, 45, 50, 265), ), new PokemonSpecies(Species.CATERPIE, 1, false, false, false, "Worm Pokémon", Type.BUG, null, 0.3, 2.9, Abilities.SHIELD_DUST, Abilities.NONE, Abilities.RUN_AWAY, 195, 45, 30, 35, 20, 20, 45, 255, 50, 39, GrowthRate.MEDIUM_FAST, 50, false), new PokemonSpecies(Species.METAPOD, 1, false, false, false, "Cocoon Pokémon", Type.BUG, null, 0.7, 9.9, Abilities.SHED_SKIN, Abilities.NONE, Abilities.SHED_SKIN, 205, 50, 20, 55, 25, 25, 30, 120, 50, 72, GrowthRate.MEDIUM_FAST, 50, false), new PokemonSpecies(Species.BUTTERFREE, 1, false, false, false, "Butterfly Pokémon", Type.BUG, Type.FLYING, 1.1, 32, Abilities.COMPOUND_EYES, Abilities.NONE, Abilities.TINTED_LENS, 395, 60, 45, 50, 90, 80, 70, 45, 50, 198, GrowthRate.MEDIUM_FAST, 50, true, true, new PokemonForm("Normal", "", Type.BUG, Type.FLYING, 1.1, 32, Abilities.COMPOUND_EYES, Abilities.NONE, Abilities.TINTED_LENS, 395, 60, 45, 50, 90, 80, 70, 45, 50, 198, true, null, true), - new PokemonForm("G-Max", SpeciesFormKey.GIGANTAMAX, Type.BUG, Type.FLYING, 17, 32, Abilities.COMPOUND_EYES, Abilities.NONE, Abilities.TINTED_LENS, 495, 75, 50, 75, 120, 100, 75, 45, 50, 198, true), + new PokemonForm("G-Max", SpeciesFormKey.GIGANTAMAX, Type.BUG, Type.FLYING, 17, 32, Abilities.TINTED_LENS, Abilities.TINTED_LENS, Abilities.TINTED_LENS, 495, 85, 35, 80, 120, 90, 85, 45, 50, 198, true), ), new PokemonSpecies(Species.WEEDLE, 1, false, false, false, "Hairy Bug Pokémon", Type.BUG, Type.POISON, 0.3, 3.2, Abilities.SHIELD_DUST, Abilities.NONE, Abilities.RUN_AWAY, 195, 40, 35, 30, 20, 20, 50, 255, 70, 39, GrowthRate.MEDIUM_FAST, 50, false), new PokemonSpecies(Species.KAKUNA, 1, false, false, false, "Cocoon Pokémon", Type.BUG, Type.POISON, 0.6, 10, Abilities.SHED_SKIN, Abilities.NONE, Abilities.SHED_SKIN, 205, 45, 25, 50, 25, 25, 35, 120, 70, 72, GrowthRate.MEDIUM_FAST, 50, false), @@ -963,7 +973,7 @@ export function initSpecies() { new PokemonForm("Cute Cosplay", "cute-cosplay", Type.ELECTRIC, null, 0.4, 6, Abilities.STATIC, Abilities.NONE, Abilities.LIGHTNING_ROD, 430, 45, 80, 50, 75, 60, 120, 190, 50, 112, true, null, true), //Custom new PokemonForm("Smart Cosplay", "smart-cosplay", Type.ELECTRIC, null, 0.4, 6, Abilities.STATIC, Abilities.NONE, Abilities.LIGHTNING_ROD, 430, 45, 80, 50, 75, 60, 120, 190, 50, 112, true, null, true), //Custom new PokemonForm("Tough Cosplay", "tough-cosplay", Type.ELECTRIC, null, 0.4, 6, Abilities.STATIC, Abilities.NONE, Abilities.LIGHTNING_ROD, 430, 45, 80, 50, 75, 60, 120, 190, 50, 112, true, null, true), //Custom - new PokemonForm("G-Max", SpeciesFormKey.GIGANTAMAX, Type.ELECTRIC, null, 21, 6, Abilities.STATIC, Abilities.NONE, Abilities.LIGHTNING_ROD, 420, 45, 60, 65, 100, 75, 75, 190, 50, 112), + new PokemonForm("G-Max", SpeciesFormKey.GIGANTAMAX, Type.ELECTRIC, null, 21, 6, Abilities.LIGHTNING_ROD, Abilities.LIGHTNING_ROD, Abilities.LIGHTNING_ROD, 530, 125, 95, 60, 90, 70, 90, 190, 50, 112), //+100 BST from Partner Form ), new PokemonSpecies(Species.RAICHU, 1, false, false, false, "Mouse Pokémon", Type.ELECTRIC, null, 0.8, 30, Abilities.STATIC, Abilities.NONE, Abilities.LIGHTNING_ROD, 485, 60, 90, 55, 90, 80, 110, 75, 50, 243, GrowthRate.MEDIUM_FAST, 50, true), new PokemonSpecies(Species.SANDSHREW, 1, false, false, false, "Mouse Pokémon", Type.GROUND, null, 0.6, 12, Abilities.SAND_VEIL, Abilities.NONE, Abilities.SAND_RUSH, 300, 50, 75, 85, 20, 30, 40, 255, 50, 60, GrowthRate.MEDIUM_FAST, 50, false), @@ -993,7 +1003,7 @@ export function initSpecies() { new PokemonSpecies(Species.DUGTRIO, 1, false, false, false, "Mole Pokémon", Type.GROUND, null, 0.7, 33.3, Abilities.SAND_VEIL, Abilities.ARENA_TRAP, Abilities.SAND_FORCE, 425, 35, 100, 50, 50, 70, 120, 50, 50, 149, GrowthRate.MEDIUM_FAST, 50, false), new PokemonSpecies(Species.MEOWTH, 1, false, false, false, "Scratch Cat Pokémon", Type.NORMAL, null, 0.4, 4.2, Abilities.PICKUP, Abilities.TECHNICIAN, Abilities.UNNERVE, 290, 40, 45, 35, 40, 40, 90, 255, 50, 58, GrowthRate.MEDIUM_FAST, 50, false, true, new PokemonForm("Normal", "", Type.NORMAL, null, 0.4, 4.2, Abilities.PICKUP, Abilities.TECHNICIAN, Abilities.UNNERVE, 290, 40, 45, 35, 40, 40, 90, 255, 50, 58, false, null, true), - new PokemonForm("G-Max", SpeciesFormKey.GIGANTAMAX, Type.NORMAL, null, 33, 4.2, Abilities.PICKUP, Abilities.TECHNICIAN, Abilities.UNNERVE, 390, 50, 85, 60, 70, 50, 75, 255, 50, 58), + new PokemonForm("G-Max", SpeciesFormKey.GIGANTAMAX, Type.NORMAL, null, 33, 4.2, Abilities.TECHNICIAN, Abilities.TECHNICIAN, Abilities.TECHNICIAN, 540, 115, 110, 65, 65, 70, 115, 255, 50, 58), //+100 BST from Persian ), new PokemonSpecies(Species.PERSIAN, 1, false, false, false, "Classy Cat Pokémon", Type.NORMAL, null, 1, 32, Abilities.LIMBER, Abilities.TECHNICIAN, Abilities.UNNERVE, 440, 65, 70, 60, 65, 65, 115, 90, 50, 154, GrowthRate.MEDIUM_FAST, 50, false), new PokemonSpecies(Species.PSYDUCK, 1, false, false, false, "Duck Pokémon", Type.WATER, null, 0.8, 19.6, Abilities.DAMP, Abilities.CLOUD_NINE, Abilities.SWIFT_SWIM, 320, 50, 52, 48, 65, 50, 55, 190, 50, 64, GrowthRate.MEDIUM_FAST, 50, false), @@ -1015,7 +1025,7 @@ export function initSpecies() { new PokemonSpecies(Species.MACHOKE, 1, false, false, false, "Superpower Pokémon", Type.FIGHTING, null, 1.5, 70.5, Abilities.GUTS, Abilities.NO_GUARD, Abilities.STEADFAST, 405, 80, 100, 70, 50, 60, 45, 90, 50, 142, GrowthRate.MEDIUM_SLOW, 75, false), new PokemonSpecies(Species.MACHAMP, 1, false, false, false, "Superpower Pokémon", Type.FIGHTING, null, 1.6, 130, Abilities.GUTS, Abilities.NO_GUARD, Abilities.STEADFAST, 505, 90, 130, 80, 65, 85, 55, 45, 50, 253, GrowthRate.MEDIUM_SLOW, 75, false, true, new PokemonForm("Normal", "", Type.FIGHTING, null, 1.6, 130, Abilities.GUTS, Abilities.NO_GUARD, Abilities.STEADFAST, 505, 90, 130, 80, 65, 85, 55, 45, 50, 253, false, null, true), - new PokemonForm("G-Max", SpeciesFormKey.GIGANTAMAX, Type.FIGHTING, null, 25, 130, Abilities.GUTS, Abilities.NO_GUARD, Abilities.STEADFAST, 605, 113, 170, 90, 70, 95, 67, 45, 50, 253), + new PokemonForm("G-Max", SpeciesFormKey.GIGANTAMAX, Type.FIGHTING, null, 25, 130, Abilities.GUTS, Abilities.GUTS, Abilities.GUTS, 605, 115, 170, 95, 65, 95, 65, 45, 50, 253), ), new PokemonSpecies(Species.BELLSPROUT, 1, false, false, false, "Flower Pokémon", Type.GRASS, Type.POISON, 0.7, 4, Abilities.CHLOROPHYLL, Abilities.NONE, Abilities.GLUTTONY, 300, 50, 75, 35, 70, 30, 40, 255, 70, 60, GrowthRate.MEDIUM_SLOW, 50, false), new PokemonSpecies(Species.WEEPINBELL, 1, false, false, false, "Flycatcher Pokémon", Type.GRASS, Type.POISON, 1, 6.4, Abilities.CHLOROPHYLL, Abilities.NONE, Abilities.GLUTTONY, 390, 65, 90, 50, 85, 45, 55, 120, 70, 137, GrowthRate.MEDIUM_SLOW, 50, false), @@ -1048,7 +1058,7 @@ export function initSpecies() { new PokemonSpecies(Species.GENGAR, 1, false, false, false, "Shadow Pokémon", Type.GHOST, Type.POISON, 1.5, 40.5, Abilities.CURSED_BODY, Abilities.NONE, Abilities.NONE, 500, 60, 65, 60, 130, 75, 110, 45, 50, 250, GrowthRate.MEDIUM_SLOW, 50, false, true, new PokemonForm("Normal", "", Type.GHOST, Type.POISON, 1.5, 40.5, Abilities.CURSED_BODY, Abilities.NONE, Abilities.NONE, 500, 60, 65, 60, 130, 75, 110, 45, 50, 250, false, null, true), new PokemonForm("Mega", SpeciesFormKey.MEGA, Type.GHOST, Type.POISON, 1.4, 40.5, Abilities.SHADOW_TAG, Abilities.NONE, Abilities.NONE, 600, 60, 65, 80, 170, 95, 130, 45, 50, 250), - new PokemonForm("G-Max", SpeciesFormKey.GIGANTAMAX, Type.GHOST, Type.POISON, 20, 40.5, Abilities.CURSED_BODY, Abilities.NONE, Abilities.NONE, 600, 75, 95, 85, 160, 95, 90, 45, 50, 250), + new PokemonForm("G-Max", SpeciesFormKey.GIGANTAMAX, Type.GHOST, Type.POISON, 20, 40.5, Abilities.CURSED_BODY, Abilities.CURSED_BODY, Abilities.CURSED_BODY, 600, 140, 65, 70, 140, 85, 100, 45, 50, 250), ), new PokemonSpecies(Species.ONIX, 1, false, false, false, "Rock Snake Pokémon", Type.ROCK, Type.GROUND, 8.8, 210, Abilities.ROCK_HEAD, Abilities.STURDY, Abilities.WEAK_ARMOR, 385, 35, 45, 160, 30, 45, 70, 45, 50, 77, GrowthRate.MEDIUM_FAST, 50, false), new PokemonSpecies(Species.DROWZEE, 1, false, false, false, "Hypnosis Pokémon", Type.PSYCHIC, null, 1, 32.4, Abilities.INSOMNIA, Abilities.FOREWARN, Abilities.INNER_FOCUS, 328, 60, 48, 45, 43, 90, 42, 190, 70, 66, GrowthRate.MEDIUM_FAST, 50, false), @@ -1056,7 +1066,7 @@ export function initSpecies() { new PokemonSpecies(Species.KRABBY, 1, false, false, false, "River Crab Pokémon", Type.WATER, null, 0.4, 6.5, Abilities.HYPER_CUTTER, Abilities.SHELL_ARMOR, Abilities.SHEER_FORCE, 325, 30, 105, 90, 25, 25, 50, 225, 50, 65, GrowthRate.MEDIUM_FAST, 50, false), new PokemonSpecies(Species.KINGLER, 1, false, false, false, "Pincer Pokémon", Type.WATER, null, 1.3, 60, Abilities.HYPER_CUTTER, Abilities.SHELL_ARMOR, Abilities.SHEER_FORCE, 475, 55, 130, 115, 50, 50, 75, 60, 50, 166, GrowthRate.MEDIUM_FAST, 50, false, true, new PokemonForm("Normal", "", Type.WATER, null, 1.3, 60, Abilities.HYPER_CUTTER, Abilities.SHELL_ARMOR, Abilities.SHEER_FORCE, 475, 55, 130, 115, 50, 50, 75, 60, 50, 166, false, null, true), - new PokemonForm("G-Max", SpeciesFormKey.GIGANTAMAX, Type.WATER, null, 19, 60, Abilities.HYPER_CUTTER, Abilities.SHELL_ARMOR, Abilities.SHEER_FORCE, 575, 70, 165, 145, 60, 70, 65, 60, 50, 166), + new PokemonForm("G-Max", SpeciesFormKey.GIGANTAMAX, Type.WATER, null, 19, 60, Abilities.TOUGH_CLAWS, Abilities.TOUGH_CLAWS, Abilities.TOUGH_CLAWS, 575, 90, 155, 140, 50, 80, 70, 60, 50, 166), ), new PokemonSpecies(Species.VOLTORB, 1, false, false, false, "Ball Pokémon", Type.ELECTRIC, null, 0.5, 10.4, Abilities.SOUNDPROOF, Abilities.STATIC, Abilities.AFTERMATH, 330, 40, 30, 50, 55, 55, 100, 190, 70, 66, GrowthRate.MEDIUM_FAST, null, false), new PokemonSpecies(Species.ELECTRODE, 1, false, false, false, "Ball Pokémon", Type.ELECTRIC, null, 1.2, 66.6, Abilities.SOUNDPROOF, Abilities.STATIC, Abilities.AFTERMATH, 490, 60, 50, 70, 80, 80, 150, 60, 70, 172, GrowthRate.MEDIUM_FAST, null, false), @@ -1100,13 +1110,13 @@ export function initSpecies() { ), new PokemonSpecies(Species.LAPRAS, 1, false, false, false, "Transport Pokémon", Type.WATER, Type.ICE, 2.5, 220, Abilities.WATER_ABSORB, Abilities.SHELL_ARMOR, Abilities.HYDRATION, 535, 130, 85, 80, 85, 95, 60, 45, 50, 187, GrowthRate.SLOW, 50, false, true, new PokemonForm("Normal", "", Type.WATER, Type.ICE, 2.5, 220, Abilities.WATER_ABSORB, Abilities.SHELL_ARMOR, Abilities.HYDRATION, 535, 130, 85, 80, 85, 95, 60, 45, 50, 187, false, null, true), - new PokemonForm("G-Max", SpeciesFormKey.GIGANTAMAX, Type.WATER, Type.ICE, 24, 220, Abilities.WATER_ABSORB, Abilities.SHELL_ARMOR, Abilities.HYDRATION, 635, 160, 95, 110, 95, 125, 50, 45, 50, 187), + new PokemonForm("G-Max", SpeciesFormKey.GIGANTAMAX, Type.WATER, Type.ICE, 24, 220, Abilities.SHELL_ARMOR, Abilities.SHELL_ARMOR, Abilities.SHELL_ARMOR, 635, 170, 85, 95, 115, 110, 60, 45, 50, 187), ), new PokemonSpecies(Species.DITTO, 1, false, false, false, "Transform Pokémon", Type.NORMAL, null, 0.3, 4, Abilities.LIMBER, Abilities.NONE, Abilities.IMPOSTER, 288, 48, 48, 48, 48, 48, 48, 35, 50, 101, GrowthRate.MEDIUM_FAST, null, false), new PokemonSpecies(Species.EEVEE, 1, false, false, false, "Evolution Pokémon", Type.NORMAL, null, 0.3, 6.5, Abilities.RUN_AWAY, Abilities.ADAPTABILITY, Abilities.ANTICIPATION, 325, 55, 55, 50, 45, 65, 55, 45, 50, 65, GrowthRate.MEDIUM_FAST, 87.5, false, true, new PokemonForm("Normal", "", Type.NORMAL, null, 0.3, 6.5, Abilities.RUN_AWAY, Abilities.ADAPTABILITY, Abilities.ANTICIPATION, 325, 55, 55, 50, 45, 65, 55, 45, 50, 65, false, null, true), new PokemonForm("Partner", "partner", Type.NORMAL, null, 0.3, 6.5, Abilities.RUN_AWAY, Abilities.ADAPTABILITY, Abilities.ANTICIPATION, 435, 65, 75, 70, 65, 85, 75, 45, 50, 65, false, null, true), - new PokemonForm("G-Max", SpeciesFormKey.GIGANTAMAX, Type.NORMAL, null, 18, 6.5, Abilities.RUN_AWAY, Abilities.ADAPTABILITY, Abilities.ANTICIPATION, 425, 70, 75, 80, 60, 95, 45, 45, 50, 65), + new PokemonForm("G-Max", SpeciesFormKey.GIGANTAMAX, Type.NORMAL, null, 18, 6.5, Abilities.PROTEAN, Abilities.PROTEAN, Abilities.PROTEAN, 535, 105, 95, 70, 95, 85, 85, 45, 50, 65), //+100 BST from Partner Form ), new PokemonSpecies(Species.VAPOREON, 1, false, false, false, "Bubble Jet Pokémon", Type.WATER, null, 1, 29, Abilities.WATER_ABSORB, Abilities.NONE, Abilities.HYDRATION, 525, 130, 65, 60, 110, 95, 65, 45, 50, 184, GrowthRate.MEDIUM_FAST, 87.5, false), new PokemonSpecies(Species.JOLTEON, 1, false, false, false, "Lightning Pokémon", Type.ELECTRIC, null, 0.8, 24.5, Abilities.VOLT_ABSORB, Abilities.NONE, Abilities.QUICK_FEET, 525, 65, 65, 60, 110, 95, 130, 45, 50, 184, GrowthRate.MEDIUM_FAST, 87.5, false), @@ -1122,7 +1132,7 @@ export function initSpecies() { ), new PokemonSpecies(Species.SNORLAX, 1, false, false, false, "Sleeping Pokémon", Type.NORMAL, null, 2.1, 460, Abilities.IMMUNITY, Abilities.THICK_FAT, Abilities.GLUTTONY, 540, 160, 110, 65, 65, 110, 30, 25, 50, 189, GrowthRate.SLOW, 87.5, false, true, new PokemonForm("Normal", "", Type.NORMAL, null, 2.1, 460, Abilities.IMMUNITY, Abilities.THICK_FAT, Abilities.GLUTTONY, 540, 160, 110, 65, 65, 110, 30, 25, 50, 189, false, null, true), - new PokemonForm("G-Max", SpeciesFormKey.GIGANTAMAX, Type.NORMAL, null, 35, 460, Abilities.IMMUNITY, Abilities.THICK_FAT, Abilities.GLUTTONY, 640, 200, 130, 85, 75, 130, 20, 25, 50, 189), + new PokemonForm("G-Max", SpeciesFormKey.GIGANTAMAX, Type.NORMAL, null, 35, 460, Abilities.HARVEST, Abilities.HARVEST, Abilities.HARVEST, 640, 200, 135, 80, 80, 125, 20, 25, 50, 189), ), new PokemonSpecies(Species.ARTICUNO, 1, true, false, false, "Freeze Pokémon", Type.ICE, Type.FLYING, 1.7, 55.4, Abilities.PRESSURE, Abilities.NONE, Abilities.SNOW_CLOAK, 580, 90, 85, 100, 95, 125, 85, 3, 35, 290, GrowthRate.SLOW, null, false), new PokemonSpecies(Species.ZAPDOS, 1, true, false, false, "Electric Pokémon", Type.ELECTRIC, Type.FLYING, 1.6, 52.6, Abilities.PRESSURE, Abilities.NONE, Abilities.STATIC, 580, 90, 90, 85, 125, 90, 100, 3, 35, 290, GrowthRate.SLOW, null, false), @@ -1762,7 +1772,7 @@ export function initSpecies() { new PokemonSpecies(Species.TRUBBISH, 5, false, false, false, "Trash Bag Pokémon", Type.POISON, null, 0.6, 31, Abilities.STENCH, Abilities.STICKY_HOLD, Abilities.AFTERMATH, 329, 50, 50, 62, 40, 62, 65, 190, 50, 66, GrowthRate.MEDIUM_FAST, 50, false), new PokemonSpecies(Species.GARBODOR, 5, false, false, false, "Trash Heap Pokémon", Type.POISON, null, 1.9, 107.3, Abilities.STENCH, Abilities.WEAK_ARMOR, Abilities.AFTERMATH, 474, 80, 95, 82, 60, 82, 75, 60, 50, 166, GrowthRate.MEDIUM_FAST, 50, false, true, new PokemonForm("Normal", "", Type.POISON, null, 1.9, 107.3, Abilities.STENCH, Abilities.WEAK_ARMOR, Abilities.AFTERMATH, 474, 80, 95, 82, 60, 82, 75, 60, 50, 166, false, null, true), - new PokemonForm("G-Max", SpeciesFormKey.GIGANTAMAX, Type.POISON, null, 21, 107.3, Abilities.STENCH, Abilities.WEAK_ARMOR, Abilities.AFTERMATH, 574, 100, 125, 102, 80, 102, 65, 60, 50, 166), + new PokemonForm("G-Max", SpeciesFormKey.GIGANTAMAX, Type.POISON, Type.STEEL, 21, 107.3, Abilities.TOXIC_DEBRIS, Abilities.TOXIC_DEBRIS, Abilities.TOXIC_DEBRIS, 574, 135, 125, 102, 57, 102, 53, 60, 50, 166), ), new PokemonSpecies(Species.ZORUA, 5, false, false, false, "Tricky Fox Pokémon", Type.DARK, null, 0.7, 12.5, Abilities.ILLUSION, Abilities.NONE, Abilities.NONE, 330, 40, 65, 40, 80, 40, 65, 75, 50, 66, GrowthRate.MEDIUM_SLOW, 87.5, false), new PokemonSpecies(Species.ZOROARK, 5, false, false, false, "Illusion Fox Pokémon", Type.DARK, null, 1.6, 81.1, Abilities.ILLUSION, Abilities.NONE, Abilities.NONE, 510, 60, 105, 60, 120, 60, 105, 45, 50, 179, GrowthRate.MEDIUM_SLOW, 87.5, false), @@ -2236,25 +2246,25 @@ export function initSpecies() { new PokemonSpecies(Species.MELTAN, 7, false, false, true, "Hex Nut Pokémon", Type.STEEL, null, 0.2, 8, Abilities.MAGNET_PULL, Abilities.NONE, Abilities.NONE, 300, 46, 65, 65, 55, 35, 34, 3, 0, 150, GrowthRate.SLOW, null, false), new PokemonSpecies(Species.MELMETAL, 7, false, false, true, "Hex Nut Pokémon", Type.STEEL, null, 2.5, 800, Abilities.IRON_FIST, Abilities.NONE, Abilities.NONE, 600, 135, 143, 143, 80, 65, 34, 3, 0, 300, GrowthRate.SLOW, null, false, true, new PokemonForm("Normal", "", Type.STEEL, null, 2.5, 800, Abilities.IRON_FIST, Abilities.NONE, Abilities.NONE, 600, 135, 143, 143, 80, 65, 34, 3, 0, 300, false, null, true), - new PokemonForm("G-Max", SpeciesFormKey.GIGANTAMAX, Type.STEEL, null, 25, 800, Abilities.IRON_FIST, Abilities.NONE, Abilities.NONE, 700, 170, 165, 165, 95, 75, 30, 3, 0, 300), + new PokemonForm("G-Max", SpeciesFormKey.GIGANTAMAX, Type.STEEL, null, 25, 800, Abilities.IRON_FIST, Abilities.IRON_FIST, Abilities.IRON_FIST, 700, 175, 165, 155, 85, 75, 45, 3, 0, 300), ), new PokemonSpecies(Species.GROOKEY, 8, false, false, false, "Chimp Pokémon", Type.GRASS, null, 0.3, 5, Abilities.OVERGROW, Abilities.NONE, Abilities.GRASSY_SURGE, 310, 50, 65, 50, 40, 40, 65, 45, 50, 62, GrowthRate.MEDIUM_SLOW, 87.5, false), new PokemonSpecies(Species.THWACKEY, 8, false, false, false, "Beat Pokémon", Type.GRASS, null, 0.7, 14, Abilities.OVERGROW, Abilities.NONE, Abilities.GRASSY_SURGE, 420, 70, 85, 70, 55, 60, 80, 45, 50, 147, GrowthRate.MEDIUM_SLOW, 87.5, false), new PokemonSpecies(Species.RILLABOOM, 8, false, false, false, "Drummer Pokémon", Type.GRASS, null, 2.1, 90, Abilities.OVERGROW, Abilities.NONE, Abilities.GRASSY_SURGE, 530, 100, 125, 90, 60, 70, 85, 45, 50, 265, GrowthRate.MEDIUM_SLOW, 87.5, false, true, new PokemonForm("Normal", "", Type.GRASS, null, 2.1, 90, Abilities.OVERGROW, Abilities.NONE, Abilities.GRASSY_SURGE, 530, 100, 125, 90, 60, 70, 85, 45, 50, 265, false, null, true), - new PokemonForm("G-Max", SpeciesFormKey.GIGANTAMAX, Type.GRASS, null, 28, 90, Abilities.OVERGROW, Abilities.NONE, Abilities.GRASSY_SURGE, 630, 125, 150, 115, 75, 90, 75, 45, 50, 265), + new PokemonForm("G-Max", SpeciesFormKey.GIGANTAMAX, Type.GRASS, null, 28, 90, Abilities.GRASSY_SURGE, Abilities.GRASSY_SURGE, Abilities.GRASSY_SURGE, 630, 125, 150, 105, 85, 85, 80, 45, 50, 265), ), new PokemonSpecies(Species.SCORBUNNY, 8, false, false, false, "Rabbit Pokémon", Type.FIRE, null, 0.3, 4.5, Abilities.BLAZE, Abilities.NONE, Abilities.LIBERO, 310, 50, 71, 40, 40, 40, 69, 45, 50, 62, GrowthRate.MEDIUM_SLOW, 87.5, false), new PokemonSpecies(Species.RABOOT, 8, false, false, false, "Rabbit Pokémon", Type.FIRE, null, 0.6, 9, Abilities.BLAZE, Abilities.NONE, Abilities.LIBERO, 420, 65, 86, 60, 55, 60, 94, 45, 50, 147, GrowthRate.MEDIUM_SLOW, 87.5, false), new PokemonSpecies(Species.CINDERACE, 8, false, false, false, "Striker Pokémon", Type.FIRE, null, 1.4, 33, Abilities.BLAZE, Abilities.NONE, Abilities.LIBERO, 530, 80, 116, 75, 65, 75, 119, 45, 50, 265, GrowthRate.MEDIUM_SLOW, 87.5, false, true, new PokemonForm("Normal", "", Type.FIRE, null, 1.4, 33, Abilities.BLAZE, Abilities.NONE, Abilities.LIBERO, 530, 80, 116, 75, 65, 75, 119, 45, 50, 265, false, null, true), - new PokemonForm("G-Max", SpeciesFormKey.GIGANTAMAX, Type.FIRE, null, 27, 33, Abilities.BLAZE, Abilities.NONE, Abilities.LIBERO, 630, 100, 145, 90, 75, 90, 130, 45, 50, 265), + new PokemonForm("G-Max", SpeciesFormKey.GIGANTAMAX, Type.FIRE, null, 27, 33, Abilities.LIBERO, Abilities.LIBERO, Abilities.LIBERO, 630, 100, 146, 80, 90, 80, 134, 45, 50, 265), ), new PokemonSpecies(Species.SOBBLE, 8, false, false, false, "Water Lizard Pokémon", Type.WATER, null, 0.3, 4, Abilities.TORRENT, Abilities.NONE, Abilities.SNIPER, 310, 50, 40, 40, 70, 40, 70, 45, 50, 62, GrowthRate.MEDIUM_SLOW, 87.5, false), new PokemonSpecies(Species.DRIZZILE, 8, false, false, false, "Water Lizard Pokémon", Type.WATER, null, 0.7, 11.5, Abilities.TORRENT, Abilities.NONE, Abilities.SNIPER, 420, 65, 60, 55, 95, 55, 90, 45, 50, 147, GrowthRate.MEDIUM_SLOW, 87.5, false), new PokemonSpecies(Species.INTELEON, 8, false, false, false, "Secret Agent Pokémon", Type.WATER, null, 1.9, 45.2, Abilities.TORRENT, Abilities.NONE, Abilities.SNIPER, 530, 70, 85, 65, 125, 65, 120, 45, 50, 265, GrowthRate.MEDIUM_SLOW, 87.5, false, true, new PokemonForm("Normal", "", Type.WATER, null, 1.9, 45.2, Abilities.TORRENT, Abilities.NONE, Abilities.SNIPER, 530, 70, 85, 65, 125, 65, 120, 45, 50, 265, false, null, true), - new PokemonForm("G-Max", SpeciesFormKey.GIGANTAMAX, Type.WATER, null, 40, 45.2, Abilities.TORRENT, Abilities.NONE, Abilities.SNIPER, 630, 90, 100, 90, 150, 90, 110, 45, 50, 265), + new PokemonForm("G-Max", SpeciesFormKey.GIGANTAMAX, Type.WATER, null, 40, 45.2, Abilities.SNIPER, Abilities.SNIPER, Abilities.SNIPER, 630, 95, 97, 77, 147, 77, 137, 45, 50, 265), ), new PokemonSpecies(Species.SKWOVET, 8, false, false, false, "Cheeky Pokémon", Type.NORMAL, null, 0.3, 2.5, Abilities.CHEEK_POUCH, Abilities.NONE, Abilities.GLUTTONY, 275, 70, 55, 55, 35, 35, 25, 255, 50, 55, GrowthRate.MEDIUM_FAST, 50, false), new PokemonSpecies(Species.GREEDENT, 8, false, false, false, "Greedy Pokémon", Type.NORMAL, null, 0.6, 6, Abilities.CHEEK_POUCH, Abilities.NONE, Abilities.GLUTTONY, 460, 120, 95, 95, 55, 75, 20, 90, 50, 161, GrowthRate.MEDIUM_FAST, 50, false), @@ -2262,13 +2272,13 @@ export function initSpecies() { new PokemonSpecies(Species.CORVISQUIRE, 8, false, false, false, "Raven Pokémon", Type.FLYING, null, 0.8, 16, Abilities.KEEN_EYE, Abilities.UNNERVE, Abilities.BIG_PECKS, 365, 68, 67, 55, 43, 55, 77, 120, 50, 128, GrowthRate.MEDIUM_SLOW, 50, false), new PokemonSpecies(Species.CORVIKNIGHT, 8, false, false, false, "Raven Pokémon", Type.FLYING, Type.STEEL, 2.2, 75, Abilities.PRESSURE, Abilities.UNNERVE, Abilities.MIRROR_ARMOR, 495, 98, 87, 105, 53, 85, 67, 45, 50, 248, GrowthRate.MEDIUM_SLOW, 50, false, true, new PokemonForm("Normal", "", Type.FLYING, Type.STEEL, 2.2, 75, Abilities.PRESSURE, Abilities.UNNERVE, Abilities.MIRROR_ARMOR, 495, 98, 87, 105, 53, 85, 67, 45, 50, 248, false, null, true), - new PokemonForm("G-Max", SpeciesFormKey.GIGANTAMAX, Type.FLYING, Type.STEEL, 14, 75, Abilities.PRESSURE, Abilities.UNNERVE, Abilities.MIRROR_ARMOR, 595, 125, 100, 135, 60, 95, 80, 45, 50, 248), + new PokemonForm("G-Max", SpeciesFormKey.GIGANTAMAX, Type.FLYING, Type.STEEL, 14, 75, Abilities.MIRROR_ARMOR, Abilities.MIRROR_ARMOR, Abilities.MIRROR_ARMOR, 595, 128, 102, 140, 53, 95, 77, 45, 50, 248), ), new PokemonSpecies(Species.BLIPBUG, 8, false, false, false, "Larva Pokémon", Type.BUG, null, 0.4, 8, Abilities.SWARM, Abilities.COMPOUND_EYES, Abilities.TELEPATHY, 180, 25, 20, 20, 25, 45, 45, 255, 50, 36, GrowthRate.MEDIUM_FAST, 50, false), new PokemonSpecies(Species.DOTTLER, 8, false, false, false, "Radome Pokémon", Type.BUG, Type.PSYCHIC, 0.4, 19.5, Abilities.SWARM, Abilities.COMPOUND_EYES, Abilities.TELEPATHY, 335, 50, 35, 80, 50, 90, 30, 120, 50, 117, GrowthRate.MEDIUM_FAST, 50, false), new PokemonSpecies(Species.ORBEETLE, 8, false, false, false, "Seven Spot Pokémon", Type.BUG, Type.PSYCHIC, 0.4, 40.8, Abilities.SWARM, Abilities.FRISK, Abilities.TELEPATHY, 505, 60, 45, 110, 80, 120, 90, 45, 50, 253, GrowthRate.MEDIUM_FAST, 50, false, true, new PokemonForm("Normal", "", Type.BUG, Type.PSYCHIC, 0.4, 40.8, Abilities.SWARM, Abilities.FRISK, Abilities.TELEPATHY, 505, 60, 45, 110, 80, 120, 90, 45, 50, 253, false, null, true), - new PokemonForm("G-Max", SpeciesFormKey.GIGANTAMAX, Type.BUG, Type.PSYCHIC, 14, 40.8, Abilities.SWARM, Abilities.FRISK, Abilities.TELEPATHY, 605, 75, 50, 140, 90, 150, 100, 45, 50, 253), + new PokemonForm("G-Max", SpeciesFormKey.GIGANTAMAX, Type.BUG, Type.PSYCHIC, 14, 40.8, Abilities.TRACE, Abilities.TRACE, Abilities.TRACE, 605, 90, 45, 130, 110, 140, 90, 45, 50, 253), ), new PokemonSpecies(Species.NICKIT, 8, false, false, false, "Fox Pokémon", Type.DARK, null, 0.6, 8.9, Abilities.RUN_AWAY, Abilities.UNBURDEN, Abilities.STAKEOUT, 245, 40, 28, 28, 47, 52, 50, 255, 50, 49, GrowthRate.FAST, 50, false), new PokemonSpecies(Species.THIEVUL, 8, false, false, false, "Fox Pokémon", Type.DARK, null, 1.2, 19.9, Abilities.RUN_AWAY, Abilities.UNBURDEN, Abilities.STAKEOUT, 455, 70, 58, 58, 87, 92, 90, 127, 50, 159, GrowthRate.FAST, 50, false), @@ -2279,7 +2289,7 @@ export function initSpecies() { new PokemonSpecies(Species.CHEWTLE, 8, false, false, false, "Snapping Pokémon", Type.WATER, null, 0.3, 8.5, Abilities.STRONG_JAW, Abilities.SHELL_ARMOR, Abilities.SWIFT_SWIM, 284, 50, 64, 50, 38, 38, 44, 255, 50, 57, GrowthRate.MEDIUM_FAST, 50, false), new PokemonSpecies(Species.DREDNAW, 8, false, false, false, "Bite Pokémon", Type.WATER, Type.ROCK, 1, 115.5, Abilities.STRONG_JAW, Abilities.SHELL_ARMOR, Abilities.SWIFT_SWIM, 485, 90, 115, 90, 48, 68, 74, 75, 50, 170, GrowthRate.MEDIUM_FAST, 50, false, true, new PokemonForm("Normal", "", Type.WATER, Type.ROCK, 1, 115.5, Abilities.STRONG_JAW, Abilities.SHELL_ARMOR, Abilities.SWIFT_SWIM, 485, 90, 115, 90, 48, 68, 74, 75, 50, 170, false, null, true), - new PokemonForm("G-Max", SpeciesFormKey.GIGANTAMAX, Type.WATER, Type.ROCK, 24, 115.5, Abilities.STRONG_JAW, Abilities.SHELL_ARMOR, Abilities.SWIFT_SWIM, 585, 115, 150, 110, 55, 85, 70, 75, 50, 170), + new PokemonForm("G-Max", SpeciesFormKey.GIGANTAMAX, Type.WATER, Type.ROCK, 24, 115.5, Abilities.STRONG_JAW, Abilities.STRONG_JAW, Abilities.STRONG_JAW, 585, 115, 145, 115, 43, 83, 84, 75, 50, 170), ), new PokemonSpecies(Species.YAMPER, 8, false, false, false, "Puppy Pokémon", Type.ELECTRIC, null, 0.3, 13.5, Abilities.BALL_FETCH, Abilities.NONE, Abilities.RATTLED, 270, 59, 45, 50, 40, 50, 26, 255, 50, 54, GrowthRate.FAST, 50, false), new PokemonSpecies(Species.BOLTUND, 8, false, false, false, "Dog Pokémon", Type.ELECTRIC, null, 1, 34, Abilities.STRONG_JAW, Abilities.NONE, Abilities.COMPETITIVE, 490, 69, 90, 60, 90, 60, 121, 45, 50, 172, GrowthRate.FAST, 50, false), @@ -2287,21 +2297,21 @@ export function initSpecies() { new PokemonSpecies(Species.CARKOL, 8, false, false, false, "Coal Pokémon", Type.ROCK, Type.FIRE, 1.1, 78, Abilities.STEAM_ENGINE, Abilities.FLAME_BODY, Abilities.FLASH_FIRE, 410, 80, 60, 90, 60, 70, 50, 120, 50, 144, GrowthRate.MEDIUM_SLOW, 50, false), new PokemonSpecies(Species.COALOSSAL, 8, false, false, false, "Coal Pokémon", Type.ROCK, Type.FIRE, 2.8, 310.5, Abilities.STEAM_ENGINE, Abilities.FLAME_BODY, Abilities.FLASH_FIRE, 510, 110, 80, 120, 80, 90, 30, 45, 50, 255, GrowthRate.MEDIUM_SLOW, 50, false, true, new PokemonForm("Normal", "", Type.ROCK, Type.FIRE, 2.8, 310.5, Abilities.STEAM_ENGINE, Abilities.FLAME_BODY, Abilities.FLASH_FIRE, 510, 110, 80, 120, 80, 90, 30, 45, 50, 255, false, null, true), - new PokemonForm("G-Max", SpeciesFormKey.GIGANTAMAX, Type.ROCK, Type.FIRE, 42, 310.5, Abilities.STEAM_ENGINE, Abilities.FLAME_BODY, Abilities.FLASH_FIRE, 610, 140, 95, 150, 95, 105, 25, 45, 50, 255), + new PokemonForm("G-Max", SpeciesFormKey.GIGANTAMAX, Type.ROCK, Type.FIRE, 42, 310.5, Abilities.STEAM_ENGINE, Abilities.STEAM_ENGINE, Abilities.STEAM_ENGINE, 610, 140, 95, 130, 95, 110, 40, 45, 50, 255), ), new PokemonSpecies(Species.APPLIN, 8, false, false, false, "Apple Core Pokémon", Type.GRASS, Type.DRAGON, 0.2, 0.5, Abilities.RIPEN, Abilities.GLUTTONY, Abilities.BULLETPROOF, 260, 40, 40, 80, 40, 40, 20, 255, 50, 52, GrowthRate.ERRATIC, 50, false), new PokemonSpecies(Species.FLAPPLE, 8, false, false, false, "Apple Wing Pokémon", Type.GRASS, Type.DRAGON, 0.3, 1, Abilities.RIPEN, Abilities.GLUTTONY, Abilities.HUSTLE, 485, 70, 110, 80, 95, 60, 70, 45, 50, 170, GrowthRate.ERRATIC, 50, false, true, new PokemonForm("Normal", "", Type.GRASS, Type.DRAGON, 0.3, 1, Abilities.RIPEN, Abilities.GLUTTONY, Abilities.HUSTLE, 485, 70, 110, 80, 95, 60, 70, 45, 50, 170, false, null, true), - new PokemonForm("G-Max", SpeciesFormKey.GIGANTAMAX, Type.GRASS, Type.DRAGON, 24, 1, Abilities.RIPEN, Abilities.GLUTTONY, Abilities.HUSTLE, 585, 90, 140, 90, 120, 75, 70, 45, 50, 170), + new PokemonForm("G-Max", SpeciesFormKey.GIGANTAMAX, Type.GRASS, Type.DRAGON, 24, 1, Abilities.HUSTLE, Abilities.HUSTLE, Abilities.HUSTLE, 585, 90, 130, 100, 85, 80, 100, 45, 50, 170), ), new PokemonSpecies(Species.APPLETUN, 8, false, false, false, "Apple Nectar Pokémon", Type.GRASS, Type.DRAGON, 0.4, 13, Abilities.RIPEN, Abilities.GLUTTONY, Abilities.THICK_FAT, 485, 110, 85, 80, 100, 80, 30, 45, 50, 170, GrowthRate.ERRATIC, 50, false, true, new PokemonForm("Normal", "", Type.GRASS, Type.DRAGON, 0.4, 13, Abilities.RIPEN, Abilities.GLUTTONY, Abilities.THICK_FAT, 485, 110, 85, 80, 100, 80, 30, 45, 50, 170, false, null, true), - new PokemonForm("G-Max", SpeciesFormKey.GIGANTAMAX, Type.GRASS, Type.DRAGON, 24, 13, Abilities.RIPEN, Abilities.GLUTTONY, Abilities.THICK_FAT, 585, 140, 95, 95, 135, 95, 25, 45, 50, 170), + new PokemonForm("G-Max", SpeciesFormKey.GIGANTAMAX, Type.GRASS, Type.DRAGON, 24, 13, Abilities.THICK_FAT, Abilities.THICK_FAT, Abilities.THICK_FAT, 585, 130, 75, 115, 125, 115, 25, 45, 50, 170), ), new PokemonSpecies(Species.SILICOBRA, 8, false, false, false, "Sand Snake Pokémon", Type.GROUND, null, 2.2, 7.6, Abilities.SAND_SPIT, Abilities.SHED_SKIN, Abilities.SAND_VEIL, 315, 52, 57, 75, 35, 50, 46, 255, 50, 63, GrowthRate.MEDIUM_FAST, 50, false), new PokemonSpecies(Species.SANDACONDA, 8, false, false, false, "Sand Snake Pokémon", Type.GROUND, null, 3.8, 65.5, Abilities.SAND_SPIT, Abilities.SHED_SKIN, Abilities.SAND_VEIL, 510, 72, 107, 125, 65, 70, 71, 120, 50, 179, GrowthRate.MEDIUM_FAST, 50, false, true, new PokemonForm("Normal", "", Type.GROUND, null, 3.8, 65.5, Abilities.SAND_SPIT, Abilities.SHED_SKIN, Abilities.SAND_VEIL, 510, 72, 107, 125, 65, 70, 71, 120, 50, 179, false, null, true), - new PokemonForm("G-Max", SpeciesFormKey.GIGANTAMAX, Type.GROUND, null, 22, 65.5, Abilities.SAND_SPIT, Abilities.SHED_SKIN, Abilities.SAND_VEIL, 610, 90, 135, 150, 75, 80, 80, 120, 50, 179), + new PokemonForm("G-Max", SpeciesFormKey.GIGANTAMAX, Type.GROUND, null, 22, 65.5, Abilities.SAND_SPIT, Abilities.SAND_SPIT, Abilities.SAND_SPIT, 610, 117, 137, 140, 55, 80, 81, 120, 50, 179), ), new PokemonSpecies(Species.CRAMORANT, 8, false, false, false, "Gulp Pokémon", Type.FLYING, Type.WATER, 0.8, 18, Abilities.GULP_MISSILE, Abilities.NONE, Abilities.NONE, 475, 70, 85, 55, 85, 95, 85, 45, 50, 166, GrowthRate.MEDIUM_FAST, 50, false, false, new PokemonForm("Normal", "", Type.FLYING, Type.WATER, 0.8, 18, Abilities.GULP_MISSILE, Abilities.NONE, Abilities.NONE, 475, 70, 85, 55, 85, 95, 85, 45, 50, 166, false, null, true), @@ -2314,12 +2324,12 @@ export function initSpecies() { new PokemonSpecies(Species.TOXTRICITY, 8, false, false, false, "Punk Pokémon", Type.ELECTRIC, Type.POISON, 1.6, 40, Abilities.PUNK_ROCK, Abilities.PLUS, Abilities.TECHNICIAN, 502, 75, 98, 70, 114, 70, 75, 45, 50, 176, GrowthRate.MEDIUM_SLOW, 50, false, true, new PokemonForm("Amped Form", "amped", Type.ELECTRIC, Type.POISON, 1.6, 40, Abilities.PUNK_ROCK, Abilities.PLUS, Abilities.TECHNICIAN, 502, 75, 98, 70, 114, 70, 75, 45, 50, 176, false, "", true), new PokemonForm("Low-Key Form", "lowkey", Type.ELECTRIC, Type.POISON, 1.6, 40, Abilities.PUNK_ROCK, Abilities.MINUS, Abilities.TECHNICIAN, 502, 75, 98, 70, 114, 70, 75, 45, 50, 176, false, "lowkey", true), - new PokemonForm("G-Max", SpeciesFormKey.GIGANTAMAX, Type.ELECTRIC, Type.POISON, 24, 40, Abilities.PUNK_ROCK, Abilities.MINUS, Abilities.TECHNICIAN, 602, 95, 118, 80, 144, 80, 85, 45, 50, 176), + new PokemonForm("G-Max", SpeciesFormKey.GIGANTAMAX, Type.ELECTRIC, Type.POISON, 24, 40, Abilities.PUNK_ROCK, Abilities.PUNK_ROCK, Abilities.PUNK_ROCK, 602, 114, 98, 82, 144, 82, 82, 45, 50, 176), ), new PokemonSpecies(Species.SIZZLIPEDE, 8, false, false, false, "Radiator Pokémon", Type.FIRE, Type.BUG, 0.7, 1, Abilities.FLASH_FIRE, Abilities.WHITE_SMOKE, Abilities.FLAME_BODY, 305, 50, 65, 45, 50, 50, 45, 190, 50, 61, GrowthRate.MEDIUM_FAST, 50, false), new PokemonSpecies(Species.CENTISKORCH, 8, false, false, false, "Radiator Pokémon", Type.FIRE, Type.BUG, 3, 120, Abilities.FLASH_FIRE, Abilities.WHITE_SMOKE, Abilities.FLAME_BODY, 525, 100, 115, 65, 90, 90, 65, 75, 50, 184, GrowthRate.MEDIUM_FAST, 50, false, true, new PokemonForm("Normal", "", Type.FIRE, Type.BUG, 3, 120, Abilities.FLASH_FIRE, Abilities.WHITE_SMOKE, Abilities.FLAME_BODY, 525, 100, 115, 65, 90, 90, 65, 75, 50, 184, false, null, true), - new PokemonForm("G-Max", SpeciesFormKey.GIGANTAMAX, Type.FIRE, Type.BUG, 75, 120, Abilities.FLASH_FIRE, Abilities.WHITE_SMOKE, Abilities.FLAME_BODY, 625, 125, 145, 75, 105, 105, 70, 75, 50, 184), + new PokemonForm("G-Max", SpeciesFormKey.GIGANTAMAX, Type.FIRE, Type.BUG, 75, 120, Abilities.FLASH_FIRE, Abilities.FLASH_FIRE, Abilities.FLASH_FIRE, 625, 140, 145, 75, 90, 100, 75, 75, 50, 184), ), new PokemonSpecies(Species.CLOBBOPUS, 8, false, false, false, "Tantrum Pokémon", Type.FIGHTING, null, 0.6, 4, Abilities.LIMBER, Abilities.NONE, Abilities.TECHNICIAN, 310, 50, 68, 60, 50, 50, 32, 180, 50, 62, GrowthRate.MEDIUM_SLOW, 50, false), new PokemonSpecies(Species.GRAPPLOCT, 8, false, false, false, "Jujitsu Pokémon", Type.FIGHTING, null, 1.6, 39, Abilities.LIMBER, Abilities.NONE, Abilities.TECHNICIAN, 480, 80, 118, 90, 70, 80, 42, 45, 50, 168, GrowthRate.MEDIUM_SLOW, 50, false), @@ -2335,13 +2345,13 @@ export function initSpecies() { new PokemonSpecies(Species.HATTREM, 8, false, false, false, "Serene Pokémon", Type.PSYCHIC, null, 0.6, 4.8, Abilities.HEALER, Abilities.ANTICIPATION, Abilities.MAGIC_BOUNCE, 370, 57, 40, 65, 86, 73, 49, 120, 50, 130, GrowthRate.SLOW, 0, false), new PokemonSpecies(Species.HATTERENE, 8, false, false, false, "Silent Pokémon", Type.PSYCHIC, Type.FAIRY, 2.1, 5.1, Abilities.HEALER, Abilities.ANTICIPATION, Abilities.MAGIC_BOUNCE, 510, 57, 90, 95, 136, 103, 29, 45, 50, 255, GrowthRate.SLOW, 0, false, true, new PokemonForm("Normal", "", Type.PSYCHIC, Type.FAIRY, 2.1, 5.1, Abilities.HEALER, Abilities.ANTICIPATION, Abilities.MAGIC_BOUNCE, 510, 57, 90, 95, 136, 103, 29, 45, 50, 255, false, null, true), - new PokemonForm("G-Max", SpeciesFormKey.GIGANTAMAX, Type.PSYCHIC, Type.FAIRY, 26, 5.1, Abilities.HEALER, Abilities.ANTICIPATION, Abilities.MAGIC_BOUNCE, 610, 70, 105, 110, 160, 125, 40, 45, 50, 255), + new PokemonForm("G-Max", SpeciesFormKey.GIGANTAMAX, Type.PSYCHIC, Type.FAIRY, 26, 5.1, Abilities.MAGIC_BOUNCE, Abilities.MAGIC_BOUNCE, Abilities.MAGIC_BOUNCE, 610, 97, 90, 105, 146, 122, 50, 45, 50, 255), ), new PokemonSpecies(Species.IMPIDIMP, 8, false, false, false, "Wily Pokémon", Type.DARK, Type.FAIRY, 0.4, 5.5, Abilities.PRANKSTER, Abilities.FRISK, Abilities.PICKPOCKET, 265, 45, 45, 30, 55, 40, 50, 255, 50, 53, GrowthRate.MEDIUM_FAST, 100, false), new PokemonSpecies(Species.MORGREM, 8, false, false, false, "Devious Pokémon", Type.DARK, Type.FAIRY, 0.8, 12.5, Abilities.PRANKSTER, Abilities.FRISK, Abilities.PICKPOCKET, 370, 65, 60, 45, 75, 55, 70, 120, 50, 130, GrowthRate.MEDIUM_FAST, 100, false), new PokemonSpecies(Species.GRIMMSNARL, 8, false, false, false, "Bulk Up Pokémon", Type.DARK, Type.FAIRY, 1.5, 61, Abilities.PRANKSTER, Abilities.FRISK, Abilities.PICKPOCKET, 510, 95, 120, 65, 95, 75, 60, 45, 50, 255, GrowthRate.MEDIUM_FAST, 100, false, true, new PokemonForm("Normal", "", Type.DARK, Type.FAIRY, 1.5, 61, Abilities.PRANKSTER, Abilities.FRISK, Abilities.PICKPOCKET, 510, 95, 120, 65, 95, 75, 60, 45, 50, 255, false, null, true), - new PokemonForm("G-Max", SpeciesFormKey.GIGANTAMAX, Type.DARK, Type.FAIRY, 32, 61, Abilities.PRANKSTER, Abilities.FRISK, Abilities.PICKPOCKET, 610, 120, 155, 75, 110, 85, 65, 45, 50, 255), + new PokemonForm("G-Max", SpeciesFormKey.GIGANTAMAX, Type.DARK, Type.FAIRY, 32, 61, Abilities.PRANKSTER, Abilities.PRANKSTER, Abilities.PRANKSTER, 610, 135, 138, 77, 110, 85, 65, 45, 50, 255), ), new PokemonSpecies(Species.OBSTAGOON, 8, false, false, false, "Blocking Pokémon", Type.DARK, Type.NORMAL, 1.6, 46, Abilities.RECKLESS, Abilities.GUTS, Abilities.DEFIANT, 520, 93, 90, 101, 60, 81, 95, 45, 50, 260, GrowthRate.MEDIUM_FAST, 50, false), new PokemonSpecies(Species.PERRSERKER, 8, false, false, false, "Viking Pokémon", Type.STEEL, null, 0.8, 28, Abilities.BATTLE_ARMOR, Abilities.TOUGH_CLAWS, Abilities.STEELY_SPIRIT, 440, 70, 110, 100, 50, 60, 50, 90, 50, 154, GrowthRate.MEDIUM_FAST, 50, false), @@ -2360,7 +2370,7 @@ export function initSpecies() { new PokemonForm("Ruby Swirl", "ruby-swirl", Type.FAIRY, null, 0.3, 0.5, Abilities.SWEET_VEIL, Abilities.NONE, Abilities.AROMA_VEIL, 495, 65, 60, 75, 110, 121, 64, 100, 50, 173, false, null, true), new PokemonForm("Caramel Swirl", "caramel-swirl", Type.FAIRY, null, 0.3, 0.5, Abilities.SWEET_VEIL, Abilities.NONE, Abilities.AROMA_VEIL, 495, 65, 60, 75, 110, 121, 64, 100, 50, 173, false, null, true), new PokemonForm("Rainbow Swirl", "rainbow-swirl", Type.FAIRY, null, 0.3, 0.5, Abilities.SWEET_VEIL, Abilities.NONE, Abilities.AROMA_VEIL, 495, 65, 60, 75, 110, 121, 64, 100, 50, 173, false, null, true), - new PokemonForm("G-Max", SpeciesFormKey.GIGANTAMAX, Type.FAIRY, null, 30, 0.5, Abilities.SWEET_VEIL, Abilities.NONE, Abilities.AROMA_VEIL, 595, 85, 70, 85, 140, 150, 65, 100, 50, 173), + new PokemonForm("G-Max", SpeciesFormKey.GIGANTAMAX, Type.FAIRY, null, 30, 0.5, Abilities.MISTY_SURGE, Abilities.MISTY_SURGE, Abilities.MISTY_SURGE, 595, 135, 60, 75, 130, 131, 64, 100, 50, 173), ), new PokemonSpecies(Species.FALINKS, 8, false, false, false, "Formation Pokémon", Type.FIGHTING, null, 3, 62, Abilities.BATTLE_ARMOR, Abilities.NONE, Abilities.DEFIANT, 470, 65, 100, 100, 70, 60, 75, 45, 50, 165, GrowthRate.MEDIUM_FAST, null, false), new PokemonSpecies(Species.PINCURCHIN, 8, false, false, false, "Sea Urchin Pokémon", Type.ELECTRIC, null, 0.3, 1, Abilities.LIGHTNING_ROD, Abilities.NONE, Abilities.ELECTRIC_SURGE, 435, 48, 101, 95, 91, 85, 15, 75, 50, 152, GrowthRate.MEDIUM_FAST, 50, false), @@ -2382,7 +2392,7 @@ export function initSpecies() { new PokemonSpecies(Species.CUFANT, 8, false, false, false, "Copperderm Pokémon", Type.STEEL, null, 1.2, 100, Abilities.SHEER_FORCE, Abilities.NONE, Abilities.HEAVY_METAL, 330, 72, 80, 49, 40, 49, 40, 190, 50, 66, GrowthRate.MEDIUM_FAST, 50, false), new PokemonSpecies(Species.COPPERAJAH, 8, false, false, false, "Copperderm Pokémon", Type.STEEL, null, 3, 650, Abilities.SHEER_FORCE, Abilities.NONE, Abilities.HEAVY_METAL, 500, 122, 130, 69, 80, 69, 30, 90, 50, 175, GrowthRate.MEDIUM_FAST, 50, false, true, new PokemonForm("Normal", "", Type.STEEL, null, 3, 650, Abilities.SHEER_FORCE, Abilities.NONE, Abilities.HEAVY_METAL, 500, 122, 130, 69, 80, 69, 30, 90, 50, 175, false, null, true), - new PokemonForm("G-Max", SpeciesFormKey.GIGANTAMAX, Type.STEEL, null, 23, 650, Abilities.SHEER_FORCE, Abilities.NONE, Abilities.HEAVY_METAL, 600, 150, 160, 80, 90, 80, 40, 90, 50, 175), + new PokemonForm("G-Max", SpeciesFormKey.GIGANTAMAX, Type.STEEL, Type.GROUND, 23, 650, Abilities.MOLD_BREAKER, Abilities.MOLD_BREAKER, Abilities.MOLD_BREAKER, 600, 167, 155, 89, 80, 89, 20, 90, 50, 175), ), new PokemonSpecies(Species.DRACOZOLT, 8, false, false, false, "Fossil Pokémon", Type.ELECTRIC, Type.DRAGON, 1.8, 190, Abilities.VOLT_ABSORB, Abilities.HUSTLE, Abilities.SAND_RUSH, 505, 90, 100, 90, 80, 70, 75, 45, 50, 177, GrowthRate.SLOW, null, false), new PokemonSpecies(Species.ARCTOZOLT, 8, false, false, false, "Fossil Pokémon", Type.ELECTRIC, Type.ICE, 2.3, 150, Abilities.VOLT_ABSORB, Abilities.STATIC, Abilities.SLUSH_RUSH, 505, 90, 100, 90, 90, 80, 55, 45, 50, 177, GrowthRate.SLOW, null, false), @@ -2390,7 +2400,7 @@ export function initSpecies() { new PokemonSpecies(Species.ARCTOVISH, 8, false, false, false, "Fossil Pokémon", Type.WATER, Type.ICE, 2, 175, Abilities.WATER_ABSORB, Abilities.ICE_BODY, Abilities.SLUSH_RUSH, 505, 90, 90, 100, 80, 90, 55, 45, 50, 177, GrowthRate.SLOW, null, false), new PokemonSpecies(Species.DURALUDON, 8, false, false, false, "Alloy Pokémon", Type.STEEL, Type.DRAGON, 1.8, 40, Abilities.LIGHT_METAL, Abilities.HEAVY_METAL, Abilities.STALWART, 535, 70, 95, 115, 120, 50, 85, 45, 50, 187, GrowthRate.MEDIUM_FAST, 50, false, true, new PokemonForm("Normal", "", Type.STEEL, Type.DRAGON, 1.8, 40, Abilities.LIGHT_METAL, Abilities.HEAVY_METAL, Abilities.STALWART, 535, 70, 95, 115, 120, 50, 85, 45, 50, 187, false, null, true), - new PokemonForm("G-Max", SpeciesFormKey.GIGANTAMAX, Type.STEEL, Type.DRAGON, 43, 40, Abilities.LIGHT_METAL, Abilities.HEAVY_METAL, Abilities.STALWART, 635, 90, 110, 145, 140, 60, 90, 45, 50, 187), + new PokemonForm("G-Max", SpeciesFormKey.GIGANTAMAX, Type.STEEL, Type.DRAGON, 43, 40, Abilities.LIGHTNING_ROD, Abilities.LIGHTNING_ROD, Abilities.LIGHTNING_ROD, 635, 100, 105, 119, 166, 57, 88, 45, 50, 187), ), new PokemonSpecies(Species.DREEPY, 8, false, false, false, "Lingering Pokémon", Type.DRAGON, Type.GHOST, 0.5, 2, Abilities.CLEAR_BODY, Abilities.INFILTRATOR, Abilities.CURSED_BODY, 270, 28, 60, 30, 40, 30, 82, 45, 50, 54, GrowthRate.SLOW, 50, false), new PokemonSpecies(Species.DRAKLOAK, 8, false, false, false, "Caretaker Pokémon", Type.DRAGON, Type.GHOST, 1.4, 11, Abilities.CLEAR_BODY, Abilities.INFILTRATOR, Abilities.CURSED_BODY, 410, 68, 80, 50, 60, 50, 102, 45, 50, 144, GrowthRate.SLOW, 50, false), @@ -2411,8 +2421,8 @@ export function initSpecies() { new PokemonSpecies(Species.URSHIFU, 8, true, false, false, "Wushu Pokémon", Type.FIGHTING, Type.DARK, 1.9, 105, Abilities.UNSEEN_FIST, Abilities.NONE, Abilities.NONE, 550, 100, 130, 100, 63, 60, 97, 3, 50, 275, GrowthRate.SLOW, 87.5, false, true, new PokemonForm("Single Strike Style", "single-strike", Type.FIGHTING, Type.DARK, 1.9, 105, Abilities.UNSEEN_FIST, Abilities.NONE, Abilities.NONE, 550, 100, 130, 100, 63, 60, 97, 3, 50, 275, false, "", true), new PokemonForm("Rapid Strike Style", "rapid-strike", Type.FIGHTING, Type.WATER, 1.9, 105, Abilities.UNSEEN_FIST, Abilities.NONE, Abilities.NONE, 550, 100, 130, 100, 63, 60, 97, 3, 50, 275, false, null, true), - new PokemonForm("G-Max Single Strike Style", SpeciesFormKey.GIGANTAMAX_SINGLE, Type.FIGHTING, Type.DARK, 29, 105, Abilities.UNSEEN_FIST, Abilities.NONE, Abilities.NONE, 650, 125, 160, 120, 75, 70, 100, 3, 50, 275), - new PokemonForm("G-Max Rapid Strike Style", SpeciesFormKey.GIGANTAMAX_RAPID, Type.FIGHTING, Type.WATER, 26, 105, Abilities.UNSEEN_FIST, Abilities.NONE, Abilities.NONE, 650, 125, 160, 120, 75, 70, 100, 3, 50, 275), + new PokemonForm("G-Max Single Strike Style", SpeciesFormKey.GIGANTAMAX_SINGLE, Type.FIGHTING, Type.DARK, 29, 105, Abilities.UNSEEN_FIST, Abilities.NONE, Abilities.NONE, 650, 125, 150, 115, 73, 70, 117, 3, 50, 275), + new PokemonForm("G-Max Rapid Strike Style", SpeciesFormKey.GIGANTAMAX_RAPID, Type.FIGHTING, Type.WATER, 26, 105, Abilities.UNSEEN_FIST, Abilities.NONE, Abilities.NONE, 650, 125, 150, 115, 73, 70, 117, 3, 50, 275), ), new PokemonSpecies(Species.ZARUDE, 8, false, false, true, "Rogue Monkey Pokémon", Type.DARK, Type.GRASS, 1.8, 70, Abilities.LEAF_GUARD, Abilities.NONE, Abilities.NONE, 600, 105, 120, 105, 70, 95, 105, 3, 0, 300, GrowthRate.SLOW, null, false, false, new PokemonForm("Normal", "", Type.DARK, Type.GRASS, 1.8, 70, Abilities.LEAF_GUARD, Abilities.NONE, Abilities.NONE, 600, 105, 120, 105, 70, 95, 105, 3, 0, 300, false, null, true), @@ -2581,7 +2591,7 @@ export function initSpecies() { ), new PokemonSpecies(Species.WALKING_WAKE, 9, false, false, false, "Paradox Pokémon", Type.WATER, Type.DRAGON, 3.5, 280, Abilities.PROTOSYNTHESIS, Abilities.NONE, Abilities.NONE, 590, 99, 83, 91, 125, 83, 109, 5, 0, 295, GrowthRate.SLOW, null, false), new PokemonSpecies(Species.IRON_LEAVES, 9, false, false, false, "Paradox Pokémon", Type.GRASS, Type.PSYCHIC, 1.5, 125, Abilities.QUARK_DRIVE, Abilities.NONE, Abilities.NONE, 590, 90, 130, 88, 70, 108, 104, 5, 0, 295, GrowthRate.SLOW, null, false), - new PokemonSpecies(Species.DIPPLIN, 9, false, false, false, "Candy Apple Pokémon", Type.GRASS, Type.DRAGON, 0.4, 9.7, Abilities.SUPERSWEET_SYRUP, Abilities.GLUTTONY, Abilities.STICKY_HOLD, 485, 80, 80, 110, 95, 80, 40, 45, 50, 170, GrowthRate.ERRATIC, null, false), + new PokemonSpecies(Species.DIPPLIN, 9, false, false, false, "Candy Apple Pokémon", Type.GRASS, Type.DRAGON, 0.4, 9.7, Abilities.SUPERSWEET_SYRUP, Abilities.GLUTTONY, Abilities.STICKY_HOLD, 485, 80, 80, 110, 95, 80, 40, 45, 50, 170, GrowthRate.ERRATIC, 50, false), new PokemonSpecies(Species.POLTCHAGEIST, 9, false, false, false, "Matcha Pokémon", Type.GRASS, Type.GHOST, 0.1, 1.1, Abilities.HOSPITALITY, Abilities.NONE, Abilities.HEATPROOF, 308, 40, 45, 45, 74, 54, 50, 120, 50, 62, GrowthRate.SLOW, null, false, false, new PokemonForm("Counterfeit Form", "counterfeit", Type.GRASS, Type.GHOST, 0.1, 1.1, Abilities.HOSPITALITY, Abilities.NONE, Abilities.HEATPROOF, 308, 40, 45, 45, 74, 54, 50, 120, 50, 62, false, null, true), new PokemonForm("Artisan Form", "artisan", Type.GRASS, Type.GHOST, 0.1, 1.1, Abilities.HOSPITALITY, Abilities.NONE, Abilities.HEATPROOF, 308, 40, 45, 45, 74, 54, 50, 120, 50, 62, false, null, true), @@ -3317,6 +3327,28 @@ export function getStarterValueFriendshipCap(value: integer): integer { } } +/** +* Method to get the daily list of starters with Pokerus. +* @param scene {@linkcode BattleScene} used as part of RNG +* @returns A list of starters with Pokerus +*/ +export function getPokerusStarters(scene: BattleScene): PokemonSpecies[] { + const pokerusStarters: PokemonSpecies[] = []; + const date = new Date(); + const starterCount = 3; //for easy future adjustment! + date.setUTCHours(0, 0, 0, 0); + scene.executeWithSeedOffset(() => { + while (pokerusStarters.length < starterCount) { + const randomSpeciesId = parseInt(Utils.randSeedItem(Object.keys(speciesStarters)), 10); + const species = getPokemonSpecies(randomSpeciesId); + if (!pokerusStarters.includes(species)) { + pokerusStarters.push(species); + } + } + }, 0, date.getTime().toString()); + return pokerusStarters; +} + export const starterPassiveAbilities = { [Species.BULBASAUR]: Abilities.GRASSY_SURGE, [Species.CHARMANDER]: Abilities.BEAST_BOOST, @@ -3438,7 +3470,7 @@ export const starterPassiveAbilities = { [Species.SUICUNE]: Abilities.UNAWARE, [Species.LARVITAR]: Abilities.SAND_RUSH, [Species.LUGIA]: Abilities.DELTA_STREAM, - [Species.HO_OH]: Abilities.DROUGHT, + [Species.HO_OH]: Abilities.MAGIC_GUARD, [Species.CELEBI]: Abilities.GRASSY_SURGE, [Species.TREECKO]: Abilities.TINTED_LENS, [Species.TORCHIC]: Abilities.RECKLESS, @@ -3541,7 +3573,7 @@ export const starterPassiveAbilities = { [Species.CHATOT]: Abilities.PUNK_ROCK, [Species.SPIRITOMB]: Abilities.VESSEL_OF_RUIN, [Species.GIBLE]: Abilities.SAND_STREAM, - [Species.MUNCHLAX]: Abilities.HARVEST, + [Species.MUNCHLAX]: Abilities.RIPEN, [Species.RIOLU]: Abilities.MINDS_EYE, [Species.HIPPOPOTAS]: Abilities.UNAWARE, [Species.SKORUPI]: Abilities.SUPER_LUCK, @@ -3559,7 +3591,7 @@ export const starterPassiveAbilities = { [Species.HEATRAN]: Abilities.EARTH_EATER, [Species.REGIGIGAS]: Abilities.MINDS_EYE, [Species.GIRATINA]: Abilities.SHADOW_SHIELD, - [Species.CRESSELIA]: Abilities.UNAWARE, + [Species.CRESSELIA]: Abilities.SHADOW_SHIELD, [Species.PHIONE]: Abilities.SIMPLE, [Species.MANAPHY]: Abilities.PRIMORDIAL_SEA, [Species.DARKRAI]: Abilities.UNNERVE, @@ -3600,7 +3632,7 @@ export const starterPassiveAbilities = { [Species.YAMASK]: Abilities.PURIFYING_SALT, [Species.TIRTOUGA]: Abilities.WATER_ABSORB, [Species.ARCHEN]: Abilities.MULTISCALE, - [Species.TRUBBISH]: Abilities.TOXIC_DEBRIS, + [Species.TRUBBISH]: Abilities.NEUTRALIZING_GAS, [Species.ZORUA]: Abilities.DARK_AURA, [Species.MINCCINO]: Abilities.FUR_COAT, [Species.GOTHITA]: Abilities.UNNERVE, @@ -3761,7 +3793,7 @@ export const starterPassiveAbilities = { [Species.SINISTEA]: Abilities.SHADOW_SHIELD, [Species.HATENNA]: Abilities.FAIRY_AURA, [Species.IMPIDIMP]: Abilities.FUR_COAT, - [Species.MILCERY]: Abilities.MISTY_SURGE, + [Species.MILCERY]: Abilities.REGENERATOR, [Species.FALINKS]: Abilities.PARENTAL_BOND, [Species.PINCURCHIN]: Abilities.ELECTROMORPHOSIS, [Species.SNOM]: Abilities.SNOW_WARNING, diff --git a/src/data/terrain.ts b/src/data/terrain.ts index e29344ffea2..d4789078af7 100644 --- a/src/data/terrain.ts +++ b/src/data/terrain.ts @@ -59,7 +59,7 @@ export class Terrain { case TerrainType.PSYCHIC: if (!move.hasAttr(ProtectAttr)) { const priority = new Utils.IntegerHolder(move.priority); - applyAbAttrs(ChangeMovePriorityAbAttr, user, null, move, priority); + applyAbAttrs(ChangeMovePriorityAbAttr, user, null, false, move, priority); // Cancels move if the move has positive priority and targets a Pokemon grounded on the Psychic Terrain return priority.value > 0 && user.getOpponents().some(o => targets.includes(o.getBattlerIndex()) && o.isGrounded()); } diff --git a/src/data/tms.ts b/src/data/tms.ts index 761dcdf6be4..9dea6d74a86 100644 --- a/src/data/tms.ts +++ b/src/data/tms.ts @@ -42431,7 +42431,6 @@ export const tmSpecies: TmSpecies = { Species.TORTERRA, Species.BUDEW, Species.ROSERADE, - Species.WORMADAM, Species.CHERUBI, Species.CHERRIM, Species.CARNIVINE, @@ -42449,6 +42448,7 @@ export const tmSpecies: TmSpecies = { Species.PETILIL, Species.LILLIGANT, Species.MARACTUS, + Species.MINCCINO, Species.CINCCINO, Species.DEERLING, Species.SAWSBUCK, @@ -42511,6 +42511,10 @@ export const tmSpecies: TmSpecies = { Species.DIPPLIN, Species.OGERPON, Species.HYDRAPPLE, + [ + Species.WORMADAM, + "plant", + ], Species.ALOLA_EXEGGUTOR, Species.HISUI_VOLTORB, Species.HISUI_ELECTRODE, @@ -45984,6 +45988,7 @@ export const tmSpecies: TmSpecies = { Species.TEDDIURSA, Species.URSARING, Species.HITMONTOP, + Species.COMBUSKEN, Species.BLAZIKEN, Species.BRELOOM, Species.MAKUHITA, @@ -47576,6 +47581,7 @@ export const tmSpecies: TmSpecies = { Species.PIGNITE, Species.EMBOAR, Species.PANSEAR, + Species.SIMISEAR, Species.DARUMAKA, Species.DARMANITAN, Species.LITWICK, @@ -47617,6 +47623,7 @@ export const tmSpecies: TmSpecies = { Species.CHI_YU, Species.KORAIDON, Species.GOUGING_FIRE, + Species.TERAPAGOS, Species.ALOLA_MAROWAK, Species.GALAR_DARUMAKA, Species.GALAR_DARMANITAN, @@ -48610,6 +48617,7 @@ export const tmSpecies: TmSpecies = { Species.WOOBAT, Species.SWOOBAT, Species.SEWADDLE, + Species.SWADLOON, Species.LEAVANNY, Species.SIGILYPH, Species.ARCHEOPS, @@ -48639,6 +48647,9 @@ export const tmSpecies: TmSpecies = { Species.ROWLET, Species.DARTRIX, Species.DECIDUEYE, + Species.PIKIPEK, + Species.TRUMBEAK, + Species.TOUCANNON, Species.VIKAVOLT, Species.ORICORIO, Species.TYPE_NULL, @@ -49160,6 +49171,8 @@ export const tmSpecies: TmSpecies = { Species.AZELF, Species.REGIGIGAS, Species.DARKRAI, + Species.PIGNITE, + Species.EMBOAR, Species.AUDINO, Species.TIMBURR, Species.GURDURR, @@ -49790,10 +49803,13 @@ export const tmSpecies: TmSpecies = { ], [Moves.BRAVE_BIRD]: [ Species.PIDGEY, + Species.PIDGEOTTO, + Species.PIDGEOT, Species.ZUBAT, Species.GOLBAT, Species.FARFETCHD, Species.DODUO, + Species.DODRIO, Species.ARTICUNO, Species.ZAPDOS, Species.MOLTRES, @@ -49804,6 +49820,7 @@ export const tmSpecies: TmSpecies = { Species.MURKROW, Species.DELIBIRD, Species.SKARMORY, + Species.LUGIA, Species.HO_OH, Species.BLAZIKEN, Species.TAILLOW, @@ -49831,6 +49848,8 @@ export const tmSpecies: TmSpecies = { Species.DARTRIX, Species.DECIDUEYE, Species.PIKIPEK, + Species.TRUMBEAK, + Species.TOUCANNON, Species.TAPU_KOKO, Species.ROOKIDEE, Species.CORVISQUIRE, @@ -50006,6 +50025,7 @@ export const tmSpecies: TmSpecies = { Species.MUDSDALE, Species.SANDYGAST, Species.PALOSSAND, + Species.MINIOR, Species.NECROZMA, Species.RILLABOOM, Species.DREDNAW, @@ -50733,6 +50753,7 @@ export const tmSpecies: TmSpecies = { Species.KECLEON, Species.SHUPPET, Species.BANETTE, + Species.DEOXYS, Species.CHIMCHAR, Species.MONFERNO, Species.INFERNAPE, @@ -50761,8 +50782,11 @@ export const tmSpecies: TmSpecies = { Species.PURRLOIN, Species.LIEPARD, Species.PANSAGE, + Species.SIMISAGE, Species.PANSEAR, + Species.SIMISEAR, Species.PANPOUR, + Species.SIMIPOUR, Species.WOOBAT, Species.SWOOBAT, Species.YAMASK, @@ -51962,6 +51986,7 @@ export const tmSpecies: TmSpecies = { Species.BEHEEYEM, Species.CRYOGONAL, Species.DRUDDIGON, + Species.GOLETT, Species.GOLURK, Species.PAWNIARD, Species.BISHARP, @@ -52004,6 +52029,7 @@ export const tmSpecies: TmSpecies = { Species.MELTAN, Species.MELMETAL, Species.CORVIKNIGHT, + Species.PERRSERKER, Species.CUFANT, Species.COPPERAJAH, Species.DURALUDON, @@ -53193,6 +53219,8 @@ export const tmSpecies: TmSpecies = { Species.NUMEL, Species.CAMERUPT, Species.TORKOAL, + Species.TRAPINCH, + Species.VIBRAVA, Species.FLYGON, Species.LUNATONE, Species.SOLROCK, @@ -53436,6 +53464,9 @@ export const tmSpecies: TmSpecies = { Species.NUMEL, Species.CAMERUPT, Species.TORKOAL, + Species.TRAPINCH, + Species.VIBRAVA, + Species.FLYGON, Species.LUNATONE, Species.SOLROCK, Species.BARBOACH, @@ -53518,6 +53549,7 @@ export const tmSpecies: TmSpecies = { Species.HYDREIGON, Species.COBALION, Species.TERRAKION, + Species.ZEKROM, Species.LANDORUS, Species.BINACLE, Species.BARBARACLE, @@ -54564,6 +54596,7 @@ export const tmSpecies: TmSpecies = { Species.SLOWBRO, Species.DROWZEE, Species.HYPNO, + Species.EXEGGCUTE, Species.EXEGGUTOR, Species.STARMIE, Species.MR_MIME, @@ -54615,6 +54648,7 @@ export const tmSpecies: TmSpecies = { Species.MESPRIT, Species.AZELF, Species.CRESSELIA, + Species.DARKRAI, Species.ARCEUS, Species.VICTINI, Species.MUNNA, @@ -54638,6 +54672,7 @@ export const tmSpecies: TmSpecies = { Species.ESPURR, Species.MEOWSTIC, Species.AROMATISSE, + Species.INKAY, Species.MALAMAR, Species.SYLVEON, Species.KLEFKI, @@ -55055,6 +55090,7 @@ export const tmSpecies: TmSpecies = { Species.NIDOQUEEN, Species.NIDOKING, Species.VILEPLUME, + Species.VENOMOTH, Species.DUGTRIO, Species.BELLSPROUT, Species.WEEPINBELL, @@ -55159,6 +55195,7 @@ export const tmSpecies: TmSpecies = { Species.MAGNEMITE, Species.MAGNETON, Species.ONIX, + Species.RHYHORN, Species.RHYDON, Species.SNORLAX, Species.MEW, @@ -55191,6 +55228,7 @@ export const tmSpecies: TmSpecies = { Species.TURTWIG, Species.GROTLE, Species.TORTERRA, + Species.RAMPARDOS, Species.SHIELDON, Species.BASTIODON, Species.BRONZOR, @@ -55206,6 +55244,8 @@ export const tmSpecies: TmSpecies = { Species.REGIGIGAS, Species.ARCEUS, Species.TEPIG, + Species.PIGNITE, + Species.EMBOAR, Species.ROGGENROLA, Species.BOLDORE, Species.GIGALITH, @@ -55216,6 +55256,7 @@ export const tmSpecies: TmSpecies = { Species.BEARTIC, Species.GOLETT, Species.GOLURK, + Species.COBALION, Species.CARBINK, Species.AVALUGG, Species.VOLCANION, @@ -55297,6 +55338,7 @@ export const tmSpecies: TmSpecies = { Species.FLAAFFY, Species.AMPHAROS, Species.ELEKID, + Species.RAIKOU, Species.ELECTRIKE, Species.MANECTRIC, Species.PLUSLE, @@ -55308,6 +55350,8 @@ export const tmSpecies: TmSpecies = { Species.MAGNEZONE, Species.ELECTIVIRE, Species.ROTOM, + Species.BLITZLE, + Species.ZEBSTRIKA, Species.EMOLGA, Species.JOLTIK, Species.GALVANTULA, @@ -55614,8 +55658,14 @@ export const tmSpecies: TmSpecies = { Species.HISUI_DECIDUEYE, ], [Moves.ACID_SPRAY]: [ + Species.BULBASAUR, + Species.IVYSAUR, + Species.VENUSAUR, Species.EKANS, Species.ARBOK, + Species.ODDISH, + Species.GLOOM, + Species.VILEPLUME, Species.VENONAT, Species.VENOMOTH, Species.BELLSPROUT, @@ -55630,13 +55680,17 @@ export const tmSpecies: TmSpecies = { Species.GENGAR, Species.KOFFING, Species.WEEZING, + Species.MAGMAR, Species.MEW, Species.SPINARAK, Species.ARIADOS, + Species.BELLOSSOM, Species.WOOPER, Species.QUAGSIRE, Species.QWILFISH, Species.REMORAID, + Species.OCTILLERY, + Species.MAGBY, Species.GULPIN, Species.SWALOT, Species.SEVIPER, @@ -55645,13 +55699,16 @@ export const tmSpecies: TmSpecies = { Species.CROAGUNK, Species.TOXICROAK, Species.CARNIVINE, + Species.MAGMORTAR, Species.ARCEUS, Species.SCRAGGY, + Species.SCRAFTY, Species.TRUBBISH, Species.GARBODOR, Species.KARRABLAST, Species.ESCAVALIER, Species.FERROSEED, + Species.FERROTHORN, Species.EELEKTRIK, Species.EELEKTROSS, Species.ACCELGOR, @@ -55667,6 +55724,7 @@ export const tmSpecies: TmSpecies = { Species.FLAPPLE, Species.TOXTRICITY, Species.SNEASLER, + Species.OVERQWIL, Species.ARMAROUGE, Species.TADBULB, Species.BELLIBOLT, @@ -59665,6 +59723,7 @@ export const tmSpecies: TmSpecies = { Species.NIDORINO, Species.NIDOKING, Species.RAPIDASH, + Species.DODRIO, Species.SEEL, Species.DEWGONG, Species.CLOYSTER, @@ -59679,6 +59738,7 @@ export const tmSpecies: TmSpecies = { Species.FORRETRESS, Species.DUNSPARCE, Species.STEELIX, + Species.SKARMORY, Species.DELIBIRD, Species.HITMONTOP, Species.BALTOY, @@ -60261,6 +60321,7 @@ export const tmSpecies: TmSpecies = { Species.CHIMECHO, Species.GOREBYSS, Species.LUVDISC, + Species.LATIAS, Species.CHERUBI, Species.CHERRIM, Species.MISMAGIUS, @@ -60531,6 +60592,7 @@ export const tmSpecies: TmSpecies = { Species.ARCANINE, Species.PONYTA, Species.RAPIDASH, + Species.DEWGONG, Species.MEW, Species.CYNDAQUIL, Species.QUILAVA, @@ -60561,6 +60623,8 @@ export const tmSpecies: TmSpecies = { Species.SKITTY, Species.DELCATTY, Species.MAWILE, + Species.PLUSLE, + Species.MINUN, Species.VOLBEAT, Species.ILLUMISE, Species.SWABLU, @@ -60582,6 +60646,7 @@ export const tmSpecies: TmSpecies = { Species.UXIE, Species.MESPRIT, Species.AZELF, + Species.SHAYMIN, Species.LILLIPUP, Species.HERDIER, Species.STOUTLAND, @@ -63878,6 +63943,8 @@ export const tmSpecies: TmSpecies = { Species.ALAKAZAM, Species.SLOWPOKE, Species.SLOWBRO, + Species.DROWZEE, + Species.HYPNO, Species.EXEGGUTOR, Species.STARMIE, Species.MR_MIME, @@ -63888,12 +63955,18 @@ export const tmSpecies: TmSpecies = { Species.XATU, Species.ESPEON, Species.SLOWKING, + Species.GIRAFARIG, Species.CELEBI, Species.RALTS, Species.KIRLIA, Species.GARDEVOIR, + Species.MEDITITE, + Species.MEDICHAM, + Species.SPOINK, + Species.GRUMPIG, Species.BALTOY, Species.CLAYDOL, + Species.CHIMECHO, Species.METANG, Species.METAGROSS, Species.JIRACHI, @@ -63920,11 +63993,14 @@ export const tmSpecies: TmSpecies = { Species.REUNICLUS, Species.ELGYEM, Species.BEHEEYEM, + Species.DELPHOX, Species.ESPURR, Species.MEOWSTIC, Species.INKAY, Species.MALAMAR, + Species.HOOPA, Species.ORANGURU, + Species.BRUXISH, Species.SOLGALEO, Species.LUNALA, Species.NECROZMA, @@ -63954,6 +64030,7 @@ export const tmSpecies: TmSpecies = { Species.GALAR_MR_MIME, Species.GALAR_ARTICUNO, Species.GALAR_SLOWKING, + Species.HISUI_BRAVIARY, ], [Moves.STEEL_ROLLER]: [ Species.SANDSHREW, @@ -66243,8 +66320,13 @@ export const tmSpecies: TmSpecies = { Species.BLOODMOON_URSALUNA, ], [Moves.ICE_SPINNER]: [ + Species.SQUIRTLE, + Species.WARTORTLE, + Species.BLASTOISE, Species.JIGGLYPUFF, Species.WIGGLYTUFF, + Species.SEEL, + Species.DEWGONG, Species.SHELLDER, Species.CLOYSTER, Species.ARTICUNO, @@ -66257,9 +66339,12 @@ export const tmSpecies: TmSpecies = { Species.DUNSPARCE, Species.DELIBIRD, Species.DONPHAN, + Species.HITMONTOP, Species.LUDICOLO, Species.SNORUNT, Species.GLALIE, + Species.REGICE, + Species.REGISTEEL, Species.PIPLUP, Species.PRINPLUP, Species.EMPOLEON, @@ -66271,10 +66356,14 @@ export const tmSpecies: TmSpecies = { Species.ABOMASNOW, Species.WEAVILE, Species.FROSLASS, + Species.CINCCINO, Species.CRYOGONAL, Species.MIENSHAO, Species.BERGMITE, Species.AVALUGG, + Species.POPPLIO, + Species.BRIONNE, + Species.PRIMARINA, Species.CRABOMINABLE, Species.MAREANIE, Species.TOXAPEX, @@ -66812,6 +66901,9 @@ export const tmSpecies: TmSpecies = { Species.BLOODMOON_URSALUNA, ], [Moves.CHILLING_WATER]: [ + Species.SQUIRTLE, + Species.WARTORTLE, + Species.BLASTOISE, Species.CLEFAIRY, Species.CLEFABLE, Species.JIGGLYPUFF, @@ -66823,12 +66915,19 @@ export const tmSpecies: TmSpecies = { Species.POLIWAG, Species.POLIWHIRL, Species.POLIWRATH, + Species.TENTACOOL, + Species.TENTACRUEL, Species.SLOWPOKE, Species.SLOWBRO, + Species.SEEL, + Species.DEWGONG, Species.SHELLDER, Species.CLOYSTER, Species.CHANSEY, + Species.HORSEA, + Species.SEADRA, Species.GYARADOS, + Species.LAPRAS, Species.VAPOREON, Species.SNORLAX, Species.DRATINI, @@ -66836,8 +66935,13 @@ export const tmSpecies: TmSpecies = { Species.DRAGONITE, Species.MEWTWO, Species.MEW, + Species.TOTODILE, + Species.CROCONAW, + Species.FERALIGATR, Species.SENTRET, Species.FURRET, + Species.CHINCHOU, + Species.LANTURN, Species.CLEFFA, Species.MARILL, Species.AZUMARILL, @@ -66849,7 +66953,13 @@ export const tmSpecies: TmSpecies = { Species.DUNSPARCE, Species.QWILFISH, Species.DELIBIRD, + Species.KINGDRA, Species.BLISSEY, + Species.SUICUNE, + Species.LUGIA, + Species.MUDKIP, + Species.MARSHTOMP, + Species.SWAMPERT, Species.LOTAD, Species.LOMBRE, Species.LUDICOLO, @@ -66875,6 +66985,8 @@ export const tmSpecies: TmSpecies = { Species.MILOTIC, Species.SNORUNT, Species.GLALIE, + Species.LATIAS, + Species.LATIOS, Species.KYOGRE, Species.PIPLUP, Species.PRINPLUP, @@ -66900,6 +67012,8 @@ export const tmSpecies: TmSpecies = { "", "origin", ], + Species.PHIONE, + Species.MANAPHY, Species.ARCEUS, Species.OSHAWOTT, Species.DEWOTT, @@ -66910,6 +67024,8 @@ export const tmSpecies: TmSpecies = { "blue-striped", "white-striped", ], + Species.MINCCINO, + Species.CINCCINO, Species.DUCKLETT, Species.SWANNA, Species.ALOMOMOLA, @@ -66917,6 +67033,7 @@ export const tmSpecies: TmSpecies = { Species.BEARTIC, Species.CRYOGONAL, Species.TORNADUS, + Species.KELDEO, Species.FROAKIE, Species.FROGADIER, [ @@ -66937,12 +67054,17 @@ export const tmSpecies: TmSpecies = { Species.GOODRA, Species.BERGMITE, Species.AVALUGG, + Species.POPPLIO, + Species.BRIONNE, + Species.PRIMARINA, Species.YUNGOOS, Species.GUMSHOOS, Species.CRABRAWLER, Species.CRABOMINABLE, Species.MAREANIE, Species.TOXAPEX, + Species.DEWPIDER, + Species.ARAQUANID, Species.ORANGURU, Species.PASSIMIAN, Species.SANDYGAST, diff --git a/src/data/trainer-config.ts b/src/data/trainer-config.ts index 2d54a79441d..a6cf4247f27 100644 --- a/src/data/trainer-config.ts +++ b/src/data/trainer-config.ts @@ -16,6 +16,7 @@ import {Moves} from "#enums/moves"; import {PartyMemberStrength} from "#enums/party-member-strength"; import {Species} from "#enums/species"; import {TrainerType} from "#enums/trainer-type"; +import {Gender} from "./gender"; export enum TrainerPoolTier { COMMON, @@ -142,7 +143,7 @@ export const trainerPartyTemplates = { FIVE_WEAK_BALANCED: new TrainerPartyTemplate(5, PartyMemberStrength.WEAK, false, true), SIX_WEAKER: new TrainerPartyTemplate(6, PartyMemberStrength.WEAKER), SIX_WEAKER_SAME: new TrainerPartyTemplate(6, PartyMemberStrength.WEAKER, true), - SIX_WEAK_SAME: new TrainerPartyTemplate(6, PartyMemberStrength.WEAKER, true), + SIX_WEAK_SAME: new TrainerPartyTemplate(6, PartyMemberStrength.WEAK, true), SIX_WEAK_BALANCED: new TrainerPartyTemplate(6, PartyMemberStrength.WEAK, false, true), GYM_LEADER_1: new TrainerPartyCompoundTemplate(new TrainerPartyTemplate(1, PartyMemberStrength.AVERAGE), new TrainerPartyTemplate(1, PartyMemberStrength.STRONG)), @@ -323,6 +324,15 @@ export class TrainerConfig { case TrainerType.LYSANDRE_2: trainerType = TrainerType.LYSANDRE; break; + case TrainerType.LUSAMINE_2: + trainerType = TrainerType.LUSAMINE; + break; + case TrainerType.GUZMA_2: + trainerType = TrainerType.GUZMA; + break; + case TrainerType.ROSE_2: + trainerType = TrainerType.ROSE; + break; case TrainerType.MARNIE_ELITE: trainerType = TrainerType.MARNIE; break; @@ -553,9 +563,9 @@ export class TrainerConfig { } case "magma": { return { - [TrainerPoolTier.COMMON]: [Species.NUMEL, Species.POOCHYENA, Species.SLUGMA, Species.SOLROCK, Species.HIPPOPOTAS, Species.SANDACONDA, Species.PHANPY, Species.SWINUB, Species.GLIGAR], + [TrainerPoolTier.COMMON]: [Species.NUMEL, Species.POOCHYENA, Species.SLUGMA, Species.SOLROCK, Species.HIPPOPOTAS, Species.SANDACONDA, Species.PHANPY, Species.ROLYCOLY, Species.GLIGAR], [TrainerPoolTier.UNCOMMON]: [Species.TRAPINCH, Species.HEATMOR], - [TrainerPoolTier.RARE]: [Species.TURTONATOR, Species.CHARCADET] + [TrainerPoolTier.RARE]: [Species.CAPSAKID, Species.CHARCADET] }; } case "aqua": { @@ -586,6 +596,27 @@ export class TrainerConfig { [TrainerPoolTier.RARE]: [Species.NOIVERN, Species.DRUDDIGON] }; } + case "aether": { + return { + [TrainerPoolTier.COMMON]: [ Species.BRUXISH, Species.SLOWPOKE, Species.BALTOY, Species.EXEGGCUTE, Species.ABRA, Species.ALOLA_RAICHU, Species.ELGYEM, Species.NATU], + [TrainerPoolTier.UNCOMMON]: [Species.GALAR_SLOWKING, Species.MEDITITE, Species.BELDUM, Species.ORANGURU, Species.HATTERENE, Species.INKAY, Species.RALTS], + [TrainerPoolTier.RARE]: [Species.ARMAROUGE, Species.GIRAFARIG, Species.PORYGON] + }; + } + case "skull": { + return { + [TrainerPoolTier.COMMON]: [ Species.MAREANIE, Species.ALOLA_GRIMER, Species.GASTLY, Species.ZUBAT, Species.LURANTIS, Species.VENIPEDE, Species.BUDEW, Species.KOFFING], + [TrainerPoolTier.UNCOMMON]: [Species.GALAR_SLOWBRO, Species.SKORUPI, Species.PALDEA_WOOPER, Species.NIDORAN_F, Species.CROAGUNK, Species.MANDIBUZZ], + [TrainerPoolTier.RARE]: [Species.DRAGALGE, Species.HISUI_SNEASEL] + }; + } + case "macro": { + return { + [TrainerPoolTier.COMMON]: [ Species.HATTERENE, Species.MILOTIC, Species.TSAREENA, Species.SALANDIT, Species.GALAR_PONYTA, Species.GOTHITA, Species.FROSLASS], + [TrainerPoolTier.UNCOMMON]: [Species.MANDIBUZZ, Species.MAREANIE, Species.ALOLA_VULPIX, Species.TOGEPI, Species.GALAR_CORSOLA, Species.SINISTEA, Species.APPLIN], + [TrainerPoolTier.RARE]: [Species.TINKATINK, Species.HISUI_LILLIGANT] + }; + } } console.warn(`Evil team admin for ${team} not found. Returning empty species pools.`); @@ -965,7 +996,7 @@ function getRandomPartyMemberFunc(speciesPool: Species[], trainerSlot: TrainerSl return (scene: BattleScene, level: integer, strength: PartyMemberStrength) => { let species = Utils.randSeedItem(speciesPool); if (!ignoreEvolution) { - species = getPokemonSpecies(species).getTrainerSpeciesForLevel(level, true, strength); + species = getPokemonSpecies(species).getTrainerSpeciesForLevel(level, true, strength, scene.currentBattle.waveIndex); } return scene.addEnemyPokemon(getPokemonSpecies(species), level, trainerSlot, undefined, undefined, postProcess); }; @@ -975,7 +1006,7 @@ function getSpeciesFilterRandomPartyMemberFunc(speciesFilter: PokemonSpeciesFilt const originalSpeciesFilter = speciesFilter; speciesFilter = (species: PokemonSpecies) => (allowLegendaries || (!species.legendary && !species.subLegendary && !species.mythical)) && !species.isTrainerForbidden() && originalSpeciesFilter(species); return (scene: BattleScene, level: integer, strength: PartyMemberStrength) => { - const ret = scene.addEnemyPokemon(getPokemonSpecies(scene.randomSpecies(scene.currentBattle.waveIndex, level, false, speciesFilter).getTrainerSpeciesForLevel(level, true, strength)), level, trainerSlot, undefined, undefined, postProcess); + const ret = scene.addEnemyPokemon(getPokemonSpecies(scene.randomSpecies(scene.currentBattle.waveIndex, level, false, speciesFilter).getTrainerSpeciesForLevel(level, true, strength, scene.currentBattle.waveIndex)), level, trainerSlot, undefined, undefined, postProcess); return ret; }; } @@ -1309,9 +1340,9 @@ export const trainerConfigs: TrainerConfigs = { [TrainerType.MAGMA_GRUNT]: new TrainerConfig(++t).setHasGenders("Magma Grunt Female").setHasDouble("Magma Grunts").setMoneyMultiplier(1.0).setEncounterBgm(TrainerType.PLASMA_GRUNT).setBattleBgm("battle_plasma_grunt").setMixedBattleBgm("battle_aqua_magma_grunt").setVictoryBgm("victory_team_plasma").setPartyTemplateFunc(scene => getEvilGruntPartyTemplate(scene)) .setSpeciesPools({ [TrainerPoolTier.COMMON]: [Species.SLUGMA, Species.POOCHYENA, Species.NUMEL, Species.ZIGZAGOON, Species.DIGLETT, Species.MAGBY, Species.TORKOAL, Species.BALTOY, Species.BARBOACH], - [TrainerPoolTier.UNCOMMON]: [Species.SOLROCK, Species.HIPPOPOTAS, Species.SANDACONDA, Species.PHANPY, Species.SWINUB, Species.GLIGAR], + [TrainerPoolTier.UNCOMMON]: [Species.SOLROCK, Species.HIPPOPOTAS, Species.SANDACONDA, Species.PHANPY, Species.ROLYCOLY, Species.GLIGAR], [TrainerPoolTier.RARE]: [Species.TRAPINCH, Species.HEATMOR], - [TrainerPoolTier.SUPER_RARE]: [Species.TURTONATOR, Species.CHARCADET] + [TrainerPoolTier.SUPER_RARE]: [Species.CAPSAKID, Species.CHARCADET] }), [TrainerType.TABITHA]: new TrainerConfig(++t).setMoneyMultiplier(1.5).initForEvilTeamAdmin("magma_admin", "magma", [Species.CAMERUPT]).setEncounterBgm(TrainerType.PLASMA_GRUNT).setBattleBgm("battle_plasma_grunt").setMixedBattleBgm("battle_aqua_magma_grunt").setVictoryBgm("victory_team_plasma").setPartyTemplateFunc(scene => getEvilGruntPartyTemplate(scene)), [TrainerType.COURTNEY]: new TrainerConfig(++t).setMoneyMultiplier(1.5).initForEvilTeamAdmin("magma_admin_female", "magma", [Species.CAMERUPT]).setEncounterBgm(TrainerType.PLASMA_GRUNT).setBattleBgm("battle_plasma_grunt").setMixedBattleBgm("battle_aqua_magma_grunt").setVictoryBgm("victory_team_plasma").setPartyTemplateFunc(scene => getEvilGruntPartyTemplate(scene)), @@ -1331,10 +1362,9 @@ export const trainerConfigs: TrainerConfigs = { [TrainerPoolTier.RARE]: [Species.HISUI_GROWLITHE, Species.HISUI_QWILFISH, Species.HISUI_SNEASEL], [TrainerPoolTier.SUPER_RARE]: [Species.HISUI_ZORUA, Species.HISUI_SLIGGOO] }), - - [TrainerType.JUPITER]: new TrainerConfig(++t).setMoneyMultiplier(1.5).initForEvilTeamAdmin("galactic_commander_female", "galactic", [Species.SKUNTANK]).setEncounterBgm(TrainerType.PLASMA_GRUNT).setBattleBgm("battle_plasma_grunt").setMixedBattleBgm("battle_galactic_grunt").setVictoryBgm("victory_team_plasma").setPartyTemplateFunc(scene => getEvilGruntPartyTemplate(scene)), - [TrainerType.MARS]: new TrainerConfig(++t).setMoneyMultiplier(1.5).initForEvilTeamAdmin("galactic_commander_female", "galactic", [Species.PURUGLY]).setEncounterBgm(TrainerType.PLASMA_GRUNT).setBattleBgm("battle_plasma_grunt").setMixedBattleBgm("battle_galactic_grunt").setVictoryBgm("victory_team_plasma").setPartyTemplateFunc(scene => getEvilGruntPartyTemplate(scene)), - [TrainerType.SATURN]: new TrainerConfig(++t).setMoneyMultiplier(1.5).initForEvilTeamAdmin("galactic_commander", "galactic", [Species.TOXICROAK]).setEncounterBgm(TrainerType.PLASMA_GRUNT).setBattleBgm("battle_plasma_grunt").setMixedBattleBgm("battle_galactic_grunt").setVictoryBgm("victory_team_plasma").setPartyTemplateFunc(scene => getEvilGruntPartyTemplate(scene)), + [TrainerType.JUPITER]: new TrainerConfig(++t).setMoneyMultiplier(1.5).initForEvilTeamAdmin("galactic_commander_female", "galactic", [Species.SKUNTANK]).setEncounterBgm(TrainerType.PLASMA_GRUNT).setBattleBgm("battle_plasma_grunt").setMixedBattleBgm("battle_galactic_admin").setVictoryBgm("victory_team_plasma").setPartyTemplateFunc(scene => getEvilGruntPartyTemplate(scene)), + [TrainerType.MARS]: new TrainerConfig(++t).setMoneyMultiplier(1.5).initForEvilTeamAdmin("galactic_commander_female", "galactic", [Species.PURUGLY]).setEncounterBgm(TrainerType.PLASMA_GRUNT).setBattleBgm("battle_plasma_grunt").setMixedBattleBgm("battle_galactic_admin").setVictoryBgm("victory_team_plasma").setPartyTemplateFunc(scene => getEvilGruntPartyTemplate(scene)), + [TrainerType.SATURN]: new TrainerConfig(++t).setMoneyMultiplier(1.5).initForEvilTeamAdmin("galactic_commander", "galactic", [Species.TOXICROAK]).setEncounterBgm(TrainerType.PLASMA_GRUNT).setBattleBgm("battle_plasma_grunt").setMixedBattleBgm("battle_galactic_admin").setVictoryBgm("victory_team_plasma").setPartyTemplateFunc(scene => getEvilGruntPartyTemplate(scene)), [TrainerType.PLASMA_GRUNT]: new TrainerConfig(++t).setHasGenders("Plasma Grunt Female").setHasDouble("Plasma Grunts").setMoneyMultiplier(1.0).setEncounterBgm(TrainerType.PLASMA_GRUNT).setBattleBgm("battle_plasma_grunt").setMixedBattleBgm("battle_plasma_grunt").setVictoryBgm("victory_team_plasma").setPartyTemplateFunc(scene => getEvilGruntPartyTemplate(scene)) .setSpeciesPools({ [TrainerPoolTier.COMMON]: [Species.PATRAT, Species.LILLIPUP, Species.PURRLOIN, Species.SCRAFTY, Species.WOOBAT, Species.VANILLITE, Species.SANDILE, Species.TRUBBISH], @@ -1344,7 +1374,6 @@ export const trainerConfigs: TrainerConfigs = { }), [TrainerType.ZINZOLIN]: new TrainerConfig(++t).setMoneyMultiplier(1.5).initForEvilTeamAdmin("plasma_sage", "plasma", [Species.CRYOGONAL]).setEncounterBgm(TrainerType.PLASMA_GRUNT).setBattleBgm("battle_plasma_grunt").setMixedBattleBgm("battle_plasma_grunt").setVictoryBgm("victory_team_plasma").setPartyTemplateFunc(scene => getEvilGruntPartyTemplate(scene)), [TrainerType.ROOD]: new TrainerConfig(++t).setMoneyMultiplier(1.5).initForEvilTeamAdmin("plasma_sage", "plasma", [Species.SWOOBAT]).setEncounterBgm(TrainerType.PLASMA_GRUNT).setBattleBgm("battle_plasma_grunt").setMixedBattleBgm("battle_plasma_grunt").setVictoryBgm("victory_team_plasma").setPartyTemplateFunc(scene => getEvilGruntPartyTemplate(scene)), - [TrainerType.FLARE_GRUNT]: new TrainerConfig(++t).setHasGenders("Flare Grunt Female").setHasDouble("Flare Grunts").setMoneyMultiplier(1.0).setEncounterBgm(TrainerType.PLASMA_GRUNT).setBattleBgm("battle_plasma_grunt").setMixedBattleBgm("battle_flare_grunt").setVictoryBgm("victory_team_plasma").setPartyTemplateFunc(scene => getEvilGruntPartyTemplate(scene)) .setSpeciesPools({ [TrainerPoolTier.COMMON]: [Species.FLETCHLING, Species.LITLEO, Species.PONYTA, Species.INKAY, Species.HOUNDOUR, Species.SKORUPI, Species.SCRAFTY, Species.CROAGUNK], @@ -1354,6 +1383,31 @@ export const trainerConfigs: TrainerConfigs = { }), [TrainerType.BRYONY]: new TrainerConfig(++t).setMoneyMultiplier(1.5).initForEvilTeamAdmin("flare_admin_female", "flare", [Species.LIEPARD]).setEncounterBgm(TrainerType.PLASMA_GRUNT).setBattleBgm("battle_plasma_grunt").setMixedBattleBgm("battle_flare_grunt").setVictoryBgm("victory_team_plasma").setPartyTemplateFunc(scene => getEvilGruntPartyTemplate(scene)), [TrainerType.XEROSIC]: new TrainerConfig(++t).setMoneyMultiplier(1.5).initForEvilTeamAdmin("flare_admin", "flare", [Species.MALAMAR]).setEncounterBgm(TrainerType.PLASMA_GRUNT).setBattleBgm("battle_plasma_grunt").setMixedBattleBgm("battle_flare_grunt").setVictoryBgm("victory_team_plasma").setPartyTemplateFunc(scene => getEvilGruntPartyTemplate(scene)), + [TrainerType.AETHER_GRUNT]: new TrainerConfig(++t).setHasGenders("Aether Grunt Female").setHasDouble("Aether Grunts").setMoneyMultiplier(1.0).setEncounterBgm(TrainerType.PLASMA_GRUNT).setBattleBgm("battle_plasma_grunt").setMixedBattleBgm("battle_aether_grunt").setVictoryBgm("victory_team_plasma").setPartyTemplateFunc(scene => getEvilGruntPartyTemplate(scene)) + .setSpeciesPools({ + [TrainerPoolTier.COMMON]: [ Species.PIKIPEK, Species.ROCKRUFF, Species.ALOLA_DIGLETT, Species.YUNGOOS, Species.CORSOLA, Species.ALOLA_GEODUDE, Species.BOUNSWEET, Species.LILLIPUP, Species.ALOLA_MAROWAK], + [TrainerPoolTier.UNCOMMON]: [ Species.POLIWAG, Species.STUFFUL, Species.ALOLA_EXEGGUTOR, Species.CRABRAWLER, Species.CUTIEFLY, Species.ALOLA_RAICHU, Species.ORICORIO, Species.MUDBRAY], + [TrainerPoolTier.RARE]: [ Species.ORANGURU, Species.PASSIMIAN, Species.GALAR_CORSOLA, Species.ALOLA_SANDSHREW, Species.ALOLA_VULPIX, Species.TURTONATOR, Species.DRAMPA], + [TrainerPoolTier.SUPER_RARE]: [Species.JANGMO_O, Species.PORYGON] + }), + [TrainerType.FABA]: new TrainerConfig(++t).setMoneyMultiplier(1.5).initForEvilTeamAdmin("aether_admin", "aether", [Species.HYPNO]).setEncounterBgm(TrainerType.PLASMA_GRUNT).setBattleBgm("battle_plasma_grunt").setMixedBattleBgm("battle_aether_grunt").setVictoryBgm("victory_team_plasma").setPartyTemplateFunc(scene => getEvilGruntPartyTemplate(scene)), + [TrainerType.SKULL_GRUNT]: new TrainerConfig(++t).setHasGenders("Skull Grunt Female").setHasDouble("Skull Grunts").setMoneyMultiplier(1.0).setEncounterBgm(TrainerType.PLASMA_GRUNT).setBattleBgm("battle_plasma_grunt").setMixedBattleBgm("battle_skull_grunt").setVictoryBgm("victory_team_plasma").setPartyTemplateFunc(scene => getEvilGruntPartyTemplate(scene)) + .setSpeciesPools({ + [TrainerPoolTier.COMMON]: [ Species.SALANDIT, Species.ALOLA_RATTATA, Species.ALOLA_MEOWTH, Species.SCRAGGY, Species.KOFFING, Species.ALOLA_GRIMER, Species.MAREANIE, Species.SPINARAK, Species.TRUBBISH], + [TrainerPoolTier.UNCOMMON]: [ Species.FOMANTIS, Species.SABLEYE, Species.SANDILE, Species.ALOLA_MAROWAK, Species.PANCHAM, Species.DROWZEE, Species.ZUBAT, Species.VENIPEDE, Species.VULLABY], + [TrainerPoolTier.RARE]: [Species.SANDYGAST, Species.PAWNIARD, Species.MIMIKYU, Species.DHELMISE, Species.GASTLY, Species.WISHIWASHI], + [TrainerPoolTier.SUPER_RARE]: [Species.GRUBBIN, Species.DEWPIDER] + }), + [TrainerType.PLUMERIA]: new TrainerConfig(++t).setMoneyMultiplier(1.5).initForEvilTeamAdmin("skull_admin", "skull", [Species.SALAZZLE]).setEncounterBgm(TrainerType.PLASMA_GRUNT).setBattleBgm("battle_plasma_grunt").setMixedBattleBgm("battle_skull_admin").setVictoryBgm("victory_team_plasma").setPartyTemplateFunc(scene => getEvilGruntPartyTemplate(scene)), + [TrainerType.MACRO_GRUNT]: new TrainerConfig(++t).setHasGenders("Macro Grunt Female").setHasDouble("Macro Grunts").setMoneyMultiplier(1.0).setEncounterBgm(TrainerType.PLASMA_GRUNT).setBattleBgm("battle_plasma_grunt").setMixedBattleBgm("battle_macro_grunt").setVictoryBgm("victory_team_plasma").setPartyTemplateFunc(scene => getEvilGruntPartyTemplate(scene)) + .setSpeciesPools({ + [TrainerPoolTier.COMMON]: [ Species.CUFANT, Species.GALAR_MEOWTH, Species.KLINK, Species.ROOKIDEE, Species.CRAMORANT, Species.GALAR_ZIGZAGOON, Species.SKWOVET, Species.STEELIX, Species.MAWILE, Species.FERROSEED], + [TrainerPoolTier.UNCOMMON]: [ Species.DRILBUR, Species.MAGNEMITE, Species.HATENNA, Species.ARROKUDA, Species.APPLIN, Species.GALAR_PONYTA, Species.GALAR_YAMASK, Species.SINISTEA, Species.RIOLU], + [TrainerPoolTier.RARE]: [Species.FALINKS, Species.BELDUM, Species.GALAR_FARFETCHD, Species.GALAR_MR_MIME, Species.HONEDGE, Species.SCIZOR, Species.GALAR_DARUMAKA], + [TrainerPoolTier.SUPER_RARE]: [Species.DURALUDON, Species.DREEPY] + }), + [TrainerType.OLEANA]: new TrainerConfig(++t).setMoneyMultiplier(1.5).initForEvilTeamAdmin("macro_admin", "macro", [Species.GARBODOR]).setEncounterBgm(TrainerType.PLASMA_GRUNT).setBattleBgm("battle_plasma_grunt").setMixedBattleBgm("battle_oleana").setVictoryBgm("victory_team_plasma").setPartyTemplateFunc(scene => getEvilGruntPartyTemplate(scene)), + [TrainerType.BROCK]: new TrainerConfig((t = TrainerType.BROCK)).initForGymLeader(signatureSpecies["BROCK"], true, Type.ROCK).setBattleBgm("battle_kanto_gym").setMixedBattleBgm("battle_kanto_gym"), [TrainerType.MISTY]: new TrainerConfig(++t).initForGymLeader(signatureSpecies["MISTY"], false, Type.WATER).setBattleBgm("battle_kanto_gym").setMixedBattleBgm("battle_kanto_gym"), [TrainerType.LT_SURGE]: new TrainerConfig(++t).initForGymLeader(signatureSpecies["LT_SURGE"], true, Type.ELECTRIC).setBattleBgm("battle_kanto_gym").setMixedBattleBgm("battle_kanto_gym"), @@ -1577,11 +1631,11 @@ export const trainerConfigs: TrainerConfigs = { })), [TrainerType.RIVAL]: new TrainerConfig((t = TrainerType.RIVAL)).setName("Finn").setHasGenders("Ivy").setHasCharSprite().setTitle("Rival").setStaticParty().setEncounterBgm(TrainerType.RIVAL).setBattleBgm("battle_rival").setMixedBattleBgm("battle_rival").setPartyTemplates(trainerPartyTemplates.RIVAL) - .setModifierRewardFuncs(() => modifierTypes.SUPER_EXP_CHARM, () => modifierTypes.EXP_SHARE, () => modifierTypes.SHINY_CHARM, () => modifierTypes.ABILITY_CHARM) + .setModifierRewardFuncs(() => modifierTypes.SUPER_EXP_CHARM, () => modifierTypes.EXP_SHARE) .setPartyMemberFunc(0, getRandomPartyMemberFunc([Species.BULBASAUR, Species.CHARMANDER, Species.SQUIRTLE, Species.CHIKORITA, Species.CYNDAQUIL, Species.TOTODILE, Species.TREECKO, Species.TORCHIC, Species.MUDKIP, Species.TURTWIG, Species.CHIMCHAR, Species.PIPLUP, Species.SNIVY, Species.TEPIG, Species.OSHAWOTT, Species.CHESPIN, Species.FENNEKIN, Species.FROAKIE, Species.ROWLET, Species.LITTEN, Species.POPPLIO, Species.GROOKEY, Species.SCORBUNNY, Species.SOBBLE, Species.SPRIGATITO, Species.FUECOCO, Species.QUAXLY], TrainerSlot.TRAINER, true)) .setPartyMemberFunc(1, getRandomPartyMemberFunc([Species.PIDGEY, Species.HOOTHOOT, Species.TAILLOW, Species.STARLY, Species.PIDOVE, Species.FLETCHLING, Species.PIKIPEK, Species.ROOKIDEE, Species.WATTREL], TrainerSlot.TRAINER, true)), [TrainerType.RIVAL_2]: new TrainerConfig(++t).setName("Finn").setHasGenders("Ivy").setHasCharSprite().setTitle("Rival").setStaticParty().setMoneyMultiplier(1.25).setEncounterBgm(TrainerType.RIVAL).setBattleBgm("battle_rival").setMixedBattleBgm("battle_rival").setPartyTemplates(trainerPartyTemplates.RIVAL_2) - .setModifierRewardFuncs(() => modifierTypes.EXP_SHARE, () => modifierTypes.SHINY_CHARM) + .setModifierRewardFuncs(() => modifierTypes.EXP_SHARE) .setPartyMemberFunc(0, getRandomPartyMemberFunc([Species.IVYSAUR, Species.CHARMELEON, Species.WARTORTLE, Species.BAYLEEF, Species.QUILAVA, Species.CROCONAW, Species.GROVYLE, Species.COMBUSKEN, Species.MARSHTOMP, Species.GROTLE, Species.MONFERNO, Species.PRINPLUP, Species.SERVINE, Species.PIGNITE, Species.DEWOTT, Species.QUILLADIN, Species.BRAIXEN, Species.FROGADIER, Species.DARTRIX, Species.TORRACAT, Species.BRIONNE, Species.THWACKEY, Species.RABOOT, Species.DRIZZILE, Species.FLORAGATO, Species.CROCALOR, Species.QUAXWELL], TrainerSlot.TRAINER, true)) .setPartyMemberFunc(1, getRandomPartyMemberFunc([Species.PIDGEOTTO, Species.HOOTHOOT, Species.TAILLOW, Species.STARAVIA, Species.TRANQUILL, Species.FLETCHINDER, Species.TRUMBEAK, Species.CORVISQUIRE, Species.WATTREL], TrainerSlot.TRAINER, true)) .setPartyMemberFunc(2, getSpeciesFilterRandomPartyMemberFunc((species: PokemonSpecies) => !pokemonEvolutions.hasOwnProperty(species.speciesId) && !pokemonPrevolutions.hasOwnProperty(species.speciesId) && species.baseTotal >= 450)), @@ -1730,7 +1784,7 @@ export const trainerConfigs: TrainerConfigs = { p.generateName(); })), [TrainerType.ARCHIE_2]: new TrainerConfig(++t).setName("Archie").initForEvilTeamLeader("Aqua Boss", [], true).setMixedBattleBgm("battle_aqua_magma_boss").setVictoryBgm("victory_team_plasma") - .setPartyMemberFunc(0, getRandomPartyMemberFunc([Species.KINGDRA, Species.LUDICOLO], TrainerSlot.TRAINER, true, p => { + .setPartyMemberFunc(0, getRandomPartyMemberFunc([Species.EMPOLEON, Species.LUDICOLO], TrainerSlot.TRAINER, true, p => { p.setBoss(true, 2); p.generateAndPopulateMoveset(); p.pokeball = PokeballType.ULTRA_BALL; @@ -1743,9 +1797,9 @@ export const trainerConfigs: TrainerConfigs = { p.generateAndPopulateMoveset(); p.abilityIndex = 2; // Swift Swim })) - .setPartyMemberFunc(3, getRandomPartyMemberFunc([Species.HUNTAIL, Species.GOREBYSS], TrainerSlot.TRAINER, true, p => { + .setPartyMemberFunc(3, getRandomPartyMemberFunc([ Species.OVERQWIL ], TrainerSlot.TRAINER, true, p => { p.generateAndPopulateMoveset(); - p.abilityIndex = 0; // Swift Swim + p.abilityIndex = 1; // Swift Swim })) .setPartyMemberFunc(4, getRandomPartyMemberFunc([Species.SHARPEDO], TrainerSlot.TRAINER, true, p => { p.setBoss(true, 2); @@ -1760,11 +1814,11 @@ export const trainerConfigs: TrainerConfigs = { p.pokeball = PokeballType.MASTER_BALL; })), [TrainerType.CYRUS]: new TrainerConfig(++t).setName("Cyrus").initForEvilTeamLeader("Galactic Boss", []).setMixedBattleBgm("battle_galactic_boss").setVictoryBgm("victory_team_plasma") - .setPartyMemberFunc(0, getRandomPartyMemberFunc([Species.GYARADOS, Species.BASCULEGION])) - .setPartyMemberFunc(1, getRandomPartyMemberFunc([Species.HONCHKROW, Species.HISUI_BRAVIARY])) - .setPartyMemberFunc(2, getRandomPartyMemberFunc([Species.CROBAT, Species.OVERQWIL])) - .setPartyMemberFunc(3, getRandomPartyMemberFunc([Species.AZELF, Species.UXIE, Species.MESPRIT])) - .setPartyMemberFunc(4, getRandomPartyMemberFunc([Species.HOUNDOOM], TrainerSlot.TRAINER, true, p => { + .setPartyMemberFunc(0, getRandomPartyMemberFunc([ Species.GYARADOS ])) + .setPartyMemberFunc(1, getRandomPartyMemberFunc([ Species.HONCHKROW, Species.HISUI_BRAVIARY ])) + .setPartyMemberFunc(2, getRandomPartyMemberFunc([ Species.CROBAT, Species.GLISCOR ])) + .setPartyMemberFunc(3, getRandomPartyMemberFunc([ Species.AZELF, Species.UXIE, Species.MESPRIT ])) + .setPartyMemberFunc(4, getRandomPartyMemberFunc([ Species.HOUNDOOM ], TrainerSlot.TRAINER, true, p => { p.generateAndPopulateMoveset(); p.pokeball = PokeballType.ULTRA_BALL; p.formIndex = 1; @@ -1810,15 +1864,20 @@ export const trainerConfigs: TrainerConfigs = { p.pokeball = PokeballType.ULTRA_BALL; })), [TrainerType.GHETSIS_2]: new TrainerConfig(++t).setName("Ghetsis").initForEvilTeamLeader("Plasma Boss", [], true).setMixedBattleBgm("battle_plasma_boss").setVictoryBgm("victory_team_plasma") - .setPartyMemberFunc(0, getRandomPartyMemberFunc([Species.SLITHER_WING, Species.IRON_MOTH], TrainerSlot.TRAINER, true, p => { + .setPartyMemberFunc(0, getRandomPartyMemberFunc([ Species.GENESECT ], TrainerSlot.TRAINER, true, p => { p.setBoss(true, 2); p.generateAndPopulateMoveset(); - p.pokeball = PokeballType.ULTRA_BALL; + p.pokeball = PokeballType.MASTER_BALL; + p.formIndex = Utils.randSeedInt(5); })) - .setPartyMemberFunc(1, getRandomPartyMemberFunc([Species.DURANT])) - .setPartyMemberFunc(2, getRandomPartyMemberFunc([Species.DARMANITAN, Species.GALAR_DARMANITAN])) - .setPartyMemberFunc(3, getRandomPartyMemberFunc([Species.KINGAMBIT])) - .setPartyMemberFunc(4, getRandomPartyMemberFunc([Species.HYDREIGON, Species.IRON_JUGULIS], TrainerSlot.TRAINER, true, p => { + .setPartyMemberFunc(1, getRandomPartyMemberFunc([ Species.BASCULEGION, Species.JELLICENT ], TrainerSlot.TRAINER, true, p => { + p.generateAndPopulateMoveset(); + p.gender = Gender.MALE; + p.formIndex = 1; + })) + .setPartyMemberFunc(2, getRandomPartyMemberFunc([ Species.KINGAMBIT ])) + .setPartyMemberFunc(3, getRandomPartyMemberFunc([ Species.VOLCARONA, Species.SLITHER_WING ])) + .setPartyMemberFunc(4, getRandomPartyMemberFunc([ Species.HYDREIGON, Species.IRON_JUGULIS ], TrainerSlot.TRAINER, true, p => { p.setBoss(true, 2); p.generateAndPopulateMoveset(); p.pokeball = PokeballType.ULTRA_BALL; @@ -1829,12 +1888,15 @@ export const trainerConfigs: TrainerConfigs = { p.pokeball = PokeballType.MASTER_BALL; })), [TrainerType.LYSANDRE]: new TrainerConfig(++t).setName("Lysandre").initForEvilTeamLeader("Flare Boss", []).setMixedBattleBgm("battle_flare_boss").setVictoryBgm("victory_team_plasma") - .setPartyMemberFunc(0, getRandomPartyMemberFunc([Species.MIENSHAO])) - .setPartyMemberFunc(1, getRandomPartyMemberFunc([Species.HONCHKROW, Species.TALONFLAME])) - .setPartyMemberFunc(2, getRandomPartyMemberFunc([Species.PYROAR])) - .setPartyMemberFunc(3, getRandomPartyMemberFunc([Species.MILOTIC])) - .setPartyMemberFunc(4, getRandomPartyMemberFunc([Species.HELIOLISK])) - .setPartyMemberFunc(5, getRandomPartyMemberFunc([Species.GYARADOS], TrainerSlot.TRAINER, true, p => { + .setPartyMemberFunc(0, getRandomPartyMemberFunc([ Species.MIENSHAO ])) + .setPartyMemberFunc(1, getRandomPartyMemberFunc([ Species.HONCHKROW, Species.TALONFLAME ])) + .setPartyMemberFunc(2, getRandomPartyMemberFunc([ Species.PYROAR ], TrainerSlot.TRAINER, true, p => { + p.generateAndPopulateMoveset(); + p.gender = Gender.MALE; + })) + .setPartyMemberFunc(3, getRandomPartyMemberFunc([ Species.CLAWITZER, Species.DRAGALGE ])) + .setPartyMemberFunc(4, getRandomPartyMemberFunc([ Species.HELIOLISK, Species.MALAMAR ])) + .setPartyMemberFunc(5, getRandomPartyMemberFunc([ Species.GYARADOS ], TrainerSlot.TRAINER, true, p => { p.setBoss(true, 2); p.generateAndPopulateMoveset(); p.pokeball = PokeballType.ULTRA_BALL; @@ -1847,10 +1909,13 @@ export const trainerConfigs: TrainerConfigs = { p.generateAndPopulateMoveset(); p.pokeball = PokeballType.ULTRA_BALL; })) - .setPartyMemberFunc(1, getRandomPartyMemberFunc([Species.GHOLDENGO, Species.AEGISLASH])) - .setPartyMemberFunc(2, getRandomPartyMemberFunc([Species.PYROAR])) - .setPartyMemberFunc(3, getRandomPartyMemberFunc([Species.GOODRA, Species.HISUI_GOODRA])) - .setPartyMemberFunc(4, getRandomPartyMemberFunc([Species.GYARADOS], TrainerSlot.TRAINER, true, p => { + .setPartyMemberFunc(1, getRandomPartyMemberFunc([ Species.PYROAR ], TrainerSlot.TRAINER, true, p => { + p.generateAndPopulateMoveset(); + p.gender = Gender.MALE; + })) + .setPartyMemberFunc(2, getRandomPartyMemberFunc([ Species.IRON_MOTH ])) + .setPartyMemberFunc(3, getRandomPartyMemberFunc([ Species.GOODRA, Species.HISUI_GOODRA ])) + .setPartyMemberFunc(4, getRandomPartyMemberFunc([ Species.GYARADOS ], TrainerSlot.TRAINER, true, p => { p.setBoss(true, 2); p.generateAndPopulateMoveset(); p.pokeball = PokeballType.ULTRA_BALL; @@ -1862,4 +1927,111 @@ export const trainerConfigs: TrainerConfigs = { p.generateAndPopulateMoveset(); p.pokeball = PokeballType.MASTER_BALL; })), + [TrainerType.LUSAMINE]: new TrainerConfig(++t).setName("Lusamine").initForEvilTeamLeader("Aether Boss", []).setMixedBattleBgm("battle_aether_boss").setVictoryBgm("victory_team_plasma") + .setPartyMemberFunc(0, getRandomPartyMemberFunc([ Species.CLEFABLE ])) + .setPartyMemberFunc(1, getRandomPartyMemberFunc([ Species.LILLIGANT, Species.HISUI_LILLIGANT ])) + .setPartyMemberFunc(2, getRandomPartyMemberFunc([ Species.MILOTIC, Species.PRIMARINA ])) + .setPartyMemberFunc(3, getRandomPartyMemberFunc([ Species.GALAR_SLOWBRO, Species.GALAR_SLOWKING ])) + .setPartyMemberFunc(4, getRandomPartyMemberFunc([ Species.BEWEAR ])) + .setPartyMemberFunc(5, getRandomPartyMemberFunc([ Species.NIHILEGO ], TrainerSlot.TRAINER, true, p => { + p.setBoss(true, 2); + p.generateAndPopulateMoveset(); + })), + [TrainerType.LUSAMINE_2]: new TrainerConfig(++t).setName("Lusamine").initForEvilTeamLeader("Aether Boss", [], true).setMixedBattleBgm("battle_aether_boss").setVictoryBgm("victory_team_plasma") + .setPartyMemberFunc(0, getRandomPartyMemberFunc([ Species.CLEFABLE ], TrainerSlot.TRAINER, true, p => { + p.setBoss(true, 2); + p.generateAndPopulateMoveset(); + })) + .setPartyMemberFunc(1, getRandomPartyMemberFunc([ Species.MILOTIC, Species.PRIMARINA ])) + .setPartyMemberFunc(2, getRandomPartyMemberFunc([ Species.PHEROMOSA ], TrainerSlot.TRAINER, true, p => { + p.generateAndPopulateMoveset(); + p.pokeball = PokeballType.MASTER_BALL; + })) + .setPartyMemberFunc(3, getRandomPartyMemberFunc([ Species.STAKATAKA, Species.CELESTEELA, Species.GUZZLORD ], TrainerSlot.TRAINER, true, p => { + p.generateAndPopulateMoveset(); + p.pokeball = PokeballType.MASTER_BALL; + })) + .setPartyMemberFunc(4, getRandomPartyMemberFunc([ Species.NIHILEGO ], TrainerSlot.TRAINER, true, p => { + p.setBoss(true, 2); + p.generateAndPopulateMoveset(); + p.pokeball = PokeballType.MASTER_BALL; + })) + .setPartyMemberFunc(5, getRandomPartyMemberFunc([ Species.NECROZMA ], TrainerSlot.TRAINER, true, p => { + p.setBoss(true, 2); + p.generateAndPopulateMoveset(); + p.pokeball = PokeballType.MASTER_BALL; + })), + [TrainerType.GUZMA]: new TrainerConfig(++t).setName("Guzma").initForEvilTeamLeader("Skull Boss", []).setMixedBattleBgm("battle_skull_boss").setVictoryBgm("victory_team_plasma") + .setPartyMemberFunc(0, getRandomPartyMemberFunc([ Species.LOKIX, Species.YANMEGA ])) + .setPartyMemberFunc(1, getRandomPartyMemberFunc([ Species.HERACROSS ])) + .setPartyMemberFunc(2, getRandomPartyMemberFunc([ Species.SCIZOR, Species.KLEAVOR ])) + .setPartyMemberFunc(3, getRandomPartyMemberFunc([ Species.GALVANTULA, Species.VIKAVOLT])) + .setPartyMemberFunc(4, getRandomPartyMemberFunc([ Species.PINSIR ], TrainerSlot.TRAINER, true, p => { + p.generateAndPopulateMoveset(); + p.formIndex = 1; + p.generateName(); + })) + .setPartyMemberFunc(5, getRandomPartyMemberFunc([ Species.GOLISOPOD ], TrainerSlot.TRAINER, true, p => { + p.setBoss(true, 2); + p.generateAndPopulateMoveset(); + })), + [TrainerType.GUZMA_2]: new TrainerConfig(++t).setName("Guzma").initForEvilTeamLeader("Skull Boss", [], true).setMixedBattleBgm("battle_skull_boss").setVictoryBgm("victory_team_plasma") + .setPartyMemberFunc(0, getRandomPartyMemberFunc([ Species.GOLISOPOD ], TrainerSlot.TRAINER, true, p => { + p.setBoss(true, 2); + p.generateAndPopulateMoveset(); + p.abilityIndex = 2; //Anticipation + })) + .setPartyMemberFunc(1, getRandomPartyMemberFunc([ Species.HISUI_SAMUROTT, Species.CRAWDAUNT ], TrainerSlot.TRAINER, true, p => { + p.abilityIndex = 2; //Sharpness, Adaptability + })) + .setPartyMemberFunc(2, getRandomPartyMemberFunc([ Species.SCIZOR, Species.KLEAVOR ])) + .setPartyMemberFunc(3, getRandomPartyMemberFunc([ Species.PINSIR ], TrainerSlot.TRAINER, true, p => { + p.generateAndPopulateMoveset(); + p.formIndex = 1; + p.generateName(); + })) + .setPartyMemberFunc(4, getRandomPartyMemberFunc([ Species.BUZZWOLE ], TrainerSlot.TRAINER, true, p => { + p.setBoss(true, 2); + p.generateAndPopulateMoveset(); + p.pokeball = PokeballType.MASTER_BALL; + })) + .setPartyMemberFunc(5, getRandomPartyMemberFunc([ Species.XURKITREE ], TrainerSlot.TRAINER, true, p => { + p.setBoss(true, 2); + p.generateAndPopulateMoveset(); + p.pokeball = PokeballType.MASTER_BALL; + })), + [TrainerType.ROSE]: new TrainerConfig(++t).setName("Rose").initForEvilTeamLeader("Macro Boss", []).setMixedBattleBgm("battle_macro_boss").setVictoryBgm("victory_team_plasma") + .setPartyMemberFunc(0, getRandomPartyMemberFunc([ Species.ARCHALUDON ])) + .setPartyMemberFunc(1, getRandomPartyMemberFunc([ Species.FERROTHORN, Species.ESCAVALIER ])) + .setPartyMemberFunc(2, getRandomPartyMemberFunc([ Species.SIRFETCHD, Species.MR_RIME ])) + .setPartyMemberFunc(3, getRandomPartyMemberFunc([ Species.CORVIKNIGHT ])) + .setPartyMemberFunc(4, getRandomPartyMemberFunc([ Species.PERRSERKER, Species.KLINKLANG ])) + .setPartyMemberFunc(5, getRandomPartyMemberFunc([ Species.COPPERAJAH ], TrainerSlot.TRAINER, true, p => { + p.setBoss(true, 2); + p.generateAndPopulateMoveset(); + p.formIndex = 1; + p.generateName(); + })), + [TrainerType.ROSE_2]: new TrainerConfig(++t).setName("Rose").initForEvilTeamLeader("Macro Boss", [], true).setMixedBattleBgm("battle_macro_boss").setVictoryBgm("victory_team_plasma") + .setPartyMemberFunc(0, getRandomPartyMemberFunc([ Species.ARCHALUDON ], TrainerSlot.TRAINER, true, p => { + p.setBoss(true, 2); + p.generateAndPopulateMoveset(); + })) + .setPartyMemberFunc(1, getRandomPartyMemberFunc([ Species.AEGISLASH, Species.GHOLDENGO ])) + .setPartyMemberFunc(2, getRandomPartyMemberFunc([ Species.DRACOVISH, Species.DRACOZOLT ], TrainerSlot.TRAINER, true, p => { + p.generateAndPopulateMoveset(); + p.abilityIndex = 1; //Strong Jaw, Hustle + })) + .setPartyMemberFunc(3, getRandomPartyMemberFunc([ Species.MELMETAL ])) + .setPartyMemberFunc(4, getRandomPartyMemberFunc([ Species.GALAR_ARTICUNO, Species.GALAR_ZAPDOS, Species.GALAR_MOLTRES ], TrainerSlot.TRAINER, true, p => { + p.setBoss(true, 2); + p.generateAndPopulateMoveset(); + p.pokeball = PokeballType.MASTER_BALL; + })) + .setPartyMemberFunc(5, getRandomPartyMemberFunc([ Species.COPPERAJAH ], TrainerSlot.TRAINER, true, p => { + p.setBoss(true, 2); + p.generateAndPopulateMoveset(); + p.formIndex = 1; + p.generateName(); + })), }; diff --git a/src/data/trainer-names.ts b/src/data/trainer-names.ts index 447f9fd4284..899702ff193 100644 --- a/src/data/trainer-names.ts +++ b/src/data/trainer-names.ts @@ -75,56 +75,56 @@ const trainerNameConfigs: TrainerNameConfigs = { }; export const trainerNamePools = { - [TrainerType.ACE_TRAINER]: [["Aaron","Allen","Blake","Brian","Gaven","Jake","Kevin","Mike","Nick","Paul","Ryan","Sean","Darin","Albert","Berke","Clyde","Edgar","George","Leroy","Owen","Parker","Randall","Ruben","Samuel","Vincent","Warren","Wilton","Zane","Alfred","Braxton","Felix","Gerald","Jonathan","Leonel","Marcel","Mitchell","Quincy","Roderick","Colby","Rolando","Yuji","Abel","Anton","Arthur","Cesar","Dalton","Dennis","Ernest","Garrett","Graham","Henry","Isaiah","Jonah","Jose","Keenan","Micah","Omar","Quinn","Rodolfo","Saul","Sergio","Skylar","Stefan","Zachery","Alton","Arabella","Bonita","Cal","Cody","French","Kobe","Paulo","Shaye","Austin","Beckett","Charlie","Corky","David","Dwayne","Elmer","Jesse","Jared","Johan","Jordan","Kipp","Lou","Terry","Tom","Webster","Billy","Doyle","Enzio","Geoff","Grant","Kelsey","Miguel","Pierce","Ray","Santino","Shel","Adelbert","Bence","Emil","Evan","Mathis","Maxim","Neil","Rico","Robbie","Theo","Viktor","Benedict","Cornelius","Hisato","Leopold","Neville","Vito","Chase","Cole","Hiroshi","Jackson","Jim","Kekoa","Makana","Yuki","Elwood","Seth","Alvin","Arjun","Arnold","Cameron","Carl","Carlton","Christopher","Dave","Dax","Dominic","Edmund","Finn","Fred","Garret","Grayson","Jace","Jaxson","Jay","Jirard","Johnson","Kayden","Kite","Louis","Mac","Marty","Percy","Raymond","Ronnie","Satch","Tim","Zach","Conner","Vince","Bedro","Boda","Botan","Daras","Dury","Herton","Rewn","Stum","Tock","Trilo","Berki","Cruik","Dazon","Desid","Dillot","Farfin","Forgon","Hebel","Morfon","Moril","Shadd","Vanhub","Bardo","Carben","Degin","Gorps","Klept","Lask","Malex","Mopar","Niled","Noxon","Teslor","Tetil"],["Beth","Carol","Cybil","Emma","Fran","Gwen","Irene","Jenn","Joyce","Kate","Kelly","Lois","Lola","Megan","Quinn","Reena","Cara","Alexa","Brooke","Caroline","Elaine","Hope","Jennifer","Jody","Julie","Lori","Mary","Michelle","Shannon","Wendy","Alexia","Alicia","Athena","Carolina","Cristin","Darcy","Dianne","Halle","Jazmyn","Katelynn","Keira","Marley","Allyson","Kathleen","Naomi","Alyssa","Ariana","Brandi","Breanna","Brenda","Brenna","Catherine","Clarice","Dana","Deanna","Destiny","Jamie","Jasmin","Kassandra","Laura","Maria","Mariah","Maya","Meagan","Mikayla","Monique","Natasha","Olivia","Sandra","Savannah","Sydney","Moira","Piper","Salma","Allison","Beverly","Cathy","Cheyenne","Clara","Dara","Eileen","Glinda","Junko","Lena","Lucille","Mariana","Olwen","Shanta","Stella","Angi","Belle","Chandra","Cora","Eve","Jacqueline","Jeanne","Juliet","Kathrine","Layla","Lucca","Melina","Miki","Nina","Sable","Shelly","Summer","Trish","Vicki","Alanza","Cordelia","Hilde","Imelda","Michele","Mireille","Claudia","Constance","Harriet","Honor","Melba","Portia","Alexis","Angela","Karla","Lindsey","Tori","Sheri","Jada","Kailee","Amanda","Annie","Kindra","Kyla","Sofia","Yvette","Becky","Flora","Gloria","Buna","Ferda","Lehan","Liqui","Lomen","Neira","Atilo","Detta","Gilly","Gosney","Levens","Moden","Rask","Rateis","Rosno","Tynan","Veron","Zoel","Cida","Dibsin","Dodin","Ebson","Equin","Flostin","Gabsen","Halsion","Hileon","Quelor","Rapeel","Roze","Tensin"]], - [TrainerType.ARTIST]: [["Ismael","William","Horton","Pierre","Zach","Gough","Salvador","Vincent","Duncan"],["Georgia"]], - [TrainerType.BACKERS]: [["Alf & Fred","Hawk & Dar","Joe & Ross","Les & Web","Masa & Yas","Stu & Art"],["Ai & Ciel","Ami & Eira","Cam & Abby","Fey & Sue","Kat & Phae","Kay & Ali","Ava & Aya","Cleo & Rio","May & Mal"]], - [TrainerType.BACKPACKER]: [["Alexander","Carlos","Herman","Jerome","Keane","Kelsey","Kiyo","Michael","Nate","Peter","Sam","Stephen","Talon","Terrance","Toru","Waylon","Boone","Clifford","Ivan","Kendall","Lowell","Randall","Reece","Roland","Shane","Walt","Farid","Heike","Joren","Lane","Roderick","Darnell","Deon","Emory","Graeme","Grayson","Aitor","Alex","Arturo","Asier","Jaime","Jonathan","Julio","Kevin","Kosuke","Lander","Markel","Mateo","Nil","Pau","Samuel"],["Anna","Corin","Elaine","Emi","Jill","Kumiko","Liz","Lois","Lora","Molly","Patty","Ruth","Vicki","Annie","Blossom","Clara","Eileen","Mae","Myra","Rachel","Tami","Ashley","Mikiko","Kiana","Perdy","Maria","Yuho","Peren","Barbara","Diane"]], - [TrainerType.BAKER]: ["Chris","Jenn","Lilly"], - [TrainerType.BEAUTY]: ["Cassie","Julia","Olivia","Samantha","Valerie","Victoria","Bridget","Connie","Jessica","Johanna","Melissa","Sheila","Shirley","Tiffany","Namiko","Thalia","Grace","Lola","Lori","Maura","Tamia","Cyndy","Devon","Gabriella","Harley","Lindsay","Nicola","Callie","Charlotte","Kassandra","December","Fleming","Nikola","Aimee","Anais","Brigitte","Cassandra","Andrea","Brittney","Carolyn","Krystal","Alexis","Alice","Aina","Anya","Arianna","Aubrey","Beverly","Camille","Beauty","Evette","Hansol","Haruka","Jill","Jo","Lana","Lois","Lucy","Mai","Nickie","Nicole","Prita","Rose","Shelly","Suzy","Tessa","Anita","Alissa","Rita","Cudsy","Eloff","Miru","Minot","Nevah","Niven","Ogoin"], - [TrainerType.BIKER]: ["Charles","Dwayne","Glenn","Harris","Joel","Riley","Zeke","Alex","Billy","Ernest","Gerald","Hideo","Isaac","Jared","Jaren","Jaxon","Jordy","Lao","Lukas","Malik","Nikolas","Ricardo","Ruben","Virgil","William","Aiden","Dale","Dan","Jacob","Markey","Reese","Teddy","Theron","Jeremy","Morgann","Phillip","Philip","Stanley","Dillon"], - [TrainerType.BLACK_BELT]: [["Kenji","Lao","Lung","Nob","Wai","Yoshi","Atsushi","Daisuke","Hideki","Hitoshi","Kiyo","Koichi","Koji","Yuji","Cristian","Rhett","Takao","Theodore","Zander","Aaron","Hugh","Mike","Nicolas","Shea","Takashi","Adam","Carl","Colby","Darren","David","Davon","Derek","Eddie","Gregory","Griffin","Jarrett","Jeffery","Kendal","Kyle","Luke","Miles","Nathaniel","Philip","Rafael","Ray","Ricky","Sean","Willie","Ander","Manford","Benjamin","Corey","Edward","Grant","Jay","Kendrew","Kentaro","Ryder","Teppei","Thomas","Tyrone","Andrey","Donny","Drago","Gordon","Grigor","Jeriel","Kenneth","Martell","Mathis","Rich","Rocky","Rodrigo","Wesley","Zachery","Alonzo","Cadoc","Gunnar","Igor","Killian","Markus","Ricardo","Yanis","Banting","Clayton","Duane","Earl","Greg","Roy","Terry","Tracy","Walter","Alvaro","Curtis","Francis","Ross","Brice","Cheng","Dudley","Eric","Kano","Masahiro","Randy","Ryuji","Steve","Tadashi","Wong","Yuen","Brian","Carter","Reece","Nick","Yang"],["Cora","Cyndy","Jill","Laura","Sadie","Tessa","Vivian","Aisha","Callie","Danielle","Helene","Jocelyn","Lilith","Paula","Reyna","Helen","Kelsey","Tyler","Amy","Chandra","Hillary","Janie","Lee","Maggie","Mikiko","Miriam","Sharon","Susie","Xiao","Alize","Azra","Brenda","Chalina","Chan","Glinda","Maki","Tia","Tiffany","Wendy","Andrea","Gabrielle","Gerardine","Hailey","Hedvig","Justine","Kinsey","Sigrid","Veronique","Tess"]], - [TrainerType.BREEDER]: [["Isaac","Myles","Salvadore","Albert","Kahlil","Eustace","Galen","Owen","Addison","Marcus","Foster","Cory","Glenn","Jay","Wesley","William","Adrian","Bradley","Jaime"],["Allison","Alize","Bethany","Lily","Lydia","Gabrielle","Jayden","Pat","Veronica","Amber","Jennifer","Kaylee","Adelaide","Brooke","Ethel","April","Irene","Magnolia","Amala","Mercy","Amanda","Ikue","Savannah","Yuka","Chloe","Debra","Denise","Elena"]], - [TrainerType.CLERK]: [["Chaz","Clemens","Doug","Fredric","Ivan","Isaac","Nelson","Wade","Warren","Augustin","Gilligan","Cody","Jeremy","Shane","Dugal","Royce","Ronald"],["Alberta","Ingrid","Katie","Piper","Trisha","Wren","Britney","Lana","Jessica","Kristen","Michelle","Gabrielle"]], - [TrainerType.CYCLIST]: [["Axel","James","John","Ryan","Hector","Jeremiah"],["Kayla","Megan","Nicole","Rachel","Krissa","Adelaide"]], - [TrainerType.DANCER]: ["Brian","Davey","Dirk","Edmond","Mickey","Raymond","Cara","Julia","Maika","Mireille","Ronda","Zoe"], - [TrainerType.DEPOT_AGENT]: ["Josh","Hank","Vincent"], - [TrainerType.DOCTOR]: [["Hank","Jerry","Jules","Logan","Wayne","Braid","Derek","Heath","Julius","Kit","Graham"],["Kirsten","Sachiko","Shery","Carol","Dixie","Mariah"]], - [TrainerType.FIREBREATHER]: ["Bill","Burt","Cliff","Dick","Lyle","Ned","Otis","Ray","Richard","Walt"], - [TrainerType.FISHERMAN]: ["Andre","Arnold","Barney","Chris","Edgar","Henry","Jonah","Justin","Kyle","Martin","Marvin","Ralph","Raymond","Scott","Stephen","Wilton","Tully","Andrew","Barny","Carter","Claude","Dale","Elliot","Eugene","Ivan","Ned","Nolan","Roger","Ronald","Wade","Wayne","Darian","Kai","Chip","Hank","Kaden","Tommy","Tylor","Alec","Brett","Cameron","Cody","Cole","Cory","Erick","George","Joseph","Juan","Kenneth","Luc","Miguel","Travis","Walter","Zachary","Josh","Gideon","Kyler","Liam","Murphy","Bruce","Damon","Devon","Hubert","Jones","Lydon","Mick","Pete","Sean","Sid","Vince","Bucky","Dean","Eustace","Kenzo","Leroy","Mack","Ryder","Ewan","Finn","Murray","Seward","Shad","Wharton","Finley","Fisher","Fisk","River","Sheaffer","Timin","Carl","Ernest","Hal","Herbert","Hisato","Mike","Vernon","Harriet","Marina","Chase"], - [TrainerType.GUITARIST]: ["Anna","Beverly","January","Tina","Alicia","Claudia","Julia","Lidia","Mireia","Noelia","Sara","Sheila","Tatiana"], - [TrainerType.HARLEQUIN]: ["Charley","Ian","Jack","Kerry","Louis","Pat","Paul","Rick","Anders","Clarence","Gary"], - [TrainerType.HIKER]: ["Anthony","Bailey","Benjamin","Daniel","Erik","Jim","Kenny","Leonard","Michael","Parry","Phillip","Russell","Sidney","Tim","Timothy","Alan","Brice","Clark","Eric","Lenny","Lucas","Mike","Trent","Devan","Eli","Marc","Sawyer","Allen","Daryl","Dudley","Earl","Franklin","Jeremy","Marcos","Nob","Oliver","Wayne","Alexander","Damon","Jonathan","Justin","Kevin","Lorenzo","Louis","Maurice","Nicholas","Reginald","Robert","Theodore","Bruce","Clarke","Devin","Dwight","Edwin","Eoin","Noland","Russel","Andy","Bret","Darrell","Gene","Hardy","Hugh","Jebediah","Jeremiah","Kit","Neil","Terrell","Don","Doug","Hunter","Jared","Jerome","Keith","Manuel","Markus","Otto","Shelby","Stephen","Teppei","Tobias","Wade","Zaiem","Aaron","Alain","Bergin","Bernard","Brent","Corwin","Craig","Delmon","Dunstan","Orestes","Ross","Davian","Calhoun","David","Gabriel","Ryan","Thomas","Travis","Zachary","Anuhea","Barnaby","Claus","Collin","Colson","Dexter","Dillan","Eugine","Farkas","Hisato","Julius","Kenji","Irwin","Lionel","Paul","Richter","Valentino","Donald","Douglas","Kevyn","Chester"], //["Angela","Carla","Celia","Daniela","Estela","Fatima","Helena","Leire","Lucia","Luna","Manuela","Mar","Marina","Miyu","Nancy","Nerea","Paula","Rocio","Yanira"] - [TrainerType.HOOLIGANS]: ["Jim & Cas","Rob & Sal"], - [TrainerType.HOOPSTER]: ["Bobby","John","Lamarcus","Derrick","Nicolas"], - [TrainerType.INFIELDER]: ["Alex","Connor","Todd"], - [TrainerType.JANITOR]: ["Caleb","Geoff","Brady","Felix","Orville","Melvin","Shawn"], - [TrainerType.LINEBACKER]: ["Bob","Dan","Jonah"], - [TrainerType.MAID]: ["Belinda","Sophie","Emily","Elena","Clare","Alica","Tanya","Tammy"], - [TrainerType.MUSICIAN]: ["Boris","Preston","Charles","Clyde","Vincent","Dalton","Kirk","Shawn","Fabian","Fernando","Joseph","Marcos","Arturo","Jerry","Lonnie","Tony"], - [TrainerType.NURSERY_AIDE]: ["Autumn","Briana","Leah","Miho","Ethel","Hollie","Ilse","June","Kimya","Rosalyn"], - [TrainerType.OFFICER]: ["Dirk","Keith","Alex","Bobby","Caleb","Danny","Dylan","Thomas","Daniel","Jeff","Braven","Dell","Neagle","Haruki","Mitchell","Raymond"], - [TrainerType.PARASOL_LADY]: ["Angelica","Clarissa","Madeline","Akari","Annabell","Kayley","Rachel","Alexa","Sabrina","April","Gwyneth","Laura","Lumi","Mariah","Melita","Nicole","Tihana","Ingrid","Tyra"], - [TrainerType.PILOT]: ["Chase","Leonard","Ted","Elron","Ewing","Flynn","Winslow"], - [TrainerType.POKEFAN]: [["Alex","Allan","Brandon","Carter","Colin","Derek","Jeremy","Joshua","Rex","Robert","Trevor","William","Colton","Miguel","Francisco","Kaleb","Leonard","Boone","Elliot","Jude","Norbert","Corey","Gabe","Baxter"],["Beverly","Georgia","Jaime","Ruth","Isabel","Marissa","Vanessa","Annika","Bethany","Kimberly","Meredith","Rebekah","Eleanor","Darcy","Lydia","Sachiko","Abigail","Agnes","Lydie","Roisin","Tara","Carmen","Janet"]], - [TrainerType.PRESCHOOLER]: [["Billy","Doyle","Evan","Homer","Tully","Albert","Buster","Greg","Ike","Jojo","Tyrone","Adrian","Oliver","Hayden","Hunter","Kaleb","Liam","Dylan"],["Juliet","Mia","Sarah","Wendy","Winter","Chrissy","Eva","Lin","Samantha","Ella","Lily","Natalie","Ailey","Hannah","Malia","Kindra","Nancy"]], - [TrainerType.PSYCHIC]: [["Fidel","Franklin","Gilbert","Greg","Herman","Jared","Mark","Nathan","Norman","Phil","Richard","Rodney","Cameron","Edward","Fritz","Joshua","Preston","Virgil","William","Alvaro","Blake","Cedric","Keenan","Nicholas","Dario","Johan","Lorenzo","Tyron","Bryce","Corbin","Deandre","Elijah","Kody","Landon","Maxwell","Mitchell","Sterling","Eli","Nelson","Vernon","Gaven","Gerard","Low","Micki","Perry","Rudolf","Tommy","Al","Nandor","Tully","Arthur","Emanuel","Franz","Harry","Paschal","Robert","Sayid","Angelo","Anton","Arin","Avery","Danny","Frasier","Harrison","Jaime","Ross","Rui","Vlad","Mason"],["Alexis","Hannah","Jacki","Jaclyn","Kayla","Maura","Samantha","Alix","Brandi","Edie","Macey","Mariella","Marlene","Laura","Rodette","Abigail","Brittney","Chelsey","Daisy","Desiree","Kendra","Lindsey","Rachael","Valencia","Belle","Cybil","Doreen","Dua","Future","Lin","Madhu","Alia","Ena","Joyce","Lynette","Olesia","Sarah"]], - [TrainerType.RANGER]: [["Carlos","Jackson","Sebastian","Gav","Lorenzo","Logan","Nicolas","Trenton","Deshawn","Dwayne","Jeffery","Kyler","Taylor","Alain","Claude","Crofton","Forrest","Harry","Jaden","Keith","Lewis","Miguel","Pedro","Ralph","Richard","Bret","Daryl","Eddie","Johan","Leaf","Louis","Maxwell","Parker","Rick","Steve","Bjorn","Chaise","Dean","Lee","Maurice","Nash","Ralf","Reed","Shinobu","Silas"],["Catherine","Jenna","Sophia","Merdith","Nora","Beth","Chelsea","Katelyn","Madeline","Allison","Ashlee","Felicia","Krista","Annie","Audra","Brenda","Chloris","Eliza","Heidi","Irene","Mary","Mylene","Shanti","Shelly","Thalia","Anja","Briana","Dianna","Elaine","Elle","Hillary","Katie","Lena","Lois","Malory","Melita","Mikiko","Naoko","Serenity","Ambre","Brooke","Clementine","Melina","Petra","Twiggy"]], - [TrainerType.RICH]: [["Alfred","Edward","Gregory","Preston","Thomas","Tucker","Walter","Clifford","Everett","Micah","Nate","Pierre","Terrance","Arthur","Brooks","Emanuel","Lamar","Jeremy","Leonardo","Milton","Frederic","Renaud","Robert","Yan","Daniel","Sheldon","Stonewall","Gerald","Ronald","Smith","Stanley","Reginald","Orson","Wilco","Caden","Glenn"],["Rebecca","Reina","Cassandra","Emilia","Grace","Marian","Elizabeth","Kathleen","Sayuri","Caroline","Judy"]], - [TrainerType.RICH_KID]: [["Garret","Winston","Dawson","Enrique","Jason","Roman","Trey","Liam","Anthony","Brad","Cody","Manuel","Martin","Pierce","Rolan","Keenan","Filbert","Antoin","Cyus","Diek","Dugo","Flitz","Jurek","Lond","Perd","Quint","Basto","Benit","Brot","Denc","Guyit","Marcon","Perc","Puros","Roex","Sainz","Symin","Tark","Venak"],["Anette","Brianna","Cindy","Colleen","Daphne","Elizabeth","Naomi","Sarah","Charlotte","Gillian","Jacki","Lady","Melissa","Celeste","Colette","Elizandra","Isabel","Lynette","Magnolia","Sophie","Lina","Dulcie","Auro","Brin","Caril","Eloos","Gwin","Illa","Kowly","Rima","Ristin","Vesey","Brena","Deasy","Denslon","Kylet","Nemi","Rene","Sanol","Stouner","Sturk","Talmen","Zoila"]], - [TrainerType.ROUGHNECK]: ["Camron","Corey","Gabriel","Isaiah","Jamal","Koji","Luke","Paxton","Raul","Zeek","Kirby","Chance","Dave","Fletcher","Johnny","Reese","Joey","Ricky","Silvester","Martin"], - [TrainerType.SAILOR]: ["Alberto","Bost","Brennan","Brenden","Claude","Cory","Damian","Dirk","Duncan","Dwayne","Dylan","Eddie","Edmond","Elijah","Ernest","Eugene","Garrett","Golos","Gratin","Grestly","Harry","Hols","Hudson","Huey","Jebol","Jeff","Leonald","Luther","Kelvin","Kenneth","Kent","Knook","Marc","Mifis","Monar","Morkor","Ordes","Oxlin","Parker","Paul","Philip","Roberto","Samson","Skyler","Stanly","Tebu","Terrell","Trevor","Yasu","Zachariah"], - [TrainerType.SCIENTIST]: [["Jed","Marc","Mitch","Rich","Ross","Beau","Braydon","Connor","Ed","Ivan","Jerry","Jose","Joshua","Parker","Rodney","Taylor","Ted","Travis","Zackery","Darrius","Emilio","Fredrick","Shaun","Stefano","Travon","Daniel","Garett","Gregg","Linden","Lowell","Trenton","Dudley","Luke","Markus","Nathan","Orville","Randall","Ron","Ronald","Simon","Steve","William","Franklin","Clarke","Jacques","Terrance","Ernst","Justus","Ikaika","Jayson","Kyle","Reid","Tyrone","Adam","Albert","Alphonse","Cory","Donnie","Elton","Francis","Gordon","Herbert","Humphrey","Jordan","Julian","Keaton","Levi","Melvin","Murray","West","Craig","Coren","Dubik","Kotan","Lethco","Mante","Mort","Myron","Odlow","Ribek","Roeck","Vogi","Vonder","Zogo","Doimo","Doton","Durel","Hildon","Kukla","Messa","Nanot","Platen","Raburn","Reman","Acrod","Coffy","Elrok","Foss","Hardig","Hombol","Hospel","Kaller","Klots","Krilok","Limar","Loket","Mesak","Morbit","Newin","Orill","Tabor","Tekot"],["Blythe","Chan","Kathrine","Marie","Maria","Naoko","Samantha","Satomi","Shannon","Athena","Caroline","Lumi","Lumina","Marissa","Sonia"]], - [TrainerType.SMASHER]: ["Aspen","Elena","Mari","Amy","Lizzy"], - [TrainerType.SNOW_WORKER]: [["Braden","Brendon","Colin","Conrad","Dillan","Gary","Gerardo","Holden","Jackson","Mason","Quentin","Willy","Noel","Arnold","Brady","Brand","Cairn","Cliff","Don","Eddie","Felix","Filipe","Glenn","Gus","Heath","Matthew","Patton","Rich","Rob","Ryan","Scott","Shelby","Sterling","Tyler","Victor","Zack","Friedrich","Herman","Isaac","Leo","Maynard","Mitchell","Morgann","Nathan","Niel","Pasqual","Paul","Tavarius","Tibor","Dimitri","Narek","Yusif","Frank","Jeff","Vaclav","Ovid","Francis","Keith","Russel","Sangon","Toway","Bomber","Chean","Demit","Hubor","Kebile","Laber","Ordo","Retay","Ronix","Wagel","Dobit","Kaster","Lobel","Releo","Saken","Rustix"],["Georgia","Sandra","Yvonne"]], - [TrainerType.STRIKER]: ["Marco","Roberto","Tony"], - [TrainerType.SCHOOL_KID]: [["Alan","Billy","Chad","Danny","Dudley","Jack","Joe","Johnny","Kipp","Nate","Ricky","Tommy","Jerry","Paul","Ted","Chance","Esteban","Forrest","Harrison","Connor","Sherman","Torin","Travis","Al","Carter","Edgar","Jem","Sammy","Shane","Shayne","Alvin","Keston","Neil","Seymour","William","Carson","Clark","Nolan"],["Georgia","Karen","Meiko","Christine","Mackenzie","Tiera","Ann","Gina","Lydia","Marsha","Millie","Sally","Serena","Silvia","Alberta","Cassie","Mara","Rita","Georgie","Meena","Nitzel"]], - [TrainerType.SWIMMER]: [["Berke","Cameron","Charlie","George","Harold","Jerome","Kirk","Mathew","Parker","Randall","Seth","Simon","Tucker","Austin","Barry","Chad","Cody","Darrin","David","Dean","Douglas","Franklin","Gilbert","Herman","Jack","Luis","Matthew","Reed","Richard","Rodney","Roland","Spencer","Stan","Tony","Clarence","Declan","Dominik","Harrison","Kevin","Leonardo","Nolen","Pete","Santiago","Axle","Braden","Finn","Garrett","Mymo","Reece","Samir","Toby","Adrian","Colton","Dillon","Erik","Evan","Francisco","Glenn","Kurt","Oscar","Ricardo","Sam","Sheltin","Troy","Vincent","Wade","Wesley","Duane","Elmo","Esteban","Frankie","Ronald","Tyson","Bart","Matt","Tim","Wright","Jeffery","Kyle","Alessandro","Estaban","Kieran","Ramses","Casey","Dakota","Jared","Kalani","Keoni","Lawrence","Logan","Robert","Roddy","Yasu","Derek","Jacob","Bruce","Clayton"],["Briana","Dawn","Denise","Diana","Elaine","Kara","Kaylee","Lori","Nicole","Nikki","Paula","Susie","Wendy","Alice","Beth","Beverly","Brenda","Dana","Debra","Grace","Jenny","Katie","Laurel","Linda","Missy","Sharon","Tanya","Tara","Tisha","Carlee","Imani","Isabelle","Kyla","Sienna","Abigail","Amara","Anya","Connie","Maria","Melissa","Nora","Shirley","Shania","Tiffany","Aubree","Cassandra","Claire","Crystal","Erica","Gabrielle","Haley","Jessica","Joanna","Lydia","Mallory","Mary","Miranda","Paige","Sophia","Vanessa","Chelan","Debbie","Joy","Kendra","Leona","Mina","Caroline","Joyce","Larissa","Rebecca","Tyra","Dara","Desiree","Kaoru","Ruth","Coral","Genevieve","Isla","Marissa","Romy","Sheryl","Alexandria","Alicia","Chelsea","Jade","Kelsie","Laura","Portia","Shelby","Sara","Tiare","Kyra","Natasha","Layla","Scarlett","Cora"]], - [TrainerType.TWINS]: ["Amy & May","Jo & Zoe","Meg & Peg","Ann & Anne","Lea & Pia","Amy & Liv","Gina & Mia","Miu & Yuki","Tori & Tia","Eli & Anne","Jen & Kira","Joy & Meg","Kiri & Jan","Miu & Mia","Emma & Lil","Liv & Liz","Teri & Tia","Amy & Mimi","Clea & Gil","Day & Dani","Kay & Tia","Tori & Til","Saya & Aya","Emy & Lin","Kumi & Amy","Mayo & May","Ally & Amy","Lia & Lily","Rae & Ula","Sola & Ana","Tara & Val","Faith & Joy","Nana & Nina"], - [TrainerType.VETERAN]: [["Armando","Brenden","Brian","Clayton","Edgar","Emanuel","Grant","Harlan","Terrell","Arlen","Chester","Hugo","Martell","Ray","Shaun","Abraham","Carter","Claude","Jerry","Lucius","Murphy","Rayne","Ron","Sinan","Sterling","Vincent","Zach","Gerard","Gilles","Louis","Timeo","Akira","Don","Eric","Harry","Leon","Roger","Angus","Aristo","Brone","Johnny"],["Julia","Karla","Kim","Sayuri","Tiffany","Cathy","Cecile","Chloris","Denae","Gina","Maya","Oriana","Portia","Rhona","Rosaline","Catrina","Inga","Trisha","Heather","Lynn","Sheri","Alonsa","Ella","Leticia","Kiara"]], - [TrainerType.WAITER]: [["Bert","Clint","Maxwell","Lou"],["Kati","Aurora","Bonita","Flo","Tia","Jan","Olwen","Paget","Paula","Talia"]], - [TrainerType.WORKER]: [["Braden","Brendon","Colin","Conrad","Dillan","Gary","Gerardo","Holden","Jackson","Mason","Quentin","Willy","Noel","Arnold","Brady","Brand","Cairn","Cliff","Don","Eddie","Felix","Filipe","Glenn","Gus","Heath","Matthew","Patton","Rich","Rob","Ryan","Scott","Shelby","Sterling","Tyler","Victor","Zack","Friedrich","Herman","Isaac","Leo","Maynard","Mitchell","Morgann","Nathan","Niel","Pasqual","Paul","Tavarius","Tibor","Dimitri","Narek","Yusif","Frank","Jeff","Vaclav","Ovid","Francis","Keith","Russel","Sangon","Toway","Bomber","Chean","Demit","Hubor","Kebile","Laber","Ordo","Retay","Ronix","Wagel","Dobit","Kaster","Lobel","Releo","Saken","Rustix"],["Georgia","Sandra","Yvonne"]], - [TrainerType.YOUNGSTER]: [["Albert","Gordon","Ian","Jason","Jimmy","Mikey","Owen","Samuel","Warren","Allen","Ben","Billy","Calvin","Dillion","Eddie","Joey","Josh","Neal","Timmy","Tommy","Breyden","Deandre","Demetrius","Dillon","Jaylen","Johnson","Shigenobu","Chad","Cole","Cordell","Dan","Dave","Destin","Nash","Tyler","Yasu","Austin","Dallas","Darius","Donny","Jonathon","Logan","Michael","Oliver","Sebastian","Tristan","Wayne","Norman","Roland","Regis","Abe","Astor","Keita","Kenneth","Kevin","Kyle","Lester","Masao","Nicholas","Parker","Wes","Zachary","Cody","Henley","Jaye","Karl","Kenny","Masahiro","Pedro","Petey","Sinclair","Terrell","Waylon","Aidan","Anthony","David","Jacob","Jayden","Cutler","Ham","Caleb","Kai","Honus","Kenway","Bret","Chris","Cid","Dennis","Easton","Ken","Robby","Ronny","Shawn","Benjamin","Jake","Travis","Adan","Aday","Beltran","Elian","Hernan","Julen","Luka","Roi","Bernie","Dustin","Jonathan","Wyatt"],["Alice","Bridget","Carrie","Connie","Dana","Ellen","Krise","Laura","Linda","Michelle","Shannon","Andrea","Crissy","Janice","Robin","Sally","Tiana","Haley","Ali","Ann","Dalia","Dawn","Iris","Joana","Julia","Kay","Lisa","Megan","Mikaela","Miriam","Paige","Reli","Blythe","Briana","Caroline","Cassidy","Kaitlin","Madeline","Molly","Natalie","Samantha","Sarah","Cathy","Dye","Eri","Eva","Fey","Kara","Lurleen","Maki","Mali","Maya","Miki","Sibyl","Daya","Diana","Flo","Helia","Henrietta","Isabel","Mai","Persephone","Serena","Anna","Charlotte","Elin","Elsa","Lise","Sara","Suzette","Audrey","Emmy","Isabella","Madison","Rika","Rylee","Salla","Ellie","Alexandra","Amy","Lass","Brittany","Chel","Cindy","Dianne","Emily","Emma","Evelyn","Hana","Harleen","Hazel","Jocelyn","Katrina","Kimberly","Lina","Marge","Mila","Mizuki","Rena","Sal","Satoko","Summer","Tomoe","Vicky","Yue","Yumi","Lauren","Rei","Riley","Lois","Nancy","Tammy","Terry"]], - [TrainerType.HEX_MANIAC]: ["Kindra","Patricia","Tammy","Tasha","Valerie","Alaina","Kathleen","Leah","Makie","Sylvia","Anina","Arachna","Carrie","Desdemona","Josette","Luna","Melanie","Osanna","Raziah"], + [TrainerType.ACE_TRAINER]: [["Aaron", "Allen", "Blake", "Brian", "Gaven", "Jake", "Kevin", "Mike", "Nick", "Paul", "Ryan", "Sean", "Darin", "Albert", "Berke", "Clyde", "Edgar", "George", "Leroy", "Owen", "Parker", "Randall", "Ruben", "Samuel", "Vincent", "Warren", "Wilton", "Zane", "Alfred", "Braxton", "Felix", "Gerald", "Jonathan", "Leonel", "Marcel", "Mitchell", "Quincy", "Roderick", "Colby", "Rolando", "Yuji", "Abel", "Anton", "Arthur", "Cesar", "Dalton", "Dennis", "Ernest", "Garrett", "Graham", "Henry", "Isaiah", "Jonah", "Jose", "Keenan", "Micah", "Omar", "Quinn", "Rodolfo", "Saul", "Sergio", "Skylar", "Stefan", "Zachery", "Alton", "Arabella", "Bonita", "Cal", "Cody", "French", "Kobe", "Paulo", "Shaye", "Austin", "Beckett", "Charlie", "Corky", "David", "Dwayne", "Elmer", "Jesse", "Jared", "Johan", "Jordan", "Kipp", "Lou", "Terry", "Tom", "Webster", "Billy", "Doyle", "Enzio", "Geoff", "Grant", "Kelsey", "Miguel", "Pierce", "Ray", "Santino", "Shel", "Adelbert", "Bence", "Emil", "Evan", "Mathis", "Maxim", "Neil", "Rico", "Robbie", "Theo", "Viktor", "Benedict", "Cornelius", "Hisato", "Leopold", "Neville", "Vito", "Chase", "Cole", "Hiroshi", "Jackson", "Jim", "Kekoa", "Makana", "Yuki", "Elwood", "Seth", "Alvin", "Arjun", "Arnold", "Cameron", "Carl", "Carlton", "Christopher", "Dave", "Dax", "Dominic", "Edmund", "Finn", "Fred", "Garret", "Grayson", "Jace", "Jaxson", "Jay", "Jirard", "Johnson", "Kayden", "Kite", "Louis", "Mac", "Marty", "Percy", "Raymond", "Ronnie", "Satch", "Tim", "Zach", "Conner", "Vince", "Bedro", "Boda", "Botan", "Daras", "Dury", "Herton", "Rewn", "Stum", "Tock", "Trilo", "Berki", "Cruik", "Dazon", "Desid", "Dillot", "Farfin", "Forgon", "Hebel", "Morfon", "Moril", "Shadd", "Vanhub", "Bardo", "Carben", "Degin", "Gorps", "Klept", "Lask", "Malex", "Mopar", "Niled", "Noxon", "Teslor", "Tetil"], ["Beth", "Carol", "Cybil", "Emma", "Fran", "Gwen", "Irene", "Jenn", "Joyce", "Kate", "Kelly", "Lois", "Lola", "Megan", "Quinn", "Reena", "Cara", "Alexa", "Brooke", "Caroline", "Elaine", "Hope", "Jennifer", "Jody", "Julie", "Lori", "Mary", "Michelle", "Shannon", "Wendy", "Alexia", "Alicia", "Athena", "Carolina", "Cristin", "Darcy", "Dianne", "Halle", "Jazmyn", "Katelynn", "Keira", "Marley", "Allyson", "Kathleen", "Naomi", "Alyssa", "Ariana", "Brandi", "Breanna", "Brenda", "Brenna", "Catherine", "Clarice", "Dana", "Deanna", "Destiny", "Jamie", "Jasmin", "Kassandra", "Laura", "Maria", "Mariah", "Maya", "Meagan", "Mikayla", "Monique", "Natasha", "Olivia", "Sandra", "Savannah", "Sydney", "Moira", "Piper", "Salma", "Allison", "Beverly", "Cathy", "Cheyenne", "Clara", "Dara", "Eileen", "Glinda", "Junko", "Lena", "Lucille", "Mariana", "Olwen", "Shanta", "Stella", "Angi", "Belle", "Chandra", "Cora", "Eve", "Jacqueline", "Jeanne", "Juliet", "Kathrine", "Layla", "Lucca", "Melina", "Miki", "Nina", "Sable", "Shelly", "Summer", "Trish", "Vicki", "Alanza", "Cordelia", "Hilde", "Imelda", "Michele", "Mireille", "Claudia", "Constance", "Harriet", "Honor", "Melba", "Portia", "Alexis", "Angela", "Karla", "Lindsey", "Tori", "Sheri", "Jada", "Kailee", "Amanda", "Annie", "Kindra", "Kyla", "Sofia", "Yvette", "Becky", "Flora", "Gloria", "Buna", "Ferda", "Lehan", "Liqui", "Lomen", "Neira", "Atilo", "Detta", "Gilly", "Gosney", "Levens", "Moden", "Rask", "Rateis", "Rosno", "Tynan", "Veron", "Zoel", "Cida", "Dibsin", "Dodin", "Ebson", "Equin", "Flostin", "Gabsen", "Halsion", "Hileon", "Quelor", "Rapeel", "Roze", "Tensin"]], + [TrainerType.ARTIST]: [["Ismael", "William", "Horton", "Pierre", "Zach", "Gough", "Salvador", "Vincent", "Duncan"], ["Georgia"]], + [TrainerType.BACKERS]: [["Alf & Fred", "Hawk & Dar", "Joe & Ross", "Les & Web", "Masa & Yas", "Stu & Art"], ["Ai & Ciel", "Ami & Eira", "Cam & Abby", "Fey & Sue", "Kat & Phae", "Kay & Ali", "Ava & Aya", "Cleo & Rio", "May & Mal"]], + [TrainerType.BACKPACKER]: [["Alexander", "Carlos", "Herman", "Jerome", "Keane", "Kelsey", "Kiyo", "Michael", "Nate", "Peter", "Sam", "Stephen", "Talon", "Terrance", "Toru", "Waylon", "Boone", "Clifford", "Ivan", "Kendall", "Lowell", "Randall", "Reece", "Roland", "Shane", "Walt", "Farid", "Heike", "Joren", "Lane", "Roderick", "Darnell", "Deon", "Emory", "Graeme", "Grayson", "Aitor", "Alex", "Arturo", "Asier", "Jaime", "Jonathan", "Julio", "Kevin", "Kosuke", "Lander", "Markel", "Mateo", "Nil", "Pau", "Samuel"], ["Anna", "Corin", "Elaine", "Emi", "Jill", "Kumiko", "Liz", "Lois", "Lora", "Molly", "Patty", "Ruth", "Vicki", "Annie", "Blossom", "Clara", "Eileen", "Mae", "Myra", "Rachel", "Tami", "Ashley", "Mikiko", "Kiana", "Perdy", "Maria", "Yuho", "Peren", "Barbara", "Diane"]], + [TrainerType.BAKER]: ["Chris", "Jenn", "Lilly"], + [TrainerType.BEAUTY]: ["Cassie", "Julia", "Olivia", "Samantha", "Valerie", "Victoria", "Bridget", "Connie", "Jessica", "Johanna", "Melissa", "Sheila", "Shirley", "Tiffany", "Namiko", "Thalia", "Grace", "Lola", "Lori", "Maura", "Tamia", "Cyndy", "Devon", "Gabriella", "Harley", "Lindsay", "Nicola", "Callie", "Charlotte", "Kassandra", "December", "Fleming", "Nikola", "Aimee", "Anais", "Brigitte", "Cassandra", "Andrea", "Brittney", "Carolyn", "Krystal", "Alexis", "Alice", "Aina", "Anya", "Arianna", "Aubrey", "Beverly", "Camille", "Beauty", "Evette", "Hansol", "Haruka", "Jill", "Jo", "Lana", "Lois", "Lucy", "Mai", "Nickie", "Nicole", "Prita", "Rose", "Shelly", "Suzy", "Tessa", "Anita", "Alissa", "Rita", "Cudsy", "Eloff", "Miru", "Minot", "Nevah", "Niven", "Ogoin"], + [TrainerType.BIKER]: ["Charles", "Dwayne", "Glenn", "Harris", "Joel", "Riley", "Zeke", "Alex", "Billy", "Ernest", "Gerald", "Hideo", "Isaac", "Jared", "Jaren", "Jaxon", "Jordy", "Lao", "Lukas", "Malik", "Nikolas", "Ricardo", "Ruben", "Virgil", "William", "Aiden", "Dale", "Dan", "Jacob", "Markey", "Reese", "Teddy", "Theron", "Jeremy", "Morgann", "Phillip", "Philip", "Stanley", "Dillon"], + [TrainerType.BLACK_BELT]: [["Kenji", "Lao", "Lung", "Nob", "Wai", "Yoshi", "Atsushi", "Daisuke", "Hideki", "Hitoshi", "Kiyo", "Koichi", "Koji", "Yuji", "Cristian", "Rhett", "Takao", "Theodore", "Zander", "Aaron", "Hugh", "Mike", "Nicolas", "Shea", "Takashi", "Adam", "Carl", "Colby", "Darren", "David", "Davon", "Derek", "Eddie", "Gregory", "Griffin", "Jarrett", "Jeffery", "Kendal", "Kyle", "Luke", "Miles", "Nathaniel", "Philip", "Rafael", "Ray", "Ricky", "Sean", "Willie", "Ander", "Manford", "Benjamin", "Corey", "Edward", "Grant", "Jay", "Kendrew", "Kentaro", "Ryder", "Teppei", "Thomas", "Tyrone", "Andrey", "Donny", "Drago", "Gordon", "Grigor", "Jeriel", "Kenneth", "Martell", "Mathis", "Rich", "Rocky", "Rodrigo", "Wesley", "Zachery", "Alonzo", "Cadoc", "Gunnar", "Igor", "Killian", "Markus", "Ricardo", "Yanis", "Banting", "Clayton", "Duane", "Earl", "Greg", "Roy", "Terry", "Tracy", "Walter", "Alvaro", "Curtis", "Francis", "Ross", "Brice", "Cheng", "Dudley", "Eric", "Kano", "Masahiro", "Randy", "Ryuji", "Steve", "Tadashi", "Wong", "Yuen", "Brian", "Carter", "Reece", "Nick", "Yang"], ["Cora", "Cyndy", "Jill", "Laura", "Sadie", "Tessa", "Vivian", "Aisha", "Callie", "Danielle", "Helene", "Jocelyn", "Lilith", "Paula", "Reyna", "Helen", "Kelsey", "Tyler", "Amy", "Chandra", "Hillary", "Janie", "Lee", "Maggie", "Mikiko", "Miriam", "Sharon", "Susie", "Xiao", "Alize", "Azra", "Brenda", "Chalina", "Chan", "Glinda", "Maki", "Tia", "Tiffany", "Wendy", "Andrea", "Gabrielle", "Gerardine", "Hailey", "Hedvig", "Justine", "Kinsey", "Sigrid", "Veronique", "Tess"]], + [TrainerType.BREEDER]: [["Isaac", "Myles", "Salvadore", "Albert", "Kahlil", "Eustace", "Galen", "Owen", "Addison", "Marcus", "Foster", "Cory", "Glenn", "Jay", "Wesley", "William", "Adrian", "Bradley", "Jaime"], ["Allison", "Alize", "Bethany", "Lily", "Lydia", "Gabrielle", "Jayden", "Pat", "Veronica", "Amber", "Jennifer", "Kaylee", "Adelaide", "Brooke", "Ethel", "April", "Irene", "Magnolia", "Amala", "Mercy", "Amanda", "Ikue", "Savannah", "Yuka", "Chloe", "Debra", "Denise", "Elena"]], + [TrainerType.CLERK]: [["Chaz", "Clemens", "Doug", "Fredric", "Ivan", "Isaac", "Nelson", "Wade", "Warren", "Augustin", "Gilligan", "Cody", "Jeremy", "Shane", "Dugal", "Royce", "Ronald"], ["Alberta", "Ingrid", "Katie", "Piper", "Trisha", "Wren", "Britney", "Lana", "Jessica", "Kristen", "Michelle", "Gabrielle"]], + [TrainerType.CYCLIST]: [["Axel", "James", "John", "Ryan", "Hector", "Jeremiah"], ["Kayla", "Megan", "Nicole", "Rachel", "Krissa", "Adelaide"]], + [TrainerType.DANCER]: ["Brian", "Davey", "Dirk", "Edmond", "Mickey", "Raymond", "Cara", "Julia", "Maika", "Mireille", "Ronda", "Zoe"], + [TrainerType.DEPOT_AGENT]: ["Josh", "Hank", "Vincent"], + [TrainerType.DOCTOR]: [["Hank", "Jerry", "Jules", "Logan", "Wayne", "Braid", "Derek", "Heath", "Julius", "Kit", "Graham"], ["Kirsten", "Sachiko", "Shery", "Carol", "Dixie", "Mariah"]], + [TrainerType.FIREBREATHER]: ["Bill", "Burt", "Cliff", "Dick", "Lyle", "Ned", "Otis", "Ray", "Richard", "Walt"], + [TrainerType.FISHERMAN]: ["Andre", "Arnold", "Barney", "Chris", "Edgar", "Henry", "Jonah", "Justin", "Kyle", "Martin", "Marvin", "Ralph", "Raymond", "Scott", "Stephen", "Wilton", "Tully", "Andrew", "Barny", "Carter", "Claude", "Dale", "Elliot", "Eugene", "Ivan", "Ned", "Nolan", "Roger", "Ronald", "Wade", "Wayne", "Darian", "Kai", "Chip", "Hank", "Kaden", "Tommy", "Tylor", "Alec", "Brett", "Cameron", "Cody", "Cole", "Cory", "Erick", "George", "Joseph", "Juan", "Kenneth", "Luc", "Miguel", "Travis", "Walter", "Zachary", "Josh", "Gideon", "Kyler", "Liam", "Murphy", "Bruce", "Damon", "Devon", "Hubert", "Jones", "Lydon", "Mick", "Pete", "Sean", "Sid", "Vince", "Bucky", "Dean", "Eustace", "Kenzo", "Leroy", "Mack", "Ryder", "Ewan", "Finn", "Murray", "Seward", "Shad", "Wharton", "Finley", "Fisher", "Fisk", "River", "Sheaffer", "Timin", "Carl", "Ernest", "Hal", "Herbert", "Hisato", "Mike", "Vernon", "Harriet", "Marina", "Chase"], + [TrainerType.GUITARIST]: ["Anna", "Beverly", "January", "Tina", "Alicia", "Claudia", "Julia", "Lidia", "Mireia", "Noelia", "Sara", "Sheila", "Tatiana"], + [TrainerType.HARLEQUIN]: ["Charley", "Ian", "Jack", "Kerry", "Louis", "Pat", "Paul", "Rick", "Anders", "Clarence", "Gary"], + [TrainerType.HIKER]: ["Anthony", "Bailey", "Benjamin", "Daniel", "Erik", "Jim", "Kenny", "Leonard", "Michael", "Parry", "Phillip", "Russell", "Sidney", "Tim", "Timothy", "Alan", "Brice", "Clark", "Eric", "Lenny", "Lucas", "Mike", "Trent", "Devan", "Eli", "Marc", "Sawyer", "Allen", "Daryl", "Dudley", "Earl", "Franklin", "Jeremy", "Marcos", "Nob", "Oliver", "Wayne", "Alexander", "Damon", "Jonathan", "Justin", "Kevin", "Lorenzo", "Louis", "Maurice", "Nicholas", "Reginald", "Robert", "Theodore", "Bruce", "Clarke", "Devin", "Dwight", "Edwin", "Eoin", "Noland", "Russel", "Andy", "Bret", "Darrell", "Gene", "Hardy", "Hugh", "Jebediah", "Jeremiah", "Kit", "Neil", "Terrell", "Don", "Doug", "Hunter", "Jared", "Jerome", "Keith", "Manuel", "Markus", "Otto", "Shelby", "Stephen", "Teppei", "Tobias", "Wade", "Zaiem", "Aaron", "Alain", "Bergin", "Bernard", "Brent", "Corwin", "Craig", "Delmon", "Dunstan", "Orestes", "Ross", "Davian", "Calhoun", "David", "Gabriel", "Ryan", "Thomas", "Travis", "Zachary", "Anuhea", "Barnaby", "Claus", "Collin", "Colson", "Dexter", "Dillan", "Eugine", "Farkas", "Hisato", "Julius", "Kenji", "Irwin", "Lionel", "Paul", "Richter", "Valentino", "Donald", "Douglas", "Kevyn", "Chester"], //["Angela","Carla","Celia","Daniela","Estela","Fatima","Helena","Leire","Lucia","Luna","Manuela","Mar","Marina","Miyu","Nancy","Nerea","Paula","Rocio","Yanira"] + [TrainerType.HOOLIGANS]: ["Jim & Cas", "Rob & Sal"], + [TrainerType.HOOPSTER]: ["Bobby", "John", "Lamarcus", "Derrick", "Nicolas"], + [TrainerType.INFIELDER]: ["Alex", "Connor", "Todd"], + [TrainerType.JANITOR]: ["Caleb", "Geoff", "Brady", "Felix", "Orville", "Melvin", "Shawn"], + [TrainerType.LINEBACKER]: ["Bob", "Dan", "Jonah"], + [TrainerType.MAID]: ["Belinda", "Sophie", "Emily", "Elena", "Clare", "Alica", "Tanya", "Tammy"], + [TrainerType.MUSICIAN]: ["Boris", "Preston", "Charles", "Clyde", "Vincent", "Dalton", "Kirk", "Shawn", "Fabian", "Fernando", "Joseph", "Marcos", "Arturo", "Jerry", "Lonnie", "Tony"], + [TrainerType.NURSERY_AIDE]: ["Autumn", "Briana", "Leah", "Miho", "Ethel", "Hollie", "Ilse", "June", "Kimya", "Rosalyn"], + [TrainerType.OFFICER]: ["Dirk", "Keith", "Alex", "Bobby", "Caleb", "Danny", "Dylan", "Thomas", "Daniel", "Jeff", "Braven", "Dell", "Neagle", "Haruki", "Mitchell", "Raymond"], + [TrainerType.PARASOL_LADY]: ["Angelica", "Clarissa", "Madeline", "Akari", "Annabell", "Kayley", "Rachel", "Alexa", "Sabrina", "April", "Gwyneth", "Laura", "Lumi", "Mariah", "Melita", "Nicole", "Tihana", "Ingrid", "Tyra"], + [TrainerType.PILOT]: ["Chase", "Leonard", "Ted", "Elron", "Ewing", "Flynn", "Winslow"], + [TrainerType.POKEFAN]: [["Alex", "Allan", "Brandon", "Carter", "Colin", "Derek", "Jeremy", "Joshua", "Rex", "Robert", "Trevor", "William", "Colton", "Miguel", "Francisco", "Kaleb", "Leonard", "Boone", "Elliot", "Jude", "Norbert", "Corey", "Gabe", "Baxter"], ["Beverly", "Georgia", "Jaime", "Ruth", "Isabel", "Marissa", "Vanessa", "Annika", "Bethany", "Kimberly", "Meredith", "Rebekah", "Eleanor", "Darcy", "Lydia", "Sachiko", "Abigail", "Agnes", "Lydie", "Roisin", "Tara", "Carmen", "Janet"]], + [TrainerType.PRESCHOOLER]: [["Billy", "Doyle", "Evan", "Homer", "Tully", "Albert", "Buster", "Greg", "Ike", "Jojo", "Tyrone", "Adrian", "Oliver", "Hayden", "Hunter", "Kaleb", "Liam", "Dylan"], ["Juliet", "Mia", "Sarah", "Wendy", "Winter", "Chrissy", "Eva", "Lin", "Samantha", "Ella", "Lily", "Natalie", "Ailey", "Hannah", "Malia", "Kindra", "Nancy"]], + [TrainerType.PSYCHIC]: [["Fidel", "Franklin", "Gilbert", "Greg", "Herman", "Jared", "Mark", "Nathan", "Norman", "Phil", "Richard", "Rodney", "Cameron", "Edward", "Fritz", "Joshua", "Preston", "Virgil", "William", "Alvaro", "Blake", "Cedric", "Keenan", "Nicholas", "Dario", "Johan", "Lorenzo", "Tyron", "Bryce", "Corbin", "Deandre", "Elijah", "Kody", "Landon", "Maxwell", "Mitchell", "Sterling", "Eli", "Nelson", "Vernon", "Gaven", "Gerard", "Low", "Micki", "Perry", "Rudolf", "Tommy", "Al", "Nandor", "Tully", "Arthur", "Emanuel", "Franz", "Harry", "Paschal", "Robert", "Sayid", "Angelo", "Anton", "Arin", "Avery", "Danny", "Frasier", "Harrison", "Jaime", "Ross", "Rui", "Vlad", "Mason"], ["Alexis", "Hannah", "Jacki", "Jaclyn", "Kayla", "Maura", "Samantha", "Alix", "Brandi", "Edie", "Macey", "Mariella", "Marlene", "Laura", "Rodette", "Abigail", "Brittney", "Chelsey", "Daisy", "Desiree", "Kendra", "Lindsey", "Rachael", "Valencia", "Belle", "Cybil", "Doreen", "Dua", "Future", "Lin", "Madhu", "Alia", "Ena", "Joyce", "Lynette", "Olesia", "Sarah"]], + [TrainerType.RANGER]: [["Carlos", "Jackson", "Sebastian", "Gav", "Lorenzo", "Logan", "Nicolas", "Trenton", "Deshawn", "Dwayne", "Jeffery", "Kyler", "Taylor", "Alain", "Claude", "Crofton", "Forrest", "Harry", "Jaden", "Keith", "Lewis", "Miguel", "Pedro", "Ralph", "Richard", "Bret", "Daryl", "Eddie", "Johan", "Leaf", "Louis", "Maxwell", "Parker", "Rick", "Steve", "Bjorn", "Chaise", "Dean", "Lee", "Maurice", "Nash", "Ralf", "Reed", "Shinobu", "Silas"], ["Catherine", "Jenna", "Sophia", "Merdith", "Nora", "Beth", "Chelsea", "Katelyn", "Madeline", "Allison", "Ashlee", "Felicia", "Krista", "Annie", "Audra", "Brenda", "Chloris", "Eliza", "Heidi", "Irene", "Mary", "Mylene", "Shanti", "Shelly", "Thalia", "Anja", "Briana", "Dianna", "Elaine", "Elle", "Hillary", "Katie", "Lena", "Lois", "Malory", "Melita", "Mikiko", "Naoko", "Serenity", "Ambre", "Brooke", "Clementine", "Melina", "Petra", "Twiggy"]], + [TrainerType.RICH]: [["Alfred", "Edward", "Gregory", "Preston", "Thomas", "Tucker", "Walter", "Clifford", "Everett", "Micah", "Nate", "Pierre", "Terrance", "Arthur", "Brooks", "Emanuel", "Lamar", "Jeremy", "Leonardo", "Milton", "Frederic", "Renaud", "Robert", "Yan", "Daniel", "Sheldon", "Stonewall", "Gerald", "Ronald", "Smith", "Stanley", "Reginald", "Orson", "Wilco", "Caden", "Glenn"], ["Rebecca", "Reina", "Cassandra", "Emilia", "Grace", "Marian", "Elizabeth", "Kathleen", "Sayuri", "Caroline", "Judy"]], + [TrainerType.RICH_KID]: [["Garret", "Winston", "Dawson", "Enrique", "Jason", "Roman", "Trey", "Liam", "Anthony", "Brad", "Cody", "Manuel", "Martin", "Pierce", "Rolan", "Keenan", "Filbert", "Antoin", "Cyus", "Diek", "Dugo", "Flitz", "Jurek", "Lond", "Perd", "Quint", "Basto", "Benit", "Brot", "Denc", "Guyit", "Marcon", "Perc", "Puros", "Roex", "Sainz", "Symin", "Tark", "Venak"], ["Anette", "Brianna", "Cindy", "Colleen", "Daphne", "Elizabeth", "Naomi", "Sarah", "Charlotte", "Gillian", "Jacki", "Lady", "Melissa", "Celeste", "Colette", "Elizandra", "Isabel", "Lynette", "Magnolia", "Sophie", "Lina", "Dulcie", "Auro", "Brin", "Caril", "Eloos", "Gwin", "Illa", "Kowly", "Rima", "Ristin", "Vesey", "Brena", "Deasy", "Denslon", "Kylet", "Nemi", "Rene", "Sanol", "Stouner", "Sturk", "Talmen", "Zoila"]], + [TrainerType.ROUGHNECK]: ["Camron", "Corey", "Gabriel", "Isaiah", "Jamal", "Koji", "Luke", "Paxton", "Raul", "Zeek", "Kirby", "Chance", "Dave", "Fletcher", "Johnny", "Reese", "Joey", "Ricky", "Silvester", "Martin"], + [TrainerType.SAILOR]: ["Alberto", "Bost", "Brennan", "Brenden", "Claude", "Cory", "Damian", "Dirk", "Duncan", "Dwayne", "Dylan", "Eddie", "Edmond", "Elijah", "Ernest", "Eugene", "Garrett", "Golos", "Gratin", "Grestly", "Harry", "Hols", "Hudson", "Huey", "Jebol", "Jeff", "Leonald", "Luther", "Kelvin", "Kenneth", "Kent", "Knook", "Marc", "Mifis", "Monar", "Morkor", "Ordes", "Oxlin", "Parker", "Paul", "Philip", "Roberto", "Samson", "Skyler", "Stanly", "Tebu", "Terrell", "Trevor", "Yasu", "Zachariah"], + [TrainerType.SCIENTIST]: [["Jed", "Marc", "Mitch", "Rich", "Ross", "Beau", "Braydon", "Connor", "Ed", "Ivan", "Jerry", "Jose", "Joshua", "Parker", "Rodney", "Taylor", "Ted", "Travis", "Zackery", "Darrius", "Emilio", "Fredrick", "Shaun", "Stefano", "Travon", "Daniel", "Garett", "Gregg", "Linden", "Lowell", "Trenton", "Dudley", "Luke", "Markus", "Nathan", "Orville", "Randall", "Ron", "Ronald", "Simon", "Steve", "William", "Franklin", "Clarke", "Jacques", "Terrance", "Ernst", "Justus", "Ikaika", "Jayson", "Kyle", "Reid", "Tyrone", "Adam", "Albert", "Alphonse", "Cory", "Donnie", "Elton", "Francis", "Gordon", "Herbert", "Humphrey", "Jordan", "Julian", "Keaton", "Levi", "Melvin", "Murray", "West", "Craig", "Coren", "Dubik", "Kotan", "Lethco", "Mante", "Mort", "Myron", "Odlow", "Ribek", "Roeck", "Vogi", "Vonder", "Zogo", "Doimo", "Doton", "Durel", "Hildon", "Kukla", "Messa", "Nanot", "Platen", "Raburn", "Reman", "Acrod", "Coffy", "Elrok", "Foss", "Hardig", "Hombol", "Hospel", "Kaller", "Klots", "Krilok", "Limar", "Loket", "Mesak", "Morbit", "Newin", "Orill", "Tabor", "Tekot"], ["Blythe", "Chan", "Kathrine", "Marie", "Maria", "Naoko", "Samantha", "Satomi", "Shannon", "Athena", "Caroline", "Lumi", "Lumina", "Marissa", "Sonia"]], + [TrainerType.SMASHER]: ["Aspen", "Elena", "Mari", "Amy", "Lizzy"], + [TrainerType.SNOW_WORKER]: [["Braden", "Brendon", "Colin", "Conrad", "Dillan", "Gary", "Gerardo", "Holden", "Jackson", "Mason", "Quentin", "Willy", "Noel", "Arnold", "Brady", "Brand", "Cairn", "Cliff", "Don", "Eddie", "Felix", "Filipe", "Glenn", "Gus", "Heath", "Matthew", "Patton", "Rich", "Rob", "Ryan", "Scott", "Shelby", "Sterling", "Tyler", "Victor", "Zack", "Friedrich", "Herman", "Isaac", "Leo", "Maynard", "Mitchell", "Morgann", "Nathan", "Niel", "Pasqual", "Paul", "Tavarius", "Tibor", "Dimitri", "Narek", "Yusif", "Frank", "Jeff", "Vaclav", "Ovid", "Francis", "Keith", "Russel", "Sangon", "Toway", "Bomber", "Chean", "Demit", "Hubor", "Kebile", "Laber", "Ordo", "Retay", "Ronix", "Wagel", "Dobit", "Kaster", "Lobel", "Releo", "Saken", "Rustix"], ["Georgia", "Sandra", "Yvonne"]], + [TrainerType.STRIKER]: ["Marco", "Roberto", "Tony"], + [TrainerType.SCHOOL_KID]: [["Alan", "Billy", "Chad", "Danny", "Dudley", "Jack", "Joe", "Johnny", "Kipp", "Nate", "Ricky", "Tommy", "Jerry", "Paul", "Ted", "Chance", "Esteban", "Forrest", "Harrison", "Connor", "Sherman", "Torin", "Travis", "Al", "Carter", "Edgar", "Jem", "Sammy", "Shane", "Shayne", "Alvin", "Keston", "Neil", "Seymour", "William", "Carson", "Clark", "Nolan"], ["Georgia", "Karen", "Meiko", "Christine", "Mackenzie", "Tiera", "Ann", "Gina", "Lydia", "Marsha", "Millie", "Sally", "Serena", "Silvia", "Alberta", "Cassie", "Mara", "Rita", "Georgie", "Meena", "Nitzel"]], + [TrainerType.SWIMMER]: [["Berke", "Cameron", "Charlie", "George", "Harold", "Jerome", "Kirk", "Mathew", "Parker", "Randall", "Seth", "Simon", "Tucker", "Austin", "Barry", "Chad", "Cody", "Darrin", "David", "Dean", "Douglas", "Franklin", "Gilbert", "Herman", "Jack", "Luis", "Matthew", "Reed", "Richard", "Rodney", "Roland", "Spencer", "Stan", "Tony", "Clarence", "Declan", "Dominik", "Harrison", "Kevin", "Leonardo", "Nolen", "Pete", "Santiago", "Axle", "Braden", "Finn", "Garrett", "Mymo", "Reece", "Samir", "Toby", "Adrian", "Colton", "Dillon", "Erik", "Evan", "Francisco", "Glenn", "Kurt", "Oscar", "Ricardo", "Sam", "Sheltin", "Troy", "Vincent", "Wade", "Wesley", "Duane", "Elmo", "Esteban", "Frankie", "Ronald", "Tyson", "Bart", "Matt", "Tim", "Wright", "Jeffery", "Kyle", "Alessandro", "Estaban", "Kieran", "Ramses", "Casey", "Dakota", "Jared", "Kalani", "Keoni", "Lawrence", "Logan", "Robert", "Roddy", "Yasu", "Derek", "Jacob", "Bruce", "Clayton"], ["Briana", "Dawn", "Denise", "Diana", "Elaine", "Kara", "Kaylee", "Lori", "Nicole", "Nikki", "Paula", "Susie", "Wendy", "Alice", "Beth", "Beverly", "Brenda", "Dana", "Debra", "Grace", "Jenny", "Katie", "Laurel", "Linda", "Missy", "Sharon", "Tanya", "Tara", "Tisha", "Carlee", "Imani", "Isabelle", "Kyla", "Sienna", "Abigail", "Amara", "Anya", "Connie", "Maria", "Melissa", "Nora", "Shirley", "Shania", "Tiffany", "Aubree", "Cassandra", "Claire", "Crystal", "Erica", "Gabrielle", "Haley", "Jessica", "Joanna", "Lydia", "Mallory", "Mary", "Miranda", "Paige", "Sophia", "Vanessa", "Chelan", "Debbie", "Joy", "Kendra", "Leona", "Mina", "Caroline", "Joyce", "Larissa", "Rebecca", "Tyra", "Dara", "Desiree", "Kaoru", "Ruth", "Coral", "Genevieve", "Isla", "Marissa", "Romy", "Sheryl", "Alexandria", "Alicia", "Chelsea", "Jade", "Kelsie", "Laura", "Portia", "Shelby", "Sara", "Tiare", "Kyra", "Natasha", "Layla", "Scarlett", "Cora"]], + [TrainerType.TWINS]: ["Amy & May", "Jo & Zoe", "Meg & Peg", "Ann & Anne", "Lea & Pia", "Amy & Liv", "Gina & Mia", "Miu & Yuki", "Tori & Tia", "Eli & Anne", "Jen & Kira", "Joy & Meg", "Kiri & Jan", "Miu & Mia", "Emma & Lil", "Liv & Liz", "Teri & Tia", "Amy & Mimi", "Clea & Gil", "Day & Dani", "Kay & Tia", "Tori & Til", "Saya & Aya", "Emy & Lin", "Kumi & Amy", "Mayo & May", "Ally & Amy", "Lia & Lily", "Rae & Ula", "Sola & Ana", "Tara & Val", "Faith & Joy", "Nana & Nina"], + [TrainerType.VETERAN]: [["Armando", "Brenden", "Brian", "Clayton", "Edgar", "Emanuel", "Grant", "Harlan", "Terrell", "Arlen", "Chester", "Hugo", "Martell", "Ray", "Shaun", "Abraham", "Carter", "Claude", "Jerry", "Lucius", "Murphy", "Rayne", "Ron", "Sinan", "Sterling", "Vincent", "Zach", "Gerard", "Gilles", "Louis", "Timeo", "Akira", "Don", "Eric", "Harry", "Leon", "Roger", "Angus", "Aristo", "Brone", "Johnny"], ["Julia", "Karla", "Kim", "Sayuri", "Tiffany", "Cathy", "Cecile", "Chloris", "Denae", "Gina", "Maya", "Oriana", "Portia", "Rhona", "Rosaline", "Catrina", "Inga", "Trisha", "Heather", "Lynn", "Sheri", "Alonsa", "Ella", "Leticia", "Kiara"]], + [TrainerType.WAITER]: [["Bert", "Clint", "Maxwell", "Lou"], ["Kati", "Aurora", "Bonita", "Flo", "Tia", "Jan", "Olwen", "Paget", "Paula", "Talia"]], + [TrainerType.WORKER]: [["Braden", "Brendon", "Colin", "Conrad", "Dillan", "Gary", "Gerardo", "Holden", "Jackson", "Mason", "Quentin", "Willy", "Noel", "Arnold", "Brady", "Brand", "Cairn", "Cliff", "Don", "Eddie", "Felix", "Filipe", "Glenn", "Gus", "Heath", "Matthew", "Patton", "Rich", "Rob", "Ryan", "Scott", "Shelby", "Sterling", "Tyler", "Victor", "Zack", "Friedrich", "Herman", "Isaac", "Leo", "Maynard", "Mitchell", "Morgann", "Nathan", "Niel", "Pasqual", "Paul", "Tavarius", "Tibor", "Dimitri", "Narek", "Yusif", "Frank", "Jeff", "Vaclav", "Ovid", "Francis", "Keith", "Russel", "Sangon", "Toway", "Bomber", "Chean", "Demit", "Hubor", "Kebile", "Laber", "Ordo", "Retay", "Ronix", "Wagel", "Dobit", "Kaster", "Lobel", "Releo", "Saken", "Rustix"], ["Georgia", "Sandra", "Yvonne"]], + [TrainerType.YOUNGSTER]: [["Albert", "Gordon", "Ian", "Jason", "Jimmy", "Mikey", "Owen", "Samuel", "Warren", "Allen", "Ben", "Billy", "Calvin", "Dillion", "Eddie", "Joey", "Josh", "Neal", "Timmy", "Tommy", "Breyden", "Deandre", "Demetrius", "Dillon", "Jaylen", "Johnson", "Shigenobu", "Chad", "Cole", "Cordell", "Dan", "Dave", "Destin", "Nash", "Tyler", "Yasu", "Austin", "Dallas", "Darius", "Donny", "Jonathon", "Logan", "Michael", "Oliver", "Sebastian", "Tristan", "Wayne", "Norman", "Roland", "Regis", "Abe", "Astor", "Keita", "Kenneth", "Kevin", "Kyle", "Lester", "Masao", "Nicholas", "Parker", "Wes", "Zachary", "Cody", "Henley", "Jaye", "Karl", "Kenny", "Masahiro", "Pedro", "Petey", "Sinclair", "Terrell", "Waylon", "Aidan", "Anthony", "David", "Jacob", "Jayden", "Cutler", "Ham", "Caleb", "Kai", "Honus", "Kenway", "Bret", "Chris", "Cid", "Dennis", "Easton", "Ken", "Robby", "Ronny", "Shawn", "Benjamin", "Jake", "Travis", "Adan", "Aday", "Beltran", "Elian", "Hernan", "Julen", "Luka", "Roi", "Bernie", "Dustin", "Jonathan", "Wyatt"], ["Alice", "Bridget", "Carrie", "Connie", "Dana", "Ellen", "Krise", "Laura", "Linda", "Michelle", "Shannon", "Andrea", "Crissy", "Janice", "Robin", "Sally", "Tiana", "Haley", "Ali", "Ann", "Dalia", "Dawn", "Iris", "Joana", "Julia", "Kay", "Lisa", "Megan", "Mikaela", "Miriam", "Paige", "Reli", "Blythe", "Briana", "Caroline", "Cassidy", "Kaitlin", "Madeline", "Molly", "Natalie", "Samantha", "Sarah", "Cathy", "Dye", "Eri", "Eva", "Fey", "Kara", "Lurleen", "Maki", "Mali", "Maya", "Miki", "Sibyl", "Daya", "Diana", "Flo", "Helia", "Henrietta", "Isabel", "Mai", "Persephone", "Serena", "Anna", "Charlotte", "Elin", "Elsa", "Lise", "Sara", "Suzette", "Audrey", "Emmy", "Isabella", "Madison", "Rika", "Rylee", "Salla", "Ellie", "Alexandra", "Amy", "Lass", "Brittany", "Chel", "Cindy", "Dianne", "Emily", "Emma", "Evelyn", "Hana", "Harleen", "Hazel", "Jocelyn", "Katrina", "Kimberly", "Lina", "Marge", "Mila", "Mizuki", "Rena", "Sal", "Satoko", "Summer", "Tomoe", "Vicky", "Yue", "Yumi", "Lauren", "Rei", "Riley", "Lois", "Nancy", "Tammy", "Terry"]], + [TrainerType.HEX_MANIAC]: ["Kindra", "Patricia", "Tammy", "Tasha", "Valerie", "Alaina", "Kathleen", "Leah", "Makie", "Sylvia", "Anina", "Arachna", "Carrie", "Desdemona", "Josette", "Luna", "Melanie", "Osanna", "Raziah"], }; // function used in a commented code diff --git a/src/data/type.ts b/src/data/type.ts index 7a9f7f3605e..47bea8dd72b 100644 --- a/src/data/type.ts +++ b/src/data/type.ts @@ -23,7 +23,7 @@ export enum Type { export type TypeDamageMultiplier = 0 | 0.125 | 0.25 | 0.5 | 1 | 2 | 4 | 8; -export function getTypeDamageMultiplier(attackType: integer, defType: integer): TypeDamageMultiplier { +export function getTypeDamageMultiplier(attackType: Type, defType: Type): TypeDamageMultiplier { if (attackType === Type.UNKNOWN || defType === Type.UNKNOWN) { return 1; } @@ -33,26 +33,10 @@ export function getTypeDamageMultiplier(attackType: integer, defType: integer): switch (attackType) { case Type.FIGHTING: return 2; - case Type.NORMAL: - case Type.FLYING: - case Type.POISON: - case Type.GROUND: - case Type.ROCK: - case Type.BUG: - case Type.STEEL: - case Type.FIRE: - case Type.WATER: - case Type.GRASS: - case Type.ELECTRIC: - case Type.PSYCHIC: - case Type.ICE: - case Type.DRAGON: - case Type.DARK: - case Type.FAIRY: - return 1; case Type.GHOST: - default: return 0; + default: + return 1; } case Type.FIGHTING: switch (attackType) { @@ -60,25 +44,12 @@ export function getTypeDamageMultiplier(attackType: integer, defType: integer): case Type.PSYCHIC: case Type.FAIRY: return 2; - case Type.NORMAL: - case Type.FIGHTING: - case Type.POISON: - case Type.GROUND: - case Type.GHOST: - case Type.STEEL: - case Type.FIRE: - case Type.WATER: - case Type.GRASS: - case Type.ELECTRIC: - case Type.ICE: - case Type.DRAGON: - return 1; case Type.ROCK: case Type.BUG: case Type.DARK: return 0.5; default: - return 0; + return 1; } case Type.FLYING: switch (attackType) { @@ -86,43 +57,20 @@ export function getTypeDamageMultiplier(attackType: integer, defType: integer): case Type.ELECTRIC: case Type.ICE: return 2; - case Type.NORMAL: - case Type.FLYING: - case Type.POISON: - case Type.GHOST: - case Type.STEEL: - case Type.FIRE: - case Type.WATER: - case Type.PSYCHIC: - case Type.DRAGON: - case Type.DARK: - case Type.FAIRY: - return 1; case Type.FIGHTING: case Type.BUG: case Type.GRASS: return 0.5; case Type.GROUND: - default: return 0; + default: + return 1; } case Type.POISON: switch (attackType) { case Type.GROUND: case Type.PSYCHIC: return 2; - case Type.NORMAL: - case Type.FLYING: - case Type.ROCK: - case Type.GHOST: - case Type.STEEL: - case Type.FIRE: - case Type.WATER: - case Type.ELECTRIC: - case Type.ICE: - case Type.DRAGON: - case Type.DARK: - return 1; case Type.FIGHTING: case Type.POISON: case Type.BUG: @@ -130,7 +78,7 @@ export function getTypeDamageMultiplier(attackType: integer, defType: integer): case Type.FAIRY: return 0.5; default: - return 0; + return 1; } case Type.GROUND: switch (attackType) { @@ -138,25 +86,13 @@ export function getTypeDamageMultiplier(attackType: integer, defType: integer): case Type.GRASS: case Type.ICE: return 2; - case Type.NORMAL: - case Type.FIGHTING: - case Type.FLYING: - case Type.GROUND: - case Type.BUG: - case Type.GHOST: - case Type.STEEL: - case Type.FIRE: - case Type.PSYCHIC: - case Type.DRAGON: - case Type.DARK: - case Type.FAIRY: - return 1; case Type.POISON: case Type.ROCK: return 0.5; case Type.ELECTRIC: - default: return 0; + default: + return 1; } case Type.ROCK: switch (attackType) { @@ -166,23 +102,13 @@ export function getTypeDamageMultiplier(attackType: integer, defType: integer): case Type.WATER: case Type.GRASS: return 2; - case Type.ROCK: - case Type.BUG: - case Type.GHOST: - case Type.ELECTRIC: - case Type.PSYCHIC: - case Type.ICE: - case Type.DRAGON: - case Type.DARK: - case Type.FAIRY: - return 1; case Type.NORMAL: case Type.FLYING: case Type.POISON: case Type.FIRE: return 0.5; default: - return 0; + return 1; } case Type.BUG: switch (attackType) { @@ -190,51 +116,26 @@ export function getTypeDamageMultiplier(attackType: integer, defType: integer): case Type.ROCK: case Type.FIRE: return 2; - case Type.NORMAL: - case Type.POISON: - case Type.BUG: - case Type.GHOST: - case Type.STEEL: - case Type.WATER: - case Type.ELECTRIC: - case Type.PSYCHIC: - case Type.ICE: - case Type.DRAGON: - case Type.DARK: - case Type.FAIRY: - return 1; case Type.FIGHTING: case Type.GROUND: case Type.GRASS: return 0.5; default: - return 0; + return 1; } case Type.GHOST: switch (attackType) { case Type.GHOST: case Type.DARK: return 2; - case Type.FLYING: - case Type.GROUND: - case Type.ROCK: - case Type.STEEL: - case Type.FIRE: - case Type.WATER: - case Type.GRASS: - case Type.ELECTRIC: - case Type.PSYCHIC: - case Type.ICE: - case Type.DRAGON: - case Type.FAIRY: - return 1; case Type.POISON: case Type.BUG: return 0.5; case Type.NORMAL: case Type.FIGHTING: - default: return 0; + default: + return 1; } case Type.STEEL: switch (attackType) { @@ -242,11 +143,6 @@ export function getTypeDamageMultiplier(attackType: integer, defType: integer): case Type.GROUND: case Type.FIRE: return 2; - case Type.GHOST: - case Type.WATER: - case Type.ELECTRIC: - case Type.DARK: - return 1; case Type.NORMAL: case Type.FLYING: case Type.ROCK: @@ -259,8 +155,9 @@ export function getTypeDamageMultiplier(attackType: integer, defType: integer): case Type.FAIRY: return 0.5; case Type.POISON: - default: return 0; + default: + return 1; } case Type.FIRE: switch (attackType) { @@ -268,16 +165,6 @@ export function getTypeDamageMultiplier(attackType: integer, defType: integer): case Type.ROCK: case Type.WATER: return 2; - case Type.NORMAL: - case Type.FIGHTING: - case Type.FLYING: - case Type.POISON: - case Type.GHOST: - case Type.ELECTRIC: - case Type.PSYCHIC: - case Type.DRAGON: - case Type.DARK: - return 1; case Type.BUG: case Type.STEEL: case Type.FIRE: @@ -286,33 +173,20 @@ export function getTypeDamageMultiplier(attackType: integer, defType: integer): case Type.FAIRY: return 0.5; default: - return 0; + return 1; } case Type.WATER: switch (attackType) { case Type.GRASS: case Type.ELECTRIC: return 2; - case Type.NORMAL: - case Type.FIGHTING: - case Type.FLYING: - case Type.POISON: - case Type.GROUND: - case Type.ROCK: - case Type.BUG: - case Type.GHOST: - case Type.PSYCHIC: - case Type.DRAGON: - case Type.DARK: - case Type.FAIRY: - return 1; case Type.STEEL: case Type.FIRE: case Type.WATER: case Type.ICE: return 0.5; default: - return 0; + return 1; } case Type.GRASS: switch (attackType) { @@ -322,49 +196,24 @@ export function getTypeDamageMultiplier(attackType: integer, defType: integer): case Type.FIRE: case Type.ICE: return 2; - case Type.NORMAL: - case Type.FIGHTING: - case Type.ROCK: - case Type.GHOST: - case Type.STEEL: - case Type.PSYCHIC: - case Type.DRAGON: - case Type.DARK: - case Type.FAIRY: - return 1; case Type.GROUND: case Type.WATER: case Type.GRASS: case Type.ELECTRIC: return 0.5; default: - return 0; + return 1; } case Type.ELECTRIC: switch (attackType) { case Type.GROUND: return 2; - case Type.NORMAL: - case Type.FIGHTING: - case Type.POISON: - case Type.ROCK: - case Type.BUG: - case Type.GHOST: - case Type.FIRE: - case Type.WATER: - case Type.GRASS: - case Type.PSYCHIC: - case Type.ICE: - case Type.DRAGON: - case Type.DARK: - case Type.FAIRY: - return 1; case Type.FLYING: case Type.STEEL: case Type.ELECTRIC: return 0.5; default: - return 0; + return 1; } case Type.PSYCHIC: switch (attackType) { @@ -372,25 +221,11 @@ export function getTypeDamageMultiplier(attackType: integer, defType: integer): case Type.GHOST: case Type.DARK: return 2; - case Type.NORMAL: - case Type.FLYING: - case Type.POISON: - case Type.GROUND: - case Type.ROCK: - case Type.STEEL: - case Type.FIRE: - case Type.WATER: - case Type.GRASS: - case Type.ELECTRIC: - case Type.ICE: - case Type.DRAGON: - case Type.FAIRY: - return 1; case Type.FIGHTING: case Type.PSYCHIC: return 0.5; default: - return 0; + return 1; } case Type.ICE: switch (attackType) { @@ -399,24 +234,10 @@ export function getTypeDamageMultiplier(attackType: integer, defType: integer): case Type.STEEL: case Type.FIRE: return 2; - case Type.NORMAL: - case Type.FLYING: - case Type.POISON: - case Type.GROUND: - case Type.BUG: - case Type.GHOST: - case Type.WATER: - case Type.GRASS: - case Type.ELECTRIC: - case Type.PSYCHIC: - case Type.DRAGON: - case Type.DARK: - case Type.FAIRY: - return 1; case Type.ICE: return 0.5; default: - return 0; + return 1; } case Type.DRAGON: switch (attackType) { @@ -424,25 +245,13 @@ export function getTypeDamageMultiplier(attackType: integer, defType: integer): case Type.DRAGON: case Type.FAIRY: return 2; - case Type.NORMAL: - case Type.FIGHTING: - case Type.FLYING: - case Type.POISON: - case Type.GROUND: - case Type.ROCK: - case Type.BUG: - case Type.GHOST: - case Type.STEEL: - case Type.PSYCHIC: - case Type.DARK: - return 1; case Type.FIRE: case Type.WATER: case Type.GRASS: case Type.ELECTRIC: return 0.5; default: - return 0; + return 1; } case Type.DARK: switch (attackType) { @@ -450,106 +259,33 @@ export function getTypeDamageMultiplier(attackType: integer, defType: integer): case Type.BUG: case Type.FAIRY: return 2; - case Type.NORMAL: - case Type.FLYING: - case Type.POISON: - case Type.GROUND: - case Type.ROCK: - case Type.STEEL: - case Type.FIRE: - case Type.WATER: - case Type.GRASS: - case Type.ELECTRIC: - case Type.ICE: - case Type.DRAGON: - return 1; case Type.GHOST: case Type.DARK: return 0.5; case Type.PSYCHIC: - default: return 0; + default: + return 1; } case Type.FAIRY: switch (attackType) { case Type.POISON: case Type.STEEL: return 2; - case Type.NORMAL: - case Type.FLYING: - case Type.GROUND: - case Type.ROCK: - case Type.GHOST: - case Type.FIRE: - case Type.WATER: - case Type.GRASS: - case Type.ELECTRIC: - case Type.PSYCHIC: - case Type.ICE: - case Type.FAIRY: - return 1; case Type.FIGHTING: case Type.BUG: case Type.DARK: return 0.5; case Type.DRAGON: - default: return 0; + default: + return 1; } case Type.STELLAR: return 1; } - return 0; -} - -/** - * Retrieve the types resisting a given type - * @returns An array populated with Types, or an empty array if no resistances exist (Unknown or Stellar type) - */ -export function getTypeResistances(type: number): Type[] { - switch (type) { - case Type.NORMAL: - return [Type.ROCK, Type.STEEL, Type.GHOST]; - case Type.FIGHTING: - return [Type.FLYING, Type.POISON, Type.BUG, Type.PSYCHIC, Type.FAIRY, Type.GHOST]; - case Type.FLYING: - return [Type.ROCK, Type.ELECTRIC, Type.STEEL]; - case Type.POISON: - return [Type.POISON, Type.GROUND, Type.ROCK, Type.GHOST, Type.STEEL]; - case Type.GROUND: - return [Type.BUG, Type.GRASS, Type.FLYING]; - case Type.ROCK: - return [Type.FIGHTING, Type.GROUND, Type.STEEL]; - case Type.BUG: - return [Type.FIGHTING, Type.FLYING, Type.POISON, Type.GHOST, Type.STEEL, Type.FIRE, Type.FAIRY]; - case Type.GHOST: - return [Type.DARK, Type.NORMAL]; - case Type.STEEL: - return [Type.STEEL, Type.FIRE, Type.WATER, Type.ELECTRIC]; - case Type.FIRE: - return [Type.ROCK, Type.FIRE, Type.WATER, Type.DRAGON]; - case Type.WATER: - return [Type.WATER, Type.GRASS, Type.DRAGON]; - case Type.GRASS: - return [Type.FLYING, Type.POISON, Type.BUG, Type.STEEL, Type.FIRE, Type.GRASS, Type.DRAGON]; - case Type.ELECTRIC: - return [Type.GRASS, Type.ELECTRIC, Type.DRAGON, Type.GROUND]; - case Type.PSYCHIC: - return [Type.STEEL, Type.PSYCHIC]; - case Type.ICE: - return [Type.STEEL, Type.FIRE, Type.WATER, Type.ICE]; - case Type.DRAGON: - return [Type.STEEL, Type.FAIRY]; - case Type.DARK: - return [Type.FIGHTING, Type.DARK, Type.FAIRY]; - case Type.FAIRY: - return [Type.POISON, Type.STEEL, Type.FIRE]; - case Type.UNKNOWN: - case Type.STELLAR: - default: - return []; - } + return 1; } /** diff --git a/src/enums/challenges.ts b/src/enums/challenges.ts index 690e1cdc32d..c4dc7460dfe 100644 --- a/src/enums/challenges.ts +++ b/src/enums/challenges.ts @@ -3,5 +3,6 @@ export enum Challenges { SINGLE_TYPE, LOWER_MAX_STARTER_COST, LOWER_STARTER_POINTS, - FRESH_START + FRESH_START, + INVERSE_BATTLE, } diff --git a/src/enums/game-data-type.ts b/src/enums/game-data-type.ts index 179817fe5be..d672253794a 100644 --- a/src/enums/game-data-type.ts +++ b/src/enums/game-data-type.ts @@ -6,5 +6,6 @@ export enum GameDataType { SESSION, SETTINGS, TUTORIALS, - SEEN_DIALOGUES + SEEN_DIALOGUES, + RUN_HISTORY } diff --git a/src/enums/shop-cursor-target.ts b/src/enums/shop-cursor-target.ts new file mode 100644 index 00000000000..d2f72fed0d6 --- /dev/null +++ b/src/enums/shop-cursor-target.ts @@ -0,0 +1,13 @@ +/** + * Determines the cursor target when entering the shop phase. + */ +export enum ShopCursorTarget { + /** Cursor points to Reroll */ + REROLL, + /** Cursor points to Items */ + ITEMS, + /** Cursor points to Shop */ + SHOP, + /** Cursor points to Check Team */ + CHECK_TEAM +} diff --git a/src/enums/trainer-type.ts b/src/enums/trainer-type.ts index 1d4d9579ee3..835a2c9d039 100644 --- a/src/enums/trainer-type.ts +++ b/src/enums/trainer-type.ts @@ -72,6 +72,12 @@ export enum TrainerType { FLARE_GRUNT, BRYONY, XEROSIC, + AETHER_GRUNT, + FABA, + SKULL_GRUNT, + PLUMERIA, + MACRO_GRUNT, + OLEANA, ROCKET_BOSS_GIOVANNI_1, ROCKET_BOSS_GIOVANNI_2, MAXIE, @@ -84,6 +90,12 @@ export enum TrainerType { GHETSIS_2, LYSANDRE, LYSANDRE_2, + LUSAMINE, + LUSAMINE_2, + GUZMA, + GUZMA_2, + ROSE, + ROSE_2, BROCK = 200, MISTY, diff --git a/src/field/arena.ts b/src/field/arena.ts index eb3770d61d5..7622b9a014f 100644 --- a/src/field/arena.ts +++ b/src/field/arena.ts @@ -20,7 +20,10 @@ import { Moves } from "#enums/moves"; import { Species } from "#enums/species"; import { TimeOfDay } from "#enums/time-of-day"; import { TrainerType } from "#enums/trainer-type"; -import { CommonAnimPhase } from "#app/phases/common-anim-phase.js"; +import { Abilities } from "#app/enums/abilities"; +import { SpeciesFormChangeRevertWeatherFormTrigger, SpeciesFormChangeWeatherTrigger } from "#app/data/pokemon-forms"; +import { CommonAnimPhase } from "#app/phases/common-anim-phase"; +import { ShowAbilityPhase } from "#app/phases/show-ability-phase"; export class Arena { public scene: BattleScene; @@ -331,6 +334,30 @@ export class Arena { return true; } + /** + * Function to trigger all weather based form changes + */ + triggerWeatherBasedFormChanges(): void { + this.scene.getField(true).forEach( p => { + if (p.hasAbility(Abilities.FORECAST) && p.species.speciesId === Species.CASTFORM) { + new ShowAbilityPhase(this.scene, p.getBattlerIndex()); + this.scene.triggerPokemonFormChange(p, SpeciesFormChangeWeatherTrigger); + } + }); + } + + /** + * Function to trigger all weather based form changes back into their normal forms + */ + triggerWeatherBasedFormChangesToNormal(): void { + this.scene.getField(true).forEach( p => { + if (p.hasAbility(Abilities.FORECAST, false, true) && p.species.speciesId === Species.CASTFORM) { + new ShowAbilityPhase(this.scene, p.getBattlerIndex()); + return this.scene.triggerPokemonFormChange(p, SpeciesFormChangeRevertWeatherFormTrigger); + } + }); + } + trySetTerrain(terrain: TerrainType, hasPokemonSource: boolean, ignoreAnim: boolean = false): boolean { if (this.terrain?.terrainType === (terrain || undefined)) { return false; @@ -339,7 +366,7 @@ export class Arena { const oldTerrainType = this.terrain?.terrainType || TerrainType.NONE; this.terrain = terrain ? new Terrain(terrain, hasPokemonSource ? 5 : 0) : null; - this.eventTarget.dispatchEvent(new TerrainChangedEvent(oldTerrainType,this.terrain?.terrainType!, this.terrain?.turnsLeft!)); // TODO: are those bangs correct? + this.eventTarget.dispatchEvent(new TerrainChangedEvent(oldTerrainType, this.terrain?.terrainType!, this.terrain?.turnsLeft!)); // TODO: are those bangs correct? if (this.terrain) { if (!ignoreAnim) { @@ -584,6 +611,10 @@ export class Arena { return this.getTagOnSide(tagType, ArenaTagSide.BOTH); } + hasTag(tagType: ArenaTagType) : boolean { + return !!this.getTag(tagType); + } + getTagOnSide(tagType: ArenaTagType | Constructor, side: ArenaTagSide): ArenaTag | undefined { return typeof(tagType) === "string" ? this.tags.find(t => t.tagType === tagType && (side === ArenaTagSide.BOTH || t.side === ArenaTagSide.BOTH || t.side === side)) diff --git a/src/field/pokemon.ts b/src/field/pokemon.ts index 6a445a83b4e..9fcbdd8dc6c 100644 --- a/src/field/pokemon.ts +++ b/src/field/pokemon.ts @@ -3,7 +3,7 @@ import BattleScene, { AnySound } from "../battle-scene"; import { Variant, VariantSet, variantColorCache } from "#app/data/variant"; import { variantData } from "#app/data/variant"; import BattleInfo, { PlayerBattleInfo, EnemyBattleInfo } from "../ui/battle-info"; -import Move, { HighCritAttr, HitsTagAttr, applyMoveAttrs, FixedDamageAttr, VariableAtkAttr, allMoves, MoveCategory, TypelessAttr, CritOnlyAttr, getMoveTargets, OneHitKOAttr, VariableMoveTypeAttr, StatusMoveTypeImmunityAttr, VariableDefAttr, AttackMove, ModifiedDamageAttr, VariableMoveTypeMultiplierAttr, IgnoreOpponentStatChangesAttr, SacrificialAttr, VariableMoveCategoryAttr, CounterDamageAttr, StatChangeAttr, RechargeAttr, ChargeAttr, IgnoreWeatherTypeDebuffAttr, BypassBurnDamageReductionAttr, SacrificialAttrOnHit, NeutralDamageAgainstFlyingTypeMultiplierAttr, OneHitKOAccuracyAttr } from "../data/move"; +import Move, { HighCritAttr, HitsTagAttr, applyMoveAttrs, FixedDamageAttr, VariableAtkAttr, allMoves, MoveCategory, TypelessAttr, CritOnlyAttr, getMoveTargets, OneHitKOAttr, VariableMoveTypeAttr, VariableDefAttr, AttackMove, ModifiedDamageAttr, VariableMoveTypeMultiplierAttr, IgnoreOpponentStatChangesAttr, SacrificialAttr, VariableMoveCategoryAttr, CounterDamageAttr, StatChangeAttr, RechargeAttr, ChargeAttr, IgnoreWeatherTypeDebuffAttr, BypassBurnDamageReductionAttr, SacrificialAttrOnHit, OneHitKOAccuracyAttr, RespectAttackTypeImmunityAttr } from "../data/move"; import { default as PokemonSpecies, PokemonSpeciesForm, SpeciesFormKey, getFusedSpeciesName, getPokemonSpecies, getPokemonSpeciesForm, getStarterValueFriendshipCap, speciesStarters, starterPassiveAbilities } from "../data/pokemon-species"; import { Constructor } from "#app/utils"; import * as Utils from "../utils"; @@ -22,7 +22,7 @@ import { BattlerTag, BattlerTagLapseType, EncoreTag, GroundedTag, HighestStatBoo import { WeatherType } from "../data/weather"; import { TempBattleStat } from "../data/temp-battle-stat"; import { ArenaTagSide, NoCritTag, WeakenMoveScreenTag } from "../data/arena-tag"; -import { Ability, AbAttr, BattleStatMultiplierAbAttr, BlockCritAbAttr, BonusCritAbAttr, BypassBurnDamageReductionAbAttr, FieldPriorityMoveImmunityAbAttr, IgnoreOpponentStatChangesAbAttr, MoveImmunityAbAttr, PreDefendFullHpEndureAbAttr, ReceivedMoveDamageMultiplierAbAttr, ReduceStatusEffectDurationAbAttr, StabBoostAbAttr, StatusEffectImmunityAbAttr, TypeImmunityAbAttr, WeightMultiplierAbAttr, allAbilities, applyAbAttrs, applyBattleStatMultiplierAbAttrs, applyPreApplyBattlerTagAbAttrs, applyPreAttackAbAttrs, applyPreDefendAbAttrs, applyPreSetStatusAbAttrs, UnsuppressableAbilityAbAttr, SuppressFieldAbilitiesAbAttr, NoFusionAbilityAbAttr, MultCritAbAttr, IgnoreTypeImmunityAbAttr, DamageBoostAbAttr, IgnoreTypeStatusEffectImmunityAbAttr, ConditionalCritAbAttr, applyFieldBattleStatMultiplierAbAttrs, FieldMultiplyBattleStatAbAttr, AddSecondStrikeAbAttr, IgnoreOpponentEvasionAbAttr, UserFieldStatusEffectImmunityAbAttr, UserFieldBattlerTagImmunityAbAttr, BattlerTagImmunityAbAttr } from "../data/ability"; +import { Ability, AbAttr, BattleStatMultiplierAbAttr, BlockCritAbAttr, BonusCritAbAttr, BypassBurnDamageReductionAbAttr, FieldPriorityMoveImmunityAbAttr, IgnoreOpponentStatChangesAbAttr, MoveImmunityAbAttr, PreDefendFullHpEndureAbAttr, ReceivedMoveDamageMultiplierAbAttr, ReduceStatusEffectDurationAbAttr, StabBoostAbAttr, StatusEffectImmunityAbAttr, TypeImmunityAbAttr, WeightMultiplierAbAttr, allAbilities, applyAbAttrs, applyBattleStatMultiplierAbAttrs, applyPreApplyBattlerTagAbAttrs, applyPreAttackAbAttrs, applyPreDefendAbAttrs, applyPreSetStatusAbAttrs, UnsuppressableAbilityAbAttr, SuppressFieldAbilitiesAbAttr, NoFusionAbilityAbAttr, MultCritAbAttr, IgnoreTypeImmunityAbAttr, DamageBoostAbAttr, IgnoreTypeStatusEffectImmunityAbAttr, ConditionalCritAbAttr, applyFieldBattleStatMultiplierAbAttrs, FieldMultiplyBattleStatAbAttr, AddSecondStrikeAbAttr, IgnoreOpponentEvasionAbAttr, UserFieldStatusEffectImmunityAbAttr, UserFieldBattlerTagImmunityAbAttr, BattlerTagImmunityAbAttr, MoveTypeChangeAbAttr } from "../data/ability"; import PokemonData from "../system/pokemon-data"; import { BattlerIndex } from "../battle"; import { Mode } from "../ui/ui"; @@ -49,6 +49,7 @@ import { BerryType } from "#enums/berry-type"; import { Biome } from "#enums/biome"; import { Moves } from "#enums/moves"; import { Species } from "#enums/species"; +import { Challenges } from "#enums/challenges"; import { getPokemonNameWithAffix } from "#app/messages.js"; import { DamagePhase } from "#app/phases/damage-phase.js"; import { FaintPhase } from "#app/phases/faint-phase.js"; @@ -250,7 +251,9 @@ export default abstract class Pokemon extends Phaser.GameObjects.Container { this.shiny = false; } - this.calculateStats(); + if (!dataSource) { + this.calculateStats(); + } } @@ -694,7 +697,7 @@ export default abstract class Pokemon extends Phaser.GameObjects.Container { break; } } - applyAbAttrs(IgnoreOpponentStatChangesAbAttr, opponent, null, statLevel); + applyAbAttrs(IgnoreOpponentStatChangesAbAttr, opponent, null, false, statLevel); if (move) { applyMoveAttrs(IgnoreOpponentStatChangesAttr, this, opponent, move, statLevel); } @@ -978,12 +981,6 @@ export default abstract class Pokemon extends Phaser.GameObjects.Container { // this.scene potentially can be undefined for a fainted pokemon in doubles // use optional chaining to avoid runtime errors - if (forDefend && (this.getTag(GroundedTag) || this.scene?.arena.getTag(ArenaTagType.GRAVITY))) { - const flyingIndex = types.indexOf(Type.FLYING); - if (flyingIndex > -1) { - types.splice(flyingIndex, 1); - } - } if (!types.length) { // become UNKNOWN if no types are present types.push(Type.UNKNOWN); @@ -1128,10 +1125,10 @@ export default abstract class Pokemon extends Phaser.GameObjects.Container { const suppressed = new Utils.BooleanHolder(false); this.scene.getField(true).filter(p => p !== this).map(p => { if (p.getAbility().hasAttr(SuppressFieldAbilitiesAbAttr) && p.canApplyAbility()) { - p.getAbility().getAttrs(SuppressFieldAbilitiesAbAttr).map(a => a.apply(this, false, suppressed, [ability])); + p.getAbility().getAttrs(SuppressFieldAbilitiesAbAttr).map(a => a.apply(this, false, false, suppressed, [ability])); } if (p.getPassiveAbility().hasAttr(SuppressFieldAbilitiesAbAttr) && p.canApplyAbility(true)) { - p.getPassiveAbility().getAttrs(SuppressFieldAbilitiesAbAttr).map(a => a.apply(this, true, suppressed, [ability])); + p.getPassiveAbility().getAttrs(SuppressFieldAbilitiesAbAttr).map(a => a.apply(this, true, false, suppressed, [ability])); } }); if (suppressed.value) { @@ -1146,7 +1143,7 @@ export default abstract class Pokemon extends Phaser.GameObjects.Container { * effects which can affect whether an ability will be present or in effect, and both passive and * non-passive. This is the primary way to check whether a pokemon has a particular ability. * @param {Abilities} ability The ability to check for - * @param {boolean} canApply If false, it doesn't check whether the abiltiy is currently active + * @param {boolean} canApply If false, it doesn't check whether the ability is currently active * @param {boolean} ignoreOverride If true, it ignores ability changing effects * @returns {boolean} Whether the ability is present and active */ @@ -1183,7 +1180,7 @@ export default abstract class Pokemon extends Phaser.GameObjects.Container { getWeight(): number { const weight = new Utils.NumberHolder(this.species.weight); // This will trigger the ability overlay so only call this function when necessary - applyAbAttrs(WeightMultiplierAbAttr, this, null, weight); + applyAbAttrs(WeightMultiplierAbAttr, this, null, false, weight); return weight.value; } @@ -1214,70 +1211,103 @@ export default abstract class Pokemon extends Phaser.GameObjects.Container { } /** - * Calculates the effectiveness of a move against the Pokémon. - * - * @param source - The Pokémon using the move. - * @param move - The move being used. - * @returns The type damage multiplier or 1 if it's a status move + * Calculates the type of a move when used by this Pokemon after + * type-changing move and ability attributes have applied. + * @param move {@linkcode Move} The move being used. + * @param simulated If `true`, prevents showing abilities applied in this calculation. + * @returns the {@linkcode Type} of the move after attributes are applied */ - getMoveEffectiveness(source: Pokemon, move: PokemonMove): TypeDamageMultiplier { - if (move.getMove().category === MoveCategory.STATUS) { - return 1; - } + getMoveType(move: Move, simulated: boolean = true): Type { + const moveTypeHolder = new Utils.NumberHolder(move.type); - return this.getAttackMoveEffectiveness(source, move, !this.battleData?.abilityRevealed); + applyMoveAttrs(VariableMoveTypeAttr, this, null, move, moveTypeHolder); + applyPreAttackAbAttrs(MoveTypeChangeAbAttr, this, null, move, simulated, moveTypeHolder); + + return moveTypeHolder.value as Type; } + + /** - * Calculates the effectiveness of an attack move against the Pokémon. + * Calculates the effectiveness of a move against the Pokémon. * - * @param source - The attacking Pokémon. - * @param pokemonMove - The move being used by the attacking Pokémon. - * @param ignoreAbility - Whether to check for abilities that might affect type effectiveness or immunity. + * @param source {@linkcode Pokemon} The attacking Pokémon. + * @param move {@linkcode Move} The move being used by the attacking Pokémon. + * @param ignoreAbility Whether to ignore abilities that might affect type effectiveness or immunity (defaults to `false`). + * @param simulated Whether to apply abilities via simulated calls (defaults to `true`) + * @param cancelled {@linkcode Utils.BooleanHolder} Stores whether the move was cancelled by a non-type-based immunity. + * Currently only used by {@linkcode Pokemon.apply} to determine whether a "No effect" message should be shown. * @returns The type damage multiplier, indicating the effectiveness of the move */ - getAttackMoveEffectiveness(source: Pokemon, pokemonMove: PokemonMove, ignoreAbility: boolean = false): TypeDamageMultiplier { - const move = pokemonMove.getMove(); - const typeless = move.hasAttr(TypelessAttr); - const typeMultiplier = new Utils.NumberHolder(this.getAttackTypeEffectiveness(move, source)); - const cancelled = new Utils.BooleanHolder(false); - applyMoveAttrs(VariableMoveTypeMultiplierAttr, source, this, move, typeMultiplier); - if (!typeless && !ignoreAbility) { - applyPreDefendAbAttrs(TypeImmunityAbAttr, this, source, move, cancelled, typeMultiplier, true); + getMoveEffectiveness(source: Pokemon, move: Move, ignoreAbility: boolean = false, simulated: boolean = true, cancelled?: Utils.BooleanHolder): TypeDamageMultiplier { + if (move.hasAttr(TypelessAttr)) { + return 1; } - if (!cancelled.value && !ignoreAbility) { - applyPreDefendAbAttrs(MoveImmunityAbAttr, this, source, move, cancelled, typeMultiplier, true); + const moveType = source.getMoveType(move); + + const typeMultiplier = new Utils.NumberHolder((move.category !== MoveCategory.STATUS || move.hasAttr(RespectAttackTypeImmunityAttr)) + ? this.getAttackTypeEffectiveness(moveType, source, false, simulated) + : 1); + + applyMoveAttrs(VariableMoveTypeMultiplierAttr, source, this, move, typeMultiplier); + if (this.getTypes().find(t => move.isTypeImmune(source, this, t))) { + typeMultiplier.value = 0; } - return (!cancelled.value ? Number(typeMultiplier.value) : 0) as TypeDamageMultiplier; + const cancelledHolder = cancelled ?? new Utils.BooleanHolder(false); + if (!ignoreAbility) { + applyPreDefendAbAttrs(TypeImmunityAbAttr, this, source, move, cancelledHolder, simulated, typeMultiplier); + + if (!cancelledHolder.value) { + applyPreDefendAbAttrs(MoveImmunityAbAttr, this, source, move, cancelledHolder, simulated, typeMultiplier); + } + + if (!cancelledHolder.value) { + const defendingSidePlayField = this.isPlayer() ? this.scene.getPlayerField() : this.scene.getEnemyField(); + defendingSidePlayField.forEach((p) => applyPreDefendAbAttrs(FieldPriorityMoveImmunityAbAttr, p, source, move, cancelledHolder)); + } + } + + const immuneTags = this.findTags(tag => tag instanceof TypeImmuneTag && tag.immuneType === moveType); + for (const tag of immuneTags) { + if (move && !move.getAttrs(HitsTagAttr).some(attr => attr.tagType === tag.tagType)) { + typeMultiplier.value = 0; + break; + } + } + + return (!cancelledHolder.value ? typeMultiplier.value : 0) as TypeDamageMultiplier; } /** * Calculates the type effectiveness multiplier for an attack type - * @param moveOrType The move being used, or a type if the move is unknown - * @param source the Pokemon using the move + * @param moveType {@linkcode Type} the type of the move being used + * @param source {@linkcode Pokemon} the Pokemon using the move * @param ignoreStrongWinds whether or not this ignores strong winds (anticipation, forewarn, stealth rocks) * @param simulated tag to only apply the strong winds effect message when the move is used * @returns a multiplier for the type effectiveness */ - getAttackTypeEffectiveness(moveOrType: Move | Type, source?: Pokemon, ignoreStrongWinds: boolean = false, simulated: boolean = true): TypeDamageMultiplier { - const move = (moveOrType instanceof Move) - ? moveOrType - : undefined; - const moveType = (moveOrType instanceof Move) - ? move!.type // TODO: is this bang correct? - : moveOrType; - + getAttackTypeEffectiveness(moveType: Type, source?: Pokemon, ignoreStrongWinds: boolean = false, simulated: boolean = true): TypeDamageMultiplier { if (moveType === Type.STELLAR) { return this.isTerastallized() ? 2 : 1; } const types = this.getTypes(true, true); + const arena = this.scene.arena; + + // Handle flying v ground type immunity without removing flying type so effective types are still effective + // Related to https://github.com/pagefaultgames/pokerogue/issues/524 + if (moveType === Type.GROUND && (this.isGrounded() || arena.hasTag(ArenaTagType.GRAVITY))) { + const flyingIndex = types.indexOf(Type.FLYING); + if (flyingIndex > -1) { + types.splice(flyingIndex, 1); + } + } let multiplier = types.map(defType => { if (source) { const ignoreImmunity = new Utils.BooleanHolder(false); if (source.isActive(true) && source.hasAbilityWithAttr(IgnoreTypeImmunityAbAttr)) { - applyAbAttrs(IgnoreTypeImmunityAbAttr, source, ignoreImmunity, moveType, defType); + applyAbAttrs(IgnoreTypeImmunityAbAttr, source, ignoreImmunity, simulated, moveType, defType); } if (ignoreImmunity.value) { return 1; @@ -1288,26 +1318,20 @@ export default abstract class Pokemon extends Phaser.GameObjects.Container { return 1; } } - - return getTypeDamageMultiplier(moveType, defType); + const multiplier = new Utils.NumberHolder(getTypeDamageMultiplier(moveType, defType)); + applyChallenges(this.scene.gameMode, ChallengeType.TYPE_EFFECTIVENESS, multiplier); + return multiplier.value; }).reduce((acc, cur) => acc * cur, 1) as TypeDamageMultiplier; + const typeMultiplierAgainstFlying = new Utils.NumberHolder(getTypeDamageMultiplier(moveType, Type.FLYING)); + applyChallenges(this.scene.gameMode, ChallengeType.TYPE_EFFECTIVENESS, typeMultiplierAgainstFlying); // Handle strong winds lowering effectiveness of types super effective against pure flying - if (!ignoreStrongWinds && this.scene.arena.weather?.weatherType === WeatherType.STRONG_WINDS && !this.scene.arena.weather.isEffectSuppressed(this.scene) && this.isOfType(Type.FLYING) && getTypeDamageMultiplier(moveType, Type.FLYING) === 2) { + if (!ignoreStrongWinds && arena.weather?.weatherType === WeatherType.STRONG_WINDS && !arena.weather.isEffectSuppressed(this.scene) && this.isOfType(Type.FLYING) && typeMultiplierAgainstFlying.value === 2) { multiplier /= 2; if (!simulated) { this.scene.queueMessage(i18next.t("weather:strongWindsEffectMessage")); } } - - const immuneTags = this.findTags(tag => tag instanceof TypeImmuneTag && tag.immuneType === moveType); - for (const tag of immuneTags) { - if (move && !move.getAttrs(HitsTagAttr).some(attr => attr.tagType === tag.tagType)) { - multiplier = 0; - break; - } - } - return multiplier as TypeDamageMultiplier; } @@ -1443,7 +1467,7 @@ export default abstract class Pokemon extends Phaser.GameObjects.Container { * This causes problems when there are intentional duplicates (i.e. Smeargle with Sketch) */ if (levelMoves) { - this.getUniqueMoves(levelMoves,ret); + this.getUniqueMoves(levelMoves, ret); } return ret; @@ -1755,7 +1779,7 @@ export default abstract class Pokemon extends Phaser.GameObjects.Container { // Sqrt the weight of any damaging moves with overlapping types. This is about a 0.05 - 0.1 multiplier. // Other damaging moves 2x weight if 0-1 damaging moves, 0.5x if 2, 0.125x if 3. These weights double if STAB. // Status moves remain unchanged on weight, this encourages 1-2 - movePool = baseWeights.filter(m => !this.moveset.some(mo => m[0] === mo?.moveId)).map(m => [m[0], this.moveset.some(mo => mo?.getMove().category !== MoveCategory.STATUS && mo?.getMove().type === allMoves[m[0]].type) ? Math.ceil(Math.sqrt(m[1])) : allMoves[m[0]].category !== MoveCategory.STATUS ? Math.ceil(m[1]/Math.max(Math.pow(4, this.moveset.filter(mo => (mo?.getMove().power!) > 1).length)/8,0.5) * (this.isOfType(allMoves[m[0]].type) ? 2 : 1)) : m[1]]); // TODO: is this bang correct? + movePool = baseWeights.filter(m => !this.moveset.some(mo => m[0] === mo?.moveId)).map(m => [m[0], this.moveset.some(mo => mo?.getMove().category !== MoveCategory.STATUS && mo?.getMove().type === allMoves[m[0]].type) ? Math.ceil(Math.sqrt(m[1])) : allMoves[m[0]].category !== MoveCategory.STATUS ? Math.ceil(m[1]/Math.max(Math.pow(4, this.moveset.filter(mo => (mo?.getMove().power!) > 1).length)/8, 0.5) * (this.isOfType(allMoves[m[0]].type) ? 2 : 1)) : m[1]]); // TODO: is this bang correct? } else { // Non-trainer pokemon just use normal weights movePool = baseWeights.filter(m => !this.moveset.some(mo => m[0] === mo?.moveId)); } @@ -1918,9 +1942,9 @@ export default abstract class Pokemon extends Phaser.GameObjects.Container { const userAccuracyLevel = new Utils.IntegerHolder(this.summonData.battleStats[BattleStat.ACC]); const targetEvasionLevel = new Utils.IntegerHolder(target.summonData.battleStats[BattleStat.EVA]); - applyAbAttrs(IgnoreOpponentStatChangesAbAttr, target, null, userAccuracyLevel); - applyAbAttrs(IgnoreOpponentStatChangesAbAttr, this, null, targetEvasionLevel); - applyAbAttrs(IgnoreOpponentEvasionAbAttr, this, null, targetEvasionLevel); + applyAbAttrs(IgnoreOpponentStatChangesAbAttr, target, null, false, userAccuracyLevel); + applyAbAttrs(IgnoreOpponentStatChangesAbAttr, this, null, false, targetEvasionLevel); + applyAbAttrs(IgnoreOpponentEvasionAbAttr, this, null, false, targetEvasionLevel); applyMoveAttrs(IgnoreOpponentStatChangesAttr, this, target, sourceMove, targetEvasionLevel); this.scene.applyModifiers(TempBattleStatBoosterModifier, this.isPlayer(), TempBattleStat.ACC, userAccuracyLevel); @@ -1935,7 +1959,7 @@ export default abstract class Pokemon extends Phaser.GameObjects.Container { : 3 / (3 + Math.min(targetEvasionLevel.value - userAccuracyLevel.value, 6)); } - applyBattleStatMultiplierAbAttrs(BattleStatMultiplierAbAttr, this, BattleStat.ACC, accuracyMultiplier, sourceMove); + applyBattleStatMultiplierAbAttrs(BattleStatMultiplierAbAttr, this, BattleStat.ACC, accuracyMultiplier, false, sourceMove); const evasionMultiplier = new Utils.NumberHolder(1); applyBattleStatMultiplierAbAttrs(BattleStatMultiplierAbAttr, target, BattleStat.EVA, evasionMultiplier); @@ -1945,33 +1969,33 @@ export default abstract class Pokemon extends Phaser.GameObjects.Container { return accuracyMultiplier.value; } + /** + * Apply the results of a move to this pokemon + * @param {Pokemon} source The pokemon using the move + * @param {PokemonMove} battlerMove The move being used + * @returns {HitResult} The result of the attack + */ apply(source: Pokemon, move: Move): HitResult { let result: HitResult; const damage = new Utils.NumberHolder(0); const defendingSide = this.isPlayer() ? ArenaTagSide.PLAYER : ArenaTagSide.ENEMY; - const defendingSidePlayField = this.isPlayer() ? this.scene.getPlayerField() : this.scene.getEnemyField(); - const variableCategory = new Utils.IntegerHolder(move.category); + const variableCategory = new Utils.NumberHolder(move.category); applyMoveAttrs(VariableMoveCategoryAttr, source, this, move, variableCategory); const moveCategory = variableCategory.value as MoveCategory; - applyMoveAttrs(VariableMoveTypeAttr, source, this, move); - const types = this.getTypes(true, true); + /** The move's type after type-changing effects are applied */ + const moveType = source.getMoveType(move); + /** If `value` is `true`, cancels the move and suppresses "No Effect" messages */ const cancelled = new Utils.BooleanHolder(false); - const power = move.calculateBattlePower(source, this); - const typeless = move.hasAttr(TypelessAttr); - const typeMultiplier = new Utils.NumberHolder(!typeless && (moveCategory !== MoveCategory.STATUS || move.getAttrs(StatusMoveTypeImmunityAttr).find(attr => types.includes(attr.immuneType))) - ? this.getAttackTypeEffectiveness(move, source, false, false) - : 1); - applyMoveAttrs(VariableMoveTypeMultiplierAttr, source, this, move, typeMultiplier); - if (typeless) { - typeMultiplier.value = 1; - } - if (types.find(t => move.isTypeImmune(source, this, t))) { - typeMultiplier.value = 0; - } + /** + * The effectiveness of the move being used. Along with type matchups, this + * accounts for changes in effectiveness from the move's attributes and the + * abilities of both the source and this Pokemon. + */ + const typeMultiplier = this.getMoveEffectiveness(source, move, false, false, cancelled); switch (moveCategory) { case MoveCategory.PHYSICAL: @@ -1979,27 +2003,44 @@ export default abstract class Pokemon extends Phaser.GameObjects.Container { const isPhysical = moveCategory === MoveCategory.PHYSICAL; const sourceTeraType = source.getTeraType(); - if (!typeless) { - applyPreDefendAbAttrs(TypeImmunityAbAttr, this, source, move, cancelled, typeMultiplier); - applyMoveAttrs(NeutralDamageAgainstFlyingTypeMultiplierAttr, source, this, move, typeMultiplier); - } - if (!cancelled.value) { - applyPreDefendAbAttrs(MoveImmunityAbAttr, this, source, move, cancelled, typeMultiplier); - defendingSidePlayField.forEach((p) => applyPreDefendAbAttrs(FieldPriorityMoveImmunityAbAttr, p, source, move, cancelled, typeMultiplier)); - } + const power = move.calculateBattlePower(source, this); if (cancelled.value) { + // Cancelled moves fail silently source.stopMultiHit(this); - result = HitResult.NO_EFFECT; + return HitResult.NO_EFFECT; } else { - const typeBoost = source.findTag(t => t instanceof TypeBoostTag && t.boostedType === move.type) as TypeBoostTag; + const typeBoost = source.findTag(t => t instanceof TypeBoostTag && t.boostedType === moveType) as TypeBoostTag; if (typeBoost?.oneUse) { source.removeTag(typeBoost.tagType); } - const arenaAttackTypeMultiplier = new Utils.NumberHolder(this.scene.arena.getAttackTypeMultiplier(move.type, source.isGrounded())); + /** Combined damage multiplier from field effects such as weather, terrain, etc. */ + const arenaAttackTypeMultiplier = new Utils.NumberHolder(this.scene.arena.getAttackTypeMultiplier(moveType, source.isGrounded())); applyMoveAttrs(IgnoreWeatherTypeDebuffAttr, source, this, move, arenaAttackTypeMultiplier); + /** + * Whether or not this Pokemon is immune to the incoming move. + * Note that this isn't fully resolved in `getMoveEffectiveness` because + * of possible type-suppressing field effects (e.g. Desolate Land's effect on Water-type attacks). + */ + const isTypeImmune = (typeMultiplier * arenaAttackTypeMultiplier.value) === 0; + if (isTypeImmune) { + // Moves with no effect that were not cancelled queue a "no effect" message before failing + source.stopMultiHit(this); + result = (move.id === Moves.SHEER_COLD) + ? HitResult.IMMUNE + : HitResult.NO_EFFECT; + + if (result === HitResult.IMMUNE) { + this.scene.queueMessage(i18next.t("battle:hitResultImmune", { pokemonName: this.name })); + } else { + this.scene.queueMessage(i18next.t("battle:hitResultNoEffect", { pokemonName: getPokemonNameWithAffix(this) })); + } + + return result; + } + const glaiveRushModifier = new Utils.IntegerHolder(1); if (this.getTag(BattlerTagType.RECEIVE_DOUBLE_DAMAGE)) { glaiveRushModifier.value = 2; @@ -2008,7 +2049,7 @@ export default abstract class Pokemon extends Phaser.GameObjects.Container { const critOnly = new Utils.BooleanHolder(false); const critAlways = source.getTag(BattlerTagType.ALWAYS_CRIT); applyMoveAttrs(CritOnlyAttr, source, this, move, critOnly); - applyAbAttrs(ConditionalCritAbAttr, source, null, critOnly, this, move); + applyAbAttrs(ConditionalCritAbAttr, source, null, false, critOnly, this, move); if (critOnly.value || critAlways) { isCritical = true; } else { @@ -2018,7 +2059,7 @@ export default abstract class Pokemon extends Phaser.GameObjects.Container { this.scene.applyModifiers(TempBattleStatBoosterModifier, source.isPlayer(), TempBattleStat.CRIT, critLevel); const bonusCrit = new Utils.BooleanHolder(false); //@ts-ignore - if (applyAbAttrs(BonusCritAbAttr, source, null, bonusCrit)) { // TODO: resolve ts-ignore. This is a promise. Checking a promise is bogus. + if (applyAbAttrs(BonusCritAbAttr, source, null, false, bonusCrit)) { // TODO: resolve ts-ignore. This is a promise. Checking a promise is bogus. if (bonusCrit.value) { critLevel.value += 1; } @@ -2036,7 +2077,7 @@ export default abstract class Pokemon extends Phaser.GameObjects.Container { if (isCritical) { const noCritTag = this.scene.arena.getTagOnSide(NoCritTag, defendingSide); const blockCrit = new Utils.BooleanHolder(false); - applyAbAttrs(BlockCritAbAttr, this, null, blockCrit); + applyAbAttrs(BlockCritAbAttr, this, null, false, blockCrit); if (noCritTag || blockCrit.value) { isCritical = false; } @@ -2044,29 +2085,29 @@ export default abstract class Pokemon extends Phaser.GameObjects.Container { const sourceAtk = new Utils.IntegerHolder(source.getBattleStat(isPhysical ? Stat.ATK : Stat.SPATK, this, undefined, isCritical)); const targetDef = new Utils.IntegerHolder(this.getBattleStat(isPhysical ? Stat.DEF : Stat.SPDEF, source, move, isCritical)); const criticalMultiplier = new Utils.NumberHolder(isCritical ? 1.5 : 1); - applyAbAttrs(MultCritAbAttr, source, null, criticalMultiplier); + applyAbAttrs(MultCritAbAttr, source, null, false, criticalMultiplier); const screenMultiplier = new Utils.NumberHolder(1); if (!isCritical) { this.scene.arena.applyTagsForSide(WeakenMoveScreenTag, defendingSide, move.category, this.scene.currentBattle.double, screenMultiplier); } - const isTypeImmune = (typeMultiplier.value * arenaAttackTypeMultiplier.value) === 0; const sourceTypes = source.getTypes(); - const matchesSourceType = sourceTypes[0] === move.type || (sourceTypes.length > 1 && sourceTypes[1] === move.type); + const matchesSourceType = sourceTypes[0] === moveType || (sourceTypes.length > 1 && sourceTypes[1] === moveType); const stabMultiplier = new Utils.NumberHolder(1); if (sourceTeraType === Type.UNKNOWN && matchesSourceType) { stabMultiplier.value += 0.5; - } else if (sourceTeraType !== Type.UNKNOWN && sourceTeraType === move.type) { + } else if (sourceTeraType !== Type.UNKNOWN && sourceTeraType === moveType) { stabMultiplier.value += 0.5; } - applyAbAttrs(StabBoostAbAttr, source, null, stabMultiplier); + applyAbAttrs(StabBoostAbAttr, source, null, false, stabMultiplier); if (sourceTeraType !== Type.UNKNOWN && matchesSourceType) { stabMultiplier.value = Math.min(stabMultiplier.value + 0.5, 2.25); } - const targetCount = getMoveTargets(source, move.id).targets.length; - const targetMultiplier = targetCount > 1 ? 0.75 : 1; // 25% damage debuff on multi-target hits (even if it's immune) + // 25% damage debuff on moves hitting more than one non-fainted target (regardless of immunities) + const { targets, multiple } = getMoveTargets(source, move.id); + const targetMultiplier = (multiple && targets.length > 1) ? 0.75 : 1; applyMoveAttrs(VariableAtkAttr, source, this, move, sourceAtk); applyMoveAttrs(VariableDefAttr, source, this, move, targetDef); @@ -2077,14 +2118,14 @@ export default abstract class Pokemon extends Phaser.GameObjects.Container { numTargets = effectPhase.getTargets().length; } const twoStrikeMultiplier = new Utils.NumberHolder(1); - applyPreAttackAbAttrs(AddSecondStrikeAbAttr, source, this, move, numTargets, new Utils.IntegerHolder(0), twoStrikeMultiplier); + applyPreAttackAbAttrs(AddSecondStrikeAbAttr, source, this, move, false, numTargets, new Utils.IntegerHolder(0), twoStrikeMultiplier); if (!isTypeImmune) { const levelMultiplier = (2 * source.level / 5 + 2); const randomMultiplier = ((this.scene.randBattleSeedInt(16) + 85) / 100); - damage.value = Math.ceil((((levelMultiplier * power * sourceAtk.value / targetDef.value) / 50) + 2) + damage.value = Utils.toDmgValue((((levelMultiplier * power * sourceAtk.value / targetDef.value) / 50) + 2) * stabMultiplier.value - * typeMultiplier.value + * typeMultiplier * arenaAttackTypeMultiplier.value * screenMultiplier.value * twoStrikeMultiplier.value @@ -2096,14 +2137,14 @@ export default abstract class Pokemon extends Phaser.GameObjects.Container { if (isPhysical && source.status && source.status.effect === StatusEffect.BURN) { if (!move.hasAttr(BypassBurnDamageReductionAttr)) { const burnDamageReductionCancelled = new Utils.BooleanHolder(false); - applyAbAttrs(BypassBurnDamageReductionAbAttr, source, burnDamageReductionCancelled); + applyAbAttrs(BypassBurnDamageReductionAbAttr, source, burnDamageReductionCancelled, false); if (!burnDamageReductionCancelled.value) { - damage.value = Math.floor(damage.value / 2); + damage.value = Utils.toDmgValue(damage.value / 2); } } } - applyPreAttackAbAttrs(DamageBoostAbAttr, source, this, move, damage); + applyPreAttackAbAttrs(DamageBoostAbAttr, source, this, move, false, damage); /** * For each {@link HitsTagAttr} the move has, doubles the damage of the move if: @@ -2118,8 +2159,8 @@ export default abstract class Pokemon extends Phaser.GameObjects.Container { }); } - if (this.scene.arena.terrain?.terrainType === TerrainType.MISTY && this.isGrounded() && move.type === Type.DRAGON) { - damage.value = Math.floor(damage.value / 2); + if (this.scene.arena.terrain?.terrainType === TerrainType.MISTY && this.isGrounded() && moveType === Type.DRAGON) { + damage.value = Utils.toDmgValue(damage.value / 2); } const fixedDamage = new Utils.IntegerHolder(0); @@ -2132,22 +2173,18 @@ export default abstract class Pokemon extends Phaser.GameObjects.Container { result = result!; // telling TS compiler that result is defined! if (!result) { - if (!typeMultiplier.value) { - result = move.id === Moves.SHEER_COLD ? HitResult.IMMUNE : HitResult.NO_EFFECT; + const isOneHitKo = new Utils.BooleanHolder(false); + applyMoveAttrs(OneHitKOAttr, source, this, move, isOneHitKo); + if (isOneHitKo.value) { + result = HitResult.ONE_HIT_KO; + isCritical = false; + damage.value = this.hp; + } else if (typeMultiplier >= 2) { + result = HitResult.SUPER_EFFECTIVE; + } else if (typeMultiplier >= 1) { + result = HitResult.EFFECTIVE; } else { - const isOneHitKo = new Utils.BooleanHolder(false); - applyMoveAttrs(OneHitKOAttr, source, this, move, isOneHitKo); - if (isOneHitKo.value) { - result = HitResult.ONE_HIT_KO; - isCritical = false; - damage.value = this.hp; - } else if (typeMultiplier.value >= 2) { - result = HitResult.SUPER_EFFECTIVE; - } else if (typeMultiplier.value >= 1) { - result = HitResult.EFFECTIVE; - } else { - result = HitResult.NOT_VERY_EFFECTIVE; - } + result = HitResult.NOT_VERY_EFFECTIVE; } } @@ -2161,7 +2198,7 @@ export default abstract class Pokemon extends Phaser.GameObjects.Container { this.scene.applyModifiers(EnemyDamageReducerModifier, false, damage); } - applyPreDefendAbAttrs(ReceivedMoveDamageMultiplierAbAttr, this, source, move, cancelled, damage); + applyPreDefendAbAttrs(ReceivedMoveDamageMultiplierAbAttr, this, source, move, cancelled, false, damage); } // This attribute may modify damage arbitrarily, so be careful about changing its order of application. @@ -2174,7 +2211,7 @@ export default abstract class Pokemon extends Phaser.GameObjects.Container { if (damage.value) { if (this.isFullHp()) { - applyPreDefendAbAttrs(PreDefendFullHpEndureAbAttr, this, source, move, cancelled, damage); + applyPreDefendAbAttrs(PreDefendFullHpEndureAbAttr, this, source, move, cancelled, false, damage); } else if (!this.isPlayer() && damage.value >= this.hp) { this.scene.applyModifiers(EnemyEndureChanceModifier, false, this); } @@ -2214,15 +2251,13 @@ export default abstract class Pokemon extends Phaser.GameObjects.Container { case HitResult.NOT_VERY_EFFECTIVE: this.scene.queueMessage(i18next.t("battle:hitResultNotVeryEffective")); break; - case HitResult.NO_EFFECT: - this.scene.queueMessage(i18next.t("battle:hitResultNoEffect", { pokemonName: getPokemonNameWithAffix(this) })); - break; - case HitResult.IMMUNE: - this.scene.queueMessage(`${this.name} is unaffected!`); - break; case HitResult.ONE_HIT_KO: this.scene.queueMessage(i18next.t("battle:hitResultOneHitKO")); break; + case HitResult.IMMUNE: + case HitResult.NO_EFFECT: + console.error("Unhandled move immunity!"); + break; } } @@ -2234,23 +2269,15 @@ export default abstract class Pokemon extends Phaser.GameObjects.Container { } if (damage) { - const attacker = this.scene.getPokemonById(source.id)!; // TODO: is this bang correct? - destinyTag?.lapse(attacker, BattlerTagLapseType.CUSTOM); + destinyTag?.lapse(source, BattlerTagLapseType.CUSTOM); } } break; case MoveCategory.STATUS: - if (!typeless) { - applyPreDefendAbAttrs(TypeImmunityAbAttr, this, source, move, cancelled, typeMultiplier); - } - if (!cancelled.value) { - applyPreDefendAbAttrs(MoveImmunityAbAttr, this, source, move, cancelled, typeMultiplier); - defendingSidePlayField.forEach((p) => applyPreDefendAbAttrs(FieldPriorityMoveImmunityAbAttr, p, source, move, cancelled, typeMultiplier)); - } - if (!typeMultiplier.value) { + if (!cancelled.value && typeMultiplier === 0) { this.scene.queueMessage(i18next.t("battle:hitResultNoEffect", { pokemonName: getPokemonNameWithAffix(this) })); } - result = cancelled.value || !typeMultiplier.value ? HitResult.NO_EFFECT : HitResult.STATUS; + result = (typeMultiplier === 0) ? HitResult.NO_EFFECT : HitResult.STATUS; break; } @@ -2337,6 +2364,22 @@ export default abstract class Pokemon extends Phaser.GameObjects.Container { return maxForms.includes(this.getFormKey()) || (!!this.getFusionFormKey() && maxForms.includes(this.getFusionFormKey()!)); } + canAddTag(tagType: BattlerTagType): boolean { + if (this.getTag(tagType)) { + return false; + } + + const stubTag = new BattlerTag(tagType, 0, 0); + + const cancelled = new Utils.BooleanHolder(false); + applyPreApplyBattlerTagAbAttrs(BattlerTagImmunityAbAttr, this, stubTag, cancelled, true); + + const userField = this.getAlliedField(); + userField.forEach(pokemon => applyPreApplyBattlerTagAbAttrs(UserFieldBattlerTagImmunityAbAttr, pokemon, stubTag, cancelled, true)); + + return !cancelled.value; + } + addTag(tagType: BattlerTagType, turnCount: integer = 0, sourceMove?: Moves, sourceId?: integer): boolean { const existingTag = this.getTag(tagType); if (existingTag) { @@ -2546,7 +2589,7 @@ export default abstract class Pokemon extends Phaser.GameObjects.Container { return this.fusionFaintCry(callback); } - const key = this.getSpeciesForm().getCryKey(this.formIndex); + const key = `cry/${this.getSpeciesForm().getCryKey(this.formIndex)}`; //eslint-disable-next-line @typescript-eslint/no-unused-vars let i = 0; let rate = 0.85; @@ -2604,7 +2647,7 @@ export default abstract class Pokemon extends Phaser.GameObjects.Container { } private fusionFaintCry(callback: Function): void { - const key = this.getSpeciesForm().getCryKey(this.formIndex); + const key = `cry/${this.getSpeciesForm().getCryKey(this.formIndex)}`; let i = 0; let rate = 0.85; const cry = this.scene.playSound(key, { rate: rate }) as AnySound; @@ -2612,7 +2655,8 @@ export default abstract class Pokemon extends Phaser.GameObjects.Container { const tintSprite = this.getTintSprite(); let duration = cry.totalDuration * 1000; - let fusionCry = this.scene.playSound(this.getFusionSpeciesForm().getCryKey(this.fusionFormIndex), { rate: rate }) as AnySound; + const fusionCryKey = `cry/${this.getFusionSpeciesForm().getCryKey(this.fusionFormIndex)}`; + let fusionCry = this.scene.playSound(fusionCryKey, { rate: rate }) as AnySound; fusionCry.stop(); duration = Math.min(duration, fusionCry.totalDuration * 1000); fusionCry.destroy(); @@ -2656,7 +2700,7 @@ export default abstract class Pokemon extends Phaser.GameObjects.Container { } if (i === transitionIndex) { SoundFade.fadeOut(this.scene, cry, Utils.fixedInt(Math.ceil((duration / rate) * 0.2))); - fusionCry = this.scene.playSound(this.getFusionSpeciesForm().getCryKey(this.fusionFormIndex), Object.assign({ seek: Math.max(fusionCry.totalDuration * 0.4, 0), rate: rate })); + fusionCry = this.scene.playSound(fusionCryKey, Object.assign({ seek: Math.max(fusionCry.totalDuration * 0.4, 0), rate: rate })); SoundFade.fadeIn(this.scene, fusionCry, Utils.fixedInt(Math.ceil((duration / rate) * 0.2)), this.scene.masterVolume * this.scene.seVolume, 0); } rate *= 0.99; @@ -2723,7 +2767,7 @@ export default abstract class Pokemon extends Phaser.GameObjects.Container { // Check if the source Pokemon has an ability that cancels the Poison/Toxic immunity const cancelImmunity = new Utils.BooleanHolder(false); if (sourcePokemon) { - applyAbAttrs(IgnoreTypeStatusEffectImmunityAbAttr, sourcePokemon, cancelImmunity, effect, defType); + applyAbAttrs(IgnoreTypeStatusEffectImmunityAbAttr, sourcePokemon, cancelImmunity, false, effect, defType); if (cancelImmunity.value) { return false; } @@ -2795,7 +2839,7 @@ export default abstract class Pokemon extends Phaser.GameObjects.Container { if (effect === StatusEffect.SLEEP) { statusCureTurn = new Utils.IntegerHolder(this.randSeedIntRange(2, 4)); - applyAbAttrs(ReduceStatusEffectDurationAbAttr, this, null, effect, statusCureTurn); + applyAbAttrs(ReduceStatusEffectDurationAbAttr, this, null, false, effect, statusCureTurn); this.setFrameRate(4); @@ -2971,7 +3015,7 @@ export default abstract class Pokemon extends Phaser.GameObjects.Container { sparkle(): void { if (this.shinySparkle) { this.shinySparkle.play(`sparkle${this.variant ? `_${this.variant + 1}` : ""}`); - this.scene.playSound("sparkle"); + this.scene.playSound("se/sparkle"); } } @@ -3429,8 +3473,8 @@ export class PlayerPokemon extends Pokemon { pokemon.resetTurnData(); pokemon.resetStatus(); - pokemon.heal(Math.min(Math.max(Math.ceil(Math.floor(0.5 * pokemon.getMaxHp())), 1), pokemon.getMaxHp())); - this.scene.queueMessage(`${pokemon.name} was revived!`,0,true); + pokemon.heal(Math.min(Utils.toDmgValue(0.5 * pokemon.getMaxHp()), pokemon.getMaxHp())); + this.scene.queueMessage(i18next.t("moveTriggers:revivalBlessing", {pokemonName: pokemon.name}), 0, true); if (this.scene.currentBattle.double && this.scene.getParty().length > 1) { const allyPokemon = this.getAlly(); @@ -3720,6 +3764,18 @@ export class EnemyPokemon extends Pokemon { this.status = new Status(Overrides.OPP_STATUS_OVERRIDE); } + if (Overrides.OPP_GENDER_OVERRIDE) { + this.gender = Overrides.OPP_GENDER_OVERRIDE; + } + + const speciesId = this.species.speciesId; + + if (speciesId in Overrides.OPP_FORM_OVERRIDES + && Overrides.OPP_FORM_OVERRIDES[speciesId] + && this.species.forms[Overrides.OPP_FORM_OVERRIDES[speciesId]]) { + this.formIndex = Overrides.OPP_FORM_OVERRIDES[speciesId] ?? 0; + } + if (!dataSource) { this.generateAndPopulateMoveset(); @@ -3792,7 +3848,7 @@ export class EnemyPokemon extends Pokemon { this.moveset = (formIndex !== undefined ? formIndex : this.formIndex) ? [ new PokemonMove(Moves.DYNAMAX_CANNON), - new PokemonMove(Moves.SLUDGE_BOMB), + new PokemonMove(Moves.CROSS_POISON), new PokemonMove(Moves.FLAMETHROWER), new PokemonMove(Moves.RECOVER, 0, -4) ] @@ -3802,6 +3858,9 @@ export class EnemyPokemon extends Pokemon { new PokemonMove(Moves.FLAMETHROWER), new PokemonMove(Moves.COSMIC_POWER) ]; + if (this.scene.gameMode.hasChallenge(Challenges.INVERSE_BATTLE)) { + this.moveset[2] = new PokemonMove(Moves.THUNDERBOLT); + } break; default: super.generateAndPopulateMoveset(); @@ -3891,7 +3950,7 @@ export class EnemyPokemon extends Pokemon { * Attack moves are given extra multipliers to their base benefit score based on * the move's type effectiveness against the target and whether the move is a STAB move. */ - const effectiveness = target.getAttackMoveEffectiveness(this, pokemonMove); + const effectiveness = target.getMoveEffectiveness(this, move, !target.battleData?.abilityRevealed); if (target.isPlayer() !== this.isPlayer()) { targetScore *= effectiveness; if (this.isOfType(move.type)) { @@ -4356,7 +4415,7 @@ export class PokemonMove { } getMovePp(): integer { - return this.getMove().pp + this.ppUp * Math.max(Math.floor(this.getMove().pp / 5), 1); + return this.getMove().pp + this.ppUp * Utils.toDmgValue(this.getMove().pp / 5); } getPpRatio(): number { diff --git a/src/field/trainer.ts b/src/field/trainer.ts index 1348749d964..02827d0d69d 100644 --- a/src/field/trainer.ts +++ b/src/field/trainer.ts @@ -75,7 +75,7 @@ export default class Trainer extends Phaser.GameObjects.Container { console.log(Object.keys(trainerPartyTemplates)[Object.values(trainerPartyTemplates).indexOf(this.getPartyTemplate())]); const getSprite = (hasShadow?: boolean, forceFemale?: boolean) => { - const ret = this.scene.addFieldSprite(0, 0, this.config.getSpriteKey(variant === TrainerVariant.FEMALE || forceFemale,this.isDouble())); + const ret = this.scene.addFieldSprite(0, 0, this.config.getSpriteKey(variant === TrainerVariant.FEMALE || forceFemale, this.isDouble())); ret.setOrigin(0.5, 1); ret.setPipeline(this.scene.spritePipeline, {tone: [0.0, 0.0, 0.0, 0.0], hasShadow: !!hasShadow}); return ret; @@ -106,7 +106,7 @@ export default class Trainer extends Phaser.GameObjects.Container { } getKey(forceFemale?: boolean): string { - return this.config.getSpriteKey(this.variant === TrainerVariant.FEMALE || forceFemale,this.isDouble()); + return this.config.getSpriteKey(this.variant === TrainerVariant.FEMALE || forceFemale, this.isDouble()); } /** @@ -359,12 +359,12 @@ export default class Trainer extends Phaser.GameObjects.Container { let species = useNewSpeciesPool ? getPokemonSpecies(newSpeciesPool[Math.floor(Math.random() * newSpeciesPool.length)]) : template.isSameSpecies(index) && index > offset - ? getPokemonSpecies(battle.enemyParty[offset].species.getTrainerSpeciesForLevel(level, false, template.getStrength(offset))) + ? getPokemonSpecies(battle.enemyParty[offset].species.getTrainerSpeciesForLevel(level, false, template.getStrength(offset), this.scene.currentBattle.waveIndex)) : this.genNewPartyMemberSpecies(level, strength); // If the species is from newSpeciesPool, we need to adjust it based on the level and strength if (newSpeciesPool) { - species = getPokemonSpecies(species.getSpeciesForLevel(level, true, true, strength)); + species = getPokemonSpecies(species.getSpeciesForLevel(level, true, true, strength, this.scene.currentBattle.waveIndex)); } ret = this.scene.addEnemyPokemon(species, level, !this.isDouble() || !(index % 2) ? TrainerSlot.TRAINER : TrainerSlot.TRAINER_PARTNER); @@ -393,7 +393,7 @@ export default class Trainer extends Phaser.GameObjects.Container { species = this.scene.randomSpecies(battle.waveIndex, level, false, this.config.speciesFilter); } - let ret = getPokemonSpecies(species.getTrainerSpeciesForLevel(level, true, strength)); + let ret = getPokemonSpecies(species.getTrainerSpeciesForLevel(level, true, strength, this.scene.currentBattle.waveIndex)); let retry = false; console.log(ret.getName()); @@ -412,7 +412,7 @@ export default class Trainer extends Phaser.GameObjects.Container { console.log("Attempting reroll of species evolution to fit specialty type..."); let evoAttempt = 0; while (retry && evoAttempt++ < 10) { - ret = getPokemonSpecies(species.getTrainerSpeciesForLevel(level, true, strength)); + ret = getPokemonSpecies(species.getTrainerSpeciesForLevel(level, true, strength, this.scene.currentBattle.waveIndex)); console.log(ret.name); if (this.config.specialtyTypes.find(t => ret.isOfType(t))) { retry = false; diff --git a/src/inputs-controller.ts b/src/inputs-controller.ts index 7b0cb9cb050..652e3d58062 100644 --- a/src/inputs-controller.ts +++ b/src/inputs-controller.ts @@ -51,21 +51,6 @@ export interface InterfaceConfig { const repeatInputDelayMillis = 250; -// Phaser.Input.Gamepad.GamepadPlugin#refreshPads -declare module "phaser" { - namespace Input { - namespace Gamepad { - interface GamepadPlugin { - /** - * Refreshes the list of connected Gamepads. - * This is called automatically when a gamepad is connected or disconnected, and during the update loop. - */ - refreshPads(): void; - } - } - } -} - /** * Manages and handles all input controls for the game, including keyboard and gamepad interactions. * diff --git a/src/loading-scene.ts b/src/loading-scene.ts index 52472ed57b1..b086b0cb002 100644 --- a/src/loading-scene.ts +++ b/src/loading-scene.ts @@ -282,8 +282,9 @@ export class LoadingScene extends SceneBase { this.loadAtlas("xbox", "inputs"); this.loadAtlas("keyboard", "inputs"); - this.loadSe("select"); - this.loadSe("menu_open"); + this.loadSe("select", "ui"); + this.loadSe("menu_open", "ui"); + this.loadSe("error", "ui"); this.loadSe("hit"); this.loadSe("hit_strong"); this.loadSe("hit_weak"); @@ -303,7 +304,6 @@ export class LoadingScene extends SceneBase { this.loadSe("upgrade"); this.loadSe("buy"); this.loadSe("achv"); - this.loadSe("error"); this.loadSe("pb_rel"); this.loadSe("pb_throw"); @@ -342,8 +342,8 @@ export class LoadingScene extends SceneBase { this.loadLoadingScreen(); - initVouchers(); initAchievements(); + initVouchers(); initStatsKeys(); initPokemonPrevolutions(); initBiomes(); @@ -461,7 +461,7 @@ export class LoadingScene extends SceneBase { intro.play(); }); - this.load.on(this.LOAD_EVENTS.PROGRESS , (progress: number) => { + this.load.on(this.LOAD_EVENTS.PROGRESS, (progress: number) => { percentText.setText(`${Math.floor(progress * 100)}%`); progressBar.clear(); progressBar.fillStyle(0xffffff, 0.8); diff --git a/src/locales/ca_ES/ability-trigger.json b/src/locales/ca_ES/ability-trigger.json new file mode 100644 index 00000000000..9e26dfeeb6e --- /dev/null +++ b/src/locales/ca_ES/ability-trigger.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/src/locales/ca_ES/ability-trigger.ts b/src/locales/ca_ES/ability-trigger.ts deleted file mode 100644 index 2bdd17baa56..00000000000 --- a/src/locales/ca_ES/ability-trigger.ts +++ /dev/null @@ -1,64 +0,0 @@ -import { SimpleTranslationEntries } from "#app/interfaces/locales"; - -export const abilityTriggers: SimpleTranslationEntries = { - "blockRecoilDamage": "{{pokemonName}}'s {{abilityName}}\nprotected it from recoil!", - "badDreams": "{{pokemonName}} is tormented!", - "costar": "{{pokemonName}} copied {{allyName}}'s stat changes!", - "iceFaceAvoidedDamage": "{{pokemonName}} avoided\ndamage with {{abilityName}}!", - "perishBody": "{{pokemonName}}'s {{abilityName}}\nwill faint both pokemon in 3 turns!", - "poisonHeal": "{{pokemonName}}'s {{abilityName}}\nrestored its HP a little!", - "trace": "{{pokemonName}} copied {{targetName}}'s\n{{abilityName}}!", - "windPowerCharged": "Being hit by {{moveName}} charged {{pokemonName}} with power!", - "quickDraw": "{{pokemonName}} can act faster than normal, thanks to its Quick Draw!", - "disguiseAvoidedDamage" : "{{pokemonNameWithAffix}}'s disguise was busted!", - "blockItemTheft": "{{pokemonNameWithAffix}}'s {{abilityName}}\nprevents item theft!", - "typeImmunityHeal": "{{pokemonNameWithAffix}}'s {{abilityName}}\nrestored its HP a little!", - "nonSuperEffectiveImmunity": "{{pokemonNameWithAffix}} avoided damage\nwith {{abilityName}}!", - "postDefendDisguise": "{{pokemonNameWithAffix}}'s disguise was busted!", - "moveImmunity": "It doesn't affect {{pokemonNameWithAffix}}!", - "reverseDrain": "{{pokemonNameWithAffix}} sucked up the liquid ooze!", - "postDefendTypeChange": "{{pokemonNameWithAffix}}'s {{abilityName}}\nmade it the {{typeName}} type!", - "postDefendContactDamage": "{{pokemonNameWithAffix}}'s {{abilityName}}\nhurt its attacker!", - "postDefendAbilitySwap": "{{pokemonNameWithAffix}} swapped\nabilities with its target!", - "postDefendAbilityGive": "{{pokemonNameWithAffix}} gave its target\n{{abilityName}}!", - "postDefendMoveDisable": "{{pokemonNameWithAffix}}'s {{moveName}}\nwas disabled!", - "pokemonTypeChange": "{{pokemonNameWithAffix}} transformed into the {{moveType}} type!", - "postAttackStealHeldItem": "{{pokemonNameWithAffix}} stole\n{{defenderName}}'s {{stolenItemType}}!", - "postDefendStealHeldItem": "{{pokemonNameWithAffix}} stole\n{{attackerName}}'s {{stolenItemType}}!", - "copyFaintedAllyAbility": "{{pokemonNameWithAffix}}'s {{abilityName}} was taken over!", - "intimidateImmunity": "{{pokemonNameWithAffix}}'s {{abilityName}} prevented it from being Intimidated!", - "postSummonAllyHeal": "{{pokemonNameWithAffix}} drank down all the\nmatcha that {{pokemonName}} made!", - "postSummonClearAllyStats": "{{pokemonNameWithAffix}}'s stat changes\nwere removed!", - "postSummonTransform": "{{pokemonNameWithAffix}} transformed\ninto {{targetName}}!", - "protectStat": "{{pokemonNameWithAffix}}'s {{abilityName}}\nprevents lowering its {{statName}}!", - "statusEffectImmunityWithName": "{{pokemonNameWithAffix}}'s {{abilityName}}\nprevents {{statusEffectName}}!", - "statusEffectImmunity": "{{pokemonNameWithAffix}}'s {{abilityName}}\nprevents status problems!", - "battlerTagImmunity": "{{pokemonNameWithAffix}}'s {{abilityName}}\nprevents {{battlerTagName}}!", - "forewarn": "{{pokemonNameWithAffix}} was forewarned about {{moveName}}!", - "frisk": "{{pokemonNameWithAffix}} frisked {{opponentName}}'s {{opponentAbilityName}}!", - "postWeatherLapseHeal": "{{pokemonNameWithAffix}}'s {{abilityName}}\nrestored its HP a little!", - "postWeatherLapseDamage": "{{pokemonNameWithAffix}} is hurt\nby its {{abilityName}}!", - "postTurnLootCreateEatenBerry": "{{pokemonNameWithAffix}} harvested one {{berryName}}!", - "postTurnHeal": "{{pokemonNameWithAffix}}'s {{abilityName}}\nrestored its HP a little!", - "fetchBall": "{{pokemonNameWithAffix}} found a\n{{pokeballName}}!", - "healFromBerryUse": "{{pokemonNameWithAffix}}'s {{abilityName}}\nrestored its HP!", - "arenaTrap": "{{pokemonNameWithAffix}}'s {{abilityName}}\nprevents switching!", - "postBattleLoot": "{{pokemonNameWithAffix}} picked up\n{{itemName}}!", - "postFaintContactDamage": "{{pokemonNameWithAffix}}'s {{abilityName}}\nhurt its attacker!", - "postFaintHpDamage": "{{pokemonNameWithAffix}}'s {{abilityName}}\nhurt its attacker!", - "postSummonPressure": "{{pokemonNameWithAffix}} is exerting its Pressure!", - "postSummonMoldBreaker": "{{pokemonNameWithAffix}} breaks the mold!", - "postSummonAnticipation": "{{pokemonNameWithAffix}} shuddered!", - "postSummonTurboblaze": "{{pokemonNameWithAffix}} is radiating a blazing aura!", - "postSummonTeravolt": "{{pokemonNameWithAffix}} is radiating a bursting aura!", - "postSummonDarkAura": "{{pokemonNameWithAffix}} is radiating a Dark Aura!", - "postSummonFairyAura": "{{pokemonNameWithAffix}} is radiating a Fairy Aura!", - "postSummonNeutralizingGas": "{{pokemonNameWithAffix}}'s Neutralizing Gas filled the area!", - "postSummonAsOneGlastrier": "{{pokemonNameWithAffix}} has two Abilities!", - "postSummonAsOneSpectrier": "{{pokemonNameWithAffix}} has two Abilities!", - "postSummonVesselOfRuin": "{{pokemonNameWithAffix}}'s Vessel of Ruin lowered the {{statName}}\nof all surrounding Pokémon!", - "postSummonSwordOfRuin": "{{pokemonNameWithAffix}}'s Sword of Ruin lowered the {{statName}}\nof all surrounding Pokémon!", - "postSummonTabletsOfRuin": "{{pokemonNameWithAffix}}'s Tablets of Ruin lowered the {{statName}}\nof all surrounding Pokémon!", - "postSummonBeadsOfRuin": "{{pokemonNameWithAffix}}'s Beads of Ruin lowered the {{statName}}\nof all surrounding Pokémon!", - "preventBerryUse": "{{pokemonNameWithAffix}} is too\nnervous to eat berries!", -} as const; diff --git a/src/locales/ca_ES/ability.json b/src/locales/ca_ES/ability.json new file mode 100644 index 00000000000..9e26dfeeb6e --- /dev/null +++ b/src/locales/ca_ES/ability.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/src/locales/ca_ES/ability.ts b/src/locales/ca_ES/ability.ts deleted file mode 100644 index 7e81f90afff..00000000000 --- a/src/locales/ca_ES/ability.ts +++ /dev/null @@ -1,1244 +0,0 @@ -import { AbilityTranslationEntries } from "#app/interfaces/locales.js"; - -export const ability: AbilityTranslationEntries = { - stench: { - name: "Stench", - description: "By releasing stench when attacking, this Pokémon may cause the target to flinch.", - }, - drizzle: { - name: "Drizzle", - description: "The Pokémon makes it rain when it enters a battle.", - }, - speedBoost: { - name: "Speed Boost", - description: "Its Speed stat is boosted every turn.", - }, - battleArmor: { - name: "Battle Armor", - description: "Hard armor protects the Pokémon from critical hits.", - }, - sturdy: { - name: "Sturdy", - description: "It cannot be knocked out with one hit. One-hit KO moves cannot knock it out, either.", - }, - damp: { - name: "Damp", - description: "Prevents the use of explosive moves, such as Self-Destruct, by dampening its surroundings.", - }, - limber: { - name: "Limber", - description: "Its limber body protects the Pokémon from paralysis.", - }, - sandVeil: { - name: "Sand Veil", - description: "Boosts the Pokémon's evasiveness in a sandstorm.", - }, - static: { - name: "Static", - description: "The Pokémon is charged with static electricity, so contact with it may cause paralysis.", - }, - voltAbsorb: { - name: "Volt Absorb", - description: "Restores HP if hit by an Electric-type move instead of taking damage.", - }, - waterAbsorb: { - name: "Water Absorb", - description: "Restores HP if hit by a Water-type move instead of taking damage.", - }, - oblivious: { - name: "Oblivious", - description: "The Pokémon is oblivious, and that keeps it from being infatuated or falling for taunts.", - }, - cloudNine: { - name: "Cloud Nine", - description: "Eliminates the effects of weather.", - }, - compoundEyes: { - name: "Compound Eyes", - description: "The Pokémon's compound eyes boost its accuracy.", - }, - insomnia: { - name: "Insomnia", - description: "The Pokémon is suffering from insomnia and cannot fall asleep.", - }, - colorChange: { - name: "Color Change", - description: "The Pokémon's type becomes the type of the move used on it.", - }, - immunity: { - name: "Immunity", - description: "The immune system of the Pokémon prevents it from getting poisoned.", - }, - flashFire: { - name: "Flash Fire", - description: "Powers up the Pokémon's Fire-type moves if it's hit by one.", - }, - shieldDust: { - name: "Shield Dust", - description: "This Pokémon's dust blocks the additional effects of attacks taken.", - }, - ownTempo: { - name: "Own Tempo", - description: "This Pokémon has its own tempo, and that prevents it from becoming confused.", - }, - suctionCups: { - name: "Suction Cups", - description: "This Pokémon uses suction cups to stay in one spot to negate all moves and items that force switching out.", - }, - intimidate: { - name: "Intimidate", - description: "The Pokémon intimidates opposing Pokémon upon entering battle, lowering their Attack stat.", - }, - shadowTag: { - name: "Shadow Tag", - description: "This Pokémon steps on the opposing Pokémon's shadow to prevent it from escaping.", - }, - roughSkin: { - name: "Rough Skin", - description: "This Pokémon inflicts damage with its rough skin to the attacker on contact.", - }, - wonderGuard: { - name: "Wonder Guard", - description: "Its mysterious power only lets supereffective moves hit the Pokémon.", - }, - levitate: { - name: "Levitate", - description: "By floating in the air, the Pokémon receives full immunity to all Ground-type moves.", - }, - effectSpore: { - name: "Effect Spore", - description: "Contact with the Pokémon may inflict poison, sleep, or paralysis on its attacker.", - }, - synchronize: { - name: "Synchronize", - description: "The attacker will receive the same status condition if it inflicts a burn, poison, or paralysis to the Pokémon.", - }, - clearBody: { - name: "Clear Body", - description: "Prevents other Pokémon's moves or Abilities from lowering the Pokémon's stats.", - }, - naturalCure: { - name: "Natural Cure", - description: "All status conditions heal when the Pokémon switches out.", - }, - lightningRod: { - name: "Lightning Rod", - description: "The Pokémon draws in all Electric-type moves. Instead of being hit by Electric-type moves, it boosts its Sp. Atk.", - }, - sereneGrace: { - name: "Serene Grace", - description: "Boosts the likelihood of additional effects occurring when attacking.", - }, - swiftSwim: { - name: "Swift Swim", - description: "Boosts the Pokémon's Speed stat in rain.", - }, - chlorophyll: { - name: "Chlorophyll", - description: "Boosts the Pokémon's Speed stat in harsh sunlight.", - }, - illuminate: { - name: "Illuminate", - description: "By illuminating its surroundings, the Pokémon raises the likelihood of meeting wild Pokémon and prevents its accuracy from being lowered.", - }, - trace: { - name: "Trace", - description: "When it enters a battle, the Pokémon copies an opposing Pokémon's Ability.", - }, - hugePower: { - name: "Huge Power", - description: "Doubles the Pokémon's Attack stat.", - }, - poisonPoint: { - name: "Poison Point", - description: "Contact with the Pokémon may poison the attacker.", - }, - innerFocus: { - name: "Inner Focus", - description: "The Pokémon's intensely focused, and that protects the Pokémon from flinching.", - }, - magmaArmor: { - name: "Magma Armor", - description: "The Pokémon is covered with hot magma, which prevents the Pokémon from becoming frozen.", - }, - waterVeil: { - name: "Water Veil", - description: "The Pokémon is covered with a water veil, which prevents the Pokémon from getting a burn.", - }, - magnetPull: { - name: "Magnet Pull", - description: "Prevents Steel-type Pokémon from escaping using its magnetic force.", - }, - soundproof: { - name: "Soundproof", - description: "Soundproofing gives the Pokémon full immunity to all sound-based moves.", - }, - rainDish: { - name: "Rain Dish", - description: "The Pokémon gradually regains HP in rain.", - }, - sandStream: { - name: "Sand Stream", - description: "The Pokémon summons a sandstorm when it enters a battle.", - }, - pressure: { - name: "Pressure", - description: "By putting pressure on the opposing Pokémon, it raises their PP usage.", - }, - thickFat: { - name: "Thick Fat", - description: "The Pokémon is protected by a layer of thick fat, which halves the damage taken from Fire- and Ice-type moves.", - }, - earlyBird: { - name: "Early Bird", - description: "The Pokémon awakens from sleep twice as fast as other Pokémon.", - }, - flameBody: { - name: "Flame Body", - description: "Contact with the Pokémon may burn the attacker.", - }, - runAway: { - name: "Run Away", - description: "Enables a sure getaway from wild Pokémon.", - }, - keenEye: { - name: "Keen Eye", - description: "Keen eyes prevent other Pokémon from lowering this Pokémon's accuracy.", - }, - hyperCutter: { - name: "Hyper Cutter", - description: "The Pokémon's proud of its powerful pincers. They prevent other Pokémon from lowering its Attack stat.", - }, - pickup: { - name: "Pickup", - description: "The Pokémon may pick up the item an opposing Pokémon held during a battle.", - }, - truant: { - name: "Truant", - description: "The Pokémon can't use a move if it had used a move on the previous turn.", - }, - hustle: { - name: "Hustle", - description: "Boosts the Attack stat, but lowers accuracy.", - }, - cuteCharm: { - name: "Cute Charm", - description: "Contact with the Pokémon may cause infatuation.", - }, - plus: { - name: "Plus", - description: "Boosts the Sp. Atk stat of the Pokémon if an ally with the Plus or Minus Ability is also in battle.", - }, - minus: { - name: "Minus", - description: "Boosts the Sp. Atk stat of the Pokémon if an ally with the Plus or Minus Ability is also in battle.", - }, - forecast: { - name: "Forecast", - description: "The Pokémon transforms with the weather to change its type to Water, Fire, or Ice.", - }, - stickyHold: { - name: "Sticky Hold", - description: "Items held by the Pokémon are stuck fast and cannot be removed by other Pokémon.", - }, - shedSkin: { - name: "Shed Skin", - description: "The Pokémon may heal its own status conditions by shedding its skin.", - }, - guts: { - name: "Guts", - description: "It's so gutsy that having a status condition boosts the Pokémon's Attack stat.", - }, - marvelScale: { - name: "Marvel Scale", - description: "The Pokémon's marvelous scales boost the Defense stat if it has a status condition.", - }, - liquidOoze: { - name: "Liquid Ooze", - description: "The oozed liquid has a strong stench, which damages attackers using any draining move.", - }, - overgrow: { - name: "Overgrow", - description: "Powers up Grass-type moves when the Pokémon's HP is low.", - }, - blaze: { - name: "Blaze", - description: "Powers up Fire-type moves when the Pokémon's HP is low.", - }, - torrent: { - name: "Torrent", - description: "Powers up Water-type moves when the Pokémon's HP is low.", - }, - swarm: { - name: "Swarm", - description: "Powers up Bug-type moves when the Pokémon's HP is low.", - }, - rockHead: { - name: "Rock Head", - description: "Protects the Pokémon from recoil damage.", - }, - drought: { - name: "Drought", - description: "Turns the sunlight harsh when the Pokémon enters a battle.", - }, - arenaTrap: { - name: "Arena Trap", - description: "Prevents opposing Pokémon from fleeing.", - }, - vitalSpirit: { - name: "Vital Spirit", - description: "The Pokémon is full of vitality, and that prevents it from falling asleep.", - }, - whiteSmoke: { - name: "White Smoke", - description: "The Pokémon is protected by its white smoke, which prevents other Pokémon from lowering its stats.", - }, - purePower: { - name: "Pure Power", - description: "Using its pure power, the Pokémon doubles its Attack stat.", - }, - shellArmor: { - name: "Shell Armor", - description: "A hard shell protects the Pokémon from critical hits.", - }, - airLock: { - name: "Air Lock", - description: "Eliminates the effects of weather.", - }, - tangledFeet: { - name: "Tangled Feet", - description: "Raises evasiveness if the Pokémon is confused.", - }, - motorDrive: { - name: "Motor Drive", - description: "Boosts its Speed stat if hit by an Electric-type move instead of taking damage.", - }, - rivalry: { - name: "Rivalry", - description: "Becomes competitive and deals more damage to Pokémon of the same gender, but deals less to Pokémon of the opposite gender.", - }, - steadfast: { - name: "Steadfast", - description: "The Pokémon's determination boosts the Speed stat each time the Pokémon flinches.", - }, - snowCloak: { - name: "Snow Cloak", - description: "Boosts the Pokémon's evasiveness in snow.", - }, - gluttony: { - name: "Gluttony", - description: "Makes the Pokémon eat a held Berry when its HP drops to half or less, which is sooner than usual.", - }, - angerPoint: { - name: "Anger Point", - description: "The Pokémon is angered when it takes a critical hit, and that maxes its Attack stat.", - }, - unburden: { - name: "Unburden", - description: "Boosts the Speed stat if the Pokémon's held item is used or lost.", - }, - heatproof: { - name: "Heatproof", - description: "The heatproof body of the Pokémon halves the damage from Fire-type moves that hit it.", - }, - simple: { - name: "Simple", - description: "The stat changes the Pokémon receives are doubled.", - }, - drySkin: { - name: "Dry Skin", - description: "Restores HP in rain or when hit by Water-type moves. Reduces HP in harsh sunlight, and increases the damage received from Fire-type moves.", - }, - download: { - name: "Download", - description: "Compares an opposing Pokémon's Defense and Sp. Def stats before raising its own Attack or Sp. Atk stat—whichever will be more effective.", - }, - ironFist: { - name: "Iron Fist", - description: "Powers up punching moves.", - }, - poisonHeal: { - name: "Poison Heal", - description: "Restores HP if the Pokémon is poisoned instead of losing HP.", - }, - adaptability: { - name: "Adaptability", - description: "Powers up moves of the same type as the Pokémon.", - }, - skillLink: { - name: "Skill Link", - description: "Maximizes the number of times multistrike moves hit.", - }, - hydration: { - name: "Hydration", - description: "Heals status conditions if it's raining.", - }, - solarPower: { - name: "Solar Power", - description: "Boosts the Sp. Atk stat in harsh sunlight, but HP decreases every turn.", - }, - quickFeet: { - name: "Quick Feet", - description: "Boosts the Speed stat if the Pokémon has a status condition.", - }, - normalize: { - name: "Normalize", - description: "All the Pokémon's moves become Normal type. The power of those moves is boosted a little.", - }, - sniper: { - name: "Sniper", - description: "Powers up moves if they become critical hits when attacking.", - }, - magicGuard: { - name: "Magic Guard", - description: "The Pokémon only takes damage from attacks.", - }, - noGuard: { - name: "No Guard", - description: "The Pokémon employs no-guard tactics to ensure incoming and outgoing attacks always land.", - }, - stall: { - name: "Stall", - description: "The Pokémon moves after all other Pokémon do.", - }, - technician: { - name: "Technician", - description: "Powers up the Pokémon's weaker moves.", - }, - leafGuard: { - name: "Leaf Guard", - description: "Prevents status conditions in harsh sunlight.", - }, - klutz: { - name: "Klutz", - description: "The Pokémon can't use any held items.", - }, - moldBreaker: { - name: "Mold Breaker", - description: "Moves can be used on the target regardless of its Abilities.", - }, - superLuck: { - name: "Super Luck", - description: "The Pokémon is so lucky that the critical-hit ratios of its moves are boosted.", - }, - aftermath: { - name: "Aftermath", - description: "Damages the attacker if it contacts the Pokémon with a finishing hit.", - }, - anticipation: { - name: "Anticipation", - description: "The Pokémon can sense an opposing Pokémon's dangerous moves.", - }, - forewarn: { - name: "Forewarn", - description: "When it enters a battle, the Pokémon can tell one of the moves an opposing Pokémon has.", - }, - unaware: { - name: "Unaware", - description: "When attacking, the Pokémon ignores the target Pokémon's stat changes.", - }, - tintedLens: { - name: "Tinted Lens", - description: "The Pokémon can use \"not very effective\" moves to deal regular damage.", - }, - filter: { - name: "Filter", - description: "Reduces the power of supereffective attacks taken.", - }, - slowStart: { - name: "Slow Start", - description: "For five turns, the Pokémon's Attack and Speed stats are halved.", - }, - scrappy: { - name: "Scrappy", - description: "The Pokémon can hit Ghost-type Pokémon with Normal- and Fighting-type moves.", - }, - stormDrain: { - name: "Storm Drain", - description: "Draws in all Water-type moves. Instead of being hit by Water-type moves, it boosts its Sp. Atk.", - }, - iceBody: { - name: "Ice Body", - description: "The Pokémon gradually regains HP in snow.", - }, - solidRock: { - name: "Solid Rock", - description: "Reduces the power of supereffective attacks taken.", - }, - snowWarning: { - name: "Snow Warning", - description: "The Pokémon makes it snow when it enters a battle.", - }, - honeyGather: { - name: "Honey Gather", - description: "The Pokémon gathers Honey after a battle. The Honey is then sold for money.", - }, - frisk: { - name: "Frisk", - description: "When it enters a battle, the Pokémon can check an opposing Pokémon's Ability.", - }, - reckless: { - name: "Reckless", - description: "Powers up moves that have recoil damage.", - }, - multitype: { - name: "Multitype", - description: "Changes the Pokémon's type to match the Plate or Z-Crystal it holds.", - }, - flowerGift: { - name: "Flower Gift", - description: "Boosts the Attack and Sp. Def stats of itself and allies in harsh sunlight.", - }, - badDreams: { - name: "Bad Dreams", - description: "Reduces the HP of sleeping opposing Pokémon.", - }, - pickpocket: { - name: "Pickpocket", - description: "Steals an item from an attacker that made direct contact.", - }, - sheerForce: { - name: "Sheer Force", - description: "Removes additional effects to increase the power of moves when attacking.", - }, - contrary: { - name: "Contrary", - description: "Makes stat changes have an opposite effect.", - }, - unnerve: { - name: "Unnerve", - description: "Unnerves opposing Pokémon and makes them unable to eat Berries.", - }, - defiant: { - name: "Defiant", - description: "Boosts the Pokémon's Attack stat sharply when its stats are lowered.", - }, - defeatist: { - name: "Defeatist", - description: "Halves the Pokémon's Attack and Sp. Atk stats when its HP becomes half or less.", - }, - cursedBody: { - name: "Cursed Body", - description: "May disable a move used on the Pokémon.", - }, - healer: { - name: "Healer", - description: "Sometimes heals an ally's status condition.", - }, - friendGuard: { - name: "Friend Guard", - description: "Reduces damage done to allies.", - }, - weakArmor: { - name: "Weak Armor", - description: "Physical attacks to the Pokémon lower its Defense stat but sharply raise its Speed stat.", - }, - heavyMetal: { - name: "Heavy Metal", - description: "Doubles the Pokémon's weight.", - }, - lightMetal: { - name: "Light Metal", - description: "Halves the Pokémon's weight.", - }, - multiscale: { - name: "Multiscale", - description: "Reduces the amount of damage the Pokémon takes while its HP is full.", - }, - toxicBoost: { - name: "Toxic Boost", - description: "Powers up physical attacks when the Pokémon is poisoned.", - }, - flareBoost: { - name: "Flare Boost", - description: "Powers up special attacks when the Pokémon is burned.", - }, - harvest: { - name: "Harvest", - description: "May create another Berry after one is used.", - }, - telepathy: { - name: "Telepathy", - description: "Anticipates an ally's attack and dodges it.", - }, - moody: { - name: "Moody", - description: "Raises one stat sharply and lowers another every turn.", - }, - overcoat: { - name: "Overcoat", - description: "Protects the Pokémon from things like sand, hail, and powder.", - }, - poisonTouch: { - name: "Poison Touch", - description: "May poison a target when the Pokémon makes contact.", - }, - regenerator: { - name: "Regenerator", - description: "Restores a little HP when withdrawn from battle.", - }, - bigPecks: { - name: "Big Pecks", - description: "Protects the Pokémon from Defense-lowering effects.", - }, - sandRush: { - name: "Sand Rush", - description: "Boosts the Pokémon's Speed stat in a sandstorm.", - }, - wonderSkin: { - name: "Wonder Skin", - description: "Makes status moves more likely to miss.", - }, - analytic: { - name: "Analytic", - description: "Boosts move power when the Pokémon moves last.", - }, - illusion: { - name: "Illusion", - description: "Comes out disguised as the Pokémon in the party's last spot.", - }, - imposter: { - name: "Imposter", - description: "The Pokémon transforms itself into the Pokémon it's facing.", - }, - infiltrator: { - name: "Infiltrator", - description: "Passes through the opposing Pokémon's barrier, substitute, and the like and strikes.", - }, - mummy: { - name: "Mummy", - description: "Contact with the Pokémon changes the attacker's Ability to Mummy.", - }, - moxie: { - name: "Moxie", - description: "The Pokémon shows moxie, and that boosts the Attack stat after knocking out any Pokémon.", - }, - justified: { - name: "Justified", - description: "Being hit by a Dark-type move boosts the Attack stat of the Pokémon, for justice.", - }, - rattled: { - name: "Rattled", - description: "Intimidate or being hit by a Dark-, Ghost-, or Bug-type move will scare the Pokémon and boost its Speed stat.", - }, - magicBounce: { - name: "Magic Bounce", - description: "Reflects status moves instead of getting hit by them.", - }, - sapSipper: { - name: "Sap Sipper", - description: "Boosts the Attack stat if hit by a Grass-type move instead of taking damage.", - }, - prankster: { - name: "Prankster", - description: "Gives priority to a status move.", - }, - sandForce: { - name: "Sand Force", - description: "Boosts the power of Rock-, Ground-, and Steel-type moves in a sandstorm.", - }, - ironBarbs: { - name: "Iron Barbs", - description: "Inflicts damage on the attacker upon contact with iron barbs.", - }, - zenMode: { - name: "Zen Mode", - description: "Changes the Pokémon's shape when HP is half or less.", - }, - victoryStar: { - name: "Victory Star", - description: "Boosts the accuracy of its allies and itself.", - }, - turboblaze: { - name: "Turboblaze", - description: "Moves can be used on the target regardless of its Abilities.", - }, - teravolt: { - name: "Teravolt", - description: "Moves can be used on the target regardless of its Abilities.", - }, - aromaVeil: { - name: "Aroma Veil", - description: "Protects itself and its allies from attacks that limit their move choices.", - }, - flowerVeil: { - name: "Flower Veil", - description: "Ally Grass-type Pokémon are protected from status conditions and the lowering of their stats.", - }, - cheekPouch: { - name: "Cheek Pouch", - description: "Restores HP as well when the Pokémon eats a Berry.", - }, - protean: { - name: "Protean", - description: "Changes the Pokémon's type to the type of the move it's about to use.", - }, - furCoat: { - name: "Fur Coat", - description: "Halves the damage from physical moves.", - }, - magician: { - name: "Magician", - description: "The Pokémon steals the held item of a Pokémon it hits with a move.", - }, - bulletproof: { - name: "Bulletproof", - description: "Protects the Pokémon from some ball and bomb moves.", - }, - competitive: { - name: "Competitive", - description: "Boosts the Sp. Atk stat sharply when a stat is lowered.", - }, - strongJaw: { - name: "Strong Jaw", - description: "The Pokémon's strong jaw boosts the power of its biting moves.", - }, - refrigerate: { - name: "Refrigerate", - description: "Normal-type moves become Ice-type moves. The power of those moves is boosted a little.", - }, - sweetVeil: { - name: "Sweet Veil", - description: "Prevents itself and ally Pokémon from falling asleep.", - }, - stanceChange: { - name: "Stance Change", - description: "The Pokémon changes its form to Blade Forme when it uses an attack move and changes to Shield Forme when it uses King's Shield.", - }, - galeWings: { - name: "Gale Wings", - description: "Gives priority to Flying-type moves when the Pokémon's HP is full.", - }, - megaLauncher: { - name: "Mega Launcher", - description: "Powers up aura and pulse moves.", - }, - grassPelt: { - name: "Grass Pelt", - description: "Boosts the Pokémon's Defense stat on Grassy Terrain.", - }, - symbiosis: { - name: "Symbiosis", - description: "The Pokémon passes its item to an ally that has used up an item.", - }, - toughClaws: { - name: "Tough Claws", - description: "Powers up moves that make direct contact.", - }, - pixilate: { - name: "Pixilate", - description: "Normal-type moves become Fairy-type moves. The power of those moves is boosted a little.", - }, - gooey: { - name: "Gooey", - description: "Contact with the Pokémon lowers the attacker's Speed stat.", - }, - aerilate: { - name: "Aerilate", - description: "Normal-type moves become Flying-type moves. The power of those moves is boosted a little.", - }, - parentalBond: { - name: "Parental Bond", - description: "Parent and child each attacks.", - }, - darkAura: { - name: "Dark Aura", - description: "Powers up each Pokémon's Dark-type moves.", - }, - fairyAura: { - name: "Fairy Aura", - description: "Powers up each Pokémon's Fairy-type moves.", - }, - auraBreak: { - name: "Aura Break", - description: "The effects of \"Aura\" Abilities are reversed to lower the power of affected moves.", - }, - primordialSea: { - name: "Primordial Sea", - description: "The Pokémon changes the weather to nullify Fire-type attacks.", - }, - desolateLand: { - name: "Desolate Land", - description: "The Pokémon changes the weather to nullify Water-type attacks.", - }, - deltaStream: { - name: "Delta Stream", - description: "The Pokémon changes the weather to eliminate all of the Flying type's weaknesses.", - }, - stamina: { - name: "Stamina", - description: "Boosts the Defense stat when hit by an attack.", - }, - wimpOut: { - name: "Wimp Out", - description: "The Pokémon cowardly switches out when its HP becomes half or less.", - }, - emergencyExit: { - name: "Emergency Exit", - description: "The Pokémon, sensing danger, switches out when its HP becomes half or less.", - }, - waterCompaction: { - name: "Water Compaction", - description: "Boosts the Pokémon's Defense stat sharply when hit by a Water-type move.", - }, - merciless: { - name: "Merciless", - description: "The Pokémon's attacks become critical hits if the target is poisoned.", - }, - shieldsDown: { - name: "Shields Down", - description: "When its HP becomes half or less, the Pokémon's shell breaks and it becomes aggressive.", - }, - stakeout: { - name: "Stakeout", - description: "Doubles the damage dealt to the target's replacement if the target switches out.", - }, - waterBubble: { - name: "Water Bubble", - description: "Lowers the power of Fire-type moves done to the Pokémon and prevents the Pokémon from getting a burn.", - }, - steelworker: { - name: "Steelworker", - description: "Powers up Steel-type moves.", - }, - berserk: { - name: "Berserk", - description: "Boosts the Pokémon's Sp. Atk stat when it takes a hit that causes its HP to become half or less.", - }, - slushRush: { - name: "Slush Rush", - description: "Boosts the Pokémon's Speed stat in snow.", - }, - longReach: { - name: "Long Reach", - description: "The Pokémon uses its moves without making contact with the target.", - }, - liquidVoice: { - name: "Liquid Voice", - description: "All sound-based moves become Water-type moves.", - }, - triage: { - name: "Triage", - description: "Gives priority to a healing move.", - }, - galvanize: { - name: "Galvanize", - description: "Normal-type moves become Electric-type moves. The power of those moves is boosted a little.", - }, - surgeSurfer: { - name: "Surge Surfer", - description: "Doubles the Pokémon's Speed stat on Electric Terrain.", - }, - schooling: { - name: "Schooling", - description: "When it has a lot of HP, the Pokémon forms a powerful school. It stops schooling when its HP is low.", - }, - disguise: { - name: "Disguise", - description: "Once per battle, the shroud that covers the Pokémon can protect it from an attack.", - }, - battleBond: { - name: "Battle Bond", - description: "Defeating an opposing Pokémon strengthens the Pokémon's bond with its Trainer, and it becomes Ash-Greninja. Water Shuriken gets more powerful.", - }, - powerConstruct: { - name: "Power Construct", - description: "Other Cells gather to aid when its HP becomes half or less. Then the Pokémon changes its form to Complete Forme.", - }, - corrosion: { - name: "Corrosion", - description: "The Pokémon can poison the target even if it's a Steel or Poison type.", - }, - comatose: { - name: "Comatose", - description: "It's always drowsing and will never wake up. It can attack without waking up.", - }, - queenlyMajesty: { - name: "Queenly Majesty", - description: "Its majesty pressures the opposing Pokémon, making it unable to attack using priority moves.", - }, - innardsOut: { - name: "Innards Out", - description: "Damages the attacker landing the finishing hit by the amount equal to its last HP.", - }, - dancer: { - name: "Dancer", - description: "When another Pokémon uses a dance move, it can use a dance move following it regardless of its Speed.", - }, - battery: { - name: "Battery", - description: "Powers up ally Pokémon's special moves.", - }, - fluffy: { - name: "Fluffy", - description: "Halves the damage taken from moves that make direct contact, but doubles that of Fire-type moves.", - }, - dazzling: { - name: "Dazzling", - description: "Surprises the opposing Pokémon, making it unable to attack using priority moves.", - }, - soulHeart: { - name: "Soul-Heart", - description: "Boosts its Sp. Atk stat every time a Pokémon faints.", - }, - tanglingHair: { - name: "Tangling Hair", - description: "Contact with the Pokémon lowers the attacker's Speed stat.", - }, - receiver: { - name: "Receiver", - description: "The Pokémon copies the Ability of a defeated ally.", - }, - powerOfAlchemy: { - name: "Power of Alchemy", - description: "The Pokémon copies the Ability of a defeated ally.", - }, - beastBoost: { - name: "Beast Boost", - description: "The Pokémon boosts its most proficient stat each time it knocks out a Pokémon.", - }, - rksSystem: { - name: "RKS System", - description: "Changes the Pokémon's type to match the memory disc it holds.", - }, - electricSurge: { - name: "Electric Surge", - description: "Turns the ground into Electric Terrain when the Pokémon enters a battle.", - }, - psychicSurge: { - name: "Psychic Surge", - description: "Turns the ground into Psychic Terrain when the Pokémon enters a battle.", - }, - mistySurge: { - name: "Misty Surge", - description: "Turns the ground into Misty Terrain when the Pokémon enters a battle.", - }, - grassySurge: { - name: "Grassy Surge", - description: "Turns the ground into Grassy Terrain when the Pokémon enters a battle.", - }, - fullMetalBody: { - name: "Full Metal Body", - description: "Prevents other Pokémon's moves or Abilities from lowering the Pokémon's stats.", - }, - shadowShield: { - name: "Shadow Shield", - description: "Reduces the amount of damage the Pokémon takes while its HP is full.", - }, - prismArmor: { - name: "Prism Armor", - description: "Reduces the power of supereffective attacks taken.", - }, - neuroforce: { - name: "Neuroforce", - description: "Powers up moves that are super effective.", - }, - intrepidSword: { - name: "Intrepid Sword", - description: "Boosts the Pokémon's Attack stat when the Pokémon enters a battle.", - }, - dauntlessShield: { - name: "Dauntless Shield", - description: "Boosts the Pokémon's Defense stat when the Pokémon enters a battle.", - }, - libero: { - name: "Libero", - description: "Changes the Pokémon's type to the type of the move it's about to use.", - }, - ballFetch: { - name: "Ball Fetch", - description: "The Pokémon will fetch the Poké Ball from the first failed throw of the battle.", - }, - cottonDown: { - name: "Cotton Down", - description: "When the Pokémon is hit by an attack, it scatters cotton fluff around and lowers the Speed stat of all Pokémon except itself.", - }, - propellerTail: { - name: "Propeller Tail", - description: "Ignores the effects of opposing Pokémon's Abilities and moves that draw in moves.", - }, - mirrorArmor: { - name: "Mirror Armor", - description: "Bounces back only the stat-lowering effects that the Pokémon receives.", - }, - gulpMissile: { - name: "Gulp Missile", - description: "When the Pokémon uses Surf or Dive, it will come back with prey. When it takes damage, it will spit out the prey to attack.", - }, - stalwart: { - name: "Stalwart", - description: "Ignores the effects of opposing Pokémon's Abilities and moves that draw in moves.", - }, - steamEngine: { - name: "Steam Engine", - description: "Boosts the Pokémon's Speed stat drastically if hit by a Fire- or Water-type move.", - }, - punkRock: { - name: "Punk Rock", - description: "Boosts the power of sound-based moves. The Pokémon also takes half the damage from these kinds of moves.", - }, - sandSpit: { - name: "Sand Spit", - description: "The Pokémon creates a sandstorm when it's hit by an attack.", - }, - iceScales: { - name: "Ice Scales", - description: "The Pokémon is protected by ice scales, which halve the damage taken from special moves.", - }, - ripen: { - name: "Ripen", - description: "Ripens Berries and doubles their effect.", - }, - iceFace: { - name: "Ice Face", - description: "The Pokémon's ice head can take a physical attack as a substitute, but the attack also changes the Pokémon's appearance. The ice will be restored when it hails.", - }, - powerSpot: { - name: "Power Spot", - description: "Just being next to the Pokémon powers up moves.", - }, - mimicry: { - name: "Mimicry", - description: "Changes the Pokémon's type depending on the terrain.", - }, - screenCleaner: { - name: "Screen Cleaner", - description: "When the Pokémon enters a battle, the effects of Light Screen, Reflect, and Aurora Veil are nullified for both opposing and ally Pokémon.", - }, - steelySpirit: { - name: "Steely Spirit", - description: "Powers up ally Pokémon's Steel-type moves.", - }, - perishBody: { - name: "Perish Body", - description: "When hit by a move that makes direct contact, the Pokémon and the attacker will faint after three turns unless they switch out of battle.", - }, - wanderingSpirit: { - name: "Wandering Spirit", - description: "The Pokémon exchanges Abilities with a Pokémon that hits it with a move that makes direct contact.", - }, - gorillaTactics: { - name: "Gorilla Tactics", - description: "Boosts the Pokémon's Attack stat but only allows the use of the first selected move.", - }, - neutralizingGas: { - name: "Neutralizing Gas", - description: "If the Pokémon with Neutralizing Gas is in the battle, the effects of all Pokémon's Abilities will be nullified or will not be triggered.", - }, - pastelVeil: { - name: "Pastel Veil", - description: "Protects the Pokémon and its ally Pokémon from being poisoned.", - }, - hungerSwitch: { - name: "Hunger Switch", - description: "The Pokémon changes its form, alternating between its Full Belly Mode and Hangry Mode after the end of each turn.", - }, - quickDraw: { - name: "Quick Draw", - description: "Enables the Pokémon to move first occasionally.", - }, - unseenFist: { - name: "Unseen Fist", - description: "If the Pokémon uses moves that make direct contact, it can attack the target even if the target protects itself.", - }, - curiousMedicine: { - name: "Curious Medicine", - description: "When the Pokémon enters a battle, it scatters medicine from its shell, which removes all stat changes from allies.", - }, - transistor: { - name: "Transistor", - description: "Powers up Electric-type moves.", - }, - dragonsMaw: { - name: "Dragon's Maw", - description: "Powers up Dragon-type moves.", - }, - chillingNeigh: { - name: "Chilling Neigh", - description: "When the Pokémon knocks out a target, it utters a chilling neigh, which boosts its Attack stat.", - }, - grimNeigh: { - name: "Grim Neigh", - description: "When the Pokémon knocks out a target, it utters a terrifying neigh, which boosts its Sp. Atk stat.", - }, - asOneGlastrier: { - name: "As One", - description: "This Ability combines the effects of both Calyrex's Unnerve Ability and Glastrier's Chilling Neigh Ability.", - }, - asOneSpectrier: { - name: "As One", - description: "This Ability combines the effects of both Calyrex's Unnerve Ability and Spectrier's Grim Neigh Ability.", - }, - lingeringAroma: { - name: "Lingering Aroma", - description: "Contact with the Pokémon changes the attacker's Ability to Lingering Aroma.", - }, - seedSower: { - name: "Seed Sower", - description: "Turns the ground into Grassy Terrain when the Pokémon is hit by an attack.", - }, - thermalExchange: { - name: "Thermal Exchange", - description: "Boosts the Attack stat when the Pokémon is hit by a Fire-type move. The Pokémon also cannot be burned.", - }, - angerShell: { - name: "Anger Shell", - description: "When an attack causes its HP to drop to half or less, the Pokémon gets angry. This lowers its Defense and Sp. Def stats but boosts its Attack, Sp. Atk, and Speed stats.", - }, - purifyingSalt: { - name: "Purifying Salt", - description: "The Pokémon's pure salt protects it from status conditions and halves the damage taken from Ghost-type moves.", - }, - wellBakedBody: { - name: "Well-Baked Body", - description: "The Pokémon takes no damage when hit by Fire-type moves. Instead, its Defense stat is sharply boosted.", - }, - windRider: { - name: "Wind Rider", - description: "Boosts the Pokémon's Attack stat if Tailwind takes effect or if the Pokémon is hit by a wind move. The Pokémon also takes no damage from wind moves.", - }, - guardDog: { - name: "Guard Dog", - description: "Boosts the Pokémon's Attack stat if intimidated. Moves and items that would force the Pokémon to switch out also fail to work.", - }, - rockyPayload: { - name: "Rocky Payload", - description: "Powers up Rock-type moves.", - }, - windPower: { - name: "Wind Power", - description: "The Pokémon becomes charged when it is hit by a wind move, boosting the power of the next Electric-type move the Pokémon uses.", - }, - zeroToHero: { - name: "Zero to Hero", - description: "The Pokémon transforms into its Hero Form when it switches out.", - }, - commander: { - name: "Commander", - description: "When the Pokémon enters a battle, it goes inside the mouth of an ally Dondozo if one is on the field. The Pokémon then issues commands from there.", - }, - electromorphosis: { - name: "Electromorphosis", - description: "The Pokémon becomes charged when it takes damage, boosting the power of the next Electric-type move the Pokémon uses.", - }, - protosynthesis: { - name: "Protosynthesis", - description: "Boosts the Pokémon's most proficient stat in harsh sunlight or if the Pokémon is holding Booster Energy.", - }, - quarkDrive: { - name: "Quark Drive", - description: "Boosts the Pokémon's most proficient stat on Electric Terrain or if the Pokémon is holding Booster Energy.", - }, - goodAsGold: { - name: "Good as Gold", - description: "A body of pure, solid gold gives the Pokémon full immunity to other Pokémon's status moves.", - }, - vesselOfRuin: { - name: "Vessel of Ruin", - description: "The power of the Pokémon's ruinous vessel lowers the Sp. Atk stats of all Pokémon except itself.", - }, - swordOfRuin: { - name: "Sword of Ruin", - description: "The power of the Pokémon's ruinous sword lowers the Defense stats of all Pokémon except itself.", - }, - tabletsOfRuin: { - name: "Tablets of Ruin", - description: "The power of the Pokémon's ruinous wooden tablets lowers the Attack stats of all Pokémon except itself.", - }, - beadsOfRuin: { - name: "Beads of Ruin", - description: "The power of the Pokémon's ruinous beads lowers the Sp. Def stats of all Pokémon except itself.", - }, - orichalcumPulse: { - name: "Orichalcum Pulse", - description: "Turns the sunlight harsh when the Pokémon enters a battle. The ancient pulse thrumming through the Pokémon also boosts its Attack stat in harsh sunlight.", - }, - hadronEngine: { - name: "Hadron Engine", - description: "Turns the ground into Electric Terrain when the Pokémon enters a battle. The futuristic engine within the Pokémon also boosts its Sp. Atk stat on Electric Terrain.", - }, - opportunist: { - name: "Opportunist", - description: "If an opponent's stat is boosted, the Pokémon seizes the opportunity to boost the same stat for itself.", - }, - cudChew: { - name: "Cud Chew", - description: "When the Pokémon eats a Berry, it will regurgitate that Berry at the end of the next turn and eat it one more time.", - }, - sharpness: { - name: "Sharpness", - description: "Powers up slicing moves.", - }, - supremeOverlord: { - name: "Supreme Overlord", - description: "When the Pokémon enters a battle, its Attack and Sp. Atk stats are slightly boosted for each of the allies in its party that have already been defeated.", - }, - costar: { - name: "Costar", - description: "When the Pokémon enters a battle, it copies an ally's stat changes.", - }, - toxicDebris: { - name: "Toxic Debris", - description: "Scatters poison spikes at the feet of the opposing team when the Pokémon takes damage from physical moves.", - }, - armorTail: { - name: "Armor Tail", - description: "The mysterious tail covering the Pokémon's head makes opponents unable to use priority moves against the Pokémon or its allies.", - }, - earthEater: { - name: "Earth Eater", - description: "If hit by a Ground-type move, the Pokémon has its HP restored instead of taking damage.", - }, - myceliumMight: { - name: "Mycelium Might", - description: "The Pokémon will always act more slowly when using status moves, but these moves will be unimpeded by the Ability of the target.", - }, - mindsEye: { - name: "Mind's Eye", - description: "The Pokémon ignores changes to opponents' evasiveness, its accuracy can't be lowered, and it can hit Ghost types with Normal- and Fighting-type moves.", - }, - supersweetSyrup: { - name: "Supersweet Syrup", - description: "A sickly sweet scent spreads across the field the first time the Pokémon enters a battle, lowering the evasiveness of opposing Pokémon.", - }, - hospitality: { - name: "Hospitality", - description: "When the Pokémon enters a battle, it showers its ally with hospitality, restoring a small amount of the ally's HP.", - }, - toxicChain: { - name: "Toxic Chain", - description: "The power of the Pokémon's toxic chain may badly poison any target the Pokémon hits with a move.", - }, - embodyAspectTeal: { - name: "Embody Aspect", - description: "The Pokémon's heart fills with memories, causing the Teal Mask to shine and the Pokémon's Speed stat to be boosted.", - }, - embodyAspectWellspring: { - name: "Embody Aspect", - description: "The Pokémon's heart fills with memories, causing the Wellspring Mask to shine and the Pokémon's Sp. Def stat to be boosted.", - }, - embodyAspectHearthflame: { - name: "Embody Aspect", - description: "The Pokémon's heart fills with memories, causing the Hearthflame Mask to shine and the Pokémon's Attack stat to be boosted.", - }, - embodyAspectCornerstone: { - name: "Embody Aspect", - description: "The Pokémon's heart fills with memories, causing the Cornerstone Mask to shine and the Pokémon's Defense stat to be boosted.", - }, - teraShift: { - name: "Tera Shift", - description: "When the Pokémon enters a battle, it absorbs the energy around itself and transforms into its Terastal Form.", - }, - teraShell: { - name: "Tera Shell", - description: "The Pokémon's shell contains the powers of each type. All damage-dealing moves that hit the Pokémon when its HP is full will not be very effective.", - }, - teraformZero: { - name: "Teraform Zero", - description: "When Terapagos changes into its Stellar Form, it uses its hidden powers to eliminate all effects of weather and terrain, reducing them to zero.", - }, - poisonPuppeteer: { - name: "Poison Puppeteer", - description: "Pokémon poisoned by Pecharunt's moves will also become confused.", - }, -} as const; diff --git a/src/locales/ca_ES/achv.json b/src/locales/ca_ES/achv.json new file mode 100644 index 00000000000..9e26dfeeb6e --- /dev/null +++ b/src/locales/ca_ES/achv.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/src/locales/ca_ES/achv.ts b/src/locales/ca_ES/achv.ts deleted file mode 100644 index a05c8b814ab..00000000000 --- a/src/locales/ca_ES/achv.ts +++ /dev/null @@ -1,278 +0,0 @@ -import { AchievementTranslationEntries } from "#app/interfaces/locales.js"; - -// Achievement translations for the when the player character is male -export const PGMachv: AchievementTranslationEntries = { - "Achievements": { - name: "Achievements", - }, - "Locked": { - name: "Locked", - }, - - "MoneyAchv": { - description: "Accumulate a total of ₽{{moneyAmount}}", - }, - "10K_MONEY": { - name: "Money Haver", - }, - "100K_MONEY": { - name: "Rich", - }, - "1M_MONEY": { - name: "Millionaire", - }, - "10M_MONEY": { - name: "One Percenter", - }, - - "DamageAchv": { - description: "Inflict {{damageAmount}} damage in one hit", - }, - "250_DMG": { - name: "Hard Hitter", - }, - "1000_DMG": { - name: "Harder Hitter", - }, - "2500_DMG": { - name: "That's a Lotta Damage!", - }, - "10000_DMG": { - name: "One Punch Man", - }, - - "HealAchv": { - description: "Heal {{healAmount}} {{HP}} at once with a move, ability, or held item", - }, - "250_HEAL": { - name: "Novice Healer", - }, - "1000_HEAL": { - name: "Big Healer", - }, - "2500_HEAL": { - name: "Cleric", - }, - "10000_HEAL": { - name: "Recovery Master", - }, - - "LevelAchv": { - description: "Level up a Pokémon to Lv{{level}}", - }, - "LV_100": { - name: "But Wait, There's More!", - }, - "LV_250": { - name: "Elite", - }, - "LV_1000": { - name: "To Go Even Further Beyond", - }, - - "RibbonAchv": { - description: "Accumulate a total of {{ribbonAmount}} Ribbons", - }, - "10_RIBBONS": { - name: "Pokémon League Champion", - }, - "25_RIBBONS": { - name: "Great League Champion", - }, - "50_RIBBONS": { - name: "Ultra League Champion", - }, - "75_RIBBONS": { - name: "Rogue League Champion", - }, - "100_RIBBONS": { - name: "Master League Champion", - }, - - "TRANSFER_MAX_BATTLE_STAT": { - name: "Teamwork", - description: "Baton pass to another party member with at least one stat maxed out", - }, - "MAX_FRIENDSHIP": { - name: "Friendmaxxing", - description: "Reach max friendship on a Pokémon", - }, - "MEGA_EVOLVE": { - name: "Megamorph", - description: "Mega evolve a Pokémon", - }, - "GIGANTAMAX": { - name: "Absolute Unit", - description: "Gigantamax a Pokémon", - }, - "TERASTALLIZE": { - name: "STAB Enthusiast", - description: "Terastallize a Pokémon", - }, - "STELLAR_TERASTALLIZE": { - name: "The Hidden Type", - description: "Stellar Terastallize a Pokémon", - }, - "SPLICE": { - name: "Infinite Fusion", - description: "Splice two Pokémon together with DNA Splicers", - }, - "MINI_BLACK_HOLE": { - name: "A Hole Lot of Items", - description: "Acquire a Mini Black Hole", - }, - "CATCH_MYTHICAL": { - name: "Mythical", - description: "Catch a mythical Pokémon", - }, - "CATCH_SUB_LEGENDARY": { - name: "(Sub-)Legendary", - description: "Catch a sub-legendary Pokémon", - }, - "CATCH_LEGENDARY": { - name: "Legendary", - description: "Catch a legendary Pokémon", - }, - "SEE_SHINY": { - name: "Shiny", - description: "Find a shiny Pokémon in the wild", - }, - "SHINY_PARTY": { - name: "That's Dedication", - description: "Have a full party of shiny Pokémon", - }, - "HATCH_MYTHICAL": { - name: "Mythical Egg", - description: "Hatch a mythical Pokémon from an egg", - }, - "HATCH_SUB_LEGENDARY": { - name: "Sub-Legendary Egg", - description: "Hatch a sub-legendary Pokémon from an egg", - }, - "HATCH_LEGENDARY": { - name: "Legendary Egg", - description: "Hatch a legendary Pokémon from an egg", - }, - "HATCH_SHINY": { - name: "Shiny Egg", - description: "Hatch a shiny Pokémon from an egg", - }, - "HIDDEN_ABILITY": { - name: "Hidden Potential", - description: "Catch a Pokémon with a hidden ability", - }, - "PERFECT_IVS": { - name: "Certificate of Authenticity", - description: "Get perfect IVs on a Pokémon", - }, - "CLASSIC_VICTORY": { - name: "Undefeated", - description: "Beat the game in classic mode", - }, - "UNEVOLVED_CLASSIC_VICTORY": { - name: "Bring Your Child To Work Day", - description: "Beat the game in Classic Mode with at least one unevolved party member." - }, - - "MONO_GEN_ONE": { - name: "The Original Rival", - description: "Complete the generation one only challenge.", - }, - "MONO_GEN_TWO": { - name: "Generation 1.5", - description: "Complete the generation two only challenge.", - }, - "MONO_GEN_THREE": { - name: "Too much water?", - description: "Complete the generation three only challenge.", - }, - "MONO_GEN_FOUR": { - name: "Is she really the hardest?", - description: "Complete the generation four only challenge.", - }, - "MONO_GEN_FIVE": { - name: "All Original", - description: "Complete the generation five only challenge.", - }, - "MONO_GEN_SIX": { - name: "Almost Royalty", - description: "Complete the generation six only challenge.", - }, - "MONO_GEN_SEVEN": { - name: "Only Technically", - description: "Complete the generation seven only challenge.", - }, - "MONO_GEN_EIGHT": { - name: "A Champion Time!", - description: "Complete the generation eight only challenge.", - }, - "MONO_GEN_NINE": { - name: "She was going easy on you", - description: "Complete the generation nine only challenge.", - }, - - "MonoType": { - description: "Complete the {{type}} monotype challenge.", - }, - "MONO_NORMAL": { - name: "Extra Ordinary", - }, - "MONO_FIGHTING": { - name: "I Know Kung Fu", - }, - "MONO_FLYING": { - name: "Angry Birds", - }, - "MONO_POISON": { - name: "Kanto's Favourite", - }, - "MONO_GROUND": { - name: "Forecast: Earthquakes", - }, - "MONO_ROCK": { - name: "Brock Hard", - }, - "MONO_BUG": { - name: "You Like Jazz?", - }, - "MONO_GHOST": { - name: "Who You Gonna Call?", - }, - "MONO_STEEL": { - name: "Iron Giant", - }, - "MONO_FIRE": { - name: "I Cast Fireball!", - }, - "MONO_WATER": { - name: "When It Rains, It Pours", - }, - "MONO_GRASS": { - name: "Can't Touch This", - }, - "MONO_ELECTRIC": { - name: "Aim For The Horn!", - }, - "MONO_PSYCHIC": { - name: "Big Brain Energy", - }, - "MONO_ICE": { - name: "Walking On Thin Ice", - }, - "MONO_DRAGON": { - name: "Pseudo-Legend Club", - }, - "MONO_DARK": { - name: "It's Just A Phase", - }, - "MONO_FAIRY": { - name: "Hey! Listen!", - }, - "FRESH_START": { - name: "First Try!", - description: "Complete the Fresh Start challenge." - } -} as const; - -// Achievement translations for the when the player character is female (it for now uses the same translations as the male version) -export const PGFachv: AchievementTranslationEntries = PGMachv; diff --git a/src/locales/ca_ES/arena-flyout.json b/src/locales/ca_ES/arena-flyout.json new file mode 100644 index 00000000000..9e26dfeeb6e --- /dev/null +++ b/src/locales/ca_ES/arena-flyout.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/src/locales/ca_ES/arena-tag.json b/src/locales/ca_ES/arena-tag.json new file mode 100644 index 00000000000..9e26dfeeb6e --- /dev/null +++ b/src/locales/ca_ES/arena-tag.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/src/locales/ca_ES/arena-tag.ts b/src/locales/ca_ES/arena-tag.ts deleted file mode 100644 index 22612795308..00000000000 --- a/src/locales/ca_ES/arena-tag.ts +++ /dev/null @@ -1,53 +0,0 @@ -import { SimpleTranslationEntries } from "#app/interfaces/locales"; - -export const arenaTag: SimpleTranslationEntries = { - "yourTeam": "your team", - "opposingTeam": "the opposing team", - "arenaOnRemove": "{{moveName}}'s effect wore off.", - "arenaOnRemovePlayer": "{{moveName}}'s effect wore off\non your side.", - "arenaOnRemoveEnemy": "{{moveName}}'s effect wore off\non the foe's side.", - "mistOnAdd": "{{pokemonNameWithAffix}}'s team became\nshrouded in mist!", - "mistApply": "The mist prevented\nthe lowering of stats!", - "reflectOnAdd": "Reflect reduced the damage of physical moves.", - "reflectOnAddPlayer": "Reflect reduced the damage of physical moves on your side.", - "reflectOnAddEnemy": "Reflect reduced the damage of physical moves on the foe's side.", - "lightScreenOnAdd": "Light Screen reduced the damage of special moves.", - "lightScreenOnAddPlayer": "Light Screen reduced the damage of special moves on your side.", - "lightScreenOnAddEnemy": "Light Screen reduced the damage of special moves on the foe's side.", - "auroraVeilOnAdd": "Aurora Veil reduced the damage of moves.", - "auroraVeilOnAddPlayer": "Aurora Veil reduced the damage of moves on your side.", - "auroraVeilOnAddEnemy": "Aurora Veil reduced the damage of moves on the foe's side.", - "conditionalProtectOnAdd": "{{moveName}} protected team!", - "conditionalProtectOnAddPlayer": "{{moveName}} protected your team!", - "conditionalProtectOnAddEnemy": "{{moveName}} protected the\nopposing team!", - "conditionalProtectApply": "{{moveName}} protected {{pokemonNameWithAffix}}!", - "matBlockOnAdd": "{{pokemonNameWithAffix}} intends to flip up a mat\nand block incoming attacks!", - "noCritOnAddPlayer": "The {{moveName}} shielded your\nteam from critical hits!", - "noCritOnAddEnemy": "The {{moveName}} shielded the opposing\nteam from critical hits!", - "noCritOnRemove": "{{pokemonNameWithAffix}}'s {{moveName}}\nwore off!", - "wishTagOnAdd": "{{pokemonNameWithAffix}}'s wish\ncame true!", - "mudSportOnAdd": "Electricity's power was weakened!", - "mudSportOnRemove": "The effects of Mud Sport\nhave faded.", - "waterSportOnAdd": "Fire's power was weakened!", - "waterSportOnRemove": "The effects of Water Sport\nhave faded.", - "spikesOnAdd": "{{moveName}} were scattered\nall around {{opponentDesc}}'s feet!", - "spikesActivateTrap": "{{pokemonNameWithAffix}} is hurt\nby the spikes!", - "toxicSpikesOnAdd": "{{moveName}} were scattered\nall around {{opponentDesc}}'s feet!", - "toxicSpikesActivateTrapPoison": "{{pokemonNameWithAffix}} absorbed the {{moveName}}!", - "stealthRockOnAdd": "Pointed stones float in the air\naround {{opponentDesc}}!", - "stealthRockActivateTrap": "Pointed stones dug into\n{{pokemonNameWithAffix}}!", - "stickyWebOnAdd": "A {{moveName}} has been laid out on the ground around the opposing team!", - "stickyWebActivateTrap": "The opposing {{pokemonName}} was caught in a sticky web!", - "trickRoomOnAdd": "{{pokemonNameWithAffix}} twisted\nthe dimensions!", - "trickRoomOnRemove": "The twisted dimensions\nreturned to normal!", - "gravityOnAdd": "Gravity intensified!", - "gravityOnRemove": "Gravity returned to normal!", - "tailwindOnAdd": "The Tailwind blew from behind team!", - "tailwindOnAddPlayer": "The Tailwind blew from behind\nyour team!", - "tailwindOnAddEnemy": "The Tailwind blew from behind\nthe opposing team!", - "tailwindOnRemove": "Team's Tailwind petered out!", - "tailwindOnRemovePlayer": "Your team's Tailwind petered out!", - "tailwindOnRemoveEnemy": "The opposing team's Tailwind petered out!", - "happyHourOnAdd": "Everyone is caught up in the happy atmosphere!", - "happyHourOnRemove": "The atmosphere returned to normal.", -} as const; diff --git a/src/locales/ca_ES/battle-info.json b/src/locales/ca_ES/battle-info.json new file mode 100644 index 00000000000..9e26dfeeb6e --- /dev/null +++ b/src/locales/ca_ES/battle-info.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/src/locales/ca_ES/battle-info.ts b/src/locales/ca_ES/battle-info.ts deleted file mode 100644 index f24dad46c6c..00000000000 --- a/src/locales/ca_ES/battle-info.ts +++ /dev/null @@ -1,5 +0,0 @@ -import { SimpleTranslationEntries } from "#app/interfaces/locales"; - -export const battleInfo: SimpleTranslationEntries = { - "generation": "Generation {{generation}}", -} as const; diff --git a/src/locales/ca_ES/battle-message-ui-handler.json b/src/locales/ca_ES/battle-message-ui-handler.json new file mode 100644 index 00000000000..9e26dfeeb6e --- /dev/null +++ b/src/locales/ca_ES/battle-message-ui-handler.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/src/locales/ca_ES/battle-message-ui-handler.ts b/src/locales/ca_ES/battle-message-ui-handler.ts deleted file mode 100644 index 34ca72276f5..00000000000 --- a/src/locales/ca_ES/battle-message-ui-handler.ts +++ /dev/null @@ -1,10 +0,0 @@ -import { SimpleTranslationEntries } from "#app/interfaces/locales"; - -export const battleMessageUiHandler: SimpleTranslationEntries = { - "ivBest": "Best", - "ivFantastic": "Fantastic", - "ivVeryGood": "Very Good", - "ivPrettyGood": "Pretty Good", - "ivDecent": "Decent", - "ivNoGood": "No Good", -} as const; diff --git a/src/locales/ca_ES/battle-scene.json b/src/locales/ca_ES/battle-scene.json new file mode 100644 index 00000000000..9e26dfeeb6e --- /dev/null +++ b/src/locales/ca_ES/battle-scene.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/src/locales/ca_ES/battle.json b/src/locales/ca_ES/battle.json new file mode 100644 index 00000000000..9e26dfeeb6e --- /dev/null +++ b/src/locales/ca_ES/battle.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/src/locales/ca_ES/battle.ts b/src/locales/ca_ES/battle.ts deleted file mode 100644 index 522fbb3261b..00000000000 --- a/src/locales/ca_ES/battle.ts +++ /dev/null @@ -1,99 +0,0 @@ -import { SimpleTranslationEntries } from "#app/interfaces/locales"; - -export const battle: SimpleTranslationEntries = { - "bossAppeared": "{{bossName}} appeared.", - "trainerAppeared": "{{trainerName}}\nwould like to battle!", - "trainerAppearedDouble": "{{trainerName}}\nwould like to battle!", - "trainerSendOut": "{{trainerName}} sent out\n{{pokemonName}}!", - "singleWildAppeared": "A wild {{pokemonName}} appeared!", - "multiWildAppeared": "A wild {{pokemonName1}}\nand {{pokemonName2}} appeared!", - "playerComeBack": "Come back, {{pokemonName}}!", - "trainerComeBack": "{{trainerName}} withdrew {{pokemonName}}!", - "playerGo": "Go! {{pokemonName}}!", - "trainerGo": "{{trainerName}} sent out {{pokemonName}}!", - "switchQuestion": "Will you switch\n{{pokemonName}}?", - "trainerDefeated": "You defeated\n{{trainerName}}!", - "moneyWon": "You got\n₽{{moneyAmount}} for winning!", - "moneyPickedUp": "You picked up ₽{{moneyAmount}}!", - "pokemonCaught": "{{pokemonName}} was caught!", - "addedAsAStarter": "{{pokemonName}} has been\nadded as a starter!", - "partyFull": "Your party is full.\nRelease a Pokémon to make room for {{pokemonName}}?", - "pokemon": "Pokémon", - "sendOutPokemon": "Go! {{pokemonName}}!", - "hitResultCriticalHit": "A critical hit!", - "hitResultSuperEffective": "It's super effective!", - "hitResultNotVeryEffective": "It's not very effective…", - "hitResultNoEffect": "It doesn't affect {{pokemonName}}!", - "hitResultOneHitKO": "It's a one-hit KO!", - "attackFailed": "But it failed!", - "attackMissed": "{{pokemonNameWithAffix}} avoided the attack!", - "attackHitsCount": "Hit {{count}} time(s)!", - "rewardGain": "You received\n{{modifierName}}!", - "expGain": "{{pokemonName}} gained\n{{exp}} EXP. Points!", - "levelUp": "{{pokemonName}} grew to\nLv. {{level}}!", - "learnMove": "{{pokemonName}} learned\n{{moveName}}!", - "learnMovePrompt": "{{pokemonName}} wants to learn the\nmove {{moveName}}.", - "learnMoveLimitReached": "However, {{pokemonName}} already\nknows four moves.", - "learnMoveReplaceQuestion": "Should a move be forgotten and\nreplaced with {{moveName}}?", - "learnMoveStopTeaching": "Stop trying to teach\n{{moveName}}?", - "learnMoveNotLearned": "{{pokemonName}} did not learn the\nmove {{moveName}}.", - "learnMoveForgetQuestion": "Which move should be forgotten?", - "learnMoveForgetSuccess": "{{pokemonName}} forgot how to\nuse {{moveName}}.", - "countdownPoof": "@d{32}1, @d{15}2, and@d{15}… @d{15}… @d{15}… @d{15}@s{pb_bounce_1}Poof!", - "learnMoveAnd": "And…", - "levelCapUp": "The level cap\nhas increased to {{levelCap}}!", - "moveNotImplemented": "{{moveName}} is not yet implemented and cannot be selected.", - "moveNoPP": "There's no PP left for\nthis move!", - "moveDisabled": "{{moveName}} is disabled!", - "noPokeballForce": "An unseen force\nprevents using Poké Balls.", - "noPokeballTrainer": "You can't catch\nanother trainer's Pokémon!", - "noPokeballMulti": "You can only throw a Poké Ball\nwhen there is one Pokémon remaining!", - "noPokeballStrong": "The target Pokémon is too strong to be caught!\nYou need to weaken it first!", - "noEscapeForce": "An unseen force\nprevents escape.", - "noEscapeTrainer": "You can't run\nfrom a trainer battle!", - "noEscapePokemon": "{{pokemonName}}'s {{moveName}}\nprevents {{escapeVerb}}!", - "runAwaySuccess": "You got away safely!", - "runAwayCannotEscape": "You can't escape!", - "escapeVerbSwitch": "switching", - "escapeVerbFlee": "fleeing", - "notDisabled": "{{pokemonName}}'s {{moveName}} is disabled\nno more!", - "turnEndHpRestore": "{{pokemonName}}'s HP was restored.", - "hpIsFull": "{{pokemonName}}'s\nHP is full!", - "skipItemQuestion": "Are you sure you want to skip taking an item?", - "itemStackFull": "The stack for {{fullItemName}} is full.\nYou will receive {{itemName}} instead.", - "eggHatching": "Oh?", - "ivScannerUseQuestion": "Use IV Scanner on {{pokemonName}}?", - "wildPokemonWithAffix": "Wild {{pokemonName}}", - "foePokemonWithAffix": "Foe {{pokemonName}}", - "useMove": "{{pokemonNameWithAffix}} used {{moveName}}!", - "drainMessage": "{{pokemonName}} had its\nenergy drained!", - "regainHealth": "{{pokemonName}} regained\nhealth!", - "stealEatBerry": "{{pokemonName}} stole and ate\n{{targetName}}'s {{berryName}}!", - "ppHealBerry": "{{pokemonNameWithAffix}} restored PP to its move {{moveName}}\nusing its {{berryName}}!", - "hpHealBerry": "{{pokemonNameWithAffix}} restored its health using\nits {{berryName}}!", - "fainted": "{{pokemonNameWithAffix}} fainted!", - "statsAnd": "and", - "stats": "Stats", - "statRose_one": "{{pokemonNameWithAffix}}'s {{stats}} rose!", - "statRose_other": "{{pokemonNameWithAffix}}'s {{stats}} rose!", - "statSharplyRose_one": "{{pokemonNameWithAffix}}'s {{stats}} sharply rose!", - "statSharplyRose_other": "{{pokemonNameWithAffix}}'s {{stats}} sharply rose!", - "statRoseDrastically_one": "{{pokemonNameWithAffix}}'s {{stats}} rose drastically!", - "statRoseDrastically_other": "{{pokemonNameWithAffix}}'s {{stats}} rose drastically!", - "statWontGoAnyHigher_one": "{{pokemonNameWithAffix}}'s {{stats}} won't go any higher!", - "statWontGoAnyHigher_other": "{{pokemonNameWithAffix}}'s {{stats}} won't go any higher!", - "statFell_one": "{{pokemonNameWithAffix}}'s {{stats}} fell!", - "statFell_other": "{{pokemonNameWithAffix}}'s {{stats}} fell!", - "statHarshlyFell_one": "{{pokemonNameWithAffix}}'s {{stats}} harshly fell!", - "statHarshlyFell_other": "{{pokemonNameWithAffix}}'s {{stats}} harshly fell!", - "statSeverelyFell_one": "{{pokemonNameWithAffix}}'s {{stats}} severely fell!", - "statSeverelyFell_other": "{{pokemonNameWithAffix}}'s {{stats}} severely fell!", - "statWontGoAnyLower_one": "{{pokemonNameWithAffix}}'s {{stats}} won't go any lower!", - "statWontGoAnyLower_other": "{{pokemonNameWithAffix}}'s {{stats}} won't go any lower!", - "transformedIntoType": "{{pokemonName}} transformed\ninto the {{type}} type!", - "retryBattle": "Would you like to retry from the start of the battle?", - "unlockedSomething": "{{unlockedThing}}\nhas been unlocked.", - "congratulations": "Congratulations!", - "beatModeFirstTime": "{{speciesName}} beat {{gameMode}} Mode for the first time!\nYou received {{newModifier}}!", - "ppReduced": "It reduced the PP of {{targetName}}'s\n{{moveName}} by {{reduction}}!", -} as const; diff --git a/src/locales/ca_ES/battler-tags.json b/src/locales/ca_ES/battler-tags.json new file mode 100644 index 00000000000..9e26dfeeb6e --- /dev/null +++ b/src/locales/ca_ES/battler-tags.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/src/locales/ca_ES/berry.json b/src/locales/ca_ES/berry.json new file mode 100644 index 00000000000..9e26dfeeb6e --- /dev/null +++ b/src/locales/ca_ES/berry.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/src/locales/ca_ES/berry.ts b/src/locales/ca_ES/berry.ts deleted file mode 100644 index 3c4930b1591..00000000000 --- a/src/locales/ca_ES/berry.ts +++ /dev/null @@ -1,48 +0,0 @@ -import { BerryTranslationEntries } from "#app/interfaces/locales"; - -export const berry: BerryTranslationEntries = { - "SITRUS": { - name: "Sitrus Berry", - effect: "Restores 25% HP if HP is below 50%", - }, - "LUM": { - name: "Lum Berry", - effect: "Cures any non-volatile status condition and confusion", - }, - "ENIGMA": { - name: "Enigma Berry", - effect: "Restores 25% HP if hit by a super effective move", - }, - "LIECHI": { - name: "Liechi Berry", - effect: "Raises Attack if HP is below 25%", - }, - "GANLON": { - name: "Ganlon Berry", - effect: "Raises Defense if HP is below 25%", - }, - "PETAYA": { - name: "Petaya Berry", - effect: "Raises Sp. Atk if HP is below 25%", - }, - "APICOT": { - name: "Apicot Berry", - effect: "Raises Sp. Def if HP is below 25%", - }, - "SALAC": { - name: "Salac Berry", - effect: "Raises Speed if HP is below 25%", - }, - "LANSAT": { - name: "Lansat Berry", - effect: "Raises critical hit ratio if HP is below 25%", - }, - "STARF": { - name: "Starf Berry", - effect: "Sharply raises a random stat if HP is below 25%", - }, - "LEPPA": { - name: "Leppa Berry", - effect: "Restores 10 PP to a move if its PP reaches 0", - }, -} as const; diff --git a/src/locales/ca_ES/bgm-name.json b/src/locales/ca_ES/bgm-name.json new file mode 100644 index 00000000000..9e26dfeeb6e --- /dev/null +++ b/src/locales/ca_ES/bgm-name.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/src/locales/ca_ES/biome.json b/src/locales/ca_ES/biome.json new file mode 100644 index 00000000000..9e26dfeeb6e --- /dev/null +++ b/src/locales/ca_ES/biome.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/src/locales/ca_ES/biome.ts b/src/locales/ca_ES/biome.ts deleted file mode 100644 index d3f34c021d4..00000000000 --- a/src/locales/ca_ES/biome.ts +++ /dev/null @@ -1,40 +0,0 @@ -import { SimpleTranslationEntries } from "#app/interfaces/locales"; - -export const biome: SimpleTranslationEntries = { - "unknownLocation": "Somewhere you can\'t remember", - "TOWN": "Town", - "PLAINS": "Plains", - "GRASS": "Grassy Field", - "TALL_GRASS": "Tall Grass", - "METROPOLIS": "Metropolis", - "FOREST": "Forest", - "SEA": "Sea", - "SWAMP": "Swamp", - "BEACH": "Beach", - "LAKE": "Lake", - "SEABED": "Seabed", - "MOUNTAIN": "Mountain", - "BADLANDS": "Badlands", - "CAVE": "Cave", - "DESERT": "Desert", - "ICE_CAVE": "Ice Cave", - "MEADOW": "Meadow", - "POWER_PLANT": "Power Plant", - "VOLCANO": "Volcano", - "GRAVEYARD": "Graveyard", - "DOJO": "Dojo", - "FACTORY": "Factory", - "RUINS": "Ancient Ruins", - "WASTELAND": "Wasteland", - "ABYSS": "Abyss", - "SPACE": "Space", - "CONSTRUCTION_SITE": "Construction Site", - "JUNGLE": "Jungle", - "FAIRY_CAVE": "Fairy Cave", - "TEMPLE": "Temple", - "SLUM": "Slum", - "SNOWY_FOREST": "Snowy Forest", - "ISLAND": "Island", - "LABORATORY": "Laboratory", - "END": "???", -} as const; diff --git a/src/locales/ca_ES/challenges.json b/src/locales/ca_ES/challenges.json new file mode 100644 index 00000000000..9e26dfeeb6e --- /dev/null +++ b/src/locales/ca_ES/challenges.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/src/locales/ca_ES/challenges.ts b/src/locales/ca_ES/challenges.ts deleted file mode 100644 index e3302876201..00000000000 --- a/src/locales/ca_ES/challenges.ts +++ /dev/null @@ -1,32 +0,0 @@ -import { TranslationEntries } from "#app/interfaces/locales.js"; - -export const challenges: TranslationEntries = { - "title": "Challenge Modifiers", - "illegalEvolution": "{{pokemon}} changed into an ineligble pokémon\nfor this challenge!", - "singleGeneration": { - "name": "Mono Gen", - "desc": "You can only use Pokémon from Generation {{gen}}.", - "desc_default": "You can only use Pokémon from the chosen generation.", - "gen_1": "one", - "gen_2": "two", - "gen_3": "three", - "gen_4": "four", - "gen_5": "five", - "gen_6": "six", - "gen_7": "seven", - "gen_8": "eight", - "gen_9": "nine", - }, - "singleType": { - "name": "Mono Type", - "desc": "You can only use Pokémon with the {{type}} type.", - "desc_default": "You can only use Pokémon of the chosen type." - //types in pokemon-info - }, - "freshStart": { - "name": "Fresh Start", - "desc": "You can only use the original starters, and only as if you had just started PokéRogue.", - "value.0": "Off", - "value.1": "On", - } -} as const; diff --git a/src/locales/ca_ES/command-ui-handler.json b/src/locales/ca_ES/command-ui-handler.json new file mode 100644 index 00000000000..9e26dfeeb6e --- /dev/null +++ b/src/locales/ca_ES/command-ui-handler.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/src/locales/ca_ES/command-ui-handler.ts b/src/locales/ca_ES/command-ui-handler.ts deleted file mode 100644 index c4c65db0aa0..00000000000 --- a/src/locales/ca_ES/command-ui-handler.ts +++ /dev/null @@ -1,9 +0,0 @@ -import { SimpleTranslationEntries } from "#app/interfaces/locales"; - -export const commandUiHandler: SimpleTranslationEntries = { - "fight": "Fight", - "ball": "Ball", - "pokemon": "Pokémon", - "run": "Run", - "actionMessage": "What will\n{{pokemonName}} do?", -} as const; diff --git a/src/locales/ca_ES/common.json b/src/locales/ca_ES/common.json new file mode 100644 index 00000000000..9e26dfeeb6e --- /dev/null +++ b/src/locales/ca_ES/common.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/src/locales/ca_ES/common.ts b/src/locales/ca_ES/common.ts deleted file mode 100644 index 750322e1f09..00000000000 --- a/src/locales/ca_ES/common.ts +++ /dev/null @@ -1,10 +0,0 @@ -import { SimpleTranslationEntries } from "#app/interfaces/locales"; - -export const common: SimpleTranslationEntries = { - "start": "Start", - "luckIndicator": "Luck:", - "shinyOnHover": "Shiny", - "commonShiny": "Common", - "rareShiny": "Rare", - "epicShiny": "Epic", -} as const; diff --git a/src/locales/ca_ES/config.ts b/src/locales/ca_ES/config.ts index 831ab5d99f5..4d8f6c9dc59 100644 --- a/src/locales/ca_ES/config.ts +++ b/src/locales/ca_ES/config.ts @@ -1,116 +1,113 @@ -import { common } from "./common.js"; -import { settings } from "./settings.js"; -import { ability } from "./ability"; -import { abilityTriggers } from "./ability-trigger"; -import { arenaFlyout } from "./arena-flyout"; -import { arenaTag } from "./arena-tag"; -import { PGFachv, PGMachv } from "./achv"; -import { battle } from "./battle"; -import { battleInfo } from "./battle-info"; -import { battleMessageUiHandler } from "./battle-message-ui-handler"; -import { battlerTags } from "./battler-tags"; -import { berry } from "./berry"; -import { bgmName } from "./bgm-name"; -import { biome } from "./biome"; -import { challenges } from "./challenges"; -import { commandUiHandler } from "./command-ui-handler"; -import { - PGFbattleSpecDialogue, - PGFdialogue, - PGFdoubleBattleDialogue, - PGFmiscDialogue, - PGMbattleSpecDialogue, - PGMdialogue, - PGMdoubleBattleDialogue, - PGMmiscDialogue -} from "./dialogue"; -import { egg } from "./egg"; -import { fightUiHandler } from "./fight-ui-handler"; -import { filterBar } from "./filter-bar"; -import { gameMode } from "./game-mode"; -import { gameStatsUiHandler } from "./game-stats-ui-handler"; -import { growth } from "./growth"; -import { menu } from "./menu"; -import { menuUiHandler } from "./menu-ui-handler"; -import { modifier } from "./modifier"; -import { modifierType } from "./modifier-type"; -import { move } from "./move"; -import { nature } from "./nature"; -import { partyUiHandler } from "./party-ui-handler"; -import { pokeball } from "./pokeball"; -import { pokemon } from "./pokemon"; -import { pokemonForm, battlePokemonForm } from "./pokemon-form"; -import { pokemonInfo } from "./pokemon-info"; -import { pokemonInfoContainer } from "./pokemon-info-container"; -import { pokemonSummary } from "./pokemon-summary"; -import { saveSlotSelectUiHandler } from "./save-slot-select-ui-handler"; -import { splashMessages } from "./splash-messages"; -import { starterSelectUiHandler } from "./starter-select-ui-handler"; -import { statusEffect } from "./status-effect"; -import { titles, trainerClasses, trainerNames } from "./trainers"; -import { tutorial } from "./tutorial"; -import { voucher } from "./voucher"; -import { terrain, weather } from "./weather"; -import { modifierSelectUiHandler } from "./modifier-select-ui-handler"; -import { moveTriggers } from "./move-trigger"; +import common from "./common.json"; +import settings from "./settings.json"; +import ability from "./ability.json"; +import abilityTriggers from "./ability-trigger.json"; +import arenaFlyout from "./arena-flyout.json"; +import arenaTag from "./arena-tag.json"; +import achv from "./achv.json"; +import battle from "./battle.json"; +import battleScene from "./battle-scene.json"; +import battleInfo from "./battle-info.json"; +import battleMessageUiHandler from "./battle-message-ui-handler.json"; +import battlerTags from "./battler-tags.json"; +import berry from "./berry.json"; +import bgmName from "./bgm-name.json"; +import biome from "./biome.json"; +import challenges from "./challenges.json"; +import commandUiHandler from "./command-ui-handler.json"; +import dialogue from "./dialogue.json"; +import battleSpecDialogue from "./dialogue-final-boss.json"; +import miscDialogue from "./dialogue-misc.json"; +import doubleBattleDialogue from "./dialogue-double-battle.json"; +import egg from "./egg.json"; +import fightUiHandler from "./fight-ui-handler.json"; +import filterBar from "./filter-bar.json"; +import gameMode from "./game-mode.json"; +import gameStatsUiHandler from "./game-stats-ui-handler.json"; +import growth from "./growth.json"; +import menu from "./menu.json"; +import menuUiHandler from "./menu-ui-handler.json"; +import modifier from "./modifier.json"; +import modifierType from "./modifier-type.json"; +import move from "./move.json"; +import nature from "./nature.json"; +import partyUiHandler from "./party-ui-handler.json"; +import pokeball from "./pokeball.json"; +import pokemon from "./pokemon.json"; +import pokemonForm from "./pokemon-form.json"; +import battlePokemonForm from "./pokemon-form-battle.json"; +import pokemonInfo from "./pokemon-info.json"; +import pokemonInfoContainer from "./pokemon-info-container.json"; +import pokemonSummary from "./pokemon-summary.json"; +import saveSlotSelectUiHandler from "./save-slot-select-ui-handler.json"; +import splashMessages from "./splash-messages.json"; +import starterSelectUiHandler from "./starter-select-ui-handler.json"; +import statusEffect from "./status-effect.json"; +import trainerTitles from "./trainer-titles.json"; +import trainerClasses from "./trainer-classes.json"; +import trainerNames from "./trainer-names.json"; +import tutorial from "./tutorial.json"; +import voucher from "./voucher.json"; +import weather from "./weather.json"; +import terrain from "./terrain.json"; +import modifierSelectUiHandler from "./modifier-select-ui-handler.json"; +import moveTriggers from "./move-trigger.json"; +import runHistory from "./run-history.json"; -export const caESConfig = { - ability: ability, - abilityTriggers: abilityTriggers, - arenaFlyout: arenaFlyout, - arenaTag: arenaTag, - battle: battle, - battleInfo: battleInfo, - battleMessageUiHandler: battleMessageUiHandler, - battlePokemonForm: battlePokemonForm, - battlerTags: battlerTags, - berry: berry, - bgmName: bgmName, - biome: biome, - challenges: challenges, - commandUiHandler: commandUiHandler, - common: common, - PGMachv: PGMachv, - PGFachv: PGFachv, - PGMdialogue: PGMdialogue, - PGFdialogue: PGFdialogue, - PGMbattleSpecDialogue: PGMbattleSpecDialogue, - PGFbattleSpecDialogue: PGFbattleSpecDialogue, - PGMmiscDialogue: PGMmiscDialogue, - PGFmiscDialogue: PGFmiscDialogue, - PGMdoubleBattleDialogue: PGMdoubleBattleDialogue, - PGFdoubleBattleDialogue: PGFdoubleBattleDialogue, - egg: egg, - fightUiHandler: fightUiHandler, - filterBar: filterBar, - gameMode: gameMode, - gameStatsUiHandler: gameStatsUiHandler, - growth: growth, - menu: menu, - menuUiHandler: menuUiHandler, - modifier: modifier, - modifierType: modifierType, - move: move, - nature: nature, - pokeball: pokeball, - pokemon: pokemon, - pokemonForm: pokemonForm, - pokemonInfo: pokemonInfo, - pokemonInfoContainer: pokemonInfoContainer, - pokemonSummary: pokemonSummary, - saveSlotSelectUiHandler: saveSlotSelectUiHandler, - settings: settings, - splashMessages: splashMessages, - starterSelectUiHandler: starterSelectUiHandler, - statusEffect: statusEffect, - terrain: terrain, - titles: titles, - trainerClasses: trainerClasses, - trainerNames: trainerNames, - tutorial: tutorial, - voucher: voucher, - weather: weather, - partyUiHandler: partyUiHandler, - modifierSelectUiHandler: modifierSelectUiHandler, - moveTriggers: moveTriggers +export const caEsConfig = { + ability, + abilityTriggers, + arenaFlyout, + arenaTag, + battle, + battleScene, + battleInfo, + battleMessageUiHandler, + battlePokemonForm, + battlerTags, + berry, + bgmName, + biome, + challenges, + commandUiHandler, + common, + achv, + dialogue, + battleSpecDialogue, + miscDialogue, + doubleBattleDialogue, + egg, + fightUiHandler, + filterBar, + gameMode, + gameStatsUiHandler, + growth, + menu, + menuUiHandler, + modifier, + modifierType, + move, + nature, + pokeball, + pokemon, + pokemonForm, + pokemonInfo, + pokemonInfoContainer, + pokemonSummary, + saveSlotSelectUiHandler, + settings, + splashMessages, + starterSelectUiHandler, + statusEffect, + terrain, + titles: trainerTitles, + trainerClasses, + trainerNames, + tutorial, + voucher, + weather, + partyUiHandler, + modifierSelectUiHandler, + moveTriggers, + runHistory, }; diff --git a/src/locales/ca_ES/dialogue-double-battle.json b/src/locales/ca_ES/dialogue-double-battle.json new file mode 100644 index 00000000000..9e26dfeeb6e --- /dev/null +++ b/src/locales/ca_ES/dialogue-double-battle.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/src/locales/ca_ES/dialogue-final-boss.json b/src/locales/ca_ES/dialogue-final-boss.json new file mode 100644 index 00000000000..9e26dfeeb6e --- /dev/null +++ b/src/locales/ca_ES/dialogue-final-boss.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/src/locales/ca_ES/dialogue-misc.json b/src/locales/ca_ES/dialogue-misc.json new file mode 100644 index 00000000000..9e26dfeeb6e --- /dev/null +++ b/src/locales/ca_ES/dialogue-misc.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/src/locales/ca_ES/dialogue.json b/src/locales/ca_ES/dialogue.json new file mode 100644 index 00000000000..9e26dfeeb6e --- /dev/null +++ b/src/locales/ca_ES/dialogue.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/src/locales/ca_ES/dialogue.ts b/src/locales/ca_ES/dialogue.ts deleted file mode 100644 index 6db337517da..00000000000 --- a/src/locales/ca_ES/dialogue.ts +++ /dev/null @@ -1,2922 +0,0 @@ -import { DialogueTranslationEntries, SimpleTranslationEntries } from "#app/interfaces/locales"; - -// Dialogue of the NPCs in the game when the player character is male (or unset) -export const PGMdialogue: DialogueTranslationEntries = { - "youngster": { - "encounter": { - 1: "Hey, wanna battle?", - 2: "Are you a new trainer too?", - 3: "Hey, I haven't seen you before. Let's battle!", - 4: "I just lost, so I'm trying to find more Pokémon.\nWait! You look weak! Come on, let's battle!", - 5: "Have we met or not? I don't really remember. Well, I guess it's nice to meet you anyway!", - 6: "All right! Let's go!", - 7: "All right! Here I come! I'll show you my power!", - 8: "Haw haw haw... I'll show you how hawesome my Pokémon are!", - 9: "No need to waste time saying hello. Bring it on whenever you're ready!", - 10: "Don't let your guard down, or you may be crying when a kid beats you.", - 11: "I've raised my Pokémon with great care. You're not allowed to hurt them!", - 12: "Glad you made it! It won't be an easy job from here.", - 13: "The battles continue forever! Welcome to the world with no end!" - }, - "victory": { - 1: "Wow! You're strong!", - 2: "I didn't stand a chance, huh?", - 3: "I'll find you again when I'm older and beat you!", - 4: "Ugh. I don't have any more Pokémon.", - 5: "No way… NO WAY! How could I lose again…", - 6: "No! I lost!", - 7: "Whoa! You are incredible! I'm amazed and surprised!", - 8: "Could it be… How… My Pokémon and I are the strongest, though…", - 9: "I won't lose next time! Let's battle again sometime!", - 10: "Sheesh! Can't you see that I'm just a kid! It wasn't fair of you to go all out like that!", - 11: "Your Pokémon are more amazing! Trade with me!", - 12: "I got a little carried away earlier, but what job was I talking about?", - 13: "Ahaha! There it is! That's right! You're already right at home in this world!" - } - }, - "lass": { - "encounter": { - 1: "Let's have a battle, shall we?", - 2: "You look like a new trainer. Let's have a battle!", - 3: "I don't recognize you. How about a battle?", - 4: "Let's have a fun Pokémon battle!", - 5: "I'll show you the ropes of how to really use Pokémon!", - 6: "A serious battle starts from a serious beginning! Are you sure you're ready?", - 7: "You're only young once. And you only get one shot at a given battle. Soon, you'll be nothing but a memory.", - 8: "You'd better go easy on me, OK? Though I'll be seriously fighting!", - 9: "School is boring. I've got nothing to do. Yawn. I'm only battling to kill the time." - }, - "victory": { - 1: "That was impressive! I've got a lot to learn.", - 2: "I didn't think you'd beat me that bad…", - 3: "I hope we get to have a rematch some day.", - 4: "That was pretty amazingly fun! You've totally exhausted me…", - 5: "You actually taught me a lesson! You're pretty amazing!", - 6: "Seriously, I lost. That is, like, seriously depressing, but you were seriously cool.", - 7: "I don't need memories like this. Deleting memory…", - 8: "Hey! I told you to go easy on me! Still, you're pretty cool when you're serious.", - 9: "I'm actually getting tired of battling… There's gotta be something new to do…" - } - }, - "breeder": { - "encounter": { - 1: "Obedient Pokémon, selfish Pokémon… Pokémon have unique characteristics.", - 2: "Even though my upbringing and behavior are poor, I've raised my Pokémon well.", - 3: "Hmm, do you discipline your Pokémon? Pampering them too much is no good.", - }, - "victory": { - 1: "It is important to nurture and train each Pokémon's characteristics.", - 2: "Unlike my diabolical self, these are some good Pokémon.", - 3: "Too much praise can spoil both Pokémon and people.", - }, - "defeat": { - 1: "You should not get angry at your Pokémon, even if you lose a battle.", - 2: "Right? Pretty good Pokémon, huh? I'm suited to raising things.", - 3: "No matter how much you love your Pokémon, you still have to discipline them when they misbehave." - } - }, - "breeder_female": { - "encounter": { - 1: "Pokémon never betray you. They return all the love you give them.", - 2: "Shall I give you a tip for training good Pokémon?", - 3: "I have raised these very special Pokémon using a special method." - }, - "victory": { - 1: "Ugh… It wasn't supposed to be like this. Did I administer the wrong blend?", - 2: "How could that happen to my Pokémon… What are you feeding your Pokémon?", - 3: "If I lose, that tells you I was just killing time. It doesn't damage my ego at all." - }, - "defeat": { - 1: "This proves my Pokémon have accepted my love.", - 2: "The real trick behind training good Pokémon is catching good Pokémon.", - 3: "Pokémon will be strong or weak depending on how you raise them." - } - }, - "fisherman": { - "encounter": { - 1: "Aack! You made me lose a bite!\nWhat are you going to do about it?", - 2: "Go away! You're scaring the Pokémon!", - 3: "Let's see if you can reel in a victory!", - }, - "victory": { - 1: "Just forget about it.", - 2: "Next time, I'll be reelin' in the triumph!", - 3: "Guess I underestimated the currents this time.", - }, - }, - "fisherman_female": { - "encounter": { - 1: "Woah! I've hooked a big one!", - 2: "Line's in, ready to reel in success!", - 3: "Ready to make waves!" - }, - "victory": { - 1: "I'll be back with a stronger hook.", - 2: "I'll reel in victory next time.", - 3: "I'm just sharpening my hooks for the comeback!" - }, - }, - "swimmer": { - "encounter": { - 1: "Time to dive in!", - 2: "Let's ride the waves of victory!", - 3: "Ready to make a splash!", - }, - "victory": { - 1: "Drenched in defeat!", - 2: "A wave of defeat!", - 3: "Back to shore, I guess.", - }, - }, - "backpacker": { - "encounter": { - 1: "Pack up, game on!", - 2: "Let's see if you can keep pace!", - 3: "Gear up, challenger!", - 4: "I've spent 20 years trying to find myself… But where am I?" - }, - "victory": { - 1: "Tripped up this time!", - 2: "Oh, I think I'm lost.", - 3: "Dead end!", - 4: "Wait up a second! Hey! Don't you know who I am?" - }, - }, - "ace_trainer": { - "encounter": { - 1: "You seem quite confident.", - 2: "Your Pokémon… Show them to me…", - 3: "Because I'm an Ace Trainer, people think I'm strong.", - 4: "Are you aware of what it takes to be an Ace Trainer?" - }, - "victory": { - 1: "Yes… You have good Pokémon…", - 2: "What?! But I'm a battling genius!", - 3: "Of course, you are the main character!", - 4: "OK! OK! You could be an Ace Trainer!" - }, - "defeat": { - 1: "I am devoting my body and soul to Pokémon battles!", - 2: "All within my expectations… Nothing to be surprised about…", - 3: "I thought I'd grow up to be a frail person who looked like they would break if you squeezed them too hard.", - 4: "Of course I'm strong and don't lose. It's important that I win gracefully." - } - }, - "parasol_lady": { - "encounter": { - 1: "Time to grace the battlefield with elegance and poise!", - }, - "victory": { - 1: "My elegance remains unbroken!", - } - }, - "twins": { - "encounter": { - 1: "Get ready, because when we team up, it's double the trouble!", - 2: "Two hearts, one strategy – let's see if you can keep up with our twin power!", - 3: "Hope you're ready for double trouble, because we're about to bring the heat!" - }, - "victory": { - 1: "We may have lost this round, but our bond remains unbreakable!", - 2: "Our twin spirit won't be dimmed for long.", - 3: "We'll come back stronger as a dynamic duo!" - }, - "defeat": { - 1: "Twin power reigns supreme!", - 2: "Two hearts, one triumph!", - 3: "Double the smiles, double the victory dance!" - } - }, - "cyclist": { - "encounter": { - 1: "Get ready to eat my dust!", - 2: "Gear up, challenger! I'm about to leave you in the dust!", - 3: "Pedal to the metal, let's see if you can keep pace!" - }, - "victory": { - 1: "Spokes may be still, but determination pedals on.", - 2: "Outpaced!", - 3: "The road to victory has many twists and turns yet to explore." - }, - }, - "black_belt": { - "encounter": { - 1: "I praise your courage in challenging me! For I am the one with the strongest kick!", - 2: "Oh, I see. Would you like to be cut to pieces? Or do you prefer the role of punching bag?" - }, - "victory": { - 1: "Oh. The Pokémon did the fighting. My strong kick didn't help a bit.", - 2: "Hmmm… If I was going to lose anyway, I was hoping to get totally messed up in the process." - }, - }, - "battle_girl": { - "encounter": { - 1: "You don't have to try to impress me. You can lose against me.", - }, - "victory": { - 1: "It's hard to say good-bye, but we are running out of time…", - }, - }, - "hiker": { - "encounter": { - 1: "My middle-age spread has given me as much gravitas as the mountains I hike!", - 2: "I inherited this big-boned body from my parents… I'm like a living mountain range…", - }, - "victory": { - 1: "At least I cannot lose when it comes to BMI!", - 2: "It's not enough… It's never enough. My bad cholesterol isn't high enough…" - }, - }, - "ranger": { - "encounter": { - 1: "When I am surrounded by nature, most other things cease to matter.", - 2: "When I'm living without nature in my life, sometimes I'll suddenly feel an anxiety attack coming on." - }, - "victory": { - 1: "It doesn't matter to the vastness of nature whether I win or lose…", - 2: "Something like this is pretty trivial compared to the stifling feelings of city life." - }, - "defeat": { - 1: "I won the battle. But victory is nothing compared to the vastness of nature…", - 2: "I'm sure how you feel is not so bad if you compare it to my anxiety attacks…" - } - }, - "scientist": { - "encounter": { - 1: "My research will lead this world to peace and joy.", - }, - "victory": { - 1: "I am a genius… I am not supposed to lose against someone like you…", - }, - }, - "school_kid": { - "encounter": { - 1: "…Heehee. I'm confident in my calculations and analysis.", - 2: "I'm gaining as much experience as I can because I want to be a Gym Leader someday." - }, - "victory": { - 1: "Ohhhh… Calculation and analysis are perhaps no match for chance…", - 2: "Even difficult, trying experiences have their purpose, I suppose." - } - }, - "artist": { - "encounter": { - 1: "I used to be popular, but now I am all washed up.", - }, - "victory": { - 1: "As times change, values also change. I realized that too late.", - }, - }, - "guitarist": { - "encounter": { - 1: "Get ready to feel the rhythm of defeat as I strum my way to victory!", - }, - "victory": { - 1: "Silenced for now, but my melody of resilience will play on.", - }, - }, - "worker": { - "encounter": { - 1: "It bothers me that people always misunderstand me. I'm a lot more pure than everyone thinks.", - }, - "victory": { - 1: "I really don't want my skin to burn, so I want to stay in the shade while I work.", - }, - }, - "worker_female": { - "encounter": { - 1: `It bothers me that people always misunderstand me. - $I'm a lot more pure than everyone thinks.` - }, - "victory": { - 1: "I really don't want my skin to burn, so I want to stay in the shade while I work." - }, - "defeat": { - 1: "My body and mind aren't necessarily always in sync." - } - }, - "worker_double": { - "encounter": { - 1: "I'll show you we can break you. We've been training in the field!", - }, - "victory": { - 1: "How strange… How could this be… I shouldn't have been outmuscled.", - }, - }, - "hex_maniac": { - "encounter": { - 1: "I normally only ever listen to classical music, but if I lose, I think I shall try a bit of new age!", - 2: "I grow stronger with each tear I cry." - }, - "victory": { - 1: "Is this the dawning of the age of Aquarius?", - 2: "Now I can get even stronger. I grow with every grudge." - }, - "defeat": { - 1: "New age simply refers to twentieth century classical composers, right?", - 2: "Don't get hung up on sadness or frustration. You can use your grudges to motivate yourself." - } - }, - "psychic": { - "encounter": { - 1: "Hi! Focus!", - }, - "victory": { - 1: "Eeeeek!", - }, - }, - "officer": { - "encounter": { - 1: "Brace yourself, because justice is about to be served!", - 2: "Ready to uphold the law and serve justice on the battlefield!" - }, - "victory": { - 1: "The weight of justice feels heavier than ever…", - 2: "The shadows of defeat linger in the precinct." - } - }, - "beauty": { - "encounter": { - 1: "My last ever battle… That's the way I'd like us to view this match…", - }, - "victory": { - 1: "It's been fun… Let's have another last battle again someday…", - }, - }, - "baker": { - "encounter": { - 1: "Hope you're ready to taste defeat!" - }, - "victory": { - 1: "I'll bake a comeback." - }, - }, - "biker": { - "encounter": { - 1: "Time to rev up and leave you in the dust!" - }, - "victory": { - 1: "I'll tune up for the next race." - }, - }, - "firebreather": { - "encounter": { - 1: "My flames shall devour you!", - 2: "My soul is on fire. I'll show you how hot it burns!", - 3: "Step right up and take a look!" - }, - "victory": { - 1: "I burned down to ashes...", - 2: "Yow! That's hot!", - 3: "Ow! I scorched the tip of my nose!" - }, - }, - "sailor": { - "encounter": { - 1: "Matey, you're walking the plank if you lose!", - 2: "Come on then! My sailor's pride is at stake!", - 3: "Ahoy there! Are you seasick?" - }, - "victory": { - 1: "Argh! Beaten by a kid!", - 2: "Your spirit sank me!", - 3: "I think it's me that's seasick..." - }, - }, - - "archer": { - "encounter": { - 1: "Before you go any further, let's see how you far against us, Team Rocket!", - 2: "I have received reports that your skills are not insignificant. Let's see if they are true.", - 3: "I am Archer, an Admin of Team Rocket. And I do not go easy on enemies of our organization." - }, - "victory": { - 1: "What a blunder!", - 2: "With my current skills, I was not up to the task after all.", - 3: "F-forgive me, Giovanni... For me to be defeated by a mere trainer..." - }, - }, - "ariana": { - "encounter": { - 1: `Hold it right there! We can't someone on the loose." - $It's harmful to Team Rocket's pride, you see.`, - 2: `I don't know or care if what I'm doing is right or wrong... - $I just put my faith in Giovanni and do as I am told`, - 3: "Your trip ends here. I'm going to take you down!" - }, - "victory": { - 1: `Tch, you really are strong. It's too bad. - $If you were to join Team Rocket, you could become an Executive.`, - 2: "I... I'm shattered...", - 3: "Aaaieeeee! This can't be happening! I fought hard, but I still lost…" - }, - }, - "proton": { - "encounter": { - 1: "What do you want? If you interrupt our work, don't expect any mercy!", - 2: `What do we have here? I am often labeled as the scariest and cruelest guy in Team Rocket… - $I strongly urge you not to interfere with our business!`, - 3: "I am Proton, an Admin of Team Rocket. I am here to put an end to your meddling!" - }, - "victory": { - 1: "The fortress came down!", - 2: "You may have won this time… But all you did was make Team Rocket's wrath grow…", - 3: "I am defeated… But I will not forget this!" - }, - }, - - "petrel": { - "encounter": { - 1: `Muhahaha, we've been waiting for you. Me? You don't know who I am? It is me, Giovanni. - $The majestic Giovanni himself! Wahahaha! …Huh? I don't sound anything like Giovanni? - $I don't even look like Giovanni? How come? I've worked so hard to mimic him!`, - 2: "I am Petrel, an Admin of Team Rocket. I will not allow you to interfere with our plans!", - 3: "Rocket Executive Petrel will deal with this intruder!" - }, - "victory": { - 1: "OK, OK. I'll tell you where he is.", - 2: "I… I couldn't do a thing… Giovanni, please forgive me…", - 3: "No, I can't let this affect me. I have to inform the others…" - }, - }, - "tabitha": { - "encounter": { - 1: "Hehehe! So you've come all the way here! But you're too late!", - 2: `Hehehe... Got here already, did you? We underestimated you! But this is it! - $I'm a cut above the Grunts you've seen so far. I'm not stalling for time. - $I'm going to pulverize you!`, - 3: "I'm going to give you a little taste of pain! Resign yourself to it!" - }, - "victory": { - 1: `Hehehe! You might have beaten me, but you don't stand a chance against the Boss! - $If you get lost now, you won't have to face a sound whipping!`, - 2: "Hehehe... So, I lost, too...", - 3: "Ahya! How could this be? For an Admin like me to lose to some random trainer..." - }, - }, - "courtney": { - "encounter": { - 1: "The thing...The thing that you hold...That is what... That's what we of Team Magma seek...", - 2: "... Well then...Deleting...", - 3: "...Ha. ...Analyzing... ...Hah♪" - }, - "victory": { - 1: "... ...Change...the world.", - 2: `As anticipated. Unanticipated. You. Target lock...completed. - $Commencing...experiment. You. Forever. Aha... ♪`, - 3: "...Again? That's unanticipated. ...I knew it. You...are interesting! ...Haha. ♪" - }, - }, - "shelly": { - "encounter": { - 1: `Ahahahaha! You're going to meddle in Team Aqua's affairs? - $You're either absolutely fearless, simply ignorant, or both! - $You're so cute, you're disgusting! I'll put you down`, - 2: "What's this? Who's this spoiled brat?", - 3: "Cool your jets. Be patient. I'll crush you shortly." - }, - "victory": { - 1: `Ahahahaha! We got meddled with unexpectedly! We're out of options. - $We'll have to pull out. But this isn't the last you'll see of Team Aqua! - $We have other plans! Don't you forget it!`, - 2: "Ahhh?! Did I go too easy on you?!", - 3: `Uh. Are you telling me you've upped your game even more during the fight? - $You're a brat with a bright future… My Pokémon and I don't have any strength left to fight… - $Go on… Go and be destroyed by Archie.` - }, - }, - "matt": { - "encounter": { - 1: "Hoohahaha! What, you got a screw loose or something? Look at you, little Makuhita person!", - 2: "Oho! You! You're that funny kid!", - 3: "What are you doing here? Did you follow us?" - }, - "victory": { - 1: "All right then, until the Boss has time for you, I'll be your opponent!", - 2: `I can feel it! I can feel it, all right! The strength coming offa you! - $More! I still want more! But looks like we're outta time...`, - 3: "That was fun! I knew you'd show me a good time! I look forward to facing you again someday!" - }, - }, - "mars": { - "encounter": { - 1: "I'm Mars, one of Team Galactic's top Commanders.", - 2: "Team Galactic's vision for the future is unwavering. Opposition will be crushed without mercy!", - 3: "Feeling nervous? You should be!" - }, - "victory": { - 1: "This can't be happening! How did I lose?!", - 2: "You have some skill, I'll give you that.", - 3: "Defeated... This was a costly mistake." - } - }, - "jupiter": { - "encounter": { - 1: "Jupiter, Commander of Team Galactic, at your service.", - 2: "Resistance is futile. Team Galactic will prevail!", - 3: "You're trembling... scared already?" - }, - "victory": { - 1: "No way... I lost?!", - 2: "Impressive, you've got guts!", - 3: "Losing like this... How embarrassing." - } - }, - "saturn": { - "encounter": { - 1: "I am Saturn, Commander of Team Galactic.", - 2: "Our mission is absolute. Any hindrance will be obliterated!", - 3: "Is that fear I see in your eyes?" - }, - "victory": { - 1: "Impossible... Defeated by you?!", - 2: "You have proven yourself a worthy adversary.", - 3: "Bestowed in defeat... This is unacceptable." - }}, - "zinzolin": { - "encounter": { - 1: "You could become a threat to Team Plasma, so we will eliminate you here and now!", - 2: "Oh, for crying out loud... I didn't expect to have to battle in this freezing cold!", - 3: "You're an impressive Trainer to have made it this far. But it ends here." - }, - "victory": { - 1: "Ghetsis... I have failed you...", - 2: "It's bitter cold. I'm shivering. I'm suffering. Yet, I still stand victorious.", - 3: "Hmph. You're a smarter Trainer than I expected, but not smart enough." - } - }, - "rood": { - "encounter": { - 1: "You are a threat to Team Plasma. We cannot let you walk away from here and now!", - 2: "Oh, this icy wind... I never thought I'd have to fight here!", - 3: "You are a remarkable Trainer to have made it this far. But this is where it ends." - }, - "victory": { - 1: "Ghetsis... I have failed my mission...", - 2: "The cold is piercing. I'm shivering. I'm suffering. Yet, I have triumphed.", - 3: "Hm. You are a talented Trainer, but unfortunately not talented enough." - } - }, - "xerosic": { - "encounter": { - 1: "Ah ha ha! It would be my pleasure. Come on, little Trainer! Let's see what you've got!", - 2: "Hmm... You're more powerful than you look. I wonder how much energy there is inside you.", - 3: "I've been waiting for you! I need to do a little research on you! Come, let us begin!" - }, - "victory": { - 1: "Ah, you're quite strong. Oh yes—very strong, indeed.", - 2: "Ding-ding-ding! You did it! To the victor go the spoils!", - 3: "Wonderful! Amazing! You have tremendous skill and bravery!" - } - }, - "bryony": { - "encounter": { - 1: "I am Bryony, and it would be my pleasure to battle you. Show me what you've got.", - 2: "Impressive... You're more powerful than you appear. Let's see the true extent of your energy.", - 3: "I've anticipated your arrival. It's time for a little test. Shall we begin?" - }, - "victory": { - 1: "You're quite strong. Oh yes—very strong, indeed.", - 2: "Ding-ding-ding! You've done well. Victory is yours.", - 3: "Wonderful! Remarkable! Your skill and bravery are commendable." - } - }, - "rocket_grunt": { - "encounter": { - 1: "Se prepara pra encrenca!", - 2: "We're pulling a big job here! Get lost, kid!", - 3: "Hand over your Pokémon, or face the wrath of Team Rocket!", - 4: "You're about to experience the true terror of Team Rocket!", - 5: "Hey, kid! Me am a Team Rocket member kind of guy!" //Use of wrong grammar is deliberate - }, - "victory": { - 1: "Equipe Rocket decolando de novo!", - 2: "Oh no! I dropped the Lift Key!", - 3: "I blew it!", - 4: "My associates won't stand for this!", - 5: "You say what? Team Rocket bye-bye a go-go? Broken it is says you?" //Use of wrong grammar is deliberate. - }, - }, - "magma_grunt": { - "encounter": { - 1: "Se você se meter com a Equipe Magma, não teremos piedade!", - 2: "You'd better not interfere with our plans! We're making the world a better place!", - 3: "You're in the way! Team Magma has no time for kids like you!", - 4: "I hope you brought marshmallows because things are about to heat up!", - 5: "We're going to use the power of a volcano! It's gonna be... explosive! Get it? Heh heh!" - }, - "victory": { - 1: "Ahn? Eu perdi?!", - 2: "I can't believe I lost! I even skipped lunch for this", - 3: "No way! You're just a kid!", - 4: "Urrrgh... I should've ducked into our hideout right away...", - 5: "You beat me... Do you think the boss will dock my pay for this?" - }, - }, - "aqua_grunt": { - "encounter": { - 1: "Não pegamos leve com quem se mete com a Equipe Aqua, nem mesmo crianças!", - 2: "Grrr... You've got some nerve meddling with Team Aqua!", - 3: "You're about to get soaked! And not just from my water Pokémon!", - 4: "We, Team Aqua, exist for the good of all!", - 5: "Prepare to be washed away by the tides of my... uh, Pokémon! Yeah, my Pokémon!" - }, - "victory": { - 1: "Tá de brincadeira!", - 2: "Arrgh, I didn't count on being meddled with by some meddling kid!", - 3: "I lost?! Guess I'll have to swim back to the hideout now...", - 4: "Oh, man, what a disaster... The boss is going to be furious...", - 5: "You beat me... Do you think the boss will make me walk the plank for this?" - }, - }, - "galactic_grunt": { - "encounter": { - 1: "Não mexe com a Equipe Galáctica!", - 2: "Witness the power of our technology and the future we envision!", - 3: "In the name of Team Galactic, I'll eliminate anyone who stands in our way!", - 4: "Get ready to lose!", - 5: "Hope you're ready for a cosmic beatdown!" - }, - "victory": { - 1: "Fui amassado...", - 2: "This setback means nothing in the grand scheme.", - 3: "Our plans are bigger than this defeat.", - 4: "How?!", - 5: "Note to self: practice Pokémon battling, ASAP." - }, - }, - "plasma_grunt": { - "encounter": { - 1: "Não toleramos pessoas que pensam diferente de nós!", - 2: "If I win against you, release your Pokémon!", - 3: "If you get in the way of Team Plasma, I'll take care of you!", - 4: "Team Plasma will liberate Pokémon from selfish humans like you!", - 5: "Our hairstyles are out of this world... but our battling skills? You'll find out soon enough." - }, - "victory": { - 1: "Plasmaaaaaaaaa!", - 2: "How could I lose...", - 3: "...What a weak Pokémon, I'll just have to go steal some better ones!", - 4: "Great plans are always interrupted.", - 5: "This is bad... Badbadbadbadbadbadbad! Bad for Team Plasma! Or Plasbad, for short!" - }, - }, - "flare_grunt": { - "encounter": { - 1: "Your Pokémon are no match for the elegance of Team Flare.", - 2: "Hope you brought your sunglasses, because things are about to get bright!", - 3: "Team Flare will cleanse the world of imperfection!", - 4: "Prepare to face the brilliance of Team Flare!", - 5: "Fashion is most important to us!" - }, - "victory": { - 1: "The future doesn't look bright for me.", - 2: "Perhaps there's more to battling than I thought. Back to the drawing board.", - 3: "Gahh?! I lost?!", - 4: "Even in defeat, Team Flare's elegance shines through.", - 5: "You may have beaten me, but when I lose, I go out in style!" - }, - }, - "rocket_boss_giovanni_1": { - "encounter": { - 1: "So! I must say, I am impressed you got here!" - }, - "victory": { - 1: "WHAT! This cannot be!" - }, - "defeat": { - 1: "Mark my words. Not being able to measure your own strength shows that you are still a child." - } - }, - "rocket_boss_giovanni_2": { - "encounter": { - 1: "My old associates need me... Are you going to get in my way?" - }, - "victory": { - 1: "How is this possible...? The precious dream of Team Rocket has become little more than an illusion..." - }, - "defeat": { - 1: "Team Rocket will be reborn again, and I will rule the world!" - } - }, - "magma_boss_maxie_1": { - "encounter": { - 1: "I will bury you by my own hand. I hope you appreciate this honor!" - }, - "victory": { - 1: "Ugh! You are... quite capable...\nI fell behind, but only by an inch..." - }, - "defeat": { - 1: "Team Magma will prevail!" - } - }, - "magma_boss_maxie_2": { - "encounter": { - 1: `You are the final obstacle remaining between me and my goals. - $Brace yourself for my ultimate attack! Fuhahaha!` - }, - "victory": { - 1: "This... This is not.. Ngh..." - }, - "defeat": { - 1: "And now... I will transform this planet to a land ideal for humanity." - } - }, - "aqua_boss_archie_1": { - "encounter": { - 1: "I'm the leader of Team Aqua, so I'm afraid it's the rope's end for you." - }, - "victory": { - 1: "Let's meet again somewhere. I'll be sure to remember that face." - }, - "defeat": { - 1: "Brilliant! My team won't hold back now!" - } - }, - "aqua_boss_archie_2": { - "encounter": { - 1: "I've been waiting so long for this day to come.\nThis is the true power of my team!" - }, - "victory": { - 1: "Like I figured..." - }, - "defeat": { - 1: "I'll return everything in this world to its original, pure state!!" - } - }, - "galactic_boss_cyrus_1": { - "encounter": { - 1: `You were compelled to come here by such vacuous sentimentality. - $I will make you regret paying heed to your heart!` - }, - "victory": { - 1: "Interesting. And quite curious." - }, - "defeat": { - 1: "I will create my new world..." - } - }, - "galactic_boss_cyrus_2": { - "encounter": { - 1: `So we meet again. It seems our fates have become intertwined. - $But here and now, I will finally break that bond!` - }, - "victory": { - 1: "How? How? HOW?!" - }, - "defeat": { - 1: "Farewell." - } - }, - "plasma_boss_ghetsis_1": { - "encounter": { - 1: "I won't allow anyone to stop me! No matter who does what!" - }, - "victory": { - 1: "How can this be? I'm the creator of Team Plasma! I'm perfect!" - }, - "defeat": { - 1: "I am the perfect ruler of a perfect new world! Mwa ha ha!" - } - }, - "plasma_boss_ghetsis_2": { - "encounter": { - 1: "Come now! I want to see your face at the moment you lose all hope!" - }, - "victory": { - 1: "My calculations... No! My careful schemes! The world should be mine!" - }, - "defeat": { - 1: "Kyurem! Use Absofusion!" - } - }, - "flare_boss_lysandre_1": { - "encounter": { - 1: "Do you want to stop me? Show me in battle." - }, - "victory": { - 1: "You are here to stop me. But I ask you to wait. " - }, - "defeat": { - 1: "Pokemon...Shall no longer exist." - } - }, - "flare_boss_lysandre_2": { - "encounter": { - 1: "The future you want, or the future I want... Let us see which one is more deserving, shall we?" - }, - "victory": { - 1: "Whaugh!" - }, - "defeat": { - 1: "Fools with no vision will continue to befoul this beautiful world." - } - }, - "brock": { - "encounter": { - 1: "My expertise on Rock-type Pokémon will take you down! Come on!", - 2: "My rock-hard willpower will overwhelm you!", - 3: "Allow me to show you the true strength of my Pokémon!" - }, - "victory": { - 1: "Your Pokémon's strength have overcome my rock-hard defenses!", - 2: "The world is huge! I'm glad to have had a chance to battle you.", - 3: "Perhaps I should go back to pursuing my dream as a Pokémon Breeder…" - }, - "defeat": { - 1: "The best offense is a good defense!\nThat's my way of doing things!", - 2: "Come study rocks with me next time to better learn how to fight them!", - 3: "Hah, all my traveling around the regions is paying off!" - } - }, - "misty": { - "encounter": { - 1: "My policy is an all out offensive with Water-type Pokémon!", - 2: "Hiya, I'll show you the strength of my aquatic Pokémon!", - 3: "My dream was to go on a journey and battle powerful trainers…\nWill you be a sufficient challenge?" - }, - "victory": { - 1: "You really are strong… I'll admit that you are skilled…", - 2: "Grrr… You know you just got lucky, right?!", - 3: "Wow, you're too much! I can't believe you beat me!" - }, - "defeat": { - 1: "Was the mighty Misty too much for you?", - 2: "I hope you saw my Pokémon's elegant swimming techniques!", - 3: "Your Pokémon were no match for my pride and joys!" - } - }, - "lt_surge": { - "encounter": { - 1: "My Electric Pokémon saved me during the war! I'll show you how!", - 2: "Ten-hut! I'll shock you into surrender!", - 3: "I'll zap you just like I do to all my enemies in battle!" - }, - "victory": { - 1: "Whoa! Your team's the real deal, kid!", - 2: "Aaargh, you're strong! Even my electric tricks lost against you.", - 3: "That was an absolutely shocking loss!" - }, - "defeat": { - 1: "Oh yeah! When it comes to Electric-type Pokémon, I'm number one in the world!", - 2: "Hahaha! That was an electrifying battle, kid!", - 3: "A Pokémon battle is war, and I have showed you first-hand combat!" - } - }, - "erika": { - "encounter": { - 1: "Ah, the weather is lovely here…\nOh, a battle? Very well then.", - 2: "My Pokémon battling skills rival that of my flower arranging skills.", - 3: "Oh, I hope the pleasant aroma of my Pokémon doesn't put me to sleep again…", - 4: "Seeing flowers in a garden is so soothing." - }, - "victory": { - 1: "Oh! I concede defeat.", - 2: "That match was most delightful.", - 3: "Ah, it appears it is my loss…", - 4: "Oh, my goodness." - }, - "defeat": { - 1: "I was afraid I would doze off…", - 2: "Oh my, it seems my Grass Pokémon overwhelmed you.", - 3: "That battle was such a soothing experience.", - 4: "Oh… Is that all?" - } - }, - "janine": { - "encounter": { - 1: "I am mastering the art of poisonous attacks.\nI shall spar with you today!", - 2: "Father trusts that I can hold my own.\nI will prove him right!", - 3: "My ninja techniques are only second to my Father's!\nCan you keep up?" - }, - "victory": { - 1: "Even now, I still need training… I understand.", - 2: "Your battle technique has outmatched mine.", - 3: "I'm going to really apply myself and improve my skills." - }, - "defeat": { - 1: "Fufufu… the poison has sapped all your strength to battle.", - 2: "Ha! You didn't stand a chance against my superior ninja skills!", - 3: "Father's faith in me has proven to not be misplaced." - } - }, - "sabrina": { - "encounter": { - 1: "Through my psychic ability, I had a vision of your arrival!", - 2: "I dislike fighting, but if you wish, I will show you my powers!", - 3: "I can sense great ambition in you. I shall see if it not unfounded." - }, - "victory": { - 1: "Your power… It far exceeds what I foresaw…", - 2: "I failed to accurately predict your power.", - 3: "Even with my immense psychic powers, I cannot sense another as strong as you." - }, - "defeat": { - 1: "This victory… It is exactly as I foresaw in my visions!", - 2: "Perhaps it was another I sensed a great desire in…", - 3: "Hone your abilities before recklessly charging into battle.\nYou never know what the future may hold if you do…" - } - }, - "blaine": { - "encounter": { - 1: "Hah! Hope you brought a Burn Heal!", - 2: "My fiery Pokémon will incinerate all challengers!", - 3: "Get ready to play with fire!" - }, - "victory": { - 1: "I have burned down to nothing! Not even ashes remain!", - 2: "Didn't I stoke the flames high enough?", - 3: "I'm all burned out… But this makes my motivation to improve burn even hotter!" - }, - "defeat": { - 1: "My raging inferno cannot be quelled!", - 2: "My Pokémon have been powered up with the heat from this victory!", - 3: "Hah! My passion burns brighter than yours!" - } - }, - "giovanni": { - "encounter": { - 1: "I, the leader of Team Rocket, will make you feel a world of pain!", - 2: "My training here will be vital before I am to face my old associates again.", - 3: "I do not think you are prepared for the level of failure you are about to experience!" - }, - "victory": { - 1: "WHAT! Me, lose?! There is nothing I wish to say to you!", - 2: "Hmph… You could never understand what I hope to achieve.", - 3: "This defeat is merely delaying the inevitable.\nI will rise Team Rocket from the ashes in due time." - }, - "defeat": { - 1: "Not being able to measure your own strength shows that you are still but a child.", - 2: "Do not try to interfere with me again.", - 3: "I hope you understand how foolish challenging me was." - } - }, - "roxanne": { - "encounter": { - 1: "Would you kindly demonstrate how you battle?", - 2: "You can learn many things by battling many trainers.", - 3: "Oh, you caught me strategizing.\nWould you like to battle?" - }, - "victory": { - 1: "Oh, I appear to have lost.\nI understand.", - 2: "It seems that I still have so much more to learn when it comes to battle.", - 3: "I'll take what I learned here today to heart." - }, - "defeat": { - 1: "I have learned many things from our battle.\nI hope you have too.", - 2: "I look forward to battling you again.\nI hope you'll use what you've learned here.", - 3: "I won due to everything I have learned." - } - }, - "brawly": { - "encounter": { - 1: "Oh man, a challenger!\nLet's see what you can do!", - 2: "You seem like a big splash.\nLet's battle!", - 3: "Time to create a storm!\nLet's go!" - }, - "victory": { - 1: "Oh woah, you've washed me out!", - 2: "You surfed my wave and crashed me down!", - 3: "I feel like I'm lost in Granite Cave!" - }, - "defeat": { - 1: "Haha, I surfed the big wave!\nChallenge me again sometime.", - 2: "Surf with me again some time!", - 3: "Just like the tides come in and out, I hope you return to challenge me again." - } - }, - "wattson": { - "encounter": { - 1: "Time to get shocked!\nWahahahaha!", - 2: "I'll make sparks fly!\nWahahahaha!", - 3: "I hope you brought Paralyz Heal!\nWahahahaha!" - }, - "victory": { - 1: "Seems like I'm out of charge!\nWahahahaha!", - 2: "You've completely grounded me!\nWahahahaha!", - 3: "Thanks for the thrill!\nWahahahaha!" - }, - "defeat": { - 1: "Recharge your batteries and challenge me again sometime!\nWahahahaha!", - 2: "I hope you found our battle electrifying!\nWahahahaha!", - 3: "Aren't you shocked I won?\nWahahahaha!" - } - }, - "flannery": { - "encounter": { - 1: "Nice to meet you! Wait, no…\nI will crush you!", - 2: "I've only been a leader for a little while, but I'll smoke you!", - 3: "It's time to demonstrate the moves my grandfather has taught me! Let's battle!" - }, - "victory": { - 1: "You remind me of my grandfather…\nNo wonder I lost.", - 2: "Am I trying too hard?\nI should relax, can't get too heated.", - 3: "Losing isn't going to smother me out.\nTime to reignite training!" - }, - "defeat": { - 1: "I hope I've made my grandfather proud…\nLet's battle again some time.", - 2: "I…I can't believe I won!\nDoing things my way worked!", - 3: "Let's exchange burning hot moves again soon!" - } - }, - "norman": { - "encounter": { - 1: "I'm surprised you managed to get here.\nLet's battle.", - 2: "I'll do everything in my power as a Gym Leader to win.\nLet's go!", - 3: "You better give this your all.\nIt's time to battle!" - }, - "victory": { - 1: "I lost to you…?\nRules are rules, though.", - 2: "Was moving from Olivine a mistake…?", - 3: "I can't believe it.\nThat was a great match." - }, - "defeat": { - 1: "We both tried our best.\nI hope we can battle again soon.", - 2: "You should try challenging my kid instead.\nYou might learn something!", - 3: "Thank you for the excellent battle.\nBetter luck next time." - } - }, - "winona": { - "encounter": { - 1: "I've been soaring the skies looking for prey…\nAnd you're my target!", - 2: "No matter how our battle is, my Flying Pokémon and I will triumph with grace. Let's battle!", - 3: "I hope you aren't scared of heights.\nLet's ascend!" - }, - "victory": { - 1: "You're the first Trainer I've seen with more grace than I.\nExcellently played.", - 2: "Oh, my Flying Pokémon have plummeted!\nVery well.", - 3: "Though I may have fallen, my Pokémon will continue to fly!" - }, - "defeat": { - 1: "My Flying Pokémon and I will forever dance elegantly!", - 2: "I hope you enjoyed our show.\nOur graceful dance is finished.", - 3: "Won't you come see our elegant choreography again?" - } - }, - "tate": { - "encounter": { - 1: "Hehehe…\nWere you surprised to see me without my sister?", - 2: "I can see what you're thinking…\nYou want to battle!", - 3: "How can you defeat someone…\nWho knows your every move?" - }, - "victory": { - 1: "It can't be helped…\nI miss Liza…", - 2: "Your bond with your Pokémon was stronger than mine.", - 3: "If I were with Liza, we would have won.\nWe can finish each other's thoughts!" - }, - "defeat": { - 1: "My Pokémon and I are superior!", - 2: "If you can't even defeat me, you'll never be able to defeat Liza either.", - 3: "It's all thanks to my strict training with Liza.\nI can make myself one with Pokémon." - } - }, - "liza": { - "encounter": { - 1: "Fufufu…\nWere you surprised to see me without my brother?", - 2: "I can determine what you desire…\nYou want to battle, don't you?", - 3: "How can you defeat someone…\nWho's one with their Pokémon?" - }, - "victory": { - 1: "It can't be helped…\nI miss Tate…", - 2: "Your bond with your Pokémon…\nIt's stronger than mine.", - 3: "If I were with Tate, we would have won.\nWe can finish each other's sentences!" - }, - "defeat": { - 1: "My Pokémon and I are victorious.", - 2: "If you can't even defeat me, you'll never be able to defeat Tate either.", - 3: "It's all thanks to my strict training with Tate.\nI can synchronize myself with my Pokémon." - } - }, - "juan": { - "encounter": { - 1: "Now's not the time to act coy.\nLet's battle!", - 2: "Ahahaha, You'll be witness to my artistry with Water Pokémon!", - 3: "A typhoon approaches!\nWill you be able to test me?", - 4: "Please, you shall bear witness to our artistry.\nA grand illusion of water sculpted by my Pokémon and myself!" - }, - "victory": { - 1: "You may be a genius who can take on Wallace!", - 2: "I focused on elegance while you trained.\nIt's only natural that you defeated me.", - 3: "Ahahaha!\nVery well, You have won this time.", - 4: "From you, I sense the brilliant shine of skill that will overcome all." - }, - "defeat": { - 1: "My Pokémon and I have sculpted an illusion of Water and come out victorious.", - 2: "Ahahaha, I have won, and you have lost.", - 3: "Shall I loan you my outfit? It may help you battle!\nAhahaha, I jest!", - 4: "I'm the winner! Which is to say, you lost." - } - }, - "crasher_wake": { - "encounter": { - 1: "Crash! Crash! Watch out!\nCrasher Wake…is…heeere!", - 2: "Crash! Crash! Crasher Wake!", - 3: "I'm the tidal wave of power to wash you away!" - }, - "victory": { - 1: "That puts a grin on my face!\nGuhahaha! That was a blast!", - 2: "Hunwah! It's gone and ended!\nHow will I say this…\nI want more! I wanted to battle a lot more!", - 3: "WHAAAAT!?" - }, - "defeat": { - 1: "Yeeeeah! That's right!", - 2: "I won, but I want more! I wanted to battle a lot more!", - 3: "So long!" - } - }, - "falkner": { - "encounter": { - 1: "I'll show you the real power of the magnificent bird Pokémon!", - 2: "Winds, stay with me!", - 3: "Dad! I hope you're watching me battle from above!" - }, - "victory": { - 1: "I understand… I'll bow out gracefully.", - 2: "A defeat is a defeat. You are strong indeed.", - 3: "…Shoot! Yeah, I lost." - }, - "defeat": { - 1: "Dad! I won with your cherished bird Pokémon…", - 2: "Bird Pokémon are the best after all!", - 3: "Feels like I'm catching up to my dad!" - } - }, - "nessa": { - "encounter": { - 1: "No matter what kind of plan your refined mind may be plotting, my partner and I will be sure to sink it.", - 2: "I'm not here to chat. I'm here to win!", - 3: "This is a little gift from my Pokémon… I hope you can take it!" - }, - "victory": { - 1: "You and your Pokémon are just too much…", - 2: "How…? How can this be?!", - 3: "I was totally washed away!" - }, - "defeat": { - 1: "The raging wave crashes again!", - 2: "Time to ride the wave of victory!", - 3: "Ehehe!" - } - }, - "melony": { - "encounter": { - 1: "I'm not going to hold back!", - 2: "All righty, I suppose we should get started.", - 3: "I'll freeze you solid!" - }, - "victory": { - 1: "You… You're pretty good, huh?", - 2: "If you find Gordie around, be sure to give him a right trashing, would you?", - 3: "I think you took breaking the ice a little too literally…" - }, - "defeat": { - 1: "Now do you see how severe battles can be?", - 2: "Hee! Looks like I went and won again!", - 3: "Are you holding back?" - } - }, - "marlon": { - "encounter": { - 1: "You look strong! Shoots! Let's start!", - 2: "I'm strong like the ocean's wide. You're gonna get swept away, fo' sho'.", - 3: "Oh ho, so I'm facing you! That's off the wall." - }, - "victory": { - 1: "You totally rocked that! You're raising some wicked Pokémon. You got this Trainer thing down!", - 2: "You don't just look strong, you're strong fo' reals! Eh, I was swept away, too!", - 3: "You're strong as a gnarly wave!" - }, - "defeat": { - 1: "You're tough, but it's not enough to sway the sea, 'K!", - 2: "Hee! Looks like I went and won again!", - 3: "Sweet, sweet victory!" - } - }, - "shauntal": { - "encounter": { - 1: "Excuse me. You're a challenger, right?\nI'm the Elite Four's Ghost-type Pokémon user, Shauntal, and I shall be your opponent.", - 2: "I absolutely love writing about Trainers who come here and the Pokémon they train.\nCould I use you and your Pokémon as a subject?", - 3: "Every person who works with Pokémon has a story to tell.\nWhat story is about to be told?" - }, - "victory": { - 1: "Wow. I'm dumbstruck!", - 2: "S-sorry! First, I must apologize to my Pokémon…\n\nI'm really sorry you had a bad experience because of me!", - 3: "Even in light of that, I'm still one of the Elite Four!" - }, - "defeat": { - 1: "Eheh.", - 2: "That gave me excellent material for my next novel!", - 3: "And so, another tale ends…" - } - }, - "marshal": { - "encounter": { - 1: "My mentor, Alder, sees your potential as a Trainer and is taking an interest in you.\nIt is my intention to test you--to take you to the limits of your strength. Kiai!", - 2: "Victory, decisive victory, is my intention! Challenger, here I come!", - 3: "In myself, I seek to develop the strength of a fighter and shatter any weakness in myself!\nPrevailing with the force of my convictions!" - }, - "victory": { - 1: "Whew! Well done!", - 2: "As your battles continue, aim for even greater heights!", - 3: "The strength shown by you and your Pokémon has deeply impressed me…" - }, - "defeat": { - 1: "Hmm.", - 2: "That was good battle.", - 3: "Haaah! Haaah! Haiyaaaah!" - } - }, - "cheren": { - "encounter": { - 1: "You remind me of an old friend. That makes me excited about this Pokémon battle!", - 2: `Pokémon battles have no meaning if you don't think why you battle. - $Or better said, it makes battling together with Pokémon meaningless.`, - 3: "My name's Cheren! I'm a Gym Leader and a teacher! Pleasure to meet you." - }, - "victory": { - 1: "Thank you! I saw what was missing in me.", - 2: "Thank you! I feel like I saw a little of the way toward my ideals.", - 3: "Hmm… This is problematic." - }, - "defeat": { - 1: "As a Gym Leader, I aim to be a wall for you to overcome.", - 2: "All right!", - 3: "I made it where I am because Pokémon were by my side.\nPerhaps we need to think about why Pokémon help us not in terms of Pokémon and Trainers but as a relationship between living beings." - } - }, - "chili": { - "encounter": { - 1: "Yeeeeooow! Time to play with FIRE!! I'm the strongest of us brothers!", - 2: "Ta-da! The Fire-type scorcher Chili--that's me--will be your opponent!", - 3: "I'm going to show you what me and my blazing Fire types can do!" - }, - "victory": { - 1: "You got me. I am… burned… out…", - 2: "Whoa ho! You're on fire!", - 3: "Augh! You got me!" - }, - "defeat": { - 1: "I'm on fire! Play with me, and you'll get burned!", - 2: "When you play with fire, you get burned!", - 3: "I mean, c'mon, your opponent was me! You didn't have a chance!" - } - }, - "cilan": { - "encounter": { - 1: `Nothing personal... No hard feelings... Me and my Grass-type Pokémon will... - $Um... We're gonna battle come what may.`, - 2: "So, um, if you're OK with me, I'll, um, put everything I've got into being, er, you know, your opponent.", - 3: "OK… So, um, I'm Cilan, I like Grass-type Pokémon." - }, - "victory": { - 1: "Er… Is it over now?", - 2: `…What a surprise. You are very strong, aren't you? - $I guess my brothers wouldn't have been able to defeat you either…`, - 3: "…Huh. Looks like my timing was, um, off?" - }, - "defeat": { - 1: "Huh? Did I win?", - 2: `I guess… - $I suppose I won, because I've been competing with my brothers Chili and Cress, and we all were able to get tougher.`, - 3: "It…it was quite a thrilling experience…" - } - }, - "roark": { - "encounter": { - 1: "I need to see your potential as a Trainer. And, I'll need to see the toughness of the Pokémon that battle with you!", - 2: "Here goes! These are my rocking Pokémon, my pride and joy!", - 3: "Rock-type Pokémon are simply the best!", - 4: "I need to see your potential as a Trainer. And, I'll need to see the toughness of the Pokémon that battle with you!" - }, - "victory": { - 1: "W-what? That can't be! My buffed-up Pokémon!", - 2: "…We lost control there. Next time I'd like to challenge you to a Fossil-digging race underground.", - 3: "With skill like yours, it's natural for you to win.", - 4: "Wh-what?! It can't be! Even that wasn't enough?", - 5: "I blew it." - }, - "defeat": { - 1: "See? I'm proud of my rocking battle style!", - 2: "Thanks! The battle gave me confidence that I may be able to beat my dad!", - 3: "I feel like I just smashed through a really stubborn boulder!" - } - }, - "morty": { - "encounter": { - 1: `With a little more, I could see a future in which I meet the legendary Pokémon. - $You're going to help me reach that level!`, - 2: `It's said that a rainbow-hued Pokémon will come down to appear before a truly powerful Trainer. - $I believed that tale, so I have secretly trained here all my life. As a result, I can now see what others cannot. - $I see a shadow of the person who will make the Pokémon appear. - $I believe that person is me! You're going to help me reach that level!`, - 3: "Whether you choose to believe or not, mystic power does exist.", - 4: "You can bear witness to the fruits of my training.", - 5: "You must make your soul one with that of Pokémon. Can you do this?", - 6: "Say, do you want to be part of my training?" - }, - "victory": { - 1: "I'm not good enough yet…", - 2: `I see… Your journey has taken you to far-away places and you have witnessed much more than I. - $I envy you for that…`, - 3: "How is this possible…", - 4: `I don't think our potentials are so different. - $But you seem to have something more than that… So be it.`, - 5: "Guess I need more training.", - 6: "That's a shame." - }, - "defeat": { - 1: "I moved… one step ahead again.", - 2: "Fufufu…", - 3: "Wh-what?! It can't be! Even that wasn't enough?", - 4: "I feel like I just smashed through a really stubborn boulder!", - 5: "Ahahahah!", - 6: "I knew I would win!" - } - }, - "crispin": { - "encounter": { - 1: "I wanna win, so that's exactly what I'll do!", - 2: "I battle because I wanna battle! And you know what? That's how it should be!" - }, - "victory": { - 1: "I wanted to win…but I lost!", - 2: "I lost…'cause I couldn't win!" - }, - "defeat": { - 1: "Hey, wait a sec. Did I just win? I think I just won! Talk about satisfying!", - 2: "Wooo! That was amazing!" - } - }, - "amarys": { - "encounter": { - 1: `I want to be the one to help a certain person. That being the case, I cannot afford to lose. - $… Our battle starts now.`, - }, - "victory": { - 1: "I am… not enough, I see." - }, - "defeat": { - 1: "Victory belongs to me. Well fought." - } - }, - "lacey": { - "encounter": { - 1: "I'll be facing you with my usual party as a member of the Elite Four." - }, - "victory": { - 1: "That was a great battle!" - }, - "defeat": { - 1: "Let's give your Pokémon a nice round of applause for their efforts!" - } - }, - "drayton": { - "encounter": { - 1: `Man, I love chairs. Don't you love chairs? What lifesavers. - $I don't get why everyone doesn't just sit all the time. Standing up's tiring work!`, - }, - "victory": { - 1: "Guess I should've expected that!" - }, - "defeat": { - 1: "Heh heh! Don't mind me, just scooping up a W over here. I get it if you're upset, but don't go full Kieran on me, OK?" - } - }, - "ramos": { - "encounter": { - 1: `Did yeh enjoy the garden playground I made with all these sturdy plants o' mine? - $Their strength is a sign o' my strength as a gardener and a Gym Leader! Yeh sure yer up to facing all that?`, - }, - "victory": { - 1: "Yeh believe in yer Pokémon… And they believe in yeh, too… It was a fine battle, sprout." - }, - "defeat": { - 1: "Hohoho… Indeed. Frail little blades o' grass'll break through even concrete." - } - }, - "viola": { - "encounter": { - 1: `Whether it's the tears of frustration that follow a loss or the blossoming of joy that comes with victory… - $They're both great subjects for my camera! Fantastic! This'll be just fantastic! - $Now come at me!`, - 2: "My lens is always focused on victory--I won't let anything ruin this shot!" - }, - "victory": { - 1: "You and your Pokémon have shown me a whole new depth of field! Fantastic! Just fantastic!", - 2: `The world you see through a lens, and the world you see with a Pokémon by your side… - $The same world can look entirely different depending on your view.` - }, - "defeat": { - 1: "The photo from the moment of my victory will be a real winner, all right!", - 2: "Yes! I took some great photos!" - } - }, - "candice": { - "encounter": { - 1: `You want to challenge Candice? Sure thing! I was waiting for someone tough! - $But I should tell you, I'm tough because I know how to focus.`, - 2: `Pokémon, fashion, romance… It's all about focus! - $I'll show you just what I mean. Get ready to lose!` - }, - "victory": { - 1: "I must say, I'm warmed up to you! I might even admire you a little.", - 2: `Wow! You're great! You've earned my respect! - $I think your focus and will bowled us over totally. ` - }, - "defeat": { - 1: "I sensed your will to win, but I don't lose!", - 2: "See? Candice's focus! My Pokémon's focus is great, too!" - } - }, - "gardenia": { - "encounter": { - 1: "You have a winning aura about you. So, anyway, this will be fun. Let's have our battle!" - }, - "victory": { - 1: "Amazing! You're very good, aren't you?" - }, - "defeat": { - 1: "Yes! My Pokémon and I are perfectly good!" - } - }, - "aaron": { - "encounter": { - 1: "Ok! Let me take you on!" - }, - "victory": { - 1: "Battling is a deep and complex affair…" - }, - "defeat": { - 1: "Victory over an Elite Four member doesn't come easily." - } - }, - "cress": { - "encounter": { - 1: "That is correct! It shall be I and my esteemed Water types that you must face in battle!" - }, - "victory": { - 1: "Lose? Me? I don't believe this." - }, - "defeat": { - 1: "This is the appropriate result when I'm your opponent." - } - }, - "allister": { - "encounter": { - 1: "'M Allister.\nH-here… I go…" - }, - "victory": { - 1: `I nearly lost my mask from the shock… That was… - $Wow. I can see your skill for what it is.`, - }, - "defeat": { - 1: "Th-that was ace!" - } - }, - "clay": { - "encounter": { - 1: "Harrumph! Kept me waitin', didn't ya, kid? All right, time to see what ya can do!" - }, - "victory": { - 1: "Man oh man… It feels good to go all out and still be defeated!" - }, - "defeat": { - 1: `What's important is how ya react to losin'. - $That's why folks who use losin' as fuel to get better are tough.`, - } - }, - "kofu": { - "encounter": { - 1: "I'mma serve you a full course o' Water-type Pokémon! Don't try to eat 'em, though!" - }, - "victory": { - 1: "Vaultin' Veluza! Yer a lively one, aren't ya! A little TOO lively, if I do say so myself!" - }, - "defeat": { - 1: "You come back to see me again now, ya hear?" - } - }, - "tulip": { - "encounter": { - 1: "Allow me to put my skills to use to make your cute little Pokémon even more beautiful!" - }, - "victory": { - 1: "Your strength has a magic to it that cannot be washed away." - }, - "defeat": { - 1: "You know, in my line of work, people who lack talent in one area or the other often fade away quickly—never to be heard of again." - } - }, - "sidney": { - "encounter": { - 1: `I like that look you're giving me. I guess you'll give me a good match. - $That's good! Looking real good! All right! - $You and me, let's enjoy a battle that can only be staged here!`, - }, - "victory": { - 1: "Well, how do you like that? I lost! Eh, it was fun, so it doesn't matter." - }, - "defeat": { - 1: "No hard feelings, alright?" - } - }, - "phoebe": { - "encounter": { - 1: `While I trained, I gained the ability to commune with Ghost-type Pokémon. - $Yes, the bond I developed with Pokémon is extremely tight. - $So, come on, just try and see if you can even inflict damage on my Pokémon!`, - }, - "victory": { - 1: "Oh, darn. I've gone and lost." - }, - "defeat": { - 1: "I look forward to battling you again sometime!" - } - }, - "glacia": { - "encounter": { - 1: `All I have seen are challenges by weak Trainers and their Pokémon. - $What about you? It would please me to no end if I could go all out against you!`, - }, - "victory": { - 1: `You and your Pokémon… How hot your spirits burn! - $The all-consuming heat overwhelms. - $It's no surprise that my icy skills failed to harm you.`, - }, - "defeat": { - 1: "A fiercely passionate battle, indeed." - } - }, - "drake": { - "encounter": { - 1: `For us to battle with Pokémon as partners, do you know what it takes? Do you know what is needed? - $If you don't, then you will never prevail over me!`, - }, - "victory": { - 1: "Superb, it should be said." - }, - "defeat": { - 1: "I gave my all for that battle!" - } - }, - "wallace": { - "encounter": { - 1: `There's something about you… A difference in your demeanor. - $I think I sense that in you. Now, show me. Show me the power you wield with your Pokémon. - $And I, in turn, shall present you with a performance of illusions in water by me and my Pokémon!`, - }, - "victory": { - 1: `Bravo. I realize now your authenticity and magnificence as a Pokémon Trainer. - $I find much joy in having met you and your Pokémon. You have proven yourself worthy.`, - }, - "defeat": { - 1: "A grand illusion!" - } - }, - "lorelei": { - "encounter": { - 1: `No one can best me when it comes to icy Pokémon! Freezing moves are powerful! - $Your Pokémon will be at my mercy when they are frozen solid! Hahaha! Are you ready?`, - }, - "victory": { - 1: "How dare you!" - }, - "defeat": { - 1: "There's nothing you can do once you're frozen." - } - }, - "will": { - "encounter": { - 1: `I have trained all around the world, making my psychic Pokémon powerful. - $I can only keep getting better! Losing is not an option!`, - }, - "victory": { - 1: "I… I can't… believe it…" - }, - "defeat": { - 1: "That was close. I wonder what it is that you lack." - } - }, - "malva": { - "encounter": { - 1: `I feel like my heart might just burst into flames. - $I'm burning up with my hatred for you, runt!`, - }, - "victory": { - 1: "What news… So a new challenger has defeated Malva!" - }, - "defeat": { - 1: "I am delighted! Yes, delighted that I could squash you beneath my heel." - } - }, - "hala": { - "encounter": { - 1: "Old Hala is here to make you holler!" - }, - "victory": { - 1: "I could feel the power you gained on your journey." - }, - "defeat": { - 1: "Haha! What a delightful battle!" - } - }, - "molayne": { - "encounter": { - 1: `I gave the captain position to my cousin Sophocles, but I'm confident in my ability. - $My strength is like that of a supernova!`, - }, - "victory": { - 1: "I certainly found an interesting Trainer to face!" - }, - "defeat": { - 1: "Ahaha. What an interesting battle." - } - }, - "rika": { - "encounter": { - 1: "I'd say I'll go easy on you, but… I'd be lying! Think fast!" - }, - "victory": { - 1: "Not bad, kiddo." - }, - "defeat": { - 1: "Nahahaha! You really are something else, kiddo!" - } - }, - "bruno": { - "encounter": { - 1: "We will grind you down with our superior power! Hoo hah!" - }, - "victory": { - 1: "Why? How could I lose?" - }, - "defeat": { - 1: "You can challenge me all you like, but the results will never change!" - } - }, - "bugsy": { - "encounter": { - 1: "I'm Bugsy! I never lose when it comes to bug Pokémon!" - }, - "victory": { - 1: "Whoa, amazing! You're an expert on Pokémon!\nMy research isn't complete yet. OK, you win." - }, - "defeat": { - 1: "Thanks! Thanks to our battle, I was also able to make progress in my research!" - } - }, - "koga": { - "encounter": { - 1: "Fwahahahaha! Pokémon are not merely about brute force--you shall see soon enough!" - }, - "victory": { - 1: "Ah! You've proven your worth!" - }, - "defeat": { - 1: "Have you learned to fear the techniques of the ninja?" - } - }, - "bertha": { - "encounter": { - 1: "Well, would you show this old lady how much you've learned?" - }, - "victory": { - 1: `Well! Dear child, I must say, that was most impressive. - $Your Pokémon believed in you and did their best to earn you the win. - $Even though I've lost, I find myself with this silly grin!`, - }, - "defeat": { - 1: "Hahahahah! Looks like this old lady won!" - } - }, - "lenora": { - "encounter": { - 1: "Well then, challenger, I'm going to research how you battle with the Pokémon you've so lovingly raised!" - }, - "victory": { - 1: "My theory about you was correct. You're more than just talented… You're motivated! I salute you!" - }, - "defeat": { - 1: "Ah ha ha! If you lose, make sure to analyze why, and use that knowledge in your next battle!" - } - }, - "siebold": { - "encounter": { - 1: "As long as I am alive, I shall strive onward to seek the ultimate cuisine... and the strongest opponents in battle!" - }, - "victory": { - 1: "I shall store my memory of you and your Pokémon forever away within my heart." - }, - "defeat": { - 1: `Our Pokémon battle was like food for my soul. It shall keep me going. - $That is how I will pay my respects to you for giving your all in battle!`, - } - }, - "roxie": { - "encounter": { - 1: "Get ready! I'm gonna knock some sense outta ya!" - }, - "victory": { - 1: "Wild! Your reason's already more toxic than mine!" - }, - "defeat": { - 1: "Hey, c'mon! Get serious! You gotta put more out there!" - } - }, - "olivia": { - "encounter": { - 1: "No introduction needed here. Time to battle me, Olivia!" - }, - "victory": { - 1: "Really lovely… Both you and your Pokémon…" - }, - "defeat": { - 1: "Mmm-hmm." - } - }, - "poppy": { - "encounter": { - 1: "Oooh! Do you wanna have a Pokémon battle with me?" - }, - "victory": { - 1: "Uagh?! Mmmuuuggghhh…" - }, - "defeat": { - 1: `Yaaay! I did it! I de-feet-ed you! You can come for… For… An avenge match? - $Come for an avenge match anytime you want!`, - } - }, - "agatha": { - "encounter": { - 1: "Pokémon are for battling! I'll show you how a real Trainer battles!" - }, - "victory": { - 1: "Oh my! You're something special, child!" - }, - "defeat": { - 1: "Bahaha. That's how a proper battle's done!" - } - }, - "flint": { - "encounter": { - 1: "Hope you're warmed up, cause here comes the Big Bang!" - }, - "victory": { - 1: "Incredible! Your moves are so hot, they make mine look lukewarm!" - }, - "defeat": { - 1: "Huh? Is that it? I think you need a bit more passion." - } - }, - "grimsley": { - "encounter": { - 1: "The winner takes everything, and there's nothing left for the loser." - }, - "victory": { - 1: "When one loses, they lose everything… The next thing I'll look for will be victory, too!" - }, - "defeat": { - 1: "If somebody wins, the person who fought against that person will lose." - } - }, - "caitlin": { - "encounter": { - 1: `It's me who appeared when the flower opened up. You who have been waiting… - $You look like a Pokémon Trainer with refined strength and deepened kindness. - $What I look for in my opponent is superb strength… - $Please unleash your power to the fullest!`, - }, - "victory": { - 1: "My Pokémon and I learned so much! I offer you my thanks." - }, - "defeat": { - 1: "I aspire to claim victory with elegance and grace." - } - }, - "diantha": { - "encounter": { - 1: `Battling against you and your Pokémon, all of you brimming with hope for the future… - $Honestly, it just fills me up with energy I need to keep facing each new day! It does!`, - }, - "victory": { - 1: "Witnessing the noble spirits of you and your Pokémon in battle has really touched my heart…" - }, - "defeat": { - 1: "Oh, fantastic! What did you think? My team was pretty cool, right?" - } - }, - "wikstrom": { - "encounter": { - 1: `Well met, young challenger! Verily am I the famed blade of hardened steel, Duke Wikstrom! - $Let the battle begin! En garde!`, - }, - "victory": { - 1: "Glorious! The trust that you share with your honorable Pokémon surpasses even mine!" - }, - "defeat": { - 1: `What manner of magic is this? My heart, it doth hammer ceaselessly in my breast! - $Winning against such a worthy opponent doth give my soul wings--thus do I soar!`, - } - }, - "acerola": { - "encounter": { - 1: "Battling is just plain fun! Come on, I can take you!" - }, - "victory": { - 1: "I'm… I'm speechless! How did you do it?!" - }, - "defeat": { - 1: "Ehaha! What an amazing victory!" - } - }, - "larry_elite": { - "encounter": { - 1: `Hello there… It's me, Larry. - $I serve as a member of the Elite Four too, yes… Unfortunately for me.`, - }, - "victory": { - 1: "Well, that took the wind from under our wings…" - }, - "defeat": { - 1: "It's time for a meeting with the boss." - } - }, - "lance": { - "encounter": { - 1: "I've been waiting for you. Allow me to test your skill.", - 2: "I thought that you would be able to get this far. Let's get this started." - }, - "victory": { - 1: "You got me. You are magnificent!", - 2: "I never expected another trainer to beat me… I'm surprised." - }, - "defeat": { - 1: "That was close. Want to try again?", - 2: "It's not that you are weak. Don't let it bother you." - } - }, - "karen": { - "encounter": { - 1: "I am Karen. Would you care for a showdown with my Dark-type Pokémon?", - 2: "I am unlike those you've already met.", - 3: "You've assembled a charming team. Our battle should be a good one." - }, - "victory": { - 1: "No! I can't win. How did you become so strong?", - 2: "I will not stray from my chosen path.", - 3: "The Champion is looking forward to meeting you." - }, - "defeat": { - 1: "That's about what I expected.", - 2: "Well, that was relatively entertaining.", - 3: "Come visit me anytime." - } - }, - "milo": { - "encounter": { - 1: `Sure seems like you understand Pokémon real well. - $This is gonna be a doozy of a battle! - $I'll have to Dynamax my Pokémon if I want to win!`, - }, - "victory": { - 1: "The power of Grass has wilted… What an incredible Challenger!" - }, - "defeat": { - 1: "This'll really leave you in shock and awe." - } - }, - "lucian": { - "encounter": { - 1: `Just a moment, please. The book I'm reading has nearly reached its thrilling climax… - $The hero has obtained a mystic sword and is about to face their final trial… Ah, never mind. - $Since you've made it this far, I'll put that aside and battle you. - $Let me see if you'll achieve as much glory as the hero of my book!` - }, - "victory": { - 1: "I see… It appears you've put me in checkmate." - }, - "defeat": { - 1: "I have a reputation to uphold." - } - }, - "drasna": { - "encounter": { - 1: `You must be a strong Trainer. Yes, quite strong indeed… - $That's just wonderful news! Facing opponents like you and your team will make my Pokémon grow like weeds!` - }, - "victory": { - 1: "Oh, dear me. That sure was a quick battle… I do hope you'll come back again sometime!" - }, - "defeat": { - 1: "How can this be?" - } - }, - "kahili": { - "encounter": { - 1: "So, here you are… Why don't we see who the winds favor today, you… Or me?" - }, - "victory": { - 1: "It's frustrating to me as a member of the Elite Four, but it seems your strength is the real deal." - }, - "defeat": { - 1: "That was an ace!" - } - }, - "hassel": { - "encounter": { - 1: "Prepare to learn firsthand how the fiery breath of ferocious battle feels!" - }, - "victory": { - 1: `Fortune smiled on me this time, but… - $Judging from how the match went, who knows if I will be so lucky next time.`, - }, - "defeat": { - 1: "That was an ace!" - } - }, - "blue": { - "encounter": { - 1: "You must be pretty good to get this far." - }, - "victory": { - 1: "I've only lost to him and now to you… Him? Hee, hee…" - }, - "defeat": { - 1: "See? My power is what got me here." - } - }, - "piers": { - "encounter": { - 1: "Get ready for a mosh pit with me and my party! Spikemuth, it's time to rock!" - }, - "victory": { - 1: "Me an' my team gave it our best. Let's meet up again for a battle some time…" - }, - "defeat": { - 1: "My throat's ragged from shoutin'… But 'at was an excitin' battle!" - } - }, - "red": { - "encounter": { - 1: "…!" - }, - "victory": { - 1: "…?" - }, - "defeat": { - 1: "…!" - } - }, - "jasmine": { - "encounter": { - 1: "Oh… Your Pokémon are impressive. I think I will enjoy this." - }, - "victory": { - 1: "You are truly strong. I'll have to try much harder, too." - }, - "defeat": { - 1: "I never expected to win." - } - }, - "lance_champion": { - "encounter": { - 1: "I am still the Champion. I won't hold anything back." - }, - "victory": { - 1: "This is the emergence of a new Champion." - }, - "defeat": { - 1: "I successfully defended my Championship." - } - }, - "steven": { - "encounter": { - 1: `Tell me… What have you seen on your journey with your Pokémon? - $What have you felt, meeting so many other Trainers out there? - $Traveling this rich land… Has it awoken something inside you? - $I want you to come at me with all that you've learned. - $My Pokémon and I will respond in turn with all that we know!`, - }, - "victory": { - 1: "So I, the Champion, fall in defeat…" - }, - "defeat": { - 1: "That was time well spent! Thank you!" - } - }, - "cynthia": { - "encounter": { - 1: "I, Cynthia, accept your challenge! There won't be any letup from me!" - }, - "victory": { - 1: "No matter how fun the battle is, it will always end sometime…" - }, - "defeat": { - 1: "Even if you lose, never lose your love of Pokémon." - } - }, - "iris": { - "encounter": { - 1: `Know what? I really look forward to having serious battles with strong Trainers! - $I mean, come on! The Trainers who make it here are Trainers who desire victory with every fiber of their being! - $And they are battling alongside Pokémon that have been through countless difficult battles! - $If I battle with people like that, not only will I get stronger, my Pokémon will, too! - $And we'll get to know each other even better! OK! Brace yourself! - $I'm Iris, the Pokémon League Champion, and I'm going to defeat you!`, - }, - "victory": { - 1: "Aghhhh… I did my best, but we lost…" - }, - "defeat": { - 1: "Yay! We won!" - } - }, - "hau": { - "encounter": { - 1: `I wonder if a Trainer battles differently depending on whether they're from a warm region or a cold region. - $Let's test it out!`, - }, - "victory": { - 1: "That was awesome! I think I kinda understand your vibe a little better now!" - }, - "defeat": { - 1: "Ma-an, that was some kinda battle!" - } - }, - "geeta": { - "encounter": { - 1: `I decided to throw my hat in the ring once more. - $Come now… Show me the fruits of your training.`, - }, - "victory": { - 1: "I eagerly await news of all your achievements!" - }, - "defeat": { - 1: "What's the matter? This isn't all, is it?" - } - }, - "nemona": { - "encounter": { - 1: "Yesss! I'm so psyched! Time for us to let loose!" - }, - "victory": { - 1: "Well, that stinks, but I still had fun! I'll getcha next time!" - }, - "defeat": { - 1: "Well, that was a great battle! Fruitful for sure." - } - }, - "leon": { - "encounter": { - 1: "We're gonna have an absolutely champion time!" - }, - "victory": { - 1: `My time as Champion is over… - $But what a champion time it's been! - $Thank you for the greatest battle I've ever had!`, - }, - "defeat": { - 1: "An absolute champion time, that was!" - } - }, - "whitney": { - "encounter": { - 1: "Hey! Don't you think Pokémon are, like, super cute?" - }, - "victory": { - 1: "Waaah! Waaah! You're so mean!" - }, - "defeat": { - 1: "And that's that!" - } - }, - "chuck": { - "encounter": { - 1: "Hah! You want to challenge me? Are you brave or just ignorant?" - }, - "victory": { - 1: "You're strong! Would you please make me your apprentice?" - }, - "defeat": { - 1: "There. Do you realize how much more powerful I am than you?" - } - }, - "katy": { - "encounter": { - 1: "Don't let your guard down unless you would like to find yourself knocked off your feet!" - }, - "victory": { - 1: "All of my sweet little Pokémon dropped like flies!" - }, - "defeat": { - 1: "Eat up, my cute little Vivillon!" - } - }, - "pryce": { - "encounter": { - 1: "Youth alone does not ensure victory! Experience is what counts." - }, - "victory": { - 1: "Outstanding! That was perfect. Try not to forget what you feel now." - }, - "defeat": { - 1: "Just as I envisioned." - } - }, - "clair": { - "encounter": { - 1: "Do you know who I am? And you still dare to challenge me?" - }, - "victory": { - 1: "I wonder how far you can get with your skill level. This should be fascinating." - }, - "defeat": { - 1: "That's that." - } - }, - "maylene": { - "encounter": { - 1: `I've come to challenge you now, and I won't hold anything back. - $Please prepare yourself for battle!`, - }, - "victory": { - 1: "I admit defeat…" - }, - "defeat": { - 1: "That was awesome." - } - }, - "fantina": { - "encounter": { - 1: `You shall challenge me, yes? But I shall win. - $That is what the Gym Leader of Hearthome does, non?`, - }, - "victory": { - 1: "You are so fantastically strong. I know why I have lost." - }, - "defeat": { - 1: "I am so, so, very happy!" - } - }, - "byron": { - "encounter": { - 1: `Trainer! You're young, just like my son, Roark. - $With more young Trainers taking charge, the future of Pokémon is bright! - $So, as a wall for young people, I'll take your challenge!`, - }, - "victory": { - 1: "Hmm! My sturdy Pokémon--defeated!" - }, - "defeat": { - 1: "Gwahahaha! How were my sturdy Pokémon?!" - } - }, - "olympia": { - "encounter": { - 1: "An ancient custom deciding one's destiny. The battle begins!" - }, - "victory": { - 1: "Create your own path. Let nothing get in your way. Your fate, your future." - }, - "defeat": { - 1: "Our path is clear now." - } - }, - "volkner": { - "encounter": { - 1: `Since you've come this far, you must be quite strong… - $I hope you're the Trainer who'll make me remember how fun it is to battle!`, - }, - "victory": { - 1: `You've got me beat… - $Your desire and the noble way your Pokémon battled for you… - $I even felt thrilled during our match. That was a very good battle.`, - }, - "defeat": { - 1: `It was not shocking at all… - $That is not what I wanted!`, - } - }, - "burgh": { - "encounter": { - 1: `M'hm… If I win this battle, I feel like I can draw a picture unlike any before it. - $OK! I can hear my battle muse loud and clear. Let's get straight to it!`, - 2: `Of course, I'm really proud of all of my Pokémon! - $Well now… Let's get right to it!` - }, - "victory": { - 1: "Is it over? Has my muse abandoned me?", - 2: "Hmm… It's over! You're incredible!" - }, - "defeat": { - 1: "Wow… It's beautiful somehow, isn't it…", - 2: `Sometimes I hear people say something was an ugly win. - $I think if you're trying your best, any win is beautiful.` - } - }, - "elesa": { - "encounter": { - 1: `C'est fini! When I'm certain of that, I feel an electric jolt run through my body! - $I want to feel the sensation, so now my beloved Pokémon are going to make your head spin!`, - }, - "victory": { - 1: "I meant to make your head spin, but you shocked me instead." - }, - "defeat": { - 1: "That was unsatisfying somehow… Will you give it your all next time?" - } - }, - "skyla": { - "encounter": { - 1: `It's finally time for a showdown! That means the Pokémon battle that decides who's at the top, right? - $I love being on the summit! 'Cause you can see forever and ever from high places! - $So, how about you and I have some fun?`, - }, - "victory": { - 1: "Being your opponent in battle is a new source of strength to me. Thank you!" - }, - "defeat": { - 1: "Win or lose, you always gain something from a battle, right?" - } - }, - "brycen": { - "encounter": { - 1: `There is also strength in being with other people and Pokémon. - $Receiving their support makes you stronger. I'll show you this power!`, - }, - "victory": { - 1: "The wonderful combination of you and your Pokémon! What a beautiful friendship!" - }, - "defeat": { - 1: "Extreme conditions really test you and train you!" - } - }, - "drayden": { - "encounter": { - 1: `What I want to find is a young Trainer who can show me a bright future. - $Let's battle with everything we have: your skill, my experience, and the love we've raised our Pokémon with!`, - }, - "victory": { - 1: "This intense feeling that floods me after a defeat… I don't know how to describe it." - }, - "defeat": { - 1: "Harrumph! I know your ability is greater than that!" - } - }, - "grant": { - "encounter": { - 1: `There is only one thing I wish for. - $That by surpassing one another, we find a way to even greater heights.`, - }, - "victory": { - 1: "You are a wall that I am unable to surmount!" - }, - "defeat": { - 1: `Do not give up. - $That is all there really is to it. - $The most important lessons in life are simple.`, - } - }, - "korrina": { - "encounter": { - 1: "Time for Lady Korrina's big appearance!" - }, - "victory": { - 1: "It's your very being that allows your Pokémon to evolve!" - }, - "defeat": { - 1: "What an explosive battle!" - } - }, - "clemont": { - "encounter": { - 1: "Oh! I'm glad that we got to meet!" - }, - "victory": { - 1: "Your passion for battle inspires me!" - }, - "defeat": { - 1: "Looks like my Trainer-Grow-Stronger Machine, Mach 2 is really working!" - } - }, - "valerie": { - "encounter": { - 1: `Oh, if it isn't a young Trainer… It is lovely to get to meet you like this. - $Then I suppose you have earned yourself the right to a battle, as a reward for your efforts. - $The elusive Fairy may appear frail as the breeze and delicate as a bloom, but it is strong.`, - }, - "victory": { - 1: "I hope that you will find things worth smiling about tomorrow…" - }, - "defeat": { - 1: "Oh goodness, what a pity…" - } - }, - "wulfric": { - "encounter": { - 1: `You know what? We all talk big about what you learn from battling and bonds and all that… - $But really, I just do it 'cause it's fun. - $Who cares about the grandstanding? Let's get to battling!`, - }, - "victory": { - 1: "Outstanding! I'm tough as an iceberg, but you smashed me through and through!" - }, - "defeat": { - 1: "Tussle with me and this is what happens!" - } - }, - "kabu": { - "encounter": { - 1: `Every Trainer and Pokémon trains hard in pursuit of victory. - $But that means your opponent is also working hard to win. - $In the end, the match is decided by which side is able to unleash their true potential.`, - }, - "victory": { - 1: "I'm glad I could battle you today!" - }, - "defeat": { - 1: "That's a great way for me to feel my own growth!" - } - }, - "bea": { - "encounter": { - 1: `Do you have an unshakable spirit that won't be moved, no matter how you are attacked? - $I think I'll just test that out, shall I?`, - }, - "victory": { - 1: "I felt the fighting spirit of your Pokémon as you led them in battle." - }, - "defeat": { - 1: "That was the best sort of match anyone could ever hope for." - } - }, - "opal": { - "encounter": { - 1: "Let me have a look at how you and your partner Pokémon behave!" - }, - "victory": { - 1: "Your pink is still lacking, but you're an excellent Trainer with excellent Pokémon." - }, - "defeat": { - 1: "Too bad for you, I guess." - } - }, - "bede": { - "encounter": { - 1: "I suppose I should prove beyond doubt just how pathetic you are and how strong I am." - }, - "victory": { - 1: "I see… Well, that's fine. I wasn't really trying all that hard anyway." - }, - "defeat": { - 1: "Not a bad job, I suppose." - } - }, - "gordie": { - "encounter": { - 1: "So, let's get this over with." - }, - "victory": { - 1: "I just want to climb into a hole… Well, I guess it'd be more like falling from here." - }, - "defeat": { - 1: "Battle like you always do, victory will follow!" - } - }, - "marnie": { - "encounter": { - 1: `The truth is, when all's said and done… I really just wanna become Champion for myself! - $So don't take it personal when I kick your butt!`, - }, - "victory": { - 1: "OK, so I lost… But I got to see a lot of the good points of you and your Pokémon!" - }, - "defeat": { - 1: "Hope you enjoyed our battle tactics." - } - }, - "raihan": { - "encounter": { - 1: "I'm going to defeat the Champion, win the whole tournament, and prove to the world just how strong the great Raihan really is!" - }, - "victory": { - 1: `I look this good even when I lose. - $It's a real curse. - $Guess it's time for another selfie!`, - }, - "defeat": { - 1: "Let's take a selfie to remember this." - } - }, - "brassius": { - "encounter": { - 1: "I assume you are ready? Let our collaborative work of art begin!" - }, - "victory": { - 1: "Ahhh…vant-garde!" - }, - "defeat": { - 1: "I will begin on a new piece at once!" - } - }, - "iono": { - "encounter": { - 1: `How're ya feelin' about this battle? - $... - $Let's get this show on the road! How strong is our challenger? - $I 'unno! Let's find out together!`, - }, - "victory": { - 1: "You're as flashy and bright as a 10,000,000-volt Thunderbolt, friendo!" - }, - "defeat": { - 1: "Your eyeballs are MINE!" - } - }, - "larry": { - "encounter": { - 1: "When all's said and done, simplicity is strongest." - }, - "victory": { - 1: "A serving of defeat, huh?" - }, - "defeat": { - 1: "I'll call it a day." - } - }, - "ryme": { - "encounter": { - 1: "Come on, baby! Rattle me down to the bone!" - }, - "victory": { - 1: "You're cool, my friend—you move my SOUL!" - }, - "defeat": { - 1: "Later, baby!" - } - }, - "grusha": { - "encounter": { - 1: "All I need to do is make sure the power of my Pokémon chills you to the bone!" - }, - "victory": { - 1: "Your burning passion… I kinda like it, to be honest." - }, - "defeat": { - 1: "Things didn't heat up for you." - } - }, - "marnie_elite": { - "encounter": { - 1: "You've made it this far, huh? Let's see if you can handle my Pokémon!", - 2: "I'll give it my best shot, but don't think I'll go easy on you!" - }, - "victory": { - 1: "I can't believe I lost... But you deserved that win. Well done!", - 2: "Looks like I've still got a lot to learn. Great battle, though!" - }, - "defeat": { - 1: "You put up a good fight, but I've got the edge! Better luck next time!", - 2: "Seems like my training's paid off. Thanks for the battle!" - } - }, - "nessa_elite": { - "encounter": { - 1: "The tides are turning in my favor. Ready to get swept away?", - 2: "Let's make some waves with this battle! I hope you're prepared!" - }, - "victory": { - 1: "You navigated those waters perfectly... Well done!", - 2: "Looks like my currents were no match for you. Great job!" - }, - "defeat": { - 1: "Water always finds a way. That was a refreshing battle!", - 2: "You fought well, but the ocean's power is unstoppable!" - } - }, - "bea_elite": { - "encounter": { - 1: "Prepare yourself! My fighting spirit burns bright!", - 2: "Let's see if you can keep up with my relentless pace!" - }, - "victory": { - 1: "Your strength... It's impressive. You truly deserve this win.", - 2: "I've never felt this intensity before. Amazing job!" - }, - "defeat": { - 1: "Another victory for my intense training regimen! Well done!", - 2: "You've got strength, but I trained harder. Great battle!" - } - }, - "allister_elite": { - "encounter": { - 1: "Shadows fall... Are you ready to face your fears?", - 2: "Let's see if you can handle the darkness that I command." - }, - "victory": { - 1: "You've dispelled the shadows... For now. Well done.", - 2: "Your light pierced through my darkness. Great job." - }, - "defeat": { - 1: "The shadows have spoken... Your strength isn't enough.", - 2: "Darkness triumphs... Maybe next time you'll see the light." - } - }, - "raihan_elite": { - "encounter": { - 1: "Storm's brewing! Let's see if you can weather this fight!", - 2: "Get ready to face the eye of the storm!" - }, - "victory": { - 1: "You've bested the storm... Incredible job!", - 2: "You rode the winds perfectly... Great battle!" - }, - "defeat": { - 1: "Another storm weathered, another victory claimed! Well fought!", - 2: "You got caught in my storm! Better luck next time!" - } - }, - "alder": { - "encounter": { - 1: "Prepare yourself for a match against the strongest Trainer in Unova!" - }, - "victory": { - 1: "Well done! You certainly are an unmatched talent." - }, - "defeat": { - 1: `A fresh wind blows through my heart... - $What an extraordinary effort!` - } - }, - "kieran": { - "encounter": { - 1: `Through hard work, I become stronger and stronger! - $I don't lose.` - }, - "victory": { - 1: `I don't believe it... - $What a fun and heart-pounding battle!` - }, - "defeat": { - 1: `Wowzers, what a battle! - $Time for you to train even harder.` - } - }, - "rival": { - "encounter": { - 1: `@c{smile}Hey, I was looking for you! I knew you were eager to get going but I expected at least a goodbye… - $@c{smile_eclosed}So you're really pursuing your dream after all?\n I almost can't believe it. - $@c{serious_smile_fists}Since we're here, how about a battle?\nAfter all, I want to make sure you're ready. - $@c{serious_mopen_fists}Don't hold back, I want you to give me everything you've got!` - }, - "victory": { - 1: `@c{shock}Wow… You cleaned me out.\nAre you actually a beginner? - $@c{smile}Maybe it was a bit of luck but…\nWho knows you might just be able to go all the way. - $By the way, the professor asked me to give you these items. They look pretty cool. - $@c{serious_smile_fists}Good luck out there! - $@c{smile}Oh- and I hope you enjoy the event!` - }, - }, - "rival_female": { - "encounter": { - 1: `@c{smile_wave}There you are! I've been looking everywhere for you!\n@c{angry_mopen}Did you forget to say goodbye to your best friend? - $@c{smile_ehalf}You're going after your dream, huh?\nThat day is really today isn't it… - $@c{smile}Anyway, I'll forgive you for forgetting me, but on one condition. @c{smile_wave_wink}You have to battle me! - $@c{angry_mopen}Give it your all! Wouldn't want your adventure to be over before it started, right?` - }, - "victory": { - 1: `@c{shock}You just started and you're already this strong?!@d{96}\n@c{angry}You totally cheated, didn't you? - $@c{smile_wave_wink}Just kidding!@d{64} @c{smile_eclosed}I lost fair and square… I have a feeling you're going to do really well out there. - $@c{smile}By the way, the professor wanted me to give you some items. Hopefully they're helpful! - $@c{smile_wave}Do your best like always! I believe in you! - $@c{smile}Oh- and I hope you enjoy the event!` - }, - }, - "rival_2": { - "encounter": { - 1: `@c{smile}Hey, you're here too?\n@c{smile_eclosed}Still a perfect record, huh…? - $@c{serious_mopen_fists}I know it kind of looks like I followed you here, but that's mostly not true. - $@c{serious_smile_fists}Honestly though, I've been itching for a rematch since you beat me back at home. - $I've been doing a lot of my own training so I'll definitely put up a fight this time. - $@c{serious_mopen_fists}Don't hold back, just like before!\nLet's go!` - }, - "victory": { - 1: `@c{neutral_eclosed}Oh. I guess I was overconfident. - $@c{smile}That's alright, though. I figured this might happen.\n@c{serious_mopen_fists}It just means I need to try harder for next time!\n - $@c{smile}Oh, not that you really need the help, but I had an extra one of these lying around and figured you might want it.\n - $@c{serious_smile_fists}Don't expect another one after this, though!\nI can't keep giving my opponent an advantage after all. - $@c{smile}Anyway, take care, and enjoy the event!` - }, - }, - "rival_2_female": { - "encounter": { - 1: `@c{smile_wave}Oh, fancy meeting you here. Looks like you're still undefeated. @c{angry_mopen}Huh… Not bad! - $@c{angry_mopen}I know what you're thinking, and no, I wasn't creeping on you. @c{smile_eclosed}I just happened to be in the area. - $@c{smile_ehalf}I'm happy for you but I just want to let you know that it's OK to lose sometimes. - $@c{smile}We learn from our mistakes, often more than we would if we kept succeeding. - $@c{angry_mopen}In any case, I've been training hard for our rematch, so you'd better give it your all!` - }, - "victory": { - 1: `@c{neutral}I… wasn't supposed to lose that time… - $@c{smile}Aw well. That just means I'll have to train even harder for next time! - $@c{smile_wave}I also got you another one of these!\n@c{smile_wave_wink}No need to thank me~. - $@c{angry_mopen}This is the last one, though! You won't be getting anymore freebies from me after this! - $@c{smile_wave}Keep at it, and enjoy the event!` - }, - "defeat": { - 1: "It's OK to lose sometimes…" - } - }, - "rival_3": { - "encounter": { - 1: `@c{smile}Hey, look who it is! It's been a while.\n@c{neutral}You're… still undefeated? Huh. - $@c{neutral_eclosed}Things have been kind of… strange.\nIt's not the same back home without you. - $@c{serious}I know it's selfish, but I need to get this off my chest.\n@c{neutral_eclosed}I think you're in over your head here. - $@c{serious}Never losing once is just unrealistic.\nWe need to lose sometimes in order to grow. - $@c{neutral_eclosed}You've had a great run but there's still so much ahead, and it only gets harder. @c{neutral}Are you prepared for that? - $@c{serious_mopen_fists}If so, prove it to me.` - }, - "victory": { - 1: "@c{angry_mhalf}This is ridiculous… I've hardly stopped training…\nHow are we still so far apart?" - }, - }, - "rival_3_female": { - "encounter": { - 1: `@c{smile_wave}Long time no see! Still haven't lost, huh.\n@c{angry}You're starting to get on my nerves. @c{smile_wave_wink}Just kidding! - $@c{smile_ehalf}But really, don't you miss home by now? Or… me?\nI… I mean, we've really missed you. - $@c{smile_eclosed}I support you in your dream and everything, but the reality is you're going to lose sooner or later. - $@c{smile}And when you do, I'll be there for you like always.\n@c{angry_mopen}Now, let me show you how strong I've become!` - }, - "victory": { - 1: "@c{shock}After all that… it wasn't enough…?\nYou'll never come back at this rate…" - - }, - "defeat": { - 1: "You gave it your best, now let's go home." - } - }, - "rival_4": { - "encounter": { - 1: `@c{neutral}Hey. - $I won't mince words or pleasantries with you.\n@c{neutral_eclosed}I'm here to win, plain and simple. - $@c{serious_mhalf_fists}I've learned to maximize my potential by putting all my time into training. - $@c{smile}You get a lot of extra time when you cut out the unnecessary sleep and social interaction. - $@c{serious_mopen_fists}None of that matters anymore, not until I win. - $@c{neutral_eclosed}I've even reached the point where I don't lose anymore.\n@c{smile_eclosed}I suppose your philosophy wasn't so wrong after all. - $@c{angry_mhalf}Losing is for the weak, and I'm not weak anymore. - $@c{serious_mopen_fists}Prepare yourself.` - }, - "victory": { - 1: "@c{neutral}What…@d{64} What are you?" - }, - }, - "rival_4_female": { - "encounter": { - 1: `@c{neutral}It's me! You didn't forget about me again… did you? - $@c{smile}You should be proud of how far you made it. Congrats!\nBut it looks like it's the end of your journey. - $@c{smile_eclosed}You've awoken something in me I never knew was there.\nIt seems like all I do now is train. - $@c{smile_ehalf}I hardly even eat or sleep now, I just train my Pokémon all day, getting stronger every time. - $@c{neutral}In fact, I… hardly recognize myself. - $And now, I've finally reached peak performance.\nI don't think anyone could beat me now. - $And you know what? It's all because of you.\n@c{smile_ehalf}I don't know whether to thank you or hate you. - $@c{angry_mopen}Prepare yourself.` - }, - "victory": { - 1: "@c{neutral}What…@d{64} What are you?" - - }, - "defeat": { - 1: "$@c{smile}You should be proud of how far you made it." - } - }, - "rival_5": { - "encounter": { - 1: "@c{neutral}…" - }, - "victory": { - 1: "@c{neutral}…" - }, - }, - "rival_5_female": { - "encounter": { - 1: "@c{neutral}…" - }, - "victory": { - 1: "@c{neutral}…" - - }, - "defeat": { - 1: "$@c{smile_ehalf}…" - } - }, - "rival_6": { - "encounter": { - 1: `@c{smile_eclosed}We meet again. - $@c{neutral}I've had some time to reflect on all this.\nThere's a reason this all seems so strange. - $@c{neutral_eclosed}Your dream, my drive to beat you…\nIt's all a part of something greater. - $@c{serious}This isn't about me, or about you… This is about the world, @c{serious_mhalf_fists}and it's my purpose to push you to your limits. - $@c{neutral_eclosed}Whether I've fulfilled that purpose I can't say, but I've done everything in my power. - $@c{neutral}This place we ended up in is terrifying… Yet somehow I feel unphased, like I've been here before. - $@c{serious_mhalf_fists}You feel the same, don't you? - $@c{serious}…and it's like something here is speaking to me.\nThis is all the world's known for a long time now. - $Those times we cherished together that seem so recent are nothing but a distant memory. - $@c{neutral_eclosed}Who can say whether they were ever even real in the first place. - $@c{serious_mopen_fists}You need to keep pushing, because if you don't, it will never end. You're the only one who can do this. - $@c{serious_smile_fists}I hardly know what any of this means, I just know that it's true. - $@c{serious_mopen_fists}If you can't defeat me here and now, you won't stand a chance.` - }, - "victory": { - 1: `@c{smile_eclosed}It looks like my work is done here. - $I want you to promise me one thing.\n@c{smile}After you heal the world, please come home.` - }, - }, - "rival_6_female": { - "encounter": { - 1: `@c{smile_ehalf}So it's just us again. - $@c{smile_eclosed}You know, I keep going around and around in my head… - $@c{smile_ehalf}There's something to all this, why everything seems so strange now… - $@c{smile}You have your dream, and I have this ambition in me… - $I just can't help but feel there's a greater purpose to all this, to what we're doing, you and I. - $@c{smile_eclosed}I think I'm supposed to push you… to your limits. - $@c{smile_ehalf}I'm not sure if I've been doing a good job at that, but I've tried my best up to now. - $It's something about this strange and dreadful place… Everything seems so clear… - $This… is all the world's known for a long time now. - $@c{smile_eclosed}It's like I can barely remember the memories we cherished together. - $@c{smile_ehalf}Were they even real? They seem so far away now… - $@c{angry_mopen}You need to keep pushing, because if you don't, it will never end. You're the only one who can do this. - $@c{smile_ehalf}I… don't know what all this means… but I feel it's true. - $@c{neutral}If you can't defeat me here and now, you won't stand a chance.` - }, - "victory": { - 1: `@c{smile_ehalf}I… I think I fulfilled my purpose… - $@c{smile_eclosed}Promise me… After you heal the world… Please… come home safe. - $@c{smile_ehalf}…Thank you.` - - }, - }, -}; - - -// Dialogue of the NPCs in the game when the player character is female. For languages that do not have gendered pronouns, this can be set to PGMdialogue. -export const PGFdialogue: DialogueTranslationEntries = PGMdialogue; - -// Dialogue of the endboss of the game when the player character is male (Or unset) -export const PGMbattleSpecDialogue: SimpleTranslationEntries = { - "encounter": `It appears the time has finally come once again.\nYou know why you have come here, do you not? - $You were drawn here, because you have been here before.\nCountless times. - $Though, perhaps it can be counted.\nTo be precise, this is in fact your 5,643,853rd cycle. - $Each cycle your mind reverts to its former state.\nEven so, somehow, remnants of your former selves remain. - $Until now you have yet to succeed, but I sense a different presence in you this time.\n - $You are the only one here, though it is as if there is… another. - $Will you finally prove a formidable challenge to me?\nThe challenge I have longed for for millennia? - $We begin.`, - "firstStageWin": `I see. The presence I felt was indeed real.\nIt appears I no longer need to hold back. - $Do not disappoint me.`, - "secondStageWin": "…Magnificent." -}; - -// Dialogue of the endboss of the game when the player character is female. For languages that do not have gendered pronouns, this can be set to PGMbattleSpecDialogue. -export const PGFbattleSpecDialogue: SimpleTranslationEntries = PGMbattleSpecDialogue; - -// Dialogue that does not fit into any other category (e.g. tutorial messages, or the end of the game). For when the player character is male -export const PGMmiscDialogue: SimpleTranslationEntries = { - "ending": - `@c{smile}Oh? You won?@d{96} @c{smile_eclosed}I guess I should've known.\nBut, you're back now. - $@c{smile}It's over.@d{64} You ended the loop. - $@c{serious_smile_fists}You fulfilled your dream too, didn't you?\nYou didn't lose even once. - $@c{neutral}I'm the only one who'll remember what you did.@d{96}\nI guess that's okay, isn't it? - $@c{serious_smile_fists}Your legend will always live on in our hearts. - $@c{smile_eclosed}Anyway, I've had about enough of this place, haven't you? Let's head home. - $@c{serious_smile_fists}Maybe when we get back, we can have another battle?\nIf you're up to it.`, - "ending_female": - `@c{shock}You're back?@d{32} Does that mean…@d{96} you won?!\n@c{smile_ehalf}I should have known you had it in you. - $@c{smile_eclosed}Of course… I always had that feeling.\n@c{smile}It's over now, right? You ended the loop. - $@c{smile_ehalf}You fulfilled your dream too, didn't you?\nYou didn't lose even once. - $I'll be the only one to remember what you did.\n@c{angry_mopen}I'll try not to forget! - $@c{smile_wave_wink}Just kidding!@d{64} @c{smile}I'd never forget.@d{32}\nYour legend will live on in our hearts. - $@c{smile_wave}Anyway,@d{64} it's getting late…@d{96} I think?\nIt's hard to tell in this place. - $Let's go home. @c{smile_wave_wink}Maybe tomorrow, we can have another battle, for old time's sake?`, - "ending_endless": "Congratulations on reaching the current end!\nMore content is coming soon.", - "ending_name": "Devs" -}; -// Dialogue that does not fit into any other category (e.g. tutorial messages, or the end of the game). For when the player character is female. For languages that do not have gendered pronouns, this can be set to PGMmiscDialogue. -export const PGFmiscDialogue: SimpleTranslationEntries = PGMmiscDialogue; - - -// Dialogue of the named double battles in the game. For when the player is male (or unset). -export const PGMdoubleBattleDialogue: DialogueTranslationEntries = { - "blue_red_double": { - "encounter": { - 1: `Blue: Hey Red, let's show them what we're made of! - $Red: ... - $Blue: This is Pallet Town Power!`, - }, - "victory": { - 1: `Blue: That was a great battle! - $Red: ...`, - }, - }, - "red_blue_double": { - "encounter": { - 1: `Red: ...! - $Blue: He never talks much. - $Blue: But dont let that fool you! He is a champ after all!`, - }, - "victory": { - 1: `Red: ...! - $Blue: Next time we will beat you!`, - }, - }, - "tate_liza_double": { - "encounter": { - 1: `Tate: Are you surprised? - $Liza: We are two gym leaders at once! - $Tate: We are twins! - $Liza: We dont need to talk to understand each other! - $Tate: Twice the power... - $Liza: Can you handle it?`, - }, - "victory": { - 1: `Tate: What? Our combination was perfect! - $Liza: Looks like we need to train more...`, - }, - }, - "liza_tate_double": { - "encounter": { - 1: `Liza: Hihihi... Are you surprised? - $Tate: Yes, we are really two gym leaders at once! - $Liza: This is my twin brother Tate! - $Tate: And this is my twin sister Liza! - $Liza: Don't you think we are a perfect combination?` - }, - "victory": { - 1: `Liza: Are we... - $Tate: ...not as strong as we thought?`, - }, - }, - "wallace_steven_double": { - "encounter": { - 1: `Steven: Wallace, let's show them the power of the champions! - $Wallace: We will show you the power of Hoenn! - $Steven: Let's go!`, - }, - "victory": { - 1: `Steven: That was a great battle! - $Wallace: We will win next time!`, - }, - }, - "steven_wallace_double": { - "encounter": { - 1: `Steven: Do you have any rare Pokémon? - $Wallace: Steven... We are here for a battle, not to show off our Pokémon. - $Steven: Oh... I see... Let's go then!`, - }, - "victory": { - 1: `Steven: Now that we are done with the battle, let's show off our Pokémon! - $Wallace: Steven...`, - }, - }, - "alder_iris_double": { - "encounter": { - 1: `Alder: We are the strongest trainers in Unova! - $Iris: Fights against strong trainers are the best!`, - }, - "victory": { - 1: `Alder: Wow! You are super strong! - $Iris: We will win next time!`, - }, - }, - "iris_alder_double": { - "encounter": { - 1: `Iris: Welcome Challenger! I am THE Unova Champion! - $Alder: Iris, aren't you a bit too excited?`, - }, - "victory": { - 1: `Iris: A loss like this is not easy to take... - $Alder: But we will only get stronger with every loss!`, - }, - }, - "piers_marnie_double": { - "encounter": { - 1: `Marnie: Brother, let's show them the power of Spikemuth! - $Piers: We bring darkness!`, - }, - "victory": { - 1: `Marnie: You brought light to our darkness! - $Piers: Its too bright...`, - }, - }, - "marnie_piers_double": { - "encounter": { - 1: `Piers: Ready for a concert? - $Marnie: Brother... They are here to fight, not to sing...`, - }, - "victory": { - 1: `Piers: Now that was a great concert! - $Marnie: Brother...`, - }, - }, -}; - -// Dialogue of the named double battles in the game. For when the player is female. For languages that do not have gendered pronouns, this can be set to PGMdoubleBattleDialogue. -export const PGFdoubleBattleDialogue: DialogueTranslationEntries = PGMdoubleBattleDialogue; diff --git a/src/locales/ca_ES/egg.json b/src/locales/ca_ES/egg.json new file mode 100644 index 00000000000..9e26dfeeb6e --- /dev/null +++ b/src/locales/ca_ES/egg.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/src/locales/ca_ES/fight-ui-handler.json b/src/locales/ca_ES/fight-ui-handler.json new file mode 100644 index 00000000000..9e26dfeeb6e --- /dev/null +++ b/src/locales/ca_ES/fight-ui-handler.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/src/locales/ca_ES/fight-ui-handler.ts b/src/locales/ca_ES/fight-ui-handler.ts deleted file mode 100644 index 8ceb503c34a..00000000000 --- a/src/locales/ca_ES/fight-ui-handler.ts +++ /dev/null @@ -1,9 +0,0 @@ -import { SimpleTranslationEntries } from "#app/interfaces/locales"; - -export const fightUiHandler: SimpleTranslationEntries = { - "pp": "PP", - "power": "Power", - "accuracy": "Accuracy", - "abilityFlyInText": " {{pokemonName}}'s {{passive}}{{abilityName}}", - "passive": "Passive ", // The space at the end is important -} as const; diff --git a/src/locales/ca_ES/filter-bar.json b/src/locales/ca_ES/filter-bar.json new file mode 100644 index 00000000000..9e26dfeeb6e --- /dev/null +++ b/src/locales/ca_ES/filter-bar.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/src/locales/ca_ES/filter-bar.ts b/src/locales/ca_ES/filter-bar.ts deleted file mode 100644 index cbdb22c03bd..00000000000 --- a/src/locales/ca_ES/filter-bar.ts +++ /dev/null @@ -1,40 +0,0 @@ -import { SimpleTranslationEntries } from "#app/interfaces/locales"; - -export const filterBar: SimpleTranslationEntries = { - "genFilter": "Gen", - "typeFilter": "Type", - "caughtFilter": "Caught", - "unlocksFilter": "Unlocks", - "miscFilter": "Misc", - "sortFilter": "Sort", - "all": "All", - "normal": "Not Shiny", - "uncaught": "Uncaught", - "passive": "Passive", - "passiveUnlocked": "Passive - Yes", - "passiveLocked": "Passive - No", - "passiveUnlockable": "Passive - Can Unlock", - "costReduction": "Cost Reduction", - "costReductionUnlocked": "Cost Reduction - Yes", - "costReductionLocked": "Cost Reduction - No", - "costReductionUnlockable": "Cost Reduction - Can Unlock", - "favorite": "Favorite", - "isFavorite": "Favorite - Yes", - "notFavorite": "Favorite - No", - "ribbon": "Ribbon", - "hasWon": "Ribbon - Yes", - "hasNotWon": "Ribbon - No", - "hiddenAbility": "Hidden Ability", - "hasHiddenAbility": "Hidden Ability - Yes", - "noHiddenAbility": "Hidden Ability - No", - "egg": "Egg", - "eggPurchasable": "Purchasable Egg", - "pokerus": "Pokérus", - "hasPokerus": "Pokérus - Yes", - "noPokerus": "Pokérus - No", - "sortByNumber": "No.", - "sortByCost": "Cost", - "sortByCandies": "Candy Count", - "sortByIVs": "IVs", - "sortByName": "Name", -}; diff --git a/src/locales/ca_ES/game-mode.json b/src/locales/ca_ES/game-mode.json new file mode 100644 index 00000000000..9e26dfeeb6e --- /dev/null +++ b/src/locales/ca_ES/game-mode.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/src/locales/ca_ES/game-mode.ts b/src/locales/ca_ES/game-mode.ts deleted file mode 100644 index 903f1a63072..00000000000 --- a/src/locales/ca_ES/game-mode.ts +++ /dev/null @@ -1,10 +0,0 @@ -import { SimpleTranslationEntries } from "#app/interfaces/locales"; - -export const gameMode: SimpleTranslationEntries = { - "classic": "Classic", - "endless": "Endless", - "endlessSpliced": "Endless (Spliced)", - "dailyRun": "Daily Run", - "unknown": "Unknown", - "challenge": "Challenge", -} as const; diff --git a/src/locales/ca_ES/game-stats-ui-handler.json b/src/locales/ca_ES/game-stats-ui-handler.json new file mode 100644 index 00000000000..9e26dfeeb6e --- /dev/null +++ b/src/locales/ca_ES/game-stats-ui-handler.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/src/locales/ca_ES/growth.json b/src/locales/ca_ES/growth.json new file mode 100644 index 00000000000..9e26dfeeb6e --- /dev/null +++ b/src/locales/ca_ES/growth.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/src/locales/ca_ES/menu-ui-handler.json b/src/locales/ca_ES/menu-ui-handler.json new file mode 100644 index 00000000000..9e26dfeeb6e --- /dev/null +++ b/src/locales/ca_ES/menu-ui-handler.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/src/locales/ca_ES/menu.json b/src/locales/ca_ES/menu.json new file mode 100644 index 00000000000..9e26dfeeb6e --- /dev/null +++ b/src/locales/ca_ES/menu.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/src/locales/ca_ES/modifier-select-ui-handler.json b/src/locales/ca_ES/modifier-select-ui-handler.json new file mode 100644 index 00000000000..9e26dfeeb6e --- /dev/null +++ b/src/locales/ca_ES/modifier-select-ui-handler.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/src/locales/ca_ES/modifier-type.json b/src/locales/ca_ES/modifier-type.json new file mode 100644 index 00000000000..9e26dfeeb6e --- /dev/null +++ b/src/locales/ca_ES/modifier-type.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/src/locales/ca_ES/modifier-type.ts b/src/locales/ca_ES/modifier-type.ts deleted file mode 100644 index 68761c33106..00000000000 --- a/src/locales/ca_ES/modifier-type.ts +++ /dev/null @@ -1,457 +0,0 @@ -import { ModifierTypeTranslationEntries } from "#app/interfaces/locales"; - -export const modifierType: ModifierTypeTranslationEntries = { - ModifierType: { - "AddPokeballModifierType": { - name: "{{modifierCount}}x {{pokeballName}}", - description: "Receive {{pokeballName}} x{{modifierCount}} (Inventory: {{pokeballAmount}}) \nCatch Rate: {{catchRate}}", - }, - "AddVoucherModifierType": { - name: "{{modifierCount}}x {{voucherTypeName}}", - description: "Receive {{voucherTypeName}} x{{modifierCount}}.", - }, - "PokemonHeldItemModifierType": { - extra: { - "inoperable": "{{pokemonName}} can't take\nthis item!", - "tooMany": "{{pokemonName}} has too many\nof this item!", - } - }, - "PokemonHpRestoreModifierType": { - description: "Restores {{restorePoints}} HP or {{restorePercent}}% HP for one Pokémon, whichever is higher.", - extra: { - "fully": "Fully restores HP for one Pokémon.", - "fullyWithStatus": "Fully restores HP for one Pokémon and heals any status ailment.", - } - }, - "PokemonReviveModifierType": { - description: "Revives one Pokémon and restores {{restorePercent}}% HP.", - }, - "PokemonStatusHealModifierType": { - description: "Heals any status ailment for one Pokémon.", - }, - "PokemonPpRestoreModifierType": { - description: "Restores {{restorePoints}} PP for one Pokémon move.", - extra: { - "fully": "Restores all PP for one Pokémon move.", - } - }, - "PokemonAllMovePpRestoreModifierType": { - description: "Restores {{restorePoints}} PP for all of one Pokémon's moves.", - extra: { - "fully": "Restores all PP for all of one Pokémon's moves.", - } - }, - "PokemonPpUpModifierType": { - description: "Permanently increases PP for one Pokémon move by {{upPoints}} for every 5 maximum PP (maximum 3).", - }, - "PokemonNatureChangeModifierType": { - name: "{{natureName}} Mint", - description: "Changes a Pokémon's nature to {{natureName}} and permanently unlocks the nature for the starter.", - }, - "DoubleBattleChanceBoosterModifierType": { - description: "Doubles the chance of an encounter being a double battle for {{battleCount}} battles.", - }, - "TempBattleStatBoosterModifierType": { - description: "Increases the {{tempBattleStatName}} of all party members by 1 stage for 5 battles.", - }, - "AttackTypeBoosterModifierType": { - description: "Increases the power of a Pokémon's {{moveType}}-type moves by 20%.", - }, - "PokemonLevelIncrementModifierType": { - description: "Increases a Pokémon's level by {{levels}}.", - }, - "AllPokemonLevelIncrementModifierType": { - description: "Increases all party members' level by {{levels}}.", - }, - "PokemonBaseStatBoosterModifierType": { - description: "Increases the holder's base {{statName}} by 10%. The higher your IVs, the higher the stack limit.", - }, - "AllPokemonFullHpRestoreModifierType": { - description: "Restores 100% HP for all Pokémon.", - }, - "AllPokemonFullReviveModifierType": { - description: "Revives all fainted Pokémon, fully restoring HP.", - }, - "MoneyRewardModifierType": { - description: "Grants a {{moneyMultiplier}} amount of money (₽{{moneyAmount}}).", - extra: { - "small": "small", - "moderate": "moderate", - "large": "large", - }, - }, - "ExpBoosterModifierType": { - description: "Increases gain of EXP. Points by {{boostPercent}}%.", - }, - "PokemonExpBoosterModifierType": { - description: "Increases the holder's gain of EXP. Points by {{boostPercent}}%.", - }, - "PokemonFriendshipBoosterModifierType": { - description: "Increases friendship gain per victory by 50%.", - }, - "PokemonMoveAccuracyBoosterModifierType": { - description: "Increases move accuracy by {{accuracyAmount}} (maximum 100).", - }, - "PokemonMultiHitModifierType": { - description: "Attacks hit one additional time at the cost of a 60/75/82.5% power reduction per stack respectively.", - }, - "TmModifierType": { - name: "TM{{moveId}} - {{moveName}}", - description: "Teach {{moveName}} to a Pokémon.", - }, - "TmModifierTypeWithInfo": { - name: "TM{{moveId}} - {{moveName}}", - description: "Teach {{moveName}} to a Pokémon\n(Hold C or Shift for more info).", - }, - "EvolutionItemModifierType": { - description: "Causes certain Pokémon to evolve.", - }, - "FormChangeItemModifierType": { - description: "Causes certain Pokémon to change form.", - }, - "FusePokemonModifierType": { - description: "Combines two Pokémon (transfers Ability, splits base stats and types, shares move pool).", - }, - "TerastallizeModifierType": { - name: "{{teraType}} Tera Shard", - description: "{{teraType}} Terastallizes the holder for up to 10 battles.", - }, - "ContactHeldItemTransferChanceModifierType": { - description: "Upon attacking, there is a {{chancePercent}}% chance the foe's held item will be stolen.", - }, - "TurnHeldItemTransferModifierType": { - description: "Every turn, the holder acquires one held item from the foe.", - }, - "EnemyAttackStatusEffectChanceModifierType": { - description: "Adds a {{chancePercent}}% chance to inflict {{statusEffect}} with attack moves.", - }, - "EnemyEndureChanceModifierType": { - description: "Adds a {{chancePercent}}% chance of enduring a hit.", - }, - - "RARE_CANDY": { name: "Rare Candy" }, - "RARER_CANDY": { name: "Rarer Candy" }, - - "MEGA_BRACELET": { name: "Mega Bracelet", description: "Mega Stones become available." }, - "DYNAMAX_BAND": { name: "Dynamax Band", description: "Max Mushrooms become available." }, - "TERA_ORB": { name: "Tera Orb", description: "Tera Shards become available." }, - - "MAP": { name: "Map", description: "Allows you to choose your destination at a crossroads." }, - - "POTION": { name: "Potion" }, - "SUPER_POTION": { name: "Super Potion" }, - "HYPER_POTION": { name: "Hyper Potion" }, - "MAX_POTION": { name: "Max Potion" }, - "FULL_RESTORE": { name: "Full Restore" }, - - "REVIVE": { name: "Revive" }, - "MAX_REVIVE": { name: "Max Revive" }, - - "FULL_HEAL": { name: "Full Heal" }, - - "SACRED_ASH": { name: "Sacred Ash" }, - - "REVIVER_SEED": { name: "Reviver Seed", description: "Revives the holder for 1/2 HP upon fainting from a direct hit." }, - - "WHITE_HERB": { name: "White Herb", description: "An item to be held by a Pokémon. It will restore any lowered stat in battle." }, - - "ETHER": { name: "Ether" }, - "MAX_ETHER": { name: "Max Ether" }, - - "ELIXIR": { name: "Elixir" }, - "MAX_ELIXIR": { name: "Max Elixir" }, - - "PP_UP": { name: "PP Up" }, - "PP_MAX": { name: "PP Max" }, - - "LURE": { name: "Lure" }, - "SUPER_LURE": { name: "Super Lure" }, - "MAX_LURE": { name: "Max Lure" }, - - "MEMORY_MUSHROOM": { name: "Memory Mushroom", description: "Recall one Pokémon's forgotten move." }, - - "EXP_SHARE": { name: "EXP. All", description: "Non-participants receive 20% of a single participant's EXP. Points." }, - "EXP_BALANCE": { name: "EXP. Balance", description: "Weighs EXP. Points received from battles towards lower-leveled party members." }, - - "OVAL_CHARM": { name: "Oval Charm", description: "When multiple Pokémon participate in a battle, each gets an extra 10% of the total EXP." }, - - "EXP_CHARM": { name: "EXP. Charm" }, - "SUPER_EXP_CHARM": { name: "Super EXP. Charm" }, - "GOLDEN_EXP_CHARM": { name: "Golden EXP. Charm" }, - - "LUCKY_EGG": { name: "Lucky Egg" }, - "GOLDEN_EGG": { name: "Golden Egg" }, - - "SOOTHE_BELL": { name: "Soothe Bell" }, - - "SCOPE_LENS": { name: "Scope Lens", description: "It's a lens for scoping out weak points. It boosts the holder's critical-hit ratio."}, - "LEEK": { name: "Leek", description: "This very long and stiff stalk of leek boosts the critical-hit ratio of Farfetch'd's moves."}, - - "EVIOLITE": { name: "Eviolite", description: "This mysterious evolutionary lump boosts the Defense and Sp. Def stats when held by a Pokémon that can still evolve." }, - - "SOUL_DEW": { name: "Soul Dew", description: "Increases the influence of a Pokémon's nature on its stats by 10% (additive)." }, - - "NUGGET": { name: "Nugget" }, - "BIG_NUGGET": { name: "Big Nugget" }, - "RELIC_GOLD": { name: "Relic Gold" }, - - "AMULET_COIN": { name: "Amulet Coin", description: "Increases money rewards by 20%." }, - "GOLDEN_PUNCH": { name: "Golden Punch", description: "Grants 50% of direct damage inflicted as money." }, - "COIN_CASE": { name: "Coin Case", description: "After every 10th battle, receive 10% of your money in interest." }, - - "LOCK_CAPSULE": { name: "Lock Capsule", description: "Allows you to lock item rarities when rerolling items." }, - - "GRIP_CLAW": { name: "Grip Claw" }, - "WIDE_LENS": { name: "Wide Lens" }, - - "MULTI_LENS": { name: "Multi Lens" }, - - "HEALING_CHARM": { name: "Healing Charm", description: "Increases the effectiveness of HP restoring moves and items by 10% (excludes Revives)." }, - "CANDY_JAR": { name: "Candy Jar", description: "Increases the number of levels added by Rare Candy items by 1." }, - - "BERRY_POUCH": { name: "Berry Pouch", description: "Adds a 30% chance that a used berry will not be consumed." }, - - "FOCUS_BAND": { name: "Focus Band", description: "Adds a 10% chance to survive with 1 HP after being damaged enough to faint." }, - - "QUICK_CLAW": { name: "Quick Claw", description: "Adds a 10% chance to move first regardless of speed (after priority)." }, - - "KINGS_ROCK": { name: "King's Rock", description: "Adds a 10% chance an attack move will cause the opponent to flinch." }, - - "LEFTOVERS": { name: "Leftovers", description: "Heals 1/16 of a Pokémon's maximum HP every turn." }, - "SHELL_BELL": { name: "Shell Bell", description: "Heals 1/8 of a Pokémon's dealt damage." }, - - "TOXIC_ORB": { name: "Toxic Orb", description: "It's a bizarre orb that exudes toxins when touched and will badly poison the holder during battle." }, - "FLAME_ORB": { name: "Flame Orb", description: "It's a bizarre orb that gives off heat when touched and will affect the holder with a burn during battle." }, - - "BATON": { name: "Baton", description: "Allows passing along effects when switching Pokémon, which also bypasses traps." }, - - "SHINY_CHARM": { name: "Shiny Charm", description: "Dramatically increases the chance of a wild Pokémon being Shiny." }, - "ABILITY_CHARM": { name: "Ability Charm", description: "Dramatically increases the chance of a wild Pokémon having a Hidden Ability." }, - - "IV_SCANNER": { name: "IV Scanner", description: "Allows scanning the IVs of wild Pokémon. 2 IVs are revealed per stack. The best IVs are shown first." }, - - "DNA_SPLICERS": { name: "DNA Splicers" }, - - "MINI_BLACK_HOLE": { name: "Mini Black Hole" }, - - "GOLDEN_POKEBALL": { name: "Golden Poké Ball", description: "Adds 1 extra item option at the end of every battle." }, - - "ENEMY_DAMAGE_BOOSTER": { name: "Damage Token", description: "Increases damage by 5%." }, - "ENEMY_DAMAGE_REDUCTION": { name: "Protection Token", description: "Reduces incoming damage by 2.5%." }, - "ENEMY_HEAL": { name: "Recovery Token", description: "Heals 2% of max HP every turn." }, - "ENEMY_ATTACK_POISON_CHANCE": { name: "Poison Token" }, - "ENEMY_ATTACK_PARALYZE_CHANCE": { name: "Paralyze Token" }, - "ENEMY_ATTACK_BURN_CHANCE": { name: "Burn Token" }, - "ENEMY_STATUS_EFFECT_HEAL_CHANCE": { name: "Full Heal Token", description: "Adds a 2.5% chance every turn to heal a status condition." }, - "ENEMY_ENDURE_CHANCE": { name: "Endure Token" }, - "ENEMY_FUSED_CHANCE": { name: "Fusion Token", description: "Adds a 1% chance that a wild Pokémon will be a fusion." }, - }, - SpeciesBoosterItem: { - "LIGHT_BALL": { name: "Light Ball", description: "It's a mysterious orb that boosts Pikachu's Attack and Sp. Atk stats." }, - "THICK_CLUB": { name: "Thick Club", description: "This hard bone of unknown origin boosts Cubone or Marowak's Attack stat." }, - "METAL_POWDER": { name: "Metal Powder", description: "Extremely fine yet hard, this odd powder boosts Ditto's Defense stat." }, - "QUICK_POWDER": { name: "Quick Powder", description: "Extremely fine yet hard, this odd powder boosts Ditto's Speed stat." } - }, - TempBattleStatBoosterItem: { - "x_attack": "X Attack", - "x_defense": "X Defense", - "x_sp_atk": "X Sp. Atk", - "x_sp_def": "X Sp. Def", - "x_speed": "X Speed", - "x_accuracy": "X Accuracy", - "dire_hit": "Dire Hit", - }, - - TempBattleStatBoosterStatName: { - "ATK": "Attack", - "DEF": "Defense", - "SPATK": "Sp. Atk", - "SPDEF": "Sp. Def", - "SPD": "Speed", - "ACC": "Accuracy", - "CRIT": "Critical Hit Ratio", - "EVA": "Evasiveness", - "DEFAULT": "???", - }, - - AttackTypeBoosterItem: { - "silk_scarf": "Silk Scarf", - "black_belt": "Black Belt", - "sharp_beak": "Sharp Beak", - "poison_barb": "Poison Barb", - "soft_sand": "Soft Sand", - "hard_stone": "Hard Stone", - "silver_powder": "Silver Powder", - "spell_tag": "Spell Tag", - "metal_coat": "Metal Coat", - "charcoal": "Charcoal", - "mystic_water": "Mystic Water", - "miracle_seed": "Miracle Seed", - "magnet": "Magnet", - "twisted_spoon": "Twisted Spoon", - "never_melt_ice": "Never-Melt Ice", - "dragon_fang": "Dragon Fang", - "black_glasses": "Black Glasses", - "fairy_feather": "Fairy Feather", - }, - BaseStatBoosterItem: { - "hp_up": "HP Up", - "protein": "Protein", - "iron": "Iron", - "calcium": "Calcium", - "zinc": "Zinc", - "carbos": "Carbos", - }, - EvolutionItem: { - "NONE": "None", - - "LINKING_CORD": "Linking Cord", - "SUN_STONE": "Sun Stone", - "MOON_STONE": "Moon Stone", - "LEAF_STONE": "Leaf Stone", - "FIRE_STONE": "Fire Stone", - "WATER_STONE": "Water Stone", - "THUNDER_STONE": "Thunder Stone", - "ICE_STONE": "Ice Stone", - "DUSK_STONE": "Dusk Stone", - "DAWN_STONE": "Dawn Stone", - "SHINY_STONE": "Shiny Stone", - "CRACKED_POT": "Cracked Pot", - "SWEET_APPLE": "Sweet Apple", - "TART_APPLE": "Tart Apple", - "STRAWBERRY_SWEET": "Strawberry Sweet", - "UNREMARKABLE_TEACUP": "Unremarkable Teacup", - - "CHIPPED_POT": "Chipped Pot", - "BLACK_AUGURITE": "Black Augurite", - "GALARICA_CUFF": "Galarica Cuff", - "GALARICA_WREATH": "Galarica Wreath", - "PEAT_BLOCK": "Peat Block", - "AUSPICIOUS_ARMOR": "Auspicious Armor", - "MALICIOUS_ARMOR": "Malicious Armor", - "MASTERPIECE_TEACUP": "Masterpiece Teacup", - "METAL_ALLOY": "Metal Alloy", - "SCROLL_OF_DARKNESS": "Scroll Of Darkness", - "SCROLL_OF_WATERS": "Scroll Of Waters", - "SYRUPY_APPLE": "Syrupy Apple", - }, - FormChangeItem: { - "NONE": "None", - - "ABOMASITE": "Abomasite", - "ABSOLITE": "Absolite", - "AERODACTYLITE": "Aerodactylite", - "AGGRONITE": "Aggronite", - "ALAKAZITE": "Alakazite", - "ALTARIANITE": "Altarianite", - "AMPHAROSITE": "Ampharosite", - "AUDINITE": "Audinite", - "BANETTITE": "Banettite", - "BEEDRILLITE": "Beedrillite", - "BLASTOISINITE": "Blastoisinite", - "BLAZIKENITE": "Blazikenite", - "CAMERUPTITE": "Cameruptite", - "CHARIZARDITE_X": "Charizardite X", - "CHARIZARDITE_Y": "Charizardite Y", - "DIANCITE": "Diancite", - "GALLADITE": "Galladite", - "GARCHOMPITE": "Garchompite", - "GARDEVOIRITE": "Gardevoirite", - "GENGARITE": "Gengarite", - "GLALITITE": "Glalitite", - "GYARADOSITE": "Gyaradosite", - "HERACRONITE": "Heracronite", - "HOUNDOOMINITE": "Houndoominite", - "KANGASKHANITE": "Kangaskhanite", - "LATIASITE": "Latiasite", - "LATIOSITE": "Latiosite", - "LOPUNNITE": "Lopunnite", - "LUCARIONITE": "Lucarionite", - "MANECTITE": "Manectite", - "MAWILITE": "Mawilite", - "MEDICHAMITE": "Medichamite", - "METAGROSSITE": "Metagrossite", - "MEWTWONITE_X": "Mewtwonite X", - "MEWTWONITE_Y": "Mewtwonite Y", - "PIDGEOTITE": "Pidgeotite", - "PINSIRITE": "Pinsirite", - "RAYQUAZITE": "Rayquazite", - "SABLENITE": "Sablenite", - "SALAMENCITE": "Salamencite", - "SCEPTILITE": "Sceptilite", - "SCIZORITE": "Scizorite", - "SHARPEDONITE": "Sharpedonite", - "SLOWBRONITE": "Slowbronite", - "STEELIXITE": "Steelixite", - "SWAMPERTITE": "Swampertite", - "TYRANITARITE": "Tyranitarite", - "VENUSAURITE": "Venusaurite", - - "BLUE_ORB": "Blue Orb", - "RED_ORB": "Red Orb", - "SHARP_METEORITE": "Sharp Meteorite", - "HARD_METEORITE": "Hard Meteorite", - "SMOOTH_METEORITE": "Smooth Meteorite", - "ADAMANT_CRYSTAL": "Adamant Crystal", - "LUSTROUS_GLOBE": "Lustrous Globe", - "GRISEOUS_CORE": "Griseous Core", - "REVEAL_GLASS": "Reveal Glass", - "GRACIDEA": "Gracidea", - "MAX_MUSHROOMS": "Max Mushrooms", - "DARK_STONE": "Dark Stone", - "LIGHT_STONE": "Light Stone", - "PRISON_BOTTLE": "Prison Bottle", - "N_LUNARIZER": "N Lunarizer", - "N_SOLARIZER": "N Solarizer", - "RUSTED_SWORD": "Rusted Sword", - "RUSTED_SHIELD": "Rusted Shield", - "ICY_REINS_OF_UNITY": "Icy Reins Of Unity", - "SHADOW_REINS_OF_UNITY": "Shadow Reins Of Unity", - "WELLSPRING_MASK": "Wellspring Mask", - "HEARTHFLAME_MASK": "Hearthflame Mask", - "CORNERSTONE_MASK": "Cornerstone Mask", - "SHOCK_DRIVE": "Shock Drive", - "BURN_DRIVE": "Burn Drive", - "CHILL_DRIVE": "Chill Drive", - "DOUSE_DRIVE": "Douse Drive", - "ULTRANECROZIUM_Z": "Ultranecrozium Z", - - "FIST_PLATE": "Fist Plate", - "SKY_PLATE": "Sky Plate", - "TOXIC_PLATE": "Toxic Plate", - "EARTH_PLATE": "Earth Plate", - "STONE_PLATE": "Stone Plate", - "INSECT_PLATE": "Insect Plate", - "SPOOKY_PLATE": "Spooky Plate", - "IRON_PLATE": "Iron Plate", - "FLAME_PLATE": "Flame Plate", - "SPLASH_PLATE": "Splash Plate", - "MEADOW_PLATE": "Meadow Plate", - "ZAP_PLATE": "Zap Plate", - "MIND_PLATE": "Mind Plate", - "ICICLE_PLATE": "Icicle Plate", - "DRACO_PLATE": "Draco Plate", - "DREAD_PLATE": "Dread Plate", - "PIXIE_PLATE": "Pixie Plate", - "BLANK_PLATE": "Blank Plate", - "LEGEND_PLATE": "Legend Plate", - "FIGHTING_MEMORY": "Fighting Memory", - "FLYING_MEMORY": "Flying Memory", - "POISON_MEMORY": "Poison Memory", - "GROUND_MEMORY": "Ground Memory", - "ROCK_MEMORY": "Rock Memory", - "BUG_MEMORY": "Bug Memory", - "GHOST_MEMORY": "Ghost Memory", - "STEEL_MEMORY": "Steel Memory", - "FIRE_MEMORY": "Fire Memory", - "WATER_MEMORY": "Water Memory", - "GRASS_MEMORY": "Grass Memory", - "ELECTRIC_MEMORY": "Electric Memory", - "PSYCHIC_MEMORY": "Psychic Memory", - "ICE_MEMORY": "Ice Memory", - "DRAGON_MEMORY": "Dragon Memory", - "DARK_MEMORY": "Dark Memory", - "FAIRY_MEMORY": "Fairy Memory", - "BLANK_MEMORY": "Blank Memory", - }, -} as const; diff --git a/src/locales/ca_ES/modifier.json b/src/locales/ca_ES/modifier.json new file mode 100644 index 00000000000..9e26dfeeb6e --- /dev/null +++ b/src/locales/ca_ES/modifier.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/src/locales/ca_ES/move-trigger.json b/src/locales/ca_ES/move-trigger.json new file mode 100644 index 00000000000..9e26dfeeb6e --- /dev/null +++ b/src/locales/ca_ES/move-trigger.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/src/locales/ca_ES/move-trigger.ts b/src/locales/ca_ES/move-trigger.ts deleted file mode 100644 index 5f9c6c0cdc2..00000000000 --- a/src/locales/ca_ES/move-trigger.ts +++ /dev/null @@ -1,66 +0,0 @@ -import { SimpleTranslationEntries } from "#app/interfaces/locales"; - -export const moveTriggers: SimpleTranslationEntries = { - "hitWithRecoil" : "{{pokemonName}} was damaged by the recoil!", - "cutHpPowerUpMove": "{{pokemonName}} cut its own HP to power up its move!", - "absorbedElectricity": "{{pokemonName}} absorbed electricity!", - "switchedStatChanges": "{{pokemonName}} switched stat changes with the target!", - "goingAllOutForAttack": "{{pokemonName}} is going all out for this attack!", - "regainedHealth": "{{pokemonName}} regained\nhealth!", - "keptGoingAndCrashed": "{{pokemonName}} kept going\nand crashed!", - "fled": "{{pokemonName}} fled!", - "cannotBeSwitchedOut": "{{pokemonName}} can't be switched out!", - "swappedAbilitiesWithTarget": "{{pokemonName}} swapped\nabilities with its target!", - "coinsScatteredEverywhere": "Coins were scattered everywhere!", - "attackedByItem": "{{pokemonName}} is about to be attacked by its {{itemName}}!", - "whippedUpAWhirlwind": "{{pokemonName}} whipped\nup a whirlwind!", - "flewUpHigh": "{{pokemonName}} flew\nup high!", - "tookInSunlight": "{{pokemonName}} absorbed light!", - "dugAHole": "{{pokemonName}} burrowed its way under the ground!", - "loweredItsHead": "{{pokemonName}} tucked in its head!", - "isGlowing": "{{pokemonName}} became cloaked in a harsh light!", - "bellChimed": "A bell chimed!", - "foresawAnAttack": "{{pokemonName}} foresaw\nan attack!", - "isTighteningFocus": "{{pokemonName}} is\ntightening its focus!", - "hidUnderwater": "{{pokemonName}} hid\nunderwater!", - "soothingAromaWaftedThroughArea": "A soothing aroma wafted through the area!", - "sprangUp": "{{pokemonName}} sprang up!", - "choseDoomDesireAsDestiny": "{{pokemonName}} chose\nDoom Desire as its destiny!", - "vanishedInstantly": "{{pokemonName}} vanished\ninstantly!", - "tookTargetIntoSky": "{{pokemonName}} took {{targetName}}\ninto the sky!", - "becameCloakedInFreezingLight": "{{pokemonName}} became cloaked\nin a freezing light!", - "becameCloakedInFreezingAir": "{{pokemonName}} became cloaked\nin freezing air!", - "isChargingPower": "{{pokemonName}} is absorbing power!", - "burnedItselfOut": "{{pokemonName}} burned itself out!", - "startedHeatingUpBeak": "{{pokemonName}} started\nheating up its beak!", - "setUpShellTrap": "{{pokemonName}} set a shell trap!", - "isOverflowingWithSpacePower": "{{pokemonName}} is overflowing\nwith space power!", - "usedUpAllElectricity": "{{pokemonName}} used up all its electricity!", - "stoleItem": "{{pokemonName}} stole\n{{targetName}}'s {{itemName}}!", - "incineratedItem": "{{pokemonName}} incinerated\n{{targetName}}'s {{itemName}}!", - "knockedOffItem": "{{pokemonName}} knocked off\n{{targetName}}'s {{itemName}}!", - "tookMoveAttack": "{{pokemonName}} took\nthe {{moveName}} attack!", - "cutOwnHpAndMaximizedStat": "{{pokemonName}} cut its own HP\nand maximized its {{statName}}!", - "copiedStatChanges": "{{pokemonName}} copied\n{{targetName}}'s stat changes!", - "magnitudeMessage": "Magnitude {{magnitude}}!", - "tookAimAtTarget": "{{pokemonName}} took aim\nat {{targetName}}!", - "transformedIntoType": "{{pokemonName}} transformed\ninto the {{typeName}} type!", - "copiedMove": "{{pokemonName}} copied\n{{moveName}}!", - "sketchedMove": "{{pokemonName}} sketched\n{{moveName}}!", - "acquiredAbility": "The {{pokemonName}} acquired\n{{abilityName}}!", - "copiedTargetAbility": "{{pokemonName}} copied the {{targetName}}'s\n{{abilityName}}!", - "transformedIntoTarget": "{{pokemonName}} transformed\ninto {{targetName}}!", - "tryingToTakeFoeDown": "{{pokemonName}} is hoping to take its attacker down with it!", - "addType": "{{typeName}} was added to\n{{pokemonName}}!", - "cannotUseMove": "{{pokemonName}} cannot use {{moveName}}!", - "healHp": "{{pokemonName}} had its HP restored.", - "sacrificialFullRestore": "{{pokemonName}}'s Healing Wish\nwas granted!", - "invertStats": "{{pokemonName}}'s stat changes\nwere all reversed!", - "resetStats": "{{pokemonName}}'s stat changes\nwere eliminated!", - "statEliminated": "All stat changes were eliminated!", - "faintCountdown": "{{pokemonName}}\nwill faint in {{turnCount}} turns.", - "copyType": "{{pokemonName}}'s type became the same as\n{{targetPokemonName}}'s type!", - "suppressAbilities": "{{pokemonName}}'s ability\nwas suppressed!", - "swapArenaTags": "{{pokemonName}} swapped the battle effects affecting each side of the field!", - "exposedMove": "{{pokemonName}} identified\n{{targetPokemonName}}!", -} as const; diff --git a/src/locales/ca_ES/move.json b/src/locales/ca_ES/move.json new file mode 100644 index 00000000000..9e26dfeeb6e --- /dev/null +++ b/src/locales/ca_ES/move.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/src/locales/ca_ES/move.ts b/src/locales/ca_ES/move.ts deleted file mode 100644 index cec7c93ede5..00000000000 --- a/src/locales/ca_ES/move.ts +++ /dev/null @@ -1,3812 +0,0 @@ -import { MoveTranslationEntries } from "#app/interfaces/locales"; - -export const move: MoveTranslationEntries = { - "pound": { - name: "Pound", - effect: "The target is physically pounded with a long tail, a foreleg, or the like." - }, - "karateChop": { - name: "Karate Chop", - effect: "The target is attacked with a sharp chop. Critical hits land more easily." - }, - "doubleSlap": { - name: "Double Slap", - effect: "The target is slapped repeatedly, back and forth, two to five times in a row." - }, - "cometPunch": { - name: "Comet Punch", - effect: "The target is hit with a flurry of punches that strike two to five times in a row." - }, - "megaPunch": { - name: "Mega Punch", - effect: "The target is slugged by a punch thrown with muscle-packed power." - }, - "payDay": { - name: "Pay Day", - effect: "Numerous coins are hurled at the target to inflict damage. Money is earned after the battle." - }, - "firePunch": { - name: "Fire Punch", - effect: "The target is punched with a fiery fist. This may also leave the target with a burn." - }, - "icePunch": { - name: "Ice Punch", - effect: "The target is punched with an icy fist. This may also leave the target frozen." - }, - "thunderPunch": { - name: "Thunder Punch", - effect: "The target is punched with an electrified fist. This may also leave the target with paralysis." - }, - "scratch": { - name: "Scratch", - effect: "Hard, pointed, sharp claws rake the target to inflict damage." - }, - "viseGrip": { - name: "Vise Grip", - effect: "The target is gripped and squeezed from both sides to inflict damage." - }, - "guillotine": { - name: "Guillotine", - effect: "A vicious, tearing attack with big pincers. The target faints instantly if this attack hits." - }, - "razorWind": { - name: "Razor Wind", - effect: "In this two-turn attack, blades of wind hit opposing Pokémon on the second turn. Critical hits land more easily." - }, - "swordsDance": { - name: "Swords Dance", - effect: "A frenetic dance to uplift the fighting spirit. This sharply raises the user's Attack stat." - }, - "cut": { - name: "Cut", - effect: "The target is cut with a scythe or claw." - }, - "gust": { - name: "Gust", - effect: "A gust of wind is whipped up by wings and launched at the target to inflict damage." - }, - "wingAttack": { - name: "Wing Attack", - effect: "The target is struck with large, imposing wings spread wide to inflict damage." - }, - "whirlwind": { - name: "Whirlwind", - effect: "The target is blown away, and a different Pokémon is dragged out. In the wild, this ends a battle against a single Pokémon." - }, - "fly": { - name: "Fly", - effect: "The user flies up into the sky and then strikes its target on the next turn." - }, - "bind": { - name: "Bind", - effect: "Things such as long bodies or tentacles are used to bind and squeeze the target for four to five turns." - }, - "slam": { - name: "Slam", - effect: "The target is slammed with a long tail, vines, or the like to inflict damage." - }, - "vineWhip": { - name: "Vine Whip", - effect: "The target is struck with slender, whiplike vines to inflict damage." - }, - "stomp": { - name: "Stomp", - effect: "The target is stomped with a big foot. This may also make the target flinch." - }, - "doubleKick": { - name: "Double Kick", - effect: "The target is quickly kicked twice in succession using both feet." - }, - "megaKick": { - name: "Mega Kick", - effect: "The target is attacked by a kick launched with muscle-packed power." - }, - "jumpKick": { - name: "Jump Kick", - effect: "The user jumps up high, then strikes with a kick. If the kick misses, the user hurts itself." - }, - "rollingKick": { - name: "Rolling Kick", - effect: "The user lashes out with a quick, spinning kick. This may also make the target flinch." - }, - "sandAttack": { - name: "Sand Attack", - effect: "Sand is hurled in the target's face, reducing the target's accuracy." - }, - "headbutt": { - name: "Headbutt", - effect: "The user sticks out its head and attacks by charging straight into the target. This may also make the target flinch." - }, - "hornAttack": { - name: "Horn Attack", - effect: "The target is jabbed with a sharply pointed horn to inflict damage." - }, - "furyAttack": { - name: "Fury Attack", - effect: "The target is jabbed repeatedly with a horn or beak two to five times in a row." - }, - "hornDrill": { - name: "Horn Drill", - effect: "The user stabs the target with a horn that rotates like a drill. The target faints instantly if this attack hits." - }, - "tackle": { - name: "Tackle", - effect: "A physical attack in which the user charges and slams into the target with its whole body." - }, - "bodySlam": { - name: "Body Slam", - effect: "The user drops onto the target with its full body weight. This may also leave the target with paralysis." - }, - "wrap": { - name: "Wrap", - effect: "A long body, vines, or the like are used to wrap and squeeze the target for four to five turns." - }, - "takeDown": { - name: "Take Down", - effect: "A reckless, full-body charge attack for slamming into the target. This also damages the user a little." - }, - "thrash": { - name: "Thrash", - effect: "The user rampages and attacks for two to three turns. The user then becomes confused." - }, - "doubleEdge": { - name: "Double-Edge", - effect: "A reckless, life-risking tackle in which the user rushes the target. This also damages the user quite a lot." - }, - "tailWhip": { - name: "Tail Whip", - effect: "The user wags its tail cutely, making opposing Pokémon less wary and lowering their Defense stats." - }, - "poisonSting": { - name: "Poison Sting", - effect: "The user stabs the target with a poisonous stinger. This may also poison the target." - }, - "twineedle": { - name: "Twineedle", - effect: "The user damages the target twice in succession by jabbing it with two spikes. This may also poison the target." - }, - "pinMissile": { - name: "Pin Missile", - effect: "Sharp spikes are shot at the target in rapid succession. They hit two to five times in a row." - }, - "leer": { - name: "Leer", - effect: "The user gives opposing Pokémon an intimidating leer that lowers the Defense stat." - }, - "bite": { - name: "Bite", - effect: "The target is bitten with viciously sharp fangs. This may also make the target flinch." - }, - "growl": { - name: "Growl", - effect: "The user growls in an endearing way, making opposing Pokémon less wary. This lowers their Attack stats." - }, - "roar": { - name: "Roar", - effect: "The target is scared off, and a different Pokémon is dragged out. In the wild, this ends a battle against a single Pokémon." - }, - "sing": { - name: "Sing", - effect: "A soothing lullaby is sung in a calming voice that puts the target into a deep slumber." - }, - "supersonic": { - name: "Supersonic", - effect: "The user generates odd sound waves from its body that confuse the target." - }, - "sonicBoom": { - name: "Sonic Boom", - effect: "The target is hit with a destructive shock wave that always inflicts 20 HP damage." - }, - "disable": { - name: "Disable", - effect: "For four turns, this move prevents the target from using the move it last used." - }, - "acid": { - name: "Acid", - effect: "Opposing Pokémon are attacked with a spray of harsh acid. This may also lower their Sp. Def stats." - }, - "ember": { - name: "Ember", - effect: "The target is attacked with small flames. This may also leave the target with a burn." - }, - "flamethrower": { - name: "Flamethrower", - effect: "The target is scorched with an intense blast of fire. This may also leave the target with a burn." - }, - "mist": { - name: "Mist", - effect: "The user cloaks itself and its allies in a white mist that prevents any of their stats from being lowered for five turns." - }, - "waterGun": { - name: "Water Gun", - effect: "The target is blasted with a forceful shot of water." - }, - "hydroPump": { - name: "Hydro Pump", - effect: "The target is blasted by a huge volume of water launched under great pressure." - }, - "surf": { - name: "Surf", - effect: "The user attacks everything around it by swamping its surroundings with a giant wave." - }, - "iceBeam": { - name: "Ice Beam", - effect: "The target is struck with an icy-cold beam of energy. This may also leave the target frozen." - }, - "blizzard": { - name: "Blizzard", - effect: "A howling blizzard is summoned to strike opposing Pokémon. This may also leave the opposing Pokémon frozen." - }, - "psybeam": { - name: "Psybeam", - effect: "The target is attacked with a peculiar ray. This may also leave the target confused." - }, - "bubbleBeam": { - name: "Bubble Beam", - effect: "A spray of bubbles is forcefully ejected at the target. This may also lower the target's Speed stat." - }, - "auroraBeam": { - name: "Aurora Beam", - effect: "The target is hit with a rainbow-colored beam. This may also lower the target's Attack stat." - }, - "hyperBeam": { - name: "Hyper Beam", - effect: "The target is attacked with a powerful beam. The user can't move on the next turn." - }, - "peck": { - name: "Peck", - effect: "The target is jabbed with a sharply pointed beak or horn." - }, - "drillPeck": { - name: "Drill Peck", - effect: "A corkscrewing attack that strikes the target with a sharp beak acting as a drill." - }, - "submission": { - name: "Submission", - effect: "The user grabs the target and recklessly dives for the ground. This also damages the user a little." - }, - "lowKick": { - name: "Low Kick", - effect: "A powerful low kick that makes the target fall over. The heavier the target, the greater the move's power." - }, - "counter": { - name: "Counter", - effect: "A retaliation move that counters any physical attack, inflicting double the damage taken." - }, - "seismicToss": { - name: "Seismic Toss", - effect: "The target is thrown using the power of gravity. It inflicts damage equal to the user's level." - }, - "strength": { - name: "Strength", - effect: "The target is slugged with a punch thrown at maximum power." - }, - "absorb": { - name: "Absorb", - effect: "A nutrient-draining attack. The user's HP is restored by half the damage taken by the target." - }, - "megaDrain": { - name: "Mega Drain", - effect: "A nutrient-draining attack. The user's HP is restored by half the damage taken by the target." - }, - "leechSeed": { - name: "Leech Seed", - effect: "A seed is planted on the target. It steals some HP from the target every turn." - }, - "growth": { - name: "Growth", - effect: "The user's body grows all at once, raising the Attack and Sp. Atk stats." - }, - "razorLeaf": { - name: "Razor Leaf", - effect: "Sharp-edged leaves are launched to slash at opposing Pokémon. Critical hits land more easily." - }, - "solarBeam": { - name: "Solar Beam", - effect: "In this two-turn attack, the user gathers light, then blasts a bundled beam on the next turn." - }, - "poisonPowder": { - name: "Poison Powder", - effect: "The user scatters a cloud of poisonous dust that poisons the target." - }, - "stunSpore": { - name: "Stun Spore", - effect: "The user scatters a cloud of numbing powder that paralyzes the target." - }, - "sleepPowder": { - name: "Sleep Powder", - effect: "The user scatters a big cloud of sleep-inducing dust around the target." - }, - "petalDance": { - name: "Petal Dance", - effect: "The user attacks the target by scattering petals for two to three turns. The user then becomes confused." - }, - "stringShot": { - name: "String Shot", - effect: "Opposing Pokémon are bound with silk blown from the user's mouth that harshly lowers the Speed stat." - }, - "dragonRage": { - name: "Dragon Rage", - effect: "This attack hits the target with a shock wave of pure rage. This attack always inflicts 40 HP damage." - }, - "fireSpin": { - name: "Fire Spin", - effect: "The target becomes trapped within a fierce vortex of fire that rages for four to five turns." - }, - "thunderShock": { - name: "Thunder Shock", - effect: "A jolt of electricity crashes down on the target to inflict damage. This may also leave the target with paralysis." - }, - "thunderbolt": { - name: "Thunderbolt", - effect: "A strong electric blast crashes down on the target. This may also leave the target with paralysis." - }, - "thunderWave": { - name: "Thunder Wave", - effect: "The user launches a weak jolt of electricity that paralyzes the target." - }, - "thunder": { - name: "Thunder", - effect: "A wicked thunderbolt is dropped on the target to inflict damage. This may also leave the target with paralysis." - }, - "rockThrow": { - name: "Rock Throw", - effect: "The user picks up and throws a small rock at the target to attack." - }, - "earthquake": { - name: "Earthquake", - effect: "The user sets off an earthquake that strikes every Pokémon around it." - }, - "fissure": { - name: "Fissure", - effect: "The user opens up a fissure in the ground and drops the target in. The target faints instantly if this attack hits." - }, - "dig": { - name: "Dig", - effect: "The user burrows into the ground, then attacks on the next turn." - }, - "toxic": { - name: "Toxic", - effect: "A move that leaves the target badly poisoned. Its poison damage worsens every turn." - }, - "confusion": { - name: "Confusion", - effect: "The target is hit by a weak telekinetic force. This may also confuse the target." - }, - "psychic": { - name: "Psychic", - effect: "The target is hit by a strong telekinetic force. This may also lower the target's Sp. Def stat." - }, - "hypnosis": { - name: "Hypnosis", - effect: "The user employs hypnotic suggestion to make the target fall into a deep sleep." - }, - "meditate": { - name: "Meditate", - effect: "The user meditates to awaken the power deep within its body and raise its Attack stat." - }, - "agility": { - name: "Agility", - effect: "The user relaxes and lightens its body to move faster. This sharply raises the Speed stat." - }, - "quickAttack": { - name: "Quick Attack", - effect: "The user lunges at the target at a speed that makes it almost invisible. This move always goes first." - }, - "rage": { - name: "Rage", - effect: "As long as this move is in use, the power of rage raises the Attack stat each time the user is hit in battle." - }, - "teleport": { - name: "Teleport", - effect: "The user switches places with a party Pokémon in waiting, if any. If a wild Pokémon uses this move, it flees." - }, - "nightShade": { - name: "Night Shade", - effect: "The user makes the target see a frightening mirage. It inflicts damage equal to the user's level." - }, - "mimic": { - name: "Mimic", - effect: "The user copies the target's last move. The move can be used during battle until the Pokémon is switched out." - }, - "screech": { - name: "Screech", - effect: "An earsplitting screech harshly lowers the target's Defense stat." - }, - "doubleTeam": { - name: "Double Team", - effect: "By moving rapidly, the user makes illusory copies of itself to raise its evasiveness." - }, - "recover": { - name: "Recover", - effect: "Restoring its own cells, the user restores its own HP by half of its max HP." - }, - "harden": { - name: "Harden", - effect: "The user stiffens all the muscles in its body to raise its Defense stat." - }, - "minimize": { - name: "Minimize", - effect: "The user compresses its body to make itself look smaller, which sharply raises its evasiveness." - }, - "smokescreen": { - name: "Smokescreen", - effect: "The user releases an obscuring cloud of smoke or ink. This lowers the target's accuracy." - }, - "confuseRay": { - name: "Confuse Ray", - effect: "The target is exposed to a sinister ray that triggers confusion." - }, - "withdraw": { - name: "Withdraw", - effect: "The user withdraws its body into its hard shell, raising its Defense stat." - }, - "defenseCurl": { - name: "Defense Curl", - effect: "The user curls up to conceal weak spots and raise its Defense stat." - }, - "barrier": { - name: "Barrier", - effect: "The user throws up a sturdy wall that sharply raises its Defense stat." - }, - "lightScreen": { - name: "Light Screen", - effect: "A wondrous wall of light is put up to reduce damage from special attacks for five turns." - }, - "haze": { - name: "Haze", - effect: "The user creates a haze that eliminates every stat change among all the Pokémon engaged in battle." - }, - "reflect": { - name: "Reflect", - effect: "A wondrous wall of light is put up to reduce damage from physical attacks for five turns." - }, - "focusEnergy": { - name: "Focus Energy", - effect: "The user takes a deep breath and focuses so that critical hits land more easily." - }, - "bide": { - name: "Bide", - effect: "The user endures attacks for two turns, then strikes back to cause double the damage taken." - }, - "metronome": { - name: "Metronome", - effect: "The user waggles a finger and stimulates its brain into randomly using nearly any move." - }, - "mirrorMove": { - name: "Mirror Move", - effect: "The user counters the target by mimicking the target's last move." - }, - "selfDestruct": { - name: "Self-Destruct", - effect: "The user attacks everything around it by causing an explosion. The user faints upon using this move." - }, - "eggBomb": { - name: "Egg Bomb", - effect: "A large egg is hurled at the target with maximum force to inflict damage." - }, - "lick": { - name: "Lick", - effect: "The target is licked with a long tongue, causing damage. This may also leave the target with paralysis." - }, - "smog": { - name: "Smog", - effect: "The target is attacked with a discharge of filthy gases. This may also poison the target." - }, - "sludge": { - name: "Sludge", - effect: "Unsanitary sludge is hurled at the target. This may also poison the target." - }, - "boneClub": { - name: "Bone Club", - effect: "The user clubs the target with a bone. This may also make the target flinch." - }, - "fireBlast": { - name: "Fire Blast", - effect: "The target is attacked with an intense blast of all-consuming fire. This may also leave the target with a burn." - }, - "waterfall": { - name: "Waterfall", - effect: "The user charges at the target and may make it flinch." - }, - "clamp": { - name: "Clamp", - effect: "The target is clamped and squeezed by the user's very thick and sturdy shell for four to five turns." - }, - "swift": { - name: "Swift", - effect: "Star-shaped rays are shot at opposing Pokémon. This attack never misses." - }, - "skullBash": { - name: "Skull Bash", - effect: "The user tucks in its head to raise its Defense stat on the first turn, then rams the target on the next turn." - }, - "spikeCannon": { - name: "Spike Cannon", - effect: "Sharp spikes are shot at the target in rapid succession. They hit two to five times in a row." - }, - "constrict": { - name: "Constrict", - effect: "The target is attacked with long, creeping tentacles, vines, or the like. This may also lower the target's Speed stat." - }, - "amnesia": { - name: "Amnesia", - effect: "The user temporarily empties its mind to forget its concerns. This sharply raises the user's Sp. Def stat." - }, - "kinesis": { - name: "Kinesis", - effect: "The user distracts the target by bending a spoon. This lowers the target's accuracy." - }, - "softBoiled": { - name: "Soft-Boiled", - effect: "The user restores its own HP by up to half of its max HP." - }, - "highJumpKick": { - name: "High Jump Kick", - effect: "The target is attacked with a knee kick from a jump. If it misses, the user is hurt instead." - }, - "glare": { - name: "Glare", - effect: "The user intimidates the target with the pattern on its belly to cause paralysis." - }, - "dreamEater": { - name: "Dream Eater", - effect: "The user eats the dreams of a sleeping target. The user's HP is restored by half the damage taken by the target." - }, - "poisonGas": { - name: "Poison Gas", - effect: "A cloud of poison gas is sprayed in the face of opposing Pokémon, poisoning those it hits." - }, - "barrage": { - name: "Barrage", - effect: "Round objects are hurled at the target to strike two to five times in a row." - }, - "leechLife": { - name: "Leech Life", - effect: "The user drains the target's blood. The user's HP is restored by half the damage taken by the target." - }, - "lovelyKiss": { - name: "Lovely Kiss", - effect: "With a scary face, the user tries to force a kiss on the target. If it succeeds, the target falls asleep." - }, - "skyAttack": { - name: "Sky Attack", - effect: "A second-turn attack move where critical hits land more easily. This may also make the target flinch." - }, - "transform": { - name: "Transform", - effect: "The user transforms into a copy of the target right down to having the same move set." - }, - "bubble": { - name: "Bubble", - effect: "A spray of countless bubbles is jetted at the opposing Pokémon. This may also lower their Speed stat." - }, - "dizzyPunch": { - name: "Dizzy Punch", - effect: "The target is hit with rhythmically launched punches. This may also leave the target confused." - }, - "spore": { - name: "Spore", - effect: "The user scatters bursts of spores that induce sleep." - }, - "flash": { - name: "Flash", - effect: "The user flashes a bright light that cuts the target's accuracy." - }, - "psywave": { - name: "Psywave", - effect: "The target is attacked with an odd psychic wave. The attack varies in intensity." - }, - "splash": { - name: "Splash", - effect: "The user just flops and splashes around to no effect at all..." - }, - "acidArmor": { - name: "Acid Armor", - effect: "The user alters its cellular structure to liquefy itself, sharply raising its Defense stat." - }, - "crabhammer": { - name: "Crabhammer", - effect: "The target is hammered with a large pincer. Critical hits land more easily." - }, - "explosion": { - name: "Explosion", - effect: "The user attacks everything around it by causing a tremendous explosion. The user faints upon using this move." - }, - "furySwipes": { - name: "Fury Swipes", - effect: "The target is raked with sharp claws or scythes quickly two to five times in a row." - }, - "bonemerang": { - name: "Bonemerang", - effect: "The user throws the bone it holds. The bone loops around to hit the target twice—coming and going." - }, - "rest": { - name: "Rest", - effect: "The user goes to sleep for two turns. This fully restores the user's HP and heals any status conditions." - }, - "rockSlide": { - name: "Rock Slide", - effect: "Large boulders are hurled at opposing Pokémon to inflict damage. This may also make the opposing Pokémon flinch." - }, - "hyperFang": { - name: "Hyper Fang", - effect: "The user bites hard on the target with its sharp front fangs. This may also make the target flinch." - }, - "sharpen": { - name: "Sharpen", - effect: "The user makes its edges more jagged, which raises its Attack stat." - }, - "conversion": { - name: "Conversion", - effect: "The user changes its type to become the same type as the move at the top of the list of moves it knows." - }, - "triAttack": { - name: "Tri Attack", - effect: "The user strikes with a simultaneous three-beam attack. This may also burn, freeze, or paralyze the target." - }, - "superFang": { - name: "Super Fang", - effect: "The user chomps hard on the target with its sharp front fangs. This cuts the target's HP in half." - }, - "slash": { - name: "Slash", - effect: "The target is attacked with a slash of claws or blades. Critical hits land more easily." - }, - "substitute": { - name: "Substitute", - effect: "The user creates a substitute for itself using some of its HP. The substitute serves as the user's decoy." - }, - "struggle": { - name: "Struggle", - effect: "This attack is used in desperation only if the user has no PP. It also damages the user a little." - }, - "sketch": { - name: "Sketch", - effect: "It enables the user to permanently learn the move last used by the target. Once used, Sketch disappears." - }, - "tripleKick": { - name: "Triple Kick", - effect: "A consecutive three-kick attack that becomes more powerful with each successful hit." - }, - "thief": { - name: "Thief", - effect: "The user attacks and has a 30% chance to steal the target's held item simultaneously." - }, - "spiderWeb": { - name: "Spider Web", - effect: "The user ensnares the target with thin, gooey silk so it can't flee from battle." - }, - "mindReader": { - name: "Mind Reader", - effect: "The user senses the target's movements with its mind to ensure its next attack does not miss the target." - }, - "nightmare": { - name: "Nightmare", - effect: "A sleeping target sees a nightmare that inflicts some damage every turn." - }, - "flameWheel": { - name: "Flame Wheel", - effect: "The user cloaks itself in fire and charges at the target. This may also leave the target with a burn." - }, - "snore": { - name: "Snore", - effect: "This attack can be used only if the user is asleep. The harsh noise may also make the target flinch." - }, - "curse": { - name: "Curse", - effect: "A move that works differently for the Ghost type than for all other types." - }, - "flail": { - name: "Flail", - effect: "The user flails about aimlessly to attack. The less HP the user has, the greater the move's power." - }, - "conversion2": { - name: "Conversion 2", - effect: "The user changes its type to make itself resistant to the type of the attack the target used last." - }, - "aeroblast": { - name: "Aeroblast", - effect: "A vortex of air is shot at the target to inflict damage. Critical hits land more easily." - }, - "cottonSpore": { - name: "Cotton Spore", - effect: "The user releases cotton-like spores that cling to opposing Pokémon, which harshly lowers their Speed stats." - }, - "reversal": { - name: "Reversal", - effect: "An all-out attack that becomes more powerful the less HP the user has." - }, - "spite": { - name: "Spite", - effect: "The user unleashes its grudge on the move last used by the target by cutting 4 PP from it." - }, - "powderSnow": { - name: "Powder Snow", - effect: "The user attacks with a chilling gust of powdery snow. This may also freeze opposing Pokémon." - }, - "protect": { - name: "Protect", - effect: "This move enables the user to protect itself from all attacks. Its chance of failing rises if it is used in succession." - }, - "machPunch": { - name: "Mach Punch", - effect: "The user throws a punch at blinding speed. This move always goes first." - }, - "scaryFace": { - name: "Scary Face", - effect: "The user frightens the target with a scary face to harshly lower its Speed stat." - }, - "feintAttack": { - name: "Feint Attack", - effect: "The user approaches the target disarmingly, then throws a sucker punch. This attack never misses." - }, - "sweetKiss": { - name: "Sweet Kiss", - effect: "The user kisses the target with a sweet, angelic cuteness that causes confusion." - }, - "bellyDrum": { - name: "Belly Drum", - effect: "The user maximizes its Attack stat in exchange for HP equal to half its max HP." - }, - "sludgeBomb": { - name: "Sludge Bomb", - effect: "Unsanitary sludge is hurled at the target. This may also poison the target." - }, - "mudSlap": { - name: "Mud-Slap", - effect: "The user hurls mud in the target's face to inflict damage and lower its accuracy." - }, - "octazooka": { - name: "Octazooka", - effect: "The user attacks by spraying ink in the target's face or eyes. This may also lower the target's accuracy." - }, - "spikes": { - name: "Spikes", - effect: "The user lays a trap of spikes at the opposing team's feet. The trap hurts Pokémon that switch into battle." - }, - "zapCannon": { - name: "Zap Cannon", - effect: "The user fires an electric blast like a cannon to inflict damage and cause paralysis." - }, - "foresight": { - name: "Foresight", - effect: "Enables a Ghost-type target to be hit by Normal- and Fighting-type attacks. This also enables an evasive target to be hit." - }, - "destinyBond": { - name: "Destiny Bond", - effect: "After using this move, if the user faints, the Pokémon that landed the knockout hit also faints. Its chance of failing rises if it is used in succession." - }, - "perishSong": { - name: "Perish Song", - effect: "Any Pokémon that hears this song faints in three turns, unless it switches out of battle." - }, - "icyWind": { - name: "Icy Wind", - effect: "The user attacks with a gust of chilled air. This also lowers opposing Pokémon's Speed stats." - }, - "detect": { - name: "Detect", - effect: "This move enables the user to protect itself from all attacks. Its chance of failing rises if it is used in succession." - }, - "boneRush": { - name: "Bone Rush", - effect: "The user strikes the target with a hard bone two to five times in a row." - }, - "lockOn": { - name: "Lock-On", - effect: "The user takes sure aim at the target. This ensures the next attack does not miss the target." - }, - "outrage": { - name: "Outrage", - effect: "The user rampages and attacks for two to three turns. The user then becomes confused." - }, - "sandstorm": { - name: "Sandstorm", - effect: "A five-turn sandstorm is summoned to hurt all combatants except Rock, Ground, and Steel types. It raises the Sp. Def stat of Rock types." - }, - "gigaDrain": { - name: "Giga Drain", - effect: "A nutrient-draining attack. The user's HP is restored by half the damage taken by the target." - }, - "endure": { - name: "Endure", - effect: "The user endures any attack with at least 1 HP. Its chance of failing rises if it is used in succession." - }, - "charm": { - name: "Charm", - effect: "The user gazes at the target rather charmingly, making it less wary. This harshly lowers the target's Attack stat." - }, - "rollout": { - name: "Rollout", - effect: "The user continually rolls into the target over five turns. It becomes more powerful each time it hits." - }, - "falseSwipe": { - name: "False Swipe", - effect: "A restrained attack that prevents the target from fainting. The target is left with at least 1 HP." - }, - "swagger": { - name: "Swagger", - effect: "The user enrages and confuses the target. However, this also sharply raises the target's Attack stat." - }, - "milkDrink": { - name: "Milk Drink", - effect: "The user restores its own HP by up to half of its max HP." - }, - "spark": { - name: "Spark", - effect: "The user throws an electrically charged tackle at the target. This may also leave the target with paralysis." - }, - "furyCutter": { - name: "Fury Cutter", - effect: "The target is slashed with scythes or claws. This attack becomes more powerful if it hits in succession." - }, - "steelWing": { - name: "Steel Wing", - effect: "The target is hit with wings of steel. This may also raise the user's Defense stat." - }, - "meanLook": { - name: "Mean Look", - effect: "The user pins the target with a dark, arresting look. The target becomes unable to flee." - }, - "attract": { - name: "Attract", - effect: "If it is the opposite gender of the user, the target becomes infatuated and less likely to attack." - }, - "sleepTalk": { - name: "Sleep Talk", - effect: "While it is asleep, the user randomly uses one of the moves it knows." - }, - "healBell": { - name: "Heal Bell", - effect: "The user makes a soothing bell chime to heal the status conditions of all the party Pokémon." - }, - "return": { - name: "Return", - effect: "This full-power attack grows more powerful the more the user likes its Trainer." - }, - "present": { - name: "Present", - effect: "The user attacks by giving the target a gift with a hidden trap. It restores HP sometimes, however." - }, - "frustration": { - name: "Frustration", - effect: "This full-power attack grows more powerful the less the user likes its Trainer." - }, - "safeguard": { - name: "Safeguard", - effect: "The user creates a protective field that prevents status conditions for five turns." - }, - "painSplit": { - name: "Pain Split", - effect: "The user adds its HP to the target's HP, then equally shares the combined HP with the target." - }, - "sacredFire": { - name: "Sacred Fire", - effect: "The target is razed with a mystical fire of great intensity. This may also leave the target with a burn." - }, - "magnitude": { - name: "Magnitude", - effect: "The user attacks everything around it with a ground-shaking quake. Its power varies." - }, - "dynamicPunch": { - name: "Dynamic Punch", - effect: "The user punches the target with full, concentrated power. This confuses the target if it hits." - }, - "megahorn": { - name: "Megahorn", - effect: "Using its tough and impressive horn, the user rams into the target with no letup." - }, - "dragonBreath": { - name: "Dragon Breath", - effect: "The user exhales a mighty gust that inflicts damage. This may also leave the target with paralysis." - }, - "batonPass": { - name: "Baton Pass", - effect: "The user switches places with a party Pokémon in waiting and passes along any stat changes." - }, - "encore": { - name: "Encore", - effect: "The user compels the target to keep using the move it encored for three turns." - }, - "pursuit": { - name: "Pursuit", - effect: "The power of this attack move is doubled if it's used on a target that's switching out of battle." - }, - "rapidSpin": { - name: "Rapid Spin", - effect: "A spin attack that can also eliminate such moves as Bind, Wrap, and Leech Seed. This also raises the user's Speed stat." - }, - "sweetScent": { - name: "Sweet Scent", - effect: "A sweet scent that harshly lowers opposing Pokémon's evasiveness." - }, - "ironTail": { - name: "Iron Tail", - effect: "The target is slammed with a steel-hard tail. This may also lower the target's Defense stat." - }, - "metalClaw": { - name: "Metal Claw", - effect: "The target is raked with steel claws. This may also raise the user's Attack stat." - }, - "vitalThrow": { - name: "Vital Throw", - effect: "The user attacks last. In return, this throw move never misses." - }, - "morningSun": { - name: "Morning Sun", - effect: "The user restores its own HP. The amount of HP regained varies with the weather." - }, - "synthesis": { - name: "Synthesis", - effect: "The user restores its own HP. The amount of HP regained varies with the weather." - }, - "moonlight": { - name: "Moonlight", - effect: "The user restores its own HP. The amount of HP regained varies with the weather." - }, - "hiddenPower": { - name: "Hidden Power", - effect: "A unique attack that varies in type depending on the Pokémon using it." - }, - "crossChop": { - name: "Cross Chop", - effect: "The user delivers a double chop with its forearms crossed. Critical hits land more easily." - }, - "twister": { - name: "Twister", - effect: "The user whips up a vicious tornado to tear at opposing Pokémon. This may also make them flinch." - }, - "rainDance": { - name: "Rain Dance", - effect: "The user summons a heavy rain that falls for five turns, powering up Water-type moves. It lowers the power of Fire-type moves." - }, - "sunnyDay": { - name: "Sunny Day", - effect: "The user intensifies the sun for five turns, powering up Fire-type moves. It lowers the power of Water-type moves." - }, - "crunch": { - name: "Crunch", - effect: "The user crunches up the target with sharp fangs. This may also lower the target's Defense stat." - }, - "mirrorCoat": { - name: "Mirror Coat", - effect: "A retaliation move that counters any special attack, inflicting double the damage taken." - }, - "psychUp": { - name: "Psych Up", - effect: "The user hypnotizes itself into copying any stat change made by the target." - }, - "extremeSpeed": { - name: "Extreme Speed", - effect: "The user charges the target at blinding speed. This move always goes first." - }, - "ancientPower": { - name: "Ancient Power", - effect: "The user attacks with a prehistoric power. This may also raise all the user's stats at once." - }, - "shadowBall": { - name: "Shadow Ball", - effect: "The user hurls a shadowy blob at the target. This may also lower the target's Sp. Def stat." - }, - "futureSight": { - name: "Future Sight", - effect: "Two turns after this move is used, a hunk of psychic energy attacks the target." - }, - "rockSmash": { - name: "Rock Smash", - effect: "The user attacks with a punch. This may also lower the target's Defense stat." - }, - "whirlpool": { - name: "Whirlpool", - effect: "The user traps the target in a violent swirling whirlpool for four to five turns." - }, - "beatUp": { - name: "Beat Up", - effect: "The user gets all party Pokémon to attack the target. The more party Pokémon, the greater the number of attacks." - }, - "fakeOut": { - name: "Fake Out", - effect: "This attack hits first and makes the target flinch. It only works the first turn each time the user enters battle." - }, - "uproar": { - name: "Uproar", - effect: "The user attacks in an uproar for three turns. During that time, no Pokémon can fall asleep." - }, - "stockpile": { - name: "Stockpile", - effect: "The user charges up power and raises both its Defense and Sp. Def stats. The move can be used three times." - }, - "spitUp": { - name: "Spit Up", - effect: "The power stored using the move Stockpile is released at once in an attack. The more power is stored, the greater the move's power." - }, - "swallow": { - name: "Swallow", - effect: "The power stored using the move Stockpile is absorbed by the user to heal its HP. Storing more power heals more HP." - }, - "heatWave": { - name: "Heat Wave", - effect: "The user attacks by exhaling hot breath on opposing Pokémon. This may also leave those Pokémon with a burn." - }, - "hail": { - name: "Hail", - effect: "The user summons a hailstorm lasting five turns. It damages all Pokémon except Ice types." - }, - "torment": { - name: "Torment", - effect: "The user torments and enrages the target, making it incapable of using the same move twice in a row." - }, - "flatter": { - name: "Flatter", - effect: "Flattery is used to confuse the target. However, this also raises the target's Sp. Atk stat." - }, - "willOWisp": { - name: "Will-O-Wisp", - effect: "The user shoots a sinister flame at the target to inflict a burn." - }, - "memento": { - name: "Memento", - effect: "The user faints when using this move. In return, this harshly lowers the target's Attack and Sp. Atk stats." - }, - "facade": { - name: "Facade", - effect: "This attack move doubles its power if the user is poisoned, burned, or paralyzed." - }, - "focusPunch": { - name: "Focus Punch", - effect: "The user focuses its mind before launching a punch. This move fails if the user is hit before it is used." - }, - "smellingSalts": { - name: "Smelling Salts", - effect: "This attack's power is doubled when used on a target with paralysis. This also cures the target's paralysis, however." - }, - "followMe": { - name: "Follow Me", - effect: "The user draws attention to itself, making all targets take aim only at the user." - }, - "naturePower": { - name: "Nature Power", - effect: "This attack makes use of nature's power. Its effects vary depending on the user's environment." - }, - "charge": { - name: "Charge", - effect: "The user boosts the power of the Electric move it uses on the next turn. This also raises the user's Sp. Def stat." - }, - "taunt": { - name: "Taunt", - effect: "The target is taunted into a rage that allows it to use only attack moves for three turns." - }, - "helpingHand": { - name: "Helping Hand", - effect: "The user assists an ally by boosting the power of that ally's attack." - }, - "trick": { - name: "Trick", - effect: "The user catches the target off guard and swaps its held item with its own." - }, - "rolePlay": { - name: "Role Play", - effect: "The user mimics the target completely, copying the target's Ability." - }, - "wish": { - name: "Wish", - effect: "One turn after this move is used, the user's or its replacement's HP is restored by half the user's max HP." - }, - "assist": { - name: "Assist", - effect: "The user hurriedly and randomly uses a move among those known by ally Pokémon." - }, - "ingrain": { - name: "Ingrain", - effect: "The user lays roots that restore its HP on every turn. Because it's rooted, it can't switch out." - }, - "superpower": { - name: "Superpower", - effect: "The user attacks the target with great power. However, this also lowers the user's Attack and Defense stats." - }, - "magicCoat": { - name: "Magic Coat", - effect: "Moves like Leech Seed and moves that inflict status conditions are blocked by a barrier and reflected back to the user of those moves." - }, - "recycle": { - name: "Recycle", - effect: "The user recycles a held item that has been used in battle so it can be used again." - }, - "revenge": { - name: "Revenge", - effect: "This attack move's power is doubled if the user has been hurt by the opponent in the same turn." - }, - "brickBreak": { - name: "Brick Break", - effect: "The user attacks with a swift chop. It can also break barriers, such as Light Screen and Reflect." - }, - "yawn": { - name: "Yawn", - effect: "The user lets loose a huge yawn that lulls the target into falling asleep on the next turn." - }, - "knockOff": { - name: "Knock Off", - effect: "The user slaps down the target's held item, and that item can't be used in that battle. The move does more damage if the target has a held item." - }, - "endeavor": { - name: "Endeavor", - effect: "This attack move cuts down the target's HP to equal the user's HP." - }, - "eruption": { - name: "Eruption", - effect: "The user attacks opposing Pokémon with explosive fury. The lower the user's HP, the lower the move's power." - }, - "skillSwap": { - name: "Skill Swap", - effect: "The user employs its psychic power to exchange Abilities with the target." - }, - "imprison": { - name: "Imprison", - effect: "If opposing Pokémon know any move also known by the user, they are prevented from using it." - }, - "refresh": { - name: "Refresh", - effect: "The user rests to cure itself of poisoning, a burn, or paralysis." - }, - "grudge": { - name: "Grudge", - effect: "If the user faints, the user's grudge fully depletes the PP of the opponent's move that knocked it out." - }, - "snatch": { - name: "Snatch", - effect: "The user steals the effects of any attempts to use a healing or stat-changing move." - }, - "secretPower": { - name: "Secret Power", - effect: "The additional effects of this attack depend upon where it was used." - }, - "dive": { - name: "Dive", - effect: "Diving on the first turn, the user floats up and attacks on the next turn." - }, - "armThrust": { - name: "Arm Thrust", - effect: "The user lets loose a flurry of open-palmed arm thrusts that hit two to five times in a row." - }, - "camouflage": { - name: "Camouflage", - effect: "The user's type is changed depending on its environment, such as at water's edge, in grass, or in a cave." - }, - "tailGlow": { - name: "Tail Glow", - effect: "The user stares at flashing lights to focus its mind, drastically raising its Sp. Atk stat." - }, - "lusterPurge": { - name: "Luster Purge", - effect: "The user lets loose a damaging burst of light. This may also lower the target's Sp. Def stat." - }, - "mistBall": { - name: "Mist Ball", - effect: "A mist-like flurry of down envelops and damages the target. This may also lower the target's Sp. Atk stat." - }, - "featherDance": { - name: "Feather Dance", - effect: "The user covers the target's body with a mass of down that harshly lowers its Attack stat." - }, - "teeterDance": { - name: "Teeter Dance", - effect: "The user performs a wobbly dance that confuses the Pokémon around it." - }, - "blazeKick": { - name: "Blaze Kick", - effect: "The user launches a kick that lands a critical hit more easily. This may also leave the target with a burn." - }, - "mudSport": { - name: "Mud Sport", - effect: "The user kicks up mud on the battlefield. This weakens Electric-type moves for five turns." - }, - "iceBall": { - name: "Ice Ball", - effect: "The user attacks the target for five turns. The move's power increases each time it hits." - }, - "needleArm": { - name: "Needle Arm", - effect: "The user attacks by wildly swinging its thorny arms. This may also make the target flinch." - }, - "slackOff": { - name: "Slack Off", - effect: "The user slacks off, restoring its own HP by up to half of its max HP." - }, - "hyperVoice": { - name: "Hyper Voice", - effect: "The user lets loose a horribly echoing shout with the power to inflict damage." - }, - "poisonFang": { - name: "Poison Fang", - effect: "The user bites the target with toxic fangs. This may also leave the target badly poisoned." - }, - "crushClaw": { - name: "Crush Claw", - effect: "The user slashes the target with hard and sharp claws. This may also lower the target's Defense stat." - }, - "blastBurn": { - name: "Blast Burn", - effect: "The target is razed by a fiery explosion. The user can't move on the next turn." - }, - "hydroCannon": { - name: "Hydro Cannon", - effect: "The target is hit with a watery blast. The user can't move on the next turn." - }, - "meteorMash": { - name: "Meteor Mash", - effect: "The target is hit with a hard punch fired like a meteor. This may also raise the user's Attack stat." - }, - "astonish": { - name: "Astonish", - effect: "The user attacks the target while shouting in a startling fashion. This may also make the target flinch." - }, - "weatherBall": { - name: "Weather Ball", - effect: "This attack move varies in power and type depending on the weather." - }, - "aromatherapy": { - name: "Aromatherapy", - effect: "The user releases a soothing scent that heals all status conditions affecting the user's party." - }, - "fakeTears": { - name: "Fake Tears", - effect: "The user feigns crying to fluster the target, harshly lowering its Sp. Def stat." - }, - "airCutter": { - name: "Air Cutter", - effect: "The user launches razor-like wind to slash opposing Pokémon. Critical hits land more easily." - }, - "overheat": { - name: "Overheat", - effect: "The user attacks the target at full power. The attack's recoil harshly lowers the user's Sp. Atk stat." - }, - "odorSleuth": { - name: "Odor Sleuth", - effect: "Enables a Ghost-type target to be hit by Normal- and Fighting-type attacks. This also enables an evasive target to be hit." - }, - "rockTomb": { - name: "Rock Tomb", - effect: "Boulders are hurled at the target. This also lowers the target's Speed stat by preventing its movement." - }, - "silverWind": { - name: "Silver Wind", - effect: "The target is attacked with powdery scales blown by the wind. This may also raise all the user's stats." - }, - "metalSound": { - name: "Metal Sound", - effect: "A horrible sound like scraping metal harshly lowers the target's Sp. Def stat." - }, - "grassWhistle": { - name: "Grass Whistle", - effect: "The user plays a pleasant melody that lulls the target into a deep sleep." - }, - "tickle": { - name: "Tickle", - effect: "The user tickles the target into laughing, reducing its Attack and Defense stats." - }, - "cosmicPower": { - name: "Cosmic Power", - effect: "The user absorbs a mystical power from space to raise its Defense and Sp. Def stats." - }, - "waterSpout": { - name: "Water Spout", - effect: "The user spouts water to damage opposing Pokémon. The lower the user's HP, the lower the move's power." - }, - "signalBeam": { - name: "Signal Beam", - effect: "The user attacks with a sinister beam of light. This may also confuse the target." - }, - "shadowPunch": { - name: "Shadow Punch", - effect: "The user throws a punch from the shadows. This attack never misses." - }, - "extrasensory": { - name: "Extrasensory", - effect: "The user attacks with an odd, unseeable power. This may also make the target flinch." - }, - "skyUppercut": { - name: "Sky Uppercut", - effect: "The user attacks the target with an uppercut thrown skyward with force." - }, - "sandTomb": { - name: "Sand Tomb", - effect: "The user traps the target inside a harshly raging sandstorm for four to five turns." - }, - "sheerCold": { - name: "Sheer Cold", - effect: "The target faints instantly. It's less likely to hit the target if it's used by Pokémon other than Ice types." - }, - "muddyWater": { - name: "Muddy Water", - effect: "The user attacks by shooting muddy water at opposing Pokémon. This may also lower their accuracy." - }, - "bulletSeed": { - name: "Bullet Seed", - effect: "The user forcefully shoots seeds at the target two to five times in a row." - }, - "aerialAce": { - name: "Aerial Ace", - effect: "The user confounds the target with speed, then slashes. This attack never misses." - }, - "icicleSpear": { - name: "Icicle Spear", - effect: "The user launches sharp icicles at the target two to five times in a row." - }, - "ironDefense": { - name: "Iron Defense", - effect: "The user hardens its body's surface like iron, sharply raising its Defense stat." - }, - "block": { - name: "Block", - effect: "The user blocks the target's way with arms spread wide to prevent escape." - }, - "howl": { - name: "Howl", - effect: "The user howls loudly to raise the spirit of itself and allies. This raises their Attack stats." - }, - "dragonClaw": { - name: "Dragon Claw", - effect: "The user slashes the target with huge sharp claws." - }, - "frenzyPlant": { - name: "Frenzy Plant", - effect: "The user slams the target with the roots of an enormous tree. The user can't move on the next turn." - }, - "bulkUp": { - name: "Bulk Up", - effect: "The user tenses its muscles to bulk up its body, raising both its Attack and Defense stats." - }, - "bounce": { - name: "Bounce", - effect: "The user bounces up high, then drops on the target on the second turn. This may also leave the target with paralysis." - }, - "mudShot": { - name: "Mud Shot", - effect: "The user attacks by hurling a blob of mud at the target. This also lowers the target's Speed stat." - }, - "poisonTail": { - name: "Poison Tail", - effect: "The user hits the target with its tail. This may also poison the target. Critical hits land more easily." - }, - "covet": { - name: "Covet", - effect: "The user endearingly approaches the target, then has a 30% chance to steal the target's held item." - }, - "voltTackle": { - name: "Volt Tackle", - effect: "The user electrifies itself and charges the target. This also damages the user quite a lot. This attack may leave the target with paralysis." - }, - "magicalLeaf": { - name: "Magical Leaf", - effect: "The user scatters curious leaves that chase the target. This attack never misses." - }, - "waterSport": { - name: "Water Sport", - effect: "The user soaks the battlefield with water. This weakens Fire-type moves for five turns." - }, - "calmMind": { - name: "Calm Mind", - effect: "The user quietly focuses its mind and calms its spirit to raise its Sp. Atk and Sp. Def stats." - }, - "leafBlade": { - name: "Leaf Blade", - effect: "The user handles a sharp leaf like a sword and attacks by cutting its target. Critical hits land more easily." - }, - "dragonDance": { - name: "Dragon Dance", - effect: "The user vigorously performs a mystic, powerful dance that raises its Attack and Speed stats." - }, - "rockBlast": { - name: "Rock Blast", - effect: "The user hurls hard rocks at the target. Two to five rocks are launched in a row." - }, - "shockWave": { - name: "Shock Wave", - effect: "The user strikes the target with a quick jolt of electricity. This attack never misses." - }, - "waterPulse": { - name: "Water Pulse", - effect: "The user attacks the target with a pulsing blast of water. This may also confuse the target." - }, - "doomDesire": { - name: "Doom Desire", - effect: "Two turns after this move is used, a concentrated bundle of light blasts the target." - }, - "psychoBoost": { - name: "Psycho Boost", - effect: "The user attacks the target at full power. The attack's recoil harshly lowers the user's Sp. Atk stat." - }, - "roost": { - name: "Roost", - effect: "The user lands and rests its body. This move restores the user's HP by up to half of its max HP." - }, - "gravity": { - name: "Gravity", - effect: "This move enables Flying-type Pokémon or Pokémon with the Levitate Ability to be hit by Ground-type moves. Moves that involve flying can't be used." - }, - "miracleEye": { - name: "Miracle Eye", - effect: "Enables a Dark-type target to be hit by Psychic-type attacks. This also enables an evasive target to be hit." - }, - "wakeUpSlap": { - name: "Wake-Up Slap", - effect: "This attack inflicts big damage on a sleeping target. This also wakes the target up, however." - }, - "hammerArm": { - name: "Hammer Arm", - effect: "The user swings and hits with its strong, heavy fist. It lowers the user's Speed, however." - }, - "gyroBall": { - name: "Gyro Ball", - effect: "The user tackles the target with a high-speed spin. The slower the user compared to the target, the greater the move's power." - }, - "healingWish": { - name: "Healing Wish", - effect: "The user faints. In return, the Pokémon taking its place will have its HP restored and status conditions cured." - }, - "brine": { - name: "Brine", - effect: "If the target's HP is half or less, this attack will hit with double the power." - }, - "naturalGift": { - name: "Natural Gift", - effect: "The user draws power to attack by using its held Berry. The Berry determines the move's type and power." - }, - "feint": { - name: "Feint", - effect: "This attack hits a target using a move such as Protect or Detect. This also lifts the effects of those moves." - }, - "pluck": { - name: "Pluck", - effect: "The user pecks the target. If the target is holding a Berry, the user eats it and gains its effect." - }, - "tailwind": { - name: "Tailwind", - effect: "The user whips up a turbulent whirlwind that ups the Speed stats of the user and its allies for four turns." - }, - "acupressure": { - name: "Acupressure", - effect: "The user applies pressure to stress points, sharply boosting one of its or its allies' stats." - }, - "metalBurst": { - name: "Metal Burst", - effect: "The user retaliates with much greater force against the opponent that last inflicted damage on it." - }, - "uTurn": { - name: "U-turn", - effect: "After making its attack, the user rushes back to switch places with a party Pokémon in waiting." - }, - "closeCombat": { - name: "Close Combat", - effect: "The user fights the target up close without guarding itself. This also lowers the user's Defense and Sp. Def stats." - }, - "payback": { - name: "Payback", - effect: "The user stores power, then attacks. If the user moves after the target, this attack's power will be doubled." - }, - "assurance": { - name: "Assurance", - effect: "If the target has already taken some damage in the same turn, this attack's power is doubled." - }, - "embargo": { - name: "Embargo", - effect: "This move prevents the target from using its held item for five turns. Its Trainer is also prevented from using items on it." - }, - "fling": { - name: "Fling", - effect: "The user flings its held item at the target to attack. This move's power and effects depend on the item." - }, - "psychoShift": { - name: "Psycho Shift", - effect: "Using its psychic power of suggestion, the user transfers its status conditions to the target." - }, - "trumpCard": { - name: "Trump Card", - effect: "The fewer PP this move has, the greater its power." - }, - "healBlock": { - name: "Heal Block", - effect: "For five turns, the user prevents the opposing team from using any moves, Abilities, or held items that recover HP." - }, - "wringOut": { - name: "Wring Out", - effect: "The user powerfully wrings the target. The more HP the target has, the greater the move's power." - }, - "powerTrick": { - name: "Power Trick", - effect: "The user employs its psychic power to switch its Attack stat with its Defense stat." - }, - "gastroAcid": { - name: "Gastro Acid", - effect: "The user hurls up its stomach acids on the target. The fluid eliminates the effect of the target's Ability." - }, - "luckyChant": { - name: "Lucky Chant", - effect: "The user chants an incantation toward the sky, preventing opposing Pokémon from landing critical hits for five turns." - }, - "meFirst": { - name: "Me First", - effect: "The user cuts ahead of the target to copy and use the target's intended move with greater power. This move fails if it isn't used first." - }, - "copycat": { - name: "Copycat", - effect: "The user mimics the move used immediately before it. The move fails if no other move has been used yet." - }, - "powerSwap": { - name: "Power Swap", - effect: "The user employs its psychic power to switch changes to its Attack and Sp. Atk stats with the target." - }, - "guardSwap": { - name: "Guard Swap", - effect: "The user employs its psychic power to switch changes to its Defense and Sp. Def stats with the target." - }, - "punishment": { - name: "Punishment", - effect: "The more the target has powered up with stat changes, the greater the move's power." - }, - "lastResort": { - name: "Last Resort", - effect: "This move can be used only after the user has used all the other moves it knows in the battle." - }, - "worrySeed": { - name: "Worry Seed", - effect: "A seed that causes worry is planted on the target. It prevents sleep by making the target's Ability Insomnia." - }, - "suckerPunch": { - name: "Sucker Punch", - effect: "This move enables the user to attack first. This move fails if the target is not readying an attack." - }, - "toxicSpikes": { - name: "Toxic Spikes", - effect: "The user lays a trap of poison spikes at the feet of the opposing team. The spikes will poison opposing Pokémon that switch into battle." - }, - "heartSwap": { - name: "Heart Swap", - effect: "The user employs its psychic power to switch stat changes with the target." - }, - "aquaRing": { - name: "Aqua Ring", - effect: "The user envelops itself in a veil made of water. It regains some HP every turn." - }, - "magnetRise": { - name: "Magnet Rise", - effect: "The user levitates using electrically generated magnetism for five turns." - }, - "flareBlitz": { - name: "Flare Blitz", - effect: "The user cloaks itself in fire and charges the target. This also damages the user quite a lot. This attack may leave the target with a burn." - }, - "forcePalm": { - name: "Force Palm", - effect: "The target is attacked with a shock wave. This may also leave the target with paralysis." - }, - "auraSphere": { - name: "Aura Sphere", - effect: "The user lets loose a blast of aura power from deep within its body at the target. This attack never misses." - }, - "rockPolish": { - name: "Rock Polish", - effect: "The user polishes its body to reduce drag. This sharply raises the Speed stat." - }, - "poisonJab": { - name: "Poison Jab", - effect: "The target is stabbed with a tentacle, arm, or the like steeped in poison. This may also poison the target." - }, - "darkPulse": { - name: "Dark Pulse", - effect: "The user releases a horrible aura imbued with dark thoughts. This may also make the target flinch." - }, - "nightSlash": { - name: "Night Slash", - effect: "The user slashes the target the instant an opportunity arises. Critical hits land more easily." - }, - "aquaTail": { - name: "Aqua Tail", - effect: "The user attacks by swinging its tail as if it were a vicious wave in a raging storm." - }, - "seedBomb": { - name: "Seed Bomb", - effect: "The user slams a barrage of hard-shelled seeds down on the target from above." - }, - "airSlash": { - name: "Air Slash", - effect: "The user attacks with a blade of air that slices even the sky. This may also make the target flinch." - }, - "xScissor": { - name: "X-Scissor", - effect: "The user slashes at the target by crossing its scythes or claws as if they were a pair of scissors." - }, - "bugBuzz": { - name: "Bug Buzz", - effect: "The user generates a damaging sound wave by vibration. This may also lower the target's Sp. Def stat." - }, - "dragonPulse": { - name: "Dragon Pulse", - effect: "The target is attacked with a shock wave generated by the user's gaping mouth." - }, - "dragonRush": { - name: "Dragon Rush", - effect: "The user tackles the target while exhibiting overwhelming menace. This may also make the target flinch." - }, - "powerGem": { - name: "Power Gem", - effect: "The user attacks with a ray of light that sparkles as if it were made of gemstones." - }, - "drainPunch": { - name: "Drain Punch", - effect: "An energy-draining punch. The user's HP is restored by half the damage taken by the target." - }, - "vacuumWave": { - name: "Vacuum Wave", - effect: "The user whirls its fists to send a wave of pure vacuum at the target. This move always goes first." - }, - "focusBlast": { - name: "Focus Blast", - effect: "The user heightens its mental focus and unleashes its power. This may also lower the target's Sp. Def stat." - }, - "energyBall": { - name: "Energy Ball", - effect: "The user draws power from nature and fires it at the target. This may also lower the target's Sp. Def stat." - }, - "braveBird": { - name: "Brave Bird", - effect: "The user tucks in its wings and charges from a low altitude. This also damages the user quite a lot." - }, - "earthPower": { - name: "Earth Power", - effect: "The user makes the ground under the target erupt with power. This may also lower the target's Sp. Def stat." - }, - "switcheroo": { - name: "Switcheroo", - effect: "The user trades held items with the target faster than the eye can follow." - }, - "gigaImpact": { - name: "Giga Impact", - effect: "The user charges at the target using every bit of its power. The user can't move on the next turn." - }, - "nastyPlot": { - name: "Nasty Plot", - effect: "The user stimulates its brain by thinking bad thoughts. This sharply raises the user's Sp. Atk stat." - }, - "bulletPunch": { - name: "Bullet Punch", - effect: "The user strikes the target with tough punches as fast as bullets. This move always goes first." - }, - "avalanche": { - name: "Avalanche", - effect: "The power of this attack move is doubled if the user has been hurt by the target in the same turn." - }, - "iceShard": { - name: "Ice Shard", - effect: "The user flash-freezes chunks of ice and hurls them at the target. This move always goes first." - }, - "shadowClaw": { - name: "Shadow Claw", - effect: "The user slashes with a sharp claw made from shadows. Critical hits land more easily." - }, - "thunderFang": { - name: "Thunder Fang", - effect: "The user bites with electrified fangs. This may also make the target flinch or leave it with paralysis." - }, - "iceFang": { - name: "Ice Fang", - effect: "The user bites with cold-infused fangs. This may also make the target flinch or leave it frozen." - }, - "fireFang": { - name: "Fire Fang", - effect: "The user bites with flame-cloaked fangs. This may also make the target flinch or leave it with a burn." - }, - "shadowSneak": { - name: "Shadow Sneak", - effect: "The user extends its shadow and attacks the target from behind. This move always goes first." - }, - "mudBomb": { - name: "Mud Bomb", - effect: "The user launches a hard-packed mud ball to attack. This may also lower the target's accuracy." - }, - "psychoCut": { - name: "Psycho Cut", - effect: "The user tears at the target with blades formed by psychic power. Critical hits land more easily." - }, - "zenHeadbutt": { - name: "Zen Headbutt", - effect: "The user focuses its willpower to its head and attacks the target. This may also make the target flinch." - }, - "mirrorShot": { - name: "Mirror Shot", - effect: "The user lets loose a flash of energy at the target from its polished body. This may also lower the target's accuracy." - }, - "flashCannon": { - name: "Flash Cannon", - effect: "The user gathers all its light energy and releases it all at once. This may also lower the target's Sp. Def stat." - }, - "rockClimb": { - name: "Rock Climb", - effect: "The user attacks the target by smashing into it with incredible force. This may also confuse the target." - }, - "defog": { - name: "Defog", - effect: "A strong wind blows away the target's barriers such as Reflect or Light Screen. This also lowers the target's evasiveness." - }, - "trickRoom": { - name: "Trick Room", - effect: "The user creates a bizarre area in which slower Pokémon get to move first for five turns." - }, - "dracoMeteor": { - name: "Draco Meteor", - effect: "Comets are summoned down from the sky onto the target. The attack's recoil harshly lowers the user's Sp. Atk stat." - }, - "discharge": { - name: "Discharge", - effect: "The user strikes everything around it by letting loose a flare of electricity. This may also cause paralysis." - }, - "lavaPlume": { - name: "Lava Plume", - effect: "The user torches everything around it in an inferno of scarlet flames. This may also leave those it hits with a burn." - }, - "leafStorm": { - name: "Leaf Storm", - effect: "The user whips up a storm of leaves around the target. The attack's recoil harshly lowers the user's Sp. Atk stat." - }, - "powerWhip": { - name: "Power Whip", - effect: "The user violently whirls its vines, tentacles, or the like to harshly lash the target." - }, - "rockWrecker": { - name: "Rock Wrecker", - effect: "The user launches a huge boulder at the target to attack. The user can't move on the next turn." - }, - "crossPoison": { - name: "Cross Poison", - effect: "A slashing attack with a poisonous blade that may also poison the target. Critical hits land more easily." - }, - "gunkShot": { - name: "Gunk Shot", - effect: "The user shoots filthy garbage at the target to attack. This may also poison the target." - }, - "ironHead": { - name: "Iron Head", - effect: "The user slams the target with its steel-hard head. This may also make the target flinch." - }, - "magnetBomb": { - name: "Magnet Bomb", - effect: "The user launches steel bombs that stick to the target. This attack never misses." - }, - "stoneEdge": { - name: "Stone Edge", - effect: "The user stabs the target from below with sharpened stones. Critical hits land more easily." - }, - "captivate": { - name: "Captivate", - effect: "If any opposing Pokémon is the opposite gender of the user, it is charmed, which harshly lowers its Sp. Atk stat." - }, - "stealthRock": { - name: "Stealth Rock", - effect: "The user lays a trap of levitating stones around the opposing team. The trap hurts opposing Pokémon that switch into battle." - }, - "grassKnot": { - name: "Grass Knot", - effect: "The user snares the target with grass and trips it. The heavier the target, the greater the move's power." - }, - "chatter": { - name: "Chatter", - effect: "The user attacks the target with sound waves of deafening chatter. This confuses the target." - }, - "judgment": { - name: "Judgment", - effect: "The user releases countless shots of light at the target. This move's type varies depending on the kind of Plate the user is holding." - }, - "bugBite": { - name: "Bug Bite", - effect: "The user bites the target. If the target is holding a Berry, the user eats it and gains its effect." - }, - "chargeBeam": { - name: "Charge Beam", - effect: "The user attacks the target with an electric charge. The user may use any remaining electricity to raise its Sp. Atk stat." - }, - "woodHammer": { - name: "Wood Hammer", - effect: "The user slams its rugged body into the target to attack. This also damages the user quite a lot." - }, - "aquaJet": { - name: "Aqua Jet", - effect: "The user lunges at the target at a speed that makes it almost invisible. This move always goes first." - }, - "attackOrder": { - name: "Attack Order", - effect: "The user calls out its underlings to pummel the target. Critical hits land more easily." - }, - "defendOrder": { - name: "Defend Order", - effect: "The user calls out its underlings to shield its body, raising its Defense and Sp. Def stats." - }, - "healOrder": { - name: "Heal Order", - effect: "The user calls out its underlings to heal it. The user regains up to half of its max HP." - }, - "headSmash": { - name: "Head Smash", - effect: "The user attacks the target with a hazardous, full-power headbutt. This also damages the user terribly." - }, - "doubleHit": { - name: "Double Hit", - effect: "The user slams the target with a long tail, vines, or a tentacle. The target is hit twice in a row." - }, - "roarOfTime": { - name: "Roar of Time", - effect: "The user blasts the target with power that distorts even time. The user can't move on the next turn." - }, - "spacialRend": { - name: "Spacial Rend", - effect: "The user tears the target along with the space around it. Critical hits land more easily." - }, - "lunarDance": { - name: "Lunar Dance", - effect: "The user faints. In return, the Pokémon taking its place will have its status and HP fully restored." - }, - "crushGrip": { - name: "Crush Grip", - effect: "The target is crushed with great force. The more HP the target has left, the greater this move's power." - }, - "magmaStorm": { - name: "Magma Storm", - effect: "The target becomes trapped within a maelstrom of fire that rages for four to five turns." - }, - "darkVoid": { - name: "Dark Void", - effect: "Opposing Pokémon are dragged into a world of total darkness that makes them sleep." - }, - "seedFlare": { - name: "Seed Flare", - effect: "The user emits a shock wave from its body to attack its target. This may also harshly lower the target's Sp. Def stat." - }, - "ominousWind": { - name: "Ominous Wind", - effect: "The user blasts the target with a gust of repulsive wind. This may also raise all the user's stats at once." - }, - "shadowForce": { - name: "Shadow Force", - effect: "The user disappears, then strikes the target on the next turn. This move hits even if the target protects itself." - }, - "honeClaws": { - name: "Hone Claws", - effect: "The user sharpens its claws to boost its Attack stat and accuracy." - }, - "wideGuard": { - name: "Wide Guard", - effect: "The user and its allies are protected from wide-ranging attacks for one turn." - }, - "guardSplit": { - name: "Guard Split", - effect: "The user employs its psychic power to average its Defense and Sp. Def stats with those of the target." - }, - "powerSplit": { - name: "Power Split", - effect: "The user employs its psychic power to average its Attack and Sp. Atk stats with those of the target." - }, - "wonderRoom": { - name: "Wonder Room", - effect: "The user creates a bizarre area in which Pokémon's Defense and Sp. Def stats are swapped for five turns." - }, - "psyshock": { - name: "Psyshock", - effect: "The user materializes an odd psychic wave to attack the target. This attack does physical damage." - }, - "venoshock": { - name: "Venoshock", - effect: "The user drenches the target in a special poisonous liquid. This move's power is doubled if the target is poisoned." - }, - "autotomize": { - name: "Autotomize", - effect: "The user sheds part of its body to make itself lighter and sharply raise its Speed stat." - }, - "ragePowder": { - name: "Rage Powder", - effect: "The user scatters a cloud of irritating powder to draw attention to itself. Opposing Pokémon aim only at the user." - }, - "telekinesis": { - name: "Telekinesis", - effect: "The user makes the target float with its psychic power. The target is easier to hit for three turns." - }, - "magicRoom": { - name: "Magic Room", - effect: "The user creates a bizarre area in which Pokémon's held items lose their effects for five turns." - }, - "smackDown": { - name: "Smack Down", - effect: "The user throws a stone or similar projectile to attack the target. A flying Pokémon will fall to the ground when it's hit." - }, - "stormThrow": { - name: "Storm Throw", - effect: "The user strikes the target with a fierce blow. This attack always results in a critical hit." - }, - "flameBurst": { - name: "Flame Burst", - effect: "The user attacks the target with a bursting flame. The bursting flame damages Pokémon next to the target as well." - }, - "sludgeWave": { - name: "Sludge Wave", - effect: "The user strikes everything around it by swamping the area with a giant sludge wave. This may also poison those hit." - }, - "quiverDance": { - name: "Quiver Dance", - effect: "The user lightly performs a beautiful, mystic dance. This boosts the user's Sp. Atk, Sp. Def, and Speed stats." - }, - "heavySlam": { - name: "Heavy Slam", - effect: "The user slams into the target with its heavy body. The more the user outweighs the target, the greater the move's power." - }, - "synchronoise": { - name: "Synchronoise", - effect: "Using an odd shock wave, the user inflicts damage on any Pokémon of the same type in the area around it." - }, - "electroBall": { - name: "Electro Ball", - effect: "The user hurls an electric orb at the target. The faster the user is than the target, the greater the move's power." - }, - "soak": { - name: "Soak", - effect: "The user shoots a torrent of water at the target and changes the target's type to Water." - }, - "flameCharge": { - name: "Flame Charge", - effect: "Cloaking itself in flame, the user attacks the target. Then, building up more power, the user raises its Speed stat." - }, - "coil": { - name: "Coil", - effect: "The user coils up and concentrates. This raises its Attack and Defense stats as well as its accuracy." - }, - "lowSweep": { - name: "Low Sweep", - effect: "The user makes a swift attack on the target's legs, which lowers the target's Speed stat." - }, - "acidSpray": { - name: "Acid Spray", - effect: "The user spits fluid that works to melt the target. This harshly lowers the target's Sp. Def stat." - }, - "foulPlay": { - name: "Foul Play", - effect: "The user turns the target's power against it. The higher the target's Attack stat, the greater the damage it deals." - }, - "simpleBeam": { - name: "Simple Beam", - effect: "The user's mysterious psychic wave changes the target's Ability to Simple." - }, - "entrainment": { - name: "Entrainment", - effect: "The user dances with an odd rhythm that compels the target to mimic it, making the target's Ability the same as the user's." - }, - "afterYou": { - name: "After You", - effect: "The user helps the target and makes it use its move right after the user." - }, - "round": { - name: "Round", - effect: "The user attacks the target with a song. Others can join in the Round to increase the power of the attack." - }, - "echoedVoice": { - name: "Echoed Voice", - effect: "The user attacks the target with an echoing voice. If this move is used every turn, its power is increased." - }, - "chipAway": { - name: "Chip Away", - effect: "Looking for an opening, the user strikes consistently. The target's stat changes don't affect this attack's damage." - }, - "clearSmog": { - name: "Clear Smog", - effect: "The user attacks the target by throwing a clump of special mud. All stat changes are returned to normal." - }, - "storedPower": { - name: "Stored Power", - effect: "The user attacks the target with stored power. The more the user's stats are raised, the greater the move's power." - }, - "quickGuard": { - name: "Quick Guard", - effect: "The user protects itself and its allies from priority moves." - }, - "allySwitch": { - name: "Ally Switch", - effect: "The user teleports using a strange power and switches places with one of its allies." - }, - "scald": { - name: "Scald", - effect: "The user shoots boiling hot water at its target. This may also leave the target with a burn." - }, - "shellSmash": { - name: "Shell Smash", - effect: "The user breaks its shell, which lowers Defense and Sp. Def stats but sharply raises its Attack, Sp. Atk, and Speed stats." - }, - "healPulse": { - name: "Heal Pulse", - effect: "The user emits a healing pulse that restores the target's HP by up to half of its max HP." - }, - "hex": { - name: "Hex", - effect: "This relentless attack does massive damage to a target affected by status conditions." - }, - "skyDrop": { - name: "Sky Drop", - effect: "The user takes the target into the sky, then drops it during the next turn. The target cannot attack while in the sky." - }, - "shiftGear": { - name: "Shift Gear", - effect: "The user rotates its gears, raising its Attack stat and sharply raising its Speed stat." - }, - "circleThrow": { - name: "Circle Throw", - effect: "The target is thrown, and a different Pokémon is dragged out. In the wild, this ends a battle against a single Pokémon." - }, - "incinerate": { - name: "Incinerate", - effect: "The user attacks opposing Pokémon with fire. If a Pokémon is holding a certain item, such as a Berry, the item becomes burned up and unusable." - }, - "quash": { - name: "Quash", - effect: "The user suppresses the target and makes its move go last." - }, - "acrobatics": { - name: "Acrobatics", - effect: "The user nimbly strikes the target. The fewer held items, the higher the damage it inflicts." - }, - "reflectType": { - name: "Reflect Type", - effect: "The user reflects the target's type, making the user the same type as the target." - }, - "retaliate": { - name: "Retaliate", - effect: "The user gets revenge for a fainted ally. If an ally fainted in the previous turn, this move's power is increased." - }, - "finalGambit": { - name: "Final Gambit", - effect: "The user risks everything to attack its target. The user faints but does damage equal to its HP." - }, - "bestow": { - name: "Bestow", - effect: "The user passes its held item to the target when the target isn't holding an item." - }, - "inferno": { - name: "Inferno", - effect: "The user attacks by engulfing the target in an intense fire. This leaves the target with a burn." - }, - "waterPledge": { - name: "Water Pledge", - effect: "A column of water hits the target. When used with its fire equivalent, its power increases and a rainbow appears." - }, - "firePledge": { - name: "Fire Pledge", - effect: "A column of fire hits the target. When used with its grass equivalent, its power increases and a vast sea of fire appears." - }, - "grassPledge": { - name: "Grass Pledge", - effect: "A column of grass hits the target. When used with its water equivalent, its power increases and a vast swamp appears." - }, - "voltSwitch": { - name: "Volt Switch", - effect: "After making its attack, the user rushes back to switch places with a party Pokémon in waiting." - }, - "struggleBug": { - name: "Struggle Bug", - effect: "While resisting, the user attacks opposing Pokémon. This lowers the Sp. Atk stats of those hit." - }, - "bulldoze": { - name: "Bulldoze", - effect: "The user strikes everything around it by stomping down on the ground. This lowers the Speed stats of those hit." - }, - "frostBreath": { - name: "Frost Breath", - effect: "The user blows its cold breath on the target. This attack always results in a critical hit." - }, - "dragonTail": { - name: "Dragon Tail", - effect: "The target is knocked away, and a different Pokémon is dragged out. In the wild, this ends a battle against a single Pokémon." - }, - "workUp": { - name: "Work Up", - effect: "The user is roused, and its Attack and Sp. Atk stats increase." - }, - "electroweb": { - name: "Electroweb", - effect: "The user attacks and captures opposing Pokémon using an electric net. This lowers their Speed stats." - }, - "wildCharge": { - name: "Wild Charge", - effect: "The user shrouds itself in electricity and smashes into its target. This also damages the user a little." - }, - "drillRun": { - name: "Drill Run", - effect: "The user crashes into its target while rotating its body like a drill. Critical hits land more easily." - }, - "dualChop": { - name: "Dual Chop", - effect: "The user attacks its target by hitting it with brutal strikes. The target is hit twice in a row." - }, - "heartStamp": { - name: "Heart Stamp", - effect: "The user unleashes a vicious blow after its cute act makes the target less wary. This may also make the target flinch." - }, - "hornLeech": { - name: "Horn Leech", - effect: "The user drains the target's energy with its horns. The user's HP is restored by half the damage taken by the target." - }, - "sacredSword": { - name: "Sacred Sword", - effect: "The user attacks by slicing with a long horn. The target's stat changes don't affect this attack's damage." - }, - "razorShell": { - name: "Razor Shell", - effect: "The user cuts its target with sharp shells. This may also lower the target's Defense stat." - }, - "heatCrash": { - name: "Heat Crash", - effect: "The user slams its target with its flame-covered body. The more the user outweighs the target, the greater the move's power." - }, - "leafTornado": { - name: "Leaf Tornado", - effect: "The user attacks its target by encircling it in sharp leaves. This attack may also lower the target's accuracy." - }, - "steamroller": { - name: "Steamroller", - effect: "The user crushes its target by rolling over the target with its rolled-up body. This may also make the target flinch." - }, - "cottonGuard": { - name: "Cotton Guard", - effect: "The user protects itself by wrapping its body in soft cotton, which drastically raises the user's Defense stat." - }, - "nightDaze": { - name: "Night Daze", - effect: "The user lets loose a pitch-black shock wave at its target. This may also lower the target's accuracy." - }, - "psystrike": { - name: "Psystrike", - effect: "The user materializes an odd psychic wave to attack the target. This attack does physical damage." - }, - "tailSlap": { - name: "Tail Slap", - effect: "The user attacks by striking the target with its hard tail. It hits the target two to five times in a row." - }, - "hurricane": { - name: "Hurricane", - effect: "The user attacks by wrapping its opponent in a fierce wind that flies up into the sky. This may also confuse the target." - }, - "headCharge": { - name: "Head Charge", - effect: "The user charges its head into its target, using its powerful guard hair. This also damages the user a little." - }, - "gearGrind": { - name: "Gear Grind", - effect: "The user attacks by throwing steel gears at its target twice." - }, - "searingShot": { - name: "Searing Shot", - effect: "The user torches everything around it in an inferno of scarlet flames. This may also leave those it hits with a burn." - }, - "technoBlast": { - name: "Techno Blast", - effect: "The user fires a beam of light at its target. The move's type changes depending on the Drive the user holds." - }, - "relicSong": { - name: "Relic Song", - effect: "The user sings an ancient song and attacks by appealing to the hearts of the listening opposing Pokémon. This may also induce sleep." - }, - "secretSword": { - name: "Secret Sword", - effect: "The user cuts with its long horn. The odd power contained in the horn does physical damage to the target." - }, - "glaciate": { - name: "Glaciate", - effect: "The user attacks by blowing freezing cold air at opposing Pokémon. This lowers their Speed stats." - }, - "boltStrike": { - name: "Bolt Strike", - effect: "The user surrounds itself with a great amount of electricity and charges its target. This may also leave the target with paralysis." - }, - "blueFlare": { - name: "Blue Flare", - effect: "The user attacks by engulfing the target in an intense, yet beautiful, blue flame. This may also leave the target with a burn." - }, - "fieryDance": { - name: "Fiery Dance", - effect: "Cloaked in flames, the user attacks the target by dancing and flapping its wings. This may also raise the user's Sp. Atk stat." - }, - "freezeShock": { - name: "Freeze Shock", - effect: "On the second turn, the user hits the target with electrically charged ice. This may also leave the target with paralysis." - }, - "iceBurn": { - name: "Ice Burn", - effect: "On the second turn, an ultracold, freezing wind surrounds the target. This may leave the target with a burn." - }, - "snarl": { - name: "Snarl", - effect: "The user yells as if it's ranting about something, which lowers the Sp. Atk stats of opposing Pokémon." - }, - "icicleCrash": { - name: "Icicle Crash", - effect: "The user attacks by harshly dropping large icicles onto the target. This may also make the target flinch." - }, - "vCreate": { - name: "V-create", - effect: "With a hot flame on its forehead, the user hurls itself at its target. This lowers the user's Defense, Sp. Def, and Speed stats." - }, - "fusionFlare": { - name: "Fusion Flare", - effect: "The user brings down a giant flame. This move's power is increased when influenced by an enormous lightning bolt." - }, - "fusionBolt": { - name: "Fusion Bolt", - effect: "The user throws down a giant lightning bolt. This move's power is increased when influenced by an enormous flame." - }, - "flyingPress": { - name: "Flying Press", - effect: "The user dives down onto the target from the sky. This move is Fighting and Flying type simultaneously." - }, - "matBlock": { - name: "Mat Block", - effect: "Using a pulled-up mat as a shield, the user protects itself and its allies from damaging moves. This does not stop status moves." - }, - "belch": { - name: "Belch", - effect: "The user lets out a damaging belch at the target. The user must eat a held Berry to use this move." - }, - "rototiller": { - name: "Rototiller", - effect: "Tilling the soil, the user makes it easier for plants to grow. This raises the Attack and Sp. Atk stats of Grass-type Pokémon." - }, - "stickyWeb": { - name: "Sticky Web", - effect: "The user weaves a sticky net around the opposing team, which lowers their Speed stats upon switching into battle." - }, - "fellStinger": { - name: "Fell Stinger", - effect: "When the user knocks out a target with this move, the user's Attack stat rises drastically." - }, - "phantomForce": { - name: "Phantom Force", - effect: "The user vanishes somewhere, then strikes the target on the next turn. This move hits even if the target protects itself." - }, - "trickOrTreat": { - name: "Trick-or-Treat", - effect: "The user takes the target trick-or-treating. This adds Ghost type to the target's type." - }, - "nobleRoar": { - name: "Noble Roar", - effect: "Letting out a noble roar, the user intimidates the target and lowers its Attack and Sp. Atk stats." - }, - "ionDeluge": { - name: "Ion Deluge", - effect: "The user disperses electrically charged particles, which changes Normal-type moves to Electric-type moves." - }, - "parabolicCharge": { - name: "Parabolic Charge", - effect: "The user attacks everything around it. The user's HP is restored by half the damage taken by those hit." - }, - "forestsCurse": { - name: "Forest's Curse", - effect: "The user puts a forest curse on the target. The target is now Grass type as well." - }, - "petalBlizzard": { - name: "Petal Blizzard", - effect: "The user stirs up a violent petal blizzard and attacks everything around it." - }, - "freezeDry": { - name: "Freeze-Dry", - effect: "The user rapidly cools the target. This may also leave the target frozen. This move is super effective on Water types." - }, - "disarmingVoice": { - name: "Disarming Voice", - effect: "Letting out a charming cry, the user does emotional damage to opposing Pokémon. This attack never misses." - }, - "partingShot": { - name: "Parting Shot", - effect: "With a parting threat, the user lowers the target's Attack and Sp. Atk stats. Then it switches with a party Pokémon." - }, - "topsyTurvy": { - name: "Topsy-Turvy", - effect: "All stat changes affecting the target turn topsy-turvy and become the opposite of what they were." - }, - "drainingKiss": { - name: "Draining Kiss", - effect: "The user steals the target's HP with a kiss. The user's HP is restored by over half of the damage taken by the target." - }, - "craftyShield": { - name: "Crafty Shield", - effect: "The user protects itself and its allies from status moves with a mysterious power. This does not stop moves that do damage." - }, - "flowerShield": { - name: "Flower Shield", - effect: "The user raises the Defense stats of all Grass-type Pokémon in battle with a mysterious power." - }, - "grassyTerrain": { - name: "Grassy Terrain", - effect: "The user turns the ground to grass for five turns. This restores the HP of Pokémon on the ground a little every turn and powers up Grass-type moves." - }, - "mistyTerrain": { - name: "Misty Terrain", - effect: "This protects Pokémon on the ground from status conditions and halves damage from Dragon-type moves for five turns." - }, - "electrify": { - name: "Electrify", - effect: "If the target is electrified before it uses a move during that turn, the target's move becomes Electric type." - }, - "playRough": { - name: "Play Rough", - effect: "The user plays rough with the target and attacks it. This may also lower the target's Attack stat." - }, - "fairyWind": { - name: "Fairy Wind", - effect: "The user stirs up a fairy wind and strikes the target with it." - }, - "moonblast": { - name: "Moonblast", - effect: "Borrowing the power of the moon, the user attacks the target. This may also lower the target's Sp. Atk stat." - }, - "boomburst": { - name: "Boomburst", - effect: "The user attacks everything around it with the destructive power of a terrible, explosive sound." - }, - "fairyLock": { - name: "Fairy Lock", - effect: "By locking down the battlefield, the user keeps all Pokémon from fleeing during the next turn." - }, - "kingsShield": { - name: "King's Shield", - effect: "The user takes a defensive stance while it protects itself from damage. It also lowers the Attack stat of any attacker that makes direct contact." - }, - "playNice": { - name: "Play Nice", - effect: "The user and the target become friends, and the target loses its will to fight. This lowers the target's Attack stat." - }, - "confide": { - name: "Confide", - effect: "The user tells the target a secret, and the target loses its ability to concentrate. This lowers the target's Sp. Atk stat." - }, - "diamondStorm": { - name: "Diamond Storm", - effect: "The user whips up a storm of diamonds to damage opposing Pokémon. This may also sharply raise the user's Defense stat." - }, - "steamEruption": { - name: "Steam Eruption", - effect: "The user immerses the target in superheated steam. This may also leave the target with a burn." - }, - "hyperspaceHole": { - name: "Hyperspace Hole", - effect: "Using a hyperspace hole, the user appears right next to the target and strikes. This also hits a target using a move such as Protect or Detect." - }, - "waterShuriken": { - name: "Water Shuriken", - effect: "The user hits the target with throwing stars two to five times in a row. This move always goes first." - }, - "mysticalFire": { - name: "Mystical Fire", - effect: "The user attacks by breathing a special, hot fire. This also lowers the target's Sp. Atk stat." - }, - "spikyShield": { - name: "Spiky Shield", - effect: "In addition to protecting the user from attacks, this move also damages any attacker that makes direct contact." - }, - "aromaticMist": { - name: "Aromatic Mist", - effect: "The user raises the Sp. Def stat of an ally Pokémon by using a mysterious aroma." - }, - "eerieImpulse": { - name: "Eerie Impulse", - effect: "The user's body generates an eerie impulse. Exposing the target to it harshly lowers the target's Sp. Atk stat." - }, - "venomDrench": { - name: "Venom Drench", - effect: "Opposing Pokémon are drenched in an odd poisonous liquid. This lowers the Attack, Sp. Atk, and Speed stats of a poisoned target." - }, - "powder": { - name: "Powder", - effect: "The user covers the target in a combustible powder. If the target uses a Fire-type move, the powder explodes and damages the target." - }, - "geomancy": { - name: "Geomancy", - effect: "The user absorbs energy and sharply raises its Sp. Atk, Sp. Def, and Speed stats on the next turn." - }, - "magneticFlux": { - name: "Magnetic Flux", - effect: "The user manipulates magnetic fields, which raises the Defense and Sp. Def stats of ally Pokémon with the Plus or Minus Ability." - }, - "happyHour": { - name: "Happy Hour", - effect: "Using Happy Hour doubles the amount of prize money received after battle." - }, - "electricTerrain": { - name: "Electric Terrain", - effect: "The user electrifies the ground for five turns, powering up Electric-type moves. Pokémon on the ground no longer fall asleep." - }, - "dazzlingGleam": { - name: "Dazzling Gleam", - effect: "The user damages opposing Pokémon by emitting a powerful flash." - }, - "celebrate": { - name: "Celebrate", - effect: "The Pokémon congratulates you on your special day!" - }, - "holdHands": { - name: "Hold Hands", - effect: "The user and an ally hold hands. This makes them very happy." - }, - "babyDollEyes": { - name: "Baby-Doll Eyes", - effect: "The user stares at the target with its baby-doll eyes, which lowers the target's Attack stat. This move always goes first." - }, - "nuzzle": { - name: "Nuzzle", - effect: "The user attacks by nuzzling its electrified cheeks against the target. This also leaves the target with paralysis." - }, - "holdBack": { - name: "Hold Back", - effect: "The user holds back when it attacks, and the target is left with at least 1 HP." - }, - "infestation": { - name: "Infestation", - effect: "The target is infested and attacked for four to five turns. The target can't flee during this time." - }, - "powerUpPunch": { - name: "Power-Up Punch", - effect: "Striking opponents over and over makes the user's fists harder. Hitting a target raises the Attack stat." - }, - "oblivionWing": { - name: "Oblivion Wing", - effect: "The user absorbs its target's HP. The user's HP is restored by over half of the damage taken by the target." - }, - "thousandArrows": { - name: "Thousand Arrows", - effect: "This move also hits opposing Pokémon that are in the air. Those Pokémon are knocked down to the ground." - }, - "thousandWaves": { - name: "Thousand Waves", - effect: "The user attacks with a wave that crawls along the ground. Those it hits can't flee from battle." - }, - "landsWrath": { - name: "Land's Wrath", - effect: "The user gathers the energy of the land and focuses that power on opposing Pokémon to damage them." - }, - "lightOfRuin": { - name: "Light of Ruin", - effect: "Drawing power from the Eternal Flower, the user fires a powerful beam of light. This also damages the user quite a lot." - }, - "originPulse": { - name: "Origin Pulse", - effect: "The user attacks opposing Pokémon with countless beams of light that glow a deep and brilliant blue." - }, - "precipiceBlades": { - name: "Precipice Blades", - effect: "The user attacks opposing Pokémon by manifesting the power of the land in fearsome blades of stone." - }, - "dragonAscent": { - name: "Dragon Ascent", - effect: "After soaring upward, the user attacks its target by dropping out of the sky at high speeds. But it lowers its own Defense and Sp. Def stats in the process." - }, - "hyperspaceFury": { - name: "Hyperspace Fury", - effect: "Using its many arms, the user unleashes a barrage of attacks that ignore the effects of moves like Protect and Detect. But the user's Defense stat falls." - }, - "breakneckBlitzPhysical": { - name: "Breakneck Blitz", - effect: "The user builds up its momentum using its Z-Power and crashes into the target at full speed. The power varies, depending on the original move." - }, - "breakneckBlitzSpecial": { - name: "Breakneck Blitz", - effect: "Dummy Data" - }, - "allOutPummelingPhysical": { - name: "All-Out Pummeling", - effect: "The user rams an energy orb created by its Z-Power into the target with full force. The power varies, depending on the original move." - }, - "allOutPummelingSpecial": { - name: "All-Out Pummeling", - effect: "Dummy Data" - }, - "supersonicSkystrikePhysical": { - name: "Supersonic Skystrike", - effect: "The user soars up with its Z-Power and plummets toward the target at full speed. The power varies, depending on the original move." - }, - "supersonicSkystrikeSpecial": { - name: "Supersonic Skystrike", - effect: "Dummy Data" - }, - "acidDownpourPhysical": { - name: "Acid Downpour", - effect: "The user creates a poisonous swamp using its Z-Power and sinks the target into it at full force. The power varies, depending on the original move." - }, - "acidDownpourSpecial": { - name: "Acid Downpour", - effect: "Dummy Data" - }, - "tectonicRagePhysical": { - name: "Tectonic Rage", - effect: "The user burrows deep into the ground and slams into the target with the full force of its Z-Power. The power varies, depending on the original move." - }, - "tectonicRageSpecial": { - name: "Tectonic Rage", - effect: "Dummy Data" - }, - "continentalCrushPhysical": { - name: "Continental Crush", - effect: "The user summons a huge rock mountain using its Z-Power and drops it onto the target with full force. The power varies, depending on the original move." - }, - "continentalCrushSpecial": { - name: "Continental Crush", - effect: "Dummy Data" - }, - "savageSpinOutPhysical": { - name: "Savage Spin-Out", - effect: "The user binds the target with full force with threads of silk that the user spits using its Z-Power. The power varies, depending on the original move." - }, - "savageSpinOutSpecial": { - name: "Savage Spin-Out", - effect: "Dummy Data" - }, - "neverEndingNightmarePhysical": { - name: "Never-Ending Nightmare", - effect: "Deep-seated grudges summoned by the user's Z-Power trap the target. The power varies, depending on the original move." - }, - "neverEndingNightmareSpecial": { - name: "Never-Ending Nightmare", - effect: "Dummy Data" - }, - "corkscrewCrashPhysical": { - name: "Corkscrew Crash", - effect: "The user spins very fast and rams into the target with the full force of its Z-Power. The power varies, depending on the original move." - }, - "corkscrewCrashSpecial": { - name: "Corkscrew Crash", - effect: "Dummy Data" - }, - "infernoOverdrivePhysical": { - name: "Inferno Overdrive", - effect: "The user breathes a stream of intense fire toward the target with the full force of its Z-Power. The power varies depending on the original move." - }, - "infernoOverdriveSpecial": { - name: "Inferno Overdrive", - effect: "Dummy Data" - }, - "hydroVortexPhysical": { - name: "Hydro Vortex", - effect: "The user creates a huge whirling current using its Z-Power to swallow the target with full force. The power varies, depending on the original move." - }, - "hydroVortexSpecial": { - name: "Hydro Vortex", - effect: "Dummy Data" - }, - "bloomDoomPhysical": { - name: "Bloom Doom", - effect: "The user collects energy from plants using its Z-Power and attacks the target with full force. The power varies, depending on the original move." - }, - "bloomDoomSpecial": { - name: "Bloom Doom", - effect: "Dummy Data" - }, - "gigavoltHavocPhysical": { - name: "Gigavolt Havoc", - effect: "The user hits the target with a powerful electric current collected by its Z-Power. The power varies, depending on the original move." - }, - "gigavoltHavocSpecial": { - name: "Gigavolt Havoc", - effect: "Dummy Data" - }, - "shatteredPsychePhysical": { - name: "Shattered Psyche", - effect: "The user controls the target with its Z-Power and hurts the target with full force. The power varies, depending on the original move." - }, - "shatteredPsycheSpecial": { - name: "Shattered Psyche", - effect: "Dummy Data" - }, - "subzeroSlammerPhysical": { - name: "Subzero Slammer", - effect: "The user dramatically drops the temperature using its Z-Power and freezes the target with full force. The power varies, depending on the original move." - }, - "subzeroSlammerSpecial": { - name: "Subzero Slammer", - effect: "Dummy Data" - }, - "devastatingDrakePhysical": { - name: "Devastating Drake", - effect: "The user materializes its aura using its Z-Power and attacks the target with full force. The power varies, depending on the original move." - }, - "devastatingDrakeSpecial": { - name: "Devastating Drake", - effect: "Dummy Data" - }, - "blackHoleEclipsePhysical": { - name: "Black Hole Eclipse", - effect: "The user gathers dark energy using its Z-Power and sucks the target into it. The power varies, depending on the original move." - }, - "blackHoleEclipseSpecial": { - name: "Black Hole Eclipse", - effect: "Dummy Data" - }, - "twinkleTacklePhysical": { - name: "Twinkle Tackle", - effect: "The user creates a very charming space using its Z-Power and totally toys with the target. The power varies, depending on the original move." - }, - "twinkleTackleSpecial": { - name: "Twinkle Tackle", - effect: "Dummy Data" - }, - "catastropika": { - name: "Catastropika", - effect: "The user, Pikachu, surrounds itself with the maximum amount of electricity using its Z-Power and pounces on its target with full force." - }, - "shoreUp": { - name: "Shore Up", - effect: "The user regains up to half of its max HP. It restores more HP in a sandstorm." - }, - "firstImpression": { - name: "First Impression", - effect: "Although this move has great power, it only works the first turn each time the user enters battle." - }, - "banefulBunker": { - name: "Baneful Bunker", - effect: "In addition to protecting the user from attacks, this move also poisons any attacker that makes direct contact." - }, - "spiritShackle": { - name: "Spirit Shackle", - effect: "The user attacks while simultaneously stitching the target's shadow to the ground to prevent the target from escaping." - }, - "darkestLariat": { - name: "Darkest Lariat", - effect: "The user swings both arms and hits the target. The target's stat changes don't affect this attack's damage." - }, - "sparklingAria": { - name: "Sparkling Aria", - effect: "The user bursts into song, emitting many bubbles. Any Pokémon suffering from a burn will be healed by the touch of these bubbles." - }, - "iceHammer": { - name: "Ice Hammer", - effect: "The user swings and hits with its strong, heavy fist. It lowers the user's Speed, however." - }, - "floralHealing": { - name: "Floral Healing", - effect: "The user restores the target's HP by up to half of its max HP. It restores more HP when the terrain is grass." - }, - "highHorsepower": { - name: "High Horsepower", - effect: "The user fiercely attacks the target using its entire body." - }, - "strengthSap": { - name: "Strength Sap", - effect: "The user restores its HP by the same amount as the target's Attack stat. It also lowers the target's Attack stat." - }, - "solarBlade": { - name: "Solar Blade", - effect: "In this two-turn attack, the user gathers light and fills a blade with the light's energy, attacking the target on the next turn." - }, - "leafage": { - name: "Leafage", - effect: "The user attacks by pelting the target with leaves." - }, - "spotlight": { - name: "Spotlight", - effect: "The user shines a spotlight on the target so that only the target will be attacked during the turn." - }, - "toxicThread": { - name: "Toxic Thread", - effect: "The user shoots poisonous threads to poison the target and lower the target's Speed stat." - }, - "laserFocus": { - name: "Laser Focus", - effect: "The user concentrates intensely. The attack on the next turn always results in a critical hit." - }, - "gearUp": { - name: "Gear Up", - effect: "The user engages its gears to raise the Attack and Sp. Atk stats of ally Pokémon with the Plus or Minus Ability." - }, - "throatChop": { - name: "Throat Chop", - effect: "The user attacks the target's throat, and the resultant suffering prevents the target from using moves that emit sound for two turns." - }, - "pollenPuff": { - name: "Pollen Puff", - effect: "The user attacks the enemy with a pollen puff that explodes. If the target is an ally, it gives the ally a pollen puff that restores its HP instead." - }, - "anchorShot": { - name: "Anchor Shot", - effect: "The user entangles the target with its anchor chain while attacking. The target becomes unable to flee." - }, - "psychicTerrain": { - name: "Psychic Terrain", - effect: "This protects Pokémon on the ground from priority moves and powers up Psychic-type moves for five turns." - }, - "lunge": { - name: "Lunge", - effect: "The user makes a lunge at the target, attacking with full force. This also lowers the target's Attack stat." - }, - "fireLash": { - name: "Fire Lash", - effect: "The user strikes the target with a burning lash. This also lowers the target's Defense stat." - }, - "powerTrip": { - name: "Power Trip", - effect: "The user boasts its strength and attacks the target. The more the user's stats are raised, the greater the move's power." - }, - "burnUp": { - name: "Burn Up", - effect: "To inflict massive damage, the user burns itself out. After using this move, the user will no longer be Fire type." - }, - "speedSwap": { - name: "Speed Swap", - effect: "The user exchanges Speed stats with the target." - }, - "smartStrike": { - name: "Smart Strike", - effect: "The user stabs the target with a sharp horn. This attack never misses." - }, - "purify": { - name: "Purify", - effect: "The user heals the target's status condition. If the move succeeds, it also restores the user's own HP." - }, - "revelationDance": { - name: "Revelation Dance", - effect: "The user attacks the target by dancing very hard. The user's type determines the type of this move." - }, - "coreEnforcer": { - name: "Core Enforcer", - effect: "If the Pokémon the user has inflicted damage on have already used their moves, this move eliminates the effect of the target's Ability." - }, - "tropKick": { - name: "Trop Kick", - effect: "The user lands an intense kick of tropical origins on the target. This also lowers the target's Attack stat." - }, - "instruct": { - name: "Instruct", - effect: "The user instructs the target to use the target's last move again." - }, - "beakBlast": { - name: "Beak Blast", - effect: "The user first heats up its beak, and then it attacks the target. Making direct contact with the Pokémon while it's heating up its beak results in a burn." - }, - "clangingScales": { - name: "Clanging Scales", - effect: "The user rubs the scales on its entire body and makes a huge noise to attack opposing Pokémon. The user's Defense stat goes down after the attack." - }, - "dragonHammer": { - name: "Dragon Hammer", - effect: "The user uses its body like a hammer to attack the target and inflict damage." - }, - "brutalSwing": { - name: "Brutal Swing", - effect: "The user swings its body around violently to inflict damage on everything in its vicinity." - }, - "auroraVeil": { - name: "Aurora Veil", - effect: "This move reduces damage from physical and special moves for five turns. This can be used only when it is snowing." - }, - "sinisterArrowRaid": { - name: "Sinister Arrow Raid", - effect: "The user, Decidueye, creates countless arrows using its Z-Power and shoots the target with full force." - }, - "maliciousMoonsault": { - name: "Malicious Moonsault", - effect: "The user, Incineroar, strengthens its body using its Z-Power and crashes into the target with full force." - }, - "oceanicOperetta": { - name: "Oceanic Operetta", - effect: "The user, Primarina, summons a massive amount of water using its Z-Power and attacks the target with full force." - }, - "guardianOfAlola": { - name: "Guardian of Alola", - effect: "The user, the Land Spirit Pokémon, obtains Alola's energy using its Z-Power and attacks the target with full force. This reduces the target's HP greatly." - }, - "soulStealing7StarStrike": { - name: "Soul-Stealing 7-Star Strike", - effect: "After obtaining Z-Power, the user, Marshadow, punches and kicks the target consecutively with full force." - }, - "stokedSparksurfer": { - name: "Stoked Sparksurfer", - effect: "After obtaining Z-Power, the user, Alolan Raichu, attacks the target with full force. This move leaves the target with paralysis." - }, - "pulverizingPancake": { - name: "Pulverizing Pancake", - effect: "Z-Power brings out the true capabilities of the user, Snorlax. The Pokémon moves its enormous body energetically and attacks the target with full force." - }, - "extremeEvoboost": { - name: "Extreme Evoboost", - effect: "After obtaining Z-Power, the user, Eevee, gets energy from its evolved friends and boosts its stats sharply." - }, - "genesisSupernova": { - name: "Genesis Supernova", - effect: "After obtaining Z-Power, the user, Mew, attacks the target with full force. The terrain will be charged with psychic energy." - }, - "shellTrap": { - name: "Shell Trap", - effect: "The user sets a shell trap. If the user is hit by a physical move, the trap will explode and inflict damage on opposing Pokémon." - }, - "fleurCannon": { - name: "Fleur Cannon", - effect: "The user unleashes a strong beam. The attack's recoil harshly lowers the user's Sp. Atk stat." - }, - "psychicFangs": { - name: "Psychic Fangs", - effect: "The user bites the target with its psychic capabilities. This can also destroy Light Screen and Reflect." - }, - "stompingTantrum": { - name: "Stomping Tantrum", - effect: "Driven by frustration, the user attacks the target. If the user's previous move has failed, the power of this move doubles." - }, - "shadowBone": { - name: "Shadow Bone", - effect: "The user attacks by beating the target with a bone that contains a spirit. This may also lower the target's Defense stat." - }, - "accelerock": { - name: "Accelerock", - effect: "The user smashes into the target at high speed. This move always goes first." - }, - "liquidation": { - name: "Liquidation", - effect: "The user slams into the target using a full-force blast of water. This may also lower the target's Defense stat." - }, - "prismaticLaser": { - name: "Prismatic Laser", - effect: "The user shoots powerful lasers using the power of a prism. The user can't move on the next turn." - }, - "spectralThief": { - name: "Spectral Thief", - effect: "The user hides in the target's shadow, steals the target's stat boosts, and then attacks." - }, - "sunsteelStrike": { - name: "Sunsteel Strike", - effect: "The user slams into the target with the force of a meteor. This move can be used on the target regardless of its Abilities." - }, - "moongeistBeam": { - name: "Moongeist Beam", - effect: "The user emits a sinister ray to attack the target. This move can be used on the target regardless of its Abilities." - }, - "tearfulLook": { - name: "Tearful Look", - effect: "The user gets teary eyed to make the target lose its combative spirit. This lowers the target's Attack and Sp. Atk stats." - }, - "zingZap": { - name: "Zing Zap", - effect: "A strong electric blast crashes down on the target, giving it an electric shock. This may also make the target flinch." - }, - "naturesMadness": { - name: "Nature's Madness", - effect: "The user hits the target with the force of nature. It halves the target's HP." - }, - "multiAttack": { - name: "Multi-Attack", - effect: "Cloaking itself in high energy, the user slams into the target. The memory held determines the move's type." - }, - "tenMillionVoltThunderbolt": { - name: "10,000,000 Volt Thunderbolt", - effect: "The user, Pikachu wearing a cap, powers up a jolt of electricity using its Z-Power and unleashes it. Critical hits land more easily." - }, - "mindBlown": { - name: "Mind Blown", - effect: "The user attacks everything around it by causing its own head to explode. This also damages the user." - }, - "plasmaFists": { - name: "Plasma Fists", - effect: "The user attacks with electrically charged fists. This move changes Normal-type moves to Electric-type moves." - }, - "photonGeyser": { - name: "Photon Geyser", - effect: "The user attacks a target with a pillar of light. This move inflicts Attack or Sp. Atk damage—whichever stat is higher for the user." - }, - "lightThatBurnsTheSky": { - name: "Light That Burns the Sky", - effect: "This attack inflicts Attack or Sp. Atk damage—whichever stat is higher for the user, Necrozma. This move ignores the target's Ability." - }, - "searingSunrazeSmash": { - name: "Searing Sunraze Smash", - effect: "After obtaining Z-Power, the user, Solgaleo, attacks the target with full force. This move can ignore the effect of the target's Ability." - }, - "menacingMoonrazeMaelstrom": { - name: "Menacing Moonraze Maelstrom", - effect: "After obtaining Z-Power, the user, Lunala, attacks the target with full force. This move can ignore the effect of the target's Ability." - }, - "letsSnuggleForever": { - name: "Let's Snuggle Forever", - effect: "After obtaining Z-Power, the user, Mimikyu, punches the target with full force." - }, - "splinteredStormshards": { - name: "Splintered Stormshards", - effect: "After obtaining Z-Power, the user, Lycanroc, attacks the target with full force. This move negates the effect on the battlefield." - }, - "clangorousSoulblaze": { - name: "Clangorous Soulblaze", - effect: "After obtaining Z-Power, the user, Kommo-o, attacks the opposing Pokémon with full force. This move boosts the user's stats." - }, - "zippyZap": { - name: "Zippy Zap", - effect: "The user attacks the target with bursts of electricity at high speed. This move always goes first and raises the user's evasiveness." - }, - "splishySplash": { - name: "Splishy Splash", - effect: "The user charges a huge wave with electricity and hits the opposing Pokémon with the wave. This may also leave the opposing Pokémon with paralysis." - }, - "floatyFall": { - name: "Floaty Fall", - effect: "The user floats in the air, and then dives at a steep angle to attack the target. This may also make the target flinch." - }, - "pikaPapow": { - name: "Pika Papow", - effect: "The more Pikachu loves its Trainer, the greater the move's power. It never misses." - }, - "bouncyBubble": { - name: "Bouncy Bubble", - effect: "The user attacks by shooting water bubbles at the target. It then absorbs water and restores its HP by the damage taken by the target." - }, - "buzzyBuzz": { - name: "Buzzy Buzz", - effect: "The user shoots a jolt of electricity to attack the target. This also leaves the target with paralysis." - }, - "sizzlySlide": { - name: "Sizzly Slide", - effect: "The user cloaks itself in fire and charges at the target. This also leaves the target with a burn." - }, - "glitzyGlow": { - name: "Glitzy Glow", - effect: "The user bombards the target with telekinetic force. A wondrous wall of light is put up to weaken the power of the opposing Pokémon's special moves." - }, - "baddyBad": { - name: "Baddy Bad", - effect: "The user acts bad and attacks the target. A wondrous wall of light is put up to weaken the power of the opposing Pokémon's physical moves." - }, - "sappySeed": { - name: "Sappy Seed", - effect: "The user grows a gigantic stalk that scatters seeds to attack the target. The seeds drain the target's HP every turn." - }, - "freezyFrost": { - name: "Freezy Frost", - effect: "The user attacks with a crystal made of cold frozen haze. It eliminates every stat change among all the Pokémon engaged in battle." - }, - "sparklySwirl": { - name: "Sparkly Swirl", - effect: "The user attacks the target by wrapping it with a whirlwind of an overpowering scent. This also heals all status conditions of the user's party." - }, - "veeveeVolley": { - name: "Veevee Volley", - effect: "The more Eevee loves its Trainer, the greater the move's power. It never misses." - }, - "doubleIronBash": { - name: "Double Iron Bash", - effect: "The user rotates, centering the hex nut in its chest, and then strikes with its arms twice in a row. This may also make the target flinch." - }, - "maxGuard": { - name: "Max Guard", - effect: "This move enables the user to protect itself from all attacks. Its chance of failing rises if it is used in succession." - }, - "dynamaxCannon": { - name: "Dynamax Cannon", - effect: "The user unleashes a strong beam from its core. Deals up to twice the damage if the target is overly leveled." - }, - "snipeShot": { - name: "Snipe Shot", - effect: "The user ignores the effects of opposing Pokémon's moves and Abilities that draw in moves, allowing this move to hit the chosen target." - }, - "jawLock": { - name: "Jaw Lock", - effect: "This move prevents the user and the target from switching out until either of them faints. The effect goes away if either of the Pokémon leaves the field." - }, - "stuffCheeks": { - name: "Stuff Cheeks", - effect: "The user eats its held Berry, then sharply raises its Defense stat." - }, - "noRetreat": { - name: "No Retreat", - effect: "This move raises all the user's stats but prevents the user from switching out or fleeing." - }, - "tarShot": { - name: "Tar Shot", - effect: "The user pours sticky tar over the target, lowering the target's Speed stat. The target becomes weaker to Fire-type moves." - }, - "magicPowder": { - name: "Magic Powder", - effect: "The user scatters a cloud of magic powder that changes the target to Psychic type." - }, - "dragonDarts": { - name: "Dragon Darts", - effect: "The user attacks twice using Dreepy. If there are two targets, this move hits each target once." - }, - "teatime": { - name: "Teatime", - effect: "The user has teatime with all the Pokémon in the battle. Each Pokémon eats its held Berry." - }, - "octolock": { - name: "Octolock", - effect: "The user locks the target in and prevents it from fleeing. This move also lowers the target's Defense and Sp. Def every turn." - }, - "boltBeak": { - name: "Bolt Beak", - effect: "The user stabs the target with its electrified beak. If the user attacks before the target, the power of this move is doubled." - }, - "fishiousRend": { - name: "Fishious Rend", - effect: "The user rends the target with its hard gills. If the user attacks before the target, the power of this move is doubled." - }, - "courtChange": { - name: "Court Change", - effect: "With its mysterious power, the user swaps the effects on either side of the field." - }, - "maxFlare": { - name: "Max Flare", - effect: "This is a Fire-type attack Dynamax Pokémon use. The user intensifies the sun for five turns." - }, - "maxFlutterby": { - name: "Max Flutterby", - effect: "This is a Bug-type attack Dynamax Pokémon use. This lowers the target's Sp. Atk stat." - }, - "maxLightning": { - name: "Max Lightning", - effect: "This is an Electric-type attack Dynamax Pokémon use. The user turns the ground into Electric Terrain for five turns." - }, - "maxStrike": { - name: "Max Strike", - effect: "This is a Normal-type attack Dynamax Pokémon use. This lowers the target's Speed stat." - }, - "maxKnuckle": { - name: "Max Knuckle", - effect: "This is a Fighting-type attack Dynamax Pokémon use. This raises ally Pokémon's Attack stats." - }, - "maxPhantasm": { - name: "Max Phantasm", - effect: "This is a Ghost-type attack Dynamax Pokémon use. This lowers the target's Defense stat." - }, - "maxHailstorm": { - name: "Max Hailstorm", - effect: "This is an Ice-type attack Dynamax Pokémon use. The user summons a hailstorm lasting five turns." - }, - "maxOoze": { - name: "Max Ooze", - effect: "This is a Poison-type attack Dynamax Pokémon use. This raises ally Pokémon's Sp. Atk stats." - }, - "maxGeyser": { - name: "Max Geyser", - effect: "This is a Water-type attack Dynamax Pokémon use. The user summons a heavy rain that falls for five turns." - }, - "maxAirstream": { - name: "Max Airstream", - effect: "This is a Flying-type attack Dynamax Pokémon use. This raises ally Pokémon's Speed stats." - }, - "maxStarfall": { - name: "Max Starfall", - effect: "This is a Fairy-type attack Dynamax Pokémon use. The user turns the ground into Misty Terrain for five turns." - }, - "maxWyrmwind": { - name: "Max Wyrmwind", - effect: "This is a Dragon-type attack Dynamax Pokémon use. This lowers the target's Attack stat." - }, - "maxMindstorm": { - name: "Max Mindstorm", - effect: "This is a Psychic-type attack Dynamax Pokémon use. The user turns the ground into Psychic Terrain for five turns." - }, - "maxRockfall": { - name: "Max Rockfall", - effect: "This is a Rock-type attack Dynamax Pokémon use. The user summons a sandstorm lasting five turns." - }, - "maxQuake": { - name: "Max Quake", - effect: "This is a Ground-type attack Dynamax Pokémon use. This raises ally Pokémon's Sp. Def stats." - }, - "maxDarkness": { - name: "Max Darkness", - effect: "This is a Dark-type attack Dynamax Pokémon use. This lowers the target's Sp. Def stat." - }, - "maxOvergrowth": { - name: "Max Overgrowth", - effect: "This is a Grass-type attack Dynamax Pokémon use. The user turns the ground into Grassy Terrain for five turns." - }, - "maxSteelspike": { - name: "Max Steelspike", - effect: "This is a Steel-type attack Dynamax Pokémon use. This raises ally Pokémon's Defense stats." - }, - "clangorousSoul": { - name: "Clangorous Soul", - effect: "The user raises all its stats by using some of its HP." - }, - "bodyPress": { - name: "Body Press", - effect: "The user attacks by slamming its body into the target. The higher the user's Defense, the more damage it can inflict on the target." - }, - "decorate": { - name: "Decorate", - effect: "The user sharply raises the target's Attack and Sp. Atk stats by decorating the target." - }, - "drumBeating": { - name: "Drum Beating", - effect: "The user plays its drum, controlling the drum's roots to attack the target. This also lowers the target's Speed stat." - }, - "snapTrap": { - name: "Snap Trap", - effect: "The user snares the target in a snap trap for four to five turns." - }, - "pyroBall": { - name: "Pyro Ball", - effect: "The user attacks by igniting a small stone and launching it as a fiery ball at the target. This may also leave the target with a burn." - }, - "behemothBlade": { - name: "Behemoth Blade", - effect: "The user wields a large, powerful sword using its whole body and cuts the target in a vigorous attack." - }, - "behemothBash": { - name: "Behemoth Bash", - effect: "The user's body becomes a firm shield and slams into the target fiercely." - }, - "auraWheel": { - name: "Aura Wheel", - effect: "Morpeko attacks and raises its Speed with the energy stored in its cheeks. This move's type changes depending on the user's form." - }, - "breakingSwipe": { - name: "Breaking Swipe", - effect: "The user swings its tough tail wildly and attacks opposing Pokémon. This also lowers their Attack stats." - }, - "branchPoke": { - name: "Branch Poke", - effect: "The user attacks the target by poking it with a sharply pointed branch." - }, - "overdrive": { - name: "Overdrive", - effect: "The user attacks opposing Pokémon by twanging a guitar or bass guitar, causing a huge echo and strong vibration." - }, - "appleAcid": { - name: "Apple Acid", - effect: "The user attacks the target with an acidic liquid created from tart apples. This also lowers the target's Sp. Def stat." - }, - "gravApple": { - name: "Grav Apple", - effect: "The user inflicts damage by dropping an apple from high above. This also lowers the target's Defense stat." - }, - "spiritBreak": { - name: "Spirit Break", - effect: "The user attacks the target with so much force that it could break the target's spirit. This also lowers the target's Sp. Atk stat." - }, - "strangeSteam": { - name: "Strange Steam", - effect: "The user attacks the target by emitting steam. This may also confuse the target." - }, - "lifeDew": { - name: "Life Dew", - effect: "The user scatters mysterious water around and restores the HP of itself and its ally Pokémon in the battle." - }, - "obstruct": { - name: "Obstruct", - effect: "This move enables the user to protect itself from all attacks. Its chance of failing rises if it is used in succession. Direct contact harshly lowers the attacker's Defense stat." - }, - "falseSurrender": { - name: "False Surrender", - effect: "The user pretends to bow its head, but then it stabs the target with its disheveled hair. This attack never misses." - }, - "meteorAssault": { - name: "Meteor Assault", - effect: "The user attacks wildly with its thick leek. The user can't move on the next turn, because the force of this move makes it stagger." - }, - "eternabeam": { - name: "Eternabeam", - effect: "This is Eternatus's most powerful attack in its original form. The user can't move on the next turn." - }, - "steelBeam": { - name: "Steel Beam", - effect: "The user fires a beam of steel that it collected from its entire body. This also damages the user." - }, - "expandingForce": { - name: "Expanding Force", - effect: "The user attacks the target with its psychic power. This move's power goes up and damages all opposing Pokémon on Psychic Terrain." - }, - "steelRoller": { - name: "Steel Roller", - effect: "The user attacks while destroying the terrain. This move fails when the ground hasn't turned into a terrain." - }, - "scaleShot": { - name: "Scale Shot", - effect: "The user attacks by shooting scales two to five times in a row. This move boosts the user's Speed stat but lowers its Defense stat." - }, - "meteorBeam": { - name: "Meteor Beam", - effect: "In this two-turn attack, the user gathers space power and boosts its Sp. Atk stat, then attacks the target on the next turn." - }, - "shellSideArm": { - name: "Shell Side Arm", - effect: "This move inflicts physical or special damage, whichever will be more effective. This may also poison the target." - }, - "mistyExplosion": { - name: "Misty Explosion", - effect: "The user attacks everything around it and faints upon using this move. This move's power is increased on Misty Terrain." - }, - "grassyGlide": { - name: "Grassy Glide", - effect: "Gliding on the ground, the user attacks the target. This move always goes first on Grassy Terrain." - }, - "risingVoltage": { - name: "Rising Voltage", - effect: "The user attacks with electric voltage rising from the ground. This move's power doubles when the target is on Electric Terrain." - }, - "terrainPulse": { - name: "Terrain Pulse", - effect: "The user utilizes the power of the terrain to attack. This move's type and power changes depending on the terrain when it's used." - }, - "skitterSmack": { - name: "Skitter Smack", - effect: "The user skitters behind the target to attack. This also lowers the target's Sp. Atk stat." - }, - "burningJealousy": { - name: "Burning Jealousy", - effect: "The user attacks with energy from jealousy. This leaves all opposing Pokémon that have had their stats boosted during the turn with a burn." - }, - "lashOut": { - name: "Lash Out", - effect: "The user lashes out to vent its frustration toward the target. If the user's stats were lowered during this turn, the power of this move is doubled." - }, - "poltergeist": { - name: "Poltergeist", - effect: "The user attacks the target by controlling the target's item. The move fails if the target doesn't have an item." - }, - "corrosiveGas": { - name: "Corrosive Gas", - effect: "The user surrounds everything around it with highly acidic gas and melts away items they hold." - }, - "coaching": { - name: "Coaching", - effect: "The user properly coaches its ally Pokémon, boosting their Attack and Defense stats." - }, - "flipTurn": { - name: "Flip Turn", - effect: "After making its attack, the user rushes back to switch places with a party Pokémon in waiting." - }, - "tripleAxel": { - name: "Triple Axel", - effect: "A consecutive three-kick attack that becomes more powerful with each successful hit." - }, - "dualWingbeat": { - name: "Dual Wingbeat", - effect: "The user slams the target with its wings. The target is hit twice in a row." - }, - "scorchingSands": { - name: "Scorching Sands", - effect: "The user throws scorching sand at the target to attack. This may also leave the target with a burn." - }, - "jungleHealing": { - name: "Jungle Healing", - effect: "The user becomes one with the jungle, restoring HP and healing any status conditions of itself and its ally Pokémon in battle." - }, - "wickedBlow": { - name: "Wicked Blow", - effect: "The user, having mastered the Dark style, strikes the target with a fierce blow. This attack always results in a critical hit." - }, - "surgingStrikes": { - name: "Surging Strikes", - effect: "The user, having mastered the Water style, strikes the target with a flowing motion three times in a row. This attack always results in a critical hit." - }, - "thunderCage": { - name: "Thunder Cage", - effect: "The user traps the target in a cage of sparking electricity for four to five turns." - }, - "dragonEnergy": { - name: "Dragon Energy", - effect: "Converting its life-force into power, the user attacks opposing Pokémon. The lower the user's HP, the lower the move's power." - }, - "freezingGlare": { - name: "Freezing Glare", - effect: "The user shoots its psychic power from its eyes to attack. This may also leave the target frozen." - }, - "fieryWrath": { - name: "Fiery Wrath", - effect: "The user transforms its wrath into a fire-like aura to attack. This may also make opposing Pokémon flinch." - }, - "thunderousKick": { - name: "Thunderous Kick", - effect: "The user overwhelms the target with lightning-like movement before delivering a kick. This also lowers the target's Defense stat." - }, - "glacialLance": { - name: "Glacial Lance", - effect: "The user attacks by hurling a blizzard-cloaked icicle lance at opposing Pokémon." - }, - "astralBarrage": { - name: "Astral Barrage", - effect: "The user attacks by sending a frightful amount of small ghosts at opposing Pokémon." - }, - "eerieSpell": { - name: "Eerie Spell", - effect: "The user attacks with its tremendous psychic power. This also removes 3 PP from the target's last move." - }, - "direClaw": { - name: "Dire Claw", - effect: "The user lashes out at the target with ruinous claws. This may also leave the target poisoned, paralyzed, or asleep." - }, - "psyshieldBash": { - name: "Psyshield Bash", - effect: "Cloaking itself in psychic energy, the user slams into the target. This also boosts the user's Defense stat." - }, - "powerShift": { - name: "Power Shift", - effect: "The user swaps its Attack and Defense stats." - }, - "stoneAxe": { - name: "Stone Axe", - effect: "The user swings its stone axes at the target. Stone splinters left behind by this attack float around the target." - }, - "springtideStorm": { - name: "Springtide Storm", - effect: "The user attacks by wrapping opposing Pokémon in fierce winds brimming with love and hate. This may also lower their Attack stats." - }, - "mysticalPower": { - name: "Mystical Power", - effect: "The user attacks by emitting a mysterious power. This also boosts the user's Sp. Atk stat." - }, - "ragingFury": { - name: "Raging Fury", - effect: "The user rampages around spewing flames for two to three turns. The user then becomes confused." - }, - "waveCrash": { - name: "Wave Crash", - effect: "The user shrouds itself in water and slams into the target with its whole body to inflict damage. This also damages the user quite a lot." - }, - "chloroblast": { - name: "Chloroblast", - effect: "The user launches its amassed chlorophyll to inflict damage on the target. This also damages the user." - }, - "mountainGale": { - name: "Mountain Gale", - effect: "The user hurls giant chunks of ice at the target to inflict damage. This may also make the target flinch." - }, - "victoryDance": { - name: "Victory Dance", - effect: "The user performs an intense dance to usher in victory, boosting its Attack, Defense, and Speed stats." - }, - "headlongRush": { - name: "Headlong Rush", - effect: "The user smashes into the target in a full-body tackle. This also lowers the user's Defense and Sp. Def stats." - }, - "barbBarrage": { - name: "Barb Barrage", - effect: "The user launches countless toxic barbs to inflict damage. This may also poison the target. This move's power is doubled if the target is already poisoned." - }, - "esperWing": { - name: "Esper Wing", - effect: "The user slashes the target with aura-enriched wings. This also boosts the user's Speed stat. This move has a heightened chance of landing a critical hit." - }, - "bitterMalice": { - name: "Bitter Malice", - effect: "The user attacks the target with spine-chilling resentment. This also lowers the target's Attack stat." - }, - "shelter": { - name: "Shelter", - effect: "The user makes its skin as hard as an iron shield, sharply boosting its Defense stat." - }, - "tripleArrows": { - name: "Triple Arrows", - effect: "The user kicks, then fires three arrows. This move has a heightened chance of landing a critical hit and may also lower the target's Defense stat or make it flinch." - }, - "infernalParade": { - name: "Infernal Parade", - effect: "The user attacks with myriad fireballs. This may also leave the target with a burn. This move's power is doubled if the target has a status condition." - }, - "ceaselessEdge": { - name: "Ceaseless Edge", - effect: "The user slashes its shell blade at the target. Shell splinters left behind by this attack remain scattered under the target as spikes." - }, - "bleakwindStorm": { - name: "Bleakwind Storm", - effect: "The user attacks with savagely cold winds that cause both body and spirit to tremble. This may also lower the Speed stats of opposing Pokémon." - }, - "wildboltStorm": { - name: "Wildbolt Storm", - effect: "The user summons a thunderous tempest and savagely attacks with lightning and wind. This may also leave opposing Pokémon with paralysis." - }, - "sandsearStorm": { - name: "Sandsear Storm", - effect: "The user attacks by wrapping opposing Pokémon in fierce winds and searingly hot sand. This may also leave them with a burn." - }, - "lunarBlessing": { - name: "Lunar Blessing", - effect: "The user receives a blessing from the crescent moon, restoring HP and curing status conditions for itself and its ally Pokémon currently in the battle." - }, - "takeHeart": { - name: "Take Heart", - effect: "The user lifts its spirits, curing its own status conditions and boosting its Sp. Atk and Sp. Def stats." - }, - "gMaxWildfire": { - name: "G-Max Wildfire", - effect: "A Fire-type attack that Gigantamax Charizard use. This move continues to deal damage to opponents for four turns." - }, - "gMaxBefuddle": { - name: "G-Max Befuddle", - effect: "A Bug-type attack that Gigantamax Butterfree use. This move inflicts the poisoned, paralyzed, or asleep status condition on opponents." - }, - "gMaxVoltCrash": { - name: "G-Max Volt Crash", - effect: "An Electric-type attack that Gigantamax Pikachu use. This move paralyzes opponents." - }, - "gMaxGoldRush": { - name: "G-Max Gold Rush", - effect: "A Normal-type attack that Gigantamax Meowth use. This move confuses opponents and also earns extra money." - }, - "gMaxChiStrike": { - name: "G-Max Chi Strike", - effect: "A Fighting-type attack that Gigantamax Machamp use. This move raises the chance of critical hits." - }, - "gMaxTerror": { - name: "G-Max Terror", - effect: "A Ghost-type attack that Gigantamax Gengar use. This Pokémon steps on the opposing Pokémon's shadow to prevent them from escaping." - }, - "gMaxResonance": { - name: "G-Max Resonance", - effect: "An Ice-type attack that Gigantamax Lapras use. This move reduces the damage received for five turns." - }, - "gMaxCuddle": { - name: "G-Max Cuddle", - effect: "A Normal-type attack that Gigantamax Eevee use. This move infatuates opponents." - }, - "gMaxReplenish": { - name: "G-Max Replenish", - effect: "A Normal-type attack that Gigantamax Snorlax use. This move restores Berries that have been eaten." - }, - "gMaxMalodor": { - name: "G-Max Malodor", - effect: "A Poison-type attack that Gigantamax Garbodor use. This move poisons opponents." - }, - "gMaxStonesurge": { - name: "G-Max Stonesurge", - effect: "A Water-type attack that Gigantamax Drednaw use. This move scatters sharp rocks around the field." - }, - "gMaxWindRage": { - name: "G-Max Wind Rage", - effect: "A Flying-type attack that Gigantamax Corviknight use. This move removes the effects of moves like Reflect and Light Screen." - }, - "gMaxStunShock": { - name: "G-Max Stun Shock", - effect: "An Electric-type attack that Gigantamax Toxtricity use. This move poisons or paralyzes opponents." - }, - "gMaxFinale": { - name: "G-Max Finale", - effect: "A Fairy-type attack that Gigantamax Alcremie use. This move heals the HP of allies." - }, - "gMaxDepletion": { - name: "G-Max Depletion", - effect: "A Dragon-type attack that Gigantamax Duraludon use. Reduces the PP of the last move used." - }, - "gMaxGravitas": { - name: "G-Max Gravitas", - effect: "A Psychic-type attack that Gigantamax Orbeetle use. This move changes gravity for five turns." - }, - "gMaxVolcalith": { - name: "G-Max Volcalith", - effect: "A Rock-type attack that Gigantamax Coalossal use. This move continues to deal damage to opponents for four turns." - }, - "gMaxSandblast": { - name: "G-Max Sandblast", - effect: "A Ground-type attack that Gigantamax Sandaconda use. Opponents are trapped in a raging sandstorm for four to five turns." - }, - "gMaxSnooze": { - name: "G-Max Snooze", - effect: "A Dark-type attack that Gigantamax Grimmsnarl use. The user lets loose a huge yawn that lulls the targets into falling asleep on the next turn." - }, - "gMaxTartness": { - name: "G-Max Tartness", - effect: "A Grass-type attack that Gigantamax Flapple use. This move reduces the opponents' evasiveness." - }, - "gMaxSweetness": { - name: "G-Max Sweetness", - effect: "A Grass-type attack that Gigantamax Appletun use. This move heals the status conditions of allies." - }, - "gMaxSmite": { - name: "G-Max Smite", - effect: "A Fairy-type attack that Gigantamax Hatterene use. This move confuses opponents." - }, - "gMaxSteelsurge": { - name: "G-Max Steelsurge", - effect: "A Steel-type attack that Gigantamax Copperajah use. This move scatters sharp spikes around the field." - }, - "gMaxMeltdown": { - name: "G-Max Meltdown", - effect: "A Steel-type attack that Gigantamax Melmetal use. This move makes opponents incapable of using the same move twice in a row." - }, - "gMaxFoamBurst": { - name: "G-Max Foam Burst", - effect: "A Water-type attack that Gigantamax Kingler use. This move harshly lowers the Speed of opponents." - }, - "gMaxCentiferno": { - name: "G-Max Centiferno", - effect: "A Fire-type attack that Gigantamax Centiskorch use. This move traps opponents in flames for four to five turns." - }, - "gMaxVineLash": { - name: "G-Max Vine Lash", - effect: "A Grass-type attack that Gigantamax Venusaur use. This move continues to deal damage to opponents for four turns." - }, - "gMaxCannonade": { - name: "G-Max Cannonade", - effect: "A Water-type attack that Gigantamax Blastoise use. This move continues to deal damage to opponents for four turns." - }, - "gMaxDrumSolo": { - name: "G-Max Drum Solo", - effect: "A Grass-type attack that Gigantamax Rillaboom use. This move can be used on the target regardless of its Abilities." - }, - "gMaxFireball": { - name: "G-Max Fireball", - effect: "A Fire-type attack that Gigantamax Cinderace use. This move can be used on the target regardless of its Abilities." - }, - "gMaxHydrosnipe": { - name: "G-Max Hydrosnipe", - effect: "A Water-type attack that Gigantamax Inteleon use. This move can be used on the target regardless of its Abilities." - }, - "gMaxOneBlow": { - name: "G-Max One Blow", - effect: "A Dark-type attack that Gigantamax Urshifu use. This single-strike move can ignore Max Guard." - }, - "gMaxRapidFlow": { - name: "G-Max Rapid Flow", - effect: "A Water-type attack that Gigantamax Urshifu use. This rapid-strike move can ignore Max Guard." - }, - "teraBlast": { - name: "Tera Blast", - effect: "If the user has Terastallized, it unleashes energy of its Tera Type. This move inflicts damage using the Attack or Sp. Atk stat-whichever is higher for the user." - }, - "silkTrap": { - name: "Silk Trap", - effect: "The user spins a silken trap, protecting itself from damage while lowering the Speed stat of any attacker that makes direct contact." - }, - "axeKick": { - name: "Axe Kick", - effect: "The user attacks by kicking up into the air and slamming its heel down upon the target. This may also confuse the target. If it misses, the user takes damage instead." - }, - "lastRespects": { - name: "Last Respects", - effect: "The user attacks to avenge its allies. The more defeated allies there are in the user's party, the greater the move's power." - }, - "luminaCrash": { - name: "Lumina Crash", - effect: "The user attacks by unleashing a peculiar light that even affects the mind. This also harshly lowers the target's Sp. Def stat." - }, - "orderUp": { - name: "Order Up", - effect: "The user attacks with elegant poise. If the user has a Tatsugiri in its mouth, this move boosts one of the user's stats based on the Tatsugiri's form." - }, - "jetPunch": { - name: "Jet Punch", - effect: "The user summons a torrent around its fist and punches at blinding speed. This move always goes first." - }, - "spicyExtract": { - name: "Spicy Extract", - effect: "The user emits an incredibly spicy extract, sharply boosting the target's Attack stat and harshly lowering the target's Defense stat." - }, - "spinOut": { - name: "Spin Out", - effect: "The user spins furiously by straining its legs, inflicting damage on the target. This also harshly lowers the user's Speed stat." - }, - "populationBomb": { - name: "Population Bomb", - effect: "The user's fellows gather in droves to perform a combo attack that hits the target one to ten times in a row." - }, - "iceSpinner": { - name: "Ice Spinner", - effect: "The user covers its feet in thin ice and twirls around, slamming into the target. This move's spinning motion also destroys the terrain." - }, - "glaiveRush": { - name: "Glaive Rush", - effect: "The user throws its entire body into a reckless charge. After this move is used, attacks on the user cannot miss and will inflict double damage until the user's next turn." - }, - "revivalBlessing": { - name: "Revival Blessing", - effect: "The user bestows a loving blessing, reviving a party Pokémon that has fainted and restoring half that Pokémon's max HP." - }, - "saltCure": { - name: "Salt Cure", - effect: "The user salt cures the target, inflicting damage every turn. Steel and Water types are more strongly affected by this move." - }, - "tripleDive": { - name: "Triple Dive", - effect: "The user performs a perfectly timed triple dive, hitting the target with splashes of water three times in a row." - }, - "mortalSpin": { - name: "Mortal Spin", - effect: "The user performs a spin attack that can also eliminate the effects of such moves as Bind, Wrap, and Leech Seed. This also poisons opposing Pokémon." - }, - "doodle": { - name: "Doodle", - effect: "The user captures the very essence of the target in a sketch. This changes the Abilities of the user and its ally Pokémon to that of the target." - }, - "filletAway": { - name: "Fillet Away", - effect: "The user sharply boosts its Attack, Sp. Atk, and Speed stats by using its own HP." - }, - "kowtowCleave": { - name: "Kowtow Cleave", - effect: "The user slashes at the target after kowtowing to make the target let down its guard. This attack never misses." - }, - "flowerTrick": { - name: "Flower Trick", - effect: "The user throws a rigged bouquet of flowers at the target. This attack never misses and always lands a critical hit." - }, - "torchSong": { - name: "Torch Song", - effect: "The user blows out raging flames as if singing a song, scorching the target. This also boosts the user's Sp. Atk stat." - }, - "aquaStep": { - name: "Aqua Step", - effect: "The user toys with the target and attacks it using light and fluid dance steps. This also boosts the user's Speed stat." - }, - "ragingBull": { - name: "Raging Bull", - effect: "The user performs a tackle like a raging bull. This move's type depends on the user's form. It can also break barriers, such as Light Screen and Reflect." - }, - "makeItRain": { - name: "Make It Rain", - effect: "The user attacks by throwing out a mass of coins. This also lowers the user's Sp. Atk stat. Money is earned after the battle." - }, - "psyblade": { - name: "Psyblade", - effect: "The user rends the target with an ethereal blade. This move's power is boosted by 50 percent if the user is on Electric Terrain." - }, - "hydroSteam": { - name: "Hydro Steam", - effect: "The user blasts the target with boiling-hot water. This move's power is not lowered in harsh sunlight but rather boosted by 50 percent." - }, - "ruination": { - name: "Ruination", - effect: "The user summons a ruinous disaster. This cuts the target's HP in half." - }, - "collisionCourse": { - name: "Collision Course", - effect: "The user transforms and crashes to the ground, causing a massive prehistoric explosion. This move's power is boosted more than usual if it's a supereffective hit." - }, - "electroDrift": { - name: "Electro Drift", - effect: "The user races forward at ultrafast speeds, piercing its target with futuristic electricity. This move's power is boosted more than usual if it's a supereffective hit." - }, - "shedTail": { - name: "Shed Tail", - effect: "The user creates a substitute for itself using its own HP before switching places with a party Pokémon in waiting." - }, - "chillyReception": { - name: "Chilly Reception", - effect: "The user tells a chillingly bad joke before switching places with a party Pokémon in waiting. This summons a snowstorm lasting five turns." - }, - "tidyUp": { - name: "Tidy Up", - effect: "The user tidies up and removes the effects of Spikes, Stealth Rock, Sticky Web, Toxic Spikes, and Substitute. This also boosts the user's Attack and Speed stats." - }, - "snowscape": { - name: "Snowscape", - effect: "The user summons a snowstorm lasting five turns. This boosts the Defense stats of Ice types." - }, - "pounce": { - name: "Pounce", - effect: "The user attacks by pouncing on the target. This also lowers the target's Speed stat." - }, - "trailblaze": { - name: "Trailblaze", - effect: "The user attacks suddenly as if leaping out from tall grass. The user's nimble footwork boosts its Speed stat." - }, - "chillingWater": { - name: "Chilling Water", - effect: "The user attacks the target by showering it with water that's so cold it saps the target's power. This also lowers the target's Attack stat." - }, - "hyperDrill": { - name: "Hyper Drill", - effect: "The user spins the pointed part of its body at high speed to pierce the target. This attack can hit a target using a move such as Protect or Detect." - }, - "twinBeam": { - name: "Twin Beam", - effect: "The user shoots mystical beams from its eyes to inflict damage. The target is hit twice in a row." - }, - "rageFist": { - name: "Rage Fist", - effect: "The user converts its rage into energy to attack. The more times the user has been hit by attacks, the greater the move's power." - }, - "armorCannon": { - name: "Armor Cannon", - effect: "The user shoots its own armor out as blazing projectiles. This also lowers the user's Defense and Sp. Def stats." - }, - "bitterBlade": { - name: "Bitter Blade", - effect: "The user focuses its bitter feelings toward the world of the living into a slashing attack. The user's HP is restored by up to half the damage taken by the target." - }, - "doubleShock": { - name: "Double Shock", - effect: "The user discharges all the electricity from its body to perform a high-damage attack. After using this move, the user will no longer be Electric type." - }, - "gigatonHammer": { - name: "Gigaton Hammer", - effect: "The user swings its whole body around to attack with its huge hammer. This move can't be used twice in a row." - }, - "comeuppance": { - name: "Comeuppance", - effect: "The user retaliates with much greater force against the opponent that last inflicted damage on it." - }, - "aquaCutter": { - name: "Aqua Cutter", - effect: "The user expels pressurized water to cut at the target like a blade. This move has a heightened chance of landing a critical hit." - }, - "blazingTorque": { - name: "Blazing Torque", - effect: "The user revs their blazing engine into the target. This may also leave the target with a burn." - }, - "wickedTorque": { - name: "Wicked Torque", - effect: "The user revs their engine into the target with malicious intent. This may put the target to sleep." - }, - "noxiousTorque": { - name: "Noxious Torque", - effect: "The user revs their poisonous engine into the target. This may also poison the target." - }, - "combatTorque": { - name: "Combat Torque", - effect: "The user revs their engine forcefully into the target. This may also leave the target with paralysis." - }, - "magicalTorque": { - name: "Magical Torque", - effect: "The user revs their fae-like engine into the target. This may also confuse the target." - }, - "bloodMoon": { - name: "Blood Moon", - effect: "The user unleashes the full brunt of its spirit from a full moon that shines as red as blood. This move can't be used twice in a row." - }, - "matchaGotcha": { - name: "Matcha Gotcha", - effect: "The user fires a blast of tea that it mixed. The user's HP is restored by up to half the damage taken by the target. This may also leave the target with a burn." - }, - "syrupBomb": { - name: "Syrup Bomb", - effect: "The user sets off an explosion of sticky candy syrup, which coats the target and causes the target's Speed stat to drop each turn for three turns." - }, - "ivyCudgel": { - name: "Ivy Cudgel", - effect: "The user strikes with an ivy-wrapped cudgel. This move's type changes depending on the mask worn by the user, and it has a heightened chance of landing a critical hit." - }, - "electroShot": { - name: "Electro Shot", - effect: "The user gathers electricity on the first turn, boosting its Sp. Atk stat, then fires a high-voltage shot on the next turn. The shot will be fired immediately in rain." - }, - "teraStarstorm": { - name: "Tera Starstorm", - effect: "With the power of its crystals, the user bombards and eliminates the target. When used by Terapagos in its Stellar Form, this move damages all opposing Pokémon." - }, - "fickleBeam": { - name: "Fickle Beam", - effect: "The user shoots a beam of light to inflict damage. Sometimes all the user's heads shoot beams in unison, doubling the move's power." - }, - "burningBulwark": { - name: "Burning Bulwark", - effect: "The user's intensely hot fur protects it from attacks and also burns any attacker that makes direct contact with it." - }, - "thunderclap": { - name: "Thunderclap", - effect: "This move enables the user to attack first with a jolt of electricity. This move fails if the target is not readying an attack." - }, - "mightyCleave": { - name: "Mighty Cleave", - effect: "The user wields the light that has accumulated atop its head to cleave the target. This move hits even if the target protects itself." - }, - "tachyonCutter": { - name: "Tachyon Cutter", - effect: "The user attacks by launching particle blades at the target twice in a row. This attack never misses." - }, - "hardPress": { - name: "Hard Press", - effect: "The target is crushed with an arm, a claw, or the like to inflict damage. The more HP the target has left, the greater the move's power." - }, - "dragonCheer": { - name: "Dragon Cheer", - effect: "The user raises its allies' morale with a draconic cry so that their future attacks have a heightened chance of landing critical hits. This rouses Dragon types more." - }, - "alluringVoice": { - name: "Alluring Voice", - effect: "The user attacks the target using its angelic voice. This also confuses the target if its stats have been boosted during the turn." - }, - "temperFlare": { - name: "Temper Flare", - effect: "Spurred by desperation, the user attacks the target. This move's power is doubled if the user's previous move failed." - }, - "supercellSlam": { - name: "Supercell Slam", - effect: "The user electrifies its body and drops onto the target to inflict damage. If this move misses, the user takes damage instead." - }, - "psychicNoise": { - name: "Psychic Noise", - effect: "The user attacks the target with unpleasant sound waves. For two turns, the target is prevented from recovering HP through moves, Abilities, or held items." - }, - "upperHand": { - name: "Upper Hand", - effect: "The user reacts to the target's movement and strikes with the heel of its palm, making the target flinch. This move fails if the target is not readying a priority move." - }, - "malignantChain": { - name: "Malignant Chain", - effect: "The user pours toxins into the target by wrapping them in a toxic, corrosive chain. This may also leave the target badly poisoned." - } -} as const; diff --git a/src/locales/ca_ES/nature.json b/src/locales/ca_ES/nature.json new file mode 100644 index 00000000000..9e26dfeeb6e --- /dev/null +++ b/src/locales/ca_ES/nature.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/src/locales/ca_ES/nature.ts b/src/locales/ca_ES/nature.ts deleted file mode 100644 index 9ab26f3eb2a..00000000000 --- a/src/locales/ca_ES/nature.ts +++ /dev/null @@ -1,29 +0,0 @@ -import { SimpleTranslationEntries } from "#app/interfaces/locales"; - -export const nature: SimpleTranslationEntries = { - "Hardy": "Hardy", - "Lonely": "Lonely", - "Brave": "Brave", - "Adamant": "Adamant", - "Naughty": "Naughty", - "Bold": "Bold", - "Docile": "Docile", - "Relaxed": "Relaxed", - "Impish": "Impish", - "Lax": "Lax", - "Timid": "Timid", - "Hasty": "Hasty", - "Serious": "Serious", - "Jolly": "Jolly", - "Naive": "Naive", - "Modest": "Modest", - "Mild": "Mild", - "Quiet": "Quiet", - "Bashful": "Bashful", - "Rash": "Rash", - "Calm": "Calm", - "Gentle": "Gentle", - "Sassy": "Sassy", - "Careful": "Careful", - "Quirky": "Quirky" -} as const; diff --git a/src/locales/ca_ES/party-ui-handler.json b/src/locales/ca_ES/party-ui-handler.json new file mode 100644 index 00000000000..9e26dfeeb6e --- /dev/null +++ b/src/locales/ca_ES/party-ui-handler.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/src/locales/ca_ES/pokeball.json b/src/locales/ca_ES/pokeball.json new file mode 100644 index 00000000000..9e26dfeeb6e --- /dev/null +++ b/src/locales/ca_ES/pokeball.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/src/locales/ca_ES/pokeball.ts b/src/locales/ca_ES/pokeball.ts deleted file mode 100644 index 01017cac46d..00000000000 --- a/src/locales/ca_ES/pokeball.ts +++ /dev/null @@ -1,10 +0,0 @@ -import { SimpleTranslationEntries } from "#app/interfaces/locales"; - -export const pokeball: SimpleTranslationEntries = { - "pokeBall": "Poké Ball", - "greatBall": "Great Ball", - "ultraBall": "Ultra Ball", - "rogueBall": "Rogue Ball", - "masterBall": "Master Ball", - "luxuryBall": "Luxury Ball", -} as const; diff --git a/src/locales/ca_ES/pokemon-form-battle.json b/src/locales/ca_ES/pokemon-form-battle.json new file mode 100644 index 00000000000..9e26dfeeb6e --- /dev/null +++ b/src/locales/ca_ES/pokemon-form-battle.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/src/locales/ca_ES/pokemon-form.json b/src/locales/ca_ES/pokemon-form.json new file mode 100644 index 00000000000..9e26dfeeb6e --- /dev/null +++ b/src/locales/ca_ES/pokemon-form.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/src/locales/ca_ES/pokemon-form.ts b/src/locales/ca_ES/pokemon-form.ts deleted file mode 100644 index 922f23fafea..00000000000 --- a/src/locales/ca_ES/pokemon-form.ts +++ /dev/null @@ -1,198 +0,0 @@ -import { SimpleTranslationEntries } from "#app/interfaces/locales"; - -export const battlePokemonForm: SimpleTranslationEntries = { - "mega": "Mega {{pokemonName}}", - "mega-x": "Mega {{pokemonName}} X", - "mega-y": "Mega {{pokemonName}} Y", - "primal": "Primal {{pokemonName}}", - "gigantamax": "G-Max {{pokemonName}}", - "eternamax": "E-Max {{pokemonName}}", - - "megaChange": "{{preName}} Mega Evolved\ninto {{pokemonName}}!", - "gigantamaxChange": "{{preName}} Gigantamaxed\ninto {{pokemonName}}!", - "eternamaxChange": "{{preName}} Eternamaxed\ninto {{pokemonName}}!", - "revertChange": "{{pokemonName}} reverted\nto its original form!", - "formChange": "{{preName}} changed form!", - "disguiseChange": "Its disguise served it as a decoy!", -} as const; - -export const pokemonForm: SimpleTranslationEntries = { - // Starters forms - // 1G - "pikachuCosplay": "Cosplay", - "pikachuCoolCosplay": "Cool Cosplay", - "pikachuBeautyCosplay": "Beauty Cosplay", - "pikachuCuteCosplay": "Cute Cosplay", - "pikachuSmartCosplay": "Smart Cosplay", - "pikachuToughCosplay": "Tough Cosplay", - "pikachuPartner": "Partner", - "eeveePartner": "Partner", - // 2G - "pichuSpiky": "Spiky", - "unownA": "A", - "unownB": "B", - "unownC": "C", - "unownD": "D", - "unownE": "E", - "unownF": "F", - "unownG": "G", - "unownH": "H", - "unownI": "I", - "unownJ": "J", - "unownK": "K", - "unownL": "L", - "unownM": "M", - "unownN": "N", - "unownO": "O", - "unownP": "P", - "unownQ": "Q", - "unownR": "R", - "unownS": "S", - "unownT": "T", - "unownU": "U", - "unownV": "V", - "unownW": "W", - "unownX": "X", - "unownY": "Y", - "unownZ": "Z", - "unownExclamation": "!", - "unownQuestion": "?", - // 3G - "castformSunny": "Sunny", - "castformRainy": "Rainy", - "castformSnowy": "Snowy", - "deoxysNormal": "Normal", - // 4G - "burmyPlant": "Plant", - "burmySandy": "Sandy", - "burmyTrash": "Trash", - "shellosEast": "East", - "shellosWest": "West", - "rotomHeat": "Heat", - "rotomWash": "Wash", - "rotomFrost": "Frost", - "rotomFan": "Fan", - "rotomMow": "Mow", - "giratinaAltered": "Altered", - "shayminLand": "Land", - // 5G - "basculinRedStriped": "Red Striped", - "basculinBlueStriped": "Blue Striped", - "basculinWhiteStriped": "White Striped", - "deerlingSpring": "Spring", - "deerlingSummer": "Summer", - "deerlingAutumn": "Autumn", - "deerlingWinter": "Winter", - "tornadusIncarnate": "Incarnate", - "thundurusIncarnate": "Incarnate", - "landorusIncarnate": "Incarnate", - "keldeoOrdinary": "Ordinary", - "meloettaAria": "Aria", - // 6G - "froakieBattleBond": "Battle Bond", - "scatterbugMeadow": "Meadow", - "scatterbugIcySnow": "Icy Snow", - "scatterbugPolar": "Polar", - "scatterbugTundra": "Tundra", - "scatterbugContinental": "Continental", - "scatterbugGarden": "Garden", - "scatterbugElegant": "Elegant", - "scatterbugModern": "Modern", - "scatterbugMarine": "Marine", - "scatterbugArchipelago": "Archipelago", - "scatterbugHighPlains": "High Plains", - "scatterbugSandstorm": "Sandstorm", - "scatterbugRiver": "River", - "scatterbugMonsoon": "Monsoon", - "scatterbugSavanna": "Savanna", - "scatterbugSun": "Sun", - "scatterbugOcean": "Ocean", - "scatterbugJungle": "Jungle", - "scatterbugFancy": "Fancy", - "scatterbugPokeBall": "Poké Ball", - "flabebeRed": "Red", - "flabebeYellow": "Yellow", - "flabebeOrange": "Orange", - "flabebeBlue": "Blue", - "flabebeWhite": "White", - "furfrouHeart": "Heart", - "furfrouStar": "Star", - "furfrouDiamond": "Diamond", - "furfrouDebutante": "Debutante", - "furfrouMatron": "Matron", - "furfrouDandy": "Dandy", - "furfrouLaReine": "La Reine", - "furfrouKabuki": "Kabuki", - "furfrouPharaoh": "Pharaoh", - "pumpkabooSmall": "Small", - "pumpkabooLarge": "Large", - "pumpkabooSuper": "Super", - "xerneasNeutral": "Neutral", - "xerneasActive": "Active", - "zygarde50": "50% Forme", - "zygarde10": "10% Forme", - "zygarde50Pc": "50% Forme Power Construct", - "zygarde10Pc": "10% Forme Power Construct", - "zygardeComplete": "Complete Forme", - // 7G - "oricorioBaile": "Baile", - "oricorioPompom": "Pom-Pom", - "oricorioPau": "Pau", - "oricorioSensu": "Sensu", - "rockruffOwnTempo": "Own Tempo", - "miniorRedMeteor": "Red Meteor", - "miniorOrangeMeteor": "Orange Meteor", - "miniorYellowMeteor": "Yellow Meteor", - "miniorGreenMeteor": "Green Meteor", - "miniorBlueMeteor": "Blue Meteor", - "miniorIndigoMeteor": "Indigo Meteor", - "miniorVioletMeteor": "Violet Meteor", - "miniorRed": "Red", - "miniorOrange": "Orange", - "miniorYellow": "Yellow", - "miniorGreen": "Green", - "miniorBlue": "Blue", - "miniorIndigo": "Indigo", - "miniorViolet": "Violet", - "mimikyuDisguised": "Disguised", - "mimikyuBusted": "Busted", - "magearnaOriginal": "Original", - "marshadowZenith": "Zenith", - // 8G - "sinisteaPhony": "Phony", - "sinisteaAntique": "Antique", - "eiscueNoIce": "No Ice", - "indeedeeMale": "Male", - "indeedeeFemale": "Female", - "morpekoFullBelly": "Full Belly", - "zacianHeroOfManyBattles": "Hero Of Many Battles", - "zamazentaHeroOfManyBattles": "Hero Of Many Battles", - "zarudeDada": "Dada", - "enamorusIncarnate": "Incarnate", - // 9G - "squawkabillyGreenPlumage": "Green Plumage", - "squawkabillyBluePlumage": "Blue Plumage", - "squawkabillyYellowPlumage": "Yellow Plumage", - "squawkabillyWhitePlumage": "White Plumage", - "tatsugiriCurly": "Curly", - "tatsugiriDroopy": "Droopy", - "tatsugiriStretchy": "Stretchy", - "gimmighoulChest": "Chest", - "gimmighoulRoaming": "Roaming", - "koraidonApexBuild": "Apex Build", - "koraidonLimitedBuild":"Limited Build", - "koraidonSprintingBuild":"Sprinting Build", - "koraidonSwimmingBuild":"Swimming Build", - "koraidonGlidingBuild":"Gliding Build", - "miraidonUltimateMode":"Ultimate Mode", - "miraidonLowPowerMode":"Low Power Mode", - "miraidonDriveMode":"Drive Mode", - "miraidonAquaticMode":"Aquatic Mode", - "miraidonGlideMode":"Glide Mode", - "poltchageistCounterfeit": "Counterfeit", - "poltchageistArtisan": "Artisan", - "paldeaTaurosCombat": "Combat", - "paldeaTaurosBlaze": "Blaze", - "paldeaTaurosAqua": "Aqua", - -} as const; diff --git a/src/locales/ca_ES/pokemon-info-container.json b/src/locales/ca_ES/pokemon-info-container.json new file mode 100644 index 00000000000..9e26dfeeb6e --- /dev/null +++ b/src/locales/ca_ES/pokemon-info-container.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/src/locales/ca_ES/pokemon-info-container.ts b/src/locales/ca_ES/pokemon-info-container.ts deleted file mode 100644 index fd8acfb2e3e..00000000000 --- a/src/locales/ca_ES/pokemon-info-container.ts +++ /dev/null @@ -1,9 +0,0 @@ -import { SimpleTranslationEntries } from "#app/interfaces/locales"; - -export const pokemonInfoContainer: SimpleTranslationEntries = { - "moveset": "Moveset", - "gender": "Gender:", - "ability": "Ability:", - "nature": "Nature:", - "form": "Form:" -} as const; diff --git a/src/locales/ca_ES/pokemon-info.json b/src/locales/ca_ES/pokemon-info.json new file mode 100644 index 00000000000..9e26dfeeb6e --- /dev/null +++ b/src/locales/ca_ES/pokemon-info.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/src/locales/ca_ES/pokemon-info.ts b/src/locales/ca_ES/pokemon-info.ts deleted file mode 100644 index f31fdac69ab..00000000000 --- a/src/locales/ca_ES/pokemon-info.ts +++ /dev/null @@ -1,43 +0,0 @@ -import { PokemonInfoTranslationEntries } from "#app/interfaces/locales"; - -export const pokemonInfo: PokemonInfoTranslationEntries = { - Stat: { - "HP": "Max. HP", - "HPshortened": "MaxHP", - "ATK": "Attack", - "ATKshortened": "Atk", - "DEF": "Defense", - "DEFshortened": "Def", - "SPATK": "Sp. Atk", - "SPATKshortened": "SpAtk", - "SPDEF": "Sp. Def", - "SPDEFshortened": "SpDef", - "SPD": "Speed", - "SPDshortened": "Spd", - "ACC": "Accuracy", - "EVA": "Evasiveness" - }, - - Type: { - "UNKNOWN": "Unknown", - "NORMAL": "Normal", - "FIGHTING": "Fighting", - "FLYING": "Flying", - "POISON": "Poison", - "GROUND": "Ground", - "ROCK": "Rock", - "BUG": "Bug", - "GHOST": "Ghost", - "STEEL": "Steel", - "FIRE": "Fire", - "WATER": "Water", - "GRASS": "Grass", - "ELECTRIC": "Electric", - "PSYCHIC": "Psychic", - "ICE": "Ice", - "DRAGON": "Dragon", - "DARK": "Dark", - "FAIRY": "Fairy", - "STELLAR": "Stellar", - }, -} as const; diff --git a/src/locales/ca_ES/pokemon-summary.json b/src/locales/ca_ES/pokemon-summary.json new file mode 100644 index 00000000000..9e26dfeeb6e --- /dev/null +++ b/src/locales/ca_ES/pokemon-summary.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/src/locales/ca_ES/pokemon-summary.ts b/src/locales/ca_ES/pokemon-summary.ts deleted file mode 100644 index 484ea2a9d67..00000000000 --- a/src/locales/ca_ES/pokemon-summary.ts +++ /dev/null @@ -1,20 +0,0 @@ -import { TranslationEntries } from "#app/interfaces/locales"; - -export const pokemonSummary: TranslationEntries = { - "pokemonInfo": "Pokémon Info", - "status": "Status", - "powerAccuracyCategory": "Power\nAccuracy\nCategory", - "type": "Type", - "unknownTrainer": "Unknown", - "ot": "OT", - "nature": "nature", - "expPoints": "Exp. Points", - "nextLv": "Next Lv.", - "cancel": "Cancel", - - "memoString": "{{natureFragment}} nature,\n{{metFragment}}", - "metFragment": { - "normal": "met at Lv{{level}},\n{{biome}}.", - "apparently": "apparently met at Lv{{level}},\n{{biome}}.", - }, -} as const; diff --git a/src/locales/ca_ES/pokemon.json b/src/locales/ca_ES/pokemon.json new file mode 100644 index 00000000000..9e26dfeeb6e --- /dev/null +++ b/src/locales/ca_ES/pokemon.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/src/locales/ca_ES/pokemon.ts b/src/locales/ca_ES/pokemon.ts deleted file mode 100644 index 297bbcc3975..00000000000 --- a/src/locales/ca_ES/pokemon.ts +++ /dev/null @@ -1,1086 +0,0 @@ -import { SimpleTranslationEntries } from "#app/interfaces/locales"; - -export const pokemon: SimpleTranslationEntries = { - "bulbasaur": "Bulbasaur", - "ivysaur": "Ivysaur", - "venusaur": "Venusaur", - "charmander": "Charmander", - "charmeleon": "Charmeleon", - "charizard": "Charizard", - "squirtle": "Squirtle", - "wartortle": "Wartortle", - "blastoise": "Blastoise", - "caterpie": "Caterpie", - "metapod": "Metapod", - "butterfree": "Butterfree", - "weedle": "Weedle", - "kakuna": "Kakuna", - "beedrill": "Beedrill", - "pidgey": "Pidgey", - "pidgeotto": "Pidgeotto", - "pidgeot": "Pidgeot", - "rattata": "Rattata", - "raticate": "Raticate", - "spearow": "Spearow", - "fearow": "Fearow", - "ekans": "Ekans", - "arbok": "Arbok", - "pikachu": "Pikachu", - "raichu": "Raichu", - "sandshrew": "Sandshrew", - "sandslash": "Sandslash", - "nidoran_f": "Nidoran♀", - "nidorina": "Nidorina", - "nidoqueen": "Nidoqueen", - "nidoran_m": "Nidoran♂", - "nidorino": "Nidorino", - "nidoking": "Nidoking", - "clefairy": "Clefairy", - "clefable": "Clefable", - "vulpix": "Vulpix", - "ninetales": "Ninetales", - "jigglypuff": "Jigglypuff", - "wigglytuff": "Wigglytuff", - "zubat": "Zubat", - "golbat": "Golbat", - "oddish": "Oddish", - "gloom": "Gloom", - "vileplume": "Vileplume", - "paras": "Paras", - "parasect": "Parasect", - "venonat": "Venonat", - "venomoth": "Venomoth", - "diglett": "Diglett", - "dugtrio": "Dugtrio", - "meowth": "Meowth", - "persian": "Persian", - "psyduck": "Psyduck", - "golduck": "Golduck", - "mankey": "Mankey", - "primeape": "Primeape", - "growlithe": "Growlithe", - "arcanine": "Arcanine", - "poliwag": "Poliwag", - "poliwhirl": "Poliwhirl", - "poliwrath": "Poliwrath", - "abra": "Abra", - "kadabra": "Kadabra", - "alakazam": "Alakazam", - "machop": "Machop", - "machoke": "Machoke", - "machamp": "Machamp", - "bellsprout": "Bellsprout", - "weepinbell": "Weepinbell", - "victreebel": "Victreebel", - "tentacool": "Tentacool", - "tentacruel": "Tentacruel", - "geodude": "Geodude", - "graveler": "Graveler", - "golem": "Golem", - "ponyta": "Ponyta", - "rapidash": "Rapidash", - "slowpoke": "Slowpoke", - "slowbro": "Slowbro", - "magnemite": "Magnemite", - "magneton": "Magneton", - "farfetchd": "Farfetch'd", - "doduo": "Doduo", - "dodrio": "Dodrio", - "seel": "Seel", - "dewgong": "Dewgong", - "grimer": "Grimer", - "muk": "Muk", - "shellder": "Shellder", - "cloyster": "Cloyster", - "gastly": "Gastly", - "haunter": "Haunter", - "gengar": "Gengar", - "onix": "Onix", - "drowzee": "Drowzee", - "hypno": "Hypno", - "krabby": "Krabby", - "kingler": "Kingler", - "voltorb": "Voltorb", - "electrode": "Electrode", - "exeggcute": "Exeggcute", - "exeggutor": "Exeggutor", - "cubone": "Cubone", - "marowak": "Marowak", - "hitmonlee": "Hitmonlee", - "hitmonchan": "Hitmonchan", - "lickitung": "Lickitung", - "koffing": "Koffing", - "weezing": "Weezing", - "rhyhorn": "Rhyhorn", - "rhydon": "Rhydon", - "chansey": "Chansey", - "tangela": "Tangela", - "kangaskhan": "Kangaskhan", - "horsea": "Horsea", - "seadra": "Seadra", - "goldeen": "Goldeen", - "seaking": "Seaking", - "staryu": "Staryu", - "starmie": "Starmie", - "mr_mime": "Mr. Mime", - "scyther": "Scyther", - "jynx": "Jynx", - "electabuzz": "Electabuzz", - "magmar": "Magmar", - "pinsir": "Pinsir", - "tauros": "Tauros", - "magikarp": "Magikarp", - "gyarados": "Gyarados", - "lapras": "Lapras", - "ditto": "Ditto", - "eevee": "Eevee", - "vaporeon": "Vaporeon", - "jolteon": "Jolteon", - "flareon": "Flareon", - "porygon": "Porygon", - "omanyte": "Omanyte", - "omastar": "Omastar", - "kabuto": "Kabuto", - "kabutops": "Kabutops", - "aerodactyl": "Aerodactyl", - "snorlax": "Snorlax", - "articuno": "Articuno", - "zapdos": "Zapdos", - "moltres": "Moltres", - "dratini": "Dratini", - "dragonair": "Dragonair", - "dragonite": "Dragonite", - "mewtwo": "Mewtwo", - "mew": "Mew", - "chikorita": "Chikorita", - "bayleef": "Bayleef", - "meganium": "Meganium", - "cyndaquil": "Cyndaquil", - "quilava": "Quilava", - "typhlosion": "Typhlosion", - "totodile": "Totodile", - "croconaw": "Croconaw", - "feraligatr": "Feraligatr", - "sentret": "Sentret", - "furret": "Furret", - "hoothoot": "Hoothoot", - "noctowl": "Noctowl", - "ledyba": "Ledyba", - "ledian": "Ledian", - "spinarak": "Spinarak", - "ariados": "Ariados", - "crobat": "Crobat", - "chinchou": "Chinchou", - "lanturn": "Lanturn", - "pichu": "Pichu", - "cleffa": "Cleffa", - "igglybuff": "Igglybuff", - "togepi": "Togepi", - "togetic": "Togetic", - "natu": "Natu", - "xatu": "Xatu", - "mareep": "Mareep", - "flaaffy": "Flaaffy", - "ampharos": "Ampharos", - "bellossom": "Bellossom", - "marill": "Marill", - "azumarill": "Azumarill", - "sudowoodo": "Sudowoodo", - "politoed": "Politoed", - "hoppip": "Hoppip", - "skiploom": "Skiploom", - "jumpluff": "Jumpluff", - "aipom": "Aipom", - "sunkern": "Sunkern", - "sunflora": "Sunflora", - "yanma": "Yanma", - "wooper": "Wooper", - "quagsire": "Quagsire", - "espeon": "Espeon", - "umbreon": "Umbreon", - "murkrow": "Murkrow", - "slowking": "Slowking", - "misdreavus": "Misdreavus", - "unown": "Unown", - "wobbuffet": "Wobbuffet", - "girafarig": "Girafarig", - "pineco": "Pineco", - "forretress": "Forretress", - "dunsparce": "Dunsparce", - "gligar": "Gligar", - "steelix": "Steelix", - "snubbull": "Snubbull", - "granbull": "Granbull", - "qwilfish": "Qwilfish", - "scizor": "Scizor", - "shuckle": "Shuckle", - "heracross": "Heracross", - "sneasel": "Sneasel", - "teddiursa": "Teddiursa", - "ursaring": "Ursaring", - "slugma": "Slugma", - "magcargo": "Magcargo", - "swinub": "Swinub", - "piloswine": "Piloswine", - "corsola": "Corsola", - "remoraid": "Remoraid", - "octillery": "Octillery", - "delibird": "Delibird", - "mantine": "Mantine", - "skarmory": "Skarmory", - "houndour": "Houndour", - "houndoom": "Houndoom", - "kingdra": "Kingdra", - "phanpy": "Phanpy", - "donphan": "Donphan", - "porygon2": "Porygon2", - "stantler": "Stantler", - "smeargle": "Smeargle", - "tyrogue": "Tyrogue", - "hitmontop": "Hitmontop", - "smoochum": "Smoochum", - "elekid": "Elekid", - "magby": "Magby", - "miltank": "Miltank", - "blissey": "Blissey", - "raikou": "Raikou", - "entei": "Entei", - "suicune": "Suicune", - "larvitar": "Larvitar", - "pupitar": "Pupitar", - "tyranitar": "Tyranitar", - "lugia": "Lugia", - "ho_oh": "Ho-Oh", - "celebi": "Celebi", - "treecko": "Treecko", - "grovyle": "Grovyle", - "sceptile": "Sceptile", - "torchic": "Torchic", - "combusken": "Combusken", - "blaziken": "Blaziken", - "mudkip": "Mudkip", - "marshtomp": "Marshtomp", - "swampert": "Swampert", - "poochyena": "Poochyena", - "mightyena": "Mightyena", - "zigzagoon": "Zigzagoon", - "linoone": "Linoone", - "wurmple": "Wurmple", - "silcoon": "Silcoon", - "beautifly": "Beautifly", - "cascoon": "Cascoon", - "dustox": "Dustox", - "lotad": "Lotad", - "lombre": "Lombre", - "ludicolo": "Ludicolo", - "seedot": "Seedot", - "nuzleaf": "Nuzleaf", - "shiftry": "Shiftry", - "taillow": "Taillow", - "swellow": "Swellow", - "wingull": "Wingull", - "pelipper": "Pelipper", - "ralts": "Ralts", - "kirlia": "Kirlia", - "gardevoir": "Gardevoir", - "surskit": "Surskit", - "masquerain": "Masquerain", - "shroomish": "Shroomish", - "breloom": "Breloom", - "slakoth": "Slakoth", - "vigoroth": "Vigoroth", - "slaking": "Slaking", - "nincada": "Nincada", - "ninjask": "Ninjask", - "shedinja": "Shedinja", - "whismur": "Whismur", - "loudred": "Loudred", - "exploud": "Exploud", - "makuhita": "Makuhita", - "hariyama": "Hariyama", - "azurill": "Azurill", - "nosepass": "Nosepass", - "skitty": "Skitty", - "delcatty": "Delcatty", - "sableye": "Sableye", - "mawile": "Mawile", - "aron": "Aron", - "lairon": "Lairon", - "aggron": "Aggron", - "meditite": "Meditite", - "medicham": "Medicham", - "electrike": "Electrike", - "manectric": "Manectric", - "plusle": "Plusle", - "minun": "Minun", - "volbeat": "Volbeat", - "illumise": "Illumise", - "roselia": "Roselia", - "gulpin": "Gulpin", - "swalot": "Swalot", - "carvanha": "Carvanha", - "sharpedo": "Sharpedo", - "wailmer": "Wailmer", - "wailord": "Wailord", - "numel": "Numel", - "camerupt": "Camerupt", - "torkoal": "Torkoal", - "spoink": "Spoink", - "grumpig": "Grumpig", - "spinda": "Spinda", - "trapinch": "Trapinch", - "vibrava": "Vibrava", - "flygon": "Flygon", - "cacnea": "Cacnea", - "cacturne": "Cacturne", - "swablu": "Swablu", - "altaria": "Altaria", - "zangoose": "Zangoose", - "seviper": "Seviper", - "lunatone": "Lunatone", - "solrock": "Solrock", - "barboach": "Barboach", - "whiscash": "Whiscash", - "corphish": "Corphish", - "crawdaunt": "Crawdaunt", - "baltoy": "Baltoy", - "claydol": "Claydol", - "lileep": "Lileep", - "cradily": "Cradily", - "anorith": "Anorith", - "armaldo": "Armaldo", - "feebas": "Feebas", - "milotic": "Milotic", - "castform": "Castform", - "kecleon": "Kecleon", - "shuppet": "Shuppet", - "banette": "Banette", - "duskull": "Duskull", - "dusclops": "Dusclops", - "tropius": "Tropius", - "chimecho": "Chimecho", - "absol": "Absol", - "wynaut": "Wynaut", - "snorunt": "Snorunt", - "glalie": "Glalie", - "spheal": "Spheal", - "sealeo": "Sealeo", - "walrein": "Walrein", - "clamperl": "Clamperl", - "huntail": "Huntail", - "gorebyss": "Gorebyss", - "relicanth": "Relicanth", - "luvdisc": "Luvdisc", - "bagon": "Bagon", - "shelgon": "Shelgon", - "salamence": "Salamence", - "beldum": "Beldum", - "metang": "Metang", - "metagross": "Metagross", - "regirock": "Regirock", - "regice": "Regice", - "registeel": "Registeel", - "latias": "Latias", - "latios": "Latios", - "kyogre": "Kyogre", - "groudon": "Groudon", - "rayquaza": "Rayquaza", - "jirachi": "Jirachi", - "deoxys": "Deoxys", - "turtwig": "Turtwig", - "grotle": "Grotle", - "torterra": "Torterra", - "chimchar": "Chimchar", - "monferno": "Monferno", - "infernape": "Infernape", - "piplup": "Piplup", - "prinplup": "Prinplup", - "empoleon": "Empoleon", - "starly": "Starly", - "staravia": "Staravia", - "staraptor": "Staraptor", - "bidoof": "Bidoof", - "bibarel": "Bibarel", - "kricketot": "Kricketot", - "kricketune": "Kricketune", - "shinx": "Shinx", - "luxio": "Luxio", - "luxray": "Luxray", - "budew": "Budew", - "roserade": "Roserade", - "cranidos": "Cranidos", - "rampardos": "Rampardos", - "shieldon": "Shieldon", - "bastiodon": "Bastiodon", - "burmy": "Burmy", - "wormadam": "Wormadam", - "mothim": "Mothim", - "combee": "Combee", - "vespiquen": "Vespiquen", - "pachirisu": "Pachirisu", - "buizel": "Buizel", - "floatzel": "Floatzel", - "cherubi": "Cherubi", - "cherrim": "Cherrim", - "shellos": "Shellos", - "gastrodon": "Gastrodon", - "ambipom": "Ambipom", - "drifloon": "Drifloon", - "drifblim": "Drifblim", - "buneary": "Buneary", - "lopunny": "Lopunny", - "mismagius": "Mismagius", - "honchkrow": "Honchkrow", - "glameow": "Glameow", - "purugly": "Purugly", - "chingling": "Chingling", - "stunky": "Stunky", - "skuntank": "Skuntank", - "bronzor": "Bronzor", - "bronzong": "Bronzong", - "bonsly": "Bonsly", - "mime_jr": "Mime Jr.", - "happiny": "Happiny", - "chatot": "Chatot", - "spiritomb": "Spiritomb", - "gible": "Gible", - "gabite": "Gabite", - "garchomp": "Garchomp", - "munchlax": "Munchlax", - "riolu": "Riolu", - "lucario": "Lucario", - "hippopotas": "Hippopotas", - "hippowdon": "Hippowdon", - "skorupi": "Skorupi", - "drapion": "Drapion", - "croagunk": "Croagunk", - "toxicroak": "Toxicroak", - "carnivine": "Carnivine", - "finneon": "Finneon", - "lumineon": "Lumineon", - "mantyke": "Mantyke", - "snover": "Snover", - "abomasnow": "Abomasnow", - "weavile": "Weavile", - "magnezone": "Magnezone", - "lickilicky": "Lickilicky", - "rhyperior": "Rhyperior", - "tangrowth": "Tangrowth", - "electivire": "Electivire", - "magmortar": "Magmortar", - "togekiss": "Togekiss", - "yanmega": "Yanmega", - "leafeon": "Leafeon", - "glaceon": "Glaceon", - "gliscor": "Gliscor", - "mamoswine": "Mamoswine", - "porygon_z": "Porygon-Z", - "gallade": "Gallade", - "probopass": "Probopass", - "dusknoir": "Dusknoir", - "froslass": "Froslass", - "rotom": "Rotom", - "uxie": "Uxie", - "mesprit": "Mesprit", - "azelf": "Azelf", - "dialga": "Dialga", - "palkia": "Palkia", - "heatran": "Heatran", - "regigigas": "Regigigas", - "giratina": "Giratina", - "cresselia": "Cresselia", - "phione": "Phione", - "manaphy": "Manaphy", - "darkrai": "Darkrai", - "shaymin": "Shaymin", - "arceus": "Arceus", - "victini": "Victini", - "snivy": "Snivy", - "servine": "Servine", - "serperior": "Serperior", - "tepig": "Tepig", - "pignite": "Pignite", - "emboar": "Emboar", - "oshawott": "Oshawott", - "dewott": "Dewott", - "samurott": "Samurott", - "patrat": "Patrat", - "watchog": "Watchog", - "lillipup": "Lillipup", - "herdier": "Herdier", - "stoutland": "Stoutland", - "purrloin": "Purrloin", - "liepard": "Liepard", - "pansage": "Pansage", - "simisage": "Simisage", - "pansear": "Pansear", - "simisear": "Simisear", - "panpour": "Panpour", - "simipour": "Simipour", - "munna": "Munna", - "musharna": "Musharna", - "pidove": "Pidove", - "tranquill": "Tranquill", - "unfezant": "Unfezant", - "blitzle": "Blitzle", - "zebstrika": "Zebstrika", - "roggenrola": "Roggenrola", - "boldore": "Boldore", - "gigalith": "Gigalith", - "woobat": "Woobat", - "swoobat": "Swoobat", - "drilbur": "Drilbur", - "excadrill": "Excadrill", - "audino": "Audino", - "timburr": "Timburr", - "gurdurr": "Gurdurr", - "conkeldurr": "Conkeldurr", - "tympole": "Tympole", - "palpitoad": "Palpitoad", - "seismitoad": "Seismitoad", - "throh": "Throh", - "sawk": "Sawk", - "sewaddle": "Sewaddle", - "swadloon": "Swadloon", - "leavanny": "Leavanny", - "venipede": "Venipede", - "whirlipede": "Whirlipede", - "scolipede": "Scolipede", - "cottonee": "Cottonee", - "whimsicott": "Whimsicott", - "petilil": "Petilil", - "lilligant": "Lilligant", - "basculin": "Basculin", - "sandile": "Sandile", - "krokorok": "Krokorok", - "krookodile": "Krookodile", - "darumaka": "Darumaka", - "darmanitan": "Darmanitan", - "maractus": "Maractus", - "dwebble": "Dwebble", - "crustle": "Crustle", - "scraggy": "Scraggy", - "scrafty": "Scrafty", - "sigilyph": "Sigilyph", - "yamask": "Yamask", - "cofagrigus": "Cofagrigus", - "tirtouga": "Tirtouga", - "carracosta": "Carracosta", - "archen": "Archen", - "archeops": "Archeops", - "trubbish": "Trubbish", - "garbodor": "Garbodor", - "zorua": "Zorua", - "zoroark": "Zoroark", - "minccino": "Minccino", - "cinccino": "Cinccino", - "gothita": "Gothita", - "gothorita": "Gothorita", - "gothitelle": "Gothitelle", - "solosis": "Solosis", - "duosion": "Duosion", - "reuniclus": "Reuniclus", - "ducklett": "Ducklett", - "swanna": "Swanna", - "vanillite": "Vanillite", - "vanillish": "Vanillish", - "vanilluxe": "Vanilluxe", - "deerling": "Deerling", - "sawsbuck": "Sawsbuck", - "emolga": "Emolga", - "karrablast": "Karrablast", - "escavalier": "Escavalier", - "foongus": "Foongus", - "amoonguss": "Amoonguss", - "frillish": "Frillish", - "jellicent": "Jellicent", - "alomomola": "Alomomola", - "joltik": "Joltik", - "galvantula": "Galvantula", - "ferroseed": "Ferroseed", - "ferrothorn": "Ferrothorn", - "klink": "Klink", - "klang": "Klang", - "klinklang": "Klinklang", - "tynamo": "Tynamo", - "eelektrik": "Eelektrik", - "eelektross": "Eelektross", - "elgyem": "Elgyem", - "beheeyem": "Beheeyem", - "litwick": "Litwick", - "lampent": "Lampent", - "chandelure": "Chandelure", - "axew": "Axew", - "fraxure": "Fraxure", - "haxorus": "Haxorus", - "cubchoo": "Cubchoo", - "beartic": "Beartic", - "cryogonal": "Cryogonal", - "shelmet": "Shelmet", - "accelgor": "Accelgor", - "stunfisk": "Stunfisk", - "mienfoo": "Mienfoo", - "mienshao": "Mienshao", - "druddigon": "Druddigon", - "golett": "Golett", - "golurk": "Golurk", - "pawniard": "Pawniard", - "bisharp": "Bisharp", - "bouffalant": "Bouffalant", - "rufflet": "Rufflet", - "braviary": "Braviary", - "vullaby": "Vullaby", - "mandibuzz": "Mandibuzz", - "heatmor": "Heatmor", - "durant": "Durant", - "deino": "Deino", - "zweilous": "Zweilous", - "hydreigon": "Hydreigon", - "larvesta": "Larvesta", - "volcarona": "Volcarona", - "cobalion": "Cobalion", - "terrakion": "Terrakion", - "virizion": "Virizion", - "tornadus": "Tornadus", - "thundurus": "Thundurus", - "reshiram": "Reshiram", - "zekrom": "Zekrom", - "landorus": "Landorus", - "kyurem": "Kyurem", - "keldeo": "Keldeo", - "meloetta": "Meloetta", - "genesect": "Genesect", - "chespin": "Chespin", - "quilladin": "Quilladin", - "chesnaught": "Chesnaught", - "fennekin": "Fennekin", - "braixen": "Braixen", - "delphox": "Delphox", - "froakie": "Froakie", - "frogadier": "Frogadier", - "greninja": "Greninja", - "bunnelby": "Bunnelby", - "diggersby": "Diggersby", - "fletchling": "Fletchling", - "fletchinder": "Fletchinder", - "talonflame": "Talonflame", - "scatterbug": "Scatterbug", - "spewpa": "Spewpa", - "vivillon": "Vivillon", - "litleo": "Litleo", - "pyroar": "Pyroar", - "flabebe": "Flabébé", - "floette": "Floette", - "florges": "Florges", - "skiddo": "Skiddo", - "gogoat": "Gogoat", - "pancham": "Pancham", - "pangoro": "Pangoro", - "furfrou": "Furfrou", - "espurr": "Espurr", - "meowstic": "Meowstic", - "honedge": "Honedge", - "doublade": "Doublade", - "aegislash": "Aegislash", - "spritzee": "Spritzee", - "aromatisse": "Aromatisse", - "swirlix": "Swirlix", - "slurpuff": "Slurpuff", - "inkay": "Inkay", - "malamar": "Malamar", - "binacle": "Binacle", - "barbaracle": "Barbaracle", - "skrelp": "Skrelp", - "dragalge": "Dragalge", - "clauncher": "Clauncher", - "clawitzer": "Clawitzer", - "helioptile": "Helioptile", - "heliolisk": "Heliolisk", - "tyrunt": "Tyrunt", - "tyrantrum": "Tyrantrum", - "amaura": "Amaura", - "aurorus": "Aurorus", - "sylveon": "Sylveon", - "hawlucha": "Hawlucha", - "dedenne": "Dedenne", - "carbink": "Carbink", - "goomy": "Goomy", - "sliggoo": "Sliggoo", - "goodra": "Goodra", - "klefki": "Klefki", - "phantump": "Phantump", - "trevenant": "Trevenant", - "pumpkaboo": "Pumpkaboo", - "gourgeist": "Gourgeist", - "bergmite": "Bergmite", - "avalugg": "Avalugg", - "noibat": "Noibat", - "noivern": "Noivern", - "xerneas": "Xerneas", - "yveltal": "Yveltal", - "zygarde": "Zygarde", - "diancie": "Diancie", - "hoopa": "Hoopa", - "volcanion": "Volcanion", - "rowlet": "Rowlet", - "dartrix": "Dartrix", - "decidueye": "Decidueye", - "litten": "Litten", - "torracat": "Torracat", - "incineroar": "Incineroar", - "popplio": "Popplio", - "brionne": "Brionne", - "primarina": "Primarina", - "pikipek": "Pikipek", - "trumbeak": "Trumbeak", - "toucannon": "Toucannon", - "yungoos": "Yungoos", - "gumshoos": "Gumshoos", - "grubbin": "Grubbin", - "charjabug": "Charjabug", - "vikavolt": "Vikavolt", - "crabrawler": "Crabrawler", - "crabominable": "Crabominable", - "oricorio": "Oricorio", - "cutiefly": "Cutiefly", - "ribombee": "Ribombee", - "rockruff": "Rockruff", - "lycanroc": "Lycanroc", - "wishiwashi": "Wishiwashi", - "mareanie": "Mareanie", - "toxapex": "Toxapex", - "mudbray": "Mudbray", - "mudsdale": "Mudsdale", - "dewpider": "Dewpider", - "araquanid": "Araquanid", - "fomantis": "Fomantis", - "lurantis": "Lurantis", - "morelull": "Morelull", - "shiinotic": "Shiinotic", - "salandit": "Salandit", - "salazzle": "Salazzle", - "stufful": "Stufful", - "bewear": "Bewear", - "bounsweet": "Bounsweet", - "steenee": "Steenee", - "tsareena": "Tsareena", - "comfey": "Comfey", - "oranguru": "Oranguru", - "passimian": "Passimian", - "wimpod": "Wimpod", - "golisopod": "Golisopod", - "sandygast": "Sandygast", - "palossand": "Palossand", - "pyukumuku": "Pyukumuku", - "type_null": "Type: Null", - "silvally": "Silvally", - "minior": "Minior", - "komala": "Komala", - "turtonator": "Turtonator", - "togedemaru": "Togedemaru", - "mimikyu": "Mimikyu", - "bruxish": "Bruxish", - "drampa": "Drampa", - "dhelmise": "Dhelmise", - "jangmo_o": "Jangmo-o", - "hakamo_o": "Hakamo-o", - "kommo_o": "Kommo-o", - "tapu_koko": "Tapu Koko", - "tapu_lele": "Tapu Lele", - "tapu_bulu": "Tapu Bulu", - "tapu_fini": "Tapu Fini", - "cosmog": "Cosmog", - "cosmoem": "Cosmoem", - "solgaleo": "Solgaleo", - "lunala": "Lunala", - "nihilego": "Nihilego", - "buzzwole": "Buzzwole", - "pheromosa": "Pheromosa", - "xurkitree": "Xurkitree", - "celesteela": "Celesteela", - "kartana": "Kartana", - "guzzlord": "Guzzlord", - "necrozma": "Necrozma", - "magearna": "Magearna", - "marshadow": "Marshadow", - "poipole": "Poipole", - "naganadel": "Naganadel", - "stakataka": "Stakataka", - "blacephalon": "Blacephalon", - "zeraora": "Zeraora", - "meltan": "Meltan", - "melmetal": "Melmetal", - "grookey": "Grookey", - "thwackey": "Thwackey", - "rillaboom": "Rillaboom", - "scorbunny": "Scorbunny", - "raboot": "Raboot", - "cinderace": "Cinderace", - "sobble": "Sobble", - "drizzile": "Drizzile", - "inteleon": "Inteleon", - "skwovet": "Skwovet", - "greedent": "Greedent", - "rookidee": "Rookidee", - "corvisquire": "Corvisquire", - "corviknight": "Corviknight", - "blipbug": "Blipbug", - "dottler": "Dottler", - "orbeetle": "Orbeetle", - "nickit": "Nickit", - "thievul": "Thievul", - "gossifleur": "Gossifleur", - "eldegoss": "Eldegoss", - "wooloo": "Wooloo", - "dubwool": "Dubwool", - "chewtle": "Chewtle", - "drednaw": "Drednaw", - "yamper": "Yamper", - "boltund": "Boltund", - "rolycoly": "Rolycoly", - "carkol": "Carkol", - "coalossal": "Coalossal", - "applin": "Applin", - "flapple": "Flapple", - "appletun": "Appletun", - "silicobra": "Silicobra", - "sandaconda": "Sandaconda", - "cramorant": "Cramorant", - "arrokuda": "Arrokuda", - "barraskewda": "Barraskewda", - "toxel": "Toxel", - "toxtricity": "Toxtricity", - "sizzlipede": "Sizzlipede", - "centiskorch": "Centiskorch", - "clobbopus": "Clobbopus", - "grapploct": "Grapploct", - "sinistea": "Sinistea", - "polteageist": "Polteageist", - "hatenna": "Hatenna", - "hattrem": "Hattrem", - "hatterene": "Hatterene", - "impidimp": "Impidimp", - "morgrem": "Morgrem", - "grimmsnarl": "Grimmsnarl", - "obstagoon": "Obstagoon", - "perrserker": "Perrserker", - "cursola": "Cursola", - "sirfetchd": "Sirfetch'd", - "mr_rime": "Mr. Rime", - "runerigus": "Runerigus", - "milcery": "Milcery", - "alcremie": "Alcremie", - "falinks": "Falinks", - "pincurchin": "Pincurchin", - "snom": "Snom", - "frosmoth": "Frosmoth", - "stonjourner": "Stonjourner", - "eiscue": "Eiscue", - "indeedee": "Indeedee", - "morpeko": "Morpeko", - "cufant": "Cufant", - "copperajah": "Copperajah", - "dracozolt": "Dracozolt", - "arctozolt": "Arctozolt", - "dracovish": "Dracovish", - "arctovish": "Arctovish", - "duraludon": "Duraludon", - "dreepy": "Dreepy", - "drakloak": "Drakloak", - "dragapult": "Dragapult", - "zacian": "Zacian", - "zamazenta": "Zamazenta", - "eternatus": "Eternatus", - "kubfu": "Kubfu", - "urshifu": "Urshifu", - "zarude": "Zarude", - "regieleki": "Regieleki", - "regidrago": "Regidrago", - "glastrier": "Glastrier", - "spectrier": "Spectrier", - "calyrex": "Calyrex", - "wyrdeer": "Wyrdeer", - "kleavor": "Kleavor", - "ursaluna": "Ursaluna", - "basculegion": "Basculegion", - "sneasler": "Sneasler", - "overqwil": "Overqwil", - "enamorus": "Enamorus", - "sprigatito": "Sprigatito", - "floragato": "Floragato", - "meowscarada": "Meowscarada", - "fuecoco": "Fuecoco", - "crocalor": "Crocalor", - "skeledirge": "Skeledirge", - "quaxly": "Quaxly", - "quaxwell": "Quaxwell", - "quaquaval": "Quaquaval", - "lechonk": "Lechonk", - "oinkologne": "Oinkologne", - "tarountula": "Tarountula", - "spidops": "Spidops", - "nymble": "Nymble", - "lokix": "Lokix", - "pawmi": "Pawmi", - "pawmo": "Pawmo", - "pawmot": "Pawmot", - "tandemaus": "Tandemaus", - "maushold": "Maushold", - "fidough": "Fidough", - "dachsbun": "Dachsbun", - "smoliv": "Smoliv", - "dolliv": "Dolliv", - "arboliva": "Arboliva", - "squawkabilly": "Squawkabilly", - "nacli": "Nacli", - "naclstack": "Naclstack", - "garganacl": "Garganacl", - "charcadet": "Charcadet", - "armarouge": "Armarouge", - "ceruledge": "Ceruledge", - "tadbulb": "Tadbulb", - "bellibolt": "Bellibolt", - "wattrel": "Wattrel", - "kilowattrel": "Kilowattrel", - "maschiff": "Maschiff", - "mabosstiff": "Mabosstiff", - "shroodle": "Shroodle", - "grafaiai": "Grafaiai", - "bramblin": "Bramblin", - "brambleghast": "Brambleghast", - "toedscool": "Toedscool", - "toedscruel": "Toedscruel", - "klawf": "Klawf", - "capsakid": "Capsakid", - "scovillain": "Scovillain", - "rellor": "Rellor", - "rabsca": "Rabsca", - "flittle": "Flittle", - "espathra": "Espathra", - "tinkatink": "Tinkatink", - "tinkatuff": "Tinkatuff", - "tinkaton": "Tinkaton", - "wiglett": "Wiglett", - "wugtrio": "Wugtrio", - "bombirdier": "Bombirdier", - "finizen": "Finizen", - "palafin": "Palafin", - "varoom": "Varoom", - "revavroom": "Revavroom", - "cyclizar": "Cyclizar", - "orthworm": "Orthworm", - "glimmet": "Glimmet", - "glimmora": "Glimmora", - "greavard": "Greavard", - "houndstone": "Houndstone", - "flamigo": "Flamigo", - "cetoddle": "Cetoddle", - "cetitan": "Cetitan", - "veluza": "Veluza", - "dondozo": "Dondozo", - "tatsugiri": "Tatsugiri", - "annihilape": "Annihilape", - "clodsire": "Clodsire", - "farigiraf": "Farigiraf", - "dudunsparce": "Dudunsparce", - "kingambit": "Kingambit", - "great_tusk": "Great Tusk", - "scream_tail": "Scream Tail", - "brute_bonnet": "Brute Bonnet", - "flutter_mane": "Flutter Mane", - "slither_wing": "Slither Wing", - "sandy_shocks": "Sandy Shocks", - "iron_treads": "Iron Treads", - "iron_bundle": "Iron Bundle", - "iron_hands": "Iron Hands", - "iron_jugulis": "Iron Jugulis", - "iron_moth": "Iron Moth", - "iron_thorns": "Iron Thorns", - "frigibax": "Frigibax", - "arctibax": "Arctibax", - "baxcalibur": "Baxcalibur", - "gimmighoul": "Gimmighoul", - "gholdengo": "Gholdengo", - "wo_chien": "Wo-Chien", - "chien_pao": "Chien-Pao", - "ting_lu": "Ting-Lu", - "chi_yu": "Chi-Yu", - "roaring_moon": "Roaring Moon", - "iron_valiant": "Iron Valiant", - "koraidon": "Koraidon", - "miraidon": "Miraidon", - "walking_wake": "Walking Wake", - "iron_leaves": "Iron Leaves", - "dipplin": "Dipplin", - "poltchageist": "Poltchageist", - "sinistcha": "Sinistcha", - "okidogi": "Okidogi", - "munkidori": "Munkidori", - "fezandipiti": "Fezandipiti", - "ogerpon": "Ogerpon", - "archaludon": "Archaludon", - "hydrapple": "Hydrapple", - "gouging_fire": "Gouging Fire", - "raging_bolt": "Raging Bolt", - "iron_boulder": "Iron Boulder", - "iron_crown": "Iron Crown", - "terapagos": "Terapagos", - "pecharunt": "Pecharunt", - "alola_rattata": "Rattata", - "alola_raticate": "Raticate", - "alola_raichu": "Raichu", - "alola_sandshrew": "Sandshrew", - "alola_sandslash": "Sandslash", - "alola_vulpix": "Vulpix", - "alola_ninetales": "Ninetales", - "alola_diglett": "Diglett", - "alola_dugtrio": "Dugtrio", - "alola_meowth": "Meowth", - "alola_persian": "Persian", - "alola_geodude": "Geodude", - "alola_graveler": "Graveler", - "alola_golem": "Golem", - "alola_grimer": "Grimer", - "alola_muk": "Muk", - "alola_exeggutor": "Exeggutor", - "alola_marowak": "Marowak", - "eternal_floette": "Floette", - "galar_meowth": "Meowth", - "galar_ponyta": "Ponyta", - "galar_rapidash": "Rapidash", - "galar_slowpoke": "Slowpoke", - "galar_slowbro": "Slowbro", - "galar_farfetchd": "Farfetch'd", - "galar_weezing": "Weezing", - "galar_mr_mime": "Mr. Mime", - "galar_articuno": "Articuno", - "galar_zapdos": "Zapdos", - "galar_moltres": "Moltres", - "galar_slowking": "Slowking", - "galar_corsola": "Corsola", - "galar_zigzagoon": "Zigzagoon", - "galar_linoone": "Linoone", - "galar_darumaka": "Darumaka", - "galar_darmanitan": "Darmanitan", - "galar_yamask": "Yamask", - "galar_stunfisk": "Stunfisk", - "hisui_growlithe": "Growlithe", - "hisui_arcanine": "Arcanine", - "hisui_voltorb": "Voltorb", - "hisui_electrode": "Electrode", - "hisui_typhlosion": "Typhlosion", - "hisui_qwilfish": "Qwilfish", - "hisui_sneasel": "Sneasel", - "hisui_samurott": "Samurott", - "hisui_lilligant": "Lilligant", - "hisui_zorua": "Zorua", - "hisui_zoroark": "Zoroark", - "hisui_braviary": "Braviary", - "hisui_sliggoo": "Sliggoo", - "hisui_goodra": "Goodra", - "hisui_avalugg": "Avalugg", - "hisui_decidueye": "Decidueye", - "paldea_tauros": "Tauros", - "paldea_wooper": "Wooper", - "bloodmoon_ursaluna": "Ursaluna", -} as const; diff --git a/src/locales/ca_ES/run-history.json b/src/locales/ca_ES/run-history.json new file mode 100644 index 00000000000..9e26dfeeb6e --- /dev/null +++ b/src/locales/ca_ES/run-history.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/src/locales/ca_ES/save-slot-select-ui-handler.json b/src/locales/ca_ES/save-slot-select-ui-handler.json new file mode 100644 index 00000000000..9e26dfeeb6e --- /dev/null +++ b/src/locales/ca_ES/save-slot-select-ui-handler.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/src/locales/ca_ES/save-slot-select-ui-handler.ts b/src/locales/ca_ES/save-slot-select-ui-handler.ts deleted file mode 100644 index f4efa3de734..00000000000 --- a/src/locales/ca_ES/save-slot-select-ui-handler.ts +++ /dev/null @@ -1,9 +0,0 @@ -import { SimpleTranslationEntries } from "#app/interfaces/locales"; - -export const saveSlotSelectUiHandler: SimpleTranslationEntries = { - "overwriteData": "Overwrite the data in the selected slot?", - "loading": "Loading...", - "wave": "Wave", - "lv": "Lv", - "empty": "Empty", -} as const; diff --git a/src/locales/ca_ES/settings.json b/src/locales/ca_ES/settings.json new file mode 100644 index 00000000000..9e26dfeeb6e --- /dev/null +++ b/src/locales/ca_ES/settings.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/src/locales/ca_ES/settings.ts b/src/locales/ca_ES/settings.ts deleted file mode 100644 index 491bfa4a481..00000000000 --- a/src/locales/ca_ES/settings.ts +++ /dev/null @@ -1,100 +0,0 @@ -import { SimpleTranslationEntries } from "#app/interfaces/locales.js"; - -export const settings: SimpleTranslationEntries = { - "boy": "Boy", - "girl": "Girl", - "general": "General", - "display": "Display", - "audio": "Audio", - "gamepad": "Gamepad", - "keyboard": "Keyboard", - "gameSpeed": "Game Speed", - "hpBarSpeed": "HP Bar Speed", - "expGainsSpeed": "EXP Gains Speed", - "expPartyDisplay": "Show EXP Party", - "skipSeenDialogues": "Skip Seen Dialogues", - "battleStyle": "Battle Style", - "enableRetries": "Enable Retries", - "tutorials": "Tutorials", - "touchControls": "Touch Controls", - "vibrations": "Vibrations", - "normal": "Normal", - "fast": "Fast", - "faster": "Faster", - "skip": "Skip", - "levelUpNotifications": "Level Up Notifications", - "on": "On", - "off": "Off", - "switch": "Switch", - "set": "Set", - "auto": "Auto", - "disabled": "Disabled", - "language": "Language", - "change": "Change", - "uiTheme": "UI Theme", - "default": "Default", - "legacy": "Legacy", - "windowType": "Window Type", - "moneyFormat": "Money Format", - "damageNumbers": "Damage Numbers", - "simple": "Simple", - "fancy": "Fancy", - "abbreviated": "Abbreviated", - "moveAnimations": "Move Animations", - "showStatsOnLevelUp": "Show Stats on Level Up", - "candyUpgradeNotification": "Candy Upgrade Notification", - "passivesOnly": "Passives Only", - "candyUpgradeDisplay": "Candy Upgrade Display", - "icon": "Icon", - "animation": "Animation", - "moveInfo": "Move Info", - "showMovesetFlyout": "Show Moveset Flyout", - "showArenaFlyout": "Show Arena Flyout", - "showTimeOfDayWidget": "Show Time of Day Widget", - "timeOfDayAnimation": "Time of Day Animation", - "bounce": "Bounce", - "timeOfDay_back": "Back", - "spriteSet": "Sprite Set", - "consistent": "Consistent", - "mixedAnimated": "Mixed Animated", - "fusionPaletteSwaps": "Fusion Palette Swaps", - "playerGender": "Player Gender", - "typeHints": "Type Hints", - "masterVolume": "Master Volume", - "bgmVolume": "BGM Volume", - "seVolume": "SE Volume", - "musicPreference": "Music Preference", - "mixed": "Mixed", - "gamepadPleasePlug": "Please Plug in a Gamepad or Press a Button", - "delete": "Delete", - "keyboardPleasePress": "Please Press a Key on Your Keyboard", - "reset": "Reset", - "requireReload": "Reload Required", - "action": "Action", - "back": "Back", - "pressToBind": "Press to Bind", - "pressButton": "Press a Button...", - "buttonUp": "Up", - "buttonDown": "Down", - "buttonLeft": "Left", - "buttonRight": "Right", - "buttonAction": "Action", - "buttonMenu": "Menu", - "buttonSubmit": "Submit", - "buttonCancel": "Cancel", - "buttonStats": "Stats", - "buttonCycleForm": "Cycle Form", - "buttonCycleShiny": "Cycle Shiny", - "buttonCycleGender": "Cycle Gender", - "buttonCycleAbility": "Cycle Ability", - "buttonCycleNature": "Cycle Nature", - "buttonCycleVariant": "Cycle Variant", - "buttonSpeedUp": "Speed Up", - "buttonSlowDown": "Slow Down", - "alt": " (Alt)", - "mute": "Mute", - "controller": "Controller", - "gamepadSupport": "Gamepad Support", - "showBgmBar": "Show Music Names", - "shopOverlayOpacity": "Shop Overlay Opacity" -} as const; diff --git a/src/locales/ca_ES/splash-messages.json b/src/locales/ca_ES/splash-messages.json new file mode 100644 index 00000000000..9e26dfeeb6e --- /dev/null +++ b/src/locales/ca_ES/splash-messages.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/src/locales/ca_ES/splash-messages.ts b/src/locales/ca_ES/splash-messages.ts deleted file mode 100644 index e549bc24f19..00000000000 --- a/src/locales/ca_ES/splash-messages.ts +++ /dev/null @@ -1,38 +0,0 @@ -import { SimpleTranslationEntries } from "#app/interfaces/locales"; - -export const splashMessages: SimpleTranslationEntries = { - "battlesWon": "Battles Won!", - "joinTheDiscord": "Join the Discord!", - "infiniteLevels": "Infinite Levels!", - "everythingStacks": "Everything Stacks!", - "optionalSaveScumming": "Optional Save Scumming!", - "biomes": "35 Biomes!", - "openSource": "Open Source!", - "playWithSpeed": "Play with 5x Speed!", - "liveBugTesting": "Live Bug Testing!", - "heavyInfluence": "Heavy RoR2 Influence!", - "pokemonRiskAndPokemonRain": "Pokémon Risk and Pokémon Rain!", - "nowWithMoreSalt": "Now with 33% More Salt!", - "infiniteFusionAtHome": "Infinite Fusion at Home!", - "brokenEggMoves": "Broken Egg Moves!", - "magnificent": "Magnificent!", - "mubstitute": "Mubstitute!", - "thatsCrazy": "That's Crazy!", - "oranceJuice": "Orance Juice!", - "questionableBalancing": "Questionable Balancing!", - "coolShaders": "Cool Shaders!", - "aiFree": "AI-Free!", - "suddenDifficultySpikes": "Sudden Difficulty Spikes!", - "basedOnAnUnfinishedFlashGame": "Based on an Unfinished Flash Game!", - "moreAddictiveThanIntended": "More Addictive than Intended!", - "mostlyConsistentSeeds": "Mostly Consistent Seeds!", - "achievementPointsDontDoAnything": "Achievement Points Don't Do Anything!", - "youDoNotStartAtLevel": "You Do Not Start at Level 2000!", - "dontTalkAboutTheManaphyEggIncident": "Don't Talk About the Manaphy Egg Incident!", - "alsoTryPokengine": "Also Try Pokéngine!", - "alsoTryEmeraldRogue": "Also Try Emerald Rogue!", - "alsoTryRadicalRed": "Also Try Radical Red!", - "eeveeExpo": "Eevee Expo!", - "ynoproject": "YNOproject!", - "breedersInSpace": "Breeders in space!", -} as const; diff --git a/src/locales/ca_ES/starter-select-ui-handler.json b/src/locales/ca_ES/starter-select-ui-handler.json new file mode 100644 index 00000000000..9e26dfeeb6e --- /dev/null +++ b/src/locales/ca_ES/starter-select-ui-handler.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/src/locales/ca_ES/starter-select-ui-handler.ts b/src/locales/ca_ES/starter-select-ui-handler.ts deleted file mode 100644 index 476ee46ae8e..00000000000 --- a/src/locales/ca_ES/starter-select-ui-handler.ts +++ /dev/null @@ -1,51 +0,0 @@ -import { SimpleTranslationEntries } from "#app/interfaces/locales"; - -/** - * The menu namespace holds most miscellaneous text that isn't directly part of the game's - * contents or directly related to Pokemon data. This includes menu navigation, settings, - * account interactions, descriptive text, etc. - */ -export const starterSelectUiHandler: SimpleTranslationEntries = { - "confirmStartTeam": "Begin with these Pokémon?", - "confirmExit": "Do you want to exit?", - "invalidParty": "This is not a valid starting party!", - "gen1": "I", - "gen2": "II", - "gen3": "III", - "gen4": "IV", - "gen5": "V", - "gen6": "VI", - "gen7": "VII", - "gen8": "VIII", - "gen9": "IX", - "growthRate": "Growth Rate:", - "ability": "Ability:", - "passive": "Passive:", - "nature": "Nature:", - "eggMoves": "Egg Moves", - "addToParty": "Add to Party", - "removeFromParty": "Remove from Party", - "toggleIVs": "Toggle IVs", - "manageMoves": "Manage Moves", - "manageNature": "Manage Nature", - "addToFavorites": "Add to Favorites", - "removeFromFavorites": "Remove from Favorites", - "useCandies": "Use Candies", - "selectNature": "Select nature.", - "selectMoveSwapOut": "Select a move to swap out.", - "selectMoveSwapWith": "Select a move to swap with", - "unlockPassive": "Unlock Passive", - "reduceCost": "Reduce Cost", - "sameSpeciesEgg": "Buy an Egg", - "cycleShiny": ": Shiny", - "cycleForm": ": Form", - "cycleGender": ": Gender", - "cycleAbility": ": Ability", - "cycleNature": ": Nature", - "cycleVariant": ": Variant", - "enablePassive": "Enable Passive", - "disablePassive": "Disable Passive", - "locked": "Locked", - "disabled": "Disabled", - "uncaught": "Uncaught" -}; diff --git a/src/locales/ca_ES/status-effect.json b/src/locales/ca_ES/status-effect.json new file mode 100644 index 00000000000..9e26dfeeb6e --- /dev/null +++ b/src/locales/ca_ES/status-effect.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/src/locales/ca_ES/status-effect.ts b/src/locales/ca_ES/status-effect.ts deleted file mode 100644 index 5914fc27298..00000000000 --- a/src/locales/ca_ES/status-effect.ts +++ /dev/null @@ -1,67 +0,0 @@ -import { StatusEffectTranslationEntries } from "#app/interfaces/locales.js"; - -export const statusEffect: StatusEffectTranslationEntries = { - none: { - name: "None", - description: "", - obtain: "", - obtainSource: "", - activation: "", - overlap: "", - heal: "" - }, - poison: { - name: "Poison", - description: "poisoning", - obtain: "{{pokemonNameWithAffix}}\nwas poisoned!", - obtainSource: "{{pokemonNameWithAffix}}\nwas poisoned by the {{sourceText}}!", - activation: "{{pokemonNameWithAffix}} is hurt\nby poison!", - overlap: "{{pokemonNameWithAffix}} is\nalready poisoned!", - heal: "{{pokemonNameWithAffix}} was\ncured of its poison!" - }, - toxic: { - name: "Toxic", - description: "poisoning", - obtain: "{{pokemonNameWithAffix}}\nwas badly poisoned!", - obtainSource: "{{pokemonNameWithAffix}}\nwas badly poisoned by the {{sourceText}}!", - activation: "{{pokemonNameWithAffix}} is hurt\nby poison!", - overlap: "{{pokemonNameWithAffix}} is\nalready poisoned!", - heal: "{{pokemonNameWithAffix}} was\ncured of its poison!" - }, - paralysis: { - name: "Paralysis", - description: "paralysis", - obtain: "{{pokemonNameWithAffix}} was paralyzed,\nIt may be unable to move!", - obtainSource: "{{pokemonNameWithAffix}} was paralyzed by the {{sourceText}}!\nIt may be unable to move!", - activation: "{{pokemonNameWithAffix}} is paralyzed!\nIt can't move!", - overlap: "{{pokemonNameWithAffix}} is\nalready paralyzed!", - heal: "{{pokemonNameWithAffix}} was\nhealed of paralysis!" - }, - sleep: { - name: "Sleep", - description: "sleep", - obtain: "{{pokemonNameWithAffix}}\nfell asleep!", - obtainSource: "{{pokemonNameWithAffix}}\nfell asleep from the {{sourceText}}!", - activation: "{{pokemonNameWithAffix}} is fast asleep.", - overlap: "{{pokemonNameWithAffix}} is\nalready asleep!", - heal: "{{pokemonNameWithAffix}} woke up!" - }, - freeze: { - name: "Freeze", - description: "freezing", - obtain: "{{pokemonNameWithAffix}}\nwas frozen solid!", - obtainSource: "{{pokemonNameWithAffix}}\nwas frozen solid by the {{sourceText}}!", - activation: "{{pokemonNameWithAffix}} is\nfrozen solid!", - overlap: "{{pokemonNameWithAffix}} is\nalready frozen!", - heal: "{{pokemonNameWithAffix}} was\ndefrosted!" - }, - burn: { - name: "Burn", - description: "burn", - obtain: "{{pokemonNameWithAffix}}\nwas burned!", - obtainSource: "{{pokemonNameWithAffix}}\nwas burned by the {{sourceText}}!", - activation: "{{pokemonNameWithAffix}} is hurt\nby its burn!", - overlap: "{{pokemonNameWithAffix}} is\nalready burned!", - heal: "{{pokemonNameWithAffix}} was\nhealed of its burn!" - }, -} as const; diff --git a/src/locales/ca_ES/terrain.json b/src/locales/ca_ES/terrain.json new file mode 100644 index 00000000000..9e26dfeeb6e --- /dev/null +++ b/src/locales/ca_ES/terrain.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/src/locales/ca_ES/trainer-classes.json b/src/locales/ca_ES/trainer-classes.json new file mode 100644 index 00000000000..9e26dfeeb6e --- /dev/null +++ b/src/locales/ca_ES/trainer-classes.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/src/locales/ca_ES/trainer-names.json b/src/locales/ca_ES/trainer-names.json new file mode 100644 index 00000000000..9e26dfeeb6e --- /dev/null +++ b/src/locales/ca_ES/trainer-names.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/src/locales/ca_ES/trainer-titles.json b/src/locales/ca_ES/trainer-titles.json new file mode 100644 index 00000000000..9e26dfeeb6e --- /dev/null +++ b/src/locales/ca_ES/trainer-titles.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/src/locales/ca_ES/trainers.ts b/src/locales/ca_ES/trainers.ts deleted file mode 100644 index a40fabaeacc..00000000000 --- a/src/locales/ca_ES/trainers.ts +++ /dev/null @@ -1,322 +0,0 @@ -import {SimpleTranslationEntries} from "#app/interfaces/locales"; - -// Titles of special trainers like gym leaders, elite four, and the champion -export const titles: SimpleTranslationEntries = { - "elite_four": "Elite Four", - "elite_four_female": "Elite Four", - "gym_leader": "Gym Leader", - "gym_leader_female": "Gym Leader", - "gym_leader_double": "Gym Leader Duo", - "champion": "Champion", - "champion_female": "Champion", - "champion_double": "Champion Duo", - "rival": "Rival", - "professor": "Professor", - "frontier_brain": "Frontier Brain", - "rocket_boss": "Team Rocket Boss", - "magma_boss": "Team Magma Boss", - "aqua_boss": "Team Aqua Boss", - "galactic_boss": "Team Galactic Boss", - "plasma_boss": "Team Plasma Boss", - "flare_boss": "Team Flare Boss", - - "rocket_admin": "Team Rocket Admin", - "rocket_admin_female": "Team Rocket Admin", - "magma_admin": "Team Magma Admin", - "magma_admin_female": "Team Magma Admin", - "aqua_admin": "Team Aqua Admin", - "aqua_admin_female": "Team Aqua Admin", - "galactic_commander": "Team Galactic Commander", - "galactic_commander_female": "Team Galactic Commander", - "plasma_sage": "Team Plasma Sage", - "plasma_admin": "Team Plasma Admin", - "flare_admin": "Team Flare Admin", - "flare_admin_female": "Team Flare Admin", - // Maybe if we add the evil teams we can add "Team Rocket" and "Team Aqua" etc. here as well as "Team Rocket Boss" and "Team Aqua Admin" etc. -} as const; - -// Titles of trainers like "Youngster" or "Lass" -export const trainerClasses: SimpleTranslationEntries = { - "ace_trainer": "Ace Trainer", - "ace_trainer_female": "Ace Trainer", - "ace_duo": "Ace Duo", - "artist": "Artist", - "artist_female": "Artist", - "backers": "Backers", - "backpacker": "Backpacker", - "backpacker_female": "Backpacker", - "backpackers": "Backpackers", - "baker": "Baker", - "battle_girl": "Battle Girl", - "beauty": "Beauty", - "beginners": "Beginners", - "biker": "Biker", - "black_belt": "Black Belt", - "breeder": "Breeder", - "breeder_female": "Breeder", - "breeders": "Breeders", - "clerk": "Clerk", - "clerk_female": "Clerk", - "colleagues": "Colleagues", - "crush_kin": "Crush Kin", - "cyclist": "Cyclist", - "cyclist_female": "Cyclist", - "cyclists": "Cyclists", - "dancer": "Dancer", - "dancer_female": "Dancer", - "depot_agent": "Depot Agent", - "doctor": "Doctor", - "doctor_female": "Doctor", - "firebreather": "Firebreather", - "fisherman": "Fisherman", - "fisherman_female": "Fisherman", - "gentleman": "Gentleman", - "guitarist": "Guitarist", - "guitarist_female": "Guitarist", - "harlequin": "Harlequin", - "hiker": "Hiker", - "hooligans": "Hooligans", - "hoopster": "Hoopster", - "infielder": "Infielder", - "janitor": "Janitor", - "lady": "Lady", - "lass": "Lass", - "linebacker": "Linebacker", - "maid": "Maid", - "madame": "Madame", - "medical_team": "Medical Team", - "musician": "Musician", - "hex_maniac": "Hex Maniac", - "nurse": "Nurse", - "nursery_aide": "Nursery Aide", - "officer": "Officer", - "parasol_lady": "Parasol Lady", - "pilot": "Pilot", - "pokéfan": "Poké Fan", - "pokéfan_female": "Poké Fan", - "pokéfan_family": "Poké Fan Family", - "preschooler": "Preschooler", - "preschooler_female": "Preschooler", - "preschoolers": "Preschoolers", - "psychic": "Psychic", - "psychic_female": "Psychic", - "psychics": "Psychics", - "pokémon_ranger": "Pokémon Ranger", - "pokémon_ranger_female": "Pokémon Ranger", - "pokémon_rangers": "Pokémon Ranger", - "ranger": "Ranger", - "restaurant_staff": "Restaurant Staff", - "rich": "Rich", - "rich_female": "Rich", - "rich_boy": "Rich Boy", - "rich_couple": "Rich Couple", - "rich_kid": "Rich Kid", - "rich_kid_female": "Rich Kid", - "rich_kids": "Rich Kids", - "roughneck": "Roughneck", - "sailor": "Sailor", - "scientist": "Scientist", - "scientist_female": "Scientist", - "scientists": "Scientists", - "smasher": "Smasher", - "snow_worker": "Snow Worker", - "snow_worker_female": "Snow Worker", - "striker": "Striker", - "school_kid": "School Kid", - "school_kid_female": "School Kid", - "school_kids": "School Kids", - "swimmer": "Swimmer", - "swimmer_female": "Swimmer", - "swimmers": "Swimmers", - "twins": "Twins", - "veteran": "Veteran", - "veteran_female": "Veteran", - "veteran_duo": "Veteran Duo", - "waiter": "Waiter", - "waitress": "Waitress", - "worker": "Worker", - "worker_female": "Worker", - "workers": "Workers", - "youngster": "Youngster", - "rocket_grunt": "Rocket Grunt", - "rocket_grunts": "Rocket Grunts", - "rocket_grunt_female": "Rocket Grunt", - "magma_grunt": "Magma Grunt", - "magma_grunt_female": "Magma Grunt", - "magma_grunts": "Magma Grunts", - "aqua_grunt": "Aqua Grunt", - "aqua_grunt_female": "Aqua Grunt", - "aqua_grunts": "Aqua Grunts", - "galactic_grunt": "Galactic Grunt", - "galactic_grunt_female": "Galactic Grunt", - "galactic_grunts": "Galactic Grunts", - "plasma_grunt": "Plasma Grunt", - "plasma_grunt_female": "Plasma Grunt", - "plasma_grunts": "Plasma Grunts", - "flare_grunt": "Flare Grunt", - "flare_grunt_female": "Flare Grunt", - "flare_grunts": "Flare Grunts", -} as const; - -// Names of special trainers like gym leaders, elite four, and the champion -export const trainerNames: SimpleTranslationEntries = { - "brock": "Brock", - "misty": "Misty", - "lt_surge": "Lt Surge", - "erika": "Erika", - "janine": "Janine", - "sabrina": "Sabrina", - "blaine": "Blaine", - "giovanni": "Giovanni", - "falkner": "Falkner", - "bugsy": "Bugsy", - "whitney": "Whitney", - "morty": "Morty", - "chuck": "Chuck", - "jasmine": "Jasmine", - "pryce": "Pryce", - "clair": "Clair", - "roxanne": "Roxanne", - "brawly": "Brawly", - "wattson": "Wattson", - "flannery": "Flannery", - "norman": "Norman", - "winona": "Winona", - "tate": "Tate", - "liza": "Liza", - "juan": "Juan", - "roark": "Roark", - "gardenia": "Gardenia", - "maylene": "Maylene", - "crasher_wake": "Crasher Wake", - "fantina": "Fantina", - "byron": "Byron", - "candice": "Candice", - "volkner": "Volkner", - "cilan": "Cilan", - "chili": "Chili", - "cress": "Cress", - "cheren": "Cheren", - "lenora": "Lenora", - "roxie": "Roxie", - "burgh": "Burgh", - "elesa": "Elesa", - "clay": "Clay", - "skyla": "Skyla", - "brycen": "Brycen", - "drayden": "Drayden", - "marlon": "Marlon", - "viola": "Viola", - "grant": "Grant", - "korrina": "Korrina", - "ramos": "Ramos", - "clemont": "Clemont", - "valerie": "Valerie", - "olympia": "Olympia", - "wulfric": "Wulfric", - "milo": "Milo", - "nessa": "Nessa", - "kabu": "Kabu", - "bea": "Bea", - "allister": "Allister", - "opal": "Opal", - "bede": "Bede", - "gordie": "Gordie", - "melony": "Melony", - "piers": "Piers", - "marnie": "Marnie", - "raihan": "Raihan", - "katy": "Katy", - "brassius": "Brassius", - "iono": "Iono", - "kofu": "Kofu", - "larry": "Larry", - "ryme": "Ryme", - "tulip": "Tulip", - "grusha": "Grusha", - "lorelei": "Lorelei", - "bruno": "Bruno", - "agatha": "Agatha", - "lance": "Lance", - "will": "Will", - "koga": "Koga", - "karen": "Karen", - "sidney": "Sidney", - "phoebe": "Phoebe", - "glacia": "Glacia", - "drake": "Drake", - "aaron": "Aaron", - "bertha": "Bertha", - "flint": "Flint", - "lucian": "Lucian", - "shauntal": "Shauntal", - "marshal": "Marshal", - "grimsley": "Grimsley", - "caitlin": "Caitlin", - "malva": "Malva", - "siebold": "Siebold", - "wikstrom": "Wikstrom", - "drasna": "Drasna", - "hala": "Hala", - "molayne": "Molayne", - "olivia": "Olivia", - "acerola": "Acerola", - "kahili": "Kahili", - "rika": "Rika", - "poppy": "Poppy", - "hassel": "Hassel", - "crispin": "Crispin", - "amarys": "Amarys", - "lacey": "Lacey", - "drayton": "Drayton", - "blue": "Blue", - "red": "Red", - "steven": "Steven", - "wallace": "Wallace", - "cynthia": "Cynthia", - "alder": "Alder", - "iris": "Iris", - "diantha": "Diantha", - "hau": "Hau", - "geeta": "Geeta", - "nemona": "Nemona", - "kieran": "Kieran", - "leon": "Leon", - "rival": "Finn", - "rival_female": "Ivy", - - // Evil Team Admins - "archer": "Archer", - "ariana": "Ariana", - "proton": "Proton", - "petrel": "Petrel", - "tabitha": "Tabitha", - "courtney": "Courtney", - "shelly": "Shelly", - "matt": "Matt", - "mars": "Mars", - "jupiter": "Jupiter", - "saturn": "Saturn", - "zinzolin": "Zinzolin", - "rood": "Rood", - "xerosic": "Xerosic", - "bryony": "Bryony", - - "maxie": "Maxie", - "archie": "Archie", - "cyrus": "Cyrus", - "ghetsis": "Ghetsis", - "lysandre": "Lysandre", - - // Double Names - "blue_red_double": "Blue & Red", - "red_blue_double": "Red & Blue", - "tate_liza_double": "Tate & Liza", - "liza_tate_double": "Liza & Tate", - "steven_wallace_double": "Steven & Wallace", - "wallace_steven_double": "Wallace & Steven", - "alder_iris_double": "Alder & Iris", - "iris_alder_double": "Iris & Alder", - "marnie_piers_double": "Marnie & Piers", - "piers_marnie_double": "Piers & Marnie", -} as const; diff --git a/src/locales/ca_ES/tutorial.json b/src/locales/ca_ES/tutorial.json new file mode 100644 index 00000000000..9e26dfeeb6e --- /dev/null +++ b/src/locales/ca_ES/tutorial.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/src/locales/ca_ES/tutorial.ts b/src/locales/ca_ES/tutorial.ts deleted file mode 100644 index 3c4aa2b46f6..00000000000 --- a/src/locales/ca_ES/tutorial.ts +++ /dev/null @@ -1,44 +0,0 @@ -import { SimpleTranslationEntries } from "#app/interfaces/locales"; - -export const tutorial: SimpleTranslationEntries = { - "intro": `Welcome to PokéRogue! This is a battle-focused Pokémon fangame with roguelite elements. - $This game is not monetized and we claim no ownership of Pokémon nor of the copyrighted assets used. - $The game is a work in progress, but fully playable.\nFor bug reports, please use the Discord community. - $If the game runs slowly, please ensure 'Hardware Acceleration' is turned on in your browser settings.`, - - "accessMenu": "To access the menu, press M or Escape while awaiting input.\nThe menu contains settings and various features.", - - "menu": `From this menu you can access the settings. - $From the settings you can change game speed, window style, and other options. - $There are also various other features here, so be sure to check them all!`, - - "starterSelect": `From this screen, you can select your starters by pressing\nZ or the Space bar. These are your initial party members. - $Each starter has a value. Your party can have up to\n6 members as long as the total does not exceed 10. - $You can also select gender, ability, and form depending on\nthe variants you've caught or hatched. - $The IVs for a species are also the best of every one you've\ncaught or hatched, so try to get lots of the same species!`, - - "pokerus": `A daily random 3 selectable starters have a purple border. - $If you see a starter you own with one of these,\ntry adding it to your party. Be sure to check its summary!`, - - "statChange": `Stat changes persist across battles as long as your Pokémon aren't recalled. - $Your Pokémon are recalled before a trainer battle and before entering a new biome. - $You can view the stat changes for any Pokémon on the field by holding C or Shift. - $You can also view the moveset for an enemy Pokémon by holding V. - $This only reveals moves that you've seen the Pokémon use this battle.`, - - "selectItem": `After every battle, you are given a choice of 3 random items.\nYou may only pick one. - $These range from consumables, to Pokémon held items, to passive permanent items. - $Most non-consumable item effects will stack in various ways. - $Some items will only show up if they can be used, such as evolution items. - $You can also transfer held items between Pokémon using the transfer option. - $The transfer option will appear in the bottom right once you have obtained a held item. - $You may purchase consumable items with money, and a larger variety will be available the further you get. - $Be sure to buy these before you pick your random item, as it will progress to the next battle once you do.`, - - "eggGacha": `From this screen, you can redeem your vouchers for\nPokémon eggs. - $Eggs have to be hatched and get closer to hatching after\nevery battle. Rarer eggs take longer to hatch. - $Hatched Pokémon also won't be added to your party, they will\nbe added to your starters. - $Pokémon hatched from eggs generally have better IVs than\nwild Pokémon. - $Some Pokémon can only even be obtained from eggs. - $There are 3 different machines to pull from with different\nbonuses, so pick the one that suits you best!`, -} as const; diff --git a/src/locales/ca_ES/voucher.json b/src/locales/ca_ES/voucher.json new file mode 100644 index 00000000000..9e26dfeeb6e --- /dev/null +++ b/src/locales/ca_ES/voucher.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/src/locales/ca_ES/weather.json b/src/locales/ca_ES/weather.json new file mode 100644 index 00000000000..9e26dfeeb6e --- /dev/null +++ b/src/locales/ca_ES/weather.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/src/locales/ca_ES/weather.ts b/src/locales/ca_ES/weather.ts deleted file mode 100644 index 8222064f341..00000000000 --- a/src/locales/ca_ES/weather.ts +++ /dev/null @@ -1,66 +0,0 @@ -import { SimpleTranslationEntries } from "#app/interfaces/locales"; - -/** - * The weather namespace holds text displayed when weather is active during a battle - */ -export const weather: SimpleTranslationEntries = { - "sunnyStartMessage": "The sunlight got bright!", - "sunnyLapseMessage": "The sunlight is strong.", - "sunnyClearMessage": "The sunlight faded.", - - "rainStartMessage": "A downpour started!", - "rainLapseMessage": "The downpour continues.", - "rainClearMessage": "The rain stopped.", - - "sandstormStartMessage": "A sandstorm brewed!", - "sandstormLapseMessage": "The sandstorm rages.", - "sandstormClearMessage": "The sandstorm subsided.", - "sandstormDamageMessage": "{{pokemonNameWithAffix}} is buffeted\nby the sandstorm!", - - "hailStartMessage": "It started to hail!", - "hailLapseMessage": "Hail continues to fall.", - "hailClearMessage": "The hail stopped.", - "hailDamageMessage": "{{pokemonNameWithAffix}} is pelted\nby the hail!", - - "snowStartMessage": "It started to snow!", - "snowLapseMessage": "The snow is falling down.", - "snowClearMessage": "The snow stopped.", - - "fogStartMessage": "A thick fog emerged!", - "fogLapseMessage": "The fog continues.", - "fogClearMessage": "The fog disappeared.", - - "heavyRainStartMessage": "A heavy downpour started!", - "heavyRainLapseMessage": "The heavy downpour continues.", - "heavyRainClearMessage": "The heavy rain stopped.", - - "harshSunStartMessage": "The sunlight got hot!", - "harshSunLapseMessage": "The sun is scorching hot.", - "harshSunClearMessage": "The harsh sunlight faded.", - - "strongWindsStartMessage": "A heavy wind began!", - "strongWindsLapseMessage": "The wind blows intensely.", - "strongWindsEffectMessage": "The mysterious air current weakened the attack!", - "strongWindsClearMessage": "The heavy wind stopped." -}; - -export const terrain: SimpleTranslationEntries = { - "misty": "Misty", - "mistyStartMessage": "Mist swirled around the battlefield!", - "mistyClearMessage": "The mist disappeared from the battlefield.", - "mistyBlockMessage": "{{pokemonNameWithAffix}} surrounds itself with a protective mist!", - - "electric": "Electric", - "electricStartMessage": "An electric current ran across the battlefield!", - "electricClearMessage": "The electricity disappeared from the battlefield.", - - "grassy": "Grassy", - "grassyStartMessage": "Grass grew to cover the battlefield!", - "grassyClearMessage": "The grass disappeared from the battlefield.", - - "psychic": "Psychic", - "psychicStartMessage": "The battlefield got weird!", - "psychicClearMessage": "The weirdness disappeared from the battlefield!", - - "defaultBlockMessage": "{{pokemonNameWithAffix}} is protected by the {{terrainName}} Terrain!" -}; diff --git a/src/locales/de/ability-trigger.ts b/src/locales/de/ability-trigger.json similarity index 97% rename from src/locales/de/ability-trigger.ts rename to src/locales/de/ability-trigger.json index 72023a842b3..60f3432df98 100644 --- a/src/locales/de/ability-trigger.ts +++ b/src/locales/de/ability-trigger.json @@ -1,6 +1,4 @@ -import { SimpleTranslationEntries } from "#app/interfaces/locales"; - -export const abilityTriggers: SimpleTranslationEntries = { +{ "blockRecoilDamage": "{{pokemonName}} wurde durch {{abilityName}} vor Rückstoß geschützt!", "badDreams": "{{pokemonName}} ist in einem Alptraum gefangen!", "costar": "{{pokemonName}} kopiert die Statusveränderungen von {{allyName}}!", @@ -46,6 +44,7 @@ export const abilityTriggers: SimpleTranslationEntries = { "postFaintContactDamage": "{{abilityName}} von {{pokemonNameWithAffix}} schadet seinem Angreifer!", "postFaintHpDamage": "{{abilityName}} von {{pokemonNameWithAffix}} schadet seinem Angreifer!", "postSummonPressure": "{{pokemonNameWithAffix}} setzt Gegner mit Erzwinger unter Druck!", + "weatherEffectDisappeared": "Jegliche wetterbedingten Effekte wurden aufgehoben!", "postSummonMoldBreaker": "{{pokemonNameWithAffix}} gelingt es, gegnerische Fähigkeiten zu überbrücken!", "postSummonAnticipation": "{{pokemonNameWithAffix}} erschaudert!", "postSummonTurboblaze": "{{pokemonNameWithAffix}} strahlt eine lodernde Aura aus!", @@ -59,5 +58,5 @@ export const abilityTriggers: SimpleTranslationEntries = { "postSummonSwordOfRuin": "Unheilsschwert von {{pokemonNameWithAffix}} schwächt {{statName}} aller Pokémon im Umkreis!", "postSummonTabletsOfRuin": "Unheilstafeln von {{pokemonNameWithAffix}} schwächt {{statName}} aller Pokémon im Umkreis!", "postSummonBeadsOfRuin": "Unheilsjuwelen von {{pokemonNameWithAffix}} schwächt {{statName}} aller Pokémon im Umkreis!", - "preventBerryUse": "{{pokemonNameWithAffix}} kriegt vor Anspannung keine Beeren mehr runter!", -} as const; + "preventBerryUse": "{{pokemonNameWithAffix}} kriegt vor Anspannung keine Beeren mehr runter!" +} \ No newline at end of file diff --git a/src/locales/de/ability.json b/src/locales/de/ability.json new file mode 100644 index 00000000000..84f30fac755 --- /dev/null +++ b/src/locales/de/ability.json @@ -0,0 +1,1242 @@ +{ + "stench": { + "name": "Duftnote", + "description": "Lässt das Ziel beim Angriff eventuell durch Gestank zurückschrecken." + }, + "drizzle": { + "name": "Niesel", + "description": "Ruft bei Kampfantritt Regen herbei." + }, + "speedBoost": { + "name": "Temposchub", + "description": "Erhöht in jeder Runde die Initiative." + }, + "battleArmor": { + "name": "Kampfpanzer", + "description": "Wehrt gegnerische Volltreffer mit einem harten Panzer ab." + }, + "sturdy": { + "name": "Robustheit", + "description": "Bietet Schutz gegen K.O.-Attacken. Bei vollen KP übersteht das Pokémon auch K.O.-Treffer." + }, + "damp": { + "name": "Feuchtigkeit", + "description": "Befeuchtet die Umgebung und verhindert so den Einsatz von Attacken wie Finale, die Explosionen auslösen." + }, + "limber": { + "name": "Flexibilität", + "description": "Der flexible Körper des Pokémon schützt es vor Paralyse." + }, + "sandVeil": { + "name": "Sandschleier", + "description": "Erhöht in Sandstürmen den Ausweichwert." + }, + "static": { + "name": "Statik", + "description": "Kann bei Berührung durch statisch aufgeladenen Körper paralysieren." + }, + "voltAbsorb": { + "name": "Voltabsorber", + "description": "Treffer durch Elektro-Attacken verursachen keinen Schaden, sondern regenerieren stattdessen KP." + }, + "waterAbsorb": { + "name": "H2OAbsorber", + "description": "Treffer durch Wasser-Attacken verursachen keinen Schaden, sondern regenerieren stattdessen KP." + }, + "oblivious": { + "name": "Dösigkeit", + "description": "Das Pokémon ist so apathisch, dass es nicht betört oder provoziert werden kann." + }, + "cloudNine": { + "name": "Wolke Sieben", + "description": "Hebt alle Wetter-Effekte auf." + }, + "compoundEyes": { + "name": "Facettenauge", + "description": "Erhöht die Genauigkeit von Attacken." + }, + "insomnia": { + "name": "Insomnia", + "description": "Verhindert Einschlafen." + }, + "colorChange": { + "name": "Farbwechsel", + "description": "Ändert seinen Typ zu dem der Attacke des Angreifers." + }, + "immunity": { + "name": "Immunität", + "description": "Das starke Immunsystem des Pokémon verhindert Vergiftungen." + }, + "flashFire": { + "name": "Feuerfänger", + "description": "Verstärkt Feuer-Attacken, wenn es von Feuer-Attacken getroffen wird." + }, + "shieldDust": { + "name": "Puderabwehr", + "description": "Blockiert durch Puder die Zusatzeffekte gegnerischer Angriffe." + }, + "ownTempo": { + "name": "Tempomacher", + "description": "Das Pokémon lässt sich nicht aus der Ruhe bringen und verhindert so Verwirrung." + }, + "suctionCups": { + "name": "Saugnapf", + "description": "Blockt Attacken und Items, die Pokémon austauschen, indem es sich mit einem Saugnapf am Boden verankert." + }, + "intimidate": { + "name": "Bedroher", + "description": "Senkt den Angriff der Gegner, indem es sie gleich zu Kampfantritt bedroht und einschüchtert." + }, + "shadowTag": { + "name": "Wegsperre", + "description": "Hindert Gegner an der Flucht beziehungsweise am Auswechseln, indem es ihnen den Weg versperrt." + }, + "roughSkin": { + "name": "Rauhaut", + "description": "Angreifer werden durch die raue Haut des Pokémon bei direkten Attacken verletzt." + }, + "wonderGuard": { + "name": "Wunderwache", + "description": "Wundersame Kräfte bewirken, dass nur sehr effektive Treffer bei ihm Schaden anrichten." + }, + "levitate": { + "name": "Schwebe", + "description": "Verleiht volle Immunität gegen alle Boden-Attacken durch Schwebezustand." + }, + "effectSpore": { + "name": "Sporenwirt", + "description": "Wird dieses Pokémon durch eine direkte Attacke angegriffen, kann das beim Gegner Paralyse, Vergiftung oder Schlaf auslösen." + }, + "synchronize": { + "name": "Synchro", + "description": "Erleidet das Pokémon Verbrennungen, Vergiftungen oder Paralyse, ereilt das jeweilige Statusproblem auch den Verursacher." + }, + "clearBody": { + "name": "Neutraltorso", + "description": "Verhindert das Senken der Statuswerte durch Attacken und Fähigkeiten von Angreifern." + }, + "naturalCure": { + "name": "Innere Kraft", + "description": "Wird das Pokémon ausgewechselt, werden seine Statusprobleme geheilt." + }, + "lightningRod": { + "name": "Blitzfänger", + "description": "Zieht Elektro-Attacken an. Statt durch diese Schaden zu nehmen, erhöht es den eigenen Spezial-Angriff." + }, + "sereneGrace": { + "name": "Edelmut", + "description": "Erhöht die Wahrscheinlichkeit, dass Zusatzeffekte von Attacken auftreten." + }, + "swiftSwim": { + "name": "Wassertempo", + "description": "Erhöht bei Regen die Initiative." + }, + "chlorophyll": { + "name": "Chlorophyll", + "description": "Erhöht bei Sonnenschein die Initiative." + }, + "illuminate": { + "name": "Erleuchtung", + "description": "Erhellt die Umgebung und erhöht dadurch die Wahrscheinlichkeit, wilden Pokémon zu begegnen." + }, + "trace": { + "name": "Erfassen", + "description": "Kopiert bei Kampfantritt die Fähigkeit eines Gegners." + }, + "hugePower": { + "name": "Kraftkoloss", + "description": "Verdoppelt die Stärke von physischen Attacken." + }, + "poisonPoint": { + "name": "Giftdorn", + "description": "Vergiftet den Angreifer bei Berührung eventuell." + }, + "innerFocus": { + "name": "Konzentrator", + "description": "Verhindert durch erhöhte Konzentrationsfähigkeit Zurückschrecken." + }, + "magmaArmor": { + "name": "Magmapanzer", + "description": "Dank eines Panzers aus Magma kann dieses Pokémon nicht eingefroren werden." + }, + "waterVeil": { + "name": "Aquahülle", + "description": "Verhindert durch eine Hülle aus Wasser Verbrennungen." + }, + "magnetPull": { + "name": "Magnetfalle", + "description": "Hindert Stahl-Pokémon durch Magnetismus an der Flucht." + }, + "soundproof": { + "name": "Lärmschutz", + "description": "Bietet durch Schalldämmung volle Immunität gegen alle Lärm-Attacken." + }, + "rainDish": { + "name": "Regengenuss", + "description": "Regeneriert bei Regen nach und nach KP." + }, + "sandStream": { + "name": "Sandsturm", + "description": "Erzeugt bei Kampfantritt Sandstürme." + }, + "pressure": { + "name": "Erzwinger", + "description": "Zwingt Gegner dazu, beim Einsatz von Attacken mehr AP zu verbrauchen." + }, + "thickFat": { + "name": "Speckschicht", + "description": "Das Pokémon wird von einer dicken Fettschicht geschützt, was den durch Feuer- und Eis-Attacken erlittenen Schaden halbiert." + }, + "earlyBird": { + "name": "Frühwecker", + "description": "Wenn es eingeschlafen ist, kann es doppelt so schnell wieder aufwachen wie andere Pokémon." + }, + "flameBody": { + "name": "Flammkörper", + "description": "Fügt dem Angreifer bei Berührung eventuell Verbrennungen zu." + }, + "runAway": { + "name": "Angsthase", + "description": "Die Flucht vor wilden Pokémon gelingt immer." + }, + "keenEye": { + "name": "Adlerauge", + "description": "Sein scharfer Blick hindert Angreifer daran, seine Genauigkeit zu senken." + }, + "hyperCutter": { + "name": "Scherenmacht", + "description": "Hindert Angreifer durch mächtige Scheren daran, den Angriffs-Wert zu senken." + }, + "pickup": { + "name": "Mitnahme", + "description": "Hebt gelegentlich von Gegnern benutzte Items auf. Dies geschieht nicht nur während Kämpfen, sondern auch unterwegs." + }, + "truant": { + "name": "Schnarchnase", + "description": "Das Pokémon muss nach Einsatz einer Attacke eine Runde lang aussetzen." + }, + "hustle": { + "name": "Übereifer", + "description": "Erhöht den Angriffs-Wert, aber senkt die Genauigkeit." + }, + "cuteCharm": { + "name": "Charmebolzen", + "description": "Wird dieses Pokémon durch eine direkte Attacke angegriffen, verliebt sich der Gegner eventuell in es." + }, + "plus": { + "name": "Plus", + "description": "Erhöht den Spezial-Angriff, wenn das Pokémon einen Mitstreiter mit der Fähigkeit Plus oder Minus hat." + }, + "minus": { + "name": "Minus", + "description": "Erhöht den Spezial-Angriff, wenn das Pokémon einen Mitstreiter mit der Fähigkeit Plus oder Minus hat." + }, + "forecast": { + "name": "Prognose", + "description": "Nimmt je nach Wetter entweder den Typ Wasser, Feuer oder Eis an." + }, + "stickyHold": { + "name": "Klebekörper", + "description": "Trägt es ein Item, bleibt dieses an seinem klebrigen Körper haften, wodurch Item-Diebstahl verhindert wird." + }, + "shedSkin": { + "name": "Expidermis", + "description": "Das Pokémon befreit sich eventuell von Statusproblemen, indem es seine Haut abstreift." + }, + "guts": { + "name": "Adrenalin", + "description": "Bei Statusproblemen setzt es Adrenalin frei und erhöht so seinen Angriffs-Wert." + }, + "marvelScale": { + "name": "Notschutz", + "description": "Bei Statusproblemen schützt es sich mit mysteriösen Schuppen und erhöht so seine Verteidigung." + }, + "liquidOoze": { + "name": "Kloakensoße", + "description": "Angreifer, die durch Saug-Attacken Kloakensoße in sich aufgenommen haben, nehmen durch deren widerwärtigen Gestank Schaden." + }, + "overgrow": { + "name": "Notdünger", + "description": "Erhöht die Stärke von Pflanzen-Attacken, wenn die KP auf einen gewissen Wert fallen." + }, + "blaze": { + "name": "Großbrand", + "description": "Erhöht die Stärke von Feuer-Attacken, wenn die KP auf einen gewissen Wert fallen." + }, + "torrent": { + "name": "Sturzbach", + "description": "Erhöht die Stärke von Wasser-Attacken, wenn die KP auf einen gewissen Wert fallen." + }, + "swarm": { + "name": "Hexaplaga", + "description": "Erhöht die Stärke von Käfer-Attacken, wenn die KP auf einen gewissen Wert fallen." + }, + "rockHead": { + "name": "Steinhaupt", + "description": "Verhindert Schaden, der durch Rückstoß entstehen würde." + }, + "drought": { + "name": "Dürre", + "description": "Erzeugt bei Kampfantritt gleißendes Sonnenlicht." + }, + "arenaTrap": { + "name": "Ausweglos", + "description": "Hindert Gegner im Kampf an der Flucht." + }, + "vitalSpirit": { + "name": "Munterkeit", + "description": "Das Pokémon ist so munter, dass es nicht einschlafen kann." + }, + "whiteSmoke": { + "name": "Pulverrauch", + "description": "Indem es sich mit pulvrigem Rauch umhüllt, hindert es Angreifer daran, seine Statuswerte zu senken." + }, + "purePower": { + "name": "Mentalkraft", + "description": "Verdoppelt mit reiner Willenskraft die Stärke seiner physischen Attacken." + }, + "shellArmor": { + "name": "Panzerhaut", + "description": "Wehrt gegnerische Volltreffer mit einem harten Panzer ab." + }, + "airLock": { + "name": "Klimaschutz", + "description": "Hebt alle Wetter-Effekte auf." + }, + "tangledFeet": { + "name": "Fußangel", + "description": "Erhöht den Ausweichwert, wenn das Pokémon verwirrt ist." + }, + "motorDrive": { + "name": "Starthilfe", + "description": "Treffer durch Elektro-Attacken verursachen keinen Schaden, sondern geben dem Pokémon eine Starthilfe und erhöhen so seine Initiative." + }, + "rivalry": { + "name": "Rivalität", + "description": "Greift es einen Rivalen desselben Geschlechts an, wird es stärker. Greift es ein Ziel des anderen Geschlechts an, wird es schwächer." + }, + "steadfast": { + "name": "Felsenfest", + "description": "Sein eiserner Wille erhöht die Initiative, wann immer das Pokémon zurückschreckt." + }, + "snowCloak": { + "name": "Schneemantel", + "description": "Erhöht bei Hagel den Ausweichwert." + }, + "gluttony": { + "name": "Völlerei", + "description": "Setzt bestimmte Beeren nicht erst in einer Notlage ein, sondern bereits dann, wenn seine KP auf die Hälfte des Maximalwerts fallen." + }, + "angerPoint": { + "name": "Kurzschluss", + "description": "Wird nach Einstecken eines Volltreffers wütend und maximiert dabei seinen Angriffs-Wert." + }, + "unburden": { + "name": "Entlastung", + "description": "Wenn das von ihm getragene Item verwendet wird oder verloren geht, erhöht dies seine Initiative." + }, + "heatproof": { + "name": "Hitzeschutz", + "description": "Sein Hitze abweisender Körper halbiert den durch Feuer-Attacken erlittenen Schaden." + }, + "simple": { + "name": "Wankelmut", + "description": "Verdoppelt die Wirkung eigener Statusveränderungen." + }, + "drySkin": { + "name": "Trockenheit", + "description": "Bei Sonnenschein verliert das Pokémon KP und der Schaden durch Feuer-Attacken steigt. Bei Regen und Treffern durch Wasser-Attacken regeneriert es KP." + }, + "download": { + "name": "Download", + "description": "Ist die Spezial-Verteidigung des Gegners höher als seine Verteidigung, wird der eigene Spezial-Angriff erhöht. Ist die Verteidigung höher, steigt der Angriff." + }, + "ironFist": { + "name": "Eisenfaust", + "description": "Erhöht die Stärke von Hieb-, Punch-, Faust- und Schlag-Attacken." + }, + "poisonHeal": { + "name": "Aufheber", + "description": "Das Pokémon erleidet keinen Schaden durch Vergiftung, sondern regeneriert KP." + }, + "adaptability": { + "name": "Anpassung", + "description": "Erhöht die Stärke von Attacken, die dem Typ des Pokémon entsprechen." + }, + "skillLink": { + "name": "Wertelink", + "description": "Landet mit Serien-Attacken immer die maximale Anzahl an Treffern." + }, + "hydration": { + "name": "Hydration", + "description": "Heilt bei Regen Statusprobleme." + }, + "solarPower": { + "name": "Solarkraft", + "description": "Führt bei Sonnenschein in jeder Runde zu KP-Verlusten, erhöht aber den Spezial-Angriff." + }, + "quickFeet": { + "name": "Rasanz", + "description": "Erhöht bei Statusproblemen die Initiative." + }, + "normalize": { + "name": "Regulierung", + "description": "Alle Attacken des Pokémon nehmen den Typ Normal an und ihre Stärke erhöht sich ein wenig." + }, + "sniper": { + "name": "Superschütze", + "description": "Erhöht bei Volltreffern die Stärke der Attacke noch weiter." + }, + "magicGuard": { + "name": "Magieschild", + "description": "Das Pokémon nimmt nur durch Offensiv-Attacken Schaden." + }, + "noGuard": { + "name": "Schildlos", + "description": "Alle Attacken des oder auf das Pokémon gelingen aufgrund seiner deckungslosen Kampftaktik." + }, + "stall": { + "name": "Zeitspiel", + "description": "Handelt auch mit Initiative-Vorteil stets als Letztes." + }, + "technician": { + "name": "Techniker", + "description": "Erhöht die Stärke von schwächeren Attacken." + }, + "leafGuard": { + "name": "Floraschild", + "description": "Verhindert bei Sonnenschein Statusprobleme." + }, + "klutz": { + "name": "Tollpatsch", + "description": "Das Pokémon kann keine getragenen Items verwenden." + }, + "moldBreaker": { + "name": "Überbrückung", + "description": "Attacken können ungeachtet der Fähigkeiten des Zieles verwendet werden." + }, + "superLuck": { + "name": "Glückspilz", + "description": "Großes Glück erhöht die Wahrscheinlichkeit, einen Volltreffer zu landen." + }, + "aftermath": { + "name": "Finalschlag", + "description": "Wird das Pokémon durch eine direkte Attacke besiegt, fügt es dem Angreifer Schaden zu." + }, + "anticipation": { + "name": "Vorahnung", + "description": "Kann gefährliche gegnerische Attacken erahnen." + }, + "forewarn": { + "name": "Vorwarnung", + "description": "Gibt bei Kampfantritt Auskunft über eine Attacke aus dem gegnerischen Repertoire." + }, + "unaware": { + "name": "Unkenntnis", + "description": "Greift das Pokémon an, ignoriert es sämtliche Statusveränderungen des Zieles." + }, + "tintedLens": { + "name": "Aufwertung", + "description": "Bewirkt, dass nicht sehr effektive Attacken dem Ziel trotz des Typennachteils normalen Schaden zufügen." + }, + "filter": { + "name": "Filter", + "description": "Reduziert die Stärke von sehr effektiven Attacken und verringert damit den Schaden, den das Pokémon durch sie erleidet." + }, + "slowStart": { + "name": "Saumselig", + "description": "Halbiert fünf Runden lang den Angriffs-Wert und die Initiative des Pokémon." + }, + "scrappy": { + "name": "Rauflust", + "description": "Bewirkt, dass Normal- und Kampf-Attacken auch Pokémon vom Typ Geist treffen können." + }, + "stormDrain": { + "name": "Sturmsog", + "description": "Zieht Wasser-Attacken an. Statt durch diese Schaden zu nehmen, erhöht es den eigenen Spezial-Angriff." + }, + "iceBody": { + "name": "Eishaut", + "description": "Regeneriert bei Hagel nach und nach KP." + }, + "solidRock": { + "name": "Felskern", + "description": "Reduziert die Stärke von sehr effektiven Attacken und verringert damit den Schaden, den das Pokémon durch sie erleidet." + }, + "snowWarning": { + "name": "Hagelalarm", + "description": "Löst bei Kampfantritt Hagel aus." + }, + "honeyGather": { + "name": "Honigmaul", + "description": "Sammelt nach dem Kampf Honig. Dieser wird dann für Geld verkauft." + }, + "frisk": { + "name": "Schnüffler", + "description": "Kann bei Kampfantritt Auskunft über die Fähigkeit vom Gegner geben." + }, + "reckless": { + "name": "Achtlos", + "description": "Erhöht die Stärke von Attacken mit Rückstoßschaden." + }, + "multitype": { + "name": "Variabilität", + "description": "Das Pokémon passt seinen Typ dem der getragenen Tafel bzw. des getragenen Z-Kristalls an." + }, + "flowerGift": { + "name": "Pflanzengabe", + "description": "Erhöht bei Sonnenschein den Angriff und die Spezial-Verteidigung aller Team-Pokémon." + }, + "badDreams": { + "name": "Alptraum", + "description": "Fügt schlafenden Gegnern Schaden zu." + }, + "pickpocket": { + "name": "Langfinger", + "description": "Stiehlt das Item des Angreifers bei Berührung." + }, + "sheerForce": { + "name": "Rohe Gewalt", + "description": "Erhöht die Stärke von Attacken, aber hebt dafür ihre Zusatzeffekte auf." + }, + "contrary": { + "name": "Umkehrung", + "description": "Statusveränderungen werden umgekehrt: Statuswerte, die eigentlich erhöht werden sollten, sinken und umgekehrt." + }, + "unnerve": { + "name": "Anspannung", + "description": "Erzeugt bei Gegnern Stress und hindert sie so daran, Beeren zu konsumieren." + }, + "defiant": { + "name": "Siegeswille", + "description": "Erhöht den Angriff stark, wenn ein Statuswert gesenkt wurde." + }, + "defeatist": { + "name": "Schwächling", + "description": "Fallen seine KP auf die Hälfte des Maximalwerts oder weniger, bekommt es Angst. Dadurch wird die Stärke seines Angriffs und Spezial-Angriffs halbiert." + }, + "cursedBody": { + "name": "Tastfluch", + "description": "Blockiert eventuell die Attacke, mit welcher der Angreifer es getroffen hat." + }, + "healer": { + "name": "Heilherz", + "description": "Befreit Mitstreiter gelegentlich von Statusproblemen." + }, + "friendGuard": { + "name": "Freundeshut", + "description": "Kann den Schaden, den Mitstreiter erleiden, verringern." + }, + "weakArmor": { + "name": "Bruchrüstung", + "description": "Senkt bei erlittenem Treffer durch eine physische Attacke die Verteidigung des Pokémon, aber erhöht dafür seine Initiative stark." + }, + "heavyMetal": { + "name": "Schwermetall", + "description": "Verdoppelt das eigene Gewicht." + }, + "lightMetal": { + "name": "Leichtmetall", + "description": "Halbiert das eigene Gewicht." + }, + "multiscale": { + "name": "Multischuppe", + "description": "Verringert den erlittenen Schaden bei vollen KP." + }, + "toxicBoost": { + "name": "Giftwahn", + "description": "Erhöht bei Vergiftungen die Stärke von physischen Attacken." + }, + "flareBoost": { + "name": "Hitzewahn", + "description": "Erhöht bei Verbrennungen die Stärke von Spezial-Attacken." + }, + "harvest": { + "name": "Reiche Ernte", + "description": "Dieselbe Beere kann mehrmals verwendet werden." + }, + "telepathy": { + "name": "Telepathie", + "description": "Erkennt und pariert Attacken von Mitstreitern." + }, + "moody": { + "name": "Gefühlswippe", + "description": "Erhöht in jeder Runde aufs Neue einen Statuswert stark und senkt einen anderen." + }, + "overcoat": { + "name": "Partikelschutz", + "description": "Nimmt weder durch Wetterlagen wie Sandsturm oder Hagel noch durch Pulver oder Puder Schaden." + }, + "poisonTouch": { + "name": "Giftgriff", + "description": "Kann das Ziel durch bloßes Berühren vergiften." + }, + "regenerator": { + "name": "Belebekraft", + "description": "Wird das Pokémon ausgewechselt, regeneriert es eine kleine Menge an KP." + }, + "bigPecks": { + "name": "Brustbieter", + "description": "Hindert Angreifer daran, die Verteidigung des Pokémon zu senken." + }, + "sandRush": { + "name": "Sandscharrer", + "description": "Erhöht in Sandstürmen die Initiative." + }, + "wonderSkin": { + "name": "Wunderhaut", + "description": "Wehrt mit robustem Körper viele Status-Attacken ab." + }, + "analytic": { + "name": "Analyse", + "description": "Greift das Pokémon zuletzt an, erhöht sich die Stärke der Attacke, die es einsetzt." + }, + "illusion": { + "name": "Trugbild", + "description": "Führt den Gegner hinters Licht, indem es bei Kampfantritt die Gestalt des Pokémon an der letzten Stelle im Team annimmt." + }, + "imposter": { + "name": "Doppelgänger", + "description": "Kämpft als Kopie seines Gegenübers." + }, + "infiltrator": { + "name": "Schwebedurch", + "description": "Überwindet gegnerische Schilde sowie Delegatoren und greift an." + }, + "mummy": { + "name": "Mumie", + "description": "Überträgt bei Berührung die Fähigkeit Mumie auf den Angreifer." + }, + "moxie": { + "name": "Hochmut", + "description": "Besiegt es ein Pokémon, steigt sein Selbstvertrauen und somit auch sein Angriff." + }, + "justified": { + "name": "Redlichkeit", + "description": "Wird es von einer Unlicht-Attacke getroffen, meldet sich sein Sinn für Gerechtigkeit zu Wort und sein Angriff steigt." + }, + "rattled": { + "name": "Hasenfuß", + "description": "Wird es von einer Unlicht-, Geister- oder Käfer-Attacke getroffen, bekommt es Angst und seine Initiative steigt." + }, + "magicBounce": { + "name": "Magiespiegel", + "description": "Lenkt Status-Attacken auf den Angreifer um, ohne selbst von ihnen getroffen zu werden." + }, + "sapSipper": { + "name": "Vegetarier", + "description": "Wird es von einer Pflanzen-Attacke getroffen, erleidet es keinerlei Schaden und sein Angriff steigt." + }, + "prankster": { + "name": "Strolch", + "description": "Ermöglicht einen Erstschlag mit Status-Attacken." + }, + "sandForce": { + "name": "Sandgewalt", + "description": "Erhöht in Sandstürmen die Stärke von Gesteins-, Boden- und Stahl-Attacken." + }, + "ironBarbs": { + "name": "Eisenstachel", + "description": "Fügt dem Angreifer bei Berührung mit eisernen Stacheln Schaden zu." + }, + "zenMode": { + "name": "TranceModus", + "description": "Fallen seine KP auf die Hälfte des Maximalwerts oder weniger, wechselt es seine Gestalt." + }, + "victoryStar": { + "name": "Triumphstern", + "description": "Erhöht die Genauigkeit aller Team-Pokémon." + }, + "turboblaze": { + "name": "Turbobrand", + "description": "Attacken können ungeachtet der Fähigkeit des Zieles eingesetzt werden." + }, + "teravolt": { + "name": "Teravolt", + "description": "Attacken können ungeachtet der Fähigkeit des Zieles eingesetzt werden." + }, + "aromaVeil": { + "name": "Dufthülle", + "description": "Kann alle Team-Pokémon vor mentalen Angriffen schützen." + }, + "flowerVeil": { + "name": "Blütenhülle", + "description": "Schützt Mitstreiter vom Typ Pflanze vor dem Senken ihrer Statuswerte sowie vor Statusproblemen." + }, + "cheekPouch": { + "name": "Backentaschen", + "description": "Regeneriert beim Konsum von Beeren ungeachtet der Beerensorte KP." + }, + "protean": { + "name": "Wandlungskunst", + "description": "Das Pokémon nimmt bei Einsatz einer Attacke deren Typ an." + }, + "furCoat": { + "name": "Fellkleid", + "description": "Halbiert den Schaden, den das Pokémon durch physische Attacken erleidet." + }, + "magician": { + "name": "Zauberer", + "description": "Trifft das Pokémon ein Ziel mit einer Attacke, kann es ihm dabei sein Item stehlen." + }, + "bulletproof": { + "name": "Kugelsicher", + "description": "Kann das Pokémon vor geworfenen kugelförmigen Objekten, wie zum Beispiel Bomben, schützen." + }, + "competitive": { + "name": "Unbeugsamkeit", + "description": "Erhöht den Spezial-Angriff stark, wenn ein Statuswert gesenkt wurde." + }, + "strongJaw": { + "name": "Titankiefer", + "description": "Der kräftige Kiefer des Pokémon erhöht die Stärke von Biss-Attacken." + }, + "refrigerate": { + "name": "Frostschicht", + "description": "Attacken vom Typ Normal nehmen den Typ Eis an und ihre Stärke erhöht sich ein wenig." + }, + "sweetVeil": { + "name": "Zuckerhülle", + "description": "Alle Team-Pokémon können nicht einschlafen." + }, + "stanceChange": { + "name": "Taktikwechsel", + "description": "Setzt das Pokémon eine Offensiv-Attacke ein, nimmt es die Klingenform an. Setzt es danach die Attacke Königsschild ein, nimmt es die Schildform an." + }, + "galeWings": { + "name": "Orkanschwingen", + "description": "Kann bei vollen KP einen Erstschlag mit Flug-Attacken ermöglichen." + }, + "megaLauncher": { + "name": "Megawumme", + "description": "Erhöht die Stärke einiger Wellen-, Aura- und Puls-Attacken." + }, + "grassPelt": { + "name": "Pflanzenpelz", + "description": "Erhöht die Verteidigung, wenn Grasfeld aktiv ist." + }, + "symbiosis": { + "name": "Nutznießer", + "description": "Gibt Mitstreitern, die ihr Item aufgebraucht haben, sein eigenes Item." + }, + "toughClaws": { + "name": "Krallenwucht", + "description": "Erhöht die Stärke von direkten Attacken." + }, + "pixilate": { + "name": "Feenschicht", + "description": "Attacken vom Typ Normal nehmen den Typ Fee an und ihre Stärke erhöht sich ein wenig." + }, + "gooey": { + "name": "Viskosität", + "description": "Senkt bei Berührung im Zuge eines Angriffs die Initiative des Angreifers." + }, + "aerilate": { + "name": "Zenithaut", + "description": "Attacken vom Typ Normal nehmen den Typ Flug an und ihre Stärke erhöht sich ein wenig." + }, + "parentalBond": { + "name": "Familienbande", + "description": "Zwei Generationen setzen jeweils ein Mal zum Angriff an." + }, + "darkAura": { + "name": "Dunkelaura", + "description": "Erhöht die Stärke aller Attacken des Typs Unlicht." + }, + "fairyAura": { + "name": "Feenaura", + "description": "Erhöht die Stärke aller Attacken des Typs Fee." + }, + "auraBreak": { + "name": "AuraUmkehr", + "description": "Kehrt die Wirkung von Auren um und senkt so die Stärke bestimmter Attacken, anstatt sie zu erhöhen." + }, + "primordialSea": { + "name": "Urmeer", + "description": "Ändert das Wetter, um Feuer-Attacken wirkungslos zu machen." + }, + "desolateLand": { + "name": "Endland", + "description": "Ändert das Wetter, um Wasser-Attacken wirkungslos zu machen." + }, + "deltaStream": { + "name": "DeltaWind", + "description": "Ändert das Wetter, um die Schwächen des Typs Flug zu beseitigen." + }, + "stamina": { + "name": "Zähigkeit", + "description": "Wird es von einer Attacke getroffen, steigt seine Verteidigung." + }, + "wimpOut": { + "name": "Reißaus", + "description": "Fallen seine KP auf die Hälfte des Maximalwerts oder weniger, zieht es sich ängstlich zurück." + }, + "emergencyExit": { + "name": "Rückzug", + "description": "Fallen seine KP auf die Hälfte des Maximalwerts oder weniger, bringt es sich in Sicherheit." + }, + "waterCompaction": { + "name": "Verklumpen", + "description": "Wird es von einer Wasser-Attacke getroffen, steigt seine Verteidigung stark." + }, + "merciless": { + "name": "Quälerei", + "description": "Sorgt bei Angriffen auf vergiftete Ziele für Volltreffergarantie." + }, + "shieldsDown": { + "name": "Limitschild", + "description": "Fallen seine KP auf die Hälfte des Maximalwerts oder weniger, zerbricht die Panzerung des Pokémon und es wird aggressiver." + }, + "stakeout": { + "name": "Beschattung", + "description": "Bewirkt bei Angriffen auf neu eingewechselte Ziele doppelten Schaden." + }, + "waterBubble": { + "name": "Wasserblase", + "description": "Feuer-Attacken fügen dem Pokémon weniger Schaden zu. Verhindert Verbrennungen." + }, + "steelworker": { + "name": "Stahlprofi", + "description": "Erhöht die Stärke von Stahl-Attacken." + }, + "berserk": { + "name": "Wutausbruch", + "description": "Fallen seine KP nach einem Angriff auf die Hälfte des Maximalwerts oder weniger, steigt sein Spezial-Angriff." + }, + "slushRush": { + "name": "Schneescharrer", + "description": "Erhöht bei Hagel die Initiative." + }, + "longReach": { + "name": "Langstrecke", + "description": "Ermöglicht dem Pokémon den Einsatz aller seiner Attacken, ohne das Ziel dabei direkt zu berühren." + }, + "liquidVoice": { + "name": "Plätscherstimme", + "description": "Bewirkt, dass alle Lärm-Attacken des Pokémon den Typ Wasser annehmen." + }, + "triage": { + "name": "Heilwandel", + "description": "Ermöglicht einen Erstschlag mit Attacken, welche die KP des Anwenders direkt regenerieren." + }, + "galvanize": { + "name": "Elektrohaut", + "description": "Attacken vom Typ Normal nehmen den Typ Elektro an und ihre Stärke erhöht sich ein wenig." + }, + "surgeSurfer": { + "name": "SurfSchweif", + "description": "Verdoppelt die Initiative, wenn zuvor ein Elektrofeld erzeugt wurde." + }, + "schooling": { + "name": "Fischschwarm", + "description": "Verfügt es über einen hohen KP-Wert, wird es zu einem Schwarm und gewinnt an Stärke. Ist der KP-Wert niedrig, löst sich der Schwarm wieder auf." + }, + "disguise": { + "name": "Kostümspuk", + "description": "Kann ein Mal pro Kampf mit seinem gruseligen Kostüm einen Angriff abwehren." + }, + "battleBond": { + "name": "Freundschaftsakt", + "description": "Besiegt es ein Ziel, vertieft dies die Freundschaft zu seinem Trainer, wodurch es die Ash-Form annimmt und sein Wasser-Shuriken stärker wird." + }, + "powerConstruct": { + "name": "Scharwandel", + "description": "Fallen seine KP auf die Hälfte des Maximalwerts oder weniger, eilen ihm weitere Zellen zu Hilfe und es nimmt die Optimumform an." + }, + "corrosion": { + "name": "Korrosion", + "description": "Kann selbst Pokémon vom Typ Stahl oder Gift vergiften." + }, + "comatose": { + "name": "Dauerschlaf", + "description": "Das Pokémon befindet sich ununterbrochen im Halbschlaf und wacht nie vollständig auf. Es kann jedoch im Schlaf angreifen." + }, + "queenlyMajesty": { + "name": "Majestät", + "description": "Schüchtert Gegner ein und hindert sie so daran, Erstschlag-Attacken gegen es einzusetzen." + }, + "innardsOut": { + "name": "Magenkrempler", + "description": "Wird es durch eine Attacke besiegt, fügt es dem Angreifer Schaden in Höhe des KP-Werts zu, den es besaß, bevor es kampfunfähig wurde." + }, + "dancer": { + "name": "Tänzer", + "description": "Kann direkt im Anschluss an die Tanz-Attacke eines anderen Pokémon ebenfalls eine solche einsetzen." + }, + "battery": { + "name": "Batterie", + "description": "Erhöht die Stärke der Spezial-Attacken seiner Mitstreiter." + }, + "fluffy": { + "name": "Flauschigkeit", + "description": "Halbiert den Schaden, den es durch direkte Attacken nimmt, aber verdoppelt dafür den durch Feuer-Attacken erlittenen Schaden." + }, + "dazzling": { + "name": "Buntkörper", + "description": "Überrascht Gegner und hindert sie so daran, Erstschlag-Attacken gegen es einzusetzen." + }, + "soulHeart": { + "name": "Seelenherz", + "description": "Erhöht jedes Mal, wenn ein Pokémon besiegt wird, den eigenen Spezial-Angriff." + }, + "tanglingHair": { + "name": "Lockenkopf", + "description": "Senkt bei Berührung im Zuge eines Angriffs die Initiative des Angreifers." + }, + "receiver": { + "name": "Receiver", + "description": "Wird einer seiner Mitstreiter besiegt, erhält es dessen Fähigkeit." + }, + "powerOfAlchemy": { + "name": "Chemiekraft", + "description": "Wechselt seine Fähigkeit zu der eines kampfunfähig gewordenen Mitstreiters." + }, + "beastBoost": { + "name": "Bestien-Boost", + "description": "Erhöht in jeder Runde, in der es ein anderes Pokémon besiegt, seinen höchsten Statuswert." + }, + "rksSystem": { + "name": "Alpha-System", + "description": "Das Pokémon passt seinen Typ der getragenen Disc an." + }, + "electricSurge": { + "name": "Elektro-Erzeuger", + "description": "Erzeugt bei Kampfantritt ein Elektrofeld." + }, + "psychicSurge": { + "name": "Psycho-Erzeuger", + "description": "Erzeugt bei Kampfantritt ein Psychofeld." + }, + "mistySurge": { + "name": "Nebel-Erzeuger", + "description": "Erzeugt bei Kampfantritt ein Nebelfeld." + }, + "grassySurge": { + "name": "Gras-Erzeuger", + "description": "Erzeugt bei Kampfantritt ein Grasfeld." + }, + "fullMetalBody": { + "name": "Metallprotektor", + "description": "Verhindert das Senken der Statuswerte durch Attacken und Fähigkeiten von Angreifern." + }, + "shadowShield": { + "name": "Phantomschutz", + "description": "Verringert den erlittenen Schaden bei vollen KP." + }, + "prismArmor": { + "name": "Prismarüstung", + "description": "Reduziert die Stärke von sehr effektiven Attacken und verringert damit den Schaden, den das Pokémon durch sie erleidet." + }, + "neuroforce": { + "name": "Zerebralmacht", + "description": "Erhöht die Stärke von sehr effektiven Attacken." + }, + "intrepidSword": { + "name": "Kühnes Schwert", + "description": "Erhöht bei Kampfantritt den Angriff." + }, + "dauntlessShield": { + "name": "Wackerer Schild", + "description": "Erhöht bei Kampfantritt die Verteidigung." + }, + "libero": { + "name": "Libero", + "description": "Das Pokémon nimmt bei Einsatz einer Attacke deren Typ an." + }, + "ballFetch": { + "name": "Apport", + "description": "Trägt das Pokémon kein Item bei sich, hebt es den Ball aus dem ersten gescheiterten Fangversuch des Kampfes wieder auf." + }, + "cottonDown": { + "name": "Wollflaum", + "description": "Wird es von einem Angriff getroffen, verstreut es Teile seines Wollflaums, wodurch die Initiative aller anderen Pokémon sinkt." + }, + "propellerTail": { + "name": "Schraubflosse", + "description": "Ignoriert die Effekte von Fähigkeiten und Attacken anderer Pokémon, die Attacken auf sich lenken." + }, + "mirrorArmor": { + "name": "Spiegelrüstung", + "description": "Lenkt ausschließlich Effekte, welche die Statuswerte des Pokémon senken würden, auf den Angreifer um." + }, + "gulpMissile": { + "name": "Würggeschoss", + "description": "Wenn das Pokémon Surfer oder Taucher einsetzt, fängt es sich dabei Beute. Erleidet es anschließend Schaden, greift es an, indem es die Beute wieder ausspuckt." + }, + "stalwart": { + "name": "Stahlrückgrat", + "description": "Ignoriert die Effekte von Fähigkeiten und Attacken anderer Pokémon, die Attacken auf sich lenken." + }, + "steamEngine": { + "name": "Dampfantrieb", + "description": "Wird es von einer Wasser- oder Feuer-Attacke getroffen, steigt seine Initiative drastisch." + }, + "punkRock": { + "name": "Punk Rock", + "description": "Erhöht die Stärke von eigenen Lärm-Attacken und halbiert den Schaden, den das Pokémon selbst durch Lärm-Attacken erleidet." + }, + "sandSpit": { + "name": "Sandspeier", + "description": "Löst einen Sandsturm aus, wenn das Pokémon von einer Attacke erfasst wird." + }, + "iceScales": { + "name": "Eisflügelstaub", + "description": "Halbiert mithilfe von schützendem Eisflügelstaub den Schaden, den das Pokémon durch Spezial-Attacken erleidet." + }, + "ripen": { + "name": "Heranreifen", + "description": "Verdoppelt den Effekt von Beeren, indem es sie heranreifen lässt." + }, + "iceFace": { + "name": "Tiefkühlkopf", + "description": "Der Eisblock um seinen Kopf blockt eine physische Attacke ab. Dies bewirkt jedoch einen Formwechsel. Durch Hagel wird der Eisblock wiederhergestellt." + }, + "powerSpot": { + "name": "Kraftquelle", + "description": "Erhöht bei direkt benachbarten Pokémon die Stärke von Attacken." + }, + "mimicry": { + "name": "Mimese", + "description": "Der Typ des Pokémon ändert sich in Abhängigkeit vom Zustand des Feldes." + }, + "screenCleaner": { + "name": "Hemmungslos", + "description": "Hebt bei Kampfantritt die Wirkung von Lichtschild, Reflektor und Auroraschleier auf Mitstreiter- und Gegnerseite auf." + }, + "steelySpirit": { + "name": "Stählerner Wille", + "description": "Erhöht die Stärke von Stahl-Attacken auf Mitstreiterseite." + }, + "perishBody": { + "name": "Unheilskörper", + "description": "Erleidet es einen Treffer von einer direkten Attacke, wird es zusammen mit dem Angreifer nach drei Runden besiegt. Rettung ist durch Austausch möglich." + }, + "wanderingSpirit": { + "name": "Rastlose Seele", + "description": "Wird das Pokémon von einer direkten Attacke getroffen, tauscht es seine Fähigkeit mit der des Angreifers." + }, + "gorillaTactics": { + "name": "Affenfokus", + "description": "Erhöht den Angriff, aber nur die zuerst gewählte Attacke kann eingesetzt werden." + }, + "neutralizingGas": { + "name": "Reaktionsgas", + "description": "Solange ein Pokémon mit der Fähigkeit Reaktionsgas am Kampf beteiligt ist, werden die Fähigkeiten aller anderen Pokémon unterdrückt oder aufgehoben." + }, + "pastelVeil": { + "name": "Pastellhülle", + "description": "Schützt das Pokémon und seine Mitstreiter vor Vergiftung." + }, + "hungerSwitch": { + "name": "Heißhunger", + "description": "Das Pokémon ändert zum Ende jeder Runde seine Form und wechselt somit zwischen dem Pappsatt- und dem Kohldampfmuster." + }, + "quickDraw": { + "name": "Schnellschuss", + "description": "Ermöglicht dem Pokémon gelegentlich den Erstschlag." + }, + "unseenFist": { + "name": "Verborgene Faust", + "description": "Wenn das Pokémon eine direkte Attacke einsetzt, trifft diese auch dann, wenn sich das Ziel selbst schützt." + }, + "curiousMedicine": { + "name": "Kuriose Arznei", + "description": "Das Pokémon versprüht bei Kampfantritt Arznei aus seiner Muschel, die alle Statusveränderungen auf der Mitstreiterseite aufhebt." + }, + "transistor": { + "name": "Transistor", + "description": "Erhöht die Stärke von Elektro-Attacken." + }, + "dragonsMaw": { + "name": "Drachenkiefer", + "description": "Erhöht die Stärke von Drachen-Attacken." + }, + "chillingNeigh": { + "name": "Helles Wiehern", + "description": "Besiegt es ein Pokémon, stößt es ein frostiges Wiehern aus und erhöht damit seinen Angriff." + }, + "grimNeigh": { + "name": "Dunkles Wiehern", + "description": "Besiegt es ein Pokémon, stößt es ein furchteinflößendes Wiehern aus und erhöht damit seinen Spezial-Angriff." + }, + "asOneGlastrier": { + "name": "Reitgespann", + "description": "Das Pokémon verfügt sowohl über Coronospas Fähigkeit Anspannung als auch über Polaross’ Fähigkeit Helles Wiehern." + }, + "asOneSpectrier": { + "name": "Reitgespann", + "description": "Das Pokémon verfügt sowohl über Coronospas Fähigkeit Anspannung als auch über Phantoross’ Fähigkeit Dunkles Wiehern." + }, + "lingeringAroma": { + "name": "Duftschwade", + "description": "Das Pokémon überträgt bei Berührung die Fähigkeit Duftschwade auf den Angreifer." + }, + "seedSower": { + "name": "Streusaat", + "description": "Wird das Pokémon von einem Angriff getroffen, erzeugt es ein Grasfeld." + }, + "thermalExchange": { + "name": "Thermowandel", + "description": "Wird das Pokémon von einer Feuer-Attacke getroffen, steigt sein Angriff. Außerdem kann es keine Verbrennung erleiden." + }, + "angerShell": { + "name": "Wutpanzer", + "description": "Fallen die KP des Pokémon durch einen Angriff auf die Hälfte des Maximalwerts oder weniger, sinken Vert. und Sp.-Vert., aber Ang., Sp.-Ang. und Initiative steigen." + }, + "purifyingSalt": { + "name": "Läutersalz", + "description": "Das Pokémon kann dank seines läuternden Salzes keine Statusprobleme erleiden und der durch Geist-Attacken erlittene Schaden wird halbiert." + }, + "wellBakedBody": { + "name": "Knusperkruste", + "description": "Wird das Pokémon von einer Feuer-Attacke getroffen, erleidet es keinen Schaden. Stattdessen steigt seine Verteidigung stark." + }, + "windRider": { + "name": "Windreiter", + "description": "Wirkt Rückenwind oder wird das Pokémon von einer Wind-Attacke getroffen, steigt sein Angriff. Außerdem erleidet es keinen Schaden durch Wind-Attacken." + }, + "guardDog": { + "name": "Wachhund", + "description": "Wird das Pokémon bedroht, steigt sein Angriff. Attacken und Items, durch die Pokémon ausgetauscht werden, haben keine Wirkung auf es." + }, + "rockyPayload": { + "name": "Steinträger", + "description": "Die Stärke von Gesteins-Attacken des Pokémon steigt." + }, + "windPower": { + "name": "Windkraft", + "description": "Wird das Pokémon von einer Wind-Attacke getroffen, lädt es sich auf. Dadurch steigt die Stärke seiner nächsten Elektro-Attacke." + }, + "zeroToHero": { + "name": "Superwechsel", + "description": "Wird das Pokémon ausgewechselt, nimmt es die Heldenform an." + }, + "commander": { + "name": "Kommandant", + "description": "Befindet sich ein Heerashai auf der Mitstreiterseite, springt das Pokémon bei Kampfantritt in dessen Maul und gibt von dort aus Befehle." + }, + "electromorphosis": { + "name": "Dynamo", + "description": "Wenn das Pokémon Schaden erleidet, lädt es sich auf. Dadurch steigt die Stärke seiner nächsten Elektro-Attacke." + }, + "protosynthesis": { + "name": "Paläosynthese", + "description": "Bei Sonnenschein oder wenn das Pokémon eine Energiekapsel trägt, steigt sein höchster Statuswert." + }, + "quarkDrive": { + "name": "Quantenantrieb", + "description": "Im Elektrofeld oder wenn das Pokémon eine Energiekapsel trägt, steigt sein höchster Statuswert." + }, + "goodAsGold": { + "name": "Goldkörper", + "description": "Dank seines robusten Körpers aus reinem, rostfreiem Gold kann das Pokémon nicht von Status-Attacken getroffen werden." + }, + "vesselOfRuin": { + "name": "Unheilsgefäß", + "description": "Mit der Macht seines Unheil bringenden Gefäßes schwächt das Pokémon den Spezial-Angriff aller anderen Pokémon." + }, + "swordOfRuin": { + "name": "Unheilsschwert", + "description": "Mit der Macht seines Unheil bringenden Schwertes schwächt das Pokémon die Verteidigung aller anderen Pokémon." + }, + "tabletsOfRuin": { + "name": "Unheilstafeln", + "description": "Mit der Macht seiner Unheil bringenden Holztafeln schwächt das Pokémon den Angriff aller anderen Pokémon." + }, + "beadsOfRuin": { + "name": "Unheilsjuwelen", + "description": "Mit der Macht seiner Unheil bringenden Juwelen schwächt das Pokémon die Spezial-Verteidigung aller anderen Pokémon." + }, + "orichalcumPulse": { + "name": "Orichalkum-Puls", + "description": "Das Pokémon erzeugt bei Kampfantritt Sonnenschein. Bei Sonnenschein verstärkt ein urzeitlicher Puls seinen Angriff." + }, + "hadronEngine": { + "name": "Hadronen-Motor", + "description": "Das Pokémon erzeugt bei Kampfantritt ein Elektrofeld. Wenn ein Elektrofeld aktiv ist, verstärkt ein futuristischer Motor seinen Spezial-Angriff." + }, + "opportunist": { + "name": "Profiteur", + "description": "Wenn ein Statuswert eines Gegners steigt, profitiert das Pokémon ebenfalls davon und der gleiche Statuswert steigt auch bei ihm." + }, + "cudChew": { + "name": "Wiederkäuer", + "description": "Wenn ein Pokémon eine Beere isst, stößt es diese am Ende der nächsten Runde wieder aus seinem Magen auf und verspeist diese erneut." + }, + "sharpness": { + "name": "Scharfkantig", + "description": "Die Stärke von Schnitt-Attacken des Pokémon steigt." + }, + "supremeOverlord": { + "name": "Feldherr", + "description": "Bei Kampfantritt steigen der Angriff und Spezial-Angriff des Pokémon ein bisschen für jedes bis dahin besiegte Team-Mitglied." + }, + "costar": { + "name": "Synchronauftritt", + "description": "Das Pokémon kopiert bei Kampfantritt die Statusveränderungen eines Mitstreiters." + }, + "toxicDebris": { + "name": "Giftbelag", + "description": "Erleidet das Pokémon Schaden durch eine physische Attacke, verstreut es giftige Stacheln auf der gegnerischen Seite." + }, + "armorTail": { + "name": "Schweifrüstung", + "description": "Der rätselhafte Schweif, der den Kopf des Pokémon umhüllt, hindert Gegner daran, Erstschlag-Attacken gegen die Mitstreiterseite einzusetzen." + }, + "earthEater": { + "name": "Bodenschmaus", + "description": "Wird das Pokémon von einer Boden-Attacke getroffen, erleidet es keinen Schaden, sondern regeneriert stattdessen KP." + }, + "myceliumMight": { + "name": "Myzelienkraft", + "description": "Beim Einsatz von Status-Attacken handelt das Pokémon stets langsamer, aber dafür kann es sie ungeachtet der Fähigkeit des Zieles einsetzen." + }, + "mindsEye": { + "name": "Geistiges Auge", + "description": "Die Genauigkeit des Pokémon kann nicht gesenkt werden. Es ignoriert Änderungen am Ausweichwert des Zieles und trifft mit Normal- und Kampf-Attacken Geister-Pokémon." + }, + "supersweetSyrup": { + "name": "Süßer Nektar", + "description": "Beim ersten Kampfantritt verbreitet das Pokémon den Duft süßen Nektars und senkt so den Ausweichwert seiner Gegner." + }, + "hospitality": { + "name": "Gastlichkeit", + "description": "Bei Kampfantritt zeigt das Pokémon seine Gastlichkeit, indem es die KP seines Mitstreiters ein wenig auffüllt." + }, + "toxicChain": { + "name": "Giftkette", + "description": "Durch die toxischen Stoffe in seiner Kette werden Ziele, die das Pokémon mit einer Attacke trifft, gelegentlich schwer vergiftet." + }, + "embodyAspectTeal": { + "name": "Erinnerungskraft", + "description": "Die Erinnerungen, die das Pokémon in sich trägt, lassen die Türkisgrüne Maske aufleuchten und erhöhen seine Initiative." + }, + "embodyAspectWellspring": { + "name": "Erinnerungskraft", + "description": "Die Erinnerungen, die das Pokémon in sich trägt, lassen die Brunnenmaske aufleuchten und erhöhen seine Spezial-Verteidigung." + }, + "embodyAspectHearthflame": { + "name": "Erinnerungskraft", + "description": "Die Erinnerungen, die das Pokémon in sich trägt, lassen die Ofenmaske aufleuchten und erhöhen seinen Angriff." + }, + "embodyAspectCornerstone": { + "name": "Erinnerungskraft", + "description": "Die Erinnerungen, die das Pokémon in sich trägt, lassen die Fundamentmaske aufleuchten und erhöhen seine Verteidigung." + }, + "teraShift": { + "name": "Tera-Wandel", + "description": "Bei Kampfantritt absorbiert das Pokémon Energie in seiner Umgebung und nimmt die Terakristall-Form an." + }, + "teraShell": { + "name": "Tera-Panzer", + "description": "Der Panzer des Pokémon birgt die Kraft aller Typen in sich. Alle Schaden verursachenden Attacken, die es bei vollen KP treffen, sind nicht sehr effektiv." + }, + "teraformZero": { + "name": "Teraforming Null", + "description": "Wenn Terapagos die Stellarform annimmt, eliminiert es dank seiner verborgenen Kräfte sämtliche Wettereffekte und Felder." + }, + "poisonPuppeteer": { + "name": "Giftpuppenspiel", + "description": "Wenn Infamomo ein Ziel mit einer Attacke vergiftet, so wird dieses auch verwirrt." + } +} \ No newline at end of file diff --git a/src/locales/de/ability.ts b/src/locales/de/ability.ts deleted file mode 100644 index e397b84c7b7..00000000000 --- a/src/locales/de/ability.ts +++ /dev/null @@ -1,1244 +0,0 @@ -import { AbilityTranslationEntries } from "#app/interfaces/locales.js"; - -export const ability: AbilityTranslationEntries = { - stench: { - name: "Duftnote", - description: "Lässt das Ziel beim Angriff eventuell durch Gestank zurückschrecken.", - }, - drizzle: { - name: "Niesel", - description: "Ruft bei Kampfantritt Regen herbei.", - }, - speedBoost: { - name: "Temposchub", - description: "Erhöht in jeder Runde die Initiative.", - }, - battleArmor: { - name: "Kampfpanzer", - description: "Wehrt gegnerische Volltreffer mit einem harten Panzer ab.", - }, - sturdy: { - name: "Robustheit", - description: "Bietet Schutz gegen K.O.-Attacken. Bei vollen KP übersteht das Pokémon auch K.O.-Treffer.", - }, - damp: { - name: "Feuchtigkeit", - description: "Befeuchtet die Umgebung und verhindert so den Einsatz von Attacken wie Finale, die Explosionen auslösen.", - }, - limber: { - name: "Flexibilität", - description: "Der flexible Körper des Pokémon schützt es vor Paralyse.", - }, - sandVeil: { - name: "Sandschleier", - description: "Erhöht in Sandstürmen den Ausweichwert.", - }, - static: { - name: "Statik", - description: "Kann bei Berührung durch statisch aufgeladenen Körper paralysieren.", - }, - voltAbsorb: { - name: "Voltabsorber", - description: "Treffer durch Elektro-Attacken verursachen keinen Schaden, sondern regenerieren stattdessen KP.", - }, - waterAbsorb: { - name: "H2OAbsorber", - description: "Treffer durch Wasser-Attacken verursachen keinen Schaden, sondern regenerieren stattdessen KP.", - }, - oblivious: { - name: "Dösigkeit", - description: "Das Pokémon ist so apathisch, dass es nicht betört oder provoziert werden kann.", - }, - cloudNine: { - name: "Wolke Sieben", - description: "Hebt alle Wetter-Effekte auf.", - }, - compoundEyes: { - name: "Facettenauge", - description: "Erhöht die Genauigkeit von Attacken.", - }, - insomnia: { - name: "Insomnia", - description: "Verhindert Einschlafen.", - }, - colorChange: { - name: "Farbwechsel", - description: "Ändert seinen Typ zu dem der Attacke des Angreifers.", - }, - immunity: { - name: "Immunität", - description: "Das starke Immunsystem des Pokémon verhindert Vergiftungen.", - }, - flashFire: { - name: "Feuerfänger", - description: "Verstärkt Feuer-Attacken, wenn es von Feuer-Attacken getroffen wird.", - }, - shieldDust: { - name: "Puderabwehr", - description: "Blockiert durch Puder die Zusatzeffekte gegnerischer Angriffe.", - }, - ownTempo: { - name: "Tempomacher", - description: "Das Pokémon lässt sich nicht aus der Ruhe bringen und verhindert so Verwirrung.", - }, - suctionCups: { - name: "Saugnapf", - description: "Blockt Attacken und Items, die Pokémon austauschen, indem es sich mit einem Saugnapf am Boden verankert.", - }, - intimidate: { - name: "Bedroher", - description: "Senkt den Angriff der Gegner, indem es sie gleich zu Kampfantritt bedroht und einschüchtert.", - }, - shadowTag: { - name: "Wegsperre", - description: "Hindert Gegner an der Flucht beziehungsweise am Auswechseln, indem es ihnen den Weg versperrt.", - }, - roughSkin: { - name: "Rauhaut", - description: "Angreifer werden durch die raue Haut des Pokémon bei direkten Attacken verletzt.", - }, - wonderGuard: { - name: "Wunderwache", - description: "Wundersame Kräfte bewirken, dass nur sehr effektive Treffer bei ihm Schaden anrichten.", - }, - levitate: { - name: "Schwebe", - description: "Verleiht volle Immunität gegen alle Boden-Attacken durch Schwebezustand.", - }, - effectSpore: { - name: "Sporenwirt", - description: "Wird dieses Pokémon durch eine direkte Attacke angegriffen, kann das beim Gegner Paralyse, Vergiftung oder Schlaf auslösen.", - }, - synchronize: { - name: "Synchro", - description: "Erleidet das Pokémon Verbrennungen, Vergiftungen oder Paralyse, ereilt das jeweilige Statusproblem auch den Verursacher.", - }, - clearBody: { - name: "Neutraltorso", - description: "Verhindert das Senken der Statuswerte durch Attacken und Fähigkeiten von Angreifern.", - }, - naturalCure: { - name: "Innere Kraft", - description: "Wird das Pokémon ausgewechselt, werden seine Statusprobleme geheilt.", - }, - lightningRod: { - name: "Blitzfänger", - description: "Zieht Elektro-Attacken an. Statt durch diese Schaden zu nehmen, erhöht es den eigenen Spezial-Angriff.", - }, - sereneGrace: { - name: "Edelmut", - description: "Erhöht die Wahrscheinlichkeit, dass Zusatzeffekte von Attacken auftreten.", - }, - swiftSwim: { - name: "Wassertempo", - description: "Erhöht bei Regen die Initiative.", - }, - chlorophyll: { - name: "Chlorophyll", - description: "Erhöht bei Sonnenschein die Initiative.", - }, - illuminate: { - name: "Erleuchtung", - description: "Erhellt die Umgebung und erhöht dadurch die Wahrscheinlichkeit, wilden Pokémon zu begegnen.", - }, - trace: { - name: "Erfassen", - description: "Kopiert bei Kampfantritt die Fähigkeit eines Gegners.", - }, - hugePower: { - name: "Kraftkoloss", - description: "Verdoppelt die Stärke von physischen Attacken.", - }, - poisonPoint: { - name: "Giftdorn", - description: "Vergiftet den Angreifer bei Berührung eventuell.", - }, - innerFocus: { - name: "Konzentrator", - description: "Verhindert durch erhöhte Konzentrationsfähigkeit Zurückschrecken.", - }, - magmaArmor: { - name: "Magmapanzer", - description: "Dank eines Panzers aus Magma kann dieses Pokémon nicht eingefroren werden.", - }, - waterVeil: { - name: "Aquahülle", - description: "Verhindert durch eine Hülle aus Wasser Verbrennungen.", - }, - magnetPull: { - name: "Magnetfalle", - description: "Hindert Stahl-Pokémon durch Magnetismus an der Flucht.", - }, - soundproof: { - name: "Lärmschutz", - description: "Bietet durch Schalldämmung volle Immunität gegen alle Lärm-Attacken.", - }, - rainDish: { - name: "Regengenuss", - description: "Regeneriert bei Regen nach und nach KP.", - }, - sandStream: { - name: "Sandsturm", - description: "Erzeugt bei Kampfantritt Sandstürme.", - }, - pressure: { - name: "Erzwinger", - description: "Zwingt Gegner dazu, beim Einsatz von Attacken mehr AP zu verbrauchen.", - }, - thickFat: { - name: "Speckschicht", - description: "Das Pokémon wird von einer dicken Fettschicht geschützt, was den durch Feuer- und Eis-Attacken erlittenen Schaden halbiert.", - }, - earlyBird: { - name: "Frühwecker", - description: "Wenn es eingeschlafen ist, kann es doppelt so schnell wieder aufwachen wie andere Pokémon.", - }, - flameBody: { - name: "Flammkörper", - description: "Fügt dem Angreifer bei Berührung eventuell Verbrennungen zu.", - }, - runAway: { - name: "Angsthase", - description: "Die Flucht vor wilden Pokémon gelingt immer.", - }, - keenEye: { - name: "Adlerauge", - description: "Sein scharfer Blick hindert Angreifer daran, seine Genauigkeit zu senken.", - }, - hyperCutter: { - name: "Scherenmacht", - description: "Hindert Angreifer durch mächtige Scheren daran, den Angriffs-Wert zu senken.", - }, - pickup: { - name: "Mitnahme", - description: "Hebt gelegentlich von Gegnern benutzte Items auf. Dies geschieht nicht nur während Kämpfen, sondern auch unterwegs.", - }, - truant: { - name: "Schnarchnase", - description: "Das Pokémon muss nach Einsatz einer Attacke eine Runde lang aussetzen.", - }, - hustle: { - name: "Übereifer", - description: "Erhöht den Angriffs-Wert, aber senkt die Genauigkeit.", - }, - cuteCharm: { - name: "Charmebolzen", - description: "Wird dieses Pokémon durch eine direkte Attacke angegriffen, verliebt sich der Gegner eventuell in es.", - }, - plus: { - name: "Plus", - description: "Erhöht den Spezial-Angriff, wenn das Pokémon einen Mitstreiter mit der Fähigkeit Plus oder Minus hat.", - }, - minus: { - name: "Minus", - description: "Erhöht den Spezial-Angriff, wenn das Pokémon einen Mitstreiter mit der Fähigkeit Plus oder Minus hat.", - }, - forecast: { - name: "Prognose", - description: "Nimmt je nach Wetter entweder den Typ Wasser, Feuer oder Eis an.", - }, - stickyHold: { - name: "Klebekörper", - description: "Trägt es ein Item, bleibt dieses an seinem klebrigen Körper haften, wodurch Item-Diebstahl verhindert wird.", - }, - shedSkin: { - name: "Expidermis", - description: "Das Pokémon befreit sich eventuell von Statusproblemen, indem es seine Haut abstreift.", - }, - guts: { - name: "Adrenalin", - description: "Bei Statusproblemen setzt es Adrenalin frei und erhöht so seinen Angriffs-Wert.", - }, - marvelScale: { - name: "Notschutz", - description: "Bei Statusproblemen schützt es sich mit mysteriösen Schuppen und erhöht so seine Verteidigung.", - }, - liquidOoze: { - name: "Kloakensoße", - description: "Angreifer, die durch Saug-Attacken Kloakensoße in sich aufgenommen haben, nehmen durch deren widerwärtigen Gestank Schaden.", - }, - overgrow: { - name: "Notdünger", - description: "Erhöht die Stärke von Pflanzen-Attacken, wenn die KP auf einen gewissen Wert fallen.", - }, - blaze: { - name: "Großbrand", - description: "Erhöht die Stärke von Feuer-Attacken, wenn die KP auf einen gewissen Wert fallen.", - }, - torrent: { - name: "Sturzbach", - description: "Erhöht die Stärke von Wasser-Attacken, wenn die KP auf einen gewissen Wert fallen.", - }, - swarm: { - name: "Hexaplaga", - description: "Erhöht die Stärke von Käfer-Attacken, wenn die KP auf einen gewissen Wert fallen.", - }, - rockHead: { - name: "Steinhaupt", - description: "Verhindert Schaden, der durch Rückstoß entstehen würde.", - }, - drought: { - name: "Dürre", - description: "Erzeugt bei Kampfantritt gleißendes Sonnenlicht.", - }, - arenaTrap: { - name: "Ausweglos", - description: "Hindert Gegner im Kampf an der Flucht.", - }, - vitalSpirit: { - name: "Munterkeit", - description: "Das Pokémon ist so munter, dass es nicht einschlafen kann.", - }, - whiteSmoke: { - name: "Pulverrauch", - description: "Indem es sich mit pulvrigem Rauch umhüllt, hindert es Angreifer daran, seine Statuswerte zu senken.", - }, - purePower: { - name: "Mentalkraft", - description: "Verdoppelt mit reiner Willenskraft die Stärke seiner physischen Attacken.", - }, - shellArmor: { - name: "Panzerhaut", - description: "Wehrt gegnerische Volltreffer mit einem harten Panzer ab.", - }, - airLock: { - name: "Klimaschutz", - description: "Hebt alle Wetter-Effekte auf.", - }, - tangledFeet: { - name: "Fußangel", - description: "Erhöht den Ausweichwert, wenn das Pokémon verwirrt ist.", - }, - motorDrive: { - name: "Starthilfe", - description: "Treffer durch Elektro-Attacken verursachen keinen Schaden, sondern geben dem Pokémon eine Starthilfe und erhöhen so seine Initiative.", - }, - rivalry: { - name: "Rivalität", - description: "Greift es einen Rivalen desselben Geschlechts an, wird es stärker. Greift es ein Ziel des anderen Geschlechts an, wird es schwächer.", - }, - steadfast: { - name: "Felsenfest", - description: "Sein eiserner Wille erhöht die Initiative, wann immer das Pokémon zurückschreckt.", - }, - snowCloak: { - name: "Schneemantel", - description: "Erhöht bei Hagel den Ausweichwert.", - }, - gluttony: { - name: "Völlerei", - description: "Setzt bestimmte Beeren nicht erst in einer Notlage ein, sondern bereits dann, wenn seine KP auf die Hälfte des Maximalwerts fallen.", - }, - angerPoint: { - name: "Kurzschluss", - description: "Wird nach Einstecken eines Volltreffers wütend und maximiert dabei seinen Angriffs-Wert.", - }, - unburden: { - name: "Entlastung", - description: "Wenn das von ihm getragene Item verwendet wird oder verloren geht, erhöht dies seine Initiative.", - }, - heatproof: { - name: "Hitzeschutz", - description: "Sein Hitze abweisender Körper halbiert den durch Feuer-Attacken erlittenen Schaden.", - }, - simple: { - name: "Wankelmut", - description: "Verdoppelt die Wirkung eigener Statusveränderungen.", - }, - drySkin: { - name: "Trockenheit", - description: "Bei Sonnenschein verliert das Pokémon KP und der Schaden durch Feuer-Attacken steigt. Bei Regen und Treffern durch Wasser-Attacken regeneriert es KP.", - }, - download: { - name: "Download", - description: "Ist die Spezial-Verteidigung des Gegners höher als seine Verteidigung, wird der eigene Spezial-Angriff erhöht. Ist die Verteidigung höher, steigt der Angriff.", - }, - ironFist: { - name: "Eisenfaust", - description: "Erhöht die Stärke von Hieb-, Punch-, Faust- und Schlag-Attacken.", - }, - poisonHeal: { - name: "Aufheber", - description: "Das Pokémon erleidet keinen Schaden durch Vergiftung, sondern regeneriert KP.", - }, - adaptability: { - name: "Anpassung", - description: "Erhöht die Stärke von Attacken, die dem Typ des Pokémon entsprechen.", - }, - skillLink: { - name: "Wertelink", - description: "Landet mit Serien-Attacken immer die maximale Anzahl an Treffern.", - }, - hydration: { - name: "Hydration", - description: "Heilt bei Regen Statusprobleme.", - }, - solarPower: { - name: "Solarkraft", - description: "Führt bei Sonnenschein in jeder Runde zu KP-Verlusten, erhöht aber den Spezial-Angriff.", - }, - quickFeet: { - name: "Rasanz", - description: "Erhöht bei Statusproblemen die Initiative.", - }, - normalize: { - name: "Regulierung", - description: "Alle Attacken des Pokémon nehmen den Typ Normal an und ihre Stärke erhöht sich ein wenig.", - }, - sniper: { - name: "Superschütze", - description: "Erhöht bei Volltreffern die Stärke der Attacke noch weiter.", - }, - magicGuard: { - name: "Magieschild", - description: "Das Pokémon nimmt nur durch Offensiv-Attacken Schaden.", - }, - noGuard: { - name: "Schildlos", - description: "Alle Attacken des oder auf das Pokémon gelingen aufgrund seiner deckungslosen Kampftaktik.", - }, - stall: { - name: "Zeitspiel", - description: "Handelt auch mit Initiative-Vorteil stets als Letztes.", - }, - technician: { - name: "Techniker", - description: "Erhöht die Stärke von schwächeren Attacken.", - }, - leafGuard: { - name: "Floraschild", - description: "Verhindert bei Sonnenschein Statusprobleme.", - }, - klutz: { - name: "Tollpatsch", - description: "Das Pokémon kann keine getragenen Items verwenden.", - }, - moldBreaker: { - name: "Überbrückung", - description: "Attacken können ungeachtet der Fähigkeiten des Zieles verwendet werden.", - }, - superLuck: { - name: "Glückspilz", - description: "Großes Glück erhöht die Wahrscheinlichkeit, einen Volltreffer zu landen.", - }, - aftermath: { - name: "Finalschlag", - description: "Wird das Pokémon durch eine direkte Attacke besiegt, fügt es dem Angreifer Schaden zu.", - }, - anticipation: { - name: "Vorahnung", - description: "Kann gefährliche gegnerische Attacken erahnen.", - }, - forewarn: { - name: "Vorwarnung", - description: "Gibt bei Kampfantritt Auskunft über eine Attacke aus dem gegnerischen Repertoire.", - }, - unaware: { - name: "Unkenntnis", - description: "Greift das Pokémon an, ignoriert es sämtliche Statusveränderungen des Zieles.", - }, - tintedLens: { - name: "Aufwertung", - description: "Bewirkt, dass nicht sehr effektive Attacken dem Ziel trotz des Typennachteils normalen Schaden zufügen.", - }, - filter: { - name: "Filter", - description: "Reduziert die Stärke von sehr effektiven Attacken und verringert damit den Schaden, den das Pokémon durch sie erleidet.", - }, - slowStart: { - name: "Saumselig", - description: "Halbiert fünf Runden lang den Angriffs-Wert und die Initiative des Pokémon.", - }, - scrappy: { - name: "Rauflust", - description: "Bewirkt, dass Normal- und Kampf-Attacken auch Pokémon vom Typ Geist treffen können.", - }, - stormDrain: { - name: "Sturmsog", - description: "Zieht Wasser-Attacken an. Statt durch diese Schaden zu nehmen, erhöht es den eigenen Spezial-Angriff.", - }, - iceBody: { - name: "Eishaut", - description: "Regeneriert bei Hagel nach und nach KP.", - }, - solidRock: { - name: "Felskern", - description: "Reduziert die Stärke von sehr effektiven Attacken und verringert damit den Schaden, den das Pokémon durch sie erleidet.", - }, - snowWarning: { - name: "Hagelalarm", - description: "Löst bei Kampfantritt Hagel aus.", - }, - honeyGather: { - name: "Honigmaul", - description: "Sammelt nach dem Kampf Honig. Dieser wird dann für Geld verkauft.", - }, - frisk: { - name: "Schnüffler", - description: "Kann bei Kampfantritt Auskunft über die Fähigkeit vom Gegner geben.", - }, - reckless: { - name: "Achtlos", - description: "Erhöht die Stärke von Attacken mit Rückstoßschaden.", - }, - multitype: { - name: "Variabilität", - description: "Das Pokémon passt seinen Typ dem der getragenen Tafel bzw. des getragenen Z-Kristalls an.", - }, - flowerGift: { - name: "Pflanzengabe", - description: "Erhöht bei Sonnenschein den Angriff und die Spezial-Verteidigung aller Team-Pokémon.", - }, - badDreams: { - name: "Alptraum", - description: "Fügt schlafenden Gegnern Schaden zu.", - }, - pickpocket: { - name: "Langfinger", - description: "Stiehlt das Item des Angreifers bei Berührung.", - }, - sheerForce: { - name: "Rohe Gewalt", - description: "Erhöht die Stärke von Attacken, aber hebt dafür ihre Zusatzeffekte auf.", - }, - contrary: { - name: "Umkehrung", - description: "Statusveränderungen werden umgekehrt: Statuswerte, die eigentlich erhöht werden sollten, sinken und umgekehrt.", - }, - unnerve: { - name: "Anspannung", - description: "Erzeugt bei Gegnern Stress und hindert sie so daran, Beeren zu konsumieren.", - }, - defiant: { - name: "Siegeswille", - description: "Erhöht den Angriff stark, wenn ein Statuswert gesenkt wurde.", - }, - defeatist: { - name: "Schwächling", - description: "Fallen seine KP auf die Hälfte des Maximalwerts oder weniger, bekommt es Angst. Dadurch wird die Stärke seines Angriffs und Spezial-Angriffs halbiert.", - }, - cursedBody: { - name: "Tastfluch", - description: "Blockiert eventuell die Attacke, mit welcher der Angreifer es getroffen hat.", - }, - healer: { - name: "Heilherz", - description: "Befreit Mitstreiter gelegentlich von Statusproblemen.", - }, - friendGuard: { - name: "Freundeshut", - description: "Kann den Schaden, den Mitstreiter erleiden, verringern.", - }, - weakArmor: { - name: "Bruchrüstung", - description: "Senkt bei erlittenem Treffer durch eine physische Attacke die Verteidigung des Pokémon, aber erhöht dafür seine Initiative stark.", - }, - heavyMetal: { - name: "Schwermetall", - description: "Verdoppelt das eigene Gewicht.", - }, - lightMetal: { - name: "Leichtmetall", - description: "Halbiert das eigene Gewicht.", - }, - multiscale: { - name: "Multischuppe", - description: "Verringert den erlittenen Schaden bei vollen KP.", - }, - toxicBoost: { - name: "Giftwahn", - description: "Erhöht bei Vergiftungen die Stärke von physischen Attacken.", - }, - flareBoost: { - name: "Hitzewahn", - description: "Erhöht bei Verbrennungen die Stärke von Spezial-Attacken.", - }, - harvest: { - name: "Reiche Ernte", - description: "Dieselbe Beere kann mehrmals verwendet werden.", - }, - telepathy: { - name: "Telepathie", - description: "Erkennt und pariert Attacken von Mitstreitern.", - }, - moody: { - name: "Gefühlswippe", - description: "Erhöht in jeder Runde aufs Neue einen Statuswert stark und senkt einen anderen.", - }, - overcoat: { - name: "Partikelschutz", - description: "Nimmt weder durch Wetterlagen wie Sandsturm oder Hagel noch durch Pulver oder Puder Schaden.", - }, - poisonTouch: { - name: "Giftgriff", - description: "Kann das Ziel durch bloßes Berühren vergiften.", - }, - regenerator: { - name: "Belebekraft", - description: "Wird das Pokémon ausgewechselt, regeneriert es eine kleine Menge an KP.", - }, - bigPecks: { - name: "Brustbieter", - description: "Hindert Angreifer daran, die Verteidigung des Pokémon zu senken.", - }, - sandRush: { - name: "Sandscharrer", - description: "Erhöht in Sandstürmen die Initiative.", - }, - wonderSkin: { - name: "Wunderhaut", - description: "Wehrt mit robustem Körper viele Status-Attacken ab.", - }, - analytic: { - name: "Analyse", - description: "Greift das Pokémon zuletzt an, erhöht sich die Stärke der Attacke, die es einsetzt.", - }, - illusion: { - name: "Trugbild", - description: "Führt den Gegner hinters Licht, indem es bei Kampfantritt die Gestalt des Pokémon an der letzten Stelle im Team annimmt.", - }, - imposter: { - name: "Doppelgänger", - description: "Kämpft als Kopie seines Gegenübers.", - }, - infiltrator: { - name: "Schwebedurch", - description: "Überwindet gegnerische Schilde sowie Delegatoren und greift an.", - }, - mummy: { - name: "Mumie", - description: "Überträgt bei Berührung die Fähigkeit Mumie auf den Angreifer.", - }, - moxie: { - name: "Hochmut", - description: "Besiegt es ein Pokémon, steigt sein Selbstvertrauen und somit auch sein Angriff.", - }, - justified: { - name: "Redlichkeit", - description: "Wird es von einer Unlicht-Attacke getroffen, meldet sich sein Sinn für Gerechtigkeit zu Wort und sein Angriff steigt.", - }, - rattled: { - name: "Hasenfuß", - description: "Wird es von einer Unlicht-, Geister- oder Käfer-Attacke getroffen, bekommt es Angst und seine Initiative steigt.", - }, - magicBounce: { - name: "Magiespiegel", - description: "Lenkt Status-Attacken auf den Angreifer um, ohne selbst von ihnen getroffen zu werden.", - }, - sapSipper: { - name: "Vegetarier", - description: "Wird es von einer Pflanzen-Attacke getroffen, erleidet es keinerlei Schaden und sein Angriff steigt.", - }, - prankster: { - name: "Strolch", - description: "Ermöglicht einen Erstschlag mit Status-Attacken.", - }, - sandForce: { - name: "Sandgewalt", - description: "Erhöht in Sandstürmen die Stärke von Gesteins-, Boden- und Stahl-Attacken.", - }, - ironBarbs: { - name: "Eisenstachel", - description: "Fügt dem Angreifer bei Berührung mit eisernen Stacheln Schaden zu.", - }, - zenMode: { - name: "TranceModus", - description: "Fallen seine KP auf die Hälfte des Maximalwerts oder weniger, wechselt es seine Gestalt.", - }, - victoryStar: { - name: "Triumphstern", - description: "Erhöht die Genauigkeit aller Team-Pokémon.", - }, - turboblaze: { - name: "Turbobrand", - description: "Attacken können ungeachtet der Fähigkeit des Zieles eingesetzt werden.", - }, - teravolt: { - name: "Teravolt", - description: "Attacken können ungeachtet der Fähigkeit des Zieles eingesetzt werden.", - }, - aromaVeil: { - name: "Dufthülle", - description: "Kann alle Team-Pokémon vor mentalen Angriffen schützen.", - }, - flowerVeil: { - name: "Blütenhülle", - description: "Schützt Mitstreiter vom Typ Pflanze vor dem Senken ihrer Statuswerte sowie vor Statusproblemen.", - }, - cheekPouch: { - name: "Backentaschen", - description: "Regeneriert beim Konsum von Beeren ungeachtet der Beerensorte KP.", - }, - protean: { - name: "Wandlungskunst", - description: "Das Pokémon nimmt bei Einsatz einer Attacke deren Typ an.", - }, - furCoat: { - name: "Fellkleid", - description: "Halbiert den Schaden, den das Pokémon durch physische Attacken erleidet.", - }, - magician: { - name: "Zauberer", - description: "Trifft das Pokémon ein Ziel mit einer Attacke, kann es ihm dabei sein Item stehlen.", - }, - bulletproof: { - name: "Kugelsicher", - description: "Kann das Pokémon vor geworfenen kugelförmigen Objekten, wie zum Beispiel Bomben, schützen.", - }, - competitive: { - name: "Unbeugsamkeit", - description: "Erhöht den Spezial-Angriff stark, wenn ein Statuswert gesenkt wurde.", - }, - strongJaw: { - name: "Titankiefer", - description: "Der kräftige Kiefer des Pokémon erhöht die Stärke von Biss-Attacken.", - }, - refrigerate: { - name: "Frostschicht", - description: "Attacken vom Typ Normal nehmen den Typ Eis an und ihre Stärke erhöht sich ein wenig.", - }, - sweetVeil: { - name: "Zuckerhülle", - description: "Alle Team-Pokémon können nicht einschlafen.", - }, - stanceChange: { - name: "Taktikwechsel", - description: "Setzt das Pokémon eine Offensiv-Attacke ein, nimmt es die Klingenform an. Setzt es danach die Attacke Königsschild ein, nimmt es die Schildform an.", - }, - galeWings: { - name: "Orkanschwingen", - description: "Kann bei vollen KP einen Erstschlag mit Flug-Attacken ermöglichen.", - }, - megaLauncher: { - name: "Megawumme", - description: "Erhöht die Stärke einiger Wellen-, Aura- und Puls-Attacken.", - }, - grassPelt: { - name: "Pflanzenpelz", - description: "Erhöht die Verteidigung, wenn Grasfeld aktiv ist.", - }, - symbiosis: { - name: "Nutznießer", - description: "Gibt Mitstreitern, die ihr Item aufgebraucht haben, sein eigenes Item.", - }, - toughClaws: { - name: "Krallenwucht", - description: "Erhöht die Stärke von direkten Attacken.", - }, - pixilate: { - name: "Feenschicht", - description: "Attacken vom Typ Normal nehmen den Typ Fee an und ihre Stärke erhöht sich ein wenig.", - }, - gooey: { - name: "Viskosität", - description: "Senkt bei Berührung im Zuge eines Angriffs die Initiative des Angreifers.", - }, - aerilate: { - name: "Zenithaut", - description: "Attacken vom Typ Normal nehmen den Typ Flug an und ihre Stärke erhöht sich ein wenig.", - }, - parentalBond: { - name: "Familienbande", - description: "Zwei Generationen setzen jeweils ein Mal zum Angriff an.", - }, - darkAura: { - name: "Dunkelaura", - description: "Erhöht die Stärke aller Attacken des Typs Unlicht.", - }, - fairyAura: { - name: "Feenaura", - description: "Erhöht die Stärke aller Attacken des Typs Fee.", - }, - auraBreak: { - name: "AuraUmkehr", - description: "Kehrt die Wirkung von Auren um und senkt so die Stärke bestimmter Attacken, anstatt sie zu erhöhen.", - }, - primordialSea: { - name: "Urmeer", - description: "Ändert das Wetter, um Feuer-Attacken wirkungslos zu machen.", - }, - desolateLand: { - name: "Endland", - description: "Ändert das Wetter, um Wasser-Attacken wirkungslos zu machen.", - }, - deltaStream: { - name: "DeltaWind", - description: "Ändert das Wetter, um die Schwächen des Typs Flug zu beseitigen.", - }, - stamina: { - name: "Zähigkeit", - description: "Wird es von einer Attacke getroffen, steigt seine Verteidigung.", - }, - wimpOut: { - name: "Reißaus", - description: "Fallen seine KP auf die Hälfte des Maximalwerts oder weniger, zieht es sich ängstlich zurück.", - }, - emergencyExit: { - name: "Rückzug", - description: "Fallen seine KP auf die Hälfte des Maximalwerts oder weniger, bringt es sich in Sicherheit.", - }, - waterCompaction: { - name: "Verklumpen", - description: "Wird es von einer Wasser-Attacke getroffen, steigt seine Verteidigung stark.", - }, - merciless: { - name: "Quälerei", - description: "Sorgt bei Angriffen auf vergiftete Ziele für Volltreffergarantie.", - }, - shieldsDown: { - name: "Limitschild", - description: "Fallen seine KP auf die Hälfte des Maximalwerts oder weniger, zerbricht die Panzerung des Pokémon und es wird aggressiver.", - }, - stakeout: { - name: "Beschattung", - description: "Bewirkt bei Angriffen auf neu eingewechselte Ziele doppelten Schaden.", - }, - waterBubble: { - name: "Wasserblase", - description: "Feuer-Attacken fügen dem Pokémon weniger Schaden zu. Verhindert Verbrennungen.", - }, - steelworker: { - name: "Stahlprofi", - description: "Erhöht die Stärke von Stahl-Attacken.", - }, - berserk: { - name: "Wutausbruch", - description: "Fallen seine KP nach einem Angriff auf die Hälfte des Maximalwerts oder weniger, steigt sein Spezial-Angriff.", - }, - slushRush: { - name: "Schneescharrer", - description: "Erhöht bei Hagel die Initiative.", - }, - longReach: { - name: "Langstrecke", - description: "Ermöglicht dem Pokémon den Einsatz aller seiner Attacken, ohne das Ziel dabei direkt zu berühren.", - }, - liquidVoice: { - name: "Plätscherstimme", - description: "Bewirkt, dass alle Lärm-Attacken des Pokémon den Typ Wasser annehmen.", - }, - triage: { - name: "Heilwandel", - description: "Ermöglicht einen Erstschlag mit Attacken, welche die KP des Anwenders direkt regenerieren.", - }, - galvanize: { - name: "Elektrohaut", - description: "Attacken vom Typ Normal nehmen den Typ Elektro an und ihre Stärke erhöht sich ein wenig.", - }, - surgeSurfer: { - name: "SurfSchweif", - description: "Verdoppelt die Initiative, wenn zuvor ein Elektrofeld erzeugt wurde.", - }, - schooling: { - name: "Fischschwarm", - description: "Verfügt es über einen hohen KP-Wert, wird es zu einem Schwarm und gewinnt an Stärke. Ist der KP-Wert niedrig, löst sich der Schwarm wieder auf.", - }, - disguise: { - name: "Kostümspuk", - description: "Kann ein Mal pro Kampf mit seinem gruseligen Kostüm einen Angriff abwehren.", - }, - battleBond: { - name: "Freundschaftsakt", - description: "Besiegt es ein Ziel, vertieft dies die Freundschaft zu seinem Trainer, wodurch es die Ash-Form annimmt und sein Wasser-Shuriken stärker wird.", - }, - powerConstruct: { - name: "Scharwandel", - description: "Fallen seine KP auf die Hälfte des Maximalwerts oder weniger, eilen ihm weitere Zellen zu Hilfe und es nimmt die Optimumform an.", - }, - corrosion: { - name: "Korrosion", - description: "Kann selbst Pokémon vom Typ Stahl oder Gift vergiften.", - }, - comatose: { - name: "Dauerschlaf", - description: "Das Pokémon befindet sich ununterbrochen im Halbschlaf und wacht nie vollständig auf. Es kann jedoch im Schlaf angreifen.", - }, - queenlyMajesty: { - name: "Majestät", - description: "Schüchtert Gegner ein und hindert sie so daran, Erstschlag-Attacken gegen es einzusetzen.", - }, - innardsOut: { - name: "Magenkrempler", - description: "Wird es durch eine Attacke besiegt, fügt es dem Angreifer Schaden in Höhe des KP-Werts zu, den es besaß, bevor es kampfunfähig wurde.", - }, - dancer: { - name: "Tänzer", - description: "Kann direkt im Anschluss an die Tanz-Attacke eines anderen Pokémon ebenfalls eine solche einsetzen.", - }, - battery: { - name: "Batterie", - description: "Erhöht die Stärke der Spezial-Attacken seiner Mitstreiter.", - }, - fluffy: { - name: "Flauschigkeit", - description: "Halbiert den Schaden, den es durch direkte Attacken nimmt, aber verdoppelt dafür den durch Feuer-Attacken erlittenen Schaden.", - }, - dazzling: { - name: "Buntkörper", - description: "Überrascht Gegner und hindert sie so daran, Erstschlag-Attacken gegen es einzusetzen.", - }, - soulHeart: { - name: "Seelenherz", - description: "Erhöht jedes Mal, wenn ein Pokémon besiegt wird, den eigenen Spezial-Angriff.", - }, - tanglingHair: { - name: "Lockenkopf", - description: "Senkt bei Berührung im Zuge eines Angriffs die Initiative des Angreifers.", - }, - receiver: { - name: "Receiver", - description: "Wird einer seiner Mitstreiter besiegt, erhält es dessen Fähigkeit.", - }, - powerOfAlchemy: { - name: "Chemiekraft", - description: "Wechselt seine Fähigkeit zu der eines kampfunfähig gewordenen Mitstreiters.", - }, - beastBoost: { - name: "Bestien-Boost", - description: "Erhöht in jeder Runde, in der es ein anderes Pokémon besiegt, seinen höchsten Statuswert.", - }, - rksSystem: { - name: "Alpha-System", - description: "Das Pokémon passt seinen Typ der getragenen Disc an.", - }, - electricSurge: { - name: "Elektro-Erzeuger", - description: "Erzeugt bei Kampfantritt ein Elektrofeld.", - }, - psychicSurge: { - name: "Psycho-Erzeuger", - description: "Erzeugt bei Kampfantritt ein Psychofeld.", - }, - mistySurge: { - name: "Nebel-Erzeuger", - description: "Erzeugt bei Kampfantritt ein Nebelfeld.", - }, - grassySurge: { - name: "Gras-Erzeuger", - description: "Erzeugt bei Kampfantritt ein Grasfeld.", - }, - fullMetalBody: { - name: "Metallprotektor", - description: "Verhindert das Senken der Statuswerte durch Attacken und Fähigkeiten von Angreifern.", - }, - shadowShield: { - name: "Phantomschutz", - description: "Verringert den erlittenen Schaden bei vollen KP.", - }, - prismArmor: { - name: "Prismarüstung", - description: "Reduziert die Stärke von sehr effektiven Attacken und verringert damit den Schaden, den das Pokémon durch sie erleidet.", - }, - neuroforce: { - name: "Zerebralmacht", - description: "Erhöht die Stärke von sehr effektiven Attacken.", - }, - intrepidSword: { - name: "Kühnes Schwert", - description: "Erhöht bei Kampfantritt den Angriff.", - }, - dauntlessShield: { - name: "Wackerer Schild", - description: "Erhöht bei Kampfantritt die Verteidigung.", - }, - libero: { - name: "Libero", - description: "Das Pokémon nimmt bei Einsatz einer Attacke deren Typ an.", - }, - ballFetch: { - name: "Apport", - description: "Trägt das Pokémon kein Item bei sich, hebt es den Ball aus dem ersten gescheiterten Fangversuch des Kampfes wieder auf.", - }, - cottonDown: { - name: "Wollflaum", - description: "Wird es von einem Angriff getroffen, verstreut es Teile seines Wollflaums, wodurch die Initiative aller anderen Pokémon sinkt.", - }, - propellerTail: { - name: "Schraubflosse", - description: "Ignoriert die Effekte von Fähigkeiten und Attacken anderer Pokémon, die Attacken auf sich lenken.", - }, - mirrorArmor: { - name: "Spiegelrüstung", - description: "Lenkt ausschließlich Effekte, welche die Statuswerte des Pokémon senken würden, auf den Angreifer um.", - }, - gulpMissile: { - name: "Würggeschoss", - description: "Wenn das Pokémon Surfer oder Taucher einsetzt, fängt es sich dabei Beute. Erleidet es anschließend Schaden, greift es an, indem es die Beute wieder ausspuckt.", - }, - stalwart: { - name: "Stahlrückgrat", - description: "Ignoriert die Effekte von Fähigkeiten und Attacken anderer Pokémon, die Attacken auf sich lenken.", - }, - steamEngine: { - name: "Dampfantrieb", - description: "Wird es von einer Wasser- oder Feuer-Attacke getroffen, steigt seine Initiative drastisch.", - }, - punkRock: { - name: "Punk Rock", - description: "Erhöht die Stärke von eigenen Lärm-Attacken und halbiert den Schaden, den das Pokémon selbst durch Lärm-Attacken erleidet.", - }, - sandSpit: { - name: "Sandspeier", - description: "Löst einen Sandsturm aus, wenn das Pokémon von einer Attacke erfasst wird.", - }, - iceScales: { - name: "Eisflügelstaub", - description: "Halbiert mithilfe von schützendem Eisflügelstaub den Schaden, den das Pokémon durch Spezial-Attacken erleidet.", - }, - ripen: { - name: "Heranreifen", - description: "Verdoppelt den Effekt von Beeren, indem es sie heranreifen lässt.", - }, - iceFace: { - name: "Tiefkühlkopf", - description: "Der Eisblock um seinen Kopf blockt eine physische Attacke ab. Dies bewirkt jedoch einen Formwechsel. Durch Hagel wird der Eisblock wiederhergestellt.", - }, - powerSpot: { - name: "Kraftquelle", - description: "Erhöht bei direkt benachbarten Pokémon die Stärke von Attacken.", - }, - mimicry: { - name: "Mimese", - description: "Der Typ des Pokémon ändert sich in Abhängigkeit vom Zustand des Feldes.", - }, - screenCleaner: { - name: "Hemmungslos", - description: "Hebt bei Kampfantritt die Wirkung von Lichtschild, Reflektor und Auroraschleier auf Mitstreiter- und Gegnerseite auf.", - }, - steelySpirit: { - name: "Stählerner Wille", - description: "Erhöht die Stärke von Stahl-Attacken auf Mitstreiterseite.", - }, - perishBody: { - name: "Unheilskörper", - description: "Erleidet es einen Treffer von einer direkten Attacke, wird es zusammen mit dem Angreifer nach drei Runden besiegt. Rettung ist durch Austausch möglich.", - }, - wanderingSpirit: { - name: "Rastlose Seele", - description: "Wird das Pokémon von einer direkten Attacke getroffen, tauscht es seine Fähigkeit mit der des Angreifers.", - }, - gorillaTactics: { - name: "Affenfokus", - description: "Erhöht den Angriff, aber nur die zuerst gewählte Attacke kann eingesetzt werden.", - }, - neutralizingGas: { - name: "Reaktionsgas", - description: "Solange ein Pokémon mit der Fähigkeit Reaktionsgas am Kampf beteiligt ist, werden die Fähigkeiten aller anderen Pokémon unterdrückt oder aufgehoben.", - }, - pastelVeil: { - name: "Pastellhülle", - description: "Schützt das Pokémon und seine Mitstreiter vor Vergiftung.", - }, - hungerSwitch: { - name: "Heißhunger", - description: "Das Pokémon ändert zum Ende jeder Runde seine Form und wechselt somit zwischen dem Pappsatt- und dem Kohldampfmuster.", - }, - quickDraw: { - name: "Schnellschuss", - description: "Ermöglicht dem Pokémon gelegentlich den Erstschlag.", - }, - unseenFist: { - name: "Verborgene Faust", - description: "Wenn das Pokémon eine direkte Attacke einsetzt, trifft diese auch dann, wenn sich das Ziel selbst schützt.", - }, - curiousMedicine: { - name: "Kuriose Arznei", - description: "Das Pokémon versprüht bei Kampfantritt Arznei aus seiner Muschel, die alle Statusveränderungen auf der Mitstreiterseite aufhebt.", - }, - transistor: { - name: "Transistor", - description: "Erhöht die Stärke von Elektro-Attacken.", - }, - dragonsMaw: { - name: "Drachenkiefer", - description: "Erhöht die Stärke von Drachen-Attacken.", - }, - chillingNeigh: { - name: "Helles Wiehern", - description: "Besiegt es ein Pokémon, stößt es ein frostiges Wiehern aus und erhöht damit seinen Angriff.", - }, - grimNeigh: { - name: "Dunkles Wiehern", - description: "Besiegt es ein Pokémon, stößt es ein furchteinflößendes Wiehern aus und erhöht damit seinen Spezial-Angriff.", - }, - asOneGlastrier: { - name: "Reitgespann", - description: "Das Pokémon verfügt sowohl über Coronospas Fähigkeit Anspannung als auch über Polaross’ Fähigkeit Helles Wiehern.", - }, - asOneSpectrier: { - name: "Reitgespann", - description: "Das Pokémon verfügt sowohl über Coronospas Fähigkeit Anspannung als auch über Phantoross’ Fähigkeit Dunkles Wiehern.", - }, - lingeringAroma: { - name: "Duftschwade", - description: "Das Pokémon überträgt bei Berührung die Fähigkeit Duftschwade auf den Angreifer.", - }, - seedSower: { - name: "Streusaat", - description: "Wird das Pokémon von einem Angriff getroffen, erzeugt es ein Grasfeld.", - }, - thermalExchange: { - name: "Thermowandel", - description: "Wird das Pokémon von einer Feuer-Attacke getroffen, steigt sein Angriff. Außerdem kann es keine Verbrennung erleiden.", - }, - angerShell: { - name: "Wutpanzer", - description: "Fallen die KP des Pokémon durch einen Angriff auf die Hälfte des Maximalwerts oder weniger, sinken Vert. und Sp.-Vert., aber Ang., Sp.-Ang. und Initiative steigen.", - }, - purifyingSalt: { - name: "Läutersalz", - description: "Das Pokémon kann dank seines läuternden Salzes keine Statusprobleme erleiden und der durch Geist-Attacken erlittene Schaden wird halbiert.", - }, - wellBakedBody: { - name: "Knusperkruste", - description: "Wird das Pokémon von einer Feuer-Attacke getroffen, erleidet es keinen Schaden. Stattdessen steigt seine Verteidigung stark.", - }, - windRider: { - name: "Windreiter", - description: "Wirkt Rückenwind oder wird das Pokémon von einer Wind-Attacke getroffen, steigt sein Angriff. Außerdem erleidet es keinen Schaden durch Wind-Attacken.", - }, - guardDog: { - name: "Wachhund", - description: "Wird das Pokémon bedroht, steigt sein Angriff. Attacken und Items, durch die Pokémon ausgetauscht werden, haben keine Wirkung auf es.", - }, - rockyPayload: { - name: "Steinträger", - description: "Die Stärke von Gesteins-Attacken des Pokémon steigt.", - }, - windPower: { - name: "Windkraft", - description: "Wird das Pokémon von einer Wind-Attacke getroffen, lädt es sich auf. Dadurch steigt die Stärke seiner nächsten Elektro-Attacke.", - }, - zeroToHero: { - name: "Superwechsel", - description: "Wird das Pokémon ausgewechselt, nimmt es die Heldenform an.", - }, - commander: { - name: "Kommandant", - description: "Befindet sich ein Heerashai auf der Mitstreiterseite, springt das Pokémon bei Kampfantritt in dessen Maul und gibt von dort aus Befehle.", - }, - electromorphosis: { - name: "Dynamo", - description: "Wenn das Pokémon Schaden erleidet, lädt es sich auf. Dadurch steigt die Stärke seiner nächsten Elektro-Attacke.", - }, - protosynthesis: { - name: "Paläosynthese", - description: "Bei Sonnenschein oder wenn das Pokémon eine Energiekapsel trägt, steigt sein höchster Statuswert.", - }, - quarkDrive: { - name: "Quantenantrieb", - description: "Im Elektrofeld oder wenn das Pokémon eine Energiekapsel trägt, steigt sein höchster Statuswert.", - }, - goodAsGold: { - name: "Goldkörper", - description: "Dank seines robusten Körpers aus reinem, rostfreiem Gold kann das Pokémon nicht von Status-Attacken getroffen werden.", - }, - vesselOfRuin: { - name: "Unheilsgefäß", - description: "Mit der Macht seines Unheil bringenden Gefäßes schwächt das Pokémon den Spezial-Angriff aller anderen Pokémon.", - }, - swordOfRuin: { - name: "Unheilsschwert", - description: "Mit der Macht seines Unheil bringenden Schwertes schwächt das Pokémon die Verteidigung aller anderen Pokémon.", - }, - tabletsOfRuin: { - name: "Unheilstafeln", - description: "Mit der Macht seiner Unheil bringenden Holztafeln schwächt das Pokémon den Angriff aller anderen Pokémon.", - }, - beadsOfRuin: { - name: "Unheilsjuwelen", - description: "Mit der Macht seiner Unheil bringenden Juwelen schwächt das Pokémon die Spezial-Verteidigung aller anderen Pokémon.", - }, - orichalcumPulse: { - name: "Orichalkum-Puls", - description: "Das Pokémon erzeugt bei Kampfantritt Sonnenschein. Bei Sonnenschein verstärkt ein urzeitlicher Puls seinen Angriff.", - }, - hadronEngine: { - name: "Hadronen-Motor", - description: "Das Pokémon erzeugt bei Kampfantritt ein Elektrofeld. Wenn ein Elektrofeld aktiv ist, verstärkt ein futuristischer Motor seinen Spezial-Angriff.", - }, - opportunist: { - name: "Profiteur", - description: "Wenn ein Statuswert eines Gegners steigt, profitiert das Pokémon ebenfalls davon und der gleiche Statuswert steigt auch bei ihm.", - }, - cudChew: { - name: "Wiederkäuer", - description: "Wenn ein Pokémon eine Beere isst, stößt es diese am Ende der nächsten Runde wieder aus seinem Magen auf und verspeist diese erneut.", - }, - sharpness: { - name: "Scharfkantig", - description: "Die Stärke von Schnitt-Attacken des Pokémon steigt.", - }, - supremeOverlord: { - name: "Feldherr", - description: "Bei Kampfantritt steigen der Angriff und Spezial-Angriff des Pokémon ein bisschen für jedes bis dahin besiegte Team-Mitglied.", - }, - costar: { - name: "Synchronauftritt", - description: "Das Pokémon kopiert bei Kampfantritt die Statusveränderungen eines Mitstreiters.", - }, - toxicDebris: { - name: "Giftbelag", - description: "Erleidet das Pokémon Schaden durch eine physische Attacke, verstreut es giftige Stacheln auf der gegnerischen Seite.", - }, - armorTail: { - name: "Schweifrüstung", - description: "Der rätselhafte Schweif, der den Kopf des Pokémon umhüllt, hindert Gegner daran, Erstschlag-Attacken gegen die Mitstreiterseite einzusetzen.", - }, - earthEater: { - name: "Bodenschmaus", - description: "Wird das Pokémon von einer Boden-Attacke getroffen, erleidet es keinen Schaden, sondern regeneriert stattdessen KP.", - }, - myceliumMight: { - name: "Myzelienkraft", - description: "Beim Einsatz von Status-Attacken handelt das Pokémon stets langsamer, aber dafür kann es sie ungeachtet der Fähigkeit des Zieles einsetzen.", - }, - mindsEye: { - name: "Geistiges Auge", - description: "Die Genauigkeit des Pokémon kann nicht gesenkt werden. Es ignoriert Änderungen am Ausweichwert des Zieles und trifft mit Normal- und Kampf-Attacken Geister-Pokémon.", - }, - supersweetSyrup: { - name: "Süßer Nektar", - description: "Beim ersten Kampfantritt verbreitet das Pokémon den Duft süßen Nektars und senkt so den Ausweichwert seiner Gegner.", - }, - hospitality: { - name: "Gastlichkeit", - description: "Bei Kampfantritt zeigt das Pokémon seine Gastlichkeit, indem es die KP seines Mitstreiters ein wenig auffüllt.", - }, - toxicChain: { - name: "Giftkette", - description: "Durch die toxischen Stoffe in seiner Kette werden Ziele, die das Pokémon mit einer Attacke trifft, gelegentlich schwer vergiftet.", - }, - embodyAspectTeal: { - name: "Erinnerungskraft", - description: "Die Erinnerungen, die das Pokémon in sich trägt, lassen die Türkisgrüne Maske aufleuchten und erhöhen seine Initiative.", - }, - embodyAspectWellspring: { - name: "Erinnerungskraft", - description: "Die Erinnerungen, die das Pokémon in sich trägt, lassen die Brunnenmaske aufleuchten und erhöhen seine Spezial-Verteidigung.", - }, - embodyAspectHearthflame: { - name: "Erinnerungskraft", - description: "Die Erinnerungen, die das Pokémon in sich trägt, lassen die Ofenmaske aufleuchten und erhöhen seinen Angriff.", - }, - embodyAspectCornerstone: { - name: "Erinnerungskraft", - description: "Die Erinnerungen, die das Pokémon in sich trägt, lassen die Fundamentmaske aufleuchten und erhöhen seine Verteidigung.", - }, - teraShift: { - name: "Tera-Wandel", - description: "Bei Kampfantritt absorbiert das Pokémon Energie in seiner Umgebung und nimmt die Terakristall-Form an.", - }, - teraShell: { - name: "Tera-Panzer", - description: "Der Panzer des Pokémon birgt die Kraft aller Typen in sich. Alle Schaden verursachenden Attacken, die es bei vollen KP treffen, sind nicht sehr effektiv.", - }, - teraformZero: { - name: "Teraforming Null", - description: "Wenn Terapagos die Stellarform annimmt, eliminiert es dank seiner verborgenen Kräfte sämtliche Wettereffekte und Felder.", - }, - poisonPuppeteer: { - name: "Giftpuppenspiel", - description: "Wenn Infamomo ein Ziel mit einer Attacke vergiftet, so wird dieses auch verwirrt.", - }, -} as const; diff --git a/src/locales/de/achv.json b/src/locales/de/achv.json new file mode 100644 index 00000000000..d2e56089720 --- /dev/null +++ b/src/locales/de/achv.json @@ -0,0 +1,277 @@ +{ + "Achievements": { + "name": "Errungenschaften" + }, + "Locked": { + "name": "Gesperrt" + }, + "MoneyAchv": { + "description": "Häufe eine Gesamtsumme von {{moneyAmount}} ₽ an." + }, + "10K_MONEY": { + "name": "Besserverdiener", + "name_female": "Besserverdienerin" + }, + "100K_MONEY": { + "name": "Reich" + }, + "1M_MONEY": { + "name": "Millionär", + "name_female": "Millionärin" + }, + "10M_MONEY": { + "name": "Einprozenter" + }, + "DamageAchv": { + "description": "Füge mit einem Treffer {{damageAmount}} Schaden zu." + }, + "250_DMG": { + "name": "Harte Treffer" + }, + "1000_DMG": { + "name": "Härtere Treffer" + }, + "2500_DMG": { + "name": "Das ist ne Menge Schaden!" + }, + "10000_DMG": { + "name": "One Punch Man", + "name_female": "One Punch Woman" + }, + "HealAchv": { + "description": "Heile {{healAmount}} {{HP}} auf einmal. Mit einer Attacke, Fähigkeit oder einem gehaltenen Gegenstand." + }, + "250_HEAL": { + "name": "Anfänger-Heiler", + "name_female": "Anfänger-Heilerin" + }, + "1000_HEAL": { + "name": "Gesundheitsprofi" + }, + "2500_HEAL": { + "name": "Kleriker", + "name_female": "Klerikerin" + }, + "10000_HEAL": { + "name": "Wiederherstellungsmeister", + "name_female": "Wiederherstellungsmeisterin" + }, + "LevelAchv": { + "description": "Erhöhe das Level eines Pokémon auf {{level}}." + }, + "LV_100": { + "name": "Warte, es gibt mehr!" + }, + "LV_250": { + "name": "Elite" + }, + "LV_1000": { + "name": "Geh noch höher hinaus!" + }, + "RibbonAchv": { + "description": "Sammle insgesamt {{ribbonAmount}} Bänder." + }, + "10_RIBBONS": { + "name": "Champion der Pokémon Liga" + }, + "25_RIBBONS": { + "name": "Bänder-Sammler", + "name_female": "Bänder-Sammlerin" + }, + "50_RIBBONS": { + "name": "Bänder-Experte", + "name_female": "Bänder-Expertin" + }, + "75_RIBBONS": { + "name": "Bänder-Guru" + }, + "100_RIBBONS": { + "name": "Bänder-Meister", + "name_female": "Bänder-Meisterin" + }, + "TRANSFER_MAX_BATTLE_STAT": { + "name": "Teamwork", + "description": "Nutze Staffette, während der Anwender mindestens eines Statuswertes maximiert hat." + }, + "MAX_FRIENDSHIP": { + "name": "Freundschaftsmaximierung", + "description": "Erreiche maximale Freundschaft bei einem Pokémon." + }, + "MEGA_EVOLVE": { + "name": "Megaverwandlung", + "description": "Megaentwickle ein Pokémon." + }, + "GIGANTAMAX": { + "name": "Absolute Einheit", + "description": "Gigadynamaximiere ein Pokémon." + }, + "TERASTALLIZE": { + "name": "Typen-Bonus Enthusiast", + "description": "Terrakristallisiere ein Pokémon." + }, + "STELLAR_TERASTALLIZE": { + "name": "Der geheime Typ", + "description": "Terrakristallisiere ein Pokémon zum Typen Stellar." + }, + "SPLICE": { + "name": "Unendliche Fusion", + "description": "Kombiniere zwei Pokémon mit einem DNS-Keil." + }, + "MINI_BLACK_HOLE": { + "name": "Ein Loch voller Items", + "description": "Erlange ein Mini-Schwarzes Loch." + }, + "CATCH_MYTHICAL": { + "name": "Mysteriöses!", + "description": "Fange ein mysteriöses Pokémon." + }, + "CATCH_SUB_LEGENDARY": { + "name": "Sub-Legendär", + "description": "Fange ein sub-legendäres Pokémon." + }, + "CATCH_LEGENDARY": { + "name": "Legendär", + "description": "Fange ein legendäres Pokémon." + }, + "SEE_SHINY": { + "name": "Schillerndes Licht", + "description": "Finde ein wildes schillerndes Pokémon." + }, + "SHINY_PARTY": { + "name": "Das ist Hingabe", + "description": "Habe ein Team aus schillernden Pokémon." + }, + "HATCH_MYTHICAL": { + "name": "Mysteriöses Ei", + "description": "Lass ein mysteriöses Pokémon aus einem Ei schlüpfen." + }, + "HATCH_SUB_LEGENDARY": { + "name": "Sub-Legendäres Ei", + "description": "Lass ein sub-legendäres Pokémon aus einem Ei schlüpfen." + }, + "HATCH_LEGENDARY": { + "name": "Legendäres Ei", + "description": "Lass ein legendäres Pokémon aus einem Ei schlüpfen." + }, + "HATCH_SHINY": { + "name": "Schillerndes Ei", + "description": "Lass ein schillerndes Pokémon aus einem Ei schlüpfen." + }, + "HIDDEN_ABILITY": { + "name": "Geheimes Talent", + "description": "Fang ein Pokémon mit versteckter Fähigkeit." + }, + "PERFECT_IVS": { + "name": "Zertifikat der Echtheit", + "description": "Erhalte ein Pokémon mit perfekten IS-Werten." + }, + "CLASSIC_VICTORY": { + "name": "Ungeschlagen", + "description": "Beende den klassischen Modus erfolgreich." + }, + "UNEVOLVED_CLASSIC_VICTORY": { + "name": "'Bringe dein Kind mit zur Arbeit'-Tag", + "description": "Beende den klassischen Modus erfolgreich mit mindestens einem nicht entwickeltem Pokémon in deinem Team" + }, + "MONO_GEN_ONE": { + "name": "Der originale Rivale", + "description": "Schließe die 'Nur 1. Generation' Herausforderung ab." + }, + "MONO_GEN_TWO": { + "name": "Generation 1.5", + "description": "Schließe die 'Nur 2. Generation' Herausforderung ab." + }, + "MONO_GEN_THREE": { + "name": "Zu viel Wasser?", + "description": "Schließe die 'Nur 3. Generation' Herausforderung ab." + }, + "MONO_GEN_FOUR": { + "name": "Ist SIE wirklich die Stärkste?", + "description": "Schließe die 'Nur 4. Generation' Herausforderung ab." + }, + "MONO_GEN_FIVE": { + "name": "Komplett Original", + "description": "Schließe die 'Nur 5. Generation' Herausforderung ab." + }, + "MONO_GEN_SIX": { + "name": "Fast Königlich", + "description": "Schließe die 'Nur 6. Generation' Herausforderung ab." + }, + "MONO_GEN_SEVEN": { + "name": "Technisch gesehen", + "description": "Schließe die 'Nur 7. Generation' Herausforderung ab." + }, + "MONO_GEN_EIGHT": { + "name": "Die Zeit des Champions", + "description": "Schließe die 'Nur 8. Generation' Herausforderung ab." + }, + "MONO_GEN_NINE": { + "name": "Sie hat es dir leicht gemacht...", + "description": "Schließe die 'Nur 9. Generation' Herausforderung ab." + }, + "MonoType": { + "description": "Beende die Monotyp-{{type}} Herausforderung." + }, + "MONO_NORMAL": { + "name": "Normaler Typ" + }, + "MONO_FIGHTING": { + "name": "Ich kenne Kung Fu." + }, + "MONO_FLYING": { + "name": "Ich glaube ich kann fliegen." + }, + "MONO_POISON": { + "name": "Kantos Liebling" + }, + "MONO_GROUND": { + "name": "Auf dem Boden bleiben." + }, + "MONO_ROCK": { + "name": "So hart wie Rocko." + }, + "MONO_BUG": { + "name": "Steche wie ein Bibor." + }, + "MONO_GHOST": { + "name": "Wer wird angerufen?" + }, + "MONO_STEEL": { + "name": "Stahlharte Entschlossenheit" + }, + "MONO_FIRE": { + "name": "Brennende Leidenschaft" + }, + "MONO_WATER": { + "name": "Wenn es regnet, schüttet es!" + }, + "MONO_GRASS": { + "name": "Grüner Daumen" + }, + "MONO_ELECTRIC": { + "name": "Elektrisierend" + }, + "MONO_PSYCHIC": { + "name": "Übernatürliches Talent" + }, + "MONO_ICE": { + "name": "Eis Eis Baby" + }, + "MONO_DRAGON": { + "name": "Siegfried bist du es?" + }, + "MONO_DARK": { + "name": "Es ist nur eine Phase!" + }, + "MONO_FAIRY": { + "name": "Ein ewiges Abenteuer!" + }, + "FRESH_START": { + "name": "Hussa, noch einmal von vorn!", + "description": "Schließe die 'Neuanfang' Herausforderung ab" + }, + "INVERSE_BATTLE": { + "name": "Spieglein, Spieglein an der Wand", + "description": "Schließe die 'Umkehrkampf' Herausforderung ab" + } +} \ No newline at end of file diff --git a/src/locales/de/achv.ts b/src/locales/de/achv.ts deleted file mode 100644 index 3d498d048a7..00000000000 --- a/src/locales/de/achv.ts +++ /dev/null @@ -1,388 +0,0 @@ -import {AchievementTranslationEntries} from "#app/interfaces/locales.js"; - -// Achievement translations for the when the player character is male -export const PGMachv: AchievementTranslationEntries = { - "Achievements": { - name: "Errungenschaften", - }, - "Locked": { - name: "Gesperrt", - }, - - - "MoneyAchv": { - description: "Häufe eine Gesamtsumme von {{moneyAmount}} ₽ an.", - }, - "10K_MONEY": { - name: "Besserverdiener", - }, - "100K_MONEY": { - name: "Reich", - }, - "1M_MONEY": { - name: "Millionär", - }, - "10M_MONEY": { - name: "Einprozenter", - }, - - "DamageAchv": { - description: "Füge mit einem Treffer {{damageAmount}} Schaden zu.", - }, - "250_DMG": { - name: "Harte Treffer", - }, - "1000_DMG": { - name: "Härtere Treffer", - }, - "2500_DMG": { - name: "Das ist ne Menge Schaden!", - }, - "10000_DMG": { - name: "One Punch Man", - }, - - "HealAchv": { - description: "Heile {{healAmount}} {{HP}} auf einmal. Mit einer Attacke, Fähigkeit oder einem gehaltenen Gegenstand.", - }, - "250_HEAL": { - name: "Anfänger-Heiler", - }, - "1000_HEAL": { - name: "Gesundheitsprofi", - }, - "2500_HEAL": { - name: "Kleriker", - }, - "10000_HEAL": { - name: "Wiederherstellungsmeister", - }, - - "LevelAchv": { - description: "Erhöhe das Level eines Pokémon auf {{level}}.", - }, - "LV_100": { - name: "Warte, es gibt mehr!", - }, - "LV_250": { - name: "Elite", - }, - "LV_1000": { - name: "Geh noch höher hinaus!", - }, - - "RibbonAchv": { - description: "Sammle insgesamt {{ribbonAmount}} Bänder.", - }, - "10_RIBBONS": { - name: "Champion der Pokémon Liga", - }, - "25_RIBBONS": { - name: "Bänder-Sammler", - }, - "50_RIBBONS": { - name: "Bänder-Experte", - }, - "75_RIBBONS": { - name: "Bänder-Guru", - }, - "100_RIBBONS": { - name: "Bänder-Meister", - }, - - "TRANSFER_MAX_BATTLE_STAT": { - name: "Teamwork", - description: "Nutze Staffette, während der Anwender mindestens eines Statuswertes maximiert hat.", - }, - "MAX_FRIENDSHIP": { - name: "Freundschaftsmaximierung", - description: "Erreiche maximale Freundschaft bei einem Pokémon.", - }, - "MEGA_EVOLVE": { - name: "Megaverwandlung", - description: "Megaentwickle ein Pokémon.", - }, - "GIGANTAMAX": { - name: "Absolute Einheit", - description: "Gigadynamaximiere ein Pokémon.", - }, - "TERASTALLIZE": { - name: "Typen-Bonus Enthusiast", - description: "Terrakristallisiere ein Pokémon.", - }, - "STELLAR_TERASTALLIZE": { - name: "Der geheime Typ", - description: "Terrakristallisiere ein Pokémon zum Typen Stellar.", - }, - "SPLICE": { - name: "Unendliche Fusion", - description: "Kombiniere zwei Pokémon mit einem DNS-Keil.", - }, - "MINI_BLACK_HOLE": { - name: "Ein Loch voller Items", - description: "Erlange ein Mini-Schwarzes Loch.", - }, - "CATCH_MYTHICAL": { - name: "Mysteriöses!", - description: "Fange ein mysteriöses Pokémon.", - }, - "CATCH_SUB_LEGENDARY": { - name: "Sub-Legendär", - description: "Fange ein sub-legendäres Pokémon.", - }, - "CATCH_LEGENDARY": { - name: "Legendär", - description: "Fange ein legendäres Pokémon.", - }, - "SEE_SHINY": { - name: "Schillerndes Licht", - description: "Finde ein wildes schillerndes Pokémon.", - }, - "SHINY_PARTY": { - name: "Das ist Hingabe", - description: "Habe ein Team aus schillernden Pokémon.", - }, - "HATCH_MYTHICAL": { - name: "Mysteriöses Ei", - description: "Lass ein mysteriöses Pokémon aus einem Ei schlüpfen.", - }, - "HATCH_SUB_LEGENDARY": { - name: "Sub-Legendäres Ei", - description: "Lass ein sub-legendäres Pokémon aus einem Ei schlüpfen.", - }, - "HATCH_LEGENDARY": { - name: "Legendäres Ei", - description: "Lass ein legendäres Pokémon aus einem Ei schlüpfen.", - }, - "HATCH_SHINY": { - name: "Schillerndes Ei", - description: "Lass ein schillerndes Pokémon aus einem Ei schlüpfen.", - }, - "HIDDEN_ABILITY": { - name: "Geheimes Talent", - description: "Fang ein Pokémon mit versteckter Fähigkeit.", - }, - "PERFECT_IVS": { - name: "Zertifikat der Echtheit", - description: "Erhalte ein Pokémon mit perfekten IS-Werten.", - }, - "CLASSIC_VICTORY": { - name: "Ungeschlagen", - description: "Beende den klassischen Modus erfolgreich.", - }, - "UNEVOLVED_CLASSIC_VICTORY": { - name: "'Bringe dein Kind mit zur Arbeit'-Tag" , - description: "Beende den klassischen Modus erfolgreich mit mindestens einem nicht entwickeltem Pokémon in deinem Team" - }, - - "MONO_GEN_ONE": { - name: "Der originale Rivale", - description: "Schließe die 'Nur 1. Generation' Herausforderung ab.", - }, - "MONO_GEN_TWO": { - name: "Generation 1.5", - description: "Schließe die 'Nur 2. Generation' Herausforderung ab.", - }, - "MONO_GEN_THREE": { - name: "Zu viel Wasser?", - description: "Schließe die 'Nur 3. Generation' Herausforderung ab.", - }, - "MONO_GEN_FOUR": { - name: "Ist SIE wirklich die Stärkste?", - description: "Schließe die 'Nur 4. Generation' Herausforderung ab.", - }, - "MONO_GEN_FIVE": { - name: "Komplett Original", - description: "Schließe die 'Nur 5. Generation' Herausforderung ab.", - }, - "MONO_GEN_SIX": { - name: "Fast Königlich", - description: "Schließe die 'Nur 6. Generation' Herausforderung ab." - }, - "MONO_GEN_SEVEN": { - name: "Technisch gesehen", - description: "Schließe die 'Nur 7. Generation' Herausforderung ab." - }, - "MONO_GEN_EIGHT": { - name: "Die Zeit des Champions", - description: "Schließe die 'Nur 8. Generation' Herausforderung ab." - }, - "MONO_GEN_NINE": { - name: "Sie hat es dir leicht gemacht...", - description: "Schließe die 'Nur 9. Generation' Herausforderung ab." - }, - - "MonoType": { - description: "Beende die Monotyp-{{type}} Herausforderung." - }, - "MONO_NORMAL": { - name: "Normaler Typ", - }, - "MONO_FIGHTING": { - name: "Ich kenne Kung Fu." - }, - "MONO_FLYING": { - name: "Ich glaube ich kann fliegen.", - }, - "MONO_POISON": { - name: "Kantos Liebling", - }, - "MONO_GROUND": { - name: "Auf dem Boden bleiben.", - }, - "MONO_ROCK": { - name: "So hart wie Rocko.", - }, - "MONO_BUG": { - name: "Steche wie ein Bibor.", - }, - "MONO_GHOST": { - name: "Wer wird angerufen?", - }, - "MONO_STEEL": { - name: "Stahlharte Entschlossenheit", - }, - "MONO_FIRE": { - name: "Brennende Leidenschaft", - }, - "MONO_WATER": { - name: "Wenn es regnet, schüttet es!", - }, - "MONO_GRASS": { - name: "Grüner Daumen", - }, - "MONO_ELECTRIC": { - name: "Elektrisierend", - }, - "MONO_PSYCHIC": { - name: "Übernatürliches Talent", - }, - "MONO_ICE": { - name: "Eis Eis Baby", - }, - "MONO_DRAGON": { - name: "Siegfried bist du es?", - }, - "MONO_DARK": { - name: "Es ist nur eine Phase!", - }, - "MONO_FAIRY": { - name: "Ein ewiges Abenteuer!", - }, - "FRESH_START": { - name: "Hussa, noch einmal von vorn!", - description: "Schließe die 'Neuanfang' Herausforderung ab" - } -} as const; - -// Achievement translations for the when the player character is female -export const PGFachv: AchievementTranslationEntries = { - "Achievements": { - name: PGMachv.Achievements.name, - }, - "Locked": { - name: PGMachv.Locked.name, - }, - - - "MoneyAchv": PGMachv.MoneyAchv, - "10K_MONEY": { - name: "Besserverdienerin", - }, - "100K_MONEY": PGMachv["100K_MONEY"], - "1M_MONEY": { - name: "Millionärin", - }, - "10M_MONEY": PGMachv["10M_MONEY"], - - "DamageAchv": PGMachv.DamageAchv, - "250_DMG": PGMachv["250_DMG"], - "1000_DMG": PGMachv["1000_DMG"], - "2500_DMG": PGMachv["2500_DMG"], - "10000_DMG": { - name: "One Punch Woman", - }, - - "HealAchv": PGMachv.HealAchv, - "250_HEAL": { - name: "Anfänger-Heilerin", - }, - "1000_HEAL": PGMachv["1000_HEAL"], - "2500_HEAL": { - name: "Klerikerin", - }, - "10000_HEAL": { - name: "Wiederherstellungsmeisterin", - }, - - "LevelAchv": PGMachv.LevelAchv, - "LV_100": PGMachv["LV_100"], - "LV_250": PGMachv["LV_250"], - "LV_1000": PGMachv["LV_1000"], - - "RibbonAchv": PGMachv.RibbonAchv, - "10_RIBBONS": PGMachv["10_RIBBONS"], - "25_RIBBONS": { - name: "Bänder-Sammlerin", - }, - "50_RIBBONS": { - name: "Bänder-Expertin", - }, - "75_RIBBONS": PGMachv["75_RIBBONS"], - "100_RIBBONS": { - name: "Bänder-Meisterin", - }, - - "TRANSFER_MAX_BATTLE_STAT": PGMachv.TRANSFER_MAX_BATTLE_STAT, - "MAX_FRIENDSHIP": PGMachv.MAX_FRIENDSHIP, - "MEGA_EVOLVE": PGMachv.MEGA_EVOLVE, - "GIGANTAMAX": PGMachv.GIGANTAMAX, - "TERASTALLIZE": PGMachv.TERASTALLIZE, - "STELLAR_TERASTALLIZE": PGMachv.STELLAR_TERASTALLIZE, - "SPLICE": PGMachv.SPLICE, - "MINI_BLACK_HOLE": PGMachv.MINI_BLACK_HOLE, - "CATCH_MYTHICAL": PGMachv.CATCH_MYTHICAL, - "CATCH_SUB_LEGENDARY": PGMachv.CATCH_SUB_LEGENDARY, - "CATCH_LEGENDARY": PGMachv.CATCH_LEGENDARY, - "SEE_SHINY": PGMachv.SEE_SHINY, - "SHINY_PARTY": PGMachv.SHINY_PARTY, - "HATCH_MYTHICAL": PGMachv.HATCH_MYTHICAL, - "HATCH_SUB_LEGENDARY": PGMachv.HATCH_SUB_LEGENDARY, - "HATCH_LEGENDARY": PGMachv.HATCH_LEGENDARY, - "HATCH_SHINY": PGMachv.HATCH_SHINY, - "HIDDEN_ABILITY": PGMachv.HIDDEN_ABILITY, - "PERFECT_IVS": PGMachv.PERFECT_IVS, - "CLASSIC_VICTORY": PGMachv.CLASSIC_VICTORY, - "UNEVOLVED_CLASSIC_VICTORY": PGMachv.UNEVOLVED_CLASSIC_VICTORY, - "MONO_GEN_ONE": PGMachv.MONO_GEN_ONE, - "MONO_GEN_TWO": PGMachv.MONO_GEN_TWO, - "MONO_GEN_THREE": PGMachv.MONO_GEN_THREE, - "MONO_GEN_FOUR": PGMachv.MONO_GEN_FOUR, - "MONO_GEN_FIVE": PGMachv.MONO_GEN_FIVE, - "MONO_GEN_SIX": PGMachv.MONO_GEN_SIX, - "MONO_GEN_SEVEN": PGMachv.MONO_GEN_SEVEN, - "MONO_GEN_EIGHT": PGMachv.MONO_GEN_EIGHT, - "MONO_GEN_NINE": PGMachv.MONO_GEN_NINE, - - "MonoType": PGMachv.MonoType, - "MONO_NORMAL": PGMachv.MONO_NORMAL, - "MONO_FIGHTING": PGMachv.MONO_FIGHTING, - "MONO_FLYING": PGMachv.MONO_FLYING, - "MONO_POISON": PGMachv.MONO_POISON, - "MONO_GROUND": PGMachv.MONO_GROUND, - "MONO_ROCK": PGMachv.MONO_ROCK, - "MONO_BUG": PGMachv.MONO_BUG, - "MONO_GHOST": PGMachv.MONO_GHOST, - "MONO_STEEL": PGMachv.MONO_STEEL, - "MONO_FIRE": PGMachv.MONO_FIRE, - "MONO_WATER": PGMachv.MONO_WATER, - "MONO_GRASS": PGMachv.MONO_GRASS, - "MONO_ELECTRIC": PGMachv.MONO_ELECTRIC, - "MONO_PSYCHIC": PGMachv.MONO_PSYCHIC, - "MONO_ICE": PGMachv.MONO_ICE, - "MONO_DRAGON": PGMachv.MONO_DRAGON, - "MONO_DARK": PGMachv.MONO_DARK, - "MONO_FAIRY": PGMachv.MONO_FAIRY, - "FRESH_START": PGMachv.FRESH_START -} as const; - diff --git a/src/locales/de/arena-flyout.ts b/src/locales/de/arena-flyout.json similarity index 82% rename from src/locales/de/arena-flyout.ts rename to src/locales/de/arena-flyout.json index c353b432bc0..30d3e7febb3 100644 --- a/src/locales/de/arena-flyout.ts +++ b/src/locales/de/arena-flyout.json @@ -1,13 +1,8 @@ -import { SimpleTranslationEntries } from "#app/interfaces/locales"; - -export const arenaFlyout: SimpleTranslationEntries = { - // Title +{ "activeBattleEffects": "Aktive Kampfeffekte", "player": "Spieler", "neutral": "Neutral", "enemy": "Gegner", - - // WeatherType "sunny": "Sonne", "rain": "Regen", "sandstorm": "Sandsturm", @@ -17,14 +12,10 @@ export const arenaFlyout: SimpleTranslationEntries = { "heavyRain": "Strömender Regen", "harshSun": "Sehr starker Sonnenschein", "strongWinds": "Luftströmungen", - - // TerrainType "misty": "Nebelfeld", "electric": "Elektrofeld", "grassy": "Grasfeld", "psychic": "Psychofeld", - - // ArenaTagType "mudSport": "Lehmsuhler", "waterSport": "Nassmacher", "spikes": "Stachler", @@ -45,5 +36,5 @@ export const arenaFlyout: SimpleTranslationEntries = { "matBlock": "Tatami-Schild", "craftyShield": "Trickschutz", "tailwind": "Rückenwind", - "happyHour": "Goldene Zeiten", -}; + "happyHour": "Goldene Zeiten" +} \ No newline at end of file diff --git a/src/locales/de/arena-tag.ts b/src/locales/de/arena-tag.json similarity index 95% rename from src/locales/de/arena-tag.ts rename to src/locales/de/arena-tag.json index 65699742331..454effae60c 100644 --- a/src/locales/de/arena-tag.ts +++ b/src/locales/de/arena-tag.json @@ -1,6 +1,4 @@ -import { SimpleTranslationEntries } from "#app/interfaces/locales"; - -export const arenaTag: SimpleTranslationEntries = { +{ "yourTeam": "Pokémon auf deiner Seite", "opposingTeam": "Pokémon auf gegnerischer Seite", "arenaOnRemove": "Der Effekt von {{moveName}} lässt nach!", @@ -49,5 +47,5 @@ export const arenaTag: SimpleTranslationEntries = { "tailwindOnRemovePlayer": "Der Rückenwind auf deiner Seite hat sich gelegt!", "tailwindOnRemoveEnemy": "Der Rückenwind auf gegnerischer Seite hat sich gelegt!", "happyHourOnAdd": "Goldene Zeiten sind angebrochen!", - "happyHourOnRemove": "Die goldenen Zeiten sind vorbei!", -} as const; + "happyHourOnRemove": "Die goldenen Zeiten sind vorbei!" +} \ No newline at end of file diff --git a/src/locales/de/battle-info.json b/src/locales/de/battle-info.json new file mode 100644 index 00000000000..f7844273af8 --- /dev/null +++ b/src/locales/de/battle-info.json @@ -0,0 +1,3 @@ +{ + "generation": "Generation {{generation}}" +} \ No newline at end of file diff --git a/src/locales/de/battle-info.ts b/src/locales/de/battle-info.ts deleted file mode 100644 index f24dad46c6c..00000000000 --- a/src/locales/de/battle-info.ts +++ /dev/null @@ -1,5 +0,0 @@ -import { SimpleTranslationEntries } from "#app/interfaces/locales"; - -export const battleInfo: SimpleTranslationEntries = { - "generation": "Generation {{generation}}", -} as const; diff --git a/src/locales/de/battle-message-ui-handler.json b/src/locales/de/battle-message-ui-handler.json new file mode 100644 index 00000000000..0d8038b5a85 --- /dev/null +++ b/src/locales/de/battle-message-ui-handler.json @@ -0,0 +1,8 @@ +{ + "ivBest": "Sensationell", + "ivFantastic": "Fantastisch", + "ivVeryGood": "Sehr Gut", + "ivPrettyGood": "Gut", + "ivDecent": "Nicht Übel", + "ivNoGood": "Schlecht" +} \ No newline at end of file diff --git a/src/locales/de/battle-message-ui-handler.ts b/src/locales/de/battle-message-ui-handler.ts deleted file mode 100644 index cc1deccbaa2..00000000000 --- a/src/locales/de/battle-message-ui-handler.ts +++ /dev/null @@ -1,10 +0,0 @@ -import { SimpleTranslationEntries } from "#app/interfaces/locales"; - -export const battleMessageUiHandler: SimpleTranslationEntries = { - "ivBest": "Sensationell", - "ivFantastic": "Fantastisch", - "ivVeryGood": "Sehr Gut", - "ivPrettyGood": "Gut", - "ivDecent": "Nicht Übel", - "ivNoGood": "Schlecht", -} as const; diff --git a/src/locales/de/battle-scene.json b/src/locales/de/battle-scene.json new file mode 100644 index 00000000000..ef916edbf08 --- /dev/null +++ b/src/locales/de/battle-scene.json @@ -0,0 +1,3 @@ +{ + "moneyOwned": "{{formattedMoney}} ₽" +} \ No newline at end of file diff --git a/src/locales/de/battle.ts b/src/locales/de/battle.json similarity index 96% rename from src/locales/de/battle.ts rename to src/locales/de/battle.json index b082a6932e9..762b5848439 100644 --- a/src/locales/de/battle.ts +++ b/src/locales/de/battle.json @@ -1,6 +1,4 @@ -import { SimpleTranslationEntries } from "#app/interfaces/locales"; - -export const battle: SimpleTranslationEntries = { +{ "bossAppeared": "{{bossName}} erscheint.", "trainerAppeared": "{{trainerName}} möchte kämpfen!", "trainerAppearedDouble": "{{trainerName}} möchten kämpfen!", @@ -24,6 +22,7 @@ export const battle: SimpleTranslationEntries = { "hitResultSuperEffective": "Das ist sehr effektiv!", "hitResultNotVeryEffective": "Das ist nicht sehr effektiv…", "hitResultNoEffect": "Es hat keine Wirkung auf {{pokemonName}}…", + "hitResultImmune": "{{pokemonName}} ist unversehrt!", "hitResultOneHitKO": "Ein K.O.-Treffer!", "attackFailed": "Es ist fehlgeschlagen!", "attackMissed": "Die Attacke hat {{pokemonNameWithAffix}} verfehlt!", @@ -39,7 +38,7 @@ export const battle: SimpleTranslationEntries = { "learnMoveNotLearned": "{{pokemonName}} hat {{moveName}} nicht erlernt.", "learnMoveForgetQuestion": "Welche Attacke soll vergessen werden?", "learnMoveForgetSuccess": "{{pokemonName}} hat {{moveName}} vergessen.", - "countdownPoof": "@d{32}Eins, @d{15}zwei @d{15}und@d{15}… @d{15}… @d{15}… @d{15}@s{pb_bounce_1}schwupp!", + "countdownPoof": "@d{32}Eins, @d{15}zwei @d{15}und@d{15}… @d{15}… @d{15}… @d{15}@s{se/pb_bounce_1}schwupp!", "learnMoveAnd": "Und…", "levelCapUp": "Die Levelbeschränkung wurde auf {{levelCap}} erhöht!", "moveNotImplemented": "{{moveName}} ist noch nicht implementiert und kann nicht ausgewählt werden.", @@ -95,5 +94,5 @@ export const battle: SimpleTranslationEntries = { "retryBattle": "Möchtest du vom Beginn des Kampfes neustarten?", "unlockedSomething": "{{unlockedThing}} wurde freigeschaltet.", "congratulations": "Glückwunsch!", - "beatModeFirstTime": "{{speciesName}} hat den {{gameMode}} Modus zum ersten Mal beendet! Du erhältst {{newModifier}}!", -} as const; + "beatModeFirstTime": "{{speciesName}} hat den {{gameMode}} Modus zum ersten Mal beendet! Du erhältst {{newModifier}}!" +} \ No newline at end of file diff --git a/src/locales/de/battler-tags.ts b/src/locales/de/battler-tags.json similarity index 95% rename from src/locales/de/battler-tags.ts rename to src/locales/de/battler-tags.json index 27d5f14c597..5509cc11b0a 100644 --- a/src/locales/de/battler-tags.ts +++ b/src/locales/de/battler-tags.json @@ -1,6 +1,4 @@ -import { SimpleTranslationEntries } from "#app/interfaces/locales"; - -export const battlerTags: SimpleTranslationEntries = { +{ "trappedDesc": "Wechselsperre", "flinchedDesc": "Zurückschrecken", "confusedDesc": "Verwirrung", @@ -69,5 +67,5 @@ export const battlerTags: SimpleTranslationEntries = { "saltCuredLapse": "{{pokemonNameWithAffix}} wurde durch {{moveName}} verletzt!", "cursedOnAdd": "{{pokemonNameWithAffix}} nimmt einen Teil seiner KP und legt einen Fluch auf {{pokemonName}}!", "cursedLapse": "{{pokemonNameWithAffix}} wurde durch den Fluch verletzt!", - "stockpilingOnAdd": "{{pokemonNameWithAffix}} stockpiled {{stockpiledCount}}!", -} as const; + "stockpilingOnAdd": "{{pokemonNameWithAffix}} hortet {{stockpiledCount}}!" +} \ No newline at end of file diff --git a/src/locales/de/berry.json b/src/locales/de/berry.json new file mode 100644 index 00000000000..61f3c623e32 --- /dev/null +++ b/src/locales/de/berry.json @@ -0,0 +1,46 @@ +{ + "SITRUS": { + "name": "Tsitrubeere", + "effect": "Stellt 25% der KP wieder her, wenn die KP unter 50% sind." + }, + "LUM": { + "name": "Prunusbeere", + "effect": "Heilt jede nichtflüchtige Statusveränderung und Verwirrung." + }, + "ENIGMA": { + "name": "Enigmabeere", + "effect": "Stellt 25% der KP wieder her, wenn der Träger von einer sehr effektiven Attacke getroffen wird." + }, + "LIECHI": { + "name": "Lydzibeere", + "effect": "Steigert den Angriff, wenn die KP unter 25% sind." + }, + "GANLON": { + "name": "Linganbeere", + "effect": "Steigert die Verteidigung, wenn die KP unter 25% sind." + }, + "PETAYA": { + "name": "Tahaybeere", + "effect": "Steigert den Spezial-Angriff, wenn die KP unter 25% sind." + }, + "APICOT": { + "name": "Apikobeere", + "effect": "Steigert die Spezial-Verteidigung, wenn die KP unter 25% sind." + }, + "SALAC": { + "name": "Salkabeere", + "effect": "Steigert die Initiative, wenn die KP unter 25% sind." + }, + "LANSAT": { + "name": "Lansatbeere", + "effect": "Erhöht die Volltrefferchance, wenn die KP unter 25% sind." + }, + "STARF": { + "name": "Krambobeere", + "effect": "Erhöht einen zufälligen Statuswert stark, wenn die KP unter 25% sind." + }, + "LEPPA": { + "name": "Jonagobeere", + "effect": "Stellt 10 AP für eine Attacke wieder her, wenn deren AP auf 0 fallen." + } +} \ No newline at end of file diff --git a/src/locales/de/berry.ts b/src/locales/de/berry.ts deleted file mode 100644 index b041a23d646..00000000000 --- a/src/locales/de/berry.ts +++ /dev/null @@ -1,48 +0,0 @@ -import { BerryTranslationEntries } from "#app/interfaces/locales"; - -export const berry: BerryTranslationEntries = { - "SITRUS": { - name: "Tsitrubeere", - effect: "Stellt 25% der KP wieder her, wenn die KP unter 50% sind." - }, - "LUM": { - name: "Prunusbeere", - effect: "Heilt jede nichtflüchtige Statusveränderung und Verwirrung." - }, - "ENIGMA": { - name: "Enigmabeere", - effect: "Stellt 25% der KP wieder her, wenn der Träger von einer sehr effektiven Attacke getroffen wird.", - }, - "LIECHI": { - name: "Lydzibeere", - effect: "Steigert den Angriff, wenn die KP unter 25% sind." - }, - "GANLON": { - name: "Linganbeere", - effect: "Steigert die Verteidigung, wenn die KP unter 25% sind." - }, - "PETAYA": { - name: "Tahaybeere", - effect: "Steigert den Spezial-Angriff, wenn die KP unter 25% sind." - }, - "APICOT": { - name: "Apikobeere", - effect: "Steigert die Spezial-Verteidigung, wenn die KP unter 25% sind." - }, - "SALAC": { - name: "Salkabeere", - effect: "Steigert die Initiative, wenn die KP unter 25% sind." - }, - "LANSAT": { - name: "Lansatbeere", - effect: "Erhöht die Volltrefferchance, wenn die KP unter 25% sind." - }, - "STARF": { - name: "Krambobeere", - effect: "Erhöht einen zufälligen Statuswert stark, wenn die KP unter 25% sind." - }, - "LEPPA": { - name: "Jonagobeere", - effect: "Stellt 10 AP für eine Attacke wieder her, wenn deren AP auf 0 fallen." - }, -} as const; diff --git a/src/locales/de/bgm-name.ts b/src/locales/de/bgm-name.json similarity index 88% rename from src/locales/de/bgm-name.ts rename to src/locales/de/bgm-name.json index 3877aeea9bd..1eab276a70a 100644 --- a/src/locales/de/bgm-name.ts +++ b/src/locales/de/bgm-name.json @@ -1,8 +1,6 @@ -import { SimpleTranslationEntries } from "#app/interfaces/locales"; - -export const bgmName: SimpleTranslationEntries = { +{ "music": "Musik: ", - "missing_entries" : "{{name}}", + "missing_entries": "{{name}}", "battle_kanto_champion": "S2W2 Vs. Kanto Champion", "battle_johto_champion": "S2W2 Vs. Johto Champion", "battle_hoenn_champion_g5": "S2W2 Vs. Hoenn Champion", @@ -47,6 +45,7 @@ export const bgmName: SimpleTranslationEntries = { "battle_legendary_lake_trio": "ORAS Vs. Seen-Trio", "battle_legendary_sinnoh": "ORAS Vs. Legendäres Sinnoh Pokémon", "battle_legendary_dia_pal": "ORAS Vs. Dialga & Palkia", + "battle_legendary_origin_forme": "PLA Vs. Urform Dialga & Palkia", "battle_legendary_giratina": "ORAS Vs. Giratina", "battle_legendary_arceus": "HGSS Vs. Arceus", "battle_legendary_unova": "SW Vs. Legendäres Einall Pokémon", @@ -61,6 +60,7 @@ export const bgmName: SimpleTranslationEntries = { "battle_legendary_zac_zam": "SWSH Vs. Zacian & Zamazenta", "battle_legendary_glas_spec": "SWSH Vs. Polaross & Phantoross", "battle_legendary_calyrex": "SWSH Vs. Coronospa", + "battle_legendary_riders": "SWSH Vs. Schimmelreiter & Rappenreiter Coronospa", "battle_legendary_birds_galar": "SWSH Vs. Legendäre Galar-Vögel", "battle_legendary_ruinous": "KAPU Vs. Schätze des Unheils", "battle_legendary_kor_mir": "KAPU Die Tiefen von Zone Null", @@ -80,13 +80,21 @@ export const bgmName: SimpleTranslationEntries = { "battle_galactic_grunt": "BDSP Vs. Team Galaktik Rüpel", "battle_plasma_grunt": "SW Vs. Team Plasma Rüpel", "battle_flare_grunt": "XY Vs. Team Flare Rüpel", + "battle_aether_grunt": "SM Vs. Æther Foundation", + "battle_skull_grunt": "SM Vs. Team Skull Rüpel", + "battle_macro_grunt": "SWSH Vs. Trainer", + "battle_galactic_admin": "BDSP Vs. Team Galactic Commander", + "battle_skull_admin": "SM Vs. Team Skull Vorstand", + "battle_oleana": "SWSH Vs. Oleana", "battle_rocket_boss": "USUM Vs. Giovanni", "battle_aqua_magma_boss": "ORAS Vs. Team Aqua & Magma Boss", "battle_galactic_boss": "BDSP Vs. Zyrus", "battle_plasma_boss": "S2W2 Vs. G-Cis", "battle_flare_boss": "XY Vs. Flordelis", + "battle_aether_boss": "SM Vs. Samantha", + "battle_skull_boss": "SM Vs. Bromley", + "battle_macro_boss": "SWSH Vs. Rose", - // Biome Music "abyss": "PMD Erkundungsteam Himmel Dunkelkrater", "badlands": "PMD Erkundungsteam Himmel Kargtal", "beach": "PMD Erkundungsteam Himmel Feuchtklippe", @@ -102,18 +110,18 @@ export const bgmName: SimpleTranslationEntries = { "graveyard": "PMD Erkundungsteam Himmel Verwirrwald", "ice_cave": "PMD Erkundungsteam Himmel Rieseneisberg", "island": "PMD Erkundungsteam Himmel Schroffküste", - "jungle": "Lmz - Jungle", // The composer thinks about a more creative name - "laboratory": "Firel - Laboratory", // The composer thinks about a more creative name + "jungle": "Lmz - Jungle", + "laboratory": "Firel - Laboratory", "lake": "PMD Erkundungsteam Himmel Kristallhöhle", "meadow": "PMD Erkundungsteam Himmel Himmelsgipfel-Wald", - "metropolis": "Firel - Metropolis", // The composer thinks about a more creative name + "metropolis": "Firel - Metropolis", "mountain": "PMD Erkundungsteam Himmel Hornberg", "plains": "PMD Erkundungsteam Himmel Himmelsgipfel-Prärie", "power_plant": "PMD Erkundungsteam Himmel Weite Ampere-Ebene", "ruins": "PMD Erkundungsteam Himmel Tiefes Ruinenverlies", - "sea": "Andr06 - Marine Mystique", // Name defined by the composer - "seabed": "Firel - Seabed", // The composer thinks about a more creative name - "slum": "Andr06 - Sneaky Snom", // Name defined by the composer + "sea": "Andr06 - Marine Mystique", + "seabed": "Firel - Seabed", + "slum": "Andr06 - Sneaky Snom", "snowy_forest": "PMD Erkundungsteam Himmel Himmelsgipfel-Schneefeld", "space": "Firel - Aether", "swamp": "PMD Erkundungsteam Himmel Ringmeer", @@ -122,8 +130,6 @@ export const bgmName: SimpleTranslationEntries = { "town": "PMD Erkundungsteam Himmel Zufälliges Dungeon-Theme 3", "volcano": "PMD Erkundungsteam Himmel Dunsthöhle", "wasteland": "PMD Erkundungsteam Himmel Verborgenes Hochland", - - // Encounter "encounter_ace_trainer": "SW Trainerblicke treffen sich (Ass-Trainer)", "encounter_backpacker": "SW Trainerblicke treffen sich (Backpacker)", "encounter_clerk": "SW Trainerblicke treffen sich (Angestellter)", @@ -138,9 +144,7 @@ export const bgmName: SimpleTranslationEntries = { "encounter_scientist": "SW Trainerblicke treffen sich (Forscher)", "encounter_twins": "SW Trainerblicke treffen sich (Zwillinge)", "encounter_youngster": "SW Trainerblicke treffen sich (Knirps)", - - // Other "heal": "SW Pokémon-Heilung", "menu": "PMD Erkundungsteam Himmel Willkommen in der Welt der Pokémon!", - "title": "PMD Erkundungsteam Himmel Top-Menü-Thema", -} as const; + "title": "PMD Erkundungsteam Himmel Top-Menü-Thema" +} diff --git a/src/locales/de/biome.ts b/src/locales/de/biome.json similarity index 85% rename from src/locales/de/biome.ts rename to src/locales/de/biome.json index 2afb4a4b018..a4add24ad3b 100644 --- a/src/locales/de/biome.ts +++ b/src/locales/de/biome.json @@ -1,6 +1,4 @@ -import { SimpleTranslationEntries } from "#app/interfaces/locales"; - -export const biome: SimpleTranslationEntries = { +{ "unknownLocation": "An einem unbekannten Ort", "TOWN": "Stadt", "PLAINS": "Ebene", @@ -36,5 +34,5 @@ export const biome: SimpleTranslationEntries = { "SNOWY_FOREST": "Verschneiter Wald", "ISLAND": "Insel", "LABORATORY": "Labor", - "END": "???", -} as const; + "END": "???" +} \ No newline at end of file diff --git a/src/locales/de/challenges.ts b/src/locales/de/challenges.json similarity index 74% rename from src/locales/de/challenges.ts rename to src/locales/de/challenges.json index e5e8a96f3fd..17c33353bc6 100644 --- a/src/locales/de/challenges.ts +++ b/src/locales/de/challenges.json @@ -1,6 +1,4 @@ -import { TranslationEntries } from "#app/interfaces/locales"; - -export const challenges: TranslationEntries = { +{ "title": "Herausforderungsmodifikatoren", "illegalEvolution": "{{pokemon}} hat sich in ein Pokémon verwandelt, dass für diese Herausforderung nicht zulässig ist!", "singleGeneration": { @@ -15,18 +13,24 @@ export const challenges: TranslationEntries = { "gen_6": "sechsten", "gen_7": "siebten", "gen_8": "achten", - "gen_9": "neunten", + "gen_9": "neunten" }, "singleType": { "name": "Mono-Typ", "desc": "Du kannst nur Pokémon des Typs {{type}} verwenden.", "desc_default": "Du kannst nur Pokémon des gewählten Typs verwenden." - // types in pokemon-info }, "freshStart": { "name": "Neuanfang", "desc": "Du kannst nur die ursprünglichen Starter verwenden, genau so, als hättest du gerade erst mit Pokérogue begonnen.", "value.0": "Aus", - "value.1": "An", + "value.1": "An" + }, + "inverseBattle": { + "name": "Umkehrkampf", + "shortName": "Umkehrkampf", + "desc": "Die Typen-Effektivität wird umgekehrt, und kein Typ ist gegen einen anderen Typ immun.\nDeaktiviert die Erfolge anderer Herausforderungen.", + "value.0": "Aus", + "value.1": "An" } -} as const; +} \ No newline at end of file diff --git a/src/locales/de/command-ui-handler.json b/src/locales/de/command-ui-handler.json new file mode 100644 index 00000000000..4949929770b --- /dev/null +++ b/src/locales/de/command-ui-handler.json @@ -0,0 +1,7 @@ +{ + "fight": "Kampf", + "ball": "Ball", + "pokemon": "Pokémon", + "run": "Fliehen", + "actionMessage": "Was soll\n{{pokemonName}} tun?" +} \ No newline at end of file diff --git a/src/locales/de/command-ui-handler.ts b/src/locales/de/command-ui-handler.ts deleted file mode 100644 index cd7da3fbf26..00000000000 --- a/src/locales/de/command-ui-handler.ts +++ /dev/null @@ -1,9 +0,0 @@ -import { SimpleTranslationEntries } from "#app/interfaces/locales"; - -export const commandUiHandler: SimpleTranslationEntries = { - "fight": "Kampf", - "ball": "Ball", - "pokemon": "Pokémon", - "run": "Fliehen", - "actionMessage": "Was soll\n{{pokemonName}} tun?", -} as const; diff --git a/src/locales/de/common.json b/src/locales/de/common.json new file mode 100644 index 00000000000..b0ca16e04f4 --- /dev/null +++ b/src/locales/de/common.json @@ -0,0 +1,8 @@ +{ + "start": "Start", + "luckIndicator": "Glück:", + "shinyOnHover": "Schillernd", + "commonShiny": "Gewöhnlich", + "rareShiny": "Selten", + "epicShiny": "Episch" +} \ No newline at end of file diff --git a/src/locales/de/common.ts b/src/locales/de/common.ts deleted file mode 100644 index 07f920aaf30..00000000000 --- a/src/locales/de/common.ts +++ /dev/null @@ -1,10 +0,0 @@ -import { SimpleTranslationEntries } from "#app/interfaces/locales"; - -export const common: SimpleTranslationEntries = { - "start": "Start", - "luckIndicator": "Glück:", - "shinyOnHover": "Schillernd", - "commonShiny": "Gewöhnlich", - "rareShiny": "Selten", - "epicShiny": "Episch", -} as const; diff --git a/src/locales/de/config.ts b/src/locales/de/config.ts index d0779c9eec4..772bfb6d1d5 100644 --- a/src/locales/de/config.ts +++ b/src/locales/de/config.ts @@ -1,116 +1,113 @@ -import { ability } from "./ability"; -import { abilityTriggers } from "./ability-trigger"; -import { arenaFlyout } from "./arena-flyout"; -import { arenaTag } from "./arena-tag"; -import { PGFachv, PGMachv } from "./achv"; -import { battle } from "./battle"; -import { battleInfo } from "./battle-info"; -import { battleMessageUiHandler } from "./battle-message-ui-handler"; -import { battlerTags } from "./battler-tags"; -import { berry } from "./berry"; -import { bgmName } from "./bgm-name"; -import { biome } from "./biome"; -import { challenges } from "./challenges"; -import { commandUiHandler } from "./command-ui-handler"; -import { - PGFbattleSpecDialogue, - PGFdialogue, - PGFdoubleBattleDialogue, - PGFmiscDialogue, - PGMbattleSpecDialogue, - PGMdialogue, - PGMdoubleBattleDialogue, - PGMmiscDialogue -} from "./dialogue"; -import { egg } from "./egg"; -import { fightUiHandler } from "./fight-ui-handler"; -import { filterBar } from "./filter-bar"; -import { gameMode } from "./game-mode"; -import { gameStatsUiHandler } from "./game-stats-ui-handler"; -import { growth } from "./growth"; -import { menu } from "./menu"; -import { menuUiHandler } from "./menu-ui-handler"; -import { modifier } from "./modifier"; -import { modifierType } from "./modifier-type"; -import { move } from "./move"; -import { nature } from "./nature"; -import { pokeball } from "./pokeball"; -import { pokemon } from "./pokemon"; -import { pokemonForm, battlePokemonForm } from "./pokemon-form"; -import { pokemonInfo } from "./pokemon-info"; -import { pokemonInfoContainer } from "./pokemon-info-container"; -import { pokemonSummary } from "./pokemon-summary"; -import { saveSlotSelectUiHandler } from "./save-slot-select-ui-handler"; -import { splashMessages } from "./splash-messages"; -import { starterSelectUiHandler } from "./starter-select-ui-handler"; -import { statusEffect } from "./status-effect"; -import { titles, trainerClasses, trainerNames } from "./trainers"; -import { tutorial } from "./tutorial"; -import { voucher } from "./voucher"; -import { terrain, weather } from "./weather"; -import { partyUiHandler } from "./party-ui-handler"; -import { settings } from "./settings.js"; -import { common } from "./common.js"; -import { modifierSelectUiHandler } from "./modifier-select-ui-handler"; -import { moveTriggers } from "./move-trigger"; +import common from "./common.json"; +import settings from "./settings.json"; +import ability from "./ability.json"; +import abilityTriggers from "./ability-trigger.json"; +import arenaFlyout from "./arena-flyout.json"; +import arenaTag from "./arena-tag.json"; +import achv from "./achv.json"; +import battle from "./battle.json"; +import battleScene from "./battle-scene.json"; +import battleInfo from "./battle-info.json"; +import battleMessageUiHandler from "./battle-message-ui-handler.json"; +import battlerTags from "./battler-tags.json"; +import berry from "./berry.json"; +import bgmName from "./bgm-name.json"; +import biome from "./biome.json"; +import challenges from "./challenges.json"; +import commandUiHandler from "./command-ui-handler.json"; +import dialogue from "./dialogue.json"; +import battleSpecDialogue from "./dialogue-final-boss.json"; +import miscDialogue from "./dialogue-misc.json"; +import doubleBattleDialogue from "./dialogue-double-battle.json"; +import egg from "./egg.json"; +import fightUiHandler from "./fight-ui-handler.json"; +import filterBar from "./filter-bar.json"; +import gameMode from "./game-mode.json"; +import gameStatsUiHandler from "./game-stats-ui-handler.json"; +import growth from "./growth.json"; +import menu from "./menu.json"; +import menuUiHandler from "./menu-ui-handler.json"; +import modifier from "./modifier.json"; +import modifierType from "./modifier-type.json"; +import move from "./move.json"; +import nature from "./nature.json"; +import partyUiHandler from "./party-ui-handler.json"; +import pokeball from "./pokeball.json"; +import pokemon from "./pokemon.json"; +import pokemonForm from "./pokemon-form.json"; +import battlePokemonForm from "./pokemon-form-battle.json"; +import pokemonInfo from "./pokemon-info.json"; +import pokemonInfoContainer from "./pokemon-info-container.json"; +import pokemonSummary from "./pokemon-summary.json"; +import saveSlotSelectUiHandler from "./save-slot-select-ui-handler.json"; +import splashMessages from "./splash-messages.json"; +import starterSelectUiHandler from "./starter-select-ui-handler.json"; +import statusEffect from "./status-effect.json"; +import trainerTitles from "./trainer-titles.json"; +import trainerClasses from "./trainer-classes.json"; +import trainerNames from "./trainer-names.json"; +import tutorial from "./tutorial.json"; +import voucher from "./voucher.json"; +import weather from "./weather.json"; +import terrain from "./terrain.json"; +import modifierSelectUiHandler from "./modifier-select-ui-handler.json"; +import moveTriggers from "./move-trigger.json"; +import runHistory from "./run-history.json"; export const deConfig = { - ability: ability, - abilityTriggers: abilityTriggers, - arenaFlyout: arenaFlyout, - arenaTag: arenaTag, - battle: battle, - battleInfo: battleInfo, - battleMessageUiHandler: battleMessageUiHandler, - battlePokemonForm: battlePokemonForm, - battlerTags: battlerTags, - berry: berry, - bgmName: bgmName, - biome: biome, - challenges: challenges, - commandUiHandler: commandUiHandler, - common: common, - PGMachv: PGMachv, - PGFachv: PGFachv, - PGMdialogue: PGMdialogue, - PGFdialogue: PGFdialogue, - PGMbattleSpecDialogue: PGMbattleSpecDialogue, - PGFbattleSpecDialogue: PGFbattleSpecDialogue, - PGMmiscDialogue: PGMmiscDialogue, - PGFmiscDialogue: PGFmiscDialogue, - PGMdoubleBattleDialogue: PGMdoubleBattleDialogue, - PGFdoubleBattleDialogue: PGFdoubleBattleDialogue, - egg: egg, - fightUiHandler: fightUiHandler, - filterBar: filterBar, - gameMode: gameMode, - gameStatsUiHandler: gameStatsUiHandler, - growth: growth, - menu: menu, - menuUiHandler: menuUiHandler, - modifier: modifier, - modifierType: modifierType, - move: move, - nature: nature, - pokeball: pokeball, - pokemon: pokemon, - pokemonForm: pokemonForm, - pokemonInfo: pokemonInfo, - pokemonInfoContainer: pokemonInfoContainer, - pokemonSummary: pokemonSummary, - saveSlotSelectUiHandler: saveSlotSelectUiHandler, - settings: settings, - splashMessages: splashMessages, - starterSelectUiHandler: starterSelectUiHandler, - statusEffect: statusEffect, - terrain: terrain, - titles: titles, - trainerClasses: trainerClasses, - trainerNames: trainerNames, - tutorial: tutorial, - voucher: voucher, - weather: weather, - partyUiHandler: partyUiHandler, - modifierSelectUiHandler: modifierSelectUiHandler, - moveTriggers: moveTriggers + ability, + abilityTriggers, + arenaFlyout, + arenaTag, + battle, + battleScene, + battleInfo, + battleMessageUiHandler, + battlePokemonForm, + battlerTags, + berry, + bgmName, + biome, + challenges, + commandUiHandler, + common, + achv, + dialogue, + battleSpecDialogue, + miscDialogue, + doubleBattleDialogue, + egg, + fightUiHandler, + filterBar, + gameMode, + gameStatsUiHandler, + growth, + menu, + menuUiHandler, + modifier, + modifierType, + move, + nature, + pokeball, + pokemon, + pokemonForm, + pokemonInfo, + pokemonInfoContainer, + pokemonSummary, + saveSlotSelectUiHandler, + settings, + splashMessages, + starterSelectUiHandler, + statusEffect, + terrain, + titles: trainerTitles, + trainerClasses, + trainerNames, + tutorial, + voucher, + weather, + partyUiHandler, + modifierSelectUiHandler, + moveTriggers, + runHistory, }; diff --git a/src/locales/de/dialogue-double-battle.json b/src/locales/de/dialogue-double-battle.json new file mode 100644 index 00000000000..ec7cf375c0c --- /dev/null +++ b/src/locales/de/dialogue-double-battle.json @@ -0,0 +1,82 @@ +{ + "blue_red_double": { + "encounter": { + "1": "Blau: Hey Rot, lass uns ihnen zeigen, was wir drauf haben!\n$Rot: ...\n$Blau: Das ist die Macht von Alabastia!" + }, + "victory": { + "1": "Blau: Das war ein großartiger Kampf!\n$Rot: ..." + } + }, + "red_blue_double": { + "encounter": { + "1": "Rot: ...!\n$Blau: Er redet nicht viel...\n$Blau: Aber lass dich davon nicht täuschen! Er ist schließlich ein Champ!" + }, + "victory": { + "1": "Rot: ...!\n$Blau: Das nächste Mal gewinnen wir!" + } + }, + "tate_liza_double": { + "encounter": { + "1": "Ben: Hehehe...Bist du überrascht?\n$Svenja: Wir sind zwei Arenaleiter auf einmal!\n$Ben: Wir sind Zwillinge!\n$Svenja: Wir müssen nicht reden um uns gegenseitig zu verstehen!\n$Ben: Die doppelte Kraft...\n$Svenja: Kannst du ihr standhalten?" + }, + "victory": { + "1": "Ben: Was? Unsere Kombination war perfekt!\n$Svenja: Sieht so aus als müssten wir wohl mehr tranieren..." + } + }, + "liza_tate_double": { + "encounter": { + "1": "Svenja: Hihihi... Bist du überrascht?\n$Ben: Ja, wir sind wirklich zwei Arenaleiter auf einmal!\n$Svenja: Das ist mein Zwillingsbruder Ben!\n$Ben: Und das meine Zwillingsschwester Svenja!\n$Svenja: Wir sind die perfekte Kombo!" + }, + "victory": { + "1": "Svenja: Sind wir...\n$Ben: ...nicht so stark wie wir dachten?" + } + }, + "wallace_steven_double": { + "encounter": { + "1": "Troy: Wassili, lass uns ihnen die Kraft von Champions zeigen!\n$Wassili: Wir zeigen dir die Kraft von Hoenn!\n$Troy: Los gehts!" + }, + "victory": { + "1": "Troy: Das war ein großartiger Kampf!\n$Wassili: Das nächste Mal gewinnen wir!" + } + }, + "steven_wallace_double": { + "encounter": { + "1": "Troy: Hast du irgendwelche seltenen Pokémon?\n$Wassili: Troy... Wir sind hier um zu kämpfen und nicht um mit unseren Pokémon zu prahlen...\n$Troy: Oh... Wenn das so ist... Lass uns anfangen!" + }, + "victory": { + "1": "Troy: Jetzt da wir mit Kämpfen fertig sind... Lass uns mit unsereren Pokémon prahlen!\n$Wassili: Troy..." + } + }, + "alder_iris_double": { + "encounter": { + "1": "Lauro: Wir sind die stärksten Trainer aus Einall!\n$Lilia: Kämpfe gegen starke Trainer machen am meisten Spaß!" + }, + "victory": { + "1": "Lauro: Wow! Du bist super stark!\n$Lilia: Beim nächsten Mal schlagen wir dich!" + } + }, + "iris_alder_double": { + "encounter": { + "1": "Lilia: Willkommen Herausforderer! Ich bin DER Champion von Einall!\n$Lauro: Lilia, bist du nicht etwas zu aufgeregt?" + }, + "victory": { + "1": "Lilia: Eine solche Niederlage ist nicht einfach zu verkraften...\n$Lauro: Aber wir wachsen an unseren Niederlagen und werden immer besser!" + } + }, + "marnie_piers_double": { + "encounter": { + "1": "Mary: Bruder, lass uns ihnen die Kraft von Spikeford zeigen!\n$Nezz: Wir bringen die Dunkelheit!" + }, + "victory": { + "1": "Mary: Du hast Licht in unsere Dunkelheit gebracht!\n$Piers: Es ist viel zu hell..." + } + }, + "piers_marnie_double": { + "encounter": { + "1": "Nezz: Bereit für ein Konzert?\n$Mary: Bruder...Sie sind hier um zu kämpfen, nicht um zu singen..." + }, + "victory": { + "1": "Nezz: Das war mal ein großartiges Konzert!\n$Marnie: Bruder..." + } + } +} \ No newline at end of file diff --git a/src/locales/de/dialogue-final-boss.json b/src/locales/de/dialogue-final-boss.json new file mode 100644 index 00000000000..bffbd779be0 --- /dev/null +++ b/src/locales/de/dialogue-final-boss.json @@ -0,0 +1,4 @@ +{ + "encounter": "Es scheint, als wäre es wieder mal an der Zeit.\nDu weißt, warum du hierher kommen musst, oder?\n$Dich hat es hierher gezogen, du warst bereits hier.\nUnzählige Male.\n$Obwohl, vielleicht doch nicht unzählig.\nUm genau zu sein, dies ist der {{cycleCount}}te Zyklus.\n$Du verlierst jeden Zyklus dein Gedächtnis. Trotzdem \nbleibt etwas, ein Teil deines ehemaligen Ichs, erhalten.\n$Bis jetzt hast du es noch nicht vollbracht zu siegen, aber dieses Mal spüre ich eine andere Präsenz in dir.\n\n$Du bist der Einzige hier, aber es kommt mir so vor als wäre da...jemand anderes.\n$Wirst du endlich beweisen, dass du ein würdiger Herausforder bist?\nDie Herausforderung auf die ich seit Jahrtausenden warte?\n$Lass uns beginnen.","firstStageWin": "Ahh verstehe. Diese Präsenz, die ich gespürt habe, ist wirklich real.\nEs scheint als müsste ich micht nicht länger zurück halten.\n$Enttäusche mich nicht.", + "secondStageWin": "…Herrlich." +} \ No newline at end of file diff --git a/src/locales/de/dialogue-misc.json b/src/locales/de/dialogue-misc.json new file mode 100644 index 00000000000..1529831d7c5 --- /dev/null +++ b/src/locales/de/dialogue-misc.json @@ -0,0 +1,6 @@ +{ + "ending": "@c{smile}Oh? Du hast gewonnen?@d{96} @c{smile_eclosed}Ich schätze, das hätte ich wissen sollen.\n$Aber, du bist jetzt zurück.\n$@c{smile}Es ist vorbei.@d{64} Du hast die Schleife beendet.\n$@c{serious_smile_fists}Du hast auch deinen Traum erfüllt, nicht wahr?\nDu hast nicht einmal verloren.\n$@c{neutral}Ich bin der Einzige, der sich daran erinnern wird, was du getan hast.@d{96}\n$Ich schätze, das ist in Ordnung, oder?\n$@c{serious_smile_fists}Deine Legende wird immer in unseren Herzen weiterleben.\n$@c{smile_eclosed}Wie auch immer, ich habe genug von diesem Ort, oder nicht? Lass uns nach Hause gehen.\n$@c{serious_smile_fists}Vielleicht können wir, wenn wir zurück sind, noch einen Kampf haben?\n$Wenn du dazu bereit bist.", + "ending_female": "@c{shock}Du bist zurück?@d{32} Bedeutet das…@d{96} du hast gewonnen?!\n$@c{smile_ehalf}Ich hätte wissen sollen, dass du es in dir hast.\n$@c{smile_eclosed}Natürlich… ich hatte immer dieses Gefühl.\n$@c{smile}Es ist jetzt vorbei, richtig? Du hast die Schleife beendet.\n$@c{smile_ehalf}Du hast auch deinen Traum erfüllt, nicht wahr?\n$Du hast nicht einmal verloren.\n$Ich werde die Einzige sein, die sich daran erinnert, was du getan hast.\n$@c{angry_mopen}Ich werde versuchen, es nicht zu vergessen!\n$@c{smile_wave_wink}Nur ein Scherz!@d{64} @c{smile}Ich würde es nie vergessen.@d{32}\n$Deine Legende wird in unseren Herzen weiterleben.\n$@c{smile_wave}Wie auch immer,@d{64} es wird spät…@d{96} denke ich?\nEs ist schwer zu sagen an diesem Ort.\n$Lass uns nach Hause gehen. \n$@c{smile_wave_wink}Vielleicht können wir morgen noch einen Kampf haben, der alten Zeiten willen?", + "ending_endless": "Glückwunsch! Du hast das aktuelle Ende erreicht!\nWir arbeiten an mehr Spielinhalten.", + "ending_name": "Entwickler" +} diff --git a/src/locales/de/dialogue.json b/src/locales/de/dialogue.json new file mode 100644 index 00000000000..e5bcb81ce52 --- /dev/null +++ b/src/locales/de/dialogue.json @@ -0,0 +1,2691 @@ +{ + "youngster": { + "encounter": { + "1": "Hey, willst du kämpfen?", + "2": "Bist du auch ein neuer Trainer?", + "3": "Hey, ich habe dich noch nie gesehen. Lass uns kämpfen!", + "4": "Ich habe gerade verloren und suche nach neuen Pokémon.\nWarte! Du siehst schwach aus! Lass uns kämpfen!", + "5": "Haben wir uns schon mal getroffen oder nicht? Ich erinnere mich nicht wirklich\n$Nun, ich denke, es ist trotzdem schön, dich zu treffen!", + "6": "Okay, lass uns kämpfen!", + "7": "Okay, hier komme ich! Ich zeige dir meine Kraft!", + "8": "Fan fan fan... Ich zeige dir wie fantastisch meine Pokémon sind!", + "9": "Es ist nicht nötig, Zeit mit Begrüßungen zu verschwenden.\nSobald du bereit bist geht es los!", + "10": "Lass deine Deckung nicht fallen, sonst weinst du, wenn dich ein Kind besiegt.", + "11": "Ich habe meine Pokémon mit großer Sorgfalt aufgezogen. Du darfst ihnen nicht wehtun!", + "12": "Schön, dass du es geschafft hast! Von hier an wird es nicht einfacher.", + "13": "Die Kämpfe gehen immer weiter! Willkommen in der Welt ohne Ende!" + }, + "victory": { + "1": "Wow! Du bist stark!", + "2": "Ich hatte keine Chance, oder?", + "3": "Wenn ich älter bin, werde ich dich besiegen!", + "4": "Ugh. Ich habe keine Pokémon mehr.", + "5": "Das kann nicht sein… DAS KANN NICHT SEIN! Wie konnte ich schon wieder verlieren…", + "6": "Nein! Ich habe verloren!", + "7": "Wow! Du bist unglaublich! Ich bin erstaunt und überrascht!", + "8": "Kann es sein… Wie… Meine Pokémon und ich sind die stärksten, aber…", + "9": "Das nächste Mal werde ich dich besiegen! Lass uns wieder kämpfen!", + "10": "Man! Kannst du nicht sehen, dass ich nur ein Kind bin? Es war nicht fair von dir, so hart zu kämpfen!", + "11": "Deine Pokémon sind unglaublich! Tauschst du mit mir?", + "12": "Ich habe mich ein bisschen mitreißen lassen, worüber habe ich vorhin gesprochen?", + "13": "Ahaha! Da ist es! Genau! Du bist schon jetzt in dieser Welt zu Hause!" + } + }, + "lass": { + "encounter": { + "1": "Lass uns kämpfen, wollen wir?", + "2": "Du siehst wie ein neuer Trainer aus. Lass uns kämpfen!", + "3": "Ich erkenne dich nicht. Wie wäre es mit einem Kampf?", + "4": "Lass uns einen lustigen Pokémon-Kampf haben!", + "5": "Ich zeige dir, wie man Pokémon wirklich einsetzt!", + "6": "Ein ernsthafter Kampf beginnt mit einem ernsten Anfang! Bist du sicher, dass du bereit bist?", + "7": "Du bist nur einmal jung. Und du hast nur eine Chance bei einem bestimmten Kampf.\n$Bald wirst du nur noch eine Erinnerung sein.", + "8": "Du solltest es leicht mit mir angehen, OK? Aber ich kämpfe ernsthaft!", + "9": "Die Schule ist langweilig. Ich habe nichts zu tun. Gähn. Ich kämpfe nur, um die Zeit totzuschlagen." + }, + "victory": { + "1": "Das war beeindruckend! Ich habe noch viel zu lernen.", + "2": "Ich dachte nicht, dass du mich so schlagen würdest…", + "3": "Ich hoffe, wir haben eines Tages ein Rematch.", + "4": "Das war ziemlich erstaunlich! Du hast mich total erschöpft…", + "5": "Du hast mir tatsächlich eine Lektion erteilt! Du bist ziemlich erstaunlich!", + "6": "Ernsthaft, ich habe verloren. Das ist, wie, ernsthaft deprimierend, aber du warst ernsthaft cool.", + "7": "Ich brauche keine Erinnerungen wie diese. Löschen der Erinnerung…", + "8": "Hey! Ich habe dir gesagt, du sollst es leicht mit mir angehen!\n$Trotzdem bist du ziemlich cool, wenn du ernsthaft bist.", + "9": "Ich werde langsam müde vom Kämpfen… Es muss etwas Neues zu tun geben…" + } + }, + "breeder": { + "encounter": { + "1": "Gehorsame Pokémon, eigensinnige Pokémon… Pokémon haben einzigartige Eigenschaften.", + "2": "Auch wenn meine Erziehung und mein Verhalten schlecht sind, habe ich meine Pokémon gut aufgezogen.", + "3": "Hmm, disziplinierst du deine Pokémon? Zu viel Verwöhnen ist nicht gut." + }, + "victory": { + "1": "Es ist wichtig, die Eigenschaften jedes Pokémon zu pflegen und zu trainieren.", + "2": "Im Gegensatz zu meinem teuflischen Selbst sind dies einige gute Pokémon.", + "3": "Zu viel Lob kann sowohl Pokémon als auch Menschen verwöhnen." + }, + "defeat": { + "1": "Du solltest nicht wütend auf deine Pokémon werden, auch wenn du einen Kampf verlierst.", + "2": "Richtig? Ziemlich gute Pokémon, oder? Ich bin dafür geeignet, Dinge großzuziehen.", + "3": "Egal wie sehr du deine Pokémon liebst,\n$du musst sie trotzdem disziplinieren, wenn sie sich schlecht benehmen." + } + }, + "breeder_female": { + "encounter": { + "1": "Pokémon verraten dich nie. Sie erwidern die ganze Liebe, die du ihnen gibst.", + "2": "Soll ich dir einen Tipp geben, wie man gute Pokémon trainiert?", + "3": "Ich habe diese sehr speziellen Pokémon mit einer speziellen Methode aufgezogen." + }, + "victory": { + "1": "Ugh… So sollte das nicht laufen. Habe ich die falsche Mischung verabreicht?", + "2": "Wie konnte das meinen Pokémon passieren… Was fütterst du deine Pokémon?", + "3": "Wenn ich verliere, sagt dir das, dass ich nur die Zeit totgeschlagen habe.\n$Es verletzt mein Ego überhaupt nicht." + }, + "defeat": { + "1": "Das beweist, dass meine Pokémon meine Liebe angenommen haben.", + "2": "Der wahre Trick, um gute Pokémon zu trainieren, besteht darin, gute Pokémon zu fangen.", + "3": "Pokémon werden stark oder schwach, je nachdem, wie du sie großziehst." + } + }, + "fisherman": { + "encounter": { + "1": "Aack! Du hast mich einen Biss verlieren lassen!\nWas wirst du dagegen tun?", + "2": "Geh weg! Du erschreckst die Pokémon!", + "3": "Mal sehen, ob du einen Sieg an Land ziehen kannst!" + }, + "victory": { + "1": "Vergiss es einfach.", + "2": "Nächstes Mal werde ich den Triumph an Land ziehen!", + "3": "Ich glaube, ich habe die Strömungen diesmal unterschätzt." + } + }, + "fisherman_female": { + "encounter": { + "1": "Woah! Ich habe einen großen Fang gemacht!", + "2": "Die Leine ist drin, bereit, den Erfolg an Land zu ziehen!", + "3": "Bereit, Wellen zu schlagen!" + }, + "victory": { + "1": "Ich komme mit einem stärkeren Haken zurück.", + "2": "Ich werde das nächste Mal den Sieg an Land ziehen.", + "3": "Ich schärfe nur meine Haken für das Comeback!" + } + }, + "swimmer": { + "encounter": { + "1": "Zeit, einzutauchen!", + "2": "Lass uns die Wellen des Sieges reiten!", + "3": "Bereit, einen Sprung ins Wasser zu machen!" + }, + "victory": { + "1": "Getränkt in Niederlage!", + "2": "Eine Welle der Niederlage!", + "3": "Zurück ans Ufer, schätze ich." + } + }, + "backpacker": { + "encounter": { + "1": "Packe deine Sachen, es geht los!", + "2": "Mal sehen, ob du mithalten kannst!", + "3": "Bereit machen, Herausforderer!", + "4": "Ich habe 20 Jahre damit verbracht, mich selbst zu finden… Aber wo bin ich?" + }, + "victory": { + "1": "Diesmal bin ich gestolpert!", + "2": "Oh, ich glaube, ich bin verloren.", + "3": "Sackgasse!", + "4": "Warte eine Sekunde! Hey! Weißt du nicht, wer ich bin?" + } + }, + "ace_trainer": { + "encounter": { + "1": "Du scheinst ziemlich zuversichtlich zu sein.", + "2": "Deine Pokémon… Zeig sie mir…", + "3": "Weil ich ein Ass-Trainer bin, denken die Leute, ich sei stark.", + "4": "Weißt du, was es braucht, um ein Ass-Trainer zu sein?" + }, + "victory": { + "1": "Ja… Du hast gute Pokémon…", + "2": "Was?! Aber ich bin ein Kampfgott!", + "3": "Natürlich, du bist der Hauptcharakter!", + "4": "OK! OK! Du könntest ein Ass-Trainer sein!" + }, + "defeat": { + "1": "Ich widme meinen Körper und meine Seele den Pokémon-Kämpfen!", + "2": "Alles innerhalb meiner Erwartungen… Nichts Überraschendes…", + "3": "Ich dachte, ich würde zu einem zerbrechlichen Menschen heranwachsen, \n$der aussieht, als würde er zerbrechen, wenn du ihn zu fest drückst.", + "4": "Natürlich bin ich stark und verliere nicht. Es ist wichtig, dass ich anmutig gewinne." + } + }, + "parasol_lady": { + "encounter": { + "1": "Zeit, das Schlachtfeld mit Eleganz und Anmut zu betreten!" + }, + "victory": { + "1": "Meine Eleganz bleibt ungebrochen!" + } + }, + "twins": { + "encounter": { + "1": "Mach dich bereit, denn wenn wir zusammenarbeiten, gibt es doppelten Ärger!", + "2": "Zwei Herzen, eine Strategie – mal sehen, ob du mit unserer Zwillingskraft mithalten kannst!", + "3": "Hoffe, du bist bereit für doppelten Ärger, denn wir werden dir einheizen!" + }, + "victory": { + "1": "Wir haben vielleicht diese Runde verloren, aber unsere Bindung bleibt unzerbrechlich!", + "2": "Unser Zwillingsgeist wird nicht lange getrübt bleiben.", + "3": "Wir werden als dynamisches Duo stärker zurückkommen!" + }, + "defeat": { + "1": "Zwillingskraft herrscht vor!", + "2": "Zwei Herzen, ein Triumph!", + "3": "Doppelte Freude, doppelter Siegestanz!" + } + }, + "cyclist": { + "encounter": { + "1": "Mach dich bereit, meinen Staub zu schlucken!", + "2": "Mach dich bereit, Herausforderer! Ich werde dich im Staub zurücklassen!", + "3": "Volle Fahrt voraus, mal sehen, ob du mithalten kannst!" + }, + "victory": { + "1": "Die Speichen stehen still, aber die Entschlossenheit dreht weiter.", + "2": "Abgehängt!", + "3": "Der Weg zum Sieg hat viele Kurven und Wendungen, die es noch zu erkunden gilt." + } + }, + "black_belt": { + "encounter": { + "1": "Ich lobe deinen Mut, mich herauszufordern! Denn ich bin derjenige mit dem stärksten Tritt!", + "2": "Oh, ich verstehe. Möchtest du in Stücke geschnitten werden? Oder bevorzugst du die Rolle des Punchingballs?" + }, + "victory": { + "1": "Oh. Die Pokémon haben gekämpft. Mein starker Tritt hat überhaupt nicht geholfen.", + "2": "Hmmm… Wenn ich sowieso verlieren würde, wollte ich wenigstens total vermöbelt werden." + } + }, + "battle_girl": { + "encounter": { + "1": "Du musst mich nicht beeindrucken. Du kannst gegen mich verlieren." + }, + "victory": { + "1": "Es ist schwer, sich zu verabschieden, aber uns läuft die Zeit davon…" + } + }, + "hiker": { + "encounter": { + "1": "Mein mittelalterlicher Bauch gibt mir so viel Gravitas wie die Berge, die ich besteige!", + "2": "Ich habe diesen kräftigen Körper von meinen Eltern geerbt… Ich bin wie eine lebende Bergkette…" + }, + "victory": { + "1": "Zumindest kann ich nicht verlieren, wenn es um BMI geht!", + "2": "Es ist nicht genug… Es ist nie genug. Mein schlechtes Cholesterin ist nicht hoch genug…" + } + }, + "ranger": { + "encounter": { + "1": "Wenn ich von der Natur umgeben bin, hören die meisten anderen Dinge auf, wichtig zu sein.", + "2": "Wenn ich ohne die Natur in meinem Leben lebe, fühle ich mich wie ein Fisch ohne Wasser." + }, + "victory": { + "1": "Es spielt keine Rolle für die Weite der Natur, ob ich gewinne oder verliere…", + "2": "So etwas ist ziemlich trivial im Vergleich zu den erdrückenden Gefühlen des Stadtlebens." + }, + "defeat": { + "1": "Ich habe den Kampf gewonnen. Aber der Sieg ist nichts im Vergleich zur Weite der Natur…", + "2": "Ich bin sicher, das mein Sieg nur dank der Natur möglich war." + } + }, + "scientist": { + "encounter": { + "1": "Meine Forschung wird diese Welt zu Frieden und Freude führen." + }, + "victory": { + "1": "Ich bin ein Genie… Ich sollte nicht gegen jemanden wie dich verlieren…" + } + }, + "school_kid": { + "encounter": { + "1": "…Heehee. Ich bin zuversichtlich in meine Berechnungen und Analysen.", + "2": "Ich sammle so viel Erfahrung wie möglich, weil ich eines Tages ein Arenaleiter sein möchte." + }, + "victory": { + "1": "Ohhhh… Berechnungen und Analysen sind kein Gegner für den Zufall…", + "2": "Auch schwierige, anstrengende Erfahrungen haben ihren Zweck, denke ich." + } + }, + "artist": { + "encounter": { + "1": "Früher war ich beliebt, aber jetzt bin ich völlig veraltet." + }, + "victory": { + "1": "Mit der Zeit ändern sich auch die Werte. Das habe ich zu spät erkannt." + } + }, + "guitarist": { + "encounter": { + "1": "Mach dich bereit, den Rhythmus der Niederlage zu spüren, während ich meinen Weg zum Sieg spiele!" + }, + "victory": { + "1": "Für den Moment zum Schweigen gebracht, aber meine Melodie der Widerstandsfähigkeit wird weiterspielen." + } + }, + "worker": { + "encounter": { + "1": "Es stört mich, dass die Leute mich immer missverstehen. Ich bin garnicht so grob wie alle denken." + }, + "victory": { + "1": "Ich will wirklich nicht, dass meine Haut verbrennt, also möchte ich im Schatten arbeiten." + } + }, + "worker_female": { + "encounter": { + "1": "Es stört mich, dass die Leute mich immer missverstehen. Ich bin garnicht so grob wie alle denken." + }, + "victory": { + "1": "Ich will wirklich nicht, dass meine Haut verbrennt, also möchte ich im Schatten arbeiten." + }, + "defeat": { + "1": "Mein Körper und mein Geist sind nicht immer unbedingt synchron." + } + }, + "worker_double": { + "encounter": { + "1": "Ich zeige dir, dass wir dich brechen können. Wir haben auf dem Feld trainiert!" + }, + "victory": { + "1": "Wie seltsam… Wie konnte das passieren… Ich hätte nicht ausgemuskelt werden sollen." + } + }, + "hex_maniac": { + "encounter": { + "1": "Ich höre normalerweise nur klassische Musik, aber wenn ich verliere,\n$werde ich ein bisschen New Age ausprobieren!", + "2": "Ich werde mit jeder Träne stärker, die ich weine." + }, + "victory": { + "1": "Ist das der Beginn des Zeitalters des Wassermanns? Ich bin bereit für die Veränderung.", + "2": "Jetzt kann ich noch stärker werden. Ich wachse mit jedem Groll." + }, + "defeat": { + "1": "New Age bezieht sich einfach auf Komponisten der klassischen Musik des 20. Jahrhunderts, richtig?", + "2": "Lass dich nicht von Traurigkeit oder Frustration aufhalten.\n$Du kannst deine Groll nutzen, um dich zu motivieren." + } + }, + "psychic": { + "encounter": { + "1": "Hallo! Konzentrier dich!" + }, + "victory": { + "1": "Eeeeek!" + } + }, + "officer": { + "encounter": { + "1": "Bereite dich vor, denn die Gerechtigkeit wird gleich vollstreckt!", + "2": "Bereit, das Gesetz zu verteidigen und die Gerechtigkeit auf dem Schlachtfeld zu wahren!" + }, + "victory": { + "1": "Die Gerechtigkeit auf meinen Schultern fühlt sich schwerer an denn je…", + "2": "Die Schatten der Niederlage schweben über dem Revier." + } + }, + "beauty": { + "encounter": { + "1": "Mein letzter Kampf überhaupt… So möchte ich, dass wir diesen Kampf sehen…" + }, + "victory": { + "1": "Es war schön… Lass uns irgendwann wieder einen letzten Kampf haben…" + } + }, + "baker": { + "encounter": { + "1": "Hoffe, du bist bereit, die Niederlage zu schmecken!" + }, + "victory": { + "1": "Ich werde ein Comeback backen." + } + }, + "biker": { + "encounter": { + "1": "Zeit, aufzudrehen und dich im Staub zurückzulassen!" + }, + "victory": { + "1": "Ich werde für das nächste Rennen tunen." + } + }, + "firebreather": { + "encounter": { + "1": "Meine Flammen werden dich verschlingen!", + "2": "Meine Seele hat Feuer gefangen. Ich werde dir zeigen, wie heiß sie brennt!", + "3": "Komm näher und sieh dir meine Flammen an!" + }, + "victory": { + "1": "Verbrannt bis zur Asche...", + "2": "Yow! Das ist heiß!", + "3": "Auuu! Ich habe mir die Nasenspitze verbrannt!" + } + }, + "sailor": { + "encounter": { + "1": "Matrose, du gehst über Bord, wenn du verlierst!", + "2": "Komm schon! Mein Stolz als Seemann steht auf dem Spiel!", + "3": "Ahoj! Bist du seekrank?" + }, + "victory": { + "1": "Argh! Von einem Kind besiegt!", + "2": "Dein Geist hat mich versenkt!", + "3": "Ich glaube, ich bin der der seekrank ist..." + } + }, + "archer": { + "encounter": { + "1": "Bevor du weitergehst, lass uns sehen, wie du dich gegen uns, Team Rocket, schlägst!", + "2": "Ich habe Berichte erhalten, dass deine Fähigkeiten nicht unbedeutend sind.\n$Mal sehen, ob sie wahr sind.", + "3": "Ich bin Atlas, ein Vorstand von Team Rocket.\n$Und ich mache es den Feinden unserer Organisation nicht leicht." + }, + "victory": { + "1": "Was für ein Fehler!", + "2": "Mit meinen aktuellen Fähigkeiten war ich der Aufgabe doch nicht gewachsen.", + "3": "V-verzeih mir, Giovanni... Dass ich von einem einfachen Trainer besiegt wurde..." + } + }, + "ariana": { + "encounter": { + "1": "Halt! Wir können niemanden herumlaufen lassen. \n$Es ist schädlich für den Stolz von Team Rocket, verstehst du.", + "2": "Ich weiß nicht und es ist mir egal, ob das, was ich tue, richtig oder falsch ist...\n$Ich vertraue einfach auf Giovanni und tue, was mir gesagt wird.", + "3": "Dein Trip endet hier. Ich werde dich erledigen!" + }, + "victory": { + "1": "Tch, du bist wirklich stark. Es ist schade. \n$Wenn du Team Rocket beitreten würdest, könntest du ein Vorstand werden.", + "2": "Ich... ich bin zerstört...", + "3": "Aaaieeeee! Das kann nicht passieren! Ich habe hart gekämpft, aber trotzdem verloren..." + } + }, + "proton": { + "encounter": { + "1": "Was willst du? Wenn du unsere Arbeit unterbrichst, erwarte keine Gnade!", + "2": "Was haben wir hier? Ich werde oft als der gruseligste und grausamste Typ bei Team Rocket bezeichnet…\n$Ich rate dir dringend, dich nicht in unsere Geschäfte einzumischen!", + "3": "Ich bin Proton, ein Admin von Team Rocket. Ich bin hier, um deinem Einmischen ein Ende zu setzen!" + }, + "victory": { + "1": "Die Festung ist gefallen! Alle Mann zurückziehen!", + "2": "Du hast diesmal gewonnen… Aber alles, was du getan hast, war, den Zorn von Team Rocket zu vergrößern…", + "3": "Ich bin besiegt… Aber ich werde das nicht vergessen!" + } + }, + "petrel": { + "encounter": { + "1": "Muhahaha, wir haben auf dich gewartet. Ich? Du weißt nicht, wer ich bin? Ich bin Giovanni.\n$Der majestätische Giovanni höchstpersönlich! Wahahaha!\n$…Huh? Ich klinge überhaupt nicht wie Giovanni?\n$Ich sehe nicht einmal aus wie Giovanni?\n$Wie kommt das? Ich habe so hart daran gearbeitet, ihn nachzuahmen!", + "2": "Ich bin Lambda, ein Admin von Team Rocket. Ich werde nicht zulassen, dass du unsere Pläne störst!", + "3": "Rocket Vorstand Lambda wird sich um diesen Eindringling kümmern!" + }, + "victory": { + "1": "OK, OK. Ich sage dir, wo er ist.", + "2": "Ich… Ich konnte nichts tun… Giovanni, bitte vergib mir…", + "3": "Nein, ich kann das nicht auf mich sitzen lassen. Ich muss die anderen informieren…" + } + }, + "tabitha": { + "encounter": { + "1": "Hehehe! Du bist also bis hierher gekommen! Aber du bist zu spät!", + "2": "Hehehe... Schon hier, oder? Wir haben dich unterschätzt! Aber das war's! \n$Ich bin eine Klasse über den Rüpeln, die du bisher gesehen hast. Ich halte dich nicht hin.\n$Ich werde dich zermalmen!", + "3": "Ich werde dir eine kleine Kostprobe des Schmerzes geben! Ergebe dich!" + }, + "victory": { + "1": "Hehehe! Du hast mich vielleicht besiegt, aber du hast keine Chance gegen den Boss!\n$Wenn du jetzt aufgibst, musst du dich keiner ordentlichen Tracht Prügel stellen!", + "2": "Hehehe... Also habe ich auch verloren...", + "3": "Ahya! Wie konnte das passieren? Ein Vorstand wie ich von einem zufälligen Trainer besiegt..." + } + }, + "courtney": { + "encounter": { + "1": "Stellt euch...Mir NICHT...IN DEN WEEEG...!!", + "2": "... Nun dann... Auslöschen...", + "3": "...?! Du... Hm... ♪ Das trifft sich ausgezeichnet... ♪\n$Dann hole ich mir eben zuerst deine Pokémon... Her damit..." + }, + "victory": { + "1": "... ...Ändere... die Welt.", + "2": "Wie erwartet. Unerwartet. Du. Ziel erfasst... abgeschlossen.\n$Beginne... Experiment. Du. Für immer. Aha... ♪", + "3": "...Schon wieder? Das war unerwartet. ...Ich wusste es. Du... bist interessant! ...Haha. ♪" + } + }, + "shelly": { + "encounter": { + "1": "Ahahahaha! Du wirst dich in die Angelegenheiten von Team Aqua einmischen?\n$Du bist entweder absolut furchtlos, einfach unwissend oder beides!\n$Du bist so süß, dass es ekelhaft ist! Ich werde dich erledigen.", + "2": "Was ist das? Wer ist dieser verwöhnte Gör?", + "3": "Beruhige dich. Sei geduldig. Ich werde dich gleich zermalmen." + }, + "victory": { + "1": "Ahahahaha! Wir wurden unerwartet gestört! Uns bleiben keine Optionen.\n$Wir müssen uns zurückziehen. Aber das ist nicht das letzte Mal, dass du Team Aqua siehst!\n$Wir haben andere Pläne! Vergiss das nicht!", + "2": "Ahhh?! War ich zu nachsichtig mit dir?!", + "3": "Uh. Willst du mir sagen, dass du während des Kampfes noch besser geworden bist?\n$Du bist ein Gör mit einer glänzenden Zukunft…\n$Meine Pokémon und ich haben keine Kraft mehr zu kämpfen…\n$Geh weiter… Geh und werde von Adrian zerstört." + } + }, + "matt": { + "encounter": { + "1": "Hoohahaha! Was, hast du eine Schraube locker oder so?\n$Sieh dich an, kleiner Makuhita-ähnlicher Trainer!", + "2": "Oho! Du! Du bist das lustige Kind!", + "3": "Was machst du hier? Bist du uns gefolgt?" + }, + "victory": { + "1": "Bwaarharharharhar!! Ich hab zwar verloren, aber das hat Spaß gemacht!", + "2": "Ich kann es fühlen! Ich kann es spüren, das ist klar! Die Stärke, die von dir ausgeht!\n$Mehr! Ich will noch mehr! Aber es sieht so aus, als hätten wir keine Zeit mehr...", + "3": "Das war Spaß! Ich wusste, dass du mir eine gute Zeit bieten würdest!\n$Ich freue mich darauf, dich eines Tages wieder zu treffen!" + } + }, + "mars": { + "encounter": { + "1": "Ich bin Mars, eine der obersten Commander von Team Galaktik.", + "2": "Die Vision von Team Galaktik für die Zukunft ist unbeirrt. Opposition wird gnadenlos zerschlagen!", + "3": "Fühlst du dich nervös? Das solltest du!" + }, + "victory": { + "1": "Das kann nicht passieren! Wie habe ich verloren?!", + "2": "Du hast etwas Können, das muss ich zugeben.", + "3": "Besiegt... Das war ein teurer Fehler." + } + }, + "jupiter": { + "encounter": { + "1": "Jupiter, Commander von Team Galaktik, zu Diensten.", + "2": "Widerstand ist zwecklos. Team Galaktik wird siegen!", + "3": "Du zitterst... Schon Angst?" + }, + "victory": { + "1": "Unmöglich... Ich habe verloren?!", + "2": "Beeindruckend, du hast Mut!", + "3": "So zu verlieren... Wie peinlich." + } + }, + "saturn": { + "encounter": { + "1": "Ich bin Saturn, Commander von Team Galaktik.", + "2": "Unsere Mission ist absolut. Jeder Widerstand wird vernichtet!", + "3": "Ist das Angst, die ich in deinen Augen sehe?" + }, + "victory": { + "1": "Unmöglich... Von dir besiegt?!", + "2": "Du hast dich als würdiger Gegner erwiesen.", + "3": "Besiegt in der Niederlage... Das ist inakzeptabel." + } + }, + "zinzolin": { + "encounter": { + "1": "Du könntest eine Bedrohung für Team Plasma werden, also werden wir dich hier und jetzt eliminieren!", + "2": "Oh, zum Heulen... Ich hatte nicht erwartet, in dieser eisigen Kälte kämpfen zu müssen!", + "3": "Du bist ein beeindruckender Trainer, dass du es so weit geschafft hast. Aber hier endet es." + }, + "victory": { + "1": "G-Cis... Ich habe versagt...", + "2": "Es ist bitterkalt. Ich zittere. Ich leide. Doch ich stehe immer noch siegreich da.", + "3": "Hm. Du bist ein klügerer Trainer, als ich erwartet habe, aber nicht klug genug." + } + }, + "rood": { + "encounter": { + "1": "Du bist eine Bedrohung für Team Plasma. Wir können dich hier und jetzt nicht laufen lassen!", + "2": "Oh, dieser eisige Wind... Ich hätte nie gedacht, dass ich hier kämpfen müsste!", + "3": "Du bist ein bemerkenswerter Trainer, dass du es bis hierher geschafft hast. Aber hier wird es enden." + }, + "victory": { + "1": "G-Cis... Ich habe meine Mission nicht erfüllt...", + "2": "Die Kälte ist durchdringend. Ich zittere. Ich leide. Doch ich habe gesiegt.", + "3": "Hm. Du bist ein talentierter Trainer, aber leider nicht talentiert genug." + } + }, + "xerosic": { + "encounter": { + "1": "Ah ha ha! Es wäre mir ein Vergnügen. Komm schon, kleiner Trainer! Zeig mir, was du drauf hast!", + "2": "Hm... Du bist mächtiger, als du aussiehst. Ich frage mich, wie viel Energie in dir steckt.", + "3": "Ich habe auf dich gewartet! Ich muss ein wenig Forschung an dir betreiben! Komm, lass uns beginnen!" + }, + "victory": { + "1": "Ah, du bist ziemlich stark. Oh ja—sehr stark, in der Tat.", + "2": "Ding-ding-ding! Du hast es geschafft! Dem Sieger gebührt die Beute!", + "3": "Wunderbar! Erstaunlich! Du hast enorme Fähigkeiten und Mut!" + } + }, + "bryony": { + "encounter": { + "1": "Ich bin Begonia, und es wäre mir ein Vergnügen, gegen dich zu kämpfen. Zeig mir, was du drauf hast.", + "2": "Beeindruckend... Du bist mächtiger, als du aussiehst. Zeig mir das wahre Ausmaß deiner Energie.", + "3": "Ich habe deine Ankunft erwartet. Es ist Zeit für einen kleinen Test. Sollen wir beginnen?" + }, + "victory": { + "1": "Du bist ziemlich stark. Oh ja—sehr stark, in der Tat.", + "2": "Ding-ding-ding! Du hast dich gut geschlagen. Der Sieg gehört dir.", + "3": "Wunderbar! Bemerkenswert! Deine Fähigkeiten und dein Mut sind lobenswert." + } + }, + "rocket_grunt": { + "encounter": { + "1": "Jetzt gibt es Ärger!…\n$und es kommt noch härter!\n$Wir wollen über die Erde regieren…\n$und naja du kennst den Rest…!", + "2": "Wir führen gerade eine große Operation durch. Hast du vor uns zu stören?", + "3": "Gib uns deine Pokémon, oder stelle dich dem Zorn von Team Rocket!", + "4": "Team Rocket wird seinen Plan zur Vollendung bringen, Aus dem Weg!", + "5": "Los, gib uns deine Pokémon. Wir brauchen sie für unseren Plan!" + }, + "victory": { + "1": "Das war mal wieder ein Schuss in den Ofen!", + "2": "Dem Boss wird das aber nicht gefallen!", + "3": "Ich habe es vermasselt!", + "4": "Meine Kollegen werden das nicht tolerieren!", + "5": "Team Rocket wird wiederkehren! Das sage ich Jessie und James!" + } + }, + "magma_grunt": { + "encounter": { + "1": "Keiner, der sich Team Magma in den Weg stellt, bekommt Gnade, nicht einmal Kinder!", + "2": "Störe besser nicht unsere Pläne! Wir formen die Welt nach unseren Vorstellungen!", + "3": "Du stehst uns im Weg! Team Magma hat keine Zeit für Störenfriede wie dich!", + "4": "Bereite dich auf die Hölle vor, denn es wird bald sehr heiß!", + "5": "Wir werden die Macht des Vulkans entfesseln! Es wird gewaltig sein! Mach dich bereit!" + }, + "victory": { + "1": "Wie kann das sein? Ich bin Teil des mächtigen Team Magma! Wir streben nach der Verbesserung der Welt...", + "2": "Unglaublich, dass ich verloren habe! Mit meinen mächtigen Pokémon.", + "3": "Das kann nicht sein! Ich hab doch viel mehr Erfahrung als du!", + "4": "Verdammt... Ich hätte sofort in unser Versteck fliehen sollen...", + "5": "Du hast mich besiegt... Der Boss wird mich dafür zur Rechenschaft ziehen." + } + }, + "aqua_grunt": { + "encounter": { + "1": "Du willst dich also mit Team Aqua anlegen? Du traust dich ja was… Dich werfe ich über Bord!", + "2": "Du hast ganz schön Mut, dich mit Team Aqua anzulegen!", + "3": "Ich hoffe du hast einen Regenschirm dabei. Hier wird es jetzt nass!", + "4": "Wir, Team Aqua, existieren zum Wohle aller!", + "5": "Bereite dich darauf vor, von den Fluten meiner Pokémon weggespült zu werden!" + }, + "victory": { + "1": "Vielleicht sollte ich wohl lieber selber über die Planke gehen…", + "2": "Arrgh, ich habe nicht damit gerechnet, von einer Landratte gestört zu werden!", + "3": "Ich habe verloren?! Ich schätze, ich muss jetzt zurück zum Versteck schwimmen...", + "4": "Oh Mann, was für eine Katastrophe... Der Boss wird wütend sein...", + "5": "Du hast mich besiegt... Meinst du, der Boss wird mich dafür kielholen lassen?" + } + }, + "galactic_grunt": { + "encounter": { + "1": "Team Galaktik wird die Welt in eine bessere verwandeln! Und du wirst uns nicht aufhalten!", + "2": "Erlebe die Macht unserer Technologie und die Zukunft, die wir uns vorstellen!", + "3": "Im Namen von Team Galaktik werde ich jeden beseitigen, der uns im Weg steht!", + "4": "Mach dich bereit zu verlieren!", + "5": "Hoffentlich bist du bereit für eine kosmische Niederlage!" + }, + "victory": { + "1": "Zyrus wird uns für diese Niederlage bestrafen…", + "2": "Dieser Rückschlag bedeutet nichts in Hinsicht unseres großen Plans.", + "3": "Unsere Pläne sind größer als diese Niederlage.", + "4": "Wie ist das möglich?!", + "5": "Notiz an mich selbst: Pokémon-Kämpfe üben, so bald wie möglich." + } + }, + "plasma_grunt": { + "encounter": { + "1": "Pokémon sollten frei sein! Team Plasma wird sie befreien!", + "2": "Wenn ich gegen dich gewinne, lass deine Pokémon frei!", + "3": "Wenn du Team Plasma im Weg stehst, werde ich mich um dich kümmern!", + "4": "Team Plasma wird Pokémon von egoistischen Menschen wie dir befreien!", + "5": "Lass dich von unserem Aussehen nicht täuschen. Unsere Kampffähigkeiten sind überragend!" + }, + "victory": { + "1": "Wie konnte ich verlieren? Ich dachte, ich würde die Welt retten...", + "2": "Wie konnte ich nur verlieren...", + "3": "...Dieses Pokémon ist zu schwach, ich werde stärkere beschaffen müssen!", + "4": "Große Pläne stoßen immer auf Hindernisse.", + "5": "Das ist ein schwerer Rückschlag für Team Plasma..." + } + }, + "flare_grunt": { + "encounter": { + "1": "Deine Pokémon haben keine Chance gegen die Überlegenheit von Team Flare.", + "2": "Mach dich bereit, denn gleich wird es hier lichterloh brennen!", + "3": "Team Flare wird die Welt von allen Makeln befreien!", + "4": "Bereite dich auf die unvergleichliche Macht von Team Flare vor!", + "5": "Unsere Mission steht über allem, sogar über der Mode!" + }, + "victory": { + "1": "Diese Niederlage wirft einen Schatten auf meine Zukunft.", + "2": "Es scheint, dass ich meine Strategien überdenken muss. Zurück ans Reißbrett.", + "3": "Unglaublich?! Ich habe verloren?!", + "4": "Selbst in der Niederlage bleibt Team Flare unübertroffen in seiner Eleganz.", + "5": "Du hast mich besiegt, aber Team Flare wird immer in Glanz und Stil erstrahlen." + } + }, + "aether_grunt": { + "encounter": { + "1": "Ich werde dich mit allem, was ich habe, bekämpfen. Ich werde dich auslöschen!", + "2": "Mir ist egal, ob du ein simpler Trainer bist oder nicht.\n$Ich werde dich hochkant rauswerfen, wenn du uns bedrohst!", + "3": "Mir wurde gesagt, Trainer abzuweisen, egal wer sie sind!", + "4": "Ich zeige dir die Macht des Æther-Paradies", + "5": "Jetzt da du die Wahre Natur des Æther-Paradies kennst, müssen wir dich leider beseitigen!" + }, + "victory": { + "1": "Hmph! Du scheinst ziemlich geschickt zu sein.", + "2": "Was hat das zu bedeuten? Was hat das zu bedeuten!", + "3": "Hey, du bist so stark, dass ich dich nicht abweisen kann!", + "4": "Hmm... Es scheint, als hätte ich verloren.", + "5": "Ich hätte das Blitzdings benutzen sollen..." + } + }, + "faba": { + "encounter": { + "1": "Ich bin Regionalleiter Fabian und ich werde dir zeigen, wie hart die Welt sein kann!", + "2": "Die letzte Verteidigungslinie des Æther-Paradieses kämpft gegen einen simplen Trainer?", + "3": "Ich Fabian, bin der Regionalleiter der Æther Foundation.\n$Der einzige auf der Welt, ich bin unersetzlich." + }, + "victory": { + "1": "Aiyee!", + "2": "W-w-wie kann das sein?! Wie konnte dieser Trainer...", + "3": "Das ist der Grund... warum ich andere Menschen nicht ausstehen kann." + } + }, + "skull_grunt": { + "encounter": { + "1": "Wir sind nicht böse, wir sind einfach nur nicht nett!", + "2": "Willst du Stress, oder was? Das ist unsere Art, Hallo zu sagen! Tschüss, du Punk!", + "3": "Wir sind nur ein paar Typen und Mädels mit großem Interesse an den Pokémon anderer Leute!", + "4": "Wieso machst du einen auf hart, wenn wir schon hart wie Knochen sind, Homie?", + "5": "Yo, platz hier nich’ rein, ♪ wie’n wildes Kleinstein! ♪ Wenn du meinst, dass Team Skull ♪\n$an nix denkt als Krawall, ♪ hast du leider ’nen Knall, ♪ denn das is’ nich’ der Fall! ♪\n$Wir woll’n hier nur gammeln ♪ und gechillt Staub ansammeln! ♪" + }, + "victory": { + "1": "Wie jetzt? Schon vorbei?", + "2": "Woah, lass uns lieber die Kurve kratzen, yo! Kein Bock, hier meinen Schädel zu riskieren...", + "3": "Wir brauchen deine schwachen Pokémon eh nicht!", + "4": "Was? Deine Stärke spür ich bis in die Knochen...", + "5": "Mein Homie und ich sind also weniger wert als Pokémon? Willste uns dissen, oder was?" + } + }, + "plumeria": { + "encounter": { + "1": "..Hmph. Du siehst nicht so aus, als wärst du etwas Besonderes.", + "2": "Die blöden Rüpel brauchen viel zu lange, um mit euch gewöhnlichen Trainern fertig zu werden...", + "3": "Lege dich mit irgendjemandem in Team Skull an, und ich zeige dir, wie ernst ich werden kann." + }, + "victory": { + "1": "Du bist ziemlich stark. Das muss ich zugeben.", + "2": "Jetzt versteh ich, warum meine Rüpel so viel Zeit damit verschwenden...", + "3": "Ich denke, ich muss diese Niederlage einfach hinnehmen." + } + }, + "macro_grunt": { + "encounter": { + "1": "Achtung hier ist Endstation für dich!", + "2": "Du bist ein Trainer, oder? Wir von MC Wertpapiere wissen so etwas.\n$Ich fürchte, das gibt dir trotzdem nicht das Recht, sich in unsere Arbeit einzumischen.", + "3": "Ich bin von MC Versicherungen! Hast du eine Lebensversicherung?" + }, + "victory": { + "1": "Ich habe keine andere Wahl, als respektvoll zurückzutreten.", + "2": "Mein Erspartes aufzugeben bringt mich in die roten Zahlen...", + "3": "Okay zurück an die Arbeit. Versicherungen verkauft sich nicht von alleine." + } + }, + "oleana": { + "encounter": { + "1": "Ich werde keine Störung von Präsident Roses Plänen zulassen!", + "2": "Du hast es also durch die Mitarbeiter der Tochterunternehmen geschafft,\n$die ich beauftragt habe, um dich aufzuhalten. Ich hätte nichts anderes erwartet.", + "3": "Für den Präsidenten! Ich werde nicht verlieren! \n$Mach dich bereit mit Macro Cosmos Airlines nach Hause zu fliegen!" + }, + "victory": { + "1": "Ich habe es nicht geschafft... Olivia... du bist wirklich eine hoffnungslose Frau.", + "2": "Arghhh! Das ist unentschuldbar... Was habe ich mir dabei gedacht...\n$Jeder Trainer, der es so weit geschafft hat, muss ein harter Brocken sein...", + "3": "Ich bin eine müde Olivia... Ob es Macro Cosmos Betten gibt?" + } + }, + "rocket_boss_giovanni_1": { + "encounter": { + "1": "Ich bin beeindruckt, du hast es bis hierher geschafft!\n$Ich bin Giovanni, der Anführer von Team Rocket!\n$Wir regieren den Untergrund von Kanto!\n$Und wir lassen sicherlich nicht zu, dass ein Kind uns aufhält!" + }, + "victory": { + "1": "Ich ziehe mich zurück, aber ich werde zurückkehren! Team Rocket wird niemals besiegt werden!" + }, + "defeat": { + "1": "Merke dir meine Worte. Nicht in der Lage zu sein,\n$deine eigene Stärke zu messen, zeigt, dass du immer noch ein Kind bist." + } + }, + "rocket_boss_giovanni_2": { + "encounter": { + "1": "Du schon wieder… Wie hast du mich gefunden? Team Rocket wird dich endlich aus der Welt schaffen!" + }, + "victory": { + "1": "Wie ist das möglich...? Der kostbare Traum von Team Rocket ist nicht mehr als eine Illusion geworden..." + }, + "defeat": { + "1": "Team Rocket wird niemals besiegt werden! Ich werde zurückkehren!" + } + }, + "magma_boss_maxie_1": { + "encounter": { + "1": "Die Welt ist nicht perfekt. Ich werde sie verbessern, indem ich sie neu erschaffe!\n$Wir brauchen mehr Landmassen um zu leben! Team Magma wird dieses Ziel mit aller Macht erreichen!" + }, + "victory": { + "1": "Ugh! Das entspricht nicht meinen Berechnungen! Wie konnte ich verlieren? Wir sehen uns wieder!" + }, + "defeat": { + "1": "Team Magma wird weiterhin die Welt verbessern!" + } + }, + "magma_boss_maxie_2": { + "encounter": { + "1": "Du bist das letzte Hindernis, das zwischen mir und meinen Zielen steht.\n$Mach dich bereit durch die Macht von Team Magma besiegt zu werden!" + }, + "victory": { + "1": "Das... Das kann nicht sein..." + }, + "defeat": { + "1": "Und jetzt werde ich diesen Planeten terraformen, um ihn ideal für die Menschheit zu machen." + } + }, + "aqua_boss_archie_1": { + "encounter": { + "1": "Ich bin Adrian, der Anführer von Team Aqua! Wir werden die Welt mit Wasser überfluten!" + }, + "victory": { + "1": "Lass uns mal wieder treffen. Ich werde mir sicher sein, dass ich dieses Gesicht wiedererkenne." + }, + "defeat": { + "1": "Brilliant! Mein Team wird jetzt nicht zurückhalten!" + } + }, + "aqua_boss_archie_2": { + "encounter": { + "1": "Ich habe lange auf diesen Tag gewartet. Das ist die wahre Macht von Team Aqua!" + }, + "victory": { + "1": "So habe ich mir das nicht vorgestellt..." + }, + "defeat": { + "1": "Ich werde alles in dieser Welt in seinen ursprünglichen, reinen Zustand zurückversetzen!!" + } + }, + "galactic_boss_cyrus_1": { + "encounter": { + "1": "Du wurdest von leerer Gefühlsduselei hierher getrieben.\n$Ich werde dich bereuen lassen, auf dein Herz gehört zu haben!" + }, + "victory": { + "1": "Interessant. Und ziemlich eigenartig." + }, + "defeat": { + "1": "Ich werde meine neue Welt erschaffen..." + } + }, + "galactic_boss_cyrus_2": { + "encounter": { + "1": "So sehen wir uns wieder. Es scheint, als wären unsere Schicksale miteinander verflochten.\n$Aber hier und jetzt werde ich diese Verbindung brechen!" + }, + "victory": { + "1": "Wie? Wie? WIE?!" + }, + "defeat": { + "1": "Bis bald." + } + }, + "plasma_boss_ghetsis_1": { + "encounter": { + "1": "Ich werde nicht zulassen, dass mich jemand aufhält! Egal wer es auch sein mag!" + }, + "victory": { + "1": "Wie kann das sein? Ich bin der Schöpfer von Team Plasma! Ich bin perfekt!" + }, + "defeat": { + "1": "Ich bin der perfekte Herrscher einer perfekten neuen Welt! Mwa ha ha!" + } + }, + "plasma_boss_ghetsis_2": { + "encounter": { + "1": "Komm schon! Ich will dein Gesicht sehen, in dem Moment, in dem du alle Hoffnung verlierst!" + }, + "victory": { + "1": "Meine Berechnungen... Nein! Meine sorgfältigen Pläne! Die Welt sollte mir gehören!" + }, + "defeat": { + "1": "Kyurem! Verwende Absorptionsfusion!" + } + }, + "flare_boss_lysandre_1": { + "encounter": { + "1": "DU willst mich aufhalten? Dann zeig mir deine Stärke in einem Kampf!" + }, + "victory": { + "1": "Du bist hier, um mich aufzuhalten. Aber ich bitte dich zu warten.\n$Ich bin so kurz davor, meine Vision zu verwirklichen." + }, + "defeat": { + "1": "Pokémon... Sollten nicht mehr existieren." + } + }, + "flare_boss_lysandre_2": { + "encounter": { + "1": "Die Zukunft, die du willst, oder die Zukunft, die ich will...\n$Lass uns sehen, welche mehr zu existieren verdient, sollen wir?" + }, + "victory": { + "1": "Die Zukunft, die ich erschaffen wollte... Es ist vorbei..." + }, + "defeat": { + "1": "Narren ohne Vision werden weiterhin diese wunderschöne Welt verunreinigen." + } + }, + "aether_boss_lusamine_1": { + "encounter": { + "1": "Du wirst mein süßes Biest erschrecken! Wie kannst du nur? Ultra-Bestien sind so niedlich!\n$Es sieht so aus, als müsste ich dich zuerst zum Schweigen bringen." + }, + "victory": { + "1": "Wie kann eine Person nur so grausam sein?!" + }, + "defeat": { + "1": "Und jetzt, mein süßes Biest, komm zu Mama!" + } + }, + "aether_boss_lusamine_2": { + "encounter": { + "1": "Wieso musst du mich weiterhin belästigen?! Ich habe die Nase voll von dir.\n$Du machst mich krank! Genug mit diesem nutzlosen Gerede... \n$Mit der Kraft von Anego, von uns als UB-01 Schmarotzer klassifiziert,\n$werde ich dir zeigen, wie falsch du warst, hierher zu kommen!" + }, + "victory": { + "1": "Aaauuuggghhhhhhhhh!!!" + }, + "defeat": { + "1": "Alles, was ich will, ist mein kostbares Biest! Der Rest von euch ist mir egal!" + } + }, + "skull_boss_guzma_1": { + "encounter": { + "1": "Kein Erbarmen! Keine Gnade! Ich bin dein schlimmster Alptraum! \n$Oh yeah, ich bin der große, böse Bromley!" + }, + "victory": { + "1": "Irgendwann mach ich dich platt! Ich hab noch ein Ass im Ärmel. Du wirst schon sehen." + }, + "defeat": { + "1": "Du hast den langen Weg hierher DAFÜR aufgenommen? Pah!" + } + }, + "skull_boss_guzma_2": { + "encounter": { + "1": "Mir ist egal, wer du bist. Ich mach dich platt!! Das schreibt mir mein Ego vor. Ich bin Bromley!" + }, + "victory": { + "1": "Bromley!!! Was ist falsch mit dir?!" + }, + "defeat": { + "1": "Ihr seid wirklich selten dämlich." + } + }, + "macro_boss_rose_1": { + "encounter": { + "1": "Mein Name ist Rose. Ich bin der Präsident der Galar Pokémon-Liga und Geschäftsführer von Macro Cosmos\n$Ich habe eine Aufgabe, eine Berufung! Ich muss die Galar-Region mit unbegrenzter Energie versorgen,\n$damit sie sich bis in alle Ewigkeit in Frieden fortentwickeln kann!" + }, + "victory": { + "1": "Du versteht es einfach nicht...So können wir die Geschichte nicht verändern!" + }, + "defeat": { + "1": "Ohne deine Einmischung kann ich jetzt endlich weiterarbeiten!" + } + }, + "macro_boss_rose_2": { + "encounter": { + "1": "Ich bin fest entschlossen, das Energieproblem in der Galar-Region\n$und natürlich auf der ganzen Welt zu lösen.\n$Meine Erfahrungen und Erfolge, die Macro Cosmos zu einem Erfolg gemacht haben,\n$sind der Beweis, dass meine Methoden funktionieren.\n$Ich habe nicht vor, meine Meinung zu ändern, selbst wenn ich verliere." + }, + "victory": { + "1": "Ich hatte vergessen, wie großartig Pokémon-Kämpfe sind! Es ist so lange her, dass ich gekämpft habe...\n$Das war wirklich befriedigend, ich akzeptiere die Niederlage für diesen Kampf." + }, + "defeat": { + "1": "Ich nehme an, es muss den Anschein haben, dass ich etwas Schreckliches tue.\n$Ich erwarte nicht, dass du es verstehst. Aber ich muss der Galar-Region grenzenlose Energie\n$bereitstellen, um ewigen Wohlstand zu gewährleisten." + } + }, + "brock": { + "encounter": { + "1": "Meine Expertise in Bezug auf Gesteins-Pokémon wird dich besiegen! Komm schon!", + "2": "Meine felsenfeste Entschlossenheit wird dich überwältigen!", + "3": "Ich bin ein harter Fels, der nicht so leicht zu brechen ist!" + }, + "victory": { + "1": "Die Stärke deiner Pokémon hat meine steinharte Verteidigung überwunden!", + "2": "Die Welt ist riesig! Ich bin froh, dass ich die Chance hatte, gegen dich zu kämpfen.", + "3": "Perhaps I should go back to pursuing my dream as a Pokémon Breeder…" + }, + "defeat": { + "1": "Der beste Angriff ist eine gute Verteidigung!\nDas ist meine Art, Dinge zu tun!", + "2": "Komm und studiere Felsen mit mir, um besser zu lernen wie man gegen sie kämpft!", + "3": "Meine Reisen durch die Regionen zahlen sich aus!" + } + }, + "misty": { + "encounter": { + "1": "Meine Taktik ist ein Frontalangriff mit Wasser-Pokémon!", + "2": "Hiya! Ich zeige dir die Stärke meiner Wasser-Pokémon!", + "3": "Mein Traum war es, auf eine Reise zu gehen und gegen starke Trainer zu kämpfen… \n$Wirst du eine ausreichende Herausforderung sein?" + }, + "victory": { + "1": "Du bist wirklich stark… Ich gebe zu, du hast es drauf…", + "2": "Du weißt, dass du nur Glück hattest, oder?", + "3": "Wow, ich kann nicht glauben, dass du mich besiegt hast!" + }, + "defeat": { + "1": "War die mächtige Misty zu viel für dich?", + "2": "Ich hoffe, du hast die eleganten Schwimmtechniken meiner Pokémon gesehen!", + "3": "Deine Pokémon waren keine Herausforderung für meine geliebten Pokémon!" + } + }, + "lt_surge": { + "encounter": { + "1": "Meine Elektro-Pokémon haben mich im Krieg gerettet! Ich werde dir zeigen, wie!", + "2": "Du wirst um Gnade winseln, wenn ich dich geschockt habe!", + "3": "Ich werde dich genau so zappen, wie ich es mit all meinen Feinden im Kampf mache!" + }, + "victory": { + "1": "Whoa! Dein Team ist echt stark!", + "2": "Aaargh, du bist stark! Selbst meine elektrischen Tricks haben gegen dich verloren.", + "3": "Das war ein absolut schockierender Verlust!" + }, + "defeat": { + "1": "Oh ja! Wenn es um Elektro-Pokémon geht, bin ich weltweit die Nummer eins!", + "2": "Hahaha! Das war ein elektrisierender Kampf!", + "3": "Ein Pokémon-Kampf ist Krieg, und ich habe dir den Nahkampf gezeigt!" + } + }, + "erika": { + "encounter": { + "1": "Ah, das Wetter ist hier so schön…\nOh, ein Kampf? Nun gut.", + "2": "Meine Pokémon-Kampffähigkeiten stehen in Konkurrenz zu meinen Blumenarrangierfähigkeiten.", + "3": "Oh, ich hoffe, der angenehme Duft meiner Pokémon lässt mich nicht wieder einschlafen…", + "4": "Blumen in einem Garten zu sehen ist so beruhigend." + }, + "victory": { + "1": "Oh! Ich gestehe meine Niederlage ein.", + "2": "Dieser Kampf war so entspannend.", + "3": "Ah, es scheint, dass ich verloren habe…", + "4": "Na immerhin habe ich noch meine Blumen." + }, + "defeat": { + "1": "Ich hatte Angst, dass ich einschlafen würde…", + "2": "Es scheint, als hätten meine Pflanzen-Pokémon dich überwältigt.", + "3": "Dieser Kampf war eine so beruhigende Erfahrung.", + "4": "Das war alles?" + } + }, + "janine": { + "encounter": { + "1": "Ich meistere die Kunst der giftigen Angriffe. Ich werde heute mit dir trainieren!", + "2": "Vater vertraut darauf, dass ich mich behaupten kann. Ich werde ihm recht geben!", + "3": "Meine Ninja-Techniken sind nur zweitrangig zu denen meines Vaters! Kannst du mithalten?" + }, + "victory": { + "1": "Selbst jetzt brauche ich noch Training… Ich verstehe.", + "2": "Dein Kampfstil hat meinen überwältigt.", + "3": "Ich werde mich wirklich anstrengen und meine Fähigkeiten verbessern." + }, + "defeat": { + "1": "Fufufu… das Gift hat dir all deine Kraft zum Kämpfen geraubt.", + "2": "Ha! Du hattest keine Chance gegen meine überlegenen Ninja-Fähigkeiten!", + "3": "Vaters Vertrauen in mich war nicht unbegründet." + } + }, + "sabrina": { + "encounter": { + "1": "Ich habe deine Ankunft in einer Vision gesehen!", + "2": "Ich mag es nicht zu kämpfen, aber wenn du darauf bestehst, werde ich dir meine Kräfte zeigen!", + "3": "Ich spüre große Ambitionen in dir. Ich werde sehen, ob sie begründet sind." + }, + "victory": { + "1": "Deine Kraft… Sie übertrifft bei weitem das, was ich vorausgesehen habe…", + "2": "Ich habe es nicht geschafft, deine Stärke genau vorherzusagen.", + "3": "Selbst mit meinen immensen psychischen Kräften kann ich niemanden spüren, der stärker ist als du." + }, + "defeat": { + "1": "Dieser Sieg… Genau so habe ich ihn in meinen Visionen gesehen!", + "2": "Vielleicht war es jemand anderes, den ich spürte…", + "3": "Verfeinere deine Fähigkeiten, bevor du unüberlegt in den Kampf stürzt.\n$Du weißt nie, was die Zukunft bereithält, wenn du es tust…" + } + }, + "blaine": { + "encounter": { + "1": "Hah! Ich hoffe, du hast Feuerheiler mitgebracht!", + "2": "Meine feurigen Pokémon werden alle Herausforderer verbrennen!", + "3": "Mach dich bereit, mit dem Feuer zu spielen!" + }, + "victory": { + "1": "Ich habe mich bis auf die Knochen verbrannt! Nicht einmal Asche bleibt!", + "2": "Habe ich die Flammen nicht hoch genug geschürt?", + "3": "Ich bin komplett ausgebrannt… Aber das lässt meine Motivation, mich zu verbessern, noch heißer brennen!" + }, + "defeat": { + "1": "Mein wütendes Inferno kann nicht gelöscht werden!", + "2": "Meine Pokémon sind durch die Hitze dieses Sieges gestärkt worden!", + "3": "Hah! Meine Leidenschaft brennt heller als deine!" + } + }, + "giovanni": { + "encounter": { + "1": "Ich, der Anführer von Team Rocket, werde dir eine Welt voller Schmerz bereiten!", + "2": "Mein Training hier wird entscheidend sein, bevor ich mich wieder meinen alten Kollegen stelle.", + "3": "Ich denke dass du nicht auf die Ausmaße des Scheiterns vorbereitet bist, die du gleich erleben wirst!" + }, + "victory": { + "1": "WAS! Ich, verlieren?! Es gibt nichts, was ich dir sagen möchte!", + "2": "Hmm… Du wirst nie verstehen können, was ich zu erreichen versuche.", + "3": "Diese Niederlage ist nur ein kleiner Rückschlag.\nTeam Rocket wird aus der Asche auferstehen." + }, + "defeat": { + "1": "Das du nicht in der Lage bist, deine eigene Stärke einzuschätzen, zeigt, dass du noch ein Kind bist.", + "2": "Versuche nicht, dich wieder in meine Angelegenheiten einzumischen.", + "3": "Ich hoffe, du verstehst, wie dumm es war, mich herauszufordern." + } + }, + "roxanne": { + "encounter": { + "1": "Wärs du so freundlich und würdest mir zeigen, wie du kämpfst?", + "2": "Man lernt so viel, wenn man gegen viele Trainer kämpft.", + "3": "Oh, du hast mich beim Strategie entwickeln erwischt. Möchtest du kämpfen?" + }, + "victory": { + "1": "Oh, es scheint, als hätte ich verloren.", + "2": "Es scheint, als hätte ich noch so viel mehr zu lernen, wenn es um Kämpfe geht.", + "3": "Ich werde mir zu Herzen nehmen, was ich heute gelernt habe." + }, + "defeat": { + "1": "Ich habe so viele Dinge aus unserem Kampf gelernt. Ich hoffe, du auch.", + "2": "Ich freue mich darauf, wieder gegen dich zu kämpfen.\n$Ich hoffe, du wirst das, was du hier gelernt hast, anwenden.", + "3": "Ich habe gewonnen, weil ich alles gelernt habe." + } + }, + "brawly": { + "encounter": { + "1": "Oh man, ein Herausforderer!\nLass uns sehen, was du kannst!", + "2": "Du scheinst auf große Auftritte zu stehen.\nLass uns kämpfen", + "3": "Zeit, einen Sturm zu entfachen!\nLos geht's!" + }, + "victory": { + "1": "Oh wow, du hast mich überrumpelt!", + "2": "Du hast meinen Flow übernommen und mich besiegt!", + "3": "Ich fühle mich als hätte ich mich in der Granithöhle verirrt!" + }, + "defeat": { + "1": "Haha, ich surfe die große Welle! Fordere mich irgendwann wieder heraus.", + "2": "Surfe mal wieder mit mir!", + "3": "Genau wie die Gezeiten kommen und gehen, hoffe ich, dass du zurückkommst, um mich herauszufordern." + } + }, + "wattson": { + "encounter": { + "1": "Zeit, geschockt zu werden! Wahahahaha!", + "2": "Ich lass die Funken fliegen! Wahahahaha!", + "3": "Ich hoffe, du hast Para-Heiler dabei! Wahahahaha!" + }, + "victory": { + "1": "Scheint als wäre ich entladen! Wahahahaha!", + "2": "Du hast mich komplett geerdet! Wahahahaha!", + "3": "Danke für den Nervenkitzel! Wahahahaha!" + }, + "defeat": { + "1": "Lade deine Batterien wieder auf und fordere mich irgendwann wieder heraus! Wahahahaha!", + "2": "Ich hoffe du fandest unseren Kampf elektrisierend! Wahahahaha!", + "3": "Bist du nicht geschockt, dass ich gewonnen habe? Wahahahaha!" + } + }, + "flannery": { + "encounter": { + "1": "Nett dich zu kennenzulernen! Warte, nein… Ich werde dich zermalmen!", + "2": "Ich bin noch nicht lange Arenaleiterin, aber ich werde dich grillen!", + "3": "Es ist Zeit, dir die Kampftechniken zu zeigen, die mein Großvater mir beigebracht hat! Lass uns kämpfen!" + }, + "victory": { + "1": "Du erinnerst mich an meinen Großvater… Kein Wunder, dass ich verloren habe.", + "2": "Strenge ich mich zu sehr an? Ich sollte mich entspannen, ich darf mich nicht zu sehr aufregen.", + "3": "Zu verlieren wird meine Flamme nicht ersticken. Zeit, das Training wieder zu entfachen!" + }, + "defeat": { + "1": "Ich hoffe, ich habe meinen Großvater stolz gemacht… Lass uns irgendwann wieder kämpfen.", + "2": "Ich… Ich kann nicht glauben, dass ich gewonnen habe! Meine Art zu kämpfen hat funktioniert!", + "3": "Lass uns bald wieder heiße Moves austauschen!" + } + }, + "norman": { + "encounter": { + "1": "Ich bin überrascht, dass du es bis hierher geschafft hast. Lass uns kämpfen.", + "2": "Ich werde alles in meiner Macht stehende tun, um als Arenaleiter zu gewinnen. Los geht's!", + "3": "Du solltest alles geben! Lasst uns kämpfen!" + }, + "victory": { + "1": "Ich habe gegen dich verloren…? Das ist eine Überraschung.", + "2": "War der Umzug nach Hoenn die richtige Entscheidung? Ich bin mir nicht sicher.", + "3": "Ich kann es nicht fasen. Das war ein großartiger Kampf." + }, + "defeat": { + "1": "Wir haben beide unser Bestes gegeben. Ich hoffe, wir können bald wieder kämpfen.", + "2": "Du solltest versuchen, mein Kind herauszufordern. Du könntest etwas lernen!", + "3": "Danke für den tollen Kampf. Viel Glück beim nächsten Mal." + } + }, + "winona": { + "encounter": { + "1": "Ich bin durch die Lüfte geflogen und habe nach Beute gesucht… und du bist mein Ziel!", + "2": "Egal, wie unser Kampf ausgeht, meine Flug-Pokémon und ich werden mit Anmut triumphieren. Auf in den Kampf!", + "3": "Ich hoffe, du hast keine Höhenangst. Lasst uns aufsteigen!" + }, + "victory": { + "1": "Du bist der erste Trainer, den ich gesehen habe, der mehr Anmut hat als ich. Ausgezeichnet", + "2": "Meine Flug-Pokémon sind abgestürzt! Na gut.", + "3": "Auch wenn ich gefallen sein mag, meine Pokémon werden weiter fliegen!" + }, + "defeat": { + "1": "Meine Flug-Pokémon und ich werden für immer elegant tanzen!", + "2": "Ich hoffe du hast die Show genossen. Unser anmutiger Tanz ist beendet.", + "3": "Wirst du zurückkommen und unsere elegante Choreographie noch einmal sehen?" + } + }, + "tate": { + "encounter": { + "1": "Hehehe… Bist du überrascht, mich ohne meine Schwester zu sehen?", + "2": "Ich kann sehen, was du denkst… Du willst kämpfen!", + "3": "Wie kannst du jemanden besiegen der deine Gedanken lesen kann?" + }, + "victory": { + "1": "Ich kann es nicht ändern… Ich vermisse Svenja…", + "2": "Die Bande zwischen dir und deinen Pokémon ist stärker als meine.", + "3": "Zusammen mit Svenja wären wir unschlagbar gewesen. Wir können gegenseitig unsere Sätze beenden!" + }, + "defeat": { + "1": "Meine Pokémon und ich sind siegreich.", + "2": "Wenn du mich nicht besiegen kannst, wirst du auch niemals Svenja besiegen können.", + "3": "All das verdanke ich meinem strengen Training mit Svenja. Meine Pokémon und ich sind eins." + } + }, + "liza": { + "encounter": { + "1": "Hihihi… Bist du überrascht, mich ohne meinen Bruder zu sehen?", + "2": "Ich kann sehen, wonach du verlangst… Du willst kämpfen, oder?", + "3": "Wie kannst du jemanden besiegen, der eins mit seinen Pokémon ist?" + }, + "victory": { + "1": "Ich kann es nicht ändern… Ich vermisse Ben…", + "2": "Das Band zwischen dir und deinen Pokémon ist stärker als meins.", + "3": "Zusammen mit Ben wären wir unschlagbar gewesen. Wir können gegenseitig unsere Sätze beenden!" + }, + "defeat": { + "1": "Meine Pokémon und ich sind siegreich.", + "2": "Wenn du mich nicht besiegen kannst, wirst du auch niemals Ben besiegen können.", + "3": "All das verdanke ich meinem strengen Training mit Ben. Meine Pokémon und ich sind eins." + } + }, + "juan": { + "encounter": { + "1": "Jetzt ist nicht die Zeit, schüchtern zu sein. Lass uns kämpfen!", + "2": "Ahahaha, Du wirst Zeuge meiner Kunstfertigkeit mit Wasser-Pokémon!", + "3": "Ein Taifun nähert sich! Wirst du mich testen können?", + "4": "Bitte, du wirst Zeuge unserer Kunstfertigkeit.\n$Eine großartige Illusion aus Wasser, die von meinen Pokémon und mir geschaffen wurde!" + }, + "victory": { + "1": "Du bist ein Genie, das Wasilli herausfordern kann!", + "2": "Ich habe mich auf Eleganz konzentriert, während du trainiert hast.\n$Es kein Wunder, dass du gewonnen hast.", + "3": "Ahahaha! Nun gut, dieses Mal hast du gewonnen.", + "4": "Ich spüre den Glanz deines Könnens, der alles überwinden wird." + }, + "defeat": { + "1": "Meine Pokémon und ich haben eine Illusion aus Wasser geschaffen und sind siegreich hervorgegangen.", + "2": "Ahahaha, Ich habe gewonnen, und du hast verloren.", + "3": "Soll ich dir mein Outfit leihen? Es könnte dir beim Kampf helfen! Ahahaha, ich scherze!", + "4": "Ich bin der Gewinner! Das heißt, du hast verloren." + } + }, + "crasher_wake": { + "encounter": { + "1": "Aufgepasst! Wellenbrecher Marinus… ist… da!", + "2": "Brechende Wellen! Ich bin Wellenbrecher Marinus!", + "3": "Ich bin die Flutwelle der Macht, die dich wegspült!" + }, + "victory": { + "1": "Das bringt ein Grinsen in mein Gesicht! Guhahaha! Das war ein Spaß!", + "2": "Hunwah! Es ist vorbei! Wie soll ich das sagen… Ich will mehr! Ich wollte viel mehr kämpfen!", + "3": "WAAAS?!" + }, + "defeat": { + "1": "Yeeeeah! So muss das sein!", + "2": "Ich habe gewonnen, aber ich will mehr! Ich wollte viel mehr kämpfen!", + "3": "Bis bald! Ich freue mich auf den nächsten Kampf!" + } + }, + "falkner": { + "encounter": { + "1": "Ich werde dir die wahre Kraft der prächtigen Flug-Pokémon zeigen!", + "2": "Winde, bleibt bei mir!", + "3": "Vater! Ich hoffe, du siehst mir beim Kampf von oben zu!" + }, + "victory": { + "1": "Ich verstehe… Ich werde mich anmutig zurückziehen.", + "2": "Eine Niederlage ist eine Niederlage. Du bist wirklich stark.", + "3": "…Verdammt! Ich habe verloren!" + }, + "defeat": { + "1": "Vater! Ich habe mit deinen geliebten Flug-Pokémon gewonnen…", + "2": "Flug-Pokémon sind die Besten!", + "3": "Ich habe das Gefühl, dass ich meinem Vater näher komme!" + } + }, + "nessa": { + "encounter": { + "1": "Egal, welchen Plan dein raffinierter Verstand auch schmiedet,\n$mein Partner und ich werden ihn mit Sicherheit zu Fall bringen.", + "2": "Ich bin nicht hier, um zu plaudern. Ich bin hier, um zu gewinnen!", + "3": "Das ist ein kleines Geschenk von meinen Pokémon… Ich hoffe, du kannst es annehmen!" + }, + "victory": { + "1": "Du und deine Pokémon sind einfach zu stark…", + "2": "Wie…? Wie kann das sein?", + "3": "Ich wurde total weggespült!" + }, + "defeat": { + "1": "Die wütenede Welle schlägt wieder zu!", + "2": "Es ist Zeit, die Welle des Sieges zu reiten!", + "3": "Ehehe!" + } + }, + "melony": { + "encounter": { + "1": "Ich halte mich nicht zurück!", + "2": "Okay, ich denke, wir sollten anfangen.", + "3": "Ich werde dich einfrieren!" + }, + "victory": { + "1": "Du… Du bist ziemlich gut, oder?", + "2": "Wenn du Mac triffst, haue ihn für mich um, ja?", + "3": "Ich denke, du hast 'das Eis brechen' ein wenig zu wörtlich genommen…" + }, + "defeat": { + "1": "Siehst du jetzt, wie ernst Kämpfe sein können?", + "2": "Hee! Es sieht so aus, als hätte ich wieder gewonnen!", + "3": "Hältst du dich zurück?" + } + }, + "marlon": { + "encounter": { + "1": "Du siehst stark aus! Los geht's!", + "2": "Ich bin stark wie das weite Meer. Du wirst weggespült, das ist sicher.", + "3": "Oh ho, ich treffe auf dich! Das ist abgefahren." + }, + "victory": { + "1": "Du hast total gerockt! Du ziehst einige krasse Pokémon groß. Du hast das Trainer-Ding drauf!", + "2": "Du siehst nicht nur stark aus, du bist auch stark! Eh, ich wurde auch weggespült!", + "3": "Du bist stark wie eine spektakuläre Welle!" + }, + "defeat": { + "1": "Du bist stark, aber nicht stark genug, um das Meer zu beeinflussen, 'OK!", + "2": "Hee! Sieht so aus, als hätte ich wieder gewonnen!", + "3": "Süßer, süßer Sieg!" + } + }, + "shauntal": { + "encounter": { + "1": "Entschuldigung. Du bist ein Herausforderer, oder?\nIch bin Anissa, die Geist-Pokémon-Nutzerin\n$der Top Vier. Ich werde dich in die Welt der Bücher entführen.", + "2": "Ich liebe es, über Trainer und deren Pokémon zu schreiben.\n$Könnte ich dich als Inspiration verwenden?", + "3": "Jeder, der mit Pokémon arbeitet, hat eine Geschichte zu erzählen. Welche Geschichte wird erzählt?" + }, + "victory": { + "1": "Wow. Ich bin sprachlos!", + "2": "E-entschuldigung! Zuerst muss ich mich bei meinen Pokémon entschuldigen…\n$Es tut mir wirklich leid, dass ihr wegen mir eine schlechte Erfahrung gemacht habt.", + "3": "Selbst in Anbetracht dessen, bin ich immer noch eine der Top Vier!" + }, + "defeat": { + "1": "Eheh.", + "2": "Das war exzellentes Material für meinen nächsten Roman!", + "3": "Und wenn sie nicht gestorben sind, dann leben sie noch heute…" + } + }, + "marshal": { + "encounter": { + "1": "Mein Mentor, Lauro, sieht Potential in dir. Ich werde dich testen,\n$dich an die Grenzen deiner Stärke bringen. Kiai!", + "2": "Ein Sieg, ein entscheidender Sieg, das ist mein Ziel! Herausforderer, hier komme ich!", + "3": "Ich selber suche die Stärke eines Kämpfers zu entwickeln und jede Schwäche in mir zu brechen!" + }, + "victory": { + "1": "Puh! Gut gemacht!", + "2": "Während deine Kämpfe weitergehen, strebe nach noch größeren Höhen!", + "3": "Die Stärke, die du und deine Pokémon gezeigt haben, hat mich tief beeindruckt..." + }, + "defeat": { + "1": "Hmm.", + "2": "Das war ein guter Kampf.", + "3": "Haaah! Haaah! Haiyaaaah!" + } + }, + "cheren": { + "encounter": { + "1": "Du erinnerst mich an einen alten Freund. Das macht mich gespannt auf diesen Pokémon-Kampf!", + "2": "Pokémon-Kämpfe haben keinen Sinn, wenn man nicht darüber nachdenkt, warum man kämpft.\n$Oder besser gesagt, es macht das Kämpfen mit Pokémon sinnlos.", + "3": "Ich heiße Cheren! Ich bin ein Arenaleiter und Lehrer! Freut mich, dich kennenzulernen." + }, + "victory": { + "1": "Danke! Ich habe gesehen, was mir gefehlt hat.", + "2": "Danke! Ich habe das Gefühl, ein Stück meines Ideals entdeckt zu haben.", + "3": "Hmm… Das ist problematisch." + }, + "defeat": { + "1": "Als Arenaleiter will ich eine Hürde für dich sein, die du überwinden musst.", + "2": "In Ordnung!", + "3": "Ich bin so weit gekommen, weil Pokémon an meiner Seite waren.\n$Vielleicht sollten wir darüber nachdenken, warum Pokémon uns helfen,\n$nicht als Pokémon und Trainer, sondern als Beziehung zwischen Lebewesen." + } + }, + "chili": { + "encounter": { + "1": "Jaaaa! Zeit, mit dem Feuer zu spielen! Ich bin der Stärkste von uns Brüdern!", + "2": "Ta-da! Der Feuer-Typ-Kämpfer Maik --das bin ich-- wird dein Gegner sein!", + "3": "Ich werde dir zeigen, was ich und meine feurigen Pokémon draufhaben!" + }, + "victory": { + "1": "Du hast mich besiegt. Ich bin... ausgebrannt...", + "2": "Whoa ho! Du brennst vor Energie!", + "3": "Autsch! Du hast mich erwischt!" + }, + "defeat": { + "1": "Ich brenne! Spiel mit mir, und du wirst dich verbrennen!", + "2": "Wenn du mit Feuer spielst, wirst du verbrannt!", + "3": "Ich meine, komm schon, dein Gegner war ich! Du hattest keine Chance!" + } + }, + "cilan": { + "encounter": { + "1": "Nichts Persönliches... Keine harten Gefühle... Ich und meine Pflanzen-Pokémon werden...\n$Ähm... Wir werden kämpfen, egal was passiert.", + "2": "Also, ähm, wenn es für dich in Ordnung ist, werde ich, ähm, alles geben, um, äh, dein Gegner zu sein.", + "3": "OK… Also, ähm, ich bin Benny, ich mag Pflanzen-Pokémon." + }, + "victory": { + "1": "Ähm… Ist es jetzt vorbei?", + "2": "…Was für eine Überraschung. Du bist sehr stark, nicht wahr? \n$Ich glaube, meine Brüder hätten dich auch nicht besiegen können…", + "3": "…Hmm. Sieht aus, als wäre mein Timing, ähm, schlecht gewesen?" + }, + "defeat": { + "1": "Huh? Habe ich gewonnen?", + "2": "Ich denke... Ich habe wohl gewonnen, weil ich mit meinen Brüdern Maik und Colin traniert habe,\n$und wir so alle stärker geworden sind.", + "3": "Es... es war ein ziemlich aufregendes Erlebnis..." + } + }, + "roark": { + "encounter": { + "1": "Ich muss dein Potenzial als Trainer und die Stärke der Pokémon sehen, die mit dir kämpfen!", + "2": "Los geht's! Dies sind meine Gesteins-Pokémon, mein ganzer Stolz!", + "3": "Gesteins-Pokémon sind einfach die besten!", + "4": "Ich muss dein Potenzial als Trainer und die Stärke der Pokémon sehen, die mit dir kämpfen!" + }, + "victory": { + "1": "W-was? Das kann nicht sein! Meine total tranierten Pokémon!", + "2": "…Wir haben die Kontrolle verloren. Beim nächsten Mal fordere ich dich\n$zu einem Fossilien-Ausgrabungswettbewerb heraus.", + "3": "Mit deinem Können ist es nur natürlich, dass du gewinnst.", + "4": "W-was?! Das kann nicht sein! Selbst das war nicht genug?", + "5": "Ich habe es vermasselt." + }, + "defeat": { + "1": "Siehst du? Ich bin stolz auf meinen steinigen Kampfstil!", + "2": "Danke! Der Kampf hat mir Vertrauen gegeben, dass ich vielleicht meinen Vater besiegen kann!", + "3": "Ich fühle mich, als hätte ich gerade einen wirklich hartnäckigen Felsen durchbrochen!" + } + }, + "morty": { + "encounter": { + "1": "Mit ein bisschen mehr könnte ich eine Zukunft sehen, in der ich das legendäre Pokémon treffe.\n$Du wirst mir helfen, dieses Level zu erreichen!", + "2": "Es heißt, dass ein regenbogenfarbenes Pokémon vor einem wirklich starken Trainer erscheinen wird.\n$Ich habe an diese Geschichte geglaubt, deshalb habe ich mein ganzes Leben lang heimlich trainiert.\n$Als Ergebnis kann ich jetzt Dinge sehen, die andere nicht sehen.\n$Ich sehe einen Schatten der Person, die das Pokémon erscheinen lassen wird.\n$Ich glaube, diese Person bin ich! Du wirst mir helfen, dieses Level zu erreichen!", + "3": "Ob du es glaubst oder nicht, mystische Kräfte existieren.", + "4": "Du kannst die Früchte meines Trainings bezeugen.", + "5": "Du musst deine Seele mit der eines Pokémon vereinen. Kannst du das?", + "6": "Sag mal, willst du an meinem Training teilnehmen?" + }, + "victory": { + "1": "Ich bin noch nicht gut genug...", + "2": "Ich sehe... Deine Reise hat dich an weit entfernte Orte geführt und du hast viel mehr gesehen als ich.\n$Ich beneide dich darum...", + "3": "Wie ist das möglich...", + "4": "Ich glaube nicht, dass unser Potenzial so unterschiedlich ist.\n$Aber du scheinst etwas mehr zu haben... Sei es drum.", + "5": "Ich brauche wohl mehr Training.", + "6": "Das ist schade." + }, + "defeat": { + "1": "Ich habe... einen weiteren Schritt nach vorne gemacht.", + "2": "Fufufu...", + "3": "W-was?! Das kann nicht sein! Selbst das war nicht genug?", + "4": "Ich fühle mich, als hätte ich gerade einen wirklich hartnäckigen Felsen durchbrochen!", + "5": "Ahahahah!", + "6": "Ich wusste, dass ich gewinnen würde!" + } + }, + "crispin": { + "encounter": { + "1": "Ich will gewinnen, also werde ich genau das tun!", + "2": "Ich kämpfe, weil ich kämpfen will! Und weißt du was? So sollte es sein!" + }, + "victory": { + "1": "Ich wollte gewinnen... aber ich habe verloren!", + "2": "Ich habe verloren... weil ich nicht gewinnen konnte!" + }, + "defeat": { + "1": "Hey, warte mal. Habe ich gerade gewonnen? Ich glaube, ich habe gewonnen! Das ist befriedigend!", + "2": "Wooo! Das war unglaublich!" + } + }, + "amarys": { + "encounter": { + "1": "Ich möchte jemandem helfen. Daher kann ich es mir nicht leisten, zu verlieren.\n$… Unser Kampf beginnt jetzt." + }, + "victory": { + "1": "Ich bin... nicht genug, wie ich sehe." + }, + "defeat": { + "1": "Der Sieg gehört mir. Gut gekämpft." + } + }, + "lacey": { + "encounter": { + "1": "Ich werde dir mit meinem gewohnten Team, als Mitglied der Top Vier gegenüberstehen." + }, + "victory": { + "1": "Das war ein großartiger Kampf!" + }, + "defeat": { + "1": "Geben wir deinem Pokémon einen kräftigen Applaus für ihre Bemühungen!" + } + }, + "drayton": { + "encounter": { + "1": "Mann, ich liebe Stühle. Liebst du nicht auch Stühle? Was für Lebensretter.\n$Ich verstehe nicht, warum nicht jeder einfach die ganze Zeit sitzt. Stehen ist anstrengend!" + }, + "victory": { + "1": "Ich hätte damit rechnen sollen!" + }, + "defeat": { + "1": "Heh heh! Macht nichts, ich habe hier nur einen Sieg eingefahren.\n$Ich verstehe, wenn du sauer bist, aber geh nicht völlig auf mich los, okay?" + } + }, + "ramos": { + "encounter": { + "1": "Hast du den Garten-Spielplatz genossen, den ich mit all diesen kräftigen Pflanzen angelegt habe?\n$Ihre Stärke ist ein Zeichen meiner Stärke als Gärtner und Arenaleiter! \n$Bist du sicher, dass du bereit bist, dich dem zu stellen?" + }, + "victory": { + "1": "Du glaubst an deine Pokémon... Und sie glauben an dich... Es war ein feiner Kampf, Sprössling." + }, + "defeat": { + "1": "Hohoho... In der Tat. Schwache kleine Grashalme brechen selbst durch Beton." + } + }, + "viola": { + "encounter": { + "1": "Ob es die Tränen der Frustration nach einer Niederlage sind\n$oder das Aufblühen der Freude nach einem Sieg...\n$Beides sind großartige Motive für meine Kamera! Fantastisch! Das wird einfach fantastisch!\n$Jetzt komm auf mich zu!", + "2": "Mein Objektiv ist immer auf den Sieg fokussiert - ich lasse mir diesen Moment nicht entgehen!" + }, + "victory": { + "1": "Du und deine Pokémon haben mir eine ganz neue Tiefenschärfe gezeigt! Einfach fantastisch!", + "2": "Die Welt, die du durch ein Objektiv siehst, und die Welt,\n$die du mit einem Pokémon an deiner Seite siehst...\n$Die gleiche Welt kann völlig anders aussehen, je nach Blickwinkel." + }, + "defeat": { + "1": "Das Foto vom Moment meines Sieges wird ein echter Gewinner sein!", + "2": "Ja! Ich habe einige großartige Fotos gemacht!" + } + }, + "candice": { + "encounter": { + "1": "Du willst Frida herausfordern? Klar! Ich habe auf jemanden Starken gewartet!\n$Aber ich sollte dir sagen, ich bin stark, weil ich weiß, wie man sich konzentriert.", + "2": "Pokémon, Mode, Romantik... Es geht alles um Konzentration!\n$Ich werde dir zeigen, was ich meine. Mach dich bereit zu verlieren!" + }, + "victory": { + "1": "Ich muss sagen, ich bin von dir angetan! Vielleicht bewundere ich dich sogar ein bisschen.", + "2": "Wow! Du bist großartig! Du hast meinen Respekt verdient!\n$Ich denke, dein Fokus und Wille haben uns völlig umgehauen." + }, + "defeat": { + "1": "Ich habe deinen Siegeswillen gespürt, aber ich verliere nicht!", + "2": "Siehst du? Fridas Fokus! Der Fokus meiner Pokémon ist auch großartig!" + } + }, + "gardenia": { + "encounter": { + "1": "Du hast eine Sieger-Aura. Also, das wird Spaß machen. Lass uns kämpfen!" + }, + "victory": { + "1": "Unglaublich! Du bist sehr gut, nicht wahr?" + }, + "defeat": { + "1": "Ja! Meine Pokémon und ich sind perfekt abgestimmt!" + } + }, + "aaron": { + "encounter": { + "1": "Okay! Lass mich gegen dich antreten!" + }, + "victory": { + "1": "Kämpfen ist eine tiefe und komplexe Angelegenheit..." + }, + "defeat": { + "1": "Ein Sieg über ein Mitglied der Top Vier ist nicht leicht zu erringen." + } + }, + "cress": { + "encounter": { + "1": "Das ist korrekt! Ich und meine geschätzten Wasser-Pokémon werden deine Gegner im Kampf sein!" + }, + "victory": { + "1": "Verlieren? Ich? Das glaube ich nicht." + }, + "defeat": { + "1": "Das ist das passende Ergebnis, wenn ich dein Gegner bin." + } + }, + "allister": { + "encounter": { + "1": "'N-Nio.\nH-hier… g-geht's los…" + }, + "victory": { + "1": "Ich hätte beinahe meine Maske vor Schock verloren... Das war...\n$Wow. Ich sehe dein Können, wie es wirklich ist." + }, + "defeat": { + "1": "D-das war klasse!" + } + }, + "clay": { + "encounter": { + "1": "Harrumph! Du hast mich warten lassen, oder? Gut, jetzt will ich sehen, was du drauf hast!" + }, + "victory": { + "1": "Mann oh Mann... Es fühlt sich gut an, alles zu geben und trotzdem besiegt zu werden!" + }, + "defeat": { + "1": "Was wichtig ist, ist wie du auf eine Niederlage reagierst.\n$Deshalb sind Leute, die Niederlagen als Ansporn nutzen, um besser zu werden, stark." + } + }, + "kofu": { + "encounter": { + "1": "Ich werde dir ein ganzes Menü aus Wasser-Pokémon servieren! Aber versuch nicht, sie zu essen!" + }, + "victory": { + "1": "Vaultin' Veluza! Du bist ein lebhafter Mensch, nicht wahr!\n$Ein bisschen ZU lebhaft, wenn ich das so sagen darf!" + }, + "defeat": { + "1": "Komm bald wieder zu mir, hörst du?" + } + }, + "tulip": { + "encounter": { + "1": "Erlaube mir, meine Fähigkeiten einzusetzen, um deine niedlichen kleinen Pokémon noch schöner zu machen!" + }, + "victory": { + "1": "Deine Stärke hat eine Magie, die nicht wegzuwaschen ist." + }, + "defeat": { + "1": "Weißt du, in meinem Beruf verschwinden Menschen,\n$die in einem Bereich kein Talent haben, oft schnell und werden nie wieder gesehen." + } + }, + "sidney": { + "encounter": { + "1": "Mir gefällt der Blick, den du mir zuwirfst. Ich denke, du wirst mir einen guten Kampf liefern.\n$Das ist gut! Sieht wirklich gut aus! In Ordnung!\n$Du und ich, lass uns einen Kampf genießen, der nur hier stattfinden kann!" + }, + "victory": { + "1": "Nun, wie gefällt dir das? Ich habe verloren! Eh, es hat Spaß gemacht, also ist es egal." + }, + "defeat": { + "1": "Wir sind hier nicht nachtragend, okay?" + } + }, + "phoebe": { + "encounter": { + "1": "Während meines Trainings habe ich die Fähigkeit erlangt, mit Geister-Pokémon zu kommunizieren.\n$Ja, die Bindung, die ich zu Pokémon entwickelt habe, ist extrem stark.\n$Also komm, versuche nur, meinen Pokémon Schaden zuzufügen!" + }, + "victory": { + "1": "Oh, Mist. Ich habe verloren." + }, + "defeat": { + "1": "Ich freue mich darauf, dich irgendwann wieder zu bekämpfen!" + } + }, + "glacia": { + "encounter": { + "1": "Alles, was ich gesehen habe, sind Herausforderungen von schwachen Trainern und ihren Pokémon.\n$Und du? Es würde mich überaus freuen, wenn ich gegen dich alles geben könnte!" + }, + "victory": { + "1": "Du und deine Pokémon… Wie heiß eure Geister brennen!\n$Die alles verzehrende Hitze überwältigt.\n$Es ist kein Wunder, dass meine eisigen Fähigkeiten dir nichts anhaben konnten." + }, + "defeat": { + "1": "Ein leidenschaftlicher Kampf, in der Tat." + } + }, + "drake": { + "encounter": { + "1": "Um mit Pokémon als Partner zu kämpfen, weißt du, was dafür nötig ist? Weißt du, was gebraucht wird?\n$Wenn nicht, wirst du nie gegen mich gewinnen!" + }, + "victory": { + "1": "Hervorragend, muss ich sagen." + }, + "defeat": { + "1": "Ich habe alles für diesen Kampf gegeben!" + } + }, + "wallace": { + "encounter": { + "1": "Da ist etwas an dir… Eine Veränderung in deinem Auftreten.\n$Ich denke, ich spüre das bei dir. Zeig es mir. Zeig mir die Kraft, die du mit deinen Pokémon hast.\n$Und ich werde dir im Gegenzug eine Vorstellung von\n$Illusionen im Wasser von mir und meinen Pokémon präsentieren!" + }, + "victory": { + "1": "Bravo. Ich erkenne jetzt deine Authentizität und Großartigkeit als Pokémon-Trainer.\n$Ich freue mich sehr, dich und deine Pokémon kennengelernt zu haben. Du hast dich als würdig erwiesen." + }, + "defeat": { + "1": "Eine große Illusion!" + } + }, + "lorelei": { + "encounter": { + "1": "Niemand kann mich bei eisigen Pokémon übertreffen! Gefrierende Angriffe sind mächtig!\n$Deine Pokémon werden mir ausgeliefert sein, wenn sie erst einmal eingefroren sind! Hahaha!\n$Bist du bereit?" + }, + "victory": { + "1": "Wie kannst du es wagen!" + }, + "defeat": { + "1": "Es gibt nichts, was du tun kannst, wenn du erst einmal eingefroren bist." + } + }, + "will": { + "encounter": { + "1": "Ich habe auf der ganzen Welt trainiert und meine Psycho-Pokémon stark gemacht.\n$Ich kann nur besser werden! Verlieren ist keine Option!" + }, + "victory": { + "1": "Ich... ich kann es nicht... glauben..." + }, + "defeat": { + "1": "Das war knapp. Ich frage mich, was dir fehlt." + } + }, + "malva": { + "encounter": { + "1": "Ich fühle mich, als könnte mein Herz in Flammen aufgehen.\n$Ich brenne vor Hass auf dich, Wicht!" + }, + "victory": { + "1": "Was für Neuigkeiten... Ein neuer Herausforderer hat Pachira besiegt!" + }, + "defeat": { + "1": "Ich bin begeistert! Ja, begeistert, dass ich dich unter meinen Fußsohlen zerquetschen konnte." + } + }, + "hala": { + "encounter": { + "1": "Der alte Hala ist hier, um dich zum Schreien zu bringen!" + }, + "victory": { + "1": "Ich konnte die Kraft spüren, die du auf deiner Reise gewonnen hast." + }, + "defeat": { + "1": "Haha! Was für ein erfreulicher Kampf!" + } + }, + "molayne": { + "encounter": { + "1": "Ich habe die Kapitänsposition meinem Cousin Chrys gegeben,\n$aber ich bin zuversichtlich in meine Fähigkeiten.\n$Meine Stärke ist wie die einer Supernova!" + }, + "victory": { + "1": "Ich habe sicherlich einen interessanten Trainer zum Kämpfen gefunden!" + }, + "defeat": { + "1": "Ahaha. Was für ein interessanter Kampf." + } + }, + "rika": { + "encounter": { + "1": "Ich würde sagen, ich werde es dir leicht machen, aber... das wäre gelogen! Denke schnell!" + }, + "victory": { + "1": "Nicht schlecht, wirklich!" + }, + "defeat": { + "1": "Nahahaha! Du bist wirklich etwas Besonderes!" + } + }, + "bruno": { + "encounter": { + "1": "Wir werden dich mit unserer überlegenen Kraft niederschmettern! Hoo hah!" + }, + "victory": { + "1": "Warum? Wie konnte ich verlieren?" + }, + "defeat": { + "1": "Du kannst mich herausfordern, so oft du willst, aber das Ergebnis wird sich nie ändern!" + } + }, + "bugsy": { + "encounter": { + "1": "Ich bin Kai, der Arenaleiter von Azalea City. Ich bin ein großer Fan von Käfer-Pokémon." + }, + "victory": { + "1": "Wow, erstaunlich! Du bist ein Experte für Pokémon!\n$Meine Forschung ist noch nicht abgeschlossen. OK, du gewinnst." + }, + "defeat": { + "1": "Danke! Dank unseres Kampfes konnte ich auch Fortschritte in meiner Forschung machen!" + } + }, + "koga": { + "encounter": { + "1": "Fwahahahaha! Pokémon sind nicht nur rohe Gewalt - das wirst du bald genug sehen!" + }, + "victory": { + "1": "Ah! Du hast deinen Wert bewiesen!" + }, + "defeat": { + "1": "Hast du gelernt, die Techniken der Ninja zu fürchten?" + } + }, + "bertha": { + "encounter": { + "1": "Nun, würdest du dieser alten Dame zeigen, wie viel du gelernt hast?" + }, + "victory": { + "1": "Nun! Liebes Kind, ich muss sagen, das war sehr beeindruckend.\n$Deine Pokémon haben an dich geglaubt und ihr Bestes gegeben, um dir den Sieg zu sichern.\n$Obwohl ich verloren habe, finde ich mich mit einem dummen Grinsen wieder!" + }, + "defeat": { + "1": "Hahahahah! Sieht so aus, als hätte diese alte Dame gewonnen!" + } + }, + "lenora": { + "encounter": { + "1": "Nun denn, Herausforderer, ich werde erforschen,\n$wie du mit den Pokémon kämpfst, die du so liebevoll aufgezogen hast!" + }, + "victory": { + "1": "Meine Theorie über dich war korrekt. Du bist mehr als nur talentiert... \n$Du bist motiviert! Ich salutier' dir!" + }, + "defeat": { + "1": "Ah ha ha! Wenn du verlierst, analysiere warum und nutze dieses Wissen im nächsten Kampf!" + } + }, + "siebold": { + "encounter": { + "1": "Solange ich lebe, werde ich danach streben, die ultimative Küche...\n$und die stärksten Gegner im Kampf zu finden!" + }, + "victory": { + "1": "Ich werde die Erinnerung an dich und deine Pokémon für immer in meinem Herzen bewahren." + }, + "defeat": { + "1": "Unser Pokémon-Kampf war wie Nahrung für meine Seele. Er wird mich weiter antreiben.\n$So werde ich dir meinen Respekt erweisen, dass du alles im Kampf gegeben hast!" + } + }, + "roxie": { + "encounter": { + "1": "Mach dich bereit! Ich werde dir den Verstand aus dem Kopf schlagen!" + }, + "victory": { + "1": "Wahnsinn! Deine Vernunft ist schon giftiger als meine!" + }, + "defeat": { + "1": "Hey, komm schon! Sei ernst! Du musst mehr geben!" + } + }, + "olivia": { + "encounter": { + "1": "Hier ist keine Einführung nötig. Zeit, gegen mich, Mayla, zu kämpfen!" + }, + "victory": { + "1": "Wirklich lieblich... Sowohl du als auch deine Pokémon..." + }, + "defeat": { + "1": "Mmm-hmm." + } + }, + "poppy": { + "encounter": { + "1": "Oooh! Willst du einen Pokémon-Kampf mit mir führen?" + }, + "victory": { + "1": "Uagh?! Mmmuuuggghhh..." + }, + "defeat": { + "1": "Jaaa! Ich hab's geschafft! Ich hab dich besiegt! Du kannst kommen für... Für... Einen Revanchekampf?\n$Komm jederzeit für einen Revanchekampf!" + } + }, + "agatha": { + "encounter": { + "1": "Pokémon sind zum Kämpfen da! Ich zeige dir, wie ein echter Trainer kämpft!" + }, + "victory": { + "1": "Oh mein Gott! Du bist etwas Besonderes, Kind!" + }, + "defeat": { + "1": "Bahaha. So wird ein richtiger Kampf geführt!" + } + }, + "flint": { + "encounter": { + "1": "Hoffentlich bist du aufgewärmt, denn hier kommt der Urknall!" + }, + "victory": { + "1": "Unglaublich! Deine Moves sind so heiß, dass meine im Vergleich lauwarm wirken!" + }, + "defeat": { + "1": "Huh? War das alles? Ich denke, du brauchst etwas mehr Leidenschaft." + } + }, + "grimsley": { + "encounter": { + "1": "Der Gewinner nimmt alles, und es bleibt nichts für den Verlierer." + }, + "victory": { + "1": "Wenn man verliert, verliert man alles... Das nächste, wonach ich suche, wird auch der Sieg sein!" + }, + "defeat": { + "1": "Wenn jemand gewinnt, verliert derjenige, der gegen diese Person gekämpft hat." + } + }, + "caitlin": { + "encounter": { + "1": "Ich bin es, die erschien, als die Blume sich öffnete. Du, der du gewartet hast…\n$Du siehst aus wie ein Pokémon-Trainer mit verfeinerter Stärke und vertiefter Freundlichkeit.\n$Was ich in meinem Gegner suche, ist überlegene Stärke…\n$Bitte entfessle deine Kraft in vollem Umfang!" + }, + "victory": { + "1": "Meine Pokémon und ich haben so viel gelernt! Ich danke dir." + }, + "defeat": { + "1": "Ich strebe danach, mit Eleganz und Anmut zu siegen." + } + }, + "diantha": { + "encounter": { + "1": "Gegen dich und deine Pokémon zu kämpfen, die alle voller Hoffnung für die Zukunft sind...\n$Ehrlich gesagt, es erfüllt mich mit der Energie, die ich brauche, um jeden neuen Tag anzugehen!\n$Wirklich!" + }, + "victory": { + "1": "Den edlen Geist von dir und deinen Pokémon im Kampf zu erleben, hat mein Herz wirklich berührt..." + }, + "defeat": { + "1": "Oh, fantastisch! Was denkst du? Mein Team war ziemlich cool, oder?" + } + }, + "wikstrom": { + "encounter": { + "1": "Guten Tag, junger Herausforderer! Wahrlich, ich bin die berühmte Klinge aus gehärtetem Stahl,\n$Herzog Thymelot! Lasst den Kampf beginnen! En garde!" + }, + "victory": { + "1": "Ruhmreich! Das Vertrauen, das du mit deinen ehrenvollen Pokémon teilst, übertrifft sogar meines!" + }, + "defeat": { + "1": "Was für eine Magie ist das? Mein Herz, es hämmert unaufhörlich in meiner Brust!\n$Gegen einen so würdigen Gegner zu gewinnen, verleiht meiner Seele Flügel - so fliege ich!" + } + }, + "acerola": { + "encounter": { + "1": "Kämpfen macht einfach Spaß! Komm schon, ich schaffe das!" + }, + "victory": { + "1": "Ich bin... sprachlos! Wie hast du das gemacht?!" + }, + "defeat": { + "1": "Ehaha! Was für ein erstaunlicher Sieg!" + } + }, + "larry_elite": { + "encounter": { + "1": "Hallo... Ich bin's, Aoki.\n$Ich bin auch Mitglied der Top Vier, ja... Leider für mich." + }, + "victory": { + "1": "Nun, das hat uns den Wind aus den Segeln genommen..." + }, + "defeat": { + "1": "Es ist Zeit für ein Treffen mit dem Boss." + } + }, + "lance": { + "encounter": { + "1": "Ich habe auf dich gewartet. Erlaube mir, deine Fähigkeiten zu testen.", + "2": "Ich dachte, du würdest es so weit schaffen. Lass uns anfangen." + }, + "victory": { + "1": "Du hast mich besiegt. Du bist großartig!", + "2": "Ich hätte nie erwartet, dass ein anderer Trainer mich schlägt... Ich bin überrascht." + }, + "defeat": { + "1": "Das war knapp. Willst du es nochmal versuchen?", + "2": "Es ist nicht so, dass du schwach bist. Lass dich davon nicht stören." + } + }, + "karen": { + "encounter": { + "1": "Ich bin Melanie. Möchtest du einen Kampf mit meinen Unlicht-Pokémon?", + "2": "Ich bin anders als die, die du bereits getroffen hast.", + "3": "Du hast ein charmantes Team zusammengestellt. Unser Kampf wird sicher gut." + }, + "victory": { + "1": "Nein! Ich kann nicht gewinnen. Wie bist du so stark geworden?", + "2": "Ich werde nicht von meinem gewählten Weg abweichen.", + "3": "Der Champion freut sich darauf, dich kennenzulernen." + }, + "defeat": { + "1": "Das habe ich erwartet.", + "2": "Nun, das war relativ unterhaltsam.", + "3": "Komm mich jederzeit besuchen." + } + }, + "milo": { + "encounter": { + "1": "Es scheint, als würdest du Pokémon wirklich gut verstehen.\n$Das wird ein harter Kampf!\n$Ich muss mein Pokémon Dynamaximieren, wenn ich gewinnen will!" + }, + "victory": { + "1": "Die Kraft des Grases ist verwelkt... Was für ein unglaublicher Herausforderer!" + }, + "defeat": { + "1": "Das wird dich wirklich schockieren und in Ehrfurcht versetzen." + } + }, + "lucian": { + "encounter": { + "1": "Einen Moment, bitte. Das Buch, das ich lese, hat fast seinen spannenden Höhepunkt erreicht...\n$Der Held hat ein mystisches Schwert erlangt und steht vor seiner letzten Prüfung... Ah, egal.\n$Da du es so weit geschafft hast, lege ich das beiseite und kämpfe gegen dich.\n$Lass mich sehen, ob du genauso viel Ruhm erlangen wirst wie der Held meines Buches!" + }, + "victory": { + "1": "Ich sehe... Es scheint, als hättest du mich schachmatt gesetzt." + }, + "defeat": { + "1": "Ich habe einen Ruf zu wahren." + } + }, + "drasna": { + "encounter": { + "1": "Du musst ein starker Trainer sein. Ja, ganz stark...\n$Das sind wunderbare Neuigkeiten! Gegen Gegner wie dich und dein Team zu kämpfen,\n$lässt meine Pokémon wie Unkraut wachsen!" + }, + "victory": { + "1": "Oh, meine Güte. Das war wirklich ein schneller Kampf... Ich hoffe, du kommst bald wieder!" + }, + "defeat": { + "1": "Wie kann das sein?" + } + }, + "kahili": { + "encounter": { + "1": "Also, da bist du… Warum sehen wir nicht, wen die Winde heute begünstigen, dich… oder mich?" + }, + "victory": { + "1": "Es frustriert mich als Mitglied der Top Vier, aber es scheint, dass deine Stärke echt ist." + }, + "defeat": { + "1": "Das war ein Ass!" + } + }, + "hassel": { + "encounter": { + "1": "Bereite dich darauf vor, aus erster Hand zu erfahren,\n$wie sich der feurige Atem eines erbitterten Kampfes anfühlt!" + }, + "victory": { + "1": "Das Glück hat mir dieses Mal gelächelt, aber...\n$Angesichts des Verlaufs des Kampfes, wer weiß, ob ich das nächste Mal so viel Glück haben werde." + }, + "defeat": { + "1": "Das war ein Ass!" + } + }, + "blue": { + "encounter": { + "1": "Du musst ziemlich gut sein, um so weit zu kommen." + }, + "victory": { + "1": "Ich habe nur gegen ihn und jetzt gegen dich verloren… Ihn? Haha..." + }, + "defeat": { + "1": "Siehst du? Meine Stärke hat mich hierher gebracht." + } + }, + "piers": { + "encounter": { + "1": "Mach dich bereit für einen Moshpit mit mir und meiner Truppe! Spikeford, es ist Zeit zu rocken!" + }, + "victory": { + "1": "Ich und mein Team haben unser Bestes gegeben. Lass uns irgendwann wieder zu einem Kampf treffen..." + }, + "defeat": { + "1": "Meine Kehle ist heiser vom Schreien... Aber das war ein aufregender Kampf!" + } + }, + "red": { + "encounter": { + "1": "…!" + }, + "victory": { + "1": "…?" + }, + "defeat": { + "1": "…!" + } + }, + "jasmine": { + "encounter": { + "1": "Oh... Deine Pokémon sind beeindruckend. Ich denke, ich werde das genießen." + }, + "victory": { + "1": "Du bist wirklich stark. Ich muss mich auch viel mehr anstrengen." + }, + "defeat": { + "1": "Ich habe nie erwartet zu gewinnen." + } + }, + "lance_champion": { + "encounter": { + "1": "Ich bin immer noch der Champion. Ich werde nichts zurückhalten." + }, + "victory": { + "1": "Dies ist das Aufkommen eines neuen Champions." + }, + "defeat": { + "1": "Ich habe meinen Titel erfolgreich verteidigt." + } + }, + "steven": { + "encounter": { + "1": "Erzähl mir... Was hast du auf deiner Reise mit deinen Pokémon gesehen?\n$Was hast du gefühlt, als du so viele andere Trainer getroffen hast?\n$Durch dieses reiche Land zu reisen... Hat es etwas in dir geweckt?\n$Ich möchte, dass du mir alles zeigst, was du gelernt hast.\n$Meine Pokémon und ich werden dir im Gegenzug mit allem antworten, was wir wissen!" + }, + "victory": { + "1": "Also falle ich, der Champion, in der Niederlage..." + }, + "defeat": { + "1": "Das war gut verbrachte Zeit! Danke!" + } + }, + "cynthia": { + "encounter": { + "1": "Ich, Cynthia, akzeptiere deine Herausforderung! Es wird keine Pause von mir geben!" + }, + "victory": { + "1": "Egal wie viel Spaß der Kampf macht, er wird irgendwann enden..." + }, + "defeat": { + "1": "Selbst wenn du verlierst, verliere niemals deine Liebe zu Pokémon." + } + }, + "iris": { + "encounter": { + "1": "Weißt du was? Ich freue mich wirklich darauf, ernsthafte Kämpfe mit starken Trainern zu führen!\n$Ich meine, komm schon! Die Trainer, die es hierher schaffen, sind Trainer,\n$die den Sieg mit jeder Faser ihres Seins anstreben!\n$Und sie kämpfen Seite an Seite mit Pokémon, die unzählige schwierige Kämpfe durchgemacht haben!\n$Wenn ich mit solchen Leuten kämpfe, werde nicht nur ich stärker, sondern auch meine Pokémon!\n$Und wir werden uns noch besser kennenlernen! OK! Mach dich bereit!\n$Ich bin Iris, die Champion der Pokémon-Liga, und ich werde dich besiegen!" + }, + "victory": { + "1": "Aghhhh... Ich habe mein Bestes gegeben, aber wir haben verloren..." + }, + "defeat": { + "1": "Juhu! Wir haben gewonnen!" + } + }, + "hau": { + "encounter": { + "1": "Ich frage mich, ob ein Trainer anders kämpft,\n$je nachdem, ob er aus einer warmen oder einer kalten Region stammt.\n$Lass es uns testen!" + }, + "victory": { + "1": "Das war großartig! Ich denke, ich verstehe dein Vibe jetzt ein bisschen besser!" + }, + "defeat": { + "1": "Ma-an, das war eine Art Kampf!" + } + }, + "geeta": { + "encounter": { + "1": "Ich habe mich entschieden, erneut meinen Hut in den Ring zu werfen.\n$Komm jetzt... Zeig mir die Früchte deines Trainings." + }, + "victory": { + "1": "Ich freue mich auf Neuigkeiten über all deine Erfolge!" + }, + "defeat": { + "1": "Was ist los? Das ist doch nicht alles, oder?" + } + }, + "nemona": { + "encounter": { + "1": "Yesss! Ich bin so aufgeregt! Zeit, dass wir uns austoben!" + }, + "victory": { + "1": "Na gut, das ist ärgerlich, aber ich hatte trotzdem Spaß! Ich werde dich nächstes Mal erwischen!" + }, + "defeat": { + "1": "Das war ein großartiger Kampf! Definitiv fruchtbar." + } + }, + "leon": { + "encounter": { + "1": "Wir werden eine absolut großartige Zeit haben!" + }, + "victory": { + "1": "Meine Zeit als Champion ist vorbei...\n$Aber was für eine großartige Zeit war das!\n$Danke für den großartigsten Kampf, den ich je hatte!" + }, + "defeat": { + "1": "Das war eine absolut großartige Zeit!" + } + }, + "whitney": { + "encounter": { + "1": "Hey! Findest du nicht auch, dass Pokémon total süß sind?" + }, + "victory": { + "1": "Waaah! Waaah! Du bist so gemein!" + }, + "defeat": { + "1": "Und das war's!" + } + }, + "chuck": { + "encounter": { + "1": "Ha! Du willst mich herausfordern? Bist du mutig oder einfach nur unwissend?" + }, + "victory": { + "1": "Du bist stark! Würdest du mich bitte zu deinem Schüler machen?" + }, + "defeat": { + "1": "Da. Merkst du, wie viel mächtiger ich bin als du?" + } + }, + "katy": { + "encounter": { + "1": "Lass deine Wachsamkeit nicht nach, es sei denn, du willst von den Füßen gerissen werden!" + }, + "victory": { + "1": "Alle meine süßen kleinen Pokémon fielen wie Fliegen!" + }, + "defeat": { + "1": "Iss auf, mein süßes kleines Vivillon!" + } + }, + "pryce": { + "encounter": { + "1": "Jugend allein garantiert keinen Sieg! Erfahrung ist, was zählt." + }, + "victory": { + "1": "Hervorragend! Das war perfekt. Versuche nicht zu vergessen, was du jetzt fühlst." + }, + "defeat": { + "1": "Genau wie ich es mir vorgestellt habe." + } + }, + "clair": { + "encounter": { + "1": "Weißt du, wer ich bin? Und du wagst es trotzdem, mich herauszufordern?" + }, + "victory": { + "1": "Ich frage mich, wie weit du mit deinem Können kommen wirst. Das sollte faszinierend sein." + }, + "defeat": { + "1": "Das war's." + } + }, + "maylene": { + "encounter": { + "1": "Ich bin gekommen, um dich jetzt herauszufordern, und ich werde nichts zurückhalten.\n$Bitte bereite dich auf den Kampf vor!" + }, + "victory": { + "1": "Ich gestehe die Niederlage ein..." + }, + "defeat": { + "1": "Das war großartig." + } + }, + "fantina": { + "encounter": { + "1": "Du wirst mich herausfordern, ja? Aber ich werde gewinnen.\n$Das tut der Arenaleiter von Herzhofen, non?" + }, + "victory": { + "1": "Du bist so fantastisch stark. Ich weiß, warum ich verloren habe." + }, + "defeat": { + "1": "Ich bin so, so, sehr glücklich!" + } + }, + "byron": { + "encounter": { + "1": "Trainer! Du bist jung, genau wie mein Sohn, Veit. \n$Mit mehr jungen Trainern, die das Kommando übernehmen, ist die Zukunft der Pokémon hell! \n$Also, als Hürde für junge Leute nehme ich deine Herausforderung an!" + }, + "victory": { + "1": "Hmm! Meine robusten Pokémon - besiegt!" + }, + "defeat": { + "1": "Gwahahaha! Wie waren meine robusten Pokémon?!" + } + }, + "olympia": { + "encounter": { + "1": "Ein alter Brauch entscheidet über das Schicksal. Der Kampf beginnt!" + }, + "victory": { + "1": "Schaffe deinen eigenen Weg. Lass dir nichts in den Weg stellen. Dein Schicksal, deine Zukunft." + }, + "defeat": { + "1": "Unser Weg ist jetzt klar." + } + }, + "volkner": { + "encounter": { + "1": "Da du so weit gekommen bist, musst du ziemlich stark sein…\n$Ich hoffe, du bist der Trainer, der mich daran erinnert, wie viel Spaß es macht zu kämpfen!" + }, + "victory": { + "1": "Du hast mich besiegt…\n$Dein Verlangen und die edle Art, wie deine Pokémon für dich gekämpft haben…\n$Ich habe mich sogar während unseres Kampfes begeistert gefühlt. Das war ein sehr guter Kampf." + }, + "defeat": { + "1": "Es war überhaupt nicht schockierend…\n$Das ist nicht das, was ich wollte!" + } + }, + "burgh": { + "encounter": { + "1": "M'hm… Wenn ich diesen Kampf gewinne, habe ich das Gefühl,\n$dass ich ein Bild malen kann, das es so noch nie gegeben hat.\n$OK! Ich höre meine Kampf-Muse laut und deutlich. Lass uns gleich loslegen!", + "2": "Natürlich bin ich wirklich stolz auf all meine Pokémon! \n$Nun, dann... Lass uns gleich loslegen!" + }, + "victory": { + "1": "Ist es vorbei? Hat mich meine Muse verlassen?", + "2": "Hmm… Es ist vorbei! Du bist unglaublich!" + }, + "defeat": { + "1": "Wow… Irgendwie ist es doch schön, nicht wahr?", + "2": "Manchmal höre ich Leute sagen, es war ein hässlicher Sieg. \n$Ich denke, wenn du dein Bestes gibst, ist jeder Sieg schön." + } + }, + "elesa": { + "encounter": { + "1": "C'est fini! Wenn ich mir dessen sicher bin,\n$fühle ich einen elektrischen Stoß durch meinen Körper laufen!\n$Ich möchte dieses Gefühl erleben, also werden meine geliebten Pokémon\n$jetzt deinen Kopf zum Drehen bringen!" + }, + "victory": { + "1": "Ich wollte deinen Kopf zum Drehen bringen, aber du hast mich schockiert." + }, + "defeat": { + "1": "Das war irgendwie unbefriedigend… Wirst du nächstes Mal alles geben?" + } + }, + "skyla": { + "encounter": { + "1": "Es ist endlich Zeit für ein Duell! Das bedeutet den Pokémon-Kampf,\n$der entscheidet, wer an der Spitze steht, richtig? \n$Ich liebe es, auf dem Gipfel zu stehen! Weil man von hohen Orten aus für immer und ewig sehen kann! \n$Also, wie wäre es, wenn wir beide Spaß haben?" + }, + "victory": { + "1": "Dein Gegner im Kampf zu sein, ist eine neue Kraftquelle für mich. Danke!" + }, + "defeat": { + "1": "Gewinnen oder verlieren, man lernt immer etwas aus einem Kampf, richtig?" + } + }, + "brycen": { + "encounter": { + "1": "Es gibt auch Stärke darin, mit anderen Menschen und Pokémon zusammen zu sein. \n$Ihre Unterstützung zu erhalten, macht dich stärker. Ich werde dir diese Kraft zeigen!" + }, + "victory": { + "1": "Die wunderbare Kombination aus dir und deinen Pokémon! Was für eine schöne Freundschaft!" + }, + "defeat": { + "1": "Extreme Bedingungen testen und trainieren dich wirklich!" + } + }, + "drayden": { + "encounter": { + "1": "Was ich finden möchte, ist ein junger Trainer, der mir eine helle Zukunft zeigen kann.\n$Lass uns mit allem kämpfen, was wir haben: dein Können, meine Erfahrung und die Liebe,\n$mit der wir unsere Pokémon großgezogen haben!" + }, + "victory": { + "1": "Dieses intensive Gefühl, das mich nach einer Niederlage überkommt…\n$Ich weiß nicht, wie ich es beschreiben soll." + }, + "defeat": { + "1": "Harrumph! Ich weiß, dass deine Fähigkeit größer ist als das!" + } + }, + "grant": { + "encounter": { + "1": "Es gibt nur eine Sache, die ich mir wünsche. \n$Dass wir, indem wir einander übertreffen, einen Weg zu noch größeren Höhen finden." + }, + "victory": { + "1": "Du bist eine Mauer, die ich nicht überwinden kann!" + }, + "defeat": { + "1": "Gib nicht auf.\n$Das ist wirklich alles, was es dazu gibt.\n$Die wichtigsten Lektionen im Leben sind einfach." + } + }, + "korrina": { + "encounter": { + "1": "Zeit für Lady Connies großen Auftritt!" + }, + "victory": { + "1": "Es ist dein Wesen, das es deinen Pokémon ermöglicht, sich zu entwickeln!" + }, + "defeat": { + "1": "Was für ein explosiver Kampf!" + } + }, + "clemont": { + "encounter": { + "1": "Oh! Ich bin froh, dass wir uns getroffen haben!" + }, + "victory": { + "1": "Deine Leidenschaft für den Kampf inspiriert mich!" + }, + "defeat": { + "1": "Es sieht so aus, als würde meine Trainer-Wachstumsmaschine, Mach 2, wirklich funktionieren!" + } + }, + "valerie": { + "encounter": { + "1": "Oh, wenn das nicht ein junger Trainer ist… Es ist schön, dich so zu treffen.\n$Dann nehme ich an, du hast dir das Recht auf einen Kampf verdient, als Belohnung für deine Bemühungen.\n$Die schwer fassbare Fee mag zart wie eine Brise und empfindlich wie eine Blüte erscheinen,\n$aber sie ist stark." + }, + "victory": { + "1": "Ich hoffe, dass du morgen Dinge finden wirst, über die du lächeln kannst…" + }, + "defeat": { + "1": "Oh mein Gott, wie schade…" + } + }, + "wulfric": { + "encounter": { + "1": "Weißt du was? Wir reden alle groß über das, was man vom Kämpfen und von Bindungen lernt und all das…\n$Aber eigentlich mache ich es nur, weil es Spaß macht. \n$Wen kümmert das Prahlen? Lass uns kämpfen!" + }, + "victory": { + "1": "Hervorragend! Ich bin so hart wie ein Eisberg, aber du hast mich komplett durchschlagen!" + }, + "defeat": { + "1": "Kämpfe mit mir, und das passiert!" + } + }, + "kabu": { + "encounter": { + "1": "Jeder Trainer und jedes Pokémon trainiert hart, um den Sieg zu erringen.\n$Aber das bedeutet, dass auch dein Gegner hart arbeitet, um zu gewinnen.\n$Am Ende wird das Match von der Seite entschieden, die ihr wahres Potenzial entfesseln kann." + }, + "victory": { + "1": "Ich bin froh, dass ich heute gegen dich kämpfen konnte!" + }, + "defeat": { + "1": "Das ist eine großartige Möglichkeit für mich, mein eigenes Wachstum zu spüren!" + } + }, + "bea": { + "encounter": { + "1": "Hast du einen unerschütterlichen Geist, der sich nicht bewegt, egal wie du angegriffen wirst? \n$Ich denke, ich werde das einfach mal testen, oder?" + }, + "victory": { + "1": "Ich habe den Kampfgeist deiner Pokémon gespürt, als du sie in den Kampf geführt hast." + }, + "defeat": { + "1": "Das war die beste Art von Match, die man sich je wünschen kann." + } + }, + "opal": { + "encounter": { + "1": "Lass mich sehen, wie du und dein Partner-Pokémon euch verhalten!" + }, + "victory": { + "1": "Dein Rosa fehlt noch, aber du bist ein ausgezeichneter Trainer mit ausgezeichneten Pokémon." + }, + "defeat": { + "1": "Schade für dich, denke ich." + } + }, + "bede": { + "encounter": { + "1": "Ich nehme an, ich sollte zweifelsfrei beweisen, wie erbärmlich du bist und wie stark ich bin." + }, + "victory": { + "1": "Ich verstehe... Nun, das ist in Ordnung. Ich habe mich sowieso nicht wirklich angestrengt." + }, + "defeat": { + "1": "Nicht schlecht, muss ich sagen." + } + }, + "gordie": { + "encounter": { + "1": "Also, lass uns das hinter uns bringen." + }, + "victory": { + "1": "Ich möchte einfach in ein Loch kriechen... Nun, ich denke, es wäre eher wie ein Sturz von hier." + }, + "defeat": { + "1": "Kämpfe wie immer, der Sieg wird folgen!" + } + }, + "marnie": { + "encounter": { + "1": "Die Wahrheit ist, am Ende des Tages... Ich möchte wirklich nur Champion für mich selbst werden!\n$Also nimm es nicht persönlich, wenn ich dir den Hintern versohle!" + }, + "victory": { + "1": "OK, ich habe verloren... Aber ich habe viele gute Seiten von dir und deinen Pokémon gesehen!" + }, + "defeat": { + "1": "Ich hoffe, du hast unsere Kampfstrategien genossen." + } + }, + "raihan": { + "encounter": { + "1": "Ich werde den Champion besiegen, das ganze Turnier gewinnen und der Welt beweisen,\n$wie stark der großartige Roy wirklich ist!" + }, + "victory": { + "1": "Ich sehe sogar gut aus, wenn ich verliere.\n$Es ist ein echter Fluch.\n$Ich denke, es ist Zeit für ein weiteres Selfie!" + }, + "defeat": { + "1": "Lass uns ein Selfie zur Erinnerung machen." + } + }, + "brassius": { + "encounter": { + "1": "Ich nehme an, du bist bereit? Lassen wir unser gemeinsames Kunstwerk beginnen!" + }, + "victory": { + "1": "Ahhh... avant-garde!" + }, + "defeat": { + "1": "Ich werde sofort mit einem neuen Stück beginnen!" + } + }, + "iono": { + "encounter": { + "1": "Hey, Leute! Es ist Zeit für Enigmaras EnigmaTV!!! Naaaa, alles klärchen?\n$Hola, ciao und hallöle! Und schon bist du gefangen in meinem Elektronetz!\n$Wer ich bin, fragst du? Na, Enigmara natürlich! Ich bin hier die Arenaleiterin." + }, + "victory": { + "1": "Du leuchtest ja so hell wie ein tausendfacher Donnerblitz!" + }, + "defeat": { + "1": "Deine Augen gehören MIR!" + } + }, + "larry": { + "encounter": { + "1": "Wenn alles gesagt und getan ist, ist Einfachheit am stärksten." + }, + "victory": { + "1": "Eine Portion Niederlage, hm?" + }, + "defeat": { + "1": "Ich mache Schluss für heute." + } + }, + "ryme": { + "encounter": { + "1": "Komm schon, Baby! Bring mich zum Zittern bis auf die Knochen!" + }, + "victory": { + "1": "Du bist cool, mein Freund - du bewegst meine SEELE!" + }, + "defeat": { + "1": "Bis später, Baby!" + } + }, + "grusha": { + "encounter": { + "1": "Alles, was ich tun muss, ist sicherzustellen, dass die Kraft meiner Pokémon dich bis auf die Knochen kühlt!" + }, + "victory": { + "1": "Deine brennende Leidenschaft... Ich mag sie ehrlich gesagt irgendwie." + }, + "defeat": { + "1": "Es hat nicht für dich gereicht." + } + }, + "marnie_elite": { + "encounter": { + "1": "Du hast es so weit geschafft, hm? Mal sehen, ob du mit meinen Pokémon umgehen kannst!", + "2": "Ich werde mein Bestes geben, aber denke nicht, dass ich es dir leicht machen werde!" + }, + "victory": { + "1": "Ich kann nicht glauben, dass ich verloren habe... Aber du hast den Sieg verdient. Gut gemacht!", + "2": "Es sieht so aus, als hätte ich noch viel zu lernen. Toller Kampf trotzdem!" + }, + "defeat": { + "1": "Du hast gut gekämpft, aber ich habe den Vorteil! Viel Glück beim nächsten Mal!", + "2": "Es scheint, als hätte sich mein Training ausgezahlt. Danke für den Kampf!" + } + }, + "nessa_elite": { + "encounter": { + "1": "Die Gezeiten wenden sich zu meinen Gunsten. Bereit, weggespült zu werden?", + "2": "Lass uns mit diesem Kampf Wellen schlagen! Ich hoffe, du bist vorbereitet!" + }, + "victory": { + "1": "Du hast diese Gewässer perfekt navigiert... Gut gemacht!", + "2": "Es sieht so aus, als wären meine Strömungen kein Match für dich. Tolle Arbeit!" + }, + "defeat": { + "1": "Wasser findet immer einen Weg. Das war ein erfrischender Kampf!", + "2": "Du hast gut gekämpft, aber die Macht des Ozeans ist unaufhaltsam!" + } + }, + "bea_elite": { + "encounter": { + "1": "Bereite dich vor! Mein Kampfgeist brennt hell!", + "2": "Mal sehen, ob du mit meinem unaufhaltsamen Tempo mithalten kannst!" + }, + "victory": { + "1": "Deine Stärke... Sie ist beeindruckend. Du hast diesen Sieg wirklich verdient.", + "2": "Ich habe diese Intensität noch nie zuvor gespürt. Unglaubliche Leistung!" + }, + "defeat": { + "1": "Ein weiterer Sieg für mein intensives Trainingsprogramm! Gut gemacht!", + "2": "Du hast Stärke, aber ich habe härter trainiert. Toller Kampf!" + } + }, + "allister_elite": { + "encounter": { + "1": "Die Schatten fallen... Bist du bereit, dich deinen Ängsten zu stellen?", + "2": "Mal sehen, ob du mit der Dunkelheit, die ich befehle, umgehen kannst." + }, + "victory": { + "1": "Du hast die Schatten vertrieben... Für jetzt. Gut gemacht.", + "2": "Dein Licht hat meine Dunkelheit durchdrungen. Tolle Leistung." + }, + "defeat": { + "1": "Die Schatten haben gesprochen... Deine Stärke reicht nicht aus.", + "2": "Die Dunkelheit triumphiert... Vielleicht wirst du nächstes Mal das Licht sehen." + } + }, + "raihan_elite": { + "encounter": { + "1": "Ein Sturm zieht auf! Mal sehen, ob du diesen Kampf überstehst!", + "2": "Mach dich bereit, dem Auge des Sturms zu begegnen!" + }, + "victory": { + "1": "Du hast den Sturm bezwungen... Unglaubliche Leistung!", + "2": "Du hast die Winde perfekt geritten... Toller Kampf!" + }, + "defeat": { + "1": "Ein weiterer Sturm überstanden, ein weiterer Sieg errungen! Gut gekämpft!", + "2": "Du bist in meinen Sturm geraten! Viel Glück beim nächsten Mal!" + } + }, + "alder": { + "encounter": { + "1": "Mach dich bereit für einen Kampf gegen den stärksten Trainer in Einall! Mich - Lauro!" + }, + "victory": { + "1": "Gut gemacht! Du hast wirklich ein unvergleichliches Talent." + }, + "defeat": { + "1": "Ein frischer Wind weht durch mein Herz...\n$Was für ein außergewöhnliches Gefühl!" + } + }, + "kieran": { + "encounter": { + "1": "Durch harte Arbeit werde ich immer stärker und stärker!\n$Ich verliere nicht." + }, + "victory": { + "1": "Ich kann es nicht glauben...\n$Was für ein lustiger und herzzerreißender Kampf!" + }, + "defeat": { + "1": "Wow, was für ein Kampf!\n$Es ist Zeit für dich, noch härter zu trainieren." + } + }, + "rival": { + "encounter": { + "1": "@c{smile}Hey, ich habe dich gesucht! Ich weiß, dass du es nicht erwarten konntest loszugehen,\n$aber hättest ja wenigstens Tschüss sagen können...\n$@c{smile_eclosed}Du verfolgst also wirklich deinen Traum?\nIch kann es kaum glauben.\n$@c{serious_smile_fists}Da wir schon einmal hier sind, wie wäre es mit einem Kampf?\nImmerhin muss ich doch sicherstellen, dass du bereit bist.\n$@c{serious_mopen_fists}Halte dich nicht zurück, zeig mir alles was du hast!" + }, + "victory": { + "1": "@c{shock}Wow…Du hast mich komplett überrumpelt.\nBist du wirklich ein Anfänger?\n$@c{smile}Vielleicht war es einfach etwas Glück, aber…\nWer weiß, vielleicht schaffst du es irgendwann\n$ja wirklich ganz groß raus zu kommen.\n$Übrigens, der Professor hat mich gebeten dir diese Items zu geben. Die sehen wirklich cool aus.\n$@c{serious_smile_fists}Viel Glück da draußen!" + } + }, + "rival_female": { + "encounter": { + "1": "@c{smile_wave}Da bist du! Ich habe schon überall nach dir gesucht!\n@c{angry_mopen}Hast du etwas vergessen\n$deiner besten Freundin Tschüss zu sagen?\n$@c{smile_ehalf}Du folgst deinem Traum, oder?\nDas ist wirklich heute…\n$@c{smile}Naja, ich vergeben dir, dass du mich vergessen hast, aber nur unter einer Bedingung. @c{smile_wave_wink}Du musst gegen mich kämpfen!\n$@c{angry_mopen}Gib alles! Wir wollen doch nicht, dass dein Abenteuer endet bevor es begonnen hat, richtig?" + }, + "victory": { + "1": "@c{shock}Du hast gerade erst angefangen und bist schon so stark?!@d{96} @c{angry}Du hast sowas von betrogen, oder?\n$@c{smile_wave_wink}Ich mach nur Spaß!@d{64} @c{smile_eclosed}Ich habe ehrlich verloren… Ich habe das Gefühl, dass du es dort draußen weit bringen wirst.\n$@c{smile}Übrigens, der Professor hat mich gebeten dir diese Items zu geben. Ich hoffe sie sind hilfreich!\n$@c{smile_wave}Gib wie immer dein Bestes! Ich glaube an dich!" + } + }, + "rival_2": { + "encounter": { + "1": "@c{smile}Hey, du auch hier?\n@c{smile_eclosed}Immernoch ungeschlagen, hmm…?\n$@c{serious_mopen_fists}Ich weiß es sieht so aus, als wäre ich dir hierher gefolgt, aber das ist so nicht ganz richtig.\n$@c{serious_smile_fists}Ehrlicherweise kann ich es, seit du mich damals besiegt hast, garnicht erwarten erneut gegen dich zu kämpfen.\n$Ich habe selbst hart traniert. Ich werde dir diesesmal also ein würdigerer Gegner sein!.\n$@c{serious_mopen_fists}Halt dich nicht zurück, genauso wie beim letzten Mal!\nLos gehts!" + }, + "victory": { + "1": "@c{neutral_eclosed}Oh. Ich war also zu sehr von mir überzeugt.\n$@c{smile}Das ist Ok. Ich hatte mir schon gedacht, dass sowas passiert.\n\n$@c{serious_mopen_fists}Es bedeutet einfach, dass ich mich beim nächsten Mal mehr anstrengen muss!\n\n$@c{smile}Nicht, dass du wirklich Hilfe benötigen würdest, aber ich habe hier noch eins von diesen Dingern herumliegen.\n$Du kannst es haben.\n\n$@c{serious_smile_fists}Erwarte aber nicht, dass ich dir noch mehr gebe!\nIch kann meinen Rivalen doch keine Vorteile verschaffen.\n$@c{smile}Egal, pass auf dich auf!" + } + }, + "rival_2_female": { + "encounter": { + "1": "@c{smile_wave}Oh, wie schön dich hier zu trefen. Sieht so aus als wärst du noch ungeschlagen. @c{angry_mopen}Hmm… Nicht schlecht!\n$@c{angry_mopen}Ich weiß was du denkst, und nein, ich habe dich nicht verfolgt. @c{smile_eclosed}Ich bin einfach in der Gegend gewesen.\n$@c{smile_ehalf}Ich freu mich für dich, aber ich muss dich wissen lassen, dass es auch Ok ist ab und zu mal zu verlieren.\n$@c{smile}Wir lernen oft mehr aus unseren Fehlern, als aus unseren Erfolgen.\n$@c{angry_mopen}Auf jeden Fall habe ich für unseren Rückkampf hart traniert. Also zeig mir was du drauf hast!" + }, + "victory": { + "1": "@c{neutral}Ich… sollte dieses Mal doch nicht verlieren…\n$@c{smile}Na gut. Das bedeutet ich muss noch härter tranieren!\n$@c{smile_wave}Ich habe noch eins von diesen Dingern!\n@c{smile_wave_wink}Kein Grund mir zu danken~.\n$@c{angry_mopen}Das ist aber das Letzte! Du bekommst ab jett keine Geschenke mehr von mir!\n$@c{smile_wave}Bleib stark!" + }, + "defeat": { + "1": "Es ist Ok manchmal zu verlieren…" + } + }, + "rival_3": { + "encounter": { + "1": "@c{smile}Hey, schau mal wen wir hier haben! Ist schon eine Weile her.\n@c{neutral}Du bist… immernoch ungeschlagen?\n$@c{neutral_eclosed}Die Dinge waren irgendwie... seltsam.\nEs ist Zuhause einfach nicht das Gleiche ohne dich.\n$@c{serious}Ich weiß es ist selbstsüchtig, aber ich musste das einfach mal loswerden.\n$@c{neutral_eclosed}Denkst du nicht, dass du dich etwas übernommen hast?\n$@c{serious}Es ist nicht realistisch immer zu gewinnen\nWir müssen manchmal verlieren. Um daran zu wachsen.\n$@c{neutral_eclosed}Du hattest einen guten Lauf, aber es liegt noch so viel vor dir. Es wird nicht gerade einfacher. @c{neutral}Bist du bereit dafür?\n$@c{serious_mopen_fists}Falls ja, beweise es mir!" + }, + "victory": { + "1": "@c{angry_mhalf}Das ist doch Schwachsinn… Ich habe kaum aufgehört zu tranieren…\n$Warum bin ich immernoch so viel schwächer?" + } + }, + "rival_3_female": { + "encounter": { + "1": "@c{smile_wave}Lange nicht gesehen! Immernoch nicht verloren?\n@c{angry}Du fängst mich an zu nerven. @c{smile_wave_wink}Ich mach nur Spaß!\n$@c{smile_ehalf}Aber ehrlich, vermisst du dein Zuhause garnicht? Oder mich?\n$Ich… Ich meine, wir vermissen dich wirklich.\n$@c{smile_eclosed}Ich unterstütze dich bei deinem Traum, aber die Realität ist, du wirst früher oder später verlieren.\n$@c{smile}Und ich bin für dich da falls du es tust, wie immer.\n@c{angry_mopen}Also, zeig mir wie stark du geworden bist!" + }, + "victory": { + "1": "@c{shock}Nach allem was ich getan habe… war es immernoch nicht genug…?\n$Wenn es so weiter geht hole ich nie auf…" + }, + "defeat": { + "1": "Du hast dein Bestes gegeben. Lass uns nach Hause gehen." + } + }, + "rival_4": { + "encounter": { + "1": "@c{neutral}Hey.\n$Ich werde jetzt keine Gefälligkeiten mit dir austauschen.\n@c{neutral_eclosed}Ich bin hier um zu gewinnen. Mehr nicht.\n$@c{serious_mhalf_fists}Durch mein Traning habe ich gelernt mein Potenzial zu maximieren.\n$@c{smile}Man hat deutlich mehr Zeit, wenn man auf Schlaf und unnötige soziale Interaktionen verzichtet. \n$@c{serious_mopen_fists}Das ist alles nicht mehr wichtig, nicht solange ich nicht gewonnen habe.\n$@c{neutral_eclosed}Ich bin an dem Punkt an dem ich nicht mehr verliere.\n@c{smile_eclosed}Ich schätze deine Einstellung war doch nicht so falsch.\n$@c{angry_mhalf}Nur die Schwachen verlieren, und ich bin nicht mehr schwach.\n$@c{serious_mopen_fists}Bereite dich vor zu verlieren." + }, + "victory": { + "1": "@c{neutral}Was…@d{64} Was bist du?" + } + }, + "rival_4_female": { + "encounter": { + "1": "@c{neutral}Ich bins! Du hast mich doch nicht vergessen, oder?\n$@c{smile}Du solltest stolz auf dich sein. Du hast es soweit gebracht. Glückwunsch!\n$Aber hier endet deine Reise jetzt.\n$@c{smile_eclosed}Du hast etwas in mir erwachen lassen, etwas von dem ich nicht wusste, dass es da war.\n$Alles was ich jetzt mache ist tranieren. @c{smile_ehalf}Ich esse oder schlafe kaum. \n$Ich traniere meine Pokémon den ganzen Tag. Und werde immer stärker.\n$@c{neutral}Genau genommen, erkenne ich mich garnicht wieder.\n$Und jetzt habe ich endlich meinen Höhepunkt erreicht.\nNiemand kann mich jetzt noch schlagen.\n$Und weißt du was? Das ist alles wegen dir.\n@c{smile_ehalf}Ich weiß nicht ob ich dir danken, oder dich hassen soll!\n$@c{angry_mopen}Mach dich bereit!" + }, + "victory": { + "1": "@c{neutral}Was…@d{64} Was bist du?" + }, + "defeat": { + "1": "$@c{smile}Du solltest stolz darauf sein wie weit du es geschafft hast." + } + }, + "rival_5": { + "encounter": { + "1": "@c{neutral}…" + }, + "victory": { + "1": "@c{neutral}…" + } + }, + "rival_5_female": { + "encounter": { + "1": "@c{neutral}…" + }, + "victory": { + "1": "@c{neutral}…" + }, + "defeat": { + "1": "$@c{smile_ehalf}…" + } + }, + "rival_6": { + "encounter": { + "1": "@c{smile_eclosed}So sehen wir uns wieder.\n$@c{neutral}Ich hatte Zeit über alles nachzudenken.\nÜber den Grund, warum alles so merkwürdig erscheint.\n$@c{neutral_eclosed}Dein Traum, mein Antrieb dich besiegen zu wollen…\nEs ist alles Teil von etwas Größerem.\n$@c{serious}Es geht nicht um dich, oder mich… Es geht um diese Welt.\n@c{serious_mhalf_fists}Es ist mein Schicksal dich an deine Grenzen zu treiben.\n$@c{neutral_eclosed}Ob ich meine Aufgabe erfüllt habe kann ich nicht sagen, aber ich habe alles getan was ich konnte.\n$@c{neutral}Der Ort an dem wir uns befinden ist angsteinflößend… \n$Trotzdem fühlt es sich so an, als würde mich das nicht stören, als wäre ich bereits schonmal hier gewesen.\n$@c{serious_mhalf_fists}Dir geht es doch genauso, oder?\n$@c{serious}…und irgendwas hier spricht zu mir.\nDas ist alles was die Welt seit langem kennt.\n$Die Zeiten die wir zusammen verbracht haben, die so nah erscheinen, sind nichts als eine ferne Erinnerung.\n$@c{neutral_eclosed}Wer weiß, ob sie jemals real waren?\n$@c{serious_mopen_fists}Du musst weiter gehen, denn wenn du es nicht tust, wird es nie enden. Du bist der Einzige, der das schaffen kann.\n$@c{serious_smile_fists}Ich… Ich weiß nicht was das alles bedeutet, aber ich fühle, dass es wahr ist.\n$@c{serious_mopen_fists}Wenn du mich nicht hier und jetzt besiegen kannst, hast du keine Chance." + }, + "victory": { + "1": "@c{smile_eclosed}Es sieht so aus, als wäre meine Arbeit getan.\n$Ich will dass du mir eine Sache versprichst.\n@c{smile}Komm bitte nach Hause nachdem du die Welt gerettet hast." + } + }, + "rival_6_female": { + "encounter": { + "1": "@c{smile_ehalf}Jetzt sind es wieder nur wir zwei.\n$@c{smile_eclosed}Weißt du, egal wie ich es drehe und wende…\n$@c{smile_ehalf}Irgendwas stört mich an der ganzen Sache, es erscheint mir irgendwie komisch…\n$@c{smile}Du hast deinen Traum, und ich habe diesen Antrieb…\n$Ich kann nicht anders, als zu glauben, dass es einen größeren Zweck gibt.\n$@c{smile_eclosed}Ich denke, ich sollte dich an deine Grenzen treiben.\n$@c{smile_ehalf}Ich bin mir nicht sicher, ob ich meine Aufgabe erfüllt habe, aber ich habe mein Bestes gegeben.\n$Irgendwas an diesem komischen und furchteinflößenden Ort… All das scheint so klar…\n$Es… ist alles was die Welt seit langem kennt.\n$@c{smile_eclosed}Es kommt mir so vor als könnte ich mich kaum an die Erinnerungen erinnern, die wir zusammen hatten.\n$@c{smile_ehalf}Waren sie jemals real? Sie scheinen so weit weg…\n$@c{angry_mopen}Du musst weiter gehen, denn wenn du es nicht tust, wird es nie enden. Du bist der Einzige, der das schaffen kann.\n$@c{smile_ehalf}Ich… Ich weiß nicht was das alles bedeutet, aber ich fühle, dass es wahr ist.\n$@c{neutral}Wenn du mich nicht hier und jetzt besiegen kannst, hast du keine Chance." + }, + "victory": { + "1": "@c{smile_ehalf}Ich… Ich denke ich habe meine Aufgabe erfüllt.\n$@c{smile_eclosed}Versprich mir… Nachdem du die Welt geheilt hast… Komm bitte sicher nach Hause. \n$@c{smile_ehalf}…Danke." + } + } +} diff --git a/src/locales/de/dialogue.ts b/src/locales/de/dialogue.ts deleted file mode 100644 index 4c964db6dc3..00000000000 --- a/src/locales/de/dialogue.ts +++ /dev/null @@ -1,3009 +0,0 @@ -import {DialogueTranslationEntries, SimpleTranslationEntries} from "#app/interfaces/locales"; - - -// Dialogue of the NPCs in the game when the player character is male (or unset) -export const PGMdialogue: DialogueTranslationEntries = { - "youngster": { - "encounter": { - 1: "Hey, willst du kämpfen?", - 2: "Bist du auch ein neuer Trainer?", - 3: "Hey, ich habe dich noch nie gesehen. Lass uns kämpfen!", - 4: "Ich habe gerade verloren und suche nach neuen Pokémon.\nWarte! Du siehst schwach aus! Lass uns kämpfen!", - 5: `Haben wir uns schon mal getroffen oder nicht? Ich erinnere mich nicht wirklich - $Nun, ich denke, es ist trotzdem schön, dich zu treffen!`, - 6: "Okay, lass uns kämpfen!", - 7: "Okay, hier komme ich! Ich zeige dir meine Kraft!", - 8: "Fan fan fan... Ich zeige dir wie fantastisch meine Pokémon sind!", - 9: "Es ist nicht nötig, Zeit mit Begrüßungen zu verschwenden.\nSobald du bereit bist geht es los!", - 10: "Lass deine Deckung nicht fallen, sonst weinst du, wenn dich ein Kind besiegt.", - 11: "Ich habe meine Pokémon mit großer Sorgfalt aufgezogen. Du darfst ihnen nicht wehtun!", - 12: "Schön, dass du es geschafft hast! Von hier an wird es nicht einfacher.", - 13: "Die Kämpfe gehen immer weiter! Willkommen in der Welt ohne Ende!", - }, - "victory": { - 1: "Wow! Du bist stark!", - 2: "Ich hatte keine Chance, oder?", - 3: "Wenn ich älter bin, werde ich dich besiegen!", - 4: "Ugh. Ich habe keine Pokémon mehr.", - 5: "Das kann nicht sein… DAS KANN NICHT SEIN! Wie konnte ich schon wieder verlieren…", - 6: "Nein! Ich habe verloren!", - 7: "Wow! Du bist unglaublich! Ich bin erstaunt und überrascht!", - 8: "Kann es sein… Wie… Meine Pokémon und ich sind die stärksten, aber…", - 9: "Das nächste Mal werde ich dich besiegen! Lass uns wieder kämpfen!", - 10: "Man! Kannst du nicht sehen, dass ich nur ein Kind bin? Es war nicht fair von dir, so hart zu kämpfen!", - 11: "Deine Pokémon sind unglaublich! Tauschst du mit mir?", - 12: "Ich habe mich ein bisschen mitreißen lassen, worüber habe ich vorhin gesprochen?", - 13: "Ahaha! Da ist es! Genau! Du bist schon jetzt in dieser Welt zu Hause!", - } - }, - "lass": { - "encounter": { - 1: "Lass uns kämpfen, wollen wir?", - 2: "Du siehst wie ein neuer Trainer aus. Lass uns kämpfen!", - 3: "Ich erkenne dich nicht. Wie wäre es mit einem Kampf?", - 4: "Lass uns einen lustigen Pokémon-Kampf haben!", - 5: "Ich zeige dir, wie man Pokémon wirklich einsetzt!", - 6: "Ein ernsthafter Kampf beginnt mit einem ernsten Anfang! Bist du sicher, dass du bereit bist?", - 7: `Du bist nur einmal jung. Und du hast nur eine Chance bei einem bestimmten Kampf. - $Bald wirst du nur noch eine Erinnerung sein.`, - 8: "Du solltest es leicht mit mir angehen, OK? Aber ich kämpfe ernsthaft!", - 9: "Die Schule ist langweilig. Ich habe nichts zu tun. Gähn. Ich kämpfe nur, um die Zeit totzuschlagen." - }, - "victory": { - 1: "Das war beeindruckend! Ich habe noch viel zu lernen.", - 2: "Ich dachte nicht, dass du mich so schlagen würdest…", - 3: "Ich hoffe, wir haben eines Tages ein Rematch.", - 4: "Das war ziemlich erstaunlich! Du hast mich total erschöpft…", - 5: "Du hast mir tatsächlich eine Lektion erteilt! Du bist ziemlich erstaunlich!", - 6: "Ernsthaft, ich habe verloren. Das ist, wie, ernsthaft deprimierend, aber du warst ernsthaft cool.", - 7: "Ich brauche keine Erinnerungen wie diese. Löschen der Erinnerung…", - 8: `Hey! Ich habe dir gesagt, du sollst es leicht mit mir angehen! - $Trotzdem bist du ziemlich cool, wenn du ernsthaft bist.`, - 9: "Ich werde langsam müde vom Kämpfen… Es muss etwas Neues zu tun geben…" - } - }, - "breeder": { - "encounter": { - 1: "Gehorsame Pokémon, eigensinnige Pokémon… Pokémon haben einzigartige Eigenschaften.", - 2: "Auch wenn meine Erziehung und mein Verhalten schlecht sind, habe ich meine Pokémon gut aufgezogen.", - 3: "Hmm, disziplinierst du deine Pokémon? Zu viel Verwöhnen ist nicht gut.", - }, - "victory": { - 1: "Es ist wichtig, die Eigenschaften jedes Pokémon zu pflegen und zu trainieren.", - 2: "Im Gegensatz zu meinem teuflischen Selbst sind dies einige gute Pokémon.", - 3: "Zu viel Lob kann sowohl Pokémon als auch Menschen verwöhnen.", - }, - "defeat": { - 1: "Du solltest nicht wütend auf deine Pokémon werden, auch wenn du einen Kampf verlierst.", - 2: "Richtig? Ziemlich gute Pokémon, oder? Ich bin dafür geeignet, Dinge großzuziehen.", - 3: `Egal wie sehr du deine Pokémon liebst, - $du musst sie trotzdem disziplinieren, wenn sie sich schlecht benehmen.` - } - }, - "breeder_female": { - "encounter": { - 1: "Pokémon verraten dich nie. Sie erwidern die ganze Liebe, die du ihnen gibst.", - 2: "Soll ich dir einen Tipp geben, wie man gute Pokémon trainiert?", - 3: "Ich habe diese sehr speziellen Pokémon mit einer speziellen Methode aufgezogen." - }, - "victory": { - 1: "Ugh… So sollte das nicht laufen. Habe ich die falsche Mischung verabreicht?", - 2: "Wie konnte das meinen Pokémon passieren… Was fütterst du deine Pokémon?", - 3: `Wenn ich verliere, sagt dir das, dass ich nur die Zeit totgeschlagen habe. - $Es verletzt mein Ego überhaupt nicht.` - }, - "defeat": { - 1: "Das beweist, dass meine Pokémon meine Liebe angenommen haben.", - 2: "Der wahre Trick, um gute Pokémon zu trainieren, besteht darin, gute Pokémon zu fangen.", - 3: "Pokémon werden stark oder schwach, je nachdem, wie du sie großziehst." - } - }, - "fisherman": { - "encounter": { - 1: "Aack! Du hast mich einen Biss verlieren lassen!\nWas wirst du dagegen tun?", - 2: "Geh weg! Du erschreckst die Pokémon!", - 3: "Mal sehen, ob du einen Sieg an Land ziehen kannst!", - }, - "victory": { - 1: "Vergiss es einfach.", - 2: "Nächstes Mal werde ich den Triumph an Land ziehen!", - 3: "Ich glaube, ich habe die Strömungen diesmal unterschätzt.", - }, - }, - "fisherman_female": { - "encounter": { - 1: "Woah! Ich habe einen großen Fang gemacht!", - 2: "Die Leine ist drin, bereit, den Erfolg an Land zu ziehen!", - 3: "Bereit, Wellen zu schlagen!" - }, - "victory": { - 1: "Ich komme mit einem stärkeren Haken zurück.", - 2: "Ich werde das nächste Mal den Sieg an Land ziehen.", - 3: "Ich schärfe nur meine Haken für das Comeback!" - }, - }, - "swimmer": { - "encounter": { - 1: "Zeit, einzutauchen!", - 2: "Lass uns die Wellen des Sieges reiten!", - 3: "Bereit, einen Sprung ins Wasser zu machen!", - }, - "victory": { - 1: "Getränkt in Niederlage!", - 2: "Eine Welle der Niederlage!", - 3: "Zurück ans Ufer, schätze ich.", - }, - }, - "backpacker": { - "encounter": { - 1: "Packe deine Sachen, es geht los!", - 2: "Mal sehen, ob du mithalten kannst!", - 3: "Bereit machen, Herausforderer!", - 4: "Ich habe 20 Jahre damit verbracht, mich selbst zu finden… Aber wo bin ich?" - }, - "victory": { - 1: "Diesmal bin ich gestolpert!", - 2: "Oh, ich glaube, ich bin verloren.", - 3: "Sackgasse!", - 4: "Warte eine Sekunde! Hey! Weißt du nicht, wer ich bin?" - }, - }, - "ace_trainer": { - "encounter": { - 1: "Du scheinst ziemlich zuversichtlich zu sein.", - 2: "Deine Pokémon… Zeig sie mir…", - 3: "Weil ich ein Ass-Trainer bin, denken die Leute, ich sei stark.", - 4: "Weißt du, was es braucht, um ein Ass-Trainer zu sein?" - }, - "victory": { - 1: "Ja… Du hast gute Pokémon…", - 2: "Was?! Aber ich bin ein Kampfgott!", - 3: "Natürlich, du bist der Hauptcharakter!", - 4: "OK! OK! Du könntest ein Ass-Trainer sein!" - }, - "defeat": { - 1: "Ich widme meinen Körper und meine Seele den Pokémon-Kämpfen!", - 2: "Alles innerhalb meiner Erwartungen… Nichts Überraschendes…", - 3: `Ich dachte, ich würde zu einem zerbrechlichen Menschen heranwachsen, - $der aussieht, als würde er zerbrechen, wenn du ihn zu fest drückst.`, - 4: "Natürlich bin ich stark und verliere nicht. Es ist wichtig, dass ich anmutig gewinne." - } - }, - "parasol_lady": { - "encounter": { - 1: "Zeit, das Schlachtfeld mit Eleganz und Anmut zu betreten!", - }, - "victory": { - 1: "Meine Eleganz bleibt ungebrochen!", - } - }, - "twins": { - "encounter": { - 1: "Mach dich bereit, denn wenn wir zusammenarbeiten, gibt es doppelten Ärger!", - 2: "Zwei Herzen, eine Strategie – mal sehen, ob du mit unserer Zwillingskraft mithalten kannst!", - 3: "Hoffe, du bist bereit für doppelten Ärger, denn wir werden dir einheizen!" - }, - "victory": { - 1: "Wir haben vielleicht diese Runde verloren, aber unsere Bindung bleibt unzerbrechlich!", - 2: "Unser Zwillingsgeist wird nicht lange getrübt bleiben.", - 3: "Wir werden als dynamisches Duo stärker zurückkommen!" - }, - "defeat": { - 1: "Zwillingskraft herrscht vor!", - 2: "Zwei Herzen, ein Triumph!", - 3: "Doppelte Freude, doppelter Siegestanz!" - } - }, - "cyclist": { - "encounter": { - 1: "Mach dich bereit, meinen Staub zu schlucken!", - 2: "Mach dich bereit, Herausforderer! Ich werde dich im Staub zurücklassen!", - 3: "Volle Fahrt voraus, mal sehen, ob du mithalten kannst!" - }, - "victory": { - 1: "Die Speichen stehen still, aber die Entschlossenheit dreht weiter.", - 2: "Abgehängt!", - 3: "Der Weg zum Sieg hat viele Kurven und Wendungen, die es noch zu erkunden gilt." - }, - }, - "black_belt": { - "encounter": { - 1: "Ich lobe deinen Mut, mich herauszufordern! Denn ich bin derjenige mit dem stärksten Tritt!", - 2: "Oh, ich verstehe. Möchtest du in Stücke geschnitten werden? Oder bevorzugst du die Rolle des Punchingballs?" - }, - "victory": { - 1: "Oh. Die Pokémon haben gekämpft. Mein starker Tritt hat überhaupt nicht geholfen.", - 2: "Hmmm… Wenn ich sowieso verlieren würde, wollte ich wenigstens total vermöbelt werden." - }, - }, - "battle_girl": { - "encounter": { - 1: "Du musst mich nicht beeindrucken. Du kannst gegen mich verlieren.", - }, - "victory": { - 1: "Es ist schwer, sich zu verabschieden, aber uns läuft die Zeit davon…", - }, - }, - "hiker": { - "encounter": { - 1: "Mein mittelalterlicher Bauch gibt mir so viel Gravitas wie die Berge, die ich besteige!", - 2: "Ich habe diesen kräftigen Körper von meinen Eltern geerbt… Ich bin wie eine lebende Bergkette…", - }, - "victory": { - 1: "Zumindest kann ich nicht verlieren, wenn es um BMI geht!", - 2: "Es ist nicht genug… Es ist nie genug. Mein schlechtes Cholesterin ist nicht hoch genug…" - }, - }, - "ranger": { - "encounter": { - 1: "Wenn ich von der Natur umgeben bin, hören die meisten anderen Dinge auf, wichtig zu sein.", - 2: "Wenn ich ohne die Natur in meinem Leben lebe, fühle ich mich wie ein Fisch ohne Wasser." - }, - "victory": { - 1: "Es spielt keine Rolle für die Weite der Natur, ob ich gewinne oder verliere…", - 2: "So etwas ist ziemlich trivial im Vergleich zu den erdrückenden Gefühlen des Stadtlebens." - }, - "defeat": { - 1: "Ich habe den Kampf gewonnen. Aber der Sieg ist nichts im Vergleich zur Weite der Natur…", - 2: "Ich bin sicher, das mein Sieg nur dank der Natur möglich war." - } - }, - "scientist": { - "encounter": { - 1: "Meine Forschung wird diese Welt zu Frieden und Freude führen.", - }, - "victory": { - 1: "Ich bin ein Genie… Ich sollte nicht gegen jemanden wie dich verlieren…", - }, - }, - "school_kid": { - "encounter": { - 1: "…Heehee. Ich bin zuversichtlich in meine Berechnungen und Analysen.", - 2: "Ich sammle so viel Erfahrung wie möglich, weil ich eines Tages ein Arenaleiter sein möchte." - }, - "victory": { - 1: "Ohhhh… Berechnungen und Analysen sind kein Gegner für den Zufall…", - 2: "Auch schwierige, anstrengende Erfahrungen haben ihren Zweck, denke ich." - } - }, - "artist": { - "encounter": { - 1: "Früher war ich beliebt, aber jetzt bin ich völlig veraltet.", - }, - "victory": { - 1: "Mit der Zeit ändern sich auch die Werte. Das habe ich zu spät erkannt.", - }, - }, - "guitarist": { - "encounter": { - 1: "Mach dich bereit, den Rhythmus der Niederlage zu spüren, während ich meinen Weg zum Sieg spiele!", - }, - "victory": { - 1: "Für den Moment zum Schweigen gebracht, aber meine Melodie der Widerstandsfähigkeit wird weiterspielen.", - }, - }, - "worker": { - "encounter": { - 1: "Es stört mich, dass die Leute mich immer missverstehen. Ich bin garnicht so grob wie alle denken.", - }, - "victory": { - 1: "Ich will wirklich nicht, dass meine Haut verbrennt, also möchte ich im Schatten arbeiten.", - }, - }, - "worker_female": { - "encounter": { - 1: "Es stört mich, dass die Leute mich immer missverstehen. Ich bin garnicht so grob wie alle denken." - }, - "victory": { - 1: "Ich will wirklich nicht, dass meine Haut verbrennt, also möchte ich im Schatten arbeiten." - }, - "defeat": { - 1: "Mein Körper und mein Geist sind nicht immer unbedingt synchron." - } - }, - "worker_double": { - "encounter": { - 1: "Ich zeige dir, dass wir dich brechen können. Wir haben auf dem Feld trainiert!", - }, - "victory": { - 1: "Wie seltsam… Wie konnte das passieren… Ich hätte nicht ausgemuskelt werden sollen.", - }, - }, - "hex_maniac": { - "encounter": { - 1: `Ich höre normalerweise nur klassische Musik, aber wenn ich verliere, - $werde ich ein bisschen New Age ausprobieren!`, - 2: "Ich werde mit jeder Träne stärker, die ich weine." - }, - "victory": { - 1: "Ist das der Beginn des Zeitalters des Wassermanns? Ich bin bereit für die Veränderung.", - 2: "Jetzt kann ich noch stärker werden. Ich wachse mit jedem Groll." - }, - "defeat": { - 1: "New Age bezieht sich einfach auf Komponisten der klassischen Musik des 20. Jahrhunderts, richtig?", - 2: `Lass dich nicht von Traurigkeit oder Frustration aufhalten. - $Du kannst deine Groll nutzen, um dich zu motivieren.` - } - }, - "psychic": { - "encounter": { - 1: "Hallo! Konzentrier dich!", - }, - "victory": { - 1: "Eeeeek!", - }, - }, - "officer": { - "encounter": { - 1: "Bereite dich vor, denn die Gerechtigkeit wird gleich vollstreckt!", - 2: "Bereit, das Gesetz zu verteidigen und die Gerechtigkeit auf dem Schlachtfeld zu wahren!" - }, - "victory": { - 1: "Die Gerechtigkeit auf meinen Schultern fühlt sich schwerer an denn je…", - 2: "Die Schatten der Niederlage schweben über dem Revier." - } - }, - "beauty": { - "encounter": { - 1: "Mein letzter Kampf überhaupt… So möchte ich, dass wir diesen Kampf sehen…", - }, - "victory": { - 1: "Es war schön… Lass uns irgendwann wieder einen letzten Kampf haben…", - }, - }, - "baker": { - "encounter": { - 1: "Hoffe, du bist bereit, die Niederlage zu schmecken!" - }, - "victory": { - 1: "Ich werde ein Comeback backen." - }, - }, - "biker": { - "encounter": { - 1: "Zeit, aufzudrehen und dich im Staub zurückzulassen!" - }, - "victory": { - 1: "Ich werde für das nächste Rennen tunen." - }, - }, - "archer": { - "encounter": { - 1: "Bevor du weitergehst, lass uns sehen, wie du dich gegen uns, Team Rocket, schlägst!", - 2: `Ich habe Berichte erhalten, dass deine Fähigkeiten nicht unbedeutend sind. - $Mal sehen, ob sie wahr sind.`, - 3: `Ich bin Atlas, ein Vorstand von Team Rocket. - $Und ich mache es den Feinden unserer Organisation nicht leicht.` - }, - "victory": { - 1: "Was für ein Fehler!", - 2: "Mit meinen aktuellen Fähigkeiten war ich der Aufgabe doch nicht gewachsen.", - 3: "V-verzeih mir, Giovanni... Dass ich von einem einfachen Trainer besiegt wurde..." - } - }, - "ariana": { - "encounter": { - 1: `Halt! Wir können niemanden herumlaufen lassen. - $Es ist schädlich für den Stolz von Team Rocket, verstehst du.`, - 2: `Ich weiß nicht und es ist mir egal, ob das, was ich tue, richtig oder falsch ist... - $Ich vertraue einfach auf Giovanni und tue, was mir gesagt wird.`, - 3: "Dein Trip endet hier. Ich werde dich erledigen!" - }, - "victory": { - 1: `Tch, du bist wirklich stark. Es ist schade. - $Wenn du Team Rocket beitreten würdest, könntest du ein Vorstand werden.`, - 2: "Ich... ich bin zerstört...", - 3: "Aaaieeeee! Das kann nicht passieren! Ich habe hart gekämpft, aber trotzdem verloren..." - } - }, - "proton": { - "encounter": { - 1: "Was willst du? Wenn du unsere Arbeit unterbrichst, erwarte keine Gnade!", - 2: `Was haben wir hier? Ich werde oft als der gruseligste und grausamste Typ bei Team Rocket bezeichnet… - $Ich rate dir dringend, dich nicht in unsere Geschäfte einzumischen!`, - 3: "Ich bin Proton, ein Admin von Team Rocket. Ich bin hier, um deinem Einmischen ein Ende zu setzen!" - }, - "victory": { - 1: "Die Festung ist gefallen! Alle Mann zurückziehen!", - 2: "Du hast diesmal gewonnen… Aber alles, was du getan hast, war, den Zorn von Team Rocket zu vergrößern…", - 3: "Ich bin besiegt… Aber ich werde das nicht vergessen!" - } - }, - "petrel": { - "encounter": { - 1: `Muhahaha, wir haben auf dich gewartet. Ich? Du weißt nicht, wer ich bin? Ich bin Giovanni. - $Der majestätische Giovanni höchstpersönlich! Wahahaha! - $…Huh? Ich klinge überhaupt nicht wie Giovanni? - $Ich sehe nicht einmal aus wie Giovanni? - $Wie kommt das? Ich habe so hart daran gearbeitet, ihn nachzuahmen!`, - 2: "Ich bin Lambda, ein Admin von Team Rocket. Ich werde nicht zulassen, dass du unsere Pläne störst!", - 3: "Rocket Vorstand Lambda wird sich um diesen Eindringling kümmern!" - }, - "victory": { - 1: "OK, OK. Ich sage dir, wo er ist.", - 2: "Ich… Ich konnte nichts tun… Giovanni, bitte vergib mir…", - 3: "Nein, ich kann das nicht auf mich sitzen lassen. Ich muss die anderen informieren…" - } - }, - "tabitha": { - "encounter": { - 1: "Hehehe! Du bist also bis hierher gekommen! Aber du bist zu spät!", - 2: `Hehehe... Schon hier, oder? Wir haben dich unterschätzt! Aber das war's! - $Ich bin eine Klasse über den Rüpeln, die du bisher gesehen hast. Ich halte dich nicht hin. - $Ich werde dich zermalmen!`, - 3: "Ich werde dir eine kleine Kostprobe des Schmerzes geben! Ergebe dich!" - }, - "victory": { - 1: `Hehehe! Du hast mich vielleicht besiegt, aber du hast keine Chance gegen den Boss! - $Wenn du jetzt aufgibst, musst du dich keiner ordentlichen Tracht Prügel stellen!`, - 2: "Hehehe... Also habe ich auch verloren...", - 3: "Ahya! Wie konnte das passieren? Ein Vorstand wie ich von einem zufälligen Trainer besiegt..." - } - }, - "courtney": { - "encounter": { - 1: `Das Ding... Das Ding, das du hältst... Das ist es, was... - $Das ist es, wonach wir von Team Magma suchen...`, - 2: "... Nun dann... Auslöschen...", - 3: `...?! Du... Hm... ♪ Das trifft sich ausgezeichnet... ♪ - $Dann hole ich mir eben zuerst deine Pokémon... Her damit...` - }, - "victory": { - 1: "... ...Ändere... die Welt.", - 2: `Wie erwartet. Unerwartet. Du. Ziel erfasst... abgeschlossen. - $Beginne... Experiment. Du. Für immer. Aha... ♪`, - 3: "...Schon wieder? Das war unerwartet. ...Ich wusste es. Du... bist interessant! ...Haha. ♪" - } - }, - "shelly": { - "encounter": { - 1: `Ahahahaha! Du wirst dich in die Angelegenheiten von Team Aqua einmischen? - $Du bist entweder absolut furchtlos, einfach unwissend oder beides! - $Du bist so süß, dass es ekelhaft ist! Ich werde dich erledigen.`, - 2: "Was ist das? Wer ist dieser verwöhnte Gör?", - 3: "Beruhige dich. Sei geduldig. Ich werde dich gleich zermalmen." - }, - "victory": { - 1: `Ahahahaha! Wir wurden unerwartet gestört! Uns bleiben keine Optionen. - $Wir müssen uns zurückziehen. Aber das ist nicht das letzte Mal, dass du Team Aqua siehst! - $Wir haben andere Pläne! Vergiss das nicht!`, - 2: "Ahhh?! War ich zu nachsichtig mit dir?!", - 3: `Uh. Willst du mir sagen, dass du während des Kampfes noch besser geworden bist? - $Du bist ein Gör mit einer glänzenden Zukunft… - $Meine Pokémon und ich haben keine Kraft mehr zu kämpfen… - $Geh weiter… Geh und werde von Adrian zerstört.` - } - }, - "matt": { - "encounter": { - 1: `Hoohahaha! Was, hast du eine Schraube locker oder so? - $Sieh dich an, kleiner Makuhita-ähnlicher Trainer!`, - 2: "Oho! Du! Du bist das lustige Kind!", - 3: "Was machst du hier? Bist du uns gefolgt?" - }, - "victory": { - 1: "Na gut, bis der Boss Zeit für dich hat, werde ich dein Gegner sein!", - 2: `Ich kann es fühlen! Ich kann es spüren, das ist klar! Die Stärke, die von dir ausgeht! - $Mehr! Ich will noch mehr! Aber es sieht so aus, als hätten wir keine Zeit mehr...`, - 3: `Das war Spaß! Ich wusste, dass du mir eine gute Zeit bieten würdest! - $Ich freue mich darauf, dich eines Tages wieder zu treffen!` - } - }, - "mars": { - "encounter": { - 1: "Ich bin Mars, eine der obersten Commander von Team Galaktik.", - 2: "Die Vision von Team Galaktik für die Zukunft ist unbeirrt. Opposition wird gnadenlos zerschlagen!", - 3: "Fühlst du dich nervös? Das solltest du!" - }, - "victory": { - 1: "Das kann nicht passieren! Wie habe ich verloren?!", - 2: "Du hast etwas Können, das muss ich zugeben.", - 3: "Besiegt... Das war ein teurer Fehler." - } - }, - "jupiter": { - "encounter": { - 1: "Jupiter, Commander von Team Galaktik, zu Diensten.", - 2: "Widerstand ist zwecklos. Team Galaktik wird siegen!", - 3: "Du zitterst... Schon Angst?" - }, - "victory": { - 1: "Unmöglich... Ich habe verloren?!", - 2: "Beeindruckend, du hast Mut!", - 3: "So zu verlieren... Wie peinlich." - } - }, - "saturn": { - "encounter": { - 1: "Ich bin Saturn, Commander von Team Galaktik.", - 2: "Unsere Mission ist absolut. Jeder Widerstand wird vernichtet!", - 3: "Ist das Angst, die ich in deinen Augen sehe?" - }, - "victory": { - 1: "Unmöglich... Von dir besiegt?!", - 2: "Du hast dich als würdiger Gegner erwiesen.", - 3: "Besiegt in der Niederlage... Das ist inakzeptabel." - } - }, - "zinzolin": { - "encounter": { - 1: "Du könntest eine Bedrohung für Team Plasma werden, also werden wir dich hier und jetzt eliminieren!", - 2: "Oh, zum Heulen... Ich hatte nicht erwartet, in dieser eisigen Kälte kämpfen zu müssen!", - 3: "Du bist ein beeindruckender Trainer, dass du es so weit geschafft hast. Aber hier endet es." - }, - "victory": { - 1: "G-Cis... Ich habe versagt...", - 2: "Es ist bitterkalt. Ich zittere. Ich leide. Doch ich stehe immer noch siegreich da.", - 3: "Hm. Du bist ein klügerer Trainer, als ich erwartet habe, aber nicht klug genug." - } - }, - "rood": { - "encounter": { - 1: "Du bist eine Bedrohung für Team Plasma. Wir können dich hier und jetzt nicht laufen lassen!", - 2: "Oh, dieser eisige Wind... Ich hätte nie gedacht, dass ich hier kämpfen müsste!", - 3: "Du bist ein bemerkenswerter Trainer, dass du es bis hierher geschafft hast. Aber hier wird es enden." - }, - "victory": { - 1: "G-Cis... Ich habe meine Mission nicht erfüllt...", - 2: "Die Kälte ist durchdringend. Ich zittere. Ich leide. Doch ich habe gesiegt.", - 3: "Hm. Du bist ein talentierter Trainer, aber leider nicht talentiert genug." - } - }, - "xerosic": { - "encounter": { - 1: "Ah ha ha! Es wäre mir ein Vergnügen. Komm schon, kleiner Trainer! Zeig mir, was du drauf hast!", - 2: "Hm... Du bist mächtiger, als du aussiehst. Ich frage mich, wie viel Energie in dir steckt.", - 3: "Ich habe auf dich gewartet! Ich muss ein wenig Forschung an dir betreiben! Komm, lass uns beginnen!" - }, - "victory": { - 1: "Ah, du bist ziemlich stark. Oh ja—sehr stark, in der Tat.", - 2: "Ding-ding-ding! Du hast es geschafft! Dem Sieger gebührt die Beute!", - 3: "Wunderbar! Erstaunlich! Du hast enorme Fähigkeiten und Mut!" - } - }, - "bryony": { - "encounter": { - 1: "Ich bin Begonia, und es wäre mir ein Vergnügen, gegen dich zu kämpfen. Zeig mir, was du drauf hast.", - 2: "Beeindruckend... Du bist mächtiger, als du aussiehst. Zeig mir das wahre Ausmaß deiner Energie.", - 3: "Ich habe deine Ankunft erwartet. Es ist Zeit für einen kleinen Test. Sollen wir beginnen?" - }, - "victory": { - 1: "Du bist ziemlich stark. Oh ja—sehr stark, in der Tat.", - 2: "Ding-ding-ding! Du hast dich gut geschlagen. Der Sieg gehört dir.", - 3: "Wunderbar! Bemerkenswert! Deine Fähigkeiten und dein Mut sind lobenswert." - } - }, - "firebreather": { - "encounter": { - 1: "Meine Flammen werden dich verschlingen!", - 2: "Meine Seele hat Feuer gefangen. Ich werde dir zeigen, wie heiß sie brennt!", - 3: "Komm näher und sieh dir meine Flammen an!" - }, - "victory": { - 1: "Verbrannt bis zur Asche...", - 2: "Yow! Das ist heiß!", - 3: "Auuu! Ich habe mir die Nasenspitze verbrannt!" - }, - }, - "sailor": { - "encounter": { - 1: "Matrose, du gehst über Bord, wenn du verlierst!", - 2: "Komm schon! Mein Stolz als Seemann steht auf dem Spiel!", - 3: "Ahoj! Bist du seekrank?" - }, - "victory": { - 1: "Argh! Von einem Kind besiegt!", - 2: "Dein Geist hat mich versenkt!", - 3: "Ich glaube, ich bin der der seekrank ist..." - }, - }, - "rocket_grunt": { - "encounter": { - 1: `Jetzt gibt es Ärger!… - $und es kommt noch härter! - $Wir wollen über die Erde regieren… - $und naja du kennst den Rest…!`, - 2: "Wir führen gerade eine große Operation durch. Hast du vor uns zu stören?", - 3: "Gib uns deine Pokémon, oder stelle dich dem Zorn von Team Rocket!", - 4: "Team Rocket wird seinen Plan zur Vollendung bringen, Aus dem Weg!", - 5: "Los, gib uns deine Pokémon. Wir brauchen sie für unseren Plan!" - }, - "victory": { - 1: "Das war mal wieder ein Schuss in den Ofen!", - 2: "Dem Boss wird das aber nicht gefallen!", - 3: "Ich habe es vermasselt!", - 4: "Meine Kollegen werden das nicht tolerieren!", - 5: "Team Rocket wird wiederkehren! Das sage ich Jessie und James!" - }, - }, - "magma_grunt": { - "encounter": { - 1: "Keiner, der sich Team Magma in den Weg stellt, bekommt Gnade, nicht einmal Kinder!", - 2: "Störe besser nicht unsere Pläne! Wir formen die Welt nach unseren Vorstellungen!", - 3: "Du stehst uns im Weg! Team Magma hat keine Zeit für Störenfriede wie dich!", - 4: "Bereite dich auf die Hölle vor, denn es wird bald sehr heiß!", - 5: "Wir werden die Macht des Vulkans entfesseln! Es wird gewaltig sein! Mach dich bereit!" - }, - "victory": { - 1: "Wie kann das sein? Ich bin Teil des mächtigen Team Magma! Wir streben nach der Verbesserung der Welt...", - 2: "Unglaublich, dass ich verloren habe! Mit meinen mächtigen Pokémon.", - 3: "Das kann nicht sein! Ich hab doch viel mehr Erfahrung als du!", - 4: "Verdammt... Ich hätte sofort in unser Versteck fliehen sollen...", - 5: "Du hast mich besiegt... Der Boss wird mich dafür zur Rechenschaft ziehen." - }, - }, - "aqua_grunt": { - "encounter": { - 1: "Du willst dich also mit Team Aqua anlegen? Du traust dich ja was… Dich werfe ich über Bord!", - 2: "Du hast ganz schön Mut, dich mit Team Aqua anzulegen!", - 3: "Ich hoffe du hast einen Regenschirm dabei. Hier wird es jetzt nass!", - 4: "Wir, Team Aqua, existieren zum Wohle aller!", - 5: "Bereite dich darauf vor, von den Fluten meiner Pokémon weggespült zu werden!" - }, - "victory": { - 1: "Vielleicht sollte ich wohl lieber selber über die Planke gehen…", - 2: "Arrgh, ich habe nicht damit gerechnet, von einer Landratte gestört zu werden!", - 3: "Ich habe verloren?! Ich schätze, ich muss jetzt zurück zum Versteck schwimmen...", - 4: "Oh Mann, was für eine Katastrophe... Der Boss wird wütend sein...", - 5: "Du hast mich besiegt... Meinst du, der Boss wird mich dafür kielholen lassen?" - }, - }, - "galactic_grunt": { - "encounter": { - 1: "Team Galaktik wird die Welt in eine bessere verwandeln! Und du wirst uns nicht aufhalten!", - 2: "Erlebe die Macht unserer Technologie und die Zukunft, die wir uns vorstellen!", - 3: "Im Namen von Team Galaktik werde ich jeden beseitigen, der uns im Weg steht!", - 4: "Mach dich bereit zu verlieren!", - 5: "Hoffentlich bist du bereit für eine kosmische Niederlage!" - }, - "victory": { - 1: "Zyrus wird uns für diese Niederlage bestrafen…", - 2: "Dieser Rückschlag bedeutet nichts in Hinsicht unseres großen Plans.", - 3: "Unsere Pläne sind größer als diese Niederlage.", - 4: "Wie ist das möglich?!", - 5: "Notiz an mich selbst: Pokémon-Kämpfe üben, so bald wie möglich." - }, - }, - "plasma_grunt": { - "encounter": { - 1: "Pokémon sollten frei sein! Team Plasma wird sie befreien!", - 2: "Wenn ich gegen dich gewinne, lass deine Pokémon frei!", - 3: "Wenn du Team Plasma im Weg stehst, werde ich mich um dich kümmern!", - 4: "Team Plasma wird Pokémon von egoistischen Menschen wie dir befreien!", - 5: "Lass dich von unserem Aussehen nicht täuschen. Unsere Kampffähigkeiten sind überragend!" - }, - "victory": { - 1: "Wie konnte ich verlieren? Ich dachte, ich würde die Welt retten...", - 2: "Wie konnte ich nur verlieren...", - 3: "...Dieses Pokémon ist zu schwach, ich werde stärkere beschaffen müssen!", - 4: "Große Pläne stoßen immer auf Hindernisse.", - 5: "Das ist ein schwerer Rückschlag für Team Plasma..." - }, - }, - "flare_grunt": { - "encounter": { - 1: "Deine Pokémon haben keine Chance gegen die Überlegenheit von Team Flare.", - 2: "Mach dich bereit, denn gleich wird es hier lichterloh brennen!", - 3: "Team Flare wird die Welt von allen Makeln befreien!", - 4: "Bereite dich auf die unvergleichliche Macht von Team Flare vor!", - 5: "Unsere Mission steht über allem, sogar über der Mode!" - }, - "victory": { - 1: "Diese Niederlage wirft einen Schatten auf meine Zukunft.", - 2: "Es scheint, dass ich meine Strategien überdenken muss. Zurück ans Reißbrett.", - 3: "Unglaublich?! Ich habe verloren?!", - 4: "Selbst in der Niederlage bleibt Team Flare unübertroffen in seiner Eleganz.", - 5: "Du hast mich besiegt, aber Team Flare wird immer in Glanz und Stil erstrahlen." - }, - }, - "rocket_boss_giovanni_1": { - "encounter": { - 1: `Ich bin beeindruckt, du hast es bis hierher geschafft! - $Ich bin Giovanni, der Anführer von Team Rocket! - $Wir regieren den Untergrund von Kanto! - $Und wir lassen sicherlich nicht zu, dass ein Kind uns aufhält!` - - }, - "victory": { - 1: "Ich ziehe mich zurück, aber ich werde zurückkehren! Team Rocket wird niemals besiegt werden!" - }, - "defeat": { - 1: `Merke dir meine Worte. Nicht in der Lage zu sein, - $deine eigene Stärke zu messen, zeigt, dass du immer noch ein Kind bist.` - } - }, - "rocket_boss_giovanni_2": { - "encounter": { - 1: "Du schon wieder… Wie hast du mich gefunden? Team Rocket wird dich endlich aus der Welt schaffen!" - }, - "victory": { - 1: "Wie ist das möglich...? Der kostbare Traum von Team Rocket ist nicht mehr als eine Illusion geworden..." - }, - "defeat": { - 1: "Team Rocket wird niemals besiegt werden! Ich werde zurückkehren!" - } - }, - "magma_boss_maxie_1": { - "encounter": { - 1: `Die Welt ist nicht perfekt. Ich werde sie verbessern, indem ich sie neu erschaffe! - $Wir brauchen mehr Landmassen um zu leben! Team Magma wird dieses Ziel mit aller Macht erreichen!` - }, - "victory": { - 1: "Ugh! Das entspricht nicht meinen Berechnungen! Wie konnte ich verlieren? Wir sehen uns wieder!" - }, - "defeat": { - 1: "Team Magma wird weiterhin die Welt verbessern!" - } - }, - "magma_boss_maxie_2": { - "encounter": { - 1: `Du bist das letzte Hindernis, das zwischen mir und meinen Zielen steht. - $Mach dich bereit durch die Macht von Team Magma besiegt zu werden!` - }, - "victory": { - 1: "Das... Das kann nicht sein...", - }, - "defeat": { - 1: "Und jetzt werde ich diesen Planeten terraformen, um ihn ideal für die Menschheit zu machen." - } - }, - "aqua_boss_archie_1": { - "encounter": { - 1: "Ich bin Adrian, der Anführer von Team Aqua! Wir werden die Welt mit Wasser überfluten!" - }, - "victory": { - 1: "Lass uns mal wieder treffen. Ich werde mir sicher sein, dass ich dieses Gesicht wiedererkenne." - }, - "defeat": { - 1: "Brilliant! Mein Team wird jetzt nicht zurückhalten!" - } - }, - "aqua_boss_archie_2": { - "encounter": { - 1: "Ich habe lange auf diesen Tag gewartet. Das ist die wahre Macht von Team Aqua!" - }, - "victory": { - 1: "So habe ich mir das nicht vorgestellt..." - }, - "defeat": { - 1: "Ich werde alles in dieser Welt in seinen ursprünglichen, reinen Zustand zurückversetzen!!" - } - }, - "galactic_boss_cyrus_1": { - "encounter": { - 1: `Du wurdest von leerer Gefühlsduselei hierher getrieben. - $Ich werde dich bereuen lassen, auf dein Herz gehört zu haben!` - }, - "victory": { - 1: "Interessant. Und ziemlich eigenartig." - }, - "defeat": { - 1: "Ich werde meine neue Welt erschaffen..." - } - }, - "galactic_boss_cyrus_2": { - "encounter": { - 1: `So sehen wir uns wieder. Es scheint, als wären unsere Schicksale miteinander verflochten. - $Aber hier und jetzt werde ich diese Verbindung brechen!` - }, - "victory": { - 1: "Wie? Wie? WIE?!" - }, - "defeat": { - 1: "Bis bald." - } - }, - "plasma_boss_ghetsis_1": { - "encounter": { - 1: "Ich werde nicht zulassen, dass mich jemand aufhält! Egal wer es auch sein mag!" - }, - "victory": { - 1: "Wie kann das sein? Ich bin der Schöpfer von Team Plasma! Ich bin perfekt!" - }, - "defeat": { - 1: "Ich bin der perfekte Herrscher einer perfekten neuen Welt! Mwa ha ha!" - } - }, - "plasma_boss_ghetsis_2": { - "encounter": { - 1: "Komm schon! Ich will dein Gesicht sehen, in dem Moment, in dem du alle Hoffnung verlierst!" - }, - "victory": { - 1: "Meine Berechnungen... Nein! Meine sorgfältigen Pläne! Die Welt sollte mir gehören!" - }, - "defeat": { - 1: "Kyurem! Verwende Absorptionsfusion!" - } - }, - "flare_boss_lysandre_1": { - "encounter": { - 1: "DU willst mich aufhalten? Dann zeig mir deine Stärke in einem Kampf!" - }, - "victory": { - 1: `Du bist hier, um mich aufzuhalten. Aber ich bitte dich zu warten. - $Ich bin so kurz davor, meine Vision zu verwirklichen.` - }, - "defeat": { - 1: "Pokémon... Sollten nicht mehr existieren." - } - }, - "flare_boss_lysandre_2": { - "encounter": { - 1: `Die Zukunft, die du willst, oder die Zukunft, die ich will... - $Lass uns sehen, welche mehr zu existieren verdient, sollen wir?` - }, - "victory": { - 1: "Die Zukunft, die ich erschaffen wollte... Es ist vorbei..." - }, - "defeat": { - 1: "Narren ohne Vision werden weiterhin diese wunderschöne Welt verunreinigen." - } - }, - "brock": { - "encounter": { - 1: "Meine Expertise in Bezug auf Gesteins-Pokémon wird dich besiegen! Komm schon!", - 2: "Meine felsenfeste Entschlossenheit wird dich überwältigen!", - 3: "Ich bin ein harter Fels, der nicht so leicht zu brechen ist!" - }, - "victory": { - 1: "Die Stärke deiner Pokémon hat meine steinharte Verteidigung überwunden!", - 2: "Die Welt ist riesig! Ich bin froh, dass ich die Chance hatte, gegen dich zu kämpfen.", - 3: "Perhaps I should go back to pursuing my dream as a Pokémon Breeder…" - }, - "defeat": { - 1: "Der beste Angriff ist eine gute Verteidigung!\nDas ist meine Art, Dinge zu tun!", - 2: "Komm und studiere Felsen mit mir, um besser zu lernen wie man gegen sie kämpft!", - 3: "Meine Reisen durch die Regionen zahlen sich aus!" - } - }, - "misty": { - "encounter": { - 1: "Meine Taktik ist ein Frontalangriff mit Wasser-Pokémon!", - 2: "Hiya! Ich zeige dir die Stärke meiner Wasser-Pokémon!", - 3: `Mein Traum war es, auf eine Reise zu gehen und gegen starke Trainer zu kämpfen… - $Wirst du eine ausreichende Herausforderung sein?` - }, - "victory": { - 1: "Du bist wirklich stark… Ich gebe zu, du hast es drauf…", - 2: "Du weißt, dass du nur Glück hattest, oder?", - 3: "Wow, ich kann nicht glauben, dass du mich besiegt hast!" - }, - "defeat": { - 1: "War die mächtige Misty zu viel für dich?", - 2: "Ich hoffe, du hast die eleganten Schwimmtechniken meiner Pokémon gesehen!", - 3: "Deine Pokémon waren keine Herausforderung für meine geliebten Pokémon!" - } - }, - "lt_surge": { - "encounter": { - 1: "Meine Elektro-Pokémon haben mich im Krieg gerettet! Ich werde dir zeigen, wie!", - 2: "Du wirst um Gnade winseln, wenn ich dich geschockt habe!", - 3: "Ich werde dich genau so zappen, wie ich es mit all meinen Feinden im Kampf mache!" - }, - "victory": { - 1: "Whoa! Dein Team ist echt stark!", - 2: "Aaargh, du bist stark! Selbst meine elektrischen Tricks haben gegen dich verloren.", - 3: "Das war ein absolut schockierender Verlust!" - }, - "defeat": { - 1: "Oh ja! Wenn es um Elektro-Pokémon geht, bin ich weltweit die Nummer eins!", - 2: "Hahaha! Das war ein elektrisierender Kampf!", - 3: "Ein Pokémon-Kampf ist Krieg, und ich habe dir den Nahkampf gezeigt!" - } - }, - "erika": { - "encounter": { - 1: "Ah, das Wetter ist hier so schön…\nOh, ein Kampf? Nun gut.", - 2: "Meine Pokémon-Kampffähigkeiten stehen in Konkurrenz zu meinen Blumenarrangierfähigkeiten.", - 3: "Oh, ich hoffe, der angenehme Duft meiner Pokémon lässt mich nicht wieder einschlafen…", - 4: "Blumen in einem Garten zu sehen ist so beruhigend.", - }, - "victory": { - 1: "Oh! Ich gestehe meine Niederlage ein.", - 2: "Dieser Kampf war so entspannend.", - 3: "Ah, es scheint, dass ich verloren habe…", - 4: "Na immerhin habe ich noch meine Blumen." - }, - "defeat": { - 1: "Ich hatte Angst, dass ich einschlafen würde…", - 2: "Es scheint, als hätten meine Pflanzen-Pokémon dich überwältigt.", - 3: "Dieser Kampf war eine so beruhigende Erfahrung.", - 4: "Das war alles?" - } - }, - "janine": { - "encounter": { - 1: "Ich meistere die Kunst der giftigen Angriffe. Ich werde heute mit dir trainieren!", - 2: "Vater vertraut darauf, dass ich mich behaupten kann. Ich werde ihm recht geben!", - 3: "Meine Ninja-Techniken sind nur zweitrangig zu denen meines Vaters! Kannst du mithalten?" - }, - "victory": { - 1: "Selbst jetzt brauche ich noch Training… Ich verstehe.", - 2: "Dein Kampfstil hat meinen überwältigt.", - 3: "Ich werde mich wirklich anstrengen und meine Fähigkeiten verbessern." - }, - "defeat": { - 1: "Fufufu… das Gift hat dir all deine Kraft zum Kämpfen geraubt.", - 2: "Ha! Du hattest keine Chance gegen meine überlegenen Ninja-Fähigkeiten!", - 3: "Vaters Vertrauen in mich war nicht unbegründet." - } - }, - "sabrina": { - "encounter": { - 1: "Ich habe deine Ankunft in einer Vision gesehen!", - 2: "Ich mag es nicht zu kämpfen, aber wenn du darauf bestehst, werde ich dir meine Kräfte zeigen!", - 3: "Ich spüre große Ambitionen in dir. Ich werde sehen, ob sie begründet sind." - }, - "victory": { - 1: "Deine Kraft… Sie übertrifft bei weitem das, was ich vorausgesehen habe…", - 2: "Ich habe es nicht geschafft, deine Stärke genau vorherzusagen.", - 3: "Selbst mit meinen immensen psychischen Kräften kann ich niemanden spüren, der stärker ist als du." - }, - "defeat": { - 1: "Dieser Sieg… Genau so habe ich ihn in meinen Visionen gesehen!", - 2: "Vielleicht war es jemand anderes, den ich spürte…", - 3: `Verfeinere deine Fähigkeiten, bevor du unüberlegt in den Kampf stürzt. - $Du weißt nie, was die Zukunft bereithält, wenn du es tust…` - } - }, - "blaine": { - "encounter": { - 1: "Hah! Ich hoffe, du hast Feuerheiler mitgebracht!", - 2: "Meine feurigen Pokémon werden alle Herausforderer verbrennen!", - 3: "Mach dich bereit, mit dem Feuer zu spielen!" - }, - "victory": { - 1: "Ich habe mich bis auf die Knochen verbrannt! Nicht einmal Asche bleibt!", - 2: "Habe ich die Flammen nicht hoch genug geschürt?", - 3: "Ich bin komplett ausgebrannt… Aber das lässt meine Motivation, mich zu verbessern, noch heißer brennen!" - }, - "defeat": { - 1: "Mein wütendes Inferno kann nicht gelöscht werden!", - 2: "Meine Pokémon sind durch die Hitze dieses Sieges gestärkt worden!", - 3: "Hah! Meine Leidenschaft brennt heller als deine!" - } - }, - "giovanni": { - "encounter": { - 1: "Ich, der Anführer von Team Rocket, werde dir eine Welt voller Schmerz bereiten!", - 2: "Mein Training hier wird entscheidend sein, bevor ich mich wieder meinen alten Kollegen stelle.", - 3: "Ich denke dass du nicht auf die Ausmaße des Scheiterns vorbereitet bist, die du gleich erleben wirst!" - }, - "victory": { - 1: "WAS! Ich, verlieren?! Es gibt nichts, was ich dir sagen möchte!", - 2: "Hmm… Du wirst nie verstehen können, was ich zu erreichen versuche.", - 3: "Diese Niederlage ist nur ein kleiner Rückschlag.\nTeam Rocket wird aus der Asche auferstehen." - }, - "defeat": { - 1: "Das du nicht in der Lage bist, deine eigene Stärke einzuschätzen, zeigt, dass du noch ein Kind bist.", - 2: "Versuche nicht, dich wieder in meine Angelegenheiten einzumischen.", - 3: "Ich hoffe, du verstehst, wie dumm es war, mich herauszufordern." - } - }, - "roxanne": { - "encounter": { - 1: "Wärs du so freundlich und würdest mir zeigen, wie du kämpfst?", - 2: "Man lernt so viel, wenn man gegen viele Trainer kämpft.", - 3: "Oh, du hast mich beim Strategie entwickeln erwischt. Möchtest du kämpfen?" - }, - "victory": { - 1: "Oh, es scheint, als hätte ich verloren.", - 2: "Es scheint, als hätte ich noch so viel mehr zu lernen, wenn es um Kämpfe geht.", - 3: "Ich werde mir zu Herzen nehmen, was ich heute gelernt habe." - }, - "defeat": { - 1: "Ich habe so viele Dinge aus unserem Kampf gelernt. Ich hoffe, du auch.", - 2: `Ich freue mich darauf, wieder gegen dich zu kämpfen. - $Ich hoffe, du wirst das, was du hier gelernt hast, anwenden.`, - 3: "Ich habe gewonnen, weil ich alles gelernt habe." - } - }, - "brawly": { - "encounter": { - 1: "Oh man, ein Herausforderer!\nLass uns sehen, was du kannst!", - 2: "Du scheinst auf große Auftritte zu stehen.\nLass uns kämpfen", - 3: "Zeit, einen Sturm zu entfachen!\nLos geht's!" - }, - "victory": { - 1: "Oh wow, du hast mich überrumpelt!", - 2: "Du hast meinen Flow übernommen und mich besiegt!", - 3: "Ich fühle mich als hätte ich mich in der Granithöhle verirrt!" - }, - "defeat": { - 1: "Haha, ich surfe die große Welle! Fordere mich irgendwann wieder heraus.", - 2: "Surfe mal wieder mit mir!", - 3: "Genau wie die Gezeiten kommen und gehen, hoffe ich, dass du zurückkommst, um mich herauszufordern." - } - }, - "wattson": { - "encounter": { - 1: "Zeit, geschockt zu werden! Wahahahaha!", - 2: "Ich lass die Funken fliegen! Wahahahaha!", - 3: "Ich hoffe, du hast Para-Heiler dabei! Wahahahaha!" - }, - "victory": { - 1: "Scheint als wäre ich entladen! Wahahahaha!", - 2: "Du hast mich komplett geerdet! Wahahahaha!", - 3: "Danke für den Nervenkitzel! Wahahahaha!" - }, - "defeat": { - 1: "Lade deine Batterien wieder auf und fordere mich irgendwann wieder heraus! Wahahahaha!", - 2: "Ich hoffe du fandest unseren Kampf elektrisierend! Wahahahaha!", - 3: "Bist du nicht geschockt, dass ich gewonnen habe? Wahahahaha!" - } - }, - "flannery": { - "encounter": { - 1: "Nett dich zu kennenzulernen! Warte, nein… Ich werde dich zermalmen!", - 2: "Ich bin noch nicht lange Arenaleiterin, aber ich werde dich grillen!", - 3: "Es ist Zeit, dir die Kampftechniken zu zeigen, die mein Großvater mir beigebracht hat! Lass uns kämpfen!" - }, - "victory": { - 1: "Du erinnerst mich an meinen Großvater… Kein Wunder, dass ich verloren habe.", - 2: "Strenge ich mich zu sehr an? Ich sollte mich entspannen, ich darf mich nicht zu sehr aufregen.", - 3: "Zu verlieren wird meine Flamme nicht ersticken. Zeit, das Training wieder zu entfachen!" - }, - "defeat": { - 1: "Ich hoffe, ich habe meinen Großvater stolz gemacht… Lass uns irgendwann wieder kämpfen.", - 2: "Ich… Ich kann nicht glauben, dass ich gewonnen habe! Meine Art zu kämpfen hat funktioniert!", - 3: "Lass uns bald wieder heiße Moves austauschen!" - } - }, - "norman": { - "encounter": { - 1: "Ich bin überrascht, dass du es bis hierher geschafft hast. Lass uns kämpfen.", - 2: "Ich werde alles in meiner Macht stehende tun, um als Arenaleiter zu gewinnen. Los geht's!", - 3: "Du solltest alles geben! Lasst uns kämpfen!" - }, - "victory": { - 1: "Ich habe gegen dich verloren…? Das ist eine Überraschung.", - 2: "War der Umzug nach Hoenn die richtige Entscheidung? Ich bin mir nicht sicher.", - 3: "Ich kann es nicht fasen. Das war ein großartiger Kampf." - }, - "defeat": { - 1: "Wir haben beide unser Bestes gegeben. Ich hoffe, wir können bald wieder kämpfen.", - 2: "Du solltest versuchen, mein Kind herauszufordern. Du könntest etwas lernen!", - 3: "Danke für den tollen Kampf. Viel Glück beim nächsten Mal." - } - }, - "winona": { - "encounter": { - 1: "Ich bin durch die Lüfte geflogen und habe nach Beute gesucht… und du bist mein Ziel!", - 2: "Egal, wie unser Kampf ausgeht, meine Flug-Pokémon und ich werden mit Anmut triumphieren. Auf in den Kampf!", - 3: "Ich hoffe, du hast keine Höhenangst. Lasst uns aufsteigen!" - }, - "victory": { - 1: "Du bist der erste Trainer, den ich gesehen habe, der mehr Anmut hat als ich. Ausgezeichnet", - 2: "Meine Flug-Pokémon sind abgestürzt! Na gut.", - 3: "Auch wenn ich gefallen sein mag, meine Pokémon werden weiter fliegen!" - }, - "defeat": { - 1: "Meine Flug-Pokémon und ich werden für immer elegant tanzen!", - 2: "Ich hoffe du hast die Show genossen. Unser anmutiger Tanz ist beendet.", - 3: "Wirst du zurückkommen und unsere elegante Choreographie noch einmal sehen?" - } - }, - "tate": { - "encounter": { - 1: "Hehehe… Bist du überrascht, mich ohne meine Schwester zu sehen?", - 2: "Ich kann sehen, was du denkst… Du willst kämpfen!", - 3: "Wie kannst du jemanden besiegen der deine Gedanken lesen kann?" - }, - "victory": { - 1: "Ich kann es nicht ändern… Ich vermisse Svenja…", - 2: "Die Bande zwischen dir und deinen Pokémon ist stärker als meine.", - 3: "Zusammen mit Svenja wären wir unschlagbar gewesen. Wir können gegenseitig unsere Sätze beenden!" - }, - "defeat": { - 1: "Meine Pokémon und ich sind siegreich.", - 2: "Wenn du mich nicht besiegen kannst, wirst du auch niemals Svenja besiegen können.", - 3: "All das verdanke ich meinem strengen Training mit Svenja. Meine Pokémon und ich sind eins." - } - }, - "liza": { - "encounter": { - 1: "Hihihi… Bist du überrascht, mich ohne meinen Bruder zu sehen?", - 2: "Ich kann sehen, wonach du verlangst… Du willst kämpfen, oder?", - 3: "Wie kannst du jemanden besiegen, der eins mit seinen Pokémon ist?" - }, - "victory": { - 1: "Ich kann es nicht ändern… Ich vermisse Ben…", - 2: "Das Band zwischen dir und deinen Pokémon ist stärker als meins.", - 3: "Zusammen mit Ben wären wir unschlagbar gewesen. Wir können gegenseitig unsere Sätze beenden!" - }, - "defeat": { - 1: "Meine Pokémon und ich sind siegreich.", - 2: "Wenn du mich nicht besiegen kannst, wirst du auch niemals Ben besiegen können.", - 3: "All das verdanke ich meinem strengen Training mit Ben. Meine Pokémon und ich sind eins." - } - }, - "juan": { - "encounter": { - 1: "Jetzt ist nicht die Zeit, schüchtern zu sein. Lass uns kämpfen!", - 2: "Ahahaha, Du wirst Zeuge meiner Kunstfertigkeit mit Wasser-Pokémon!", - 3: "Ein Taifun nähert sich! Wirst du mich testen können?", - 4: `Bitte, du wirst Zeuge unserer Kunstfertigkeit. - $Eine großartige Illusion aus Wasser, die von meinen Pokémon und mir geschaffen wurde!` - }, - "victory": { - 1: "Du bist ein Genie, das Wasilli herausfordern kann!", - 2: `Ich habe mich auf Eleganz konzentriert, während du trainiert hast. - $Es kein Wunder, dass du gewonnen hast.`, - 3: "Ahahaha! Nun gut, dieses Mal hast du gewonnen.", - 4: "Ich spüre den Glanz deines Könnens, der alles überwinden wird." - }, - "defeat": { - 1: "Meine Pokémon und ich haben eine Illusion aus Wasser geschaffen und sind siegreich hervorgegangen.", - 2: "Ahahaha, Ich habe gewonnen, und du hast verloren.", - 3: "Soll ich dir mein Outfit leihen? Es könnte dir beim Kampf helfen! Ahahaha, ich scherze!", - 4: "Ich bin der Gewinner! Das heißt, du hast verloren." - } - }, - "crasher_wake": { - "encounter": { - 1: "Aufgepasst! Wellenbrecher Marinus… ist… da!", - 2: "Brechende Wellen! Ich bin Wellenbrecher Marinus!", - 3: "Ich bin die Flutwelle der Macht, die dich wegspült!" - }, - "victory": { - 1: "Das bringt ein Grinsen in mein Gesicht! Guhahaha! Das war ein Spaß!", - 2: "Hunwah! Es ist vorbei! Wie soll ich das sagen… Ich will mehr! Ich wollte viel mehr kämpfen!", - 3: "WAAAS?!" - }, - "defeat": { - 1: "Yeeeeah! So muss das sein!", - 2: "Ich habe gewonnen, aber ich will mehr! Ich wollte viel mehr kämpfen!", - 3: "Bis bald! Ich freue mich auf den nächsten Kampf!" - } - }, - "falkner": { - "encounter": { - 1: "Ich werde dir die wahre Kraft der prächtigen Flug-Pokémon zeigen!", - 2: "Winde, bleibt bei mir!", - 3: "Vater! Ich hoffe, du siehst mir beim Kampf von oben zu!" - }, - "victory": { - 1: "Ich verstehe… Ich werde mich anmutig zurückziehen.", - 2: "Eine Niederlage ist eine Niederlage. Du bist wirklich stark.", - 3: "…Verdammt! Ich habe verloren!" - }, - "defeat": { - 1: "Vater! Ich habe mit deinen geliebten Flug-Pokémon gewonnen…", - 2: "Flug-Pokémon sind die Besten!", - 3: "Ich habe das Gefühl, dass ich meinem Vater näher komme!" - } - }, - "nessa": { - "encounter": { - 1: `Egal, welchen Plan dein raffinierter Verstand auch schmiedet, - $mein Partner und ich werden ihn mit Sicherheit zu Fall bringen.`, - 2: "Ich bin nicht hier, um zu plaudern. Ich bin hier, um zu gewinnen!", - 3: "Das ist ein kleines Geschenk von meinen Pokémon… Ich hoffe, du kannst es annehmen!" - }, - "victory": { - 1: "Du und deine Pokémon sind einfach zu stark…", - 2: "Wie…? Wie kann das sein?", - 3: "Ich wurde total weggespült!" - }, - "defeat": { - 1: "Die wütenede Welle schlägt wieder zu!", - 2: "Es ist Zeit, die Welle des Sieges zu reiten!", - 3: "Ehehe!" - } - }, - "melony": { - "encounter": { - 1: "Ich halte mich nicht zurück!", - 2: "Okay, ich denke, wir sollten anfangen.", - 3: "Ich werde dich einfrieren!" - }, - "victory": { - 1: "Du… Du bist ziemlich gut, oder?", - 2: "Wenn du Mac triffst, haue ihn für mich um, ja?", - 3: "Ich denke, du hast 'das Eis brechen' ein wenig zu wörtlich genommen…" - }, - "defeat": { - 1: "Siehst du jetzt, wie ernst Kämpfe sein können?", - 2: "Hee! Es sieht so aus, als hätte ich wieder gewonnen!", - 3: "Hältst du dich zurück?" - } - }, - "marlon": { - "encounter": { - 1: "Du siehst stark aus! Los geht's!", - 2: "Ich bin stark wie das weite Meer. Du wirst weggespült, das ist sicher.", - 3: "Oh ho, ich treffe auf dich! Das ist abgefahren." - }, - "victory": { - 1: "Du hast total gerockt! Du ziehst einige krasse Pokémon groß. Du hast das Trainer-Ding drauf!", - 2: "Du siehst nicht nur stark aus, du bist auch stark! Eh, ich wurde auch weggespült!", - 3: "Du bist stark wie eine spektakuläre Welle!" - }, - "defeat": { - 1: "Du bist stark, aber nicht stark genug, um das Meer zu beeinflussen, 'OK!", - 2: "Hee! Sieht so aus, als hätte ich wieder gewonnen!", - 3: "Süßer, süßer Sieg!" - } - }, - "shauntal": { - "encounter": { - 1: `Entschuldigung. Du bist ein Herausforderer, oder?\nIch bin Anissa, die Geist-Pokémon-Nutzerin - $der Top Vier. Ich werde dich in die Welt der Bücher entführen.`, - 2: `Ich liebe es, über Trainer und deren Pokémon zu schreiben. - $Könnte ich dich als Inspiration verwenden?`, - 3: "Jeder, der mit Pokémon arbeitet, hat eine Geschichte zu erzählen. Welche Geschichte wird erzählt?" - }, - "victory": { - 1: "Wow. Ich bin sprachlos!", - 2: `E-entschuldigung! Zuerst muss ich mich bei meinen Pokémon entschuldigen… - $Es tut mir wirklich leid, dass ihr wegen mir eine schlechte Erfahrung gemacht habt.`, - 3: "Selbst in Anbetracht dessen, bin ich immer noch eine der Top Vier!" - }, - "defeat": { - 1: "Eheh.", - 2: "Das war exzellentes Material für meinen nächsten Roman!", - 3: "Und wenn sie nicht gestorben sind, dann leben sie noch heute…", - } - }, - "marshal": { - "encounter": { - 1: `Mein Mentor, Lauro, sieht Potential in dir. Ich werde dich testen, - $dich an die Grenzen deiner Stärke bringen. Kiai!`, - 2: "Ein Sieg, ein entscheidender Sieg, das ist mein Ziel! Herausforderer, hier komme ich!", - 3: "Ich selber suche die Stärke eines Kämpfers zu entwickeln und jede Schwäche in mir zu brechen!" - }, - "victory": { - 1: "Puh! Gut gemacht!", - 2: "Während deine Kämpfe weitergehen, strebe nach noch größeren Höhen!", - 3: "Die Stärke, die du und deine Pokémon gezeigt haben, hat mich tief beeindruckt..." - }, - "defeat": { - 1: "Hmm.", - 2: "Das war ein guter Kampf.", - 3: "Haaah! Haaah! Haiyaaaah!" - } - }, - "cheren": { - "encounter": { - 1: "Du erinnerst mich an einen alten Freund. Das macht mich gespannt auf diesen Pokémon-Kampf!", - 2: `Pokémon-Kämpfe haben keinen Sinn, wenn man nicht darüber nachdenkt, warum man kämpft. - $Oder besser gesagt, es macht das Kämpfen mit Pokémon sinnlos.`, - 3: "Ich heiße Cheren! Ich bin ein Arenaleiter und Lehrer! Freut mich, dich kennenzulernen." - }, - "victory": { - 1: "Danke! Ich habe gesehen, was mir gefehlt hat.", - 2: "Danke! Ich habe das Gefühl, ein Stück meines Ideals entdeckt zu haben.", - 3: "Hmm… Das ist problematisch." - }, - "defeat": { - 1: "Als Arenaleiter will ich eine Hürde für dich sein, die du überwinden musst.", - 2: "In Ordnung!", - 3: `Ich bin so weit gekommen, weil Pokémon an meiner Seite waren. - $Vielleicht sollten wir darüber nachdenken, warum Pokémon uns helfen, - $nicht als Pokémon und Trainer, sondern als Beziehung zwischen Lebewesen.` - } - }, - "chili": { - "encounter": { - 1: "Jaaaa! Zeit, mit dem Feuer zu spielen! Ich bin der Stärkste von uns Brüdern!", - 2: "Ta-da! Der Feuer-Typ-Kämpfer Maik --das bin ich-- wird dein Gegner sein!", - 3: "Ich werde dir zeigen, was ich und meine feurigen Pokémon draufhaben!" - }, - "victory": { - 1: "Du hast mich besiegt. Ich bin... ausgebrannt...", - 2: "Whoa ho! Du brennst vor Energie!", - 3: "Autsch! Du hast mich erwischt!" - }, - "defeat": { - 1: "Ich brenne! Spiel mit mir, und du wirst dich verbrennen!", - 2: "Wenn du mit Feuer spielst, wirst du verbrannt!", - 3: "Ich meine, komm schon, dein Gegner war ich! Du hattest keine Chance!" - } - }, - "cilan": { - "encounter": { - 1: `Nichts Persönliches... Keine harten Gefühle... Ich und meine Pflanzen-Pokémon werden... - $Ähm... Wir werden kämpfen, egal was passiert.`, - 2: "Also, ähm, wenn es für dich in Ordnung ist, werde ich, ähm, alles geben, um, äh, dein Gegner zu sein.", - 3: "OK… Also, ähm, ich bin Benny, ich mag Pflanzen-Pokémon." - }, - "victory": { - 1: "Ähm… Ist es jetzt vorbei?", - 2: `…Was für eine Überraschung. Du bist sehr stark, nicht wahr? - $Ich glaube, meine Brüder hätten dich auch nicht besiegen können…`, - 3: "…Hmm. Sieht aus, als wäre mein Timing, ähm, schlecht gewesen?" - }, - "defeat": { - 1: "Huh? Habe ich gewonnen?", - 2: `Ich denke... Ich habe wohl gewonnen, weil ich mit meinen Brüdern Maik und Colin traniert habe, - $und wir so alle stärker geworden sind.`, - 3: "Es... es war ein ziemlich aufregendes Erlebnis..." - } - }, - "roark": { - "encounter": { - 1: "Ich muss dein Potenzial als Trainer und die Stärke der Pokémon sehen, die mit dir kämpfen!", - 2: "Los geht's! Dies sind meine Gesteins-Pokémon, mein ganzer Stolz!", - 3: "Gesteins-Pokémon sind einfach die besten!", - 4: "Ich muss dein Potenzial als Trainer und die Stärke der Pokémon sehen, die mit dir kämpfen!", - }, - "victory": { - 1: "W-was? Das kann nicht sein! Meine total tranierten Pokémon!", - 2: `…Wir haben die Kontrolle verloren. Beim nächsten Mal fordere ich dich - $zu einem Fossilien-Ausgrabungswettbewerb heraus.`, - 3: "Mit deinem Können ist es nur natürlich, dass du gewinnst.", - 4: "W-was?! Das kann nicht sein! Selbst das war nicht genug?", - 5: "Ich habe es vermasselt." - }, - "defeat": { - 1: "Siehst du? Ich bin stolz auf meinen steinigen Kampfstil!", - 2: "Danke! Der Kampf hat mir Vertrauen gegeben, dass ich vielleicht meinen Vater besiegen kann!", - 3: "Ich fühle mich, als hätte ich gerade einen wirklich hartnäckigen Felsen durchbrochen!" - } - }, - "morty": { - "encounter": { - 1: `Mit ein bisschen mehr könnte ich eine Zukunft sehen, in der ich das legendäre Pokémon treffe. - $Du wirst mir helfen, dieses Level zu erreichen!`, - 2: `Es heißt, dass ein regenbogenfarbenes Pokémon vor einem wirklich starken Trainer erscheinen wird. - $Ich habe an diese Geschichte geglaubt, deshalb habe ich mein ganzes Leben lang heimlich trainiert. - $Als Ergebnis kann ich jetzt Dinge sehen, die andere nicht sehen. - $Ich sehe einen Schatten der Person, die das Pokémon erscheinen lassen wird. - $Ich glaube, diese Person bin ich! Du wirst mir helfen, dieses Level zu erreichen!`, - 3: "Ob du es glaubst oder nicht, mystische Kräfte existieren.", - 4: "Du kannst die Früchte meines Trainings bezeugen.", - 5: "Du musst deine Seele mit der eines Pokémon vereinen. Kannst du das?", - 6: "Sag mal, willst du an meinem Training teilnehmen?" - }, - "victory": { - 1: "Ich bin noch nicht gut genug...", - 2: `Ich sehe... Deine Reise hat dich an weit entfernte Orte geführt und du hast viel mehr gesehen als ich. - $Ich beneide dich darum...`, - 3: "Wie ist das möglich...", - 4: `Ich glaube nicht, dass unser Potenzial so unterschiedlich ist. - $Aber du scheinst etwas mehr zu haben... Sei es drum.`, - 5: "Ich brauche wohl mehr Training.", - 6: "Das ist schade." - }, - "defeat": { - 1: "Ich habe... einen weiteren Schritt nach vorne gemacht.", - 2: "Fufufu...", - 3: "W-was?! Das kann nicht sein! Selbst das war nicht genug?", - 4: "Ich fühle mich, als hätte ich gerade einen wirklich hartnäckigen Felsen durchbrochen!", - 5: "Ahahahah!", - 6: "Ich wusste, dass ich gewinnen würde!" - } - }, - "crispin": { - "encounter": { - 1: "Ich will gewinnen, also werde ich genau das tun!", - 2: "Ich kämpfe, weil ich kämpfen will! Und weißt du was? So sollte es sein!" - }, - "victory": { - 1: "Ich wollte gewinnen... aber ich habe verloren!", - 2: "Ich habe verloren... weil ich nicht gewinnen konnte!" - }, - "defeat": { - 1: "Hey, warte mal. Habe ich gerade gewonnen? Ich glaube, ich habe gewonnen! Das ist befriedigend!", - 2: "Wooo! Das war unglaublich!" - } - }, - "amarys": { - "encounter": { - 1: `Ich möchte jemandem helfen. Daher kann ich es mir nicht leisten, zu verlieren. - $… Unser Kampf beginnt jetzt.`, - }, - "victory": { - 1: "Ich bin... nicht genug, wie ich sehe." - }, - "defeat": { - 1: "Der Sieg gehört mir. Gut gekämpft." - } - }, - "lacey": { - "encounter": { - 1: "Ich werde dir mit meinem gewohnten Team, als Mitglied der Top Vier gegenüberstehen." - }, - "victory": { - 1: "Das war ein großartiger Kampf!" - }, - "defeat": { - 1: "Geben wir deinem Pokémon einen kräftigen Applaus für ihre Bemühungen!" - } - }, - "drayton": { - "encounter": { - 1: `Mann, ich liebe Stühle. Liebst du nicht auch Stühle? Was für Lebensretter. - $Ich verstehe nicht, warum nicht jeder einfach die ganze Zeit sitzt. Stehen ist anstrengend!`, - }, - "victory": { - 1: "Ich hätte damit rechnen sollen!" - }, - "defeat": { - 1: `Heh heh! Macht nichts, ich habe hier nur einen Sieg eingefahren. - $Ich verstehe, wenn du sauer bist, aber geh nicht völlig auf mich los, okay?` - } - }, - "ramos": { - "encounter": { - 1: `Hast du den Garten-Spielplatz genossen, den ich mit all diesen kräftigen Pflanzen angelegt habe? - $Ihre Stärke ist ein Zeichen meiner Stärke als Gärtner und Arenaleiter! - $Bist du sicher, dass du bereit bist, dich dem zu stellen?`, - }, - "victory": { - 1: "Du glaubst an deine Pokémon... Und sie glauben an dich... Es war ein feiner Kampf, Sprössling." - }, - "defeat": { - 1: "Hohoho... In der Tat. Schwache kleine Grashalme brechen selbst durch Beton." - } - }, - "viola": { - "encounter": { - 1: `Ob es die Tränen der Frustration nach einer Niederlage sind - $oder das Aufblühen der Freude nach einem Sieg... - $Beides sind großartige Motive für meine Kamera! Fantastisch! Das wird einfach fantastisch! - $Jetzt komm auf mich zu!`, - 2: "Mein Objektiv ist immer auf den Sieg fokussiert - ich lasse mir diesen Moment nicht entgehen!" - }, - "victory": { - 1: "Du und deine Pokémon haben mir eine ganz neue Tiefenschärfe gezeigt! Einfach fantastisch!", - 2: `Die Welt, die du durch ein Objektiv siehst, und die Welt, - $die du mit einem Pokémon an deiner Seite siehst... - $Die gleiche Welt kann völlig anders aussehen, je nach Blickwinkel.` - }, - "defeat": { - 1: "Das Foto vom Moment meines Sieges wird ein echter Gewinner sein!", - 2: "Ja! Ich habe einige großartige Fotos gemacht!" - } - }, - "candice": { - "encounter": { - 1: `Du willst Frida herausfordern? Klar! Ich habe auf jemanden Starken gewartet! - $Aber ich sollte dir sagen, ich bin stark, weil ich weiß, wie man sich konzentriert.`, - 2: `Pokémon, Mode, Romantik... Es geht alles um Konzentration! - $Ich werde dir zeigen, was ich meine. Mach dich bereit zu verlieren!` - }, - "victory": { - 1: "Ich muss sagen, ich bin von dir angetan! Vielleicht bewundere ich dich sogar ein bisschen.", - 2: `Wow! Du bist großartig! Du hast meinen Respekt verdient! - $Ich denke, dein Fokus und Wille haben uns völlig umgehauen.` - }, - "defeat": { - 1: "Ich habe deinen Siegeswillen gespürt, aber ich verliere nicht!", - 2: "Siehst du? Fridas Fokus! Der Fokus meiner Pokémon ist auch großartig!" - } - }, - "gardenia": { - "encounter": { - 1: "Du hast eine Sieger-Aura. Also, das wird Spaß machen. Lass uns kämpfen!" - }, - "victory": { - 1: "Unglaublich! Du bist sehr gut, nicht wahr?" - }, - "defeat": { - 1: "Ja! Meine Pokémon und ich sind perfekt abgestimmt!" - } - }, - "aaron": { - "encounter": { - 1: "Okay! Lass mich gegen dich antreten!" - }, - "victory": { - 1: "Kämpfen ist eine tiefe und komplexe Angelegenheit..." - }, - "defeat": { - 1: "Ein Sieg über ein Mitglied der Top Vier ist nicht leicht zu erringen." - } - }, - "cress": { - "encounter": { - 1: "Das ist korrekt! Ich und meine geschätzten Wasser-Pokémon werden deine Gegner im Kampf sein!" - }, - "victory": { - 1: "Verlieren? Ich? Das glaube ich nicht." - }, - "defeat": { - 1: "Das ist das passende Ergebnis, wenn ich dein Gegner bin." - } - }, - "allister": { - "encounter": { - 1: "'N-Nio.\nH-hier… g-geht's los…" - }, - "victory": { - 1: `Ich hätte beinahe meine Maske vor Schock verloren... Das war... - $Wow. Ich sehe dein Können, wie es wirklich ist.`, - }, - "defeat": { - 1: "D-das war klasse!" - } - }, - "clay": { - "encounter": { - 1: "Harrumph! Du hast mich warten lassen, oder? Gut, jetzt will ich sehen, was du drauf hast!" - }, - "victory": { - 1: "Mann oh Mann... Es fühlt sich gut an, alles zu geben und trotzdem besiegt zu werden!" - }, - "defeat": { - 1: `Was wichtig ist, ist wie du auf eine Niederlage reagierst. - $Deshalb sind Leute, die Niederlagen als Ansporn nutzen, um besser zu werden, stark.`, - } - }, - "kofu": { - "encounter": { - 1: "Ich werde dir ein ganzes Menü aus Wasser-Pokémon servieren! Aber versuch nicht, sie zu essen!" - }, - "victory": { - 1: `Vaultin' Veluza! Du bist ein lebhafter Mensch, nicht wahr! - $Ein bisschen ZU lebhaft, wenn ich das so sagen darf!` - }, - "defeat": { - 1: "Komm bald wieder zu mir, hörst du?" - } - }, - "tulip": { - "encounter": { - 1: "Erlaube mir, meine Fähigkeiten einzusetzen, um deine niedlichen kleinen Pokémon noch schöner zu machen!" - }, - "victory": { - 1: "Deine Stärke hat eine Magie, die nicht wegzuwaschen ist." - }, - "defeat": { - 1: `Weißt du, in meinem Beruf verschwinden Menschen, - $die in einem Bereich kein Talent haben, oft schnell und werden nie wieder gesehen.`, - } - }, - "sidney": { - "encounter": { - 1: `Mir gefällt der Blick, den du mir zuwirfst. Ich denke, du wirst mir einen guten Kampf liefern. - $Das ist gut! Sieht wirklich gut aus! In Ordnung! - $Du und ich, lass uns einen Kampf genießen, der nur hier stattfinden kann!`, - }, - "victory": { - 1: "Nun, wie gefällt dir das? Ich habe verloren! Eh, es hat Spaß gemacht, also ist es egal." - }, - "defeat": { - 1: "Wir sind hier nicht nachtragend, okay?" - } - }, - "phoebe": { - "encounter": { - 1: `Während meines Trainings habe ich die Fähigkeit erlangt, mit Geister-Pokémon zu kommunizieren. - $Ja, die Bindung, die ich zu Pokémon entwickelt habe, ist extrem stark. - $Also komm, versuche nur, meinen Pokémon Schaden zuzufügen!`, - }, - "victory": { - 1: "Oh, Mist. Ich habe verloren." - }, - "defeat": { - 1: "Ich freue mich darauf, dich irgendwann wieder zu bekämpfen!" - } - }, - "glacia": { - "encounter": { - 1: `Alles, was ich gesehen habe, sind Herausforderungen von schwachen Trainern und ihren Pokémon. - $Und du? Es würde mich überaus freuen, wenn ich gegen dich alles geben könnte!`, - }, - "victory": { - 1: `Du und deine Pokémon… Wie heiß eure Geister brennen! - $Die alles verzehrende Hitze überwältigt. - $Es ist kein Wunder, dass meine eisigen Fähigkeiten dir nichts anhaben konnten.`, - }, - "defeat": { - 1: "Ein leidenschaftlicher Kampf, in der Tat." - } - }, - "drake": { - "encounter": { - 1: `Um mit Pokémon als Partner zu kämpfen, weißt du, was dafür nötig ist? Weißt du, was gebraucht wird? - $Wenn nicht, wirst du nie gegen mich gewinnen!`, - }, - "victory": { - 1: "Hervorragend, muss ich sagen." - }, - "defeat": { - 1: "Ich habe alles für diesen Kampf gegeben!" - } - }, - "wallace": { - "encounter": { - 1: `Da ist etwas an dir… Eine Veränderung in deinem Auftreten. - $Ich denke, ich spüre das bei dir. Zeig es mir. Zeig mir die Kraft, die du mit deinen Pokémon hast. - $Und ich werde dir im Gegenzug eine Vorstellung von - $Illusionen im Wasser von mir und meinen Pokémon präsentieren!`, - }, - "victory": { - 1: `Bravo. Ich erkenne jetzt deine Authentizität und Großartigkeit als Pokémon-Trainer. - $Ich freue mich sehr, dich und deine Pokémon kennengelernt zu haben. Du hast dich als würdig erwiesen.`, - }, - "defeat": { - 1: "Eine große Illusion!" - } - }, - "lorelei": { - "encounter": { - 1: `Niemand kann mich bei eisigen Pokémon übertreffen! Gefrierende Angriffe sind mächtig! - $Deine Pokémon werden mir ausgeliefert sein, wenn sie erst einmal eingefroren sind! Hahaha! - $Bist du bereit?`, - }, - "victory": { - 1: "Wie kannst du es wagen!" - }, - "defeat": { - 1: "Es gibt nichts, was du tun kannst, wenn du erst einmal eingefroren bist." - } - }, - "will": { - "encounter": { - 1: `Ich habe auf der ganzen Welt trainiert und meine Psycho-Pokémon stark gemacht. - $Ich kann nur besser werden! Verlieren ist keine Option!`, - }, - "victory": { - 1: "Ich... ich kann es nicht... glauben..." - }, - "defeat": { - 1: "Das war knapp. Ich frage mich, was dir fehlt." - } - }, - "malva": { - "encounter": { - 1: `Ich fühle mich, als könnte mein Herz in Flammen aufgehen. - $Ich brenne vor Hass auf dich, Wicht!`, - }, - "victory": { - 1: "Was für Neuigkeiten... Ein neuer Herausforderer hat Pachira besiegt!" - }, - "defeat": { - 1: "Ich bin begeistert! Ja, begeistert, dass ich dich unter meinen Fußsohlen zerquetschen konnte." - } - }, - "hala": { - "encounter": { - 1: "Der alte Hala ist hier, um dich zum Schreien zu bringen!" - }, - "victory": { - 1: "Ich konnte die Kraft spüren, die du auf deiner Reise gewonnen hast." - }, - "defeat": { - 1: "Haha! Was für ein erfreulicher Kampf!" - } - }, - "molayne": { - "encounter": { - 1: `Ich habe die Kapitänsposition meinem Cousin Chrys gegeben, - $aber ich bin zuversichtlich in meine Fähigkeiten. - $Meine Stärke ist wie die einer Supernova!`, - }, - "victory": { - 1: "Ich habe sicherlich einen interessanten Trainer zum Kämpfen gefunden!" - }, - "defeat": { - 1: "Ahaha. Was für ein interessanter Kampf." - } - }, - "rika": { - "encounter": { - 1: "Ich würde sagen, ich werde es dir leicht machen, aber... das wäre gelogen! Denke schnell!" - }, - "victory": { - 1: "Nicht schlecht, wirklich!" - }, - "defeat": { - 1: "Nahahaha! Du bist wirklich etwas Besonderes!" - } - }, - "bruno": { - "encounter": { - 1: "Wir werden dich mit unserer überlegenen Kraft niederschmettern! Hoo hah!" - }, - "victory": { - 1: "Warum? Wie konnte ich verlieren?" - }, - "defeat": { - 1: "Du kannst mich herausfordern, so oft du willst, aber das Ergebnis wird sich nie ändern!" - } - }, - "bugsy": { - "encounter": { - 1: "Ich bin Kai, der Arenaleiter von Azalea City. Ich bin ein großer Fan von Käfer-Pokémon.", - }, - "victory": { - 1: `Wow, erstaunlich! Du bist ein Experte für Pokémon! - $Meine Forschung ist noch nicht abgeschlossen. OK, du gewinnst.`, - }, - "defeat": { - 1: "Danke! Dank unseres Kampfes konnte ich auch Fortschritte in meiner Forschung machen!" - } - }, - "koga": { - "encounter": { - 1: "Fwahahahaha! Pokémon sind nicht nur rohe Gewalt - das wirst du bald genug sehen!" - }, - "victory": { - 1: "Ah! Du hast deinen Wert bewiesen!" - }, - "defeat": { - 1: "Hast du gelernt, die Techniken der Ninja zu fürchten?" - } - }, - "bertha": { - "encounter": { - 1: "Nun, würdest du dieser alten Dame zeigen, wie viel du gelernt hast?" - }, - "victory": { - 1: `Nun! Liebes Kind, ich muss sagen, das war sehr beeindruckend. - $Deine Pokémon haben an dich geglaubt und ihr Bestes gegeben, um dir den Sieg zu sichern. - $Obwohl ich verloren habe, finde ich mich mit einem dummen Grinsen wieder!`, - }, - "defeat": { - 1: "Hahahahah! Sieht so aus, als hätte diese alte Dame gewonnen!" - } - }, - "lenora": { - "encounter": { - 1: `Nun denn, Herausforderer, ich werde erforschen, - $wie du mit den Pokémon kämpfst, die du so liebevoll aufgezogen hast!`, - }, - "victory": { - 1: `Meine Theorie über dich war korrekt. Du bist mehr als nur talentiert... - $Du bist motiviert! Ich salutier' dir!`, - }, - "defeat": { - 1: "Ah ha ha! Wenn du verlierst, analysiere warum und nutze dieses Wissen im nächsten Kampf!" - } - }, - "siebold": { - "encounter": { - 1: `Solange ich lebe, werde ich danach streben, die ultimative Küche... - $und die stärksten Gegner im Kampf zu finden!`, - }, - "victory": { - 1: "Ich werde die Erinnerung an dich und deine Pokémon für immer in meinem Herzen bewahren." - }, - "defeat": { - 1: `Unser Pokémon-Kampf war wie Nahrung für meine Seele. Er wird mich weiter antreiben. - $So werde ich dir meinen Respekt erweisen, dass du alles im Kampf gegeben hast!`, - } - }, - "roxie": { - "encounter": { - 1: "Mach dich bereit! Ich werde dir den Verstand aus dem Kopf schlagen!" - }, - "victory": { - 1: "Wahnsinn! Deine Vernunft ist schon giftiger als meine!" - }, - "defeat": { - 1: "Hey, komm schon! Sei ernst! Du musst mehr geben!" - } - }, - "olivia": { - "encounter": { - 1: "Hier ist keine Einführung nötig. Zeit, gegen mich, Mayla, zu kämpfen!" - }, - "victory": { - 1: "Wirklich lieblich... Sowohl du als auch deine Pokémon..." - }, - "defeat": { - 1: "Mmm-hmm." - } - }, - "poppy": { - "encounter": { - 1: "Oooh! Willst du einen Pokémon-Kampf mit mir führen?" - }, - "victory": { - 1: "Uagh?! Mmmuuuggghhh..." - }, - "defeat": { - 1: `Jaaa! Ich hab's geschafft! Ich hab dich besiegt! Du kannst kommen für... Für... Einen Revanchekampf? - $Komm jederzeit für einen Revanchekampf!`, - } - }, - "agatha": { - "encounter": { - 1: "Pokémon sind zum Kämpfen da! Ich zeige dir, wie ein echter Trainer kämpft!" - }, - "victory": { - 1: "Oh mein Gott! Du bist etwas Besonderes, Kind!" - }, - "defeat": { - 1: "Bahaha. So wird ein richtiger Kampf geführt!" - } - }, - "flint": { - "encounter": { - 1: "Hoffentlich bist du aufgewärmt, denn hier kommt der Urknall!" - }, - "victory": { - 1: "Unglaublich! Deine Moves sind so heiß, dass meine im Vergleich lauwarm wirken!" - }, - "defeat": { - 1: "Huh? War das alles? Ich denke, du brauchst etwas mehr Leidenschaft." - } - }, - "grimsley": { - "encounter": { - 1: "Der Gewinner nimmt alles, und es bleibt nichts für den Verlierer." - }, - "victory": { - 1: "Wenn man verliert, verliert man alles... Das nächste, wonach ich suche, wird auch der Sieg sein!" - }, - "defeat": { - 1: "Wenn jemand gewinnt, verliert derjenige, der gegen diese Person gekämpft hat." - } - }, - "caitlin": { - "encounter": { - 1: `Ich bin es, die erschien, als die Blume sich öffnete. Du, der du gewartet hast… - $Du siehst aus wie ein Pokémon-Trainer mit verfeinerter Stärke und vertiefter Freundlichkeit. - $Was ich in meinem Gegner suche, ist überlegene Stärke… - $Bitte entfessle deine Kraft in vollem Umfang!`, - }, - "victory": { - 1: "Meine Pokémon und ich haben so viel gelernt! Ich danke dir." - }, - "defeat": { - 1: "Ich strebe danach, mit Eleganz und Anmut zu siegen." - } - }, - "diantha": { - "encounter": { - 1: `Gegen dich und deine Pokémon zu kämpfen, die alle voller Hoffnung für die Zukunft sind... - $Ehrlich gesagt, es erfüllt mich mit der Energie, die ich brauche, um jeden neuen Tag anzugehen! - $Wirklich!`, - }, - "victory": { - 1: "Den edlen Geist von dir und deinen Pokémon im Kampf zu erleben, hat mein Herz wirklich berührt..." - }, - "defeat": { - 1: "Oh, fantastisch! Was denkst du? Mein Team war ziemlich cool, oder?" - } - }, - "wikstrom": { - "encounter": { - 1: `Guten Tag, junger Herausforderer! Wahrlich, ich bin die berühmte Klinge aus gehärtetem Stahl, - $Herzog Thymelot! Lasst den Kampf beginnen! En garde!`, - }, - "victory": { - 1: "Ruhmreich! Das Vertrauen, das du mit deinen ehrenvollen Pokémon teilst, übertrifft sogar meines!" - }, - "defeat": { - 1: `Was für eine Magie ist das? Mein Herz, es hämmert unaufhörlich in meiner Brust! - $Gegen einen so würdigen Gegner zu gewinnen, verleiht meiner Seele Flügel - so fliege ich!`, - } - }, - "acerola": { - "encounter": { - 1: "Kämpfen macht einfach Spaß! Komm schon, ich schaffe das!" - }, - "victory": { - 1: "Ich bin... sprachlos! Wie hast du das gemacht?!" - }, - "defeat": { - 1: "Ehaha! Was für ein erstaunlicher Sieg!" - } - }, - "larry_elite": { - "encounter": { - 1: `Hallo... Ich bin's, Aoki. - $Ich bin auch Mitglied der Top Vier, ja... Leider für mich.`, - }, - "victory": { - 1: "Nun, das hat uns den Wind aus den Segeln genommen..." - }, - "defeat": { - 1: "Es ist Zeit für ein Treffen mit dem Boss." - } - }, - "lance": { - "encounter": { - 1: "Ich habe auf dich gewartet. Erlaube mir, deine Fähigkeiten zu testen.", - 2: "Ich dachte, du würdest es so weit schaffen. Lass uns anfangen." - }, - "victory": { - 1: "Du hast mich besiegt. Du bist großartig!", - 2: "Ich hätte nie erwartet, dass ein anderer Trainer mich schlägt... Ich bin überrascht." - }, - "defeat": { - 1: "Das war knapp. Willst du es nochmal versuchen?", - 2: "Es ist nicht so, dass du schwach bist. Lass dich davon nicht stören." - } - }, - "karen": { - "encounter": { - 1: "Ich bin Melanie. Möchtest du einen Kampf mit meinen Unlicht-Pokémon?", - 2: "Ich bin anders als die, die du bereits getroffen hast.", - 3: "Du hast ein charmantes Team zusammengestellt. Unser Kampf wird sicher gut." - }, - "victory": { - 1: "Nein! Ich kann nicht gewinnen. Wie bist du so stark geworden?", - 2: "Ich werde nicht von meinem gewählten Weg abweichen.", - 3: "Der Champion freut sich darauf, dich kennenzulernen." - }, - "defeat": { - 1: "Das habe ich erwartet.", - 2: "Nun, das war relativ unterhaltsam.", - 3: "Komm mich jederzeit besuchen." - } - }, - "milo": { - "encounter": { - 1: `Es scheint, als würdest du Pokémon wirklich gut verstehen. - $Das wird ein harter Kampf! - $Ich muss mein Pokémon Dynamaximieren, wenn ich gewinnen will!`, - }, - "victory": { - 1: "Die Kraft des Grases ist verwelkt... Was für ein unglaublicher Herausforderer!" - }, - "defeat": { - 1: "Das wird dich wirklich schockieren und in Ehrfurcht versetzen." - } - }, - "lucian": { - "encounter": { - 1: `Einen Moment, bitte. Das Buch, das ich lese, hat fast seinen spannenden Höhepunkt erreicht... - $Der Held hat ein mystisches Schwert erlangt und steht vor seiner letzten Prüfung... Ah, egal. - $Da du es so weit geschafft hast, lege ich das beiseite und kämpfe gegen dich. - $Lass mich sehen, ob du genauso viel Ruhm erlangen wirst wie der Held meines Buches!`, - }, - "victory": { - 1: "Ich sehe... Es scheint, als hättest du mich schachmatt gesetzt." - }, - "defeat": { - 1: "Ich habe einen Ruf zu wahren." - } - }, - "drasna": { - "encounter": { - 1: `Du musst ein starker Trainer sein. Ja, ganz stark... - $Das sind wunderbare Neuigkeiten! Gegen Gegner wie dich und dein Team zu kämpfen, - $lässt meine Pokémon wie Unkraut wachsen!` - }, - "victory": { - 1: "Oh, meine Güte. Das war wirklich ein schneller Kampf... Ich hoffe, du kommst bald wieder!" - }, - "defeat": { - 1: "Wie kann das sein?" - } - }, - "kahili": { - "encounter": { - 1: "Also, da bist du… Warum sehen wir nicht, wen die Winde heute begünstigen, dich… oder mich?" - }, - "victory": { - 1: "Es frustriert mich als Mitglied der Top Vier, aber es scheint, dass deine Stärke echt ist." - }, - "defeat": { - 1: "Das war ein Ass!" - } - }, - "hassel": { - "encounter": { - 1: `Bereite dich darauf vor, aus erster Hand zu erfahren, - $wie sich der feurige Atem eines erbitterten Kampfes anfühlt!` - }, - "victory": { - 1: `Das Glück hat mir dieses Mal gelächelt, aber... - $Angesichts des Verlaufs des Kampfes, wer weiß, ob ich das nächste Mal so viel Glück haben werde.`, - }, - "defeat": { - 1: "Das war ein Ass!" - } - }, - "blue": { - "encounter": { - 1: "Du musst ziemlich gut sein, um so weit zu kommen." - }, - "victory": { - 1: "Ich habe nur gegen ihn und jetzt gegen dich verloren… Ihn? Haha..." - }, - "defeat": { - 1: "Siehst du? Meine Stärke hat mich hierher gebracht." - } - }, - "piers": { - "encounter": { - 1: "Mach dich bereit für einen Moshpit mit mir und meiner Truppe! Spikeford, es ist Zeit zu rocken!" - }, - "victory": { - 1: "Ich und mein Team haben unser Bestes gegeben. Lass uns irgendwann wieder zu einem Kampf treffen..." - }, - "defeat": { - 1: "Meine Kehle ist heiser vom Schreien... Aber das war ein aufregender Kampf!" - } - }, - "red": { - "encounter": { - 1: "…!" - }, - "victory": { - 1: "…?" - }, - "defeat": { - 1: "…!" - } - }, - "jasmine": { - "encounter": { - 1: "Oh... Deine Pokémon sind beeindruckend. Ich denke, ich werde das genießen." - }, - "victory": { - 1: "Du bist wirklich stark. Ich muss mich auch viel mehr anstrengen." - }, - "defeat": { - 1: "Ich habe nie erwartet zu gewinnen." - } - }, - "lance_champion": { - "encounter": { - 1: "Ich bin immer noch der Champion. Ich werde nichts zurückhalten." - }, - "victory": { - 1: "Dies ist das Aufkommen eines neuen Champions." - }, - "defeat": { - 1: "Ich habe meinen Titel erfolgreich verteidigt." - } - }, - "steven": { - "encounter": { - 1: `Erzähl mir... Was hast du auf deiner Reise mit deinen Pokémon gesehen? - $Was hast du gefühlt, als du so viele andere Trainer getroffen hast? - $Durch dieses reiche Land zu reisen... Hat es etwas in dir geweckt? - $Ich möchte, dass du mir alles zeigst, was du gelernt hast. - $Meine Pokémon und ich werden dir im Gegenzug mit allem antworten, was wir wissen!`, - }, - "victory": { - 1: "Also falle ich, der Champion, in der Niederlage..." - }, - "defeat": { - 1: "Das war gut verbrachte Zeit! Danke!" - } - }, - "cynthia": { - "encounter": { - 1: "Ich, Cynthia, akzeptiere deine Herausforderung! Es wird keine Pause von mir geben!" - }, - "victory": { - 1: "Egal wie viel Spaß der Kampf macht, er wird irgendwann enden..." - }, - "defeat": { - 1: "Selbst wenn du verlierst, verliere niemals deine Liebe zu Pokémon." - } - }, - "iris": { - "encounter": { - 1: `Weißt du was? Ich freue mich wirklich darauf, ernsthafte Kämpfe mit starken Trainern zu führen! - $Ich meine, komm schon! Die Trainer, die es hierher schaffen, sind Trainer, - $die den Sieg mit jeder Faser ihres Seins anstreben! - $Und sie kämpfen Seite an Seite mit Pokémon, die unzählige schwierige Kämpfe durchgemacht haben! - $Wenn ich mit solchen Leuten kämpfe, werde nicht nur ich stärker, sondern auch meine Pokémon! - $Und wir werden uns noch besser kennenlernen! OK! Mach dich bereit! - $Ich bin Iris, die Champion der Pokémon-Liga, und ich werde dich besiegen!`, - }, - "victory": { - 1: "Aghhhh... Ich habe mein Bestes gegeben, aber wir haben verloren..." - }, - "defeat": { - 1: "Juhu! Wir haben gewonnen!" - } - }, - "hau": { - "encounter": { - 1: `Ich frage mich, ob ein Trainer anders kämpft, - $je nachdem, ob er aus einer warmen oder einer kalten Region stammt. - $Lass es uns testen!`, - }, - "victory": { - 1: "Das war großartig! Ich denke, ich verstehe dein Vibe jetzt ein bisschen besser!" - }, - "defeat": { - 1: "Ma-an, das war eine Art Kampf!" - } - }, - "geeta": { - "encounter": { - 1: `Ich habe mich entschieden, erneut meinen Hut in den Ring zu werfen. - $Komm jetzt... Zeig mir die Früchte deines Trainings.`, - }, - "victory": { - 1: "Ich freue mich auf Neuigkeiten über all deine Erfolge!" - }, - "defeat": { - 1: "Was ist los? Das ist doch nicht alles, oder?" - } - }, - "nemona": { - "encounter": { - 1: "Yesss! Ich bin so aufgeregt! Zeit, dass wir uns austoben!" - }, - "victory": { - 1: "Na gut, das ist ärgerlich, aber ich hatte trotzdem Spaß! Ich werde dich nächstes Mal erwischen!" - }, - "defeat": { - 1: "Das war ein großartiger Kampf! Definitiv fruchtbar." - } - }, - "leon": { - "encounter": { - 1: "Wir werden eine absolut großartige Zeit haben!" - }, - "victory": { - 1: `Meine Zeit als Champion ist vorbei... - $Aber was für eine großartige Zeit war das! - $Danke für den großartigsten Kampf, den ich je hatte!`, - }, - "defeat": { - 1: "Das war eine absolut großartige Zeit!" - } - }, - "whitney": { - "encounter": { - 1: "Hey! Findest du nicht auch, dass Pokémon total süß sind?" - }, - "victory": { - 1: "Waaah! Waaah! Du bist so gemein!" - }, - "defeat": { - 1: "Und das war's!" - } - }, - "chuck": { - "encounter": { - 1: "Ha! Du willst mich herausfordern? Bist du mutig oder einfach nur unwissend?" - }, - "victory": { - 1: "Du bist stark! Würdest du mich bitte zu deinem Schüler machen?" - }, - "defeat": { - 1: "Da. Merkst du, wie viel mächtiger ich bin als du?" - } - }, - "katy": { - "encounter": { - 1: "Lass deine Wachsamkeit nicht nach, es sei denn, du willst von den Füßen gerissen werden!" - }, - "victory": { - 1: "Alle meine süßen kleinen Pokémon fielen wie Fliegen!" - }, - "defeat": { - 1: "Iss auf, mein süßes kleines Vivillon!" - } - }, - "pryce": { - "encounter": { - 1: "Jugend allein garantiert keinen Sieg! Erfahrung ist, was zählt." - }, - "victory": { - 1: "Hervorragend! Das war perfekt. Versuche nicht zu vergessen, was du jetzt fühlst." - }, - "defeat": { - 1: "Genau wie ich es mir vorgestellt habe." - } - }, - "clair": { - "encounter": { - 1: "Weißt du, wer ich bin? Und du wagst es trotzdem, mich herauszufordern?" - }, - "victory": { - 1: "Ich frage mich, wie weit du mit deinem Können kommen wirst. Das sollte faszinierend sein." - }, - "defeat": { - 1: "Das war's." - } - }, - "maylene": { - "encounter": { - 1: `Ich bin gekommen, um dich jetzt herauszufordern, und ich werde nichts zurückhalten. - $Bitte bereite dich auf den Kampf vor!`, - }, - "victory": { - 1: "Ich gestehe die Niederlage ein..." - }, - "defeat": { - 1: "Das war großartig." - } - }, - "fantina": { - "encounter": { - 1: `Du wirst mich herausfordern, ja? Aber ich werde gewinnen. - $Das tut der Arenaleiter von Herzhofen, non?`, - }, - "victory": { - 1: "Du bist so fantastisch stark. Ich weiß, warum ich verloren habe." - }, - "defeat": { - 1: "Ich bin so, so, sehr glücklich!" - } - }, - "byron": { - "encounter": { - 1: `Trainer! Du bist jung, genau wie mein Sohn, Veit. - $Mit mehr jungen Trainern, die das Kommando übernehmen, ist die Zukunft der Pokémon hell! - $Also, als Hürde für junge Leute nehme ich deine Herausforderung an!`, - }, - "victory": { - 1: "Hmm! Meine robusten Pokémon - besiegt!" - }, - "defeat": { - 1: "Gwahahaha! Wie waren meine robusten Pokémon?!" - } - }, - "olympia": { - "encounter": { - 1: "Ein alter Brauch entscheidet über das Schicksal. Der Kampf beginnt!" - }, - "victory": { - 1: "Schaffe deinen eigenen Weg. Lass dir nichts in den Weg stellen. Dein Schicksal, deine Zukunft." - }, - "defeat": { - 1: "Unser Weg ist jetzt klar." - } - }, - "volkner": { - "encounter": { - 1: `Da du so weit gekommen bist, musst du ziemlich stark sein… - $Ich hoffe, du bist der Trainer, der mich daran erinnert, wie viel Spaß es macht zu kämpfen!`, - }, - "victory": { - 1: `Du hast mich besiegt… - $Dein Verlangen und die edle Art, wie deine Pokémon für dich gekämpft haben… - $Ich habe mich sogar während unseres Kampfes begeistert gefühlt. Das war ein sehr guter Kampf.`, - }, - "defeat": { - 1: `Es war überhaupt nicht schockierend… - $Das ist nicht das, was ich wollte!`, - } - }, - "burgh": { - "encounter": { - 1: `M'hm… Wenn ich diesen Kampf gewinne, habe ich das Gefühl, - $dass ich ein Bild malen kann, das es so noch nie gegeben hat. - $OK! Ich höre meine Kampf-Muse laut und deutlich. Lass uns gleich loslegen!`, - 2: `Natürlich bin ich wirklich stolz auf all meine Pokémon! - $Nun, dann... Lass uns gleich loslegen!` - }, - "victory": { - 1: "Ist es vorbei? Hat mich meine Muse verlassen?", - 2: "Hmm… Es ist vorbei! Du bist unglaublich!" - }, - "defeat": { - 1: "Wow… Irgendwie ist es doch schön, nicht wahr?", - 2: `Manchmal höre ich Leute sagen, es war ein hässlicher Sieg. - $Ich denke, wenn du dein Bestes gibst, ist jeder Sieg schön.` - } - }, - "elesa": { - "encounter": { - 1: `C'est fini! Wenn ich mir dessen sicher bin, - $fühle ich einen elektrischen Stoß durch meinen Körper laufen! - $Ich möchte dieses Gefühl erleben, also werden meine geliebten Pokémon - $jetzt deinen Kopf zum Drehen bringen!`, - }, - "victory": { - 1: "Ich wollte deinen Kopf zum Drehen bringen, aber du hast mich schockiert." - }, - "defeat": { - 1: "Das war irgendwie unbefriedigend… Wirst du nächstes Mal alles geben?" - } - }, - "skyla": { - "encounter": { - 1: `Es ist endlich Zeit für ein Duell! Das bedeutet den Pokémon-Kampf, - $der entscheidet, wer an der Spitze steht, richtig? - $Ich liebe es, auf dem Gipfel zu stehen! Weil man von hohen Orten aus für immer und ewig sehen kann! - $Also, wie wäre es, wenn wir beide Spaß haben?`, - }, - "victory": { - 1: "Dein Gegner im Kampf zu sein, ist eine neue Kraftquelle für mich. Danke!" - }, - "defeat": { - 1: "Gewinnen oder verlieren, man lernt immer etwas aus einem Kampf, richtig?" - } - }, - "brycen": { - "encounter": { - 1: `Es gibt auch Stärke darin, mit anderen Menschen und Pokémon zusammen zu sein. - $Ihre Unterstützung zu erhalten, macht dich stärker. Ich werde dir diese Kraft zeigen!`, - }, - "victory": { - 1: "Die wunderbare Kombination aus dir und deinen Pokémon! Was für eine schöne Freundschaft!" - }, - "defeat": { - 1: "Extreme Bedingungen testen und trainieren dich wirklich!" - } - }, - "drayden": { - "encounter": { - 1: `Was ich finden möchte, ist ein junger Trainer, der mir eine helle Zukunft zeigen kann. - $Lass uns mit allem kämpfen, was wir haben: dein Können, meine Erfahrung und die Liebe, - $mit der wir unsere Pokémon großgezogen haben!`, - }, - "victory": { - 1: `Dieses intensive Gefühl, das mich nach einer Niederlage überkommt… - $Ich weiß nicht, wie ich es beschreiben soll.`, - }, - "defeat": { - 1: "Harrumph! Ich weiß, dass deine Fähigkeit größer ist als das!" - } - }, - "grant": { - "encounter": { - 1: `Es gibt nur eine Sache, die ich mir wünsche. - $Dass wir, indem wir einander übertreffen, einen Weg zu noch größeren Höhen finden.`, - }, - "victory": { - 1: "Du bist eine Mauer, die ich nicht überwinden kann!" - }, - "defeat": { - 1: `Gib nicht auf. - $Das ist wirklich alles, was es dazu gibt. - $Die wichtigsten Lektionen im Leben sind einfach.`, - } - }, - "korrina": { - "encounter": { - 1: "Zeit für Lady Connies großen Auftritt!" - }, - "victory": { - 1: "Es ist dein Wesen, das es deinen Pokémon ermöglicht, sich zu entwickeln!" - }, - "defeat": { - 1: "Was für ein explosiver Kampf!" - } - }, - "clemont": { - "encounter": { - 1: "Oh! Ich bin froh, dass wir uns getroffen haben!" - }, - "victory": { - 1: "Deine Leidenschaft für den Kampf inspiriert mich!" - }, - "defeat": { - 1: "Es sieht so aus, als würde meine Trainer-Wachstumsmaschine, Mach 2, wirklich funktionieren!" - } - }, - "valerie": { - "encounter": { - 1: `Oh, wenn das nicht ein junger Trainer ist… Es ist schön, dich so zu treffen. - $Dann nehme ich an, du hast dir das Recht auf einen Kampf verdient, als Belohnung für deine Bemühungen. - $Die schwer fassbare Fee mag zart wie eine Brise und empfindlich wie eine Blüte erscheinen, - $aber sie ist stark.`, - }, - "victory": { - 1: "Ich hoffe, dass du morgen Dinge finden wirst, über die du lächeln kannst…" - }, - "defeat": { - 1: "Oh mein Gott, wie schade…" - } - }, - "wulfric": { - "encounter": { - 1: `Weißt du was? Wir reden alle groß über das, was man vom Kämpfen und von Bindungen lernt und all das… - $Aber eigentlich mache ich es nur, weil es Spaß macht. - $Wen kümmert das Prahlen? Lass uns kämpfen!`, - }, - "victory": { - 1: "Hervorragend! Ich bin so hart wie ein Eisberg, aber du hast mich komplett durchschlagen!" - }, - "defeat": { - 1: "Kämpfe mit mir, und das passiert!" - } - }, - "kabu": { - "encounter": { - 1: `Jeder Trainer und jedes Pokémon trainiert hart, um den Sieg zu erringen. - $Aber das bedeutet, dass auch dein Gegner hart arbeitet, um zu gewinnen. - $Am Ende wird das Match von der Seite entschieden, die ihr wahres Potenzial entfesseln kann.`, - }, - "victory": { - 1: "Ich bin froh, dass ich heute gegen dich kämpfen konnte!" - }, - "defeat": { - 1: "Das ist eine großartige Möglichkeit für mich, mein eigenes Wachstum zu spüren!" - } - }, - "bea": { - "encounter": { - 1: `Hast du einen unerschütterlichen Geist, der sich nicht bewegt, egal wie du angegriffen wirst? - $Ich denke, ich werde das einfach mal testen, oder?`, - }, - "victory": { - 1: "Ich habe den Kampfgeist deiner Pokémon gespürt, als du sie in den Kampf geführt hast." - }, - "defeat": { - 1: "Das war die beste Art von Match, die man sich je wünschen kann." - } - }, - "opal": { - "encounter": { - 1: "Lass mich sehen, wie du und dein Partner-Pokémon euch verhalten!" - }, - "victory": { - 1: "Dein Rosa fehlt noch, aber du bist ein ausgezeichneter Trainer mit ausgezeichneten Pokémon." - }, - "defeat": { - 1: "Schade für dich, denke ich." - } - }, - "bede": { - "encounter": { - 1: "Ich nehme an, ich sollte zweifelsfrei beweisen, wie erbärmlich du bist und wie stark ich bin." - }, - "victory": { - 1: "Ich verstehe... Nun, das ist in Ordnung. Ich habe mich sowieso nicht wirklich angestrengt." - }, - "defeat": { - 1: "Nicht schlecht, muss ich sagen." - } - }, - "gordie": { - "encounter": { - 1: "Also, lass uns das hinter uns bringen." - }, - "victory": { - 1: "Ich möchte einfach in ein Loch kriechen... Nun, ich denke, es wäre eher wie ein Sturz von hier." - }, - "defeat": { - 1: "Kämpfe wie immer, der Sieg wird folgen!" - } - }, - "marnie": { - "encounter": { - 1: `Die Wahrheit ist, am Ende des Tages... Ich möchte wirklich nur Champion für mich selbst werden! - $Also nimm es nicht persönlich, wenn ich dir den Hintern versohle!` - }, - "victory": { - 1: "OK, ich habe verloren... Aber ich habe viele gute Seiten von dir und deinen Pokémon gesehen!" - }, - "defeat": { - 1: "Ich hoffe, du hast unsere Kampfstrategien genossen." - } - }, - "raihan": { - "encounter": { - 1: `Ich werde den Champion besiegen, das ganze Turnier gewinnen und der Welt beweisen, - $wie stark der großartige Roy wirklich ist!` - }, - "victory": { - 1: `Ich sehe sogar gut aus, wenn ich verliere. - $Es ist ein echter Fluch. - $Ich denke, es ist Zeit für ein weiteres Selfie!` - }, - "defeat": { - 1: "Lass uns ein Selfie zur Erinnerung machen." - } - }, - "brassius": { - "encounter": { - 1: "Ich nehme an, du bist bereit? Lassen wir unser gemeinsames Kunstwerk beginnen!" - }, - "victory": { - 1: "Ahhh... avant-garde!" - }, - "defeat": { - 1: "Ich werde sofort mit einem neuen Stück beginnen!" - } - }, - "iono": { - "encounter": { - 1: `Hey, Leute! Es ist Zeit für Enigmaras EnigmaTV!!! Naaaa, alles klärchen? - $Hola, ciao und hallöle! Und schon bist du gefangen in meinem Elektronetz! - $Wer ich bin, fragst du? Na, Enigmara natürlich! Ich bin hier die Arenaleiterin.`, - }, - "victory": { - 1: "Du leuchtest ja so hell wie ein tausendfacher Donnerblitz!" - }, - "defeat": { - 1: "Deine Augen gehören MIR!" - } - }, - "larry": { - "encounter": { - 1: "Wenn alles gesagt und getan ist, ist Einfachheit am stärksten." - }, - "victory": { - 1: "Eine Portion Niederlage, hm?" - }, - "defeat": { - 1: "Ich mache Schluss für heute." - } - }, - "ryme": { - "encounter": { - 1: "Komm schon, Baby! Bring mich zum Zittern bis auf die Knochen!" - }, - "victory": { - 1: "Du bist cool, mein Freund - du bewegst meine SEELE!" - }, - "defeat": { - 1: "Bis später, Baby!" - } - }, - "grusha": { - "encounter": { - 1: "Alles, was ich tun muss, ist sicherzustellen, dass die Kraft meiner Pokémon dich bis auf die Knochen kühlt!" - }, - "victory": { - 1: "Deine brennende Leidenschaft... Ich mag sie ehrlich gesagt irgendwie." - }, - "defeat": { - 1: "Es hat nicht für dich gereicht." - } - }, - "marnie_elite": { - "encounter": { - 1: "Du hast es so weit geschafft, hm? Mal sehen, ob du mit meinen Pokémon umgehen kannst!", - 2: "Ich werde mein Bestes geben, aber denke nicht, dass ich es dir leicht machen werde!" - }, - "victory": { - 1: "Ich kann nicht glauben, dass ich verloren habe... Aber du hast den Sieg verdient. Gut gemacht!", - 2: "Es sieht so aus, als hätte ich noch viel zu lernen. Toller Kampf trotzdem!" - }, - "defeat": { - 1: "Du hast gut gekämpft, aber ich habe den Vorteil! Viel Glück beim nächsten Mal!", - 2: "Es scheint, als hätte sich mein Training ausgezahlt. Danke für den Kampf!" - } - }, - "nessa_elite": { - "encounter": { - 1: "Die Gezeiten wenden sich zu meinen Gunsten. Bereit, weggespült zu werden?", - 2: "Lass uns mit diesem Kampf Wellen schlagen! Ich hoffe, du bist vorbereitet!" - }, - "victory": { - 1: "Du hast diese Gewässer perfekt navigiert... Gut gemacht!", - 2: "Es sieht so aus, als wären meine Strömungen kein Match für dich. Tolle Arbeit!" - }, - "defeat": { - 1: "Wasser findet immer einen Weg. Das war ein erfrischender Kampf!", - 2: "Du hast gut gekämpft, aber die Macht des Ozeans ist unaufhaltsam!" - } - }, - "bea_elite": { - "encounter": { - 1: "Bereite dich vor! Mein Kampfgeist brennt hell!", - 2: "Mal sehen, ob du mit meinem unaufhaltsamen Tempo mithalten kannst!" - }, - "victory": { - 1: "Deine Stärke... Sie ist beeindruckend. Du hast diesen Sieg wirklich verdient.", - 2: "Ich habe diese Intensität noch nie zuvor gespürt. Unglaubliche Leistung!" - }, - "defeat": { - 1: "Ein weiterer Sieg für mein intensives Trainingsprogramm! Gut gemacht!", - 2: "Du hast Stärke, aber ich habe härter trainiert. Toller Kampf!" - } - }, - "allister_elite": { - "encounter": { - 1: "Die Schatten fallen... Bist du bereit, dich deinen Ängsten zu stellen?", - 2: "Mal sehen, ob du mit der Dunkelheit, die ich befehle, umgehen kannst." - }, - "victory": { - 1: "Du hast die Schatten vertrieben... Für jetzt. Gut gemacht.", - 2: "Dein Licht hat meine Dunkelheit durchdrungen. Tolle Leistung." - }, - "defeat": { - 1: "Die Schatten haben gesprochen... Deine Stärke reicht nicht aus.", - 2: "Die Dunkelheit triumphiert... Vielleicht wirst du nächstes Mal das Licht sehen." - } - }, - "raihan_elite": { - "encounter": { - 1: "Ein Sturm zieht auf! Mal sehen, ob du diesen Kampf überstehst!", - 2: "Mach dich bereit, dem Auge des Sturms zu begegnen!" - }, - "victory": { - 1: "Du hast den Sturm bezwungen... Unglaubliche Leistung!", - 2: "Du hast die Winde perfekt geritten... Toller Kampf!" - }, - "defeat": { - 1: "Ein weiterer Sturm überstanden, ein weiterer Sieg errungen! Gut gekämpft!", - 2: "Du bist in meinen Sturm geraten! Viel Glück beim nächsten Mal!" - } - }, - "alder": { - "encounter": { - 1: "Mach dich bereit für einen Kampf gegen den stärksten Trainer in Einall! Mich - Lauro!" - }, - "victory": { - 1: "Gut gemacht! Du hast wirklich ein unvergleichliches Talent." - }, - "defeat": { - 1: `Ein frischer Wind weht durch mein Herz... - $Was für ein außergewöhnliches Gefühl!` - } - }, - "kieran": { - "encounter": { - 1: `Durch harte Arbeit werde ich immer stärker und stärker! - $Ich verliere nicht.` - }, - "victory": { - 1: `Ich kann es nicht glauben... - $Was für ein lustiger und herzzerreißender Kampf!` - }, - "defeat": { - 1: `Wow, was für ein Kampf! - $Es ist Zeit für dich, noch härter zu trainieren.` - } - }, - "rival": { - "encounter": { - 1: `@c{smile}Hey, ich habe dich gesucht! Ich weiß, dass du es nicht erwarten konntest loszugehen, - $aber hättest ja wenigstens Tschüss sagen können... - $@c{smile_eclosed}Du verfolgst also wirklich deinen Traum?\nIch kann es kaum glauben. - $@c{serious_smile_fists}Da wir schon einmal hier sind, wie wäre es mit einem Kampf?\nImmerhin muss ich doch sicherstellen, dass du bereit bist. - $@c{serious_mopen_fists}Halte dich nicht zurück, zeig mir alles was du hast!` - }, - "victory": { - 1: `@c{shock}Wow…Du hast mich komplett überrumpelt.\nBist du wirklich ein Anfänger? - $@c{smile}Vielleicht war es einfach etwas Glück, aber…\nWer weiß, vielleicht schaffst du es irgendwann - $ja wirklich ganz groß raus zu kommen. - $Übrigens, der Professor hat mich gebeten dir diese Items zu geben. Die sehen wirklich cool aus. - $@c{serious_smile_fists}Viel Glück da draußen! - $@c{smile}Oh-und genieße das Event!` - }, - }, - "rival_female": { - "encounter": { - 1: `@c{smile_wave}Da bist du! Ich habe schon überall nach dir gesucht!\n@c{angry_mopen}Hast du etwas vergessen - $deiner besten Freundin Tschüss zu sagen? - $@c{smile_ehalf}Du folgst deinem Traum, oder?\nDas ist wirklich heute… - $@c{smile}Naja, ich vergeben dir, dass du mich vergessen hast, aber nur unter einer Bedingung. @c{smile_wave_wink}Du musst gegen mich kämpfen! - $@c{angry_mopen}Gib alles! Wir wollen doch nicht, dass dein Abenteuer endet bevor es begonnen hat, richtig?` - }, - "victory": { - 1: `@c{shock}Du hast gerade erst angefangen und bist schon so stark?!@d{96} @c{angry}Du hast sowas von betrogen, oder? - $@c{smile_wave_wink}Ich mach nur Spaß!@d{64} @c{smile_eclosed}Ich habe ehrlich verloren… Ich habe das Gefühl, dass du es dort draußen weit bringen wirst. - $@c{smile}Übrigens, der Professor hat mich gebeten dir diese Items zu geben. Ich hoffe sie sind hilfreich! - $@c{smile_wave}Gib wie immer dein Bestes! Ich glaube an dich! - $@c{smile}Oh-und genieße das Event!` - }, - }, - "rival_2": { - "encounter": { - 1: `@c{smile}Hey, du auch hier?\n@c{smile_eclosed}Immernoch ungeschlagen, hmm…? - $@c{serious_mopen_fists}Ich weiß es sieht so aus, als wäre ich dir hierher gefolgt, aber das ist so nicht ganz richtig. - $@c{serious_smile_fists}Ehrlicherweise kann ich es, seit du mich damals besiegt hast, garnicht erwarten erneut gegen dich zu kämpfen. - $Ich habe selbst hart traniert. Ich werde dir diesesmal also ein würdigerer Gegner sein!. - $@c{serious_mopen_fists}Halt dich nicht zurück, genauso wie beim letzten Mal!\nLos gehts!` - }, - "victory": { - 1: `@c{neutral_eclosed}Oh. Ich war also zu sehr von mir überzeugt. - $@c{smile}Das ist Ok. Ich hatte mir schon gedacht, dass sowas passiert.\n - $@c{serious_mopen_fists}Es bedeutet einfach, dass ich mich beim nächsten Mal mehr anstrengen muss!\n - $@c{smile}Nicht, dass du wirklich Hilfe benötigen würdest, aber ich habe hier noch eins von diesen Dingern herumliegen. - $Du kannst es haben.\n - $@c{serious_smile_fists}Erwarte aber nicht, dass ich dir noch mehr gebe!\nIch kann meinen Rivalen doch keine Vorteile verschaffen. - $@c{smile}Egal, pass auf dich auf und genieße das Event!` - }, - }, - "rival_2_female": { - "encounter": { - 1: `@c{smile_wave}Oh, wie schön dich hier zu trefen. Sieht so aus als wärst du noch ungeschlagen. @c{angry_mopen}Hmm… Nicht schlecht! - $@c{angry_mopen}Ich weiß was du denkst, und nein, ich habe dich nicht verfolgt. @c{smile_eclosed}Ich bin einfach in der Gegend gewesen. - $@c{smile_ehalf}Ich freu mich für dich, aber ich muss dich wissen lassen, dass es auch Ok ist ab und zu mal zu verlieren. - $@c{smile}Wir lernen oft mehr aus unseren Fehlern, als aus unseren Erfolgen. - $@c{angry_mopen}Auf jeden Fall habe ich für unseren Rückkampf hart traniert. Also zeig mir was du drauf hast!` - }, - "victory": { - 1: `@c{neutral}Ich… sollte dieses Mal doch nicht verlieren… - $@c{smile}Na gut. Das bedeutet ich muss noch härter tranieren! - $@c{smile_wave}Ich habe noch eins von diesen Dingern!\n@c{smile_wave_wink}Kein Grund mir zu danken~. - $@c{angry_mopen}Das ist aber das Letzte! Du bekommst ab jett keine Geschenke mehr von mir! - $@c{smile_wave}Bleib stark und genieße das Event!` - }, - "defeat": { - 1: "Es ist Ok manchmal zu verlieren…" - } - }, - "rival_3": { - "encounter": { - 1: `@c{smile}Hey, schau mal wen wir hier haben! Ist schon eine Weile her.\n@c{neutral}Du bist… immernoch ungeschlagen? - $@c{neutral_eclosed}Die Dinge waren irgendwie... seltsam.\nEs ist Zuhause einfach nicht das Gleiche ohne dich. - $@c{serious}Ich weiß es ist selbstsüchtig, aber ich musste das einfach mal loswerden. - $@c{neutral_eclosed}Denkst du nicht, dass du dich etwas übernommen hast? - $@c{serious}Es ist nicht realistisch immer zu gewinnen\nWir müssen manchmal verlieren. Um daran zu wachsen. - $@c{neutral_eclosed}Du hattest einen guten Lauf, aber es liegt noch so viel vor dir. Es wird nicht gerade einfacher. @c{neutral}Bist du bereit dafür? - $@c{serious_mopen_fists}Falls ja, beweise es mir!` - }, - "victory": { - 1: `@c{angry_mhalf}Das ist doch Schwachsinn… Ich habe kaum aufgehört zu tranieren… - $Warum bin ich immernoch so viel schwächer?` - }, - }, - "rival_3_female": { - "encounter": { - 1: `@c{smile_wave}Lange nicht gesehen! Immernoch nicht verloren?\n@c{angry}Du fängst mich an zu nerven. @c{smile_wave_wink}Ich mach nur Spaß! - $@c{smile_ehalf}Aber ehrlich, vermisst du dein Zuhause garnicht? Oder mich? - $Ich… Ich meine, wir vermissen dich wirklich. - $@c{smile_eclosed}Ich unterstütze dich bei deinem Traum, aber die Realität ist, du wirst früher oder später verlieren. - $@c{smile}Und ich bin für dich da falls du es tust, wie immer.\n@c{angry_mopen}Also, zeig mir wie stark du geworden bist!` - }, - "victory": { - 1: `@c{shock}Nach allem was ich getan habe… war es immernoch nicht genug…? - $Wenn es so weiter geht hole ich nie auf…` - - }, - "defeat": { - 1: "Du hast dein Bestes gegeben. Lass uns nach Hause gehen." - } - }, - "rival_4": { - "encounter": { - 1: `@c{neutral}Hey. - $Ich werde jetzt keine Gefälligkeiten mit dir austauschen.\n@c{neutral_eclosed}Ich bin hier um zu gewinnen. Mehr nicht. - $@c{serious_mhalf_fists}Durch mein Traning habe ich gelernt mein Potenzial zu maximieren. - $@c{smile}Man hat deutlich mehr Zeit, wenn man auf Schlaf und unnötige soziale Interaktionen verzichtet. - $@c{serious_mopen_fists}Das ist alles nicht mehr wichtig, nicht solange ich nicht gewonnen habe. - $@c{neutral_eclosed}Ich bin an dem Punkt an dem ich nicht mehr verliere.\n@c{smile_eclosed}Ich schätze deine Einstellung war doch nicht so falsch. - $@c{angry_mhalf}Nur die Schwachen verlieren, und ich bin nicht mehr schwach. - $@c{serious_mopen_fists}Bereite dich vor zu verlieren.` - }, - "victory": { - 1: "@c{neutral}Was…@d{64} Was bist du?" - }, - }, - "rival_4_female": { - "encounter": { - 1: `@c{neutral}Ich bins! Du hast mich doch nicht vergessen, oder? - $@c{smile}Du solltest stolz auf dich sein. Du hast es soweit gebracht. Glückwunsch! - $Aber hier endet deine Reise jetzt. - $@c{smile_eclosed}Du hast etwas in mir erwachen lassen, etwas von dem ich nicht wusste, dass es da war. - $Alles was ich jetzt mache ist tranieren. @c{smile_ehalf}Ich esse oder schlafe kaum. - $Ich traniere meine Pokémon den ganzen Tag. Und werde immer stärker. - $@c{neutral}Genau genommen, erkenne ich mich garnicht wieder. - $Und jetzt habe ich endlich meinen Höhepunkt erreicht.\nNiemand kann mich jetzt noch schlagen. - $Und weißt du was? Das ist alles wegen dir.\n@c{smile_ehalf}Ich weiß nicht ob ich dir danken, oder dich hassen soll! - $@c{angry_mopen}Mach dich bereit!` - }, - "victory": { - 1: "@c{neutral}Was…@d{64} Was bist du?" - - }, - "defeat": { - 1: "$@c{smile}Du solltest stolz darauf sein wie weit du es geschafft hast." - } - }, - "rival_5": { - "encounter": { - 1: "@c{neutral}…" - }, - "victory": { - 1: "@c{neutral}…" - }, - }, - "rival_5_female": { - "encounter": { - 1: "@c{neutral}…" - }, - "victory": { - 1: "@c{neutral}…" - - }, - "defeat": { - 1: "$@c{smile_ehalf}…" - } - }, - "rival_6": { - "encounter": { - 1: `@c{smile_eclosed}So sehen wir uns wieder. - $@c{neutral}Ich hatte Zeit über alles nachzudenken.\nÜber den Grund, warum alles so merkwürdig erscheint. - $@c{neutral_eclosed}Dein Traum, mein Antrieb dich besiegen zu wollen…\nEs ist alles Teil von etwas Größerem. - $@c{serious}Es geht nicht um dich, oder mich… Es geht um diese Welt.\n@c{serious_mhalf_fists}Es ist mein Schicksal dich an deine Grenzen zu treiben. - $@c{neutral_eclosed}Ob ich meine Aufgabe erfüllt habe kann ich nicht sagen, aber ich habe alles getan was ich konnte. - $@c{neutral}Der Ort an dem wir uns befinden ist angsteinflößend… - $Trotzdem fühlt es sich so an, als würde mich das nicht stören, als wäre ich bereits schonmal hier gewesen. - $@c{serious_mhalf_fists}Dir geht es doch genauso, oder? - $@c{serious}…und irgendwas hier spricht zu mir.\nDas ist alles was die Welt seit langem kennt. - $Die Zeiten die wir zusammen verbracht haben, die so nah erscheinen, sind nichts als eine ferne Erinnerung. - $@c{neutral_eclosed}Wer weiß, ob sie jemals real waren? - $@c{serious_mopen_fists}Du musst weiter gehen, denn wenn du es nicht tust, wird es nie enden. Du bist der Einzige, der das schaffen kann. - $@c{serious_smile_fists}Ich… Ich weiß nicht was das alles bedeutet, aber ich fühle, dass es wahr ist. - $@c{serious_mopen_fists}Wenn du mich nicht hier und jetzt besiegen kannst, hast du keine Chance.` - }, - "victory": { - 1: `@c{smile_eclosed}Es sieht so aus, als wäre meine Arbeit getan. - $Ich will dass du mir eine Sache versprichst.\n@c{smile}Komm bitte nach Hause nachdem du die Welt gerettet hast.` - }, - }, - "rival_6_female": { - "encounter": { - 1: `@c{smile_ehalf}Jetzt sind es wieder nur wir zwei. - $@c{smile_eclosed}Weißt du, egal wie ich es drehe und wende… - $@c{smile_ehalf}Irgendwas stört mich an der ganzen Sache, es erscheint mir irgendwie komisch… - $@c{smile}Du hast deinen Traum, und ich habe diesen Antrieb… - $Ich kann nicht anders, als zu glauben, dass es einen größeren Zweck gibt. - $@c{smile_eclosed}Ich denke, ich sollte dich an deine Grenzen treiben. - $@c{smile_ehalf}Ich bin mir nicht sicher, ob ich meine Aufgabe erfüllt habe, aber ich habe mein Bestes gegeben. - $Irgendwas an diesem komischen und furchteinflößenden Ort… All das scheint so klar… - $Es… ist alles was die Welt seit langem kennt. - $@c{smile_eclosed}Es kommt mir so vor als könnte ich mich kaum an die Erinnerungen erinnern, die wir zusammen hatten. - $@c{smile_ehalf}Waren sie jemals real? Sie scheinen so weit weg… - $@c{angry_mopen}Du musst weiter gehen, denn wenn du es nicht tust, wird es nie enden. Du bist der Einzige, der das schaffen kann. - $@c{smile_ehalf}Ich… Ich weiß nicht was das alles bedeutet, aber ich fühle, dass es wahr ist. - $@c{neutral}Wenn du mich nicht hier und jetzt besiegen kannst, hast du keine Chance.` - }, - "victory": { - 1: `@c{smile_ehalf}Ich… Ich denke ich habe meine Aufgabe erfüllt. - $@c{smile_eclosed}Versprich mir… Nachdem du die Welt geheilt hast… Komm bitte sicher nach Hause. - $@c{smile_ehalf}…Danke.` - - }, - }, -}; - -// Dialogue of the NPCs in the game when the player character is female. For languages that do not have gendered pronouns, this can be set to PGMdialogue. -export const PGFdialogue: DialogueTranslationEntries = PGMdialogue; - -// Dialogue of the endboss of the game when the player character is male (Or unset) -export const PGMbattleSpecDialogue: SimpleTranslationEntries = { - "encounter": `Es scheint, als wäre es wieder mal an der Zeit.\nDu weißt, warum du hierher kommen musst, oder? - $Dich hat es hierher gezogen, du warst bereits hier.\nUnzählige Male. - $Obwohl, vielleicht doch nicht unzählig.\nUm genau zu sein, dies ist der {{cycleCount}}te Zyklus. - $Du verlierst jeden Zyklus dein Gedächtnis. Trotzdem \nbleibt etwas, ein Teil deines ehemaligen Ichs, erhalten. - $Bis jetzt hast du es noch nicht vollbracht zu siegen, aber dieses Mal spüre ich eine andere Präsenz in dir.\n - $Du bist der Einzige hier, aber es kommt mir so vor als wäre da...jemand anderes. - $Wirst du endlich beweisen, dass du ein würdiger Herausforder bist?\nDie Herausforderung auf die ich seit Jahrtausenden warte? - $Lass uns beginnen.`, - "firstStageWin": `Ahh verstehe. Diese Präsenz, die ich gespürt habe, ist wirklich real.\nEs scheint als müsste ich micht nicht länger zurück halten. - $Enttäusche mich nicht.`, - "secondStageWin": "…Herrlich." -}; - -// Dialogue of the endboss of the game when the player character is female. For languages that do not have gendered pronouns, this can be set to PGMbattleSpecDialogue. -export const PGFbattleSpecDialogue: SimpleTranslationEntries = PGMbattleSpecDialogue; - - -// Dialogue that does not fit into any other category (e.g. tutorial messages, or the end of the game). For when the player character is male -export const PGMmiscDialogue: SimpleTranslationEntries = { - "ending": - `@c{smile}Oh? Du hast gewonnen?@d{96} @c{smile_eclosed}Ich schätze, das hätte ich wissen sollen. - $Aber, du bist jetzt zurück. - $@c{smile}Es ist vorbei.@d{64} Du hast die Schleife beendet. - $@c{serious_smile_fists}Du hast auch deinen Traum erfüllt, nicht wahr?\nDu hast nicht einmal verloren. - $@c{neutral}Ich bin der Einzige, der sich daran erinnern wird, was du getan hast.@d{96} - $Ich schätze, das ist in Ordnung, oder? - $@c{serious_smile_fists}Deine Legende wird immer in unseren Herzen weiterleben. - $@c{smile_eclosed}Wie auch immer, ich habe genug von diesem Ort, oder nicht? Lass uns nach Hause gehen. - $@c{serious_smile_fists}Vielleicht können wir, wenn wir zurück sind, noch einen Kampf haben? - $Wenn du dazu bereit bist.`, - "ending_female": - `@c{shock}Du bist zurück?@d{32} Bedeutet das…@d{96} du hast gewonnen?! - $@c{smile_ehalf}Ich hätte wissen sollen, dass du es in dir hast. - $@c{smile_eclosed}Natürlich… ich hatte immer dieses Gefühl. - $@c{smile}Es ist jetzt vorbei, richtig? Du hast die Schleife beendet. - $@c{smile_ehalf}Du hast auch deinen Traum erfüllt, nicht wahr? - $Du hast nicht einmal verloren. - $Ich werde die Einzige sein, die sich daran erinnert, was du getan hast. - $@c{angry_mopen}Ich werde versuchen, es nicht zu vergessen! - $@c{smile_wave_wink}Nur ein Scherz!@d{64} @c{smile}Ich würde es nie vergessen.@d{32} - $Deine Legende wird in unseren Herzen weiterleben. - $@c{smile_wave}Wie auch immer,@d{64} es wird spät…@d{96} denke ich?\nEs ist schwer zu sagen an diesem Ort. - $Lass uns nach Hause gehen. - $@c{smile_wave_wink}Vielleicht können wir morgen noch einen Kampf haben, der alten Zeiten willen?`, -}; - - -// Dialogue that does not fit into any other category (e.g. tutorial messages, or the end of the game). For when the player character is female. For languages that do not have gendered pronouns, this can be set to PGMmiscDialogue. -export const PGFmiscDialogue: SimpleTranslationEntries = PGMmiscDialogue; - - -// Dialogue of the named double battles in the game. For when the player is male (or unset). -export const PGMdoubleBattleDialogue: DialogueTranslationEntries = { - "blue_red_double": { - "encounter": { - 1: `Blau: Hey Rot, lass uns ihnen zeigen, was wir drauf haben! - $Rot: ... - $Blau: Das ist die Macht von Alabastia!`, - }, - "victory": { - 1: `Blau: Das war ein großartiger Kampf! - $Rot: ...`, - }, - }, - "red_blue_double": { - "encounter": { - 1: `Rot: ...! - $Blau: Er redet nicht viel... - $Blau: Aber lass dich davon nicht täuschen! Er ist schließlich ein Champ!`, - }, - "victory": { - 1: `Rot: ...! - $Blau: Das nächste Mal gewinnen wir!`, - }, - }, - "tate_liza_double": { - "encounter": { - 1: `Ben: Hehehe...Bist du überrascht? - $Svenja: Wir sind zwei Arenaleiter auf einmal! - $Ben: Wir sind Zwillinge! - $Svenja: Wir müssen nicht reden um uns gegenseitig zu verstehen! - $Ben: Die doppelte Kraft... - $Svenja: Kannst du ihr standhalten?`, - }, - "victory": { - 1: `Ben: Was? Unsere Kombination war perfekt! - $Svenja: Sieht so aus als müssten wir wohl mehr tranieren...`, - }, - }, - "liza_tate_double": { - "encounter": { - 1: `Svenja: Hihihi... Bist du überrascht? - $Ben: Ja, wir sind wirklich zwei Arenaleiter auf einmal! - $Svenja: Das ist mein Zwillingsbruder Ben! - $Ben: Und das meine Zwillingsschwester Svenja! - $Svenja: Wir sind die perfekte Kombo!` - }, - "victory": { - 1: `Svenja: Sind wir... - $Ben: ...nicht so stark wie wir dachten?`, - }, - }, - "wallace_steven_double": { - "encounter": { - 1: `Troy: Wassili, lass uns ihnen die Kraft von Champions zeigen! - $Wassili: Wir zeigen dir die Kraft von Hoenn! - $Troy: Los gehts!`, - }, - "victory": { - 1: `Troy: Das war ein großartiger Kampf! - $Wassili: Das nächste Mal gewinnen wir!`, - }, - }, - "steven_wallace_double": { - "encounter": { - 1: `Troy: Hast du irgendwelche seltenen Pokémon? - $Wassili: Troy... Wir sind hier um zu kämpfen und nicht um mit unseren Pokémon zu prahlen... - $Troy: Oh... Wenn das so ist... Lass uns anfangen!`, - }, - "victory": { - 1: `Troy: Jetzt da wir mit Kämpfen fertig sind... Lass uns mit unsereren Pokémon prahlen! - $Wassili: Troy...`, - }, - }, - "alder_iris_double": { - "encounter": { - 1: `Lauro: Wir sind die stärksten Trainer aus Einall! - $Lilia: Kämpfe gegen starke Trainer machen am meisten Spaß!`, - }, - "victory": { - 1: `Lauro: Wow! Du bist super stark! - $Lilia: Beim nächsten Mal schlagen wir dich!`, - }, - }, - "iris_alder_double": { - "encounter": { - 1: `Lilia: Willkommen Herausforderer! Ich bin DER Champion von Einall! - $Lauro: Lilia, bist du nicht etwas zu aufgeregt?`, - }, - "victory": { - 1: `Lilia: Eine solche Niederlage ist nicht einfach zu verkraften... - $Lauro: Aber wir wachsen an unseren Niederlagen und werden immer besser!`, - }, - }, - "marnie_piers_double": { - "encounter": { - 1: `Mary: Bruder, lass uns ihnen die Kraft von Spikeford zeigen! - $Nezz: Wir bringen die Dunkelheit!`, - }, - "victory": { - 1: `Mary: Du hast Licht in unsere Dunkelheit gebracht! - $Piers: Es ist viel zu hell...`, - }, - }, - "piers_marnie_double": { - "encounter": { - 1: `Nezz: Bereit für ein Konzert? - $Mary: Bruder...Sie sind hier um zu kämpfen, nicht um zu singen...`, - }, - "victory": { - 1: `Nezz: Das war mal ein großartiges Konzert! - $Marnie: Bruder...`, - }, - }, -}; - -// Dialogue of the named double battles in the game. For when the player is female. For languages that do not have gendered pronouns, this can be set to PGMdoubleBattleDialogue. -export const PGFdoubleBattleDialogue: DialogueTranslationEntries = PGMdoubleBattleDialogue; diff --git a/src/locales/de/egg.ts b/src/locales/de/egg.json similarity index 87% rename from src/locales/de/egg.ts rename to src/locales/de/egg.json index 9dc7b10f174..dbece7e81f3 100644 --- a/src/locales/de/egg.ts +++ b/src/locales/de/egg.json @@ -1,6 +1,4 @@ -import { SimpleTranslationEntries } from "#app/interfaces/locales"; - -export const egg: SimpleTranslationEntries = { +{ "egg": "Ei", "greatTier": "Selten", "ultraTier": "Episch", @@ -24,5 +22,5 @@ export const egg: SimpleTranslationEntries = { "rareEggMoveUnlock": "Seltene Ei-Attacke freigeschaltet: {{moveName}}", "moveUPGacha": "Mehr\nEi-Attacken!", "shinyUPGacha": "Mehr\nSchillernde!", - "legendaryUPGacha": "erscheint\nöfter!", -} as const; + "legendaryUPGacha": "erscheint\nöfter!" +} \ No newline at end of file diff --git a/src/locales/de/fight-ui-handler.json b/src/locales/de/fight-ui-handler.json new file mode 100644 index 00000000000..6965540c703 --- /dev/null +++ b/src/locales/de/fight-ui-handler.json @@ -0,0 +1,7 @@ +{ + "pp": "AP", + "power": "Stärke", + "accuracy": "Genauigkeit", + "abilityFlyInText": "{{passive}}{{abilityName}} von {{pokemonName}} wirkt!", + "passive": "Passive Fähigkeit " +} \ No newline at end of file diff --git a/src/locales/de/fight-ui-handler.ts b/src/locales/de/fight-ui-handler.ts deleted file mode 100644 index 255b48b3aa4..00000000000 --- a/src/locales/de/fight-ui-handler.ts +++ /dev/null @@ -1,9 +0,0 @@ -import { SimpleTranslationEntries } from "#app/interfaces/locales"; - -export const fightUiHandler: SimpleTranslationEntries = { - "pp": "AP", - "power": "Stärke", - "accuracy": "Genauigkeit", - "abilityFlyInText": "{{passive}}{{abilityName}} von {{pokemonName}} wirkt!", - "passive": "Passive Fähigkeit ", // The space at the end is important -} as const; diff --git a/src/locales/de/filter-bar.ts b/src/locales/de/filter-bar.json similarity index 89% rename from src/locales/de/filter-bar.ts rename to src/locales/de/filter-bar.json index 102686dd93f..ebfeaa6a00e 100644 --- a/src/locales/de/filter-bar.ts +++ b/src/locales/de/filter-bar.json @@ -1,6 +1,4 @@ -import { SimpleTranslationEntries } from "#app/interfaces/locales"; - -export const filterBar: SimpleTranslationEntries = { +{ "genFilter": "Gen.", "typeFilter": "Typ", "caughtFilter": "Gefangen", @@ -36,5 +34,5 @@ export const filterBar: SimpleTranslationEntries = { "sortByCost": "Kosten", "sortByCandies": "Anzahl Bonbons", "sortByIVs": "IS-Werte", - "sortByName": "Name", -}; + "sortByName": "Name" +} \ No newline at end of file diff --git a/src/locales/de/game-mode.json b/src/locales/de/game-mode.json new file mode 100644 index 00000000000..214ee156b7b --- /dev/null +++ b/src/locales/de/game-mode.json @@ -0,0 +1,8 @@ +{ + "classic": "Klassik", + "endless": "Endlos", + "endlessSpliced": "Endlos (Fusion)", + "dailyRun": "Täglicher Run", + "unknown": "Unbekannt", + "challenge": "Herausforderung" +} \ No newline at end of file diff --git a/src/locales/de/game-mode.ts b/src/locales/de/game-mode.ts deleted file mode 100644 index 3347bbb565f..00000000000 --- a/src/locales/de/game-mode.ts +++ /dev/null @@ -1,10 +0,0 @@ -import { SimpleTranslationEntries } from "#app/interfaces/locales"; - -export const gameMode: SimpleTranslationEntries = { - "classic": "Klassik", - "endless": "Endlos", - "endlessSpliced": "Endlos (Fusion)", - "dailyRun": "Täglicher Run", - "unknown": "Unbekannt", - "challenge": "Herausforderung", -} as const; diff --git a/src/locales/de/game-stats-ui-handler.ts b/src/locales/de/game-stats-ui-handler.json similarity index 87% rename from src/locales/de/game-stats-ui-handler.ts rename to src/locales/de/game-stats-ui-handler.json index 776a28f95c7..f52c31e2ee8 100644 --- a/src/locales/de/game-stats-ui-handler.ts +++ b/src/locales/de/game-stats-ui-handler.json @@ -1,44 +1,42 @@ -import { SimpleTranslationEntries } from "#app/interfaces/locales"; - -export const gameStatsUiHandler: SimpleTranslationEntries = { - "stats": "Statistiken", - "playTime": "Spielzeit", - "totalBattles": "Kämpfe insgesamt", - "starters": "Starter", - "shinyStarters": "Schillernde Starter", - "speciesSeen": "Gesehene Arten", - "speciesCaught": "Gefangene Arten", - "ribbonsOwned": "Bänder im Besitz", - "classicRuns": "Klassik-Modus Versuche", - "classicWins": "Klassik-Modus Siege", - "dailyRunAttempts": "Täglicher-Modus Versuche", - "dailyRunWins": "Täglicher-Modus Siege", - "endlessRuns": "Endlos-Modus Versuche", - "highestWaveEndless": "Höchste Welle (Endlos)", - "highestMoney": "Max. Geld im Besitz", - "highestDamage": "Höchster Schaden", - "highestHPHealed": "Höchste Heilung", - "pokemonEncountered": "Getroffene Pokémon", - "pokemonDefeated": "Besiegte Pokémon", - "pokemonCaught": "Gefangene Pokémon", - "eggsHatched": "Ausgebrütete Eier", - "subLegendsSeen": "Getroffene Sub-Legenden", - "subLegendsCaught": "Gefangene Sub-Legenden", - "subLegendsHatched": "Ausgebrütete Sub-Legenden", - "legendsSeen": "Getroffene Legenden", - "legendsCaught": "Gefangene Legenden", - "legendsHatched": "Ausgebrütete Legenden", - "mythicalsSeen": "Getroffene Mythische", - "mythicalsCaught": "Gefangene Mythische", - "mythicalsHatched": "Ausgebrütete Mythische", - "shiniesSeen": "Getroffene Schillernde", - "shiniesCaught": "Gefangene Schillernde", - "shiniesHatched": "Ausgebrütete Schillernde", - "pokemonFused": "Pokémon fusioniert", - "trainersDefeated": "Besiegte Trainer", - "eggsPulled": "Gezogene Eier", - "rareEggsPulled": "Seltene Eier Gezogen", - "epicEggsPulled": "Epische Eier Gezogen", - "legendaryEggsPulled": "Legendäre Eier Gezogen", - "manaphyEggsPulled": "Manaphy Eier Gezogen", -} as const; +{ + "stats": "Statistiken", + "playTime": "Spielzeit", + "totalBattles": "Kämpfe insgesamt", + "starters": "Starter", + "shinyStarters": "Schillernde Starter", + "speciesSeen": "Gesehene Arten", + "speciesCaught": "Gefangene Arten", + "ribbonsOwned": "Bänder im Besitz", + "classicRuns": "Klassik-Modus Versuche", + "classicWins": "Klassik-Modus Siege", + "dailyRunAttempts": "Täglicher-Modus Versuche", + "dailyRunWins": "Täglicher-Modus Siege", + "endlessRuns": "Endlos-Modus Versuche", + "highestWaveEndless": "Höchste Welle (Endlos)", + "highestMoney": "Max. Geld im Besitz", + "highestDamage": "Höchster Schaden", + "highestHPHealed": "Höchste Heilung", + "pokemonEncountered": "Getroffene Pokémon", + "pokemonDefeated": "Besiegte Pokémon", + "pokemonCaught": "Gefangene Pokémon", + "eggsHatched": "Ausgebrütete Eier", + "subLegendsSeen": "Getroffene Sub-Legenden", + "subLegendsCaught": "Gefangene Sub-Legenden", + "subLegendsHatched": "Ausgebrütete Sub-Legenden", + "legendsSeen": "Getroffene Legenden", + "legendsCaught": "Gefangene Legenden", + "legendsHatched": "Ausgebrütete Legenden", + "mythicalsSeen": "Getroffene Mythische", + "mythicalsCaught": "Gefangene Mythische", + "mythicalsHatched": "Ausgebrütete Mythische", + "shiniesSeen": "Getroffene Schillernde", + "shiniesCaught": "Gefangene Schillernde", + "shiniesHatched": "Ausgebrütete Schillernde", + "pokemonFused": "Pokémon fusioniert", + "trainersDefeated": "Besiegte Trainer", + "eggsPulled": "Gezogene Eier", + "rareEggsPulled": "Seltene Eier Gezogen", + "epicEggsPulled": "Epische Eier Gezogen", + "legendaryEggsPulled": "Legendäre Eier Gezogen", + "manaphyEggsPulled": "Manaphy Eier Gezogen" +} \ No newline at end of file diff --git a/src/locales/de/growth.ts b/src/locales/de/growth.json similarity index 55% rename from src/locales/de/growth.ts rename to src/locales/de/growth.json index 275f1645b87..9f5f17f363c 100644 --- a/src/locales/de/growth.ts +++ b/src/locales/de/growth.json @@ -1,10 +1,8 @@ -import { SimpleTranslationEntries } from "#app/interfaces/locales"; - -export const growth: SimpleTranslationEntries = { +{ "Erratic": "Unregelmäßig", "Fast": "Schnell", "Medium_Fast": "Schneller", "Medium_Slow": "Langsamer", "Slow": "Langsam", "Fluctuating": "Schwankend" -} as const; +} \ No newline at end of file diff --git a/src/locales/de/menu-ui-handler.ts b/src/locales/de/menu-ui-handler.json similarity index 85% rename from src/locales/de/menu-ui-handler.ts rename to src/locales/de/menu-ui-handler.json index 67d70e9a418..56c03102b9c 100644 --- a/src/locales/de/menu-ui-handler.ts +++ b/src/locales/de/menu-ui-handler.json @@ -1,10 +1,8 @@ -import { SimpleTranslationEntries } from "#app/interfaces/locales"; - -export const menuUiHandler: SimpleTranslationEntries = { +{ "GAME_SETTINGS": "Spieleinstellungen", "ACHIEVEMENTS": "Erfolge", "STATS": "Statistiken", - "VOUCHERS": "Gutscheine", + "RUN_HISTORY": "Laufhistorie", "EGG_LIST": "Eierliste", "EGG_GACHA": "Eier-Gacha", "MANAGE_DATA": "Daten verwalten", @@ -16,6 +14,8 @@ export const menuUiHandler: SimpleTranslationEntries = { "importSlotSelect": "Wähle einen Slot zum Importieren.", "exportSession": "Sitzung exportieren", "exportSlotSelect": "Wähle einen Slot zum Exportieren.", + "importRunHistory": "Laufhistorie importieren", + "exportRunHistory": "Laufhistorie exportieren", "importData": "Daten importieren", "exportData": "Daten exportieren", "consentPreferences": "Einwilligungspräferenzen", @@ -26,4 +26,4 @@ export const menuUiHandler: SimpleTranslationEntries = { "cancel": "Abbrechen", "losingProgressionWarning": "Du wirst jeglichen Fortschritt seit Anfang dieses Kampfes verlieren. Fortfahren?", "noEggs": "Du brütest aktuell keine Eier aus!" -} as const; +} \ No newline at end of file diff --git a/src/locales/de/menu.ts b/src/locales/de/menu.json similarity index 85% rename from src/locales/de/menu.ts rename to src/locales/de/menu.json index bfc4c31efcb..e5c1c700425 100644 --- a/src/locales/de/menu.ts +++ b/src/locales/de/menu.json @@ -1,11 +1,4 @@ -import { SimpleTranslationEntries } from "#app/interfaces/locales"; - -/** - * The menu namespace holds most miscellaneous text that isn't directly part of the game's - * contents or directly related to Pokemon data. This includes menu navigation, settings, - * account interactions, descriptive text, etc. - */ -export const menu: SimpleTranslationEntries = { +{ "cancel": "Abbrechen", "continue": "Fortfahren", "dailyRun": "Täglicher Run (Beta)", @@ -36,7 +29,7 @@ export const menu: SimpleTranslationEntries = { "failedToLoadSession": "Ihre Sitzungsdaten konnten nicht geladen werden.\nSie könnten beschädigt sein.", "boyOrGirl": "Bist du ein Junge oder ein Mädchen?", "evolving": "Nanu?\n{{pokemonName}} entwickelt sich!", - "stoppedEvolving": "Hm? {{pokemonName}} hat die Entwicklung \nabgebrochen.", // "Hm? Entwicklung wurde abgebrochen!" without naming the pokemon seems to be the original. + "stoppedEvolving": "Hm? {{pokemonName}} hat die Entwicklung \nabgebrochen.", "pauseEvolutionsQuestion": "Die Entwicklung von {{pokemonName}} vorübergehend pausieren?\nEntwicklungen können im Gruppenmenü wieder aktiviert werden.", "evolutionsPaused": "Entwicklung von {{pokemonName}} pausiert.", "evolutionDone": "Glückwunsch!\nDein {{pokemonName}} entwickelte sich zu {{evolvedPokemonName}}!", @@ -50,13 +43,13 @@ export const menu: SimpleTranslationEntries = { "loading": "Lade…", "loadingAsset": "Lade Asset: {{assetName}}", "playersOnline": "Spieler Online", - "yes":"Ja", - "no":"Nein", + "yes": "Ja", + "no": "Nein", "disclaimer": "HAFTUNGSAUSSCHLUSS", "disclaimerDescription": "Dieses Spiel ist ein unfertiges Produkt. Es kann spielbeinträchtigende Fehler (bis hin zum Verlust des Speicherstandes)\n aufweisen, sich ohne Vorankündigung ändern und es gibt keine Garantie dass es weiterentwickelt oder fertiggestellt wird.", "choosePokemon": "Wähle ein Pokémon.", "renamePokemon": "Pokémon umbennenen", "rename": "Umbenennen", "nickname": "Spitzname", - "errorServerDown": "Ups! Es gab einen Fehler beim Versuch\nden Server zu kontaktieren\nLasse dieses Fenster offen\nDu wirst automatisch neu verbunden.", -} as const; + "errorServerDown": "Ups! Es gab einen Fehler beim Versuch\nden Server zu kontaktieren\nLasse dieses Fenster offen\nDu wirst automatisch neu verbunden." +} \ No newline at end of file diff --git a/src/locales/de/modifier-select-ui-handler.ts b/src/locales/de/modifier-select-ui-handler.json similarity index 76% rename from src/locales/de/modifier-select-ui-handler.ts rename to src/locales/de/modifier-select-ui-handler.json index 78248f82da1..3de1222c3b4 100644 --- a/src/locales/de/modifier-select-ui-handler.ts +++ b/src/locales/de/modifier-select-ui-handler.json @@ -1,14 +1,12 @@ -import { SimpleTranslationEntries } from "#app/interfaces/locales"; - -export const modifierSelectUiHandler: SimpleTranslationEntries = { - "transfer": "Übertragen", - "reroll": "Neu rollen", - "lockRarities": "Seltenheit festsetzen", - "checkTeam": "Team überprüfen", - "transferDesc": "Übertrage ein gehaltenes Item zu einem anderen Pokémon.", - "rerollDesc": "Nutze Geld um die Items neu zu rollen.", - "lockRaritiesDesc": "Setze die Seltenheit der Items fest. (Beeinflusst die Rollkosten).", - "checkTeamDesc": "Überprüfe dein Team or nutze Formänderungsitems.", - "rerollCost": "{{formattedMoney}}₽", - "itemCost": "{{formattedMoney}}₽" -} as const; +{ + "transfer": "Übertragen", + "reroll": "Neu rollen", + "lockRarities": "Seltenheit festsetzen", + "checkTeam": "Team überprüfen", + "transferDesc": "Übertrage ein gehaltenes Item zu einem anderen Pokémon.", + "rerollDesc": "Nutze Geld um die Items neu zu rollen.", + "lockRaritiesDesc": "Setze die Seltenheit der Items fest. (Beeinflusst die Rollkosten).", + "checkTeamDesc": "Überprüfe dein Team or nutze Formänderungsitems.", + "rerollCost": "{{formattedMoney}}₽", + "itemCost": "{{formattedMoney}}₽" +} \ No newline at end of file diff --git a/src/locales/de/modifier-type.json b/src/locales/de/modifier-type.json new file mode 100644 index 00000000000..c9927636c2a --- /dev/null +++ b/src/locales/de/modifier-type.json @@ -0,0 +1,609 @@ +{ + "ModifierType": { + "AddPokeballModifierType": { + "name": "{{modifierCount}}x {{pokeballName}}", + "description": "Erhalte {{pokeballName}} x{{modifierCount}}. (Inventar: {{pokeballAmount}}) \nFangrate: {{catchRate}}" + }, + "AddVoucherModifierType": { + "name": "{{modifierCount}}x {{voucherTypeName}}", + "description": "Erhalte {{voucherTypeName}} x{{modifierCount}}." + }, + "PokemonHeldItemModifierType": { + "extra": { + "inoperable": "{{pokemonName}} kann dieses\nItem nicht nehmen!", + "tooMany": "{{pokemonName}} hat zu viele\nvon diesem Item!" + } + }, + "PokemonHpRestoreModifierType": { + "description": "Füllt {{restorePoints}} KP oder {{restorePercent}}% der KP für ein Pokémon auf. Je nachdem, welcher Wert höher ist.", + "extra": { + "fully": "Füllt die KP eines Pokémon wieder vollständig auf.", + "fullyWithStatus": "Füllt die KP eines Pokémon wieder vollständig auf und behebt alle Statusprobleme." + } + }, + "PokemonReviveModifierType": { + "description": "Belebt ein kampunfähiges Pokémon wieder und stellt {{restorePercent}}% KP wieder her." + }, + "PokemonStatusHealModifierType": { + "description": "Behebt alle Statusprobleme eines Pokémon." + }, + "PokemonPpRestoreModifierType": { + "description": "Füllt {{restorePoints}} AP der ausgewählten Attacke eines Pokémon auf.", + "extra": { + "fully": "Füllt alle AP der ausgewählten Attacke eines Pokémon auf." + } + }, + "PokemonAllMovePpRestoreModifierType": { + "description": "Stellt {{restorePoints}} AP für alle Attacken eines Pokémon auf.", + "extra": { + "fully": "Füllt alle AP für alle Attacken eines Pokémon auf." + } + }, + "PokemonPpUpModifierType": { + "description": "Erhöht die maximale Anzahl der AP der ausgewählten Attacke um {{upPoints}} für jede 5 maximale AP (maximal 3)." + }, + "PokemonNatureChangeModifierType": { + "name": "{{natureName}} Minze", + "description": "Ändert das Wesen zu {{natureName}}. Schaltet dieses Wesen permanent für diesen Starter frei." + }, + "DoubleBattleChanceBoosterModifierType": { + "description": "Verdoppelt die Wahrscheinlichkeit, dass die nächsten {{battleCount}} Begegnungen mit wilden Pokémon ein Doppelkampf sind." + }, + "TempBattleStatBoosterModifierType": { + "description": "Erhöht die {{tempBattleStatName}} aller Teammitglieder für 5 Kämpfe um eine Stufe." + }, + "AttackTypeBoosterModifierType": { + "description": "Erhöht die Stärke aller {{moveType}}-Attacken eines Pokémon um 20%." + }, + "PokemonLevelIncrementModifierType": { + "description": "Erhöht das Level eines Pokémon um {{levels}}." + }, + "AllPokemonLevelIncrementModifierType": { + "description": "Erhöht das Level aller Teammitglieder um {{levels}}." + }, + "PokemonBaseStatBoosterModifierType": { + "description": "Erhöht den {{statName}} Basiswert des Trägers um 10%. Das Stapellimit erhöht sich, je höher dein IS-Wert ist." + }, + "AllPokemonFullHpRestoreModifierType": { + "description": "Stellt 100% der KP aller Pokémon her." + }, + "AllPokemonFullReviveModifierType": { + "description": "Belebt alle kampunfähigen Pokémon wieder und stellt ihre KP vollständig wieder her." + }, + "MoneyRewardModifierType": { + "description": "Gewährt einen {{moneyMultiplier}} Geldbetrag von (₽{{moneyAmount}}).", + "extra": { + "small": "kleinen", + "moderate": "moderaten", + "large": "großen" + } + }, + "ExpBoosterModifierType": { + "description": "Erhöht die erhaltenen Erfahrungspunkte um {{boostPercent}}%." + }, + "PokemonExpBoosterModifierType": { + "description": "Erhöht die Menge der erhaltenen Erfahrungspunkte für den Träger um {{boostPercent}}%." + }, + "PokemonFriendshipBoosterModifierType": { + "description": "Erhöht den Freundschaftszuwachs pro Sieg um 50%." + }, + "PokemonMoveAccuracyBoosterModifierType": { + "description": "Erhöht die Genauigkeit der Angriffe um {{accuracyAmount}} (maximal 100)." + }, + "PokemonMultiHitModifierType": { + "description": "Attacken treffen ein weiteres mal mit einer Reduktion von 60/75/82,5% der Stärke." + }, + "TmModifierType": { + "name": "TM{{moveId}} - {{moveName}}", + "description": "Bringt einem Pokémon {{moveName}} bei." + }, + "TmModifierTypeWithInfo": { + "name": "TM{{moveId}} - {{moveName}}", + "description": "Bringt einem Pokémon {{moveName}} bei\n(Halte C oder Shift für mehr Infos)." + }, + "EvolutionItemModifierType": { + "description": "Erlaubt es bestimmten Pokémon sich zu entwickeln." + }, + "FormChangeItemModifierType": { + "description": "Erlaubt es bestimmten Pokémon ihre Form zu ändern." + }, + "FusePokemonModifierType": { + "description": "Fusioniert zwei Pokémon (überträgt die Fähigkeit, teilt Basiswerte und Typ auf, gemeinsamer Attackenpool)." + }, + "TerastallizeModifierType": { + "name": "{{teraType}} Terra-Stück", + "description": "{{teraType}} Terakristallisiert den Träger für bis zu 10 Kämpfe." + }, + "ContactHeldItemTransferChanceModifierType": { + "description": "Beim Angriff besteht eine {{chancePercent}}%ige Chance, dass das getragene Item des Gegners gestohlen wird." + }, + "TurnHeldItemTransferModifierType": { + "description": "Jede Runde erhält der Träger ein getragenes Item des Gegners." + }, + "EnemyAttackStatusEffectChanceModifierType": { + "description": "Fügt Angriffen eine {{chancePercent}}%ige Chance hinzu, {{statusEffect}} zu verursachen." + }, + "EnemyEndureChanceModifierType": { + "description": "Gibt den Träger eine {{chancePercent}}%ige Chance, einen Angriff zu überleben." + }, + "RARE_CANDY": { + "name": "Sonderbonbon" + }, + "RARER_CANDY": { + "name": "Supersondererbonbon" + }, + "MEGA_BRACELET": { + "name": "Mega-Armband", + "description": "Mega-Steine werden verfügbar." + }, + "DYNAMAX_BAND": { + "name": "Dynamax-Band", + "description": "Dyna-Pilze werden verfügbar." + }, + "TERA_ORB": { + "name": "Terakristall-Orb", + "description": "Tera-Stücke werden verfügbar." + }, + "MAP": { + "name": "Karte", + "description": "Ermöglicht es dir, an einer Kreuzung dein Ziel zu wählen." + }, + "POTION": { + "name": "Trank" + }, + "SUPER_POTION": { + "name": "Supertrank" + }, + "HYPER_POTION": { + "name": "Hypertrank" + }, + "MAX_POTION": { + "name": "Top-Trank" + }, + "FULL_RESTORE": { + "name": "Top-Genesung" + }, + "REVIVE": { + "name": "Beleber" + }, + "MAX_REVIVE": { + "name": "Top-Beleber" + }, + "FULL_HEAL": { + "name": "Hyperheiler" + }, + "SACRED_ASH": { + "name": "Zauberasche" + }, + "REVIVER_SEED": { + "name": "Belebersamen", + "description": "Belebt den Träger mit der Hälfte seiner KP wieder, sollte er durch einen direkten Treffer kampfunfähig werden." + }, + "WHITE_HERB": { + "name": "Schlohkraut", + "description": "Ein Item zum Tragen. Es hebt einmalig jede negative Statuswertveränderung auf." + }, + "ETHER": { + "name": "Äther" + }, + "MAX_ETHER": { + "name": "Top-Äther" + }, + "ELIXIR": { + "name": "Elixir" + }, + "MAX_ELIXIR": { + "name": "Top-Elixir" + }, + "PP_UP": { + "name": "AP-Plus" + }, + "PP_MAX": { + "name": "AP-Top" + }, + "LURE": { + "name": "Lockparfüm" + }, + "SUPER_LURE": { + "name": "Super-Lockparfüm" + }, + "MAX_LURE": { + "name": "Top-Lockparfüm" + }, + "MEMORY_MUSHROOM": { + "name": "Erinnerungspilz", + "description": "Lässt ein Pokémon eine vergessene Attacke wiedererlernen." + }, + "EXP_SHARE": { + "name": "EP-Teiler", + "description": "Pokémon, die nicht am Kampf teilgenommen haben, bekommen 20% der Erfahrungspunkte eines Kampfteilnehmers." + }, + "EXP_BALANCE": { + "name": "EP-Ausgleicher", + "description": "Gewichtet die in Kämpfen erhaltenen Erfahrungspunkte auf niedrigstufigere Gruppenmitglieder." + }, + "OVAL_CHARM": { + "name": "Ovalpin", + "description": "Wenn mehrere Pokémon am Kampf teilnehmen, erhählt jeder von ihnen 10% extra Erfahrungspunkte." + }, + "EXP_CHARM": { + "name": "EP-Pin" + }, + "SUPER_EXP_CHARM": { + "name": "Super-EP-Pin" + }, + "GOLDEN_EXP_CHARM": { + "name": "Goldener EP-Pin" + }, + "LUCKY_EGG": { + "name": "Glücks-Ei" + }, + "GOLDEN_EGG": { + "name": "Goldenes Ei" + }, + "SOOTHE_BELL": { + "name": "Sanftglocke" + }, + "SCOPE_LENS": { + "name": "Scope-Linse", + "description": "Ein Item zum Tragen. Es erhöht die Volltrefferquote." + }, + "LEEK": { + "name": "Lauchstange", + "description": "Ein Item, das von Porenta getragen werden kann. Diese lange Lauchstange erhöht die Volltrefferquote stark." + }, + "EVIOLITE": { + "name": "Evolith", + "description": "Ein mysteriöser Klumpen, der die Vert. u. Spez.-Vert. von Pokémon erhöht, die sich noch entwickeln können." + }, + "SOUL_DEW": { + "name": "Seelentau", + "description": "Erhöht den Einfluss des Wesens eines Pokemon auf seine Werte um 10% (additiv)." + }, + "NUGGET": { + "name": "Nugget" + }, + "BIG_NUGGET": { + "name": "Riesennugget" + }, + "RELIC_GOLD": { + "name": "Alter Dukat" + }, + "AMULET_COIN": { + "name": "Münzamulett", + "description": "Erhöht das Preisgeld um 20%." + }, + "GOLDEN_PUNCH": { + "name": "Goldschlag", + "description": "Gewährt Geld in Höhe von 50% des zugefügten Schadens." + }, + "COIN_CASE": { + "name": "Münzkorb", + "description": "Erhalte nach jedem 10ten Kampf 10% Zinsen auf dein Geld." + }, + "LOCK_CAPSULE": { + "name": "Tresorkapsel", + "description": "Erlaubt es die Seltenheitsstufe der Items festzusetzen wenn diese neu gerollt werden." + }, + "GRIP_CLAW": { + "name": "Griffklaue" + }, + "WIDE_LENS": { + "name": "Großlinse" + }, + "MULTI_LENS": { + "name": "Mehrfachlinse" + }, + "HEALING_CHARM": { + "name": "Heilungspin", + "description": "Erhöht die Effektivität von Heilungsattacken sowie Heilitems um 10% (Beleber ausgenommen)." + }, + "CANDY_JAR": { + "name": "Bonbonglas", + "description": "Erhöht die Anzahl der Level die ein Sonderbonbon erhöht um 1." + }, + "BERRY_POUCH": { + "name": "Beerentüte", + "description": "Fügt eine 30% Chance hinzu, dass Beeren nicht verbraucht werden." + }, + "FOCUS_BAND": { + "name": "Fokusband", + "description": "Fügt eine 10% Chance hinzu, dass Angriffe die zur Kampfunfähigkeit führen mit 1 KP überlebt werden." + }, + "QUICK_CLAW": { + "name": "Flinkklaue", + "description": "Fügt eine 10% Change hinzu als erster anzugreifen. (Nach Prioritätsangriffen)." + }, + "KINGS_ROCK": { + "name": "King-Stein", + "description": "Fügt eine 10% Chance hinzu, dass der Gegner nach einem Angriff zurückschreckt." + }, + "LEFTOVERS": { + "name": "Überreste", + "description": "Heilt 1/16 der maximalen KP eines Pokémon pro Runde." + }, + "SHELL_BELL": { + "name": "Muschelglocke", + "description": "Heilt den Anwender um 1/8 des von ihm zugefügten Schadens." + }, + "TOXIC_ORB": { + "name": "Toxik-Orb", + "description": "Dieser bizarre Orb vergiftet seinen Träger im Kampf schwer." + }, + "FLAME_ORB": { + "name": "Heiß-Orb", + "description": "Dieser bizarre Orb fügt seinem Träger im Kampf Verbrennungen zu." + }, + "BATON": { + "name": "Stab", + "description": "Ermöglicht das Weitergeben von Effekten beim Wechseln von Pokémon, wodurch auch Fallen umgangen werden." + }, + "SHINY_CHARM": { + "name": "Schillerpin", + "description": "Erhöht die Chance deutlich, dass ein wildes Pokémon ein schillernd ist." + }, + "ABILITY_CHARM": { + "name": "Fähigkeitspin", + "description": "Erhöht die Chance deutlich, dass ein wildes Pokémon eine versteckte Fähigkeit hat." + }, + "IV_SCANNER": { + "name": "IS-Scanner", + "description": "Erlaubt es die IS-Werte von wilden Pokémon zu scannen.\n(2 IS-Werte pro Staplung. Die besten IS-Werte zuerst)." + }, + "DNA_SPLICERS": { + "name": "DNS-Keil" + }, + "MINI_BLACK_HOLE": { + "name": "Mini schwarzes Loch" + }, + "GOLDEN_POKEBALL": { + "name": "Goldener Pokéball", + "description": "Fügt eine zusätzliche Item-Auswahlmöglichkeit nach jedem Kampf hinzu." + }, + "ENEMY_DAMAGE_BOOSTER": { + "name": "Schadensmarke", + "description": "Erhöht den Schaden um 5%." + }, + "ENEMY_DAMAGE_REDUCTION": { + "name": "Schutzmarke", + "description": "Verringert den erhaltenen Schaden um 2,5%." + }, + "ENEMY_HEAL": { + "name": "Wiederherstellungsmarke", + "description": "Heilt 2% der maximalen KP pro Runde." + }, + "ENEMY_ATTACK_POISON_CHANCE": { + "name": "Giftmarke" + }, + "ENEMY_ATTACK_PARALYZE_CHANCE": { + "name": "Lähmungsmarke" + }, + "ENEMY_ATTACK_BURN_CHANCE": { + "name": "Brandmarke" + }, + "ENEMY_STATUS_EFFECT_HEAL_CHANCE": { + "name": "Vollheilungsmarke", + "description": "Fügt eine 2,5%ige Chance hinzu, jede Runde einen Statuszustand zu heilen." + }, + "ENEMY_ENDURE_CHANCE": { + "name": "Ausdauer-Marke" + }, + "ENEMY_FUSED_CHANCE": { + "name": "Fusionsmarke", + "description": "Fügt eine 1%ige Chance hinzu, dass ein wildes Pokémon eine Fusion ist." + } + }, + "SpeciesBoosterItem": { + "LIGHT_BALL": { + "name": "Kugelblitz", + "description": "Ein Item, das von Pikachu getragen werden kann. Es erhöht den Angriff und den Spezial-Angriff." + }, + "THICK_CLUB": { + "name": "Kampfknochen", + "description": "Ein Item, das von Tragosso oder Knogga getragen werden kann. Dieser harte Knochen erhöht den Angriff." + }, + "METAL_POWDER": { + "name": "Metallstaub", + "description": "Ein Item, das von Ditto getragen werden kann. Fein und doch hart, erhöht dieses sonderbare Pulver die Verteidigung." + }, + "QUICK_POWDER": { + "name": "Flottstaub", + "description": "Ein Item, das Ditto zum Tragen gegeben werden kann. Fein und doch hart, erhöht dieses sonderbare Pulver die Initiative." + } + }, + "TempBattleStatBoosterItem": { + "x_attack": "X-Angriff", + "x_defense": "X-Verteidigung", + "x_sp_atk": "X-Sp.-Ang.", + "x_sp_def": "X-Sp.-Vert.", + "x_speed": "X-Tempo", + "x_accuracy": "X-Treffer", + "dire_hit": "X-Volltreffer" + }, + "TempBattleStatBoosterStatName": { + "ATK": "Angriff", + "DEF": "Verteidigung", + "SPATK": "Sp. Ang", + "SPDEF": "Sp. Vert", + "SPD": "Initiative", + "ACC": "Genauigkeit", + "CRIT": "Volltrefferquote", + "EVA": "Fluchtwert", + "DEFAULT": "???" + }, + "AttackTypeBoosterItem": { + "silk_scarf": "Seidenschal", + "black_belt": "Schwarzgurt", + "sharp_beak": "Spitzer Schnabel", + "poison_barb": "Giftstich", + "soft_sand": "Pudersand", + "hard_stone": "Granitstein", + "silver_powder": "Silberstaub", + "spell_tag": "Bannsticker", + "metal_coat": "Metallmantel", + "charcoal": "Holzkohle", + "mystic_water": "Zauberwasser", + "miracle_seed": "Wundersaat", + "magnet": "Magnet", + "twisted_spoon": "Krümmlöffel", + "never_melt_ice": "Ewiges Eis", + "dragon_fang": "Drachenzahn", + "black_glasses": "Schattenbrille", + "fairy_feather": "Feendaune" + }, + "BaseStatBoosterItem": { + "hp_up": "KP-Plus", + "protein": "Protein", + "iron": "Eisen", + "calcium": "Kalzium", + "zinc": "Zink", + "carbos": "Carbon" + }, + "EvolutionItem": { + "NONE": "Keins", + "LINKING_CORD": "Linkkabel", + "SUN_STONE": "Sonnenstein", + "MOON_STONE": "Mondstein", + "LEAF_STONE": "Blattstein", + "FIRE_STONE": "Feuerstein", + "WATER_STONE": "Wasserstein", + "THUNDER_STONE": "Donnerstein", + "ICE_STONE": "Eisstein", + "DUSK_STONE": "Finsterstein", + "DAWN_STONE": "Funkelstein", + "SHINY_STONE": "Leuchtstein", + "CRACKED_POT": "Rissige Kanne", + "SWEET_APPLE": "Süßer Apfel", + "TART_APPLE": "Saurer Apfel", + "STRAWBERRY_SWEET": "Zucker-Erdbeere", + "UNREMARKABLE_TEACUP": "Simple Teeschale", + "CHIPPED_POT": "Löchrige Kanne", + "BLACK_AUGURITE": "Schwarzaugit", + "GALARICA_CUFF": "Galarnuss-Reif", + "GALARICA_WREATH": "Galarnuss-Kranz", + "PEAT_BLOCK": "Torfblock", + "AUSPICIOUS_ARMOR": "Glorienrüstung", + "MALICIOUS_ARMOR": "Fluchrüstung", + "MASTERPIECE_TEACUP": "Edle Teeschale", + "METAL_ALLOY": "Legierungsmetall", + "SCROLL_OF_DARKNESS": "Unlicht-Schriftrolle", + "SCROLL_OF_WATERS": "Wasser-Schriftrolle", + "SYRUPY_APPLE": "Saftiger Apfel" + }, + "FormChangeItem": { + "NONE": "Keins", + "ABOMASITE": "Rexblisarnit", + "ABSOLITE": "Absolnit", + "AERODACTYLITE": "Aerodactylonit", + "AGGRONITE": "Stollossnit", + "ALAKAZITE": "Simsalanit", + "ALTARIANITE": "Altarianit", + "AMPHAROSITE": "Ampharosnit", + "AUDINITE": "Ohrdochnit", + "BANETTITE": "Banetteonit", + "BEEDRILLITE": "Bibornit", + "BLASTOISINITE": "Turtoknit", + "BLAZIKENITE": "Lohgocknit", + "CAMERUPTITE": "Cameruptnit", + "CHARIZARDITE_X": "Gluraknit X", + "CHARIZARDITE_Y": "Gluraknit Y", + "DIANCITE": "Diancienit", + "GALLADITE": "Galagladinit", + "GARCHOMPITE": "Knakracknit", + "GARDEVOIRITE": "Guardevoirnit", + "GENGARITE": "Gengarnit ", + "GLALITITE": "Firnontornit", + "GYARADOSITE": "Garadosnit", + "HERACRONITE": "Skarabornit", + "HOUNDOOMINITE": "Hundemonit ", + "KANGASKHANITE": "Kangamanit", + "LATIASITE": "Latiasnit", + "LATIOSITE": "Latiosnit", + "LOPUNNITE": "Schlapornit", + "LUCARIONITE": "Lucarionit", + "MANECTITE": "Voltensonit", + "MAWILITE": "Flunkifernit", + "MEDICHAMITE": "Meditalisnit", + "METAGROSSITE": "Metagrossnit", + "MEWTWONITE_X": "Mewtunit X", + "MEWTWONITE_Y": "Mewtunit Y", + "PIDGEOTITE": "Taubossnit", + "PINSIRITE": "Pinsirnit", + "RAYQUAZITE": "Rayquazanit", + "SABLENITE": "Zobirisnit", + "SALAMENCITE": "Brutalandanit", + "SCEPTILITE": "Gewaldronit", + "SCIZORITE": "Scheroxnit", + "SHARPEDONITE": "Tohaidonit", + "SLOWBRONITE": "Lahmusnit", + "STEELIXITE": "Stahlosnit", + "SWAMPERTITE": "Sumpexnit", + "TYRANITARITE": "Despotarnit", + "VENUSAURITE": "Bisaflornit", + "BLUE_ORB": "Blauer Edelstein", + "RED_ORB": "Roter Edelstein", + "SHARP_METEORITE": "Scharfer Meteorit", + "HARD_METEORITE": "Harter Meteorit", + "SMOOTH_METEORITE": "Glatter Meteorit", + "ADAMANT_CRYSTAL": "Adamantkristall", + "LUSTROUS_GLOBE": "Weißkristall", + "GRISEOUS_CORE": "Platinumkristall", + "REVEAL_GLASS": "Wahrspiegel", + "GRACIDEA": "Gracidea", + "MAX_MUSHROOMS": "Dyna-Pilz", + "DARK_STONE": "Dunkelstein", + "LIGHT_STONE": "Lichtstein", + "PRISON_BOTTLE": "Banngefäß", + "N_LUNARIZER": "Necrolun", + "N_SOLARIZER": "Necrosol", + "RUSTED_SWORD": "Rostiges Schwert", + "RUSTED_SHIELD": "Rostiges Schild", + "ICY_REINS_OF_UNITY": "Eisige Zügel des Bundes", + "SHADOW_REINS_OF_UNITY": "Schattige Zügel des Bundes", + "WELLSPRING_MASK": "Brunnenmaske", + "HEARTHFLAME_MASK": "Ofenmaske", + "CORNERSTONE_MASK": "Fundamentmaske", + "SHOCK_DRIVE": "Blitzmodul", + "BURN_DRIVE": "Flammenmodul", + "CHILL_DRIVE": "Gefriermodul", + "DOUSE_DRIVE": "Aquamodul", + "ULTRANECROZIUM_Z": "Ultranecrozium Z", + "FIST_PLATE": "Fausttafel", + "SKY_PLATE": "Wolkentafel", + "TOXIC_PLATE": "Gifttafel", + "EARTH_PLATE": "Erdtafel", + "STONE_PLATE": "Steintafel", + "INSECT_PLATE": "Käfertafel", + "SPOOKY_PLATE": "Spuktafel", + "IRON_PLATE": "Eisentafel", + "FLAME_PLATE": "Feuertafel", + "SPLASH_PLATE": "Wassertafel", + "MEADOW_PLATE": "Wiesentafel", + "ZAP_PLATE": "Blitztafel", + "MIND_PLATE": "Hirntafel", + "ICICLE_PLATE": "Frosttafel", + "DRACO_PLATE": "Dracotafel", + "DREAD_PLATE": "Furchttafel", + "PIXIE_PLATE": "Feentafel", + "BLANK_PLATE": "Neutraltafel", + "LEGEND_PLATE": "Legendentafel", + "FIGHTING_MEMORY": "Kampf-Disc", + "FLYING_MEMORY": "Flug-Disc", + "POISON_MEMORY": "Gift-Disc", + "GROUND_MEMORY": "Boden-Disc", + "ROCK_MEMORY": "Gesteins-Disc", + "BUG_MEMORY": "Käfer-Disc", + "GHOST_MEMORY": "Geister-Disc", + "STEEL_MEMORY": "Stahl-Disc", + "FIRE_MEMORY": "Feuer-Disc", + "WATER_MEMORY": "Wasser-Disc", + "GRASS_MEMORY": "Pflanzen-Disc", + "ELECTRIC_MEMORY": "Elektro-Disc", + "PSYCHIC_MEMORY": "Psycho-Disc", + "ICE_MEMORY": "Eis-Disc", + "DRAGON_MEMORY": "Drachen-Disc", + "DARK_MEMORY": "Unlicht-Disc", + "FAIRY_MEMORY": "Feen-Disc", + "BLANK_MEMORY": "Leere-Disc" + } +} \ No newline at end of file diff --git a/src/locales/de/modifier-type.ts b/src/locales/de/modifier-type.ts deleted file mode 100644 index d9b1553fd18..00000000000 --- a/src/locales/de/modifier-type.ts +++ /dev/null @@ -1,459 +0,0 @@ -import { ModifierTypeTranslationEntries } from "#app/interfaces/locales"; - -export const modifierType: ModifierTypeTranslationEntries = { - ModifierType: { - "AddPokeballModifierType": { - name: "{{modifierCount}}x {{pokeballName}}", - description: "Erhalte {{pokeballName}} x{{modifierCount}}. (Inventar: {{pokeballAmount}}) \nFangrate: {{catchRate}}", - }, - "AddVoucherModifierType": { - name: "{{modifierCount}}x {{voucherTypeName}}", - description: "Erhalte {{voucherTypeName}} x{{modifierCount}}.", - }, - "PokemonHeldItemModifierType": { - extra: { - "inoperable": "{{pokemonName}} kann dieses\nItem nicht nehmen!", - "tooMany": "{{pokemonName}} hat zu viele\nvon diesem Item!", - } - }, - "PokemonHpRestoreModifierType": { - description: "Füllt {{restorePoints}} KP oder {{restorePercent}}% der KP für ein Pokémon auf. Je nachdem, welcher Wert höher ist.", - extra: { - "fully": "Füllt die KP eines Pokémon wieder vollständig auf.", - "fullyWithStatus": "Füllt die KP eines Pokémon wieder vollständig auf und behebt alle Statusprobleme.", - } - }, - "PokemonReviveModifierType": { - description: "Belebt ein kampunfähiges Pokémon wieder und stellt {{restorePercent}}% KP wieder her.", - }, - "PokemonStatusHealModifierType": { - description: "Behebt alle Statusprobleme eines Pokémon.", - }, - "PokemonPpRestoreModifierType": { - description: "Füllt {{restorePoints}} AP der ausgewählten Attacke eines Pokémon auf.", - extra: { - "fully": "Füllt alle AP der ausgewählten Attacke eines Pokémon auf.", - } - }, - "PokemonAllMovePpRestoreModifierType": { - description: "Stellt {{restorePoints}} AP für alle Attacken eines Pokémon auf.", - extra: { - "fully": "Füllt alle AP für alle Attacken eines Pokémon auf.", - } - }, - "PokemonPpUpModifierType": { - description: "Erhöht die maximale Anzahl der AP der ausgewählten Attacke um {{upPoints}} für jede 5 maximale AP (maximal 3).", - }, - "PokemonNatureChangeModifierType": { - name: "{{natureName}} Minze", - description: "Ändert das Wesen zu {{natureName}}. Schaltet dieses Wesen permanent für diesen Starter frei.", - }, - "DoubleBattleChanceBoosterModifierType": { - description: "Verdoppelt die Wahrscheinlichkeit, dass die nächsten {{battleCount}} Begegnungen mit wilden Pokémon ein Doppelkampf sind.", - }, - "TempBattleStatBoosterModifierType": { - description: "Erhöht die {{tempBattleStatName}} aller Teammitglieder für 5 Kämpfe um eine Stufe.", - }, - "AttackTypeBoosterModifierType": { - description: "Erhöht die Stärke aller {{moveType}}-Attacken eines Pokémon um 20%.", - }, - "PokemonLevelIncrementModifierType": { - description: "Erhöht das Level eines Pokémon um {{levels}}.", - }, - "AllPokemonLevelIncrementModifierType": { - description: "Erhöht das Level aller Teammitglieder um {{levels}}.", - }, - "PokemonBaseStatBoosterModifierType": { - description: "Erhöht den {{statName}} Basiswert des Trägers um 10%. Das Stapellimit erhöht sich, je höher dein IS-Wert ist.", - }, - "AllPokemonFullHpRestoreModifierType": { - description: "Stellt 100% der KP aller Pokémon her.", - }, - "AllPokemonFullReviveModifierType": { - description: "Belebt alle kampunfähigen Pokémon wieder und stellt ihre KP vollständig wieder her.", - }, - "MoneyRewardModifierType": { - description:"Gewährt einen {{moneyMultiplier}} Geldbetrag von (₽{{moneyAmount}}).", - extra: { - "small": "kleinen", - "moderate": "moderaten", - "large": "großen", - }, - }, - "ExpBoosterModifierType": { - description: "Erhöht die erhaltenen Erfahrungspunkte um {{boostPercent}}%.", - }, - "PokemonExpBoosterModifierType": { - description: "Erhöht die Menge der erhaltenen Erfahrungspunkte für den Träger um {{boostPercent}}%.", - }, - "PokemonFriendshipBoosterModifierType": { - description: "Erhöht den Freundschaftszuwachs pro Sieg um 50%.", - }, - "PokemonMoveAccuracyBoosterModifierType": { - description: "Erhöht die Genauigkeit der Angriffe um {{accuracyAmount}} (maximal 100).", - }, - "PokemonMultiHitModifierType": { - description: "Attacken treffen ein weiteres mal mit einer Reduktion von 60/75/82,5% der Stärke.", - }, - "TmModifierType": { - name: "TM{{moveId}} - {{moveName}}", - description: "Bringt einem Pokémon {{moveName}} bei.", - }, - "TmModifierTypeWithInfo": { - name: "TM{{moveId}} - {{moveName}}", - description: "Bringt einem Pokémon {{moveName}} bei\n(Halte C oder Shift für mehr Infos).", - }, - "EvolutionItemModifierType": { - description: "Erlaubt es bestimmten Pokémon sich zu entwickeln.", - }, - "FormChangeItemModifierType": { - description: "Erlaubt es bestimmten Pokémon ihre Form zu ändern.", - }, - "FusePokemonModifierType": { - description: "Fusioniert zwei Pokémon (überträgt die Fähigkeit, teilt Basiswerte und Typ auf, gemeinsamer Attackenpool).", - }, - "TerastallizeModifierType": { - name: "{{teraType}} Terra-Stück", - description: "{{teraType}} Terakristallisiert den Träger für bis zu 10 Kämpfe.", - }, - "ContactHeldItemTransferChanceModifierType": { - description:"Beim Angriff besteht eine {{chancePercent}}%ige Chance, dass das getragene Item des Gegners gestohlen wird." - }, - "TurnHeldItemTransferModifierType": { - description: "Jede Runde erhält der Träger ein getragenes Item des Gegners.", - }, - "EnemyAttackStatusEffectChanceModifierType": { - description: "Fügt Angriffen eine {{chancePercent}}%ige Chance hinzu, {{statusEffect}} zu verursachen.", - }, - "EnemyEndureChanceModifierType": { - description: "Gibt den Träger eine {{chancePercent}}%ige Chance, einen Angriff zu überleben.", - }, - - "RARE_CANDY": { name: "Sonderbonbon" }, - "RARER_CANDY": { name: "Supersondererbonbon" }, - - "MEGA_BRACELET": { name: "Mega-Armband", description: "Mega-Steine werden verfügbar." }, - "DYNAMAX_BAND": { name: "Dynamax-Band", description: "Dyna-Pilze werden verfügbar."}, - "TERA_ORB": { name: "Terakristall-Orb", description: "Tera-Stücke werden verfügbar." }, - - "MAP": { name: "Karte", description: "Ermöglicht es dir, an einer Kreuzung dein Ziel zu wählen." }, - - "POTION": { name: "Trank" }, - "SUPER_POTION": { name: "Supertrank" }, - "HYPER_POTION": { name: "Hypertrank" }, - "MAX_POTION": { name: "Top-Trank" }, - "FULL_RESTORE": { name: "Top-Genesung" }, - - "REVIVE": { name: "Beleber" }, - "MAX_REVIVE": { name: "Top-Beleber" }, - - "FULL_HEAL": { name: "Hyperheiler" }, - - "SACRED_ASH": { name: "Zauberasche" }, - - "REVIVER_SEED": { name: "Belebersamen", description: "Belebt den Träger mit der Hälfte seiner KP wieder, sollte er durch einen direkten Treffer kampfunfähig werden." }, - - "WHITE_HERB": { name: "Schlohkraut", description: "Ein Item zum Tragen. Es hebt einmalig jede negative Statuswertveränderung auf." }, - - "ETHER": { name: "Äther" }, - "MAX_ETHER": { name: "Top-Äther" }, - - "ELIXIR": { name: "Elixir" }, - "MAX_ELIXIR": { name: "Top-Elixir" }, - - "PP_UP": { name: "AP-Plus" }, - "PP_MAX": { name: "AP-Top" }, - - "LURE": { name: "Lockparfüm" }, - "SUPER_LURE": { name: "Super-Lockparfüm" }, - "MAX_LURE": { name: "Top-Lockparfüm" }, - - "MEMORY_MUSHROOM": { name: "Erinnerungspilz", description: "Lässt ein Pokémon eine vergessene Attacke wiedererlernen." }, - - "EXP_SHARE": { name: "EP-Teiler", description: "Pokémon, die nicht am Kampf teilgenommen haben, bekommen 20% der Erfahrungspunkte eines Kampfteilnehmers." }, - "EXP_BALANCE": { name: "EP-Ausgleicher", description: "Gewichtet die in Kämpfen erhaltenen Erfahrungspunkte auf niedrigstufigere Gruppenmitglieder." }, - - "OVAL_CHARM": { name: "Ovalpin", description: "Wenn mehrere Pokémon am Kampf teilnehmen, erhählt jeder von ihnen 10% extra Erfahrungspunkte." }, - - "EXP_CHARM": { name: "EP-Pin" }, - "SUPER_EXP_CHARM": { name: "Super-EP-Pin" }, - "GOLDEN_EXP_CHARM": { name: "Goldener EP-Pin" }, - - "LUCKY_EGG": { name: "Glücks-Ei" }, - "GOLDEN_EGG": { name: "Goldenes Ei" }, - - "SOOTHE_BELL": { name: "Sanftglocke" }, - - "SCOPE_LENS": { name: "Scope-Linse", description: "Ein Item zum Tragen. Es erhöht die Volltrefferquote." }, - "LEEK": { name: "Lauchstange", description: "Ein Item, das von Porenta getragen werden kann. Diese lange Lauchstange erhöht die Volltrefferquote stark." }, - - "EVIOLITE": { name: "Evolith", description: "Ein mysteriöser Klumpen, der die Vert. u. Spez.-Vert. von Pokémon erhöht, die sich noch entwickeln können." }, - - "SOUL_DEW": { name: "Seelentau", description: "Erhöht den Einfluss des Wesens eines Pokemon auf seine Werte um 10% (additiv)." }, - - "NUGGET": { name: "Nugget" }, - "BIG_NUGGET": { name: "Riesennugget" }, - "RELIC_GOLD": { name: "Alter Dukat" }, - - "AMULET_COIN": { name: "Münzamulett", description: "Erhöht das Preisgeld um 20%." }, - "GOLDEN_PUNCH": { name: "Goldschlag", description: "Gewährt Geld in Höhe von 50% des zugefügten Schadens." }, - "COIN_CASE": { name: "Münzkorb", description: "Erhalte nach jedem 10ten Kampf 10% Zinsen auf dein Geld." }, - - "LOCK_CAPSULE": { name: "Tresorkapsel", description: "Erlaubt es die Seltenheitsstufe der Items festzusetzen wenn diese neu gerollt werden." }, - - "GRIP_CLAW": { name: "Griffklaue" }, - "WIDE_LENS": { name: "Großlinse" }, - - "MULTI_LENS": { name: "Mehrfachlinse" }, - - "HEALING_CHARM": { name: "Heilungspin", description: "Erhöht die Effektivität von Heilungsattacken sowie Heilitems um 10% (Beleber ausgenommen)." }, - "CANDY_JAR": { name: "Bonbonglas", description: "Erhöht die Anzahl der Level die ein Sonderbonbon erhöht um 1." }, - - "BERRY_POUCH": { name: "Beerentüte", description: "Fügt eine 30% Chance hinzu, dass Beeren nicht verbraucht werden." }, - - "FOCUS_BAND": { name: "Fokusband", description: "Fügt eine 10% Chance hinzu, dass Angriffe die zur Kampfunfähigkeit führen mit 1 KP überlebt werden." }, - - "QUICK_CLAW": { name: "Flinkklaue", description: "Fügt eine 10% Change hinzu als erster anzugreifen. (Nach Prioritätsangriffen)." }, - - "KINGS_ROCK": { name: "King-Stein", description: "Fügt eine 10% Chance hinzu, dass der Gegner nach einem Angriff zurückschreckt." }, - - "LEFTOVERS": { name: "Überreste", description: "Heilt 1/16 der maximalen KP eines Pokémon pro Runde." }, - "SHELL_BELL": { name: "Muschelglocke", description: "Heilt den Anwender um 1/8 des von ihm zugefügten Schadens." }, - - "TOXIC_ORB": { name: "Toxik-Orb", description: "Dieser bizarre Orb vergiftet seinen Träger im Kampf schwer." }, - "FLAME_ORB": { name: "Heiß-Orb", description: "Dieser bizarre Orb fügt seinem Träger im Kampf Verbrennungen zu." }, - - "BATON": { name: "Stab", description: "Ermöglicht das Weitergeben von Effekten beim Wechseln von Pokémon, wodurch auch Fallen umgangen werden." }, - - "SHINY_CHARM": { name: "Schillerpin", description: "Erhöht die Chance deutlich, dass ein wildes Pokémon ein schillernd ist." }, - "ABILITY_CHARM": { name: "Fähigkeitspin", description: "Erhöht die Chance deutlich, dass ein wildes Pokémon eine versteckte Fähigkeit hat." }, - - "IV_SCANNER": { name: "IS-Scanner", description: "Erlaubt es die IS-Werte von wilden Pokémon zu scannen.\n(2 IS-Werte pro Staplung. Die besten IS-Werte zuerst)." }, - - "DNA_SPLICERS": { name: "DNS-Keil" }, - - "MINI_BLACK_HOLE": { name: "Mini schwarzes Loch" }, - - "GOLDEN_POKEBALL": { name: "Goldener Pokéball", description: "Fügt eine zusätzliche Item-Auswahlmöglichkeit nach jedem Kampf hinzu." }, - - "ENEMY_DAMAGE_BOOSTER": { name: "Schadensmarke", description: "Erhöht den Schaden um 5%." }, - "ENEMY_DAMAGE_REDUCTION": { name: "Schutzmarke", description: "Verringert den erhaltenen Schaden um 2,5%." }, - "ENEMY_HEAL": { name: "Wiederherstellungsmarke", description: "Heilt 2% der maximalen KP pro Runde." }, - "ENEMY_ATTACK_POISON_CHANCE": { name: "Giftmarke" }, - "ENEMY_ATTACK_PARALYZE_CHANCE": { "name": "Lähmungsmarke" }, - "ENEMY_ATTACK_BURN_CHANCE": { "name": "Brandmarke" }, - "ENEMY_STATUS_EFFECT_HEAL_CHANCE": { "name": "Vollheilungsmarke", "description": "Fügt eine 2,5%ige Chance hinzu, jede Runde einen Statuszustand zu heilen." }, - "ENEMY_ENDURE_CHANCE": { "name": "Ausdauer-Marke" }, - "ENEMY_FUSED_CHANCE": { "name": "Fusionsmarke", "description": "Fügt eine 1%ige Chance hinzu, dass ein wildes Pokémon eine Fusion ist." }, - - }, - SpeciesBoosterItem: { - "LIGHT_BALL": { name: "Kugelblitz", description: "Ein Item, das von Pikachu getragen werden kann. Es erhöht den Angriff und den Spezial-Angriff." }, - "THICK_CLUB": { name: "Kampfknochen", description: "Ein Item, das von Tragosso oder Knogga getragen werden kann. Dieser harte Knochen erhöht den Angriff." }, - "METAL_POWDER": { name: "Metallstaub", description: "Ein Item, das von Ditto getragen werden kann. Fein und doch hart, erhöht dieses sonderbare Pulver die Verteidigung." }, - "QUICK_POWDER": { name: "Flottstaub", description: "Ein Item, das Ditto zum Tragen gegeben werden kann. Fein und doch hart, erhöht dieses sonderbare Pulver die Initiative." } - }, - TempBattleStatBoosterItem: { - "x_attack": "X-Angriff", - "x_defense": "X-Verteidigung", - "x_sp_atk": "X-Sp.-Ang.", - "x_sp_def": "X-Sp.-Vert.", - "x_speed": "X-Tempo", - "x_accuracy": "X-Treffer", - "dire_hit": "X-Volltreffer", - }, - - TempBattleStatBoosterStatName: { - "ATK": "Angriff", - "DEF": "Verteidigung", - "SPATK": "Sp. Ang", - "SPDEF": "Sp. Vert", - "SPD": "Initiative", - "ACC": "Genauigkeit", - "CRIT": "Volltrefferquote", - "EVA": "Fluchtwert", - "DEFAULT": "???", - }, - - - AttackTypeBoosterItem: { - "silk_scarf": "Seidenschal", - "black_belt": "Schwarzgurt", - "sharp_beak": "Spitzer Schnabel", - "poison_barb": "Giftstich", - "soft_sand": "Pudersand", - "hard_stone": "Granitstein", - "silver_powder": "Silberstaub", - "spell_tag": "Bannsticker", - "metal_coat": "Metallmantel", - "charcoal": "Holzkohle", - "mystic_water": "Zauberwasser", - "miracle_seed": "Wundersaat", - "magnet": "Magnet", - "twisted_spoon": "Krümmlöffel", - "never_melt_ice": "Ewiges Eis", - "dragon_fang": "Drachenzahn", - "black_glasses": "Schattenbrille", - "fairy_feather": "Feendaune", - }, - BaseStatBoosterItem: { - "hp_up": "KP-Plus", - "protein": "Protein", - "iron": "Eisen", - "calcium": "Kalzium", - "zinc": "Zink", - "carbos": "Carbon", - }, - EvolutionItem: { - "NONE": "Keins", - - "LINKING_CORD": "Linkkabel", - "SUN_STONE": "Sonnenstein", - "MOON_STONE": "Mondstein", - "LEAF_STONE": "Blattstein", - "FIRE_STONE": "Feuerstein", - "WATER_STONE": "Wasserstein", - "THUNDER_STONE": "Donnerstein", - "ICE_STONE": "Eisstein", - "DUSK_STONE": "Finsterstein", - "DAWN_STONE": "Funkelstein", - "SHINY_STONE": "Leuchtstein", - "CRACKED_POT": "Rissige Kanne", - "SWEET_APPLE": "Süßer Apfel", - "TART_APPLE": "Saurer Apfel", - "STRAWBERRY_SWEET": "Zucker-Erdbeere", - "UNREMARKABLE_TEACUP": "Simple Teeschale", - - "CHIPPED_POT": "Löchrige Kanne", - "BLACK_AUGURITE": "Schwarzaugit", - "GALARICA_CUFF": "Galarnuss-Reif", - "GALARICA_WREATH": "Galarnuss-Kranz", - "PEAT_BLOCK": "Torfblock", - "AUSPICIOUS_ARMOR": "Glorienrüstung", - "MALICIOUS_ARMOR": "Fluchrüstung", - "MASTERPIECE_TEACUP": "Edle Teeschale", - "METAL_ALLOY": "Legierungsmetall", - "SCROLL_OF_DARKNESS": "Unlicht-Schriftrolle", - "SCROLL_OF_WATERS": "Wasser-Schriftrolle", - "SYRUPY_APPLE": "Saftiger Apfel", - }, - FormChangeItem: { - "NONE": "Keins", - - "ABOMASITE": "Rexblisarnit", - "ABSOLITE": "Absolnit", - "AERODACTYLITE": "Aerodactylonit", - "AGGRONITE": "Stollossnit", - "ALAKAZITE": "Simsalanit", - "ALTARIANITE": "Altarianit", - "AMPHAROSITE": "Ampharosnit", - "AUDINITE": "Ohrdochnit", - "BANETTITE": "Banetteonit", - "BEEDRILLITE": "Bibornit", - "BLASTOISINITE": "Turtoknit", - "BLAZIKENITE": "Lohgocknit", - "CAMERUPTITE": "Cameruptnit", - "CHARIZARDITE_X": "Gluraknit X", - "CHARIZARDITE_Y": "Gluraknit Y", - "DIANCITE": "Diancienit", - "GALLADITE": "Galagladinit", - "GARCHOMPITE": "Knakracknit", - "GARDEVOIRITE": "Guardevoirnit", - "GENGARITE": "Gengarnit ", - "GLALITITE": "Firnontornit", - "GYARADOSITE": "Garadosnit", - "HERACRONITE": "Skarabornit", - "HOUNDOOMINITE": "Hundemonit ", - "KANGASKHANITE": "Kangamanit", - "LATIASITE": "Latiasnit", - "LATIOSITE": "Latiosnit", - "LOPUNNITE": "Schlapornit", - "LUCARIONITE": "Lucarionit", - "MANECTITE": "Voltensonit", - "MAWILITE": "Flunkifernit", - "MEDICHAMITE": "Meditalisnit", - "METAGROSSITE": "Metagrossnit", - "MEWTWONITE_X": "Mewtunit X", - "MEWTWONITE_Y": "Mewtunit Y", - "PIDGEOTITE": "Taubossnit", - "PINSIRITE": "Pinsirnit", - "RAYQUAZITE": "Rayquazanit", - "SABLENITE": "Zobirisnit", - "SALAMENCITE": "Brutalandanit", - "SCEPTILITE": "Gewaldronit", - "SCIZORITE": "Scheroxnit", - "SHARPEDONITE": "Tohaidonit", - "SLOWBRONITE": "Lahmusnit", - "STEELIXITE": "Stahlosnit", - "SWAMPERTITE": "Sumpexnit", - "TYRANITARITE": "Despotarnit", - "VENUSAURITE": "Bisaflornit", - - "BLUE_ORB": "Blauer Edelstein", - "RED_ORB": "Roter Edelstein", - "SHARP_METEORITE": "Scharfer Meteorit", - "HARD_METEORITE": "Harter Meteorit", - "SMOOTH_METEORITE": "Glatter Meteorit", - "ADAMANT_CRYSTAL": "Adamantkristall", - "LUSTROUS_GLOBE": "Weißkristall", - "GRISEOUS_CORE": "Platinumkristall", - "REVEAL_GLASS": "Wahrspiegel", - "GRACIDEA": "Gracidea", - "MAX_MUSHROOMS": "Dyna-Pilz", - "DARK_STONE": "Dunkelstein", - "LIGHT_STONE": "Lichtstein", - "PRISON_BOTTLE": "Banngefäß", - "N_LUNARIZER": "Necrolun", - "N_SOLARIZER": "Necrosol", - "RUSTED_SWORD": "Rostiges Schwert", - "RUSTED_SHIELD": "Rostiges Schild", - "ICY_REINS_OF_UNITY": "Eisige Zügel des Bundes", - "SHADOW_REINS_OF_UNITY": "Schattige Zügel des Bundes", - "WELLSPRING_MASK": "Brunnenmaske", - "HEARTHFLAME_MASK": "Ofenmaske", - "CORNERSTONE_MASK": "Fundamentmaske", - "SHOCK_DRIVE": "Blitzmodul", - "BURN_DRIVE": "Flammenmodul", - "CHILL_DRIVE": "Gefriermodul", - "DOUSE_DRIVE": "Aquamodul", - "ULTRANECROZIUM_Z": "Ultranecrozium Z", - - "FIST_PLATE": "Fausttafel", - "SKY_PLATE": "Wolkentafel", - "TOXIC_PLATE": "Gifttafel", - "EARTH_PLATE": "Erdtafel", - "STONE_PLATE": "Steintafel", - "INSECT_PLATE": "Käfertafel", - "SPOOKY_PLATE": "Spuktafel", - "IRON_PLATE": "Eisentafel", - "FLAME_PLATE": "Feuertafel", - "SPLASH_PLATE": "Wassertafel", - "MEADOW_PLATE": "Wiesentafel", - "ZAP_PLATE": "Blitztafel", - "MIND_PLATE": "Hirntafel", - "ICICLE_PLATE": "Frosttafel", - "DRACO_PLATE": "Dracotafel", - "DREAD_PLATE": "Furchttafel", - "PIXIE_PLATE": "Feentafel", - "BLANK_PLATE": "Neutraltafel", - "LEGEND_PLATE": "Legendentafel", - "FIGHTING_MEMORY": "Kampf-Disc", - "FLYING_MEMORY": "Flug-Disc", - "POISON_MEMORY": "Gift-Disc", - "GROUND_MEMORY": "Boden-Disc", - "ROCK_MEMORY": "Gesteins-Disc", - "BUG_MEMORY": "Käfer-Disc", - "GHOST_MEMORY": "Geister-Disc", - "STEEL_MEMORY": "Stahl-Disc", - "FIRE_MEMORY": "Feuer-Disc", - "WATER_MEMORY": "Wasser-Disc", - "GRASS_MEMORY": "Pflanzen-Disc", - "ELECTRIC_MEMORY": "Elektro-Disc", - "PSYCHIC_MEMORY": "Psycho-Disc", - "ICE_MEMORY": "Eis-Disc", - "DRAGON_MEMORY": "Drachen-Disc", - "DARK_MEMORY": "Unlicht-Disc", - "FAIRY_MEMORY": "Feen-Disc", - "BLANK_MEMORY": "Leere-Disc", - }, -} as const; diff --git a/src/locales/de/modifier.ts b/src/locales/de/modifier.json similarity index 85% rename from src/locales/de/modifier.ts rename to src/locales/de/modifier.json index 5a8126e3d85..22053b1da63 100644 --- a/src/locales/de/modifier.ts +++ b/src/locales/de/modifier.json @@ -1,6 +1,4 @@ -import { SimpleTranslationEntries } from "#app/interfaces/locales"; - -export const modifier: SimpleTranslationEntries = { +{ "surviveDamageApply": "{{pokemonNameWithAffix}} hält mithilfe des Items {{typeName}} durch!", "turnHealApply": "{{typeName}} von {{pokemonNameWithAffix}} füllt einige KP auf!", "hitHealApply": "{{typeName}} von {{pokemonNameWithAffix}} füllt einige KP auf!", @@ -10,5 +8,5 @@ export const modifier: SimpleTranslationEntries = { "turnHeldItemTransferApply": "{{itemName}} von {{pokemonNameWithAffix}} wurde durch {{typeName}} von {{pokemonName}} absorbiert!", "contactHeldItemTransferApply": "{{itemName}} von {{pokemonNameWithAffix}} wurde durch {{typeName}} von {{pokemonName}} geklaut!", "enemyTurnHealApply": "{{pokemonNameWithAffix}} stellt einige KP wieder her!", - "bypassSpeedChanceApply": "Dank des Items {{itemName}} kann {{pokemonName}} schneller handeln als sonst!", -} as const; + "bypassSpeedChanceApply": "Dank des Items {{itemName}} kann {{pokemonName}} schneller handeln als sonst!" +} \ No newline at end of file diff --git a/src/locales/de/move-trigger.ts b/src/locales/de/move-trigger.json similarity index 95% rename from src/locales/de/move-trigger.ts rename to src/locales/de/move-trigger.json index c3d063c4b3f..5b2b2471df9 100644 --- a/src/locales/de/move-trigger.ts +++ b/src/locales/de/move-trigger.json @@ -1,7 +1,5 @@ -import { SimpleTranslationEntries } from "#app/interfaces/locales"; - -export const moveTriggers: SimpleTranslationEntries = { - "hitWithRecoil" : "{{pokemonName}} erleidet Schaden durch Rückstoß!", +{ + "hitWithRecoil": "{{pokemonName}} erleidet Schaden durch Rückstoß!", "cutHpPowerUpMove": "{{pokemonName}} nutzt seine KP um seine Attacke zu verstärken!", "absorbedElectricity": "{{pokemonName}} absorbiert elektrische Energie!", "switchedStatChanges": "{{pokemonName}} tauschte die Statuswerteveränderungen mit dem Ziel!", @@ -61,6 +59,7 @@ export const moveTriggers: SimpleTranslationEntries = { "faintCountdown": "{{pokemonName}} geht nach {{turnCount}} Runden K.O.!", "copyType": "{{pokemonName}} hat den Typ von {{targetPokemonName}} angenommen!", "suppressAbilities": "Die Fähigkeit von {{pokemonName}} wirkt nicht mehr!", + "revivalBlessing": "{{pokemonName}} ist wieder fit und kampfbereit!", "swapArenaTags": "{{pokemonName}} hat die Effekte, die auf den beiden Seiten des Kampffeldes wirken, miteinander getauscht!", - "exposedMove": "{{pokemonName}} erkennt {{targetPokemonName}}!", -} as const; + "exposedMove": "{{pokemonName}} erkennt {{targetPokemonName}}!" +} \ No newline at end of file diff --git a/src/locales/de/move.json b/src/locales/de/move.json new file mode 100644 index 00000000000..3c81ccfd7df --- /dev/null +++ b/src/locales/de/move.json @@ -0,0 +1,3810 @@ +{ + "pound": { + "name": "Klaps", + "effect": "Ein Hieb mit den Vorderbeinen oder dem Schweif." + }, + "karateChop": { + "name": "Karateschlag", + "effect": "Gute Möglichkeit, einen Volltreffer zu landen." + }, + "doubleSlap": { + "name": "Duplexhieb", + "effect": "Trifft das Ziel zwei- bis fünfmal hintereinander mit einem Duplexhieb." + }, + "cometPunch": { + "name": "Kometenhieb", + "effect": "Trifft das Ziel zwei- bis fünfmal hintereinander mit kräftigen Hieben." + }, + "megaPunch": { + "name": "Megahieb", + "effect": "Ein unglaublich kräftiger Hieb." + }, + "payDay": { + "name": "Zahltag", + "effect": "Das Ziel wird mit Münzen beworfen. Das Geld wird nach dem Kampf aufgesammelt." + }, + "firePunch": { + "name": "Feuerschlag", + "effect": "Feuriger Schlag, der dem Ziel eventuell Verbrennungen zufügt." + }, + "icePunch": { + "name": "Eishieb", + "effect": "Ein eisiger Schlag, der das Ziel eventuell einfriert." + }, + "thunderPunch": { + "name": "Donnerschlag", + "effect": "Ein elektrischer Schlag, der das Ziel eventuell paralysiert." + }, + "scratch": { + "name": "Kratzer", + "effect": "Das Ziel wird mit scharfen Klauen zerkratzt." + }, + "viseGrip": { + "name": "Klammer", + "effect": "Das Ziel wird umklammert und zusammengequetscht." + }, + "guillotine": { + "name": "Guillotine", + "effect": "Kräftige Scheren-Attacke. Führt beim Ziel sofort zum K.O." + }, + "razorWind": { + "name": "Klingensturm", + "effect": "Eine Attacke, die über zwei Runden geht. Hohe Volltrefferquote." + }, + "swordsDance": { + "name": "Schwerttanz", + "effect": "Ein wilder Kampftanz, der den eigenen Angriffs-Wert stark erhöht." + }, + "cut": { + "name": "Zerschneider", + "effect": "Ein Basisangriff mit Schere oder Klaue. Damit können kleine Bäume gefällt werden." + }, + "gust": { + "name": "Windstoß", + "effect": "Trifft das Ziel mit einem Windstoß durch einen Flügelschlag." + }, + "wingAttack": { + "name": "Flügelschlag", + "effect": "Trifft das Ziel mit ausgebreiteten Flügeln." + }, + "whirlwind": { + "name": "Wirbelwind", + "effect": "Weht das Ziel weg und ersetzt es durch ein anderes Pokémon. In der Wildnis endet der Kampf." + }, + "fly": { + "name": "Fliegen", + "effect": "Steigt in Runde 1 empor und trifft das Ziel in Runde 2." + }, + "bind": { + "name": "Klammergriff", + "effect": "Umklammert und quetscht das Ziel über vier bis fünf Runden." + }, + "slam": { + "name": "Slam", + "effect": "Schlag mit einem langen Schweif, einer Ranke oder Ähnlichem." + }, + "vineWhip": { + "name": "Rankenhieb", + "effect": "Peitschenähnlicher Schlag mit Ranken." + }, + "stomp": { + "name": "Stampfer", + "effect": "Stampfen mit dem Fuß. Das Ziel schreckt eventuell zurück." + }, + "doubleKick": { + "name": "Doppelkick", + "effect": "Der Anwender tritt in einer Runde zweimal schnell zu." + }, + "megaKick": { + "name": "Megakick", + "effect": "Das Ziel wird mit einem extrem heftigen Tritt angegriffen." + }, + "jumpKick": { + "name": "Sprungkick", + "effect": "Der Angreifer hüpft hoch und tritt zu. Bei Misserfolg schadet er sich selbst." + }, + "rollingKick": { + "name": "Fegekick", + "effect": "Heftiger Tritt aus einer schnellen Drehbewegung. Lässt das Ziel eventuell zurückschrecken." + }, + "sandAttack": { + "name": "Sandwirbel", + "effect": "Senkt Genauigkeit des Zieles, indem ihm Sand ins Gesicht geworfen wird." + }, + "headbutt": { + "name": "Kopfnuss", + "effect": "Rammt das Ziel mit einer Kopfnuss. Ziel schreckt eventuell zurück." + }, + "hornAttack": { + "name": "Hornattacke", + "effect": "Spießt das Ziel mit einem spitzen Horn auf." + }, + "furyAttack": { + "name": "Furienschlag", + "effect": "Spießt das Ziel zwei- bis fünfmal mit spitzem Horn oder Schnabel auf." + }, + "hornDrill": { + "name": "Hornbohrer", + "effect": "K.O.-Attacke, bei der ein Horn als Bohrer eingesetzt wird." + }, + "tackle": { + "name": "Tackle", + "effect": "Trifft das Ziel mit vollem Körpereinsatz." + }, + "bodySlam": { + "name": "Bodyslam", + "effect": "Trifft das Ziel mit vollem Körpereinsatz. Bewirkt eventuell Paralyse." + }, + "wrap": { + "name": "Wickel", + "effect": "Umwickelt das Ziel über vier bis fünf Runden mit Ranken oder Ähnlichem und fügt ihm Schaden zu." + }, + "takeDown": { + "name": "Bodycheck", + "effect": "Rücksichtslose Attacke, bei der sich der Angreifer selbst leicht verletzt." + }, + "thrash": { + "name": "Fuchtler", + "effect": "Attacke über zwei bis drei Runden, die den Angreifer verwirrt." + }, + "doubleEdge": { + "name": "Risikotackle", + "effect": "Lebensgefährlicher Angriff, bei dem sich der Angreifer selbst verletzt." + }, + "tailWhip": { + "name": "Rutenschlag", + "effect": "Hieb mit dem Schweif. Senkt die Verteidigung des Zieles." + }, + "poisonSting": { + "name": "Giftstachel", + "effect": "Angriff mit Giftstachel. Das Ziel wird eventuell vergiftet." + }, + "twineedle": { + "name": "Duonadel", + "effect": "Stacheln treffen das Ziel zweimal. Das Ziel wird eventuell vergiftet." + }, + "pinMissile": { + "name": "Nadelrakete", + "effect": "Spitze Nadeln treffen das Ziel zwei- bis fünfmal hintereinander." + }, + "leer": { + "name": "Silberblick", + "effect": "Gegnerischer Verteidigungs-Wert wird durch angsteinflößenden Blick gesenkt." + }, + "bite": { + "name": "Biss", + "effect": "Beißt zu und lässt das Ziel eventuell zurückschrecken." + }, + "growl": { + "name": "Heuler", + "effect": "Der Anwender nimmt das Ziel für sich ein und senkt dessen Angriffs-Wert." + }, + "roar": { + "name": "Brüller", + "effect": "Verjagt das Ziel und ersetzt es durch ein anderes Pokémon. Beendet den Kampf in der Wildnis." + }, + "sing": { + "name": "Gesang", + "effect": "Ein Lied, das das Ziel in tiefen Schlaf versetzt." + }, + "supersonic": { + "name": "Superschall", + "effect": "Ausstoß bizarrer Schallwellen. Das Ziel wird verwirrt." + }, + "sonicBoom": { + "name": "Ultraschall", + "effect": "Das Ziel wird von einer Schockwelle getroffen, die stets 20 KP Schaden anrichtet." + }, + "disable": { + "name": "Aussetzer", + "effect": "Die zuletzt eingesetzte Attacke des Zieles wird für mehrere Runden blockiert." + }, + "acid": { + "name": "Säure", + "effect": "Versprüht ätzende Flüssigkeit, die eventuell die Spezial-Verteidigung der Gegner in der Nähe des Anwenders senkt." + }, + "ember": { + "name": "Glut", + "effect": "Schwache Feuer-Attacke, durch die das Ziel eventuell Verbrennungen erleidet." + }, + "flamethrower": { + "name": "Flammenwurf", + "effect": "Starke Feuer-Attacke, durch die das Ziel eventuell Verbrennungen erleidet." + }, + "mist": { + "name": "Weißnebel", + "effect": "Anwender schützt das Team mit einem Nebel. Verhindert Statussenkungen für fünf Runden." + }, + "waterGun": { + "name": "Aquaknarre", + "effect": "Das Ziel wird mit Wasser bespritzt." + }, + "hydroPump": { + "name": "Hydropumpe", + "effect": "Spritzt eine Menge Wasser mit Hochdruck auf das Ziel." + }, + "surf": { + "name": "Surfer", + "effect": "Eine Welle bricht über alle Pokémon in der Nähe des Anwenders herein." + }, + "iceBeam": { + "name": "Eisstrahl", + "effect": "Das Ziel wird von einem Eisstrahl getroffen und friert eventuell ein." + }, + "blizzard": { + "name": "Blizzard", + "effect": "Ein Schneesturm wütet, der das Ziel einfrieren kann." + }, + "psybeam": { + "name": "Psystrahl", + "effect": "Feuert einen Strahl ab, der das Ziel verwirren kann." + }, + "bubbleBeam": { + "name": "Blubbstrahl", + "effect": "Versprüht Blasen, die eventuell den Initiative-Wert des Zieles senken." + }, + "auroraBeam": { + "name": "Aurorastrahl", + "effect": "Regenbogenfarbener Strahl, der eventuell den Angriffs-Wert des Zieles senkt." + }, + "hyperBeam": { + "name": "Hyperstrahl", + "effect": "Starke Attacke, die den Anwender zwingt, eine Runde auszusetzen." + }, + "peck": { + "name": "Pikser", + "effect": "Greift das Ziel mit dem Schnabel oder Horn an." + }, + "drillPeck": { + "name": "Bohrschnabel", + "effect": "Korkenzieherangriff, bei dem der Schnabel als Bohrer dient." + }, + "submission": { + "name": "Überroller", + "effect": "Harte Körperattacke, bei der sich der Angreifer selbst leicht verletzt." + }, + "lowKick": { + "name": "Fußkick", + "effect": "Ein Tritt, der das Ziel umwirft. Je schwerer das Ziel ist, desto mehr Schaden fügt ihm die Attacke zu." + }, + "counter": { + "name": "Konter", + "effect": "Kontert physische Treffer und fügt dem Ziel das Doppelte des Schadens zu, den der Anwender erlitten hat." + }, + "seismicToss": { + "name": "Geowurf", + "effect": "Ziel wird mit der Kraft der Gravitation umgeworfen. Richtet Schaden gemäß Level des Angreifers an." + }, + "strength": { + "name": "Stärke", + "effect": "Das Ziel wird extrem stark getroffen. Macht Verschieben von Felsen möglich." + }, + "absorb": { + "name": "Absorber", + "effect": "Attacke, die die Hälfte des Schadens absorbiert." + }, + "megaDrain": { + "name": "Megasauger", + "effect": "Attacke, die die Hälfte des Schadens absorbiert." + }, + "leechSeed": { + "name": "Egelsamen", + "effect": "Ziel wird bepflanzt und verliert jede Runde KP, die ein Pokémon aus dem Team des Anwenders heilen." + }, + "growth": { + "name": "Wachstum", + "effect": "Der Körper wächst. Dadurch steigen Angriff und Spezial-Angriff." + }, + "razorLeaf": { + "name": "Rasierblatt", + "effect": "Trifft das Ziel mit Blättern. Hohe Volltrefferquote." + }, + "solarBeam": { + "name": "Solarstrahl", + "effect": "Absorbiert Licht in Runde 1. In Runde 2 erfolgt der Angriff." + }, + "poisonPowder": { + "name": "Giftpuder", + "effect": "Verstreut giftigen Puder auf das Ziel." + }, + "stunSpore": { + "name": "Stachelspore", + "effect": "Verstreut lähmenden Puder." + }, + "sleepPowder": { + "name": "Schlafpuder", + "effect": "Verstreut Schlafpuder, der das Ziel eventuell in Schlaf versetzt." + }, + "petalDance": { + "name": "Blättertanz", + "effect": "Angriff mit Blütenblättern für zwei bis drei Runden. Angreifer wird verwirrt." + }, + "stringShot": { + "name": "Fadenschuss", + "effect": "Umwickelt Ziele in der Nähe mit Fäden aus dem Mund und senkt den Initiative-Wert." + }, + "dragonRage": { + "name": "Drachenwut", + "effect": "Stößt eine wutgeladene Schockwelle aus, die stets 40 KP Schaden anrichtet." + }, + "fireSpin": { + "name": "Feuerwirbel", + "effect": "Das Ziel wird für vier bis fünf Runden in einem Feuerkreis gefangen." + }, + "thunderShock": { + "name": "Donnerschock", + "effect": "Eine Elektro-Attacke, die das Ziel eventuell paralysiert." + }, + "thunderbolt": { + "name": "Donnerblitz", + "effect": "Eine starke Elektro-Attacke, die das Ziel eventuell paralysiert." + }, + "thunderWave": { + "name": "Donnerwelle", + "effect": "Ein schwacher Stromstoß, der das Ziel paralysiert." + }, + "thunder": { + "name": "Donner", + "effect": "Eine verheerende Elektro-Attacke, die das Ziel eventuell paralysiert." + }, + "rockThrow": { + "name": "Steinwurf", + "effect": "Das Ziel wird mit einem kleinen Stein beworfen." + }, + "earthquake": { + "name": "Erdbeben", + "effect": "Ein mächtiges Beben, das die anderen Pokémon in der Nähe des Anwenders trifft." + }, + "fissure": { + "name": "Geofissur", + "effect": "Das Ziel wird in eine Erdspalte geworfen. Ist die Attacke erfolgreich, führt sie zu einem K.O." + }, + "dig": { + "name": "Schaufler", + "effect": "In Runde 1 gräbt sich der Anwender ein und in Runde 2 greift er an. Macht Flucht aus Höhlen möglich." + }, + "toxic": { + "name": "Toxin", + "effect": "Vergiftet das Ziel mit einem potenten Toxin schwer. Vergiftung wird von Runde zu Runde stärker." + }, + "confusion": { + "name": "Konfusion", + "effect": "Das Ziel wird von schwacher telekinetischer Energie getroffen und eventuell verwirrt." + }, + "psychic": { + "name": "Psychokinese", + "effect": "Starke Psycho-Attacke, die eventuell die Spezial-Verteidigung des Zieles senkt." + }, + "hypnosis": { + "name": "Hypnose", + "effect": "Hypnose-Attacke, die das Ziel in Schlaf versetzt." + }, + "meditate": { + "name": "Meditation", + "effect": "Anwender aktiviert Kräfte, die tief in seinem Inneren schlummern, und steigert so seinen Angriffs-Wert." + }, + "agility": { + "name": "Agilität", + "effect": "Entspannt den Körper, um den Initiative-Wert stark zu steigern." + }, + "quickAttack": { + "name": "Ruckzuckhieb", + "effect": "Sehr schneller Angriff mit Erstschlaggarantie." + }, + "rage": { + "name": "Raserei", + "effect": "Erhöht Angriff des Anwenders, wenn dieser getroffen wird, solange die Attacke aktiviert ist." + }, + "teleport": { + "name": "Teleport", + "effect": "Der Anwender tauscht den Platz mit einem anderen Team-Mitglied, sofern vorhanden. Setzen wilde Pokémon die Attacke ein, ergreifen diese die Flucht." + }, + "nightShade": { + "name": "Nachtnebel", + "effect": "Das Ziel sieht eine Illusion. Richtet Schaden gemäß dem Level des Anwenders an." + }, + "mimic": { + "name": "Mimikry", + "effect": "Kopiert die zuvor ausgeführte Attacke des Zieles. Kann im Kampf bis zur Auswechslung verwendet werden." + }, + "screech": { + "name": "Kreideschrei", + "effect": "Stößt einen Schrei aus, um die Verteidigung des Zieles stark zu senken." + }, + "doubleTeam": { + "name": "Doppelteam", + "effect": "Erzeugt durch schnelle Bewegungen Ebenbilder, um den Fluchtwert zu erhöhen." + }, + "recover": { + "name": "Genesung", + "effect": "Eine Selbstheilung. KP des Anwenders werden um 50 % des maximalen Wertes aufgefüllt." + }, + "harden": { + "name": "Härtner", + "effect": "Stärkt die Muskulatur und erhöht den Verteidigungs-Wert." + }, + "minimize": { + "name": "Komprimator", + "effect": "Anwender schrumpft, um seinen Fluchtwert stark zu erhöhen." + }, + "smokescreen": { + "name": "Rauchwolke", + "effect": "Senkt Genauigkeit des Zieles mit Rauch, Tinte oder Ähnlichem." + }, + "confuseRay": { + "name": "Konfusstrahl", + "effect": "Ein fieser Strahl, der das Ziel verwirrt." + }, + "withdraw": { + "name": "Panzerschutz", + "effect": "Rückzug in den harten Panzer. Erhöht den Verteidigungs-Wert." + }, + "defenseCurl": { + "name": "Einigler", + "effect": "Verbirgt Schwächen durch Einrollen und hebt gleichzeitig den Verteidigungs-Wert." + }, + "barrier": { + "name": "Barriere", + "effect": "Erzeugt eine Barriere, die den Verteidigungs-Wert stark erhöht." + }, + "lightScreen": { + "name": "Lichtschild", + "effect": "Erzeugt eine Lichtwand und senkt den Schaden durch Spezial-Angriffe für fünf Runden." + }, + "haze": { + "name": "Dunkelnebel", + "effect": "Erzeugt einen dunklen Nebel. Alle Veränderungen der Statuswerte der Kampfteilnehmer werden annulliert." + }, + "reflect": { + "name": "Reflektor", + "effect": "Eine mysteriöse Wand, die fünf Runden den Schaden von physischen gegnerischen Treffern reduziert." + }, + "focusEnergy": { + "name": "Energiefokus", + "effect": "Anwender atmet ein und bündelt Kraft. Die Volltrefferquote steigt dadurch." + }, + "bide": { + "name": "Geduld", + "effect": "Erträgt zwei Runden Angriffe und schlägt dann mit dem doppelten Wert des erlittenen Schadens zurück." + }, + "metronome": { + "name": "Metronom", + "effect": "Bewegt Finger, um das Gehirn zu stimulieren. Wählt zufällig eine Attacke aus." + }, + "mirrorMove": { + "name": "Spiegeltrick", + "effect": "Kopiert die letzte Attacke des Zieles und greift es an." + }, + "selfDestruct": { + "name": "Finale", + "effect": "Anwender sprengt sich, richtet rundum Riesenschaden an und wird dabei besiegt." + }, + "eggBomb": { + "name": "Eierbombe", + "effect": "Ein großes Ei wird auf das Ziel abgefeuert, um ihm zu schaden." + }, + "lick": { + "name": "Schlecker", + "effect": "Leck-Attacke mit langer Zunge. Das Ziel wird eventuell paralysiert." + }, + "smog": { + "name": "Smog", + "effect": "Angriff mit Gas. Das Ziel kann eventuell vergiftet werden." + }, + "sludge": { + "name": "Schlammbad", + "effect": "Wirft Schlamm auf das Ziel. Dieses wird eventuell vergiftet." + }, + "boneClub": { + "name": "Knochenkeule", + "effect": "Schlägt das Ziel mit einer Keule und lässt es eventuell zurückschrecken." + }, + "fireBlast": { + "name": "Feuersturm", + "effect": "Feuersbrunst, die das Ziel versengt und ihm eventuell eine Verbrennung zufügt." + }, + "waterfall": { + "name": "Kaskade", + "effect": "Eine mächtige Attacke, durch die das Ziel eventuell zurückschreckt." + }, + "clamp": { + "name": "Schnapper", + "effect": "Fängt und quetscht das Ziel über vier bis fünf Runden durch die harte Schale des Anwenders." + }, + "swift": { + "name": "Sternschauer", + "effect": "Verschießt sternförmige Strahlen, die stets treffen, auf Ziele in der Umgebung." + }, + "skullBash": { + "name": "Schädelwumme", + "effect": "Der Anwender erhöht in Runde 1 seine Verteidigung und greift in Runde 2 an." + }, + "spikeCannon": { + "name": "Dornkanone", + "effect": "Spitze Nadeln treffen das Ziel zwei- bis fünfmal hintereinander." + }, + "constrict": { + "name": "Umklammerung", + "effect": "Angriff mit langen Tentakeln oder Ranken. Senkt eventuell den Initiative-Wert." + }, + "amnesia": { + "name": "Amnesie", + "effect": "Gedächtnisverlust, der die Spezial-Verteidigung stark erhöht." + }, + "kinesis": { + "name": "Psykraft", + "effect": "Lenkt Ziel durch Verbiegen eines Löffels ab. Senkt dessen Genauigkeit." + }, + "softBoiled": { + "name": "Weichei", + "effect": "KP des Anwenders werden um 50 % der maximalen KP aufgefüllt." + }, + "highJumpKick": { + "name": "Turmkick", + "effect": "Sprungtritt mit Knie. Bei Misserfolg verletzt sich der Anwender selbst." + }, + "glare": { + "name": "Schlangenblick", + "effect": "Schüchtert Ziel mit dem Muster auf seinem Bauch ein, sodass dieses paralysiert wird." + }, + "dreamEater": { + "name": "Traumfresser", + "effect": "Attacke gegen schlafendes Ziel. Die Hälfte des zugefügten Schadens wird dem Anwender gutgeschrieben." + }, + "poisonGas": { + "name": "Giftwolke", + "effect": "Hüllt Ziele in der Umgebung in Gas ein, das sie eventuell vergiftet." + }, + "barrage": { + "name": "Stakkato", + "effect": "Wirft zwei- bis fünfmal runde Gegenstände auf das Ziel." + }, + "leechLife": { + "name": "Blutsauger", + "effect": "Die Hälfte des zugefügten Schadens wird dem Anwender gutgeschrieben." + }, + "lovelyKiss": { + "name": "Todeskuss", + "effect": "Anwender zwingt dem Ziel einen Kuss auf, der Schlaf verursacht." + }, + "skyAttack": { + "name": "Himmelsfeger", + "effect": "Anwender greift in der zweiten Runde mit hoher Volltrefferquote an. Ziel schreckt eventuell zurück." + }, + "transform": { + "name": "Wandler", + "effect": "Anwender verwandelt sich in ein Abbild des Zieles und kann so auf die gleichen Attacken zugreifen." + }, + "bubble": { + "name": "Blubber", + "effect": "Angriff mit Blasen. Initiative-Wert des Zieles wird eventuell gesenkt." + }, + "dizzyPunch": { + "name": "Irrschlag", + "effect": "Rhythmische Schläge, die das Ziel verwirren können." + }, + "spore": { + "name": "Pilzspore", + "effect": "Erzeugt eine Wolke aus einschläfernden Sporen." + }, + "flash": { + "name": "Blitz", + "effect": "Erzeugt helles Licht, das die Genauigkeit des Zieles senkt." + }, + "psywave": { + "name": "Psywelle", + "effect": "Anwender erzeugt eine mysteriöse Energiewelle, deren Intensität von Mal zu Mal anders ausfällt." + }, + "splash": { + "name": "Platscher", + "effect": "Nur ein Platscher, der überhaupt nichts bewirkt." + }, + "acidArmor": { + "name": "Säurepanzer", + "effect": "Verflüssigt Körperzellen des Anwenders. Erhöht den Verteidigungs-Wert stark." + }, + "crabhammer": { + "name": "Krabbhammer", + "effect": "Schlägt mit Schere zu. Hohe Volltrefferquote." + }, + "explosion": { + "name": "Explosion", + "effect": "Anwender explodiert, richtet bei allen Pokémon in seiner Umgebung großen Schaden an und wird selbst kampfunfähig." + }, + "furySwipes": { + "name": "Kratzfurie", + "effect": "Beharkt das Ziel zwei- bis fünfmal mit scharfen Klauen oder Sicheln." + }, + "bonemerang": { + "name": "Knochmerang", + "effect": "Ein Bumerang aus Knochen, der zweimal trifft." + }, + "rest": { + "name": "Erholung", + "effect": "Anwender wird vollkommen geheilt und schläft die folgenden zwei Runden." + }, + "rockSlide": { + "name": "Steinhagel", + "effect": "Schleudert riesige Felsen auf Ziele in der Umgebung, die eventuell zurückschrecken." + }, + "hyperFang": { + "name": "Hyperzahn", + "effect": "Angriff mit scharfen Reißzähnen. Ziel schreckt eventuell zurück." + }, + "sharpen": { + "name": "Schärfer", + "effect": "Anwender senkt die Polygonzahl, um Kanten zu erzeugen, die den Angriffs-Wert erhöhen." + }, + "conversion": { + "name": "Umwandlung", + "effect": "Wandelt den Typ des Anwenders in den Typ der ersten Attacke des Anwenders um." + }, + "triAttack": { + "name": "Triplette", + "effect": "Feuert drei Strahlen ab. Verursacht eventuell Paralyse, Verbrennung oder Einfrieren." + }, + "superFang": { + "name": "Superzahn", + "effect": "Greift mit scharfen Reißzähnen an. KP des Zieles werden halbiert." + }, + "slash": { + "name": "Schlitzer", + "effect": "Hieb mit Klauen oder Ähnlichem. Hohe Volltrefferquote." + }, + "substitute": { + "name": "Delegator", + "effect": "Anwender setzt eine kleine Menge an KP ein, um einen Doppelgänger zu erzeugen, der für ihn Schläge einsteckt." + }, + "struggle": { + "name": "Verzweifler", + "effect": "Angriff nur bei verbrauchten AP. Anwender verletzt sich selbst leicht." + }, + "sketch": { + "name": "Nachahmer", + "effect": "Anwender lernt die letzte Attacke des Zieles dauerhaft. Nachahmer verschwindet nach Gebrauch." + }, + "tripleKick": { + "name": "Dreifachkick", + "effect": "Tritt das Ziel ein- bis dreimal nacheinander. Die Härte der Tritte nimmt von Treffer zu Treffer zu." + }, + "thief": { + "name": "Raub", + "effect": "Erlaubt es, das Item des Zieles zu stehlen, solang der Anwender selbst keins bei sich trägt." + }, + "spiderWeb": { + "name": "Spinnennetz", + "effect": "Wickelt das Ziel ein. Flucht oder Tausch unmöglich." + }, + "mindReader": { + "name": "Willensleser", + "effect": "Ahnt Bewegungen des Zieles voraus, um zu gewährleisten, dass die nächste eigene Attacke trifft." + }, + "nightmare": { + "name": "Nachtmahr", + "effect": "Dem schlafenden Ziel wird durch einen Alptraum in jeder Runde Schaden zugefügt, solang es schläft." + }, + "flameWheel": { + "name": "Flammenrad", + "effect": "Feuer-Attacke, die das Ziel eventuell verbrennt." + }, + "snore": { + "name": "Schnarcher", + "effect": "Attacke nur im Schlaf möglich. Ziel schreckt eventuell zurück." + }, + "curse": { + "name": "Fluch", + "effect": "Attacke, deren Wirkung davon abhängt, ob der Anwender ein Geist-Pokémon ist." + }, + "flail": { + "name": "Dreschflegel", + "effect": "Attacke richtet mehr Schaden an, wenn eigene KP niedrig sind." + }, + "conversion2": { + "name": "Umwandlung2", + "effect": "Anwender ändert Typ und wird gegen letzten Angriffstyp resistent." + }, + "aeroblast": { + "name": "Luftstoß", + "effect": "Erzeugt Luftstrudel gegen das Ziel. Hohe Volltrefferquote." + }, + "cottonSpore": { + "name": "Baumwollsaat", + "effect": "Wattebäusche heften sich an das Ziel. Der Initiative-Wert sinkt stark." + }, + "reversal": { + "name": "Gegenschlag", + "effect": "Richtet mehr Schaden an, wenn eigene KP niedrig sind." + }, + "spite": { + "name": "Groll", + "effect": "AP der letzten Attacke des Zieles werden um 4 gesenkt." + }, + "powderSnow": { + "name": "Pulverschnee", + "effect": "Angriff mit Schnee. Das Ziel wird eventuell eingefroren." + }, + "protect": { + "name": "Schutzschild", + "effect": "Anwender weicht jeder Attacke aus. Scheitert eventuell bei Wiederholung." + }, + "machPunch": { + "name": "Tempohieb", + "effect": "Extrem schneller Hieb, der stets zuerst trifft." + }, + "scaryFace": { + "name": "Grimasse", + "effect": "Jagt dem Ziel mit einer Grimasse Angst ein. Dessen Initiative-Wert sinkt stark." + }, + "feintAttack": { + "name": "Finte", + "effect": "Anwender nähert sich mit Unschuldsmiene dem Ziel und schlägt zu, sobald dieses unachtsam wird. Ein Treffer ist gewiss." + }, + "sweetKiss": { + "name": "Bitterkuss", + "effect": "Anwender küsst das Ziel, das durch diese Niedlichkeit verwirrt wird." + }, + "bellyDrum": { + "name": "Bauchtrommel", + "effect": "Der Anwender maximiert den Angriffs-Wert auf Kosten der Hälfte seiner maximalen KP." + }, + "sludgeBomb": { + "name": "Matschbombe", + "effect": "Wirft Schlamm auf das Ziel. Dieses wird eventuell vergiftet." + }, + "mudSlap": { + "name": "Lehmschelle", + "effect": "Schadet dem Ziel durch Matsch. Dessen Genauigkeit sinkt." + }, + "octazooka": { + "name": "Octazooka", + "effect": "Schießt mit Tinte, um Schaden anzurichten und die Genauigkeit zu senken." + }, + "spikes": { + "name": "Stachler", + "effect": "Der Anwender verteilt Stacheln, die gegnerische Pokémon verletzen, die in den Kampf gerufen werden." + }, + "zapCannon": { + "name": "Blitzkanone", + "effect": "Kanonenähnlicher Elektro-Schuss, der schadet und paralysiert." + }, + "foresight": { + "name": "Scharfblick", + "effect": "Erlaubt es, Geist-Pokémon mit Normal- und Kampf-Attacken anzugreifen. Ignoriert den Fluchtwert des Zieles." + }, + "destinyBond": { + "name": "Abgangsbund", + "effect": "Wird der Anwender nach Einsatz dieser Attacke besiegt, führt dies auch beim Ziel zum K.O." + }, + "perishSong": { + "name": "Abgesang", + "effect": "Wer diese Musik hört, wird nach drei Runden besiegt. Rettung ist durch den Eintausch eines neuen Pokémon möglich." + }, + "icyWind": { + "name": "Eissturm", + "effect": "Eis-Attacke, die dem Ziel Schaden zufügt und seinen Initiative-Wert senkt." + }, + "detect": { + "name": "Scanner", + "effect": "Anwender weicht jeder Attacke aus. Scheitert eventuell bei Wiederholung." + }, + "boneRush": { + "name": "Knochenhatz", + "effect": "Greift Ziel zwei- bis fünfmal in Folge mit einem harten Knochen an." + }, + "lockOn": { + "name": "Zielschuss", + "effect": "Visiert das Ziel an und trifft in der nächsten Runde garantiert." + }, + "outrage": { + "name": "Wutanfall", + "effect": "Attacke über zwei bis drei Runden, die den Anwender verwirrt." + }, + "sandstorm": { + "name": "Sandsturm", + "effect": "Sandsturm für fünf Runden. Fügt Pokémon von jedem Typ außer Gestein, Boden und Stahl Schaden zu." + }, + "gigaDrain": { + "name": "Gigasauger", + "effect": "Das Ziel wird angegriffen und die Hälfte des zugefügten Schadens dem Angreifer als KP gutgeschrieben." + }, + "endure": { + "name": "Ausdauer", + "effect": "Nach fatalen Attacken bleibt stets 1 KP übrig. Misserfolg bei Wiederholung möglich." + }, + "charm": { + "name": "Charme", + "effect": "Betört das Ziel und reduziert dessen Angriffs-Wert stark." + }, + "rollout": { + "name": "Walzer", + "effect": "Attacke, die fünf Runden dauert. Die Härte nimmt von Mal zu Mal zu." + }, + "falseSwipe": { + "name": "Trugschlag", + "effect": "Ein Angriff, der dem Ziel zumindest 1 KP lässt." + }, + "swagger": { + "name": "Angeberei", + "effect": "Verwirrt das Ziel und erhöht dessen Angriffs-Wert stark." + }, + "milkDrink": { + "name": "Milchgetränk", + "effect": "KP des Anwenders werden um 50 % der maximalen KP aufgefüllt." + }, + "spark": { + "name": "Funkensprung", + "effect": "Elektro-Hieb, der das Ziel paralysieren kann." + }, + "furyCutter": { + "name": "Zornklinge", + "effect": "Eine Attacke mit Scheren oder Klauen, deren Härte bei aufeinanderfolgenden Treffern zunimmt." + }, + "steelWing": { + "name": "Stahlflügel", + "effect": "Trifft das Ziel mit Stahlflügeln. Verteidigungs-Wert des Anwenders steigt eventuell." + }, + "meanLook": { + "name": "Horrorblick", + "effect": "Böser Blick, der die Flucht des Zieles vereitelt." + }, + "attract": { + "name": "Anziehung", + "effect": "Angriff auf Anwender vom anderen Geschlecht wird unwahrscheinlich." + }, + "sleepTalk": { + "name": "Schlafrede", + "effect": "Anwender setzt per Zufall eine ihm bekannte Attacke im Schlaf ein." + }, + "healBell": { + "name": "Vitalglocke", + "effect": "Läutet beruhigend und heilt alle Statusprobleme im Team." + }, + "return": { + "name": "Rückkehr", + "effect": "Angriff, dessen Kraft bei Freundschaft zum Trainer größer wird." + }, + "present": { + "name": "Geschenk", + "effect": "Eine Bombe als Geschenk. Kann auch KP des Zieles wiederherstellen." + }, + "frustration": { + "name": "Frustration", + "effect": "Die Attacke wird stärker, je weniger der Anwender seinen Trainer mag." + }, + "safeguard": { + "name": "Bodyguard", + "effect": "Team des Anwenders ist fünf Runden vor Statusproblemen geschützt." + }, + "painSplit": { + "name": "Leidteiler", + "effect": "Addiert KP von Anwender und Ziel. Teilt sie gerecht auf." + }, + "sacredFire": { + "name": "Läuterfeuer", + "effect": "Mystische Feuer-Attacke, durch die das Ziel eventuell Verbrennungen erleidet." + }, + "magnitude": { + "name": "Intensität", + "effect": "Erdbebenartiger Angriff von zufälliger Stärke gegen andere Pokémon in der Umgebung des Anwenders." + }, + "dynamicPunch": { + "name": "Wuchtschlag", + "effect": "Kräftiger Schlag, der das Ziel bei Erfolg verwirrt." + }, + "megahorn": { + "name": "Vielender", + "effect": "Brutaler Ramm-Angriff mit spitzem, beeindruckendem Horn." + }, + "dragonBreath": { + "name": "Feuerodem", + "effect": "Fegt das Ziel mit zerstörerisch heißem Atem weg. Paralysiert das Ziel eventuell." + }, + "batonPass": { + "name": "Stafette", + "effect": "Tauscht das eigene Pokémon aus. Alle Statusveränderungen bleiben bestehen." + }, + "encore": { + "name": "Zugabe", + "effect": "Das Ziel wiederholt die letzte Attacke drei Runden lang." + }, + "pursuit": { + "name": "Verfolgung", + "effect": "Die Attacke richtet beim Ziel doppelten Schaden an, falls es ausgetauscht wird." + }, + "rapidSpin": { + "name": "Turbodreher", + "effect": "Trifft das Ziel mit einer Dreh-Attacke. Befreit sich unter anderem von Wickel, Klammergriff, Egelsamen und Stachler." + }, + "sweetScent": { + "name": "Lockduft", + "effect": "Lockt Ziele an und senkt deren Fluchtwert. Lockt im Gras auch wilde Pokémon an." + }, + "ironTail": { + "name": "Eisenschweif", + "effect": "Attacke mit hartem Eisenschweif. Senkt eventuell den Verteidigungs-Wert des Zieles." + }, + "metalClaw": { + "name": "Metallklaue", + "effect": "Klauen-Attacke, die eventuell den Angriffs-Wert des Anwenders erhöht." + }, + "vitalThrow": { + "name": "Überwurf", + "effect": "Anwender greift als Letzter an, hat dafür aber eine Treffergarantie beim eigenen Angriff." + }, + "morningSun": { + "name": "Morgengrauen", + "effect": "Füllt KP des Anwenders auf. Die Menge hängt vom Wetter ab." + }, + "synthesis": { + "name": "Synthese", + "effect": "Füllt KP des Anwenders auf. Die Menge hängt vom Wetter ab." + }, + "moonlight": { + "name": "Mondschein", + "effect": "Füllt KP des Anwenders auf. Die Menge hängt vom Wetter ab." + }, + "hiddenPower": { + "name": "Kraftreserve", + "effect": "Wirkung und Typ der Attacke hängen vom Anwender ab." + }, + "crossChop": { + "name": "Kreuzhieb", + "effect": "Doppelter Hieb mit den Unterarmen. Hohe Volltrefferquote." + }, + "twister": { + "name": "Windhose", + "effect": "Trifft Ziele in der Umgebung mit einem heftigen Wirbelsturm, was diese eventuell zurückschrecken lässt." + }, + "rainDance": { + "name": "Regentanz", + "effect": "Anwender erzeugt starken Regen. Die Stärke von Wasser-Attacken erhöht sich fünf Runden lang." + }, + "sunnyDay": { + "name": "Sonnentag", + "effect": "Die Sonne brennt unbarmherzig fünf Runden lang. Dadurch werden Attacken vom Typ Feuer verstärkt." + }, + "crunch": { + "name": "Knirscher", + "effect": "Beißt mit scharfen Reißzähnen zu und senkt eventuell die Verteidigung." + }, + "mirrorCoat": { + "name": "Spiegelcape", + "effect": "Kontert den Spezial-Angriff des Gegners mit doppeltem Schaden." + }, + "psychUp": { + "name": "Psycho-Plus", + "effect": "Der Anwender hypnotisiert sich selbst, um die Statusveränderungen des Zieles zu kopieren." + }, + "extremeSpeed": { + "name": "Turbotempo", + "effect": "Extrem schnelle und kraftvolle Attacke, die stets zuerst trifft." + }, + "ancientPower": { + "name": "Antik-Kraft", + "effect": "Angriff mit antiker Kraft, der alle Statuswerte erhöhen kann." + }, + "shadowBall": { + "name": "Spukball", + "effect": "Bewirft das Ziel mit gruseligem Ball und senkt eventuell die Spezial-Verteidigung." + }, + "futureSight": { + "name": "Seher", + "effect": "Zwei Runden, nachdem Seher eingesetzt wurde, erfolgt der Angriff." + }, + "rockSmash": { + "name": "Zertrümmerer", + "effect": "Diese steinbrechende Attacke kann den Verteidigungs-Wert des Zieles senken und außerhalb von Kämpfen rissige Felsen zertrümmern." + }, + "whirlpool": { + "name": "Whirlpool", + "effect": "Das Ziel wird für vier bis fünf Runden in einer Wasserhose gefangen." + }, + "beatUp": { + "name": "Prügler", + "effect": "Das gesamte Team nimmt aktiv am Kampf teil. Je mehr Pokémon, desto höher die Anzahl der Angriffe." + }, + "fakeOut": { + "name": "Mogelhieb", + "effect": "Diese Attacke trifft zuerst. Das Ziel schreckt zurück. Gelingt nur in der ersten Runde eines Kampfes." + }, + "uproar": { + "name": "Aufruhr", + "effect": "Anwender greift an, indem er über drei Runden hinweg einen Aufruhr erzeugt. Verhindert Schlaf." + }, + "stockpile": { + "name": "Horter", + "effect": "Lädt Kraft für später auf. Erhöht Verteidigung und Spezial-Verteidigung. Kann bis zu dreimal eingesetzt werden." + }, + "spitUp": { + "name": "Entfessler", + "effect": "Entlädt die Kraft, die während des Einsatzes von Horter gesammelt wurde." + }, + "swallow": { + "name": "Verzehrer", + "effect": "Absorbiert die gehortete Kraft, um KP aufzufüllen." + }, + "heatWave": { + "name": "Hitzewelle", + "effect": "Ziele werden von Sturm aus heißer Luft getroffen und verbrennen sich eventuell." + }, + "hail": { + "name": "Hagelsturm", + "effect": "Hagelsturm für fünf Runden. Schadet allen, außer Eis-Pokémon." + }, + "torment": { + "name": "Folterknecht", + "effect": "Erzürnt das Ziel, um wiederholten Einsatz derselben Attacke zu verhindern." + }, + "flatter": { + "name": "Schmeichler", + "effect": "Schmeichelt dem Ziel, um es zu verwirren. Erhöht dessen Spezial-Angriff." + }, + "willOWisp": { + "name": "Irrlicht", + "effect": "Angriff mit unheimlicher Flamme, die das Ziel verbrennt." + }, + "memento": { + "name": "Memento-Mori", + "effect": "Der Anwender wird besiegt und senkt den Angriffs-Wert und den Spezial-Angriff des Zieles stark." + }, + "facade": { + "name": "Fassade", + "effect": "Doppelte Stärke nach Verbrennung, Paralyse oder Vergiftung." + }, + "focusPunch": { + "name": "Power-Punch", + "effect": "Anwender konzentriert sich, bevor er angreift. Wird er vorher getroffen, ist die Attacke erfolglos." + }, + "smellingSalts": { + "name": "Riechsalz", + "effect": "Doppelt wirksam gegen paralysierte Ziele, heilt sie aber auch von der Paralyse." + }, + "followMe": { + "name": "Spotlight", + "effect": "Zieht Aufmerksamkeit auf sich. Gegner greift nur Anwender an." + }, + "naturePower": { + "name": "Natur-Kraft", + "effect": "Angriff mit der Kraft der Natur, dessen Typ vom Ort abhängt, wo er durchgeführt wird." + }, + "charge": { + "name": "Ladevorgang", + "effect": "Lädt Energie für die kommende Elektro-Attacke auf. Erhöht die Spezial-Verteidigung." + }, + "taunt": { + "name": "Verhöhner", + "effect": "Bringt das Ziel in Rage. Dieses kann über drei Runden hinweg nur noch angreifen." + }, + "helpingHand": { + "name": "Rechte Hand", + "effect": "Anwender steigert die Kraft eines Angriffes eines Freundes." + }, + "trick": { + "name": "Trickbetrug", + "effect": "Der Anwender überrumpelt das Ziel und tauscht mit ihm die getragenen Items." + }, + "rolePlay": { + "name": "Rollenspiel", + "effect": "Parodiert das Ziel und kopiert seine Fähigkeit." + }, + "wish": { + "name": "Wunschtraum", + "effect": "Ein Wunsch füllt in der nächsten Runde 50 % der KP des Anwenders bei diesem oder einem eingewechselten Pokémon auf." + }, + "assist": { + "name": "Zuschuss", + "effect": "Greift zufällig mit einer Attacke eines Mitstreiters an." + }, + "ingrain": { + "name": "Verwurzler", + "effect": "Verwurzelung füllt jede Runde KP auf. Austausch ist unmöglich." + }, + "superpower": { + "name": "Kraftkoloss", + "effect": "Starke Attacke, die jedoch auch den Angriff und die Verteidigung des Anwenders senkt." + }, + "magicCoat": { + "name": "Magiemantel", + "effect": "Egelsamen und alle Attacken mit Status verändernden Effekten prallen ab." + }, + "recycle": { + "name": "Aufbereitung", + "effect": "Recycling eines getragenen Items, das zuvor im Kampf verwendet wurde." + }, + "revenge": { + "name": "Vergeltung", + "effect": "Schaden verdoppelt sich, wenn der Anwender in der Runde bereits Schaden vom Ziel des Angriffes genommen hat." + }, + "brickBreak": { + "name": "Durchbruch", + "effect": "Ein beherzter Handkantenschlag. Durchbricht Barrieren wie Lichtschild und Reflektor." + }, + "yawn": { + "name": "Gähner", + "effect": "Angreifer gähnt und das Ziel schläft in der nächsten Runde ein." + }, + "knockOff": { + "name": "Abschlag", + "effect": "Schlägt das Item des Zieles weg und vereitelt so dessen Gebrauch während des Kampfes. Mehr Schaden gegen Ziele, die ein Item bei sich tragen." + }, + "endeavor": { + "name": "Notsituation", + "effect": "Trifft nur, wenn KP des Anwenders geringer als KP des Zieles sind. Senkt dessen KP auf die Höhe der KP des Anwenders." + }, + "eruption": { + "name": "Eruption", + "effect": "Explosiver Angriff. Je höher die KP des Anwenders sind, desto mehr Schaden wird angerichtet." + }, + "skillSwap": { + "name": "Fähigkeitstausch", + "effect": "Anwender tauscht Fähigkeit mit dem Ziel." + }, + "imprison": { + "name": "Begrenzer", + "effect": "Hindert Gegner am Einsatz von Attacken, die der Anwender selbst auch kennt." + }, + "refresh": { + "name": "Heilung", + "effect": "Selbstheilung bei Vergiftung, Paralyse und Verbrennung." + }, + "grudge": { + "name": "Nachspiel", + "effect": "Bei K.O. des Anwenders werden die AP der Attacke, durch die er besiegt wurde, auf 0 herabgesetzt." + }, + "snatch": { + "name": "Übernahme", + "effect": "Raubt den Effekt eingesetzter heilender oder Werte verändernder Attacken." + }, + "secretPower": { + "name": "Geheimpower", + "effect": "Angriff, der abhängig vom Anwendungsort einen unterschiedlichen Zusatz-Effekt hat." + }, + "dive": { + "name": "Taucher", + "effect": "Taucht in Runde 1 ab und greift in Runde 2 aus der Tiefe an." + }, + "armThrust": { + "name": "Armstoß", + "effect": "Schläge mit geradem Arm, die das Ziel zwei- bis fünfmal treffen." + }, + "camouflage": { + "name": "Tarnung", + "effect": "Der Typ des Anwenders passt sich der Umgebung an, sei es im Wasser, im Gras oder in einer Höhle." + }, + "tailGlow": { + "name": "Schweifglanz", + "effect": "Ein blinkendes Licht, das den Spezial-Angriff drastisch erhöht." + }, + "lusterPurge": { + "name": "Scheinwerfer", + "effect": "Angriff mit grellem Licht, der die Spezial-Verteidigung des Zieles eventuell senkt." + }, + "mistBall": { + "name": "Nebelball", + "effect": "Angriff mit einer Kugel aus Wasser, die Nebel enthält. Senkt eventuell den Spezial-Angriff des Zieles." + }, + "featherDance": { + "name": "Daunenreigen", + "effect": "Hüllt das Ziel in Daunen und senkt dessen Angriffs-Wert stark." + }, + "teeterDance": { + "name": "Taumeltanz", + "effect": "Ein Wackeltanz, der andere Pokémon in der Umgebung des Anwenders verwirrt." + }, + "blazeKick": { + "name": "Feuerfeger", + "effect": "Starker Tritt mit hoher Volltrefferquote. Verursacht eventuell Verbrennung." + }, + "mudSport": { + "name": "Lehmsuhler", + "effect": "Schwächt Elektro-Attacken, solang der Anwender am Kampf teilnimmt." + }, + "iceBall": { + "name": "Frostbeule", + "effect": "Attacke, die fünf Runden dauert. Die Härte nimmt von Mal zu Mal zu." + }, + "needleArm": { + "name": "Nietenranke", + "effect": "Angriff mit dornigen Armen. Das Ziel schreckt eventuell zurück." + }, + "slackOff": { + "name": "Tagedieb", + "effect": "Durch Müßiggang werden KP des Anwenders um 50 % der maximalen KP aufgefüllt." + }, + "hyperVoice": { + "name": "Schallwelle", + "effect": "Laute Attacke mit Schallwellen." + }, + "poisonFang": { + "name": "Giftzahn", + "effect": "Angriff mit giftigen Reißzähnen. Das Ziel wird eventuell schwer vergiftet." + }, + "crushClaw": { + "name": "Zermalmklaue", + "effect": "Angriff mit scharfen Klauen. Senkt eventuell den Verteidigungs-Wert." + }, + "blastBurn": { + "name": "Lohekanonade", + "effect": "Das Ziel wird von starker Explosion getroffen. Angreifer setzt eine Runde aus." + }, + "hydroCannon": { + "name": "Aquahaubitze", + "effect": "Das Ziel wird von Wasserkanone getroffen. Angreifer setzt eine Runde aus." + }, + "meteorMash": { + "name": "Sternenhieb", + "effect": "Angriff mit einem harten, schnellen Schlag. Erhöht eventuell Angriffs-Wert des Anwenders." + }, + "astonish": { + "name": "Erstauner", + "effect": "Anwender greift mit einem Schrei an. Ein Angriff, der das Ziel eventuell zurückschrecken lässt." + }, + "weatherBall": { + "name": "Meteorologe", + "effect": "Typ und Stärke der Attacke sind vom Wetter zum Zeitpunkt der Anwendung abhängig." + }, + "aromatherapy": { + "name": "Aromakur", + "effect": "Heilt alle Statusprobleme des Teams mit beruhigendem Duft." + }, + "fakeTears": { + "name": "Trugträne", + "effect": "Täuscht Weinen vor, um die Spezial-Verteidigung des Zieles stark zu senken." + }, + "airCutter": { + "name": "Windschnitt", + "effect": "Greift mit rasierklingenartigem Wind an. Hohe Volltrefferquote." + }, + "overheat": { + "name": "Hitzekoller", + "effect": "Angriff mit voller Kraft, der den Spezial-Angriff des Anwenders durch den Rückstoß stark senkt." + }, + "odorSleuth": { + "name": "Schnüffler", + "effect": "Erlaubt es, Geist-Pokémon mit Normal- und Kampf-Attacken anzugreifen. Ignoriert den Fluchtwert des Zieles." + }, + "rockTomb": { + "name": "Felsgrab", + "effect": "Angriff mit Felsen. Bei Erfolg wird der Initiative-Wert des Zieles gesenkt." + }, + "silverWind": { + "name": "Silberhauch", + "effect": "Angriff mit Silberstaub. Eventuell werden alle Statuswerte des Anwenders erhöht." + }, + "metalSound": { + "name": "Metallsound", + "effect": "Stößt einen spitzen Schrei aus, der die Spezial-Verteidigung des Zieles stark senkt." + }, + "grassWhistle": { + "name": "Grasflöte", + "effect": "Versetzt das Ziel durch eine schöne Melodie in Tiefschlaf." + }, + "tickle": { + "name": "Spaßkanone", + "effect": "Bringt das Ziel zum Lachen und senkt dadurch dessen Angriff und Verteidigung." + }, + "cosmicPower": { + "name": "Kosmik-Kraft", + "effect": "Erhöht Verteidigung und Spezial-Verteidigung durch eine mystische Kraft." + }, + "waterSpout": { + "name": "Fontränen", + "effect": "Wasser-Attacke, die wirkungsvoller ist, wenn KP des Anwenders hoch sind." + }, + "signalBeam": { + "name": "Ampelleuchte", + "effect": "Strahlenattacke, die das Ziel eventuell verwirrt." + }, + "shadowPunch": { + "name": "Finsterfaust", + "effect": "Angriff mit der Faust aus dem Schattenreich. Ausweichen unmöglich." + }, + "extrasensory": { + "name": "Sondersensor", + "effect": "Besonderer Angriff mit einer unsichtbaren Kraft, die das Ziel eventuell zurückschrecken lässt." + }, + "skyUppercut": { + "name": "Himmelhieb", + "effect": "Kinnhaken, der das Ziel gen Himmel schickt." + }, + "sandTomb": { + "name": "Sandgrab", + "effect": "Das Ziel leidet für vier bis fünf Runden in einer Sandhose." + }, + "sheerCold": { + "name": "Eiseskälte", + "effect": "Angriff mit Kälte, die das Ziel bei Erfolg besiegt." + }, + "muddyWater": { + "name": "Lehmbrühe", + "effect": "Greift mit Matsch an und senkt eventuell die Genauigkeit des Zieles." + }, + "bulletSeed": { + "name": "Kugelsaat", + "effect": "Der Anwender wirft zwei- bis fünfmal in rascher Folge Samen auf das Ziel." + }, + "aerialAce": { + "name": "Aero-Ass", + "effect": "Eine extrem schnelle Attacke, der das Ziel nicht ausweichen kann." + }, + "icicleSpear": { + "name": "Eisspeer", + "effect": "Feuert zwei bis fünf Eiszapfen auf das Ziel." + }, + "ironDefense": { + "name": "Eisenabwehr", + "effect": "Anwender stärkt den Körper, um den Verteidigungs-Wert stark zu erhöhen." + }, + "block": { + "name": "Rückentzug", + "effect": "Anwender versperrt den Fluchtweg des Zieles." + }, + "howl": { + "name": "Jauler", + "effect": "Anwender jault, um seinen Kampfgeist und seinen Angriffs-Wert zu erhöhen." + }, + "dragonClaw": { + "name": "Drachenklaue", + "effect": "Das Ziel wird mit riesigen, scharfen Klauen stark verletzt." + }, + "frenzyPlant": { + "name": "Flora-Statue", + "effect": "Angriff mit dickem Ast. Der Angreifer muss eine Runde aussetzen." + }, + "bulkUp": { + "name": "Protzer", + "effect": "Pumpt den Körper auf, um den Angriff und die Verteidigung zu erhöhen." + }, + "bounce": { + "name": "Sprungfeder", + "effect": "Angreifer springt und landet in der nächsten Runde auf dem Ziel. Das Ziel wird eventuell paralysiert." + }, + "mudShot": { + "name": "Lehmschuss", + "effect": "Angriff mit Lehm, der den Initiative-Wert des Zieles senkt." + }, + "poisonTail": { + "name": "Giftschweif", + "effect": "Angriff mit hoher Volltrefferquote. Diese Schweifattacke vergiftet das Ziel eventuell." + }, + "covet": { + "name": "Bezirzer", + "effect": "Bittet charmant um das getragene Item des Zieles und stiehlt es dann." + }, + "voltTackle": { + "name": "Volttackle", + "effect": "Angriff mit Elektro-Tackle. Der Anwender verletzt sich dabei. Das Ziel wird eventuell paralysiert." + }, + "magicalLeaf": { + "name": "Zauberblatt", + "effect": "Magischer Blattangriff, dem nicht auszuweichen ist." + }, + "waterSport": { + "name": "Nassmacher", + "effect": "Der Anwender lässt Wasser herabregnen und schwächt damit fünf Runden lang Feuer-Attacken." + }, + "calmMind": { + "name": "Gedankengut", + "effect": "Erhöht Spezial-Angriff und Spezial-Verteidigung durch Konzentration." + }, + "leafBlade": { + "name": "Laubklinge", + "effect": "Hieb mit scharfkantigem Blatt. Hohe Volltrefferquote." + }, + "dragonDance": { + "name": "Drachentanz", + "effect": "Ein mystischer Tanz, der den Angriffs- und Initiative-Wert erhöht." + }, + "rockBlast": { + "name": "Felswurf", + "effect": "Wirft zwei- bis fünfmal in Folge Felsblöcke auf das Ziel." + }, + "shockWave": { + "name": "Schockwelle", + "effect": "Angriff mit schnellem Elektro-Schlag. Ausweichen nicht möglich." + }, + "waterPulse": { + "name": "Aquawelle", + "effect": "Angriff mit Wasserwelle, die das Ziel eventuell verwirren kann." + }, + "doomDesire": { + "name": "Kismetwunsch", + "effect": "Angriff mit gebündeltem Licht erfolgt zwei Runden nach Attackeneinsatz." + }, + "psychoBoost": { + "name": "Psyschub", + "effect": "Angriff mit voller Kraft, der den Spezial-Angriff des Anwenders durch den Rückstoß stark senkt." + }, + "roost": { + "name": "Ruheort", + "effect": "Anwender landet und ruht sich aus. KP des Anwenders werden um 50 % der maximalen KP aufgefüllt." + }, + "gravity": { + "name": "Erdanziehung", + "effect": "Die Gravitation wird für fünf Runden erhöht. Macht Fliegen unmöglich und verhindert Schwebe." + }, + "miracleEye": { + "name": "Wunderauge", + "effect": "Erlaubt es, Unlicht-Pokémon mit Psycho-Attacken anzugreifen. Ignoriert den Fluchtwert des Zieles." + }, + "wakeUpSlap": { + "name": "Weckruf", + "effect": "Richtet großen Schaden bei einem schlafenden Ziel an, weckt es aber auch auf." + }, + "hammerArm": { + "name": "Hammerarm", + "effect": "Anwender trifft mit einem starken Hieb. Senkt Initiative des Anwenders." + }, + "gyroBall": { + "name": "Gyroball", + "effect": "Angriff mit hoher Geschwindigkeit. Je niedriger die Initiative des Anwenders, desto höher der Schaden." + }, + "healingWish": { + "name": "Heilopfer", + "effect": "Anwender geht K.O. Das an seine Stelle tretende Pokémon hat volle KP. Statusprobleme werden geheilt." + }, + "brine": { + "name": "Lake", + "effect": "Hat das Ziel die Hälfte oder weniger seiner maximalen KP, trifft diese Attacke mit doppelter Kraft." + }, + "naturalGift": { + "name": "Beerenkräfte", + "effect": "Anwender zieht aus seiner derzeitigen Beere Kraft. Sie bestimmt Typ und Stärke der Attacke." + }, + "feint": { + "name": "Offenlegung", + "effect": "Ziele, die Schutzschild oder Scanner verwenden, werden getroffen. Entfernt Effekte dieser Attacken." + }, + "pluck": { + "name": "Pflücker", + "effect": "Anwender pickt das Ziel, nimmt die Beere, falls das Ziel eine trägt, und erhält ihren Effekt." + }, + "tailwind": { + "name": "Rückenwind", + "effect": "Anwender erzeugt einen Wirbelwind, der die Initiative aller Pokémon im Team für vier Runden steigert." + }, + "acupressure": { + "name": "Akupressur", + "effect": "Anwender erhöht Druck auf Stresspunkte und steigert einen Statuswert stark." + }, + "metalBurst": { + "name": "Metallstoß", + "effect": "Attacke mit großer Kraft gegen das Ziel, das dem Anwender in derselben Runde zuletzt Schaden zufügte." + }, + "uTurn": { + "name": "Kehrtwende", + "effect": "Nach der Attacke eilt der Anwender zurück und tauscht den Platz mit einem anderen Pokémon." + }, + "closeCombat": { + "name": "Nahkampf", + "effect": "Nahkampf-Attacke ohne Rücksicht auf Verluste. Senkt Verteidigung und Spezial-Verteidigung des Anwenders." + }, + "payback": { + "name": "Gegenstoß", + "effect": "Der Anwender lädt die Attacke auf. Handelt das Ziel vor dem Anwender, verdoppelt sich die Kraft der Attacke." + }, + "assurance": { + "name": "Gewissheit", + "effect": "Hat das Ziel während der Runde schon Schaden genommen, wird die Kraft der Attacke verdoppelt." + }, + "embargo": { + "name": "Itemsperre", + "effect": "Verhindert, dass auf das Ziel Items verwendet werden." + }, + "fling": { + "name": "Schleuder", + "effect": "Anwender schleudert sein Item auf das Ziel. Kraft und Effekt der Attacke hängen vom Item ab." + }, + "psychoShift": { + "name": "Psybann", + "effect": "Anwender nutzt seine Suggestivkräfte, um eigene Statusprobleme auf das Ziel zu transferieren." + }, + "trumpCard": { + "name": "Trumpfkarte", + "effect": "Je weniger AP diese Attacke hat, desto mehr Angriffskraft besitzt sie." + }, + "healBlock": { + "name": "Heilblockade", + "effect": "Anwender verhindert für fünf Runden, dass Ziele durch Attacken, Fähigkeiten oder Items KP regenerieren." + }, + "wringOut": { + "name": "Auswringen", + "effect": "Anwender presst sein Ziel aus. Je höher die KP des Zieles, desto kraftvoller die Attacke." + }, + "powerTrick": { + "name": "Krafttrick", + "effect": "Anwender setzt Psycho-Kräfte ein, um eigenen Angriffs- mit Verteidigungs-Wert auszutauschen." + }, + "gastroAcid": { + "name": "Magensäfte", + "effect": "Anwender greift das Ziel mit eigenen Magensäften an. Entfernt Effekte von dessen Fähigkeit." + }, + "luckyChant": { + "name": "Beschwörung", + "effect": "Anwender singt eine Beschwörungsformel, die Volltreffer gegen ihn verhindert." + }, + "meFirst": { + "name": "Egotrip", + "effect": "Anwender stiehlt und führt die Attacke eines langsameren Zieles zuerst und mit größerer Kraft aus." + }, + "copycat": { + "name": "Imitator", + "effect": "Anwender imitiert gerade verwendete Attacke. Dies schlägt fehl, falls zuvor keine Attacke verwendet wurde." + }, + "powerSwap": { + "name": "Krafttausch", + "effect": "Psychische Kräfte tauschen Änderungen an Angriff und Spezial-Angriff mit denen des Zieles." + }, + "guardSwap": { + "name": "Schutztausch", + "effect": "Psychische Kräfte tauschen Änderungen an Verteidigung und Spezial-Verteidigung mit denen des Zieles." + }, + "punishment": { + "name": "Strafattacke", + "effect": "Je stärker das Ziel durch Statusveränderungen ist, desto stärker wirkt diese Attacke." + }, + "lastResort": { + "name": "Zuflucht", + "effect": "Diese Attacke kann nur eingesetzt werden, nachdem alle verfügbaren Attacken ausgeführt worden sind." + }, + "worrySeed": { + "name": "Sorgensamen", + "effect": "Ziel wird bepflanzt. Wandelt Fähigkeit in Insomnia um. Verhindert so Schlaf." + }, + "suckerPunch": { + "name": "Tiefschlag", + "effect": "Ermöglicht den Erstschlag. Gelingt aber nur, wenn das Ziel gerade eine Attacke vorbereitet." + }, + "toxicSpikes": { + "name": "Giftspitzen", + "effect": "Anwender legt eine Falle mit Giftdornen aus. In den Kampf eingewechselte gegnerische Pokémon werden vergiftet." + }, + "heartSwap": { + "name": "Statustausch", + "effect": "Anwender setzt Psycho-Kräfte ein, um Statusveränderungen des Zieles mit den eigenen zu tauschen." + }, + "aquaRing": { + "name": "Wasserring", + "effect": "Anwender umgibt sich mit einem Schleier aus Wasser. Dabei regeneriert er einige KP pro Runde." + }, + "magnetRise": { + "name": "Magnetflug", + "effect": "Anwender schwebt für fünf Runden durch elektrisch erzeugten Magnetismus." + }, + "flareBlitz": { + "name": "Flammenblitz", + "effect": "Anwender hüllt sich in Flammen und stürmt auf das Ziel zu, das sich eventuell verbrennt. Anwender nimmt selbst großen Schaden." + }, + "forcePalm": { + "name": "Kraftwelle", + "effect": "Das Ziel wird mit einer Schockwelle angegriffen, die es eventuell paralysiert." + }, + "auraSphere": { + "name": "Aurasphäre", + "effect": "Tief aus dem Inneren des Anwenders löst sich ein kraftvoller Stoß Auraenergie. Trifft in jedem Fall." + }, + "rockPolish": { + "name": "Steinpolitur", + "effect": "Anwender reduziert so gut wie möglich den Luftwiderstand. Kann Initiative-Wert stark steigern." + }, + "poisonJab": { + "name": "Gifthieb", + "effect": "Ziel wird mit vergiftetem Arm oder Tentakel verletzt. Es wird dabei eventuell vergiftet." + }, + "darkPulse": { + "name": "Finsteraura", + "effect": "Anwender greift mit fürchterlicher Aura schlechter Gedanken an. Ziel schreckt eventuell zurück." + }, + "nightSlash": { + "name": "Nachthieb", + "effect": "Anwender greift bei der ersten Gelegenheit mit scharfen Klauen an. Hohe Volltrefferquote." + }, + "aquaTail": { + "name": "Nassschweif", + "effect": "Anwender attackiert mit dem Schweif, als ob dieser eine brutale Welle in einem tosenden Sturm sei." + }, + "seedBomb": { + "name": "Samenbomben", + "effect": "Anwender lässt eine Menge Samen mit harter Schale von oben auf das Ziel fallen." + }, + "airSlash": { + "name": "Luftschnitt", + "effect": "Das Ziel wird mit einer Luftklinge angegriffen. Ziel schreckt eventuell zurück." + }, + "xScissor": { + "name": "Kreuzschere", + "effect": "Der Anwender führt eine Attacke aus, die einer Scherenbewegung ähnelt." + }, + "bugBuzz": { + "name": "Käfergebrumm", + "effect": "Anwender schlägt mit den Flügeln und erzeugt eine Schockwelle. Senkt eventuell Spezial-Verteidigung des Zieles." + }, + "dragonPulse": { + "name": "Drachenpuls", + "effect": "Das Ziel wird mit einer Schockwelle angegriffen, die aus dem offenen Maul des Anwenders kommt." + }, + "dragonRush": { + "name": "Drachenstoß", + "effect": "Anwender führt einen gefährlichen Angriff aus. Das Ziel schreckt eventuell zurück." + }, + "powerGem": { + "name": "Juwelenkraft", + "effect": "Anwender attackiert mit einem Lichtstrahl, der funkelt, als sei er aus Juwelen." + }, + "drainPunch": { + "name": "Ableithieb", + "effect": "Entzieht dem Ziel Energie. Die Hälfte des Schadens wird den KP des Anwenders zugerechnet." + }, + "vacuumWave": { + "name": "Vakuumwelle", + "effect": "Ein Faustwirbel sendet eine Vakuumwelle auf das Ziel. Erstschlaggarantie." + }, + "focusBlast": { + "name": "Fokusstoß", + "effect": "Anwender erhöht seinen mentalen Fokus und greift dann an. Senkt eventuell Spezial-Verteidigung des Zieles." + }, + "energyBall": { + "name": "Energieball", + "effect": "Anwender zieht Kraft aus der Natur und feuert sie auf das Ziel. Senkt eventuell Spezial-Verteidigung des Zieles." + }, + "braveBird": { + "name": "Sturzflug", + "effect": "Anwender greift aus niedriger Höhe an. Er erleidet bei dieser Attacke selbst großen Schaden." + }, + "earthPower": { + "name": "Erdkräfte", + "effect": "Der Boden unter dem Ziel erzittert durch die Kraft der Erde. Senkt eventuell Spezial-Verteidigung." + }, + "switcheroo": { + "name": "Wechseldich", + "effect": "Item wird in Windeseile mit dem Ziel getauscht." + }, + "gigaImpact": { + "name": "Gigastoß", + "effect": "Anwender rennt mit seiner ganzen Kraft gegen das Ziel an und muss dann eine Runde ruhen." + }, + "nastyPlot": { + "name": "Ränkeschmied", + "effect": "Anwender stimuliert sein Gehirn und hat finstere Gedanken. Steigert Spezial-Angriff stark." + }, + "bulletPunch": { + "name": "Patronenhieb", + "effect": "Das Ziel wird von ultraschnellen Hieben getroffen. Erstschlaggarantie." + }, + "avalanche": { + "name": "Lawine", + "effect": "Wurde der Anwender in dieser Runde vom Ziel getroffen, macht diese Attacke doppelten Schaden." + }, + "iceShard": { + "name": "Eissplitter", + "effect": "Das Ziel wird mit Eisklumpen beworfen. Diese Attacke hat Erstschlaggarantie." + }, + "shadowClaw": { + "name": "Dunkelklaue", + "effect": "Das Ziel wird mit scharfen Klauen aus der Schattenwelt attackiert. Hohe Volltrefferquote." + }, + "thunderFang": { + "name": "Donnerzahn", + "effect": "Anwender beißt mit elektrifizierten Reißzähnen zu. Das Ziel schreckt eventuell zurück oder wird paralysiert." + }, + "iceFang": { + "name": "Eiszahn", + "effect": "Anwender beißt mit eiskalten Reißzähnen zu. Ziel schreckt eventuell zurück oder friert ein." + }, + "fireFang": { + "name": "Feuerzahn", + "effect": "Anwender beißt mit flammenden Reißzähnen zu. Ziel schreckt eventuell zurück oder verbrennt sich." + }, + "shadowSneak": { + "name": "Schattenstoß", + "effect": "Anwender erweitert Schatten und greift das Ziel von hinten an. Erstschlaggarantie." + }, + "mudBomb": { + "name": "Schlammbombe", + "effect": "Anwender greift mit einem festen Schlammklumpen an. Senkt eventuell Genauigkeit des Zieles." + }, + "psychoCut": { + "name": "Psychoklinge", + "effect": "Das Ziel wird mit Klingen attackiert, die aus Psycho-Energie bestehen. Hohe Volltrefferquote." + }, + "zenHeadbutt": { + "name": "Zen-Kopfstoß", + "effect": "Anwender konzentriert seinen Willen und rammt das Ziel. Dieses schreckt eventuell zurück." + }, + "mirrorShot": { + "name": "Spiegelsalve", + "effect": "Anwender feuert Energiestrahl aus seinem Körper ab. Senkt eventuell Genauigkeit des Zieles." + }, + "flashCannon": { + "name": "Lichtkanone", + "effect": "Anwender sammelt Lichtenergie und feuert sie auf einmal ab. Senkt eventuell Spezial-Verteidigung des Zieles." + }, + "rockClimb": { + "name": "Kraxler", + "effect": "Eine stürmische Attacke, die das Ziel eventuell verwirrt." + }, + "defog": { + "name": "Auflockern", + "effect": "Starker Wind hebt Attacken wie Reflektor und Lichtschild des Zieles auf. Senkt außerdem den Fluchtwert." + }, + "trickRoom": { + "name": "Bizarroraum", + "effect": "Anwender erzeugt einen bizarren Raum, in dem langsame Pokémon fünf Runden lang zuerst agieren." + }, + "dracoMeteor": { + "name": "Draco Meteor", + "effect": "Kometen werden heraufbeschworen. Der Rückstoß reduziert den Spezial-Angriff des Anwenders stark." + }, + "discharge": { + "name": "Ladungsstoß", + "effect": "Anwender greift alle Pokémon im Umkreis mit Elektrizität an. Diese werden eventuell auch paralysiert." + }, + "lavaPlume": { + "name": "Flammensturm", + "effect": "Greift alles in seiner Umgebung mit tiefroten Flammen an. Ziel kann Verbrennungen erleiden." + }, + "leafStorm": { + "name": "Blättersturm", + "effect": "Anwender erzeugt einen Sturm aus scharfen Blättern. Rückstoß senkt Spezial-Angriff des Anwenders stark." + }, + "powerWhip": { + "name": "Blattgeißel", + "effect": "Anwender wirbelt seine Ranken oder Tentakel peitschenartig gegen das Ziel." + }, + "rockWrecker": { + "name": "Felswerfer", + "effect": "Anwender wirft einen riesigen Felsen auf das Ziel. In der nächsten Runde muss der Anwender ruhen." + }, + "crossPoison": { + "name": "Giftstreich", + "effect": "Ein schneidender Hieb, der das Ziel eventuell vergiftet. Hat eine hohe Volltrefferquote." + }, + "gunkShot": { + "name": "Mülltreffer", + "effect": "Anwender schießt mit Müll auf das Ziel. Vergiftet dieses eventuell." + }, + "ironHead": { + "name": "Eisenschädel", + "effect": "Ziel wird durch stahlharten Kopf des Anwenders getroffen und schreckt eventuell zurück." + }, + "magnetBomb": { + "name": "Magnetbombe", + "effect": "Ziel wird durch Haftbomben getroffen. Diese Attacke trifft immer." + }, + "stoneEdge": { + "name": "Steinkante", + "effect": "Anwender sticht das Ziel mit spitzen Steinen. Hohe Volltrefferquote." + }, + "captivate": { + "name": "Liebreiz", + "effect": "Charme-Attacke, die den Spezial-Angriff des Zieles stark senkt, falls es dem anderen Geschlecht angehört." + }, + "stealthRock": { + "name": "Tarnsteine", + "effect": "Falle mit schwebenden Steinen. In den Kampf eingewechselte Ziele nehmen Schaden." + }, + "grassKnot": { + "name": "Strauchler", + "effect": "Ziel wird durch Gras ins Straucheln gebracht. Je schwerer das Ziel, desto mehr Schaden." + }, + "chatter": { + "name": "Geschwätz", + "effect": "Attacke mit Schallwellen. Verwirrt das Ziel." + }, + "judgment": { + "name": "Urteilskraft", + "effect": "Anwender feuert unzählige Lichtstrahlen ab. Deren Typ hängt von der gehaltenen Tafel ab." + }, + "bugBite": { + "name": "Käferbiss", + "effect": "Anwender beißt das Ziel. Trägt dieses eine Beere, isst der Anwender sie und erhält ihren Effekt." + }, + "chargeBeam": { + "name": "Ladestrahl", + "effect": "Ziel wird von einem Elektrostrahl getroffen. Steigert eventuell Spezial-Angriff des Anwenders." + }, + "woodHammer": { + "name": "Holzhammer", + "effect": "Anwender attackiert mit seinem robusten Körper. Er erleidet dabei auch selbst großen Schaden." + }, + "aquaJet": { + "name": "Wasserdüse", + "effect": "Bei dieser Erstschlag-Attacke stürzt sich der Anwender so schnell auf das Ziel, dass er quasi unsichtbar wird." + }, + "attackOrder": { + "name": "Schlagbefehl", + "effect": "Anwender ruft seine Untergebenen zum Angriff. Hat eine hohe Volltrefferquote." + }, + "defendOrder": { + "name": "Blockbefehl", + "effect": "Untergebene bilden einen lebenden Schild um den Anwender. Steigert Verteidigung und Spezial-Verteidigung." + }, + "healOrder": { + "name": "Heilbefehl", + "effect": "Untergebene heilen den Anwender. KP des Anwenders werden um 50 % der maximalen KP aufgefüllt." + }, + "headSmash": { + "name": "Kopfstoß", + "effect": "Anwender greift unter Einsatz seines Lebens mit einem Kopfstoß an und nimmt dabei selbst jede Menge Schaden." + }, + "doubleHit": { + "name": "Doppelschlag", + "effect": "Anwender trifft das Ziel mit dem Schweif oder Ähnlichem. Ziel wird doppelt getroffen." + }, + "roarOfTime": { + "name": "Zeitenlärm", + "effect": "Anwender attackiert mit einer Kraft, die selbst die Zeit verzerrt. In der nächsten Runde muss er ruhen." + }, + "spacialRend": { + "name": "Raumschlag", + "effect": "Schwere, raumgreifende Attacke. Hohe Volltrefferquote." + }, + "lunarDance": { + "name": "Lunartanz", + "effect": "Anwender geht K.O. Das an seine Stelle tretende Pokémon hat dafür volle KP und AP. Statusprobleme werden geheilt." + }, + "crushGrip": { + "name": "Quetschgriff", + "effect": "Ziel wird mit großer Kraft getroffen. Je höher die KP des Zieles, desto stärker die Attacke." + }, + "magmaStorm": { + "name": "Lavasturm", + "effect": "Das Ziel wird in einen Feuersog gezogen, der vier bis fünf Runden aktiv ist." + }, + "darkVoid": { + "name": "Schlummerort", + "effect": "Das Ziel wird in eine Welt der Dunkelheit gezogen und in Schlaf versetzt." + }, + "seedFlare": { + "name": "Schocksamen", + "effect": "Anwender erzeugt eine Schockwelle. Spezial-Verteidigung des Zieles wird stark gesenkt." + }, + "ominousWind": { + "name": "Unheilböen", + "effect": "Das Ziel treffen abscheuliche Winde. Steigert eventuell alle Statuswerte des Anwenders." + }, + "shadowForce": { + "name": "Schemenkraft", + "effect": "Anwender verschwindet in Runde 1 und attackiert in Runde 2. Trifft auch, wenn sich das Ziel selbst schützt." + }, + "honeClaws": { + "name": "Klauenwetzer", + "effect": "Wetzt seine Klauen, um sie zu schärfen. Erhöht Angriff und Genauigkeit des Anwenders." + }, + "wideGuard": { + "name": "Rundumschutz", + "effect": "Schützt eine Runde lang vor Angriffen, die alle Pokémon auf deiner Seite treffen." + }, + "guardSplit": { + "name": "Schutzteiler", + "effect": "Durch Psycho-Kräfte werden Verteidigung und Spezial-Verteidigung des Anwenders und des Zieles addiert und in zwei gleiche Hälften geteilt." + }, + "powerSplit": { + "name": "Kraftteiler", + "effect": "Durch Psycho-Kräfte werden Angriff und Spezial-Angriff des Anwenders und des Zieles addiert und in zwei gleiche Hälften geteilt." + }, + "wonderRoom": { + "name": "Wunderraum", + "effect": "Anwender erzeugt bizarren Raum, in dem über fünf Runden die Verteidigung aller Pokémon mit ihrer Spezial-Verteidigung getauscht wird." + }, + "psyshock": { + "name": "Psychoschock", + "effect": "Anwender erzeugt eine seltsame Energiewelle, die dem Ziel physischen Schaden zufügt." + }, + "venoshock": { + "name": "Giftschock", + "effect": "Überschüttet das Ziel mit einer speziellen toxischen Flüssigkeit. Doppelt so stark gegen vergiftete Ziele." + }, + "autotomize": { + "name": "Autotomie", + "effect": "Anwender trennt sich von überflüssigen Körperteilen und steigert seine Initiative stark. Sein Gewicht nimmt deutlich ab." + }, + "ragePowder": { + "name": "Wutpulver", + "effect": "Anwender zieht gegnerische Aufmerksamkeit und Angriffe auf sich, indem er ein Wut erzeugendes Pulver über sich streut." + }, + "telekinesis": { + "name": "Telekinese", + "effect": "Bringt das Ziel durch Psycho-Kräfte zum Schweben. Dieses lässt sich so über drei Runden hinweg besonders leicht treffen." + }, + "magicRoom": { + "name": "Magieraum", + "effect": "Anwender erzeugt einen bizarren Raum, in dem über fünf Runden die Wirkung aller von Pokémon getragenen Items aufgehoben ist." + }, + "smackDown": { + "name": "Katapult", + "effect": "Greift das Ziel mit Steinen und Wurfgeschossen an. Fliegende Ziele fallen dabei vom Himmel und landen auf dem Boden." + }, + "stormThrow": { + "name": "Bergsturm", + "effect": "Ein Angriff mit voller Wucht und Volltreffergarantie." + }, + "flameBurst": { + "name": "Funkenflug", + "effect": "Bei Erfolg greift der Anwender mit berstenden Feuerblasen an. Die Funken der geplatzten Blasen treffen auch benachbarte Ziele." + }, + "sludgeWave": { + "name": "Schlammwoge", + "effect": "Greift Pokémon in der Nähe des Anwenders mit einer Schlammwelle an. Diese werden eventuell vergiftet." + }, + "quiverDance": { + "name": "Falterreigen", + "effect": "Anwender legt behände einen mystischen, formvollendeten Tanz aufs Parkett. Spezial-Angriff, Spezial-Verteidigung und Initiative steigen." + }, + "heavySlam": { + "name": "Rammboss", + "effect": "Anwender rammt das Ziel mit massivem Körper. Je schwerer er im Vergleich zum Ziel ist, desto stärker die Attacke." + }, + "synchronoise": { + "name": "Synchrolärm", + "effect": "Fügt Pokémon vom selben Typ, die sich in der Nähe des Anwenders aufhalten, mit seltsamen Druckwellen Schaden zu." + }, + "electroBall": { + "name": "Elektroball", + "effect": "Je höher die Initiative des Anwenders im Vergleich zum Ziel ist, desto stärker trifft dieses eine geballte Ladung Strom." + }, + "soak": { + "name": "Überflutung", + "effect": "Überschüttet das Ziel mit Unmengen an Wasser und ändert den Typ damit in Wasser um." + }, + "flameCharge": { + "name": "Nitroladung", + "effect": "Anwender hüllt sich in Flammen und greift das Ziel an. Sammelt seine Energie und erhöht dadurch die eigene Initiative." + }, + "coil": { + "name": "Einrollen", + "effect": "Anwender rollt sich zusammen und sammelt sich. Dabei werden Angriff, Verteidigung und Genauigkeit erhöht." + }, + "lowSweep": { + "name": "Fußtritt", + "effect": "Anwender greift mit blitzschnellen Bewegungen die Beine des Zieles an und senkt dessen Initiative." + }, + "acidSpray": { + "name": "Säurespeier", + "effect": "Anwender greift an, indem er eine ätzende Flüssigkeit auf das Ziel speit. Senkt dessen Spezial-Verteidigung stark." + }, + "foulPlay": { + "name": "Schmarotzer", + "effect": "Anwender macht sich die Kraft des Zieles zunutze. Je höher dessen Angriff, desto mehr Schaden richtet die Attacke an." + }, + "simpleBeam": { + "name": "Wankelstrahl", + "effect": "Bestrahlt das Ziel mit mysteriösen Energiewellen. Bei einem Treffer wird dessen Fähigkeit zu Wankelmut." + }, + "entrainment": { + "name": "Zwango", + "effect": "Anwender tanzt zu einem seltsamem Rhythmus und zwingt das Ziel mitzumachen. Dieses nimmt dabei die Fähigkeit des Anwenders an." + }, + "afterYou": { + "name": "Galanterie", + "effect": "Anwender ermöglicht dem Ziel direkt nach ihm zu handeln, solange der Anwender als Erstes zum Zug kommt." + }, + "round": { + "name": "Kanon", + "effect": "Angriff mit Gesang. Singt der Anwender mit allen im Kanon, steigt die Stärke." + }, + "echoedVoice": { + "name": "Widerhall", + "effect": "Angriff mit widerhallender Stimme. Wenn in jeder Runde ein Teilnehmer wiederholt die Attacke einsetzt, steigt die Stärke." + }, + "chipAway": { + "name": "Zermürben", + "effect": "Eine durchdachte Attacke zu rechter Zeit. Richtet unabhängig von den Statusveränderungen des Zieles Schaden an." + }, + "clearSmog": { + "name": "Klärsmog", + "effect": "Anwender greift das Ziel mit spezialgefertigten Schlammklumpen an. Setzt Statusveränderungen zurück." + }, + "storedPower": { + "name": "Kraftvorrat", + "effect": "Angriff mit angesparter Energie. Je höher die Statuswerte des Anwenders, desto stärker fällt die Attacke aus." + }, + "quickGuard": { + "name": "Rapidschutz", + "effect": "Schützt Anwender und Mitstreiter vor gegnerischen Erstschlag-Attacken." + }, + "allySwitch": { + "name": "Seitentausch", + "effect": "Wundersame Kräfte teleportieren den Anwender an den Platz eines Mitstreiters." + }, + "scald": { + "name": "Siedewasser", + "effect": "Heizt dem Ziel mit einem Schwall siedend heißen Kochwassers ein. Das Ziel erleidet dabei eventuell Verbrennungen." + }, + "shellSmash": { + "name": "Hausbruch", + "effect": "Anwender zerbricht seine Schale und senkt seine Verteidigung und Spezial-Verteidigung, aber dafür steigen Angriff, Spezial-Angriff und Initiative stark." + }, + "healPulse": { + "name": "Heilwoge", + "effect": "Anwender löst eine Schmerzen lindernde Welle aus und heilt dabei das Ziel mit der Hälfte seiner maximalen KP." + }, + "hex": { + "name": "Bürde", + "effect": "Eine Attacke, bei der der Anwender das Ziel bedrängt. Fügt Zielen mit Statusproblemen hohen Schaden zu." + }, + "skyDrop": { + "name": "Freier Fall", + "effect": "Steigt in Runde 1 mit dem Ziel in die Luft auf und lässt es in Runde 2 fallen. Das Ziel kann dabei nicht angreifen." + }, + "shiftGear": { + "name": "Gangwechsel", + "effect": "Durch Drehen der Zahnräder erhöht sich nicht nur der Angriffs-Wert, sondern auch die Initiative des Anwenders stark." + }, + "circleThrow": { + "name": "Überkopfwurf", + "effect": "Schleudert das Ziel davon und bewirkt damit, dass ein anderes Pokémon eingewechselt wird. Beendet Kämpfe gegen wilde Pokémon." + }, + "incinerate": { + "name": "Einäschern", + "effect": "Eine Feuer-Attacke. Trägt das Ziel eine Beere oder ein ähnliches Item bei sich, wird dieses von den Flammen verzehrt und geht verloren." + }, + "quash": { + "name": "Verzögerung", + "effect": "Anwender stemmt sich gegen das Ziel und bewirkt, dass dieses erst als Letztes angreift." + }, + "acrobatics": { + "name": "Akrobatik", + "effect": "Ein graziler Angriff auf das Ziel. Trägt der Anwender kein Item bei sich, richtet die Attacke großen Schaden an." + }, + "reflectType": { + "name": "Typenspiegel", + "effect": "Anwender bildet das Ziel nach und nimmt dabei dessen Typ an." + }, + "retaliate": { + "name": "Heimzahlung", + "effect": "Anwender nimmt Rache für einen besiegten Mitstreiter. Wurde in der vorigen Runde ein Mitstreiter besiegt, steigt die Kraft." + }, + "finalGambit": { + "name": "Wagemut", + "effect": "Ein Angriff, der dem Ziel Schaden in Höhe der aktuellen KP des Anwenders zufügt. Letzterer wird dadurch selbst besiegt." + }, + "bestow": { + "name": "Offerte", + "effect": "Trägt das Ziel gerade kein Item bei sich, erhält es das Item, das sich aktuell im Besitz des Anwenders befindet." + }, + "inferno": { + "name": "Inferno", + "effect": "Anwender greift das Ziel an, indem er es mit dichten Flammen umhüllt. Ziel erleidet Verbrennungen." + }, + "waterPledge": { + "name": "Wassersäulen", + "effect": "Ein Angriff mit Wassersäulen. Mit Feuersäulen kombiniert steigt die Wirkung und ein Regenbogen erscheint." + }, + "firePledge": { + "name": "Feuersäulen", + "effect": "Ein Angriff mit Feuersäulen. Mit Pflanzsäulen kombiniert steigt die Wirkung und die Umgebung wird zu einem Meer aus Feuer." + }, + "grassPledge": { + "name": "Pflanzensäulen", + "effect": "Ein Angriff mit Pflanzsäulen. Mit Wassersäulen kombiniert steigt die Wirkung und die Umgebung wird zu einem Sumpf." + }, + "voltSwitch": { + "name": "Voltwechsel", + "effect": "Anwender kehrt nach dem Angriff mit atemberaubender Geschwindigkeit zurück und tauscht Platz mit einem anderen Pokémon." + }, + "struggleBug": { + "name": "Käfertrutz", + "effect": "Anwender leistet Widerstand und greift an. Der Spezial-Angriff der Ziele sinkt." + }, + "bulldoze": { + "name": "Dampfwalze", + "effect": "Anwender greift an, indem er den Boden um sich herum plattwalzt. Die Initiative aller betroffenen Pokémon sinkt." + }, + "frostBreath": { + "name": "Eisesodem", + "effect": "Anwender greift an, indem er dem Ziel eisigen Atem entgegenhaucht. Volltreffergarantie." + }, + "dragonTail": { + "name": "Drachenrute", + "effect": "Putzt das Ziel vom Feld und wechselt es mit einem anderen Pokémon aus. Beendet Kämpfe gegen wilde Pokémon." + }, + "workUp": { + "name": "Kraftschub", + "effect": "Anwender erhält einen Kraftschub, der seinen Angriff und Spezial-Angriff erhöht." + }, + "electroweb": { + "name": "Elektronetz", + "effect": "Fängt Ziele mit einem elektrischen Netz und senkt deren Initiative." + }, + "wildCharge": { + "name": "Stromstoß", + "effect": "Anwender erzeugt Spannung und greift an, indem er auf Kollisionskurs geht. Er selbst erleidet dabei ebenfalls leichten Schaden." + }, + "drillRun": { + "name": "Schlagbohrer", + "effect": "Anwender rammt das Ziel, während er seinen Körper wie einen Bohrer dreht. Hohe Volltrefferquote." + }, + "dualChop": { + "name": "Doppelhieb", + "effect": "Versetzt dem Ziel mit massiven Extremitäten Hiebe. Angriff erfolgt zweimal hintereinander." + }, + "heartStamp": { + "name": "Herzstempel", + "effect": "Verleitet Ziel durch Kokettieren zu Unachtsamkeit und verpasst ihm dann einen harten Schlag. Ziel schreckt eventuell zurück." + }, + "hornLeech": { + "name": "Holzgeweih", + "effect": "Greift Ziel mit Astgeweih an und zapft diesem Nährstoffe ab. Anwender wird um die Hälfte des zugefügten Schadens geheilt." + }, + "sacredSword": { + "name": "Sanctoklinge", + "effect": "Schneideangriff mit langem Horn. Richtet Schaden unabhängig von Statusveränderungen des Zieles an." + }, + "razorShell": { + "name": "Kalkklinge", + "effect": "Schneideangriff mit einer scharfen Muschelschale. Senkt eventuell die Verteidigung des Zieles." + }, + "heatCrash": { + "name": "Brandstempel", + "effect": "Rempelattacke mit brennendem Körper. Je schwerer der Anwender im Vergleich zum Ziel ist, desto stärker die Attacke." + }, + "leafTornado": { + "name": "Grasmixer", + "effect": "Anwender greift an, indem er das Ziel in scharfes Blattwerk einwickelt. Kann die Genauigkeit senken." + }, + "steamroller": { + "name": "Quetschwalze", + "effect": "Anwender rollt mit rundlichem Körper über das Ziel und drückt es platt. Ziel schreckt eventuell zurück." + }, + "cottonGuard": { + "name": "Watteschild", + "effect": "Anwender schützt sich, indem er sich in einen luftigen Flaum hüllt. Erhöht die Verteidigung drastisch." + }, + "nightDaze": { + "name": "Nachtflut", + "effect": "Anwender greift Ziel mit finsteren Schockwellen an. Senkt eventuell die Genauigkeit." + }, + "psystrike": { + "name": "Psychostoß", + "effect": "Anwender erzeugt seltsame Energiewellen, die dem Ziel physischen Schaden zufügen." + }, + "tailSlap": { + "name": "Kehrschelle", + "effect": "Anwender greift das Ziel mit seiner schlagfesten Rute zwei- bis fünfmal hintereinander an." + }, + "hurricane": { + "name": "Orkan", + "effect": "Anwender greift das Ziel an, indem er es mit heftigen Windböen umgibt. Ziel wird eventuell verwirrt." + }, + "headCharge": { + "name": "Steinschädel", + "effect": "Rempelattacke mit ausgeflippter Retrofrisur. Anwender nimmt selbst leichten Schaden." + }, + "gearGrind": { + "name": "Klikkdiskus", + "effect": "Anwender greift an, indem er stählerne Zahnräder auf das Ziel schleudert. Angriff erfolgt zweimal hintereinander." + }, + "searingShot": { + "name": "Flammenball", + "effect": "Greift alles in seiner Umgebung mit tiefroten Flammen an. Ziel kann Verbrennungen erleiden." + }, + "technoBlast": { + "name": "Techblaster", + "effect": "Anwender feuert ein Lichtgeschoss auf das Ziel ab. Der Typ der Attacke hängt von dem des Moduls ab." + }, + "relicSong": { + "name": "Urgesang", + "effect": "Anwender greift mit Urgesang an, der Ziele in der Nähe im tiefsten Inneren anspricht. Diese schlafen eventuell ein." + }, + "secretSword": { + "name": "Mystoschwert", + "effect": "Schneideangriff mit dem langen Schwert des Anwenders. Die mysteriöse Kraft aus dem Horn erzeugt physischen Schaden." + }, + "glaciate": { + "name": "Eiszeit", + "effect": "Anwender greift an, indem er dem Ziel klirrend kalte Luft entgegenbläst. Senkt die Initiative des Zieles." + }, + "boltStrike": { + "name": "Blitzschlag", + "effect": "Lädt seinen Körper mit einer gewaltigen Menge an Elektrizität auf und rammt damit das Ziel. Ziel wird eventuell paralysiert." + }, + "blueFlare": { + "name": "Blauflammen", + "effect": "Anwender greift an, indem er das Ziel in wunderschöne, intensivblaue Flammen hüllt, die es eventuell verbrennen." + }, + "fieryDance": { + "name": "Feuerreigen", + "effect": "Hüllt das Ziel mit einer Feuerhose in Flammen. Kann den Spezial-Angriff des Anwenders erhöhen." + }, + "freezeShock": { + "name": "Frostvolt", + "effect": "Feuert in der zweiten Runde elektrisch geladene Eisklumpen auf das Ziel ab. Paralysiert das Ziel eventuell." + }, + "iceBurn": { + "name": "Frosthauch", + "effect": "Umgibt das Ziel in der nächsten Runde mit heftigen, alles gefrierenden Eisböen. Fügt dem Ziel eventuell Verbrennungen zu." + }, + "snarl": { + "name": "Standpauke", + "effect": "Wäscht Zielen in der Nähe mit einer ausführlichen Standpauke den Kopf und senkt dabei deren Spezial-Angriff." + }, + "icicleCrash": { + "name": "Eiszapfhagel", + "effect": "Lässt große, schwere Eiszapfen auf das Ziel herabregnen. Ziel schreckt eventuell zurück." + }, + "vCreate": { + "name": "V-Generator", + "effect": "Eine Verzweiflungsattacke. Anwender entfacht glühend heißes Feuer. Senkt dessen Verteidigung, Spezial-Verteidigung und Initiative." + }, + "fusionFlare": { + "name": "Kreuzflamme", + "effect": "Feuert eine monströse Flamme ab. Wird die Attacke durch einen gigantischen Blitz modifiziert, steigt die Stärke." + }, + "fusionBolt": { + "name": "Kreuzdonner", + "effect": "Feuert einen monströsen Blitz ab. Wird die Attacke durch eine gigantische Flamme modifiziert, steigt die Stärke." + }, + "flyingPress": { + "name": "Flying Press", + "effect": "Der Anwender stürzt sich aus der Luft auf das Ziel. Die Attacke gehört sowohl dem Typ Kampf als auch dem Typ Flug an." + }, + "matBlock": { + "name": "Tatami-Schild", + "effect": "Der Anwender richtet eine Tatami-Matte auf, um sich und sein Team vor Schaden zu schützen. Kein Schutz vor Status-Attacken." + }, + "belch": { + "name": "Rülpser", + "effect": "Der Anwender fügt dem Ziel Schaden zu, indem er es anrülpst. Diese Attacke gelingt nur nach dem Konsum einer getragenen Beere." + }, + "rototiller": { + "name": "Pflüger", + "effect": "Der Anwender pflügt den Boden und macht die Erde fruchtbarer. Erhöht den Angriff und den Spezial-Angriff von Pflanzen-Pokémon." + }, + "stickyWeb": { + "name": "Klebenetz", + "effect": "Der Anwender spinnt in der Umgebung des gegnerischen Teams ein klebriges Netz und senkt so die Initiative neu eingewechselter Pokémon." + }, + "fellStinger": { + "name": "Stachelfinale", + "effect": "Gelingt es dem Anwender, das Ziel mit dieser Attacke zu besiegen, steigt sein Angriffs-Wert stark." + }, + "phantomForce": { + "name": "Phantomkraft", + "effect": "Der Anwender verschwindet, um eine Runde lang seine Kraft zu sammeln und in der nächsten Runde anzugreifen. Durchbricht die Defensive des Zieles." + }, + "trickOrTreat": { + "name": "Halloween", + "effect": "Der Anwender lehrt das Ziel das Fürchten. Dieses nimmt dadurch zusätzlich den Typ Geist an." + }, + "nobleRoar": { + "name": "Kampfgebrüll", + "effect": "Der Anwender stößt ein Kampfgebrüll aus, das das Ziel einschüchtert und zugleich seinen Angriffs- und Spezial-Angriffs-Wert senkt." + }, + "ionDeluge": { + "name": "Plasmaschauer", + "effect": "Versprüht elektrisch geladene Partikel und bewirkt, dass Normal-Attacken den Typ Elektro annehmen." + }, + "parabolicCharge": { + "name": "Parabolladung", + "effect": "Fügt allen Pokémon in der Umgebung Schaden zu. Der Anwender wird um die Hälfte des insgesamt angerichteten Schadens geheilt." + }, + "forestsCurse": { + "name": "Waldesfluch", + "effect": "Der Anwender belegt das Ziel mit einem Waldesfluch, durch den dieses zusätzlich den Typ Pflanze annimmt." + }, + "petalBlizzard": { + "name": "Blütenwirbel", + "effect": "Der Anwender erzeugt einen turbulenten Blütenwirbel, der alle Pokémon in der Nähe erfasst und ihnen Schaden zufügt." + }, + "freezeDry": { + "name": "Gefriertrockner", + "effect": "Das Ziel wird stark abgekühlt und manchmal sogar eingefroren. Die Attacke ist sehr effektiv gegen Wasser-Pokémon." + }, + "disarmingVoice": { + "name": "Säuselstimme", + "effect": "Der Anwender stößt einen bezirzenden Ruf aus, mit dem er das Ziel in seinen Bann schlägt und ihm immer mentalen Schaden zufügt." + }, + "partingShot": { + "name": "Abgangstirade", + "effect": "Schüchtert das Ziel mit einer Abgangstirade ein, sodass dessen Angriffs- und Spezial-Angriffs-Wert sinken. Danach wird der Anwender ausgewechselt." + }, + "topsyTurvy": { + "name": "Invertigo", + "effect": "Invertiert alle Statusveränderungen des Zieles." + }, + "drainingKiss": { + "name": "Diebeskuss", + "effect": "Der Anwender stiehlt dem Ziel mit einem Kuss KP. Die Höhe der Heilung beträgt mehr als die Hälfte des beim Ziel angerichteten Schadens." + }, + "craftyShield": { + "name": "Trickschutz", + "effect": "Schützt sich und Mitstreiter mit einer mysteriösen Macht vor Status-Attacken. Es werden jedoch weiterhin KP-Schäden erlitten." + }, + "flowerShield": { + "name": "Floraschutz", + "effect": "Erhöht mit einer mysteriösen Macht die Verteidigung aller am Kampf beteiligten Pflanzen-Pokémon." + }, + "grassyTerrain": { + "name": "Grasfeld", + "effect": "Verwandelt den Untergrund fünf Runden lang in ein Grasfeld und heilt in jeder neuen Runde alle Pokémon, die den Boden berühren." + }, + "mistyTerrain": { + "name": "Nebelfeld", + "effect": "Verwandelt den Untergrund fünf Runden lang in ein Nebelfeld und schützt alle Pokémon, die den Boden berühren, vor Statusproblemen." + }, + "electrify": { + "name": "Elektrifizierung", + "effect": "Kommt die Attacke zum Einsatz, bevor das Ziel seine Attacke ausführt, nimmt diese für die Dauer dieser Runde den Typ Elektro an." + }, + "playRough": { + "name": "Knuddler", + "effect": "Der Anwender knuddelt das Ziel und greift es an. Gelegentlich sinkt dabei auch dessen Angriffs-Wert." + }, + "fairyWind": { + "name": "Feenbrise", + "effect": "Lässt eine Feenbrise aufkommen, die das Ziel erfasst und ihm Schaden zufügt." + }, + "moonblast": { + "name": "Mondgewalt", + "effect": "Der Anwender macht sich die Kraft des Mondes zunutze, um anzugreifen. Gelegentlich wird dabei der Spezial-Angriff des Zieles gesenkt." + }, + "boomburst": { + "name": "Überschallknall", + "effect": "Der Anwender greift alle Pokémon in der Umgebung mit einem gewaltigen Knall an." + }, + "fairyLock": { + "name": "Feenschloss", + "effect": "Der Anwender sperrt alle Pokémon ein und hindert sie damit in der nächsten Runde an der Flucht." + }, + "kingsShield": { + "name": "Königsschild", + "effect": "Der Anwender weicht dem gegnerischen Angriff aus und geht in die Defensive. Berührt ihn nun ein Pokémon, sinkt der Angriffs-Wert dieses Gegners." + }, + "playNice": { + "name": "Kameradschaft", + "effect": "Der Anwender schließt mit dem Ziel Freundschaft und nimmt ihm seine Angriffslust. Der Angriffs-Wert des Zieles sinkt." + }, + "confide": { + "name": "Vertrauenssache", + "effect": "Der Anwender vertraut dem Ziel ein Geheimnis an und stört auf diese Weise seine Konzentration. Der Spezial-Angriff des Zieles sinkt." + }, + "diamondStorm": { + "name": "Diamantsturm", + "effect": "Der Anwender beschwört einen zerstörerischen Diamantsturm herauf. Kann die Verteidigung des Anwenders erhöhen." + }, + "steamEruption": { + "name": "Dampfschwall", + "effect": "Der Anwender feuert einen siedend heißen Dampfschwall auf das Ziel ab. Dieses kann dabei Verbrennungen erleiden." + }, + "hyperspaceHole": { + "name": "Dimensionsloch", + "effect": "Der Anwender positioniert sich mithilfe eines Dimensionslochs direkt neben dem Ziel und durchbricht selbst Schutzschild und Scanner." + }, + "waterShuriken": { + "name": "Wasser-Shuriken", + "effect": "Der Anwender schleudert dem Ziel Wurfsterne aus einem verdickten Sekret entgegen. Eine Serien-Attacke, die zwei- bis fünfmal trifft." + }, + "mysticalFire": { + "name": "Magieflamme", + "effect": "Der Anwender greift das Ziel an, indem er ihm eine besondere, heiße Flamme entgegenbläst. Der Spezial-Angriff des Zieles sinkt." + }, + "spikyShield": { + "name": "Schutzstacheln", + "effect": "Der Anwender weicht gegnerischen Angriffen aus. Gleichzeitig nehmen alle Pokémon, die mit ihm in Berührung kommen, Schaden." + }, + "aromaticMist": { + "name": "Duftwolke", + "effect": "Der Anwender erhöht mithilfe eines mysteriösen Duftes die Spezial-Verteidigung eines Mitstreiters." + }, + "eerieImpulse": { + "name": "Mystowellen", + "effect": "Der Körper des Anwenders erzeugt mysteriöse Wellen und senkt den Spezial-Angriff des Zieles dadurch stark." + }, + "venomDrench": { + "name": "Giftfalle", + "effect": "Anwender bespritzt das Ziel mit einer speziellen Giftflüssigkeit. Senkt den Angriff, den Spezial- Angriff und die Initiative von vergifteten Zielen." + }, + "powder": { + "name": "Pulverschleuder", + "effect": "Setzt das Ziel nach Einsatz von Pulverschleuder in derselben Runde eine Feuer-Attacke ein, kommt es zu einer Explosion, die ihm schadet." + }, + "geomancy": { + "name": "Geokontrolle", + "effect": "Der Anwender saugt in Runde 1 Energie auf. In Runde 2 steigen folgende Statuswerte stark: Spezial-Angriff, Spezial-Verteidigung und Initiative." + }, + "magneticFlux": { + "name": "Magnetregler", + "effect": "Das Magnetfeld wird so manipuliert, dass Spezial- Verteidigung und Verteidigung von Team-Pokémon mit der Fähigkeit Plus oder Minus steigen." + }, + "happyHour": { + "name": "Goldene Zeiten", + "effect": "Nach Einsatz der Attacke Goldene Zeiten verdoppelt sich das Preisgeld, das du im Falle eines Sieges erhältst." + }, + "electricTerrain": { + "name": "Elektrofeld", + "effect": "Verwandelt den Untergrund fünf Runden lang in ein Elektrofeld und hindert alle Pokémon, die den Boden berühren, am Einschlafen." + }, + "dazzlingGleam": { + "name": "Zauberschein", + "effect": "Der Anwender feuert einen mächtigen Lichtblitz ab, der dem Ziel Schaden zufügt." + }, + "celebrate": { + "name": "Ehrentag", + "effect": "Das Pokémon gratuliert dir zu deinem Geburtstag!" + }, + "holdHands": { + "name": "Händchenhalten", + "effect": "Der Anwender und ein Mitstreiter reichen einander die Hände und verfallen in einen Zustand tiefster Zufriedenheit." + }, + "babyDollEyes": { + "name": "Kulleraugen", + "effect": "Der Anwender erobert das Herz des Zieles, indem er es mit Kulleraugen ansieht. Senkt den Angriffs-Wert. Erstschlaggarantie." + }, + "nuzzle": { + "name": "Wangenrubbler", + "effect": "Der Anwender lädt seine Wangen elektrisch auf und greift an, indem er sich damit am Ziel reibt. Das Ziel wird paralysiert." + }, + "holdBack": { + "name": "Zurückhaltung", + "effect": "Der Anwender hält sich beim Angriff zurück und sorgt auf diese Weise dafür, dass dem Ziel danach mindestens 1 KP verbleibt." + }, + "infestation": { + "name": "Plage", + "effect": "Der Anwender fällt vier bis fünf Runden lang wie eine Plage über das Ziel her und greift es an. In diesem Zeitraum kann es nicht fliehen." + }, + "powerUpPunch": { + "name": "Steigerungshieb", + "effect": "Die Fäuste des Anwenders härten durch wiederholtes Zuschlagen ab. Mit jedem Treffer steigt sein Angriffs-Wert." + }, + "oblivionWing": { + "name": "Unheilsschwingen", + "effect": "Der Anwender raubt dem Ziel KP. Die Höhe der Heilung beträgt mehr als die Hälfte des beim Ziel angerichteten Schadens." + }, + "thousandArrows": { + "name": "Tausend Pfeile", + "effect": "Die Attacke erfasst auch schwebende Pokémon. Erfasst sie ein Pokémon im Schwebe-Zustand, fällt es zu Boden." + }, + "thousandWaves": { + "name": "Tausend Wellen", + "effect": "Der Anwender greift mit einer Welle an, die dicht über dem Boden verläuft und alle Pokémon, die sie erfasst, an der Flucht hindert." + }, + "landsWrath": { + "name": "Bodengewalt", + "effect": "Der Anwender sammelt die Kraft des weiten Landes und greift an, indem er sie gebündelt auf das Ziel lenkt." + }, + "lightOfRuin": { + "name": "Lux Calamitatis", + "effect": "Die Attacke basiert auf der Kraft des Ewigblütlers, die als mächtiger Lichtstrahl abgefeuert wird. Der Anwender nimmt dabei selbst großen Schaden." + }, + "originPulse": { + "name": "Ursprungswoge", + "effect": "Der Anwender greift das Ziel mit unzähligen blau leuchtenden Strahlen an." + }, + "precipiceBlades": { + "name": "Abgrundsklinge", + "effect": "Der Anwender wandelt die Kraft des Erdreichs in Klingen um, mit denen er das Ziel angreift." + }, + "dragonAscent": { + "name": "Zenitstürmer", + "effect": "Der Anwender greift das Ziel aus atemberaubender Höhe im Sturzflug an. Senkt Verteidigung und Spezial-Verteidigung des Anwenders." + }, + "hyperspaceFury": { + "name": "Dimensionswahn", + "effect": "Eine Angriffsserie mit vielen Armen, die die Wirkung von Schutzschild und Scanner durchbricht. Dabei sinkt die Verteidigung des Anwenders." + }, + "breakneckBlitzPhysical": { + "name": "Hyper-Sprintangriff", + "effect": "Der durch Z-Kraft energiegeladene Anwender rennt mit ganzer Kraft gegen das Ziel. Die Stärke variiert je nach zugrunde liegender Attacke." + }, + "breakneckBlitzSpecial": { + "name": "Hyper-Sprintangriff", + "effect": "Dummy Data" + }, + "allOutPummelingPhysical": { + "name": "Fulminante Faustschläge", + "effect": "Aus Z-Kraft hergestellte Energiebälle prallen mit voller Wucht auf das Ziel. Die Stärke variiert je nach zugrunde liegender Attacke." + }, + "allOutPummelingSpecial": { + "name": "Fulminante Faustschläge", + "effect": "Dummy Data" + }, + "supersonicSkystrikePhysical": { + "name": "Finaler Steilflug", + "effect": "Der Anwender schwingt sich durch Z-Kraft in die Lüfte und stürzt sich dann auf das Ziel hinab. Die Stärke variiert je nach zugrunde liegender Attacke." + }, + "supersonicSkystrikeSpecial": { + "name": "Finaler Steilflug", + "effect": "Dummy Data" + }, + "acidDownpourPhysical": { + "name": "Vernichtender Säureregen", + "effect": "Der Anwender kreiert mit Z-Kraft ein giftiges Moor, in dem das Ziel versinkt. Die Stärke variiert je nach zugrunde liegender Attacke." + }, + "acidDownpourSpecial": { + "name": "Vernichtender Säureregen", + "effect": "Dummy Data" + }, + "tectonicRagePhysical": { + "name": "Seismische Eruption", + "effect": "Der Anwender zerrt das Ziel mit Z-Kraft tief in den Boden und kollidiert dort mit ihm. Die Stärke variiert je nach zugrunde liegender Attacke." + }, + "tectonicRageSpecial": { + "name": "Seismische Eruption", + "effect": "Dummy Data" + }, + "continentalCrushPhysical": { + "name": "Apokalyptische Steinpresse", + "effect": "Der Anwender beschwört mit Z-Kraft einen großen Felsen herbei und lässt ihn auf das Ziel fallen. Die Stärke variiert je nach zugrunde liegender Attacke." + }, + "continentalCrushSpecial": { + "name": "Apokalyptische Steinpresse", + "effect": "Dummy Data" + }, + "savageSpinOutPhysical": { + "name": "Wirbelnder Insektenhieb", + "effect": "Mithilfe von Z-Kraft umwickelt der Anwender das Ziel mit Fäden. Die Stärke variiert je nach zugrunde liegender Attacke." + }, + "savageSpinOutSpecial": { + "name": "Wirbelnder Insektenhieb", + "effect": "Dummy Data" + }, + "neverEndingNightmarePhysical": { + "name": "Ewige Nacht", + "effect": "Der Anwender beschwört mit Z-Kraft tiefen Groll herbei und lässt diesen auf das Ziel los. Die Stärke variiert je nach zugrunde liegender Attacke." + }, + "neverEndingNightmareSpecial": { + "name": "Ewige Nacht", + "effect": "Dummy Data" + }, + "corkscrewCrashPhysical": { + "name": "Turbo-Spiralkombo", + "effect": "Der Anwender wirbelt durch Z-Kraft sehr schnell umher und prallt mit dem Ziel zusammen. Die Stärke variiert je nach zugrunde liegender Attacke." + }, + "corkscrewCrashSpecial": { + "name": "Turbo-Spiralkombo", + "effect": "Dummy Data" + }, + "infernoOverdrivePhysical": { + "name": "Dynamische Maxiflamme", + "effect": "Der Anwender speit dank Z-Kraft eine gewaltige Kugel aus Flammen auf das Ziel. Die Stärke variiert je nach zugrunde liegender Attacke." + }, + "infernoOverdriveSpecial": { + "name": "Dynamische Maxiflamme", + "effect": "Dummy Data" + }, + "hydroVortexPhysical": { + "name": "Super-Wassertornado", + "effect": "Der Anwender kreiert mit Z-Kraft einen riesigen Wasserstrudel, der das Ziel verschluckt. Die Stärke variiert je nach zugrunde liegender Attacke." + }, + "hydroVortexSpecial": { + "name": "Super-Wassertornado", + "effect": "Dummy Data" + }, + "bloomDoomPhysical": { + "name": "Brillante Blütenpracht", + "effect": "Der Anwender leiht sich durch Z-Kraft die Energie von Wiesenblumen und greift das Ziel damit an. Die Stärke variiert je nach zugrunde liegender Attacke." + }, + "bloomDoomSpecial": { + "name": "Brillante Blütenpracht", + "effect": "Dummy Data" + }, + "gigavoltHavocPhysical": { + "name": "Gigavolt-Funkensalve", + "effect": "Der Anwender greift das Ziel mit durch Z-Kraft gesammelter starker Elektrizität an. Die Stärke variiert je nach zugrunde liegender Attacke." + }, + "gigavoltHavocSpecial": { + "name": "Gigavolt-Funkensalve", + "effect": "Dummy Data" + }, + "shatteredPsychePhysical": { + "name": "Psycho-Schmetterschlag", + "effect": "Der Anwender kontrolliert das Ziel mit Z-Kraft und macht ihm so das Leben schwer. Die Stärke variiert je nach zugrunde liegender Attacke." + }, + "shatteredPsycheSpecial": { + "name": "Psycho-Schmetterschlag", + "effect": "Dummy Data" + }, + "subzeroSlammerPhysical": { + "name": "Tobender Geofrost", + "effect": "Der Anwender senkt mit Z-Kraft die Temperatur drastisch und lässt das Ziel einfrieren. Die Stärke variiert je nach zugrunde liegender Attacke." + }, + "subzeroSlammerSpecial": { + "name": "Tobender Geofrost", + "effect": "Dummy Data" + }, + "devastatingDrakePhysical": { + "name": "Drastisches Drachendröhnen", + "effect": "Der Anwender materialisiert durch Z-Kraft seine Aura und greift damit das Ziel an. Die Stärke variiert je nach zugrunde liegender Attacke." + }, + "devastatingDrakeSpecial": { + "name": "Drastisches Drachendröhnen", + "effect": "Dummy Data" + }, + "blackHoleEclipsePhysical": { + "name": "Schwarzes Loch des Grauens", + "effect": "Der Anwender sammelt mit Z-Kraft dunkle Energie an, die das Ziel verschlingt. Die Stärke variiert je nach zugrunde liegender Attacke." + }, + "blackHoleEclipseSpecial": { + "name": "Black Hole Eclipse", + "effect": "Dummy Data" + }, + "twinkleTacklePhysical": { + "name": "Entzückender Sternenstoß", + "effect": "Der Anwender kreiert mit Z-Kraft eine zauberhafte Dimension und treibt dort sein Spiel mit dem Ziel. Die Stärke variiert je nach zugrunde liegender Attacke." + }, + "twinkleTackleSpecial": { + "name": "Twinkle Tackle", + "effect": "Dummy Data" + }, + "catastropika": { + "name": "Perfektes Pika-Projektil", + "effect": "Pikachu umhüllt sich durch Z-Kraft mit gewaltiger elektrischer Energie und stürzt sich mit voller Kraft auf das Ziel." + }, + "shoreUp": { + "name": "Sandsammler", + "effect": "KP des Anwenders werden um 50 % der maximalen KP aufgefüllt. Tobt ein Sandsturm, werden noch mehr KP aufgefüllt." + }, + "firstImpression": { + "name": "Überrumpler", + "effect": "Eine sehr starke Attacke, die jedoch nur erfolgreich ist, wenn sie sofort eingesetzt wird, nachdem der Anwender das Kampffeld betreten hat." + }, + "banefulBunker": { + "name": "Bunker", + "effect": "Der Anwender wird vor Angriffen geschützt. Gleichzeitig werden alle Pokémon, die mit ihm in Berührung kommen, vergiftet." + }, + "spiritShackle": { + "name": "Schattenfessel", + "effect": "Der Anwender greift das Ziel an und näht zugleich dessen Schatten am Boden fest, sodass es nicht entkommen kann." + }, + "darkestLariat": { + "name": "Dark Lariat", + "effect": "Der Anwender wirbelt mit beiden Armen und prallt so auf das Ziel. Richtet unabhängig von den Statusveränderungen des Zieles Schaden an." + }, + "sparklingAria": { + "name": "Schaumserenade", + "effect": "Durch Gesang erzeugte Blasen werden auf das Ziel geschleudert. Alle Pokémon, die dadurch Schaden erleiden, werden auch von Verbrennungen geheilt." + }, + "iceHammer": { + "name": "Eishammer", + "effect": "Anwender trifft mit einem starken Hieb. Senkt Initiative des Anwenders." + }, + "floralHealing": { + "name": "Florakur", + "effect": "KP des Zieles werden um 50 % der maximalen KP aufgefüllt. Die Wirkung steigt, wenn der Untergrund in ein Grasfeld verwandelt wurde." + }, + "highHorsepower": { + "name": "Pferdestärke", + "effect": "Der Anwender greift das Ziel mit einer heftigen Ganzkörper-Attacke an." + }, + "strengthSap": { + "name": "Kraftabsorber", + "effect": "Ein Angriff, der die KP des Anwenders um die Höhe des Angriffs-Werts des Zieles heilt. Anschließend wird der Angriff des Zieles gesenkt." + }, + "solarBlade": { + "name": "Solarklinge", + "effect": "Der Anwender absorbiert in der 1. Runde Licht, das er in der 2. Runde zu einem Schwert formt, mit dem er angreift." + }, + "leafage": { + "name": "Blattwerk", + "effect": "Der Anwender greift das Ziel mit Blättern an." + }, + "spotlight": { + "name": "Rampenlicht", + "effect": "Der Anwender lenkt die Aufmerksamkeit auf das Ziel, sodass in dieser Runde nur noch dieses Pokémon angegriffen wird." + }, + "toxicThread": { + "name": "Giftfaden", + "effect": "Der Anwender schießt giftige Fäden auf das Ziel, das dadurch vergiftet wird. Außerdem sinkt seine Initiative." + }, + "laserFocus": { + "name": "Konzentration", + "effect": "Der Anwender konzentriert sich, wodurch sein nächster Angriff garantiert ein Volltreffer wird." + }, + "gearUp": { + "name": "Hilfsmechanik", + "effect": "Der Anwender erhöht mithilfe von Zahnrädern Angriff und Spezial-Angriff von Team-Pokémon mit der Fähigkeit Plus oder Minus." + }, + "throatChop": { + "name": "Neck Strike", + "effect": "Das Pokémon, das von dieser Attacke getroffen wird, erleidet starke Schmerzen und kann deswegen zwei Runden lang keine Lärm-Attacken mehr einsetzen." + }, + "pollenPuff": { + "name": "Pollenknödel", + "effect": "Der Anwender greift mit einem Ball aus Pollen an, der beim Ziel explodiert. Mitstreiter werden von einem Ball getroffen, der ihre KP auffüllt." + }, + "anchorShot": { + "name": "Ankerschuss", + "effect": "Der Anwender greift das Ziel an, indem er es mit einer Ankerkette umwickelt. Dadurch wird das Ziel an der Flucht gehindert." + }, + "psychicTerrain": { + "name": "Psychofeld", + "effect": "Verhindert für fünf Runden, dass Pokémon am Boden von Attacken mit hoher Erstschlagquote getroffen werden. Erhöht die Stärke von Psycho-Attacken." + }, + "lunge": { + "name": "Anfallen", + "effect": "Der Anwender greift das Ziel mit ganzer Kraft an, wodurch auch der Angriffs-Wert des Zieles sinkt." + }, + "fireLash": { + "name": "Feuerpeitsche", + "effect": "Der Anwender greift das Ziel mit einer brennenden Peitsche an und senkt dabei zusätzlich dessen Verteidigungs-Wert." + }, + "powerTrip": { + "name": "Überheblichkeit", + "effect": "Der Anwender prahlt mit seiner Stärke und greift das Ziel an. Dieser Angriff ist umso stärker, je weiter die Statuswerte des Anwenders erhöht sind." + }, + "burnUp": { + "name": "Ausbrennen", + "effect": "Der Anwender nutzt das gesamte Feuer in seinem Körper, um großen Schaden auszuteilen. Die restliche Kampfdauer gehört er nicht mehr dem Typ Feuer an." + }, + "speedSwap": { + "name": "Initiativetausch", + "effect": "Der Anwender tauscht seinen Initiative-Wert mit dem des Zieles." + }, + "smartStrike": { + "name": "Schmalhorn", + "effect": "Der Anwender durchbohrt das Ziel mit seinem spitzen Horn. Diese Attacke trifft immer." + }, + "purify": { + "name": "Läuterung", + "effect": "Der Anwender heilt das Statusproblem des Zieles und füllt dadurch seine eigenen KP auf." + }, + "revelationDance": { + "name": "Wecktanz", + "effect": "Der Anwender tanzt und greift dabei das Ziel mit voller Kraft an. Die Attacke hat denselben Typ wie das Pokémon, das sie einsetzt." + }, + "coreEnforcer": { + "name": "Sanktionskern", + "effect": "Hat das Pokémon, das durch diese Attacke Schaden genommen hat, in dieser Runde bereits gehandelt, verliert es seine Fähigkeit." + }, + "tropKick": { + "name": "Tropenkick", + "effect": "Der Anwender greift den Gegner mit einem heftigen Tritt tropischer Herkunft an. Dabei sinkt auch der Angriffs-Wert des Gegners." + }, + "instruct": { + "name": "Kommando", + "effect": "Der Anwender befiehlt dem Ziel, dessen zuletzt ausgeführte Attacke sofort wieder einzusetzen." + }, + "beakBlast": { + "name": "Schnabelkanone", + "effect": "Der Anwender erhitzt zuerst seinen Schnabel und greift dann an. Pokémon, die ihn während des Erhitzens berühren, erleiden Verbrennungen." + }, + "clangingScales": { + "name": "Schuppenrasseln", + "effect": "Der Anwender erzeugt durch das Rasseln mit seinen Schuppen ein lautes Geräusch und greift an. Anschließend sinkt seine Verteidigung." + }, + "dragonHammer": { + "name": "Drachenhammer", + "effect": "Der Anwender nutzt seinen Körper wie einen Hammer und stürzt sich auf das Ziel, wodurch dieses Schaden erleidet." + }, + "brutalSwing": { + "name": "Wirbler", + "effect": "Der Anwender dreht schwungvoll seinen Körper und fügt den Pokémon in seiner Nähe dabei Schaden zu." + }, + "auroraVeil": { + "name": "Auroraschleier", + "effect": "Diese Attacke schwächt fünf Runden lang den durch physische sowie durch Spezial-Attacken erhaltenen Schaden. Kann nur bei Hagel eingesetzt werden." + }, + "sinisterArrowRaid": { + "name": "Schatten-Pfeilregen", + "effect": "Silvarro stellt mit Z-Kraft unzählige Pfeile her und lässt diese auf das Ziel niederprasseln." + }, + "maliciousMoonsault": { + "name": "Hyper Dark Crusher", + "effect": "Mit seinem durch Z-Kraft gestählten Körper stürzt sich Fuegro mit ganzer Kraft auf das Ziel." + }, + "oceanicOperetta": { + "name": "Grandiose Meeressymphonie", + "effect": "Primarene ruft mit Z-Kraft große Mengen an Wasser herbei und greift damit das Ziel an." + }, + "guardianOfAlola": { + "name": "Alolas Wächter", + "effect": "Ein gewaltiger Angriff des Schutzpatrons, der durch Z-Kraft die Kraft Alolas erlangt hat. Reduziert die verbleibenden KP des Zieles stark." + }, + "soulStealing7StarStrike": { + "name": "Sternbild des Seelenraubes", + "effect": "Marshadow schlägt mit durch Z-Kraft gestärkten Schlägen und Tritten in einer Serien-Attacke auf das Ziel ein." + }, + "stokedSparksurfer": { + "name": "Blitz-Wellenritt", + "effect": "Das Alola-Raichu greift das Ziel mithilfe von Z-Kraft mit voller Wucht an und paralysiert es." + }, + "pulverizingPancake": { + "name": "Schluss mit lustig", + "effect": "Relaxo wird von Z-Kraft erfüllt und macht Ernst. Es bringt seinen riesigen Körper in Schwung und stürzt sich mit ganzer Kraft auf das Ziel." + }, + "extremeEvoboost": { + "name": "Macht der Neun", + "effect": "Evoli macht sich durch Z-Kraft die Stärke seiner Weiterentwicklungen zunutze und erhöht seine Statuswerte stark." + }, + "genesisSupernova": { + "name": "Supernova des Ursprungs", + "effect": "Mew greift das Ziel mithilfe von Z-Kraft mit voller Wucht an. Der Untergrund wird dabei in ein Psychofeld verwandelt." + }, + "shellTrap": { + "name": "Panzerfalle", + "effect": "Der Anwender legt eine Panzerfalle. Wird er von einer physischen Attacke getroffen, explodiert die Falle und fügt dem Angreifer Schaden zu." + }, + "fleurCannon": { + "name": "Kanonenbouquet", + "effect": "Der Anwender greift das Ziel mit einem gewaltigen Strahl an. Sein eigener Spezial-Angriff sinkt dadurch stark." + }, + "psychicFangs": { + "name": "Psychobeißer", + "effect": "Der Anwender beißt das Ziel mithilfe von Psycho-Kräften. Die Attacke durchbricht auch Barrieren wie Lichtschild und Reflektor." + }, + "stompingTantrum": { + "name": "Fruststampfer", + "effect": "Von Frust getrieben greift der Anwender an. Wenn seine vorige Attacke fehlgeschlagen ist, verdoppelt sich die Stärke der Attacke." + }, + "shadowBone": { + "name": "Schattenknochen", + "effect": "Der Anwender greift das Ziel mit einem Knochen an, in dem eine Seele haust. Senkt eventuell die Verteidigung des Zieles." + }, + "accelerock": { + "name": "Turbofelsen", + "effect": "Der Anwender prallt mit großer Geschwindigkeit auf das Ziel. Hohe Erstschlagquote." + }, + "liquidation": { + "name": "Aquadurchstoß", + "effect": "Der Anwender greift das Ziel mit der Kraft des Wassers an. Senkt eventuell die Verteidigung des Zieles." + }, + "prismaticLaser": { + "name": "Prisma-Laser", + "effect": "Der Anwender feuert mithilfe von Prisma-Kraft mächtige Lichtstrahlen ab. In der nächsten Runde kann er nicht handeln." + }, + "spectralThief": { + "name": "Diebesschatten", + "effect": "Der Anwender schleicht sich in den Schatten des Zieles, stiehlt dessen erhöhte Statuswerte und fügt ihm Schaden zu." + }, + "sunsteelStrike": { + "name": "Stahlgestirn", + "effect": "Der Anwender stürzt mit der Gewalt eines Meteors auf das Ziel. Die Fähigkeit des Zieles wird dabei ignoriert." + }, + "moongeistBeam": { + "name": "Schattenstrahl", + "effect": "Der Anwender greift mit einem unheimlichen Lichtstrahl an. Diese Attacke ignoriert die Fähigkeit des Zieles." + }, + "tearfulLook": { + "name": "Tränendrüse", + "effect": "Dem Anwender stehen Tränen in den Augen, wodurch das Ziel seinen Kampfeswillen verliert. Angriff und Spezial-Angriff des Zieles sinken." + }, + "zingZap": { + "name": "Elektropikser", + "effect": "Der Anwender rammt das Ziel und schockt es mit starkem Strom. Das Ziel schreckt eventuell zurück." + }, + "naturesMadness": { + "name": "Naturzorn", + "effect": "Das Ziel wird vom Zorn der Natur getroffen und verliert dadurch die Hälfte seiner KP." + }, + "multiAttack": { + "name": "Multi-Angriff", + "effect": "Der Anwender sammelt eine große Menge Energie und greift das Ziel damit an. Der Typ der Attacke hängt von dem der Disc ab." + }, + "tenMillionVoltThunderbolt": { + "name": "Tausendfacher Donnerblitz", + "effect": "Das eine Kappe tragende Pikachu greift das Ziel mit einem durch Z-Kraft verstärkten Elektroschock an. Hohe Volltrefferquote." + }, + "mindBlown": { + "name": "Knallkopf", + "effect": "Der Anwender greift alle Pokémon in der Umgebung an, indem er seinen Kopf explodieren lässt. Dabei verletzt er sich auch selbst." + }, + "plasmaFists": { + "name": "Plasmafäuste", + "effect": "Ein Angriff mit elektrisch geladenen Fäusten, der bewirkt, dass Normal-Attacken den Typ Elektro annehmen." + }, + "photonGeyser": { + "name": "Photonen-Geysir", + "effect": "Ein Angriff mit einer Lichtsäule. Ist der Angriff höher als der Spezial-Angriff, wird die Höhe des Schadens durch den Angriff bestimmt und umgekehrt." + }, + "lightThatBurnsTheSky": { + "name": "Licht des Erlöschens", + "effect": "Ist der Angriff höher als der Spezial-Angriff, wird die Höhe des Schadens durch den Angriff bestimmt und umgekehrt. Ignoriert die Fähigkeit des Zieles." + }, + "searingSunrazeSmash": { + "name": "Schmetternde Sonnenwalze", + "effect": "Solgaleo greift das Ziel mithilfe von Z-Kraft mit voller Wucht an. Ignoriert die Fähigkeit des Zieles." + }, + "menacingMoonrazeMaelstrom": { + "name": "Geballter Mondlaser", + "effect": "Lunala greift das Ziel mithilfe von Z-Kraft mit voller Wucht an. Ignoriert die Fähigkeit des Zieles." + }, + "letsSnuggleForever": { + "name": "Herzliche Knuddelkloppe", + "effect": "Mimigma greift das Ziel mithilfe von Z-Kraft mit voller Wucht und viel Liebe an." + }, + "splinteredStormshards": { + "name": "Fataler Steinregen", + "effect": "Wolwerock greift das Ziel mithilfe von Z-Kraft mit voller Wucht an. Herrschen besondere Feldeffekte, werden diese zusätzlich neutralisiert." + }, + "clangorousSoulblaze": { + "name": "Rasselnder Seelentanz", + "effect": "Grandiras greift Gegner mithilfe von Z-Kraft mit voller Wucht an. Zusätzlich werden seine Statuswerte erhöht." + }, + "zippyZap": { + "name": "Britzelturbo", + "effect": "Ein stürmischer Blitz-Angriff mit garantierter Erstschlag- und Volltrefferquote.\n" + }, + "splishySplash": { + "name": "Plätschersurfer", + "effect": "Pikachu greift das Ziel mit einer großen, elektrisch aufgeladenen Welle an. Das Ziel wird eventuell paralysiert." + }, + "floatyFall": { + "name": "Schwebesturz", + "effect": "Pikachu schwebt nach oben und stürzt dann unvermittelt auf das Ziel herab. Das Ziel schreckt eventuell zurück." + }, + "pikaPapow": { + "name": "Pika-Flash", + "effect": "Je größer Pikachus Vertrauen zu seinem Trainer ist, desto stärker fällt dieser Angriff aus. Diese Attacke trifft immer." + }, + "bouncyBubble": { + "name": "Blubbsauger", + "effect": "Der Anwender greift mit Wasserblasen an. Seine KP werden in Höhe des vom Wasser angerichteten Schadens geheilt." + }, + "buzzyBuzz": { + "name": "Knisterladung", + "effect": "Evoli greift das Ziel mit Elektrizität an, wodurch dieses paralysiert wird." + }, + "sizzlySlide": { + "name": "Flackerbrand", + "effect": "Evoli hüllt sich in Flammen und stürzt sich beherzt auf das Ziel, welches dadurch Verbrennungen erleidet." + }, + "glitzyGlow": { + "name": "Pulsieraura", + "effect": "Evoli greift das Ziel gnadenlos mit telekinetischer Energie an. Dabei wird eine geheimnisvolle Wand erzeugt, die Spezial-Attacken des Ziels abschwächt." + }, + "baddyBad": { + "name": "Quälzone", + "effect": "Evoli zeigt sich von seiner dunklen Seite und greift an. Dabei wird eine geheimnisvolle Wand erzeugt, die physische Attacken des Ziels abschwächt." + }, + "sappySeed": { + "name": "Sprießbomben", + "effect": "Evoli lässt eine riesige Ranke wachsen, von der Samen herabfallen, die dem Ziel schaden und ihm in jeder Runde KP absaugen." + }, + "freezyFrost": { + "name": "Klirrfrost", + "effect": "Evoli greift mit einem schwarzen Kristall aus gefrorenem Nebel an. Die Statusveränderungen aller am Kampf beteiligten Pokémon werden zurückgesetzt." + }, + "sparklySwirl": { + "name": "Glitzersturm", + "effect": "Evoli greift an, indem es das Ziel in einen nahezu erstickend wohlriechenden Wirbelwind hüllt. Das Team des Anwenders wird von Statusproblemen geheilt." + }, + "veeveeVolley": { + "name": "Evo-Crash", + "effect": "Je größer Evolis Vertrauen zu seinem Trainer ist, desto stärker fällt dieser Angriff aus. Diese Attacke trifft immer." + }, + "doubleIronBash": { + "name": "Panzerfäuste", + "effect": "Der Anwender rotiert um die Schraubenmutter in seinem Brustkorb und schlägt zweimal hintereinander mit den Armen zu. Das Ziel schreckt eventuell zurück." + }, + "maxGuard": { + "name": "Dyna-Wall", + "effect": "Anwender wehrt jede Attacke ab. Scheitert eventuell bei Wiederholung." + }, + "dynamaxCannon": { + "name": "Dynamax-Kanone", + "effect": "Der Anwender schießt einen Strahl aus seinem Kern ab. Verursacht bis zu doppelt so viel Schaden, wenn das Level des Gegners höher als die Levelgrenze ist." + }, + "snipeShot": { + "name": "Präzisionsschuss", + "effect": "Die Attacke richtet sich gegen das ausgewählte Ziel, unabhängig von Fähigkeiten oder Attacken, die Angriffe auf sich ziehen." + }, + "jawLock": { + "name": "Fesselbiss", + "effect": "Anwender und Ziel können nicht ausgetauscht werden, bis einer von ihnen kampfunfähig wird. Der Effekt endet, wenn eines der Pokémon das Kampffeld verlässt." + }, + "stuffCheeks": { + "name": "Backenstopfer", + "effect": "Der Anwender frisst die Beere, die er trägt, wodurch seine Verteidigung stark erhöht wird." + }, + "noRetreat": { + "name": "Finalformation", + "effect": "Alle Statuswerte des Anwenders werden erhöht, aber dafür kann er weder ausgewechselt werden noch fliehen." + }, + "tarShot": { + "name": "Teerschuss", + "effect": "Der Anwender übergießt das Ziel mit klebrigem Teer und senkt so dessen Initiative. Dadurch wird es schwach gegenüber Feuer-Attacken." + }, + "magicPowder": { + "name": "Magiepuder", + "effect": "Das Ziel wird mit magischem Puder bestreut und nimmt den Typ Psycho an." + }, + "dragonDarts": { + "name": "Drachenpfeile", + "effect": "Der Anwender greift zweimal mit Grolldra an. Bei zwei Zielen werden beide jeweils einmal angegriffen." + }, + "teatime": { + "name": "Teatime", + "effect": "Der Anwender lädt alle am Kampf beteiligten Pokémon zu einem Teekränzchen ein, woraufhin diese die Beeren essen, die sie bei sich tragen." + }, + "octolock": { + "name": "Octoklammer", + "effect": "Das Ziel wird an der Flucht gehindert und seine Verteidigung und Spezial-Verteidigung sinken jede Runde." + }, + "boltBeak": { + "name": "Schockschnabel", + "effect": "Der Anwender sticht mit einem elektrisch aufgeladenen Schnabel zu. Kommt er vor dem Ziel zum Zug, verdoppelt sich die Stärke der Attacke." + }, + "fishiousRend": { + "name": "Kiemenbiss", + "effect": "Der Anwender beißt mit seinen harten Kiemen zu. Kommt er vor dem Ziel zum Zug, verdoppelt sich die Stärke der Attacke." + }, + "courtChange": { + "name": "Seitenwechsel", + "effect": "Durch eine mysteriöse Macht werden wirksame Effekte auf Mitstreiterseite und gegnerischer Seite getauscht." + }, + "maxFlare": { + "name": "Dyna-Brand", + "effect": "Eine Feuer-Attacke, die nur Dynamax-Pokémon einsetzen können. Die Sonne brennt unbarmherzig fünf Runden lang." + }, + "maxFlutterby": { + "name": "Dyna-Schwarm", + "effect": "Eine Käfer-Attacke, die nur Dynamax-Pokémon einsetzen können. Senkt den Spezial-Angriff des Zieles." + }, + "maxLightning": { + "name": "Dyna-Gewitter", + "effect": "Eine Elektro-Attacke, die nur Dynamax-Pokémon einsetzen können. Erzeugt fünf Runden lang ein Elektrofeld." + }, + "maxStrike": { + "name": "Dyna-Angriff", + "effect": "Eine Normal-Attacke, die nur Dynamax-Pokémon einsetzen können. Senkt die Initiative des Zieles." + }, + "maxKnuckle": { + "name": "Dyna-Faust", + "effect": "Eine Kampf-Attacke, die nur Dynamax-Pokémon einsetzen können. Erhöht den Angriff der Mitstreiterseite." + }, + "maxPhantasm": { + "name": "Dyna-Spuk", + "effect": "Eine Geister-Attacke, die nur Dynamax-Pokémon einsetzen können. Senkt die Verteidigung des Zieles." + }, + "maxHailstorm": { + "name": "Dyna-Frost", + "effect": "Eine Eis-Attacke, die nur Dynamax-Pokémon einsetzen können. Lässt fünf Runden lang einen Hagelsturm toben." + }, + "maxOoze": { + "name": "Dyna-Giftschwall", + "effect": "Eine Gift-Attacke, die nur Dynamax-Pokémon einsetzen können. Erhöht den Spezial-Angriff der Mitstreiterseite." + }, + "maxGeyser": { + "name": "Dyna-Flut", + "effect": "Eine Wasser-Attacke, die nur Dynamax-Pokémon einsetzen können. Löst fünf Runden lang strömenden Regen aus." + }, + "maxAirstream": { + "name": "Dyna-Düse", + "effect": "Eine Flug-Attacke, die nur Dynamax-Pokémon einsetzen können. Erhöht die Initiative der Mitstreiterseite." + }, + "maxStarfall": { + "name": "Dyna-Zauber", + "effect": "Eine Feen-Attacke, die nur Dynamax-Pokémon einsetzen können. Erzeugt fünf Runden lang ein Nebelfeld." + }, + "maxWyrmwind": { + "name": "Dyna-Wyrm", + "effect": "Eine Drachen-Attacke, die nur Dynamax-Pokémon einsetzen können. Senkt den Angriff des Zieles." + }, + "maxMindstorm": { + "name": "Dyna-Kinese", + "effect": "Eine Psycho-Attacke, die nur Dynamax-Pokémon einsetzen können. Erzeugt fünf Runden lang ein Psychofeld." + }, + "maxRockfall": { + "name": "Dyna-Brocken", + "effect": "Eine Gesteins-Attacke, die nur Dynamax-Pokémon einsetzen können. Lässt fünf Runden lang einen Sandsturm toben." + }, + "maxQuake": { + "name": "Dyna-Erdstoß", + "effect": "Eine Boden-Attacke, die nur Dynamax-Pokémon einsetzen können. Erhöht die Spezial-Verteidigung der Mitstreiterseite." + }, + "maxDarkness": { + "name": "Dyna-Dunkel", + "effect": "Eine Unlicht-Attacke, die nur Dynamax-Pokémon einsetzen können. Senkt die Spezial-Verteidigung des Zieles." + }, + "maxOvergrowth": { + "name": "Dyna-Flora", + "effect": "Eine Pflanzen-Attacke, die nur Dynamax-Pokémon einsetzen können. Erzeugt fünf Runden lang ein Grasfeld." + }, + "maxSteelspike": { + "name": "Dyna-Stahlzacken", + "effect": "Eine Stahl-Attacke, die nur Dynamax-Pokémon einsetzen können. Erhöht die Verteidigung der Mitstreiterseite." + }, + "clangorousSoul": { + "name": "Seelentanz", + "effect": "Der Anwender setzt eine kleine Menge an KP ein, um alle seine Statuswerte zu erhöhen." + }, + "bodyPress": { + "name": "Body Press", + "effect": "Der Anwender greift mit seinem ganzen Körper an. Je höher seine Verteidigung ist, desto mehr Schaden richtet er an." + }, + "decorate": { + "name": "Verzierung", + "effect": "Durch Verzierungen werden der Angriff und Spezial-Angriff des Zieles stark erhöht." + }, + "drumBeating": { + "name": "Trommelschläge", + "effect": "Der Anwender kontrolliert durch Trommeln Wurzeln, die das Ziel angreifen und dessen Initiative senken." + }, + "snapTrap": { + "name": "Fangeisen", + "effect": "Das Ziel wird vier bis fünf Runden lang in einem Fangeisen festgehalten und angegriffen." + }, + "pyroBall": { + "name": "Feuerball", + "effect": "Der Anwender greift mit einem Ball aus Feuer an, den er durch Anzünden eines kleinen Steins erzeugt. Fügt dem Ziel eventuell Verbrennungen zu." + }, + "behemothBlade": { + "name": "Gigantenhieb", + "effect": "Der Anwender wird zu einem riesigen Schwert und greift das Ziel an. Dynamaximierte Ziele erleiden doppelten Schaden." + }, + "behemothBash": { + "name": "Gigantenstoß", + "effect": "Der Anwender wird zu einem riesigen Schild und greift das Ziel an. Dynamaximierte Ziele erleiden doppelten Schaden." + }, + "auraWheel": { + "name": "Aura-Rad", + "effect": "Mithilfe der in den Backentaschen gespeicherten Energie greift der Anwender an und erhöht seine Initiative. Der Typ der Attacke hängt von Morpekos Form ab." + }, + "breakingSwipe": { + "name": "Breitseite", + "effect": "Der Anwender schwingt heftig seinen robusten Schweif, um damit gegnerische Pokémon anzugreifen und ihren Angriffs-Wert zu senken." + }, + "branchPoke": { + "name": "Zweigstoß", + "effect": "Der Anwender attackiert das Ziel mit einem spitzen Zweig." + }, + "overdrive": { + "name": "Overdrive", + "effect": "Der Anwender haut in die Saiten seiner Gitarre oder seines Basses und erzeugt dröhnende, kraftvolle Vibrationen, die gegnerischen Pokémon schaden." + }, + "appleAcid": { + "name": "Apfelsäure", + "effect": "Der Anwender greift mit einer aus einem sauren Apfel hergestellten säurehaltigen Flüssigkeit an. Dabei wird die Spezial-Verteidigung des Zieles gesenkt." + }, + "gravApple": { + "name": "Gravitation", + "effect": "Ein Apfel fällt aus großer Höhe herab und richtet Schaden an. Dabei wird die Verteidigung des Zieles gesenkt." + }, + "spiritBreak": { + "name": "Seelenbruch", + "effect": "Die Attacke trifft das Ziel mit so viel Wucht, dass es den Mut verliert. Dabei wird sein Spezial-Angriff gesenkt." + }, + "strangeSteam": { + "name": "Wunderdampf", + "effect": "Der Anwender stößt Dampf aus, mit dem er das Ziel angreift. Dieses wird eventuell verwirrt." + }, + "lifeDew": { + "name": "Lebenstropfen", + "effect": "Wundersames Wasser heilt die KP des Anwenders und seiner am Kampf beteiligten Mitstreiter." + }, + "obstruct": { + "name": "Abblocker", + "effect": "Der Anwender wehrt jede Attacke ab. Berührt ihn währenddessen ein Pokémon, sinkt dessen Verteidigung stark. Scheitert eventuell bei Wiederholung." + }, + "falseSurrender": { + "name": "Kniefalltrick", + "effect": "Der Anwender tut so, als würde er sich verneigen, und sticht dann mit seinem zerzausten Fell zu. Diese Attacke trifft immer." + }, + "meteorAssault": { + "name": "Sternensturm", + "effect": "Der Anwender greift mit seiner Lauchstange an. Von der Wucht der Attacke wird ihm jedoch so schwindelig, dass er in der nächsten Runde nicht handeln kann." + }, + "eternabeam": { + "name": "Unendynastrahlen", + "effect": "Der mächtigste Angriff, über den Endynalos in seiner ursprünglichen Form verfügt. In der nächsten Runde kann der Anwender nicht handeln." + }, + "steelBeam": { + "name": "Stahlstrahl", + "effect": "Der Anwender schießt Stahl, den er in seinem ganzen Körper angesammelt hat, in Form eines mächtigen Strahls ab. Dabei verletzt er sich auch selbst." + }, + "expandingForce": { + "name": "Flächenmacht", + "effect": "Der Anwender greift das Ziel mit Psycho-Kräften an. Wenn ein Psychofeld aktiv ist, steigt die Stärke und es wird allen gegnerischen Pokémon Schaden zugefügt." + }, + "steelRoller": { + "name": "Eisenwalze", + "effect": "Der Anwender greift an und zerstört dabei etwaige Felder. Ist kein Feld aktiv, schlägt die Attacke fehl." + }, + "scaleShot": { + "name": "Schuppenschuss", + "effect": "Der Anwender greift das Ziel zwei- bis fünfmal hintereinander mit Schuppen-Geschossen an. Erhöht die eigene Initiative, aber senkt die Verteidigung." + }, + "meteorBeam": { + "name": "Meteorstrahl", + "effect": "Der Anwender sammelt in Runde 1 kosmische Kräfte und erhöht damit seinen Spezial-Angriff, bevor er in Runde 2 das Ziel angreift." + }, + "shellSideArm": { + "name": "Muschelwaffe", + "effect": "Je nachdem, was höher ausfällt, richtet diese Attacke entweder physischen oder Spezial-Schaden an. Das Ziel wird eventuell vergiftet." + }, + "mistyExplosion": { + "name": "Nebelexplosion", + "effect": "Der Anwender greift alle Pokémon im Umkreis an und wird danach kampfunfähig. Die Stärke dieser Attacke steigt, wenn ein Nebelfeld aktiv ist." + }, + "grassyGlide": { + "name": "Grasrutsche", + "effect": "Der Anwender rutscht über den Boden und greift das Ziel an. Ermöglicht den Erstschlag, wenn ein Grasfeld aktiv ist." + }, + "risingVoltage": { + "name": "Hochspannung", + "effect": "Der Anwender greift mit aus dem Boden aufsteigender Elektrizität an. Die Stärke der Attacke wird verdoppelt, wenn beim Gegner ein Elektrofeld aktiv ist." + }, + "terrainPulse": { + "name": "Feldimpuls", + "effect": "Der Anwender nutzt die Kraft des aktiven Feldes für seinen Angriff. Der Typ und die Stärke der Attacke ändern sich je nach Art des aktiven Feldes." + }, + "skitterSmack": { + "name": "Krabbelkracher", + "effect": "Der Anwender kriecht hinter das Ziel, greift es an und senkt dabei dessen Spezial-Angriff." + }, + "burningJealousy": { + "name": "Neidflammen", + "effect": "Der Anwender greift mit der Energie seines Neids an und fügt allen gegnerischen Pokémon, deren Statuswerte in dieser Runde erhöht wurden, Verbrennungen zu." + }, + "lashOut": { + "name": "Frustventil", + "effect": "Der Anwender entlädt seinen Frust in einem Angriff. Die Stärke der Attacke wird verdoppelt, wenn seine Statuswerte in dieser Runde gesenkt wurden." + }, + "poltergeist": { + "name": "Poltergeist", + "effect": "Der Anwender greift das Ziel mit dessen getragenem Item an. Die Attacke schlägt fehl, wenn das Ziel kein Item trägt." + }, + "corrosiveGas": { + "name": "Korrosionsgas", + "effect": "Der Anwender greift alle Pokémon im Umkreis mit einem ätzenden Gas an. Getragene Items werden dadurch zersetzt." + }, + "coaching": { + "name": "Coaching", + "effect": "Der Anwender sorgt durch geschickte Anweisungen dafür, dass der Angriff und die Verteidigung seiner Mitstreiter steigen." + }, + "flipTurn": { + "name": "Rollwende", + "effect": "Nach der Attacke eilt der Anwender zurück und tauscht den Platz mit einem anderen Pokémon." + }, + "tripleAxel": { + "name": "Dreifach-Axel", + "effect": "Tritt das Ziel ein- bis dreimal nacheinander. Die Härte der Tritte nimmt von Treffer zu Treffer zu." + }, + "dualWingbeat": { + "name": "Doppelflügel", + "effect": "Der Anwender trifft das Ziel zweimal hintereinander mit seinen Flügeln und fügt ihm so Schaden zu." + }, + "scorchingSands": { + "name": "Brandsand", + "effect": "Der Anwender greift das Ziel mit brennend heißem Sand an und fügt ihm eventuell Verbrennungen zu." + }, + "jungleHealing": { + "name": "Dschungelheilung", + "effect": "Der Anwender wird eins mit dem Dschungel und heilt bei sich und seinen am Kampf beteiligten Mitstreitern KP und hebt jegliche Statusprobleme auf." + }, + "wickedBlow": { + "name": "Finstertreffer", + "effect": "Der Anwender hat den Stil des Unlichts gemeistert und führt einen fokussierten, harten Schlag mit Volltreffergarantie aus." + }, + "surgingStrikes": { + "name": "Trefferschwall", + "effect": "Der Anwender hat den Stil des Wassers gemeistert und führt mit fließenden Bewegungen drei Angriffe in Folge mit Volltreffergarantie aus." + }, + "thunderCage": { + "name": "Blitzgefängnis", + "effect": "Das Ziel wird für vier bis fünf Runden in einem elektrischen Käfig gefangen." + }, + "dragonEnergy": { + "name": "Drachenkräfte", + "effect": "Der Anwender wandelt seine Lebenskraft in Energie um und greift gegnerische Pokémon an. Je höher seine KP sind, desto mehr Schaden wird angerichtet." + }, + "freezingGlare": { + "name": "Eisiger Blick", + "effect": "Der Anwender greift das Ziel mit Psycho-Kräften an, die er aus seinen Augen abschießt. Das Ziel friert eventuell ein." + }, + "fieryWrath": { + "name": "Brennender Zorn", + "effect": "Der Anwender wandelt seinen Zorn in eine flammende Aura um und greift damit gegnerische Pokémon an. Diese schrecken eventuell zurück." + }, + "thunderousKick": { + "name": "Donnernder Tritt", + "effect": "Der Anwender bringt das Ziel mit blitzschnellen Bewegungen durcheinander und tritt dann zu. Senkt die Verteidigung des Zieles." + }, + "glacialLance": { + "name": "Blizzardlanze", + "effect": "Der Anwender wirft eine in einen Blizzard gehüllte Lanze aus Eis auf gegnerische Pokémon." + }, + "astralBarrage": { + "name": "Astralfragmente", + "effect": "Der Anwender greift gegnerische Pokémon mit vielen kleinen Spukgestalten an." + }, + "eerieSpell": { + "name": "Schauderspruch", + "effect": "Der Anwender greift mit gewaltigen Psycho-Kräften an. Die AP der letzten Attacke des Zieles werden um 3 Punkte gesenkt." + }, + "direClaw": { + "name": "Unheilsklauen", + "effect": "Der Anwender greift mit zerstörerischen Klauen an. Das Ziel wird eventuell vergiftet, paralysiert oder in Schlaf versetzt." + }, + "psyshieldBash": { + "name": "Barrierenstoß", + "effect": "Der Anwender hüllt sich in Psycho-Energie und rammt das Ziel. Außerdem steigt seine Verteidigung." + }, + "powerShift": { + "name": "Kraftwechsel", + "effect": "Der Anwender tauscht seinen Angriff mit seiner Verteidigung." + }, + "stoneAxe": { + "name": "Felsaxt", + "effect": "Der Anwender greift mit seinen Felsäxten an. Dadurch verstreut er schwebende Felssplitter im Umkreis des Zieles." + }, + "springtideStorm": { + "name": "Frühlingsorkan", + "effect": "Der Anwender greift gegnerische Pokémon an, indem er sie mit heftigen Windböen voller Hassliebe umgibt. Eventuell sinkt ihr Angriff." + }, + "mysticalPower": { + "name": "Mythenkraft", + "effect": "Der Anwender greift mit einer wundersamen Kraft an. Außerdem steigt sein Spezial-Angriff." + }, + "ragingFury": { + "name": "Flammenwut", + "effect": "Der Anwender wütet zwei bis drei Runden lang und speit heftige Flammen aus. Danach wird er verwirrt." + }, + "waveCrash": { + "name": "Wellentackle", + "effect": "Der Anwender hüllt sich in Wasser und stürzt sich mit dem ganzen Körper auf das Ziel, wobei er selbst großen Schaden erleidet." + }, + "chloroblast": { + "name": "Chlorostrahl", + "effect": "Der Anwender greift mit einer hohen Konzentration seines Chlorophylls an, wobei er selbst Schaden erleidet." + }, + "mountainGale": { + "name": "Frostfallwind", + "effect": "Der Anwender wirft gigantische Eisbrocken auf das Ziel. Dieses schreckt eventuell zurück." + }, + "victoryDance": { + "name": "Siegestanz", + "effect": "Der Anwender führt einen wilden Tanz auf, der den Sieg herbeiführen soll. Dies erhöht seinen Angriff, seine Verteidigung und seine Initiative." + }, + "headlongRush": { + "name": "Schmetterramme", + "effect": "Der Anwender rammt das Ziel mit dem ganzen Körper. Dadurch sinken die Verteidigung und Spezial-Verteidigung des Anwenders." + }, + "barbBarrage": { + "name": "Giftstachelregen", + "effect": "Der Anwender greift mit unzähligen Giftstacheln an und vergiftet das Ziel eventuell. Doppelt so stark gegen vergiftete Ziele." + }, + "esperWing": { + "name": "Auraschwingen", + "effect": "Ein schneidender Angriff mit durch eine Aura verstärkten Schwingen, der außerdem die Initiative des Anwenders erhöht. Hohe Volltrefferquote." + }, + "bitterMalice": { + "name": "Niedertracht", + "effect": "Der Anwender greift mit eiskaltem, schaudererregendem Hass an und senkt dabei den Angriff des Zieles." + }, + "shelter": { + "name": "Refugium", + "effect": "Der Anwender macht seine Haut so hart wie Eisen und erhöht dadurch seine Verteidigung stark." + }, + "tripleArrows": { + "name": "Drillingspfeile", + "effect": "Der Anwender tritt zu und schießt dann drei Pfeile ab. Senkt eventuell die Verteidigung des Zieles oder lässt es zurückschrecken. Hohe Volltrefferquote." + }, + "infernalParade": { + "name": "Phantomparade", + "effect": "Angriff mit unzähligen Feuerkugeln, der dem Ziel eventuell Verbrennungen zufügt. Doppelt so stark gegen Ziele mit Statusproblemen." + }, + "ceaselessEdge": { + "name": "Klingenschwall", + "effect": "Der Anwender greift mit einer klingengleichen Muschelschale an und verstreut Muschelsplitter, die Stacheln zu Füßen des Zieles werden." + }, + "bleakwindStorm": { + "name": "Polarorkan", + "effect": "Der Anwender greift mit starken, kalten Winden an, die Körper und Geist erzittern lassen. Senkt eventuell die Initiative gegnerischer Pokémon." + }, + "wildboltStorm": { + "name": "Donnerorkan", + "effect": "Der Anwender ruft ein heftiges Unwetter herbei, um mit Wind und Blitzen anzugreifen. Gegnerische Pokémon werden eventuell paralysiert." + }, + "sandsearStorm": { + "name": "Wüstenorkan", + "effect": "Der Anwender greift gegnerische Pokémon an, indem er sie mit heftigen Windböen und brennend heißem Sand umgibt. Eventuell erleiden sie Verbrennungen." + }, + "lunarBlessing": { + "name": "Lunargebet", + "effect": "Der Anwender richtet ein Gebet an den Mond und heilt bei sich und seinen am Kampf beteiligten Mitstreitern KP und hebt jegliche Statusprobleme auf." + }, + "takeHeart": { + "name": "Mutschub", + "effect": "Der Anwender fasst sich ein Herz, befreit sich von Statusproblemen und erhöht außerdem seinen Spezial-Angriff und seine Spezial-Verteidigung." + }, + "gMaxWildfire": { + "name": "Giga-Feuerflug", + "effect": "Eine Feuer-Attacke, die nur Gigadynamax-Glurak einsetzen kann. Fügt vier Runden lang Schaden zu." + }, + "gMaxBefuddle": { + "name": "Giga-Benebelung", + "effect": "Eine Käfer-Attacke, die nur Gigadynamax-Smettbo einsetzen kann. Gegnerische Pokémon werden entweder vergiftet, paralysiert oder in Schlaf versetzt." + }, + "gMaxVoltCrash": { + "name": "Giga-Blitzhagel", + "effect": "Eine Elektro-Attacke, die nur Gigadynamax-Pikachu einsetzen kann. Gegnerische Pokémon werden paralysiert." + }, + "gMaxGoldRush": { + "name": "Giga-Münzregen", + "effect": "Eine Normal-Attacke, die nur Gigadynamax-Mauzi einsetzen kann. Verwirrt Gegner und bringt nach dem Kampf Geld ein." + }, + "gMaxChiStrike": { + "name": "Giga-Fokusschlag", + "effect": "Eine Kampf-Attacke, die nur Gigadynamax-Machomei einsetzen kann. Erhöht die Volltrefferquote auf Mitstreiterseite." + }, + "gMaxTerror": { + "name": "Giga-Spuksperre", + "effect": "Eine Geister-Attacke, die nur Gigadynamax-Gengar einsetzen kann. Hindert gegnerische Pokémon an der Flucht beziehungsweise am Auswechseln." + }, + "gMaxResonance": { + "name": "Giga-Melodie", + "effect": "Eine Eis-Attacke, die nur Gigadynamax-Lapras einsetzen kann. Reduziert fünf Runden lang den erlittenen Schaden." + }, + "gMaxCuddle": { + "name": "Giga-Gekuschel", + "effect": "Eine Normal-Attacke, die nur Gigadynamax-Evoli einsetzen kann. Gegnerische Pokémon verlieben sich in es." + }, + "gMaxReplenish": { + "name": "Giga-Recycling", + "effect": "Eine Normal-Attacke, die nur Gigadynamax-Relaxo einsetzen kann. Stellt bereits verzehrte Beeren wieder her." + }, + "gMaxMalodor": { + "name": "Giga-Gestank", + "effect": "Eine Gift-Attacke, die nur Gigadynamax-Deponitox einsetzen kann. Vergiftet gegnerische Pokémon." + }, + "gMaxStonesurge": { + "name": "Giga-Geröll", + "effect": "Eine Wasser-Attacke, die nur Gigadynamax-Kamalm einsetzen kann. Verstreut viele spitze Steinbrocken auf dem Kampffeld." + }, + "gMaxWindRage": { + "name": "Giga-Sturmstoß", + "effect": "Eine Flug-Attacke, die nur Gigadynamax-Krarmor einsetzen kann. Beseitigt die Effekte von Attacken wie Reflektor und Lichtschild.." + }, + "gMaxStunShock": { + "name": "Giga-Voltschlag", + "effect": "Eine Elektro-Attacke, die nur Gigadynamax-Riffex einsetzen kann. Vergiftet oder paralysiert gegnerische Pokémon." + }, + "gMaxFinale": { + "name": "Giga-Lichtblick", + "effect": "Eine Feen-Attacke, die nur Gigadynamax-Pokusan einsetzen kann. Füllt die KP auf Mitstreiterseite auf." + }, + "gMaxDepletion": { + "name": "Giga-Dämpfer", + "effect": "Eine Drachen-Attacke, die nur Gigadynamax-Duraludon einsetzen kann. AP der letzten Attacke, die gegnerische Pokémon eingesetzt haben, werden gesenkt." + }, + "gMaxGravitas": { + "name": "Giga-Astrowellen", + "effect": "Eine Psycho-Attacke, die nur Gigadynamax-Maritellit einsetzen kann. Ändert die Erdanziehung für fünf Runden." + }, + "gMaxVolcalith": { + "name": "Giga-Schlacke", + "effect": "Eine Gesteins-Attacke, die nur Gigadynamax-Montecarbo einsetzen kann. Fügt vier Runden lang Schaden zu." + }, + "gMaxSandblast": { + "name": "Giga-Sandstoß", + "effect": "Eine Boden-Attacke, die nur Gigadynamax-Sanaconda einsetzen kann. Eine Sandhose wütet für vier bis fünf Runden." + }, + "gMaxSnooze": { + "name": "Giga-Gähnzwang", + "effect": "Eine Unlicht-Attacke, die nur Gigadynamax-Olangaar einsetzen kann. Mit einem großen Gähner wird das Ziel müde gemacht und schläft in der nächsten Runde ein." + }, + "gMaxTartness": { + "name": "Giga-Säureguss", + "effect": "Eine Pflanzen-Attacke, die nur Gigadynamax-Drapfel einsetzen kann. Senkt den Ausweichwert der gegnerischen Pokémon." + }, + "gMaxSweetness": { + "name": "Giga-Nektarflut", + "effect": "Eine Pflanzen-Attacke, die nur Gigadynamax-Schlapfel einsetzen kann. Heilt Statusprobleme auf Mitstreiterseite." + }, + "gMaxSmite": { + "name": "Giga-Sanktion", + "effect": "Eine Feen-Attacke, die nur Gigadynamax-Silembrim einsetzen kann. Verwirrt gegnerische Pokémon." + }, + "gMaxSteelsurge": { + "name": "Giga-Stahlschlag", + "effect": "Eine Stahl-Attacke, die nur Gigadynamax-Patinaraja einsetzen kann. Verstreut viele zackige Stahlsplitter auf dem Kampffeld." + }, + "gMaxMeltdown": { + "name": "Giga-Schmelze", + "effect": "Eine Stahl-Attacke, die nur Gigadynamax-Melmetal einsetzen kann. Hindert Gegner am wiederholten Einsatz derselben Attacke." + }, + "gMaxFoamBurst": { + "name": "Giga-Schaumbad", + "effect": "Eine Wasser-Attacke, die nur Gigadynamax-Kingler einsetzen kann. Senkt die Initiative der gegnerischen Pokémon stark." + }, + "gMaxCentiferno": { + "name": "Giga-Feuerkessel", + "effect": "Eine Feuer-Attacke, die nur Gigadynamax-Infernopod einsetzen kann. Schließt gegnerische Pokémon vier bis fünf Runden in wirbelnden Flammen ein." + }, + "gMaxVineLash": { + "name": "Giga-Geißel", + "effect": "Eine Pflanzen-Attacke, die nur Gigadynamax-Bisaflor einsetzen kann. Geißelt gegnerische Pokémon vier Runden lang mit peitschenartigen Ranken." + }, + "gMaxCannonade": { + "name": "Giga-Beschuss", + "effect": "Eine Wasser-Attacke, die nur Gigadynamax-Turtok einsetzen kann. Schließt gegnerische Pokémon vier Runden lang in einem Wasserwirbel ein." + }, + "gMaxDrumSolo": { + "name": "Giga-Getrommel", + "effect": "Eine Pflanzen-Attacke, die nur Gigadynamax-Gortrom einsetzen kann. Ignoriert die Effekte der gegnerischen Fähigkeiten." + }, + "gMaxFireball": { + "name": "Giga-Brandball", + "effect": "Eine Feuer-Attacke, die nur Gigadynamax-Liberlo einsetzen kann. Ignoriert die Effekte der gegnerischen Fähigkeiten." + }, + "gMaxHydrosnipe": { + "name": "Giga-Schütze", + "effect": "Eine Wasser-Attacke, die nur Gigadynamax-Intelleon einsetzen kann. Ignoriert die Effekte der gegnerischen Fähigkeiten." + }, + "gMaxOneBlow": { + "name": "Giga-Einzelhieb", + "effect": "Eine Unlicht-Attacke, die nur Gigadynamax-Wulaosu einsetzen kann. Dieser Einzelhieb ignoriert die schützende Wirkung von Dyna-Wall." + }, + "gMaxRapidFlow": { + "name": "Giga-Multihieb", + "effect": "Eine Wasser-Attacke, die nur Gigadynamax-Wulaosu einsetzen kann. Dieser Multihieb ignoriert die schützende Wirkung von Dyna-Wall." + }, + "teraBlast": { + "name": "Tera-Ausbruch", + "effect": "Ist der Anwender terakristallisiert, greift er mit Energie seines Tera-Typs an. Der Schaden hängt vom Angriff oder Spezial-Angriff ab, je nachdem, welcher Wert höher ist." + }, + "silkTrap": { + "name": "Fadenfalle", + "effect": "Der Anwender spannt eine Falle aus Fäden und wird so vor Angriffen geschützt. Berührt ihn nun ein Angreifer, sinkt dessen Initiative." + }, + "axeKick": { + "name": "Fersenkick", + "effect": "Der Anwender greift an, indem er seine erhobene Ferse hinunterschnellen lässt. Das Ziel wird eventuell verwirrt. Bei Misserfolg verletzt sich der Anwender selbst." + }, + "lastRespects": { + "name": "Letzte Ehre", + "effect": "Der Anwender rächt gefallene Mitstreiter. Je mehr kampfunfähige Pokémon sich im Team befinden, desto stärker ist die Attacke." + }, + "luminaCrash": { + "name": "Lichteinschlag", + "effect": "Der Anwender greift an, indem er ein sonderbares Licht freisetzt, das sich auch auf die Psyche auswirkt. Zudem wird die Spezial-Verteidigung des Zieles stark gesenkt." + }, + "orderUp": { + "name": "Auftischen", + "effect": "Eine Attacke mit geübten Bewegungen. Trägt der Anwender ein Nigiragi im Maul, erhöht sich je nach dessen Form ein Statuswert des Anwenders." + }, + "jetPunch": { + "name": "Düsenhieb", + "effect": "Bei dieser Erstschlag-Attacke hüllt der Anwender seine Faust in einen Strudel und greift mit einem extrem schnellen Hieb an." + }, + "spicyExtract": { + "name": "Chili-Essenz", + "effect": "Der Anwender setzt eine unglaublich scharfe Essenz frei, die den Angriff des Zieles stark erhöht, aber seine Verteidigung stark senkt." + }, + "spinOut": { + "name": "Reifendrehung", + "effect": "Der Anwender wirbelt wild umher, indem er sein Gewicht auf seine Extremitäten verlagert, und richtet so Schaden an. Seine eigene Initiative sinkt dadurch stark" + }, + "populationBomb": { + "name": "Mäuseplage", + "effect": "Der Anwender versammelt eine Schar von Artgenossen, die dann geschlossen angreift und das Ziel ein- bis zehnmal hintereinander trifft." + }, + "iceSpinner": { + "name": "Eiskreisel", + "effect": "Der Anwender hüllt seine Füße in dünnes Eis, wirbelt herum und greift so das Ziel an. Die Drehung zerstört etwaige Felder" + }, + "glaiveRush": { + "name": "Großklingenstoß", + "effect": "Der Anwender stürzt sich waghalsig auf das Ziel. Bis zum nächsten Zug des Anwenders treffen ihn gegnerische Angriffe garantiert und richten doppelten Schaden an." + }, + "revivalBlessing": { + "name": "Vitalsegen", + "effect": "Der Anwender belebt mit einem Wunsch voller Mitgefühl ein kampfunfähiges Team-Mitglied wieder und stellt die Hälfte dessen maximaler KP wieder her." + }, + "saltCure": { + "name": "Pökelsalz", + "effect": "Der Anwender pökelt das Ziel mit Salz ein, wodurch dieses jede Runde Schaden erleidet. Stahl- und Wasser-Pokémon leiden besonders darunter." + }, + "tripleDive": { + "name": "Tauchtriade", + "effect": "Der Anwender taucht mit perfekt abgestimmtem Timing ab und trifft das Ziel mit Wasserspritzern. Dabei richtet er dreimal hintereinander Schaden an." + }, + "mortalSpin": { + "name": "Letalwirbler", + "effect": "Der Anwender greift mit einer wirbelnden Attacke an, die Gegner auch vergiftet. Befreit den Anwender unter anderem von Wickel, Klammergriff und Egelsamen." + }, + "doodle": { + "name": "Abpausen", + "effect": "Der Anwender kopiert die wahre Essenz des Zieles. Dadurch erhalten alle Pokémon auf der Mitstreiterseite die Fähigkeit des Zieles." + }, + "filletAway": { + "name": "Abspaltung", + "effect": "Der Anwender setzt seine KP ein, um seinen Angriff, seinen Spezial-Angriff und seine Initiative stark zu erhöhen." + }, + "kowtowCleave": { + "name": "Kniefallspalter", + "effect": "Der Anwender fällt auf die Knie und verleitet das Ziel zu Unachtsamkeit, bevor er mit einer Klinge zuschlägt. Diese Attacke trifft garantiert." + }, + "flowerTrick": { + "name": "Blumentrick", + "effect": "Der Anwender greift an, indem er dem Ziel einen Trick-Strauß zuwirft. Diese Attacke trifft immer und hat zudem Volltreffergarantie." + }, + "torchSong": { + "name": "Loderlied", + "effect": "Der Anwender spuckt inbrünstig lodernde Flammen, als würde er singen, und versengt das Ziel. Dadurch steigt auch der Spezial-Angriff des Anwenders." + }, + "aquaStep": { + "name": "Wogentanz", + "effect": "Der Anwender neckt das Ziel mit flinken, fließenden Tanzschritten und greift es dann an. Dadurch steigt auch die Initiative des Anwenders." + }, + "ragingBull": { + "name": "Rasender Stier", + "effect": "Ein rasender Angriff eines wilden Stiers, der auch Barrieren wie Lichtschild und Reflektor durchbricht. Der Attacken-Typ hängt von der Form des Anwenders ab." + }, + "makeItRain": { + "name": "Goldrausch", + "effect": "Der Anwender greift an, indem er Unmengen an Münzen ausschüttet, senkt dabei aber seinen Spezial-Angriff. Das Geld wird nach dem Kampf aufgesammelt." + }, + "psyblade": { + "name": "Psychoschneide", + "effect": "Das Ziel wird mit einer immateriellen Klinge angegriffen. Die Stärke der Attacke steigt um 50 %, wenn beim Anwender ein Elektrofeld aktiv ist." + }, + "hydroSteam": { + "name": "Hydrodampf", + "effect": "Das Ziel wird kraftvoll mit brodelndem Wasser übergossen. Wider Erwarten sinkt die Stärke der Attacke bei starkem Sonnenlicht nicht, sondern steigt um 50 %." + }, + "ruination": { + "name": "Verderben", + "effect": "Der Anwender beschwört Verderben bringendes Unheil herauf und halbiert die KP des Zieles." + }, + "collisionCourse": { + "name": "Kollisionskurs", + "effect": "Der Anwender wechselt seine Form, während er sich gen Boden stürzt, und verursacht eine riesige Ur-Explosion. Ist die Attacke sehr effektiv, steigt ihre Stärke noch mehr." + }, + "electroDrift": { + "name": "Blitztour", + "effect": "Der Anwender wechselt bei rasantem Tempo seine Form und trifft das Ziel mit einem futuristischen Elektroschlag. Ist die Attacke sehr effektiv, steigt ihre Stärke noch mehr." + }, + "shedTail": { + "name": "Schwanzabwurf", + "effect": "Der Anwender setzt seine KP ein, um einen Doppelgänger zu erzeugen, und tauscht dann den Platz mit einem anderen Pokémon." + }, + "chillyReception": { + "name": "Eisige Stimmung", + "effect": "Der Anwender sorgt mit einem schlechten Witz für eisige Stimmung und tauscht den Platz mit einem anderen Pokémon. Erzeugt fünf Runden lang Schnee." + }, + "tidyUp": { + "name": "Aufräumen", + "effect": "Die Effekte von Stachler, Tarnsteine, Klebenetz, Giftspitzen und Delegator werden aufgehoben. Zudem steigen der Angriff und die Initiative des Anwenders." + }, + "snowscape": { + "name": "Schneelandschaft", + "effect": "Erzeugt fünf Runden lang Schnee. Dadurch wird die Verteidigung von Eis-Pokémon erhöht." + }, + "pounce": { + "name": "Anspringen", + "effect": "Der Anwender greift an, indem er das Ziel anspringt. Dadurch sinkt auch die Initiative des Zieles." + }, + "trailblaze": { + "name": "Wegbereiter", + "effect": "Der Anwender greift an, als würde er aus hohem Gras hervorspringen. Mit wendigen Schritten erhöht er seine Initiative." + }, + "chillingWater": { + "name": "Kalte Dusche", + "effect": "Der Anwender greift an, indem er das Ziel mit eiskaltem Wasser überschüttet. Das raubt dem Ziel seinen Kampfgeist und senkt so seinen Angriff." + }, + "hyperDrill": { + "name": "Hyperbohrer", + "effect": "Der Anwender lässt einen spitzen Teil seines Körpers rasant rotieren, sticht zu und durchbricht dabei auch die Wirkung von Attacken wie Schutzschild und Scanner." + }, + "twinBeam": { + "name": "Doppelstrahl", + "effect": "Der Anwender greift mit übernatürlichen Lichtstrahlen an, die er aus seinen Augen abfeuert, und trifft das Ziel zweimal hintereinander." + }, + "rageFist": { + "name": "Zornesfaust", + "effect": "Ein Angriff, für den der Anwender seinen Zorn in Energie umwandelt. Je häufiger der Anwender getroffen wurde, desto stärker wird diese Attacke." + }, + "armorCannon": { + "name": "Rüstungskanone", + "effect": "Der Anwender schießt die eigene Rüstung als glühendes Projektil auf das Ziel. Dadurch sinken die Verteidigung und Spezial-Verteidigung des Anwenders." + }, + "bitterBlade": { + "name": "Reueschwert", + "effect": "Der Anwender tränkt seine Klinge in Bedauern und Reue und greift damit an. Die Hälfte des zugefügten Schadens wird dem Anwender als KP gutgeschrieben." + }, + "doubleShock": { + "name": "Zweifachladung", + "effect": "Der Anwender nutzt die gesamte Elektrizität in seinem Körper, um großen Schaden auszuteilen. Die restliche Kampfdauer gehört er nicht mehr dem Typ Elektro an." + }, + "gigatonHammer": { + "name": "Riesenhammer", + "effect": "Der Anwender greift mit einem großen Hammer an, den er mit vollem Körpereinsatz um sich schwingt. Diese Attacke kann nicht zweimal in Folge eingesetzt werden." + }, + "comeuppance": { + "name": "Vendetta", + "effect": "Der Anwender rächt sich an dem Gegner, der ihm zuletzt mit einer Attacke Schaden zugefügt hat, indem er ihm den Schaden mit erhöhter Kraft zurückzahlt." + }, + "aquaCutter": { + "name": "Aquaschnitt", + "effect": "Der Anwender stößt Wasser unter Druck aus, um das Ziel wie mit einer Klinge anzugreifen. Hohe Volltrefferquote." + }, + "blazingTorque": { + "name": "Hitzeturbo", + "effect": "Der Anwender rammt seinen glühend heißen Motor in das Ziel. Dieses erleidet eventuell Verbrennungen." + }, + "wickedTorque": { + "name": "Finsterturbo", + "effect": "Der Anwender rammt seinen Motor mit böswilliger Absicht in das Ziel. Dieses schläft eventuell ein." + }, + "noxiousTorque": { + "name": "Toxiturbo", + "effect": "Der Anwender rammt seinen giftigen Motor in das Ziel. Dieses wird eventuell vergiftet." + }, + "combatTorque": { + "name": "Raufturbo", + "effect": "Der Anwender rammt seinen Motor gewaltvoll in das Ziel. Dieses wird eventuell paralysiert." + }, + "magicalTorque": { + "name": "Zauberturbo", + "effect": "Der Anwender rammt seinen feenartigen Motor in das Ziel. Dieses wird eventuell verwirrt." + }, + "bloodMoon": { + "name": "Blutmond", + "effect": "Der Anwender entfesselt eine gewaltige Energieladung aus einem blutroten Vollmond. Diese Attacke kann nicht zweimal in Folge eingesetzt werden." + }, + "matchaGotcha": { + "name": "Quirlschuss", + "effect": "Der Anwender verschießt gequirlten Tee. Die Hälfte des zugefügten Schadens wird ihm als KP gutgeschrieben. Das Ziel erleidet eventuell Verbrennungen." + }, + "syrupBomb": { + "name": "Sirupbombe", + "effect": "Der Anwender feuert eine klebrige Sirupbombe auf das Ziel, wodurch es in Sirup gehüllt und seine Initiative drei Runden in Folge gesenkt wird." + }, + "ivyCudgel": { + "name": "Rankenkeule", + "effect": "Der Anwender schlägt mit einer rankenumschlungenen Keule zu. Der Typ dieser Attacke hängt von der Maske des Anwenders ab. Hohe Volltrefferquote." + }, + "electroShot": { + "name": "Stromstrahl", + "effect": "Sammelt in Runde 1 Elektrizität, um den Spezial-Angriff zu erhöhen, und greift dann in Runde 2 mit Starkstrom an. Bei Regen erfolgt der Angriff sofort in Runde 1." + }, + "teraStarstorm": { + "name": "Tera-Sternhagel", + "effect": "Der Anwender greift das Ziel mit gebündelter Kristallenergie an. Wenn Terapagos diese Attacke in seiner Stellarform einsetzt, erleiden alle Gegner Schaden." + }, + "fickleBeam": { + "name": "Launenlaser", + "effect": "Der Anwender greift mit einem Laserstrahl an. Manchmal feuern mehrere seiner Köpfe Laser ab, wodurch sich die Stärke dieser Attacke verdoppelt." + }, + "burningBulwark": { + "name": "Flammenschild", + "effect": "Das brennend heiße Fell des Anwenders schützt ihn vor Angriffen. Gleichzeitig erleiden alle Pokémon, die mit ihm in Berührung kommen, Verbrennungen." + }, + "thunderclap": { + "name": "Sturmblitz", + "effect": "Bei dieser Erstschlag-Attacke lässt der Anwender einen Blitz auf das Ziel einschlagen. Sie gelingt nur, wenn dieses gerade eine Angriffsattacke vorbereitet." + }, + "mightyCleave": { + "name": "Wuchtklinge", + "effect": "Der Anwender führt mit dem in seinem Kopf gespeicherten Licht einen Schnitt aus. Diese Attacke trifft auch, wenn das Ziel sich selbst schützt." + }, + "tachyonCutter": { + "name": "Tachyon-Schnitt", + "effect": "Der Anwender greift das Ziel zweimal hintereinander mit Partikelklingen an. Der Angriff trifft garantiert." + }, + "hardPress": { + "name": "Stahlpresse", + "effect": "Der Anwender nimmt das Ziel mit Armen oder Scheren in die Mangel. Je höher die KP des Zieles, desto stärker die Attacke." + }, + "dragonCheer": { + "name": "Drachenschrei", + "effect": "Das anspornende Drachengebrüll hebt die Moral aller Mitstreiter und erhöht ihre Volltrefferquote. Der Effekt ist stärker, wenn sie dem Typ Drache angehören." + }, + "alluringVoice": { + "name": "Lockstimme", + "effect": "Der Anwender greift mit engelsgleichem Gesang an. Falls die Statuswerte des Zieles in dieser Runde erhöht wurden, wird es zusätzlich verwirrt." + }, + "temperFlare": { + "name": "Frustflamme", + "effect": "Der Anwender greift das Ziel voller Verzweiflung an. Wenn seine vorige Attacke fehlgeschlagen ist, verdoppelt sich die Stärke der Attacke." + }, + "supercellSlam": { + "name": "Donnerstoß", + "effect": "Der Anwender lädt seinen Körper mit elektrischer Energie auf und stürzt sich auf das Ziel. Bei Misserfolg verletzt sich der Anwender selbst." + }, + "psychicNoise": { + "name": "Psycholärm", + "effect": "Der Anwender greift mit unerträglichen Schallwellen an, wodurch das Ziel zwei Runden lang nicht durch Attacken, Fähigkeiten oder getragene Items geheilt werden kann." + }, + "upperHand": { + "name": "Schnellkonter", + "effect": "Der Anwender reagiert auf Bewegungen des Zieles und lässt es durch einen Schlag zurückschrecken. Gelingt nur, wenn das Ziel gerade eine Erstschlag-Attacke vorbereitet." + }, + "malignantChain": { + "name": "Giftkettung", + "effect": "Der Anwender umwickelt das Ziel mit einer Kette aus Toxinen, die in dessen Körper eindringen und ihm schaden. Das Ziel wird eventuell schwer vergiftet." + } +} diff --git a/src/locales/de/move.ts b/src/locales/de/move.ts deleted file mode 100644 index f8e5f7c6ff5..00000000000 --- a/src/locales/de/move.ts +++ /dev/null @@ -1,3812 +0,0 @@ -import { MoveTranslationEntries } from "#app/interfaces/locales"; - -export const move: MoveTranslationEntries = { - "pound": { - name: "Klaps", - effect: "Ein Hieb mit den Vorderbeinen oder dem Schweif." - }, - "karateChop": { - name: "Karateschlag", - effect: "Gute Möglichkeit, einen Volltreffer zu landen." - }, - "doubleSlap": { - name: "Duplexhieb", - effect: "Trifft das Ziel zwei- bis fünfmal hintereinander mit einem Duplexhieb." - }, - "cometPunch": { - name: "Kometenhieb", - effect: "Trifft das Ziel zwei- bis fünfmal hintereinander mit kräftigen Hieben." - }, - "megaPunch": { - name: "Megahieb", - effect: "Ein unglaublich kräftiger Hieb." - }, - "payDay": { - name: "Zahltag", - effect: "Das Ziel wird mit Münzen beworfen. Das Geld wird nach dem Kampf aufgesammelt." - }, - "firePunch": { - name: "Feuerschlag", - effect: "Feuriger Schlag, der dem Ziel eventuell Verbrennungen zufügt." - }, - "icePunch": { - name: "Eishieb", - effect: "Ein eisiger Schlag, der das Ziel eventuell einfriert." - }, - "thunderPunch": { - name: "Donnerschlag", - effect: "Ein elektrischer Schlag, der das Ziel eventuell paralysiert." - }, - "scratch": { - name: "Kratzer", - effect: "Das Ziel wird mit scharfen Klauen zerkratzt." - }, - "viseGrip": { - name: "Klammer", - effect: "Das Ziel wird umklammert und zusammengequetscht." - }, - "guillotine": { - name: "Guillotine", - effect: "Kräftige Scheren-Attacke. Führt beim Ziel sofort zum K.O." - }, - "razorWind": { - name: "Klingensturm", - effect: "Eine Attacke, die über zwei Runden geht. Hohe Volltrefferquote." - }, - "swordsDance": { - name: "Schwerttanz", - effect: "Ein wilder Kampftanz, der den eigenen Angriffs-Wert stark erhöht." - }, - "cut": { - name: "Zerschneider", - effect: "Ein Basisangriff mit Schere oder Klaue. Damit können kleine Bäume gefällt werden." - }, - "gust": { - name: "Windstoß", - effect: "Trifft das Ziel mit einem Windstoß durch einen Flügelschlag." - }, - "wingAttack": { - name: "Flügelschlag", - effect: "Trifft das Ziel mit ausgebreiteten Flügeln." - }, - "whirlwind": { - name: "Wirbelwind", - effect: "Weht das Ziel weg und ersetzt es durch ein anderes Pokémon. In der Wildnis endet der Kampf." - }, - "fly": { - name: "Fliegen", - effect: "Steigt in Runde 1 empor und trifft das Ziel in Runde 2." - }, - "bind": { - name: "Klammergriff", - effect: "Umklammert und quetscht das Ziel über vier bis fünf Runden." - }, - "slam": { - name: "Slam", - effect: "Schlag mit einem langen Schweif, einer Ranke oder Ähnlichem." - }, - "vineWhip": { - name: "Rankenhieb", - effect: "Peitschenähnlicher Schlag mit Ranken." - }, - "stomp": { - name: "Stampfer", - effect: "Stampfen mit dem Fuß. Das Ziel schreckt eventuell zurück." - }, - "doubleKick": { - name: "Doppelkick", - effect: "Der Anwender tritt in einer Runde zweimal schnell zu." - }, - "megaKick": { - name: "Megakick", - effect: "Das Ziel wird mit einem extrem heftigen Tritt angegriffen." - }, - "jumpKick": { - name: "Sprungkick", - effect: "Der Angreifer hüpft hoch und tritt zu. Bei Misserfolg schadet er sich selbst." - }, - "rollingKick": { - name: "Fegekick", - effect: "Heftiger Tritt aus einer schnellen Drehbewegung. Lässt das Ziel eventuell zurückschrecken." - }, - "sandAttack": { - name: "Sandwirbel", - effect: "Senkt Genauigkeit des Zieles, indem ihm Sand ins Gesicht geworfen wird." - }, - "headbutt": { - name: "Kopfnuss", - effect: "Rammt das Ziel mit einer Kopfnuss. Ziel schreckt eventuell zurück." - }, - "hornAttack": { - name: "Hornattacke", - effect: "Spießt das Ziel mit einem spitzen Horn auf." - }, - "furyAttack": { - name: "Furienschlag", - effect: "Spießt das Ziel zwei- bis fünfmal mit spitzem Horn oder Schnabel auf." - }, - "hornDrill": { - name: "Hornbohrer", - effect: "K.O.-Attacke, bei der ein Horn als Bohrer eingesetzt wird." - }, - "tackle": { - name: "Tackle", - effect: "Trifft das Ziel mit vollem Körpereinsatz." - }, - "bodySlam": { - name: "Bodyslam", - effect: "Trifft das Ziel mit vollem Körpereinsatz. Bewirkt eventuell Paralyse." - }, - "wrap": { - name: "Wickel", - effect: "Umwickelt das Ziel über vier bis fünf Runden mit Ranken oder Ähnlichem und fügt ihm Schaden zu." - }, - "takeDown": { - name: "Bodycheck", - effect: "Rücksichtslose Attacke, bei der sich der Angreifer selbst leicht verletzt." - }, - "thrash": { - name: "Fuchtler", - effect: "Attacke über zwei bis drei Runden, die den Angreifer verwirrt." - }, - "doubleEdge": { - name: "Risikotackle", - effect: "Lebensgefährlicher Angriff, bei dem sich der Angreifer selbst verletzt." - }, - "tailWhip": { - name: "Rutenschlag", - effect: "Hieb mit dem Schweif. Senkt die Verteidigung des Zieles." - }, - "poisonSting": { - name: "Giftstachel", - effect: "Angriff mit Giftstachel. Das Ziel wird eventuell vergiftet." - }, - "twineedle": { - name: "Duonadel", - effect: "Stacheln treffen das Ziel zweimal. Das Ziel wird eventuell vergiftet." - }, - "pinMissile": { - name: "Nadelrakete", - effect: "Spitze Nadeln treffen das Ziel zwei- bis fünfmal hintereinander." - }, - "leer": { - name: "Silberblick", - effect: "Gegnerischer Verteidigungs-Wert wird durch angsteinflößenden Blick gesenkt." - }, - "bite": { - name: "Biss", - effect: "Beißt zu und lässt das Ziel eventuell zurückschrecken." - }, - "growl": { - name: "Heuler", - effect: "Der Anwender nimmt das Ziel für sich ein und senkt dessen Angriffs-Wert." - }, - "roar": { - name: "Brüller", - effect: "Verjagt das Ziel und ersetzt es durch ein anderes Pokémon. Beendet den Kampf in der Wildnis." - }, - "sing": { - name: "Gesang", - effect: "Ein Lied, das das Ziel in tiefen Schlaf versetzt." - }, - "supersonic": { - name: "Superschall", - effect: "Ausstoß bizarrer Schallwellen. Das Ziel wird verwirrt." - }, - "sonicBoom": { - name: "Ultraschall", - effect: "Das Ziel wird von einer Schockwelle getroffen, die stets 20 KP Schaden anrichtet." - }, - "disable": { - name: "Aussetzer", - effect: "Die zuletzt eingesetzte Attacke des Zieles wird für mehrere Runden blockiert." - }, - "acid": { - name: "Säure", - effect: "Versprüht ätzende Flüssigkeit, die eventuell die Spezial-Verteidigung der Gegner in der Nähe des Anwenders senkt." - }, - "ember": { - name: "Glut", - effect: "Schwache Feuer-Attacke, durch die das Ziel eventuell Verbrennungen erleidet." - }, - "flamethrower": { - name: "Flammenwurf", - effect: "Starke Feuer-Attacke, durch die das Ziel eventuell Verbrennungen erleidet." - }, - "mist": { - name: "Weißnebel", - effect: "Anwender schützt das Team mit einem Nebel. Verhindert Statussenkungen für fünf Runden." - }, - "waterGun": { - name: "Aquaknarre", - effect: "Das Ziel wird mit Wasser bespritzt." - }, - "hydroPump": { - name: "Hydropumpe", - effect: "Spritzt eine Menge Wasser mit Hochdruck auf das Ziel." - }, - "surf": { - name: "Surfer", - effect: "Eine Welle bricht über alle Pokémon in der Nähe des Anwenders herein." - }, - "iceBeam": { - name: "Eisstrahl", - effect: "Das Ziel wird von einem Eisstrahl getroffen und friert eventuell ein." - }, - "blizzard": { - name: "Blizzard", - effect: "Ein Schneesturm wütet, der das Ziel einfrieren kann." - }, - "psybeam": { - name: "Psystrahl", - effect: "Feuert einen Strahl ab, der das Ziel verwirren kann." - }, - "bubbleBeam": { - name: "Blubbstrahl", - effect: "Versprüht Blasen, die eventuell den Initiative-Wert des Zieles senken." - }, - "auroraBeam": { - name: "Aurorastrahl", - effect: "Regenbogenfarbener Strahl, der eventuell den Angriffs-Wert des Zieles senkt." - }, - "hyperBeam": { - name: "Hyperstrahl", - effect: "Starke Attacke, die den Anwender zwingt, eine Runde auszusetzen." - }, - "peck": { - name: "Pikser", - effect: "Greift das Ziel mit dem Schnabel oder Horn an." - }, - "drillPeck": { - name: "Bohrschnabel", - effect: "Korkenzieherangriff, bei dem der Schnabel als Bohrer dient." - }, - "submission": { - name: "Überroller", - effect: "Harte Körperattacke, bei der sich der Angreifer selbst leicht verletzt." - }, - "lowKick": { - name: "Fußkick", - effect: "Ein Tritt, der das Ziel umwirft. Je schwerer das Ziel ist, desto mehr Schaden fügt ihm die Attacke zu." - }, - "counter": { - name: "Konter", - effect: "Kontert physische Treffer und fügt dem Ziel das Doppelte des Schadens zu, den der Anwender erlitten hat." - }, - "seismicToss": { - name: "Geowurf", - effect: "Ziel wird mit der Kraft der Gravitation umgeworfen. Richtet Schaden gemäß Level des Angreifers an." - }, - "strength": { - name: "Stärke", - effect: "Das Ziel wird extrem stark getroffen. Macht Verschieben von Felsen möglich." - }, - "absorb": { - name: "Absorber", - effect: "Attacke, die die Hälfte des Schadens absorbiert." - }, - "megaDrain": { - name: "Megasauger", - effect: "Attacke, die die Hälfte des Schadens absorbiert." - }, - "leechSeed": { - name: "Egelsamen", - effect: "Ziel wird bepflanzt und verliert jede Runde KP, die ein Pokémon aus dem Team des Anwenders heilen." - }, - "growth": { - name: "Wachstum", - effect: "Der Körper wächst. Dadurch steigen Angriff und Spezial-Angriff." - }, - "razorLeaf": { - name: "Rasierblatt", - effect: "Trifft das Ziel mit Blättern. Hohe Volltrefferquote." - }, - "solarBeam": { - name: "Solarstrahl", - effect: "Absorbiert Licht in Runde 1. In Runde 2 erfolgt der Angriff." - }, - "poisonPowder": { - name: "Giftpuder", - effect: "Verstreut giftigen Puder auf das Ziel." - }, - "stunSpore": { - name: "Stachelspore", - effect: "Verstreut lähmenden Puder." - }, - "sleepPowder": { - name: "Schlafpuder", - effect: "Verstreut Schlafpuder, der das Ziel eventuell in Schlaf versetzt." - }, - "petalDance": { - name: "Blättertanz", - effect: "Angriff mit Blütenblättern für zwei bis drei Runden. Angreifer wird verwirrt." - }, - "stringShot": { - name: "Fadenschuss", - effect: "Umwickelt Ziele in der Nähe mit Fäden aus dem Mund und senkt den Initiative-Wert." - }, - "dragonRage": { - name: "Drachenwut", - effect: "Stößt eine wutgeladene Schockwelle aus, die stets 40 KP Schaden anrichtet." - }, - "fireSpin": { - name: "Feuerwirbel", - effect: "Das Ziel wird für vier bis fünf Runden in einem Feuerkreis gefangen." - }, - "thunderShock": { - name: "Donnerschock", - effect: "Eine Elektro-Attacke, die das Ziel eventuell paralysiert." - }, - "thunderbolt": { - name: "Donnerblitz", - effect: "Eine starke Elektro-Attacke, die das Ziel eventuell paralysiert." - }, - "thunderWave": { - name: "Donnerwelle", - effect: "Ein schwacher Stromstoß, der das Ziel paralysiert." - }, - "thunder": { - name: "Donner", - effect: "Eine verheerende Elektro-Attacke, die das Ziel eventuell paralysiert." - }, - "rockThrow": { - name: "Steinwurf", - effect: "Das Ziel wird mit einem kleinen Stein beworfen." - }, - "earthquake": { - name: "Erdbeben", - effect: "Ein mächtiges Beben, das die anderen Pokémon in der Nähe des Anwenders trifft." - }, - "fissure": { - name: "Geofissur", - effect: "Das Ziel wird in eine Erdspalte geworfen. Ist die Attacke erfolgreich, führt sie zu einem K.O." - }, - "dig": { - name: "Schaufler", - effect: "In Runde 1 gräbt sich der Anwender ein und in Runde 2 greift er an. Macht Flucht aus Höhlen möglich." - }, - "toxic": { - name: "Toxin", - effect: "Vergiftet das Ziel mit einem potenten Toxin schwer. Vergiftung wird von Runde zu Runde stärker." - }, - "confusion": { - name: "Konfusion", - effect: "Das Ziel wird von schwacher telekinetischer Energie getroffen und eventuell verwirrt." - }, - "psychic": { - name: "Psychokinese", - effect: "Starke Psycho-Attacke, die eventuell die Spezial-Verteidigung des Zieles senkt." - }, - "hypnosis": { - name: "Hypnose", - effect: "Hypnose-Attacke, die das Ziel in Schlaf versetzt." - }, - "meditate": { - name: "Meditation", - effect: "Anwender aktiviert Kräfte, die tief in seinem Inneren schlummern, und steigert so seinen Angriffs-Wert." - }, - "agility": { - name: "Agilität", - effect: "Entspannt den Körper, um den Initiative-Wert stark zu steigern." - }, - "quickAttack": { - name: "Ruckzuckhieb", - effect: "Sehr schneller Angriff mit Erstschlaggarantie." - }, - "rage": { - name: "Raserei", - effect: "Erhöht Angriff des Anwenders, wenn dieser getroffen wird, solange die Attacke aktiviert ist." - }, - "teleport": { - name: "Teleport", - effect: "Der Anwender tauscht den Platz mit einem anderen Team-Mitglied, sofern vorhanden. Setzen wilde Pokémon die Attacke ein, ergreifen diese die Flucht." - }, - "nightShade": { - name: "Nachtnebel", - effect: "Das Ziel sieht eine Illusion. Richtet Schaden gemäß dem Level des Anwenders an." - }, - "mimic": { - name: "Mimikry", - effect: "Kopiert die zuvor ausgeführte Attacke des Zieles. Kann im Kampf bis zur Auswechslung verwendet werden." - }, - "screech": { - name: "Kreideschrei", - effect: "Stößt einen Schrei aus, um die Verteidigung des Zieles stark zu senken." - }, - "doubleTeam": { - name: "Doppelteam", - effect: "Erzeugt durch schnelle Bewegungen Ebenbilder, um den Fluchtwert zu erhöhen." - }, - "recover": { - name: "Genesung", - effect: "Eine Selbstheilung. KP des Anwenders werden um 50 % des maximalen Wertes aufgefüllt." - }, - "harden": { - name: "Härtner", - effect: "Stärkt die Muskulatur und erhöht den Verteidigungs-Wert." - }, - "minimize": { - name: "Komprimator", - effect: "Anwender schrumpft, um seinen Fluchtwert stark zu erhöhen." - }, - "smokescreen": { - name: "Rauchwolke", - effect: "Senkt Genauigkeit des Zieles mit Rauch, Tinte oder Ähnlichem." - }, - "confuseRay": { - name: "Konfusstrahl", - effect: "Ein fieser Strahl, der das Ziel verwirrt." - }, - "withdraw": { - name: "Panzerschutz", - effect: "Rückzug in den harten Panzer. Erhöht den Verteidigungs-Wert." - }, - "defenseCurl": { - name: "Einigler", - effect: "Verbirgt Schwächen durch Einrollen und hebt gleichzeitig den Verteidigungs-Wert." - }, - "barrier": { - name: "Barriere", - effect: "Erzeugt eine Barriere, die den Verteidigungs-Wert stark erhöht." - }, - "lightScreen": { - name: "Lichtschild", - effect: "Erzeugt eine Lichtwand und senkt den Schaden durch Spezial-Angriffe für fünf Runden." - }, - "haze": { - name: "Dunkelnebel", - effect: "Erzeugt einen dunklen Nebel. Alle Veränderungen der Statuswerte der Kampfteilnehmer werden annulliert." - }, - "reflect": { - name: "Reflektor", - effect: "Eine mysteriöse Wand, die fünf Runden den Schaden von physischen gegnerischen Treffern reduziert." - }, - "focusEnergy": { - name: "Energiefokus", - effect: "Anwender atmet ein und bündelt Kraft. Die Volltrefferquote steigt dadurch." - }, - "bide": { - name: "Geduld", - effect: "Erträgt zwei Runden Angriffe und schlägt dann mit dem doppelten Wert des erlittenen Schadens zurück." - }, - "metronome": { - name: "Metronom", - effect: "Bewegt Finger, um das Gehirn zu stimulieren. Wählt zufällig eine Attacke aus." - }, - "mirrorMove": { - name: "Spiegeltrick", - effect: "Kopiert die letzte Attacke des Zieles und greift es an." - }, - "selfDestruct": { - name: "Finale", - effect: "Anwender sprengt sich, richtet rundum Riesenschaden an und wird dabei besiegt." - }, - "eggBomb": { - name: "Eierbombe", - effect: "Ein großes Ei wird auf das Ziel abgefeuert, um ihm zu schaden." - }, - "lick": { - name: "Schlecker", - effect: "Leck-Attacke mit langer Zunge. Das Ziel wird eventuell paralysiert." - }, - "smog": { - name: "Smog", - effect: "Angriff mit Gas. Das Ziel kann eventuell vergiftet werden." - }, - "sludge": { - name: "Schlammbad", - effect: "Wirft Schlamm auf das Ziel. Dieses wird eventuell vergiftet." - }, - "boneClub": { - name: "Knochenkeule", - effect: "Schlägt das Ziel mit einer Keule und lässt es eventuell zurückschrecken." - }, - "fireBlast": { - name: "Feuersturm", - effect: "Feuersbrunst, die das Ziel versengt und ihm eventuell eine Verbrennung zufügt." - }, - "waterfall": { - name: "Kaskade", - effect: "Eine mächtige Attacke, durch die das Ziel eventuell zurückschreckt." - }, - "clamp": { - name: "Schnapper", - effect: "Fängt und quetscht das Ziel über vier bis fünf Runden durch die harte Schale des Anwenders." - }, - "swift": { - name: "Sternschauer", - effect: "Verschießt sternförmige Strahlen, die stets treffen, auf Ziele in der Umgebung." - }, - "skullBash": { - name: "Schädelwumme", - effect: "Der Anwender erhöht in Runde 1 seine Verteidigung und greift in Runde 2 an." - }, - "spikeCannon": { - name: "Dornkanone", - effect: "Spitze Nadeln treffen das Ziel zwei- bis fünfmal hintereinander." - }, - "constrict": { - name: "Umklammerung", - effect: "Angriff mit langen Tentakeln oder Ranken. Senkt eventuell den Initiative-Wert." - }, - "amnesia": { - name: "Amnesie", - effect: "Gedächtnisverlust, der die Spezial-Verteidigung stark erhöht." - }, - "kinesis": { - name: "Psykraft", - effect: "Lenkt Ziel durch Verbiegen eines Löffels ab. Senkt dessen Genauigkeit." - }, - "softBoiled": { - name: "Weichei", - effect: "KP des Anwenders werden um 50 % der maximalen KP aufgefüllt." - }, - "highJumpKick": { - name: "Turmkick", - effect: "Sprungtritt mit Knie. Bei Misserfolg verletzt sich der Anwender selbst." - }, - "glare": { - name: "Schlangenblick", - effect: "Schüchtert Ziel mit dem Muster auf seinem Bauch ein, sodass dieses paralysiert wird." - }, - "dreamEater": { - name: "Traumfresser", - effect: "Attacke gegen schlafendes Ziel. Die Hälfte des zugefügten Schadens wird dem Anwender gutgeschrieben." - }, - "poisonGas": { - name: "Giftwolke", - effect: "Hüllt Ziele in der Umgebung in Gas ein, das sie eventuell vergiftet." - }, - "barrage": { - name: "Stakkato", - effect: "Wirft zwei- bis fünfmal runde Gegenstände auf das Ziel." - }, - "leechLife": { - name: "Blutsauger", - effect: "Die Hälfte des zugefügten Schadens wird dem Anwender gutgeschrieben." - }, - "lovelyKiss": { - name: "Todeskuss", - effect: "Anwender zwingt dem Ziel einen Kuss auf, der Schlaf verursacht." - }, - "skyAttack": { - name: "Himmelsfeger", - effect: "Anwender greift in der zweiten Runde mit hoher Volltrefferquote an. Ziel schreckt eventuell zurück." - }, - "transform": { - name: "Wandler", - effect: "Anwender verwandelt sich in ein Abbild des Zieles und kann so auf die gleichen Attacken zugreifen." - }, - "bubble": { - name: "Blubber", - effect: "Angriff mit Blasen. Initiative-Wert des Zieles wird eventuell gesenkt." - }, - "dizzyPunch": { - name: "Irrschlag", - effect: "Rhythmische Schläge, die das Ziel verwirren können." - }, - "spore": { - name: "Pilzspore", - effect: "Erzeugt eine Wolke aus einschläfernden Sporen." - }, - "flash": { - name: "Blitz", - effect: "Erzeugt helles Licht, das die Genauigkeit des Zieles senkt." - }, - "psywave": { - name: "Psywelle", - effect: "Anwender erzeugt eine mysteriöse Energiewelle, deren Intensität von Mal zu Mal anders ausfällt." - }, - "splash": { - name: "Platscher", - effect: "Nur ein Platscher, der überhaupt nichts bewirkt." - }, - "acidArmor": { - name: "Säurepanzer", - effect: "Verflüssigt Körperzellen des Anwenders. Erhöht den Verteidigungs-Wert stark." - }, - "crabhammer": { - name: "Krabbhammer", - effect: "Schlägt mit Schere zu. Hohe Volltrefferquote." - }, - "explosion": { - name: "Explosion", - effect: "Anwender explodiert, richtet bei allen Pokémon in seiner Umgebung großen Schaden an und wird selbst kampfunfähig." - }, - "furySwipes": { - name: "Kratzfurie", - effect: "Beharkt das Ziel zwei- bis fünfmal mit scharfen Klauen oder Sicheln." - }, - "bonemerang": { - name: "Knochmerang", - effect: "Ein Bumerang aus Knochen, der zweimal trifft." - }, - "rest": { - name: "Erholung", - effect: "Anwender wird vollkommen geheilt und schläft die folgenden zwei Runden." - }, - "rockSlide": { - name: "Steinhagel", - effect: "Schleudert riesige Felsen auf Ziele in der Umgebung, die eventuell zurückschrecken." - }, - "hyperFang": { - name: "Hyperzahn", - effect: "Angriff mit scharfen Reißzähnen. Ziel schreckt eventuell zurück." - }, - "sharpen": { - name: "Schärfer", - effect: "Anwender senkt die Polygonzahl, um Kanten zu erzeugen, die den Angriffs-Wert erhöhen." - }, - "conversion": { - name: "Umwandlung", - effect: "Wandelt den Typ des Anwenders in den Typ der ersten Attacke des Anwenders um." - }, - "triAttack": { - name: "Triplette", - effect: "Feuert drei Strahlen ab. Verursacht eventuell Paralyse, Verbrennung oder Einfrieren." - }, - "superFang": { - name: "Superzahn", - effect: "Greift mit scharfen Reißzähnen an. KP des Zieles werden halbiert." - }, - "slash": { - name: "Schlitzer", - effect: "Hieb mit Klauen oder Ähnlichem. Hohe Volltrefferquote." - }, - "substitute": { - name: "Delegator", - effect: "Anwender setzt eine kleine Menge an KP ein, um einen Doppelgänger zu erzeugen, der für ihn Schläge einsteckt." - }, - "struggle": { - name: "Verzweifler", - effect: "Angriff nur bei verbrauchten AP. Anwender verletzt sich selbst leicht." - }, - "sketch": { - name: "Nachahmer", - effect: "Anwender lernt die letzte Attacke des Zieles dauerhaft. Nachahmer verschwindet nach Gebrauch." - }, - "tripleKick": { - name: "Dreifachkick", - effect: "Tritt das Ziel ein- bis dreimal nacheinander. Die Härte der Tritte nimmt von Treffer zu Treffer zu." - }, - "thief": { - name: "Raub", - effect: "Erlaubt es, das Item des Zieles zu stehlen, solang der Anwender selbst keins bei sich trägt." - }, - "spiderWeb": { - name: "Spinnennetz", - effect: "Wickelt das Ziel ein. Flucht oder Tausch unmöglich." - }, - "mindReader": { - name: "Willensleser", - effect: "Ahnt Bewegungen des Zieles voraus, um zu gewährleisten, dass die nächste eigene Attacke trifft." - }, - "nightmare": { - name: "Nachtmahr", - effect: "Dem schlafenden Ziel wird durch einen Alptraum in jeder Runde Schaden zugefügt, solang es schläft." - }, - "flameWheel": { - name: "Flammenrad", - effect: "Feuer-Attacke, die das Ziel eventuell verbrennt." - }, - "snore": { - name: "Schnarcher", - effect: "Attacke nur im Schlaf möglich. Ziel schreckt eventuell zurück." - }, - "curse": { - name: "Fluch", - effect: "Attacke, deren Wirkung davon abhängt, ob der Anwender ein Geist-Pokémon ist." - }, - "flail": { - name: "Dreschflegel", - effect: "Attacke richtet mehr Schaden an, wenn eigene KP niedrig sind." - }, - "conversion2": { - name: "Umwandlung2", - effect: "Anwender ändert Typ und wird gegen letzten Angriffstyp resistent." - }, - "aeroblast": { - name: "Luftstoß", - effect: "Erzeugt Luftstrudel gegen das Ziel. Hohe Volltrefferquote." - }, - "cottonSpore": { - name: "Baumwollsaat", - effect: "Wattebäusche heften sich an das Ziel. Der Initiative-Wert sinkt stark." - }, - "reversal": { - name: "Gegenschlag", - effect: "Richtet mehr Schaden an, wenn eigene KP niedrig sind." - }, - "spite": { - name: "Groll", - effect: "AP der letzten Attacke des Zieles werden um 4 gesenkt." - }, - "powderSnow": { - name: "Pulverschnee", - effect: "Angriff mit Schnee. Das Ziel wird eventuell eingefroren." - }, - "protect": { - name: "Schutzschild", - effect: "Anwender weicht jeder Attacke aus. Scheitert eventuell bei Wiederholung." - }, - "machPunch": { - name: "Tempohieb", - effect: "Extrem schneller Hieb, der stets zuerst trifft." - }, - "scaryFace": { - name: "Grimasse", - effect: "Jagt dem Ziel mit einer Grimasse Angst ein. Dessen Initiative-Wert sinkt stark." - }, - "feintAttack": { - name: "Finte", - effect: "Anwender nähert sich mit Unschuldsmiene dem Ziel und schlägt zu, sobald dieses unachtsam wird. Ein Treffer ist gewiss." - }, - "sweetKiss": { - name: "Bitterkuss", - effect: "Anwender küsst das Ziel, das durch diese Niedlichkeit verwirrt wird." - }, - "bellyDrum": { - name: "Bauchtrommel", - effect: "Der Anwender maximiert den Angriffs-Wert auf Kosten der Hälfte seiner maximalen KP." - }, - "sludgeBomb": { - name: "Matschbombe", - effect: "Wirft Schlamm auf das Ziel. Dieses wird eventuell vergiftet." - }, - "mudSlap": { - name: "Lehmschelle", - effect: "Schadet dem Ziel durch Matsch. Dessen Genauigkeit sinkt." - }, - "octazooka": { - name: "Octazooka", - effect: "Schießt mit Tinte, um Schaden anzurichten und die Genauigkeit zu senken." - }, - "spikes": { - name: "Stachler", - effect: "Der Anwender verteilt Stacheln, die gegnerische Pokémon verletzen, die in den Kampf gerufen werden." - }, - "zapCannon": { - name: "Blitzkanone", - effect: "Kanonenähnlicher Elektro-Schuss, der schadet und paralysiert." - }, - "foresight": { - name: "Scharfblick", - effect: "Erlaubt es, Geist-Pokémon mit Normal- und Kampf-Attacken anzugreifen. Ignoriert den Fluchtwert des Zieles." - }, - "destinyBond": { - name: "Abgangsbund", - effect: "Wird der Anwender nach Einsatz dieser Attacke besiegt, führt dies auch beim Ziel zum K.O." - }, - "perishSong": { - name: "Abgesang", - effect: "Wer diese Musik hört, wird nach drei Runden besiegt. Rettung ist durch den Eintausch eines neuen Pokémon möglich." - }, - "icyWind": { - name: "Eissturm", - effect: "Eis-Attacke, die dem Ziel Schaden zufügt und seinen Initiative-Wert senkt." - }, - "detect": { - name: "Scanner", - effect: "Anwender weicht jeder Attacke aus. Scheitert eventuell bei Wiederholung." - }, - "boneRush": { - name: "Knochenhatz", - effect: "Greift Ziel zwei- bis fünfmal in Folge mit einem harten Knochen an." - }, - "lockOn": { - name: "Zielschuss", - effect: "Visiert das Ziel an und trifft in der nächsten Runde garantiert." - }, - "outrage": { - name: "Wutanfall", - effect: "Attacke über zwei bis drei Runden, die den Anwender verwirrt." - }, - "sandstorm": { - name: "Sandsturm", - effect: "Sandsturm für fünf Runden. Fügt Pokémon von jedem Typ außer Gestein, Boden und Stahl Schaden zu." - }, - "gigaDrain": { - name: "Gigasauger", - effect: "Das Ziel wird angegriffen und die Hälfte des zugefügten Schadens dem Angreifer als KP gutgeschrieben." - }, - "endure": { - name: "Ausdauer", - effect: "Nach fatalen Attacken bleibt stets 1 KP übrig. Misserfolg bei Wiederholung möglich." - }, - "charm": { - name: "Charme", - effect: "Betört das Ziel und reduziert dessen Angriffs-Wert stark." - }, - "rollout": { - name: "Walzer", - effect: "Attacke, die fünf Runden dauert. Die Härte nimmt von Mal zu Mal zu." - }, - "falseSwipe": { - name: "Trugschlag", - effect: "Ein Angriff, der dem Ziel zumindest 1 KP lässt." - }, - "swagger": { - name: "Angeberei", - effect: "Verwirrt das Ziel und erhöht dessen Angriffs-Wert stark." - }, - "milkDrink": { - name: "Milchgetränk", - effect: "KP des Anwenders werden um 50 % der maximalen KP aufgefüllt." - }, - "spark": { - name: "Funkensprung", - effect: "Elektro-Hieb, der das Ziel paralysieren kann." - }, - "furyCutter": { - name: "Zornklinge", - effect: "Eine Attacke mit Scheren oder Klauen, deren Härte bei aufeinanderfolgenden Treffern zunimmt." - }, - "steelWing": { - name: "Stahlflügel", - effect: "Trifft das Ziel mit Stahlflügeln. Verteidigungs-Wert des Anwenders steigt eventuell." - }, - "meanLook": { - name: "Horrorblick", - effect: "Böser Blick, der die Flucht des Zieles vereitelt." - }, - "attract": { - name: "Anziehung", - effect: "Angriff auf Anwender vom anderen Geschlecht wird unwahrscheinlich." - }, - "sleepTalk": { - name: "Schlafrede", - effect: "Anwender setzt per Zufall eine ihm bekannte Attacke im Schlaf ein." - }, - "healBell": { - name: "Vitalglocke", - effect: "Läutet beruhigend und heilt alle Statusprobleme im Team." - }, - "return": { - name: "Rückkehr", - effect: "Angriff, dessen Kraft bei Freundschaft zum Trainer größer wird." - }, - "present": { - name: "Geschenk", - effect: "Eine Bombe als Geschenk. Kann auch KP des Zieles wiederherstellen." - }, - "frustration": { - name: "Frustration", - effect: "Die Attacke wird stärker, je weniger der Anwender seinen Trainer mag." - }, - "safeguard": { - name: "Bodyguard", - effect: "Team des Anwenders ist fünf Runden vor Statusproblemen geschützt." - }, - "painSplit": { - name: "Leidteiler", - effect: "Addiert KP von Anwender und Ziel. Teilt sie gerecht auf." - }, - "sacredFire": { - name: "Läuterfeuer", - effect: "Mystische Feuer-Attacke, durch die das Ziel eventuell Verbrennungen erleidet." - }, - "magnitude": { - name: "Intensität", - effect: "Erdbebenartiger Angriff von zufälliger Stärke gegen andere Pokémon in der Umgebung des Anwenders." - }, - "dynamicPunch": { - name: "Wuchtschlag", - effect: "Kräftiger Schlag, der das Ziel bei Erfolg verwirrt." - }, - "megahorn": { - name: "Vielender", - effect: "Brutaler Ramm-Angriff mit spitzem, beeindruckendem Horn." - }, - "dragonBreath": { - name: "Feuerodem", - effect: "Fegt das Ziel mit zerstörerisch heißem Atem weg. Paralysiert das Ziel eventuell." - }, - "batonPass": { - name: "Stafette", - effect: "Tauscht das eigene Pokémon aus. Alle Statusveränderungen bleiben bestehen." - }, - "encore": { - name: "Zugabe", - effect: "Das Ziel wiederholt die letzte Attacke drei Runden lang." - }, - "pursuit": { - name: "Verfolgung", - effect: "Die Attacke richtet beim Ziel doppelten Schaden an, falls es ausgetauscht wird." - }, - "rapidSpin": { - name: "Turbodreher", - effect: "Trifft das Ziel mit einer Dreh-Attacke. Befreit sich unter anderem von Wickel, Klammergriff, Egelsamen und Stachler." - }, - "sweetScent": { - name: "Lockduft", - effect: "Lockt Ziele an und senkt deren Fluchtwert. Lockt im Gras auch wilde Pokémon an." - }, - "ironTail": { - name: "Eisenschweif", - effect: "Attacke mit hartem Eisenschweif. Senkt eventuell den Verteidigungs-Wert des Zieles." - }, - "metalClaw": { - name: "Metallklaue", - effect: "Klauen-Attacke, die eventuell den Angriffs-Wert des Anwenders erhöht." - }, - "vitalThrow": { - name: "Überwurf", - effect: "Anwender greift als Letzter an, hat dafür aber eine Treffergarantie beim eigenen Angriff." - }, - "morningSun": { - name: "Morgengrauen", - effect: "Füllt KP des Anwenders auf. Die Menge hängt vom Wetter ab." - }, - "synthesis": { - name: "Synthese", - effect: "Füllt KP des Anwenders auf. Die Menge hängt vom Wetter ab." - }, - "moonlight": { - name: "Mondschein", - effect: "Füllt KP des Anwenders auf. Die Menge hängt vom Wetter ab." - }, - "hiddenPower": { - name: "Kraftreserve", - effect: "Wirkung und Typ der Attacke hängen vom Anwender ab." - }, - "crossChop": { - name: "Kreuzhieb", - effect: "Doppelter Hieb mit den Unterarmen. Hohe Volltrefferquote." - }, - "twister": { - name: "Windhose", - effect: "Trifft Ziele in der Umgebung mit einem heftigen Wirbelsturm, was diese eventuell zurückschrecken lässt." - }, - "rainDance": { - name: "Regentanz", - effect: "Anwender erzeugt starken Regen. Die Stärke von Wasser-Attacken erhöht sich fünf Runden lang." - }, - "sunnyDay": { - name: "Sonnentag", - effect: "Die Sonne brennt unbarmherzig fünf Runden lang. Dadurch werden Attacken vom Typ Feuer verstärkt." - }, - "crunch": { - name: "Knirscher", - effect: "Beißt mit scharfen Reißzähnen zu und senkt eventuell die Verteidigung." - }, - "mirrorCoat": { - name: "Spiegelcape", - effect: "Kontert den Spezial-Angriff des Gegners mit doppeltem Schaden." - }, - "psychUp": { - name: "Psycho-Plus", - effect: "Der Anwender hypnotisiert sich selbst, um die Statusveränderungen des Zieles zu kopieren." - }, - "extremeSpeed": { - name: "Turbotempo", - effect: "Extrem schnelle und kraftvolle Attacke, die stets zuerst trifft." - }, - "ancientPower": { - name: "Antik-Kraft", - effect: "Angriff mit antiker Kraft, der alle Statuswerte erhöhen kann." - }, - "shadowBall": { - name: "Spukball", - effect: "Bewirft das Ziel mit gruseligem Ball und senkt eventuell die Spezial-Verteidigung." - }, - "futureSight": { - name: "Seher", - effect: "Zwei Runden, nachdem Seher eingesetzt wurde, erfolgt der Angriff." - }, - "rockSmash": { - name: "Zertrümmerer", - effect: "Diese steinbrechende Attacke kann den Verteidigungs-Wert des Zieles senken und außerhalb von Kämpfen rissige Felsen zertrümmern." - }, - "whirlpool": { - name: "Whirlpool", - effect: "Das Ziel wird für vier bis fünf Runden in einer Wasserhose gefangen." - }, - "beatUp": { - name: "Prügler", - effect: "Das gesamte Team nimmt aktiv am Kampf teil. Je mehr Pokémon, desto höher die Anzahl der Angriffe." - }, - "fakeOut": { - name: "Mogelhieb", - effect: "Diese Attacke trifft zuerst. Das Ziel schreckt zurück. Gelingt nur in der ersten Runde eines Kampfes." - }, - "uproar": { - name: "Aufruhr", - effect: "Anwender greift an, indem er über drei Runden hinweg einen Aufruhr erzeugt. Verhindert Schlaf." - }, - "stockpile": { - name: "Horter", - effect: "Lädt Kraft für später auf. Erhöht Verteidigung und Spezial-Verteidigung. Kann bis zu dreimal eingesetzt werden." - }, - "spitUp": { - name: "Entfessler", - effect: "Entlädt die Kraft, die während des Einsatzes von Horter gesammelt wurde." - }, - "swallow": { - name: "Verzehrer", - effect: "Absorbiert die gehortete Kraft, um KP aufzufüllen." - }, - "heatWave": { - name: "Hitzewelle", - effect: "Ziele werden von Sturm aus heißer Luft getroffen und verbrennen sich eventuell." - }, - "hail": { - name: "Hagelsturm", - effect: "Hagelsturm für fünf Runden. Schadet allen, außer Eis-Pokémon." - }, - "torment": { - name: "Folterknecht", - effect: "Erzürnt das Ziel, um wiederholten Einsatz derselben Attacke zu verhindern." - }, - "flatter": { - name: "Schmeichler", - effect: "Schmeichelt dem Ziel, um es zu verwirren. Erhöht dessen Spezial-Angriff." - }, - "willOWisp": { - name: "Irrlicht", - effect: "Angriff mit unheimlicher Flamme, die das Ziel verbrennt." - }, - "memento": { - name: "Memento-Mori", - effect: "Der Anwender wird besiegt und senkt den Angriffs-Wert und den Spezial-Angriff des Zieles stark." - }, - "facade": { - name: "Fassade", - effect: "Doppelte Stärke nach Verbrennung, Paralyse oder Vergiftung." - }, - "focusPunch": { - name: "Power-Punch", - effect: "Anwender konzentriert sich, bevor er angreift. Wird er vorher getroffen, ist die Attacke erfolglos." - }, - "smellingSalts": { - name: "Riechsalz", - effect: "Doppelt wirksam gegen paralysierte Ziele, heilt sie aber auch von der Paralyse." - }, - "followMe": { - name: "Spotlight", - effect: "Zieht Aufmerksamkeit auf sich. Gegner greift nur Anwender an." - }, - "naturePower": { - name: "Natur-Kraft", - effect: "Angriff mit der Kraft der Natur, dessen Typ vom Ort abhängt, wo er durchgeführt wird." - }, - "charge": { - name: "Ladevorgang", - effect: "Lädt Energie für die kommende Elektro-Attacke auf. Erhöht die Spezial-Verteidigung." - }, - "taunt": { - name: "Verhöhner", - effect: "Bringt das Ziel in Rage. Dieses kann über drei Runden hinweg nur noch angreifen." - }, - "helpingHand": { - name: "Rechte Hand", - effect: "Anwender steigert die Kraft eines Angriffes eines Freundes." - }, - "trick": { - name: "Trickbetrug", - effect: "Der Anwender überrumpelt das Ziel und tauscht mit ihm die getragenen Items." - }, - "rolePlay": { - name: "Rollenspiel", - effect: "Parodiert das Ziel und kopiert seine Fähigkeit." - }, - "wish": { - name: "Wunschtraum", - effect: "Ein Wunsch füllt in der nächsten Runde 50 % der KP des Anwenders bei diesem oder einem eingewechselten Pokémon auf." - }, - "assist": { - name: "Zuschuss", - effect: "Greift zufällig mit einer Attacke eines Mitstreiters an." - }, - "ingrain": { - name: "Verwurzler", - effect: "Verwurzelung füllt jede Runde KP auf. Austausch ist unmöglich." - }, - "superpower": { - name: "Kraftkoloss", - effect: "Starke Attacke, die jedoch auch den Angriff und die Verteidigung des Anwenders senkt." - }, - "magicCoat": { - name: "Magiemantel", - effect: "Egelsamen und alle Attacken mit Status verändernden Effekten prallen ab." - }, - "recycle": { - name: "Aufbereitung", - effect: "Recycling eines getragenen Items, das zuvor im Kampf verwendet wurde." - }, - "revenge": { - name: "Vergeltung", - effect: "Schaden verdoppelt sich, wenn der Anwender in der Runde bereits Schaden vom Ziel des Angriffes genommen hat." - }, - "brickBreak": { - name: "Durchbruch", - effect: "Ein beherzter Handkantenschlag. Durchbricht Barrieren wie Lichtschild und Reflektor." - }, - "yawn": { - name: "Gähner", - effect: "Angreifer gähnt und das Ziel schläft in der nächsten Runde ein." - }, - "knockOff": { - name: "Abschlag", - effect: "Schlägt das Item des Zieles weg und vereitelt so dessen Gebrauch während des Kampfes. Mehr Schaden gegen Ziele, die ein Item bei sich tragen." - }, - "endeavor": { - name: "Notsituation", - effect: "Trifft nur, wenn KP des Anwenders geringer als KP des Zieles sind. Senkt dessen KP auf die Höhe der KP des Anwenders." - }, - "eruption": { - name: "Eruption", - effect: "Explosiver Angriff. Je höher die KP des Anwenders sind, desto mehr Schaden wird angerichtet." - }, - "skillSwap": { - name: "Fähigkeitstausch", - effect: "Anwender tauscht Fähigkeit mit dem Ziel." - }, - "imprison": { - name: "Begrenzer", - effect: "Hindert Gegner am Einsatz von Attacken, die der Anwender selbst auch kennt." - }, - "refresh": { - name: "Heilung", - effect: "Selbstheilung bei Vergiftung, Paralyse und Verbrennung." - }, - "grudge": { - name: "Nachspiel", - effect: "Bei K.O. des Anwenders werden die AP der Attacke, durch die er besiegt wurde, auf 0 herabgesetzt." - }, - "snatch": { - name: "Übernahme", - effect: "Raubt den Effekt eingesetzter heilender oder Werte verändernder Attacken." - }, - "secretPower": { - name: "Geheimpower", - effect: "Angriff, der abhängig vom Anwendungsort einen unterschiedlichen Zusatz-Effekt hat." - }, - "dive": { - name: "Taucher", - effect: "Taucht in Runde 1 ab und greift in Runde 2 aus der Tiefe an." - }, - "armThrust": { - name: "Armstoß", - effect: "Schläge mit geradem Arm, die das Ziel zwei- bis fünfmal treffen." - }, - "camouflage": { - name: "Tarnung", - effect: "Der Typ des Anwenders passt sich der Umgebung an, sei es im Wasser, im Gras oder in einer Höhle." - }, - "tailGlow": { - name: "Schweifglanz", - effect: "Ein blinkendes Licht, das den Spezial-Angriff drastisch erhöht." - }, - "lusterPurge": { - name: "Scheinwerfer", - effect: "Angriff mit grellem Licht, der die Spezial-Verteidigung des Zieles eventuell senkt." - }, - "mistBall": { - name: "Nebelball", - effect: "Angriff mit einer Kugel aus Wasser, die Nebel enthält. Senkt eventuell den Spezial-Angriff des Zieles." - }, - "featherDance": { - name: "Daunenreigen", - effect: "Hüllt das Ziel in Daunen und senkt dessen Angriffs-Wert stark." - }, - "teeterDance": { - name: "Taumeltanz", - effect: "Ein Wackeltanz, der andere Pokémon in der Umgebung des Anwenders verwirrt." - }, - "blazeKick": { - name: "Feuerfeger", - effect: "Starker Tritt mit hoher Volltrefferquote. Verursacht eventuell Verbrennung." - }, - "mudSport": { - name: "Lehmsuhler", - effect: "Schwächt Elektro-Attacken, solang der Anwender am Kampf teilnimmt." - }, - "iceBall": { - name: "Frostbeule", - effect: "Attacke, die fünf Runden dauert. Die Härte nimmt von Mal zu Mal zu." - }, - "needleArm": { - name: "Nietenranke", - effect: "Angriff mit dornigen Armen. Das Ziel schreckt eventuell zurück." - }, - "slackOff": { - name: "Tagedieb", - effect: "Durch Müßiggang werden KP des Anwenders um 50 % der maximalen KP aufgefüllt." - }, - "hyperVoice": { - name: "Schallwelle", - effect: "Laute Attacke mit Schallwellen." - }, - "poisonFang": { - name: "Giftzahn", - effect: "Angriff mit giftigen Reißzähnen. Das Ziel wird eventuell schwer vergiftet." - }, - "crushClaw": { - name: "Zermalmklaue", - effect: "Angriff mit scharfen Klauen. Senkt eventuell den Verteidigungs-Wert." - }, - "blastBurn": { - name: "Lohekanonade", - effect: "Das Ziel wird von starker Explosion getroffen. Angreifer setzt eine Runde aus." - }, - "hydroCannon": { - name: "Aquahaubitze", - effect: "Das Ziel wird von Wasserkanone getroffen. Angreifer setzt eine Runde aus." - }, - "meteorMash": { - name: "Sternenhieb", - effect: "Angriff mit einem harten, schnellen Schlag. Erhöht eventuell Angriffs-Wert des Anwenders." - }, - "astonish": { - name: "Erstauner", - effect: "Anwender greift mit einem Schrei an. Ein Angriff, der das Ziel eventuell zurückschrecken lässt." - }, - "weatherBall": { - name: "Meteorologe", - effect: "Typ und Stärke der Attacke sind vom Wetter zum Zeitpunkt der Anwendung abhängig." - }, - "aromatherapy": { - name: "Aromakur", - effect: "Heilt alle Statusprobleme des Teams mit beruhigendem Duft." - }, - "fakeTears": { - name: "Trugträne", - effect: "Täuscht Weinen vor, um die Spezial-Verteidigung des Zieles stark zu senken." - }, - "airCutter": { - name: "Windschnitt", - effect: "Greift mit rasierklingenartigem Wind an. Hohe Volltrefferquote." - }, - "overheat": { - name: "Hitzekoller", - effect: "Angriff mit voller Kraft, der den Spezial-Angriff des Anwenders durch den Rückstoß stark senkt." - }, - "odorSleuth": { - name: "Schnüffler", - effect: "Erlaubt es, Geist-Pokémon mit Normal- und Kampf-Attacken anzugreifen. Ignoriert den Fluchtwert des Zieles." - }, - "rockTomb": { - name: "Felsgrab", - effect: "Angriff mit Felsen. Bei Erfolg wird der Initiative-Wert des Zieles gesenkt." - }, - "silverWind": { - name: "Silberhauch", - effect: "Angriff mit Silberstaub. Eventuell werden alle Statuswerte des Anwenders erhöht." - }, - "metalSound": { - name: "Metallsound", - effect: "Stößt einen spitzen Schrei aus, der die Spezial-Verteidigung des Zieles stark senkt." - }, - "grassWhistle": { - name: "Grasflöte", - effect: "Versetzt das Ziel durch eine schöne Melodie in Tiefschlaf." - }, - "tickle": { - name: "Spaßkanone", - effect: "Bringt das Ziel zum Lachen und senkt dadurch dessen Angriff und Verteidigung." - }, - "cosmicPower": { - name: "Kosmik-Kraft", - effect: "Erhöht Verteidigung und Spezial-Verteidigung durch eine mystische Kraft." - }, - "waterSpout": { - name: "Fontränen", - effect: "Wasser-Attacke, die wirkungsvoller ist, wenn KP des Anwenders hoch sind." - }, - "signalBeam": { - name: "Ampelleuchte", - effect: "Strahlenattacke, die das Ziel eventuell verwirrt." - }, - "shadowPunch": { - name: "Finsterfaust", - effect: "Angriff mit der Faust aus dem Schattenreich. Ausweichen unmöglich." - }, - "extrasensory": { - name: "Sondersensor", - effect: "Besonderer Angriff mit einer unsichtbaren Kraft, die das Ziel eventuell zurückschrecken lässt." - }, - "skyUppercut": { - name: "Himmelhieb", - effect: "Kinnhaken, der das Ziel gen Himmel schickt." - }, - "sandTomb": { - name: "Sandgrab", - effect: "Das Ziel leidet für vier bis fünf Runden in einer Sandhose." - }, - "sheerCold": { - name: "Eiseskälte", - effect: "Angriff mit Kälte, die das Ziel bei Erfolg besiegt." - }, - "muddyWater": { - name: "Lehmbrühe", - effect: "Greift mit Matsch an und senkt eventuell die Genauigkeit des Zieles." - }, - "bulletSeed": { - name: "Kugelsaat", - effect: "Der Anwender wirft zwei- bis fünfmal in rascher Folge Samen auf das Ziel." - }, - "aerialAce": { - name: "Aero-Ass", - effect: "Eine extrem schnelle Attacke, der das Ziel nicht ausweichen kann." - }, - "icicleSpear": { - name: "Eisspeer", - effect: "Feuert zwei bis fünf Eiszapfen auf das Ziel." - }, - "ironDefense": { - name: "Eisenabwehr", - effect: "Anwender stärkt den Körper, um den Verteidigungs-Wert stark zu erhöhen." - }, - "block": { - name: "Rückentzug", - effect: "Anwender versperrt den Fluchtweg des Zieles." - }, - "howl": { - name: "Jauler", - effect: "Anwender jault, um seinen Kampfgeist und seinen Angriffs-Wert zu erhöhen." - }, - "dragonClaw": { - name: "Drachenklaue", - effect: "Das Ziel wird mit riesigen, scharfen Klauen stark verletzt." - }, - "frenzyPlant": { - name: "Flora-Statue", - effect: "Angriff mit dickem Ast. Der Angreifer muss eine Runde aussetzen." - }, - "bulkUp": { - name: "Protzer", - effect: "Pumpt den Körper auf, um den Angriff und die Verteidigung zu erhöhen." - }, - "bounce": { - name: "Sprungfeder", - effect: "Angreifer springt und landet in der nächsten Runde auf dem Ziel. Das Ziel wird eventuell paralysiert." - }, - "mudShot": { - name: "Lehmschuss", - effect: "Angriff mit Lehm, der den Initiative-Wert des Zieles senkt." - }, - "poisonTail": { - name: "Giftschweif", - effect: "Angriff mit hoher Volltrefferquote. Diese Schweifattacke vergiftet das Ziel eventuell." - }, - "covet": { - name: "Bezirzer", - effect: "Bittet charmant um das getragene Item des Zieles und stiehlt es dann." - }, - "voltTackle": { - name: "Volttackle", - effect: "Angriff mit Elektro-Tackle. Der Anwender verletzt sich dabei. Das Ziel wird eventuell paralysiert." - }, - "magicalLeaf": { - name: "Zauberblatt", - effect: "Magischer Blattangriff, dem nicht auszuweichen ist." - }, - "waterSport": { - name: "Nassmacher", - effect: "Der Anwender lässt Wasser herabregnen und schwächt damit fünf Runden lang Feuer-Attacken." - }, - "calmMind": { - name: "Gedankengut", - effect: "Erhöht Spezial-Angriff und Spezial-Verteidigung durch Konzentration." - }, - "leafBlade": { - name: "Laubklinge", - effect: "Hieb mit scharfkantigem Blatt. Hohe Volltrefferquote." - }, - "dragonDance": { - name: "Drachentanz", - effect: "Ein mystischer Tanz, der den Angriffs- und Initiative-Wert erhöht." - }, - "rockBlast": { - name: "Felswurf", - effect: "Wirft zwei- bis fünfmal in Folge Felsblöcke auf das Ziel." - }, - "shockWave": { - name: "Schockwelle", - effect: "Angriff mit schnellem Elektro-Schlag. Ausweichen nicht möglich." - }, - "waterPulse": { - name: "Aquawelle", - effect: "Angriff mit Wasserwelle, die das Ziel eventuell verwirren kann." - }, - "doomDesire": { - name: "Kismetwunsch", - effect: "Angriff mit gebündeltem Licht erfolgt zwei Runden nach Attackeneinsatz." - }, - "psychoBoost": { - name: "Psyschub", - effect: "Angriff mit voller Kraft, der den Spezial-Angriff des Anwenders durch den Rückstoß stark senkt." - }, - "roost": { - name: "Ruheort", - effect: "Anwender landet und ruht sich aus. KP des Anwenders werden um 50 % der maximalen KP aufgefüllt." - }, - "gravity": { - name: "Erdanziehung", - effect: "Die Gravitation wird für fünf Runden erhöht. Macht Fliegen unmöglich und verhindert Schwebe." - }, - "miracleEye": { - name: "Wunderauge", - effect: "Erlaubt es, Unlicht-Pokémon mit Psycho-Attacken anzugreifen. Ignoriert den Fluchtwert des Zieles." - }, - "wakeUpSlap": { - name: "Weckruf", - effect: "Richtet großen Schaden bei einem schlafenden Ziel an, weckt es aber auch auf." - }, - "hammerArm": { - name: "Hammerarm", - effect: "Anwender trifft mit einem starken Hieb. Senkt Initiative des Anwenders." - }, - "gyroBall": { - name: "Gyroball", - effect: "Angriff mit hoher Geschwindigkeit. Je niedriger die Initiative des Anwenders, desto höher der Schaden." - }, - "healingWish": { - name: "Heilopfer", - effect: "Anwender geht K.O. Das an seine Stelle tretende Pokémon hat volle KP. Statusprobleme werden geheilt." - }, - "brine": { - name: "Lake", - effect: "Hat das Ziel die Hälfte oder weniger seiner maximalen KP, trifft diese Attacke mit doppelter Kraft." - }, - "naturalGift": { - name: "Beerenkräfte", - effect: "Anwender zieht aus seiner derzeitigen Beere Kraft. Sie bestimmt Typ und Stärke der Attacke." - }, - "feint": { - name: "Offenlegung", - effect: "Ziele, die Schutzschild oder Scanner verwenden, werden getroffen. Entfernt Effekte dieser Attacken." - }, - "pluck": { - name: "Pflücker", - effect: "Anwender pickt das Ziel, nimmt die Beere, falls das Ziel eine trägt, und erhält ihren Effekt." - }, - "tailwind": { - name: "Rückenwind", - effect: "Anwender erzeugt einen Wirbelwind, der die Initiative aller Pokémon im Team für vier Runden steigert." - }, - "acupressure": { - name: "Akupressur", - effect: "Anwender erhöht Druck auf Stresspunkte und steigert einen Statuswert stark." - }, - "metalBurst": { - name: "Metallstoß", - effect: "Attacke mit großer Kraft gegen das Ziel, das dem Anwender in derselben Runde zuletzt Schaden zufügte." - }, - "uTurn": { - name: "Kehrtwende", - effect: "Nach der Attacke eilt der Anwender zurück und tauscht den Platz mit einem anderen Pokémon." - }, - "closeCombat": { - name: "Nahkampf", - effect: "Nahkampf-Attacke ohne Rücksicht auf Verluste. Senkt Verteidigung und Spezial-Verteidigung des Anwenders." - }, - "payback": { - name: "Gegenstoß", - effect: "Der Anwender lädt die Attacke auf. Handelt das Ziel vor dem Anwender, verdoppelt sich die Kraft der Attacke." - }, - "assurance": { - name: "Gewissheit", - effect: "Hat das Ziel während der Runde schon Schaden genommen, wird die Kraft der Attacke verdoppelt." - }, - "embargo": { - name: "Itemsperre", - effect: "Verhindert, dass auf das Ziel Items verwendet werden." - }, - "fling": { - name: "Schleuder", - effect: "Anwender schleudert sein Item auf das Ziel. Kraft und Effekt der Attacke hängen vom Item ab." - }, - "psychoShift": { - name: "Psybann", - effect: "Anwender nutzt seine Suggestivkräfte, um eigene Statusprobleme auf das Ziel zu transferieren." - }, - "trumpCard": { - name: "Trumpfkarte", - effect: "Je weniger AP diese Attacke hat, desto mehr Angriffskraft besitzt sie." - }, - "healBlock": { - name: "Heilblockade", - effect: "Anwender verhindert für fünf Runden, dass Ziele durch Attacken, Fähigkeiten oder Items KP regenerieren." - }, - "wringOut": { - name: "Auswringen", - effect: "Anwender presst sein Ziel aus. Je höher die KP des Zieles, desto kraftvoller die Attacke." - }, - "powerTrick": { - name: "Krafttrick", - effect: "Anwender setzt Psycho-Kräfte ein, um eigenen Angriffs- mit Verteidigungs-Wert auszutauschen." - }, - "gastroAcid": { - name: "Magensäfte", - effect: "Anwender greift das Ziel mit eigenen Magensäften an. Entfernt Effekte von dessen Fähigkeit." - }, - "luckyChant": { - name: "Beschwörung", - effect: "Anwender singt eine Beschwörungsformel, die Volltreffer gegen ihn verhindert." - }, - "meFirst": { - name: "Egotrip", - effect: "Anwender stiehlt und führt die Attacke eines langsameren Zieles zuerst und mit größerer Kraft aus." - }, - "copycat": { - name: "Imitator", - effect: "Anwender imitiert gerade verwendete Attacke. Dies schlägt fehl, falls zuvor keine Attacke verwendet wurde." - }, - "powerSwap": { - name: "Krafttausch", - effect: "Psychische Kräfte tauschen Änderungen an Angriff und Spezial-Angriff mit denen des Zieles." - }, - "guardSwap": { - name: "Schutztausch", - effect: "Psychische Kräfte tauschen Änderungen an Verteidigung und Spezial-Verteidigung mit denen des Zieles." - }, - "punishment": { - name: "Strafattacke", - effect: "Je stärker das Ziel durch Statusveränderungen ist, desto stärker wirkt diese Attacke." - }, - "lastResort": { - name: "Zuflucht", - effect: "Diese Attacke kann nur eingesetzt werden, nachdem alle verfügbaren Attacken ausgeführt worden sind." - }, - "worrySeed": { - name: "Sorgensamen", - effect: "Ziel wird bepflanzt. Wandelt Fähigkeit in Insomnia um. Verhindert so Schlaf." - }, - "suckerPunch": { - name: "Tiefschlag", - effect: "Ermöglicht den Erstschlag. Gelingt aber nur, wenn das Ziel gerade eine Attacke vorbereitet." - }, - "toxicSpikes": { - name: "Giftspitzen", - effect: "Anwender legt eine Falle mit Giftdornen aus. In den Kampf eingewechselte gegnerische Pokémon werden vergiftet." - }, - "heartSwap": { - name: "Statustausch", - effect: "Anwender setzt Psycho-Kräfte ein, um Statusveränderungen des Zieles mit den eigenen zu tauschen." - }, - "aquaRing": { - name: "Wasserring", - effect: "Anwender umgibt sich mit einem Schleier aus Wasser. Dabei regeneriert er einige KP pro Runde." - }, - "magnetRise": { - name: "Magnetflug", - effect: "Anwender schwebt für fünf Runden durch elektrisch erzeugten Magnetismus." - }, - "flareBlitz": { - name: "Flammenblitz", - effect: "Anwender hüllt sich in Flammen und stürmt auf das Ziel zu, das sich eventuell verbrennt. Anwender nimmt selbst großen Schaden." - }, - "forcePalm": { - name: "Kraftwelle", - effect: "Das Ziel wird mit einer Schockwelle angegriffen, die es eventuell paralysiert." - }, - "auraSphere": { - name: "Aurasphäre", - effect: "Tief aus dem Inneren des Anwenders löst sich ein kraftvoller Stoß Auraenergie. Trifft in jedem Fall." - }, - "rockPolish": { - name: "Steinpolitur", - effect: "Anwender reduziert so gut wie möglich den Luftwiderstand. Kann Initiative-Wert stark steigern." - }, - "poisonJab": { - name: "Gifthieb", - effect: "Ziel wird mit vergiftetem Arm oder Tentakel verletzt. Es wird dabei eventuell vergiftet." - }, - "darkPulse": { - name: "Finsteraura", - effect: "Anwender greift mit fürchterlicher Aura schlechter Gedanken an. Ziel schreckt eventuell zurück." - }, - "nightSlash": { - name: "Nachthieb", - effect: "Anwender greift bei der ersten Gelegenheit mit scharfen Klauen an. Hohe Volltrefferquote." - }, - "aquaTail": { - name: "Nassschweif", - effect: "Anwender attackiert mit dem Schweif, als ob dieser eine brutale Welle in einem tosenden Sturm sei." - }, - "seedBomb": { - name: "Samenbomben", - effect: "Anwender lässt eine Menge Samen mit harter Schale von oben auf das Ziel fallen." - }, - "airSlash": { - name: "Luftschnitt", - effect: "Das Ziel wird mit einer Luftklinge angegriffen. Ziel schreckt eventuell zurück." - }, - "xScissor": { - name: "Kreuzschere", - effect: "Der Anwender führt eine Attacke aus, die einer Scherenbewegung ähnelt." - }, - "bugBuzz": { - name: "Käfergebrumm", - effect: "Anwender schlägt mit den Flügeln und erzeugt eine Schockwelle. Senkt eventuell Spezial-Verteidigung des Zieles." - }, - "dragonPulse": { - name: "Drachenpuls", - effect: "Das Ziel wird mit einer Schockwelle angegriffen, die aus dem offenen Maul des Anwenders kommt." - }, - "dragonRush": { - name: "Drachenstoß", - effect: "Anwender führt einen gefährlichen Angriff aus. Das Ziel schreckt eventuell zurück." - }, - "powerGem": { - name: "Juwelenkraft", - effect: "Anwender attackiert mit einem Lichtstrahl, der funkelt, als sei er aus Juwelen." - }, - "drainPunch": { - name: "Ableithieb", - effect: "Entzieht dem Ziel Energie. Die Hälfte des Schadens wird den KP des Anwenders zugerechnet." - }, - "vacuumWave": { - name: "Vakuumwelle", - effect: "Ein Faustwirbel sendet eine Vakuumwelle auf das Ziel. Erstschlaggarantie." - }, - "focusBlast": { - name: "Fokusstoß", - effect: "Anwender erhöht seinen mentalen Fokus und greift dann an. Senkt eventuell Spezial-Verteidigung des Zieles." - }, - "energyBall": { - name: "Energieball", - effect: "Anwender zieht Kraft aus der Natur und feuert sie auf das Ziel. Senkt eventuell Spezial-Verteidigung des Zieles." - }, - "braveBird": { - name: "Sturzflug", - effect: "Anwender greift aus niedriger Höhe an. Er erleidet bei dieser Attacke selbst großen Schaden." - }, - "earthPower": { - name: "Erdkräfte", - effect: "Der Boden unter dem Ziel erzittert durch die Kraft der Erde. Senkt eventuell Spezial-Verteidigung." - }, - "switcheroo": { - name: "Wechseldich", - effect: "Item wird in Windeseile mit dem Ziel getauscht." - }, - "gigaImpact": { - name: "Gigastoß", - effect: "Anwender rennt mit seiner ganzen Kraft gegen das Ziel an und muss dann eine Runde ruhen." - }, - "nastyPlot": { - name: "Ränkeschmied", - effect: "Anwender stimuliert sein Gehirn und hat finstere Gedanken. Steigert Spezial-Angriff stark." - }, - "bulletPunch": { - name: "Patronenhieb", - effect: "Das Ziel wird von ultraschnellen Hieben getroffen. Erstschlaggarantie." - }, - "avalanche": { - name: "Lawine", - effect: "Wurde der Anwender in dieser Runde vom Ziel getroffen, macht diese Attacke doppelten Schaden." - }, - "iceShard": { - name: "Eissplitter", - effect: "Das Ziel wird mit Eisklumpen beworfen. Diese Attacke hat Erstschlaggarantie." - }, - "shadowClaw": { - name: "Dunkelklaue", - effect: "Das Ziel wird mit scharfen Klauen aus der Schattenwelt attackiert. Hohe Volltrefferquote." - }, - "thunderFang": { - name: "Donnerzahn", - effect: "Anwender beißt mit elektrifizierten Reißzähnen zu. Das Ziel schreckt eventuell zurück oder wird paralysiert." - }, - "iceFang": { - name: "Eiszahn", - effect: "Anwender beißt mit eiskalten Reißzähnen zu. Ziel schreckt eventuell zurück oder friert ein." - }, - "fireFang": { - name: "Feuerzahn", - effect: "Anwender beißt mit flammenden Reißzähnen zu. Ziel schreckt eventuell zurück oder verbrennt sich." - }, - "shadowSneak": { - name: "Schattenstoß", - effect: "Anwender erweitert Schatten und greift das Ziel von hinten an. Erstschlaggarantie." - }, - "mudBomb": { - name: "Schlammbombe", - effect: "Anwender greift mit einem festen Schlammklumpen an. Senkt eventuell Genauigkeit des Zieles." - }, - "psychoCut": { - name: "Psychoklinge", - effect: "Das Ziel wird mit Klingen attackiert, die aus Psycho-Energie bestehen. Hohe Volltrefferquote." - }, - "zenHeadbutt": { - name: "Zen-Kopfstoß", - effect: "Anwender konzentriert seinen Willen und rammt das Ziel. Dieses schreckt eventuell zurück." - }, - "mirrorShot": { - name: "Spiegelsalve", - effect: "Anwender feuert Energiestrahl aus seinem Körper ab. Senkt eventuell Genauigkeit des Zieles." - }, - "flashCannon": { - name: "Lichtkanone", - effect: "Anwender sammelt Lichtenergie und feuert sie auf einmal ab. Senkt eventuell Spezial-Verteidigung des Zieles." - }, - "rockClimb": { - name: "Kraxler", - effect: "Eine stürmische Attacke, die das Ziel eventuell verwirrt." - }, - "defog": { - name: "Auflockern", - effect: "Starker Wind hebt Attacken wie Reflektor und Lichtschild des Zieles auf. Senkt außerdem den Fluchtwert." - }, - "trickRoom": { - name: "Bizarroraum", - effect: "Anwender erzeugt einen bizarren Raum, in dem langsame Pokémon fünf Runden lang zuerst agieren." - }, - "dracoMeteor": { - name: "Draco Meteor", - effect: "Kometen werden heraufbeschworen. Der Rückstoß reduziert den Spezial-Angriff des Anwenders stark." - }, - "discharge": { - name: "Ladungsstoß", - effect: "Anwender greift alle Pokémon im Umkreis mit Elektrizität an. Diese werden eventuell auch paralysiert." - }, - "lavaPlume": { - name: "Flammensturm", - effect: "Greift alles in seiner Umgebung mit tiefroten Flammen an. Ziel kann Verbrennungen erleiden." - }, - "leafStorm": { - name: "Blättersturm", - effect: "Anwender erzeugt einen Sturm aus scharfen Blättern. Rückstoß senkt Spezial-Angriff des Anwenders stark." - }, - "powerWhip": { - name: "Blattgeißel", - effect: "Anwender wirbelt seine Ranken oder Tentakel peitschenartig gegen das Ziel." - }, - "rockWrecker": { - name: "Felswerfer", - effect: "Anwender wirft einen riesigen Felsen auf das Ziel. In der nächsten Runde muss der Anwender ruhen." - }, - "crossPoison": { - name: "Giftstreich", - effect: "Ein schneidender Hieb, der das Ziel eventuell vergiftet. Hat eine hohe Volltrefferquote." - }, - "gunkShot": { - name: "Mülltreffer", - effect: "Anwender schießt mit Müll auf das Ziel. Vergiftet dieses eventuell." - }, - "ironHead": { - name: "Eisenschädel", - effect: "Ziel wird durch stahlharten Kopf des Anwenders getroffen und schreckt eventuell zurück." - }, - "magnetBomb": { - name: "Magnetbombe", - effect: "Ziel wird durch Haftbomben getroffen. Diese Attacke trifft immer." - }, - "stoneEdge": { - name: "Steinkante", - effect: "Anwender sticht das Ziel mit spitzen Steinen. Hohe Volltrefferquote." - }, - "captivate": { - name: "Liebreiz", - effect: "Charme-Attacke, die den Spezial-Angriff des Zieles stark senkt, falls es dem anderen Geschlecht angehört." - }, - "stealthRock": { - name: "Tarnsteine", - effect: "Falle mit schwebenden Steinen. In den Kampf eingewechselte Ziele nehmen Schaden." - }, - "grassKnot": { - name: "Strauchler", - effect: "Ziel wird durch Gras ins Straucheln gebracht. Je schwerer das Ziel, desto mehr Schaden." - }, - "chatter": { - name: "Geschwätz", - effect: "Attacke mit Schallwellen. Verwirrt das Ziel." - }, - "judgment": { - name: "Urteilskraft", - effect: "Anwender feuert unzählige Lichtstrahlen ab. Deren Typ hängt von der gehaltenen Tafel ab." - }, - "bugBite": { - name: "Käferbiss", - effect: "Anwender beißt das Ziel. Trägt dieses eine Beere, isst der Anwender sie und erhält ihren Effekt." - }, - "chargeBeam": { - name: "Ladestrahl", - effect: "Ziel wird von einem Elektrostrahl getroffen. Steigert eventuell Spezial-Angriff des Anwenders." - }, - "woodHammer": { - name: "Holzhammer", - effect: "Anwender attackiert mit seinem robusten Körper. Er erleidet dabei auch selbst großen Schaden." - }, - "aquaJet": { - name: "Wasserdüse", - effect: "Bei dieser Erstschlag-Attacke stürzt sich der Anwender so schnell auf das Ziel, dass er quasi unsichtbar wird." - }, - "attackOrder": { - name: "Schlagbefehl", - effect: "Anwender ruft seine Untergebenen zum Angriff. Hat eine hohe Volltrefferquote." - }, - "defendOrder": { - name: "Blockbefehl", - effect: "Untergebene bilden einen lebenden Schild um den Anwender. Steigert Verteidigung und Spezial-Verteidigung." - }, - "healOrder": { - name: "Heilbefehl", - effect: "Untergebene heilen den Anwender. KP des Anwenders werden um 50 % der maximalen KP aufgefüllt." - }, - "headSmash": { - name: "Kopfstoß", - effect: "Anwender greift unter Einsatz seines Lebens mit einem Kopfstoß an und nimmt dabei selbst jede Menge Schaden." - }, - "doubleHit": { - name: "Doppelschlag", - effect: "Anwender trifft das Ziel mit dem Schweif oder Ähnlichem. Ziel wird doppelt getroffen." - }, - "roarOfTime": { - name: "Zeitenlärm", - effect: "Anwender attackiert mit einer Kraft, die selbst die Zeit verzerrt. In der nächsten Runde muss er ruhen." - }, - "spacialRend": { - name: "Raumschlag", - effect: "Schwere, raumgreifende Attacke. Hohe Volltrefferquote." - }, - "lunarDance": { - name: "Lunartanz", - effect: "Anwender geht K.O. Das an seine Stelle tretende Pokémon hat dafür volle KP und AP. Statusprobleme werden geheilt." - }, - "crushGrip": { - name: "Quetschgriff", - effect: "Ziel wird mit großer Kraft getroffen. Je höher die KP des Zieles, desto stärker die Attacke." - }, - "magmaStorm": { - name: "Lavasturm", - effect: "Das Ziel wird in einen Feuersog gezogen, der vier bis fünf Runden aktiv ist." - }, - "darkVoid": { - name: "Schlummerort", - effect: "Das Ziel wird in eine Welt der Dunkelheit gezogen und in Schlaf versetzt." - }, - "seedFlare": { - name: "Schocksamen", - effect: "Anwender erzeugt eine Schockwelle. Spezial-Verteidigung des Zieles wird stark gesenkt." - }, - "ominousWind": { - name: "Unheilböen", - effect: "Das Ziel treffen abscheuliche Winde. Steigert eventuell alle Statuswerte des Anwenders." - }, - "shadowForce": { - name: "Schemenkraft", - effect: "Anwender verschwindet in Runde 1 und attackiert in Runde 2. Trifft auch, wenn sich das Ziel selbst schützt." - }, - "honeClaws": { - name: "Klauenwetzer", - effect: "Wetzt seine Klauen, um sie zu schärfen. Erhöht Angriff und Genauigkeit des Anwenders." - }, - "wideGuard": { - name: "Rundumschutz", - effect: "Schützt eine Runde lang vor Angriffen, die alle Pokémon auf deiner Seite treffen." - }, - "guardSplit": { - name: "Schutzteiler", - effect: "Durch Psycho-Kräfte werden Verteidigung und Spezial-Verteidigung des Anwenders und des Zieles addiert und in zwei gleiche Hälften geteilt." - }, - "powerSplit": { - name: "Kraftteiler", - effect: "Durch Psycho-Kräfte werden Angriff und Spezial-Angriff des Anwenders und des Zieles addiert und in zwei gleiche Hälften geteilt." - }, - "wonderRoom": { - name: "Wunderraum", - effect: "Anwender erzeugt bizarren Raum, in dem über fünf Runden die Verteidigung aller Pokémon mit ihrer Spezial-Verteidigung getauscht wird." - }, - "psyshock": { - name: "Psychoschock", - effect: "Anwender erzeugt eine seltsame Energiewelle, die dem Ziel physischen Schaden zufügt." - }, - "venoshock": { - name: "Giftschock", - effect: "Überschüttet das Ziel mit einer speziellen toxischen Flüssigkeit. Doppelt so stark gegen vergiftete Ziele." - }, - "autotomize": { - name: "Autotomie", - effect: "Anwender trennt sich von überflüssigen Körperteilen und steigert seine Initiative stark. Sein Gewicht nimmt deutlich ab." - }, - "ragePowder": { - name: "Wutpulver", - effect: "Anwender zieht gegnerische Aufmerksamkeit und Angriffe auf sich, indem er ein Wut erzeugendes Pulver über sich streut." - }, - "telekinesis": { - name: "Telekinese", - effect: "Bringt das Ziel durch Psycho-Kräfte zum Schweben. Dieses lässt sich so über drei Runden hinweg besonders leicht treffen." - }, - "magicRoom": { - name: "Magieraum", - effect: "Anwender erzeugt einen bizarren Raum, in dem über fünf Runden die Wirkung aller von Pokémon getragenen Items aufgehoben ist." - }, - "smackDown": { - name: "Katapult", - effect: "Greift das Ziel mit Steinen und Wurfgeschossen an. Fliegende Ziele fallen dabei vom Himmel und landen auf dem Boden." - }, - "stormThrow": { - name: "Bergsturm", - effect: "Ein Angriff mit voller Wucht und Volltreffergarantie." - }, - "flameBurst": { - name: "Funkenflug", - effect: "Bei Erfolg greift der Anwender mit berstenden Feuerblasen an. Die Funken der geplatzten Blasen treffen auch benachbarte Ziele." - }, - "sludgeWave": { - name: "Schlammwoge", - effect: "Greift Pokémon in der Nähe des Anwenders mit einer Schlammwelle an. Diese werden eventuell vergiftet." - }, - "quiverDance": { - name: "Falterreigen", - effect: "Anwender legt behände einen mystischen, formvollendeten Tanz aufs Parkett. Spezial-Angriff, Spezial-Verteidigung und Initiative steigen." - }, - "heavySlam": { - name: "Rammboss", - effect: "Anwender rammt das Ziel mit massivem Körper. Je schwerer er im Vergleich zum Ziel ist, desto stärker die Attacke." - }, - "synchronoise": { - name: "Synchrolärm", - effect: "Fügt Pokémon vom selben Typ, die sich in der Nähe des Anwenders aufhalten, mit seltsamen Druckwellen Schaden zu." - }, - "electroBall": { - name: "Elektroball", - effect: "Je höher die Initiative des Anwenders im Vergleich zum Ziel ist, desto stärker trifft dieses eine geballte Ladung Strom." - }, - "soak": { - name: "Überflutung", - effect: "Überschüttet das Ziel mit Unmengen an Wasser und ändert den Typ damit in Wasser um." - }, - "flameCharge": { - name: "Nitroladung", - effect: "Anwender hüllt sich in Flammen und greift das Ziel an. Sammelt seine Energie und erhöht dadurch die eigene Initiative." - }, - "coil": { - name: "Einrollen", - effect: "Anwender rollt sich zusammen und sammelt sich. Dabei werden Angriff, Verteidigung und Genauigkeit erhöht." - }, - "lowSweep": { - name: "Fußtritt", - effect: "Anwender greift mit blitzschnellen Bewegungen die Beine des Zieles an und senkt dessen Initiative." - }, - "acidSpray": { - name: "Säurespeier", - effect: "Anwender greift an, indem er eine ätzende Flüssigkeit auf das Ziel speit. Senkt dessen Spezial-Verteidigung stark." - }, - "foulPlay": { - name: "Schmarotzer", - effect: "Anwender macht sich die Kraft des Zieles zunutze. Je höher dessen Angriff, desto mehr Schaden richtet die Attacke an." - }, - "simpleBeam": { - name: "Wankelstrahl", - effect: "Bestrahlt das Ziel mit mysteriösen Energiewellen. Bei einem Treffer wird dessen Fähigkeit zu Wankelmut." - }, - "entrainment": { - name: "Zwango", - effect: "Anwender tanzt zu einem seltsamem Rhythmus und zwingt das Ziel mitzumachen. Dieses nimmt dabei die Fähigkeit des Anwenders an." - }, - "afterYou": { - name: "Galanterie", - effect: "Anwender ermöglicht dem Ziel direkt nach ihm zu handeln, solange der Anwender als Erstes zum Zug kommt." - }, - "round": { - name: "Kanon", - effect: "Angriff mit Gesang. Singt der Anwender mit allen im Kanon, steigt die Stärke." - }, - "echoedVoice": { - name: "Widerhall", - effect: "Angriff mit widerhallender Stimme. Wenn in jeder Runde ein Teilnehmer wiederholt die Attacke einsetzt, steigt die Stärke." - }, - "chipAway": { - name: "Zermürben", - effect: "Eine durchdachte Attacke zu rechter Zeit. Richtet unabhängig von den Statusveränderungen des Zieles Schaden an." - }, - "clearSmog": { - name: "Klärsmog", - effect: "Anwender greift das Ziel mit spezialgefertigten Schlammklumpen an. Setzt Statusveränderungen zurück." - }, - "storedPower": { - name: "Kraftvorrat", - effect: "Angriff mit angesparter Energie. Je höher die Statuswerte des Anwenders, desto stärker fällt die Attacke aus." - }, - "quickGuard": { - name: "Rapidschutz", - effect: "Schützt Anwender und Mitstreiter vor gegnerischen Erstschlag-Attacken." - }, - "allySwitch": { - name: "Seitentausch", - effect: "Wundersame Kräfte teleportieren den Anwender an den Platz eines Mitstreiters." - }, - "scald": { - name: "Siedewasser", - effect: "Heizt dem Ziel mit einem Schwall siedend heißen Kochwassers ein. Das Ziel erleidet dabei eventuell Verbrennungen." - }, - "shellSmash": { - name: "Hausbruch", - effect: "Anwender zerbricht seine Schale und senkt seine Verteidigung und Spezial-Verteidigung, aber dafür steigen Angriff, Spezial-Angriff und Initiative stark." - }, - "healPulse": { - name: "Heilwoge", - effect: "Anwender löst eine Schmerzen lindernde Welle aus und heilt dabei das Ziel mit der Hälfte seiner maximalen KP." - }, - "hex": { - name: "Bürde", - effect: "Eine Attacke, bei der der Anwender das Ziel bedrängt. Fügt Zielen mit Statusproblemen hohen Schaden zu." - }, - "skyDrop": { - name: "Freier Fall", - effect: "Steigt in Runde 1 mit dem Ziel in die Luft auf und lässt es in Runde 2 fallen. Das Ziel kann dabei nicht angreifen." - }, - "shiftGear": { - name: "Gangwechsel", - effect: "Durch Drehen der Zahnräder erhöht sich nicht nur der Angriffs-Wert, sondern auch die Initiative des Anwenders stark." - }, - "circleThrow": { - name: "Überkopfwurf", - effect: "Schleudert das Ziel davon und bewirkt damit, dass ein anderes Pokémon eingewechselt wird. Beendet Kämpfe gegen wilde Pokémon." - }, - "incinerate": { - name: "Einäschern", - effect: "Eine Feuer-Attacke. Trägt das Ziel eine Beere oder ein ähnliches Item bei sich, wird dieses von den Flammen verzehrt und geht verloren." - }, - "quash": { - name: "Verzögerung", - effect: "Anwender stemmt sich gegen das Ziel und bewirkt, dass dieses erst als Letztes angreift." - }, - "acrobatics": { - name: "Akrobatik", - effect: "Ein graziler Angriff auf das Ziel. Trägt der Anwender kein Item bei sich, richtet die Attacke großen Schaden an." - }, - "reflectType": { - name: "Typenspiegel", - effect: "Anwender bildet das Ziel nach und nimmt dabei dessen Typ an." - }, - "retaliate": { - name: "Heimzahlung", - effect: "Anwender nimmt Rache für einen besiegten Mitstreiter. Wurde in der vorigen Runde ein Mitstreiter besiegt, steigt die Kraft." - }, - "finalGambit": { - name: "Wagemut", - effect: "Ein Angriff, der dem Ziel Schaden in Höhe der aktuellen KP des Anwenders zufügt. Letzterer wird dadurch selbst besiegt." - }, - "bestow": { - name: "Offerte", - effect: "Trägt das Ziel gerade kein Item bei sich, erhält es das Item, das sich aktuell im Besitz des Anwenders befindet." - }, - "inferno": { - name: "Inferno", - effect: "Anwender greift das Ziel an, indem er es mit dichten Flammen umhüllt. Ziel erleidet Verbrennungen." - }, - "waterPledge": { - name: "Wassersäulen", - effect: "Ein Angriff mit Wassersäulen. Mit Feuersäulen kombiniert steigt die Wirkung und ein Regenbogen erscheint." - }, - "firePledge": { - name: "Feuersäulen", - effect: "Ein Angriff mit Feuersäulen. Mit Pflanzsäulen kombiniert steigt die Wirkung und die Umgebung wird zu einem Meer aus Feuer." - }, - "grassPledge": { - name: "Pflanzensäulen", - effect: "Ein Angriff mit Pflanzsäulen. Mit Wassersäulen kombiniert steigt die Wirkung und die Umgebung wird zu einem Sumpf." - }, - "voltSwitch": { - name: "Voltwechsel", - effect: "Anwender kehrt nach dem Angriff mit atemberaubender Geschwindigkeit zurück und tauscht Platz mit einem anderen Pokémon." - }, - "struggleBug": { - name: "Käfertrutz", - effect: "Anwender leistet Widerstand und greift an. Der Spezial-Angriff der Ziele sinkt." - }, - "bulldoze": { - name: "Dampfwalze", - effect: "Anwender greift an, indem er den Boden um sich herum plattwalzt. Die Initiative aller betroffenen Pokémon sinkt." - }, - "frostBreath": { - name: "Eisesodem", - effect: "Anwender greift an, indem er dem Ziel eisigen Atem entgegenhaucht. Volltreffergarantie." - }, - "dragonTail": { - name: "Drachenrute", - effect: "Putzt das Ziel vom Feld und wechselt es mit einem anderen Pokémon aus. Beendet Kämpfe gegen wilde Pokémon." - }, - "workUp": { - name: "Kraftschub", - effect: "Anwender erhält einen Kraftschub, der seinen Angriff und Spezial-Angriff erhöht." - }, - "electroweb": { - name: "Elektronetz", - effect: "Fängt Ziele mit einem elektrischen Netz und senkt deren Initiative." - }, - "wildCharge": { - name: "Stromstoß", - effect: "Anwender erzeugt Spannung und greift an, indem er auf Kollisionskurs geht. Er selbst erleidet dabei ebenfalls leichten Schaden." - }, - "drillRun": { - name: "Schlagbohrer", - effect: "Anwender rammt das Ziel, während er seinen Körper wie einen Bohrer dreht. Hohe Volltrefferquote." - }, - "dualChop": { - name: "Doppelhieb", - effect: "Versetzt dem Ziel mit massiven Extremitäten Hiebe. Angriff erfolgt zweimal hintereinander." - }, - "heartStamp": { - name: "Herzstempel", - effect: "Verleitet Ziel durch Kokettieren zu Unachtsamkeit und verpasst ihm dann einen harten Schlag. Ziel schreckt eventuell zurück." - }, - "hornLeech": { - name: "Holzgeweih", - effect: "Greift Ziel mit Astgeweih an und zapft diesem Nährstoffe ab. Anwender wird um die Hälfte des zugefügten Schadens geheilt." - }, - "sacredSword": { - name: "Sanctoklinge", - effect: "Schneideangriff mit langem Horn. Richtet Schaden unabhängig von Statusveränderungen des Zieles an." - }, - "razorShell": { - name: "Kalkklinge", - effect: "Schneideangriff mit einer scharfen Muschelschale. Senkt eventuell die Verteidigung des Zieles." - }, - "heatCrash": { - name: "Brandstempel", - effect: "Rempelattacke mit brennendem Körper. Je schwerer der Anwender im Vergleich zum Ziel ist, desto stärker die Attacke." - }, - "leafTornado": { - name: "Grasmixer", - effect: "Anwender greift an, indem er das Ziel in scharfes Blattwerk einwickelt. Kann die Genauigkeit senken." - }, - "steamroller": { - name: "Quetschwalze", - effect: "Anwender rollt mit rundlichem Körper über das Ziel und drückt es platt. Ziel schreckt eventuell zurück." - }, - "cottonGuard": { - name: "Watteschild", - effect: "Anwender schützt sich, indem er sich in einen luftigen Flaum hüllt. Erhöht die Verteidigung drastisch." - }, - "nightDaze": { - name: "Nachtflut", - effect: "Anwender greift Ziel mit finsteren Schockwellen an. Senkt eventuell die Genauigkeit." - }, - "psystrike": { - name: "Psychostoß", - effect: "Anwender erzeugt seltsame Energiewellen, die dem Ziel physischen Schaden zufügen." - }, - "tailSlap": { - name: "Kehrschelle", - effect: "Anwender greift das Ziel mit seiner schlagfesten Rute zwei- bis fünfmal hintereinander an." - }, - "hurricane": { - name: "Orkan", - effect: "Anwender greift das Ziel an, indem er es mit heftigen Windböen umgibt. Ziel wird eventuell verwirrt." - }, - "headCharge": { - name: "Steinschädel", - effect: "Rempelattacke mit ausgeflippter Retrofrisur. Anwender nimmt selbst leichten Schaden." - }, - "gearGrind": { - name: "Klikkdiskus", - effect: "Anwender greift an, indem er stählerne Zahnräder auf das Ziel schleudert. Angriff erfolgt zweimal hintereinander." - }, - "searingShot": { - name: "Flammenball", - effect: "Greift alles in seiner Umgebung mit tiefroten Flammen an. Ziel kann Verbrennungen erleiden." - }, - "technoBlast": { - name: "Techblaster", - effect: "Anwender feuert ein Lichtgeschoss auf das Ziel ab. Der Typ der Attacke hängt von dem des Moduls ab." - }, - "relicSong": { - name: "Urgesang", - effect: "Anwender greift mit Urgesang an, der Ziele in der Nähe im tiefsten Inneren anspricht. Diese schlafen eventuell ein." - }, - "secretSword": { - name: "Mystoschwert", - effect: "Schneideangriff mit dem langen Schwert des Anwenders. Die mysteriöse Kraft aus dem Horn erzeugt physischen Schaden." - }, - "glaciate": { - name: "Eiszeit", - effect: "Anwender greift an, indem er dem Ziel klirrend kalte Luft entgegenbläst. Senkt die Initiative des Zieles." - }, - "boltStrike": { - name: "Blitzschlag", - effect: "Lädt seinen Körper mit einer gewaltigen Menge an Elektrizität auf und rammt damit das Ziel. Ziel wird eventuell paralysiert." - }, - "blueFlare": { - name: "Blauflammen", - effect: "Anwender greift an, indem er das Ziel in wunderschöne, intensivblaue Flammen hüllt, die es eventuell verbrennen." - }, - "fieryDance": { - name: "Feuerreigen", - effect: "Hüllt das Ziel mit einer Feuerhose in Flammen. Kann den Spezial-Angriff des Anwenders erhöhen." - }, - "freezeShock": { - name: "Frostvolt", - effect: "Feuert in der zweiten Runde elektrisch geladene Eisklumpen auf das Ziel ab. Paralysiert das Ziel eventuell." - }, - "iceBurn": { - name: "Frosthauch", - effect: "Umgibt das Ziel in der nächsten Runde mit heftigen, alles gefrierenden Eisböen. Fügt dem Ziel eventuell Verbrennungen zu." - }, - "snarl": { - name: "Standpauke", - effect: "Wäscht Zielen in der Nähe mit einer ausführlichen Standpauke den Kopf und senkt dabei deren Spezial-Angriff." - }, - "icicleCrash": { - name: "Eiszapfhagel", - effect: "Lässt große, schwere Eiszapfen auf das Ziel herabregnen. Ziel schreckt eventuell zurück." - }, - "vCreate": { - name: "V-Generator", - effect: "Eine Verzweiflungsattacke. Anwender entfacht glühend heißes Feuer. Senkt dessen Verteidigung, Spezial-Verteidigung und Initiative." - }, - "fusionFlare": { - name: "Kreuzflamme", - effect: "Feuert eine monströse Flamme ab. Wird die Attacke durch einen gigantischen Blitz modifiziert, steigt die Stärke." - }, - "fusionBolt": { - name: "Kreuzdonner", - effect: "Feuert einen monströsen Blitz ab. Wird die Attacke durch eine gigantische Flamme modifiziert, steigt die Stärke." - }, - "flyingPress": { - name: "Flying Press", - effect: "Der Anwender stürzt sich aus der Luft auf das Ziel. Die Attacke gehört sowohl dem Typ Kampf als auch dem Typ Flug an." - }, - "matBlock": { - name: "Tatami-Schild", - effect: "Der Anwender richtet eine Tatami-Matte auf, um sich und sein Team vor Schaden zu schützen. Kein Schutz vor Status-Attacken." - }, - "belch": { - name: "Rülpser", - effect: "Der Anwender fügt dem Ziel Schaden zu, indem er es anrülpst. Diese Attacke gelingt nur nach dem Konsum einer getragenen Beere." - }, - "rototiller": { - name: "Pflüger", - effect: "Der Anwender pflügt den Boden und macht die Erde fruchtbarer. Erhöht den Angriff und den Spezial-Angriff von Pflanzen-Pokémon." - }, - "stickyWeb": { - name: "Klebenetz", - effect: "Der Anwender spinnt in der Umgebung des gegnerischen Teams ein klebriges Netz und senkt so die Initiative neu eingewechselter Pokémon." - }, - "fellStinger": { - name: "Stachelfinale", - effect: "Gelingt es dem Anwender, das Ziel mit dieser Attacke zu besiegen, steigt sein Angriffs-Wert stark." - }, - "phantomForce": { - name: "Phantomkraft", - effect: "Der Anwender verschwindet, um eine Runde lang seine Kraft zu sammeln und in der nächsten Runde anzugreifen. Durchbricht die Defensive des Zieles." - }, - "trickOrTreat": { - name: "Halloween", - effect: "Der Anwender lehrt das Ziel das Fürchten. Dieses nimmt dadurch zusätzlich den Typ Geist an." - }, - "nobleRoar": { - name: "Kampfgebrüll", - effect: "Der Anwender stößt ein Kampfgebrüll aus, das das Ziel einschüchtert und zugleich seinen Angriffs- und Spezial-Angriffs-Wert senkt." - }, - "ionDeluge": { - name: "Plasmaschauer", - effect: "Versprüht elektrisch geladene Partikel und bewirkt, dass Normal-Attacken den Typ Elektro annehmen." - }, - "parabolicCharge": { - name: "Parabolladung", - effect: "Fügt allen Pokémon in der Umgebung Schaden zu. Der Anwender wird um die Hälfte des insgesamt angerichteten Schadens geheilt." - }, - "forestsCurse": { - name: "Waldesfluch", - effect: "Der Anwender belegt das Ziel mit einem Waldesfluch, durch den dieses zusätzlich den Typ Pflanze annimmt." - }, - "petalBlizzard": { - name: "Blütenwirbel", - effect: "Der Anwender erzeugt einen turbulenten Blütenwirbel, der alle Pokémon in der Nähe erfasst und ihnen Schaden zufügt." - }, - "freezeDry": { - name: "Gefriertrockner", - effect: "Das Ziel wird stark abgekühlt und manchmal sogar eingefroren. Die Attacke ist sehr effektiv gegen Wasser-Pokémon." - }, - "disarmingVoice": { - name: "Säuselstimme", - effect: "Der Anwender stößt einen bezirzenden Ruf aus, mit dem er das Ziel in seinen Bann schlägt und ihm immer mentalen Schaden zufügt." - }, - "partingShot": { - name: "Abgangstirade", - effect: "Schüchtert das Ziel mit einer Abgangstirade ein, sodass dessen Angriffs- und Spezial-Angriffs-Wert sinken. Danach wird der Anwender ausgewechselt." - }, - "topsyTurvy": { - name: "Invertigo", - effect: "Invertiert alle Statusveränderungen des Zieles." - }, - "drainingKiss": { - name: "Diebeskuss", - effect: "Der Anwender stiehlt dem Ziel mit einem Kuss KP. Die Höhe der Heilung beträgt mehr als die Hälfte des beim Ziel angerichteten Schadens." - }, - "craftyShield": { - name: "Trickschutz", - effect: "Schützt sich und Mitstreiter mit einer mysteriösen Macht vor Status-Attacken. Es werden jedoch weiterhin KP-Schäden erlitten." - }, - "flowerShield": { - name: "Floraschutz", - effect: "Erhöht mit einer mysteriösen Macht die Verteidigung aller am Kampf beteiligten Pflanzen-Pokémon." - }, - "grassyTerrain": { - name: "Grasfeld", - effect: "Verwandelt den Untergrund fünf Runden lang in ein Grasfeld und heilt in jeder neuen Runde alle Pokémon, die den Boden berühren." - }, - "mistyTerrain": { - name: "Nebelfeld", - effect: "Verwandelt den Untergrund fünf Runden lang in ein Nebelfeld und schützt alle Pokémon, die den Boden berühren, vor Statusproblemen." - }, - "electrify": { - name: "Elektrifizierung", - effect: "Kommt die Attacke zum Einsatz, bevor das Ziel seine Attacke ausführt, nimmt diese für die Dauer dieser Runde den Typ Elektro an." - }, - "playRough": { - name: "Knuddler", - effect: "Der Anwender knuddelt das Ziel und greift es an. Gelegentlich sinkt dabei auch dessen Angriffs-Wert." - }, - "fairyWind": { - name: "Feenbrise", - effect: "Lässt eine Feenbrise aufkommen, die das Ziel erfasst und ihm Schaden zufügt." - }, - "moonblast": { - name: "Mondgewalt", - effect: "Der Anwender macht sich die Kraft des Mondes zunutze, um anzugreifen. Gelegentlich wird dabei der Spezial-Angriff des Zieles gesenkt." - }, - "boomburst": { - name: "Überschallknall", - effect: "Der Anwender greift alle Pokémon in der Umgebung mit einem gewaltigen Knall an." - }, - "fairyLock": { - name: "Feenschloss", - effect: "Der Anwender sperrt alle Pokémon ein und hindert sie damit in der nächsten Runde an der Flucht." - }, - "kingsShield": { - name: "Königsschild", - effect: "Der Anwender weicht dem gegnerischen Angriff aus und geht in die Defensive. Berührt ihn nun ein Pokémon, sinkt der Angriffs-Wert dieses Gegners." - }, - "playNice": { - name: "Kameradschaft", - effect: "Der Anwender schließt mit dem Ziel Freundschaft und nimmt ihm seine Angriffslust. Der Angriffs-Wert des Zieles sinkt." - }, - "confide": { - name: "Vertrauenssache", - effect: "Der Anwender vertraut dem Ziel ein Geheimnis an und stört auf diese Weise seine Konzentration. Der Spezial-Angriff des Zieles sinkt." - }, - "diamondStorm": { - name: "Diamantsturm", - effect: "Der Anwender beschwört einen zerstörerischen Diamantsturm herauf. Kann die Verteidigung des Anwenders erhöhen." - }, - "steamEruption": { - name: "Dampfschwall", - effect: "Der Anwender feuert einen siedend heißen Dampfschwall auf das Ziel ab. Dieses kann dabei Verbrennungen erleiden." - }, - "hyperspaceHole": { - name: "Dimensionsloch", - effect: "Der Anwender positioniert sich mithilfe eines Dimensionslochs direkt neben dem Ziel und durchbricht selbst Schutzschild und Scanner." - }, - "waterShuriken": { - name: "Wasser-Shuriken", - effect: "Der Anwender schleudert dem Ziel Wurfsterne aus einem verdickten Sekret entgegen. Eine Serien-Attacke, die zwei- bis fünfmal trifft." - }, - "mysticalFire": { - name: "Magieflamme", - effect: "Der Anwender greift das Ziel an, indem er ihm eine besondere, heiße Flamme entgegenbläst. Der Spezial-Angriff des Zieles sinkt." - }, - "spikyShield": { - name: "Schutzstacheln", - effect: "Der Anwender weicht gegnerischen Angriffen aus. Gleichzeitig nehmen alle Pokémon, die mit ihm in Berührung kommen, Schaden." - }, - "aromaticMist": { - name: "Duftwolke", - effect: "Der Anwender erhöht mithilfe eines mysteriösen Duftes die Spezial-Verteidigung eines Mitstreiters." - }, - "eerieImpulse": { - name: "Mystowellen", - effect: "Der Körper des Anwenders erzeugt mysteriöse Wellen und senkt den Spezial-Angriff des Zieles dadurch stark." - }, - "venomDrench": { - name: "Giftfalle", - effect: "Anwender bespritzt das Ziel mit einer speziellen Giftflüssigkeit. Senkt den Angriff, den Spezial- Angriff und die Initiative von vergifteten Zielen." - }, - "powder": { - name: "Pulverschleuder", - effect: "Setzt das Ziel nach Einsatz von Pulverschleuder in derselben Runde eine Feuer-Attacke ein, kommt es zu einer Explosion, die ihm schadet." - }, - "geomancy": { - name: "Geokontrolle", - effect: "Der Anwender saugt in Runde 1 Energie auf. In Runde 2 steigen folgende Statuswerte stark: Spezial-Angriff, Spezial-Verteidigung und Initiative." - }, - "magneticFlux": { - name: "Magnetregler", - effect: "Das Magnetfeld wird so manipuliert, dass Spezial- Verteidigung und Verteidigung von Team-Pokémon mit der Fähigkeit Plus oder Minus steigen." - }, - "happyHour": { - name: "Goldene Zeiten", - effect: "Nach Einsatz der Attacke Goldene Zeiten verdoppelt sich das Preisgeld, das du im Falle eines Sieges erhältst." - }, - "electricTerrain": { - name: "Elektrofeld", - effect: "Verwandelt den Untergrund fünf Runden lang in ein Elektrofeld und hindert alle Pokémon, die den Boden berühren, am Einschlafen." - }, - "dazzlingGleam": { - name: "Zauberschein", - effect: "Der Anwender feuert einen mächtigen Lichtblitz ab, der dem Ziel Schaden zufügt." - }, - "celebrate": { - name: "Ehrentag", - effect: "Das Pokémon gratuliert dir zu deinem Geburtstag!" - }, - "holdHands": { - name: "Händchenhalten", - effect: "Der Anwender und ein Mitstreiter reichen einander die Hände und verfallen in einen Zustand tiefster Zufriedenheit." - }, - "babyDollEyes": { - name: "Kulleraugen", - effect: "Der Anwender erobert das Herz des Zieles, indem er es mit Kulleraugen ansieht. Senkt den Angriffs-Wert. Erstschlaggarantie." - }, - "nuzzle": { - name: "Wangenrubbler", - effect: "Der Anwender lädt seine Wangen elektrisch auf und greift an, indem er sich damit am Ziel reibt. Das Ziel wird paralysiert." - }, - "holdBack": { - name: "Zurückhaltung", - effect: "Der Anwender hält sich beim Angriff zurück und sorgt auf diese Weise dafür, dass dem Ziel danach mindestens 1 KP verbleibt." - }, - "infestation": { - name: "Plage", - effect: "Der Anwender fällt vier bis fünf Runden lang wie eine Plage über das Ziel her und greift es an. In diesem Zeitraum kann es nicht fliehen." - }, - "powerUpPunch": { - name: "Steigerungshieb", - effect: "Die Fäuste des Anwenders härten durch wiederholtes Zuschlagen ab. Mit jedem Treffer steigt sein Angriffs-Wert." - }, - "oblivionWing": { - name: "Unheilsschwingen", - effect: "Der Anwender raubt dem Ziel KP. Die Höhe der Heilung beträgt mehr als die Hälfte des beim Ziel angerichteten Schadens." - }, - "thousandArrows": { - name: "Tausend Pfeile", - effect: "Die Attacke erfasst auch schwebende Pokémon. Erfasst sie ein Pokémon im Schwebe-Zustand, fällt es zu Boden." - }, - "thousandWaves": { - name: "Tausend Wellen", - effect: "Der Anwender greift mit einer Welle an, die dicht über dem Boden verläuft und alle Pokémon, die sie erfasst, an der Flucht hindert." - }, - "landsWrath": { - name: "Bodengewalt", - effect: "Der Anwender sammelt die Kraft des weiten Landes und greift an, indem er sie gebündelt auf das Ziel lenkt." - }, - "lightOfRuin": { - name: "Lux Calamitatis", - effect: "Die Attacke basiert auf der Kraft des Ewigblütlers, die als mächtiger Lichtstrahl abgefeuert wird. Der Anwender nimmt dabei selbst großen Schaden." - }, - "originPulse": { - name: "Ursprungswoge", - effect: "Der Anwender greift das Ziel mit unzähligen blau leuchtenden Strahlen an." - }, - "precipiceBlades": { - name: "Abgrundsklinge", - effect: "Der Anwender wandelt die Kraft des Erdreichs in Klingen um, mit denen er das Ziel angreift." - }, - "dragonAscent": { - name: "Zenitstürmer", - effect: "Der Anwender greift das Ziel aus atemberaubender Höhe im Sturzflug an. Senkt Verteidigung und Spezial-Verteidigung des Anwenders." - }, - "hyperspaceFury": { - name: "Dimensionswahn", - effect: "Eine Angriffsserie mit vielen Armen, die die Wirkung von Schutzschild und Scanner durchbricht. Dabei sinkt die Verteidigung des Anwenders." - }, - "breakneckBlitzPhysical": { - name: "Hyper-Sprintangriff", - effect: "Der durch Z-Kraft energiegeladene Anwender rennt mit ganzer Kraft gegen das Ziel. Die Stärke variiert je nach zugrunde liegender Attacke." - }, - "breakneckBlitzSpecial": { - name: "Hyper-Sprintangriff", - effect: "Dummy Data" - }, - "allOutPummelingPhysical": { - name: "Fulminante Faustschläge", - effect: "Aus Z-Kraft hergestellte Energiebälle prallen mit voller Wucht auf das Ziel. Die Stärke variiert je nach zugrunde liegender Attacke." - }, - "allOutPummelingSpecial": { - name: "Fulminante Faustschläge", - effect: "Dummy Data" - }, - "supersonicSkystrikePhysical": { - name: "Finaler Steilflug", - effect: "Der Anwender schwingt sich durch Z-Kraft in die Lüfte und stürzt sich dann auf das Ziel hinab. Die Stärke variiert je nach zugrunde liegender Attacke." - }, - "supersonicSkystrikeSpecial": { - name: "Finaler Steilflug", - effect: "Dummy Data" - }, - "acidDownpourPhysical": { - name: "Vernichtender Säureregen", - effect: "Der Anwender kreiert mit Z-Kraft ein giftiges Moor, in dem das Ziel versinkt. Die Stärke variiert je nach zugrunde liegender Attacke." - }, - "acidDownpourSpecial": { - name: "Vernichtender Säureregen", - effect: "Dummy Data" - }, - "tectonicRagePhysical": { - name: "Seismische Eruption", - effect: "Der Anwender zerrt das Ziel mit Z-Kraft tief in den Boden und kollidiert dort mit ihm. Die Stärke variiert je nach zugrunde liegender Attacke." - }, - "tectonicRageSpecial": { - name: "Seismische Eruption", - effect: "Dummy Data" - }, - "continentalCrushPhysical": { - name: "Apokalyptische Steinpresse", - effect: "Der Anwender beschwört mit Z-Kraft einen großen Felsen herbei und lässt ihn auf das Ziel fallen. Die Stärke variiert je nach zugrunde liegender Attacke." - }, - "continentalCrushSpecial": { - name: "Apokalyptische Steinpresse", - effect: "Dummy Data" - }, - "savageSpinOutPhysical": { - name: "Wirbelnder Insektenhieb", - effect: "Mithilfe von Z-Kraft umwickelt der Anwender das Ziel mit Fäden. Die Stärke variiert je nach zugrunde liegender Attacke." - }, - "savageSpinOutSpecial": { - name: "Wirbelnder Insektenhieb", - effect: "Dummy Data" - }, - "neverEndingNightmarePhysical": { - name: "Ewige Nacht", - effect: "Der Anwender beschwört mit Z-Kraft tiefen Groll herbei und lässt diesen auf das Ziel los. Die Stärke variiert je nach zugrunde liegender Attacke." - }, - "neverEndingNightmareSpecial": { - name: "Ewige Nacht", - effect: "Dummy Data" - }, - "corkscrewCrashPhysical": { - name: "Turbo-Spiralkombo", - effect: "Der Anwender wirbelt durch Z-Kraft sehr schnell umher und prallt mit dem Ziel zusammen. Die Stärke variiert je nach zugrunde liegender Attacke." - }, - "corkscrewCrashSpecial": { - name: "Turbo-Spiralkombo", - effect: "Dummy Data" - }, - "infernoOverdrivePhysical": { - name: "Dynamische Maxiflamme", - effect: "Der Anwender speit dank Z-Kraft eine gewaltige Kugel aus Flammen auf das Ziel. Die Stärke variiert je nach zugrunde liegender Attacke." - }, - "infernoOverdriveSpecial": { - name: "Dynamische Maxiflamme", - effect: "Dummy Data" - }, - "hydroVortexPhysical": { - name: "Super-Wassertornado", - effect: "Der Anwender kreiert mit Z-Kraft einen riesigen Wasserstrudel, der das Ziel verschluckt. Die Stärke variiert je nach zugrunde liegender Attacke." - }, - "hydroVortexSpecial": { - name: "Super-Wassertornado", - effect: "Dummy Data" - }, - "bloomDoomPhysical": { - name: "Brillante Blütenpracht", - effect: "Der Anwender leiht sich durch Z-Kraft die Energie von Wiesenblumen und greift das Ziel damit an. Die Stärke variiert je nach zugrunde liegender Attacke." - }, - "bloomDoomSpecial": { - name: "Brillante Blütenpracht", - effect: "Dummy Data" - }, - "gigavoltHavocPhysical": { - name: "Gigavolt-Funkensalve", - effect: "Der Anwender greift das Ziel mit durch Z-Kraft gesammelter starker Elektrizität an. Die Stärke variiert je nach zugrunde liegender Attacke." - }, - "gigavoltHavocSpecial": { - name: "Gigavolt-Funkensalve", - effect: "Dummy Data" - }, - "shatteredPsychePhysical": { - name: "Psycho-Schmetterschlag", - effect: "Der Anwender kontrolliert das Ziel mit Z-Kraft und macht ihm so das Leben schwer. Die Stärke variiert je nach zugrunde liegender Attacke." - }, - "shatteredPsycheSpecial": { - name: "Psycho-Schmetterschlag", - effect: "Dummy Data" - }, - "subzeroSlammerPhysical": { - name: "Tobender Geofrost", - effect: "Der Anwender senkt mit Z-Kraft die Temperatur drastisch und lässt das Ziel einfrieren. Die Stärke variiert je nach zugrunde liegender Attacke." - }, - "subzeroSlammerSpecial": { - name: "Tobender Geofrost", - effect: "Dummy Data" - }, - "devastatingDrakePhysical": { - name: "Drastisches Drachendröhnen", - effect: "Der Anwender materialisiert durch Z-Kraft seine Aura und greift damit das Ziel an. Die Stärke variiert je nach zugrunde liegender Attacke." - }, - "devastatingDrakeSpecial": { - name: "Drastisches Drachendröhnen", - effect: "Dummy Data" - }, - "blackHoleEclipsePhysical": { - name: "Schwarzes Loch des Grauens", - effect: "Der Anwender sammelt mit Z-Kraft dunkle Energie an, die das Ziel verschlingt. Die Stärke variiert je nach zugrunde liegender Attacke." - }, - "blackHoleEclipseSpecial": { - name: "Black Hole Eclipse", - effect: "Dummy Data" - }, - "twinkleTacklePhysical": { - name: "Entzückender Sternenstoß", - effect: "Der Anwender kreiert mit Z-Kraft eine zauberhafte Dimension und treibt dort sein Spiel mit dem Ziel. Die Stärke variiert je nach zugrunde liegender Attacke." - }, - "twinkleTackleSpecial": { - name: "Twinkle Tackle", - effect: "Dummy Data" - }, - "catastropika": { - name: "Perfektes Pika-Projektil", - effect: "Pikachu umhüllt sich durch Z-Kraft mit gewaltiger elektrischer Energie und stürzt sich mit voller Kraft auf das Ziel." - }, - "shoreUp": { - name: "Sandsammler", - effect: "KP des Anwenders werden um 50 % der maximalen KP aufgefüllt. Tobt ein Sandsturm, werden noch mehr KP aufgefüllt." - }, - "firstImpression": { - name: "Überrumpler", - effect: "Eine sehr starke Attacke, die jedoch nur erfolgreich ist, wenn sie sofort eingesetzt wird, nachdem der Anwender das Kampffeld betreten hat." - }, - "banefulBunker": { - name: "Bunker", - effect: "Der Anwender wird vor Angriffen geschützt. Gleichzeitig werden alle Pokémon, die mit ihm in Berührung kommen, vergiftet." - }, - "spiritShackle": { - name: "Schattenfessel", - effect: "Der Anwender greift das Ziel an und näht zugleich dessen Schatten am Boden fest, sodass es nicht entkommen kann." - }, - "darkestLariat": { - name: "Dark Lariat", - effect: "Der Anwender wirbelt mit beiden Armen und prallt so auf das Ziel. Richtet unabhängig von den Statusveränderungen des Zieles Schaden an." - }, - "sparklingAria": { - name: "Schaumserenade", - effect: "Durch Gesang erzeugte Blasen werden auf das Ziel geschleudert. Alle Pokémon, die dadurch Schaden erleiden, werden auch von Verbrennungen geheilt." - }, - "iceHammer": { - name: "Eishammer", - effect: "Anwender trifft mit einem starken Hieb. Senkt Initiative des Anwenders." - }, - "floralHealing": { - name: "Florakur", - effect: "KP des Zieles werden um 50 % der maximalen KP aufgefüllt. Die Wirkung steigt, wenn der Untergrund in ein Grasfeld verwandelt wurde." - }, - "highHorsepower": { - name: "Pferdestärke", - effect: "Der Anwender greift das Ziel mit einer heftigen Ganzkörper-Attacke an." - }, - "strengthSap": { - name: "Kraftabsorber", - effect: "Ein Angriff, der die KP des Anwenders um die Höhe des Angriffs-Werts des Zieles heilt. Anschließend wird der Angriff des Zieles gesenkt." - }, - "solarBlade": { - name: "Solarklinge", - effect: "Der Anwender absorbiert in der 1. Runde Licht, das er in der 2. Runde zu einem Schwert formt, mit dem er angreift." - }, - "leafage": { - name: "Blattwerk", - effect: "Der Anwender greift das Ziel mit Blättern an." - }, - "spotlight": { - name: "Rampenlicht", - effect: "Der Anwender lenkt die Aufmerksamkeit auf das Ziel, sodass in dieser Runde nur noch dieses Pokémon angegriffen wird." - }, - "toxicThread": { - name: "Giftfaden", - effect: "Der Anwender schießt giftige Fäden auf das Ziel, das dadurch vergiftet wird. Außerdem sinkt seine Initiative." - }, - "laserFocus": { - name: "Konzentration", - effect: "Der Anwender konzentriert sich, wodurch sein nächster Angriff garantiert ein Volltreffer wird." - }, - "gearUp": { - name: "Hilfsmechanik", - effect: "Der Anwender erhöht mithilfe von Zahnrädern Angriff und Spezial-Angriff von Team-Pokémon mit der Fähigkeit Plus oder Minus." - }, - "throatChop": { - name: "Neck Strike", - effect: "Das Pokémon, das von dieser Attacke getroffen wird, erleidet starke Schmerzen und kann deswegen zwei Runden lang keine Lärm-Attacken mehr einsetzen." - }, - "pollenPuff": { - name: "Pollenknödel", - effect: "Der Anwender greift mit einem Ball aus Pollen an, der beim Ziel explodiert. Mitstreiter werden von einem Ball getroffen, der ihre KP auffüllt." - }, - "anchorShot": { - name: "Ankerschuss", - effect: "Der Anwender greift das Ziel an, indem er es mit einer Ankerkette umwickelt. Dadurch wird das Ziel an der Flucht gehindert." - }, - "psychicTerrain": { - name: "Psychofeld", - effect: "Verhindert für fünf Runden, dass Pokémon am Boden von Attacken mit hoher Erstschlagquote getroffen werden. Erhöht die Stärke von Psycho-Attacken." - }, - "lunge": { - name: "Anfallen", - effect: "Der Anwender greift das Ziel mit ganzer Kraft an, wodurch auch der Angriffs-Wert des Zieles sinkt." - }, - "fireLash": { - name: "Feuerpeitsche", - effect: "Der Anwender greift das Ziel mit einer brennenden Peitsche an und senkt dabei zusätzlich dessen Verteidigungs-Wert." - }, - "powerTrip": { - name: "Überheblichkeit", - effect: "Der Anwender prahlt mit seiner Stärke und greift das Ziel an. Dieser Angriff ist umso stärker, je weiter die Statuswerte des Anwenders erhöht sind." - }, - "burnUp": { - name: "Ausbrennen", - effect: "Der Anwender nutzt das gesamte Feuer in seinem Körper, um großen Schaden auszuteilen. Die restliche Kampfdauer gehört er nicht mehr dem Typ Feuer an." - }, - "speedSwap": { - name: "Initiativetausch", - effect: "Der Anwender tauscht seinen Initiative-Wert mit dem des Zieles." - }, - "smartStrike": { - name: "Schmalhorn", - effect: "Der Anwender durchbohrt das Ziel mit seinem spitzen Horn. Diese Attacke trifft immer." - }, - "purify": { - name: "Läuterung", - effect: "Der Anwender heilt das Statusproblem des Zieles und füllt dadurch seine eigenen KP auf." - }, - "revelationDance": { - name: "Wecktanz", - effect: "Der Anwender tanzt und greift dabei das Ziel mit voller Kraft an. Die Attacke hat denselben Typ wie das Pokémon, das sie einsetzt." - }, - "coreEnforcer": { - name: "Sanktionskern", - effect: "Hat das Pokémon, das durch diese Attacke Schaden genommen hat, in dieser Runde bereits gehandelt, verliert es seine Fähigkeit." - }, - "tropKick": { - name: "Tropenkick", - effect: "Der Anwender greift den Gegner mit einem heftigen Tritt tropischer Herkunft an. Dabei sinkt auch der Angriffs-Wert des Gegners." - }, - "instruct": { - name: "Kommando", - effect: "Der Anwender befiehlt dem Ziel, dessen zuletzt ausgeführte Attacke sofort wieder einzusetzen." - }, - "beakBlast": { - name: "Schnabelkanone", - effect: "Der Anwender erhitzt zuerst seinen Schnabel und greift dann an. Pokémon, die ihn während des Erhitzens berühren, erleiden Verbrennungen." - }, - "clangingScales": { - name: "Schuppenrasseln", - effect: "Der Anwender erzeugt durch das Rasseln mit seinen Schuppen ein lautes Geräusch und greift an. Anschließend sinkt seine Verteidigung." - }, - "dragonHammer": { - name: "Drachenhammer", - effect: "Der Anwender nutzt seinen Körper wie einen Hammer und stürzt sich auf das Ziel, wodurch dieses Schaden erleidet." - }, - "brutalSwing": { - name: "Wirbler", - effect: "Der Anwender dreht schwungvoll seinen Körper und fügt den Pokémon in seiner Nähe dabei Schaden zu." - }, - "auroraVeil": { - name: "Auroraschleier", - effect: "Diese Attacke schwächt fünf Runden lang den durch physische sowie durch Spezial-Attacken erhaltenen Schaden. Kann nur bei Hagel eingesetzt werden." - }, - "sinisterArrowRaid": { - name: "Schatten-Pfeilregen", - effect: "Silvarro stellt mit Z-Kraft unzählige Pfeile her und lässt diese auf das Ziel niederprasseln." - }, - "maliciousMoonsault": { - name: "Hyper Dark Crusher", - effect: "Mit seinem durch Z-Kraft gestählten Körper stürzt sich Fuegro mit ganzer Kraft auf das Ziel." - }, - "oceanicOperetta": { - name: "Grandiose Meeressymphonie", - effect: "Primarene ruft mit Z-Kraft große Mengen an Wasser herbei und greift damit das Ziel an." - }, - "guardianOfAlola": { - name: "Alolas Wächter", - effect: "Ein gewaltiger Angriff des Schutzpatrons, der durch Z-Kraft die Kraft Alolas erlangt hat. Reduziert die verbleibenden KP des Zieles stark." - }, - "soulStealing7StarStrike": { - name: "Sternbild des Seelenraubes", - effect: "Marshadow schlägt mit durch Z-Kraft gestärkten Schlägen und Tritten in einer Serien-Attacke auf das Ziel ein." - }, - "stokedSparksurfer": { - name: "Blitz-Wellenritt", - effect: "Das Alola-Raichu greift das Ziel mithilfe von Z-Kraft mit voller Wucht an und paralysiert es." - }, - "pulverizingPancake": { - name: "Schluss mit lustig", - effect: "Relaxo wird von Z-Kraft erfüllt und macht Ernst. Es bringt seinen riesigen Körper in Schwung und stürzt sich mit ganzer Kraft auf das Ziel." - }, - "extremeEvoboost": { - name: "Macht der Neun", - effect: "Evoli macht sich durch Z-Kraft die Stärke seiner Weiterentwicklungen zunutze und erhöht seine Statuswerte stark." - }, - "genesisSupernova": { - name: "Supernova des Ursprungs", - effect: "Mew greift das Ziel mithilfe von Z-Kraft mit voller Wucht an. Der Untergrund wird dabei in ein Psychofeld verwandelt." - }, - "shellTrap": { - name: "Panzerfalle", - effect: "Der Anwender legt eine Panzerfalle. Wird er von einer physischen Attacke getroffen, explodiert die Falle und fügt dem Angreifer Schaden zu." - }, - "fleurCannon": { - name: "Kanonenbouquet", - effect: "Der Anwender greift das Ziel mit einem gewaltigen Strahl an. Sein eigener Spezial-Angriff sinkt dadurch stark." - }, - "psychicFangs": { - name: "Psychobeißer", - effect: "Der Anwender beißt das Ziel mithilfe von Psycho-Kräften. Die Attacke durchbricht auch Barrieren wie Lichtschild und Reflektor." - }, - "stompingTantrum": { - name: "Fruststampfer", - effect: "Von Frust getrieben greift der Anwender an. Wenn seine vorige Attacke fehlgeschlagen ist, verdoppelt sich die Stärke der Attacke." - }, - "shadowBone": { - name: "Schattenknochen", - effect: "Der Anwender greift das Ziel mit einem Knochen an, in dem eine Seele haust. Senkt eventuell die Verteidigung des Zieles." - }, - "accelerock": { - name: "Turbofelsen", - effect: "Der Anwender prallt mit großer Geschwindigkeit auf das Ziel. Hohe Erstschlagquote." - }, - "liquidation": { - name: "Aquadurchstoß", - effect: "Der Anwender greift das Ziel mit der Kraft des Wassers an. Senkt eventuell die Verteidigung des Zieles." - }, - "prismaticLaser": { - name: "Prisma-Laser", - effect: "Der Anwender feuert mithilfe von Prisma-Kraft mächtige Lichtstrahlen ab. In der nächsten Runde kann er nicht handeln." - }, - "spectralThief": { - name: "Diebesschatten", - effect: "Der Anwender schleicht sich in den Schatten des Zieles, stiehlt dessen erhöhte Statuswerte und fügt ihm Schaden zu." - }, - "sunsteelStrike": { - name: "Stahlgestirn", - effect: "Der Anwender stürzt mit der Gewalt eines Meteors auf das Ziel. Die Fähigkeit des Zieles wird dabei ignoriert." - }, - "moongeistBeam": { - name: "Schattenstrahl", - effect: "Der Anwender greift mit einem unheimlichen Lichtstrahl an. Diese Attacke ignoriert die Fähigkeit des Zieles." - }, - "tearfulLook": { - name: "Tränendrüse", - effect: "Dem Anwender stehen Tränen in den Augen, wodurch das Ziel seinen Kampfeswillen verliert. Angriff und Spezial-Angriff des Zieles sinken." - }, - "zingZap": { - name: "Elektropikser", - effect: "Der Anwender rammt das Ziel und schockt es mit starkem Strom. Das Ziel schreckt eventuell zurück." - }, - "naturesMadness": { - name: "Naturzorn", - effect: "Das Ziel wird vom Zorn der Natur getroffen und verliert dadurch die Hälfte seiner KP." - }, - "multiAttack": { - name: "Multi-Angriff", - effect: "Der Anwender sammelt eine große Menge Energie und greift das Ziel damit an. Der Typ der Attacke hängt von dem der Disc ab." - }, - "tenMillionVoltThunderbolt": { - name: "Tausendfacher Donnerblitz", - effect: "Das eine Kappe tragende Pikachu greift das Ziel mit einem durch Z-Kraft verstärkten Elektroschock an. Hohe Volltrefferquote." - }, - "mindBlown": { - name: "Knallkopf", - effect: "Der Anwender greift alle Pokémon in der Umgebung an, indem er seinen Kopf explodieren lässt. Dabei verletzt er sich auch selbst." - }, - "plasmaFists": { - name: "Plasmafäuste", - effect: "Ein Angriff mit elektrisch geladenen Fäusten, der bewirkt, dass Normal-Attacken den Typ Elektro annehmen." - }, - "photonGeyser": { - name: "Photonen-Geysir", - effect: "Ein Angriff mit einer Lichtsäule. Ist der Angriff höher als der Spezial-Angriff, wird die Höhe des Schadens durch den Angriff bestimmt und umgekehrt." - }, - "lightThatBurnsTheSky": { - name: "Licht des Erlöschens", - effect: "Ist der Angriff höher als der Spezial-Angriff, wird die Höhe des Schadens durch den Angriff bestimmt und umgekehrt. Ignoriert die Fähigkeit des Zieles." - }, - "searingSunrazeSmash": { - name: "Schmetternde Sonnenwalze", - effect: "Solgaleo greift das Ziel mithilfe von Z-Kraft mit voller Wucht an. Ignoriert die Fähigkeit des Zieles." - }, - "menacingMoonrazeMaelstrom": { - name: "Geballter Mondlaser", - effect: "Lunala greift das Ziel mithilfe von Z-Kraft mit voller Wucht an. Ignoriert die Fähigkeit des Zieles." - }, - "letsSnuggleForever": { - name: "Herzliche Knuddelkloppe", - effect: "Mimigma greift das Ziel mithilfe von Z-Kraft mit voller Wucht und viel Liebe an." - }, - "splinteredStormshards": { - name: "Fataler Steinregen", - effect: "Wolwerock greift das Ziel mithilfe von Z-Kraft mit voller Wucht an. Herrschen besondere Feldeffekte, werden diese zusätzlich neutralisiert." - }, - "clangorousSoulblaze": { - name: "Rasselnder Seelentanz", - effect: "Grandiras greift Gegner mithilfe von Z-Kraft mit voller Wucht an. Zusätzlich werden seine Statuswerte erhöht." - }, - "zippyZap": { - name: "Britzelturbo", - effect: "Ein stürmischer Blitz-Angriff mit hoher Erstschlag- und Volltrefferquote." - }, - "splishySplash": { - name: "Plätschersurfer", - effect: "Pikachu greift das Ziel mit einer großen, elektrisch aufgeladenen Welle an. Das Ziel wird eventuell paralysiert." - }, - "floatyFall": { - name: "Schwebesturz", - effect: "Pikachu schwebt nach oben und stürzt dann unvermittelt auf das Ziel herab. Das Ziel schreckt eventuell zurück." - }, - "pikaPapow": { - name: "Pika-Flash", - effect: "Je größer Pikachus Vertrauen zu seinem Trainer ist, desto stärker fällt dieser Angriff aus. Diese Attacke trifft immer." - }, - "bouncyBubble": { - name: "Blubbsauger", - effect: "Der Anwender greift mit Wasserblasen an. Seine KP werden in Höhe des vom Wasser angerichteten Schadens geheilt." - }, - "buzzyBuzz": { - name: "Knisterladung", - effect: "Evoli greift das Ziel mit Elektrizität an, wodurch dieses paralysiert wird." - }, - "sizzlySlide": { - name: "Flackerbrand", - effect: "Evoli hüllt sich in Flammen und stürzt sich beherzt auf das Ziel, welches dadurch Verbrennungen erleidet." - }, - "glitzyGlow": { - name: "Pulsieraura", - effect: "Evoli greift das Ziel gnadenlos mit telekinetischer Energie an. Dabei wird eine geheimnisvolle Wand erzeugt, die Spezial-Attacken des Ziels abschwächt." - }, - "baddyBad": { - name: "Quälzone", - effect: "Evoli zeigt sich von seiner dunklen Seite und greift an. Dabei wird eine geheimnisvolle Wand erzeugt, die physische Attacken des Ziels abschwächt." - }, - "sappySeed": { - name: "Sprießbomben", - effect: "Evoli lässt eine riesige Ranke wachsen, von der Samen herabfallen, die dem Ziel schaden und ihm in jeder Runde KP absaugen." - }, - "freezyFrost": { - name: "Klirrfrost", - effect: "Evoli greift mit einem schwarzen Kristall aus gefrorenem Nebel an. Die Statusveränderungen aller am Kampf beteiligten Pokémon werden zurückgesetzt." - }, - "sparklySwirl": { - name: "Glitzersturm", - effect: "Evoli greift an, indem es das Ziel in einen nahezu erstickend wohlriechenden Wirbelwind hüllt. Das Team des Anwenders wird von Statusproblemen geheilt." - }, - "veeveeVolley": { - name: "Evo-Crash", - effect: "Je größer Evolis Vertrauen zu seinem Trainer ist, desto stärker fällt dieser Angriff aus. Diese Attacke trifft immer." - }, - "doubleIronBash": { - name: "Panzerfäuste", - effect: "Der Anwender rotiert um die Schraubenmutter in seinem Brustkorb und schlägt zweimal hintereinander mit den Armen zu. Das Ziel schreckt eventuell zurück." - }, - "maxGuard": { - name: "Dyna-Wall", - effect: "Anwender wehrt jede Attacke ab. Scheitert eventuell bei Wiederholung." - }, - "dynamaxCannon": { - name: "Dynamax-Kanone", - effect: "Der Anwender schießt einen Strahl aus seinem Kern ab. Verursacht bis zu doppelt so viel Schaden, wenn das Level des Gegners höher als die Levelgrenze ist." - }, - "snipeShot": { - name: "Präzisionsschuss", - effect: "Die Attacke richtet sich gegen das ausgewählte Ziel, unabhängig von Fähigkeiten oder Attacken, die Angriffe auf sich ziehen." - }, - "jawLock": { - name: "Fesselbiss", - effect: "Anwender und Ziel können nicht ausgetauscht werden, bis einer von ihnen kampfunfähig wird. Der Effekt endet, wenn eines der Pokémon das Kampffeld verlässt." - }, - "stuffCheeks": { - name: "Backenstopfer", - effect: "Der Anwender frisst die Beere, die er trägt, wodurch seine Verteidigung stark erhöht wird." - }, - "noRetreat": { - name: "Finalformation", - effect: "Alle Statuswerte des Anwenders werden erhöht, aber dafür kann er weder ausgewechselt werden noch fliehen." - }, - "tarShot": { - name: "Teerschuss", - effect: "Der Anwender übergießt das Ziel mit klebrigem Teer und senkt so dessen Initiative. Dadurch wird es schwach gegenüber Feuer-Attacken." - }, - "magicPowder": { - name: "Magiepuder", - effect: "Das Ziel wird mit magischem Puder bestreut und nimmt den Typ Psycho an." - }, - "dragonDarts": { - name: "Drachenpfeile", - effect: "Der Anwender greift zweimal mit Grolldra an. Bei zwei Zielen werden beide jeweils einmal angegriffen." - }, - "teatime": { - name: "Teatime", - effect: "Der Anwender lädt alle am Kampf beteiligten Pokémon zu einem Teekränzchen ein, woraufhin diese die Beeren essen, die sie bei sich tragen." - }, - "octolock": { - name: "Octoklammer", - effect: "Das Ziel wird an der Flucht gehindert und seine Verteidigung und Spezial-Verteidigung sinken jede Runde." - }, - "boltBeak": { - name: "Schockschnabel", - effect: "Der Anwender sticht mit einem elektrisch aufgeladenen Schnabel zu. Kommt er vor dem Ziel zum Zug, verdoppelt sich die Stärke der Attacke." - }, - "fishiousRend": { - name: "Kiemenbiss", - effect: "Der Anwender beißt mit seinen harten Kiemen zu. Kommt er vor dem Ziel zum Zug, verdoppelt sich die Stärke der Attacke." - }, - "courtChange": { - name: "Seitenwechsel", - effect: "Durch eine mysteriöse Macht werden wirksame Effekte auf Mitstreiterseite und gegnerischer Seite getauscht." - }, - "maxFlare": { - name: "Dyna-Brand", - effect: "Eine Feuer-Attacke, die nur Dynamax-Pokémon einsetzen können. Die Sonne brennt unbarmherzig fünf Runden lang." - }, - "maxFlutterby": { - name: "Dyna-Schwarm", - effect: "Eine Käfer-Attacke, die nur Dynamax-Pokémon einsetzen können. Senkt den Spezial-Angriff des Zieles." - }, - "maxLightning": { - name: "Dyna-Gewitter", - effect: "Eine Elektro-Attacke, die nur Dynamax-Pokémon einsetzen können. Erzeugt fünf Runden lang ein Elektrofeld." - }, - "maxStrike": { - name: "Dyna-Angriff", - effect: "Eine Normal-Attacke, die nur Dynamax-Pokémon einsetzen können. Senkt die Initiative des Zieles." - }, - "maxKnuckle": { - name: "Dyna-Faust", - effect: "Eine Kampf-Attacke, die nur Dynamax-Pokémon einsetzen können. Erhöht den Angriff der Mitstreiterseite." - }, - "maxPhantasm": { - name: "Dyna-Spuk", - effect: "Eine Geister-Attacke, die nur Dynamax-Pokémon einsetzen können. Senkt die Verteidigung des Zieles." - }, - "maxHailstorm": { - name: "Dyna-Frost", - effect: "Eine Eis-Attacke, die nur Dynamax-Pokémon einsetzen können. Lässt fünf Runden lang einen Hagelsturm toben." - }, - "maxOoze": { - name: "Dyna-Giftschwall", - effect: "Eine Gift-Attacke, die nur Dynamax-Pokémon einsetzen können. Erhöht den Spezial-Angriff der Mitstreiterseite." - }, - "maxGeyser": { - name: "Dyna-Flut", - effect: "Eine Wasser-Attacke, die nur Dynamax-Pokémon einsetzen können. Löst fünf Runden lang strömenden Regen aus." - }, - "maxAirstream": { - name: "Dyna-Düse", - effect: "Eine Flug-Attacke, die nur Dynamax-Pokémon einsetzen können. Erhöht die Initiative der Mitstreiterseite." - }, - "maxStarfall": { - name: "Dyna-Zauber", - effect: "Eine Feen-Attacke, die nur Dynamax-Pokémon einsetzen können. Erzeugt fünf Runden lang ein Nebelfeld." - }, - "maxWyrmwind": { - name: "Dyna-Wyrm", - effect: "Eine Drachen-Attacke, die nur Dynamax-Pokémon einsetzen können. Senkt den Angriff des Zieles." - }, - "maxMindstorm": { - name: "Dyna-Kinese", - effect: "Eine Psycho-Attacke, die nur Dynamax-Pokémon einsetzen können. Erzeugt fünf Runden lang ein Psychofeld." - }, - "maxRockfall": { - name: "Dyna-Brocken", - effect: "Eine Gesteins-Attacke, die nur Dynamax-Pokémon einsetzen können. Lässt fünf Runden lang einen Sandsturm toben." - }, - "maxQuake": { - name: "Dyna-Erdstoß", - effect: "Eine Boden-Attacke, die nur Dynamax-Pokémon einsetzen können. Erhöht die Spezial-Verteidigung der Mitstreiterseite." - }, - "maxDarkness": { - name: "Dyna-Dunkel", - effect: "Eine Unlicht-Attacke, die nur Dynamax-Pokémon einsetzen können. Senkt die Spezial-Verteidigung des Zieles." - }, - "maxOvergrowth": { - name: "Dyna-Flora", - effect: "Eine Pflanzen-Attacke, die nur Dynamax-Pokémon einsetzen können. Erzeugt fünf Runden lang ein Grasfeld." - }, - "maxSteelspike": { - name: "Dyna-Stahlzacken", - effect: "Eine Stahl-Attacke, die nur Dynamax-Pokémon einsetzen können. Erhöht die Verteidigung der Mitstreiterseite." - }, - "clangorousSoul": { - name: "Seelentanz", - effect: "Der Anwender setzt eine kleine Menge an KP ein, um alle seine Statuswerte zu erhöhen." - }, - "bodyPress": { - name: "Body Press", - effect: "Der Anwender greift mit seinem ganzen Körper an. Je höher seine Verteidigung ist, desto mehr Schaden richtet er an." - }, - "decorate": { - name: "Verzierung", - effect: "Durch Verzierungen werden der Angriff und Spezial-Angriff des Zieles stark erhöht." - }, - "drumBeating": { - name: "Trommelschläge", - effect: "Der Anwender kontrolliert durch Trommeln Wurzeln, die das Ziel angreifen und dessen Initiative senken." - }, - "snapTrap": { - name: "Fangeisen", - effect: "Das Ziel wird vier bis fünf Runden lang in einem Fangeisen festgehalten und angegriffen." - }, - "pyroBall": { - name: "Feuerball", - effect: "Der Anwender greift mit einem Ball aus Feuer an, den er durch Anzünden eines kleinen Steins erzeugt. Fügt dem Ziel eventuell Verbrennungen zu." - }, - "behemothBlade": { - name: "Gigantenhieb", - effect: "Der Anwender wird zu einem riesigen Schwert und greift das Ziel an. Dynamaximierte Ziele erleiden doppelten Schaden." - }, - "behemothBash": { - name: "Gigantenstoß", - effect: "Der Anwender wird zu einem riesigen Schild und greift das Ziel an. Dynamaximierte Ziele erleiden doppelten Schaden." - }, - "auraWheel": { - name: "Aura-Rad", - effect: "Mithilfe der in den Backentaschen gespeicherten Energie greift der Anwender an und erhöht seine Initiative. Der Typ der Attacke hängt von Morpekos Form ab." - }, - "breakingSwipe": { - name: "Breitseite", - effect: "Der Anwender schwingt heftig seinen robusten Schweif, um damit gegnerische Pokémon anzugreifen und ihren Angriffs-Wert zu senken." - }, - "branchPoke": { - name: "Zweigstoß", - effect: "Der Anwender attackiert das Ziel mit einem spitzen Zweig." - }, - "overdrive": { - name: "Overdrive", - effect: "Der Anwender haut in die Saiten seiner Gitarre oder seines Basses und erzeugt dröhnende, kraftvolle Vibrationen, die gegnerischen Pokémon schaden." - }, - "appleAcid": { - name: "Apfelsäure", - effect: "Der Anwender greift mit einer aus einem sauren Apfel hergestellten säurehaltigen Flüssigkeit an. Dabei wird die Spezial-Verteidigung des Zieles gesenkt." - }, - "gravApple": { - name: "Gravitation", - effect: "Ein Apfel fällt aus großer Höhe herab und richtet Schaden an. Dabei wird die Verteidigung des Zieles gesenkt." - }, - "spiritBreak": { - name: "Seelenbruch", - effect: "Die Attacke trifft das Ziel mit so viel Wucht, dass es den Mut verliert. Dabei wird sein Spezial-Angriff gesenkt." - }, - "strangeSteam": { - name: "Wunderdampf", - effect: "Der Anwender stößt Dampf aus, mit dem er das Ziel angreift. Dieses wird eventuell verwirrt." - }, - "lifeDew": { - name: "Lebenstropfen", - effect: "Wundersames Wasser heilt die KP des Anwenders und seiner am Kampf beteiligten Mitstreiter." - }, - "obstruct": { - name: "Abblocker", - effect: "Der Anwender wehrt jede Attacke ab. Berührt ihn währenddessen ein Pokémon, sinkt dessen Verteidigung stark. Scheitert eventuell bei Wiederholung." - }, - "falseSurrender": { - name: "Kniefalltrick", - effect: "Der Anwender tut so, als würde er sich verneigen, und sticht dann mit seinem zerzausten Fell zu. Diese Attacke trifft immer." - }, - "meteorAssault": { - name: "Sternensturm", - effect: "Der Anwender greift mit seiner Lauchstange an. Von der Wucht der Attacke wird ihm jedoch so schwindelig, dass er in der nächsten Runde nicht handeln kann." - }, - "eternabeam": { - name: "Unendynastrahlen", - effect: "Der mächtigste Angriff, über den Endynalos in seiner ursprünglichen Form verfügt. In der nächsten Runde kann der Anwender nicht handeln." - }, - "steelBeam": { - name: "Stahlstrahl", - effect: "Der Anwender schießt Stahl, den er in seinem ganzen Körper angesammelt hat, in Form eines mächtigen Strahls ab. Dabei verletzt er sich auch selbst." - }, - "expandingForce": { - name: "Flächenmacht", - effect: "Der Anwender greift das Ziel mit Psycho-Kräften an. Wenn ein Psychofeld aktiv ist, steigt die Stärke und es wird allen gegnerischen Pokémon Schaden zugefügt." - }, - "steelRoller": { - name: "Eisenwalze", - effect: "Der Anwender greift an und zerstört dabei etwaige Felder. Ist kein Feld aktiv, schlägt die Attacke fehl." - }, - "scaleShot": { - name: "Schuppenschuss", - effect: "Der Anwender greift das Ziel zwei- bis fünfmal hintereinander mit Schuppen-Geschossen an. Erhöht die eigene Initiative, aber senkt die Verteidigung." - }, - "meteorBeam": { - name: "Meteorstrahl", - effect: "Der Anwender sammelt in Runde 1 kosmische Kräfte und erhöht damit seinen Spezial-Angriff, bevor er in Runde 2 das Ziel angreift." - }, - "shellSideArm": { - name: "Muschelwaffe", - effect: "Je nachdem, was höher ausfällt, richtet diese Attacke entweder physischen oder Spezial-Schaden an. Das Ziel wird eventuell vergiftet." - }, - "mistyExplosion": { - name: "Nebelexplosion", - effect: "Der Anwender greift alle Pokémon im Umkreis an und wird danach kampfunfähig. Die Stärke dieser Attacke steigt, wenn ein Nebelfeld aktiv ist." - }, - "grassyGlide": { - name: "Grasrutsche", - effect: "Der Anwender rutscht über den Boden und greift das Ziel an. Ermöglicht den Erstschlag, wenn ein Grasfeld aktiv ist." - }, - "risingVoltage": { - name: "Hochspannung", - effect: "Der Anwender greift mit aus dem Boden aufsteigender Elektrizität an. Die Stärke der Attacke wird verdoppelt, wenn beim Gegner ein Elektrofeld aktiv ist." - }, - "terrainPulse": { - name: "Feldimpuls", - effect: "Der Anwender nutzt die Kraft des aktiven Feldes für seinen Angriff. Der Typ und die Stärke der Attacke ändern sich je nach Art des aktiven Feldes." - }, - "skitterSmack": { - name: "Krabbelkracher", - effect: "Der Anwender kriecht hinter das Ziel, greift es an und senkt dabei dessen Spezial-Angriff." - }, - "burningJealousy": { - name: "Neidflammen", - effect: "Der Anwender greift mit der Energie seines Neids an und fügt allen gegnerischen Pokémon, deren Statuswerte in dieser Runde erhöht wurden, Verbrennungen zu." - }, - "lashOut": { - name: "Frustventil", - effect: "Der Anwender entlädt seinen Frust in einem Angriff. Die Stärke der Attacke wird verdoppelt, wenn seine Statuswerte in dieser Runde gesenkt wurden." - }, - "poltergeist": { - name: "Poltergeist", - effect: "Der Anwender greift das Ziel mit dessen getragenem Item an. Die Attacke schlägt fehl, wenn das Ziel kein Item trägt." - }, - "corrosiveGas": { - name: "Korrosionsgas", - effect: "Der Anwender greift alle Pokémon im Umkreis mit einem ätzenden Gas an. Getragene Items werden dadurch zersetzt." - }, - "coaching": { - name: "Coaching", - effect: "Der Anwender sorgt durch geschickte Anweisungen dafür, dass der Angriff und die Verteidigung seiner Mitstreiter steigen." - }, - "flipTurn": { - name: "Rollwende", - effect: "Nach der Attacke eilt der Anwender zurück und tauscht den Platz mit einem anderen Pokémon." - }, - "tripleAxel": { - name: "Dreifach-Axel", - effect: "Tritt das Ziel ein- bis dreimal nacheinander. Die Härte der Tritte nimmt von Treffer zu Treffer zu." - }, - "dualWingbeat": { - name: "Doppelflügel", - effect: "Der Anwender trifft das Ziel zweimal hintereinander mit seinen Flügeln und fügt ihm so Schaden zu." - }, - "scorchingSands": { - name: "Brandsand", - effect: "Der Anwender greift das Ziel mit brennend heißem Sand an und fügt ihm eventuell Verbrennungen zu." - }, - "jungleHealing": { - name: "Dschungelheilung", - effect: "Der Anwender wird eins mit dem Dschungel und heilt bei sich und seinen am Kampf beteiligten Mitstreitern KP und hebt jegliche Statusprobleme auf." - }, - "wickedBlow": { - name: "Finstertreffer", - effect: "Der Anwender hat den Stil des Unlichts gemeistert und führt einen fokussierten, harten Schlag mit Volltreffergarantie aus." - }, - "surgingStrikes": { - name: "Trefferschwall", - effect: "Der Anwender hat den Stil des Wassers gemeistert und führt mit fließenden Bewegungen drei Angriffe in Folge mit Volltreffergarantie aus." - }, - "thunderCage": { - name: "Blitzgefängnis", - effect: "Das Ziel wird für vier bis fünf Runden in einem elektrischen Käfig gefangen." - }, - "dragonEnergy": { - name: "Drachenkräfte", - effect: "Der Anwender wandelt seine Lebenskraft in Energie um und greift gegnerische Pokémon an. Je höher seine KP sind, desto mehr Schaden wird angerichtet." - }, - "freezingGlare": { - name: "Eisiger Blick", - effect: "Der Anwender greift das Ziel mit Psycho-Kräften an, die er aus seinen Augen abschießt. Das Ziel friert eventuell ein." - }, - "fieryWrath": { - name: "Brennender Zorn", - effect: "Der Anwender wandelt seinen Zorn in eine flammende Aura um und greift damit gegnerische Pokémon an. Diese schrecken eventuell zurück." - }, - "thunderousKick": { - name: "Donnernder Tritt", - effect: "Der Anwender bringt das Ziel mit blitzschnellen Bewegungen durcheinander und tritt dann zu. Senkt die Verteidigung des Zieles." - }, - "glacialLance": { - name: "Blizzardlanze", - effect: "Der Anwender wirft eine in einen Blizzard gehüllte Lanze aus Eis auf gegnerische Pokémon." - }, - "astralBarrage": { - name: "Astralfragmente", - effect: "Der Anwender greift gegnerische Pokémon mit vielen kleinen Spukgestalten an." - }, - "eerieSpell": { - name: "Schauderspruch", - effect: "Der Anwender greift mit gewaltigen Psycho-Kräften an. Die AP der letzten Attacke des Zieles werden um 3 Punkte gesenkt." - }, - "direClaw": { - name: "Unheilsklauen", - effect: "Der Anwender greift mit zerstörerischen Klauen an. Das Ziel wird eventuell vergiftet, paralysiert oder in Schlaf versetzt." - }, - "psyshieldBash": { - name: "Barrierenstoß", - effect: "Der Anwender hüllt sich in Psycho-Energie und rammt das Ziel. Außerdem steigt seine Verteidigung." - }, - "powerShift": { - name: "Kraftwechsel", - effect: "Der Anwender tauscht seinen Angriff mit seiner Verteidigung." - }, - "stoneAxe": { - name: "Felsaxt", - effect: "Der Anwender greift mit seinen Felsäxten an. Dadurch verstreut er schwebende Felssplitter im Umkreis des Zieles." - }, - "springtideStorm": { - name: "Frühlingsorkan", - effect: "Der Anwender greift gegnerische Pokémon an, indem er sie mit heftigen Windböen voller Hassliebe umgibt. Eventuell sinkt ihr Angriff." - }, - "mysticalPower": { - name: "Mythenkraft", - effect: "Der Anwender greift mit einer wundersamen Kraft an. Außerdem steigt sein Spezial-Angriff." - }, - "ragingFury": { - name: "Flammenwut", - effect: "Der Anwender wütet zwei bis drei Runden lang und speit heftige Flammen aus. Danach wird er verwirrt." - }, - "waveCrash": { - name: "Wellentackle", - effect: "Der Anwender hüllt sich in Wasser und stürzt sich mit dem ganzen Körper auf das Ziel, wobei er selbst großen Schaden erleidet." - }, - "chloroblast": { - name: "Chlorostrahl", - effect: "Der Anwender greift mit einer hohen Konzentration seines Chlorophylls an, wobei er selbst Schaden erleidet." - }, - "mountainGale": { - name: "Frostfallwind", - effect: "Der Anwender wirft gigantische Eisbrocken auf das Ziel. Dieses schreckt eventuell zurück." - }, - "victoryDance": { - name: "Siegestanz", - effect: "Der Anwender führt einen wilden Tanz auf, der den Sieg herbeiführen soll. Dies erhöht seinen Angriff, seine Verteidigung und seine Initiative." - }, - "headlongRush": { - name: "Schmetterramme", - effect: "Der Anwender rammt das Ziel mit dem ganzen Körper. Dadurch sinken die Verteidigung und Spezial-Verteidigung des Anwenders." - }, - "barbBarrage": { - name: "Giftstachelregen", - effect: "Der Anwender greift mit unzähligen Giftstacheln an und vergiftet das Ziel eventuell. Doppelt so stark gegen vergiftete Ziele." - }, - "esperWing": { - name: "Auraschwingen", - effect: "Ein schneidender Angriff mit durch eine Aura verstärkten Schwingen, der außerdem die Initiative des Anwenders erhöht. Hohe Volltrefferquote." - }, - "bitterMalice": { - name: "Niedertracht", - effect: "Der Anwender greift mit eiskaltem, schaudererregendem Hass an und senkt dabei den Angriff des Zieles." - }, - "shelter": { - name: "Refugium", - effect: "Der Anwender macht seine Haut so hart wie Eisen und erhöht dadurch seine Verteidigung stark." - }, - "tripleArrows": { - name: "Drillingspfeile", - effect: "Der Anwender tritt zu und schießt dann drei Pfeile ab. Senkt eventuell die Verteidigung des Zieles oder lässt es zurückschrecken. Hohe Volltrefferquote." - }, - "infernalParade": { - name: "Phantomparade", - effect: "Angriff mit unzähligen Feuerkugeln, der dem Ziel eventuell Verbrennungen zufügt. Doppelt so stark gegen Ziele mit Statusproblemen." - }, - "ceaselessEdge": { - name: "Klingenschwall", - effect: "Der Anwender greift mit einer klingengleichen Muschelschale an und verstreut Muschelsplitter, die Stacheln zu Füßen des Zieles werden." - }, - "bleakwindStorm": { - name: "Polarorkan", - effect: "Der Anwender greift mit starken, kalten Winden an, die Körper und Geist erzittern lassen. Senkt eventuell die Initiative gegnerischer Pokémon." - }, - "wildboltStorm": { - name: "Donnerorkan", - effect: "Der Anwender ruft ein heftiges Unwetter herbei, um mit Wind und Blitzen anzugreifen. Gegnerische Pokémon werden eventuell paralysiert." - }, - "sandsearStorm": { - name: "Wüstenorkan", - effect: "Der Anwender greift gegnerische Pokémon an, indem er sie mit heftigen Windböen und brennend heißem Sand umgibt. Eventuell erleiden sie Verbrennungen." - }, - "lunarBlessing": { - name: "Lunargebet", - effect: "Der Anwender richtet ein Gebet an den Mond und heilt bei sich und seinen am Kampf beteiligten Mitstreitern KP und hebt jegliche Statusprobleme auf." - }, - "takeHeart": { - name: "Mutschub", - effect: "Der Anwender fasst sich ein Herz, befreit sich von Statusproblemen und erhöht außerdem seinen Spezial-Angriff und seine Spezial-Verteidigung." - }, - "gMaxWildfire": { - name: "Giga-Feuerflug", - effect: "Eine Feuer-Attacke, die nur Gigadynamax-Glurak einsetzen kann. Fügt vier Runden lang Schaden zu." - }, - "gMaxBefuddle": { - name: "Giga-Benebelung", - effect: "Eine Käfer-Attacke, die nur Gigadynamax-Smettbo einsetzen kann. Gegnerische Pokémon werden entweder vergiftet, paralysiert oder in Schlaf versetzt." - }, - "gMaxVoltCrash": { - name: "Giga-Blitzhagel", - effect: "Eine Elektro-Attacke, die nur Gigadynamax-Pikachu einsetzen kann. Gegnerische Pokémon werden paralysiert." - }, - "gMaxGoldRush": { - name: "Giga-Münzregen", - effect: "Eine Normal-Attacke, die nur Gigadynamax-Mauzi einsetzen kann. Verwirrt Gegner und bringt nach dem Kampf Geld ein." - }, - "gMaxChiStrike": { - name: "Giga-Fokusschlag", - effect: "Eine Kampf-Attacke, die nur Gigadynamax-Machomei einsetzen kann. Erhöht die Volltrefferquote auf Mitstreiterseite." - }, - "gMaxTerror": { - name: "Giga-Spuksperre", - effect: "Eine Geister-Attacke, die nur Gigadynamax-Gengar einsetzen kann. Hindert gegnerische Pokémon an der Flucht beziehungsweise am Auswechseln." - }, - "gMaxResonance": { - name: "Giga-Melodie", - effect: "Eine Eis-Attacke, die nur Gigadynamax-Lapras einsetzen kann. Reduziert fünf Runden lang den erlittenen Schaden." - }, - "gMaxCuddle": { - name: "Giga-Gekuschel", - effect: "Eine Normal-Attacke, die nur Gigadynamax-Evoli einsetzen kann. Gegnerische Pokémon verlieben sich in es." - }, - "gMaxReplenish": { - name: "Giga-Recycling", - effect: "Eine Normal-Attacke, die nur Gigadynamax-Relaxo einsetzen kann. Stellt bereits verzehrte Beeren wieder her." - }, - "gMaxMalodor": { - name: "Giga-Gestank", - effect: "Eine Gift-Attacke, die nur Gigadynamax-Deponitox einsetzen kann. Vergiftet gegnerische Pokémon." - }, - "gMaxStonesurge": { - name: "Giga-Geröll", - effect: "Eine Wasser-Attacke, die nur Gigadynamax-Kamalm einsetzen kann. Verstreut viele spitze Steinbrocken auf dem Kampffeld." - }, - "gMaxWindRage": { - name: "Giga-Sturmstoß", - effect: "Eine Flug-Attacke, die nur Gigadynamax-Krarmor einsetzen kann. Beseitigt die Effekte von Attacken wie Reflektor und Lichtschild.." - }, - "gMaxStunShock": { - name: "Giga-Voltschlag", - effect: "Eine Elektro-Attacke, die nur Gigadynamax-Riffex einsetzen kann. Vergiftet oder paralysiert gegnerische Pokémon." - }, - "gMaxFinale": { - name: "Giga-Lichtblick", - effect: "Eine Feen-Attacke, die nur Gigadynamax-Pokusan einsetzen kann. Füllt die KP auf Mitstreiterseite auf." - }, - "gMaxDepletion": { - name: "Giga-Dämpfer", - effect: "Eine Drachen-Attacke, die nur Gigadynamax-Duraludon einsetzen kann. AP der letzten Attacke, die gegnerische Pokémon eingesetzt haben, werden gesenkt." - }, - "gMaxGravitas": { - name: "Giga-Astrowellen", - effect: "Eine Psycho-Attacke, die nur Gigadynamax-Maritellit einsetzen kann. Ändert die Erdanziehung für fünf Runden." - }, - "gMaxVolcalith": { - name: "Giga-Schlacke", - effect: "Eine Gesteins-Attacke, die nur Gigadynamax-Montecarbo einsetzen kann. Fügt vier Runden lang Schaden zu." - }, - "gMaxSandblast": { - name: "Giga-Sandstoß", - effect: "Eine Boden-Attacke, die nur Gigadynamax-Sanaconda einsetzen kann. Eine Sandhose wütet für vier bis fünf Runden." - }, - "gMaxSnooze": { - name: "Giga-Gähnzwang", - effect: "Eine Unlicht-Attacke, die nur Gigadynamax-Olangaar einsetzen kann. Mit einem großen Gähner wird das Ziel müde gemacht und schläft in der nächsten Runde ein." - }, - "gMaxTartness": { - name: "Giga-Säureguss", - effect: "Eine Pflanzen-Attacke, die nur Gigadynamax-Drapfel einsetzen kann. Senkt den Ausweichwert der gegnerischen Pokémon." - }, - "gMaxSweetness": { - name: "Giga-Nektarflut", - effect: "Eine Pflanzen-Attacke, die nur Gigadynamax-Schlapfel einsetzen kann. Heilt Statusprobleme auf Mitstreiterseite." - }, - "gMaxSmite": { - name: "Giga-Sanktion", - effect: "Eine Feen-Attacke, die nur Gigadynamax-Silembrim einsetzen kann. Verwirrt gegnerische Pokémon." - }, - "gMaxSteelsurge": { - name: "Giga-Stahlschlag", - effect: "Eine Stahl-Attacke, die nur Gigadynamax-Patinaraja einsetzen kann. Verstreut viele zackige Stahlsplitter auf dem Kampffeld." - }, - "gMaxMeltdown": { - name: "Giga-Schmelze", - effect: "Eine Stahl-Attacke, die nur Gigadynamax-Melmetal einsetzen kann. Hindert Gegner am wiederholten Einsatz derselben Attacke." - }, - "gMaxFoamBurst": { - name: "Giga-Schaumbad", - effect: "Eine Wasser-Attacke, die nur Gigadynamax-Kingler einsetzen kann. Senkt die Initiative der gegnerischen Pokémon stark." - }, - "gMaxCentiferno": { - name: "Giga-Feuerkessel", - effect: "Eine Feuer-Attacke, die nur Gigadynamax-Infernopod einsetzen kann. Schließt gegnerische Pokémon vier bis fünf Runden in wirbelnden Flammen ein." - }, - "gMaxVineLash": { - name: "Giga-Geißel", - effect: "Eine Pflanzen-Attacke, die nur Gigadynamax-Bisaflor einsetzen kann. Geißelt gegnerische Pokémon vier Runden lang mit peitschenartigen Ranken." - }, - "gMaxCannonade": { - name: "Giga-Beschuss", - effect: "Eine Wasser-Attacke, die nur Gigadynamax-Turtok einsetzen kann. Schließt gegnerische Pokémon vier Runden lang in einem Wasserwirbel ein." - }, - "gMaxDrumSolo": { - name: "Giga-Getrommel", - effect: "Eine Pflanzen-Attacke, die nur Gigadynamax-Gortrom einsetzen kann. Ignoriert die Effekte der gegnerischen Fähigkeiten." - }, - "gMaxFireball": { - name: "Giga-Brandball", - effect: "Eine Feuer-Attacke, die nur Gigadynamax-Liberlo einsetzen kann. Ignoriert die Effekte der gegnerischen Fähigkeiten." - }, - "gMaxHydrosnipe": { - name: "Giga-Schütze", - effect: "Eine Wasser-Attacke, die nur Gigadynamax-Intelleon einsetzen kann. Ignoriert die Effekte der gegnerischen Fähigkeiten." - }, - "gMaxOneBlow": { - name: "Giga-Einzelhieb", - effect: "Eine Unlicht-Attacke, die nur Gigadynamax-Wulaosu einsetzen kann. Dieser Einzelhieb ignoriert die schützende Wirkung von Dyna-Wall." - }, - "gMaxRapidFlow": { - name: "Giga-Multihieb", - effect: "Eine Wasser-Attacke, die nur Gigadynamax-Wulaosu einsetzen kann. Dieser Multihieb ignoriert die schützende Wirkung von Dyna-Wall." - }, - "teraBlast": { - name: "Tera-Ausbruch", - effect: "Ist der Anwender terakristallisiert, greift er mit Energie seines Tera-Typs an. Der Schaden hängt vom Angriff oder Spezial-Angriff ab, je nachdem, welcher Wert höher ist." - }, - "silkTrap": { - name: "Fadenfalle", - effect: "Der Anwender spannt eine Falle aus Fäden und wird so vor Angriffen geschützt. Berührt ihn nun ein Angreifer, sinkt dessen Initiative." - }, - "axeKick": { - name: "Fersenkick", - effect: "Der Anwender greift an, indem er seine erhobene Ferse hinunterschnellen lässt. Das Ziel wird eventuell verwirrt. Bei Misserfolg verletzt sich der Anwender selbst." - }, - "lastRespects": { - name: "Letzte Ehre", - effect: "Der Anwender rächt gefallene Mitstreiter. Je mehr kampfunfähige Pokémon sich im Team befinden, desto stärker ist die Attacke." - }, - "luminaCrash": { - name: "Lichteinschlag", - effect: "Der Anwender greift an, indem er ein sonderbares Licht freisetzt, das sich auch auf die Psyche auswirkt. Zudem wird die Spezial-Verteidigung des Zieles stark gesenkt." - }, - "orderUp": { - name: "Auftischen", - effect: "Eine Attacke mit geübten Bewegungen. Trägt der Anwender ein Nigiragi im Maul, erhöht sich je nach dessen Form ein Statuswert des Anwenders." - }, - "jetPunch": { - name: "Düsenhieb", - effect: "Bei dieser Erstschlag-Attacke hüllt der Anwender seine Faust in einen Strudel und greift mit einem extrem schnellen Hieb an." - }, - "spicyExtract": { - name: "Chili-Essenz", - effect: "Der Anwender setzt eine unglaublich scharfe Essenz frei, die den Angriff des Zieles stark erhöht, aber seine Verteidigung stark senkt." - }, - "spinOut": { - name: "Reifendrehung", - effect: "Der Anwender wirbelt wild umher, indem er sein Gewicht auf seine Extremitäten verlagert, und richtet so Schaden an. Seine eigene Initiative sinkt dadurch stark" - }, - "populationBomb": { - name: "Mäuseplage", - effect: "Der Anwender versammelt eine Schar von Artgenossen, die dann geschlossen angreift und das Ziel ein- bis zehnmal hintereinander trifft." - }, - "iceSpinner": { - name: "Eiskreisel", - effect: "Der Anwender hüllt seine Füße in dünnes Eis, wirbelt herum und greift so das Ziel an. Die Drehung zerstört etwaige Felder" - }, - "glaiveRush": { - name: "Großklingenstoß", - effect: "Der Anwender stürzt sich waghalsig auf das Ziel. Bis zum nächsten Zug des Anwenders treffen ihn gegnerische Angriffe garantiert und richten doppelten Schaden an." - }, - "revivalBlessing": { - name: "Vitalsegen", - effect: "Der Anwender belebt mit einem Wunsch voller Mitgefühl ein kampfunfähiges Team-Mitglied wieder und stellt die Hälfte dessen maximaler KP wieder her." - }, - "saltCure": { - name: "Pökelsalz", - effect: "Der Anwender pökelt das Ziel mit Salz ein, wodurch dieses jede Runde Schaden erleidet. Stahl- und Wasser-Pokémon leiden besonders darunter." - }, - "tripleDive": { - name: "Tauchtriade", - effect: "Der Anwender taucht mit perfekt abgestimmtem Timing ab und trifft das Ziel mit Wasserspritzern. Dabei richtet er dreimal hintereinander Schaden an." - }, - "mortalSpin": { - name: "Letalwirbler", - effect: "Der Anwender greift mit einer wirbelnden Attacke an, die Gegner auch vergiftet. Befreit den Anwender unter anderem von Wickel, Klammergriff und Egelsamen." - }, - "doodle": { - name: "Abpausen", - effect: "Der Anwender kopiert die wahre Essenz des Zieles. Dadurch erhalten alle Pokémon auf der Mitstreiterseite die Fähigkeit des Zieles." - }, - "filletAway": { - name: "Abspaltung", - effect: "Der Anwender setzt seine KP ein, um seinen Angriff, seinen Spezial-Angriff und seine Initiative stark zu erhöhen." - }, - "kowtowCleave": { - name: "Kniefallspalter", - effect: "Der Anwender fällt auf die Knie und verleitet das Ziel zu Unachtsamkeit, bevor er mit einer Klinge zuschlägt. Diese Attacke trifft garantiert." - }, - "flowerTrick": { - name: "Blumentrick", - effect: "Der Anwender greift an, indem er dem Ziel einen Trick-Strauß zuwirft. Diese Attacke trifft immer und hat zudem Volltreffergarantie." - }, - "torchSong": { - name: "Loderlied", - effect: "Der Anwender spuckt inbrünstig lodernde Flammen, als würde er singen, und versengt das Ziel. Dadurch steigt auch der Spezial-Angriff des Anwenders." - }, - "aquaStep": { - name: "Wogentanz", - effect: "Der Anwender neckt das Ziel mit flinken, fließenden Tanzschritten und greift es dann an. Dadurch steigt auch die Initiative des Anwenders." - }, - "ragingBull": { - name: "Rasender Stier", - effect: "Ein rasender Angriff eines wilden Stiers, der auch Barrieren wie Lichtschild und Reflektor durchbricht. Der Attacken-Typ hängt von der Form des Anwenders ab." - }, - "makeItRain": { - name: "Goldrausch", - effect: "Der Anwender greift an, indem er Unmengen an Münzen ausschüttet, senkt dabei aber seinen Spezial-Angriff. Das Geld wird nach dem Kampf aufgesammelt." - }, - "psyblade": { - name: "Psychoschneide", - effect: "Das Ziel wird mit einer immateriellen Klinge angegriffen. Die Stärke der Attacke steigt um 50 %, wenn beim Anwender ein Elektrofeld aktiv ist." - }, - "hydroSteam": { - name: "Hydrodampf", - effect: "Das Ziel wird kraftvoll mit brodelndem Wasser übergossen. Wider Erwarten sinkt die Stärke der Attacke bei starkem Sonnenlicht nicht, sondern steigt um 50 %." - }, - "ruination": { - name: "Verderben", - effect: "Der Anwender beschwört Verderben bringendes Unheil herauf und halbiert die KP des Zieles." - }, - "collisionCourse": { - name: "Kollisionskurs", - effect: "Der Anwender wechselt seine Form, während er sich gen Boden stürzt, und verursacht eine riesige Ur-Explosion. Ist die Attacke sehr effektiv, steigt ihre Stärke noch mehr." - }, - "electroDrift": { - name: "Blitztour", - effect: "Der Anwender wechselt bei rasantem Tempo seine Form und trifft das Ziel mit einem futuristischen Elektroschlag. Ist die Attacke sehr effektiv, steigt ihre Stärke noch mehr." - }, - "shedTail": { - name: "Schwanzabwurf", - effect: "Der Anwender setzt seine KP ein, um einen Doppelgänger zu erzeugen, und tauscht dann den Platz mit einem anderen Pokémon." - }, - "chillyReception": { - name: "Eisige Stimmung", - effect: "Der Anwender sorgt mit einem schlechten Witz für eisige Stimmung und tauscht den Platz mit einem anderen Pokémon. Erzeugt fünf Runden lang Schnee." - }, - "tidyUp": { - name: "Aufräumen", - effect: "Die Effekte von Stachler, Tarnsteine, Klebenetz, Giftspitzen und Delegator werden aufgehoben. Zudem steigen der Angriff und die Initiative des Anwenders." - }, - "snowscape": { - name: "Schneelandschaft", - effect: "Erzeugt fünf Runden lang Schnee. Dadurch wird die Verteidigung von Eis-Pokémon erhöht." - }, - "pounce": { - name: "Anspringen", - effect: "Der Anwender greift an, indem er das Ziel anspringt. Dadurch sinkt auch die Initiative des Zieles." - }, - "trailblaze": { - name: "Wegbereiter", - effect: "Der Anwender greift an, als würde er aus hohem Gras hervorspringen. Mit wendigen Schritten erhöht er seine Initiative." - }, - "chillingWater": { - name: "Kalte Dusche", - effect: "Der Anwender greift an, indem er das Ziel mit eiskaltem Wasser überschüttet. Das raubt dem Ziel seinen Kampfgeist und senkt so seinen Angriff." - }, - "hyperDrill": { - name: "Hyperbohrer", - effect: " Der Anwender lässt einen spitzen Teil seines Körpers rasant rotieren, sticht zu und durchbricht dabei auch die Wirkung von Attacken wie Schutzschild und Scanner." - }, - "twinBeam": { - name: "Doppelstrahl", - effect: "Der Anwender greift mit übernatürlichen Lichtstrahlen an, die er aus seinen Augen abfeuert, und trifft das Ziel zweimal hintereinander." - }, - "rageFist": { - name: "Zornesfaust", - effect: "Ein Angriff, für den der Anwender seinen Zorn in Energie umwandelt. Je häufiger der Anwender getroffen wurde, desto stärker wird diese Attacke." - }, - "armorCannon": { - name: "Rüstungskanone", - effect: "Der Anwender schießt die eigene Rüstung als glühendes Projektil auf das Ziel. Dadurch sinken die Verteidigung und Spezial-Verteidigung des Anwenders." - }, - "bitterBlade": { - name: "Reueschwert", - effect: "Der Anwender tränkt seine Klinge in Bedauern und Reue und greift damit an. Die Hälfte des zugefügten Schadens wird dem Anwender als KP gutgeschrieben." - }, - "doubleShock": { - name: "Zweifachladung", - effect: "Der Anwender nutzt die gesamte Elektrizität in seinem Körper, um großen Schaden auszuteilen. Die restliche Kampfdauer gehört er nicht mehr dem Typ Elektro an." - }, - "gigatonHammer": { - name: "Riesenhammer", - effect: "Der Anwender greift mit einem großen Hammer an, den er mit vollem Körpereinsatz um sich schwingt. Diese Attacke kann nicht zweimal in Folge eingesetzt werden." - }, - "comeuppance": { - name: "Vendetta", - effect: "Der Anwender rächt sich an dem Gegner, der ihm zuletzt mit einer Attacke Schaden zugefügt hat, indem er ihm den Schaden mit erhöhter Kraft zurückzahlt." - }, - "aquaCutter": { - name: "Aquaschnitt", - effect: "Der Anwender stößt Wasser unter Druck aus, um das Ziel wie mit einer Klinge anzugreifen. Hohe Volltrefferquote." - }, - "blazingTorque": { - name: "Hitzeturbo", - effect: "Der Anwender rammt seinen glühend heißen Motor in das Ziel. Dieses erleidet eventuell Verbrennungen." - }, - "wickedTorque": { - name: "Finsterturbo", - effect: "Der Anwender rammt seinen Motor mit böswilliger Absicht in das Ziel. Dieses schläft eventuell ein." - }, - "noxiousTorque": { - name: "Toxiturbo", - effect: "Der Anwender rammt seinen giftigen Motor in das Ziel. Dieses wird eventuell vergiftet." - }, - "combatTorque": { - name: "Raufturbo", - effect: "Der Anwender rammt seinen Motor gewaltvoll in das Ziel. Dieses wird eventuell paralysiert." - }, - "magicalTorque": { - name: "Zauberturbo", - effect: "Der Anwender rammt seinen feenartigen Motor in das Ziel. Dieses wird eventuell verwirrt." - }, - "bloodMoon": { - name: "Blutmond", - effect: "Der Anwender entfesselt eine gewaltige Energieladung aus einem blutroten Vollmond. Diese Attacke kann nicht zweimal in Folge eingesetzt werden." - }, - "matchaGotcha": { - name: "Quirlschuss", - effect: "Der Anwender verschießt gequirlten Tee. Die Hälfte des zugefügten Schadens wird ihm als KP gutgeschrieben. Das Ziel erleidet eventuell Verbrennungen." - }, - "syrupBomb": { - name: "Sirupbombe", - effect: "Der Anwender feuert eine klebrige Sirupbombe auf das Ziel, wodurch es in Sirup gehüllt und seine Initiative drei Runden in Folge gesenkt wird." - }, - "ivyCudgel": { - name: "Rankenkeule", - effect: "Der Anwender schlägt mit einer rankenumschlungenen Keule zu. Der Typ dieser Attacke hängt von der Maske des Anwenders ab. Hohe Volltrefferquote." - }, - "electroShot": { - name: "Stromstrahl", - effect: "Sammelt in Runde 1 Elektrizität, um den Spezial-Angriff zu erhöhen, und greift dann in Runde 2 mit Starkstrom an. Bei Regen erfolgt der Angriff sofort in Runde 1." - }, - "teraStarstorm": { - name: "Tera-Sternhagel", - effect: "Der Anwender greift das Ziel mit gebündelter Kristallenergie an. Wenn Terapagos diese Attacke in seiner Stellarform einsetzt, erleiden alle Gegner Schaden." - }, - "fickleBeam": { - name: "Launenlaser", - effect: "Der Anwender greift mit einem Laserstrahl an. Manchmal feuern mehrere seiner Köpfe Laser ab, wodurch sich die Stärke dieser Attacke verdoppelt." - }, - "burningBulwark": { - name: "Flammenschild", - effect: "Das brennend heiße Fell des Anwenders schützt ihn vor Angriffen. Gleichzeitig erleiden alle Pokémon, die mit ihm in Berührung kommen, Verbrennungen." - }, - "thunderclap": { - name: "Sturmblitz", - effect: "Bei dieser Erstschlag-Attacke lässt der Anwender einen Blitz auf das Ziel einschlagen. Sie gelingt nur, wenn dieses gerade eine Angriffsattacke vorbereitet." - }, - "mightyCleave": { - name: "Wuchtklinge", - effect: "Der Anwender führt mit dem in seinem Kopf gespeicherten Licht einen Schnitt aus. Diese Attacke trifft auch, wenn das Ziel sich selbst schützt." - }, - "tachyonCutter": { - name: "Tachyon-Schnitt", - effect: "Der Anwender greift das Ziel zweimal hintereinander mit Partikelklingen an. Der Angriff trifft garantiert." - }, - "hardPress": { - name: "Stahlpresse", - effect: "Der Anwender nimmt das Ziel mit Armen oder Scheren in die Mangel. Je höher die KP des Zieles, desto stärker die Attacke." - }, - "dragonCheer": { - name: "Drachenschrei", - effect: "Das anspornende Drachengebrüll hebt die Moral aller Mitstreiter und erhöht ihre Volltrefferquote. Der Effekt ist stärker, wenn sie dem Typ Drache angehören." - }, - "alluringVoice": { - name: "Lockstimme", - effect: "Der Anwender greift mit engelsgleichem Gesang an. Falls die Statuswerte des Zieles in dieser Runde erhöht wurden, wird es zusätzlich verwirrt." - }, - "temperFlare": { - name: "Frustflamme", - effect: "Der Anwender greift das Ziel voller Verzweiflung an. Wenn seine vorige Attacke fehlgeschlagen ist, verdoppelt sich die Stärke der Attacke." - }, - "supercellSlam": { - name: "Donnerstoß", - effect: "Der Anwender lädt seinen Körper mit elektrischer Energie auf und stürzt sich auf das Ziel. Bei Misserfolg verletzt sich der Anwender selbst." - }, - "psychicNoise": { - name: "Psycholärm", - effect: "Der Anwender greift mit unerträglichen Schallwellen an, wodurch das Ziel zwei Runden lang nicht durch Attacken, Fähigkeiten oder getragene Items geheilt werden kann." - }, - "upperHand": { - name: "Schnellkonter", - effect: "Der Anwender reagiert auf Bewegungen des Zieles und lässt es durch einen Schlag zurückschrecken. Gelingt nur, wenn das Ziel gerade eine Erstschlag-Attacke vorbereitet." - }, - "malignantChain": { - name: "Giftkettung", - effect: "Der Anwender umwickelt das Ziel mit einer Kette aus Toxinen, die in dessen Körper eindringen und ihm schaden. Das Ziel wird eventuell schwer vergiftet." - } -} as const; diff --git a/src/locales/de/nature.ts b/src/locales/de/nature.json similarity index 79% rename from src/locales/de/nature.ts rename to src/locales/de/nature.json index 0156b8515df..d1406f723a9 100644 --- a/src/locales/de/nature.ts +++ b/src/locales/de/nature.json @@ -1,6 +1,4 @@ -import { SimpleTranslationEntries } from "#app/interfaces/locales"; - -export const nature: SimpleTranslationEntries = { +{ "Hardy": "Robust", "Lonely": "Solo", "Brave": "Mutig", @@ -26,4 +24,4 @@ export const nature: SimpleTranslationEntries = { "Sassy": "Forsch", "Careful": "Sacht", "Quirky": "Kauzig" -} as const; +} \ No newline at end of file diff --git a/src/locales/de/party-ui-handler.ts b/src/locales/de/party-ui-handler.json similarity index 92% rename from src/locales/de/party-ui-handler.ts rename to src/locales/de/party-ui-handler.json index 097b670c768..fb5a5207569 100644 --- a/src/locales/de/party-ui-handler.ts +++ b/src/locales/de/party-ui-handler.json @@ -1,6 +1,4 @@ -import { SimpleTranslationEntries } from "#app/interfaces/locales"; - -export const partyUiHandler: SimpleTranslationEntries = { +{ "SEND_OUT": "Einwechseln", "SUMMARY": "Bericht", "CANCEL": "Abbrechen", @@ -17,7 +15,6 @@ export const partyUiHandler: SimpleTranslationEntries = { "UNPAUSE_EVOLUTION": "Entwicklung fortsetzen", "REVIVE": "Wiederbeleben", "RENAME": "Umbenennen", - "choosePokemon": "Wähle ein Pokémon.", "doWhatWithThisPokemon": "Was soll mit diesem Pokémon geschehen?", "noEnergy": "{{pokemonName}} ist nicht fit genug, um zu kämpfen!", @@ -34,13 +31,9 @@ export const partyUiHandler: SimpleTranslationEntries = { "changeQuantity": "Wähle ein getragenes Item aus, das übertragen werden soll. Nutze < und > um die Anzahl zu ändern.", "selectAnotherPokemonToSplice": "Wähle ein anderes Pokémon mit dem fusioniert werden soll aus.", "cancel": "Abbrechen", - - // Slot TM text "able": "Erlernbar!", "notAble": "Nicht erlernbar", "learned": "Bereits erlernt!", - - // Releasing messages "goodbye": "Auf wiedersehen, {{pokemonName}}!", "byebye": "Byebye, {{pokemonName}}!", "farewell": "Mach’s gut, {{pokemonName}}!", @@ -50,5 +43,5 @@ export const partyUiHandler: SimpleTranslationEntries = { "illNeverForgetYou": "Ich werde dich niemals vergessen, {{pokemonName}}!", "untilWeMeetAgain": "Bis wir uns wiedersehen, {{pokemonName}}!", "sayonara": "Sayonara, {{pokemonName}}!", - "smellYaLater": "Also dann, man riecht sich! Ciao!, {{pokemonName}}!", -} as const; + "smellYaLater": "Also dann, man riecht sich! Ciao!, {{pokemonName}}!" +} \ No newline at end of file diff --git a/src/locales/de/pokeball.json b/src/locales/de/pokeball.json new file mode 100644 index 00000000000..83020c072f8 --- /dev/null +++ b/src/locales/de/pokeball.json @@ -0,0 +1,8 @@ +{ + "pokeBall": "Pokéball", + "greatBall": "Superball", + "ultraBall": "Hyperball", + "rogueBall": "Rogueball", + "masterBall": "Meisterball", + "luxuryBall": "Luxusball" +} \ No newline at end of file diff --git a/src/locales/de/pokeball.ts b/src/locales/de/pokeball.ts deleted file mode 100644 index 395134be844..00000000000 --- a/src/locales/de/pokeball.ts +++ /dev/null @@ -1,10 +0,0 @@ -import { SimpleTranslationEntries } from "#app/interfaces/locales"; - -export const pokeball: SimpleTranslationEntries = { - "pokeBall": "Pokéball", - "greatBall": "Superball", - "ultraBall": "Hyperball", - "rogueBall": "Rogueball", - "masterBall": "Meisterball", - "luxuryBall": "Luxusball", -} as const; diff --git a/src/locales/de/pokemon-form-battle.json b/src/locales/de/pokemon-form-battle.json new file mode 100644 index 00000000000..8651b3d1318 --- /dev/null +++ b/src/locales/de/pokemon-form-battle.json @@ -0,0 +1,14 @@ +{ + "mega": "Mega-{{pokemonName}}", + "mega-x": "Mega-{{pokemonName}} X", + "mega-y": "Mega-{{pokemonName}} Y", + "primal": "Proto-{{pokemonName}}", + "gigantamax": "G-Dyna-{{pokemonName}}", + "eternamax": "U-Dyna-{{pokemonName}}", + "megaChange": "{{preName}} hat sich zu {{pokemonName}} mega-entwickelt!", + "gigantamaxChange": "{{preName}} hat sich zu {{pokemonName}} gigadynamaximiert!", + "eternamaxChange": "{{preName}} hat sich zu {{pokemonName}} unendynamaximiert!", + "revertChange": "{{pokemonName}} hat seine ursprüngliche Form zurückerlangt!", + "formChange": "{{preName}} hat seine Form geändert!", + "disguiseChange": "Its disguise served it as a decoy!" +} \ No newline at end of file diff --git a/src/locales/de/pokemon-form.ts b/src/locales/de/pokemon-form.json similarity index 79% rename from src/locales/de/pokemon-form.ts rename to src/locales/de/pokemon-form.json index 0aadfc287e0..d621e3165fa 100644 --- a/src/locales/de/pokemon-form.ts +++ b/src/locales/de/pokemon-form.json @@ -1,25 +1,4 @@ -import { SimpleTranslationEntries } from "#app/interfaces/locales"; - -export const battlePokemonForm: SimpleTranslationEntries = { - // Battle forms - "mega": "Mega-{{pokemonName}}", - "mega-x": "Mega-{{pokemonName}} X", - "mega-y": "Mega-{{pokemonName}} Y", - "primal": "Proto-{{pokemonName}}", - "gigantamax": "G-Dyna-{{pokemonName}}", - "eternamax": "U-Dyna-{{pokemonName}}", - - "megaChange": "{{preName}} hat sich zu {{pokemonName}} mega-entwickelt!", - "gigantamaxChange": "{{preName}} hat sich zu {{pokemonName}} gigadynamaximiert!", - "eternamaxChange": "{{preName}} hat sich zu {{pokemonName}} unendynamaximiert!", - "revertChange": "{{pokemonName}} hat seine ursprüngliche Form zurückerlangt!", - "formChange": "{{preName}} hat seine Form geändert!", - "disguiseChange": "Its disguise served it as a decoy!", -} as const; - -export const pokemonForm: SimpleTranslationEntries = { - // Starters forms - // 1G +{ "pikachuCosplay": "Cosplay", "pikachuCoolCosplay": "Rocker-Pikachu", "pikachuBeautyCosplay": "Damen-Pikachu", @@ -28,7 +7,6 @@ export const pokemonForm: SimpleTranslationEntries = { "pikachuToughCosplay": "Wrestler-Pikachu", "pikachuPartner": "Partner-Pikachu", "eeveePartner": "Partner-Evoli", - // 2G "pichuSpiky": "Strubbelohr-Pichu", "unownA": "A", "unownB": "B", @@ -58,12 +36,10 @@ export const pokemonForm: SimpleTranslationEntries = { "unownZ": "Z", "unownExclamation": "!", "unownQuestion": "?", - // 3G "castformSunny": "Sonnenform", "castformRainy": "Regenform", "castformSnowy": "Schneeform", "deoxysNormal": "Normalform", - // 4G "burmyPlant": "Pflanzenumhang", "burmySandy": "Sandumhang", "burmyTrash": "Lumpenumhang", @@ -76,7 +52,6 @@ export const pokemonForm: SimpleTranslationEntries = { "rotomMow": "Schneid-Rotom", "giratinaAltered": "Wandelform", "shayminLand": "Landform", - // 5G "basculinRedStriped": "Rotlinige Form", "basculinBlueStriped": "Blaulinige Form", "basculinWhiteStriped": "Weißlinige Form", @@ -89,7 +64,7 @@ export const pokemonForm: SimpleTranslationEntries = { "landorusIncarnate": "Inkarnationsform", "keldeoOrdinary": "Standardform", "meloettaAria": "Gesangsform", - // 6G + "meloettaPirouette": "Tanzform", "froakieBattleBond": "Ash-Form", "scatterbugMeadow": "Blumenmeermuster", "scatterbugIcySnow": "Frostmuster", @@ -135,7 +110,6 @@ export const pokemonForm: SimpleTranslationEntries = { "zygarde50Pc": "50% Form Scharwandel", "zygarde10Pc": "10% Form Scharwandel", "zygardeComplete": "Optimum-Form", - // 7G "oricorioBaile": "Flamenco-Stil", "oricorioPompom": "Cheerleading-Stil", "oricorioPau": "Hula-Stil", @@ -159,7 +133,6 @@ export const pokemonForm: SimpleTranslationEntries = { "mimikyuBusted": "Entlarvte Form", "magearnaOriginal": "Originalfarbe", "marshadowZenith": "Zenitform", - // 8G "sinisteaPhony": "Fälschungsform", "sinisteaAntique": "Originalform", "eiscueNoIce": "Wohlfühlkopf", @@ -170,7 +143,6 @@ export const pokemonForm: SimpleTranslationEntries = { "zamazentaHeroOfManyBattles": "Heldenhafter Krieger", "zarudeDada": "Papa", "enamorusIncarnate": "Inkarnationsform", - // 9G "squawkabillyGreenPlumage": "Grüngefiedert", "squawkabillyBluePlumage": "Blaugefiedert", "squawkabillyYellowPlumage": "Gelbgefiedert", @@ -181,19 +153,18 @@ export const pokemonForm: SimpleTranslationEntries = { "gimmighoulChest": "Truhenform", "gimmighoulRoaming": "Wanderform", "koraidonApexBuild": "Vollkommene Gestalt", - "koraidonLimitedBuild":"Gehemmte Gestalt", - "koraidonSprintingBuild":"Sprintgestalt", - "koraidonSwimmingBuild":"Schwimmgestalt", - "koraidonGlidingBuild":"Schwingengestalt", - "miraidonUltimateMode":"Kompletter Modus", - "miraidonLowPowerMode":"Begrenzter Modus", - "miraidonDriveMode":"Fahrmodus", - "miraidonAquaticMode":"Wassermodus", - "miraidonGlideMode":"Gleitmodus", + "koraidonLimitedBuild": "Gehemmte Gestalt", + "koraidonSprintingBuild": "Sprintgestalt", + "koraidonSwimmingBuild": "Schwimmgestalt", + "koraidonGlidingBuild": "Schwingengestalt", + "miraidonUltimateMode": "Kompletter Modus", + "miraidonLowPowerMode": "Begrenzter Modus", + "miraidonDriveMode": "Fahrmodus", + "miraidonAquaticMode": "Wassermodus", + "miraidonGlideMode": "Gleitmodus", "poltchageistCounterfeit": "Imitationsform", "poltchageistArtisan": "Kostbarkeitsform", "paldeaTaurosCombat": "Gefechtsvariante", "paldeaTaurosBlaze": "Flammenvariante", - "paldeaTaurosAqua": "Flutenvariante", - -} as const; + "paldeaTaurosAqua": "Flutenvariante" +} \ No newline at end of file diff --git a/src/locales/de/pokemon-info-container.json b/src/locales/de/pokemon-info-container.json new file mode 100644 index 00000000000..1a9bf59afec --- /dev/null +++ b/src/locales/de/pokemon-info-container.json @@ -0,0 +1,7 @@ +{ + "moveset": "Attacken", + "gender": "Geschlecht:", + "ability": "Fähigkeit:", + "nature": "Wesen:", + "form": "Form:" +} \ No newline at end of file diff --git a/src/locales/de/pokemon-info-container.ts b/src/locales/de/pokemon-info-container.ts deleted file mode 100644 index 9540d858cd8..00000000000 --- a/src/locales/de/pokemon-info-container.ts +++ /dev/null @@ -1,9 +0,0 @@ -import { SimpleTranslationEntries } from "#app/interfaces/locales"; - -export const pokemonInfoContainer: SimpleTranslationEntries = { - "moveset": "Attacken", - "gender": "Geschlecht:", - "ability": "Fähigkeit:", - "nature": "Wesen:", - "form": "Form:", -} as const; diff --git a/src/locales/de/pokemon-info.ts b/src/locales/de/pokemon-info.json similarity index 78% rename from src/locales/de/pokemon-info.ts rename to src/locales/de/pokemon-info.json index b926c0c5115..a559001f663 100644 --- a/src/locales/de/pokemon-info.ts +++ b/src/locales/de/pokemon-info.json @@ -1,7 +1,5 @@ -import { PokemonInfoTranslationEntries } from "#app/interfaces/locales"; - -export const pokemonInfo: PokemonInfoTranslationEntries = { - Stat: { +{ + "Stat": { "HP": "KP", "HPStat": "KP", "HPshortened": "KP", @@ -16,10 +14,9 @@ export const pokemonInfo: PokemonInfoTranslationEntries = { "SPD": "Initiative", "SPDshortened": "Init", "ACC": "Genauigkeit", - "EVA": "Fluchtwert", + "EVA": "Fluchtwert" }, - - Type: { + "Type": { "UNKNOWN": "Unbekannt", "NORMAL": "Normal", "FIGHTING": "Kampf", @@ -39,6 +36,6 @@ export const pokemonInfo: PokemonInfoTranslationEntries = { "DRAGON": "Drache", "DARK": "Unlicht", "FAIRY": "Fee", - "STELLAR": "Stellar", - }, -} as const; + "STELLAR": "Stellar" + } +} \ No newline at end of file diff --git a/src/locales/de/pokemon-summary.json b/src/locales/de/pokemon-summary.json new file mode 100644 index 00000000000..1790c6878b9 --- /dev/null +++ b/src/locales/de/pokemon-summary.json @@ -0,0 +1,44 @@ +{ + "pokemonInfo": "Pokémon Info", + "status": "Status", + "powerAccuracyCategory": "Stärke\nGenauigkeit\nKategorie", + "type": "Typ", + "unknownTrainer": "Unbekannt", + "ot": "OT", + "nature": "Wesen", + "expPoints": "Erf. Punkte", + "nextLv": "Nächstes Lvl.", + "cancel": "Abbrechen", + "memoString": "Wesen: {{natureFragment}}\n{{metFragment}}", + "metFragment": { + "normal": "Herkunft: {{biome}}\nMit Lv. {{level}} erhalten.", + "apparently": "Herkunft: {{biome}}\nOffenbar mit Lv. {{level}} erhalten." + }, + "natureFragment": { + "Hardy": "{{nature}}", + "Lonely": "{{nature}}", + "Brave": "{{nature}}", + "Adamant": "{{nature}}", + "Naughty": "{{nature}}", + "Bold": "{{nature}}", + "Docile": "{{nature}}", + "Relaxed": "{{nature}}", + "Impish": "{{nature}}", + "Lax": "{{nature}}", + "Timid": "{{nature}}", + "Hasty": "{{nature}}", + "Serious": "{{nature}}", + "Jolly": "{{nature}}", + "Naive": "{{nature}}", + "Modest": "{{nature}}", + "Mild": "{{nature}}", + "Quiet": "{{nature}}", + "Bashful": "{{nature}}", + "Rash": "{{nature}}", + "Calm": "{{nature}}", + "Gentle": "{{nature}}", + "Sassy": "{{nature}}", + "Careful": "{{nature}}", + "Quirky": "{{nature}}" + } +} diff --git a/src/locales/de/pokemon-summary.ts b/src/locales/de/pokemon-summary.ts deleted file mode 100644 index 69683d4d4a0..00000000000 --- a/src/locales/de/pokemon-summary.ts +++ /dev/null @@ -1,20 +0,0 @@ -import { TranslationEntries } from "#app/interfaces/locales"; - -export const pokemonSummary: TranslationEntries = { - "pokemonInfo": "Pokémon Info", - "status": "Status", - "powerAccuracyCategory": "Stärke\nGenauigkeit\nKategorie", - "type": "Typ", - "unknownTrainer": "Unbekannt", - "ot": "OT", - "nature": "Wesen", - "expPoints": "Erf. Punkte", - "nextLv": "Nächstes Lvl.", - "cancel": "Abbrechen", - - "memoString": "Wesen: {{natureFragment}}\n{{metFragment}}", - "metFragment": { - "normal": "Herkunft: {{biome}}\nMit Lv. {{level}} erhalten.", - "apparently": "Herkunft: {{biome}}\nOffenbar mit Lv. {{level}} erhalten.", - }, -} as const; diff --git a/src/locales/de/pokemon.ts b/src/locales/de/pokemon.json similarity index 99% rename from src/locales/de/pokemon.ts rename to src/locales/de/pokemon.json index 58a0439f5d5..7024e26f044 100644 --- a/src/locales/de/pokemon.ts +++ b/src/locales/de/pokemon.json @@ -1,6 +1,4 @@ -import { SimpleTranslationEntries } from "#app/interfaces/locales"; - -export const pokemon: SimpleTranslationEntries = { +{ "bulbasaur": "Bisasam", "ivysaur": "Bisaknosp", "venusaur": "Bisaflor", @@ -1082,5 +1080,5 @@ export const pokemon: SimpleTranslationEntries = { "hisui_decidueye": "Silvarro", "paldea_tauros": "Tauros", "paldea_wooper": "Felino", - "bloodmoon_ursaluna": "Ursaluna", -} as const; + "bloodmoon_ursaluna": "Ursaluna" +} \ No newline at end of file diff --git a/src/locales/de/run-history.json b/src/locales/de/run-history.json new file mode 100644 index 00000000000..0a36afe9adc --- /dev/null +++ b/src/locales/de/run-history.json @@ -0,0 +1,38 @@ +{ + "victory": "Sieg!", + "defeatedWild": "Besiegt durch ", + "defeatedTrainer": "Besiegt durch ", + "defeatedTrainerDouble": "Besiegt durch Doppelkampf", + "defeatedRival": "Besiegt durch Rivalin", + "defeated": "Besiegt", + "defeatedWild_female": "Besiegt durch ", + "defeatedTrainer_female": "Besiegt durch ", + "defeatedTrainerDouble_female": "Besiegt durch Doppelkampf", + "defeatedRival_female": "Besiegt durch Rivale", + "defeated_female": "Besiegt", + "luck": "Glück", + "score": "Punkte", + "mode": "Modus", + "challengeRules": "Regeln", + "challengeMonoGen1": "Gen I", + "challengeMonoGen2": "Gen II", + "challengeMonoGen3": "Gen III", + "challengeMonoGen4": "Gen IV", + "challengeMonoGen5": "Gen V", + "challengeMonoGen6": "Gen VI", + "challengeMonoGen7": "Gen VII", + "challengeMonoGen8": "Gen VIII", + "challengeMonoGen9": "Gen IX", + "playerItems": "Spielergegenstände", + "personalBest": "Persönlicher Bestwert!", + "SPDshortened": "Init.", + "runInfo": "Durchlauf Informationen", + "money": "Geld", + "runLength": "Durchlauf Dauer", + "viewHeldItems": "Getragene Items", + "hallofFameText": "Willkommen in der Ruhmeshalle!", + "hallofFameText_female": "Willkommen in der Ruhmeshalle", + "viewHallOfFame": "Ruhmeshalle ansehen!", + "viewEndingSplash": "Endgrafik anzeigen!" +} + diff --git a/src/locales/de/save-slot-select-ui-handler.json b/src/locales/de/save-slot-select-ui-handler.json new file mode 100644 index 00000000000..7b6e493b867 --- /dev/null +++ b/src/locales/de/save-slot-select-ui-handler.json @@ -0,0 +1,7 @@ +{ + "overwriteData": "Den ausgewählten Speicherstand überschreiben?", + "loading": "Läd...", + "wave": "Welle", + "lv": "Lv. ", + "empty": "Leer" +} \ No newline at end of file diff --git a/src/locales/de/save-slot-select-ui-handler.ts b/src/locales/de/save-slot-select-ui-handler.ts deleted file mode 100644 index 47069d62780..00000000000 --- a/src/locales/de/save-slot-select-ui-handler.ts +++ /dev/null @@ -1,9 +0,0 @@ -import { SimpleTranslationEntries } from "#app/interfaces/locales"; - -export const saveSlotSelectUiHandler: SimpleTranslationEntries = { - "overwriteData": "Den ausgewählten Speicherstand überschreiben?", - "loading": "Läd...", - "wave": "Welle", - "lv": "Lv. ", - "empty": "Leer", -} as const; diff --git a/src/locales/de/settings.ts b/src/locales/de/settings.json similarity index 93% rename from src/locales/de/settings.ts rename to src/locales/de/settings.json index 7d4523c8cbd..d72a026cf5a 100644 --- a/src/locales/de/settings.ts +++ b/src/locales/de/settings.json @@ -1,6 +1,4 @@ -import { SimpleTranslationEntries } from "#app/interfaces/locales.js"; - -export const settings: SimpleTranslationEntries = { +{ "boy": "Junge", "girl": "Mädchen", "general": "Allgemein", @@ -63,7 +61,9 @@ export const settings: SimpleTranslationEntries = { "typeHints": "Typhinweise", "masterVolume": "Gesamtlautstärke", "bgmVolume": "Hintergrundmusik", + "fieldVolume": "Rufe & Attacken", "seVolume": "Spezialeffekte", + "uiVolume": "Benutzeroberfläche", "musicPreference": "Musik Präferenz", "mixed": "Gemischt", "gamepadPleasePlug": "Bitte einen Controller anschließen oder eine Taste drücken.", @@ -99,4 +99,9 @@ export const settings: SimpleTranslationEntries = { "showBgmBar": "Musiknamen anzeigen", "moveTouchControls": "Bewegung Touch Steuerung", "shopOverlayOpacity": "Shop Overlay Deckkraft", -} as const; + "shopCursorTarget": "Shop-Cursor Ziel", + "items": "Items", + "reroll": "Neu rollen", + "shop": "Shop", + "checkTeam": "Team überprüfen" +} diff --git a/src/locales/de/splash-messages.ts b/src/locales/de/splash-messages.json similarity index 89% rename from src/locales/de/splash-messages.ts rename to src/locales/de/splash-messages.json index a521d96057d..ac3fd345f3f 100644 --- a/src/locales/de/splash-messages.ts +++ b/src/locales/de/splash-messages.json @@ -1,6 +1,4 @@ -import { SimpleTranslationEntries } from "#app/interfaces/locales"; - -export const splashMessages: SimpleTranslationEntries = { +{ "battlesWon": "Kämpfe gewonnen!", "joinTheDiscord": "Tritt dem Discord bei!", "infiniteLevels": "Unendliche Level!", @@ -34,5 +32,5 @@ export const splashMessages: SimpleTranslationEntries = { "alsoTryRadicalRed": "Versuche auch Radical Red!", "eeveeExpo": "Evoli-Expo!", "ynoproject": "YNO-Projekt!", - "breedersInSpace": "Züchter im Weltall!", -} as const; + "breedersInSpace": "Züchter im Weltall!" +} \ No newline at end of file diff --git a/src/locales/de/starter-select-ui-handler.ts b/src/locales/de/starter-select-ui-handler.json similarity index 72% rename from src/locales/de/starter-select-ui-handler.ts rename to src/locales/de/starter-select-ui-handler.json index 284152bbd33..e146d1bdcd9 100644 --- a/src/locales/de/starter-select-ui-handler.ts +++ b/src/locales/de/starter-select-ui-handler.json @@ -1,13 +1,6 @@ -import { SimpleTranslationEntries } from "#app/interfaces/locales"; - -/** - * The menu namespace holds most miscellaneous text that isn't directly part of the game's - * contents or directly related to Pokemon data. This includes menu navigation, settings, - * account interactions, descriptive text, etc. - */ -export const starterSelectUiHandler: SimpleTranslationEntries = { +{ "confirmStartTeam": "Mit diesen Pokémon losziehen?", - "confirmExit": "Do you want to exit?", + "confirmExit": "Willst du zurück?", "invalidParty": "Das ist kein gültiges Team!", "gen1": "I", "gen2": "II", @@ -28,8 +21,8 @@ export const starterSelectUiHandler: SimpleTranslationEntries = { "toggleIVs": "DVs anzeigen/verbergen", "manageMoves": "Attacken ändern", "manageNature": "Wesen ändern", - "addToFavorites": "Add to Favorites", - "removeFromFavorites": "Remove from Favorites", + "addToFavorites": "Zu Favoriten hinzufügen", + "removeFromFavorites": "Von Favoriten entfernen", "useCandies": "Bonbons verwenden", "selectNature": "Wähle das neue Wesen.", "selectMoveSwapOut": "Wähle die zu ersetzende Attacke.", @@ -49,4 +42,4 @@ export const starterSelectUiHandler: SimpleTranslationEntries = { "locked": "Gesperrt", "disabled": "Deaktiviert", "uncaught": "Ungefangen" -}; +} \ No newline at end of file diff --git a/src/locales/de/status-effect.json b/src/locales/de/status-effect.json new file mode 100644 index 00000000000..c30d432fe79 --- /dev/null +++ b/src/locales/de/status-effect.json @@ -0,0 +1,65 @@ +{ + "none": { + "name": "None", + "description": "", + "obtain": "", + "obtainSource": "", + "activation": "", + "overlap": "", + "heal": "" + }, + "poison": { + "name": "Gift", + "description": "Vergiftungen", + "obtain": "{{pokemonNameWithAffix}} wurde vergiftet!", + "obtainSource": "{{pokemonNameWithAffix}} wurde durch {{sourceText}} vergiftet!", + "activation": "{{pokemonNameWithAffix}} wird durch Gift verletzt!", + "overlap": "{{pokemonNameWithAffix}} ist bereits vergiftet!", + "heal": "Die Vergiftung von {{pokemonNameWithAffix}} wurde geheilt!" + }, + "toxic": { + "name": "Gift", + "description": "Vergiftungen", + "obtain": "{{pokemonNameWithAffix}} wurde schwer vergiftet!", + "obtainSource": "{{pokemonNameWithAffix}} wurde durch {{sourceText}} schwer vergiftet!", + "activation": "{{pokemonNameWithAffix}} wird durch Gift verletzt!", + "overlap": "{{pokemonNameWithAffix}} ist bereits vergiftet!", + "heal": "Die Vergiftung von {{pokemonNameWithAffix}} wurde geheilt!" + }, + "paralysis": { + "name": "Paralyse", + "description": "Paralyse", + "obtain": "{{pokemonNameWithAffix}} wurde paralysiert!\nEs kann eventuell nicht handeln!", + "obtainSource": "{{pokemonNameWithAffix}} wurde durch {{sourceText}} paralysiert,\nEs kann eventuell nicht handeln!", + "activation": "{{pokemonNameWithAffix}} ist paralysiert!\nEs kann nicht angreifen!", + "overlap": "{{pokemonNameWithAffix}} ist bereits paralysiert!", + "heal": "Die Paralyse von {{pokemonNameWithAffix}} wurde aufgehoben!" + }, + "sleep": { + "name": "Schlaf", + "description": "Einschlafen", + "obtain": "{{pokemonNameWithAffix}} ist eingeschlafen!", + "obtainSource": "{{pokemonNameWithAffix}} ist durch {{sourceText}} eingeschlafen!", + "activation": "{{pokemonNameWithAffix}} schläft tief und fest!", + "overlap": "{{pokemonNameWithAffix}} schläft bereits!", + "heal": "{{pokemonNameWithAffix}} ist aufgewacht!" + }, + "freeze": { + "name": "Gefroren", + "description": "Einfrieren", + "obtain": "{{pokemonNameWithAffix}} erstarrt zu Eis!", + "obtainSource": "{{pokemonNameWithAffix}} erstarrt durch {{sourceText}} zu Eis!", + "activation": "{{pokemonNameWithAffix}} ist eingefroren und kann nicht handeln!", + "overlap": "{{pokemonNameWithAffix}} ist bereits eingefroren!", + "heal": "{{pokemonNameWithAffix}} wurde aufgetaut!" + }, + "burn": { + "name": "Verbrennung", + "description": "Verbrennungen", + "obtain": "{{pokemonNameWithAffix}} erleidet Verbrennungen!", + "obtainSource": "{{pokemonNameWithAffix}} erleidet durch {{sourceText}} Verbrennungen!", + "activation": "Die Verbrennungen schaden {{pokemonNameWithAffix}}!", + "overlap": "{{pokemonNameWithAffix}} leidet bereits unter Verbrennungen!", + "heal": "Die Verbrennungen von {{pokemonNameWithAffix}} wurden geheilt!" + } +} \ No newline at end of file diff --git a/src/locales/de/status-effect.ts b/src/locales/de/status-effect.ts deleted file mode 100644 index b48bd468626..00000000000 --- a/src/locales/de/status-effect.ts +++ /dev/null @@ -1,67 +0,0 @@ -import { StatusEffectTranslationEntries } from "#app/interfaces/locales.js"; - -export const statusEffect: StatusEffectTranslationEntries = { - none: { - name: "None", - description: "", - obtain: "", - obtainSource: "", - activation: "", - overlap: "", - heal: "" - }, - poison: { - name: "Gift", - description: "Vergiftungen", - obtain: "{{pokemonNameWithAffix}} wurde vergiftet!", - obtainSource: "{{pokemonNameWithAffix}} wurde durch {{sourceText}} vergiftet!", - activation: "{{pokemonNameWithAffix}} wird durch Gift verletzt!", - overlap: "{{pokemonNameWithAffix}} ist bereits vergiftet!", - heal: "Die Vergiftung von {{pokemonNameWithAffix}} wurde geheilt!" - }, - toxic: { - name: "Gift", - description: "Vergiftungen", - obtain: "{{pokemonNameWithAffix}} wurde schwer vergiftet!", - obtainSource: "{{pokemonNameWithAffix}} wurde durch {{sourceText}} schwer vergiftet!", - activation: "{{pokemonNameWithAffix}} wird durch Gift verletzt!", - overlap: "{{pokemonNameWithAffix}} ist bereits vergiftet!", - heal: "Die Vergiftung von {{pokemonNameWithAffix}} wurde geheilt!" - }, - paralysis: { - name: "Paralyse", - description: "Paralyse", - obtain: "{{pokemonNameWithAffix}} wurde paralysiert!\nEs kann eventuell nicht handeln!", - obtainSource: "{{pokemonNameWithAffix}} wurde durch {{sourceText}} paralysiert,\nEs kann eventuell nicht handeln!", - activation: "{{pokemonNameWithAffix}} ist paralysiert!\nEs kann nicht angreifen!", - overlap: "{{pokemonNameWithAffix}} ist bereits paralysiert!", - heal: "Die Paralyse von {{pokemonNameWithAffix}} wurde aufgehoben!" - }, - sleep: { - name: "Schlaf", - description: "Einschlafen", - obtain: "{{pokemonNameWithAffix}} ist eingeschlafen!", - obtainSource: "{{pokemonNameWithAffix}}ist durch {{sourceText}} eingeschlafen!", - activation: "{{pokemonNameWithAffix}} schläft tief und fest!", - overlap: "{{pokemonNameWithAffix}} schläft bereits!", - heal: "{{pokemonNameWithAffix}} ist aufgewacht!" - }, - freeze: { - name: "Gefroren", - description: "Einfrieren", - obtain: "{{pokemonNameWithAffix}} erstarrt zu Eis!", - obtainSource: "{{pokemonNameWithAffix}} erstarrt durch {{sourceText}} zu Eis!", - activation: "{{pokemonNameWithAffix}} ist eingefroren und kann nicht handeln!", - overlap: "{{pokemonNameWithAffix}} ist bereits eingefroren!", - heal: "{{pokemonNameWithAffix}} wurde aufgetaut!" - }, - burn: { - name: "Verbrennung ", - description: "Verbrennungen", - obtain: "{{pokemonNameWithAffix}} erleidet Verbrennungen!", - obtainSource: "{{pokemonNameWithAffix}} erleidet durch {{sourceText}} Verbrennungen!", - activation: "Die Verbrennungen schaden {{pokemonNameWithAffix}}!", - overlap: "{{pokemonNameWithAffix}} leidet bereits unter Verbrennungen!", - heal: "Die Verbrennungen von {{pokemonNameWithAffix}} wurden geheilt!" - }, -} as const; diff --git a/src/locales/de/terrain.json b/src/locales/de/terrain.json new file mode 100644 index 00000000000..4d2ef33752c --- /dev/null +++ b/src/locales/de/terrain.json @@ -0,0 +1,20 @@ +{ + "misty": "Nebelfeld", + "mistyStartMessage": "Am Boden breitet sich dichter Nebel aus!", + "mistyClearMessage": "Das Nebelfeld ist wieder verschwunden!", + "mistyBlockMessage": "{{pokemonNameWithAffix}} wird vom Nebelfeld geschützt!", + + "electric": "Elektrofeld", + "electricStartMessage": "Elektrische Energie fließt durch den Boden!", + "electricClearMessage": "Das Elektrofeld ist wieder verschwunden!", + + "grassy": "Grasfeld", + "grassyStartMessage": "Dichtes Gras schießt aus dem Boden!", + "grassyClearMessage": "Das Grasfeld ist wieder verschwunden!", + + "psychic": "Psychofeld", + "psychicStartMessage": "Der Boden fühlt sich seltsam an!", + "psychicClearMessage": "Das Psychofeld ist wieder verschwunden!", + + "defaultBlockMessage": "{{pokemonNameWithAffix}} wird vom {{terrainName}} geschützt!" +} \ No newline at end of file diff --git a/src/locales/de/trainer-classes.json b/src/locales/de/trainer-classes.json new file mode 100644 index 00000000000..45826fcd310 --- /dev/null +++ b/src/locales/de/trainer-classes.json @@ -0,0 +1,130 @@ +{ + "ace_trainer": "Ass-Trainer", + "ace_trainer_female": "Ass-Trainerin", + "ace_duo": "Ass-Duo", + "artist": "Künstler", + "artist_female": "Künstlerin", + "backers": "Anhänger", + "backpacker": "Backpacker", + "backpacker_female": "Backpackerin", + "backpackers": "Backpacker", + "baker": "Bäckerin", + "battle_girl": "Kämpferin", + "beauty": "Schönheit", + "beginners": "Anfänger", + "biker": "Rowdy", + "black_belt": "Schwarzgurt", + "breeder": "Pokémon Züchter", + "breeder_female": "Pokémon Züchterin", + "breeders": "Pokémon Züchter", + "clerk": "Angestellter", + "clerk_female": "Angestellte", + "colleagues": "Geschäftspartner", + "crush_kin": "Mühlensippe", + "cyclist": "Biker", + "cyclist_female": "Bikerin", + "cyclists": "Biker", + "dancer": "Tänzer", + "dancer_female": "Tänzerin", + "depot_agent": "Bahnangestellter", + "doctor": "Arzt", + "doctor_female": "Ärztin", + "firebreather": "Feuerspucker", + "fisherman": "Angler", + "fisherman_female": "Angler", + "gentleman": "Gentleman", + "guitarist": "Gitarrist", + "guitarist_female": "Gitarristin", + "harlequin": "Kasper", + "hiker": "Wanderer", + "hooligans": "Rabauken", + "hoopster": "Basketballer", + "infielder": "Baseballer", + "janitor": "Hausmeister", + "lady": "Lady", + "lass": "Göre", + "linebacker": "Footballer", + "maid": "Zofe", + "madame": "Madam", + "medical_team": "Mediziner", + "musician": "Musiker", + "hex_maniac": "Hexe", + "nurse": "Pflegerin", + "nursery_aide": "Erzieherin", + "officer": "Polizist", + "parasol_lady": "Schirmdame", + "pilot": "Pilot", + "pokéfan": "Pokéfan", + "pokéfan_female": "Pokéfan", + "pokéfan_family": "Pokéfan-Pärchen", + "preschooler": "Vorschüler", + "preschooler_female": "Vorschülerin", + "preschoolers": "Vorschüler", + "psychic": "Seher", + "psychic_female": "Seherin", + "psychics": "Seher", + "pokémon_ranger": "Pokémon-Ranger", + "pokémon_ranger_female": "Pokémon-Ranger", + "pokémon_rangers": "Pokémon-Ranger", + "ranger": "Ranger", + "restaurant_staff": "Restaurant Angestellte", + "rich": "Gentleman", + "rich_female": "Reiche Dame", + "rich_boy": "Schnösel", + "rich_couple": "Reiches Paar", + "rich_kid": "Schnösel", + "rich_kid_female": "Schnöselin", + "rich_kids": "Schnösel", + "roughneck": "Raufbold", + "sailor": "Matrose", + "scientist": "Forscher", + "scientist_female": "Forscherin", + "scientists": "Forscher", + "smasher": "Tennis-Ass", + "snow_worker": "Schneearbeiter", + "snow_worker_female": "Schneearbeiterin", + "striker": "Fußballer", + "school_kid": "Schulkind", + "school_kid_female": "Schulkind", + "school_kids": "Schüler", + "swimmer": "Schwimmer", + "swimmer_female": "Schwimmerin", + "swimmers": "Schwimmerpaar", + "twins": "Zwillinge", + "veteran": "Veteran", + "veteran_female": "Veteran", + "veteran_duo": "Veteranen", + "waiter": "Servierer", + "waitress": "Serviererin", + "worker": "Arbeiter", + "worker_female": "Arbeiterin", + "workers": "Arbeiter", + "youngster": "Knirps", + "rocket_grunt": "Rüpel von Team Rocket", + "rocket_grunt_female": "Rüpel von Team Rocket", + "rocket_grunts": "Rüpel von Team Rocket", + "magma_grunt": "Rüpel von Team Magma", + "magma_grunt_female": "Rüpel von Team Magma", + "magma_grunts": "Rüpel von Team Magma", + "aqua_grunt": "Rüpel von Team Aqua", + "aqua_grunt_female": "Rüpel von Team Aqua", + "aqua_grunts": "Rüpel von Team Aqua", + "galactic_grunt": "Rüpel von Team Galaktik", + "galactic_grunt_female": "Rüpel von Team Galaktik", + "galactic_grunts": "Rüpel von Team Galaktik", + "plasma_grunt": "Rüpel von Team Plasma", + "plasma_grunt_female": "Rüpel von Team Plasma", + "plasma_grunts": "Rüpel von Team Plasma", + "flare_grunt": "Rüpel von Team Flare", + "flare_grunt_female": "Rüpel von Team Flare", + "flare_grunts": "Rüpel von Team Flare", + "aether_grunt": "Æther Foundation Personal", + "aether_grunt_female": "Æther Foundation Personal", + "aether_grunts": "Æther Foundation Personal", + "skull_grunt": "Rüpel von Team Skull", + "skull_grunt_female": "Rüpel von Team Skull", + "skull_grunts": "Rüpel von Team Skull", + "macro_grunt": "Angestellter von Macro Cosmos", + "macro_grunt_female": "Angestellte von Macro Cosmos", + "macro_grunts": "Angestellte von Macro Cosmos" +} diff --git a/src/locales/de/trainer-names.json b/src/locales/de/trainer-names.json new file mode 100644 index 00000000000..ffbb772234c --- /dev/null +++ b/src/locales/de/trainer-names.json @@ -0,0 +1,165 @@ +{ + "brock": "Rocko", + "misty": "Misty", + "lt_surge": "Major Bob", + "erika": "Erika", + "janine": "Janina", + "sabrina": "Sabrina", + "blaine": "Pyro", + "giovanni": "Giovanni", + "falkner": "Falk", + "bugsy": "Kai", + "whitney": "Bianka", + "morty": "Jens", + "chuck": "Hartwig", + "jasmine": "Jasmin", + "pryce": "Norbert", + "clair": "Sandra", + "roxanne": "Felizia", + "brawly": "Kamillo", + "wattson": "Walter", + "flannery": "Flavia", + "norman": "Norman", + "winona": "Wibke", + "tate": "Ben", + "liza": "Svenja", + "juan": "Juan", + "roark": "Veit", + "gardenia": "Silvana", + "maylene": "Hilda", + "crasher_wake": "Wellenbrecher Marinus", + "fantina": "Lamina", + "byron": "Adam", + "candice": "Frida", + "volkner": "Volkner", + "cilan": "Benny", + "chili": "Maik", + "cress": "Colin", + "cheren": "Cheren", + "lenora": "Aloe", + "roxie": "Mica", + "burgh": "Artie", + "elesa": "Kamilla", + "clay": "Turner", + "skyla": "Géraldine", + "brycen": "Sandro", + "drayden": "Lysander", + "marlon": "Benson", + "viola": "Viola", + "grant": "Lino", + "korrina": "Connie", + "ramos": "Amaro", + "clemont": "Citro", + "valerie": "Valerie", + "olympia": "Astrid", + "wulfric": "Galantho", + "milo": "Yarro", + "nessa": "Kate", + "kabu": "Kabu", + "bea": "Saida", + "allister": "Nio", + "opal": "Papella", + "bede": "Betys", + "gordie": "Mac", + "melony": "Mel", + "piers": "Nezz", + "marnie": "Mary", + "raihan": "Roy", + "katy": "Ronah", + "brassius": "Colzo", + "iono": "Enigmara", + "kofu": "Kombu", + "larry": "Aoki", + "ryme": "Etta", + "tulip": "Tulia", + "grusha": "Grusha", + "lorelei": "Lorelei", + "bruno": "Bruno", + "agatha": "Agathe", + "lance": "Siegfried", + "will": "Willi", + "koga": "Koga", + "karen": "Melanie", + "sidney": "Ulrich", + "phoebe": "Antonia", + "glacia": "Frosina", + "drake": "Dragan", + "aaron": "Herbaro", + "bertha": "Teresa", + "flint": "Ignaz", + "lucian": "Lucian", + "shauntal": "Anissa", + "marshal": "Eugen", + "grimsley": "Astor", + "caitlin": "Kattlea", + "malva": "Pachira", + "siebold": "Narcisse", + "wikstrom": "Thymelot", + "drasna": "Dracena", + "hala": "Hala", + "molayne": "Marlon", + "olivia": "Mayla", + "acerola": "Lola", + "kahili": "Kahili", + "rika": "Cay", + "poppy": "Poppy", + "hassel": "Sinius", + "crispin": "Matt", + "amarys": "Erin", + "lacey": "Tara", + "drayton": "Levy", + "blue": "Blau", + "red": "Rot", + "steven": "Troy", + "wallace": "Wassili", + "cynthia": "Cynthia", + "alder": "Lauro", + "iris": "Lilia", + "diantha": "Diantha", + "hau": "Tali", + "geeta": "Sagaria", + "nemona": "Nemila", + "kieran": "Jo", + "leon": "Delion", + "rival": "Finn", + "rival_female": "Ivy", + + "archer": "Atlas", + "ariana": "Athena", + "proton": "Lance", + "petrel": "Lambda", + "tabitha": "Kalle", + "courtney": "Jördis", + "shelly": "Kordula", + "matt": "Wolfgang", + "mars": "Mars", + "jupiter": "Jupiter", + "saturn": "Saturn", + "zinzolin": "Violaceus", + "rood": "Rubius", + "xerosic": "Xeros", + "bryony": "Begonia", + "faba": "Fabian", + "plumeria": "Fran", + "oleana": "Olivia", + + "maxie": "Marc", + "archie": "Adrian", + "cyrus": "Zyrus", + "ghetsis": "G-Cis", + "lysandre": "Flordelis", + "lusamine": "Samantha", + "guzma": "Bromley", + "rose": "Rose", + + "blue_red_double": "Blau & Rot", + "red_blue_double": "Rot & Blau", + "tate_liza_double": "Ben & Svenja", + "liza_tate_double": "Svenja & Ben", + "steven_wallace_double": "Troy & Wassili", + "wallace_steven_double": "Wassili & Troy", + "alder_iris_double": "Lauro & Lilia", + "iris_alder_double": "Lilia & Lauro", + "piers_marnie_double": "Nezz & Mary", + "marnie_piers_double": "Mary & Nezz" +} diff --git a/src/locales/de/trainer-titles.json b/src/locales/de/trainer-titles.json new file mode 100644 index 00000000000..21a4b2fa7b6 --- /dev/null +++ b/src/locales/de/trainer-titles.json @@ -0,0 +1,38 @@ +{ + "elite_four": "Top Vier", + "elite_four_female": "Top Vier", + "gym_leader": "Arenaleiter", + "gym_leader_female": "Arenaleiterin", + "gym_leader_double": "Arenaleiter-Duo", + "champion": "Champion", + "champion_female": "Champion", + "champion_double": "Champion-Duo", + "rival": "Rivale", + "professor": "Professor", + "frontier_brain": "Kampfkoryphäen", + "rocket_boss": "Rocket-Boss", + "magma_boss": "Magma-Boss", + "aqua_boss": "Aqua-Boss", + "galactic_boss": "Galaktik-Boss", + "plasma_boss": "Weiser von Team Plasma", + "flare_boss": "Flare-Boss", + "aether_boss": "Æther-Präsidentin", + "skull_boss": "Skull-Boss", + "macro_boss": "Geschäftsführer von Macro Cosmos", + "rocket_admin": "Team Rocket Vorstand", + "rocket_admin_female": "Team Rocket Vorstand", + "magma_admin": "Team Magma Vorstand", + "magma_admin_female": "Team Magma Vorstand", + "aqua_admin": "Team Aqua Vorstand", + "aqua_admin_female": "Team Aqua Vorstand", + "galactic_commander": "Team Galaktik Commander", + "galactic_commander_female": "Team Galaktik Commander", + "plasma_sage": "Weiser von Team Plasma", + "plasma_admin": "Team Plasma Vorstand", + "flare_admin": "Team Flare Vorstand", + "flare_admin_female": "Team Flare Vorstand", + "aether_admin": "Æther-Regionalleiter", + "skull_admin": "Team Skull Vorstand", + "macro_admin": "Vizepräsidentin von Macro Cosmos" + +} diff --git a/src/locales/de/trainers.ts b/src/locales/de/trainers.ts deleted file mode 100644 index 6bde37a4ea3..00000000000 --- a/src/locales/de/trainers.ts +++ /dev/null @@ -1,322 +0,0 @@ -import {SimpleTranslationEntries} from "#app/interfaces/locales"; - -// Titles of special trainers like gym leaders, elite four, and the champion -export const titles: SimpleTranslationEntries = { - "elite_four": "Top Vier", - "elite_four_female": "Top Vier", - "gym_leader": "Arenaleiter", - "gym_leader_female": "Arenaleiterin", - "gym_leader_double": "Arenaleiter-Duo", - "champion": "Champion", - "champion_female": "Champion", - "champion_double": "Champion-Duo", - "rival": "Rivale", - "professor": "Professor", - "frontier_brain": "Kampfkoryphäen", - "rocket_boss": "Rocket-Boss", - "magma_boss": "Magma-Boss", - "aqua_boss": "Aqua-Boss", - "galactic_boss": "Galaktik-Boss", - "plasma_boss": "Weiser von Team Plasma", // This is on purpose, since "Ghetsis" is never mentioned as the boss of team plasma in the game but as "Weiser" - "flare_boss": "Flare-Boss", - - "rocket_admin": "Team Rocket Vorstand", - "rocket_admin_female": "Team Rocket Vorstand", - "magma_admin": "Team Magma Vorstand", - "magma_admin_female": "Team Magma Vorstand", - "aqua_admin": "Team Aqua Vorstand", - "aqua_admin_female": "Team Aqua Vorstand", - "galactic_commander": "Team Galaktik Commander", - "galactic_commander_female": "Team Galaktik Commander", - "plasma_sage": "Weiser von Team Plasma", - "plasma_admin": "Team Plasma Vorstand", - "flare_admin": "Team Flare Vorstand", - "flare_admin_female": "Team Flare Vorstand", - // Maybe if we add the evil teams we can add "Team Rocket" and "Team Aqua" etc. here as well as "Team Rocket Boss" and "Team Aqua Admin" etc. -} as const; - -// Titles of trainers like "Youngster" or "Lass" -export const trainerClasses: SimpleTranslationEntries = { - "ace_trainer": "Ass-Trainer", - "ace_trainer_female": "Ass-Trainerin", - "ace_duo": "Ass-Duo", - "artist": "Künstler", - "artist_female": "Künstlerin", - "backers": "Anhänger", - "backpacker": "Backpacker", - "backpacker_female": "Backpackerin", - "backpackers": "Backpacker", - "baker": "Bäckerin", - "battle_girl": "Kämpferin", - "beauty": "Schönheit", - "beginners": "Anfänger", - "biker": "Rowdy", - "black_belt": "Schwarzgurt", - "breeder": "Pokémon Züchter", - "breeder_female": "Pokémon Züchterin", - "breeders": "Pokémon Züchter", - "clerk": "Angestellter", - "clerk_female": "Angestellte", - "colleagues": "Geschäftspartner", - "crush_kin": "Mühlensippe", - "cyclist": "Biker", - "cyclist_female": "Bikerin", - "cyclists": "Biker", - "dancer": "Tänzer", - "dancer_female": "Tänzerin", - "depot_agent": "Bahnangestellter", - "doctor": "Arzt", - "doctor_female": "Ärztin", - "firebreather": "Feuerspucker", - "fisherman": "Angler", - "fisherman_female": "Angler", // Seems to be the same in german but exists in other languages like italian - "gentleman": "Gentleman", - "guitarist": "Gitarrist", - "guitarist_female": "Gitarristin", - "harlequin": "Kasper", - "hiker": "Wanderer", - "hooligans": "Rabauken", - "hoopster": "Basketballer", - "infielder": "Baseballer", - "janitor": "Hausmeister", - "lady": "Lady", - "lass": "Göre", - "linebacker": "Footballer", - "maid": "Zofe", - "madame": "Madam", - "medical_team": "Mediziner", - "musician": "Musiker", - "hex_maniac": "Hexe", - "nurse": "Pflegerin", - "nursery_aide": "Erzieherin", - "officer": "Polizist", - "parasol_lady": "Schirmdame", - "pilot": "Pilot", - "pokéfan": "Pokéfan", - "pokéfan_female": "Pokéfan", - "pokéfan_family": "Pokéfan-Pärchen", - "preschooler": "Vorschüler", - "preschooler_female": "Vorschülerin", - "preschoolers": "Vorschüler", - "psychic": "Seher", - "psychic_female": "Seherin", - "psychics": "Seher", - "pokémon_ranger": "Pokémon-Ranger", - "pokémon_ranger_female": "Pokémon-Ranger", - "pokémon_rangers": "Pokémon-Ranger", - "ranger": "Ranger", - "restaurant_staff": "Restaurant Angestellte", - "rich": "Gentleman", - "rich_female": "Reiche Dame", - "rich_boy": "Schnösel", - "rich_couple": "Reiches Paar", - "rich_kid": "Schnösel", - "rich_kid_female": "Schnöselin", - "rich_kids": "Schnösel", - "roughneck": "Raufbold", - "sailor": "Matrose", - "scientist": "Forscher", - "scientist_female": "Forscherin", - "scientists": "Forscher", - "smasher": "Tennis-Ass", - "snow_worker": "Schneearbeiter", // There is a trainer type for this but no actual trainer class? They seem to be just workers but dressed differently - "snow_worker_female": "Schneearbeiterin", - "striker": "Fußballer", - "school_kid": "Schulkind", - "school_kid_female": "Schulkind", // Same in german but different in italian - "school_kids": "Schüler", - "swimmer": "Schwimmer", - "swimmer_female": "Schwimmerin", - "swimmers": "Schwimmerpaar", - "twins": "Zwillinge", - "veteran": "Veteran", - "veteran_female": "Veteran", // same in german, different in other languages - "veteran_duo": "Veteranen", - "waiter": "Servierer", - "waitress": "Serviererin", - "worker": "Arbeiter", - "worker_female": "Arbeiterin", - "workers": "Arbeiter", - "youngster": "Knirps", - "rocket_grunt": "Rüpel von Team Rocket", - "rocket_grunt_female": "Rüpel von Team Rocket", - "rocket_grunts": "Rüpel von Team Rocket", - "magma_grunt": "Rüpel von Team Magma", - "magma_grunt_female": "Rüpel von Team Magma", - "magma_grunts": "Rüpel von Team Magma", - "aqua_grunt": "Rüpel von Team Aqua", - "aqua_grunt_female": "Rüpel von Team Aqua", - "aqua_grunts": "Rüpel von Team Aqua", - "galactic_grunt": "Rüpel von Team Galaktik", - "galactic_grunt_female": "Rüpel von Team Galaktik", - "galactic_grunts": "Rüpel von Team Galaktik", - "plasma_grunt": "Rüpel von Team Plasma", - "plasma_grunt_female": "Rüpel von Team Plasma", - "plasma_grunts": "Rüpel von Team Plasma", - "flare_grunt": "Rüpel von Team Flare", - "flare_grunt_female": "Rüpel von Team Flare", - "flare_grunts": "Rüpel von Team Flare", -} as const; - -// Names of special trainers like gym leaders, elite four, and the champion -export const trainerNames: SimpleTranslationEntries = { - "brock": "Rocko", - "misty": "Misty", - "lt_surge": "Major Bob", - "erika": "Erika", - "janine": "Janina", - "sabrina": "Sabrina", - "blaine": "Pyro", - "giovanni": "Giovanni", - "falkner": "Falk", - "bugsy": "Kai", - "whitney": "Bianka", - "morty": "Jens", - "chuck": "Hartwig", - "jasmine": "Jasmin", - "pryce": "Norbert", - "clair": "Sandra", - "roxanne": "Felizia", - "brawly": "Kamillo", - "wattson": "Walter", - "flannery": "Flavia", - "norman": "Norman", - "winona": "Wibke", - "tate": "Ben", - "liza": "Svenja", - "juan": "Juan", - "roark": "Veit", - "gardenia": "Silvana", - "maylene": "Hilda", - "crasher_wake": "Wellenbrecher Marinus", - "fantina": "Lamina", - "byron": "Adam", - "candice": "Frida", - "volkner": "Volkner", - "cilan": "Benny", - "chili": "Maik", - "cress": "Colin", - "cheren": "Cheren", - "lenora": "Aloe", - "roxie": "Mica", - "burgh": "Artie", - "elesa": "Kamilla", - "clay": "Turner", - "skyla": "Géraldine", - "brycen": "Sandro", - "drayden": "Lysander", - "marlon": "Benson", - "viola": "Viola", - "grant": "Lino", - "korrina": "Connie", - "ramos": "Amaro", - "clemont": "Citro", - "valerie": "Valerie", - "olympia": "Astrid", - "wulfric": "Galantho", - "milo": "Yarro", - "nessa": "Kate", - "kabu": "Kabu", - "bea": "Saida", - "allister": "Nio", - "opal": "Papella", - "bede": "Betys", - "gordie": "Mac", - "melony": "Mel", - "piers": "Nezz", - "marnie": "Mary", - "raihan": "Roy", - "katy": "Ronah", - "brassius": "Colzo", - "iono": "Enigmara", - "kofu": "Kombu", - "larry": "Aoki", - "ryme": "Etta", - "tulip": "Tulia", - "grusha": "Grusha", - "lorelei": "Lorelei", - "bruno": "Bruno", - "agatha": "Agathe", - "lance": "Siegfried", - "will": "Willi", - "koga": "Koga", - "karen": "Melanie", - "sidney": "Ulrich", - "phoebe": "Antonia", - "glacia": "Frosina", - "drake": "Dragan", - "aaron": "Herbaro", - "bertha": "Teresa", - "flint": "Ignaz", - "lucian": "Lucian", - "shauntal": "Anissa", - "marshal": "Eugen", - "grimsley": "Astor", - "caitlin": "Kattlea", - "malva": "Pachira", - "siebold": "Narcisse", - "wikstrom": "Thymelot", - "drasna": "Dracena", - "hala": "Hala", - "molayne": "Marlon", - "olivia": "Mayla", - "acerola": "Lola", - "kahili": "Kahili", - "rika": "Cay", - "poppy": "Poppy", - "hassel": "Sinius", - "crispin": "Matt", - "amarys": "Erin", - "lacey": "Tara", - "drayton": "Levy", - "blue": "Blau", - "red": "Rot", - "steven": "Troy", - "wallace": "Wassili", - "cynthia": "Cynthia", - "alder": "Lauro", - "iris": "Lilia", - "diantha": "Diantha", - "hau": "Tali", - "geeta": "Sagaria", - "nemona": "Nemila", - "kieran": "Jo", - "leon": "Delion", - "rival": "Finn", - "rival_female": "Ivy", - - // Evil Team Admins - "archer": "Atlas", - "ariana": "Athena", - "proton": "Lance", - "petrel": "Lambda", - "tabitha": "Kalle", - "courtney": "Jördis", - "shelly": "Kordula", - "matt": "Wolfgang", - "mars": "Mars", - "jupiter": "Jupiter", - "saturn": "Saturn", - "zinzolin": "Violaceus", - "rood": "Rubius", - "xerosic": "Xeros", - "bryony": "Begonia", - - "maxie": "Marc", - "archie": "Adrian", - "cyrus": "Zyrus", - "ghetsis": "G-Cis", - "lysandre": "Flordelis", - - // Double Names - "blue_red_double": "Blau & Rot", - "red_blue_double": "Rot & Blau", - "tate_liza_double": "Ben & Svenja", - "liza_tate_double": "Svenja & Ben", - "steven_wallace_double": "Troy & Wassili", - "wallace_steven_double": "Wassili & Troy", - "alder_iris_double": "Lauro & Lilia", - "iris_alder_double": "Lilia & Lauro", - "piers_marnie_double": "Nezz & Mary", - "marnie_piers_double": "Mary & Nezz", -} as const; diff --git a/src/locales/de/tutorial.json b/src/locales/de/tutorial.json new file mode 100644 index 00000000000..9cdb94b2cac --- /dev/null +++ b/src/locales/de/tutorial.json @@ -0,0 +1,10 @@ +{ + "intro": "Willkommen bei PokéRogue! Dies ist ein kampforientiertes Pokémon-Fangame mit Roguelite-Elementen.\n$Dieses Spiel ist nicht monetarisiert.\n$Wir erheben keinen Eigentumsanspruch an Pokémon oder\nverwendeten, urheberrechtlich geschützten Inhalten.\n$Das Spiel befindet sich noch in der Entwicklung, ist aber voll spielbar.\n$Für Fehlerberichte nutze bitte den PokéRogue Discord-Server.\n$Sollte das Spiel langsam laufen, überprüfe, ob in deinem Browser \"Hardwarebeschleunigung\" aktiviert ist.", + "accessMenu": "Nutze M oder Esc, um das Menü zu öffnen. Dort hast du Zugriff auf die Einstellungen und andere Funktionen.", + "menu": "In diesem Menü hast du Zugriff auf die Einstellungen.\n$Dort kannst du u. A. die Spielgeschwin-\ndigkeit und das Fensterdesign ändern.\n$Das Menü verbirgt noch andere Funktionen - probier' sie gerne aus!", + "starterSelect": "In diesem Bildschirm kannst du mit Z oder Leertaste deine\nStarter auswählen.\n$Sie begleiten dich am Anfang deines Abenteuers.\n$Jeder Starter hat einen Preis. Dein Team kann bis zu sechs\nMitglieder haben, solange der Gesamtpreis max. 10 beträgt.\n$Du kannst Geschlecht, Fähigkeit und Form beliebig auswählen,\nsobald du sie mindestens einmal gefangen hast.\n$Die DVs ergeben sich aus den Höchstwerten aller Pokémon,\ndie du bereits gefangen hast. \n$Es lohnt sich also, das selbe Pokémon mehrmals zu fangen!", + "pokerus": "Jeden Tag haben drei zufällige Pokémon einen lila Rahmen.\n$Wenn du eins von ihnen besitzt,\n$nimm es doch mal mit und sieh dir seinen Bericht an!", + "statChange": "Statuswertveränderungen halten solange an, wie dein Pokémon auf dem Feld bleibt.\n$Pokémon werden am Anfang eines Trainerkampfes oder bei einem Arealwechsel automatisch zurückgerufen.\n$Nutze C oder Shift, um aktuelle Statuswertveränderungen anzuzeigen.", + "selectItem": "Nach jedem Kampf kannst du aus 3 zufälligen Items exakt eines auswählen.\n$Es gibt u. A. Heilitems, tragbare Items und Basis-Items, die dir einen permanenten Vorteil verschaffen.\n$Die meisten tragbaren und permanenten Items werden stärker, wenn du sie mehrfach sammelst.\n$Manche Items, wie Entwicklungssteine, tauchen nur auf, wenn du sie auch nutzen kannst.\n$Mithilfe der \"Transfer\"-Option kannst du Items zwischen deinen Pokémon verschieben.\n$Sie erscheint rechts unten, sobald du einem deiner Pokémon dein Item zum Tragen gegeben hast.\n$Du kannst Heilitems auch gegen Geld erwerben. Je weiter du kommst, desto mehr stehen dir zur Auswahl.\n$Erledige deine Einkäufe als erstes, denn sobald du dein zufälliges Item auswählst, beginnt der nächste Kampf.", + "eggGacha": "Hier kannst du deine Gutscheine gegen Pokémon-Eier\ntauschen.\n$Eier schlüpfen, nachdem du eine gewisse Anzahl Kämpfe\nabsolviert hast. Je seltener das Ei, desto länger dauert es.\n$Geschlüpfte Pokémon werden nicht deinem Team hinzugefügt,\nsondern deinen verfügbaren Startern.\n$In der Regel haben sie bessere DVs als in der Wildnis\ngefangene Pokémon.\n$Es gibt sogar Pokémon, die du nur aus Eiern erhalten kannst.\n$Es gibt drei Gacha-Maschinen mit je unterschiedlichen Boni,\nalso such' dir die aus, die dir am besten gefällt!" +} \ No newline at end of file diff --git a/src/locales/de/tutorial.ts b/src/locales/de/tutorial.ts deleted file mode 100644 index 0b02c6c0922..00000000000 --- a/src/locales/de/tutorial.ts +++ /dev/null @@ -1,47 +0,0 @@ -import { SimpleTranslationEntries } from "#app/interfaces/locales"; - -export const tutorial: SimpleTranslationEntries = { - "intro": `Willkommen bei PokéRogue! Dies ist ein kampforientiertes Pokémon-Fangame mit Roguelite-Elementen. - $Dieses Spiel ist nicht monetarisiert. - $Wir erheben keinen Eigentumsanspruch an Pokémon oder\nverwendeten, urheberrechtlich geschützten Inhalten. - $Das Spiel befindet sich noch in der Entwicklung, ist aber voll spielbar. - $Für Fehlerberichte nutze bitte den PokéRogue Discord-Server. - $Sollte das Spiel langsam laufen, überprüfe, ob in deinem Browser "Hardwarebeschleunigung" aktiviert ist.`, - - "accessMenu": "Nutze M oder Esc, um das Menü zu öffnen. Dort hast du Zugriff auf die Einstellungen und andere Funktionen.", - - "menu": `In diesem Menü hast du Zugriff auf die Einstellungen. - $Dort kannst du u. A. die Spielgeschwin-\ndigkeit und das Fensterdesign ändern. - $Das Menü verbirgt noch andere Funktionen - probier' sie gerne aus!`, - - "starterSelect": `In diesem Bildschirm kannst du mit Z oder Leertaste deine\nStarter auswählen. - $Sie begleiten dich am Anfang deines Abenteuers. - $Jeder Starter hat einen Preis. Dein Team kann bis zu sechs\nMitglieder haben, solange der Gesamtpreis max. 10 beträgt. - $Du kannst Geschlecht, Fähigkeit und Form beliebig auswählen,\nsobald du sie mindestens einmal gefangen hast. - $Die DVs ergeben sich aus den Höchstwerten aller Pokémon,\ndie du bereits gefangen hast. - $Es lohnt sich also, das selbe Pokémon mehrmals zu fangen!`, - - "pokerus": `Jeden Tag haben drei zufällige Pokémon einen lila Rahmen. - $Wenn du eins von ihnen besitzt, - $nimm es doch mal mit und sieh dir seinen Bericht an!`, - - "statChange": `Statuswertveränderungen halten solange an, wie dein Pokémon auf dem Feld bleibt. - $Pokémon werden am Anfang eines Trainerkampfes oder bei einem Arealwechsel automatisch zurückgerufen. - $Nutze C oder Shift, um aktuelle Statuswertveränderungen anzuzeigen.`, - - "selectItem": `Nach jedem Kampf kannst du aus 3 zufälligen Items exakt eines auswählen. - $Es gibt u. A. Heilitems, tragbare Items und Basis-Items, die dir einen permanenten Vorteil verschaffen. - $Die meisten tragbaren und permanenten Items werden stärker, wenn du sie mehrfach sammelst. - $Manche Items, wie Entwicklungssteine, tauchen nur auf, wenn du sie auch nutzen kannst. - $Mithilfe der "Transfer"-Option kannst du Items zwischen deinen Pokémon verschieben. - $Sie erscheint rechts unten, sobald du einem deiner Pokémon dein Item zum Tragen gegeben hast. - $Du kannst Heilitems auch gegen Geld erwerben. Je weiter du kommst, desto mehr stehen dir zur Auswahl. - $Erledige deine Einkäufe als erstes, denn sobald du dein zufälliges Item auswählst, beginnt der nächste Kampf.`, - - "eggGacha": `Hier kannst du deine Gutscheine gegen Pokémon-Eier\ntauschen. - $Eier schlüpfen, nachdem du eine gewisse Anzahl Kämpfe\nabsolviert hast. Je seltener das Ei, desto länger dauert es. - $Geschlüpfte Pokémon werden nicht deinem Team hinzugefügt,\nsondern deinen verfügbaren Startern. - $In der Regel haben sie bessere DVs als in der Wildnis\ngefangene Pokémon. - $Es gibt sogar Pokémon, die du nur aus Eiern erhalten kannst. - $Es gibt drei Gacha-Maschinen mit je unterschiedlichen Boni,\nalso such' dir die aus, die dir am besten gefällt!`, -} as const; diff --git a/src/locales/de/voucher.ts b/src/locales/de/voucher.json similarity index 64% rename from src/locales/de/voucher.ts rename to src/locales/de/voucher.json index 3ca01689875..8c2804a83d3 100644 --- a/src/locales/de/voucher.ts +++ b/src/locales/de/voucher.json @@ -1,11 +1,9 @@ -import { SimpleTranslationEntries } from "#app/interfaces/locales"; - -export const voucher: SimpleTranslationEntries = { - "vouchers": "Gutscheine", - "eggVoucher": "Ei-Gutschein", - "eggVoucherPlus": "Ei-Gutschein Plus", - "eggVoucherPremium": "Ei-Gutschein Premium", - "eggVoucherGold": "Ei-Gutschein Gold", - "locked": "Gesperrt", - "defeatTrainer": "Besiege {{trainerName}}" -} as const; +{ + "vouchers": "Gutscheine", + "eggVoucher": "Ei-Gutschein", + "eggVoucherPlus": "Ei-Gutschein Plus", + "eggVoucherPremium": "Ei-Gutschein Premium", + "eggVoucherGold": "Ei-Gutschein Gold", + "locked": "Gesperrt", + "defeatTrainer": "Besiege {{trainerName}}" +} \ No newline at end of file diff --git a/src/locales/de/weather.ts b/src/locales/de/weather.json similarity index 62% rename from src/locales/de/weather.ts rename to src/locales/de/weather.json index 8a820f3d549..6dc26b2cf8c 100644 --- a/src/locales/de/weather.ts +++ b/src/locales/de/weather.json @@ -1,66 +1,32 @@ -import { SimpleTranslationEntries } from "#app/interfaces/locales"; - -/** - * The weather namespace holds text displayed when weather is active during a battle - */ -export const weather: SimpleTranslationEntries = { +{ "sunnyStartMessage": "Die Sonnenlicht wird stärker!", "sunnyLapseMessage": "Die Sonnenlicht ist stark.", "sunnyClearMessage": "Die Sonnenlicht verliert wieder an Intensität.", - "rainStartMessage": "Es fängt an zu regnen!", "rainLapseMessage": "Es regnet weiter.", "rainClearMessage": "Der Regen lässt nach.", - "sandstormStartMessage": "Ein Sandsturm kommt auf!", "sandstormLapseMessage": "Der Sandsturm tobt.", "sandstormClearMessage": "Der Sandsturm legt sich.", "sandstormDamageMessage": " Der Sandsturm fügt {{pokemonNameWithAffix}} Schaden zu!", - "hailStartMessage": "Es fängt an zu hageln!", "hailLapseMessage": "Der Hagelsturm tobt.", "hailClearMessage": "Der Hagelsturm legt sich.", "hailDamageMessage": "{{pokemonNameWithAffix}} wird von Hagelkörnern getroffen!", - "snowStartMessage": "Es fängt an zu schneien!", "snowLapseMessage": "Der Schneesturm tobt.", "snowClearMessage": "Der Schneesturm legt sich.", - "fogStartMessage": "Am Boden breitet sich dichter Nebel aus!", "fogLapseMessage": "Der Nebel bleibt dicht.", "fogClearMessage": "Der Nebel lichtet sich.", - "heavyRainStartMessage": "Es fängt an, in Strömen zu regnen!", "heavyRainLapseMessage": "Der strömende Regen hält an.", "heavyRainClearMessage": "Der strömende Regen lässt nach.", - "harshSunStartMessage": "Das Sonnenlicht wird sehr viel stärker!", "harshSunLapseMessage": "Das Sonnenlicht ist sehr stark.", "harshSunClearMessage": "Das Sonnenlicht verliert an Intensität.", - "strongWindsStartMessage": "Alle Flug-Pokémon werden von rätselhaften Luftströmungen geschützt!", "strongWindsLapseMessage": "Die rätselhafte Luftströmung hält an.", "strongWindsEffectMessage": "Rätselhafte Luftströmungen haben den Angriff abgeschwächt!", - "strongWindsClearMessage": "Die rätselhafte Luftströmung hat sich wieder geleget.", -}; - -export const terrain: SimpleTranslationEntries = { - "misty": "Nebelfeld", - "mistyStartMessage": "Am Boden breitet sich dichter Nebel aus!", - "mistyClearMessage": "Das Nebelfeld ist wieder verschwunden!", - "mistyBlockMessage": "{{pokemonNameWithAffix}} wird vom Nebelfeld geschützt!", - - "electric": "Elektrofeld", - "electricStartMessage": "Elektrische Energie fließt durch den Boden!", - "electricClearMessage": "Das Elektrofeld ist wieder verschwunden!", - - "grassy": "Grasfeld", - "grassyStartMessage": "Dichtes Gras schießt aus dem Boden!", - "grassyClearMessage": "Das Grasfeld ist wieder verschwunden!", - - "psychic": "Psychofeld", - "psychicStartMessage": "Der Boden fühlt sich seltsam an!", - "psychicClearMessage": "Das Psychofeld ist wieder verschwunden!", - - "defaultBlockMessage": "{{pokemonNameWithAffix}} wird vom {{terrainName}} geschützt!" -}; + "strongWindsClearMessage": "Die rätselhafte Luftströmung hat sich wieder geleget." +} \ No newline at end of file diff --git a/src/locales/en/ability-trigger.ts b/src/locales/en/ability-trigger.json similarity index 95% rename from src/locales/en/ability-trigger.ts rename to src/locales/en/ability-trigger.json index 035fe8371be..307ab70b85c 100644 --- a/src/locales/en/ability-trigger.ts +++ b/src/locales/en/ability-trigger.json @@ -1,6 +1,4 @@ -import { SimpleTranslationEntries } from "#app/interfaces/locales"; - -export const abilityTriggers: SimpleTranslationEntries = { +{ "blockRecoilDamage": "{{pokemonName}}'s {{abilityName}}\nprotected it from recoil!", "badDreams": "{{pokemonName}} is tormented!", "costar": "{{pokemonName}} copied {{allyName}}'s stat changes!", @@ -10,7 +8,7 @@ export const abilityTriggers: SimpleTranslationEntries = { "trace": "{{pokemonName}} copied {{targetName}}'s\n{{abilityName}}!", "windPowerCharged": "Being hit by {{moveName}} charged {{pokemonName}} with power!", "quickDraw": "{{pokemonName}} can act faster than normal, thanks to its Quick Draw!", - "disguiseAvoidedDamage" : "{{pokemonNameWithAffix}}'s disguise was busted!", + "disguiseAvoidedDamage": "{{pokemonNameWithAffix}}'s disguise was busted!", "blockItemTheft": "{{pokemonNameWithAffix}}'s {{abilityName}}\nprevents item theft!", "typeImmunityHeal": "{{pokemonNameWithAffix}}'s {{abilityName}}\nrestored its HP a little!", "nonSuperEffectiveImmunity": "{{pokemonNameWithAffix}} avoided damage\nwith {{abilityName}}!", @@ -46,6 +44,7 @@ export const abilityTriggers: SimpleTranslationEntries = { "postFaintContactDamage": "{{pokemonNameWithAffix}}'s {{abilityName}}\nhurt its attacker!", "postFaintHpDamage": "{{pokemonNameWithAffix}}'s {{abilityName}}\nhurt its attacker!", "postSummonPressure": "{{pokemonNameWithAffix}} is exerting its Pressure!", + "weatherEffectDisappeared": "The effects of the weather disappeared.", "postSummonMoldBreaker": "{{pokemonNameWithAffix}} breaks the mold!", "postSummonAnticipation": "{{pokemonNameWithAffix}} shuddered!", "postSummonTurboblaze": "{{pokemonNameWithAffix}} is radiating a blazing aura!", @@ -59,5 +58,5 @@ export const abilityTriggers: SimpleTranslationEntries = { "postSummonSwordOfRuin": "{{pokemonNameWithAffix}}'s Sword of Ruin lowered the {{statName}}\nof all surrounding Pokémon!", "postSummonTabletsOfRuin": "{{pokemonNameWithAffix}}'s Tablets of Ruin lowered the {{statName}}\nof all surrounding Pokémon!", "postSummonBeadsOfRuin": "{{pokemonNameWithAffix}}'s Beads of Ruin lowered the {{statName}}\nof all surrounding Pokémon!", - "preventBerryUse": "{{pokemonNameWithAffix}} is too\nnervous to eat berries!", -} as const; + "preventBerryUse": "{{pokemonNameWithAffix}} is too\nnervous to eat berries!" +} \ No newline at end of file diff --git a/src/locales/en/ability.json b/src/locales/en/ability.json new file mode 100644 index 00000000000..de2e063e966 --- /dev/null +++ b/src/locales/en/ability.json @@ -0,0 +1,1242 @@ +{ + "stench": { + "name": "Stench", + "description": "By releasing stench when attacking, this Pokémon may cause the target to flinch." + }, + "drizzle": { + "name": "Drizzle", + "description": "The Pokémon makes it rain when it enters a battle." + }, + "speedBoost": { + "name": "Speed Boost", + "description": "Its Speed stat is boosted every turn." + }, + "battleArmor": { + "name": "Battle Armor", + "description": "Hard armor protects the Pokémon from critical hits." + }, + "sturdy": { + "name": "Sturdy", + "description": "It cannot be knocked out with one hit. One-hit KO moves cannot knock it out, either." + }, + "damp": { + "name": "Damp", + "description": "Prevents the use of explosive moves, such as Self-Destruct, by dampening its surroundings." + }, + "limber": { + "name": "Limber", + "description": "Its limber body protects the Pokémon from paralysis." + }, + "sandVeil": { + "name": "Sand Veil", + "description": "Boosts the Pokémon's evasiveness in a sandstorm." + }, + "static": { + "name": "Static", + "description": "The Pokémon is charged with static electricity, so contact with it may cause paralysis." + }, + "voltAbsorb": { + "name": "Volt Absorb", + "description": "Restores HP if hit by an Electric-type move instead of taking damage." + }, + "waterAbsorb": { + "name": "Water Absorb", + "description": "Restores HP if hit by a Water-type move instead of taking damage." + }, + "oblivious": { + "name": "Oblivious", + "description": "The Pokémon is oblivious, and that keeps it from being infatuated or falling for taunts." + }, + "cloudNine": { + "name": "Cloud Nine", + "description": "Eliminates the effects of weather." + }, + "compoundEyes": { + "name": "Compound Eyes", + "description": "The Pokémon's compound eyes boost its accuracy." + }, + "insomnia": { + "name": "Insomnia", + "description": "The Pokémon is suffering from insomnia and cannot fall asleep." + }, + "colorChange": { + "name": "Color Change", + "description": "The Pokémon's type becomes the type of the move used on it." + }, + "immunity": { + "name": "Immunity", + "description": "The immune system of the Pokémon prevents it from getting poisoned." + }, + "flashFire": { + "name": "Flash Fire", + "description": "Powers up the Pokémon's Fire-type moves if it's hit by one." + }, + "shieldDust": { + "name": "Shield Dust", + "description": "This Pokémon's dust blocks the additional effects of attacks taken." + }, + "ownTempo": { + "name": "Own Tempo", + "description": "This Pokémon has its own tempo, and that prevents it from becoming confused." + }, + "suctionCups": { + "name": "Suction Cups", + "description": "This Pokémon uses suction cups to stay in one spot to negate all moves and items that force switching out." + }, + "intimidate": { + "name": "Intimidate", + "description": "The Pokémon intimidates opposing Pokémon upon entering battle, lowering their Attack stat." + }, + "shadowTag": { + "name": "Shadow Tag", + "description": "This Pokémon steps on the opposing Pokémon's shadow to prevent it from escaping." + }, + "roughSkin": { + "name": "Rough Skin", + "description": "This Pokémon inflicts damage with its rough skin to the attacker on contact." + }, + "wonderGuard": { + "name": "Wonder Guard", + "description": "Its mysterious power only lets supereffective moves hit the Pokémon." + }, + "levitate": { + "name": "Levitate", + "description": "By floating in the air, the Pokémon receives full immunity to all Ground-type moves." + }, + "effectSpore": { + "name": "Effect Spore", + "description": "Contact with the Pokémon may inflict poison, sleep, or paralysis on its attacker." + }, + "synchronize": { + "name": "Synchronize", + "description": "The attacker will receive the same status condition if it inflicts a burn, poison, or paralysis to the Pokémon." + }, + "clearBody": { + "name": "Clear Body", + "description": "Prevents other Pokémon's moves or Abilities from lowering the Pokémon's stats." + }, + "naturalCure": { + "name": "Natural Cure", + "description": "All status conditions heal when the Pokémon switches out." + }, + "lightningRod": { + "name": "Lightning Rod", + "description": "The Pokémon draws in all Electric-type moves. Instead of being hit by Electric-type moves, it boosts its Sp. Atk." + }, + "sereneGrace": { + "name": "Serene Grace", + "description": "Boosts the likelihood of additional effects occurring when attacking." + }, + "swiftSwim": { + "name": "Swift Swim", + "description": "Boosts the Pokémon's Speed stat in rain." + }, + "chlorophyll": { + "name": "Chlorophyll", + "description": "Boosts the Pokémon's Speed stat in harsh sunlight." + }, + "illuminate": { + "name": "Illuminate", + "description": "By illuminating its surroundings, the Pokémon raises the likelihood of meeting wild Pokémon and prevents its accuracy from being lowered." + }, + "trace": { + "name": "Trace", + "description": "When it enters a battle, the Pokémon copies an opposing Pokémon's Ability." + }, + "hugePower": { + "name": "Huge Power", + "description": "Doubles the Pokémon's Attack stat." + }, + "poisonPoint": { + "name": "Poison Point", + "description": "Contact with the Pokémon may poison the attacker." + }, + "innerFocus": { + "name": "Inner Focus", + "description": "The Pokémon's intensely focused, and that protects the Pokémon from flinching." + }, + "magmaArmor": { + "name": "Magma Armor", + "description": "The Pokémon is covered with hot magma, which prevents the Pokémon from becoming frozen." + }, + "waterVeil": { + "name": "Water Veil", + "description": "The Pokémon is covered with a water veil, which prevents the Pokémon from getting a burn." + }, + "magnetPull": { + "name": "Magnet Pull", + "description": "Prevents Steel-type Pokémon from escaping using its magnetic force." + }, + "soundproof": { + "name": "Soundproof", + "description": "Soundproofing gives the Pokémon full immunity to all sound-based moves." + }, + "rainDish": { + "name": "Rain Dish", + "description": "The Pokémon gradually regains HP in rain." + }, + "sandStream": { + "name": "Sand Stream", + "description": "The Pokémon summons a sandstorm when it enters a battle." + }, + "pressure": { + "name": "Pressure", + "description": "By putting pressure on the opposing Pokémon, it raises their PP usage." + }, + "thickFat": { + "name": "Thick Fat", + "description": "The Pokémon is protected by a layer of thick fat, which halves the damage taken from Fire- and Ice-type moves." + }, + "earlyBird": { + "name": "Early Bird", + "description": "The Pokémon awakens from sleep twice as fast as other Pokémon." + }, + "flameBody": { + "name": "Flame Body", + "description": "Contact with the Pokémon may burn the attacker." + }, + "runAway": { + "name": "Run Away", + "description": "Enables a sure getaway from wild Pokémon." + }, + "keenEye": { + "name": "Keen Eye", + "description": "Keen eyes prevent other Pokémon from lowering this Pokémon's accuracy." + }, + "hyperCutter": { + "name": "Hyper Cutter", + "description": "The Pokémon's proud of its powerful pincers. They prevent other Pokémon from lowering its Attack stat." + }, + "pickup": { + "name": "Pickup", + "description": "The Pokémon may pick up the item an opposing Pokémon held during a battle." + }, + "truant": { + "name": "Truant", + "description": "The Pokémon can't use a move if it had used a move on the previous turn." + }, + "hustle": { + "name": "Hustle", + "description": "Boosts the Attack stat, but lowers accuracy." + }, + "cuteCharm": { + "name": "Cute Charm", + "description": "Contact with the Pokémon may cause infatuation." + }, + "plus": { + "name": "Plus", + "description": "Boosts the Sp. Atk stat of the Pokémon if an ally with the Plus or Minus Ability is also in battle." + }, + "minus": { + "name": "Minus", + "description": "Boosts the Sp. Atk stat of the Pokémon if an ally with the Plus or Minus Ability is also in battle." + }, + "forecast": { + "name": "Forecast", + "description": "The Pokémon transforms with the weather to change its type to Water, Fire, or Ice." + }, + "stickyHold": { + "name": "Sticky Hold", + "description": "Items held by the Pokémon are stuck fast and cannot be removed by other Pokémon." + }, + "shedSkin": { + "name": "Shed Skin", + "description": "The Pokémon may heal its own status conditions by shedding its skin." + }, + "guts": { + "name": "Guts", + "description": "It's so gutsy that having a status condition boosts the Pokémon's Attack stat." + }, + "marvelScale": { + "name": "Marvel Scale", + "description": "The Pokémon's marvelous scales boost the Defense stat if it has a status condition." + }, + "liquidOoze": { + "name": "Liquid Ooze", + "description": "The oozed liquid has a strong stench, which damages attackers using any draining move." + }, + "overgrow": { + "name": "Overgrow", + "description": "Powers up Grass-type moves when the Pokémon's HP is low." + }, + "blaze": { + "name": "Blaze", + "description": "Powers up Fire-type moves when the Pokémon's HP is low." + }, + "torrent": { + "name": "Torrent", + "description": "Powers up Water-type moves when the Pokémon's HP is low." + }, + "swarm": { + "name": "Swarm", + "description": "Powers up Bug-type moves when the Pokémon's HP is low." + }, + "rockHead": { + "name": "Rock Head", + "description": "Protects the Pokémon from recoil damage." + }, + "drought": { + "name": "Drought", + "description": "Turns the sunlight harsh when the Pokémon enters a battle." + }, + "arenaTrap": { + "name": "Arena Trap", + "description": "Prevents opposing Pokémon from fleeing." + }, + "vitalSpirit": { + "name": "Vital Spirit", + "description": "The Pokémon is full of vitality, and that prevents it from falling asleep." + }, + "whiteSmoke": { + "name": "White Smoke", + "description": "The Pokémon is protected by its white smoke, which prevents other Pokémon from lowering its stats." + }, + "purePower": { + "name": "Pure Power", + "description": "Using its pure power, the Pokémon doubles its Attack stat." + }, + "shellArmor": { + "name": "Shell Armor", + "description": "A hard shell protects the Pokémon from critical hits." + }, + "airLock": { + "name": "Air Lock", + "description": "Eliminates the effects of weather." + }, + "tangledFeet": { + "name": "Tangled Feet", + "description": "Raises evasiveness if the Pokémon is confused." + }, + "motorDrive": { + "name": "Motor Drive", + "description": "Boosts its Speed stat if hit by an Electric-type move instead of taking damage." + }, + "rivalry": { + "name": "Rivalry", + "description": "Becomes competitive and deals more damage to Pokémon of the same gender, but deals less to Pokémon of the opposite gender." + }, + "steadfast": { + "name": "Steadfast", + "description": "The Pokémon's determination boosts the Speed stat each time the Pokémon flinches." + }, + "snowCloak": { + "name": "Snow Cloak", + "description": "Boosts the Pokémon's evasiveness in snow." + }, + "gluttony": { + "name": "Gluttony", + "description": "Makes the Pokémon eat a held Berry when its HP drops to half or less, which is sooner than usual." + }, + "angerPoint": { + "name": "Anger Point", + "description": "The Pokémon is angered when it takes a critical hit, and that maxes its Attack stat." + }, + "unburden": { + "name": "Unburden", + "description": "Boosts the Speed stat if the Pokémon's held item is used or lost." + }, + "heatproof": { + "name": "Heatproof", + "description": "The heatproof body of the Pokémon halves the damage from Fire-type moves that hit it." + }, + "simple": { + "name": "Simple", + "description": "The stat changes the Pokémon receives are doubled." + }, + "drySkin": { + "name": "Dry Skin", + "description": "Restores HP in rain or when hit by Water-type moves. Reduces HP in harsh sunlight, and increases the damage received from Fire-type moves." + }, + "download": { + "name": "Download", + "description": "Compares an opposing Pokémon's Defense and Sp. Def stats before raising its own Attack or Sp. Atk stat—whichever will be more effective." + }, + "ironFist": { + "name": "Iron Fist", + "description": "Powers up punching moves." + }, + "poisonHeal": { + "name": "Poison Heal", + "description": "Restores HP if the Pokémon is poisoned instead of losing HP." + }, + "adaptability": { + "name": "Adaptability", + "description": "Powers up moves of the same type as the Pokémon." + }, + "skillLink": { + "name": "Skill Link", + "description": "Maximizes the number of times multistrike moves hit." + }, + "hydration": { + "name": "Hydration", + "description": "Heals status conditions if it's raining." + }, + "solarPower": { + "name": "Solar Power", + "description": "Boosts the Sp. Atk stat in harsh sunlight, but HP decreases every turn." + }, + "quickFeet": { + "name": "Quick Feet", + "description": "Boosts the Speed stat if the Pokémon has a status condition." + }, + "normalize": { + "name": "Normalize", + "description": "All the Pokémon's moves become Normal type. The power of those moves is boosted a little." + }, + "sniper": { + "name": "Sniper", + "description": "Powers up moves if they become critical hits when attacking." + }, + "magicGuard": { + "name": "Magic Guard", + "description": "The Pokémon only takes damage from attacks." + }, + "noGuard": { + "name": "No Guard", + "description": "The Pokémon employs no-guard tactics to ensure incoming and outgoing attacks always land." + }, + "stall": { + "name": "Stall", + "description": "The Pokémon moves after all other Pokémon do." + }, + "technician": { + "name": "Technician", + "description": "Powers up the Pokémon's weaker moves." + }, + "leafGuard": { + "name": "Leaf Guard", + "description": "Prevents status conditions in harsh sunlight." + }, + "klutz": { + "name": "Klutz", + "description": "The Pokémon can't use any held items." + }, + "moldBreaker": { + "name": "Mold Breaker", + "description": "Moves can be used on the target regardless of its Abilities." + }, + "superLuck": { + "name": "Super Luck", + "description": "The Pokémon is so lucky that the critical-hit ratios of its moves are boosted." + }, + "aftermath": { + "name": "Aftermath", + "description": "Damages the attacker if it contacts the Pokémon with a finishing hit." + }, + "anticipation": { + "name": "Anticipation", + "description": "The Pokémon can sense an opposing Pokémon's dangerous moves." + }, + "forewarn": { + "name": "Forewarn", + "description": "When it enters a battle, the Pokémon can tell one of the moves an opposing Pokémon has." + }, + "unaware": { + "name": "Unaware", + "description": "When attacking, the Pokémon ignores the target Pokémon's stat changes." + }, + "tintedLens": { + "name": "Tinted Lens", + "description": "The Pokémon can use \"not very effective\" moves to deal regular damage." + }, + "filter": { + "name": "Filter", + "description": "Reduces the power of supereffective attacks taken." + }, + "slowStart": { + "name": "Slow Start", + "description": "For five turns, the Pokémon's Attack and Speed stats are halved." + }, + "scrappy": { + "name": "Scrappy", + "description": "The Pokémon can hit Ghost-type Pokémon with Normal- and Fighting-type moves." + }, + "stormDrain": { + "name": "Storm Drain", + "description": "Draws in all Water-type moves. Instead of being hit by Water-type moves, it boosts its Sp. Atk." + }, + "iceBody": { + "name": "Ice Body", + "description": "The Pokémon gradually regains HP in snow." + }, + "solidRock": { + "name": "Solid Rock", + "description": "Reduces the power of supereffective attacks taken." + }, + "snowWarning": { + "name": "Snow Warning", + "description": "The Pokémon makes it snow when it enters a battle." + }, + "honeyGather": { + "name": "Honey Gather", + "description": "The Pokémon gathers Honey after a battle. The Honey is then sold for money." + }, + "frisk": { + "name": "Frisk", + "description": "When it enters a battle, the Pokémon can check an opposing Pokémon's Ability." + }, + "reckless": { + "name": "Reckless", + "description": "Powers up moves that have recoil damage." + }, + "multitype": { + "name": "Multitype", + "description": "Changes the Pokémon's type to match the Plate or Z-Crystal it holds." + }, + "flowerGift": { + "name": "Flower Gift", + "description": "Boosts the Attack and Sp. Def stats of itself and allies in harsh sunlight." + }, + "badDreams": { + "name": "Bad Dreams", + "description": "Reduces the HP of sleeping opposing Pokémon." + }, + "pickpocket": { + "name": "Pickpocket", + "description": "Steals an item from an attacker that made direct contact." + }, + "sheerForce": { + "name": "Sheer Force", + "description": "Removes additional effects to increase the power of moves when attacking." + }, + "contrary": { + "name": "Contrary", + "description": "Makes stat changes have an opposite effect." + }, + "unnerve": { + "name": "Unnerve", + "description": "Unnerves opposing Pokémon and makes them unable to eat Berries." + }, + "defiant": { + "name": "Defiant", + "description": "Boosts the Pokémon's Attack stat sharply when its stats are lowered." + }, + "defeatist": { + "name": "Defeatist", + "description": "Halves the Pokémon's Attack and Sp. Atk stats when its HP becomes half or less." + }, + "cursedBody": { + "name": "Cursed Body", + "description": "May disable a move used on the Pokémon." + }, + "healer": { + "name": "Healer", + "description": "Sometimes heals an ally's status condition." + }, + "friendGuard": { + "name": "Friend Guard", + "description": "Reduces damage done to allies." + }, + "weakArmor": { + "name": "Weak Armor", + "description": "Physical attacks to the Pokémon lower its Defense stat but sharply raise its Speed stat." + }, + "heavyMetal": { + "name": "Heavy Metal", + "description": "Doubles the Pokémon's weight." + }, + "lightMetal": { + "name": "Light Metal", + "description": "Halves the Pokémon's weight." + }, + "multiscale": { + "name": "Multiscale", + "description": "Reduces the amount of damage the Pokémon takes while its HP is full." + }, + "toxicBoost": { + "name": "Toxic Boost", + "description": "Powers up physical attacks when the Pokémon is poisoned." + }, + "flareBoost": { + "name": "Flare Boost", + "description": "Powers up special attacks when the Pokémon is burned." + }, + "harvest": { + "name": "Harvest", + "description": "May create another Berry after one is used." + }, + "telepathy": { + "name": "Telepathy", + "description": "Anticipates an ally's attack and dodges it." + }, + "moody": { + "name": "Moody", + "description": "Raises one stat sharply and lowers another every turn." + }, + "overcoat": { + "name": "Overcoat", + "description": "Protects the Pokémon from things like sand, hail, and powder." + }, + "poisonTouch": { + "name": "Poison Touch", + "description": "May poison a target when the Pokémon makes contact." + }, + "regenerator": { + "name": "Regenerator", + "description": "Restores a little HP when withdrawn from battle." + }, + "bigPecks": { + "name": "Big Pecks", + "description": "Protects the Pokémon from Defense-lowering effects." + }, + "sandRush": { + "name": "Sand Rush", + "description": "Boosts the Pokémon's Speed stat in a sandstorm." + }, + "wonderSkin": { + "name": "Wonder Skin", + "description": "Makes status moves more likely to miss." + }, + "analytic": { + "name": "Analytic", + "description": "Boosts move power when the Pokémon moves last." + }, + "illusion": { + "name": "Illusion", + "description": "Comes out disguised as the Pokémon in the party's last spot." + }, + "imposter": { + "name": "Imposter", + "description": "The Pokémon transforms itself into the Pokémon it's facing." + }, + "infiltrator": { + "name": "Infiltrator", + "description": "Passes through the opposing Pokémon's barrier, substitute, and the like and strikes." + }, + "mummy": { + "name": "Mummy", + "description": "Contact with the Pokémon changes the attacker's Ability to Mummy." + }, + "moxie": { + "name": "Moxie", + "description": "The Pokémon shows moxie, and that boosts the Attack stat after knocking out any Pokémon." + }, + "justified": { + "name": "Justified", + "description": "Being hit by a Dark-type move boosts the Attack stat of the Pokémon, for justice." + }, + "rattled": { + "name": "Rattled", + "description": "Intimidate or being hit by a Dark-, Ghost-, or Bug-type move will scare the Pokémon and boost its Speed stat." + }, + "magicBounce": { + "name": "Magic Bounce", + "description": "Reflects status moves instead of getting hit by them." + }, + "sapSipper": { + "name": "Sap Sipper", + "description": "Boosts the Attack stat if hit by a Grass-type move instead of taking damage." + }, + "prankster": { + "name": "Prankster", + "description": "Gives priority to a status move." + }, + "sandForce": { + "name": "Sand Force", + "description": "Boosts the power of Rock-, Ground-, and Steel-type moves in a sandstorm." + }, + "ironBarbs": { + "name": "Iron Barbs", + "description": "Inflicts damage on the attacker upon contact with iron barbs." + }, + "zenMode": { + "name": "Zen Mode", + "description": "Changes the Pokémon's shape when HP is half or less." + }, + "victoryStar": { + "name": "Victory Star", + "description": "Boosts the accuracy of its allies and itself." + }, + "turboblaze": { + "name": "Turboblaze", + "description": "Moves can be used on the target regardless of its Abilities." + }, + "teravolt": { + "name": "Teravolt", + "description": "Moves can be used on the target regardless of its Abilities." + }, + "aromaVeil": { + "name": "Aroma Veil", + "description": "Protects itself and its allies from attacks that limit their move choices." + }, + "flowerVeil": { + "name": "Flower Veil", + "description": "Ally Grass-type Pokémon are protected from status conditions and the lowering of their stats." + }, + "cheekPouch": { + "name": "Cheek Pouch", + "description": "Restores HP as well when the Pokémon eats a Berry." + }, + "protean": { + "name": "Protean", + "description": "Changes the Pokémon's type to the type of the move it's about to use." + }, + "furCoat": { + "name": "Fur Coat", + "description": "Halves the damage from physical moves." + }, + "magician": { + "name": "Magician", + "description": "The Pokémon steals the held item of a Pokémon it hits with a move." + }, + "bulletproof": { + "name": "Bulletproof", + "description": "Protects the Pokémon from some ball and bomb moves." + }, + "competitive": { + "name": "Competitive", + "description": "Boosts the Sp. Atk stat sharply when a stat is lowered." + }, + "strongJaw": { + "name": "Strong Jaw", + "description": "The Pokémon's strong jaw boosts the power of its biting moves." + }, + "refrigerate": { + "name": "Refrigerate", + "description": "Normal-type moves become Ice-type moves. The power of those moves is boosted a little." + }, + "sweetVeil": { + "name": "Sweet Veil", + "description": "Prevents itself and ally Pokémon from falling asleep." + }, + "stanceChange": { + "name": "Stance Change", + "description": "The Pokémon changes its form to Blade Forme when it uses an attack move and changes to Shield Forme when it uses King's Shield." + }, + "galeWings": { + "name": "Gale Wings", + "description": "Gives priority to Flying-type moves when the Pokémon's HP is full." + }, + "megaLauncher": { + "name": "Mega Launcher", + "description": "Powers up aura and pulse moves." + }, + "grassPelt": { + "name": "Grass Pelt", + "description": "Boosts the Pokémon's Defense stat on Grassy Terrain." + }, + "symbiosis": { + "name": "Symbiosis", + "description": "The Pokémon passes its item to an ally that has used up an item." + }, + "toughClaws": { + "name": "Tough Claws", + "description": "Powers up moves that make direct contact." + }, + "pixilate": { + "name": "Pixilate", + "description": "Normal-type moves become Fairy-type moves. The power of those moves is boosted a little." + }, + "gooey": { + "name": "Gooey", + "description": "Contact with the Pokémon lowers the attacker's Speed stat." + }, + "aerilate": { + "name": "Aerilate", + "description": "Normal-type moves become Flying-type moves. The power of those moves is boosted a little." + }, + "parentalBond": { + "name": "Parental Bond", + "description": "Parent and child each attacks." + }, + "darkAura": { + "name": "Dark Aura", + "description": "Powers up each Pokémon's Dark-type moves." + }, + "fairyAura": { + "name": "Fairy Aura", + "description": "Powers up each Pokémon's Fairy-type moves." + }, + "auraBreak": { + "name": "Aura Break", + "description": "The effects of \"Aura\" Abilities are reversed to lower the power of affected moves." + }, + "primordialSea": { + "name": "Primordial Sea", + "description": "The Pokémon changes the weather to nullify Fire-type attacks." + }, + "desolateLand": { + "name": "Desolate Land", + "description": "The Pokémon changes the weather to nullify Water-type attacks." + }, + "deltaStream": { + "name": "Delta Stream", + "description": "The Pokémon changes the weather to eliminate all of the Flying type's weaknesses." + }, + "stamina": { + "name": "Stamina", + "description": "Boosts the Defense stat when hit by an attack." + }, + "wimpOut": { + "name": "Wimp Out", + "description": "The Pokémon cowardly switches out when its HP becomes half or less." + }, + "emergencyExit": { + "name": "Emergency Exit", + "description": "The Pokémon, sensing danger, switches out when its HP becomes half or less." + }, + "waterCompaction": { + "name": "Water Compaction", + "description": "Boosts the Pokémon's Defense stat sharply when hit by a Water-type move." + }, + "merciless": { + "name": "Merciless", + "description": "The Pokémon's attacks become critical hits if the target is poisoned." + }, + "shieldsDown": { + "name": "Shields Down", + "description": "When its HP becomes half or less, the Pokémon's shell breaks and it becomes aggressive." + }, + "stakeout": { + "name": "Stakeout", + "description": "Doubles the damage dealt to the target's replacement if the target switches out." + }, + "waterBubble": { + "name": "Water Bubble", + "description": "Lowers the power of Fire-type moves done to the Pokémon and prevents the Pokémon from getting a burn." + }, + "steelworker": { + "name": "Steelworker", + "description": "Powers up Steel-type moves." + }, + "berserk": { + "name": "Berserk", + "description": "Boosts the Pokémon's Sp. Atk stat when it takes a hit that causes its HP to become half or less." + }, + "slushRush": { + "name": "Slush Rush", + "description": "Boosts the Pokémon's Speed stat in snow." + }, + "longReach": { + "name": "Long Reach", + "description": "The Pokémon uses its moves without making contact with the target." + }, + "liquidVoice": { + "name": "Liquid Voice", + "description": "All sound-based moves become Water-type moves." + }, + "triage": { + "name": "Triage", + "description": "Gives priority to a healing move." + }, + "galvanize": { + "name": "Galvanize", + "description": "Normal-type moves become Electric-type moves. The power of those moves is boosted a little." + }, + "surgeSurfer": { + "name": "Surge Surfer", + "description": "Doubles the Pokémon's Speed stat on Electric Terrain." + }, + "schooling": { + "name": "Schooling", + "description": "When it has a lot of HP, the Pokémon forms a powerful school. It stops schooling when its HP is low." + }, + "disguise": { + "name": "Disguise", + "description": "Once per battle, the shroud that covers the Pokémon can protect it from an attack." + }, + "battleBond": { + "name": "Battle Bond", + "description": "Defeating an opposing Pokémon strengthens the Pokémon's bond with its Trainer, and it becomes Ash-Greninja. Water Shuriken gets more powerful." + }, + "powerConstruct": { + "name": "Power Construct", + "description": "Other Cells gather to aid when its HP becomes half or less. Then the Pokémon changes its form to Complete Forme." + }, + "corrosion": { + "name": "Corrosion", + "description": "The Pokémon can poison the target even if it's a Steel or Poison type." + }, + "comatose": { + "name": "Comatose", + "description": "It's always drowsing and will never wake up. It can attack without waking up." + }, + "queenlyMajesty": { + "name": "Queenly Majesty", + "description": "Its majesty pressures the opposing Pokémon, making it unable to attack using priority moves." + }, + "innardsOut": { + "name": "Innards Out", + "description": "Damages the attacker landing the finishing hit by the amount equal to its last HP." + }, + "dancer": { + "name": "Dancer", + "description": "When another Pokémon uses a dance move, it can use a dance move following it regardless of its Speed." + }, + "battery": { + "name": "Battery", + "description": "Powers up ally Pokémon's special moves." + }, + "fluffy": { + "name": "Fluffy", + "description": "Halves the damage taken from moves that make direct contact, but doubles that of Fire-type moves." + }, + "dazzling": { + "name": "Dazzling", + "description": "Surprises the opposing Pokémon, making it unable to attack using priority moves." + }, + "soulHeart": { + "name": "Soul-Heart", + "description": "Boosts its Sp. Atk stat every time a Pokémon faints." + }, + "tanglingHair": { + "name": "Tangling Hair", + "description": "Contact with the Pokémon lowers the attacker's Speed stat." + }, + "receiver": { + "name": "Receiver", + "description": "The Pokémon copies the Ability of a defeated ally." + }, + "powerOfAlchemy": { + "name": "Power of Alchemy", + "description": "The Pokémon copies the Ability of a defeated ally." + }, + "beastBoost": { + "name": "Beast Boost", + "description": "The Pokémon boosts its most proficient stat each time it knocks out a Pokémon." + }, + "rksSystem": { + "name": "RKS System", + "description": "Changes the Pokémon's type to match the memory disc it holds." + }, + "electricSurge": { + "name": "Electric Surge", + "description": "Turns the ground into Electric Terrain when the Pokémon enters a battle." + }, + "psychicSurge": { + "name": "Psychic Surge", + "description": "Turns the ground into Psychic Terrain when the Pokémon enters a battle." + }, + "mistySurge": { + "name": "Misty Surge", + "description": "Turns the ground into Misty Terrain when the Pokémon enters a battle." + }, + "grassySurge": { + "name": "Grassy Surge", + "description": "Turns the ground into Grassy Terrain when the Pokémon enters a battle." + }, + "fullMetalBody": { + "name": "Full Metal Body", + "description": "Prevents other Pokémon's moves or Abilities from lowering the Pokémon's stats." + }, + "shadowShield": { + "name": "Shadow Shield", + "description": "Reduces the amount of damage the Pokémon takes while its HP is full." + }, + "prismArmor": { + "name": "Prism Armor", + "description": "Reduces the power of supereffective attacks taken." + }, + "neuroforce": { + "name": "Neuroforce", + "description": "Powers up moves that are super effective." + }, + "intrepidSword": { + "name": "Intrepid Sword", + "description": "Boosts the Pokémon's Attack stat when the Pokémon enters a battle." + }, + "dauntlessShield": { + "name": "Dauntless Shield", + "description": "Boosts the Pokémon's Defense stat when the Pokémon enters a battle." + }, + "libero": { + "name": "Libero", + "description": "Changes the Pokémon's type to the type of the move it's about to use." + }, + "ballFetch": { + "name": "Ball Fetch", + "description": "The Pokémon will fetch the Poké Ball from the first failed throw of the battle." + }, + "cottonDown": { + "name": "Cotton Down", + "description": "When the Pokémon is hit by an attack, it scatters cotton fluff around and lowers the Speed stat of all Pokémon except itself." + }, + "propellerTail": { + "name": "Propeller Tail", + "description": "Ignores the effects of opposing Pokémon's Abilities and moves that draw in moves." + }, + "mirrorArmor": { + "name": "Mirror Armor", + "description": "Bounces back only the stat-lowering effects that the Pokémon receives." + }, + "gulpMissile": { + "name": "Gulp Missile", + "description": "When the Pokémon uses Surf or Dive, it will come back with prey. When it takes damage, it will spit out the prey to attack." + }, + "stalwart": { + "name": "Stalwart", + "description": "Ignores the effects of opposing Pokémon's Abilities and moves that draw in moves." + }, + "steamEngine": { + "name": "Steam Engine", + "description": "Boosts the Pokémon's Speed stat drastically if hit by a Fire- or Water-type move." + }, + "punkRock": { + "name": "Punk Rock", + "description": "Boosts the power of sound-based moves. The Pokémon also takes half the damage from these kinds of moves." + }, + "sandSpit": { + "name": "Sand Spit", + "description": "The Pokémon creates a sandstorm when it's hit by an attack." + }, + "iceScales": { + "name": "Ice Scales", + "description": "The Pokémon is protected by ice scales, which halve the damage taken from special moves." + }, + "ripen": { + "name": "Ripen", + "description": "Ripens Berries and doubles their effect." + }, + "iceFace": { + "name": "Ice Face", + "description": "The Pokémon's ice head can take a physical attack as a substitute, but the attack also changes the Pokémon's appearance. The ice will be restored when it hails." + }, + "powerSpot": { + "name": "Power Spot", + "description": "Just being next to the Pokémon powers up moves." + }, + "mimicry": { + "name": "Mimicry", + "description": "Changes the Pokémon's type depending on the terrain." + }, + "screenCleaner": { + "name": "Screen Cleaner", + "description": "When the Pokémon enters a battle, the effects of Light Screen, Reflect, and Aurora Veil are nullified for both opposing and ally Pokémon." + }, + "steelySpirit": { + "name": "Steely Spirit", + "description": "Powers up ally Pokémon's Steel-type moves." + }, + "perishBody": { + "name": "Perish Body", + "description": "When hit by a move that makes direct contact, the Pokémon and the attacker will faint after three turns unless they switch out of battle." + }, + "wanderingSpirit": { + "name": "Wandering Spirit", + "description": "The Pokémon exchanges Abilities with a Pokémon that hits it with a move that makes direct contact." + }, + "gorillaTactics": { + "name": "Gorilla Tactics", + "description": "Boosts the Pokémon's Attack stat but only allows the use of the first selected move." + }, + "neutralizingGas": { + "name": "Neutralizing Gas", + "description": "If the Pokémon with Neutralizing Gas is in the battle, the effects of all Pokémon's Abilities will be nullified or will not be triggered." + }, + "pastelVeil": { + "name": "Pastel Veil", + "description": "Protects the Pokémon and its ally Pokémon from being poisoned." + }, + "hungerSwitch": { + "name": "Hunger Switch", + "description": "The Pokémon changes its form, alternating between its Full Belly Mode and Hangry Mode after the end of each turn." + }, + "quickDraw": { + "name": "Quick Draw", + "description": "Enables the Pokémon to move first occasionally." + }, + "unseenFist": { + "name": "Unseen Fist", + "description": "If the Pokémon uses moves that make direct contact, it can attack the target even if the target protects itself." + }, + "curiousMedicine": { + "name": "Curious Medicine", + "description": "When the Pokémon enters a battle, it scatters medicine from its shell, which removes all stat changes from allies." + }, + "transistor": { + "name": "Transistor", + "description": "Powers up Electric-type moves." + }, + "dragonsMaw": { + "name": "Dragon's Maw", + "description": "Powers up Dragon-type moves." + }, + "chillingNeigh": { + "name": "Chilling Neigh", + "description": "When the Pokémon knocks out a target, it utters a chilling neigh, which boosts its Attack stat." + }, + "grimNeigh": { + "name": "Grim Neigh", + "description": "When the Pokémon knocks out a target, it utters a terrifying neigh, which boosts its Sp. Atk stat." + }, + "asOneGlastrier": { + "name": "As One", + "description": "This Ability combines the effects of both Calyrex's Unnerve Ability and Glastrier's Chilling Neigh Ability." + }, + "asOneSpectrier": { + "name": "As One", + "description": "This Ability combines the effects of both Calyrex's Unnerve Ability and Spectrier's Grim Neigh Ability." + }, + "lingeringAroma": { + "name": "Lingering Aroma", + "description": "Contact with the Pokémon changes the attacker's Ability to Lingering Aroma." + }, + "seedSower": { + "name": "Seed Sower", + "description": "Turns the ground into Grassy Terrain when the Pokémon is hit by an attack." + }, + "thermalExchange": { + "name": "Thermal Exchange", + "description": "Boosts the Attack stat when the Pokémon is hit by a Fire-type move. The Pokémon also cannot be burned." + }, + "angerShell": { + "name": "Anger Shell", + "description": "When an attack causes its HP to drop to half or less, the Pokémon gets angry. This lowers its Defense and Sp. Def stats but boosts its Attack, Sp. Atk, and Speed stats." + }, + "purifyingSalt": { + "name": "Purifying Salt", + "description": "The Pokémon's pure salt protects it from status conditions and halves the damage taken from Ghost-type moves." + }, + "wellBakedBody": { + "name": "Well-Baked Body", + "description": "The Pokémon takes no damage when hit by Fire-type moves. Instead, its Defense stat is sharply boosted." + }, + "windRider": { + "name": "Wind Rider", + "description": "Boosts the Pokémon's Attack stat if Tailwind takes effect or if the Pokémon is hit by a wind move. The Pokémon also takes no damage from wind moves." + }, + "guardDog": { + "name": "Guard Dog", + "description": "Boosts the Pokémon's Attack stat if intimidated. Moves and items that would force the Pokémon to switch out also fail to work." + }, + "rockyPayload": { + "name": "Rocky Payload", + "description": "Powers up Rock-type moves." + }, + "windPower": { + "name": "Wind Power", + "description": "The Pokémon becomes charged when it is hit by a wind move, boosting the power of the next Electric-type move the Pokémon uses." + }, + "zeroToHero": { + "name": "Zero to Hero", + "description": "The Pokémon transforms into its Hero Form when it switches out." + }, + "commander": { + "name": "Commander", + "description": "When the Pokémon enters a battle, it goes inside the mouth of an ally Dondozo if one is on the field. The Pokémon then issues commands from there." + }, + "electromorphosis": { + "name": "Electromorphosis", + "description": "The Pokémon becomes charged when it takes damage, boosting the power of the next Electric-type move the Pokémon uses." + }, + "protosynthesis": { + "name": "Protosynthesis", + "description": "Boosts the Pokémon's most proficient stat in harsh sunlight or if the Pokémon is holding Booster Energy." + }, + "quarkDrive": { + "name": "Quark Drive", + "description": "Boosts the Pokémon's most proficient stat on Electric Terrain or if the Pokémon is holding Booster Energy." + }, + "goodAsGold": { + "name": "Good as Gold", + "description": "A body of pure, solid gold gives the Pokémon full immunity to other Pokémon's status moves." + }, + "vesselOfRuin": { + "name": "Vessel of Ruin", + "description": "The power of the Pokémon's ruinous vessel lowers the Sp. Atk stats of all Pokémon except itself." + }, + "swordOfRuin": { + "name": "Sword of Ruin", + "description": "The power of the Pokémon's ruinous sword lowers the Defense stats of all Pokémon except itself." + }, + "tabletsOfRuin": { + "name": "Tablets of Ruin", + "description": "The power of the Pokémon's ruinous wooden tablets lowers the Attack stats of all Pokémon except itself." + }, + "beadsOfRuin": { + "name": "Beads of Ruin", + "description": "The power of the Pokémon's ruinous beads lowers the Sp. Def stats of all Pokémon except itself." + }, + "orichalcumPulse": { + "name": "Orichalcum Pulse", + "description": "Turns the sunlight harsh when the Pokémon enters a battle. The ancient pulse thrumming through the Pokémon also boosts its Attack stat in harsh sunlight." + }, + "hadronEngine": { + "name": "Hadron Engine", + "description": "Turns the ground into Electric Terrain when the Pokémon enters a battle. The futuristic engine within the Pokémon also boosts its Sp. Atk stat on Electric Terrain." + }, + "opportunist": { + "name": "Opportunist", + "description": "If an opponent's stat is boosted, the Pokémon seizes the opportunity to boost the same stat for itself." + }, + "cudChew": { + "name": "Cud Chew", + "description": "When the Pokémon eats a Berry, it will regurgitate that Berry at the end of the next turn and eat it one more time." + }, + "sharpness": { + "name": "Sharpness", + "description": "Powers up slicing moves." + }, + "supremeOverlord": { + "name": "Supreme Overlord", + "description": "When the Pokémon enters a battle, its Attack and Sp. Atk stats are slightly boosted for each of the allies in its party that have already been defeated." + }, + "costar": { + "name": "Costar", + "description": "When the Pokémon enters a battle, it copies an ally's stat changes." + }, + "toxicDebris": { + "name": "Toxic Debris", + "description": "Scatters poison spikes at the feet of the opposing team when the Pokémon takes damage from physical moves." + }, + "armorTail": { + "name": "Armor Tail", + "description": "The mysterious tail covering the Pokémon's head makes opponents unable to use priority moves against the Pokémon or its allies." + }, + "earthEater": { + "name": "Earth Eater", + "description": "If hit by a Ground-type move, the Pokémon has its HP restored instead of taking damage." + }, + "myceliumMight": { + "name": "Mycelium Might", + "description": "The Pokémon will always act more slowly when using status moves, but these moves will be unimpeded by the Ability of the target." + }, + "mindsEye": { + "name": "Mind's Eye", + "description": "The Pokémon ignores changes to opponents' evasiveness, its accuracy can't be lowered, and it can hit Ghost types with Normal- and Fighting-type moves." + }, + "supersweetSyrup": { + "name": "Supersweet Syrup", + "description": "A sickly sweet scent spreads across the field the first time the Pokémon enters a battle, lowering the evasiveness of opposing Pokémon." + }, + "hospitality": { + "name": "Hospitality", + "description": "When the Pokémon enters a battle, it showers its ally with hospitality, restoring a small amount of the ally's HP." + }, + "toxicChain": { + "name": "Toxic Chain", + "description": "The power of the Pokémon's toxic chain may badly poison any target the Pokémon hits with a move." + }, + "embodyAspectTeal": { + "name": "Embody Aspect", + "description": "The Pokémon's heart fills with memories, causing the Teal Mask to shine and the Pokémon's Speed stat to be boosted." + }, + "embodyAspectWellspring": { + "name": "Embody Aspect", + "description": "The Pokémon's heart fills with memories, causing the Wellspring Mask to shine and the Pokémon's Sp. Def stat to be boosted." + }, + "embodyAspectHearthflame": { + "name": "Embody Aspect", + "description": "The Pokémon's heart fills with memories, causing the Hearthflame Mask to shine and the Pokémon's Attack stat to be boosted." + }, + "embodyAspectCornerstone": { + "name": "Embody Aspect", + "description": "The Pokémon's heart fills with memories, causing the Cornerstone Mask to shine and the Pokémon's Defense stat to be boosted." + }, + "teraShift": { + "name": "Tera Shift", + "description": "When the Pokémon enters a battle, it absorbs the energy around itself and transforms into its Terastal Form." + }, + "teraShell": { + "name": "Tera Shell", + "description": "The Pokémon's shell contains the powers of each type. All damage-dealing moves that hit the Pokémon when its HP is full will not be very effective." + }, + "teraformZero": { + "name": "Teraform Zero", + "description": "When Terapagos changes into its Stellar Form, it uses its hidden powers to eliminate all effects of weather and terrain, reducing them to zero." + }, + "poisonPuppeteer": { + "name": "Poison Puppeteer", + "description": "Pokémon poisoned by Pecharunt's moves will also become confused." + } +} \ No newline at end of file diff --git a/src/locales/en/ability.ts b/src/locales/en/ability.ts deleted file mode 100644 index 7e81f90afff..00000000000 --- a/src/locales/en/ability.ts +++ /dev/null @@ -1,1244 +0,0 @@ -import { AbilityTranslationEntries } from "#app/interfaces/locales.js"; - -export const ability: AbilityTranslationEntries = { - stench: { - name: "Stench", - description: "By releasing stench when attacking, this Pokémon may cause the target to flinch.", - }, - drizzle: { - name: "Drizzle", - description: "The Pokémon makes it rain when it enters a battle.", - }, - speedBoost: { - name: "Speed Boost", - description: "Its Speed stat is boosted every turn.", - }, - battleArmor: { - name: "Battle Armor", - description: "Hard armor protects the Pokémon from critical hits.", - }, - sturdy: { - name: "Sturdy", - description: "It cannot be knocked out with one hit. One-hit KO moves cannot knock it out, either.", - }, - damp: { - name: "Damp", - description: "Prevents the use of explosive moves, such as Self-Destruct, by dampening its surroundings.", - }, - limber: { - name: "Limber", - description: "Its limber body protects the Pokémon from paralysis.", - }, - sandVeil: { - name: "Sand Veil", - description: "Boosts the Pokémon's evasiveness in a sandstorm.", - }, - static: { - name: "Static", - description: "The Pokémon is charged with static electricity, so contact with it may cause paralysis.", - }, - voltAbsorb: { - name: "Volt Absorb", - description: "Restores HP if hit by an Electric-type move instead of taking damage.", - }, - waterAbsorb: { - name: "Water Absorb", - description: "Restores HP if hit by a Water-type move instead of taking damage.", - }, - oblivious: { - name: "Oblivious", - description: "The Pokémon is oblivious, and that keeps it from being infatuated or falling for taunts.", - }, - cloudNine: { - name: "Cloud Nine", - description: "Eliminates the effects of weather.", - }, - compoundEyes: { - name: "Compound Eyes", - description: "The Pokémon's compound eyes boost its accuracy.", - }, - insomnia: { - name: "Insomnia", - description: "The Pokémon is suffering from insomnia and cannot fall asleep.", - }, - colorChange: { - name: "Color Change", - description: "The Pokémon's type becomes the type of the move used on it.", - }, - immunity: { - name: "Immunity", - description: "The immune system of the Pokémon prevents it from getting poisoned.", - }, - flashFire: { - name: "Flash Fire", - description: "Powers up the Pokémon's Fire-type moves if it's hit by one.", - }, - shieldDust: { - name: "Shield Dust", - description: "This Pokémon's dust blocks the additional effects of attacks taken.", - }, - ownTempo: { - name: "Own Tempo", - description: "This Pokémon has its own tempo, and that prevents it from becoming confused.", - }, - suctionCups: { - name: "Suction Cups", - description: "This Pokémon uses suction cups to stay in one spot to negate all moves and items that force switching out.", - }, - intimidate: { - name: "Intimidate", - description: "The Pokémon intimidates opposing Pokémon upon entering battle, lowering their Attack stat.", - }, - shadowTag: { - name: "Shadow Tag", - description: "This Pokémon steps on the opposing Pokémon's shadow to prevent it from escaping.", - }, - roughSkin: { - name: "Rough Skin", - description: "This Pokémon inflicts damage with its rough skin to the attacker on contact.", - }, - wonderGuard: { - name: "Wonder Guard", - description: "Its mysterious power only lets supereffective moves hit the Pokémon.", - }, - levitate: { - name: "Levitate", - description: "By floating in the air, the Pokémon receives full immunity to all Ground-type moves.", - }, - effectSpore: { - name: "Effect Spore", - description: "Contact with the Pokémon may inflict poison, sleep, or paralysis on its attacker.", - }, - synchronize: { - name: "Synchronize", - description: "The attacker will receive the same status condition if it inflicts a burn, poison, or paralysis to the Pokémon.", - }, - clearBody: { - name: "Clear Body", - description: "Prevents other Pokémon's moves or Abilities from lowering the Pokémon's stats.", - }, - naturalCure: { - name: "Natural Cure", - description: "All status conditions heal when the Pokémon switches out.", - }, - lightningRod: { - name: "Lightning Rod", - description: "The Pokémon draws in all Electric-type moves. Instead of being hit by Electric-type moves, it boosts its Sp. Atk.", - }, - sereneGrace: { - name: "Serene Grace", - description: "Boosts the likelihood of additional effects occurring when attacking.", - }, - swiftSwim: { - name: "Swift Swim", - description: "Boosts the Pokémon's Speed stat in rain.", - }, - chlorophyll: { - name: "Chlorophyll", - description: "Boosts the Pokémon's Speed stat in harsh sunlight.", - }, - illuminate: { - name: "Illuminate", - description: "By illuminating its surroundings, the Pokémon raises the likelihood of meeting wild Pokémon and prevents its accuracy from being lowered.", - }, - trace: { - name: "Trace", - description: "When it enters a battle, the Pokémon copies an opposing Pokémon's Ability.", - }, - hugePower: { - name: "Huge Power", - description: "Doubles the Pokémon's Attack stat.", - }, - poisonPoint: { - name: "Poison Point", - description: "Contact with the Pokémon may poison the attacker.", - }, - innerFocus: { - name: "Inner Focus", - description: "The Pokémon's intensely focused, and that protects the Pokémon from flinching.", - }, - magmaArmor: { - name: "Magma Armor", - description: "The Pokémon is covered with hot magma, which prevents the Pokémon from becoming frozen.", - }, - waterVeil: { - name: "Water Veil", - description: "The Pokémon is covered with a water veil, which prevents the Pokémon from getting a burn.", - }, - magnetPull: { - name: "Magnet Pull", - description: "Prevents Steel-type Pokémon from escaping using its magnetic force.", - }, - soundproof: { - name: "Soundproof", - description: "Soundproofing gives the Pokémon full immunity to all sound-based moves.", - }, - rainDish: { - name: "Rain Dish", - description: "The Pokémon gradually regains HP in rain.", - }, - sandStream: { - name: "Sand Stream", - description: "The Pokémon summons a sandstorm when it enters a battle.", - }, - pressure: { - name: "Pressure", - description: "By putting pressure on the opposing Pokémon, it raises their PP usage.", - }, - thickFat: { - name: "Thick Fat", - description: "The Pokémon is protected by a layer of thick fat, which halves the damage taken from Fire- and Ice-type moves.", - }, - earlyBird: { - name: "Early Bird", - description: "The Pokémon awakens from sleep twice as fast as other Pokémon.", - }, - flameBody: { - name: "Flame Body", - description: "Contact with the Pokémon may burn the attacker.", - }, - runAway: { - name: "Run Away", - description: "Enables a sure getaway from wild Pokémon.", - }, - keenEye: { - name: "Keen Eye", - description: "Keen eyes prevent other Pokémon from lowering this Pokémon's accuracy.", - }, - hyperCutter: { - name: "Hyper Cutter", - description: "The Pokémon's proud of its powerful pincers. They prevent other Pokémon from lowering its Attack stat.", - }, - pickup: { - name: "Pickup", - description: "The Pokémon may pick up the item an opposing Pokémon held during a battle.", - }, - truant: { - name: "Truant", - description: "The Pokémon can't use a move if it had used a move on the previous turn.", - }, - hustle: { - name: "Hustle", - description: "Boosts the Attack stat, but lowers accuracy.", - }, - cuteCharm: { - name: "Cute Charm", - description: "Contact with the Pokémon may cause infatuation.", - }, - plus: { - name: "Plus", - description: "Boosts the Sp. Atk stat of the Pokémon if an ally with the Plus or Minus Ability is also in battle.", - }, - minus: { - name: "Minus", - description: "Boosts the Sp. Atk stat of the Pokémon if an ally with the Plus or Minus Ability is also in battle.", - }, - forecast: { - name: "Forecast", - description: "The Pokémon transforms with the weather to change its type to Water, Fire, or Ice.", - }, - stickyHold: { - name: "Sticky Hold", - description: "Items held by the Pokémon are stuck fast and cannot be removed by other Pokémon.", - }, - shedSkin: { - name: "Shed Skin", - description: "The Pokémon may heal its own status conditions by shedding its skin.", - }, - guts: { - name: "Guts", - description: "It's so gutsy that having a status condition boosts the Pokémon's Attack stat.", - }, - marvelScale: { - name: "Marvel Scale", - description: "The Pokémon's marvelous scales boost the Defense stat if it has a status condition.", - }, - liquidOoze: { - name: "Liquid Ooze", - description: "The oozed liquid has a strong stench, which damages attackers using any draining move.", - }, - overgrow: { - name: "Overgrow", - description: "Powers up Grass-type moves when the Pokémon's HP is low.", - }, - blaze: { - name: "Blaze", - description: "Powers up Fire-type moves when the Pokémon's HP is low.", - }, - torrent: { - name: "Torrent", - description: "Powers up Water-type moves when the Pokémon's HP is low.", - }, - swarm: { - name: "Swarm", - description: "Powers up Bug-type moves when the Pokémon's HP is low.", - }, - rockHead: { - name: "Rock Head", - description: "Protects the Pokémon from recoil damage.", - }, - drought: { - name: "Drought", - description: "Turns the sunlight harsh when the Pokémon enters a battle.", - }, - arenaTrap: { - name: "Arena Trap", - description: "Prevents opposing Pokémon from fleeing.", - }, - vitalSpirit: { - name: "Vital Spirit", - description: "The Pokémon is full of vitality, and that prevents it from falling asleep.", - }, - whiteSmoke: { - name: "White Smoke", - description: "The Pokémon is protected by its white smoke, which prevents other Pokémon from lowering its stats.", - }, - purePower: { - name: "Pure Power", - description: "Using its pure power, the Pokémon doubles its Attack stat.", - }, - shellArmor: { - name: "Shell Armor", - description: "A hard shell protects the Pokémon from critical hits.", - }, - airLock: { - name: "Air Lock", - description: "Eliminates the effects of weather.", - }, - tangledFeet: { - name: "Tangled Feet", - description: "Raises evasiveness if the Pokémon is confused.", - }, - motorDrive: { - name: "Motor Drive", - description: "Boosts its Speed stat if hit by an Electric-type move instead of taking damage.", - }, - rivalry: { - name: "Rivalry", - description: "Becomes competitive and deals more damage to Pokémon of the same gender, but deals less to Pokémon of the opposite gender.", - }, - steadfast: { - name: "Steadfast", - description: "The Pokémon's determination boosts the Speed stat each time the Pokémon flinches.", - }, - snowCloak: { - name: "Snow Cloak", - description: "Boosts the Pokémon's evasiveness in snow.", - }, - gluttony: { - name: "Gluttony", - description: "Makes the Pokémon eat a held Berry when its HP drops to half or less, which is sooner than usual.", - }, - angerPoint: { - name: "Anger Point", - description: "The Pokémon is angered when it takes a critical hit, and that maxes its Attack stat.", - }, - unburden: { - name: "Unburden", - description: "Boosts the Speed stat if the Pokémon's held item is used or lost.", - }, - heatproof: { - name: "Heatproof", - description: "The heatproof body of the Pokémon halves the damage from Fire-type moves that hit it.", - }, - simple: { - name: "Simple", - description: "The stat changes the Pokémon receives are doubled.", - }, - drySkin: { - name: "Dry Skin", - description: "Restores HP in rain or when hit by Water-type moves. Reduces HP in harsh sunlight, and increases the damage received from Fire-type moves.", - }, - download: { - name: "Download", - description: "Compares an opposing Pokémon's Defense and Sp. Def stats before raising its own Attack or Sp. Atk stat—whichever will be more effective.", - }, - ironFist: { - name: "Iron Fist", - description: "Powers up punching moves.", - }, - poisonHeal: { - name: "Poison Heal", - description: "Restores HP if the Pokémon is poisoned instead of losing HP.", - }, - adaptability: { - name: "Adaptability", - description: "Powers up moves of the same type as the Pokémon.", - }, - skillLink: { - name: "Skill Link", - description: "Maximizes the number of times multistrike moves hit.", - }, - hydration: { - name: "Hydration", - description: "Heals status conditions if it's raining.", - }, - solarPower: { - name: "Solar Power", - description: "Boosts the Sp. Atk stat in harsh sunlight, but HP decreases every turn.", - }, - quickFeet: { - name: "Quick Feet", - description: "Boosts the Speed stat if the Pokémon has a status condition.", - }, - normalize: { - name: "Normalize", - description: "All the Pokémon's moves become Normal type. The power of those moves is boosted a little.", - }, - sniper: { - name: "Sniper", - description: "Powers up moves if they become critical hits when attacking.", - }, - magicGuard: { - name: "Magic Guard", - description: "The Pokémon only takes damage from attacks.", - }, - noGuard: { - name: "No Guard", - description: "The Pokémon employs no-guard tactics to ensure incoming and outgoing attacks always land.", - }, - stall: { - name: "Stall", - description: "The Pokémon moves after all other Pokémon do.", - }, - technician: { - name: "Technician", - description: "Powers up the Pokémon's weaker moves.", - }, - leafGuard: { - name: "Leaf Guard", - description: "Prevents status conditions in harsh sunlight.", - }, - klutz: { - name: "Klutz", - description: "The Pokémon can't use any held items.", - }, - moldBreaker: { - name: "Mold Breaker", - description: "Moves can be used on the target regardless of its Abilities.", - }, - superLuck: { - name: "Super Luck", - description: "The Pokémon is so lucky that the critical-hit ratios of its moves are boosted.", - }, - aftermath: { - name: "Aftermath", - description: "Damages the attacker if it contacts the Pokémon with a finishing hit.", - }, - anticipation: { - name: "Anticipation", - description: "The Pokémon can sense an opposing Pokémon's dangerous moves.", - }, - forewarn: { - name: "Forewarn", - description: "When it enters a battle, the Pokémon can tell one of the moves an opposing Pokémon has.", - }, - unaware: { - name: "Unaware", - description: "When attacking, the Pokémon ignores the target Pokémon's stat changes.", - }, - tintedLens: { - name: "Tinted Lens", - description: "The Pokémon can use \"not very effective\" moves to deal regular damage.", - }, - filter: { - name: "Filter", - description: "Reduces the power of supereffective attacks taken.", - }, - slowStart: { - name: "Slow Start", - description: "For five turns, the Pokémon's Attack and Speed stats are halved.", - }, - scrappy: { - name: "Scrappy", - description: "The Pokémon can hit Ghost-type Pokémon with Normal- and Fighting-type moves.", - }, - stormDrain: { - name: "Storm Drain", - description: "Draws in all Water-type moves. Instead of being hit by Water-type moves, it boosts its Sp. Atk.", - }, - iceBody: { - name: "Ice Body", - description: "The Pokémon gradually regains HP in snow.", - }, - solidRock: { - name: "Solid Rock", - description: "Reduces the power of supereffective attacks taken.", - }, - snowWarning: { - name: "Snow Warning", - description: "The Pokémon makes it snow when it enters a battle.", - }, - honeyGather: { - name: "Honey Gather", - description: "The Pokémon gathers Honey after a battle. The Honey is then sold for money.", - }, - frisk: { - name: "Frisk", - description: "When it enters a battle, the Pokémon can check an opposing Pokémon's Ability.", - }, - reckless: { - name: "Reckless", - description: "Powers up moves that have recoil damage.", - }, - multitype: { - name: "Multitype", - description: "Changes the Pokémon's type to match the Plate or Z-Crystal it holds.", - }, - flowerGift: { - name: "Flower Gift", - description: "Boosts the Attack and Sp. Def stats of itself and allies in harsh sunlight.", - }, - badDreams: { - name: "Bad Dreams", - description: "Reduces the HP of sleeping opposing Pokémon.", - }, - pickpocket: { - name: "Pickpocket", - description: "Steals an item from an attacker that made direct contact.", - }, - sheerForce: { - name: "Sheer Force", - description: "Removes additional effects to increase the power of moves when attacking.", - }, - contrary: { - name: "Contrary", - description: "Makes stat changes have an opposite effect.", - }, - unnerve: { - name: "Unnerve", - description: "Unnerves opposing Pokémon and makes them unable to eat Berries.", - }, - defiant: { - name: "Defiant", - description: "Boosts the Pokémon's Attack stat sharply when its stats are lowered.", - }, - defeatist: { - name: "Defeatist", - description: "Halves the Pokémon's Attack and Sp. Atk stats when its HP becomes half or less.", - }, - cursedBody: { - name: "Cursed Body", - description: "May disable a move used on the Pokémon.", - }, - healer: { - name: "Healer", - description: "Sometimes heals an ally's status condition.", - }, - friendGuard: { - name: "Friend Guard", - description: "Reduces damage done to allies.", - }, - weakArmor: { - name: "Weak Armor", - description: "Physical attacks to the Pokémon lower its Defense stat but sharply raise its Speed stat.", - }, - heavyMetal: { - name: "Heavy Metal", - description: "Doubles the Pokémon's weight.", - }, - lightMetal: { - name: "Light Metal", - description: "Halves the Pokémon's weight.", - }, - multiscale: { - name: "Multiscale", - description: "Reduces the amount of damage the Pokémon takes while its HP is full.", - }, - toxicBoost: { - name: "Toxic Boost", - description: "Powers up physical attacks when the Pokémon is poisoned.", - }, - flareBoost: { - name: "Flare Boost", - description: "Powers up special attacks when the Pokémon is burned.", - }, - harvest: { - name: "Harvest", - description: "May create another Berry after one is used.", - }, - telepathy: { - name: "Telepathy", - description: "Anticipates an ally's attack and dodges it.", - }, - moody: { - name: "Moody", - description: "Raises one stat sharply and lowers another every turn.", - }, - overcoat: { - name: "Overcoat", - description: "Protects the Pokémon from things like sand, hail, and powder.", - }, - poisonTouch: { - name: "Poison Touch", - description: "May poison a target when the Pokémon makes contact.", - }, - regenerator: { - name: "Regenerator", - description: "Restores a little HP when withdrawn from battle.", - }, - bigPecks: { - name: "Big Pecks", - description: "Protects the Pokémon from Defense-lowering effects.", - }, - sandRush: { - name: "Sand Rush", - description: "Boosts the Pokémon's Speed stat in a sandstorm.", - }, - wonderSkin: { - name: "Wonder Skin", - description: "Makes status moves more likely to miss.", - }, - analytic: { - name: "Analytic", - description: "Boosts move power when the Pokémon moves last.", - }, - illusion: { - name: "Illusion", - description: "Comes out disguised as the Pokémon in the party's last spot.", - }, - imposter: { - name: "Imposter", - description: "The Pokémon transforms itself into the Pokémon it's facing.", - }, - infiltrator: { - name: "Infiltrator", - description: "Passes through the opposing Pokémon's barrier, substitute, and the like and strikes.", - }, - mummy: { - name: "Mummy", - description: "Contact with the Pokémon changes the attacker's Ability to Mummy.", - }, - moxie: { - name: "Moxie", - description: "The Pokémon shows moxie, and that boosts the Attack stat after knocking out any Pokémon.", - }, - justified: { - name: "Justified", - description: "Being hit by a Dark-type move boosts the Attack stat of the Pokémon, for justice.", - }, - rattled: { - name: "Rattled", - description: "Intimidate or being hit by a Dark-, Ghost-, or Bug-type move will scare the Pokémon and boost its Speed stat.", - }, - magicBounce: { - name: "Magic Bounce", - description: "Reflects status moves instead of getting hit by them.", - }, - sapSipper: { - name: "Sap Sipper", - description: "Boosts the Attack stat if hit by a Grass-type move instead of taking damage.", - }, - prankster: { - name: "Prankster", - description: "Gives priority to a status move.", - }, - sandForce: { - name: "Sand Force", - description: "Boosts the power of Rock-, Ground-, and Steel-type moves in a sandstorm.", - }, - ironBarbs: { - name: "Iron Barbs", - description: "Inflicts damage on the attacker upon contact with iron barbs.", - }, - zenMode: { - name: "Zen Mode", - description: "Changes the Pokémon's shape when HP is half or less.", - }, - victoryStar: { - name: "Victory Star", - description: "Boosts the accuracy of its allies and itself.", - }, - turboblaze: { - name: "Turboblaze", - description: "Moves can be used on the target regardless of its Abilities.", - }, - teravolt: { - name: "Teravolt", - description: "Moves can be used on the target regardless of its Abilities.", - }, - aromaVeil: { - name: "Aroma Veil", - description: "Protects itself and its allies from attacks that limit their move choices.", - }, - flowerVeil: { - name: "Flower Veil", - description: "Ally Grass-type Pokémon are protected from status conditions and the lowering of their stats.", - }, - cheekPouch: { - name: "Cheek Pouch", - description: "Restores HP as well when the Pokémon eats a Berry.", - }, - protean: { - name: "Protean", - description: "Changes the Pokémon's type to the type of the move it's about to use.", - }, - furCoat: { - name: "Fur Coat", - description: "Halves the damage from physical moves.", - }, - magician: { - name: "Magician", - description: "The Pokémon steals the held item of a Pokémon it hits with a move.", - }, - bulletproof: { - name: "Bulletproof", - description: "Protects the Pokémon from some ball and bomb moves.", - }, - competitive: { - name: "Competitive", - description: "Boosts the Sp. Atk stat sharply when a stat is lowered.", - }, - strongJaw: { - name: "Strong Jaw", - description: "The Pokémon's strong jaw boosts the power of its biting moves.", - }, - refrigerate: { - name: "Refrigerate", - description: "Normal-type moves become Ice-type moves. The power of those moves is boosted a little.", - }, - sweetVeil: { - name: "Sweet Veil", - description: "Prevents itself and ally Pokémon from falling asleep.", - }, - stanceChange: { - name: "Stance Change", - description: "The Pokémon changes its form to Blade Forme when it uses an attack move and changes to Shield Forme when it uses King's Shield.", - }, - galeWings: { - name: "Gale Wings", - description: "Gives priority to Flying-type moves when the Pokémon's HP is full.", - }, - megaLauncher: { - name: "Mega Launcher", - description: "Powers up aura and pulse moves.", - }, - grassPelt: { - name: "Grass Pelt", - description: "Boosts the Pokémon's Defense stat on Grassy Terrain.", - }, - symbiosis: { - name: "Symbiosis", - description: "The Pokémon passes its item to an ally that has used up an item.", - }, - toughClaws: { - name: "Tough Claws", - description: "Powers up moves that make direct contact.", - }, - pixilate: { - name: "Pixilate", - description: "Normal-type moves become Fairy-type moves. The power of those moves is boosted a little.", - }, - gooey: { - name: "Gooey", - description: "Contact with the Pokémon lowers the attacker's Speed stat.", - }, - aerilate: { - name: "Aerilate", - description: "Normal-type moves become Flying-type moves. The power of those moves is boosted a little.", - }, - parentalBond: { - name: "Parental Bond", - description: "Parent and child each attacks.", - }, - darkAura: { - name: "Dark Aura", - description: "Powers up each Pokémon's Dark-type moves.", - }, - fairyAura: { - name: "Fairy Aura", - description: "Powers up each Pokémon's Fairy-type moves.", - }, - auraBreak: { - name: "Aura Break", - description: "The effects of \"Aura\" Abilities are reversed to lower the power of affected moves.", - }, - primordialSea: { - name: "Primordial Sea", - description: "The Pokémon changes the weather to nullify Fire-type attacks.", - }, - desolateLand: { - name: "Desolate Land", - description: "The Pokémon changes the weather to nullify Water-type attacks.", - }, - deltaStream: { - name: "Delta Stream", - description: "The Pokémon changes the weather to eliminate all of the Flying type's weaknesses.", - }, - stamina: { - name: "Stamina", - description: "Boosts the Defense stat when hit by an attack.", - }, - wimpOut: { - name: "Wimp Out", - description: "The Pokémon cowardly switches out when its HP becomes half or less.", - }, - emergencyExit: { - name: "Emergency Exit", - description: "The Pokémon, sensing danger, switches out when its HP becomes half or less.", - }, - waterCompaction: { - name: "Water Compaction", - description: "Boosts the Pokémon's Defense stat sharply when hit by a Water-type move.", - }, - merciless: { - name: "Merciless", - description: "The Pokémon's attacks become critical hits if the target is poisoned.", - }, - shieldsDown: { - name: "Shields Down", - description: "When its HP becomes half or less, the Pokémon's shell breaks and it becomes aggressive.", - }, - stakeout: { - name: "Stakeout", - description: "Doubles the damage dealt to the target's replacement if the target switches out.", - }, - waterBubble: { - name: "Water Bubble", - description: "Lowers the power of Fire-type moves done to the Pokémon and prevents the Pokémon from getting a burn.", - }, - steelworker: { - name: "Steelworker", - description: "Powers up Steel-type moves.", - }, - berserk: { - name: "Berserk", - description: "Boosts the Pokémon's Sp. Atk stat when it takes a hit that causes its HP to become half or less.", - }, - slushRush: { - name: "Slush Rush", - description: "Boosts the Pokémon's Speed stat in snow.", - }, - longReach: { - name: "Long Reach", - description: "The Pokémon uses its moves without making contact with the target.", - }, - liquidVoice: { - name: "Liquid Voice", - description: "All sound-based moves become Water-type moves.", - }, - triage: { - name: "Triage", - description: "Gives priority to a healing move.", - }, - galvanize: { - name: "Galvanize", - description: "Normal-type moves become Electric-type moves. The power of those moves is boosted a little.", - }, - surgeSurfer: { - name: "Surge Surfer", - description: "Doubles the Pokémon's Speed stat on Electric Terrain.", - }, - schooling: { - name: "Schooling", - description: "When it has a lot of HP, the Pokémon forms a powerful school. It stops schooling when its HP is low.", - }, - disguise: { - name: "Disguise", - description: "Once per battle, the shroud that covers the Pokémon can protect it from an attack.", - }, - battleBond: { - name: "Battle Bond", - description: "Defeating an opposing Pokémon strengthens the Pokémon's bond with its Trainer, and it becomes Ash-Greninja. Water Shuriken gets more powerful.", - }, - powerConstruct: { - name: "Power Construct", - description: "Other Cells gather to aid when its HP becomes half or less. Then the Pokémon changes its form to Complete Forme.", - }, - corrosion: { - name: "Corrosion", - description: "The Pokémon can poison the target even if it's a Steel or Poison type.", - }, - comatose: { - name: "Comatose", - description: "It's always drowsing and will never wake up. It can attack without waking up.", - }, - queenlyMajesty: { - name: "Queenly Majesty", - description: "Its majesty pressures the opposing Pokémon, making it unable to attack using priority moves.", - }, - innardsOut: { - name: "Innards Out", - description: "Damages the attacker landing the finishing hit by the amount equal to its last HP.", - }, - dancer: { - name: "Dancer", - description: "When another Pokémon uses a dance move, it can use a dance move following it regardless of its Speed.", - }, - battery: { - name: "Battery", - description: "Powers up ally Pokémon's special moves.", - }, - fluffy: { - name: "Fluffy", - description: "Halves the damage taken from moves that make direct contact, but doubles that of Fire-type moves.", - }, - dazzling: { - name: "Dazzling", - description: "Surprises the opposing Pokémon, making it unable to attack using priority moves.", - }, - soulHeart: { - name: "Soul-Heart", - description: "Boosts its Sp. Atk stat every time a Pokémon faints.", - }, - tanglingHair: { - name: "Tangling Hair", - description: "Contact with the Pokémon lowers the attacker's Speed stat.", - }, - receiver: { - name: "Receiver", - description: "The Pokémon copies the Ability of a defeated ally.", - }, - powerOfAlchemy: { - name: "Power of Alchemy", - description: "The Pokémon copies the Ability of a defeated ally.", - }, - beastBoost: { - name: "Beast Boost", - description: "The Pokémon boosts its most proficient stat each time it knocks out a Pokémon.", - }, - rksSystem: { - name: "RKS System", - description: "Changes the Pokémon's type to match the memory disc it holds.", - }, - electricSurge: { - name: "Electric Surge", - description: "Turns the ground into Electric Terrain when the Pokémon enters a battle.", - }, - psychicSurge: { - name: "Psychic Surge", - description: "Turns the ground into Psychic Terrain when the Pokémon enters a battle.", - }, - mistySurge: { - name: "Misty Surge", - description: "Turns the ground into Misty Terrain when the Pokémon enters a battle.", - }, - grassySurge: { - name: "Grassy Surge", - description: "Turns the ground into Grassy Terrain when the Pokémon enters a battle.", - }, - fullMetalBody: { - name: "Full Metal Body", - description: "Prevents other Pokémon's moves or Abilities from lowering the Pokémon's stats.", - }, - shadowShield: { - name: "Shadow Shield", - description: "Reduces the amount of damage the Pokémon takes while its HP is full.", - }, - prismArmor: { - name: "Prism Armor", - description: "Reduces the power of supereffective attacks taken.", - }, - neuroforce: { - name: "Neuroforce", - description: "Powers up moves that are super effective.", - }, - intrepidSword: { - name: "Intrepid Sword", - description: "Boosts the Pokémon's Attack stat when the Pokémon enters a battle.", - }, - dauntlessShield: { - name: "Dauntless Shield", - description: "Boosts the Pokémon's Defense stat when the Pokémon enters a battle.", - }, - libero: { - name: "Libero", - description: "Changes the Pokémon's type to the type of the move it's about to use.", - }, - ballFetch: { - name: "Ball Fetch", - description: "The Pokémon will fetch the Poké Ball from the first failed throw of the battle.", - }, - cottonDown: { - name: "Cotton Down", - description: "When the Pokémon is hit by an attack, it scatters cotton fluff around and lowers the Speed stat of all Pokémon except itself.", - }, - propellerTail: { - name: "Propeller Tail", - description: "Ignores the effects of opposing Pokémon's Abilities and moves that draw in moves.", - }, - mirrorArmor: { - name: "Mirror Armor", - description: "Bounces back only the stat-lowering effects that the Pokémon receives.", - }, - gulpMissile: { - name: "Gulp Missile", - description: "When the Pokémon uses Surf or Dive, it will come back with prey. When it takes damage, it will spit out the prey to attack.", - }, - stalwart: { - name: "Stalwart", - description: "Ignores the effects of opposing Pokémon's Abilities and moves that draw in moves.", - }, - steamEngine: { - name: "Steam Engine", - description: "Boosts the Pokémon's Speed stat drastically if hit by a Fire- or Water-type move.", - }, - punkRock: { - name: "Punk Rock", - description: "Boosts the power of sound-based moves. The Pokémon also takes half the damage from these kinds of moves.", - }, - sandSpit: { - name: "Sand Spit", - description: "The Pokémon creates a sandstorm when it's hit by an attack.", - }, - iceScales: { - name: "Ice Scales", - description: "The Pokémon is protected by ice scales, which halve the damage taken from special moves.", - }, - ripen: { - name: "Ripen", - description: "Ripens Berries and doubles their effect.", - }, - iceFace: { - name: "Ice Face", - description: "The Pokémon's ice head can take a physical attack as a substitute, but the attack also changes the Pokémon's appearance. The ice will be restored when it hails.", - }, - powerSpot: { - name: "Power Spot", - description: "Just being next to the Pokémon powers up moves.", - }, - mimicry: { - name: "Mimicry", - description: "Changes the Pokémon's type depending on the terrain.", - }, - screenCleaner: { - name: "Screen Cleaner", - description: "When the Pokémon enters a battle, the effects of Light Screen, Reflect, and Aurora Veil are nullified for both opposing and ally Pokémon.", - }, - steelySpirit: { - name: "Steely Spirit", - description: "Powers up ally Pokémon's Steel-type moves.", - }, - perishBody: { - name: "Perish Body", - description: "When hit by a move that makes direct contact, the Pokémon and the attacker will faint after three turns unless they switch out of battle.", - }, - wanderingSpirit: { - name: "Wandering Spirit", - description: "The Pokémon exchanges Abilities with a Pokémon that hits it with a move that makes direct contact.", - }, - gorillaTactics: { - name: "Gorilla Tactics", - description: "Boosts the Pokémon's Attack stat but only allows the use of the first selected move.", - }, - neutralizingGas: { - name: "Neutralizing Gas", - description: "If the Pokémon with Neutralizing Gas is in the battle, the effects of all Pokémon's Abilities will be nullified or will not be triggered.", - }, - pastelVeil: { - name: "Pastel Veil", - description: "Protects the Pokémon and its ally Pokémon from being poisoned.", - }, - hungerSwitch: { - name: "Hunger Switch", - description: "The Pokémon changes its form, alternating between its Full Belly Mode and Hangry Mode after the end of each turn.", - }, - quickDraw: { - name: "Quick Draw", - description: "Enables the Pokémon to move first occasionally.", - }, - unseenFist: { - name: "Unseen Fist", - description: "If the Pokémon uses moves that make direct contact, it can attack the target even if the target protects itself.", - }, - curiousMedicine: { - name: "Curious Medicine", - description: "When the Pokémon enters a battle, it scatters medicine from its shell, which removes all stat changes from allies.", - }, - transistor: { - name: "Transistor", - description: "Powers up Electric-type moves.", - }, - dragonsMaw: { - name: "Dragon's Maw", - description: "Powers up Dragon-type moves.", - }, - chillingNeigh: { - name: "Chilling Neigh", - description: "When the Pokémon knocks out a target, it utters a chilling neigh, which boosts its Attack stat.", - }, - grimNeigh: { - name: "Grim Neigh", - description: "When the Pokémon knocks out a target, it utters a terrifying neigh, which boosts its Sp. Atk stat.", - }, - asOneGlastrier: { - name: "As One", - description: "This Ability combines the effects of both Calyrex's Unnerve Ability and Glastrier's Chilling Neigh Ability.", - }, - asOneSpectrier: { - name: "As One", - description: "This Ability combines the effects of both Calyrex's Unnerve Ability and Spectrier's Grim Neigh Ability.", - }, - lingeringAroma: { - name: "Lingering Aroma", - description: "Contact with the Pokémon changes the attacker's Ability to Lingering Aroma.", - }, - seedSower: { - name: "Seed Sower", - description: "Turns the ground into Grassy Terrain when the Pokémon is hit by an attack.", - }, - thermalExchange: { - name: "Thermal Exchange", - description: "Boosts the Attack stat when the Pokémon is hit by a Fire-type move. The Pokémon also cannot be burned.", - }, - angerShell: { - name: "Anger Shell", - description: "When an attack causes its HP to drop to half or less, the Pokémon gets angry. This lowers its Defense and Sp. Def stats but boosts its Attack, Sp. Atk, and Speed stats.", - }, - purifyingSalt: { - name: "Purifying Salt", - description: "The Pokémon's pure salt protects it from status conditions and halves the damage taken from Ghost-type moves.", - }, - wellBakedBody: { - name: "Well-Baked Body", - description: "The Pokémon takes no damage when hit by Fire-type moves. Instead, its Defense stat is sharply boosted.", - }, - windRider: { - name: "Wind Rider", - description: "Boosts the Pokémon's Attack stat if Tailwind takes effect or if the Pokémon is hit by a wind move. The Pokémon also takes no damage from wind moves.", - }, - guardDog: { - name: "Guard Dog", - description: "Boosts the Pokémon's Attack stat if intimidated. Moves and items that would force the Pokémon to switch out also fail to work.", - }, - rockyPayload: { - name: "Rocky Payload", - description: "Powers up Rock-type moves.", - }, - windPower: { - name: "Wind Power", - description: "The Pokémon becomes charged when it is hit by a wind move, boosting the power of the next Electric-type move the Pokémon uses.", - }, - zeroToHero: { - name: "Zero to Hero", - description: "The Pokémon transforms into its Hero Form when it switches out.", - }, - commander: { - name: "Commander", - description: "When the Pokémon enters a battle, it goes inside the mouth of an ally Dondozo if one is on the field. The Pokémon then issues commands from there.", - }, - electromorphosis: { - name: "Electromorphosis", - description: "The Pokémon becomes charged when it takes damage, boosting the power of the next Electric-type move the Pokémon uses.", - }, - protosynthesis: { - name: "Protosynthesis", - description: "Boosts the Pokémon's most proficient stat in harsh sunlight or if the Pokémon is holding Booster Energy.", - }, - quarkDrive: { - name: "Quark Drive", - description: "Boosts the Pokémon's most proficient stat on Electric Terrain or if the Pokémon is holding Booster Energy.", - }, - goodAsGold: { - name: "Good as Gold", - description: "A body of pure, solid gold gives the Pokémon full immunity to other Pokémon's status moves.", - }, - vesselOfRuin: { - name: "Vessel of Ruin", - description: "The power of the Pokémon's ruinous vessel lowers the Sp. Atk stats of all Pokémon except itself.", - }, - swordOfRuin: { - name: "Sword of Ruin", - description: "The power of the Pokémon's ruinous sword lowers the Defense stats of all Pokémon except itself.", - }, - tabletsOfRuin: { - name: "Tablets of Ruin", - description: "The power of the Pokémon's ruinous wooden tablets lowers the Attack stats of all Pokémon except itself.", - }, - beadsOfRuin: { - name: "Beads of Ruin", - description: "The power of the Pokémon's ruinous beads lowers the Sp. Def stats of all Pokémon except itself.", - }, - orichalcumPulse: { - name: "Orichalcum Pulse", - description: "Turns the sunlight harsh when the Pokémon enters a battle. The ancient pulse thrumming through the Pokémon also boosts its Attack stat in harsh sunlight.", - }, - hadronEngine: { - name: "Hadron Engine", - description: "Turns the ground into Electric Terrain when the Pokémon enters a battle. The futuristic engine within the Pokémon also boosts its Sp. Atk stat on Electric Terrain.", - }, - opportunist: { - name: "Opportunist", - description: "If an opponent's stat is boosted, the Pokémon seizes the opportunity to boost the same stat for itself.", - }, - cudChew: { - name: "Cud Chew", - description: "When the Pokémon eats a Berry, it will regurgitate that Berry at the end of the next turn and eat it one more time.", - }, - sharpness: { - name: "Sharpness", - description: "Powers up slicing moves.", - }, - supremeOverlord: { - name: "Supreme Overlord", - description: "When the Pokémon enters a battle, its Attack and Sp. Atk stats are slightly boosted for each of the allies in its party that have already been defeated.", - }, - costar: { - name: "Costar", - description: "When the Pokémon enters a battle, it copies an ally's stat changes.", - }, - toxicDebris: { - name: "Toxic Debris", - description: "Scatters poison spikes at the feet of the opposing team when the Pokémon takes damage from physical moves.", - }, - armorTail: { - name: "Armor Tail", - description: "The mysterious tail covering the Pokémon's head makes opponents unable to use priority moves against the Pokémon or its allies.", - }, - earthEater: { - name: "Earth Eater", - description: "If hit by a Ground-type move, the Pokémon has its HP restored instead of taking damage.", - }, - myceliumMight: { - name: "Mycelium Might", - description: "The Pokémon will always act more slowly when using status moves, but these moves will be unimpeded by the Ability of the target.", - }, - mindsEye: { - name: "Mind's Eye", - description: "The Pokémon ignores changes to opponents' evasiveness, its accuracy can't be lowered, and it can hit Ghost types with Normal- and Fighting-type moves.", - }, - supersweetSyrup: { - name: "Supersweet Syrup", - description: "A sickly sweet scent spreads across the field the first time the Pokémon enters a battle, lowering the evasiveness of opposing Pokémon.", - }, - hospitality: { - name: "Hospitality", - description: "When the Pokémon enters a battle, it showers its ally with hospitality, restoring a small amount of the ally's HP.", - }, - toxicChain: { - name: "Toxic Chain", - description: "The power of the Pokémon's toxic chain may badly poison any target the Pokémon hits with a move.", - }, - embodyAspectTeal: { - name: "Embody Aspect", - description: "The Pokémon's heart fills with memories, causing the Teal Mask to shine and the Pokémon's Speed stat to be boosted.", - }, - embodyAspectWellspring: { - name: "Embody Aspect", - description: "The Pokémon's heart fills with memories, causing the Wellspring Mask to shine and the Pokémon's Sp. Def stat to be boosted.", - }, - embodyAspectHearthflame: { - name: "Embody Aspect", - description: "The Pokémon's heart fills with memories, causing the Hearthflame Mask to shine and the Pokémon's Attack stat to be boosted.", - }, - embodyAspectCornerstone: { - name: "Embody Aspect", - description: "The Pokémon's heart fills with memories, causing the Cornerstone Mask to shine and the Pokémon's Defense stat to be boosted.", - }, - teraShift: { - name: "Tera Shift", - description: "When the Pokémon enters a battle, it absorbs the energy around itself and transforms into its Terastal Form.", - }, - teraShell: { - name: "Tera Shell", - description: "The Pokémon's shell contains the powers of each type. All damage-dealing moves that hit the Pokémon when its HP is full will not be very effective.", - }, - teraformZero: { - name: "Teraform Zero", - description: "When Terapagos changes into its Stellar Form, it uses its hidden powers to eliminate all effects of weather and terrain, reducing them to zero.", - }, - poisonPuppeteer: { - name: "Poison Puppeteer", - description: "Pokémon poisoned by Pecharunt's moves will also become confused.", - }, -} as const; diff --git a/src/locales/en/achv-female.json b/src/locales/en/achv-female.json new file mode 100644 index 00000000000..edcd8c53fb7 --- /dev/null +++ b/src/locales/en/achv-female.json @@ -0,0 +1,268 @@ +{ + "Achievements": { + "name": "Achievements" + }, + "Locked": { + "name": "Locked" + }, + "MoneyAchv": { + "description": "Accumulate a total of ₽{{moneyAmount}}" + }, + "10K_MONEY": { + "name": "Money Haver" + }, + "100K_MONEY": { + "name": "Rich" + }, + "1M_MONEY": { + "name": "Millionaire" + }, + "10M_MONEY": { + "name": "One Percenter" + }, + "DamageAchv": { + "description": "Inflict {{damageAmount}} damage in one hit" + }, + "250_DMG": { + "name": "Hard Hitter" + }, + "1000_DMG": { + "name": "Harder Hitter" + }, + "2500_DMG": { + "name": "That's a Lotta Damage!" + }, + "10000_DMG": { + "name": "One Punch Man" + }, + "HealAchv": { + "description": "Heal {{healAmount}} {{HP}} at once with a move, ability, or held item" + }, + "250_HEAL": { + "name": "Novice Healer" + }, + "1000_HEAL": { + "name": "Big Healer" + }, + "2500_HEAL": { + "name": "Cleric" + }, + "10000_HEAL": { + "name": "Recovery Master" + }, + "LevelAchv": { + "description": "Level up a Pokémon to Lv{{level}}" + }, + "LV_100": { + "name": "But Wait, There's More!" + }, + "LV_250": { + "name": "Elite" + }, + "LV_1000": { + "name": "To Go Even Further Beyond" + }, + "RibbonAchv": { + "description": "Accumulate a total of {{ribbonAmount}} Ribbons" + }, + "10_RIBBONS": { + "name": "Pokémon League Champion" + }, + "25_RIBBONS": { + "name": "Great League Champion" + }, + "50_RIBBONS": { + "name": "Ultra League Champion" + }, + "75_RIBBONS": { + "name": "Rogue League Champion" + }, + "100_RIBBONS": { + "name": "Master League Champion" + }, + "TRANSFER_MAX_BATTLE_STAT": { + "name": "Teamwork", + "description": "Baton pass to another party member with at least one stat maxed out" + }, + "MAX_FRIENDSHIP": { + "name": "Friendmaxxing", + "description": "Reach max friendship on a Pokémon" + }, + "MEGA_EVOLVE": { + "name": "Megamorph", + "description": "Mega evolve a Pokémon" + }, + "GIGANTAMAX": { + "name": "Absolute Unit", + "description": "Gigantamax a Pokémon" + }, + "TERASTALLIZE": { + "name": "STAB Enthusiast", + "description": "Terastallize a Pokémon" + }, + "STELLAR_TERASTALLIZE": { + "name": "The Hidden Type", + "description": "Stellar Terastallize a Pokémon" + }, + "SPLICE": { + "name": "Infinite Fusion", + "description": "Splice two Pokémon together with DNA Splicers" + }, + "MINI_BLACK_HOLE": { + "name": "A Hole Lot of Items", + "description": "Acquire a Mini Black Hole" + }, + "CATCH_MYTHICAL": { + "name": "Mythical", + "description": "Catch a mythical Pokémon" + }, + "CATCH_SUB_LEGENDARY": { + "name": "(Sub-)Legendary", + "description": "Catch a sub-legendary Pokémon" + }, + "CATCH_LEGENDARY": { + "name": "Legendary", + "description": "Catch a legendary Pokémon" + }, + "SEE_SHINY": { + "name": "Shiny", + "description": "Find a shiny Pokémon in the wild" + }, + "SHINY_PARTY": { + "name": "That's Dedication", + "description": "Have a full party of shiny Pokémon" + }, + "HATCH_MYTHICAL": { + "name": "Mythical Egg", + "description": "Hatch a mythical Pokémon from an egg" + }, + "HATCH_SUB_LEGENDARY": { + "name": "Sub-Legendary Egg", + "description": "Hatch a sub-legendary Pokémon from an egg" + }, + "HATCH_LEGENDARY": { + "name": "Legendary Egg", + "description": "Hatch a legendary Pokémon from an egg" + }, + "HATCH_SHINY": { + "name": "Shiny Egg", + "description": "Hatch a shiny Pokémon from an egg" + }, + "HIDDEN_ABILITY": { + "name": "Hidden Potential", + "description": "Catch a Pokémon with a hidden ability" + }, + "PERFECT_IVS": { + "name": "Certificate of Authenticity", + "description": "Get perfect IVs on a Pokémon" + }, + "CLASSIC_VICTORY": { + "name": "Undefeated", + "description": "Beat the game in classic mode" + }, + "UNEVOLVED_CLASSIC_VICTORY": { + "name": "Bring Your Child To Work Day", + "description": "Beat the game in Classic Mode with at least one unevolved party member." + }, + "MONO_GEN_ONE": { + "name": "The Original Rival", + "description": "Complete the generation one only challenge." + }, + "MONO_GEN_TWO": { + "name": "Generation 1.5", + "description": "Complete the generation two only challenge." + }, + "MONO_GEN_THREE": { + "name": "Too much water?", + "description": "Complete the generation three only challenge." + }, + "MONO_GEN_FOUR": { + "name": "Is she really the hardest?", + "description": "Complete the generation four only challenge." + }, + "MONO_GEN_FIVE": { + "name": "All Original", + "description": "Complete the generation five only challenge." + }, + "MONO_GEN_SIX": { + "name": "Almost Royalty", + "description": "Complete the generation six only challenge." + }, + "MONO_GEN_SEVEN": { + "name": "Only Technically", + "description": "Complete the generation seven only challenge." + }, + "MONO_GEN_EIGHT": { + "name": "A Champion Time!", + "description": "Complete the generation eight only challenge." + }, + "MONO_GEN_NINE": { + "name": "She was going easy on you", + "description": "Complete the generation nine only challenge." + }, + "MonoType": { + "description": "Complete the {{type}} monotype challenge." + }, + "MONO_NORMAL": { + "name": "Extra Ordinary" + }, + "MONO_FIGHTING": { + "name": "I Know Kung Fu" + }, + "MONO_FLYING": { + "name": "Angry Birds" + }, + "MONO_POISON": { + "name": "Kanto's Favourite" + }, + "MONO_GROUND": { + "name": "Forecast: Earthquakes" + }, + "MONO_ROCK": { + "name": "Brock Hard" + }, + "MONO_BUG": { + "name": "You Like Jazz?" + }, + "MONO_GHOST": { + "name": "Who You Gonna Call?" + }, + "MONO_STEEL": { + "name": "Iron Giant" + }, + "MONO_FIRE": { + "name": "I Cast Fireball!" + }, + "MONO_WATER": { + "name": "When It Rains, It Pours" + }, + "MONO_GRASS": { + "name": "Can't Touch This" + }, + "MONO_ELECTRIC": { + "name": "Aim For The Horn!" + }, + "MONO_PSYCHIC": { + "name": "Big Brain Energy" + }, + "MONO_ICE": { + "name": "Walking On Thin Ice" + }, + "MONO_DRAGON": { + "name": "Pseudo-Legend Club" + }, + "MONO_DARK": { + "name": "It's Just A Phase" + }, + "MONO_FAIRY": { + "name": "Hey! Listen!" + }, + "FRESH_START": { + "name": "First Try!", + "description": "Complete the Fresh Start challenge." + }, + "INVERSE_BATTLE": { + "name": "Mirror rorriM", + "description": "Complete the Inverse Battle challenge.\n.egnellahc elttaB esrevnI eht etelpmoC" + } +} \ No newline at end of file diff --git a/src/locales/en/achv.json b/src/locales/en/achv.json new file mode 100644 index 00000000000..0ed746c77b3 --- /dev/null +++ b/src/locales/en/achv.json @@ -0,0 +1,287 @@ +{ + "Achievements": { + "name": "Achievements" + }, + "Locked": { + "name": "Locked" + }, + "MoneyAchv": { + "description": "Accumulate a total of ₽{{moneyAmount}}" + }, + "10K_MONEY": { + "name": "Money Haver", + "name_female": null + }, + "100K_MONEY": { + "name": "Rich", + "name_female": null + }, + "1M_MONEY": { + "name": "Millionaire", + "name_female": null + }, + "10M_MONEY": { + "name": "One Percenter", + "name_female": null + }, + "DamageAchv": { + "description": "Inflict {{damageAmount}} damage in one hit" + }, + "250_DMG": { + "name": "Hard Hitter" + }, + "1000_DMG": { + "name": "Harder Hitter", + "name_female": null + }, + "2500_DMG": { + "name": "That's a Lotta Damage!", + "name_female": null + }, + "10000_DMG": { + "name": "One Punch Man", + "name_female": "One Punch Woman" + }, + "HealAchv": { + "description": "Heal {{healAmount}} {{HP}} at once with a move, ability, or held item" + }, + "250_HEAL": { + "name": "Novice Healer", + "name_female": null + }, + "1000_HEAL": { + "name": "Big Healer", + "name_female": null + }, + "2500_HEAL": { + "name": "Cleric", + "name_female": null + }, + "10000_HEAL": { + "name": "Recovery Master", + "name_female": null + }, + "LevelAchv": { + "description": "Level up a Pokémon to Lv{{level}}" + }, + "LV_100": { + "name": "But Wait, There's More!" + }, + "LV_250": { + "name": "Elite", + "name_female": null + }, + "LV_1000": { + "name": "To Go Even Further Beyond" + }, + "RibbonAchv": { + "description": "Accumulate a total of {{ribbonAmount}} Ribbons" + }, + "10_RIBBONS": { + "name": "Pokémon League Champion", + "name_female": null + }, + "25_RIBBONS": { + "name": "Great League Champion", + "name_female": null + }, + "50_RIBBONS": { + "name": "Ultra League Champion", + "name_female": null + }, + "75_RIBBONS": { + "name": "Rogue League Champion", + "name_female": null + }, + "100_RIBBONS": { + "name": "Master League Champion", + "name_female": null + }, + "TRANSFER_MAX_BATTLE_STAT": { + "name": "Teamwork", + "description": "Baton pass to another party member with at least one stat maxed out" + }, + "MAX_FRIENDSHIP": { + "name": "Friendmaxxing", + "description": "Reach max friendship on a Pokémon" + }, + "MEGA_EVOLVE": { + "name": "Megamorph", + "description": "Mega evolve a Pokémon" + }, + "GIGANTAMAX": { + "name": "Absolute Unit", + "description": "Gigantamax a Pokémon" + }, + "TERASTALLIZE": { + "name": "STAB Enthusiast", + "description": "Terastallize a Pokémon" + }, + "STELLAR_TERASTALLIZE": { + "name": "The Hidden Type", + "description": "Stellar Terastallize a Pokémon" + }, + "SPLICE": { + "name": "Infinite Fusion", + "description": "Splice two Pokémon together with DNA Splicers" + }, + "MINI_BLACK_HOLE": { + "name": "A Hole Lot of Items", + "description": "Acquire a Mini Black Hole" + }, + "CATCH_MYTHICAL": { + "name": "Mythical", + "description": "Catch a mythical Pokémon" + }, + "CATCH_SUB_LEGENDARY": { + "name": "(Sub-)Legendary", + "description": "Catch a sub-legendary Pokémon" + }, + "CATCH_LEGENDARY": { + "name": "Legendary", + "description": "Catch a legendary Pokémon" + }, + "SEE_SHINY": { + "name": "Shiny", + "description": "Find a shiny Pokémon in the wild" + }, + "SHINY_PARTY": { + "name": "That's Dedication", + "name_female": null, + "description": "Have a full party of shiny Pokémon" + }, + "HATCH_MYTHICAL": { + "name": "Mythical Egg", + "description": "Hatch a mythical Pokémon from an egg" + }, + "HATCH_SUB_LEGENDARY": { + "name": "Sub-Legendary Egg", + "description": "Hatch a sub-legendary Pokémon from an egg" + }, + "HATCH_LEGENDARY": { + "name": "Legendary Egg", + "description": "Hatch a legendary Pokémon from an egg" + }, + "HATCH_SHINY": { + "name": "Shiny Egg", + "description": "Hatch a shiny Pokémon from an egg" + }, + "HIDDEN_ABILITY": { + "name": "Hidden Potential", + "description": "Catch a Pokémon with a hidden ability" + }, + "PERFECT_IVS": { + "name": "Certificate of Authenticity", + "description": "Get perfect IVs on a Pokémon" + }, + "CLASSIC_VICTORY": { + "name": "Undefeated", + "name_female": null, + "description": "Beat the game in classic mode" + }, + "UNEVOLVED_CLASSIC_VICTORY": { + "name": "Bring Your Child To Work Day", + "description": "Beat the game in Classic Mode with at least one unevolved party member." + }, + "MONO_GEN_ONE": { + "name": "The Original Rival", + "description": "Complete the generation one only challenge." + }, + "MONO_GEN_TWO": { + "name": "Generation 1.5", + "description": "Complete the generation two only challenge." + }, + "MONO_GEN_THREE": { + "name": "Too much water?", + "description": "Complete the generation three only challenge." + }, + "MONO_GEN_FOUR": { + "name": "Is she really the hardest?", + "description": "Complete the generation four only challenge." + }, + "MONO_GEN_FIVE": { + "name": "All Original", + "description": "Complete the generation five only challenge." + }, + "MONO_GEN_SIX": { + "name": "Almost Royalty", + "description": "Complete the generation six only challenge." + }, + "MONO_GEN_SEVEN": { + "name": "Only Technically", + "description": "Complete the generation seven only challenge." + }, + "MONO_GEN_EIGHT": { + "name": "A Champion Time!", + "description": "Complete the generation eight only challenge." + }, + "MONO_GEN_NINE": { + "name": "She was going easy on you", + "description": "Complete the generation nine only challenge." + }, + "MonoType": { + "description": "Complete the {{type}} monotype challenge." + }, + "MONO_NORMAL": { + "name": "Extra Ordinary" + }, + "MONO_FIGHTING": { + "name": "I Know Kung Fu" + }, + "MONO_FLYING": { + "name": "Angry Birds" + }, + "MONO_POISON": { + "name": "Kanto's Favourite" + }, + "MONO_GROUND": { + "name": "Forecast: Earthquakes" + }, + "MONO_ROCK": { + "name": "Brock Hard" + }, + "MONO_BUG": { + "name": "You Like Jazz?" + }, + "MONO_GHOST": { + "name": "Who You Gonna Call?" + }, + "MONO_STEEL": { + "name": "Iron Giant" + }, + "MONO_FIRE": { + "name": "I Cast Fireball!" + }, + "MONO_WATER": { + "name": "When It Rains, It Pours" + }, + "MONO_GRASS": { + "name": "Can't Touch This" + }, + "MONO_ELECTRIC": { + "name": "Aim For The Horn!" + }, + "MONO_PSYCHIC": { + "name": "Big Brain Energy" + }, + "MONO_ICE": { + "name": "Walking On Thin Ice" + }, + "MONO_DRAGON": { + "name": "Pseudo-Legend Club" + }, + "MONO_DARK": { + "name": "It's Just A Phase" + }, + "MONO_FAIRY": { + "name": "Hey! Listen!" + }, + "FRESH_START": { + "name": "First Try!", + "description": "Complete the Fresh Start challenge." + }, + "INVERSE_BATTLE": { + "name": "Mirror rorriM", + "description": "Complete the Inverse Battle challenge.\n.egnellahc elttaB esrevnI eht etelpmoC" + } +} \ No newline at end of file diff --git a/src/locales/en/achv.ts b/src/locales/en/achv.ts deleted file mode 100644 index a05c8b814ab..00000000000 --- a/src/locales/en/achv.ts +++ /dev/null @@ -1,278 +0,0 @@ -import { AchievementTranslationEntries } from "#app/interfaces/locales.js"; - -// Achievement translations for the when the player character is male -export const PGMachv: AchievementTranslationEntries = { - "Achievements": { - name: "Achievements", - }, - "Locked": { - name: "Locked", - }, - - "MoneyAchv": { - description: "Accumulate a total of ₽{{moneyAmount}}", - }, - "10K_MONEY": { - name: "Money Haver", - }, - "100K_MONEY": { - name: "Rich", - }, - "1M_MONEY": { - name: "Millionaire", - }, - "10M_MONEY": { - name: "One Percenter", - }, - - "DamageAchv": { - description: "Inflict {{damageAmount}} damage in one hit", - }, - "250_DMG": { - name: "Hard Hitter", - }, - "1000_DMG": { - name: "Harder Hitter", - }, - "2500_DMG": { - name: "That's a Lotta Damage!", - }, - "10000_DMG": { - name: "One Punch Man", - }, - - "HealAchv": { - description: "Heal {{healAmount}} {{HP}} at once with a move, ability, or held item", - }, - "250_HEAL": { - name: "Novice Healer", - }, - "1000_HEAL": { - name: "Big Healer", - }, - "2500_HEAL": { - name: "Cleric", - }, - "10000_HEAL": { - name: "Recovery Master", - }, - - "LevelAchv": { - description: "Level up a Pokémon to Lv{{level}}", - }, - "LV_100": { - name: "But Wait, There's More!", - }, - "LV_250": { - name: "Elite", - }, - "LV_1000": { - name: "To Go Even Further Beyond", - }, - - "RibbonAchv": { - description: "Accumulate a total of {{ribbonAmount}} Ribbons", - }, - "10_RIBBONS": { - name: "Pokémon League Champion", - }, - "25_RIBBONS": { - name: "Great League Champion", - }, - "50_RIBBONS": { - name: "Ultra League Champion", - }, - "75_RIBBONS": { - name: "Rogue League Champion", - }, - "100_RIBBONS": { - name: "Master League Champion", - }, - - "TRANSFER_MAX_BATTLE_STAT": { - name: "Teamwork", - description: "Baton pass to another party member with at least one stat maxed out", - }, - "MAX_FRIENDSHIP": { - name: "Friendmaxxing", - description: "Reach max friendship on a Pokémon", - }, - "MEGA_EVOLVE": { - name: "Megamorph", - description: "Mega evolve a Pokémon", - }, - "GIGANTAMAX": { - name: "Absolute Unit", - description: "Gigantamax a Pokémon", - }, - "TERASTALLIZE": { - name: "STAB Enthusiast", - description: "Terastallize a Pokémon", - }, - "STELLAR_TERASTALLIZE": { - name: "The Hidden Type", - description: "Stellar Terastallize a Pokémon", - }, - "SPLICE": { - name: "Infinite Fusion", - description: "Splice two Pokémon together with DNA Splicers", - }, - "MINI_BLACK_HOLE": { - name: "A Hole Lot of Items", - description: "Acquire a Mini Black Hole", - }, - "CATCH_MYTHICAL": { - name: "Mythical", - description: "Catch a mythical Pokémon", - }, - "CATCH_SUB_LEGENDARY": { - name: "(Sub-)Legendary", - description: "Catch a sub-legendary Pokémon", - }, - "CATCH_LEGENDARY": { - name: "Legendary", - description: "Catch a legendary Pokémon", - }, - "SEE_SHINY": { - name: "Shiny", - description: "Find a shiny Pokémon in the wild", - }, - "SHINY_PARTY": { - name: "That's Dedication", - description: "Have a full party of shiny Pokémon", - }, - "HATCH_MYTHICAL": { - name: "Mythical Egg", - description: "Hatch a mythical Pokémon from an egg", - }, - "HATCH_SUB_LEGENDARY": { - name: "Sub-Legendary Egg", - description: "Hatch a sub-legendary Pokémon from an egg", - }, - "HATCH_LEGENDARY": { - name: "Legendary Egg", - description: "Hatch a legendary Pokémon from an egg", - }, - "HATCH_SHINY": { - name: "Shiny Egg", - description: "Hatch a shiny Pokémon from an egg", - }, - "HIDDEN_ABILITY": { - name: "Hidden Potential", - description: "Catch a Pokémon with a hidden ability", - }, - "PERFECT_IVS": { - name: "Certificate of Authenticity", - description: "Get perfect IVs on a Pokémon", - }, - "CLASSIC_VICTORY": { - name: "Undefeated", - description: "Beat the game in classic mode", - }, - "UNEVOLVED_CLASSIC_VICTORY": { - name: "Bring Your Child To Work Day", - description: "Beat the game in Classic Mode with at least one unevolved party member." - }, - - "MONO_GEN_ONE": { - name: "The Original Rival", - description: "Complete the generation one only challenge.", - }, - "MONO_GEN_TWO": { - name: "Generation 1.5", - description: "Complete the generation two only challenge.", - }, - "MONO_GEN_THREE": { - name: "Too much water?", - description: "Complete the generation three only challenge.", - }, - "MONO_GEN_FOUR": { - name: "Is she really the hardest?", - description: "Complete the generation four only challenge.", - }, - "MONO_GEN_FIVE": { - name: "All Original", - description: "Complete the generation five only challenge.", - }, - "MONO_GEN_SIX": { - name: "Almost Royalty", - description: "Complete the generation six only challenge.", - }, - "MONO_GEN_SEVEN": { - name: "Only Technically", - description: "Complete the generation seven only challenge.", - }, - "MONO_GEN_EIGHT": { - name: "A Champion Time!", - description: "Complete the generation eight only challenge.", - }, - "MONO_GEN_NINE": { - name: "She was going easy on you", - description: "Complete the generation nine only challenge.", - }, - - "MonoType": { - description: "Complete the {{type}} monotype challenge.", - }, - "MONO_NORMAL": { - name: "Extra Ordinary", - }, - "MONO_FIGHTING": { - name: "I Know Kung Fu", - }, - "MONO_FLYING": { - name: "Angry Birds", - }, - "MONO_POISON": { - name: "Kanto's Favourite", - }, - "MONO_GROUND": { - name: "Forecast: Earthquakes", - }, - "MONO_ROCK": { - name: "Brock Hard", - }, - "MONO_BUG": { - name: "You Like Jazz?", - }, - "MONO_GHOST": { - name: "Who You Gonna Call?", - }, - "MONO_STEEL": { - name: "Iron Giant", - }, - "MONO_FIRE": { - name: "I Cast Fireball!", - }, - "MONO_WATER": { - name: "When It Rains, It Pours", - }, - "MONO_GRASS": { - name: "Can't Touch This", - }, - "MONO_ELECTRIC": { - name: "Aim For The Horn!", - }, - "MONO_PSYCHIC": { - name: "Big Brain Energy", - }, - "MONO_ICE": { - name: "Walking On Thin Ice", - }, - "MONO_DRAGON": { - name: "Pseudo-Legend Club", - }, - "MONO_DARK": { - name: "It's Just A Phase", - }, - "MONO_FAIRY": { - name: "Hey! Listen!", - }, - "FRESH_START": { - name: "First Try!", - description: "Complete the Fresh Start challenge." - } -} as const; - -// Achievement translations for the when the player character is female (it for now uses the same translations as the male version) -export const PGFachv: AchievementTranslationEntries = PGMachv; diff --git a/src/locales/ca_ES/arena-flyout.ts b/src/locales/en/arena-flyout.json similarity index 82% rename from src/locales/ca_ES/arena-flyout.ts rename to src/locales/en/arena-flyout.json index 8a31d37b10c..141ed4f743d 100644 --- a/src/locales/ca_ES/arena-flyout.ts +++ b/src/locales/en/arena-flyout.json @@ -1,13 +1,9 @@ -import { SimpleTranslationEntries } from "#app/interfaces/locales"; - -export const arenaFlyout: SimpleTranslationEntries = { - // Title +{ "activeBattleEffects": "Active Battle Effects", "player": "Player", "neutral": "Neutral", "enemy": "Enemy", - // WeatherType "sunny": "Sunny", "rain": "Rain", "sandstorm": "Sandstorm", @@ -18,13 +14,11 @@ export const arenaFlyout: SimpleTranslationEntries = { "harshSun": "Harsh Sun", "strongWinds": "Strong Winds", - // TerrainType "misty": "Misty Terrain", "electric": "Electric Terrain", "grassy": "Grassy Terrain", "psychic": "Psychic Terrain", - // ArenaTagType "mudSport": "Mud Sport", "waterSport": "Water Sport", "spikes": "Spikes", @@ -45,5 +39,5 @@ export const arenaFlyout: SimpleTranslationEntries = { "matBlock": "Mat Block", "craftyShield": "Crafty Shield", "tailwind": "Tailwind", - "happyHour": "Happy Hour", -}; + "happyHour": "Happy Hour" +} diff --git a/src/locales/en/arena-flyout.ts b/src/locales/en/arena-flyout.ts deleted file mode 100644 index 8a31d37b10c..00000000000 --- a/src/locales/en/arena-flyout.ts +++ /dev/null @@ -1,49 +0,0 @@ -import { SimpleTranslationEntries } from "#app/interfaces/locales"; - -export const arenaFlyout: SimpleTranslationEntries = { - // Title - "activeBattleEffects": "Active Battle Effects", - "player": "Player", - "neutral": "Neutral", - "enemy": "Enemy", - - // WeatherType - "sunny": "Sunny", - "rain": "Rain", - "sandstorm": "Sandstorm", - "hail": "Hail", - "snow": "Snow", - "fog": "Fog", - "heavyRain": "Heavy Rain", - "harshSun": "Harsh Sun", - "strongWinds": "Strong Winds", - - // TerrainType - "misty": "Misty Terrain", - "electric": "Electric Terrain", - "grassy": "Grassy Terrain", - "psychic": "Psychic Terrain", - - // ArenaTagType - "mudSport": "Mud Sport", - "waterSport": "Water Sport", - "spikes": "Spikes", - "toxicSpikes": "Toxic Spikes", - "mist": "Mist", - "futureSight": "Future Sight", - "doomDesire": "Doom Desire", - "wish": "Wish", - "stealthRock": "Stealth Rock", - "stickyWeb": "Sticky Web", - "trickRoom": "Trick Room", - "gravity": "Gravity", - "reflect": "Reflect", - "lightScreen": "Light Screen", - "auroraVeil": "Aurora Veil", - "quickGuard": "Quick Guard", - "wideGuard": "Wide Guard", - "matBlock": "Mat Block", - "craftyShield": "Crafty Shield", - "tailwind": "Tailwind", - "happyHour": "Happy Hour", -}; diff --git a/src/locales/en/arena-tag.ts b/src/locales/en/arena-tag.json similarity index 94% rename from src/locales/en/arena-tag.ts rename to src/locales/en/arena-tag.json index 22612795308..ef0b55b691b 100644 --- a/src/locales/en/arena-tag.ts +++ b/src/locales/en/arena-tag.json @@ -1,6 +1,4 @@ -import { SimpleTranslationEntries } from "#app/interfaces/locales"; - -export const arenaTag: SimpleTranslationEntries = { +{ "yourTeam": "your team", "opposingTeam": "the opposing team", "arenaOnRemove": "{{moveName}}'s effect wore off.", @@ -49,5 +47,5 @@ export const arenaTag: SimpleTranslationEntries = { "tailwindOnRemovePlayer": "Your team's Tailwind petered out!", "tailwindOnRemoveEnemy": "The opposing team's Tailwind petered out!", "happyHourOnAdd": "Everyone is caught up in the happy atmosphere!", - "happyHourOnRemove": "The atmosphere returned to normal.", -} as const; + "happyHourOnRemove": "The atmosphere returned to normal." +} \ No newline at end of file diff --git a/src/locales/en/battle-info.json b/src/locales/en/battle-info.json new file mode 100644 index 00000000000..2c9e87cb1b8 --- /dev/null +++ b/src/locales/en/battle-info.json @@ -0,0 +1,3 @@ + { + "generation": "Generation {{generation}}" + } \ No newline at end of file diff --git a/src/locales/en/battle-info.ts b/src/locales/en/battle-info.ts deleted file mode 100644 index f24dad46c6c..00000000000 --- a/src/locales/en/battle-info.ts +++ /dev/null @@ -1,5 +0,0 @@ -import { SimpleTranslationEntries } from "#app/interfaces/locales"; - -export const battleInfo: SimpleTranslationEntries = { - "generation": "Generation {{generation}}", -} as const; diff --git a/src/locales/en/battle-message-ui-handler.json b/src/locales/en/battle-message-ui-handler.json new file mode 100644 index 00000000000..0b2e0ba8b13 --- /dev/null +++ b/src/locales/en/battle-message-ui-handler.json @@ -0,0 +1,8 @@ +{ + "ivBest": "Best", + "ivFantastic": "Fantastic", + "ivVeryGood": "Very Good", + "ivPrettyGood": "Pretty Good", + "ivDecent": "Decent", + "ivNoGood": "No Good" +} \ No newline at end of file diff --git a/src/locales/en/battle-message-ui-handler.ts b/src/locales/en/battle-message-ui-handler.ts deleted file mode 100644 index c213c666a26..00000000000 --- a/src/locales/en/battle-message-ui-handler.ts +++ /dev/null @@ -1,10 +0,0 @@ -import { SimpleTranslationEntries } from "#app/interfaces/locales"; - -export const battleMessageUiHandler: SimpleTranslationEntries = { - "ivBest": "Best", - "ivFantastic": "Fantastic", - "ivVeryGood": "Very Good", - "ivPrettyGood": "Pretty Good", - "ivDecent": "Decent", - "ivNoGood": "No Good", -} as const; diff --git a/src/locales/en/battle-scene.json b/src/locales/en/battle-scene.json new file mode 100644 index 00000000000..a0288475d69 --- /dev/null +++ b/src/locales/en/battle-scene.json @@ -0,0 +1,3 @@ +{ + "moneyOwned": "₽{{formattedMoney}}" +} \ No newline at end of file diff --git a/src/locales/en/battle.ts b/src/locales/en/battle.json similarity index 96% rename from src/locales/en/battle.ts rename to src/locales/en/battle.json index 522fbb3261b..662678e7673 100644 --- a/src/locales/en/battle.ts +++ b/src/locales/en/battle.json @@ -1,6 +1,4 @@ -import { SimpleTranslationEntries } from "#app/interfaces/locales"; - -export const battle: SimpleTranslationEntries = { +{ "bossAppeared": "{{bossName}} appeared.", "trainerAppeared": "{{trainerName}}\nwould like to battle!", "trainerAppearedDouble": "{{trainerName}}\nwould like to battle!", @@ -24,6 +22,7 @@ export const battle: SimpleTranslationEntries = { "hitResultSuperEffective": "It's super effective!", "hitResultNotVeryEffective": "It's not very effective…", "hitResultNoEffect": "It doesn't affect {{pokemonName}}!", + "hitResultImmune": "{{pokemonName}} is unaffected!", "hitResultOneHitKO": "It's a one-hit KO!", "attackFailed": "But it failed!", "attackMissed": "{{pokemonNameWithAffix}} avoided the attack!", @@ -39,7 +38,7 @@ export const battle: SimpleTranslationEntries = { "learnMoveNotLearned": "{{pokemonName}} did not learn the\nmove {{moveName}}.", "learnMoveForgetQuestion": "Which move should be forgotten?", "learnMoveForgetSuccess": "{{pokemonName}} forgot how to\nuse {{moveName}}.", - "countdownPoof": "@d{32}1, @d{15}2, and@d{15}… @d{15}… @d{15}… @d{15}@s{pb_bounce_1}Poof!", + "countdownPoof": "@d{32}1, @d{15}2, and@d{15}… @d{15}… @d{15}… @d{15}@s{se/pb_bounce_1}Poof!", "learnMoveAnd": "And…", "levelCapUp": "The level cap\nhas increased to {{levelCap}}!", "moveNotImplemented": "{{moveName}} is not yet implemented and cannot be selected.", @@ -95,5 +94,5 @@ export const battle: SimpleTranslationEntries = { "unlockedSomething": "{{unlockedThing}}\nhas been unlocked.", "congratulations": "Congratulations!", "beatModeFirstTime": "{{speciesName}} beat {{gameMode}} Mode for the first time!\nYou received {{newModifier}}!", - "ppReduced": "It reduced the PP of {{targetName}}'s\n{{moveName}} by {{reduction}}!", -} as const; + "ppReduced": "It reduced the PP of {{targetName}}'s\n{{moveName}} by {{reduction}}!" +} \ No newline at end of file diff --git a/src/locales/ca_ES/battler-tags.ts b/src/locales/en/battler-tags.json similarity index 96% rename from src/locales/ca_ES/battler-tags.ts rename to src/locales/en/battler-tags.json index d0775efda08..94ea3b14958 100644 --- a/src/locales/ca_ES/battler-tags.ts +++ b/src/locales/en/battler-tags.json @@ -1,6 +1,4 @@ -import { SimpleTranslationEntries } from "#app/interfaces/locales"; - -export const battlerTags: SimpleTranslationEntries = { +{ "trappedDesc": "trapping", "flinchedDesc": "flinching", "confusedDesc": "confusion", @@ -69,5 +67,5 @@ export const battlerTags: SimpleTranslationEntries = { "saltCuredLapse": "{{pokemonNameWithAffix}} is hurt by {{moveName}}!", "cursedOnAdd": "{{pokemonNameWithAffix}} cut its own HP and put a curse on the {{pokemonName}}!", "cursedLapse": "{{pokemonNameWithAffix}} is afflicted by the Curse!", - "stockpilingOnAdd": "{{pokemonNameWithAffix}} stockpiled {{stockpiledCount}}!", -} as const; + "stockpilingOnAdd": "{{pokemonNameWithAffix}} stockpiled {{stockpiledCount}}!" +} \ No newline at end of file diff --git a/src/locales/en/battler-tags.ts b/src/locales/en/battler-tags.ts deleted file mode 100644 index d0775efda08..00000000000 --- a/src/locales/en/battler-tags.ts +++ /dev/null @@ -1,73 +0,0 @@ -import { SimpleTranslationEntries } from "#app/interfaces/locales"; - -export const battlerTags: SimpleTranslationEntries = { - "trappedDesc": "trapping", - "flinchedDesc": "flinching", - "confusedDesc": "confusion", - "infatuatedDesc": "infatuation", - "seedDesc": "seeding", - "nightmareDesc": "nightmares", - "ingrainDesc": "roots", - "drowsyDesc": "drowsiness", - "rechargingLapse": "{{pokemonNameWithAffix}} must\nrecharge!", - "trappedOnAdd": "{{pokemonNameWithAffix}} can no\nlonger escape!", - "trappedOnRemove": "{{pokemonNameWithAffix}} was freed\nfrom {{moveName}}!", - "flinchedLapse": "{{pokemonNameWithAffix}} flinched!", - "confusedOnAdd": "{{pokemonNameWithAffix}} became\nconfused!", - "confusedOnRemove": "{{pokemonNameWithAffix}} snapped\nout of confusion!", - "confusedOnOverlap": "{{pokemonNameWithAffix}} is\nalready confused!", - "confusedLapse": "{{pokemonNameWithAffix}} is\nconfused!", - "confusedLapseHurtItself": "It hurt itself in its\nconfusion!", - "destinyBondLapseIsBoss": "{{pokemonNameWithAffix}} is unaffected\nby the effects of Destiny Bond.", - "destinyBondLapse": "{{pokemonNameWithAffix}} took\n{{pokemonNameWithAffix2}} down with it!", - "infatuatedOnAdd": "{{pokemonNameWithAffix}} fell in love\nwith {{sourcePokemonName}}!", - "infatuatedOnOverlap": "{{pokemonNameWithAffix}} is\nalready in love!", - "infatuatedLapse": "{{pokemonNameWithAffix}} is in love\nwith {{sourcePokemonName}}!", - "infatuatedLapseImmobilize": "{{pokemonNameWithAffix}} is\nimmobilized by love!", - "infatuatedOnRemove": "{{pokemonNameWithAffix}} got over\nits infatuation.", - "seededOnAdd": "{{pokemonNameWithAffix}} was seeded!", - "seededLapse": "{{pokemonNameWithAffix}}'s health is\nsapped by Leech Seed!", - "seededLapseShed": "{{pokemonNameWithAffix}}'s Leech Seed\nsucked up the liquid ooze!", - "nightmareOnAdd": "{{pokemonNameWithAffix}} began\nhaving a Nightmare!", - "nightmareOnOverlap": "{{pokemonNameWithAffix}} is\nalready locked in a Nightmare!", - "nightmareLapse": "{{pokemonNameWithAffix}} is locked\nin a Nightmare!", - "encoreOnAdd": "{{pokemonNameWithAffix}} got\nan Encore!", - "encoreOnRemove": "{{pokemonNameWithAffix}}'s Encore\nended!", - "helpingHandOnAdd": "{{pokemonNameWithAffix}} is ready to\nhelp {{pokemonName}}!", - "ingrainLapse": "{{pokemonNameWithAffix}} absorbed\nnutrients with its roots!", - "ingrainOnTrap": "{{pokemonNameWithAffix}} planted its roots!", - "aquaRingOnAdd": "{{pokemonNameWithAffix}} surrounded\nitself with a veil of water!", - "aquaRingLapse": "{{moveName}} restored\n{{pokemonName}}'s HP!", - "drowsyOnAdd": "{{pokemonNameWithAffix}} grew drowsy!", - "damagingTrapLapse": "{{pokemonNameWithAffix}} is hurt\nby {{moveName}}!", - "bindOnTrap": "{{pokemonNameWithAffix}} was squeezed by\n{{sourcePokemonName}}'s {{moveName}}!", - "wrapOnTrap": "{{pokemonNameWithAffix}} was Wrapped\nby {{sourcePokemonName}}!", - "vortexOnTrap": "{{pokemonNameWithAffix}} was trapped\nin the vortex!", - "clampOnTrap": "{{sourcePokemonNameWithAffix}} Clamped\n{{pokemonName}}!", - "sandTombOnTrap": "{{pokemonNameWithAffix}} became trapped\nby {{moveName}}!", - "magmaStormOnTrap": "{{pokemonNameWithAffix}} became trapped\nby swirling magma!", - "snapTrapOnTrap": "{{pokemonNameWithAffix}} got trapped\nby a snap trap!", - "thunderCageOnTrap": "{{sourcePokemonNameWithAffix}} trapped\n{{pokemonNameWithAffix}}!", - "infestationOnTrap": "{{pokemonNameWithAffix}} has been afflicted \nwith an infestation by {{sourcePokemonNameWithAffix}}!", - "protectedOnAdd": "{{pokemonNameWithAffix}}\nprotected itself!", - "protectedLapse": "{{pokemonNameWithAffix}}\nprotected itself!", - "enduringOnAdd": "{{pokemonNameWithAffix}} braced\nitself!", - "enduringLapse": "{{pokemonNameWithAffix}} endured\nthe hit!", - "sturdyLapse": "{{pokemonNameWithAffix}} endured\nthe hit!", - "perishSongLapse": "{{pokemonNameWithAffix}}'s perish count fell to {{turnCount}}.", - "centerOfAttentionOnAdd": "{{pokemonNameWithAffix}} became the center\nof attention!", - "truantLapse": "{{pokemonNameWithAffix}} is\nloafing around!", - "slowStartOnAdd": "{{pokemonNameWithAffix}} can't\nget it going!", - "slowStartOnRemove": "{{pokemonNameWithAffix}} finally\ngot its act together!", - "highestStatBoostOnAdd": "{{pokemonNameWithAffix}}'s {{statName}}\nwas heightened!", - "highestStatBoostOnRemove": "The effects of {{pokemonNameWithAffix}}'s\n{{abilityName}} wore off!", - "magnetRisenOnAdd": "{{pokemonNameWithAffix}} levitated with electromagnetism!", - "magnetRisenOnRemove": "{{pokemonNameWithAffix}}'s electromagnetism wore off!", - "critBoostOnAdd": "{{pokemonNameWithAffix}} is getting\npumped!", - "critBoostOnRemove": "{{pokemonNameWithAffix}} relaxed.", - "saltCuredOnAdd": "{{pokemonNameWithAffix}} is being salt cured!", - "saltCuredLapse": "{{pokemonNameWithAffix}} is hurt by {{moveName}}!", - "cursedOnAdd": "{{pokemonNameWithAffix}} cut its own HP and put a curse on the {{pokemonName}}!", - "cursedLapse": "{{pokemonNameWithAffix}} is afflicted by the Curse!", - "stockpilingOnAdd": "{{pokemonNameWithAffix}} stockpiled {{stockpiledCount}}!", -} as const; diff --git a/src/locales/en/berry.json b/src/locales/en/berry.json new file mode 100644 index 00000000000..a4bec889877 --- /dev/null +++ b/src/locales/en/berry.json @@ -0,0 +1,46 @@ +{ + "SITRUS": { + "name": "Sitrus Berry", + "effect": "Restores 25% HP if HP is below 50%" + }, + "LUM": { + "name": "Lum Berry", + "effect": "Cures any non-volatile status condition and confusion" + }, + "ENIGMA": { + "name": "Enigma Berry", + "effect": "Restores 25% HP if hit by a super effective move" + }, + "LIECHI": { + "name": "Liechi Berry", + "effect": "Raises Attack if HP is below 25%" + }, + "GANLON": { + "name": "Ganlon Berry", + "effect": "Raises Defense if HP is below 25%" + }, + "PETAYA": { + "name": "Petaya Berry", + "effect": "Raises Sp. Atk if HP is below 25%" + }, + "APICOT": { + "name": "Apicot Berry", + "effect": "Raises Sp. Def if HP is below 25%" + }, + "SALAC": { + "name": "Salac Berry", + "effect": "Raises Speed if HP is below 25%" + }, + "LANSAT": { + "name": "Lansat Berry", + "effect": "Raises critical hit ratio if HP is below 25%" + }, + "STARF": { + "name": "Starf Berry", + "effect": "Sharply raises a random stat if HP is below 25%" + }, + "LEPPA": { + "name": "Leppa Berry", + "effect": "Restores 10 PP to a move if its PP reaches 0" + } +} \ No newline at end of file diff --git a/src/locales/en/berry.ts b/src/locales/en/berry.ts deleted file mode 100644 index 3c4930b1591..00000000000 --- a/src/locales/en/berry.ts +++ /dev/null @@ -1,48 +0,0 @@ -import { BerryTranslationEntries } from "#app/interfaces/locales"; - -export const berry: BerryTranslationEntries = { - "SITRUS": { - name: "Sitrus Berry", - effect: "Restores 25% HP if HP is below 50%", - }, - "LUM": { - name: "Lum Berry", - effect: "Cures any non-volatile status condition and confusion", - }, - "ENIGMA": { - name: "Enigma Berry", - effect: "Restores 25% HP if hit by a super effective move", - }, - "LIECHI": { - name: "Liechi Berry", - effect: "Raises Attack if HP is below 25%", - }, - "GANLON": { - name: "Ganlon Berry", - effect: "Raises Defense if HP is below 25%", - }, - "PETAYA": { - name: "Petaya Berry", - effect: "Raises Sp. Atk if HP is below 25%", - }, - "APICOT": { - name: "Apicot Berry", - effect: "Raises Sp. Def if HP is below 25%", - }, - "SALAC": { - name: "Salac Berry", - effect: "Raises Speed if HP is below 25%", - }, - "LANSAT": { - name: "Lansat Berry", - effect: "Raises critical hit ratio if HP is below 25%", - }, - "STARF": { - name: "Starf Berry", - effect: "Sharply raises a random stat if HP is below 25%", - }, - "LEPPA": { - name: "Leppa Berry", - effect: "Restores 10 PP to a move if its PP reaches 0", - }, -} as const; diff --git a/src/locales/ca_ES/bgm-name.ts b/src/locales/en/bgm-name.json similarity index 88% rename from src/locales/ca_ES/bgm-name.ts rename to src/locales/en/bgm-name.json index be9a8f621c7..8838942c8a6 100644 --- a/src/locales/ca_ES/bgm-name.ts +++ b/src/locales/en/bgm-name.json @@ -1,8 +1,6 @@ -import { SimpleTranslationEntries } from "#app/interfaces/locales"; - -export const bgmName: SimpleTranslationEntries = { +{ "music": "Music: ", - "missing_entries" : "{{name}}", + "missing_entries": "{{name}}", "battle_kanto_champion": "B2W2 Kanto Champion Battle", "battle_johto_champion": "B2W2 Johto Champion Battle", "battle_hoenn_champion_g5": "B2W2 Hoenn Champion Battle", @@ -47,6 +45,7 @@ export const bgmName: SimpleTranslationEntries = { "battle_legendary_lake_trio": "ORAS Lake Guardians Battle", "battle_legendary_sinnoh": "ORAS Sinnoh Legendary Battle", "battle_legendary_dia_pal": "ORAS Dialga & Palkia Battle", + "battle_legendary_origin_forme": "LA Origin Dialga & Palkia Battle", "battle_legendary_giratina": "ORAS Giratina Battle", "battle_legendary_arceus": "HGSS Arceus Battle", "battle_legendary_unova": "BW Unova Legendary Battle", @@ -61,6 +60,7 @@ export const bgmName: SimpleTranslationEntries = { "battle_legendary_zac_zam": "SWSH Zacian & Zamazenta Battle", "battle_legendary_glas_spec": "SWSH Glastrier & Spectrier Battle", "battle_legendary_calyrex": "SWSH Calyrex Battle", + "battle_legendary_riders": "SWSH Ice & Shadow Rider Calyrex Battle", "battle_legendary_birds_galar": "SWSH Galarian Legendary Birds Battle", "battle_legendary_ruinous": "SV Treasures of Ruin Battle", "battle_legendary_kor_mir": "SV Depths of Area Zero Battle", @@ -80,13 +80,21 @@ export const bgmName: SimpleTranslationEntries = { "battle_galactic_grunt": "BDSP Team Galactic Battle", "battle_plasma_grunt": "BW Team Plasma Battle", "battle_flare_grunt": "XY Team Flare Battle", + "battle_aether_grunt": "SM Aether Foundation Battle", + "battle_skull_grunt": "SM Team Skull Battle", + "battle_macro_grunt": "SWSH Trainer Battle", + "battle_galactic_admin": "BDSP Team Galactic Admin Battle", + "battle_skull_admin": "SM Team Skull Admin Battle", + "battle_oleana": "SWSH Oleana Battle", "battle_rocket_boss": "USUM Giovanni Battle", "battle_aqua_magma_boss": "ORAS Archie & Maxie Battle", "battle_galactic_boss": "BDSP Cyrus Battle", "battle_plasma_boss": "B2W2 Ghetsis Battle", "battle_flare_boss": "XY Lysandre Battle", + "battle_aether_boss": "SM Lusamine Battle", + "battle_skull_boss": "SM Guzma Battle", + "battle_macro_boss": "SWSH Rose Battle", - // Biome Music "abyss": "PMD EoS Dark Crater", "badlands": "PMD EoS Barren Valley", "beach": "PMD EoS Drenched Bluff", @@ -102,18 +110,18 @@ export const bgmName: SimpleTranslationEntries = { "graveyard": "PMD EoS Mystifying Forest", "ice_cave": "PMD EoS Vast Ice Mountain", "island": "PMD EoS Craggy Coast", - "jungle": "Lmz - Jungle", // The composer thinks about a more creative name - "laboratory": "Firel - Laboratory", // The composer thinks about a more creative name + "jungle": "Lmz - Jungle", + "laboratory": "Firel - Laboratory", "lake": "PMD EoS Crystal Cave", "meadow": "PMD EoS Sky Peak Forest", - "metropolis": "Firel - Metropolis", // The composer thinks about a more creative name + "metropolis": "Firel - Metropolis", "mountain": "PMD EoS Mt. Horn", "plains": "PMD EoS Sky Peak Prairie", "power_plant": "PMD EoS Far Amp Plains", "ruins": "PMD EoS Deep Sealed Ruin", - "sea": "Andr06 - Marine Mystique", // Name defined by the composer - "seabed": "Firel - Seabed", // The composer thinks about a more creative name - "slum": "Andr06 - Sneaky Snom", // Name defined by the composer + "sea": "Andr06 - Marine Mystique", + "seabed": "Firel - Seabed", + "slum": "Andr06 - Sneaky Snom", "snowy_forest": "PMD EoS Sky Peak Snowfield", "space": "Firel - Aether", "swamp": "PMD EoS Surrounded Sea", @@ -122,8 +130,6 @@ export const bgmName: SimpleTranslationEntries = { "town": "PMD EoS Random Dungeon Theme 3", "volcano": "PMD EoS Steam Cave", "wasteland": "PMD EoS Hidden Highland", - - // Encounter "encounter_ace_trainer": "BW Trainers' Eyes Meet (Ace Trainer)", "encounter_backpacker": "BW Trainers' Eyes Meet (Backpacker)", "encounter_clerk": "BW Trainers' Eyes Meet (Clerk)", @@ -138,9 +144,7 @@ export const bgmName: SimpleTranslationEntries = { "encounter_scientist": "BW Trainers' Eyes Meet (Scientist)", "encounter_twins": "BW Trainers' Eyes Meet (Twins)", "encounter_youngster": "BW Trainers' Eyes Meet (Youngster)", - - // Other "heal": "BW Pokémon Heal", "menu": "PMD EoS Welcome to the World of Pokémon!", - "title": "PMD EoS Top Menu Theme", -} as const; + "title": "PMD EoS Top Menu Theme" +} diff --git a/src/locales/en/bgm-name.ts b/src/locales/en/bgm-name.ts deleted file mode 100644 index be9a8f621c7..00000000000 --- a/src/locales/en/bgm-name.ts +++ /dev/null @@ -1,146 +0,0 @@ -import { SimpleTranslationEntries } from "#app/interfaces/locales"; - -export const bgmName: SimpleTranslationEntries = { - "music": "Music: ", - "missing_entries" : "{{name}}", - "battle_kanto_champion": "B2W2 Kanto Champion Battle", - "battle_johto_champion": "B2W2 Johto Champion Battle", - "battle_hoenn_champion_g5": "B2W2 Hoenn Champion Battle", - "battle_hoenn_champion_g6": "ORAS Hoenn Champion Battle", - "battle_sinnoh_champion": "B2W2 Sinnoh Champion Battle", - "battle_champion_alder": "BW Unova Champion Battle", - "battle_champion_iris": "B2W2 Unova Champion Battle", - "battle_kalos_champion": "XY Kalos Champion Battle", - "battle_alola_champion": "USUM Alola Champion Battle", - "battle_galar_champion": "SWSH Galar Champion Battle", - "battle_champion_geeta": "SV Champion Geeta Battle", - "battle_champion_nemona": "SV Champion Nemona Battle", - "battle_champion_kieran": "SV Champion Kieran Battle", - "battle_hoenn_elite": "ORAS Elite Four Battle", - "battle_unova_elite": "BW Elite Four Battle", - "battle_kalos_elite": "XY Elite Four Battle", - "battle_alola_elite": "SM Elite Four Battle", - "battle_galar_elite": "SWSH League Tournament Battle", - "battle_paldea_elite": "SV Elite Four Battle", - "battle_bb_elite": "SV BB League Elite Four Battle", - "battle_final_encounter": "PMD RTDX Rayquaza's Domain", - "battle_final": "BW Ghetsis Battle", - "battle_kanto_gym": "B2W2 Kanto Gym Battle", - "battle_johto_gym": "B2W2 Johto Gym Battle", - "battle_hoenn_gym": "B2W2 Hoenn Gym Battle", - "battle_sinnoh_gym": "B2W2 Sinnoh Gym Battle", - "battle_unova_gym": "BW Unova Gym Battle", - "battle_kalos_gym": "XY Kalos Gym Battle", - "battle_galar_gym": "SWSH Galar Gym Battle", - "battle_paldea_gym": "SV Paldea Gym Battle", - "battle_legendary_kanto": "XY Kanto Legendary Battle", - "battle_legendary_raikou": "HGSS Raikou Battle", - "battle_legendary_entei": "HGSS Entei Battle", - "battle_legendary_suicune": "HGSS Suicune Battle", - "battle_legendary_lugia": "HGSS Lugia Battle", - "battle_legendary_ho_oh": "HGSS Ho-oh Battle", - "battle_legendary_regis_g5": "B2W2 Legendary Titan Battle", - "battle_legendary_regis_g6": "ORAS Legendary Titan Battle", - "battle_legendary_gro_kyo": "ORAS Groudon & Kyogre Battle", - "battle_legendary_rayquaza": "ORAS Rayquaza Battle", - "battle_legendary_deoxys": "ORAS Deoxys Battle", - "battle_legendary_lake_trio": "ORAS Lake Guardians Battle", - "battle_legendary_sinnoh": "ORAS Sinnoh Legendary Battle", - "battle_legendary_dia_pal": "ORAS Dialga & Palkia Battle", - "battle_legendary_giratina": "ORAS Giratina Battle", - "battle_legendary_arceus": "HGSS Arceus Battle", - "battle_legendary_unova": "BW Unova Legendary Battle", - "battle_legendary_kyurem": "BW Kyurem Battle", - "battle_legendary_res_zek": "BW Reshiram & Zekrom Battle", - "battle_legendary_xern_yvel": "XY Xerneas & Yveltal Battle", - "battle_legendary_tapu": "SM Tapu Battle", - "battle_legendary_sol_lun": "SM Solgaleo & Lunala Battle", - "battle_legendary_ub": "SM Ultra Beast Battle", - "battle_legendary_dusk_dawn": "USUM Dusk Mane & Dawn Wings Necrozma Battle", - "battle_legendary_ultra_nec": "USUM Ultra Necrozma Battle", - "battle_legendary_zac_zam": "SWSH Zacian & Zamazenta Battle", - "battle_legendary_glas_spec": "SWSH Glastrier & Spectrier Battle", - "battle_legendary_calyrex": "SWSH Calyrex Battle", - "battle_legendary_birds_galar": "SWSH Galarian Legendary Birds Battle", - "battle_legendary_ruinous": "SV Treasures of Ruin Battle", - "battle_legendary_kor_mir": "SV Depths of Area Zero Battle", - "battle_legendary_loyal_three": "SV Loyal Three Battle", - "battle_legendary_ogerpon": "SV Ogerpon Battle", - "battle_legendary_terapagos": "SV Terapagos Battle", - "battle_legendary_pecharunt": "SV Pecharunt Battle", - "battle_rival": "BW Rival Battle", - "battle_rival_2": "BW N Battle", - "battle_rival_3": "BW Final N Battle", - "battle_trainer": "BW Trainer Battle", - "battle_wild": "BW Wild Battle", - "battle_wild_strong": "BW Strong Wild Battle", - "end_summit": "PMD RTDX Sky Tower Summit", - "battle_rocket_grunt": "HGSS Team Rocket Battle", - "battle_aqua_magma_grunt": "ORAS Team Aqua & Magma Battle", - "battle_galactic_grunt": "BDSP Team Galactic Battle", - "battle_plasma_grunt": "BW Team Plasma Battle", - "battle_flare_grunt": "XY Team Flare Battle", - "battle_rocket_boss": "USUM Giovanni Battle", - "battle_aqua_magma_boss": "ORAS Archie & Maxie Battle", - "battle_galactic_boss": "BDSP Cyrus Battle", - "battle_plasma_boss": "B2W2 Ghetsis Battle", - "battle_flare_boss": "XY Lysandre Battle", - - // Biome Music - "abyss": "PMD EoS Dark Crater", - "badlands": "PMD EoS Barren Valley", - "beach": "PMD EoS Drenched Bluff", - "cave": "PMD EoS Sky Peak Cave", - "construction_site": "PMD EoS Boulder Quarry", - "desert": "PMD EoS Northern Desert", - "dojo": "PMD EoS Marowak Dojo", - "end": "PMD RTDX Sky Tower", - "factory": "PMD EoS Concealed Ruins", - "fairy_cave": "PMD EoS Star Cave", - "forest": "PMD EoS Dusk Forest", - "grass": "PMD EoS Apple Woods", - "graveyard": "PMD EoS Mystifying Forest", - "ice_cave": "PMD EoS Vast Ice Mountain", - "island": "PMD EoS Craggy Coast", - "jungle": "Lmz - Jungle", // The composer thinks about a more creative name - "laboratory": "Firel - Laboratory", // The composer thinks about a more creative name - "lake": "PMD EoS Crystal Cave", - "meadow": "PMD EoS Sky Peak Forest", - "metropolis": "Firel - Metropolis", // The composer thinks about a more creative name - "mountain": "PMD EoS Mt. Horn", - "plains": "PMD EoS Sky Peak Prairie", - "power_plant": "PMD EoS Far Amp Plains", - "ruins": "PMD EoS Deep Sealed Ruin", - "sea": "Andr06 - Marine Mystique", // Name defined by the composer - "seabed": "Firel - Seabed", // The composer thinks about a more creative name - "slum": "Andr06 - Sneaky Snom", // Name defined by the composer - "snowy_forest": "PMD EoS Sky Peak Snowfield", - "space": "Firel - Aether", - "swamp": "PMD EoS Surrounded Sea", - "tall_grass": "PMD EoS Foggy Forest", - "temple": "PMD EoS Aegis Cave", - "town": "PMD EoS Random Dungeon Theme 3", - "volcano": "PMD EoS Steam Cave", - "wasteland": "PMD EoS Hidden Highland", - - // Encounter - "encounter_ace_trainer": "BW Trainers' Eyes Meet (Ace Trainer)", - "encounter_backpacker": "BW Trainers' Eyes Meet (Backpacker)", - "encounter_clerk": "BW Trainers' Eyes Meet (Clerk)", - "encounter_cyclist": "BW Trainers' Eyes Meet (Cyclist)", - "encounter_lass": "BW Trainers' Eyes Meet (Lass)", - "encounter_parasol_lady": "BW Trainers' Eyes Meet (Parasol Lady)", - "encounter_pokefan": "BW Trainers' Eyes Meet (Poke Fan)", - "encounter_psychic": "BW Trainers' Eyes Meet (Psychic)", - "encounter_rich": "BW Trainers' Eyes Meet (Gentleman)", - "encounter_rival": "BW Cheren", - "encounter_roughneck": "BW Trainers' Eyes Meet (Roughneck)", - "encounter_scientist": "BW Trainers' Eyes Meet (Scientist)", - "encounter_twins": "BW Trainers' Eyes Meet (Twins)", - "encounter_youngster": "BW Trainers' Eyes Meet (Youngster)", - - // Other - "heal": "BW Pokémon Heal", - "menu": "PMD EoS Welcome to the World of Pokémon!", - "title": "PMD EoS Top Menu Theme", -} as const; diff --git a/src/locales/en/biome.ts b/src/locales/en/biome.json similarity index 80% rename from src/locales/en/biome.ts rename to src/locales/en/biome.json index d3f34c021d4..6d79382cf3e 100644 --- a/src/locales/en/biome.ts +++ b/src/locales/en/biome.json @@ -1,7 +1,5 @@ -import { SimpleTranslationEntries } from "#app/interfaces/locales"; - -export const biome: SimpleTranslationEntries = { - "unknownLocation": "Somewhere you can\'t remember", +{ + "unknownLocation": "Somewhere you can't remember", "TOWN": "Town", "PLAINS": "Plains", "GRASS": "Grassy Field", @@ -36,5 +34,5 @@ export const biome: SimpleTranslationEntries = { "SNOWY_FOREST": "Snowy Forest", "ISLAND": "Island", "LABORATORY": "Laboratory", - "END": "???", -} as const; + "END": "???" +} \ No newline at end of file diff --git a/src/locales/en/challenges.ts b/src/locales/en/challenges.json similarity index 74% rename from src/locales/en/challenges.ts rename to src/locales/en/challenges.json index e3302876201..f189266cea2 100644 --- a/src/locales/en/challenges.ts +++ b/src/locales/en/challenges.json @@ -1,6 +1,4 @@ -import { TranslationEntries } from "#app/interfaces/locales.js"; - -export const challenges: TranslationEntries = { +{ "title": "Challenge Modifiers", "illegalEvolution": "{{pokemon}} changed into an ineligble pokémon\nfor this challenge!", "singleGeneration": { @@ -15,18 +13,24 @@ export const challenges: TranslationEntries = { "gen_6": "six", "gen_7": "seven", "gen_8": "eight", - "gen_9": "nine", + "gen_9": "nine" }, "singleType": { "name": "Mono Type", "desc": "You can only use Pokémon with the {{type}} type.", "desc_default": "You can only use Pokémon of the chosen type." - //types in pokemon-info }, "freshStart": { "name": "Fresh Start", "desc": "You can only use the original starters, and only as if you had just started PokéRogue.", "value.0": "Off", - "value.1": "On", + "value.1": "On" + }, + "inverseBattle": { + "name": "Inverse Battle", + "shortName": "Inverse", + "desc": "Type matchups are reversed and no type is immune to any other type.\nDisables other challenges' achievements.", + "value.0": "Off", + "value.1": "On" } -} as const; +} \ No newline at end of file diff --git a/src/locales/en/command-ui-handler.json b/src/locales/en/command-ui-handler.json new file mode 100644 index 00000000000..5ca222234d3 --- /dev/null +++ b/src/locales/en/command-ui-handler.json @@ -0,0 +1,7 @@ +{ + "fight": "Fight", + "ball": "Ball", + "pokemon": "Pokémon", + "run": "Run", + "actionMessage": "What will\n{{pokemonName}} do?" +} \ No newline at end of file diff --git a/src/locales/en/command-ui-handler.ts b/src/locales/en/command-ui-handler.ts deleted file mode 100644 index c4c65db0aa0..00000000000 --- a/src/locales/en/command-ui-handler.ts +++ /dev/null @@ -1,9 +0,0 @@ -import { SimpleTranslationEntries } from "#app/interfaces/locales"; - -export const commandUiHandler: SimpleTranslationEntries = { - "fight": "Fight", - "ball": "Ball", - "pokemon": "Pokémon", - "run": "Run", - "actionMessage": "What will\n{{pokemonName}} do?", -} as const; diff --git a/src/locales/en/common.json b/src/locales/en/common.json new file mode 100644 index 00000000000..e910b7c2e09 --- /dev/null +++ b/src/locales/en/common.json @@ -0,0 +1,8 @@ +{ + "start": "Start", + "luckIndicator": "Luck:", + "shinyOnHover": "Shiny", + "commonShiny": "Common", + "rareShiny": "Rare", + "epicShiny": "Epic" +} \ No newline at end of file diff --git a/src/locales/en/common.ts b/src/locales/en/common.ts deleted file mode 100644 index 750322e1f09..00000000000 --- a/src/locales/en/common.ts +++ /dev/null @@ -1,10 +0,0 @@ -import { SimpleTranslationEntries } from "#app/interfaces/locales"; - -export const common: SimpleTranslationEntries = { - "start": "Start", - "luckIndicator": "Luck:", - "shinyOnHover": "Shiny", - "commonShiny": "Common", - "rareShiny": "Rare", - "epicShiny": "Epic", -} as const; diff --git a/src/locales/en/config.ts b/src/locales/en/config.ts index a98dd750fbe..024f7f10108 100644 --- a/src/locales/en/config.ts +++ b/src/locales/en/config.ts @@ -1,116 +1,113 @@ -import { common } from "./common.js"; -import { settings } from "./settings.js"; -import { ability } from "./ability"; -import { abilityTriggers } from "./ability-trigger"; -import { arenaFlyout } from "./arena-flyout"; -import { arenaTag } from "./arena-tag"; -import { PGFachv, PGMachv } from "./achv"; -import { battle } from "./battle"; -import { battleInfo } from "./battle-info"; -import { battleMessageUiHandler } from "./battle-message-ui-handler"; -import { battlerTags } from "./battler-tags"; -import { berry } from "./berry"; -import { bgmName } from "./bgm-name"; -import { biome } from "./biome"; -import { challenges } from "./challenges"; -import { commandUiHandler } from "./command-ui-handler"; -import { - PGFbattleSpecDialogue, - PGFdialogue, - PGFdoubleBattleDialogue, - PGFmiscDialogue, - PGMbattleSpecDialogue, - PGMdialogue, - PGMdoubleBattleDialogue, - PGMmiscDialogue -} from "./dialogue"; -import { egg } from "./egg"; -import { fightUiHandler } from "./fight-ui-handler"; -import { filterBar } from "./filter-bar"; -import { gameMode } from "./game-mode"; -import { gameStatsUiHandler } from "./game-stats-ui-handler"; -import { growth } from "./growth"; -import { menu } from "./menu"; -import { menuUiHandler } from "./menu-ui-handler"; -import { modifier } from "./modifier"; -import { modifierType } from "./modifier-type"; -import { move } from "./move"; -import { nature } from "./nature"; -import { partyUiHandler } from "./party-ui-handler"; -import { pokeball } from "./pokeball"; -import { pokemon } from "./pokemon"; -import { pokemonForm, battlePokemonForm } from "./pokemon-form"; -import { pokemonInfo } from "./pokemon-info"; -import { pokemonInfoContainer } from "./pokemon-info-container"; -import { pokemonSummary } from "./pokemon-summary"; -import { saveSlotSelectUiHandler } from "./save-slot-select-ui-handler"; -import { splashMessages } from "./splash-messages"; -import { starterSelectUiHandler } from "./starter-select-ui-handler"; -import { statusEffect } from "./status-effect"; -import { titles, trainerClasses, trainerNames } from "./trainers"; -import { tutorial } from "./tutorial"; -import { voucher } from "./voucher"; -import { terrain, weather } from "./weather"; -import { modifierSelectUiHandler } from "./modifier-select-ui-handler"; -import { moveTriggers } from "./move-trigger"; +import common from "./common.json"; +import settings from "./settings.json"; +import ability from "./ability.json"; +import abilityTriggers from "./ability-trigger.json"; +import arenaFlyout from "./arena-flyout.json"; +import arenaTag from "./arena-tag.json"; +import achv from "./achv.json"; +import battle from "./battle.json"; +import battleScene from "./battle-scene.json"; +import battleInfo from "./battle-info.json"; +import battleMessageUiHandler from "./battle-message-ui-handler.json"; +import battlerTags from "./battler-tags.json"; +import berry from "./berry.json"; +import bgmName from "./bgm-name.json"; +import biome from "./biome.json"; +import challenges from "./challenges.json"; +import commandUiHandler from "./command-ui-handler.json"; +import dialogue from "./dialogue.json"; +import battleSpecDialogue from "./dialogue-final-boss.json"; +import miscDialogue from "./dialogue-misc.json"; +import doubleBattleDialogue from "./dialogue-double-battle.json"; +import egg from "./egg.json"; +import fightUiHandler from "./fight-ui-handler.json"; +import filterBar from "./filter-bar.json"; +import gameMode from "./game-mode.json"; +import gameStatsUiHandler from "./game-stats-ui-handler.json"; +import growth from "./growth.json"; +import menu from "./menu.json"; +import menuUiHandler from "./menu-ui-handler.json"; +import modifier from "./modifier.json"; +import modifierType from "./modifier-type.json"; +import move from "./move.json"; +import nature from "./nature.json"; +import partyUiHandler from "./party-ui-handler.json"; +import pokeball from "./pokeball.json"; +import pokemon from "./pokemon.json"; +import pokemonForm from "./pokemon-form.json"; +import battlePokemonForm from "./pokemon-form-battle.json"; +import pokemonInfo from "./pokemon-info.json"; +import pokemonInfoContainer from "./pokemon-info-container.json"; +import pokemonSummary from "./pokemon-summary.json"; +import saveSlotSelectUiHandler from "./save-slot-select-ui-handler.json"; +import splashMessages from "./splash-messages.json"; +import starterSelectUiHandler from "./starter-select-ui-handler.json"; +import statusEffect from "./status-effect.json"; +import trainerTitles from "./trainer-titles.json"; +import trainerClasses from "./trainer-classes.json"; +import trainerNames from "./trainer-names.json"; +import tutorial from "./tutorial.json"; +import voucher from "./voucher.json"; +import weather from "./weather.json"; +import terrain from "./terrain.json"; +import modifierSelectUiHandler from "./modifier-select-ui-handler.json"; +import moveTriggers from "./move-trigger.json"; +import runHistory from "./run-history.json"; export const enConfig = { - ability: ability, - abilityTriggers: abilityTriggers, - arenaFlyout: arenaFlyout, - arenaTag: arenaTag, - battle: battle, - battleInfo: battleInfo, - battleMessageUiHandler: battleMessageUiHandler, - battlePokemonForm: battlePokemonForm, - battlerTags: battlerTags, - berry: berry, - bgmName: bgmName, - biome: biome, - challenges: challenges, - commandUiHandler: commandUiHandler, - common: common, - PGMachv: PGMachv, - PGFachv: PGFachv, - PGMdialogue: PGMdialogue, - PGFdialogue: PGFdialogue, - PGMbattleSpecDialogue: PGMbattleSpecDialogue, - PGFbattleSpecDialogue: PGFbattleSpecDialogue, - PGMmiscDialogue: PGMmiscDialogue, - PGFmiscDialogue: PGFmiscDialogue, - PGMdoubleBattleDialogue: PGMdoubleBattleDialogue, - PGFdoubleBattleDialogue: PGFdoubleBattleDialogue, - egg: egg, - fightUiHandler: fightUiHandler, - filterBar: filterBar, - gameMode: gameMode, - gameStatsUiHandler: gameStatsUiHandler, - growth: growth, - menu: menu, - menuUiHandler: menuUiHandler, - modifier: modifier, - modifierType: modifierType, - move: move, - nature: nature, - pokeball: pokeball, - pokemon: pokemon, - pokemonForm: pokemonForm, - pokemonInfo: pokemonInfo, - pokemonInfoContainer: pokemonInfoContainer, - pokemonSummary: pokemonSummary, - saveSlotSelectUiHandler: saveSlotSelectUiHandler, - settings: settings, - splashMessages: splashMessages, - starterSelectUiHandler: starterSelectUiHandler, - statusEffect: statusEffect, - terrain: terrain, - titles: titles, - trainerClasses: trainerClasses, - trainerNames: trainerNames, - tutorial: tutorial, - voucher: voucher, - weather: weather, - partyUiHandler: partyUiHandler, - modifierSelectUiHandler: modifierSelectUiHandler, - moveTriggers: moveTriggers + ability, + abilityTriggers, + arenaFlyout, + arenaTag, + battle, + battleScene, + battleInfo, + battleMessageUiHandler, + battlePokemonForm, + battlerTags, + berry, + bgmName, + biome, + challenges, + commandUiHandler, + common, + achv, + dialogue, + battleSpecDialogue, + miscDialogue, + doubleBattleDialogue, + egg, + fightUiHandler, + filterBar, + gameMode, + gameStatsUiHandler, + growth, + menu, + menuUiHandler, + modifier, + modifierType, + move, + nature, + pokeball, + pokemon, + pokemonForm, + pokemonInfo, + pokemonInfoContainer, + pokemonSummary, + saveSlotSelectUiHandler, + settings, + splashMessages, + starterSelectUiHandler, + statusEffect, + terrain, + titles: trainerTitles, + trainerClasses, + trainerNames, + tutorial, + voucher, + weather, + partyUiHandler, + modifierSelectUiHandler, + moveTriggers, + runHistory }; diff --git a/src/locales/en/dialogue-double-battle.json b/src/locales/en/dialogue-double-battle.json new file mode 100644 index 00000000000..9484aa2edcc --- /dev/null +++ b/src/locales/en/dialogue-double-battle.json @@ -0,0 +1,84 @@ +{ + "blue_red_double": { + "encounter": { + "1": "Blue: Hey Red, let's show them what we're made of!\n$Red: ...\n$Blue: This is Pallet Town Power!" + }, + "victory": { + "1": "Blue: That was a great battle!\n$Red: ..." + } + }, + "red_blue_double": { + "encounter": { + "1": "Red: ...!\n$Blue: He never talks much.\n$Blue: But dont let that fool you! He is a champ after all!" + }, + "victory": { + "1": "Red: ...!\n$Blue: Next time we will beat you!" + } + }, + "tate_liza_double": { + "encounter": { + "1": "Tate: Are you surprised?\n$Liza: We are two gym leaders at once!\n$Tate: We are twins!\n$Liza: We dont need to talk to understand each other!\n$Tate: Twice the power...\n$Liza: Can you handle it?" + }, + "victory": { + "1": "Tate: What? Our combination was perfect!\n$Liza: Looks like we need to train more..." + } + }, + "liza_tate_double": { + "encounter": { + "1": "Liza: Hihihi... Are you surprised?\n$Tate: Yes, we are really two gym leaders at once!\n$Liza: This is my twin brother Tate!\n$Tate: And this is my twin sister Liza!\n$Liza: Don't you think we are a perfect combination?" + }, + "victory": { + "1": "Liza: Are we...\n$Tate: ...not as strong as we thought?" + } + }, + "wallace_steven_double": { + "encounter": { + "1": "Steven: Wallace, let's show them the power of the champions!\n$Wallace: We will show you the power of Hoenn!\n$Steven: Let's go!" + }, + "victory": { + "1": "Steven: That was a great battle!\n$Wallace: We will win next time!" + } + }, + "steven_wallace_double": { + "encounter": { + "1": "Steven: Do you have any rare Pokémon?\n$Wallace: Steven... We are here for a battle, not to show off our Pokémon.\n$Steven: Oh... I see... Let's go then!" + }, + "victory": { + "1": "Steven: Now that we are done with the battle, let's show off our Pokémon!\n$Wallace: Steven..." + } + }, + "alder_iris_double": { + "encounter": { + "1": "Alder: We are the strongest trainers in Unova!\n$Iris: Fights against strong trainers are the best!" + }, + "victory": { + "1": "Alder: Wow! You are super strong!\n$Iris: We will win next time!" + } + }, + "iris_alder_double": { + "encounter": { + "1": "Iris: Welcome Challenger! I am THE Unova Champion!\n$Alder: Iris, aren't you a bit too excited?", + "1_female": null + }, + "victory": { + "1": "Iris: A loss like this is not easy to take...\n$Alder: But we will only get stronger with every loss!" + } + }, + "piers_marnie_double": { + "encounter": { + "1": "Marnie: Brother, let's show them the power of Spikemuth!\n$Piers: We bring darkness!" + }, + "victory": { + "1": "Marnie: You brought light to our darkness!\n$Piers: Its too bright..." + } + }, + "marnie_piers_double": { + "encounter": { + "1": "Piers: Ready for a concert?\n$Marnie: Brother... They are here to fight, not to sing...", + "1_female": null + }, + "victory": { + "1": "Piers: Now that was a great concert!\n$Marnie: Brother..." + } + } +} \ No newline at end of file diff --git a/src/locales/en/dialogue-final-boss.json b/src/locales/en/dialogue-final-boss.json new file mode 100644 index 00000000000..3abe4cd8831 --- /dev/null +++ b/src/locales/en/dialogue-final-boss.json @@ -0,0 +1,10 @@ +{ + "encounter": "It appears the time has finally come once again.\nYou know why you have come here, do you not?\n$You were drawn here, because you have been here before.\nCountless times.\n$Though, perhaps it can be counted.\nTo be precise, this is in fact your {{cycleCount}} cycle.\n$Each cycle your mind reverts to its former state.\nEven so, somehow, remnants of your former selves remain.\n$Until now you have yet to succeed, but I sense a different presence in you this time.\n\n$You are the only one here, though it is as if there is… another.\n$Will you finally prove a formidable challenge to me?\nThe challenge I have longed after for millennia?\n$We begin.", + "encounter_female": null, + "firstStageWin": "I see. The presence I felt was indeed real.\nIt appears I no longer need to hold back.\n$Do not disappoint me.", + "secondStageWin": "…Magnificent.", + "key_ordinal_one": "st", + "key_ordinal_two": "nd", + "key_ordinal_few": "rd", + "key_ordinal_other": "th" +} \ No newline at end of file diff --git a/src/locales/en/dialogue-misc.json b/src/locales/en/dialogue-misc.json new file mode 100644 index 00000000000..f5c63a85410 --- /dev/null +++ b/src/locales/en/dialogue-misc.json @@ -0,0 +1,6 @@ +{ + "ending": "@c{smile}Oh? You won?@d{96} @c{smile_eclosed}I guess I should've known.\nBut, you're back now.\n$@c{smile}It's over.@d{64} You ended the loop.\n$@c{serious_smile_fists}You fulfilled your dream too, didn't you?\nYou didn't lose even once.\n$@c{neutral}I'm the only one who'll remember what you did.@d{96}\nI guess that's okay, isn't it?\n$@c{serious_smile_fists}Your legend will always live on in our hearts.\n$@c{smile_eclosed}Anyway, I've had about enough of this place, haven't you? Let's head home.\n$@c{serious_smile_fists}Maybe when we get back, we can have another battle?\nIf you're up to it.", + "ending_female": "@c{shock}You're back?@d{32} Does that mean…@d{96} you won?!\n@c{smile_ehalf}I should have known you had it in you.\n$@c{smile_eclosed}Of course… I always had that feeling.\n@c{smile}It's over now, right? You ended the loop.\n$@c{smile_ehalf}You fulfilled your dream too, didn't you?\nYou didn't lose even once.\n$I'll be the only one to remember what you did.\n@c{angry_mopen}I'll try not to forget!\n$@c{smile_wave_wink}Just kidding!@d{64} @c{smile}I'd never forget.@d{32}\nYour legend will live on in our hearts.\n$@c{smile_wave}Anyway,@d{64} it's getting late…@d{96} I think?\nIt's hard to tell in this place.\n$Let's go home. @c{smile_wave_wink}Maybe tomorrow, we can have another battle, for old time's sake?", + "ending_endless": "Congratulations on reaching the current end!\nMore content is coming soon.", + "ending_name": "Devs" +} \ No newline at end of file diff --git a/src/locales/en/dialogue.json b/src/locales/en/dialogue.json new file mode 100644 index 00000000000..e96a42daf1d --- /dev/null +++ b/src/locales/en/dialogue.json @@ -0,0 +1,2817 @@ +{ + "youngster": { + "encounter": { + "1": "Hey, wanna battle?", + "2": "Are you a new trainer too?", + "2_female": null, + "3": "Hey, I haven't seen you before. Let's battle!", + "4": "I just lost, so I'm trying to find more Pokémon.\nWait! You look weak! Come on, let's battle!", + "4_female": null, + "5": "Have we met or not? I don't really remember. Well, I guess it's nice to meet you anyway!", + "6": "All right! Let's go!", + "7": "All right! Here I come! I'll show you my power!", + "8": "Haw haw haw... I'll show you how hawesome my Pokémon are!", + "9": "No need to waste time saying hello. Bring it on whenever you're ready!", + "9_female": null, + "10": "Don't let your guard down, or you may be crying when a kid beats you.", + "11": "I've raised my Pokémon with great care. You're not allowed to hurt them!", + "12": "Glad you made it! It won't be an easy job from here.", + "12_female": null, + "13": "The battles continue forever! Welcome to the world with no end!", + "13_female": null + }, + "victory": { + "1": "Wow! You're strong!", + "1_female": null, + "2": "I didn't stand a chance, huh?", + "3": "I'll find you again when I'm older and beat you!", + "4": "Ugh. I don't have any more Pokémon.", + "5": "No way… NO WAY! How could I lose again…", + "5_female": null, + "6": "No! I lost!", + "7": "Whoa! You are incredible! I'm amazed and surprised!", + "8": "Could it be… How… My Pokémon and I are the strongest, though…", + "9": "I won't lose next time! Let's battle again sometime!", + "10": "Sheesh! Can't you see that I'm just a kid! It wasn't fair of you to go all out like that!", + "11": "Your Pokémon are more amazing! Trade with me!", + "12": "I got a little carried away earlier, but what job was I talking about?", + "13": "Ahaha! There it is! That's right! You're already right at home in this world!" + } + }, + "lass": { + "encounter": { + "1": "Let's have a battle, shall we?", + "2": "You look like a new trainer. Let's have a battle!", + "2_female": null, + "3": "I don't recognize you. How about a battle?", + "4": "Let's have a fun Pokémon battle!", + "5": "I'll show you the ropes of how to really use Pokémon!", + "6": "A serious battle starts from a serious beginning! Are you sure you're ready?", + "6_female": null, + "7": "You're only young once. And you only get one shot at a given battle. Soon, you'll be nothing but a memory.", + "8": "You'd better go easy on me, OK? Though I'll be seriously fighting!", + "9": "School is boring. I've got nothing to do. Yawn. I'm only battling to kill the time." + }, + "victory": { + "1": "That was impressive! I've got a lot to learn.", + "2": "I didn't think you'd beat me that bad…", + "2_female": null, + "3": "I hope we get to have a rematch some day.", + "4": "That was pretty amazingly fun! You've totally exhausted me…", + "5": "You actually taught me a lesson! You're pretty amazing!", + "6": "Seriously, I lost. That is, like, seriously depressing, but you were seriously cool.", + "6_female": null, + "7": "I don't need memories like this. Deleting memory…", + "8": "Hey! I told you to go easy on me! Still, you're pretty cool when you're serious.", + "8_female": null, + "9": "I'm actually getting tired of battling… There's gotta be something new to do…" + } + }, + "breeder": { + "encounter": { + "1": "Obedient Pokémon, selfish Pokémon… Pokémon have unique characteristics.", + "2": "Even though my upbringing and behavior are poor, I've raised my Pokémon well.", + "3": "Hmm, do you discipline your Pokémon? Pampering them too much is no good." + }, + "victory": { + "1": "It is important to nurture and train each Pokémon's characteristics.", + "2": "Unlike my diabolical self, these are some good Pokémon.", + "3": "Too much praise can spoil both Pokémon and people." + }, + "defeat": { + "1": "You should not get angry at your Pokémon, even if you lose a battle.", + "2": "Right? Pretty good Pokémon, huh? I'm suited to raising things.", + "3": "No matter how much you love your Pokémon, you still have to discipline them when they misbehave." + } + }, + "breeder_female": { + "encounter": { + "1": "Pokémon never betray you. They return all the love you give them.", + "2": "Shall I give you a tip for training good Pokémon?", + "3": "I have raised these very special Pokémon using a special method." + }, + "victory": { + "1": "Ugh… It wasn't supposed to be like this. Did I administer the wrong blend?", + "2": "How could that happen to my Pokémon… What are you feeding your Pokémon?", + "3": "If I lose, that tells you I was just killing time. It doesn't damage my ego at all." + }, + "defeat": { + "1": "This proves my Pokémon have accepted my love.", + "2": "The real trick behind training good Pokémon is catching good Pokémon.", + "3": "Pokémon will be strong or weak depending on how you raise them." + } + }, + "fisherman": { + "encounter": { + "1": "Aack! You made me lose a bite!\nWhat are you going to do about it?", + "2": "Go away! You're scaring the Pokémon!", + "3": "Let's see if you can reel in a victory!" + }, + "victory": { + "1": "Just forget about it.", + "2": "Next time, I'll be reelin' in the triumph!", + "3": "Guess I underestimated the currents this time." + } + }, + "fisherman_female": { + "encounter": { + "1": "Woah! I've hooked a big one!", + "2": "Line's in, ready to reel in success!", + "3": "Ready to make waves!" + }, + "victory": { + "1": "I'll be back with a stronger hook.", + "2": "I'll reel in victory next time.", + "3": "I'm just sharpening my hooks for the comeback!" + } + }, + "swimmer": { + "encounter": { + "1": "Time to dive in!", + "2": "Let's ride the waves of victory!", + "3": "Ready to make a splash!" + }, + "victory": { + "1": "Drenched in defeat!", + "2": "A wave of defeat!", + "3": "Back to shore, I guess." + } + }, + "backpacker": { + "encounter": { + "1": "Pack up, game on!", + "2": "Let's see if you can keep pace!", + "3": "Gear up, challenger!", + "4": "I've spent 20 years trying to find myself… But where am I?" + }, + "victory": { + "1": "Tripped up this time!", + "2": "Oh, I think I'm lost.", + "3": "Dead end!", + "4": "Wait up a second! Hey! Don't you know who I am?" + } + }, + "ace_trainer": { + "encounter": { + "1": "You seem quite confident.", + "1_female": null, + "2": "Your Pokémon… Show them to me…", + "3": "Because I'm an Ace Trainer, people think I'm strong.", + "4": "Are you aware of what it takes to be an Ace Trainer?" + }, + "victory": { + "1": "Yes… You have good Pokémon…", + "2": "What?! But I'm a battling genius!", + "3": "Of course, you are the main character!", + "3_female": null, + "4": "OK! OK! You could be an Ace Trainer!", + "4_female": null + }, + "defeat": { + "1": "I am devoting my body and soul to Pokémon battles!", + "2": "All within my expectations… Nothing to be surprised about…", + "3": "I thought I'd grow up to be a frail person who looked like they would break if you squeezed them too hard.", + "4": "Of course I'm strong and don't lose. It's important that I win gracefully." + } + }, + "parasol_lady": { + "encounter": { + "1": "Time to grace the battlefield with elegance and poise!" + }, + "victory": { + "1": "My elegance remains unbroken!" + } + }, + "twins": { + "encounter": { + "1": "Get ready, because when we team up, it's double the trouble!", + "2": "Two hearts, one strategy – let's see if you can keep up with our twin power!", + "3": "Hope you're ready for double trouble, because we're about to bring the heat!", + "3_female": null + }, + "victory": { + "1": "We may have lost this round, but our bond remains unbreakable!", + "2": "Our twin spirit won't be dimmed for long.", + "3": "We'll come back stronger as a dynamic duo!" + }, + "defeat": { + "1": "Twin power reigns supreme!", + "2": "Two hearts, one triumph!", + "3": "Double the smiles, double the victory dance!" + } + }, + "cyclist": { + "encounter": { + "1": "Get ready to eat my dust!", + "2": "Gear up, challenger! I'm about to leave you in the dust!", + "3": "Pedal to the metal, let's see if you can keep pace!" + }, + "victory": { + "1": "Spokes may be still, but determination pedals on.", + "2": "Outpaced!", + "3": "The road to victory has many twists and turns yet to explore." + } + }, + "black_belt": { + "encounter": { + "1": "I praise your courage in challenging me! For I am the one with the strongest kick!", + "2": "Oh, I see. Would you like to be cut to pieces? Or do you prefer the role of punching bag?", + "2_female": null + }, + "victory": { + "1": "Oh. The Pokémon did the fighting. My strong kick didn't help a bit.", + "2": "Hmmm… If I was going to lose anyway, I was hoping to get totally messed up in the process." + } + }, + "battle_girl": { + "encounter": { + "1": "You don't have to try to impress me. You can lose against me." + }, + "victory": { + "1": "It's hard to say good-bye, but we are running out of time…" + } + }, + "hiker": { + "encounter": { + "1": "My middle-age spread has given me as much gravitas as the mountains I hike!", + "2": "I inherited this big-boned body from my parents… I'm like a living mountain range…" + }, + "victory": { + "1": "At least I cannot lose when it comes to BMI!", + "2": "It's not enough… It's never enough. My bad cholesterol isn't high enough…" + } + }, + "ranger": { + "encounter": { + "1": "When I am surrounded by nature, most other things cease to matter.", + "2": "When I'm living without nature in my life, sometimes I'll suddenly feel an anxiety attack coming on." + }, + "victory": { + "1": "It doesn't matter to the vastness of nature whether I win or lose…", + "2": "Something like this is pretty trivial compared to the stifling feelings of city life." + }, + "defeat": { + "1": "I won the battle. But victory is nothing compared to the vastness of nature…", + "2": "I'm sure how you feel is not so bad if you compare it to my anxiety attacks…" + } + }, + "scientist": { + "encounter": { + "1": "My research will lead this world to peace and joy." + }, + "victory": { + "1": "I am a genius… I am not supposed to lose against someone like you…" + } + }, + "school_kid": { + "encounter": { + "1": "…Heehee. I'm confident in my calculations and analysis.", + "2": "I'm gaining as much experience as I can because I want to be a Gym Leader someday." + }, + "victory": { + "1": "Ohhhh… Calculation and analysis are perhaps no match for chance…", + "2": "Even difficult, trying experiences have their purpose, I suppose." + } + }, + "artist": { + "encounter": { + "1": "I used to be popular, but now I am all washed up." + }, + "victory": { + "1": "As times change, values also change. I realized that too late." + } + }, + "guitarist": { + "encounter": { + "1": "Get ready to feel the rhythm of defeat as I strum my way to victory!" + }, + "victory": { + "1": "Silenced for now, but my melody of resilience will play on." + } + }, + "worker": { + "encounter": { + "1": "It bothers me that people always misunderstand me. I'm a lot more pure than everyone thinks." + }, + "victory": { + "1": "I really don't want my skin to burn, so I want to stay in the shade while I work." + } + }, + "worker_female": { + "encounter": { + "1": "It bothers me that people always misunderstand me.\n$I'm a lot more pure than everyone thinks." + }, + "victory": { + "1": "I really don't want my skin to burn, so I want to stay in the shade while I work." + }, + "defeat": { + "1": "My body and mind aren't necessarily always in sync." + } + }, + "worker_double": { + "encounter": { + "1": "I'll show you we can break you. We've been training in the field!" + }, + "victory": { + "1": "How strange… How could this be… I shouldn't have been outmuscled." + } + }, + "hex_maniac": { + "encounter": { + "1": "I normally only ever listen to classical music, but if I lose, I think I shall try a bit of new age!", + "2": "I grow stronger with each tear I cry." + }, + "victory": { + "1": "Is this the dawning of the age of Aquarius?", + "2": "Now I can get even stronger. I grow with every grudge." + }, + "defeat": { + "1": "New age simply refers to twentieth century classical composers, right?", + "2": "Don't get hung up on sadness or frustration. You can use your grudges to motivate yourself.", + "2_female": null + } + }, + "psychic": { + "encounter": { + "1": "Hi! Focus!" + }, + "victory": { + "1": "Eeeeek!" + } + }, + "officer": { + "encounter": { + "1": "Brace yourself, because justice is about to be served!", + "2": "Ready to uphold the law and serve justice on the battlefield!" + }, + "victory": { + "1": "The weight of justice feels heavier than ever…", + "2": "The shadows of defeat linger in the precinct." + } + }, + "beauty": { + "encounter": { + "1": "My last ever battle… That's the way I'd like us to view this match…" + }, + "victory": { + "1": "It's been fun… Let's have another last battle again someday…" + } + }, + "baker": { + "encounter": { + "1": "Hope you're ready to taste defeat!", + "1_female": null + }, + "victory": { + "1": "I'll bake a comeback." + } + }, + "biker": { + "encounter": { + "1": "Time to rev up and leave you in the dust!" + }, + "victory": { + "1": "I'll tune up for the next race." + } + }, + "firebreather": { + "encounter": { + "1": "My flames shall devour you!", + "2": "My soul is on fire. I'll show you how hot it burns!", + "3": "Step right up and take a look!" + }, + "victory": { + "1": "I burned down to ashes...", + "2": "Yow! That's hot!", + "3": "Ow! I scorched the tip of my nose!" + } + }, + "sailor": { + "encounter": { + "1": "Matey, you're walking the plank if you lose!", + "2": "Come on then! My sailor's pride is at stake!", + "3": "Ahoy there! Are you seasick?", + "3_female": null + }, + "victory": { + "1": "Argh! Beaten by a kid!", + "2": "Your spirit sank me!", + "3": "I think it's me that's seasick..." + } + }, + "archer": { + "encounter": { + "1": "Before you go any further, let's see how you fare against us, Team Rocket!", + "2": "I have received reports that your skills are not insignificant. Let's see if they are true.", + "3": "I am Archer, an Admin of Team Rocket. And I do not go easy on enemies of our organization." + }, + "victory": { + "1": "What a blunder!", + "2": "With my current skills, I was not up to the task after all.", + "3": "F-forgive me, Giovanni... For me to be defeated by a mere trainer..." + } + }, + "ariana": { + "encounter": { + "1": "Hold it right there! We can't someone on the loose.\n$It's harmful to Team Rocket's pride, you see.", + "2": "I don't know or care if what I'm doing is right or wrong...\n$I just put my faith in Giovanni and do as I am told", + "3": "Your trip ends here. I'm going to take you down!" + }, + "victory": { + "1": "Tch, you really are strong. It's too bad.\n$If you were to join Team Rocket, you could become an Executive.", + "1_female": null, + "2": "I... I'm shattered...", + "3": "Aaaieeeee! This can't be happening! I fought hard, but I still lost…" + } + }, + "proton": { + "encounter": { + "1": "What do you want? If you interrupt our work, don't expect any mercy!", + "2": "What do we have here? I am often labeled as the scariest and cruelest guy in Team Rocket…\n$I strongly urge you not to interfere with our business!", + "3": "I am Proton, an Admin of Team Rocket. I am here to put an end to your meddling!" + }, + "victory": { + "1": "The fortress came down!", + "2": "You may have won this time… But all you did was make Team Rocket's wrath grow…", + "3": "I am defeated… But I will not forget this!" + } + }, + "petrel": { + "encounter": { + "1": "Muhahaha, we've been waiting for you. Me? You don't know who I am? It is me, Giovanni.\n$The majestic Giovanni himself! Wahahaha! …Huh? I don't sound anything like Giovanni?\n$I don't even look like Giovanni? How come? I've worked so hard to mimic him!", + "2": "I am Petrel, an Admin of Team Rocket. I will not allow you to interfere with our plans!", + "3": "Rocket Executive Petrel will deal with this intruder!" + }, + "victory": { + "1": "OK, OK. I'll tell you where he is.", + "2": "I… I couldn't do a thing… Giovanni, please forgive me…", + "3": "No, I can't let this affect me. I have to inform the others…" + } + }, + "tabitha": { + "encounter": { + "1": "Hehehe! So you've come all the way here! But you're too late!", + "2": "Hehehe... Got here already, did you? We underestimated you! But this is it! \n$I'm a cut above the Grunts you've seen so far. I'm not stalling for time.\n$I'm going to pulverize you!", + "3": "I'm going to give you a little taste of pain! Resign yourself to it!" + }, + "victory": { + "1": "Hehehe! You might have beaten me, but you don't stand a chance against the boss!\n$If you get lost now, you won't have to face a sound whipping!", + "2": "Hehehe... So, I lost, too...", + "3": "Ahya! How could this be? For an Admin like me to lose to some random trainer...", + "3_female": null + } + }, + "courtney": { + "encounter": { + "1": "Don't. Get. In. My. Way.", + "2": "You... ...I want to...analyze. Ahahaha", + "3": "... Well then...Deleting..." + }, + "victory": { + "1": "Hah hah... Uhn...hah hah...", + "2": "As anticipated. Unanticipated. You. Target lock...completed.\n$Commencing...experiment. You. Forever. Aha... ♪", + "3": "That's unanticipated. ...I knew it. You...are interesting! ...Haha. ♪" + } + }, + "shelly": { + "encounter": { + "1": "Ahahahaha! You're going to meddle in Team Aqua's affairs?\n$You're either absolutely fearless, simply ignorant, or both!\n$You're so cute, you're disgusting! I'll put you down", + "2": "What's this? Who's this spoiled brat?", + "3": "Cool your jets. Be patient. I'll crush you shortly.", + "3_female": null + }, + "victory": { + "1": "Ahahahaha! We got meddled with unexpectedly! We're out of options.\n$We'll have to pull out. But this isn't the last you'll see of Team Aqua!\n$We have other plans! Don't you forget it!", + "2": "Ahhh?! Did I go too easy on you?!", + "3": "Uh. Are you telling me you've upped your game even more during the fight?\n$You're a brat with a bright future… My Pokémon and I don't have any strength left to fight…\n$Go on… Go and be destroyed by Archie.", + "3_female": null + } + }, + "matt": { + "encounter": { + "1": "All right then, until the boss has time for you, I'll be your opponent!", + "2": "Hooah! Full on! I'm burning up! Well! Welll! Wellllll! Let's battle it out until we've got nothing left!", + "3": "Hoo hah! I'm gonna smash you up!" + }, + "victory": { + "1": "Muwuhahaha! That battle was fun even though I lost!", + "2": "I can feel it! I can feel it, all right! The strength coming offa you!\n$More! I still want more! But looks like we're outta time...", + "3": "Oho! That's a loss I can be proud of!", + "3_female": null + } + }, + "mars": { + "encounter": { + "1": "I'm Mars, one of Team Galactic's top Commanders.", + "2": "Team Galactic's vision for the future is unwavering. Opposition will be crushed without mercy!", + "3": "Feeling nervous? You should be!", + "3_female": null + }, + "victory": { + "1": "This can't be happening! How did I lose?!", + "2": "You have some skill, I'll give you that.", + "3": "Defeated... This was a costly mistake." + } + }, + "jupiter": { + "encounter": { + "1": "Jupiter, Commander of Team Galactic, at your service.", + "2": "Resistance is futile. Team Galactic will prevail!", + "3": "You're trembling... scared already?" + }, + "victory": { + "1": "No way... I lost?!", + "2": "Impressive, you've got guts!", + "3": "Losing like this... How embarrassing." + } + }, + "saturn": { + "encounter": { + "1": "I am Saturn, Commander of Team Galactic.", + "2": "Our mission is absolute. Any hindrance will be obliterated!", + "3": "Is that fear I see in your eyes?" + }, + "victory": { + "1": "Impossible... Defeated by you?!", + "2": "You have proven yourself a worthy adversary.", + "3": "Bestowed in defeat... This is unacceptable." + } + }, + "zinzolin": { + "encounter": { + "1": "You could become a threat to Team Plasma, so we will eliminate you here and now!", + "1_female": null, + "2": "You don't have the sense to know when to quit, it seems. It's an act of mercy on my part to bring an end to this now!", + "3": "You're an impressive Trainer to have made it this far. But it ends here.", + "3_female": null + }, + "victory": { + "1": "Ghetsis... I have failed you...", + "2": "It's bitter cold. I'm shivering. I'm suffering. Yet, we will stand victorious.", + "3": "Hmph. You're a smarter Trainer than I expected, but not smart enough.", + "3_female": null + } + }, + "rood": { + "encounter": { + "1": "You are a threat to Team Plasma. We cannot let you walk away from here and now!", + "1_female": null, + "2": "It seems you don't know when to give up. I'll make sure no one interferes with our plans!", + "3": "You are a remarkable Trainer to have made it this far. But this is where it ends.", + "3_female": null + }, + "victory": { + "1": "Ghetsis... I have failed my mission...", + "2": "The cold is piercing. I'm shivering. I'm suffering. Yet, we will stand triumphant.", + "3": "Hm. You are a talented Trainer, but unfortunately not talented enough." + } + }, + "xerosic": { + "encounter": { + "1": "Ah ha ha! It would be my pleasure. Come on, little Trainer! Let's see what you've got!", + "1_female": null, + "2": "Hmm... You're more powerful than you look. I wonder how much energy there is inside you.", + "2_female": null, + "3": "I've been waiting for you! I need to do a little research on you! Come, let us begin!" + }, + "victory": { + "1": "Ah, you're quite strong. Oh yes—very strong, indeed.", + "2": "Ding-ding-ding! You did it! To the victor go the spoils!", + "2_female": null, + "3": "Wonderful! Amazing! You have tremendous skill and bravery!" + } + }, + "bryony": { + "encounter": { + "1": "I am Bryony, and it would be my pleasure to battle you. Show me what you've got.", + "2": "Impressive... You're more powerful than you appear. Let's see the true extent of your energy.", + "2_female": null, + "3": "I've anticipated your arrival. It's time for a little test. Shall we begin?" + }, + "victory": { + "1": "You're quite strong. Oh yes—very strong, indeed.", + "2": "Ding-ding-ding! You've done well. Victory is yours.", + "3": "Wonderful! Remarkable! Your skill and bravery are commendable." + } + }, + "rocket_grunt": { + "encounter": { + "1": "Prepare for trouble!", + "2": "We're pulling a big job here! Get lost, kid!", + "2_female": null, + "3": "Hand over your Pokémon, or face the wrath of Team Rocket!", + "4": "You're about to experience the true terror of Team Rocket!", + "5": "Hey, kid! Me am a Team Rocket member kind of guy!", + "5_female": null + }, + "victory": { + "1": "Team Rocket blasting off again!", + "2": "Oh no! I dropped the Lift Key!", + "3": "I blew it!", + "4": "My associates won't stand for this!", + "5": "You say what? Team Rocket bye-bye a go-go? Broken it is says you?" + } + }, + "magma_grunt": { + "encounter": { + "1": "If you get in the way of Team Magma, don’t expect any mercy!", + "2": "You'd better not interfere with our plans! We're making the world a better place!", + "3": "You're in the way! Team Magma has no time for kids like you!", + "4": "I hope you brought marshmallows because things are about to heat up!", + "5": "We're going to use the power of a volcano! It's gonna be... explosive! Get it? Heh heh!" + }, + "victory": { + "1": "Huh? I lost?!", + "2": "I can't believe I lost! I even skipped lunch for this", + "3": "No way! You're just a kid!", + "3_female": null, + "4": "Urrrgh... I should've ducked into our hideout right away...", + "5": "You beat me... Do you think the boss will dock my pay for this?" + } + }, + "aqua_grunt": { + "encounter": { + "1": "No one who crosses Team Aqua gets any mercy, not even kids!", + "2": "Grrr... You've got some nerve meddling with Team Aqua!", + "3": "You're about to get soaked! And not just from my water Pokémon!", + "4": "We, Team Aqua, exist for the good of all!", + "5": "Prepare to be washed away by the tides of my... uh, Pokémon! Yeah, my Pokémon!" + }, + "victory": { + "1": "You're kidding me!", + "2": "Arrgh, I didn't count on being meddled with by some meddling kid!", + "3": "I lost?! Guess I'll have to swim back to the hideout now...", + "4": "Oh, man, what a disaster... The boss is going to be furious...", + "5": "You beat me... Do you think the boss will make me walk the plank for this?" + } + }, + "galactic_grunt": { + "encounter": { + "1": "Don't mess with Team Galactic!", + "2": "Witness the power of our technology and the future we envision!", + "3": "In the name of Team Galactic, I'll eliminate anyone who stands in our way!", + "4": "Get ready to lose!", + "5": "Hope you're ready for a cosmic beatdown!", + "5_female": null + }, + "victory": { + "1": "Shut down...", + "2": "This setback means nothing in the grand scheme.", + "3": "Our plans are bigger than this defeat.", + "4": "How?!", + "5": "Note to self: practice Pokémon battling, ASAP." + } + }, + "plasma_grunt": { + "encounter": { + "1": "We won't tolerate people who have different ideas!", + "2": "If I win against you, release your Pokémon!", + "3": "If you get in the way of Team Plasma, I'll take care of you!", + "4": "Team Plasma will liberate Pokémon from selfish humans like you!", + "5": "Our hairstyles are out of this world... but our battling skills? You'll find out soon enough." + }, + "victory": { + "1": "Plasmaaaaaaaaa!", + "2": "How could I lose...", + "3": "...What a weak Pokémon, I'll just have to go steal some better ones!", + "4": "Great plans are always interrupted.", + "5": "This is bad... Badbadbadbadbadbadbad! Bad for Team Plasma! Or Plasbad, for short!" + } + }, + "flare_grunt": { + "encounter": { + "1": "Your Pokémon are no match for the elegance of Team Flare.", + "2": "Hope you brought your sunglasses, because things are about to get bright!", + "2_female": null, + "3": "Team Flare will cleanse the world of imperfection!", + "4": "Prepare to face the brilliance of Team Flare!", + "5": "Fashion is most important to us!" + }, + "victory": { + "1": "The future doesn't look bright for me.", + "2": "Perhaps there's more to battling than I thought. Back to the drawing board.", + "3": "Gahh?! I lost?!", + "4": "Even in defeat, Team Flare's elegance shines through.", + "5": "You may have beaten me, but when I lose, I go out in style!" + } + }, + "aether_grunt": { + "encounter": { + "1": "I'll fight you with all I have to wipe you out!", + "2": "I don't care if you're a kid or what. I'll send you flying if you threaten us!", + "3": "I was told to turn away Trainers, whomever they might be!", + "4": "I'll show you the power of Aether Paradise!", + "5": "Now that you've learned of the darkness at the heart of Aether Paradise, we'll need you to conveniently disappear!" + }, + "victory": { + "1": "Hmph! You seem to have a lot of skill.", + "2": "What does this mean? What does this mean!", + "3": "Hey! You're so strong that there's no way I can turn you away!", + "4": "Hmm... It seems as though I may have lost.", + "5": "Here's an impression for you: Aiyee!" + } + }, + "faba": { + "encounter": { + "1": "I, Branch Chief Faba, shall show you the harshness of the real world!", + "2": "The man who is called Aether Paradise's last line of defense is to battle a mere child?", + "3": "I, Faba, am the Aether Branch Chief. The only one in the world, I'm irreplaceable." + }, + "victory": { + "1": "Aiyee!", + "2": "H-h-how can this be?! How could this child...", + "3": "This is why... This is why I can't bring myself to like children." + } + }, + "skull_grunt": { + "encounter": { + "1": "We're not bad-we're just hard!", + "2": "You want some? That's how we say hello! Nice knowing you, punks!", + "3": "We're just a bunch of guys and gals with a great interest in other people's Pokémon!", + "4": "Why you trying to act hard when we're already hard as bones out here, homie?", + "5": "Team Skull represent! We can't pay the rent! Had a lot of fun, but our youth was misspent!" + }, + "victory": { + "1": "Huh? Is it over already?", + "2": "Time for us to break out, yo! Gotta tell y'all peace out, yo!", + "3": "We don't need your wack Pokémon anyway!", + "4": "Wha-?! This kid's way too strong-no bones about it!", + "5": "So, what? I'm lower than a Pokémon?! I already got self-esteem issues, man." + } + }, + "plumeria": { + "encounter": { + "1": " ...Hmph. You don't look like anything special to me.", + "2": "It takes these dumb Grunts way too long to deal with you kids..", + "3": "Mess with anyone in Team Skull, and I'll show you how serious I can get." + }, + "victory": { + "1": "Hmmph! You're pretty strong. I'll give you that.", + "2": "Hmmph. Guess you are pretty tough. Now I understand why my Grunts waste so much time battling kids.", + "3": "Hmmph! I guess I just have to hold that loss." + } + }, + "macro_grunt": { + "encounter": { + "1": "It looks like this is the end of the line for you!", + "2": "You are a trainer aren't you? I'm afraid that doesn't give you the right to interfere in our work.", + "3": "I'm from Macro Cosmos Insurance! Do you have a life insurance policy?" + }, + "victory": { + "1": "I have little choice but to respectfully retreat.", + "2": "Having to give up my pocket money... Losing means I'm back in the red...", + "3": "Nobody can beat Macro Cosmos when it comes to our dedication to our work!" + } + }, + "oleana": { + "encounter": { + "1": "I won't let anyone interfere with Mr. Rose's plan!", + "2": "So, you got through all of the special staff that I had ordered to stop you. I would expect nothing less.", + "3": "For the chairman! I won't lose!" + }, + "victory": { + "1": "*sigh* I wasn't able to win... Oleana...you really are a hopeless woman.", + "2": "Arghhh! This is inexcusable... What was I thinking... Any trainer who's made it this far would be no pushover..", + "3": "*sigh* I am one tired Oleana..." + } + }, + "rocket_boss_giovanni_1": { + "encounter": { + "1": "So! I must say, I am impressed you got here!" + }, + "victory": { + "1": "WHAT! This cannot be!" + }, + "defeat": { + "1": "Mark my words. Not being able to measure your own strength shows that you are still a child.", + "1_female": null + } + }, + "rocket_boss_giovanni_2": { + "encounter": { + "1": "My old associates need me... Are you going to get in my way?" + }, + "victory": { + "1": "How is this possible...? The precious dream of Team Rocket has become little more than an illusion..." + }, + "defeat": { + "1": "Team Rocket will be reborn again, and I will rule the world!" + } + }, + "magma_boss_maxie_1": { + "encounter": { + "1": "I will bury you by my own hand. I hope you appreciate this honor!" + }, + "victory": { + "1": "Ugh! You are... quite capable...\nI fell behind, but only by an inch..." + }, + "defeat": { + "1": "Team Magma will prevail!" + } + }, + "magma_boss_maxie_2": { + "encounter": { + "1": "You are the final obstacle remaining between me and my goals.\n$Brace yourself for my ultimate attack! Fuhahaha!" + }, + "victory": { + "1": "This... This is not.. Ngh..." + }, + "defeat": { + "1": "And now... I will transform this planet to a land ideal for humanity." + } + }, + "aqua_boss_archie_1": { + "encounter": { + "1": "I'm the leader of Team Aqua, so I'm afraid it's the rope's end for you." + }, + "victory": { + "1": "Let's meet again somewhere. I'll be sure to remember that face." + }, + "defeat": { + "1": "Brilliant! My team won't hold back now!" + } + }, + "aqua_boss_archie_2": { + "encounter": { + "1": "I've been waiting so long for this day to come.\nThis is the true power of my team!" + }, + "victory": { + "1": "Like I figured..." + }, + "defeat": { + "1": "I'll return everything in this world to its original, pure state!!" + } + }, + "galactic_boss_cyrus_1": { + "encounter": { + "1": "You were compelled to come here by such vacuous sentimentality.\n$I will make you regret paying heed to your heart!", + "1_female": null + }, + "victory": { + "1": "Interesting. And quite curious." + }, + "defeat": { + "1": "I will create my new world..." + } + }, + "galactic_boss_cyrus_2": { + "encounter": { + "1": "So we meet again. It seems our fates have become intertwined.\n$But here and now, I will finally break that bond!" + }, + "victory": { + "1": "How? How? HOW?!" + }, + "defeat": { + "1": "Farewell." + } + }, + "plasma_boss_ghetsis_1": { + "encounter": { + "1": "I won't allow anyone to stop me! No matter who does what!" + }, + "victory": { + "1": "How can this be? I'm the creator of Team Plasma! I'm perfect!" + }, + "defeat": { + "1": "I am the perfect ruler of a perfect new world! Mwa ha ha!" + } + }, + "plasma_boss_ghetsis_2": { + "encounter": { + "1": "Come now! I want to see your face at the moment you lose all hope!" + }, + "victory": { + "1": "My calculations... No! My careful schemes! The world should be mine!" + }, + "defeat": { + "1": "Kyurem! Use Absofusion!" + } + }, + "flare_boss_lysandre_1": { + "encounter": { + "1": "Do you want to stop me? Show me in battle." + }, + "victory": { + "1": "You are here to stop me. But I ask you to wait. " + }, + "defeat": { + "1": "Pokemon...Shall no longer exist." + } + }, + "flare_boss_lysandre_2": { + "encounter": { + "1": "The future you want, or the future I want... Let us see which one is more deserving, shall we?" + }, + "victory": { + "1": "Whaugh!" + }, + "defeat": { + "1": "Fools with no vision will continue to befoul this beautiful world." + } + }, + "aether_boss_lusamine_1": { + "encounter": { + "1": "You're going to startle my sweet beast! It looks like I'll need to silence you first." + }, + "victory": { + "1": "How... how can you be so awful!" + }, + "defeat": { + "1": "Hmph..." + } + }, + "aether_boss_lusamine_2": { + "encounter": { + "1": "Why must you continue to pester me?! I am sick of you. Sick through and through!\n$Enough with this useless talk.. with Nihilego's power I will show you how wrong you were to come here!" + }, + "victory": { + "1": "Aaauuuggghhhhhhhhh!!!" + }, + "defeat": { + "1": "All that I want is my precious beast! I don't care about any of the rest of you!" + } + }, + "skull_boss_guzma_1": { + "encounter": { + "1": "The hated boss who beats you down and beats you down and never lets up...\n$Yeah. Big bad Guzma is here!" + }, + "victory": { + "1": "Tch. I'm gonna beat you down one of these days!" + }, + "defeat": { + "1": "And you came all the way out here just for that, huh?" + } + }, + "skull_boss_guzma_2": { + "encounter": { + "1": "Doesn't matter who I'm up against, I'm gonna beat them down!\n$That's what big bad Guzma is all about!" + }, + "victory": { + "1": "Guzma!!! What is wrong with you?!" + }, + "defeat": { + "1": "Y'all are stupid!" + } + }, + "macro_boss_rose_1": { + "encounter": { + "1": "I must provide limitless energy to ensure everlasting prosperity for everyone...\n$It is my purpose, my duty, my destiny!" + }, + "victory": { + "1": "You still don't understand, trainer...\n$We... No, I am going to change the course of history!" + }, + "defeat": { + "1": "You still don't understand a thing!" + } + }, + "macro_boss_rose_2": { + "encounter": { + "1": "I'm committed to solving the energy problem in the Galar region—and, of course, around the world.\n$My experience and accomplishments that made Macro Cosmos a success are proof my methods work.\n$I don't intend to change my mind, even if I lose." + }, + "victory": { + "1": "I'd forgotten how great Pokémon battles are! It's been so long since I battled...\n$That sure was satisfying, I accept defeat for this battle." + }, + "defeat": { + "1": "I suppose it must seem that I am doing something terrible. I don't expect you to understand.\n$But I must provide the Galar region with limitless energy to ensure everlasting prosperity." + } + }, + "brock": { + "encounter": { + "1": "My expertise on Rock-type Pokémon will take you down! Come on!", + "2": "My rock-hard willpower will overwhelm you!", + "3": "Allow me to show you the true strength of my Pokémon!" + }, + "victory": { + "1": "Your Pokémon's strength have overcome my rock-hard defenses!", + "2": "The world is huge! I'm glad to have had a chance to battle you.", + "3": "Perhaps I should go back to pursuing my dream as a Pokémon Breeder…" + }, + "defeat": { + "1": "The best offense is a good defense!\nThat's my way of doing things!", + "2": "Come study rocks with me next time to better learn how to fight them!", + "3": "Hah, all my traveling around the regions is paying off!" + } + }, + "misty": { + "encounter": { + "1": "My policy is an all out offensive with Water-type Pokémon!", + "1_female": null, + "2": "Hiya, I'll show you the strength of my aquatic Pokémon!", + "3": "My dream was to go on a journey and battle powerful trainers…\nWill you be a sufficient challenge?" + }, + "victory": { + "1": "You really are strong… I'll admit that you are skilled…", + "2": "Grrr… You know you just got lucky, right?!", + "3": "Wow, you're too much! I can't believe you beat me!" + }, + "defeat": { + "1": "Was the mighty Misty too much for you?", + "2": "I hope you saw my Pokémon's elegant swimming techniques!", + "3": "Your Pokémon were no match for my pride and joys!" + } + }, + "lt_surge": { + "encounter": { + "1": "My Electric Pokémon saved me during the war! I'll show you how!", + "1_female": null, + "2": "Ten-hut! I'll shock you into surrender!", + "3": "I'll zap you just like I do to all my enemies in battle!" + }, + "victory": { + "1": "Whoa! Your team's the real deal, kid!", + "2": "Aaargh, you're strong! Even my electric tricks lost against you.", + "2_female": null, + "3": "That was an absolutely shocking loss!" + }, + "defeat": { + "1": "Oh yeah! When it comes to Electric-type Pokémon, I'm number one in the world!", + "2": "Hahaha! That was an electrifying battle, kid!", + "3": "A Pokémon battle is war, and I have showed you first-hand combat!" + } + }, + "erika": { + "encounter": { + "1": "Ah, the weather is lovely here…\nOh, a battle? Very well then.", + "2": "My Pokémon battling skills rival that of my flower arranging skills.", + "3": "Oh, I hope the pleasant aroma of my Pokémon doesn't put me to sleep again…", + "4": "Seeing flowers in a garden is so soothing." + }, + "victory": { + "1": "Oh! I concede defeat.", + "2": "That match was most delightful.", + "3": "Ah, it appears it is my loss…", + "4": "Oh, my goodness." + }, + "defeat": { + "1": "I was afraid I would doze off…", + "2": "Oh my, it seems my Grass Pokémon overwhelmed you.", + "2_female": null, + "3": "That battle was such a soothing experience.", + "4": "Oh… Is that all?" + } + }, + "janine": { + "encounter": { + "1": "I am mastering the art of poisonous attacks.\nI shall spar with you today!", + "2": "Father trusts that I can hold my own.\nI will prove him right!", + "3": "My ninja techniques are only second to my Father's!\nCan you keep up?" + }, + "victory": { + "1": "Even now, I still need training… I understand.", + "2": "Your battle technique has outmatched mine.", + "3": "I'm going to really apply myself and improve my skills." + }, + "defeat": { + "1": "Fufufu… the poison has sapped all your strength to battle.", + "2": "Ha! You didn't stand a chance against my superior ninja skills!", + "3": "Father's faith in me has proven to not be misplaced." + } + }, + "sabrina": { + "encounter": { + "1": "Through my psychic ability, I had a vision of your arrival!", + "2": "I dislike fighting, but if you wish, I will show you my powers!", + "3": "I can sense great ambition in you. I shall see if it not unfounded." + }, + "victory": { + "1": "Your power… It far exceeds what I foresaw…", + "2": "I failed to accurately predict your power.", + "3": "Even with my immense psychic powers, I cannot sense another as strong as you." + }, + "defeat": { + "1": "This victory… It is exactly as I foresaw in my visions!", + "2": "Perhaps it was another I sensed a great desire in…", + "3": "Hone your abilities before recklessly charging into battle.\nYou never know what the future may hold if you do…" + } + }, + "blaine": { + "encounter": { + "1": "Hah! Hope you brought a Burn Heal!", + "2": "My fiery Pokémon will incinerate all challengers!", + "3": "Get ready to play with fire!" + }, + "victory": { + "1": "I have burned down to nothing! Not even ashes remain!", + "2": "Didn't I stoke the flames high enough?", + "3": "I'm all burned out… But this makes my motivation to improve burn even hotter!" + }, + "defeat": { + "1": "My raging inferno cannot be quelled!", + "2": "My Pokémon have been powered up with the heat from this victory!", + "3": "Hah! My passion burns brighter than yours!" + } + }, + "giovanni": { + "encounter": { + "1": "I, the leader of Team Rocket, will make you feel a world of pain!", + "2": "My training here will be vital before I am to face my old associates again.", + "3": "I do not think you are prepared for the level of failure you are about to experience!", + "3_female": null + }, + "victory": { + "1": "WHAT! Me, lose?! There is nothing I wish to say to you!", + "2": "Hmph… You could never understand what I hope to achieve.", + "3": "This defeat is merely delaying the inevitable.\nI will rise Team Rocket from the ashes in due time." + }, + "defeat": { + "1": "Not being able to measure your own strength shows that you are still but a child.", + "2": "Do not try to interfere with me again.", + "3": "I hope you understand how foolish challenging me was." + } + }, + "roxanne": { + "encounter": { + "1": "Would you kindly demonstrate how you battle?", + "2": "You can learn many things by battling many trainers.", + "3": "Oh, you caught me strategizing.\nWould you like to battle?" + }, + "victory": { + "1": "Oh, I appear to have lost.\nI understand.", + "2": "It seems that I still have so much more to learn when it comes to battle.", + "3": "I'll take what I learned here today to heart." + }, + "defeat": { + "1": "I have learned many things from our battle.\nI hope you have too.", + "2": "I look forward to battling you again.\nI hope you'll use what you've learned here.", + "3": "I won due to everything I have learned." + } + }, + "brawly": { + "encounter": { + "1": "Oh man, a challenger!\nLet's see what you can do!", + "1_female": null, + "2": "You seem like a big splash.\nLet's battle!", + "3": "Time to create a storm!\nLet's go!" + }, + "victory": { + "1": "Oh woah, you've washed me out!", + "2": "You surfed my wave and crashed me down!", + "3": "I feel like I'm lost in Granite Cave!" + }, + "defeat": { + "1": "Haha, I surfed the big wave!\nChallenge me again sometime.", + "2": "Surf with me again some time!", + "3": "Just like the tides come in and out, I hope you return to challenge me again." + } + }, + "wattson": { + "encounter": { + "1": "Time to get shocked!\nWahahahaha!", + "2": "I'll make sparks fly!\nWahahahaha!", + "3": "I hope you brought Paralyz Heal!\nWahahahaha!" + }, + "victory": { + "1": "Seems like I'm out of charge!\nWahahahaha!", + "2": "You've completely grounded me!\nWahahahaha!", + "3": "Thanks for the thrill!\nWahahahaha!" + }, + "defeat": { + "1": "Recharge your batteries and challenge me again sometime!\nWahahahaha!", + "1_female": null, + "2": "I hope you found our battle electrifying!\nWahahahaha!", + "3": "Aren't you shocked I won?\nWahahahaha!" + } + }, + "flannery": { + "encounter": { + "1": "Nice to meet you! Wait, no…\nI will crush you!", + "2": "I've only been a leader for a little while, but I'll smoke you!", + "3": "It's time to demonstrate the moves my grandfather has taught me! Let's battle!" + }, + "victory": { + "1": "You remind me of my grandfather…\nNo wonder I lost.", + "2": "Am I trying too hard?\nI should relax, can't get too heated.", + "3": "Losing isn't going to smother me out.\nTime to reignite training!" + }, + "defeat": { + "1": "I hope I've made my grandfather proud…\nLet's battle again some time.", + "2": "I…I can't believe I won!\nDoing things my way worked!", + "3": "Let's exchange burning hot moves again soon!" + } + }, + "norman": { + "encounter": { + "1": "I'm surprised you managed to get here.\nLet's battle.", + "2": "I'll do everything in my power as a Gym Leader to win.\nLet's go!", + "3": "You better give this your all.\nIt's time to battle!" + }, + "victory": { + "1": "I lost to you…?\nRules are rules, though.", + "2": "Was moving from Olivine a mistake…?", + "3": "I can't believe it.\nThat was a great match." + }, + "defeat": { + "1": "We both tried our best.\nI hope we can battle again soon.", + "2": "You should try challenging my kid instead.\nYou might learn something!", + "3": "Thank you for the excellent battle.\nBetter luck next time." + } + }, + "winona": { + "encounter": { + "1": "I've been soaring the skies looking for prey…\nAnd you're my target!", + "2": "No matter how our battle is, my Flying Pokémon and I will triumph with grace. Let's battle!", + "3": "I hope you aren't scared of heights.\nLet's ascend!" + }, + "victory": { + "1": "You're the first Trainer I've seen with more grace than I.\nExcellently played.", + "1_female": null, + "2": "Oh, my Flying Pokémon have plummeted!\nVery well.", + "3": "Though I may have fallen, my Pokémon will continue to fly!" + }, + "defeat": { + "1": "My Flying Pokémon and I will forever dance elegantly!", + "2": "I hope you enjoyed our show.\nOur graceful dance is finished.", + "3": "Won't you come see our elegant choreography again?" + } + }, + "tate": { + "encounter": { + "1": "Hehehe…\nWere you surprised to see me without my sister?", + "1_female": null, + "2": "I can see what you're thinking…\nYou want to battle!", + "3": "How can you defeat someone…\nWho knows your every move?" + }, + "victory": { + "1": "It can't be helped…\nI miss Liza…", + "2": "Your bond with your Pokémon was stronger than mine.", + "3": "If I were with Liza, we would have won.\nWe can finish each other's thoughts!" + }, + "defeat": { + "1": "My Pokémon and I are superior!", + "2": "If you can't even defeat me, you'll never be able to defeat Liza either.", + "3": "It's all thanks to my strict training with Liza.\nI can make myself one with Pokémon." + } + }, + "liza": { + "encounter": { + "1": "Fufufu…\nWere you surprised to see me without my brother?", + "1_female": null, + "2": "I can determine what you desire…\nYou want to battle, don't you?", + "3": "How can you defeat someone…\nWho's one with their Pokémon?" + }, + "victory": { + "1": "It can't be helped…\nI miss Tate…", + "2": "Your bond with your Pokémon…\nIt's stronger than mine.", + "3": "If I were with Tate, we would have won.\nWe can finish each other's sentences!" + }, + "defeat": { + "1": "My Pokémon and I are victorious.", + "2": "If you can't even defeat me, you'll never be able to defeat Tate either.", + "3": "It's all thanks to my strict training with Tate.\nI can synchronize myself with my Pokémon." + } + }, + "juan": { + "encounter": { + "1": "Now's not the time to act coy.\nLet's battle!", + "2": "Ahahaha, You'll be witness to my artistry with Water Pokémon!", + "3": "A typhoon approaches!\nWill you be able to test me?", + "4": "Please, you shall bear witness to our artistry.\nA grand illusion of water sculpted by my Pokémon and myself!" + }, + "victory": { + "1": "You may be a genius who can take on Wallace!", + "2": "I focused on elegance while you trained.\nIt's only natural that you defeated me.", + "3": "Ahahaha!\nVery well, You have won this time.", + "4": "From you, I sense the brilliant shine of skill that will overcome all." + }, + "defeat": { + "1": "My Pokémon and I have sculpted an illusion of Water and come out victorious.", + "2": "Ahahaha, I have won, and you have lost.", + "3": "Shall I loan you my outfit? It may help you battle!\nAhahaha, I jest!", + "4": "I'm the winner! Which is to say, you lost." + } + }, + "crasher_wake": { + "encounter": { + "1": "Crash! Crash! Watch out!\nCrasher Wake…is…heeere!", + "2": "Crash! Crash! Crasher Wake!", + "3": "I'm the tidal wave of power to wash you away!" + }, + "victory": { + "1": "That puts a grin on my face!\nGuhahaha! That was a blast!", + "2": "Hunwah! It's gone and ended!\nHow will I say this…\nI want more! I wanted to battle a lot more!", + "3": "WHAAAAT!?" + }, + "defeat": { + "1": "Yeeeeah! That's right!", + "2": "I won, but I want more! I wanted to battle a lot more!", + "3": "So long!" + } + }, + "falkner": { + "encounter": { + "1": "I'll show you the real power of the magnificent bird Pokémon!", + "2": "Winds, stay with me!", + "3": "Dad! I hope you're watching me battle from above!" + }, + "victory": { + "1": "I understand… I'll bow out gracefully.", + "2": "A defeat is a defeat. You are strong indeed.", + "3": "…Shoot! Yeah, I lost." + }, + "defeat": { + "1": "Dad! I won with your cherished bird Pokémon…", + "2": "Bird Pokémon are the best after all!", + "3": "Feels like I'm catching up to my dad!" + } + }, + "nessa": { + "encounter": { + "1": "No matter what kind of plan your refined mind may be plotting, my partner and I will be sure to sink it.", + "1_female": null, + "2": "I'm not here to chat. I'm here to win!", + "3": "This is a little gift from my Pokémon… I hope you can take it!", + "3_female": null + }, + "victory": { + "1": "You and your Pokémon are just too much…", + "2": "How…? How can this be?!", + "3": "I was totally washed away!" + }, + "defeat": { + "1": "The raging wave crashes again!", + "2": "Time to ride the wave of victory!", + "3": "Ehehe!" + } + }, + "melony": { + "encounter": { + "1": "I'm not going to hold back!", + "2": "All righty, I suppose we should get started.", + "3": "I'll freeze you solid!" + }, + "victory": { + "1": "You… You're pretty good, huh?", + "1_female": null, + "2": "If you find Gordie around, be sure to give him a right trashing, would you?", + "3": "I think you took breaking the ice a little too literally…" + }, + "defeat": { + "1": "Now do you see how severe battles can be?", + "2": "Hee! Looks like I went and won again!", + "3": "Are you holding back?" + } + }, + "marlon": { + "encounter": { + "1": "You look strong! Shoots! Let's start!", + "2": "I'm strong like the ocean's wide. You're gonna get swept away, fo' sho'.", + "2_female": null, + "3": "Oh ho, so I'm facing you! That's off the wall." + }, + "victory": { + "1": "You totally rocked that! You're raising some wicked Pokémon. You got this Trainer thing down!", + "1_female": null, + "2": "You don't just look strong, you're strong fo' reals! Eh, I was swept away, too!", + "3": "You're strong as a gnarly wave!" + }, + "defeat": { + "1": "You're tough, but it's not enough to sway the sea, 'K!", + "2": "Hee! Looks like I went and won again!", + "3": "Sweet, sweet victory!" + } + }, + "shauntal": { + "encounter": { + "1": "Excuse me. You're a challenger, right?\nI'm the Elite Four's Ghost-type Pokémon user, Shauntal, and I shall be your opponent.", + "1_female": null, + "2": "I absolutely love writing about Trainers who come here and the Pokémon they train.\nCould I use you and your Pokémon as a subject?", + "3": "Every person who works with Pokémon has a story to tell.\nWhat story is about to be told?" + }, + "victory": { + "1": "Wow. I'm dumbstruck!", + "2": "S-sorry! First, I must apologize to my Pokémon…\n\nI'm really sorry you had a bad experience because of me!", + "3": "Even in light of that, I'm still one of the Elite Four!" + }, + "defeat": { + "1": "Eheh.", + "2": "That gave me excellent material for my next novel!", + "3": "And so, another tale ends…" + } + }, + "marshal": { + "encounter": { + "1": "My mentor, Alder, sees your potential as a Trainer and is taking an interest in you.\nIt is my intention to test you--to take you to the limits of your strength. Kiai!", + "1_female": null, + "2": "Victory, decisive victory, is my intention! Challenger, here I come!", + "3": "In myself, I seek to develop the strength of a fighter and shatter any weakness in myself!\nPrevailing with the force of my convictions!" + }, + "victory": { + "1": "Whew! Well done!", + "2": "As your battles continue, aim for even greater heights!", + "3": "The strength shown by you and your Pokémon has deeply impressed me…" + }, + "defeat": { + "1": "Hmm.", + "2": "That was good battle.", + "3": "Haaah! Haaah! Haiyaaaah!" + } + }, + "cheren": { + "encounter": { + "1": "You remind me of an old friend. That makes me excited about this Pokémon battle!", + "2": "Pokémon battles have no meaning if you don't think why you battle.\n$Or better said, it makes battling together with Pokémon meaningless.", + "3": "My name's Cheren! I'm a Gym Leader and a teacher! Pleasure to meet you.", + "3_female": null + }, + "victory": { + "1": "Thank you! I saw what was missing in me.", + "2": "Thank you! I feel like I saw a little of the way toward my ideals.", + "3": "Hmm… This is problematic." + }, + "defeat": { + "1": "As a Gym Leader, I aim to be a wall for you to overcome.", + "2": "All right!", + "3": "I made it where I am because Pokémon were by my side.\nPerhaps we need to think about why Pokémon help us not in terms of Pokémon and Trainers but as a relationship between living beings." + } + }, + "chili": { + "encounter": { + "1": "Yeeeeooow! Time to play with FIRE!! I'm the strongest of us brothers!", + "1_female": null, + "2": "Ta-da! The Fire-type scorcher Chili--that's me--will be your opponent!", + "2_female": null, + "3": "I'm going to show you what me and my blazing Fire types can do!", + "3_female": null + }, + "victory": { + "1": "You got me. I am… burned… out…", + "1_female": null, + "2": "Whoa ho! You're on fire!", + "2_female": null, + "3": "Augh! You got me!" + }, + "defeat": { + "1": "I'm on fire! Play with me, and you'll get burned!", + "1_female": null, + "2": "When you play with fire, you get burned!", + "3": "I mean, c'mon, your opponent was me! You didn't have a chance!", + "3_female": null + } + }, + "cilan": { + "encounter": { + "1": "Nothing personal... No hard feelings... Me and my Grass-type Pokémon will...\n$Um... We're gonna battle come what may.", + "1_female": null, + "2": "So, um, if you're OK with me, I'll, um, put everything I've got into being, er, you know, your opponent.", + "2_female": null, + "3": "OK… So, um, I'm Cilan, I like Grass-type Pokémon.", + "3_female": null + }, + "victory": { + "1": "Er… Is it over now?", + "1_female": null, + "2": "…What a surprise. You are very strong, aren't you? \n$I guess my brothers wouldn't have been able to defeat you either…", + "2_female": null, + "3": "…Huh. Looks like my timing was, um, off?" + }, + "defeat": { + "1": "Huh? Did I win?", + "1_female": null, + "2": "I guess… \n$I suppose I won, because I've been competing with my brothers Chili and Cress, and we all were able to get tougher.", + "2_female": null, + "3": "It…it was quite a thrilling experience…", + "3_female": null + } + }, + "roark": { + "encounter": { + "1": "I need to see your potential as a Trainer. And, I'll need to see the toughness of the Pokémon that battle with you!", + "1_female": null, + "2": "Here goes! These are my rocking Pokémon, my pride and joy!", + "3": "Rock-type Pokémon are simply the best!", + "4": "I need to see your potential as a Trainer. And, I'll need to see the toughness of the Pokémon that battle with you!", + "4_female": null + }, + "victory": { + "1": "W-what? That can't be! My buffed-up Pokémon!", + "2": "…We lost control there. Next time I'd like to challenge you to a Fossil-digging race underground.", + "2_female": null, + "3": "With skill like yours, it's natural for you to win.", + "4": "Wh-what?! It can't be! Even that wasn't enough?", + "5": "I blew it." + }, + "defeat": { + "1": "See? I'm proud of my rocking battle style!", + "2": "Thanks! The battle gave me confidence that I may be able to beat my dad!", + "3": "I feel like I just smashed through a really stubborn boulder!" + } + }, + "morty": { + "encounter": { + "1": "With a little more, I could see a future in which I meet the legendary Pokémon.\n$You're going to help me reach that level!", + "2": "It's said that a rainbow-hued Pokémon will come down to appear before a truly powerful Trainer. \n$I believed that tale, so I have secretly trained here all my life. As a result, I can now see what others cannot. \n$I see a shadow of the person who will make the Pokémon appear. \n$I believe that person is me! You're going to help me reach that level!", + "3": "Whether you choose to believe or not, mystic power does exist.", + "4": "You can bear witness to the fruits of my training.", + "5": "You must make your soul one with that of Pokémon. Can you do this?", + "6": "Say, do you want to be part of my training?" + }, + "victory": { + "1": "I'm not good enough yet…", + "2": "I see… Your journey has taken you to far-away places and you have witnessed much more than I.\n$I envy you for that…", + "2_female": null, + "3": "How is this possible…", + "4": "I don't think our potentials are so different.\n$But you seem to have something more than that… So be it.", + "5": "Guess I need more training.", + "6": "That's a shame." + }, + "defeat": { + "1": "I moved… one step ahead again.", + "2": "Fufufu…", + "3": "Wh-what?! It can't be! Even that wasn't enough?", + "4": "I feel like I just smashed through a really stubborn boulder!", + "5": "Ahahahah!", + "6": "I knew I would win!" + } + }, + "crispin": { + "encounter": { + "1": "I wanna win, so that's exactly what I'll do!", + "2": "I battle because I wanna battle! And you know what? That's how it should be!" + }, + "victory": { + "1": "I wanted to win…but I lost!", + "2": "I lost…'cause I couldn't win!" + }, + "defeat": { + "1": "Hey, wait a sec. Did I just win? I think I just won! Talk about satisfying!", + "2": "Wooo! That was amazing!" + } + }, + "amarys": { + "encounter": { + "1": "I want to be the one to help a certain person. That being the case, I cannot afford to lose.\n$… Our battle starts now." + }, + "victory": { + "1": "I am… not enough, I see." + }, + "defeat": { + "1": "Victory belongs to me. Well fought." + } + }, + "lacey": { + "encounter": { + "1": "I'll be facing you with my usual party as a member of the Elite Four." + }, + "victory": { + "1": "That was a great battle!" + }, + "defeat": { + "1": "Let's give your Pokémon a nice round of applause for their efforts!" + } + }, + "drayton": { + "encounter": { + "1": "Man, I love chairs. Don't you love chairs? What lifesavers. \n$I don't get why everyone doesn't just sit all the time. Standing up's tiring work!" + }, + "victory": { + "1": "Guess I should've expected that!" + }, + "defeat": { + "1": "Heh heh! Don't mind me, just scooping up a W over here. I get it if you're upset, but don't go full Kieran on me, OK?", + "1_female": null + } + }, + "ramos": { + "encounter": { + "1": "Did yeh enjoy the garden playground I made with all these sturdy plants o' mine?\n$Their strength is a sign o' my strength as a gardener and a Gym Leader! Yeh sure yer up to facing all that?", + "1_female": null + }, + "victory": { + "1": "Yeh believe in yer Pokémon… And they believe in yeh, too… It was a fine battle, sprout." + }, + "defeat": { + "1": "Hohoho… Indeed. Frail little blades o' grass'll break through even concrete." + } + }, + "viola": { + "encounter": { + "1": "Whether it's the tears of frustration that follow a loss or the blossoming of joy that comes with victory…\n$They're both great subjects for my camera! Fantastic! This'll be just fantastic! \n$Now come at me!", + "2": "My lens is always focused on victory--I won't let anything ruin this shot!" + }, + "victory": { + "1": "You and your Pokémon have shown me a whole new depth of field! Fantastic! Just fantastic!", + "2": "The world you see through a lens, and the world you see with a Pokémon by your side…\n$The same world can look entirely different depending on your view." + }, + "defeat": { + "1": "The photo from the moment of my victory will be a real winner, all right!", + "2": "Yes! I took some great photos!" + } + }, + "candice": { + "encounter": { + "1": "You want to challenge Candice? Sure thing! I was waiting for someone tough! \n$But I should tell you, I'm tough because I know how to focus.", + "2": "Pokémon, fashion, romance… It's all about focus! \n$I'll show you just what I mean. Get ready to lose!" + }, + "victory": { + "1": "I must say, I'm warmed up to you! I might even admire you a little.", + "2": "Wow! You're great! You've earned my respect! \n$I think your focus and will bowled us over totally. ", + "2_female": null + }, + "defeat": { + "1": "I sensed your will to win, but I don't lose!", + "2": "See? Candice's focus! My Pokémon's focus is great, too!" + } + }, + "gardenia": { + "encounter": { + "1": "You have a winning aura about you. So, anyway, this will be fun. Let's have our battle!" + }, + "victory": { + "1": "Amazing! You're very good, aren't you?", + "1_female": null + }, + "defeat": { + "1": "Yes! My Pokémon and I are perfectly good!" + } + }, + "aaron": { + "encounter": { + "1": "Ok! Let me take you on!" + }, + "victory": { + "1": "Battling is a deep and complex affair…" + }, + "defeat": { + "1": "Victory over an Elite Four member doesn't come easily." + } + }, + "cress": { + "encounter": { + "1": "That is correct! It shall be I and my esteemed Water types that you must face in battle!" + }, + "victory": { + "1": "Lose? Me? I don't believe this." + }, + "defeat": { + "1": "This is the appropriate result when I'm your opponent." + } + }, + "allister": { + "encounter": { + "1": "'M Allister.\nH-here… I go…" + }, + "victory": { + "1": "I nearly lost my mask from the shock… That was…\n$Wow. I can see your skill for what it is." + }, + "defeat": { + "1": "Th-that was ace!" + } + }, + "clay": { + "encounter": { + "1": "Harrumph! Kept me waitin', didn't ya, kid? All right, time to see what ya can do!", + "1_female": null + }, + "victory": { + "1": "Man oh man… It feels good to go all out and still be defeated!" + }, + "defeat": { + "1": "What's important is how ya react to losin'. \n$That's why folks who use losin' as fuel to get better are tough." + } + }, + "kofu": { + "encounter": { + "1": "I'mma serve you a full course o' Water-type Pokémon! Don't try to eat 'em, though!" + }, + "victory": { + "1": "Vaultin' Veluza! Yer a lively one, aren't ya! A little TOO lively, if I do say so myself!", + "1_female": null + }, + "defeat": { + "1": "You come back to see me again now, ya hear?" + } + }, + "tulip": { + "encounter": { + "1": "Allow me to put my skills to use to make your cute little Pokémon even more beautiful!" + }, + "victory": { + "1": "Your strength has a magic to it that cannot be washed away." + }, + "defeat": { + "1": "You know, in my line of work, people who lack talent in one area or the other often fade away quickly—never to be heard of again." + } + }, + "sidney": { + "encounter": { + "1": "I like that look you're giving me. I guess you'll give me a good match.\n$That's good! Looking real good! All right!\n$You and me, let's enjoy a battle that can only be staged here!" + }, + "victory": { + "1": "Well, how do you like that? I lost! Eh, it was fun, so it doesn't matter." + }, + "defeat": { + "1": "No hard feelings, alright?" + } + }, + "phoebe": { + "encounter": { + "1": "While I trained, I gained the ability to commune with Ghost-type Pokémon. \n$Yes, the bond I developed with Pokémon is extremely tight. \n$So, come on, just try and see if you can even inflict damage on my Pokémon!" + }, + "victory": { + "1": "Oh, darn. I've gone and lost." + }, + "defeat": { + "1": "I look forward to battling you again sometime!" + } + }, + "glacia": { + "encounter": { + "1": "All I have seen are challenges by weak Trainers and their Pokémon. \n$What about you? It would please me to no end if I could go all out against you!" + }, + "victory": { + "1": "You and your Pokémon… How hot your spirits burn!\n$The all-consuming heat overwhelms. \n$It's no surprise that my icy skills failed to harm you." + }, + "defeat": { + "1": "A fiercely passionate battle, indeed." + } + }, + "drake": { + "encounter": { + "1": "For us to battle with Pokémon as partners, do you know what it takes? Do you know what is needed? \n$If you don't, then you will never prevail over me!" + }, + "victory": { + "1": "Superb, it should be said." + }, + "defeat": { + "1": "I gave my all for that battle!" + } + }, + "wallace": { + "encounter": { + "1": "There's something about you… A difference in your demeanor. \n$I think I sense that in you. Now, show me. Show me the power you wield with your Pokémon. \n$And I, in turn, shall present you with a performance of illusions in water by me and my Pokémon!" + }, + "victory": { + "1": "Bravo. I realize now your authenticity and magnificence as a Pokémon Trainer. \n$I find much joy in having met you and your Pokémon. You have proven yourself worthy.", + "1_female": null + }, + "defeat": { + "1": "A grand illusion!" + } + }, + "lorelei": { + "encounter": { + "1": "No one can best me when it comes to icy Pokémon! Freezing moves are powerful!\n$Your Pokémon will be at my mercy when they are frozen solid! Hahaha! Are you ready?", + "1_female": null + }, + "victory": { + "1": "How dare you!" + }, + "defeat": { + "1": "There's nothing you can do once you're frozen.", + "1_female": null + } + }, + "will": { + "encounter": { + "1": "I have trained all around the world, making my psychic Pokémon powerful.\n$I can only keep getting better! Losing is not an option!" + }, + "victory": { + "1": "I… I can't… believe it…" + }, + "defeat": { + "1": "That was close. I wonder what it is that you lack." + } + }, + "malva": { + "encounter": { + "1": "I feel like my heart might just burst into flames. \n$I'm burning up with my hatred for you, runt!", + "1_female": null + }, + "victory": { + "1": "What news… So a new challenger has defeated Malva!", + "1_female": null + }, + "defeat": { + "1": "I am delighted! Yes, delighted that I could squash you beneath my heel." + } + }, + "hala": { + "encounter": { + "1": "Old Hala is here to make you holler!" + }, + "victory": { + "1": "I could feel the power you gained on your journey." + }, + "defeat": { + "1": "Haha! What a delightful battle!" + } + }, + "molayne": { + "encounter": { + "1": "I gave the captain position to my cousin Sophocles, but I'm confident in my ability. \n$My strength is like that of a supernova!" + }, + "victory": { + "1": "I certainly found an interesting Trainer to face!", + "1_female": null + }, + "defeat": { + "1": "Ahaha. What an interesting battle." + } + }, + "rika": { + "encounter": { + "1": "I'd say I'll go easy on you, but… I'd be lying! Think fast!" + }, + "victory": { + "1": "Not bad, kiddo.", + "1_female": null + }, + "defeat": { + "1": "Nahahaha! You really are something else, kiddo!", + "1_female": null + } + }, + "bruno": { + "encounter": { + "1": "We will grind you down with our superior power! Hoo hah!" + }, + "victory": { + "1": "Why? How could I lose?" + }, + "defeat": { + "1": "You can challenge me all you like, but the results will never change!" + } + }, + "bugsy": { + "encounter": { + "1": "I'm Bugsy! I never lose when it comes to bug Pokémon!" + }, + "victory": { + "1": "Whoa, amazing! You're an expert on Pokémon!\nMy research isn't complete yet. OK, you win.", + "1_female": null + }, + "defeat": { + "1": "Thanks! Thanks to our battle, I was also able to make progress in my research!" + } + }, + "koga": { + "encounter": { + "1": "Fwahahahaha! Pokémon are not merely about brute force--you shall see soon enough!" + }, + "victory": { + "1": "Ah! You've proven your worth!" + }, + "defeat": { + "1": "Have you learned to fear the techniques of the ninja?" + } + }, + "bertha": { + "encounter": { + "1": "Well, would you show this old lady how much you've learned?" + }, + "victory": { + "1": "Well! Dear child, I must say, that was most impressive. \n$Your Pokémon believed in you and did their best to earn you the win. \n$Even though I've lost, I find myself with this silly grin!" + }, + "defeat": { + "1": "Hahahahah! Looks like this old lady won!" + } + }, + "lenora": { + "encounter": { + "1": "Well then, challenger, I'm going to research how you battle with the Pokémon you've so lovingly raised!", + "1_female": null + }, + "victory": { + "1": "My theory about you was correct. You're more than just talented… You're motivated! I salute you!", + "1_female": null + }, + "defeat": { + "1": "Ah ha ha! If you lose, make sure to analyze why, and use that knowledge in your next battle!" + } + }, + "siebold": { + "encounter": { + "1": "As long as I am alive, I shall strive onward to seek the ultimate cuisine... and the strongest opponents in battle!" + }, + "victory": { + "1": "I shall store my memory of you and your Pokémon forever away within my heart." + }, + "defeat": { + "1": "Our Pokémon battle was like food for my soul. It shall keep me going. \n$That is how I will pay my respects to you for giving your all in battle!" + } + }, + "roxie": { + "encounter": { + "1": "Get ready! I'm gonna knock some sense outta ya!" + }, + "victory": { + "1": "Wild! Your reason's already more toxic than mine!" + }, + "defeat": { + "1": "Hey, c'mon! Get serious! You gotta put more out there!", + "1_female": null + } + }, + "olivia": { + "encounter": { + "1": "No introduction needed here. Time to battle me, Olivia!" + }, + "victory": { + "1": "Really lovely… Both you and your Pokémon…" + }, + "defeat": { + "1": "Mmm-hmm." + } + }, + "poppy": { + "encounter": { + "1": "Oooh! Do you wanna have a Pokémon battle with me?" + }, + "victory": { + "1": "Uagh?! Mmmuuuggghhh…" + }, + "defeat": { + "1": "Yaaay! I did it! I de-feet-ed you! You can come for… For… An avenge match? \n$Come for an avenge match anytime you want!" + } + }, + "agatha": { + "encounter": { + "1": "Pokémon are for battling! I'll show you how a real Trainer battles!" + }, + "victory": { + "1": "Oh my! You're something special, child!" + }, + "defeat": { + "1": "Bahaha. That's how a proper battle's done!" + } + }, + "flint": { + "encounter": { + "1": "Hope you're warmed up, cause here comes the Big Bang!", + "1_female": null + }, + "victory": { + "1": "Incredible! Your moves are so hot, they make mine look lukewarm!" + }, + "defeat": { + "1": "Huh? Is that it? I think you need a bit more passion." + } + }, + "grimsley": { + "encounter": { + "1": "The winner takes everything, and there's nothing left for the loser." + }, + "victory": { + "1": "When one loses, they lose everything… The next thing I'll look for will be victory, too!" + }, + "defeat": { + "1": "If somebody wins, the person who fought against that person will lose." + } + }, + "caitlin": { + "encounter": { + "1": "It's me who appeared when the flower opened up. You who have been waiting…\n$You look like a Pokémon Trainer with refined strength and deepened kindness. \n$What I look for in my opponent is superb strength… \n$Please unleash your power to the fullest!", + "1_female": null + }, + "victory": { + "1": "My Pokémon and I learned so much! I offer you my thanks." + }, + "defeat": { + "1": "I aspire to claim victory with elegance and grace." + } + }, + "diantha": { + "encounter": { + "1": "Battling against you and your Pokémon, all of you brimming with hope for the future… \n$Honestly, it just fills me up with energy I need to keep facing each new day! It does!" + }, + "victory": { + "1": "Witnessing the noble spirits of you and your Pokémon in battle has really touched my heart…" + }, + "defeat": { + "1": "Oh, fantastic! What did you think? My team was pretty cool, right?" + } + }, + "wikstrom": { + "encounter": { + "1": "Well met, young challenger! Verily am I the famed blade of hardened steel, Duke Wikstrom! \n$Let the battle begin! En garde!", + "1_female": null + }, + "victory": { + "1": "Glorious! The trust that you share with your honorable Pokémon surpasses even mine!", + "1_female": null + }, + "defeat": { + "1": "What manner of magic is this? My heart, it doth hammer ceaselessly in my breast! \n$Winning against such a worthy opponent doth give my soul wings--thus do I soar!", + "1_female": null + } + }, + "acerola": { + "encounter": { + "1": "Battling is just plain fun! Come on, I can take you!" + }, + "victory": { + "1": "I'm… I'm speechless! How did you do it?!" + }, + "defeat": { + "1": "Ehaha! What an amazing victory!" + } + }, + "larry_elite": { + "encounter": { + "1": "Hello there… It's me, Larry.\n$I serve as a member of the Elite Four too, yes… Unfortunately for me." + }, + "victory": { + "1": "Well, that took the wind from under our wings…" + }, + "defeat": { + "1": "It's time for a meeting with the boss." + } + }, + "lance": { + "encounter": { + "1": "I've been waiting for you. Allow me to test your skill.", + "2": "I thought that you would be able to get this far. Let's get this started." + }, + "victory": { + "1": "You got me. You are magnificent!", + "1_female": null, + "2": "I never expected another trainer to beat me… I'm surprised.", + "2_female": null + }, + "defeat": { + "1": "That was close. Want to try again?", + "2": "It's not that you are weak. Don't let it bother you.", + "2_female": null + } + }, + "karen": { + "encounter": { + "1": "I am Karen. Would you care for a showdown with my Dark-type Pokémon?", + "2": "I am unlike those you've already met.", + "3": "You've assembled a charming team. Our battle should be a good one." + }, + "victory": { + "1": "No! I can't win. How did you become so strong?", + "2": "I will not stray from my chosen path.", + "3": "The Champion is looking forward to meeting you." + }, + "defeat": { + "1": "That's about what I expected.", + "2": "Well, that was relatively entertaining.", + "3": "Come visit me anytime." + } + }, + "milo": { + "encounter": { + "1": "Sure seems like you understand Pokémon real well. \n$This is gonna be a doozy of a battle! \n$I'll have to Dynamax my Pokémon if I want to win!" + }, + "victory": { + "1": "The power of Grass has wilted… What an incredible Challenger!", + "1_female": null + }, + "defeat": { + "1": "This'll really leave you in shock and awe." + } + }, + "lucian": { + "encounter": { + "1": "Just a moment, please. The book I'm reading has nearly reached its thrilling climax… \n$The hero has obtained a mystic sword and is about to face their final trial… Ah, never mind. \n$Since you've made it this far, I'll put that aside and battle you. \n$Let me see if you'll achieve as much glory as the hero of my book!" + }, + "victory": { + "1": "I see… It appears you've put me in checkmate." + }, + "defeat": { + "1": "I have a reputation to uphold." + } + }, + "drasna": { + "encounter": { + "1": "You must be a strong Trainer. Yes, quite strong indeed…\n$That's just wonderful news! Facing opponents like you and your team will make my Pokémon grow like weeds!", + "1_female": null + }, + "victory": { + "1": "Oh, dear me. That sure was a quick battle… I do hope you'll come back again sometime!" + }, + "defeat": { + "1": "How can this be?" + } + }, + "kahili": { + "encounter": { + "1": "So, here you are… Why don't we see who the winds favor today, you… Or me?" + }, + "victory": { + "1": "It's frustrating to me as a member of the Elite Four, but it seems your strength is the real deal." + }, + "defeat": { + "1": "That was an ace!" + } + }, + "hassel": { + "encounter": { + "1": "Prepare to learn firsthand how the fiery breath of ferocious battle feels!" + }, + "victory": { + "1": "Fortune smiled on me this time, but… \n$Judging from how the match went, who knows if I will be so lucky next time." + }, + "defeat": { + "1": "That was an ace!" + } + }, + "blue": { + "encounter": { + "1": "You must be pretty good to get this far.", + "1_female": null + }, + "victory": { + "1": "I've only lost to him and now to you… Him? Hee, hee…" + }, + "defeat": { + "1": "See? My power is what got me here." + } + }, + "piers": { + "encounter": { + "1": "Get ready for a mosh pit with me and my party! Spikemuth, it's time to rock!" + }, + "victory": { + "1": "Me an' my team gave it our best. Let's meet up again for a battle some time…" + }, + "defeat": { + "1": "My throat's ragged from shoutin'… But 'at was an excitin' battle!" + } + }, + "red": { + "encounter": { + "1": "…!" + }, + "victory": { + "1": "…?" + }, + "defeat": { + "1": "…!" + } + }, + "jasmine": { + "encounter": { + "1": "Oh… Your Pokémon are impressive. I think I will enjoy this." + }, + "victory": { + "1": "You are truly strong. I'll have to try much harder, too." + }, + "defeat": { + "1": "I never expected to win." + } + }, + "lance_champion": { + "encounter": { + "1": "I am still the Champion. I won't hold anything back." + }, + "victory": { + "1": "This is the emergence of a new Champion.", + "1_female": null + }, + "defeat": { + "1": "I successfully defended my Championship." + } + }, + "steven": { + "encounter": { + "1": "Tell me… What have you seen on your journey with your Pokémon? \n$What have you felt, meeting so many other Trainers out there? \n$Traveling this rich land… Has it awoken something inside you? \n$I want you to come at me with all that you've learned. \n$My Pokémon and I will respond in turn with all that we know!" + }, + "victory": { + "1": "So I, the Champion, fall in defeat…" + }, + "defeat": { + "1": "That was time well spent! Thank you!" + } + }, + "cynthia": { + "encounter": { + "1": "I, Cynthia, accept your challenge! There won't be any letup from me!" + }, + "victory": { + "1": "No matter how fun the battle is, it will always end sometime…" + }, + "defeat": { + "1": "Even if you lose, never lose your love of Pokémon." + } + }, + "iris": { + "encounter": { + "1": "Know what? I really look forward to having serious battles with strong Trainers! \n$I mean, come on! The Trainers who make it here are Trainers who desire victory with every fiber of their being! \n$And they are battling alongside Pokémon that have been through countless difficult battles! \n$If I battle with people like that, not only will I get stronger, my Pokémon will, too! \n$And we'll get to know each other even better! OK! Brace yourself! \n$I'm Iris, the Pokémon League Champion, and I'm going to defeat you!" + }, + "victory": { + "1": "Aghhhh… I did my best, but we lost…" + }, + "defeat": { + "1": "Yay! We won!" + } + }, + "hau": { + "encounter": { + "1": "I wonder if a Trainer battles differently depending on whether they're from a warm region or a cold region.\n$Let's test it out!" + }, + "victory": { + "1": "That was awesome! I think I kinda understand your vibe a little better now!" + }, + "defeat": { + "1": "Ma-an, that was some kinda battle!" + } + }, + "geeta": { + "encounter": { + "1": "I decided to throw my hat in the ring once more. \n$Come now… Show me the fruits of your training." + }, + "victory": { + "1": "I eagerly await news of all your achievements!" + }, + "defeat": { + "1": "What's the matter? This isn't all, is it?" + } + }, + "nemona": { + "encounter": { + "1": "Yesss! I'm so psyched! Time for us to let loose!" + }, + "victory": { + "1": "Well, that stinks, but I still had fun! I'll getcha next time!" + }, + "defeat": { + "1": "Well, that was a great battle! Fruitful for sure." + } + }, + "leon": { + "encounter": { + "1": "We're gonna have an absolutely champion time!" + }, + "victory": { + "1": "My time as Champion is over… \n$But what a champion time it's been! \n$Thank you for the greatest battle I've ever had!" + }, + "defeat": { + "1": "An absolute champion time, that was!" + } + }, + "whitney": { + "encounter": { + "1": "Hey! Don't you think Pokémon are, like, super cute?" + }, + "victory": { + "1": "Waaah! Waaah! You're so mean!", + "1_female": null + }, + "defeat": { + "1": "And that's that!" + } + }, + "chuck": { + "encounter": { + "1": "Hah! You want to challenge me? Are you brave or just ignorant?", + "1_female": null + }, + "victory": { + "1": "You're strong! Would you please make me your apprentice?" + }, + "defeat": { + "1": "There. Do you realize how much more powerful I am than you?" + } + }, + "katy": { + "encounter": { + "1": "Don't let your guard down unless you would like to find yourself knocked off your feet!", + "1_female": null + }, + "victory": { + "1": "All of my sweet little Pokémon dropped like flies!" + }, + "defeat": { + "1": "Eat up, my cute little Vivillon!" + } + }, + "pryce": { + "encounter": { + "1": "Youth alone does not ensure victory! Experience is what counts." + }, + "victory": { + "1": "Outstanding! That was perfect. Try not to forget what you feel now." + }, + "defeat": { + "1": "Just as I envisioned." + } + }, + "clair": { + "encounter": { + "1": "Do you know who I am? And you still dare to challenge me?" + }, + "victory": { + "1": "I wonder how far you can get with your skill level. This should be fascinating." + }, + "defeat": { + "1": "That's that." + } + }, + "maylene": { + "encounter": { + "1": "I've come to challenge you now, and I won't hold anything back. \n$Please prepare yourself for battle!", + "1_female": null + }, + "victory": { + "1": "I admit defeat…" + }, + "defeat": { + "1": "That was awesome." + } + }, + "fantina": { + "encounter": { + "1": "You shall challenge me, yes? But I shall win. \n$That is what the Gym Leader of Hearthome does, non?" + }, + "victory": { + "1": "You are so fantastically strong. I know why I have lost." + }, + "defeat": { + "1": "I am so, so, very happy!" + } + }, + "byron": { + "encounter": { + "1": "Trainer! You're young, just like my son, Roark. \n$With more young Trainers taking charge, the future of Pokémon is bright! \n$So, as a wall for young people, I'll take your challenge!", + "1_female": null + }, + "victory": { + "1": "Hmm! My sturdy Pokémon--defeated!" + }, + "defeat": { + "1": "Gwahahaha! How were my sturdy Pokémon?!" + } + }, + "olympia": { + "encounter": { + "1": "An ancient custom deciding one's destiny. The battle begins!" + }, + "victory": { + "1": "Create your own path. Let nothing get in your way. Your fate, your future." + }, + "defeat": { + "1": "Our path is clear now." + } + }, + "volkner": { + "encounter": { + "1": "Since you've come this far, you must be quite strong…\n$I hope you're the Trainer who'll make me remember how fun it is to battle!", + "1_female": null + }, + "victory": { + "1": "You've got me beat…\n$Your desire and the noble way your Pokémon battled for you… \n$I even felt thrilled during our match. That was a very good battle." + }, + "defeat": { + "1": "It was not shocking at all… \n$That is not what I wanted!" + } + }, + "burgh": { + "encounter": { + "1": "M'hm… If I win this battle, I feel like I can draw a picture unlike any before it. \n$OK! I can hear my battle muse loud and clear. Let's get straight to it!", + "2": "Of course, I'm really proud of all of my Pokémon! \n$Well now… Let's get right to it!" + }, + "victory": { + "1": "Is it over? Has my muse abandoned me?", + "2": "Hmm… It's over! You're incredible!" + }, + "defeat": { + "1": "Wow… It's beautiful somehow, isn't it…", + "2": "Sometimes I hear people say something was an ugly win. \n$I think if you're trying your best, any win is beautiful." + } + }, + "elesa": { + "encounter": { + "1": "C'est fini! When I'm certain of that, I feel an electric jolt run through my body! \n$I want to feel the sensation, so now my beloved Pokémon are going to make your head spin!" + }, + "victory": { + "1": "I meant to make your head spin, but you shocked me instead." + }, + "defeat": { + "1": "That was unsatisfying somehow… Will you give it your all next time?" + } + }, + "skyla": { + "encounter": { + "1": "It's finally time for a showdown! That means the Pokémon battle that decides who's at the top, right? \n$I love being on the summit! 'Cause you can see forever and ever from high places! \n$So, how about you and I have some fun?" + }, + "victory": { + "1": "Being your opponent in battle is a new source of strength to me. Thank you!" + }, + "defeat": { + "1": "Win or lose, you always gain something from a battle, right?" + } + }, + "brycen": { + "encounter": { + "1": "There is also strength in being with other people and Pokémon. \n$Receiving their support makes you stronger. I'll show you this power!" + }, + "victory": { + "1": "The wonderful combination of you and your Pokémon! What a beautiful friendship!" + }, + "defeat": { + "1": "Extreme conditions really test you and train you!" + } + }, + "drayden": { + "encounter": { + "1": "What I want to find is a young Trainer who can show me a bright future. \n$Let's battle with everything we have: your skill, my experience, and the love we've raised our Pokémon with!" + }, + "victory": { + "1": "This intense feeling that floods me after a defeat… I don't know how to describe it." + }, + "defeat": { + "1": "Harrumph! I know your ability is greater than that!" + } + }, + "grant": { + "encounter": { + "1": "There is only one thing I wish for. \n$That by surpassing one another, we find a way to even greater heights." + }, + "victory": { + "1": "You are a wall that I am unable to surmount!" + }, + "defeat": { + "1": "Do not give up. \n$That is all there really is to it. \n$The most important lessons in life are simple." + } + }, + "korrina": { + "encounter": { + "1": "Time for Lady Korrina's big appearance!" + }, + "victory": { + "1": "It's your very being that allows your Pokémon to evolve!" + }, + "defeat": { + "1": "What an explosive battle!" + } + }, + "clemont": { + "encounter": { + "1": "Oh! I'm glad that we got to meet!" + }, + "victory": { + "1": "Your passion for battle inspires me!" + }, + "defeat": { + "1": "Looks like my Trainer-Grow-Stronger Machine, Mach 2 is really working!" + } + }, + "valerie": { + "encounter": { + "1": "Oh, if it isn't a young Trainer… It is lovely to get to meet you like this. \n$Then I suppose you have earned yourself the right to a battle, as a reward for your efforts. \n$The elusive Fairy may appear frail as the breeze and delicate as a bloom, but it is strong.", + "1_female": null + }, + "victory": { + "1": "I hope that you will find things worth smiling about tomorrow…" + }, + "defeat": { + "1": "Oh goodness, what a pity…" + } + }, + "wulfric": { + "encounter": { + "1": "You know what? We all talk big about what you learn from battling and bonds and all that…\n$But really, I just do it 'cause it's fun. \n$Who cares about the grandstanding? Let's get to battling!" + }, + "victory": { + "1": "Outstanding! I'm tough as an iceberg, but you smashed me through and through!" + }, + "defeat": { + "1": "Tussle with me and this is what happens!" + } + }, + "kabu": { + "encounter": { + "1": "Every Trainer and Pokémon trains hard in pursuit of victory. \n$But that means your opponent is also working hard to win. \n$In the end, the match is decided by which side is able to unleash their true potential." + }, + "victory": { + "1": "I'm glad I could battle you today!" + }, + "defeat": { + "1": "That's a great way for me to feel my own growth!" + } + }, + "bea": { + "encounter": { + "1": "Do you have an unshakable spirit that won't be moved, no matter how you are attacked? \n$I think I'll just test that out, shall I?" + }, + "victory": { + "1": "I felt the fighting spirit of your Pokémon as you led them in battle." + }, + "defeat": { + "1": "That was the best sort of match anyone could ever hope for." + } + }, + "opal": { + "encounter": { + "1": "Let me have a look at how you and your partner Pokémon behave!" + }, + "victory": { + "1": "Your pink is still lacking, but you're an excellent Trainer with excellent Pokémon.", + "1_female": null + }, + "defeat": { + "1": "Too bad for you, I guess." + } + }, + "bede": { + "encounter": { + "1": "I suppose I should prove beyond doubt just how pathetic you are and how strong I am.", + "1_female": null + }, + "victory": { + "1": "I see… Well, that's fine. I wasn't really trying all that hard anyway." + }, + "defeat": { + "1": "Not a bad job, I suppose." + } + }, + "gordie": { + "encounter": { + "1": "So, let's get this over with." + }, + "victory": { + "1": "I just want to climb into a hole… Well, I guess it'd be more like falling from here." + }, + "defeat": { + "1": "Battle like you always do, victory will follow!" + } + }, + "marnie": { + "encounter": { + "1": "The truth is, when all's said and done… I really just wanna become Champion for myself! \n$So don't take it personal when I kick your butt!" + }, + "victory": { + "1": "OK, so I lost… But I got to see a lot of the good points of you and your Pokémon!" + }, + "defeat": { + "1": "Hope you enjoyed our battle tactics." + } + }, + "raihan": { + "encounter": { + "1": "I'm going to defeat the Champion, win the whole tournament, and prove to the world just how strong the great Raihan really is!" + }, + "victory": { + "1": "I look this good even when I lose. \n$It's a real curse. \n$Guess it's time for another selfie!" + }, + "defeat": { + "1": "Let's take a selfie to remember this." + } + }, + "brassius": { + "encounter": { + "1": "I assume you are ready? Let our collaborative work of art begin!", + "1_female": null + }, + "victory": { + "1": "Ahhh…vant-garde!" + }, + "defeat": { + "1": "I will begin on a new piece at once!" + } + }, + "iono": { + "encounter": { + "1": "How're ya feelin' about this battle?\n$...\n$Let's get this show on the road! How strong is our challenger? \n$I 'unno! Let's find out together!", + "1_female": null + }, + "victory": { + "1": "You're as flashy and bright as a 10,000,000-volt Thunderbolt, friendo!", + "1_female": null + }, + "defeat": { + "1": "Your eyeballs are MINE!" + } + }, + "larry": { + "encounter": { + "1": "When all's said and done, simplicity is strongest." + }, + "victory": { + "1": "A serving of defeat, huh?" + }, + "defeat": { + "1": "I'll call it a day." + } + }, + "ryme": { + "encounter": { + "1": "Come on, baby! Rattle me down to the bone!" + }, + "victory": { + "1": "You're cool, my friend—you move my SOUL!", + "1_female": null + }, + "defeat": { + "1": "Later, baby!" + } + }, + "grusha": { + "encounter": { + "1": "All I need to do is make sure the power of my Pokémon chills you to the bone!" + }, + "victory": { + "1": "Your burning passion… I kinda like it, to be honest." + }, + "defeat": { + "1": "Things didn't heat up for you." + } + }, + "marnie_elite": { + "encounter": { + "1": "You've made it this far, huh? Let's see if you can handle my Pokémon!", + "2": "I'll give it my best shot, but don't think I'll go easy on you!" + }, + "victory": { + "1": "I can't believe I lost... But you deserved that win. Well done!", + "2": "Looks like I've still got a lot to learn. Great battle, though!" + }, + "defeat": { + "1": "You put up a good fight, but I've got the edge! Better luck next time!", + "2": "Seems like my training's paid off. Thanks for the battle!" + } + }, + "nessa_elite": { + "encounter": { + "1": "The tides are turning in my favor. Ready to get swept away?", + "1_female": null, + "2": "Let's make some waves with this battle! I hope you're prepared!", + "2_female": null + }, + "victory": { + "1": "You navigated those waters perfectly... Well done!", + "2": "Looks like my currents were no match for you. Great job!" + }, + "defeat": { + "1": "Water always finds a way. That was a refreshing battle!", + "2": "You fought well, but the ocean's power is unstoppable!" + } + }, + "bea_elite": { + "encounter": { + "1": "Prepare yourself! My fighting spirit burns bright!", + "2": "Let's see if you can keep up with my relentless pace!" + }, + "victory": { + "1": "Your strength... It's impressive. You truly deserve this win.", + "2": "I've never felt this intensity before. Amazing job!" + }, + "defeat": { + "1": "Another victory for my intense training regimen! Well done!", + "2": "You've got strength, but I trained harder. Great battle!" + } + }, + "allister_elite": { + "encounter": { + "1": "Shadows fall... Are you ready to face your fears?", + "1_female": null, + "2": "Let's see if you can handle the darkness that I command." + }, + "victory": { + "1": "You've dispelled the shadows... For now. Well done.", + "2": "Your light pierced through my darkness. Great job." + }, + "defeat": { + "1": "The shadows have spoken... Your strength isn't enough.", + "2": "Darkness triumphs... Maybe next time you'll see the light." + } + }, + "raihan_elite": { + "encounter": { + "1": "Storm's brewing! Let's see if you can weather this fight!", + "2": "Get ready to face the eye of the storm!" + }, + "victory": { + "1": "You've bested the storm... Incredible job!", + "2": "You rode the winds perfectly... Great battle!" + }, + "defeat": { + "1": "Another storm weathered, another victory claimed! Well fought!", + "2": "You got caught in my storm! Better luck next time!", + "2_female": null + } + }, + "alder": { + "encounter": { + "1": "Prepare yourself for a match against the strongest Trainer in Unova!" + }, + "victory": { + "1": "Well done! You certainly are an unmatched talent." + }, + "defeat": { + "1": "A fresh wind blows through my heart...\n$What an extraordinary effort!" + } + }, + "kieran": { + "encounter": { + "1": "Through hard work, I become stronger and stronger!\n$I don't lose." + }, + "victory": { + "1": "I don't believe it...\n$What a fun and heart-pounding battle!" + }, + "defeat": { + "1": "Wowzers, what a battle!\n$Time for you to train even harder." + } + }, + "rival": { + "encounter": { + "1": "@c{smile}Hey, I was looking for you! I knew you were eager to get going but I expected at least a goodbye…$@c{smile_eclosed}So you're really pursuing your dream after all? I almost can't believe it.$@c{serious_smile_fists}Since we're here, how about a battle?\nAfter all, I want to make sure you're ready.$@c{serious_mopen_fists}Don't hold back, I want you to give me everything you've got!" + }, + "victory": { + "1": "@c{shock}Wow… You cleaned me out.\nAre you actually a beginner?$@c{smile}Maybe it was a bit of luck but…Who knows you might just be able to go all the way.$By the way, the professor asked me to give you these items. They look pretty cool.$@c{serious_smile_fists}Good luck out there!" + } + }, + "rival_female": { + "encounter": { + "1": "@c{smile_wave}There you are! I've been looking everywhere for you!\n@c{angry_mopen}Did you forget to say goodbye to your best friend?\n$@c{smile_ehalf}You're going after your dream, huh?\nThat day is really today isn't it…\n$@c{smile}Anyway, I'll forgive you for forgetting me, but on one condition. @c{smile_wave_wink}You have to battle me!\n$@c{angry_mopen}Give it your all! Wouldn't want your adventure to be over before it started, right?" + }, + "victory": { + "1": "@c{shock}You just started and you're already this strong?!@d{96}\n@c{angry}You totally cheated, didn't you?\n$@c{smile_wave_wink}Just kidding!@d{64} @c{smile_eclosed}I lost fair and square… I have a feeling you're going to do really well out there.\n$@c{smile}By the way, the professor wanted me to give you some items. Hopefully they're helpful!\n$@c{smile_wave}Do your best like always! I believe in you!" + } + }, + "rival_2": { + "encounter": { + "1": "@c{smile}Hey, you're here too?\n@c{smile_eclosed}Still a perfect record, huh…?\n$@c{serious_mopen_fists}I know it kind of looks like I followed you here, but that's mostly not true.\n$@c{serious_smile_fists}Honestly though, I've been itching for a rematch since you beat me back at home.\n$I've been doing a lot of my own training so I'll definitely put up a fight this time.\n$@c{serious_mopen_fists}Don't hold back, just like before!\nLet's go!" + }, + "victory": { + "1": "@c{neutral_eclosed}Oh. I guess I was overconfident.\n$@c{smile}That's alright, though. I figured this might happen.\n@c{serious_mopen_fists}It just means I need to try harder for next time!\n\n$@c{smile}Oh, not that you really need the help, but I had an extra one of each of these lying around and figured you might want them.\n\n$@c{serious_smile_fists}Don't expect another one after this, though!\nI can't keep giving my opponent an advantage after all." + } + }, + "rival_2_female": { + "encounter": { + "1": "@c{smile_wave}Oh, fancy meeting you here. Looks like you're still undefeated. @c{angry_mopen}Huh… Not bad!\n$@c{angry_mopen}I know what you're thinking, and no, I wasn't creeping on you. @c{smile_eclosed}I just happened to be in the area.\n$@c{smile_ehalf}I'm happy for you but I just want to let you know that it's OK to lose sometimes.\n$@c{smile}We learn from our mistakes, often more than we would if we kept succeeding.\n$@c{angry_mopen}In any case, I've been training hard for our rematch, so you'd better give it your all!" + }, + "victory": { + "1": "@c{neutral}I… wasn't supposed to lose that time…\n$@c{smile}Aw well. That just means I'll have to train even harder for next time!\n$@c{smile_wave}I also got you another two of these!\n@c{smile_wave_wink}No need to thank me~.\n$@c{angry_mopen}This is the last one, though! You won't be getting anymore freebies from me after this!" + }, + "defeat": { + "1": "It's OK to lose sometimes…" + } + }, + "rival_3": { + "encounter": { + "1": "@c{smile}Hey, look who it is! It's been a while.\n@c{neutral}You're… still undefeated? Huh.\n$@c{neutral_eclosed}Things have been kind of… strange.\nIt's not the same back home without you.\n$@c{serious}I know it's selfish, but I need to get this off my chest.\n@c{neutral_eclosed}I think you're in over your head here.\n$@c{serious}Never losing once is just unrealistic.\nWe need to lose sometimes in order to grow.\n$@c{neutral_eclosed}You've had a great run but there's still so much ahead, and it only gets harder. @c{neutral}Are you prepared for that?\n$@c{serious_mopen_fists}If so, prove it to me." + }, + "victory": { + "1": "@c{angry_mhalf}This is ridiculous… I've hardly stopped training…\nHow are we still so far apart?" + } + }, + "rival_3_female": { + "encounter": { + "1": "@c{smile_wave}Long time no see! Still haven't lost, huh.\n@c{angry}You're starting to get on my nerves. @c{smile_wave_wink}Just kidding!\n$@c{smile_ehalf}But really, don't you miss home by now? Or… me?\nI… I mean, we've really missed you.\n$@c{smile_eclosed}I support you in your dream and everything, but the reality is you're going to lose sooner or later.\n$@c{smile}And when you do, I'll be there for you like always.\n@c{angry_mopen}Now, let me show you how strong I've become!" + }, + "victory": { + "1": "@c{shock}After all that… it wasn't enough…?\nYou'll never come back at this rate…" + }, + "defeat": { + "1": "You gave it your best, now let's go home." + } + }, + "rival_4": { + "encounter": { + "1": "@c{neutral}Hey.\n$I won't mince words or pleasantries with you.\n@c{neutral_eclosed}I'm here to win, plain and simple.\n$@c{serious_mhalf_fists}I've learned to maximize my potential by putting all my time into training.\n$@c{smile}You get a lot of extra time when you cut out the unnecessary sleep and social interaction.\n$@c{serious_mopen_fists}None of that matters anymore, not until I win.\n$@c{neutral_eclosed}I've even reached the point where I don't lose anymore.\n@c{smile_eclosed}I suppose your philosophy wasn't so wrong after all.\n$@c{angry_mhalf}Losing is for the weak, and I'm not weak anymore.\n$@c{serious_mopen_fists}Prepare yourself." + }, + "victory": { + "1": "@c{neutral}What…@d{64} What are you?" + } + }, + "rival_4_female": { + "encounter": { + "1": "@c{neutral}It's me! You didn't forget about me again… did you?\n$@c{smile}You should be proud of how far you made it. Congrats!\nBut it looks like it's the end of your journey.\n$@c{smile_eclosed}You've awoken something in me I never knew was there.\nIt seems like all I do now is train.\n$@c{smile_ehalf}I hardly even eat or sleep now, I just train my Pokémon all day, getting stronger every time.\n$@c{neutral}In fact, I… hardly recognize myself.\n$And now, I've finally reached peak performance.\nI don't think anyone could beat me now.\n$And you know what? It's all because of you.\n@c{smile_ehalf}I don't know whether to thank you or hate you.\n$@c{angry_mopen}Prepare yourself." + }, + "victory": { + "1": "@c{neutral}What…@d{64} What are you?" + }, + "defeat": { + "1": "$@c{smile}You should be proud of how far you made it." + } + }, + "rival_5": { + "encounter": { + "1": "@c{neutral}…" + }, + "victory": { + "1": "@c{neutral}…" + } + }, + "rival_5_female": { + "encounter": { + "1": "@c{neutral}…" + }, + "victory": { + "1": "@c{neutral}…" + }, + "defeat": { + "1": "$@c{smile_ehalf}…" + } + }, + "rival_6": { + "encounter": { + "1": "@c{smile_eclosed}We meet again.\n$@c{neutral}I've had some time to reflect on all this.\nThere's a reason this all seems so strange.\n$@c{neutral_eclosed}Your dream, my drive to beat you…\nIt's all a part of something greater.\n$@c{serious}This isn't about me, or about you… This is about the world, @c{serious_mhalf_fists}and it's my purpose to push you to your limits.\n$@c{neutral_eclosed}Whether I've fulfilled that purpose I can't say, but I've done everything in my power.\n$@c{neutral}This place we ended up in is terrifying… Yet somehow I feel unphased, like I've been here before.\n$@c{serious_mhalf_fists}You feel the same, don't you?\n$@c{serious}…and it's like something here is speaking to me.\nThis is all the world's known for a long time now.\n$Those times we cherished together that seem so recent are nothing but a distant memory.\n$@c{neutral_eclosed}Who can say whether they were ever even real in the first place.\n$@c{serious_mopen_fists}You need to keep pushing, because if you don't, it will never end. You're the only one who can do this.\n$@c{serious_smile_fists}I hardly know what any of this means, I just know that it's true.\n$@c{serious_mopen_fists}If you can't defeat me here and now, you won't stand a chance." + }, + "victory": { + "1": "@c{smile_eclosed}It looks like my work is done here.\n$I want you to promise me one thing.\n@c{smile}After you heal the world, please come home." + } + }, + "rival_6_female": { + "encounter": { + "1": "@c{smile_ehalf}So it's just us again.\n$@c{smile_eclosed}You know, I keep going around and around in my head…\n$@c{smile_ehalf}There's something to all this, why everything seems so strange now…\n$@c{smile}You have your dream, and I have this ambition in me…\n$I just can't help but feel there's a greater purpose to all this, to what we're doing, you and I.\n$@c{smile_eclosed}I think I'm supposed to push you… to your limits.\n$@c{smile_ehalf}I'm not sure if I've been doing a good job at that, but I've tried my best up to now.\n$It's something about this strange and dreadful place… Everything seems so clear…\n$This… is all the world's known for a long time now.\n$@c{smile_eclosed}It's like I can barely remember the memories we cherished together.\n$@c{smile_ehalf}Were they even real? They seem so far away now…\n$@c{angry_mopen}You need to keep pushing, because if you don't, it will never end. You're the only one who can do this.\n$@c{smile_ehalf}I… don't know what all this means… but I feel it's true.\n$@c{neutral}If you can't defeat me here and now, you won't stand a chance." + }, + "victory": { + "1": "@c{smile_ehalf}I… I think I fulfilled my purpose…\n$@c{smile_eclosed}Promise me… After you heal the world… Please… come home safe.\n$@c{smile_ehalf}…Thank you." + } + } +} diff --git a/src/locales/en/dialogue.ts b/src/locales/en/dialogue.ts deleted file mode 100644 index 1180e202f3c..00000000000 --- a/src/locales/en/dialogue.ts +++ /dev/null @@ -1,2923 +0,0 @@ -import { DialogueTranslationEntries, SimpleTranslationEntries } from "#app/interfaces/locales"; - -// Dialogue of the NPCs in the game when the player character is male (or unset) -export const PGMdialogue: DialogueTranslationEntries = { - "youngster": { - "encounter": { - 1: "Hey, wanna battle?", - 2: "Are you a new trainer too?", - 3: "Hey, I haven't seen you before. Let's battle!", - 4: "I just lost, so I'm trying to find more Pokémon.\nWait! You look weak! Come on, let's battle!", - 5: "Have we met or not? I don't really remember. Well, I guess it's nice to meet you anyway!", - 6: "All right! Let's go!", - 7: "All right! Here I come! I'll show you my power!", - 8: "Haw haw haw... I'll show you how hawesome my Pokémon are!", - 9: "No need to waste time saying hello. Bring it on whenever you're ready!", - 10: "Don't let your guard down, or you may be crying when a kid beats you.", - 11: "I've raised my Pokémon with great care. You're not allowed to hurt them!", - 12: "Glad you made it! It won't be an easy job from here.", - 13: "The battles continue forever! Welcome to the world with no end!" - }, - "victory": { - 1: "Wow! You're strong!", - 2: "I didn't stand a chance, huh?", - 3: "I'll find you again when I'm older and beat you!", - 4: "Ugh. I don't have any more Pokémon.", - 5: "No way… NO WAY! How could I lose again…", - 6: "No! I lost!", - 7: "Whoa! You are incredible! I'm amazed and surprised!", - 8: "Could it be… How… My Pokémon and I are the strongest, though…", - 9: "I won't lose next time! Let's battle again sometime!", - 10: "Sheesh! Can't you see that I'm just a kid! It wasn't fair of you to go all out like that!", - 11: "Your Pokémon are more amazing! Trade with me!", - 12: "I got a little carried away earlier, but what job was I talking about?", - 13: "Ahaha! There it is! That's right! You're already right at home in this world!" - } - }, - "lass": { - "encounter": { - 1: "Let's have a battle, shall we?", - 2: "You look like a new trainer. Let's have a battle!", - 3: "I don't recognize you. How about a battle?", - 4: "Let's have a fun Pokémon battle!", - 5: "I'll show you the ropes of how to really use Pokémon!", - 6: "A serious battle starts from a serious beginning! Are you sure you're ready?", - 7: "You're only young once. And you only get one shot at a given battle. Soon, you'll be nothing but a memory.", - 8: "You'd better go easy on me, OK? Though I'll be seriously fighting!", - 9: "School is boring. I've got nothing to do. Yawn. I'm only battling to kill the time." - }, - "victory": { - 1: "That was impressive! I've got a lot to learn.", - 2: "I didn't think you'd beat me that bad…", - 3: "I hope we get to have a rematch some day.", - 4: "That was pretty amazingly fun! You've totally exhausted me…", - 5: "You actually taught me a lesson! You're pretty amazing!", - 6: "Seriously, I lost. That is, like, seriously depressing, but you were seriously cool.", - 7: "I don't need memories like this. Deleting memory…", - 8: "Hey! I told you to go easy on me! Still, you're pretty cool when you're serious.", - 9: "I'm actually getting tired of battling… There's gotta be something new to do…" - } - }, - "breeder": { - "encounter": { - 1: "Obedient Pokémon, selfish Pokémon… Pokémon have unique characteristics.", - 2: "Even though my upbringing and behavior are poor, I've raised my Pokémon well.", - 3: "Hmm, do you discipline your Pokémon? Pampering them too much is no good.", - }, - "victory": { - 1: "It is important to nurture and train each Pokémon's characteristics.", - 2: "Unlike my diabolical self, these are some good Pokémon.", - 3: "Too much praise can spoil both Pokémon and people.", - }, - "defeat": { - 1: "You should not get angry at your Pokémon, even if you lose a battle.", - 2: "Right? Pretty good Pokémon, huh? I'm suited to raising things.", - 3: "No matter how much you love your Pokémon, you still have to discipline them when they misbehave." - } - }, - "breeder_female": { - "encounter": { - 1: "Pokémon never betray you. They return all the love you give them.", - 2: "Shall I give you a tip for training good Pokémon?", - 3: "I have raised these very special Pokémon using a special method." - }, - "victory": { - 1: "Ugh… It wasn't supposed to be like this. Did I administer the wrong blend?", - 2: "How could that happen to my Pokémon… What are you feeding your Pokémon?", - 3: "If I lose, that tells you I was just killing time. It doesn't damage my ego at all." - }, - "defeat": { - 1: "This proves my Pokémon have accepted my love.", - 2: "The real trick behind training good Pokémon is catching good Pokémon.", - 3: "Pokémon will be strong or weak depending on how you raise them." - } - }, - "fisherman": { - "encounter": { - 1: "Aack! You made me lose a bite!\nWhat are you going to do about it?", - 2: "Go away! You're scaring the Pokémon!", - 3: "Let's see if you can reel in a victory!", - }, - "victory": { - 1: "Just forget about it.", - 2: "Next time, I'll be reelin' in the triumph!", - 3: "Guess I underestimated the currents this time.", - }, - }, - "fisherman_female": { - "encounter": { - 1: "Woah! I've hooked a big one!", - 2: "Line's in, ready to reel in success!", - 3: "Ready to make waves!" - }, - "victory": { - 1: "I'll be back with a stronger hook.", - 2: "I'll reel in victory next time.", - 3: "I'm just sharpening my hooks for the comeback!" - }, - }, - "swimmer": { - "encounter": { - 1: "Time to dive in!", - 2: "Let's ride the waves of victory!", - 3: "Ready to make a splash!", - }, - "victory": { - 1: "Drenched in defeat!", - 2: "A wave of defeat!", - 3: "Back to shore, I guess.", - }, - }, - "backpacker": { - "encounter": { - 1: "Pack up, game on!", - 2: "Let's see if you can keep pace!", - 3: "Gear up, challenger!", - 4: "I've spent 20 years trying to find myself… But where am I?" - }, - "victory": { - 1: "Tripped up this time!", - 2: "Oh, I think I'm lost.", - 3: "Dead end!", - 4: "Wait up a second! Hey! Don't you know who I am?" - }, - }, - "ace_trainer": { - "encounter": { - 1: "You seem quite confident.", - 2: "Your Pokémon… Show them to me…", - 3: "Because I'm an Ace Trainer, people think I'm strong.", - 4: "Are you aware of what it takes to be an Ace Trainer?" - }, - "victory": { - 1: "Yes… You have good Pokémon…", - 2: "What?! But I'm a battling genius!", - 3: "Of course, you are the main character!", - 4: "OK! OK! You could be an Ace Trainer!" - }, - "defeat": { - 1: "I am devoting my body and soul to Pokémon battles!", - 2: "All within my expectations… Nothing to be surprised about…", - 3: "I thought I'd grow up to be a frail person who looked like they would break if you squeezed them too hard.", - 4: "Of course I'm strong and don't lose. It's important that I win gracefully." - } - }, - "parasol_lady": { - "encounter": { - 1: "Time to grace the battlefield with elegance and poise!", - }, - "victory": { - 1: "My elegance remains unbroken!", - } - }, - "twins": { - "encounter": { - 1: "Get ready, because when we team up, it's double the trouble!", - 2: "Two hearts, one strategy – let's see if you can keep up with our twin power!", - 3: "Hope you're ready for double trouble, because we're about to bring the heat!" - }, - "victory": { - 1: "We may have lost this round, but our bond remains unbreakable!", - 2: "Our twin spirit won't be dimmed for long.", - 3: "We'll come back stronger as a dynamic duo!" - }, - "defeat": { - 1: "Twin power reigns supreme!", - 2: "Two hearts, one triumph!", - 3: "Double the smiles, double the victory dance!" - } - }, - "cyclist": { - "encounter": { - 1: "Get ready to eat my dust!", - 2: "Gear up, challenger! I'm about to leave you in the dust!", - 3: "Pedal to the metal, let's see if you can keep pace!" - }, - "victory": { - 1: "Spokes may be still, but determination pedals on.", - 2: "Outpaced!", - 3: "The road to victory has many twists and turns yet to explore." - }, - }, - "black_belt": { - "encounter": { - 1: "I praise your courage in challenging me! For I am the one with the strongest kick!", - 2: "Oh, I see. Would you like to be cut to pieces? Or do you prefer the role of punching bag?" - }, - "victory": { - 1: "Oh. The Pokémon did the fighting. My strong kick didn't help a bit.", - 2: "Hmmm… If I was going to lose anyway, I was hoping to get totally messed up in the process." - }, - }, - "battle_girl": { - "encounter": { - 1: "You don't have to try to impress me. You can lose against me.", - }, - "victory": { - 1: "It's hard to say good-bye, but we are running out of time…", - }, - }, - "hiker": { - "encounter": { - 1: "My middle-age spread has given me as much gravitas as the mountains I hike!", - 2: "I inherited this big-boned body from my parents… I'm like a living mountain range…", - }, - "victory": { - 1: "At least I cannot lose when it comes to BMI!", - 2: "It's not enough… It's never enough. My bad cholesterol isn't high enough…" - }, - }, - "ranger": { - "encounter": { - 1: "When I am surrounded by nature, most other things cease to matter.", - 2: "When I'm living without nature in my life, sometimes I'll suddenly feel an anxiety attack coming on." - }, - "victory": { - 1: "It doesn't matter to the vastness of nature whether I win or lose…", - 2: "Something like this is pretty trivial compared to the stifling feelings of city life." - }, - "defeat": { - 1: "I won the battle. But victory is nothing compared to the vastness of nature…", - 2: "I'm sure how you feel is not so bad if you compare it to my anxiety attacks…" - } - }, - "scientist": { - "encounter": { - 1: "My research will lead this world to peace and joy.", - }, - "victory": { - 1: "I am a genius… I am not supposed to lose against someone like you…", - }, - }, - "school_kid": { - "encounter": { - 1: "…Heehee. I'm confident in my calculations and analysis.", - 2: "I'm gaining as much experience as I can because I want to be a Gym Leader someday." - }, - "victory": { - 1: "Ohhhh… Calculation and analysis are perhaps no match for chance…", - 2: "Even difficult, trying experiences have their purpose, I suppose." - } - }, - "artist": { - "encounter": { - 1: "I used to be popular, but now I am all washed up.", - }, - "victory": { - 1: "As times change, values also change. I realized that too late.", - }, - }, - "guitarist": { - "encounter": { - 1: "Get ready to feel the rhythm of defeat as I strum my way to victory!", - }, - "victory": { - 1: "Silenced for now, but my melody of resilience will play on.", - }, - }, - "worker": { - "encounter": { - 1: "It bothers me that people always misunderstand me. I'm a lot more pure than everyone thinks.", - }, - "victory": { - 1: "I really don't want my skin to burn, so I want to stay in the shade while I work.", - }, - }, - "worker_female": { - "encounter": { - 1: `It bothers me that people always misunderstand me. - $I'm a lot more pure than everyone thinks.` - }, - "victory": { - 1: "I really don't want my skin to burn, so I want to stay in the shade while I work." - }, - "defeat": { - 1: "My body and mind aren't necessarily always in sync." - } - }, - "worker_double": { - "encounter": { - 1: "I'll show you we can break you. We've been training in the field!", - }, - "victory": { - 1: "How strange… How could this be… I shouldn't have been outmuscled.", - }, - }, - "hex_maniac": { - "encounter": { - 1: "I normally only ever listen to classical music, but if I lose, I think I shall try a bit of new age!", - 2: "I grow stronger with each tear I cry." - }, - "victory": { - 1: "Is this the dawning of the age of Aquarius?", - 2: "Now I can get even stronger. I grow with every grudge." - }, - "defeat": { - 1: "New age simply refers to twentieth century classical composers, right?", - 2: "Don't get hung up on sadness or frustration. You can use your grudges to motivate yourself." - } - }, - "psychic": { - "encounter": { - 1: "Hi! Focus!", - }, - "victory": { - 1: "Eeeeek!", - }, - }, - "officer": { - "encounter": { - 1: "Brace yourself, because justice is about to be served!", - 2: "Ready to uphold the law and serve justice on the battlefield!" - }, - "victory": { - 1: "The weight of justice feels heavier than ever…", - 2: "The shadows of defeat linger in the precinct." - } - }, - "beauty": { - "encounter": { - 1: "My last ever battle… That's the way I'd like us to view this match…", - }, - "victory": { - 1: "It's been fun… Let's have another last battle again someday…", - }, - }, - "baker": { - "encounter": { - 1: "Hope you're ready to taste defeat!" - }, - "victory": { - 1: "I'll bake a comeback." - }, - }, - "biker": { - "encounter": { - 1: "Time to rev up and leave you in the dust!" - }, - "victory": { - 1: "I'll tune up for the next race." - }, - }, - "firebreather": { - "encounter": { - 1: "My flames shall devour you!", - 2: "My soul is on fire. I'll show you how hot it burns!", - 3: "Step right up and take a look!" - }, - "victory": { - 1: "I burned down to ashes...", - 2: "Yow! That's hot!", - 3: "Ow! I scorched the tip of my nose!" - }, - }, - "sailor": { - "encounter": { - 1: "Matey, you're walking the plank if you lose!", - 2: "Come on then! My sailor's pride is at stake!", - 3: "Ahoy there! Are you seasick?" - }, - "victory": { - 1: "Argh! Beaten by a kid!", - 2: "Your spirit sank me!", - 3: "I think it's me that's seasick..." - }, - }, - - "archer": { - "encounter": { - 1: "Before you go any further, let's see how you far against us, Team Rocket!", - 2: "I have received reports that your skills are not insignificant. Let's see if they are true.", - 3: "I am Archer, an Admin of Team Rocket. And I do not go easy on enemies of our organization." - }, - "victory": { - 1: "What a blunder!", - 2: "With my current skills, I was not up to the task after all.", - 3: "F-forgive me, Giovanni... For me to be defeated by a mere trainer..." - }, - }, - "ariana": { - "encounter": { - 1: `Hold it right there! We can't someone on the loose." - $It's harmful to Team Rocket's pride, you see.`, - 2: `I don't know or care if what I'm doing is right or wrong... - $I just put my faith in Giovanni and do as I am told`, - 3: "Your trip ends here. I'm going to take you down!" - }, - "victory": { - 1: `Tch, you really are strong. It's too bad. - $If you were to join Team Rocket, you could become an Executive.`, - 2: "I... I'm shattered...", - 3: "Aaaieeeee! This can't be happening! I fought hard, but I still lost…" - }, - }, - "proton": { - "encounter": { - 1: "What do you want? If you interrupt our work, don't expect any mercy!", - 2: `What do we have here? I am often labeled as the scariest and cruelest guy in Team Rocket… - $I strongly urge you not to interfere with our business!`, - 3: "I am Proton, an Admin of Team Rocket. I am here to put an end to your meddling!" - }, - "victory": { - 1: "The fortress came down!", - 2: "You may have won this time… But all you did was make Team Rocket's wrath grow…", - 3: "I am defeated… But I will not forget this!" - }, - }, - - "petrel": { - "encounter": { - 1: `Muhahaha, we've been waiting for you. Me? You don't know who I am? It is me, Giovanni. - $The majestic Giovanni himself! Wahahaha! …Huh? I don't sound anything like Giovanni? - $I don't even look like Giovanni? How come? I've worked so hard to mimic him!`, - 2: "I am Petrel, an Admin of Team Rocket. I will not allow you to interfere with our plans!", - 3: "Rocket Executive Petrel will deal with this intruder!" - }, - "victory": { - 1: "OK, OK. I'll tell you where he is.", - 2: "I… I couldn't do a thing… Giovanni, please forgive me…", - 3: "No, I can't let this affect me. I have to inform the others…" - }, - }, - "tabitha": { - "encounter": { - 1: "Hehehe! So you've come all the way here! But you're too late!", - 2: `Hehehe... Got here already, did you? We underestimated you! But this is it! - $I'm a cut above the Grunts you've seen so far. I'm not stalling for time. - $I'm going to pulverize you!`, - 3: "I'm going to give you a little taste of pain! Resign yourself to it!" - }, - "victory": { - 1: `Hehehe! You might have beaten me, but you don't stand a chance against the Boss! - $If you get lost now, you won't have to face a sound whipping!`, - 2: "Hehehe... So, I lost, too...", - 3: "Ahya! How could this be? For an Admin like me to lose to some random trainer..." - }, - }, - "courtney": { - "encounter": { - 1: "The thing...The thing that you hold...That is what... That's what we of Team Magma seek...", - 2: "... Well then...Deleting...", - 3: "...Ha. ...Analyzing... ...Hah♪" - }, - "victory": { - 1: "... ...Change...the world.", - 2: `As anticipated. Unanticipated. You. Target lock...completed. - $Commencing...experiment. You. Forever. Aha... ♪`, - 3: "...Again? That's unanticipated. ...I knew it. You...are interesting! ...Haha. ♪" - }, - }, - "shelly": { - "encounter": { - 1: `Ahahahaha! You're going to meddle in Team Aqua's affairs? - $You're either absolutely fearless, simply ignorant, or both! - $You're so cute, you're disgusting! I'll put you down`, - 2: "What's this? Who's this spoiled brat?", - 3: "Cool your jets. Be patient. I'll crush you shortly." - }, - "victory": { - 1: `Ahahahaha! We got meddled with unexpectedly! We're out of options. - $We'll have to pull out. But this isn't the last you'll see of Team Aqua! - $We have other plans! Don't you forget it!`, - 2: "Ahhh?! Did I go too easy on you?!", - 3: `Uh. Are you telling me you've upped your game even more during the fight? - $You're a brat with a bright future… My Pokémon and I don't have any strength left to fight… - $Go on… Go and be destroyed by Archie.` - }, - }, - "matt": { - "encounter": { - 1: "Hoohahaha! What, you got a screw loose or something? Look at you, little Makuhita person!", - 2: "Oho! You! You're that funny kid!", - 3: "What are you doing here? Did you follow us?" - }, - "victory": { - 1: "All right then, until the Boss has time for you, I'll be your opponent!", - 2: `I can feel it! I can feel it, all right! The strength coming offa you! - $More! I still want more! But looks like we're outta time...`, - 3: "That was fun! I knew you'd show me a good time! I look forward to facing you again someday!" - }, - }, - "mars": { - "encounter": { - 1: "I'm Mars, one of Team Galactic's top Commanders.", - 2: "Team Galactic's vision for the future is unwavering. Opposition will be crushed without mercy!", - 3: "Feeling nervous? You should be!" - }, - "victory": { - 1: "This can't be happening! How did I lose?!", - 2: "You have some skill, I'll give you that.", - 3: "Defeated... This was a costly mistake." - } - }, - "jupiter": { - "encounter": { - 1: "Jupiter, Commander of Team Galactic, at your service.", - 2: "Resistance is futile. Team Galactic will prevail!", - 3: "You're trembling... scared already?" - }, - "victory": { - 1: "No way... I lost?!", - 2: "Impressive, you've got guts!", - 3: "Losing like this... How embarrassing." - } - }, - "saturn": { - "encounter": { - 1: "I am Saturn, Commander of Team Galactic.", - 2: "Our mission is absolute. Any hindrance will be obliterated!", - 3: "Is that fear I see in your eyes?" - }, - "victory": { - 1: "Impossible... Defeated by you?!", - 2: "You have proven yourself a worthy adversary.", - 3: "Bestowed in defeat... This is unacceptable." - }}, - "zinzolin": { - "encounter": { - 1: "You could become a threat to Team Plasma, so we will eliminate you here and now!", - 2: "Oh, for crying out loud... I didn't expect to have to battle in this freezing cold!", - 3: "You're an impressive Trainer to have made it this far. But it ends here." - }, - "victory": { - 1: "Ghetsis... I have failed you...", - 2: "It's bitter cold. I'm shivering. I'm suffering. Yet, I still stand victorious.", - 3: "Hmph. You're a smarter Trainer than I expected, but not smart enough." - } - }, - "rood": { - "encounter": { - 1: "You are a threat to Team Plasma. We cannot let you walk away from here and now!", - 2: "Oh, this icy wind... I never thought I'd have to fight here!", - 3: "You are a remarkable Trainer to have made it this far. But this is where it ends." - }, - "victory": { - 1: "Ghetsis... I have failed my mission...", - 2: "The cold is piercing. I'm shivering. I'm suffering. Yet, I have triumphed.", - 3: "Hm. You are a talented Trainer, but unfortunately not talented enough." - } - }, - "xerosic": { - "encounter": { - 1: "Ah ha ha! It would be my pleasure. Come on, little Trainer! Let's see what you've got!", - 2: "Hmm... You're more powerful than you look. I wonder how much energy there is inside you.", - 3: "I've been waiting for you! I need to do a little research on you! Come, let us begin!" - }, - "victory": { - 1: "Ah, you're quite strong. Oh yes—very strong, indeed.", - 2: "Ding-ding-ding! You did it! To the victor go the spoils!", - 3: "Wonderful! Amazing! You have tremendous skill and bravery!" - } - }, - "bryony": { - "encounter": { - 1: "I am Bryony, and it would be my pleasure to battle you. Show me what you've got.", - 2: "Impressive... You're more powerful than you appear. Let's see the true extent of your energy.", - 3: "I've anticipated your arrival. It's time for a little test. Shall we begin?" - }, - "victory": { - 1: "You're quite strong. Oh yes—very strong, indeed.", - 2: "Ding-ding-ding! You've done well. Victory is yours.", - 3: "Wonderful! Remarkable! Your skill and bravery are commendable." - } - }, - "rocket_grunt": { - "encounter": { - 1: "Prepare for trouble!", - 2: "We're pulling a big job here! Get lost, kid!", - 3: "Hand over your Pokémon, or face the wrath of Team Rocket!", - 4: "You're about to experience the true terror of Team Rocket!", - 5: "Hey, kid! Me am a Team Rocket member kind of guy!" //Use of wrong grammar is deliberate - }, - "victory": { - 1: "Team Rocket blasting off again!", - 2: "Oh no! I dropped the Lift Key!", - 3: "I blew it!", - 4: "My associates won't stand for this!", - 5: "You say what? Team Rocket bye-bye a go-go? Broken it is says you?" //Use of wrong grammar is deliberate. - }, - }, - "magma_grunt": { - "encounter": { - 1: "If you get in the way of Team Magma, don’t expect any mercy!", - 2: "You'd better not interfere with our plans! We're making the world a better place!", - 3: "You're in the way! Team Magma has no time for kids like you!", - 4: "I hope you brought marshmallows because things are about to heat up!", - 5: "We're going to use the power of a volcano! It's gonna be... explosive! Get it? Heh heh!" - }, - "victory": { - 1: "Huh? I lost?!", - 2: "I can't believe I lost! I even skipped lunch for this", - 3: "No way! You're just a kid!", - 4: "Urrrgh... I should've ducked into our hideout right away...", - 5: "You beat me... Do you think the boss will dock my pay for this?" - }, - }, - - "aqua_grunt": { - "encounter": { - 1: "No one who crosses Team Aqua gets any mercy, not even kids!", - 2: "Grrr... You've got some nerve meddling with Team Aqua!", - 3: "You're about to get soaked! And not just from my water Pokémon!", - 4: "We, Team Aqua, exist for the good of all!", - 5: "Prepare to be washed away by the tides of my... uh, Pokémon! Yeah, my Pokémon!" - }, - "victory": { - 1: "You're kidding me!", - 2: "Arrgh, I didn't count on being meddled with by some meddling kid!", - 3: "I lost?! Guess I'll have to swim back to the hideout now...", - 4: "Oh, man, what a disaster... The boss is going to be furious...", - 5: "You beat me... Do you think the boss will make me walk the plank for this?" - }, - }, - "galactic_grunt": { - "encounter": { - 1: "Don't mess with Team Galactic!", - 2: "Witness the power of our technology and the future we envision!", - 3: "In the name of Team Galactic, I'll eliminate anyone who stands in our way!", - 4: "Get ready to lose!", - 5: "Hope you're ready for a cosmic beatdown!" - }, - "victory": { - 1: "Shut down...", - 2: "This setback means nothing in the grand scheme.", - 3: "Our plans are bigger than this defeat.", - 4: "How?!", - 5: "Note to self: practice Pokémon battling, ASAP." - }, - }, - "plasma_grunt": { - "encounter": { - 1: "We won't tolerate people who have different ideas!", - 2: "If I win against you, release your Pokémon!", - 3: "If you get in the way of Team Plasma, I'll take care of you!", - 4: "Team Plasma will liberate Pokémon from selfish humans like you!", - 5: "Our hairstyles are out of this world... but our battling skills? You'll find out soon enough." - }, - "victory": { - 1: "Plasmaaaaaaaaa!", - 2: "How could I lose...", - 3: "...What a weak Pokémon, I'll just have to go steal some better ones!", - 4: "Great plans are always interrupted.", - 5: "This is bad... Badbadbadbadbadbadbad! Bad for Team Plasma! Or Plasbad, for short!" - }, - }, - "flare_grunt": { - "encounter": { - 1: "Your Pokémon are no match for the elegance of Team Flare.", - 2: "Hope you brought your sunglasses, because things are about to get bright!", - 3: "Team Flare will cleanse the world of imperfection!", - 4: "Prepare to face the brilliance of Team Flare!", - 5: "Fashion is most important to us!" - }, - "victory": { - 1: "The future doesn't look bright for me.", - 2: "Perhaps there's more to battling than I thought. Back to the drawing board.", - 3: "Gahh?! I lost?!", - 4: "Even in defeat, Team Flare's elegance shines through.", - 5: "You may have beaten me, but when I lose, I go out in style!" - }, - }, - "rocket_boss_giovanni_1": { - "encounter": { - 1: "So! I must say, I am impressed you got here!" - }, - "victory": { - 1: "WHAT! This cannot be!" - }, - "defeat": { - 1: "Mark my words. Not being able to measure your own strength shows that you are still a child." - } - }, - "rocket_boss_giovanni_2": { - "encounter": { - 1: "My old associates need me... Are you going to get in my way?" - }, - "victory": { - 1: "How is this possible...? The precious dream of Team Rocket has become little more than an illusion..." - }, - "defeat": { - 1: "Team Rocket will be reborn again, and I will rule the world!" - } - }, - "magma_boss_maxie_1": { - "encounter": { - 1: "I will bury you by my own hand. I hope you appreciate this honor!" - }, - "victory": { - 1: "Ugh! You are... quite capable...\nI fell behind, but only by an inch..." - }, - "defeat": { - 1: "Team Magma will prevail!" - } - }, - "magma_boss_maxie_2": { - "encounter": { - 1: `You are the final obstacle remaining between me and my goals. - $Brace yourself for my ultimate attack! Fuhahaha!` - }, - "victory": { - 1: "This... This is not.. Ngh..." - }, - "defeat": { - 1: "And now... I will transform this planet to a land ideal for humanity." - } - }, - "aqua_boss_archie_1": { - "encounter": { - 1: "I'm the leader of Team Aqua, so I'm afraid it's the rope's end for you." - }, - "victory": { - 1: "Let's meet again somewhere. I'll be sure to remember that face." - }, - "defeat": { - 1: "Brilliant! My team won't hold back now!" - } - }, - "aqua_boss_archie_2": { - "encounter": { - 1: "I've been waiting so long for this day to come.\nThis is the true power of my team!" - }, - "victory": { - 1: "Like I figured..." - }, - "defeat": { - 1: "I'll return everything in this world to its original, pure state!!" - } - }, - "galactic_boss_cyrus_1": { - "encounter": { - 1: `You were compelled to come here by such vacuous sentimentality. - $I will make you regret paying heed to your heart!` - }, - "victory": { - 1: "Interesting. And quite curious." - }, - "defeat": { - 1: "I will create my new world..." - } - }, - "galactic_boss_cyrus_2": { - "encounter": { - 1: `So we meet again. It seems our fates have become intertwined. - $But here and now, I will finally break that bond!` - }, - "victory": { - 1: "How? How? HOW?!" - }, - "defeat": { - 1: "Farewell." - } - }, - "plasma_boss_ghetsis_1": { - "encounter": { - 1: "I won't allow anyone to stop me! No matter who does what!" - }, - "victory": { - 1: "How can this be? I'm the creator of Team Plasma! I'm perfect!" - }, - "defeat": { - 1: "I am the perfect ruler of a perfect new world! Mwa ha ha!" - } - }, - "plasma_boss_ghetsis_2": { - "encounter": { - 1: "Come now! I want to see your face at the moment you lose all hope!" - }, - "victory": { - 1: "My calculations... No! My careful schemes! The world should be mine!" - }, - "defeat": { - 1: "Kyurem! Use Absofusion!" - } - }, - "flare_boss_lysandre_1": { - "encounter": { - 1: "Do you want to stop me? Show me in battle." - }, - "victory": { - 1: "You are here to stop me. But I ask you to wait. " - }, - "defeat": { - 1: "Pokemon...Shall no longer exist." - } - }, - "flare_boss_lysandre_2": { - "encounter": { - 1: "The future you want, or the future I want... Let us see which one is more deserving, shall we?" - }, - "victory": { - 1: "Whaugh!" - }, - "defeat": { - 1: "Fools with no vision will continue to befoul this beautiful world." - } - }, - "brock": { - "encounter": { - 1: "My expertise on Rock-type Pokémon will take you down! Come on!", - 2: "My rock-hard willpower will overwhelm you!", - 3: "Allow me to show you the true strength of my Pokémon!" - }, - "victory": { - 1: "Your Pokémon's strength have overcome my rock-hard defenses!", - 2: "The world is huge! I'm glad to have had a chance to battle you.", - 3: "Perhaps I should go back to pursuing my dream as a Pokémon Breeder…" - }, - "defeat": { - 1: "The best offense is a good defense!\nThat's my way of doing things!", - 2: "Come study rocks with me next time to better learn how to fight them!", - 3: "Hah, all my traveling around the regions is paying off!" - } - }, - "misty": { - "encounter": { - 1: "My policy is an all out offensive with Water-type Pokémon!", - 2: "Hiya, I'll show you the strength of my aquatic Pokémon!", - 3: "My dream was to go on a journey and battle powerful trainers…\nWill you be a sufficient challenge?" - }, - "victory": { - 1: "You really are strong… I'll admit that you are skilled…", - 2: "Grrr… You know you just got lucky, right?!", - 3: "Wow, you're too much! I can't believe you beat me!" - }, - "defeat": { - 1: "Was the mighty Misty too much for you?", - 2: "I hope you saw my Pokémon's elegant swimming techniques!", - 3: "Your Pokémon were no match for my pride and joys!" - } - }, - "lt_surge": { - "encounter": { - 1: "My Electric Pokémon saved me during the war! I'll show you how!", - 2: "Ten-hut! I'll shock you into surrender!", - 3: "I'll zap you just like I do to all my enemies in battle!" - }, - "victory": { - 1: "Whoa! Your team's the real deal, kid!", - 2: "Aaargh, you're strong! Even my electric tricks lost against you.", - 3: "That was an absolutely shocking loss!" - }, - "defeat": { - 1: "Oh yeah! When it comes to Electric-type Pokémon, I'm number one in the world!", - 2: "Hahaha! That was an electrifying battle, kid!", - 3: "A Pokémon battle is war, and I have showed you first-hand combat!" - } - }, - "erika": { - "encounter": { - 1: "Ah, the weather is lovely here…\nOh, a battle? Very well then.", - 2: "My Pokémon battling skills rival that of my flower arranging skills.", - 3: "Oh, I hope the pleasant aroma of my Pokémon doesn't put me to sleep again…", - 4: "Seeing flowers in a garden is so soothing." - }, - "victory": { - 1: "Oh! I concede defeat.", - 2: "That match was most delightful.", - 3: "Ah, it appears it is my loss…", - 4: "Oh, my goodness." - }, - "defeat": { - 1: "I was afraid I would doze off…", - 2: "Oh my, it seems my Grass Pokémon overwhelmed you.", - 3: "That battle was such a soothing experience.", - 4: "Oh… Is that all?" - } - }, - "janine": { - "encounter": { - 1: "I am mastering the art of poisonous attacks.\nI shall spar with you today!", - 2: "Father trusts that I can hold my own.\nI will prove him right!", - 3: "My ninja techniques are only second to my Father's!\nCan you keep up?" - }, - "victory": { - 1: "Even now, I still need training… I understand.", - 2: "Your battle technique has outmatched mine.", - 3: "I'm going to really apply myself and improve my skills." - }, - "defeat": { - 1: "Fufufu… the poison has sapped all your strength to battle.", - 2: "Ha! You didn't stand a chance against my superior ninja skills!", - 3: "Father's faith in me has proven to not be misplaced." - } - }, - "sabrina": { - "encounter": { - 1: "Through my psychic ability, I had a vision of your arrival!", - 2: "I dislike fighting, but if you wish, I will show you my powers!", - 3: "I can sense great ambition in you. I shall see if it not unfounded." - }, - "victory": { - 1: "Your power… It far exceeds what I foresaw…", - 2: "I failed to accurately predict your power.", - 3: "Even with my immense psychic powers, I cannot sense another as strong as you." - }, - "defeat": { - 1: "This victory… It is exactly as I foresaw in my visions!", - 2: "Perhaps it was another I sensed a great desire in…", - 3: "Hone your abilities before recklessly charging into battle.\nYou never know what the future may hold if you do…" - } - }, - "blaine": { - "encounter": { - 1: "Hah! Hope you brought a Burn Heal!", - 2: "My fiery Pokémon will incinerate all challengers!", - 3: "Get ready to play with fire!" - }, - "victory": { - 1: "I have burned down to nothing! Not even ashes remain!", - 2: "Didn't I stoke the flames high enough?", - 3: "I'm all burned out… But this makes my motivation to improve burn even hotter!" - }, - "defeat": { - 1: "My raging inferno cannot be quelled!", - 2: "My Pokémon have been powered up with the heat from this victory!", - 3: "Hah! My passion burns brighter than yours!" - } - }, - "giovanni": { - "encounter": { - 1: "I, the leader of Team Rocket, will make you feel a world of pain!", - 2: "My training here will be vital before I am to face my old associates again.", - 3: "I do not think you are prepared for the level of failure you are about to experience!" - }, - "victory": { - 1: "WHAT! Me, lose?! There is nothing I wish to say to you!", - 2: "Hmph… You could never understand what I hope to achieve.", - 3: "This defeat is merely delaying the inevitable.\nI will rise Team Rocket from the ashes in due time." - }, - "defeat": { - 1: "Not being able to measure your own strength shows that you are still but a child.", - 2: "Do not try to interfere with me again.", - 3: "I hope you understand how foolish challenging me was." - } - }, - "roxanne": { - "encounter": { - 1: "Would you kindly demonstrate how you battle?", - 2: "You can learn many things by battling many trainers.", - 3: "Oh, you caught me strategizing.\nWould you like to battle?" - }, - "victory": { - 1: "Oh, I appear to have lost.\nI understand.", - 2: "It seems that I still have so much more to learn when it comes to battle.", - 3: "I'll take what I learned here today to heart." - }, - "defeat": { - 1: "I have learned many things from our battle.\nI hope you have too.", - 2: "I look forward to battling you again.\nI hope you'll use what you've learned here.", - 3: "I won due to everything I have learned." - } - }, - "brawly": { - "encounter": { - 1: "Oh man, a challenger!\nLet's see what you can do!", - 2: "You seem like a big splash.\nLet's battle!", - 3: "Time to create a storm!\nLet's go!" - }, - "victory": { - 1: "Oh woah, you've washed me out!", - 2: "You surfed my wave and crashed me down!", - 3: "I feel like I'm lost in Granite Cave!" - }, - "defeat": { - 1: "Haha, I surfed the big wave!\nChallenge me again sometime.", - 2: "Surf with me again some time!", - 3: "Just like the tides come in and out, I hope you return to challenge me again." - } - }, - "wattson": { - "encounter": { - 1: "Time to get shocked!\nWahahahaha!", - 2: "I'll make sparks fly!\nWahahahaha!", - 3: "I hope you brought Paralyz Heal!\nWahahahaha!" - }, - "victory": { - 1: "Seems like I'm out of charge!\nWahahahaha!", - 2: "You've completely grounded me!\nWahahahaha!", - 3: "Thanks for the thrill!\nWahahahaha!" - }, - "defeat": { - 1: "Recharge your batteries and challenge me again sometime!\nWahahahaha!", - 2: "I hope you found our battle electrifying!\nWahahahaha!", - 3: "Aren't you shocked I won?\nWahahahaha!" - } - }, - "flannery": { - "encounter": { - 1: "Nice to meet you! Wait, no…\nI will crush you!", - 2: "I've only been a leader for a little while, but I'll smoke you!", - 3: "It's time to demonstrate the moves my grandfather has taught me! Let's battle!" - }, - "victory": { - 1: "You remind me of my grandfather…\nNo wonder I lost.", - 2: "Am I trying too hard?\nI should relax, can't get too heated.", - 3: "Losing isn't going to smother me out.\nTime to reignite training!" - }, - "defeat": { - 1: "I hope I've made my grandfather proud…\nLet's battle again some time.", - 2: "I…I can't believe I won!\nDoing things my way worked!", - 3: "Let's exchange burning hot moves again soon!" - } - }, - "norman": { - "encounter": { - 1: "I'm surprised you managed to get here.\nLet's battle.", - 2: "I'll do everything in my power as a Gym Leader to win.\nLet's go!", - 3: "You better give this your all.\nIt's time to battle!" - }, - "victory": { - 1: "I lost to you…?\nRules are rules, though.", - 2: "Was moving from Olivine a mistake…?", - 3: "I can't believe it.\nThat was a great match." - }, - "defeat": { - 1: "We both tried our best.\nI hope we can battle again soon.", - 2: "You should try challenging my kid instead.\nYou might learn something!", - 3: "Thank you for the excellent battle.\nBetter luck next time." - } - }, - "winona": { - "encounter": { - 1: "I've been soaring the skies looking for prey…\nAnd you're my target!", - 2: "No matter how our battle is, my Flying Pokémon and I will triumph with grace. Let's battle!", - 3: "I hope you aren't scared of heights.\nLet's ascend!" - }, - "victory": { - 1: "You're the first Trainer I've seen with more grace than I.\nExcellently played.", - 2: "Oh, my Flying Pokémon have plummeted!\nVery well.", - 3: "Though I may have fallen, my Pokémon will continue to fly!" - }, - "defeat": { - 1: "My Flying Pokémon and I will forever dance elegantly!", - 2: "I hope you enjoyed our show.\nOur graceful dance is finished.", - 3: "Won't you come see our elegant choreography again?" - } - }, - "tate": { - "encounter": { - 1: "Hehehe…\nWere you surprised to see me without my sister?", - 2: "I can see what you're thinking…\nYou want to battle!", - 3: "How can you defeat someone…\nWho knows your every move?" - }, - "victory": { - 1: "It can't be helped…\nI miss Liza…", - 2: "Your bond with your Pokémon was stronger than mine.", - 3: "If I were with Liza, we would have won.\nWe can finish each other's thoughts!" - }, - "defeat": { - 1: "My Pokémon and I are superior!", - 2: "If you can't even defeat me, you'll never be able to defeat Liza either.", - 3: "It's all thanks to my strict training with Liza.\nI can make myself one with Pokémon." - } - }, - "liza": { - "encounter": { - 1: "Fufufu…\nWere you surprised to see me without my brother?", - 2: "I can determine what you desire…\nYou want to battle, don't you?", - 3: "How can you defeat someone…\nWho's one with their Pokémon?" - }, - "victory": { - 1: "It can't be helped…\nI miss Tate…", - 2: "Your bond with your Pokémon…\nIt's stronger than mine.", - 3: "If I were with Tate, we would have won.\nWe can finish each other's sentences!" - }, - "defeat": { - 1: "My Pokémon and I are victorious.", - 2: "If you can't even defeat me, you'll never be able to defeat Tate either.", - 3: "It's all thanks to my strict training with Tate.\nI can synchronize myself with my Pokémon." - } - }, - "juan": { - "encounter": { - 1: "Now's not the time to act coy.\nLet's battle!", - 2: "Ahahaha, You'll be witness to my artistry with Water Pokémon!", - 3: "A typhoon approaches!\nWill you be able to test me?", - 4: "Please, you shall bear witness to our artistry.\nA grand illusion of water sculpted by my Pokémon and myself!" - }, - "victory": { - 1: "You may be a genius who can take on Wallace!", - 2: "I focused on elegance while you trained.\nIt's only natural that you defeated me.", - 3: "Ahahaha!\nVery well, You have won this time.", - 4: "From you, I sense the brilliant shine of skill that will overcome all." - }, - "defeat": { - 1: "My Pokémon and I have sculpted an illusion of Water and come out victorious.", - 2: "Ahahaha, I have won, and you have lost.", - 3: "Shall I loan you my outfit? It may help you battle!\nAhahaha, I jest!", - 4: "I'm the winner! Which is to say, you lost." - } - }, - "crasher_wake": { - "encounter": { - 1: "Crash! Crash! Watch out!\nCrasher Wake…is…heeere!", - 2: "Crash! Crash! Crasher Wake!", - 3: "I'm the tidal wave of power to wash you away!" - }, - "victory": { - 1: "That puts a grin on my face!\nGuhahaha! That was a blast!", - 2: "Hunwah! It's gone and ended!\nHow will I say this…\nI want more! I wanted to battle a lot more!", - 3: "WHAAAAT!?" - }, - "defeat": { - 1: "Yeeeeah! That's right!", - 2: "I won, but I want more! I wanted to battle a lot more!", - 3: "So long!" - } - }, - "falkner": { - "encounter": { - 1: "I'll show you the real power of the magnificent bird Pokémon!", - 2: "Winds, stay with me!", - 3: "Dad! I hope you're watching me battle from above!" - }, - "victory": { - 1: "I understand… I'll bow out gracefully.", - 2: "A defeat is a defeat. You are strong indeed.", - 3: "…Shoot! Yeah, I lost." - }, - "defeat": { - 1: "Dad! I won with your cherished bird Pokémon…", - 2: "Bird Pokémon are the best after all!", - 3: "Feels like I'm catching up to my dad!" - } - }, - "nessa": { - "encounter": { - 1: "No matter what kind of plan your refined mind may be plotting, my partner and I will be sure to sink it.", - 2: "I'm not here to chat. I'm here to win!", - 3: "This is a little gift from my Pokémon… I hope you can take it!" - }, - "victory": { - 1: "You and your Pokémon are just too much…", - 2: "How…? How can this be?!", - 3: "I was totally washed away!" - }, - "defeat": { - 1: "The raging wave crashes again!", - 2: "Time to ride the wave of victory!", - 3: "Ehehe!" - } - }, - "melony": { - "encounter": { - 1: "I'm not going to hold back!", - 2: "All righty, I suppose we should get started.", - 3: "I'll freeze you solid!" - }, - "victory": { - 1: "You… You're pretty good, huh?", - 2: "If you find Gordie around, be sure to give him a right trashing, would you?", - 3: "I think you took breaking the ice a little too literally…" - }, - "defeat": { - 1: "Now do you see how severe battles can be?", - 2: "Hee! Looks like I went and won again!", - 3: "Are you holding back?" - } - }, - "marlon": { - "encounter": { - 1: "You look strong! Shoots! Let's start!", - 2: "I'm strong like the ocean's wide. You're gonna get swept away, fo' sho'.", - 3: "Oh ho, so I'm facing you! That's off the wall." - }, - "victory": { - 1: "You totally rocked that! You're raising some wicked Pokémon. You got this Trainer thing down!", - 2: "You don't just look strong, you're strong fo' reals! Eh, I was swept away, too!", - 3: "You're strong as a gnarly wave!" - }, - "defeat": { - 1: "You're tough, but it's not enough to sway the sea, 'K!", - 2: "Hee! Looks like I went and won again!", - 3: "Sweet, sweet victory!" - } - }, - "shauntal": { - "encounter": { - 1: "Excuse me. You're a challenger, right?\nI'm the Elite Four's Ghost-type Pokémon user, Shauntal, and I shall be your opponent.", - 2: "I absolutely love writing about Trainers who come here and the Pokémon they train.\nCould I use you and your Pokémon as a subject?", - 3: "Every person who works with Pokémon has a story to tell.\nWhat story is about to be told?" - }, - "victory": { - 1: "Wow. I'm dumbstruck!", - 2: "S-sorry! First, I must apologize to my Pokémon…\n\nI'm really sorry you had a bad experience because of me!", - 3: "Even in light of that, I'm still one of the Elite Four!" - }, - "defeat": { - 1: "Eheh.", - 2: "That gave me excellent material for my next novel!", - 3: "And so, another tale ends…" - } - }, - "marshal": { - "encounter": { - 1: "My mentor, Alder, sees your potential as a Trainer and is taking an interest in you.\nIt is my intention to test you--to take you to the limits of your strength. Kiai!", - 2: "Victory, decisive victory, is my intention! Challenger, here I come!", - 3: "In myself, I seek to develop the strength of a fighter and shatter any weakness in myself!\nPrevailing with the force of my convictions!" - }, - "victory": { - 1: "Whew! Well done!", - 2: "As your battles continue, aim for even greater heights!", - 3: "The strength shown by you and your Pokémon has deeply impressed me…" - }, - "defeat": { - 1: "Hmm.", - 2: "That was good battle.", - 3: "Haaah! Haaah! Haiyaaaah!" - } - }, - "cheren": { - "encounter": { - 1: "You remind me of an old friend. That makes me excited about this Pokémon battle!", - 2: `Pokémon battles have no meaning if you don't think why you battle. - $Or better said, it makes battling together with Pokémon meaningless.`, - 3: "My name's Cheren! I'm a Gym Leader and a teacher! Pleasure to meet you." - }, - "victory": { - 1: "Thank you! I saw what was missing in me.", - 2: "Thank you! I feel like I saw a little of the way toward my ideals.", - 3: "Hmm… This is problematic." - }, - "defeat": { - 1: "As a Gym Leader, I aim to be a wall for you to overcome.", - 2: "All right!", - 3: "I made it where I am because Pokémon were by my side.\nPerhaps we need to think about why Pokémon help us not in terms of Pokémon and Trainers but as a relationship between living beings." - } - }, - "chili": { - "encounter": { - 1: "Yeeeeooow! Time to play with FIRE!! I'm the strongest of us brothers!", - 2: "Ta-da! The Fire-type scorcher Chili--that's me--will be your opponent!", - 3: "I'm going to show you what me and my blazing Fire types can do!" - }, - "victory": { - 1: "You got me. I am… burned… out…", - 2: "Whoa ho! You're on fire!", - 3: "Augh! You got me!" - }, - "defeat": { - 1: "I'm on fire! Play with me, and you'll get burned!", - 2: "When you play with fire, you get burned!", - 3: "I mean, c'mon, your opponent was me! You didn't have a chance!" - } - }, - "cilan": { - "encounter": { - 1: `Nothing personal... No hard feelings... Me and my Grass-type Pokémon will... - $Um... We're gonna battle come what may.`, - 2: "So, um, if you're OK with me, I'll, um, put everything I've got into being, er, you know, your opponent.", - 3: "OK… So, um, I'm Cilan, I like Grass-type Pokémon." - }, - "victory": { - 1: "Er… Is it over now?", - 2: `…What a surprise. You are very strong, aren't you? - $I guess my brothers wouldn't have been able to defeat you either…`, - 3: "…Huh. Looks like my timing was, um, off?" - }, - "defeat": { - 1: "Huh? Did I win?", - 2: `I guess… - $I suppose I won, because I've been competing with my brothers Chili and Cress, and we all were able to get tougher.`, - 3: "It…it was quite a thrilling experience…" - } - }, - "roark": { - "encounter": { - 1: "I need to see your potential as a Trainer. And, I'll need to see the toughness of the Pokémon that battle with you!", - 2: "Here goes! These are my rocking Pokémon, my pride and joy!", - 3: "Rock-type Pokémon are simply the best!", - 4: "I need to see your potential as a Trainer. And, I'll need to see the toughness of the Pokémon that battle with you!" - }, - "victory": { - 1: "W-what? That can't be! My buffed-up Pokémon!", - 2: "…We lost control there. Next time I'd like to challenge you to a Fossil-digging race underground.", - 3: "With skill like yours, it's natural for you to win.", - 4: "Wh-what?! It can't be! Even that wasn't enough?", - 5: "I blew it." - }, - "defeat": { - 1: "See? I'm proud of my rocking battle style!", - 2: "Thanks! The battle gave me confidence that I may be able to beat my dad!", - 3: "I feel like I just smashed through a really stubborn boulder!" - } - }, - "morty": { - "encounter": { - 1: `With a little more, I could see a future in which I meet the legendary Pokémon. - $You're going to help me reach that level!`, - 2: `It's said that a rainbow-hued Pokémon will come down to appear before a truly powerful Trainer. - $I believed that tale, so I have secretly trained here all my life. As a result, I can now see what others cannot. - $I see a shadow of the person who will make the Pokémon appear. - $I believe that person is me! You're going to help me reach that level!`, - 3: "Whether you choose to believe or not, mystic power does exist.", - 4: "You can bear witness to the fruits of my training.", - 5: "You must make your soul one with that of Pokémon. Can you do this?", - 6: "Say, do you want to be part of my training?" - }, - "victory": { - 1: "I'm not good enough yet…", - 2: `I see… Your journey has taken you to far-away places and you have witnessed much more than I. - $I envy you for that…`, - 3: "How is this possible…", - 4: `I don't think our potentials are so different. - $But you seem to have something more than that… So be it.`, - 5: "Guess I need more training.", - 6: "That's a shame." - }, - "defeat": { - 1: "I moved… one step ahead again.", - 2: "Fufufu…", - 3: "Wh-what?! It can't be! Even that wasn't enough?", - 4: "I feel like I just smashed through a really stubborn boulder!", - 5: "Ahahahah!", - 6: "I knew I would win!" - } - }, - "crispin": { - "encounter": { - 1: "I wanna win, so that's exactly what I'll do!", - 2: "I battle because I wanna battle! And you know what? That's how it should be!" - }, - "victory": { - 1: "I wanted to win…but I lost!", - 2: "I lost…'cause I couldn't win!" - }, - "defeat": { - 1: "Hey, wait a sec. Did I just win? I think I just won! Talk about satisfying!", - 2: "Wooo! That was amazing!" - } - }, - "amarys": { - "encounter": { - 1: `I want to be the one to help a certain person. That being the case, I cannot afford to lose. - $… Our battle starts now.`, - }, - "victory": { - 1: "I am… not enough, I see." - }, - "defeat": { - 1: "Victory belongs to me. Well fought." - } - }, - "lacey": { - "encounter": { - 1: "I'll be facing you with my usual party as a member of the Elite Four." - }, - "victory": { - 1: "That was a great battle!" - }, - "defeat": { - 1: "Let's give your Pokémon a nice round of applause for their efforts!" - } - }, - "drayton": { - "encounter": { - 1: `Man, I love chairs. Don't you love chairs? What lifesavers. - $I don't get why everyone doesn't just sit all the time. Standing up's tiring work!`, - }, - "victory": { - 1: "Guess I should've expected that!" - }, - "defeat": { - 1: "Heh heh! Don't mind me, just scooping up a W over here. I get it if you're upset, but don't go full Kieran on me, OK?" - } - }, - "ramos": { - "encounter": { - 1: `Did yeh enjoy the garden playground I made with all these sturdy plants o' mine? - $Their strength is a sign o' my strength as a gardener and a Gym Leader! Yeh sure yer up to facing all that?`, - }, - "victory": { - 1: "Yeh believe in yer Pokémon… And they believe in yeh, too… It was a fine battle, sprout." - }, - "defeat": { - 1: "Hohoho… Indeed. Frail little blades o' grass'll break through even concrete." - } - }, - "viola": { - "encounter": { - 1: `Whether it's the tears of frustration that follow a loss or the blossoming of joy that comes with victory… - $They're both great subjects for my camera! Fantastic! This'll be just fantastic! - $Now come at me!`, - 2: "My lens is always focused on victory--I won't let anything ruin this shot!" - }, - "victory": { - 1: "You and your Pokémon have shown me a whole new depth of field! Fantastic! Just fantastic!", - 2: `The world you see through a lens, and the world you see with a Pokémon by your side… - $The same world can look entirely different depending on your view.` - }, - "defeat": { - 1: "The photo from the moment of my victory will be a real winner, all right!", - 2: "Yes! I took some great photos!" - } - }, - "candice": { - "encounter": { - 1: `You want to challenge Candice? Sure thing! I was waiting for someone tough! - $But I should tell you, I'm tough because I know how to focus.`, - 2: `Pokémon, fashion, romance… It's all about focus! - $I'll show you just what I mean. Get ready to lose!` - }, - "victory": { - 1: "I must say, I'm warmed up to you! I might even admire you a little.", - 2: `Wow! You're great! You've earned my respect! - $I think your focus and will bowled us over totally. ` - }, - "defeat": { - 1: "I sensed your will to win, but I don't lose!", - 2: "See? Candice's focus! My Pokémon's focus is great, too!" - } - }, - "gardenia": { - "encounter": { - 1: "You have a winning aura about you. So, anyway, this will be fun. Let's have our battle!" - }, - "victory": { - 1: "Amazing! You're very good, aren't you?" - }, - "defeat": { - 1: "Yes! My Pokémon and I are perfectly good!" - } - }, - "aaron": { - "encounter": { - 1: "Ok! Let me take you on!" - }, - "victory": { - 1: "Battling is a deep and complex affair…" - }, - "defeat": { - 1: "Victory over an Elite Four member doesn't come easily." - } - }, - "cress": { - "encounter": { - 1: "That is correct! It shall be I and my esteemed Water types that you must face in battle!" - }, - "victory": { - 1: "Lose? Me? I don't believe this." - }, - "defeat": { - 1: "This is the appropriate result when I'm your opponent." - } - }, - "allister": { - "encounter": { - 1: "'M Allister.\nH-here… I go…" - }, - "victory": { - 1: `I nearly lost my mask from the shock… That was… - $Wow. I can see your skill for what it is.`, - }, - "defeat": { - 1: "Th-that was ace!" - } - }, - "clay": { - "encounter": { - 1: "Harrumph! Kept me waitin', didn't ya, kid? All right, time to see what ya can do!" - }, - "victory": { - 1: "Man oh man… It feels good to go all out and still be defeated!" - }, - "defeat": { - 1: `What's important is how ya react to losin'. - $That's why folks who use losin' as fuel to get better are tough.`, - } - }, - "kofu": { - "encounter": { - 1: "I'mma serve you a full course o' Water-type Pokémon! Don't try to eat 'em, though!" - }, - "victory": { - 1: "Vaultin' Veluza! Yer a lively one, aren't ya! A little TOO lively, if I do say so myself!" - }, - "defeat": { - 1: "You come back to see me again now, ya hear?" - } - }, - "tulip": { - "encounter": { - 1: "Allow me to put my skills to use to make your cute little Pokémon even more beautiful!" - }, - "victory": { - 1: "Your strength has a magic to it that cannot be washed away." - }, - "defeat": { - 1: "You know, in my line of work, people who lack talent in one area or the other often fade away quickly—never to be heard of again." - } - }, - "sidney": { - "encounter": { - 1: `I like that look you're giving me. I guess you'll give me a good match. - $That's good! Looking real good! All right! - $You and me, let's enjoy a battle that can only be staged here!`, - }, - "victory": { - 1: "Well, how do you like that? I lost! Eh, it was fun, so it doesn't matter." - }, - "defeat": { - 1: "No hard feelings, alright?" - } - }, - "phoebe": { - "encounter": { - 1: `While I trained, I gained the ability to commune with Ghost-type Pokémon. - $Yes, the bond I developed with Pokémon is extremely tight. - $So, come on, just try and see if you can even inflict damage on my Pokémon!`, - }, - "victory": { - 1: "Oh, darn. I've gone and lost." - }, - "defeat": { - 1: "I look forward to battling you again sometime!" - } - }, - "glacia": { - "encounter": { - 1: `All I have seen are challenges by weak Trainers and their Pokémon. - $What about you? It would please me to no end if I could go all out against you!`, - }, - "victory": { - 1: `You and your Pokémon… How hot your spirits burn! - $The all-consuming heat overwhelms. - $It's no surprise that my icy skills failed to harm you.`, - }, - "defeat": { - 1: "A fiercely passionate battle, indeed." - } - }, - "drake": { - "encounter": { - 1: `For us to battle with Pokémon as partners, do you know what it takes? Do you know what is needed? - $If you don't, then you will never prevail over me!`, - }, - "victory": { - 1: "Superb, it should be said." - }, - "defeat": { - 1: "I gave my all for that battle!" - } - }, - "wallace": { - "encounter": { - 1: `There's something about you… A difference in your demeanor. - $I think I sense that in you. Now, show me. Show me the power you wield with your Pokémon. - $And I, in turn, shall present you with a performance of illusions in water by me and my Pokémon!`, - }, - "victory": { - 1: `Bravo. I realize now your authenticity and magnificence as a Pokémon Trainer. - $I find much joy in having met you and your Pokémon. You have proven yourself worthy.`, - }, - "defeat": { - 1: "A grand illusion!" - } - }, - "lorelei": { - "encounter": { - 1: `No one can best me when it comes to icy Pokémon! Freezing moves are powerful! - $Your Pokémon will be at my mercy when they are frozen solid! Hahaha! Are you ready?`, - }, - "victory": { - 1: "How dare you!" - }, - "defeat": { - 1: "There's nothing you can do once you're frozen." - } - }, - "will": { - "encounter": { - 1: `I have trained all around the world, making my psychic Pokémon powerful. - $I can only keep getting better! Losing is not an option!`, - }, - "victory": { - 1: "I… I can't… believe it…" - }, - "defeat": { - 1: "That was close. I wonder what it is that you lack." - } - }, - "malva": { - "encounter": { - 1: `I feel like my heart might just burst into flames. - $I'm burning up with my hatred for you, runt!`, - }, - "victory": { - 1: "What news… So a new challenger has defeated Malva!" - }, - "defeat": { - 1: "I am delighted! Yes, delighted that I could squash you beneath my heel." - } - }, - "hala": { - "encounter": { - 1: "Old Hala is here to make you holler!" - }, - "victory": { - 1: "I could feel the power you gained on your journey." - }, - "defeat": { - 1: "Haha! What a delightful battle!" - } - }, - "molayne": { - "encounter": { - 1: `I gave the captain position to my cousin Sophocles, but I'm confident in my ability. - $My strength is like that of a supernova!`, - }, - "victory": { - 1: "I certainly found an interesting Trainer to face!" - }, - "defeat": { - 1: "Ahaha. What an interesting battle." - } - }, - "rika": { - "encounter": { - 1: "I'd say I'll go easy on you, but… I'd be lying! Think fast!" - }, - "victory": { - 1: "Not bad, kiddo." - }, - "defeat": { - 1: "Nahahaha! You really are something else, kiddo!" - } - }, - "bruno": { - "encounter": { - 1: "We will grind you down with our superior power! Hoo hah!" - }, - "victory": { - 1: "Why? How could I lose?" - }, - "defeat": { - 1: "You can challenge me all you like, but the results will never change!" - } - }, - "bugsy": { - "encounter": { - 1: "I'm Bugsy! I never lose when it comes to bug Pokémon!" - }, - "victory": { - 1: "Whoa, amazing! You're an expert on Pokémon!\nMy research isn't complete yet. OK, you win." - }, - "defeat": { - 1: "Thanks! Thanks to our battle, I was also able to make progress in my research!" - } - }, - "koga": { - "encounter": { - 1: "Fwahahahaha! Pokémon are not merely about brute force--you shall see soon enough!" - }, - "victory": { - 1: "Ah! You've proven your worth!" - }, - "defeat": { - 1: "Have you learned to fear the techniques of the ninja?" - } - }, - "bertha": { - "encounter": { - 1: "Well, would you show this old lady how much you've learned?" - }, - "victory": { - 1: `Well! Dear child, I must say, that was most impressive. - $Your Pokémon believed in you and did their best to earn you the win. - $Even though I've lost, I find myself with this silly grin!`, - }, - "defeat": { - 1: "Hahahahah! Looks like this old lady won!" - } - }, - "lenora": { - "encounter": { - 1: "Well then, challenger, I'm going to research how you battle with the Pokémon you've so lovingly raised!" - }, - "victory": { - 1: "My theory about you was correct. You're more than just talented… You're motivated! I salute you!" - }, - "defeat": { - 1: "Ah ha ha! If you lose, make sure to analyze why, and use that knowledge in your next battle!" - } - }, - "siebold": { - "encounter": { - 1: "As long as I am alive, I shall strive onward to seek the ultimate cuisine... and the strongest opponents in battle!" - }, - "victory": { - 1: "I shall store my memory of you and your Pokémon forever away within my heart." - }, - "defeat": { - 1: `Our Pokémon battle was like food for my soul. It shall keep me going. - $That is how I will pay my respects to you for giving your all in battle!`, - } - }, - "roxie": { - "encounter": { - 1: "Get ready! I'm gonna knock some sense outta ya!" - }, - "victory": { - 1: "Wild! Your reason's already more toxic than mine!" - }, - "defeat": { - 1: "Hey, c'mon! Get serious! You gotta put more out there!" - } - }, - "olivia": { - "encounter": { - 1: "No introduction needed here. Time to battle me, Olivia!" - }, - "victory": { - 1: "Really lovely… Both you and your Pokémon…" - }, - "defeat": { - 1: "Mmm-hmm." - } - }, - "poppy": { - "encounter": { - 1: "Oooh! Do you wanna have a Pokémon battle with me?" - }, - "victory": { - 1: "Uagh?! Mmmuuuggghhh…" - }, - "defeat": { - 1: `Yaaay! I did it! I de-feet-ed you! You can come for… For… An avenge match? - $Come for an avenge match anytime you want!`, - } - }, - "agatha": { - "encounter": { - 1: "Pokémon are for battling! I'll show you how a real Trainer battles!" - }, - "victory": { - 1: "Oh my! You're something special, child!" - }, - "defeat": { - 1: "Bahaha. That's how a proper battle's done!" - } - }, - "flint": { - "encounter": { - 1: "Hope you're warmed up, cause here comes the Big Bang!" - }, - "victory": { - 1: "Incredible! Your moves are so hot, they make mine look lukewarm!" - }, - "defeat": { - 1: "Huh? Is that it? I think you need a bit more passion." - } - }, - "grimsley": { - "encounter": { - 1: "The winner takes everything, and there's nothing left for the loser." - }, - "victory": { - 1: "When one loses, they lose everything… The next thing I'll look for will be victory, too!" - }, - "defeat": { - 1: "If somebody wins, the person who fought against that person will lose." - } - }, - "caitlin": { - "encounter": { - 1: `It's me who appeared when the flower opened up. You who have been waiting… - $You look like a Pokémon Trainer with refined strength and deepened kindness. - $What I look for in my opponent is superb strength… - $Please unleash your power to the fullest!`, - }, - "victory": { - 1: "My Pokémon and I learned so much! I offer you my thanks." - }, - "defeat": { - 1: "I aspire to claim victory with elegance and grace." - } - }, - "diantha": { - "encounter": { - 1: `Battling against you and your Pokémon, all of you brimming with hope for the future… - $Honestly, it just fills me up with energy I need to keep facing each new day! It does!`, - }, - "victory": { - 1: "Witnessing the noble spirits of you and your Pokémon in battle has really touched my heart…" - }, - "defeat": { - 1: "Oh, fantastic! What did you think? My team was pretty cool, right?" - } - }, - "wikstrom": { - "encounter": { - 1: `Well met, young challenger! Verily am I the famed blade of hardened steel, Duke Wikstrom! - $Let the battle begin! En garde!`, - }, - "victory": { - 1: "Glorious! The trust that you share with your honorable Pokémon surpasses even mine!" - }, - "defeat": { - 1: `What manner of magic is this? My heart, it doth hammer ceaselessly in my breast! - $Winning against such a worthy opponent doth give my soul wings--thus do I soar!`, - } - }, - "acerola": { - "encounter": { - 1: "Battling is just plain fun! Come on, I can take you!" - }, - "victory": { - 1: "I'm… I'm speechless! How did you do it?!" - }, - "defeat": { - 1: "Ehaha! What an amazing victory!" - } - }, - "larry_elite": { - "encounter": { - 1: `Hello there… It's me, Larry. - $I serve as a member of the Elite Four too, yes… Unfortunately for me.`, - }, - "victory": { - 1: "Well, that took the wind from under our wings…" - }, - "defeat": { - 1: "It's time for a meeting with the boss." - } - }, - "lance": { - "encounter": { - 1: "I've been waiting for you. Allow me to test your skill.", - 2: "I thought that you would be able to get this far. Let's get this started." - }, - "victory": { - 1: "You got me. You are magnificent!", - 2: "I never expected another trainer to beat me… I'm surprised." - }, - "defeat": { - 1: "That was close. Want to try again?", - 2: "It's not that you are weak. Don't let it bother you." - } - }, - "karen": { - "encounter": { - 1: "I am Karen. Would you care for a showdown with my Dark-type Pokémon?", - 2: "I am unlike those you've already met.", - 3: "You've assembled a charming team. Our battle should be a good one." - }, - "victory": { - 1: "No! I can't win. How did you become so strong?", - 2: "I will not stray from my chosen path.", - 3: "The Champion is looking forward to meeting you." - }, - "defeat": { - 1: "That's about what I expected.", - 2: "Well, that was relatively entertaining.", - 3: "Come visit me anytime." - } - }, - "milo": { - "encounter": { - 1: `Sure seems like you understand Pokémon real well. - $This is gonna be a doozy of a battle! - $I'll have to Dynamax my Pokémon if I want to win!`, - }, - "victory": { - 1: "The power of Grass has wilted… What an incredible Challenger!" - }, - "defeat": { - 1: "This'll really leave you in shock and awe." - } - }, - "lucian": { - "encounter": { - 1: `Just a moment, please. The book I'm reading has nearly reached its thrilling climax… - $The hero has obtained a mystic sword and is about to face their final trial… Ah, never mind. - $Since you've made it this far, I'll put that aside and battle you. - $Let me see if you'll achieve as much glory as the hero of my book!` - }, - "victory": { - 1: "I see… It appears you've put me in checkmate." - }, - "defeat": { - 1: "I have a reputation to uphold." - } - }, - "drasna": { - "encounter": { - 1: `You must be a strong Trainer. Yes, quite strong indeed… - $That's just wonderful news! Facing opponents like you and your team will make my Pokémon grow like weeds!` - }, - "victory": { - 1: "Oh, dear me. That sure was a quick battle… I do hope you'll come back again sometime!" - }, - "defeat": { - 1: "How can this be?" - } - }, - "kahili": { - "encounter": { - 1: "So, here you are… Why don't we see who the winds favor today, you… Or me?" - }, - "victory": { - 1: "It's frustrating to me as a member of the Elite Four, but it seems your strength is the real deal." - }, - "defeat": { - 1: "That was an ace!" - } - }, - "hassel": { - "encounter": { - 1: "Prepare to learn firsthand how the fiery breath of ferocious battle feels!" - }, - "victory": { - 1: `Fortune smiled on me this time, but… - $Judging from how the match went, who knows if I will be so lucky next time.`, - }, - "defeat": { - 1: "That was an ace!" - } - }, - "blue": { - "encounter": { - 1: "You must be pretty good to get this far." - }, - "victory": { - 1: "I've only lost to him and now to you… Him? Hee, hee…" - }, - "defeat": { - 1: "See? My power is what got me here." - } - }, - "piers": { - "encounter": { - 1: "Get ready for a mosh pit with me and my party! Spikemuth, it's time to rock!" - }, - "victory": { - 1: "Me an' my team gave it our best. Let's meet up again for a battle some time…" - }, - "defeat": { - 1: "My throat's ragged from shoutin'… But 'at was an excitin' battle!" - } - }, - "red": { - "encounter": { - 1: "…!" - }, - "victory": { - 1: "…?" - }, - "defeat": { - 1: "…!" - } - }, - "jasmine": { - "encounter": { - 1: "Oh… Your Pokémon are impressive. I think I will enjoy this." - }, - "victory": { - 1: "You are truly strong. I'll have to try much harder, too." - }, - "defeat": { - 1: "I never expected to win." - } - }, - "lance_champion": { - "encounter": { - 1: "I am still the Champion. I won't hold anything back." - }, - "victory": { - 1: "This is the emergence of a new Champion." - }, - "defeat": { - 1: "I successfully defended my Championship." - } - }, - "steven": { - "encounter": { - 1: `Tell me… What have you seen on your journey with your Pokémon? - $What have you felt, meeting so many other Trainers out there? - $Traveling this rich land… Has it awoken something inside you? - $I want you to come at me with all that you've learned. - $My Pokémon and I will respond in turn with all that we know!`, - }, - "victory": { - 1: "So I, the Champion, fall in defeat…" - }, - "defeat": { - 1: "That was time well spent! Thank you!" - } - }, - "cynthia": { - "encounter": { - 1: "I, Cynthia, accept your challenge! There won't be any letup from me!" - }, - "victory": { - 1: "No matter how fun the battle is, it will always end sometime…" - }, - "defeat": { - 1: "Even if you lose, never lose your love of Pokémon." - } - }, - "iris": { - "encounter": { - 1: `Know what? I really look forward to having serious battles with strong Trainers! - $I mean, come on! The Trainers who make it here are Trainers who desire victory with every fiber of their being! - $And they are battling alongside Pokémon that have been through countless difficult battles! - $If I battle with people like that, not only will I get stronger, my Pokémon will, too! - $And we'll get to know each other even better! OK! Brace yourself! - $I'm Iris, the Pokémon League Champion, and I'm going to defeat you!`, - }, - "victory": { - 1: "Aghhhh… I did my best, but we lost…" - }, - "defeat": { - 1: "Yay! We won!" - } - }, - "hau": { - "encounter": { - 1: `I wonder if a Trainer battles differently depending on whether they're from a warm region or a cold region. - $Let's test it out!`, - }, - "victory": { - 1: "That was awesome! I think I kinda understand your vibe a little better now!" - }, - "defeat": { - 1: "Ma-an, that was some kinda battle!" - } - }, - "geeta": { - "encounter": { - 1: `I decided to throw my hat in the ring once more. - $Come now… Show me the fruits of your training.`, - }, - "victory": { - 1: "I eagerly await news of all your achievements!" - }, - "defeat": { - 1: "What's the matter? This isn't all, is it?" - } - }, - "nemona": { - "encounter": { - 1: "Yesss! I'm so psyched! Time for us to let loose!" - }, - "victory": { - 1: "Well, that stinks, but I still had fun! I'll getcha next time!" - }, - "defeat": { - 1: "Well, that was a great battle! Fruitful for sure." - } - }, - "leon": { - "encounter": { - 1: "We're gonna have an absolutely champion time!" - }, - "victory": { - 1: `My time as Champion is over… - $But what a champion time it's been! - $Thank you for the greatest battle I've ever had!`, - }, - "defeat": { - 1: "An absolute champion time, that was!" - } - }, - "whitney": { - "encounter": { - 1: "Hey! Don't you think Pokémon are, like, super cute?" - }, - "victory": { - 1: "Waaah! Waaah! You're so mean!" - }, - "defeat": { - 1: "And that's that!" - } - }, - "chuck": { - "encounter": { - 1: "Hah! You want to challenge me? Are you brave or just ignorant?" - }, - "victory": { - 1: "You're strong! Would you please make me your apprentice?" - }, - "defeat": { - 1: "There. Do you realize how much more powerful I am than you?" - } - }, - "katy": { - "encounter": { - 1: "Don't let your guard down unless you would like to find yourself knocked off your feet!" - }, - "victory": { - 1: "All of my sweet little Pokémon dropped like flies!" - }, - "defeat": { - 1: "Eat up, my cute little Vivillon!" - } - }, - "pryce": { - "encounter": { - 1: "Youth alone does not ensure victory! Experience is what counts." - }, - "victory": { - 1: "Outstanding! That was perfect. Try not to forget what you feel now." - }, - "defeat": { - 1: "Just as I envisioned." - } - }, - "clair": { - "encounter": { - 1: "Do you know who I am? And you still dare to challenge me?" - }, - "victory": { - 1: "I wonder how far you can get with your skill level. This should be fascinating." - }, - "defeat": { - 1: "That's that." - } - }, - "maylene": { - "encounter": { - 1: `I've come to challenge you now, and I won't hold anything back. - $Please prepare yourself for battle!`, - }, - "victory": { - 1: "I admit defeat…" - }, - "defeat": { - 1: "That was awesome." - } - }, - "fantina": { - "encounter": { - 1: `You shall challenge me, yes? But I shall win. - $That is what the Gym Leader of Hearthome does, non?`, - }, - "victory": { - 1: "You are so fantastically strong. I know why I have lost." - }, - "defeat": { - 1: "I am so, so, very happy!" - } - }, - "byron": { - "encounter": { - 1: `Trainer! You're young, just like my son, Roark. - $With more young Trainers taking charge, the future of Pokémon is bright! - $So, as a wall for young people, I'll take your challenge!`, - }, - "victory": { - 1: "Hmm! My sturdy Pokémon--defeated!" - }, - "defeat": { - 1: "Gwahahaha! How were my sturdy Pokémon?!" - } - }, - "olympia": { - "encounter": { - 1: "An ancient custom deciding one's destiny. The battle begins!" - }, - "victory": { - 1: "Create your own path. Let nothing get in your way. Your fate, your future." - }, - "defeat": { - 1: "Our path is clear now." - } - }, - "volkner": { - "encounter": { - 1: `Since you've come this far, you must be quite strong… - $I hope you're the Trainer who'll make me remember how fun it is to battle!`, - }, - "victory": { - 1: `You've got me beat… - $Your desire and the noble way your Pokémon battled for you… - $I even felt thrilled during our match. That was a very good battle.`, - }, - "defeat": { - 1: `It was not shocking at all… - $That is not what I wanted!`, - } - }, - "burgh": { - "encounter": { - 1: `M'hm… If I win this battle, I feel like I can draw a picture unlike any before it. - $OK! I can hear my battle muse loud and clear. Let's get straight to it!`, - 2: `Of course, I'm really proud of all of my Pokémon! - $Well now… Let's get right to it!` - }, - "victory": { - 1: "Is it over? Has my muse abandoned me?", - 2: "Hmm… It's over! You're incredible!" - }, - "defeat": { - 1: "Wow… It's beautiful somehow, isn't it…", - 2: `Sometimes I hear people say something was an ugly win. - $I think if you're trying your best, any win is beautiful.` - } - }, - "elesa": { - "encounter": { - 1: `C'est fini! When I'm certain of that, I feel an electric jolt run through my body! - $I want to feel the sensation, so now my beloved Pokémon are going to make your head spin!`, - }, - "victory": { - 1: "I meant to make your head spin, but you shocked me instead." - }, - "defeat": { - 1: "That was unsatisfying somehow… Will you give it your all next time?" - } - }, - "skyla": { - "encounter": { - 1: `It's finally time for a showdown! That means the Pokémon battle that decides who's at the top, right? - $I love being on the summit! 'Cause you can see forever and ever from high places! - $So, how about you and I have some fun?`, - }, - "victory": { - 1: "Being your opponent in battle is a new source of strength to me. Thank you!" - }, - "defeat": { - 1: "Win or lose, you always gain something from a battle, right?" - } - }, - "brycen": { - "encounter": { - 1: `There is also strength in being with other people and Pokémon. - $Receiving their support makes you stronger. I'll show you this power!`, - }, - "victory": { - 1: "The wonderful combination of you and your Pokémon! What a beautiful friendship!" - }, - "defeat": { - 1: "Extreme conditions really test you and train you!" - } - }, - "drayden": { - "encounter": { - 1: `What I want to find is a young Trainer who can show me a bright future. - $Let's battle with everything we have: your skill, my experience, and the love we've raised our Pokémon with!`, - }, - "victory": { - 1: "This intense feeling that floods me after a defeat… I don't know how to describe it." - }, - "defeat": { - 1: "Harrumph! I know your ability is greater than that!" - } - }, - "grant": { - "encounter": { - 1: `There is only one thing I wish for. - $That by surpassing one another, we find a way to even greater heights.`, - }, - "victory": { - 1: "You are a wall that I am unable to surmount!" - }, - "defeat": { - 1: `Do not give up. - $That is all there really is to it. - $The most important lessons in life are simple.`, - } - }, - "korrina": { - "encounter": { - 1: "Time for Lady Korrina's big appearance!" - }, - "victory": { - 1: "It's your very being that allows your Pokémon to evolve!" - }, - "defeat": { - 1: "What an explosive battle!" - } - }, - "clemont": { - "encounter": { - 1: "Oh! I'm glad that we got to meet!" - }, - "victory": { - 1: "Your passion for battle inspires me!" - }, - "defeat": { - 1: "Looks like my Trainer-Grow-Stronger Machine, Mach 2 is really working!" - } - }, - "valerie": { - "encounter": { - 1: `Oh, if it isn't a young Trainer… It is lovely to get to meet you like this. - $Then I suppose you have earned yourself the right to a battle, as a reward for your efforts. - $The elusive Fairy may appear frail as the breeze and delicate as a bloom, but it is strong.`, - }, - "victory": { - 1: "I hope that you will find things worth smiling about tomorrow…" - }, - "defeat": { - 1: "Oh goodness, what a pity…" - } - }, - "wulfric": { - "encounter": { - 1: `You know what? We all talk big about what you learn from battling and bonds and all that… - $But really, I just do it 'cause it's fun. - $Who cares about the grandstanding? Let's get to battling!`, - }, - "victory": { - 1: "Outstanding! I'm tough as an iceberg, but you smashed me through and through!" - }, - "defeat": { - 1: "Tussle with me and this is what happens!" - } - }, - "kabu": { - "encounter": { - 1: `Every Trainer and Pokémon trains hard in pursuit of victory. - $But that means your opponent is also working hard to win. - $In the end, the match is decided by which side is able to unleash their true potential.`, - }, - "victory": { - 1: "I'm glad I could battle you today!" - }, - "defeat": { - 1: "That's a great way for me to feel my own growth!" - } - }, - "bea": { - "encounter": { - 1: `Do you have an unshakable spirit that won't be moved, no matter how you are attacked? - $I think I'll just test that out, shall I?`, - }, - "victory": { - 1: "I felt the fighting spirit of your Pokémon as you led them in battle." - }, - "defeat": { - 1: "That was the best sort of match anyone could ever hope for." - } - }, - "opal": { - "encounter": { - 1: "Let me have a look at how you and your partner Pokémon behave!" - }, - "victory": { - 1: "Your pink is still lacking, but you're an excellent Trainer with excellent Pokémon." - }, - "defeat": { - 1: "Too bad for you, I guess." - } - }, - "bede": { - "encounter": { - 1: "I suppose I should prove beyond doubt just how pathetic you are and how strong I am." - }, - "victory": { - 1: "I see… Well, that's fine. I wasn't really trying all that hard anyway." - }, - "defeat": { - 1: "Not a bad job, I suppose." - } - }, - "gordie": { - "encounter": { - 1: "So, let's get this over with." - }, - "victory": { - 1: "I just want to climb into a hole… Well, I guess it'd be more like falling from here." - }, - "defeat": { - 1: "Battle like you always do, victory will follow!" - } - }, - "marnie": { - "encounter": { - 1: `The truth is, when all's said and done… I really just wanna become Champion for myself! - $So don't take it personal when I kick your butt!`, - }, - "victory": { - 1: "OK, so I lost… But I got to see a lot of the good points of you and your Pokémon!" - }, - "defeat": { - 1: "Hope you enjoyed our battle tactics." - } - }, - "raihan": { - "encounter": { - 1: "I'm going to defeat the Champion, win the whole tournament, and prove to the world just how strong the great Raihan really is!" - }, - "victory": { - 1: `I look this good even when I lose. - $It's a real curse. - $Guess it's time for another selfie!`, - }, - "defeat": { - 1: "Let's take a selfie to remember this." - } - }, - "brassius": { - "encounter": { - 1: "I assume you are ready? Let our collaborative work of art begin!" - }, - "victory": { - 1: "Ahhh…vant-garde!" - }, - "defeat": { - 1: "I will begin on a new piece at once!" - } - }, - "iono": { - "encounter": { - 1: `How're ya feelin' about this battle? - $... - $Let's get this show on the road! How strong is our challenger? - $I 'unno! Let's find out together!`, - }, - "victory": { - 1: "You're as flashy and bright as a 10,000,000-volt Thunderbolt, friendo!" - }, - "defeat": { - 1: "Your eyeballs are MINE!" - } - }, - "larry": { - "encounter": { - 1: "When all's said and done, simplicity is strongest." - }, - "victory": { - 1: "A serving of defeat, huh?" - }, - "defeat": { - 1: "I'll call it a day." - } - }, - "ryme": { - "encounter": { - 1: "Come on, baby! Rattle me down to the bone!" - }, - "victory": { - 1: "You're cool, my friend—you move my SOUL!" - }, - "defeat": { - 1: "Later, baby!" - } - }, - "grusha": { - "encounter": { - 1: "All I need to do is make sure the power of my Pokémon chills you to the bone!" - }, - "victory": { - 1: "Your burning passion… I kinda like it, to be honest." - }, - "defeat": { - 1: "Things didn't heat up for you." - } - }, - "marnie_elite": { - "encounter": { - 1: "You've made it this far, huh? Let's see if you can handle my Pokémon!", - 2: "I'll give it my best shot, but don't think I'll go easy on you!" - }, - "victory": { - 1: "I can't believe I lost... But you deserved that win. Well done!", - 2: "Looks like I've still got a lot to learn. Great battle, though!" - }, - "defeat": { - 1: "You put up a good fight, but I've got the edge! Better luck next time!", - 2: "Seems like my training's paid off. Thanks for the battle!" - } - }, - "nessa_elite": { - "encounter": { - 1: "The tides are turning in my favor. Ready to get swept away?", - 2: "Let's make some waves with this battle! I hope you're prepared!" - }, - "victory": { - 1: "You navigated those waters perfectly... Well done!", - 2: "Looks like my currents were no match for you. Great job!" - }, - "defeat": { - 1: "Water always finds a way. That was a refreshing battle!", - 2: "You fought well, but the ocean's power is unstoppable!" - } - }, - "bea_elite": { - "encounter": { - 1: "Prepare yourself! My fighting spirit burns bright!", - 2: "Let's see if you can keep up with my relentless pace!" - }, - "victory": { - 1: "Your strength... It's impressive. You truly deserve this win.", - 2: "I've never felt this intensity before. Amazing job!" - }, - "defeat": { - 1: "Another victory for my intense training regimen! Well done!", - 2: "You've got strength, but I trained harder. Great battle!" - } - }, - "allister_elite": { - "encounter": { - 1: "Shadows fall... Are you ready to face your fears?", - 2: "Let's see if you can handle the darkness that I command." - }, - "victory": { - 1: "You've dispelled the shadows... For now. Well done.", - 2: "Your light pierced through my darkness. Great job." - }, - "defeat": { - 1: "The shadows have spoken... Your strength isn't enough.", - 2: "Darkness triumphs... Maybe next time you'll see the light." - } - }, - "raihan_elite": { - "encounter": { - 1: "Storm's brewing! Let's see if you can weather this fight!", - 2: "Get ready to face the eye of the storm!" - }, - "victory": { - 1: "You've bested the storm... Incredible job!", - 2: "You rode the winds perfectly... Great battle!" - }, - "defeat": { - 1: "Another storm weathered, another victory claimed! Well fought!", - 2: "You got caught in my storm! Better luck next time!" - } - }, - "alder": { - "encounter": { - 1: "Prepare yourself for a match against the strongest Trainer in Unova!" - }, - "victory": { - 1: "Well done! You certainly are an unmatched talent." - }, - "defeat": { - 1: `A fresh wind blows through my heart... - $What an extraordinary effort!` - } - }, - "kieran": { - "encounter": { - 1: `Through hard work, I become stronger and stronger! - $I don't lose.` - }, - "victory": { - 1: `I don't believe it... - $What a fun and heart-pounding battle!` - }, - "defeat": { - 1: `Wowzers, what a battle! - $Time for you to train even harder.` - } - }, - "rival": { - "encounter": { - 1: `@c{smile}Hey, I was looking for you! I knew you were eager to get going but I expected at least a goodbye… - $@c{smile_eclosed}So you're really pursuing your dream after all?\n I almost can't believe it. - $@c{serious_smile_fists}Since we're here, how about a battle?\nAfter all, I want to make sure you're ready. - $@c{serious_mopen_fists}Don't hold back, I want you to give me everything you've got!` - }, - "victory": { - 1: `@c{shock}Wow… You cleaned me out.\nAre you actually a beginner? - $@c{smile}Maybe it was a bit of luck but…\nWho knows you might just be able to go all the way. - $By the way, the professor asked me to give you these items. They look pretty cool. - $@c{serious_smile_fists}Good luck out there! - $@c{smile}Oh- and I hope you enjoy the event!` - }, - }, - "rival_female": { - "encounter": { - 1: `@c{smile_wave}There you are! I've been looking everywhere for you!\n@c{angry_mopen}Did you forget to say goodbye to your best friend? - $@c{smile_ehalf}You're going after your dream, huh?\nThat day is really today isn't it… - $@c{smile}Anyway, I'll forgive you for forgetting me, but on one condition. @c{smile_wave_wink}You have to battle me! - $@c{angry_mopen}Give it your all! Wouldn't want your adventure to be over before it started, right?` - }, - "victory": { - 1: `@c{shock}You just started and you're already this strong?!@d{96}\n@c{angry}You totally cheated, didn't you? - $@c{smile_wave_wink}Just kidding!@d{64} @c{smile_eclosed}I lost fair and square… I have a feeling you're going to do really well out there. - $@c{smile}By the way, the professor wanted me to give you some items. Hopefully they're helpful! - $@c{smile_wave}Do your best like always! I believe in you! - $@c{smile}Oh- and I hope you enjoy the event!` - }, - }, - "rival_2": { - "encounter": { - 1: `@c{smile}Hey, you're here too?\n@c{smile_eclosed}Still a perfect record, huh…? - $@c{serious_mopen_fists}I know it kind of looks like I followed you here, but that's mostly not true. - $@c{serious_smile_fists}Honestly though, I've been itching for a rematch since you beat me back at home. - $I've been doing a lot of my own training so I'll definitely put up a fight this time. - $@c{serious_mopen_fists}Don't hold back, just like before!\nLet's go!` - }, - "victory": { - 1: `@c{neutral_eclosed}Oh. I guess I was overconfident. - $@c{smile}That's alright, though. I figured this might happen.\n@c{serious_mopen_fists}It just means I need to try harder for next time!\n - $@c{smile}Oh, not that you really need the help, but I had an extra one of each of these lying around and figured you might want them.\n - $@c{serious_smile_fists}Don't expect another one after this, though!\nI can't keep giving my opponent an advantage after all. - $@c{smile}Anyway, take care, and enjoy the event!` - }, - }, - "rival_2_female": { - "encounter": { - 1: `@c{smile_wave}Oh, fancy meeting you here. Looks like you're still undefeated. @c{angry_mopen}Huh… Not bad! - $@c{angry_mopen}I know what you're thinking, and no, I wasn't creeping on you. @c{smile_eclosed}I just happened to be in the area. - $@c{smile_ehalf}I'm happy for you but I just want to let you know that it's OK to lose sometimes. - $@c{smile}We learn from our mistakes, often more than we would if we kept succeeding. - $@c{angry_mopen}In any case, I've been training hard for our rematch, so you'd better give it your all!` - }, - "victory": { - 1: `@c{neutral}I… wasn't supposed to lose that time… - $@c{smile}Aw well. That just means I'll have to train even harder for next time! - $@c{smile_wave}I also got you another two of these!\n@c{smile_wave_wink}No need to thank me~. - $@c{angry_mopen}This is the last one, though! You won't be getting anymore freebies from me after this! - $@c{smile_wave}Keep at it, and enjoy the event!` - }, - "defeat": { - 1: "It's OK to lose sometimes…" - } - }, - "rival_3": { - "encounter": { - 1: `@c{smile}Hey, look who it is! It's been a while.\n@c{neutral}You're… still undefeated? Huh. - $@c{neutral_eclosed}Things have been kind of… strange.\nIt's not the same back home without you. - $@c{serious}I know it's selfish, but I need to get this off my chest.\n@c{neutral_eclosed}I think you're in over your head here. - $@c{serious}Never losing once is just unrealistic.\nWe need to lose sometimes in order to grow. - $@c{neutral_eclosed}You've had a great run but there's still so much ahead, and it only gets harder. @c{neutral}Are you prepared for that? - $@c{serious_mopen_fists}If so, prove it to me.` - }, - "victory": { - 1: "@c{angry_mhalf}This is ridiculous… I've hardly stopped training…\nHow are we still so far apart?" - }, - }, - "rival_3_female": { - "encounter": { - 1: `@c{smile_wave}Long time no see! Still haven't lost, huh.\n@c{angry}You're starting to get on my nerves. @c{smile_wave_wink}Just kidding! - $@c{smile_ehalf}But really, don't you miss home by now? Or… me?\nI… I mean, we've really missed you. - $@c{smile_eclosed}I support you in your dream and everything, but the reality is you're going to lose sooner or later. - $@c{smile}And when you do, I'll be there for you like always.\n@c{angry_mopen}Now, let me show you how strong I've become!` - }, - "victory": { - 1: "@c{shock}After all that… it wasn't enough…?\nYou'll never come back at this rate…" - - }, - "defeat": { - 1: "You gave it your best, now let's go home." - } - }, - "rival_4": { - "encounter": { - 1: `@c{neutral}Hey. - $I won't mince words or pleasantries with you.\n@c{neutral_eclosed}I'm here to win, plain and simple. - $@c{serious_mhalf_fists}I've learned to maximize my potential by putting all my time into training. - $@c{smile}You get a lot of extra time when you cut out the unnecessary sleep and social interaction. - $@c{serious_mopen_fists}None of that matters anymore, not until I win. - $@c{neutral_eclosed}I've even reached the point where I don't lose anymore.\n@c{smile_eclosed}I suppose your philosophy wasn't so wrong after all. - $@c{angry_mhalf}Losing is for the weak, and I'm not weak anymore. - $@c{serious_mopen_fists}Prepare yourself.` - }, - "victory": { - 1: "@c{neutral}What…@d{64} What are you?" - }, - }, - "rival_4_female": { - "encounter": { - 1: `@c{neutral}It's me! You didn't forget about me again… did you? - $@c{smile}You should be proud of how far you made it. Congrats!\nBut it looks like it's the end of your journey. - $@c{smile_eclosed}You've awoken something in me I never knew was there.\nIt seems like all I do now is train. - $@c{smile_ehalf}I hardly even eat or sleep now, I just train my Pokémon all day, getting stronger every time. - $@c{neutral}In fact, I… hardly recognize myself. - $And now, I've finally reached peak performance.\nI don't think anyone could beat me now. - $And you know what? It's all because of you.\n@c{smile_ehalf}I don't know whether to thank you or hate you. - $@c{angry_mopen}Prepare yourself.` - }, - "victory": { - 1: "@c{neutral}What…@d{64} What are you?" - - }, - "defeat": { - 1: "$@c{smile}You should be proud of how far you made it." - } - }, - "rival_5": { - "encounter": { - 1: "@c{neutral}…" - }, - "victory": { - 1: "@c{neutral}…" - }, - }, - "rival_5_female": { - "encounter": { - 1: "@c{neutral}…" - }, - "victory": { - 1: "@c{neutral}…" - - }, - "defeat": { - 1: "$@c{smile_ehalf}…" - } - }, - "rival_6": { - "encounter": { - 1: `@c{smile_eclosed}We meet again. - $@c{neutral}I've had some time to reflect on all this.\nThere's a reason this all seems so strange. - $@c{neutral_eclosed}Your dream, my drive to beat you…\nIt's all a part of something greater. - $@c{serious}This isn't about me, or about you… This is about the world, @c{serious_mhalf_fists}and it's my purpose to push you to your limits. - $@c{neutral_eclosed}Whether I've fulfilled that purpose I can't say, but I've done everything in my power. - $@c{neutral}This place we ended up in is terrifying… Yet somehow I feel unphased, like I've been here before. - $@c{serious_mhalf_fists}You feel the same, don't you? - $@c{serious}…and it's like something here is speaking to me.\nThis is all the world's known for a long time now. - $Those times we cherished together that seem so recent are nothing but a distant memory. - $@c{neutral_eclosed}Who can say whether they were ever even real in the first place. - $@c{serious_mopen_fists}You need to keep pushing, because if you don't, it will never end. You're the only one who can do this. - $@c{serious_smile_fists}I hardly know what any of this means, I just know that it's true. - $@c{serious_mopen_fists}If you can't defeat me here and now, you won't stand a chance.` - }, - "victory": { - 1: `@c{smile_eclosed}It looks like my work is done here. - $I want you to promise me one thing.\n@c{smile}After you heal the world, please come home.` - }, - }, - "rival_6_female": { - "encounter": { - 1: `@c{smile_ehalf}So it's just us again. - $@c{smile_eclosed}You know, I keep going around and around in my head… - $@c{smile_ehalf}There's something to all this, why everything seems so strange now… - $@c{smile}You have your dream, and I have this ambition in me… - $I just can't help but feel there's a greater purpose to all this, to what we're doing, you and I. - $@c{smile_eclosed}I think I'm supposed to push you… to your limits. - $@c{smile_ehalf}I'm not sure if I've been doing a good job at that, but I've tried my best up to now. - $It's something about this strange and dreadful place… Everything seems so clear… - $This… is all the world's known for a long time now. - $@c{smile_eclosed}It's like I can barely remember the memories we cherished together. - $@c{smile_ehalf}Were they even real? They seem so far away now… - $@c{angry_mopen}You need to keep pushing, because if you don't, it will never end. You're the only one who can do this. - $@c{smile_ehalf}I… don't know what all this means… but I feel it's true. - $@c{neutral}If you can't defeat me here and now, you won't stand a chance.` - }, - "victory": { - 1: `@c{smile_ehalf}I… I think I fulfilled my purpose… - $@c{smile_eclosed}Promise me… After you heal the world… Please… come home safe. - $@c{smile_ehalf}…Thank you.` - - }, - }, -}; - - -// Dialogue of the NPCs in the game when the player character is female. For languages that do not have gendered pronouns, this can be set to PGMdialogue. -export const PGFdialogue: DialogueTranslationEntries = PGMdialogue; - -// Dialogue of the endboss of the game when the player character is male (Or unset) -export const PGMbattleSpecDialogue: SimpleTranslationEntries = { - "encounter": `It appears the time has finally come once again.\nYou know why you have come here, do you not? - $You were drawn here, because you have been here before.\nCountless times. - $Though, perhaps it can be counted.\nTo be precise, this is in fact your {{cycleCount}} cycle. - $Each cycle your mind reverts to its former state.\nEven so, somehow, remnants of your former selves remain. - $Until now you have yet to succeed, but I sense a different presence in you this time.\n - $You are the only one here, though it is as if there is… another. - $Will you finally prove a formidable challenge to me?\nThe challenge I have longed after for millennia? - $We begin.`, - "firstStageWin": `I see. The presence I felt was indeed real.\nIt appears I no longer need to hold back. - $Do not disappoint me.`, - "secondStageWin": "…Magnificent." -}; - -// Dialogue of the endboss of the game when the player character is female. For languages that do not have gendered pronouns, this can be set to PGMbattleSpecDialogue. -export const PGFbattleSpecDialogue: SimpleTranslationEntries = PGMbattleSpecDialogue; - -// Dialogue that does not fit into any other category (e.g. tutorial messages, or the end of the game). For when the player character is male -export const PGMmiscDialogue: SimpleTranslationEntries = { - "ending": - `@c{smile}Oh? You won?@d{96} @c{smile_eclosed}I guess I should've known.\nBut, you're back now. - $@c{smile}It's over.@d{64} You ended the loop. - $@c{serious_smile_fists}You fulfilled your dream too, didn't you?\nYou didn't lose even once. - $@c{neutral}I'm the only one who'll remember what you did.@d{96}\nI guess that's okay, isn't it? - $@c{serious_smile_fists}Your legend will always live on in our hearts. - $@c{smile_eclosed}Anyway, I've had about enough of this place, haven't you? Let's head home. - $@c{serious_smile_fists}Maybe when we get back, we can have another battle?\nIf you're up to it.`, - "ending_female": - `@c{shock}You're back?@d{32} Does that mean…@d{96} you won?!\n@c{smile_ehalf}I should have known you had it in you. - $@c{smile_eclosed}Of course… I always had that feeling.\n@c{smile}It's over now, right? You ended the loop. - $@c{smile_ehalf}You fulfilled your dream too, didn't you?\nYou didn't lose even once. - $I'll be the only one to remember what you did.\n@c{angry_mopen}I'll try not to forget! - $@c{smile_wave_wink}Just kidding!@d{64} @c{smile}I'd never forget.@d{32}\nYour legend will live on in our hearts. - $@c{smile_wave}Anyway,@d{64} it's getting late…@d{96} I think?\nIt's hard to tell in this place. - $Let's go home. @c{smile_wave_wink}Maybe tomorrow, we can have another battle, for old time's sake?`, - "ending_endless": "Congratulations on reaching the current end!\nMore content is coming soon.", - "ending_name": "Devs" -}; -// Dialogue that does not fit into any other category (e.g. tutorial messages, or the end of the game). For when the player character is female. For languages that do not have gendered pronouns, this can be set to PGMmiscDialogue. -export const PGFmiscDialogue: SimpleTranslationEntries = PGMmiscDialogue; - - -// Dialogue of the named double battles in the game. For when the player is male (or unset). -export const PGMdoubleBattleDialogue: DialogueTranslationEntries = { - "blue_red_double": { - "encounter": { - 1: `Blue: Hey Red, let's show them what we're made of! - $Red: ... - $Blue: This is Pallet Town Power!`, - }, - "victory": { - 1: `Blue: That was a great battle! - $Red: ...`, - }, - }, - "red_blue_double": { - "encounter": { - 1: `Red: ...! - $Blue: He never talks much. - $Blue: But dont let that fool you! He is a champ after all!`, - }, - "victory": { - 1: `Red: ...! - $Blue: Next time we will beat you!`, - }, - }, - "tate_liza_double": { - "encounter": { - 1: `Tate: Are you surprised? - $Liza: We are two gym leaders at once! - $Tate: We are twins! - $Liza: We dont need to talk to understand each other! - $Tate: Twice the power... - $Liza: Can you handle it?`, - }, - "victory": { - 1: `Tate: What? Our combination was perfect! - $Liza: Looks like we need to train more...`, - }, - }, - "liza_tate_double": { - "encounter": { - 1: `Liza: Hihihi... Are you surprised? - $Tate: Yes, we are really two gym leaders at once! - $Liza: This is my twin brother Tate! - $Tate: And this is my twin sister Liza! - $Liza: Don't you think we are a perfect combination?` - }, - "victory": { - 1: `Liza: Are we... - $Tate: ...not as strong as we thought?`, - }, - }, - "wallace_steven_double": { - "encounter": { - 1: `Steven: Wallace, let's show them the power of the champions! - $Wallace: We will show you the power of Hoenn! - $Steven: Let's go!`, - }, - "victory": { - 1: `Steven: That was a great battle! - $Wallace: We will win next time!`, - }, - }, - "steven_wallace_double": { - "encounter": { - 1: `Steven: Do you have any rare Pokémon? - $Wallace: Steven... We are here for a battle, not to show off our Pokémon. - $Steven: Oh... I see... Let's go then!`, - }, - "victory": { - 1: `Steven: Now that we are done with the battle, let's show off our Pokémon! - $Wallace: Steven...`, - }, - }, - "alder_iris_double": { - "encounter": { - 1: `Alder: We are the strongest trainers in Unova! - $Iris: Fights against strong trainers are the best!`, - }, - "victory": { - 1: `Alder: Wow! You are super strong! - $Iris: We will win next time!`, - }, - }, - "iris_alder_double": { - "encounter": { - 1: `Iris: Welcome Challenger! I am THE Unova Champion! - $Alder: Iris, aren't you a bit too excited?`, - }, - "victory": { - 1: `Iris: A loss like this is not easy to take... - $Alder: But we will only get stronger with every loss!`, - }, - }, - "piers_marnie_double": { - "encounter": { - 1: `Marnie: Brother, let's show them the power of Spikemuth! - $Piers: We bring darkness!`, - }, - "victory": { - 1: `Marnie: You brought light to our darkness! - $Piers: Its too bright...`, - }, - }, - "marnie_piers_double": { - "encounter": { - 1: `Piers: Ready for a concert? - $Marnie: Brother... They are here to fight, not to sing...`, - }, - "victory": { - 1: `Piers: Now that was a great concert! - $Marnie: Brother...`, - }, - }, -}; - -// Dialogue of the named double battles in the game. For when the player is female. For languages that do not have gendered pronouns, this can be set to PGMdoubleBattleDialogue. -export const PGFdoubleBattleDialogue: DialogueTranslationEntries = PGMdoubleBattleDialogue; diff --git a/src/locales/ca_ES/egg.ts b/src/locales/en/egg.json similarity index 87% rename from src/locales/ca_ES/egg.ts rename to src/locales/en/egg.json index 9f699ce0fdc..8a5e061d883 100644 --- a/src/locales/ca_ES/egg.ts +++ b/src/locales/en/egg.json @@ -1,6 +1,4 @@ -import { SimpleTranslationEntries } from "#app/interfaces/locales"; - -export const egg: SimpleTranslationEntries = { +{ "egg": "Egg", "greatTier": "Rare", "ultraTier": "Epic", @@ -24,5 +22,5 @@ export const egg: SimpleTranslationEntries = { "rareEggMoveUnlock": "Rare Egg Move unlocked: {{moveName}}", "moveUPGacha": "Move UP!", "shinyUPGacha": "Shiny UP!", - "legendaryUPGacha": "UP!", -} as const; + "legendaryUPGacha": "UP!" +} \ No newline at end of file diff --git a/src/locales/en/egg.ts b/src/locales/en/egg.ts deleted file mode 100644 index 9f699ce0fdc..00000000000 --- a/src/locales/en/egg.ts +++ /dev/null @@ -1,28 +0,0 @@ -import { SimpleTranslationEntries } from "#app/interfaces/locales"; - -export const egg: SimpleTranslationEntries = { - "egg": "Egg", - "greatTier": "Rare", - "ultraTier": "Epic", - "masterTier": "Legendary", - "defaultTier": "Common", - "hatchWavesMessageSoon": "Sounds can be heard coming from inside! It will hatch soon!", - "hatchWavesMessageClose": "It appears to move occasionally. It may be close to hatching.", - "hatchWavesMessageNotClose": "What will hatch from this? It doesn't seem close to hatching.", - "hatchWavesMessageLongTime": "It looks like this Egg will take a long time to hatch.", - "gachaTypeLegendary": "Legendary Rate Up", - "gachaTypeMove": "Rare Egg Move Rate Up", - "gachaTypeShiny": "Shiny Rate Up", - "selectMachine": "Select a machine.", - "notEnoughVouchers": "You don't have enough vouchers!", - "tooManyEggs": "You have too many eggs!", - "pull": "Pull", - "pulls": "Pulls", - "sameSpeciesEgg": "{{species}} will hatch from this egg!", - "hatchFromTheEgg": "{{pokemonName}} hatched from the egg!", - "eggMoveUnlock": "Egg Move unlocked: {{moveName}}", - "rareEggMoveUnlock": "Rare Egg Move unlocked: {{moveName}}", - "moveUPGacha": "Move UP!", - "shinyUPGacha": "Shiny UP!", - "legendaryUPGacha": "UP!", -} as const; diff --git a/src/locales/en/fight-ui-handler.json b/src/locales/en/fight-ui-handler.json new file mode 100644 index 00000000000..35b7f42772a --- /dev/null +++ b/src/locales/en/fight-ui-handler.json @@ -0,0 +1,7 @@ +{ + "pp": "PP", + "power": "Power", + "accuracy": "Accuracy", + "abilityFlyInText": " {{pokemonName}}'s {{passive}}{{abilityName}}", + "passive": "Passive " +} \ No newline at end of file diff --git a/src/locales/en/fight-ui-handler.ts b/src/locales/en/fight-ui-handler.ts deleted file mode 100644 index 8ceb503c34a..00000000000 --- a/src/locales/en/fight-ui-handler.ts +++ /dev/null @@ -1,9 +0,0 @@ -import { SimpleTranslationEntries } from "#app/interfaces/locales"; - -export const fightUiHandler: SimpleTranslationEntries = { - "pp": "PP", - "power": "Power", - "accuracy": "Accuracy", - "abilityFlyInText": " {{pokemonName}}'s {{passive}}{{abilityName}}", - "passive": "Passive ", // The space at the end is important -} as const; diff --git a/src/locales/en/filter-bar.ts b/src/locales/en/filter-bar.json similarity index 88% rename from src/locales/en/filter-bar.ts rename to src/locales/en/filter-bar.json index cbdb22c03bd..6e940c6886d 100644 --- a/src/locales/en/filter-bar.ts +++ b/src/locales/en/filter-bar.json @@ -1,6 +1,4 @@ -import { SimpleTranslationEntries } from "#app/interfaces/locales"; - -export const filterBar: SimpleTranslationEntries = { +{ "genFilter": "Gen", "typeFilter": "Type", "caughtFilter": "Caught", @@ -36,5 +34,5 @@ export const filterBar: SimpleTranslationEntries = { "sortByCost": "Cost", "sortByCandies": "Candy Count", "sortByIVs": "IVs", - "sortByName": "Name", -}; + "sortByName": "Name" +} \ No newline at end of file diff --git a/src/locales/en/game-mode.json b/src/locales/en/game-mode.json new file mode 100644 index 00000000000..e5a4975cc40 --- /dev/null +++ b/src/locales/en/game-mode.json @@ -0,0 +1,8 @@ +{ + "classic": "Classic", + "endless": "Endless", + "endlessSpliced": "Endless (Spliced)", + "dailyRun": "Daily Run", + "unknown": "Unknown", + "challenge": "Challenge" +} \ No newline at end of file diff --git a/src/locales/en/game-mode.ts b/src/locales/en/game-mode.ts deleted file mode 100644 index 903f1a63072..00000000000 --- a/src/locales/en/game-mode.ts +++ /dev/null @@ -1,10 +0,0 @@ -import { SimpleTranslationEntries } from "#app/interfaces/locales"; - -export const gameMode: SimpleTranslationEntries = { - "classic": "Classic", - "endless": "Endless", - "endlessSpliced": "Endless (Spliced)", - "dailyRun": "Daily Run", - "unknown": "Unknown", - "challenge": "Challenge", -} as const; diff --git a/src/locales/ca_ES/game-stats-ui-handler.ts b/src/locales/en/game-stats-ui-handler.json similarity index 88% rename from src/locales/ca_ES/game-stats-ui-handler.ts rename to src/locales/en/game-stats-ui-handler.json index a29eaf5d1b6..a7beefeabd8 100644 --- a/src/locales/ca_ES/game-stats-ui-handler.ts +++ b/src/locales/en/game-stats-ui-handler.json @@ -1,6 +1,4 @@ -import { SimpleTranslationEntries } from "#app/interfaces/locales"; - -export const gameStatsUiHandler: SimpleTranslationEntries = { +{ "stats": "Stats", "playTime": "Play Time", "totalBattles": "Total Battles", @@ -40,5 +38,5 @@ export const gameStatsUiHandler: SimpleTranslationEntries = { "rareEggsPulled": "Rare Eggs Pulled", "epicEggsPulled": "Epic Eggs Pulled", "legendaryEggsPulled": "Legendary Eggs Pulled", - "manaphyEggsPulled": "Manaphy Eggs Pulled", -} as const; + "manaphyEggsPulled": "Manaphy Eggs Pulled" +} diff --git a/src/locales/en/game-stats-ui-handler.ts b/src/locales/en/game-stats-ui-handler.ts deleted file mode 100644 index 06b2211b0dd..00000000000 --- a/src/locales/en/game-stats-ui-handler.ts +++ /dev/null @@ -1,44 +0,0 @@ -import { SimpleTranslationEntries } from "#app/interfaces/locales"; - -export const gameStatsUiHandler: SimpleTranslationEntries = { - "stats": "Stats", - "playTime": "Play Time", - "totalBattles": "Total Battles", - "starters": "Starters", - "shinyStarters": "Shiny Starters", - "speciesSeen": "Species Seen", - "speciesCaught": "Species Caught", - "ribbonsOwned": "Ribbons Owned", - "classicRuns": "Classic Runs", - "classicWins": "Classic Wins", - "dailyRunAttempts": "Daily Run Attempts", - "dailyRunWins": "Daily Run Wins", - "endlessRuns": "Endless Runs", - "highestWaveEndless": "Highest Wave (Endless)", - "highestMoney": "Highest Money", - "highestDamage": "Highest Damage", - "highestHPHealed": "Highest HP Healed", - "pokemonEncountered": "Pokémon Encountered", - "pokemonDefeated": "Pokémon Defeated", - "pokemonCaught": "Pokémon Caught", - "eggsHatched": "Eggs Hatched", - "subLegendsSeen": "Sub-Legends Seen", - "subLegendsCaught": "Sub-Legends Caught", - "subLegendsHatched": "Sub-Legends Hatched", - "legendsSeen": "Legends Seen", - "legendsCaught": "Legends Caught", - "legendsHatched": "Legends Hatched", - "mythicalsSeen": "Mythicals Seen", - "mythicalsCaught": "Mythicals Caught", - "mythicalsHatched": "Mythicals Hatched", - "shiniesSeen": "Shinies Seen", - "shiniesCaught": "Shinies Caught", - "shiniesHatched": "Shinies Hatched", - "pokemonFused": "Pokémon Fused", - "trainersDefeated": "Trainers Defeated", - "eggsPulled": "Eggs Pulled", - "rareEggsPulled": "Rare Eggs Pulled", - "epicEggsPulled": "Epic Eggs Pulled", - "legendaryEggsPulled": "Legendary Eggs Pulled", - "manaphyEggsPulled": "Manaphy Eggs Pulled", -} as const; diff --git a/src/locales/ca_ES/growth.ts b/src/locales/en/growth.json similarity index 54% rename from src/locales/ca_ES/growth.ts rename to src/locales/en/growth.json index 410355b143b..d472343d3eb 100644 --- a/src/locales/ca_ES/growth.ts +++ b/src/locales/en/growth.json @@ -1,10 +1,8 @@ -import { SimpleTranslationEntries } from "#app/interfaces/locales"; - -export const growth: SimpleTranslationEntries = { +{ "Erratic": "Erratic", "Fast": "Fast", "Medium_Fast": "Medium Fast", "Medium_Slow": "Medium Slow", "Slow": "Slow", "Fluctuating": "Fluctuating" -} as const; +} \ No newline at end of file diff --git a/src/locales/en/growth.ts b/src/locales/en/growth.ts deleted file mode 100644 index 410355b143b..00000000000 --- a/src/locales/en/growth.ts +++ /dev/null @@ -1,10 +0,0 @@ -import { SimpleTranslationEntries } from "#app/interfaces/locales"; - -export const growth: SimpleTranslationEntries = { - "Erratic": "Erratic", - "Fast": "Fast", - "Medium_Fast": "Medium Fast", - "Medium_Slow": "Medium Slow", - "Slow": "Slow", - "Fluctuating": "Fluctuating" -} as const; diff --git a/src/locales/ca_ES/menu-ui-handler.ts b/src/locales/en/menu-ui-handler.json similarity index 84% rename from src/locales/ca_ES/menu-ui-handler.ts rename to src/locales/en/menu-ui-handler.json index 1014c161f84..fccf9cd3002 100644 --- a/src/locales/ca_ES/menu-ui-handler.ts +++ b/src/locales/en/menu-ui-handler.json @@ -1,10 +1,8 @@ -import { SimpleTranslationEntries } from "#app/interfaces/locales"; - -export const menuUiHandler: SimpleTranslationEntries = { +{ "GAME_SETTINGS": "Game Settings", "ACHIEVEMENTS": "Achievements", "STATS": "Stats", - "VOUCHERS": "Vouchers", + "RUN_HISTORY": "Run History", "EGG_LIST": "Egg List", "EGG_GACHA": "Egg Gacha", "MANAGE_DATA": "Manage Data", @@ -16,6 +14,8 @@ export const menuUiHandler: SimpleTranslationEntries = { "importSlotSelect": "Select a slot to import to.", "exportSession": "Export Session", "exportSlotSelect": "Select a slot to export from.", + "importRunHistory": "Import Run History", + "exportRunHistory": "Export Run History", "importData": "Import Data", "exportData": "Export Data", "consentPreferences": "Consent Preferences", @@ -26,4 +26,4 @@ export const menuUiHandler: SimpleTranslationEntries = { "cancel": "Cancel", "losingProgressionWarning": "You will lose any progress since the beginning of the battle. Proceed?", "noEggs": "You are not hatching\nany eggs at the moment!" -} as const; +} \ No newline at end of file diff --git a/src/locales/en/menu-ui-handler.ts b/src/locales/en/menu-ui-handler.ts deleted file mode 100644 index 1014c161f84..00000000000 --- a/src/locales/en/menu-ui-handler.ts +++ /dev/null @@ -1,29 +0,0 @@ -import { SimpleTranslationEntries } from "#app/interfaces/locales"; - -export const menuUiHandler: SimpleTranslationEntries = { - "GAME_SETTINGS": "Game Settings", - "ACHIEVEMENTS": "Achievements", - "STATS": "Stats", - "VOUCHERS": "Vouchers", - "EGG_LIST": "Egg List", - "EGG_GACHA": "Egg Gacha", - "MANAGE_DATA": "Manage Data", - "COMMUNITY": "Community", - "SAVE_AND_QUIT": "Save and Quit", - "LOG_OUT": "Log Out", - "slot": "Slot {{slotNumber}}", - "importSession": "Import Session", - "importSlotSelect": "Select a slot to import to.", - "exportSession": "Export Session", - "exportSlotSelect": "Select a slot to export from.", - "importData": "Import Data", - "exportData": "Export Data", - "consentPreferences": "Consent Preferences", - "linkDiscord": "Link Discord", - "unlinkDiscord": "Unlink Discord", - "linkGoogle": "Link Google", - "unlinkGoogle": "Unlink Google", - "cancel": "Cancel", - "losingProgressionWarning": "You will lose any progress since the beginning of the battle. Proceed?", - "noEggs": "You are not hatching\nany eggs at the moment!" -} as const; diff --git a/src/locales/ca_ES/menu.ts b/src/locales/en/menu.json similarity index 86% rename from src/locales/ca_ES/menu.ts rename to src/locales/en/menu.json index fe4d96c5120..97cfc0b019d 100644 --- a/src/locales/ca_ES/menu.ts +++ b/src/locales/en/menu.json @@ -1,11 +1,4 @@ -import { SimpleTranslationEntries } from "#app/interfaces/locales"; - -/** - * The menu namespace holds most miscellaneous text that isn't directly part of the game's - * contents or directly related to Pokemon data. This includes menu navigation, settings, - * account interactions, descriptive text, etc. - */ -export const menu: SimpleTranslationEntries = { +{ "cancel": "Cancel", "continue": "Continue", "dailyRun": "Daily Run (Beta)", @@ -50,13 +43,13 @@ export const menu: SimpleTranslationEntries = { "loading": "Loading…", "loadingAsset": "Loading asset: {{assetName}}", "playersOnline": "Players Online", - "yes":"Yes", - "no":"No", + "yes": "Yes", + "no": "No", "disclaimer": "DISCLAIMER", "disclaimerDescription": "This game is an unfinished product; it might have playability issues (including the potential loss of save data),\n change without notice, and may or may not be updated further or completed.", "choosePokemon": "Choose a Pokémon.", "renamePokemon": "Rename Pokémon", "rename": "Rename", "nickname": "Nickname", - "errorServerDown": "Oops! There was an issue contacting the server.\n\nYou may leave this window open,\nthe game will automatically reconnect.", -} as const; + "errorServerDown": "Oops! There was an issue contacting the server.\n\nYou may leave this window open,\nthe game will automatically reconnect." +} \ No newline at end of file diff --git a/src/locales/en/menu.ts b/src/locales/en/menu.ts deleted file mode 100644 index fe4d96c5120..00000000000 --- a/src/locales/en/menu.ts +++ /dev/null @@ -1,62 +0,0 @@ -import { SimpleTranslationEntries } from "#app/interfaces/locales"; - -/** - * The menu namespace holds most miscellaneous text that isn't directly part of the game's - * contents or directly related to Pokemon data. This includes menu navigation, settings, - * account interactions, descriptive text, etc. - */ -export const menu: SimpleTranslationEntries = { - "cancel": "Cancel", - "continue": "Continue", - "dailyRun": "Daily Run (Beta)", - "loadGame": "Load Game", - "newGame": "New Game", - "settings": "Settings", - "selectGameMode": "Select a game mode.", - "logInOrCreateAccount": "Log in or create an account to start. No email required!", - "username": "Username", - "password": "Password", - "login": "Login", - "orUse": "Or use", - "register": "Register", - "emptyUsername": "Username must not be empty", - "invalidLoginUsername": "The provided username is invalid", - "invalidRegisterUsername": "Username must only contain letters, numbers, or underscores", - "invalidLoginPassword": "The provided password is invalid", - "invalidRegisterPassword": "Password must be 6 characters or longer", - "usernameAlreadyUsed": "The provided username is already in use", - "accountNonExistent": "The provided user does not exist", - "unmatchingPassword": "The provided password does not match", - "passwordNotMatchingConfirmPassword": "Password must match confirm password", - "confirmPassword": "Confirm Password", - "registrationAgeWarning": "By registering, you confirm you are of 13 years of age or older.", - "backToLogin": "Back to Login", - "failedToLoadSaveData": "Failed to load save data. Please reload the page.\nIf this persists, please check #announcements in Discord.", - "sessionSuccess": "Session loaded successfully.", - "failedToLoadSession": "Your session data could not be loaded.\nIt may be corrupted.", - "boyOrGirl": "Are you a boy or a girl?", - "evolving": "What?\n{{pokemonName}} is evolving!", - "stoppedEvolving": "{{pokemonName}} stopped evolving.", - "pauseEvolutionsQuestion": "Would you like to pause evolutions for {{pokemonName}}?\nEvolutions can be re-enabled from the party screen.", - "evolutionsPaused": "Evolutions have been paused for {{pokemonName}}.", - "evolutionDone": "Congratulations!\nYour {{pokemonName}} evolved into {{evolvedPokemonName}}!", - "dailyRankings": "Daily Rankings", - "weeklyRankings": "Weekly Rankings", - "noRankings": "No Rankings", - "positionIcon": "#", - "usernameScoreboard": "Username", - "score": "Score", - "wave": "Wave", - "loading": "Loading…", - "loadingAsset": "Loading asset: {{assetName}}", - "playersOnline": "Players Online", - "yes":"Yes", - "no":"No", - "disclaimer": "DISCLAIMER", - "disclaimerDescription": "This game is an unfinished product; it might have playability issues (including the potential loss of save data),\n change without notice, and may or may not be updated further or completed.", - "choosePokemon": "Choose a Pokémon.", - "renamePokemon": "Rename Pokémon", - "rename": "Rename", - "nickname": "Nickname", - "errorServerDown": "Oops! There was an issue contacting the server.\n\nYou may leave this window open,\nthe game will automatically reconnect.", -} as const; diff --git a/src/locales/ca_ES/modifier-select-ui-handler.ts b/src/locales/en/modifier-select-ui-handler.json similarity index 75% rename from src/locales/ca_ES/modifier-select-ui-handler.ts rename to src/locales/en/modifier-select-ui-handler.json index 75299a08ba7..bc49ce25931 100644 --- a/src/locales/ca_ES/modifier-select-ui-handler.ts +++ b/src/locales/en/modifier-select-ui-handler.json @@ -1,6 +1,4 @@ -import { SimpleTranslationEntries } from "#app/interfaces/locales"; - -export const modifierSelectUiHandler: SimpleTranslationEntries = { +{ "transfer": "Transfer", "reroll": "Reroll", "lockRarities": "Lock Rarities", @@ -11,4 +9,4 @@ export const modifierSelectUiHandler: SimpleTranslationEntries = { "checkTeamDesc": "Check your team or use a form changing item.", "rerollCost": "₽{{formattedMoney}}", "itemCost": "₽{{formattedMoney}}" -} as const; +} \ No newline at end of file diff --git a/src/locales/en/modifier-select-ui-handler.ts b/src/locales/en/modifier-select-ui-handler.ts deleted file mode 100644 index 64cf3aa2ba3..00000000000 --- a/src/locales/en/modifier-select-ui-handler.ts +++ /dev/null @@ -1,14 +0,0 @@ -import { SimpleTranslationEntries } from "#app/interfaces/locales"; - -export const modifierSelectUiHandler: SimpleTranslationEntries = { - "transfer": "Transfer", - "reroll": "Reroll", - "lockRarities": "Lock Rarities", - "checkTeam": "Check Team", - "transferDesc": "Transfer a held item from one Pokémon to another.", - "rerollDesc": "Spend money to reroll your item options.", - "lockRaritiesDesc": "Lock item rarities on reroll (affects reroll cost).", - "checkTeamDesc": "Check your team or use a form changing item.", - "rerollCost": "₽{{formattedMoney}}", - "itemCost": "₽{{formattedMoney}}" -} as const; diff --git a/src/locales/en/modifier-type.json b/src/locales/en/modifier-type.json new file mode 100644 index 00000000000..ed1ef900878 --- /dev/null +++ b/src/locales/en/modifier-type.json @@ -0,0 +1,455 @@ +{ + "ModifierType": { + "AddPokeballModifierType": { + "name": "{{modifierCount}}x {{pokeballName}}", + "description": "Receive {{pokeballName}} x{{modifierCount}} (Inventory: {{pokeballAmount}}) \nCatch Rate: {{catchRate}}" + }, + "AddVoucherModifierType": { + "name": "{{modifierCount}}x {{voucherTypeName}}", + "description": "Receive {{voucherTypeName}} x{{modifierCount}}." + }, + "PokemonHeldItemModifierType": { + "extra": { + "inoperable": "{{pokemonName}} can't take\nthis item!", + "tooMany": "{{pokemonName}} has too many\nof this item!" + } + }, + "PokemonHpRestoreModifierType": { + "description": "Restores {{restorePoints}} HP or {{restorePercent}}% HP for one Pokémon, whichever is higher.", + "extra": { + "fully": "Fully restores HP for one Pokémon.", + "fullyWithStatus": "Fully restores HP for one Pokémon and heals any status ailment." + } + }, + "PokemonReviveModifierType": { + "description": "Revives one Pokémon and restores {{restorePercent}}% HP." + }, + "PokemonStatusHealModifierType": { + "description": "Heals any status ailment for one Pokémon." + }, + "PokemonPpRestoreModifierType": { + "description": "Restores {{restorePoints}} PP for one Pokémon move.", + "extra": { + "fully": "Restores all PP for one Pokémon move." + } + }, + "PokemonAllMovePpRestoreModifierType": { + "description": "Restores {{restorePoints}} PP for all of one Pokémon's moves.", + "extra": { + "fully": "Restores all PP for all of one Pokémon's moves." + } + }, + "PokemonPpUpModifierType": { + "description": "Permanently increases PP for one Pokémon move by {{upPoints}} for every 5 maximum PP (maximum 3)." + }, + "PokemonNatureChangeModifierType": { + "name": "{{natureName}} Mint", + "description": "Changes a Pokémon's nature to {{natureName}} and permanently unlocks the nature for the starter." + }, + "DoubleBattleChanceBoosterModifierType": { + "description": "Doubles the chance of an encounter being a double battle for {{battleCount}} battles." + }, + "TempBattleStatBoosterModifierType": { + "description": "Increases the {{tempBattleStatName}} of all party members by 1 stage for 5 battles." + }, + "AttackTypeBoosterModifierType": { + "description": "Increases the power of a Pokémon's {{moveType}}-type moves by 20%." + }, + "PokemonLevelIncrementModifierType": { + "description": "Increases a Pokémon's level by {{levels}}." + }, + "AllPokemonLevelIncrementModifierType": { + "description": "Increases all party members' level by {{levels}}." + }, + "PokemonBaseStatBoosterModifierType": { + "description": "Increases the holder's base {{statName}} by 10%. The higher your IVs, the higher the stack limit." + }, + "AllPokemonFullHpRestoreModifierType": { + "description": "Restores 100% HP for all Pokémon." + }, + "AllPokemonFullReviveModifierType": { + "description": "Revives all fainted Pokémon, fully restoring HP." + }, + "MoneyRewardModifierType": { + "description": "Grants a {{moneyMultiplier}} amount of money (₽{{moneyAmount}}).", + "extra": { + "small": "small", + "moderate": "moderate", + "large": "large" + } + }, + "ExpBoosterModifierType": { + "description": "Increases gain of EXP. Points by {{boostPercent}}%." + }, + "PokemonExpBoosterModifierType": { + "description": "Increases the holder's gain of EXP. Points by {{boostPercent}}%." + }, + "PokemonFriendshipBoosterModifierType": { + "description": "Increases friendship gain per victory by 50%." + }, + "PokemonMoveAccuracyBoosterModifierType": { + "description": "Increases move accuracy by {{accuracyAmount}} (maximum 100)." + }, + "PokemonMultiHitModifierType": { + "description": "Attacks hit one additional time at the cost of a 60/75/82.5% power reduction per stack respectively." + }, + "TmModifierType": { + "name": "TM{{moveId}} - {{moveName}}", + "description": "Teach {{moveName}} to a Pokémon." + }, + "TmModifierTypeWithInfo": { + "name": "TM{{moveId}} - {{moveName}}", + "description": "Teach {{moveName}} to a Pokémon\n(Hold C or Shift for more info)." + }, + "EvolutionItemModifierType": { + "description": "Causes certain Pokémon to evolve." + }, + "FormChangeItemModifierType": { + "description": "Causes certain Pokémon to change form." + }, + "FusePokemonModifierType": { + "description": "Combines two Pokémon (transfers Ability, splits base stats and types, shares move pool)." + }, + "TerastallizeModifierType": { + "name": "{{teraType}} Tera Shard", + "description": "{{teraType}} Terastallizes the holder for up to 10 battles." + }, + "ContactHeldItemTransferChanceModifierType": { + "description": "Upon attacking, there is a {{chancePercent}}% chance the foe's held item will be stolen." + }, + "TurnHeldItemTransferModifierType": { + "description": "Every turn, the holder acquires one held item from the foe." + }, + "EnemyAttackStatusEffectChanceModifierType": { + "description": "Adds a {{chancePercent}}% chance to inflict {{statusEffect}} with attack moves." + }, + "EnemyEndureChanceModifierType": { + "description": "Adds a {{chancePercent}}% chance of enduring a hit." + }, + + "RARE_CANDY": { "name": "Rare Candy" }, + "RARER_CANDY": { "name": "Rarer Candy" }, + + "MEGA_BRACELET": { "name": "Mega Bracelet", "description": "Mega Stones become available." }, + "DYNAMAX_BAND": { "name": "Dynamax Band", "description": "Max Mushrooms become available." }, + "TERA_ORB": { "name": "Tera Orb", "description": "Tera Shards become available." }, + + "MAP": { "name": "Map", "description": "Allows you to choose your destination at a crossroads." }, + + "POTION": { "name": "Potion" }, + "SUPER_POTION": { "name": "Super Potion" }, + "HYPER_POTION": { "name": "Hyper Potion" }, + "MAX_POTION": { "name": "Max Potion" }, + "FULL_RESTORE": { "name": "Full Restore" }, + + "REVIVE": { "name": "Revive" }, + "MAX_REVIVE": { "name": "Max Revive" }, + + "FULL_HEAL": { "name": "Full Heal" }, + + "SACRED_ASH": { "name": "Sacred Ash" }, + + "REVIVER_SEED": { "name": "Reviver Seed", "description": "Revives the holder for 1/2 HP upon fainting from a direct hit." }, + + "WHITE_HERB": { "name": "White Herb", "description": "An item to be held by a Pokémon. It will restore any lowered stat in battle." }, + + "ETHER": { "name": "Ether" }, + "MAX_ETHER": { "name": "Max Ether" }, + + "ELIXIR": { "name": "Elixir" }, + "MAX_ELIXIR": { "name": "Max Elixir" }, + + "PP_UP": { "name": "PP Up" }, + "PP_MAX": { "name": "PP Max" }, + + "LURE": { "name": "Lure" }, + "SUPER_LURE": { "name": "Super Lure" }, + "MAX_LURE": { "name": "Max Lure" }, + + "MEMORY_MUSHROOM": { "name": "Memory Mushroom", "description": "Recall one Pokémon's forgotten move." }, + + "EXP_SHARE": { "name": "EXP. All", "description": "Non-participants receive 20% of a single participant's EXP. Points." }, + "EXP_BALANCE": { "name": "EXP. Balance", "description": "Weighs EXP. Points received from battles towards lower-leveled party members." }, + + "OVAL_CHARM": { "name": "Oval Charm", "description": "When multiple Pokémon participate in a battle, each gets an extra 10% of the total EXP." }, + + "EXP_CHARM": { "name": "EXP. Charm" }, + "SUPER_EXP_CHARM": { "name": "Super EXP. Charm" }, + "GOLDEN_EXP_CHARM": { "name": "Golden EXP. Charm" }, + + "LUCKY_EGG": { "name": "Lucky Egg" }, + "GOLDEN_EGG": { "name": "Golden Egg" }, + + "SOOTHE_BELL": { "name": "Soothe Bell" }, + + "SCOPE_LENS": { "name": "Scope Lens", "description": "It's a lens for scoping out weak points. It boosts the holder's critical-hit ratio."}, + "LEEK": { "name": "Leek", "description": "This very long and stiff stalk of leek boosts the critical-hit ratio of Farfetch'd's moves."}, + + "EVIOLITE": { "name": "Eviolite", "description": "This mysterious evolutionary lump boosts the Defense and Sp. Def stats when held by a Pokémon that can still evolve." }, + + "SOUL_DEW": { "name": "Soul Dew", "description": "Increases the influence of a Pokémon's nature on its stats by 10% (additive)." }, + + "NUGGET": { "name": "Nugget" }, + "BIG_NUGGET": { "name": "Big Nugget" }, + "RELIC_GOLD": { "name": "Relic Gold" }, + + "AMULET_COIN": { "name": "Amulet Coin", "description": "Increases money rewards by 20%." }, + "GOLDEN_PUNCH": { "name": "Golden Punch", "description": "Grants 50% of direct damage inflicted as money." }, + "COIN_CASE": { "name": "Coin Case", "description": "After every 10th battle, receive 10% of your money in interest." }, + + "LOCK_CAPSULE": { "name": "Lock Capsule", "description": "Allows you to lock item rarities when rerolling items." }, + + "GRIP_CLAW": { "name": "Grip Claw" }, + "WIDE_LENS": { "name": "Wide Lens" }, + + "MULTI_LENS": { "name": "Multi Lens" }, + + "HEALING_CHARM": { "name": "Healing Charm", "description": "Increases the effectiveness of HP restoring moves and items by 10% (excludes Revives)." }, + "CANDY_JAR": { "name": "Candy Jar", "description": "Increases the number of levels added by Rare Candy items by 1." }, + + "BERRY_POUCH": { "name": "Berry Pouch", "description": "Adds a 30% chance that a used berry will not be consumed." }, + + "FOCUS_BAND": { "name": "Focus Band", "description": "Adds a 10% chance to survive with 1 HP after being damaged enough to faint." }, + + "QUICK_CLAW": { "name": "Quick Claw", "description": "Adds a 10% chance to move first regardless of speed (after priority)." }, + + "KINGS_ROCK": { "name": "King's Rock", "description": "Adds a 10% chance an attack move will cause the opponent to flinch." }, + + "LEFTOVERS": { "name": "Leftovers", "description": "Heals 1/16 of a Pokémon's maximum HP every turn." }, + "SHELL_BELL": { "name": "Shell Bell", "description": "Heals 1/8 of a Pokémon's dealt damage." }, + + "TOXIC_ORB": { "name": "Toxic Orb", "description": "It's a bizarre orb that exudes toxins when touched and will badly poison the holder during battle." }, + "FLAME_ORB": { "name": "Flame Orb", "description": "It's a bizarre orb that gives off heat when touched and will affect the holder with a burn during battle." }, + + "BATON": { "name": "Baton", "description": "Allows passing along effects when switching Pokémon, which also bypasses traps." }, + + "SHINY_CHARM": { "name": "Shiny Charm", "description": "Dramatically increases the chance of a wild Pokémon being Shiny." }, + "ABILITY_CHARM": { "name": "Ability Charm", "description": "Dramatically increases the chance of a wild Pokémon having a Hidden Ability." }, + + "IV_SCANNER": { "name": "IV Scanner", "description": "Allows scanning the IVs of wild Pokémon. 2 IVs are revealed per stack. The best IVs are shown first." }, + + "DNA_SPLICERS": { "name": "DNA Splicers" }, + + "MINI_BLACK_HOLE": { "name": "Mini Black Hole" }, + + "GOLDEN_POKEBALL": { "name": "Golden Poké Ball", "description": "Adds 1 extra item option at the end of every battle." }, + + "ENEMY_DAMAGE_BOOSTER": { "name": "Damage Token", "description": "Increases damage by 5%." }, + "ENEMY_DAMAGE_REDUCTION": { "name": "Protection Token", "description": "Reduces incoming damage by 2.5%." }, + "ENEMY_HEAL": { "name": "Recovery Token", "description": "Heals 2% of max HP every turn." }, + "ENEMY_ATTACK_POISON_CHANCE": { "name": "Poison Token" }, + "ENEMY_ATTACK_PARALYZE_CHANCE": { "name": "Paralyze Token" }, + "ENEMY_ATTACK_BURN_CHANCE": { "name": "Burn Token" }, + "ENEMY_STATUS_EFFECT_HEAL_CHANCE": { "name": "Full Heal Token", "description": "Adds a 2.5% chance every turn to heal a status condition." }, + "ENEMY_ENDURE_CHANCE": { "name": "Endure Token" }, + "ENEMY_FUSED_CHANCE": { "name": "Fusion Token", "description": "Adds a 1% chance that a wild Pokémon will be a fusion." } + }, + "SpeciesBoosterItem": { + "LIGHT_BALL": { "name": "Light Ball", "description": "It's a mysterious orb that boosts Pikachu's Attack and Sp. Atk stats." }, + "THICK_CLUB": { "name": "Thick Club", "description": "This hard bone of unknown origin boosts Cubone or Marowak's Attack stat." }, + "METAL_POWDER": { "name": "Metal Powder", "description": "Extremely fine yet hard, this odd powder boosts Ditto's Defense stat." }, + "QUICK_POWDER": { "name": "Quick Powder", "description": "Extremely fine yet hard, this odd powder boosts Ditto's Speed stat." } + }, + "TempBattleStatBoosterItem": { + "x_attack": "X Attack", + "x_defense": "X Defense", + "x_sp_atk": "X Sp. Atk", + "x_sp_def": "X Sp. Def", + "x_speed": "X Speed", + "x_accuracy": "X Accuracy", + "dire_hit": "Dire Hit" + }, + + "TempBattleStatBoosterStatName": { + "ATK": "Attack", + "DEF": "Defense", + "SPATK": "Sp. Atk", + "SPDEF": "Sp. Def", + "SPD": "Speed", + "ACC": "Accuracy", + "CRIT": "Critical Hit Ratio", + "EVA": "Evasiveness", + "DEFAULT": "???" + }, + + "AttackTypeBoosterItem": { + "silk_scarf": "Silk Scarf", + "black_belt": "Black Belt", + "sharp_beak": "Sharp Beak", + "poison_barb": "Poison Barb", + "soft_sand": "Soft Sand", + "hard_stone": "Hard Stone", + "silver_powder": "Silver Powder", + "spell_tag": "Spell Tag", + "metal_coat": "Metal Coat", + "charcoal": "Charcoal", + "mystic_water": "Mystic Water", + "miracle_seed": "Miracle Seed", + "magnet": "Magnet", + "twisted_spoon": "Twisted Spoon", + "never_melt_ice": "Never-Melt Ice", + "dragon_fang": "Dragon Fang", + "black_glasses": "Black Glasses", + "fairy_feather": "Fairy Feather" + }, + "BaseStatBoosterItem": { + "hp_up": "HP Up", + "protein": "Protein", + "iron": "Iron", + "calcium": "Calcium", + "zinc": "Zinc", + "carbos": "Carbos" + }, + "EvolutionItem": { + "NONE": "None", + + "LINKING_CORD": "Linking Cord", + "SUN_STONE": "Sun Stone", + "MOON_STONE": "Moon Stone", + "LEAF_STONE": "Leaf Stone", + "FIRE_STONE": "Fire Stone", + "WATER_STONE": "Water Stone", + "THUNDER_STONE": "Thunder Stone", + "ICE_STONE": "Ice Stone", + "DUSK_STONE": "Dusk Stone", + "DAWN_STONE": "Dawn Stone", + "SHINY_STONE": "Shiny Stone", + "CRACKED_POT": "Cracked Pot", + "SWEET_APPLE": "Sweet Apple", + "TART_APPLE": "Tart Apple", + "STRAWBERRY_SWEET": "Strawberry Sweet", + "UNREMARKABLE_TEACUP": "Unremarkable Teacup", + + "CHIPPED_POT": "Chipped Pot", + "BLACK_AUGURITE": "Black Augurite", + "GALARICA_CUFF": "Galarica Cuff", + "GALARICA_WREATH": "Galarica Wreath", + "PEAT_BLOCK": "Peat Block", + "AUSPICIOUS_ARMOR": "Auspicious Armor", + "MALICIOUS_ARMOR": "Malicious Armor", + "MASTERPIECE_TEACUP": "Masterpiece Teacup", + "METAL_ALLOY": "Metal Alloy", + "SCROLL_OF_DARKNESS": "Scroll Of Darkness", + "SCROLL_OF_WATERS": "Scroll Of Waters", + "SYRUPY_APPLE": "Syrupy Apple" + }, + "FormChangeItem": { + "NONE": "None", + + "ABOMASITE": "Abomasite", + "ABSOLITE": "Absolite", + "AERODACTYLITE": "Aerodactylite", + "AGGRONITE": "Aggronite", + "ALAKAZITE": "Alakazite", + "ALTARIANITE": "Altarianite", + "AMPHAROSITE": "Ampharosite", + "AUDINITE": "Audinite", + "BANETTITE": "Banettite", + "BEEDRILLITE": "Beedrillite", + "BLASTOISINITE": "Blastoisinite", + "BLAZIKENITE": "Blazikenite", + "CAMERUPTITE": "Cameruptite", + "CHARIZARDITE_X": "Charizardite X", + "CHARIZARDITE_Y": "Charizardite Y", + "DIANCITE": "Diancite", + "GALLADITE": "Galladite", + "GARCHOMPITE": "Garchompite", + "GARDEVOIRITE": "Gardevoirite", + "GENGARITE": "Gengarite", + "GLALITITE": "Glalitite", + "GYARADOSITE": "Gyaradosite", + "HERACRONITE": "Heracronite", + "HOUNDOOMINITE": "Houndoominite", + "KANGASKHANITE": "Kangaskhanite", + "LATIASITE": "Latiasite", + "LATIOSITE": "Latiosite", + "LOPUNNITE": "Lopunnite", + "LUCARIONITE": "Lucarionite", + "MANECTITE": "Manectite", + "MAWILITE": "Mawilite", + "MEDICHAMITE": "Medichamite", + "METAGROSSITE": "Metagrossite", + "MEWTWONITE_X": "Mewtwonite X", + "MEWTWONITE_Y": "Mewtwonite Y", + "PIDGEOTITE": "Pidgeotite", + "PINSIRITE": "Pinsirite", + "RAYQUAZITE": "Rayquazite", + "SABLENITE": "Sablenite", + "SALAMENCITE": "Salamencite", + "SCEPTILITE": "Sceptilite", + "SCIZORITE": "Scizorite", + "SHARPEDONITE": "Sharpedonite", + "SLOWBRONITE": "Slowbronite", + "STEELIXITE": "Steelixite", + "SWAMPERTITE": "Swampertite", + "TYRANITARITE": "Tyranitarite", + "VENUSAURITE": "Venusaurite", + + "BLUE_ORB": "Blue Orb", + "RED_ORB": "Red Orb", + "SHARP_METEORITE": "Sharp Meteorite", + "HARD_METEORITE": "Hard Meteorite", + "SMOOTH_METEORITE": "Smooth Meteorite", + "ADAMANT_CRYSTAL": "Adamant Crystal", + "LUSTROUS_GLOBE": "Lustrous Globe", + "GRISEOUS_CORE": "Griseous Core", + "REVEAL_GLASS": "Reveal Glass", + "GRACIDEA": "Gracidea", + "MAX_MUSHROOMS": "Max Mushrooms", + "DARK_STONE": "Dark Stone", + "LIGHT_STONE": "Light Stone", + "PRISON_BOTTLE": "Prison Bottle", + "N_LUNARIZER": "N Lunarizer", + "N_SOLARIZER": "N Solarizer", + "RUSTED_SWORD": "Rusted Sword", + "RUSTED_SHIELD": "Rusted Shield", + "ICY_REINS_OF_UNITY": "Icy Reins Of Unity", + "SHADOW_REINS_OF_UNITY": "Shadow Reins Of Unity", + "WELLSPRING_MASK": "Wellspring Mask", + "HEARTHFLAME_MASK": "Hearthflame Mask", + "CORNERSTONE_MASK": "Cornerstone Mask", + "SHOCK_DRIVE": "Shock Drive", + "BURN_DRIVE": "Burn Drive", + "CHILL_DRIVE": "Chill Drive", + "DOUSE_DRIVE": "Douse Drive", + "ULTRANECROZIUM_Z": "Ultranecrozium Z", + + "FIST_PLATE": "Fist Plate", + "SKY_PLATE": "Sky Plate", + "TOXIC_PLATE": "Toxic Plate", + "EARTH_PLATE": "Earth Plate", + "STONE_PLATE": "Stone Plate", + "INSECT_PLATE": "Insect Plate", + "SPOOKY_PLATE": "Spooky Plate", + "IRON_PLATE": "Iron Plate", + "FLAME_PLATE": "Flame Plate", + "SPLASH_PLATE": "Splash Plate", + "MEADOW_PLATE": "Meadow Plate", + "ZAP_PLATE": "Zap Plate", + "MIND_PLATE": "Mind Plate", + "ICICLE_PLATE": "Icicle Plate", + "DRACO_PLATE": "Draco Plate", + "DREAD_PLATE": "Dread Plate", + "PIXIE_PLATE": "Pixie Plate", + "BLANK_PLATE": "Blank Plate", + "LEGEND_PLATE": "Legend Plate", + "FIGHTING_MEMORY": "Fighting Memory", + "FLYING_MEMORY": "Flying Memory", + "POISON_MEMORY": "Poison Memory", + "GROUND_MEMORY": "Ground Memory", + "ROCK_MEMORY": "Rock Memory", + "BUG_MEMORY": "Bug Memory", + "GHOST_MEMORY": "Ghost Memory", + "STEEL_MEMORY": "Steel Memory", + "FIRE_MEMORY": "Fire Memory", + "WATER_MEMORY": "Water Memory", + "GRASS_MEMORY": "Grass Memory", + "ELECTRIC_MEMORY": "Electric Memory", + "PSYCHIC_MEMORY": "Psychic Memory", + "ICE_MEMORY": "Ice Memory", + "DRAGON_MEMORY": "Dragon Memory", + "DARK_MEMORY": "Dark Memory", + "FAIRY_MEMORY": "Fairy Memory", + "BLANK_MEMORY": "Blank Memory" + } +} diff --git a/src/locales/en/modifier-type.ts b/src/locales/en/modifier-type.ts deleted file mode 100644 index 68761c33106..00000000000 --- a/src/locales/en/modifier-type.ts +++ /dev/null @@ -1,457 +0,0 @@ -import { ModifierTypeTranslationEntries } from "#app/interfaces/locales"; - -export const modifierType: ModifierTypeTranslationEntries = { - ModifierType: { - "AddPokeballModifierType": { - name: "{{modifierCount}}x {{pokeballName}}", - description: "Receive {{pokeballName}} x{{modifierCount}} (Inventory: {{pokeballAmount}}) \nCatch Rate: {{catchRate}}", - }, - "AddVoucherModifierType": { - name: "{{modifierCount}}x {{voucherTypeName}}", - description: "Receive {{voucherTypeName}} x{{modifierCount}}.", - }, - "PokemonHeldItemModifierType": { - extra: { - "inoperable": "{{pokemonName}} can't take\nthis item!", - "tooMany": "{{pokemonName}} has too many\nof this item!", - } - }, - "PokemonHpRestoreModifierType": { - description: "Restores {{restorePoints}} HP or {{restorePercent}}% HP for one Pokémon, whichever is higher.", - extra: { - "fully": "Fully restores HP for one Pokémon.", - "fullyWithStatus": "Fully restores HP for one Pokémon and heals any status ailment.", - } - }, - "PokemonReviveModifierType": { - description: "Revives one Pokémon and restores {{restorePercent}}% HP.", - }, - "PokemonStatusHealModifierType": { - description: "Heals any status ailment for one Pokémon.", - }, - "PokemonPpRestoreModifierType": { - description: "Restores {{restorePoints}} PP for one Pokémon move.", - extra: { - "fully": "Restores all PP for one Pokémon move.", - } - }, - "PokemonAllMovePpRestoreModifierType": { - description: "Restores {{restorePoints}} PP for all of one Pokémon's moves.", - extra: { - "fully": "Restores all PP for all of one Pokémon's moves.", - } - }, - "PokemonPpUpModifierType": { - description: "Permanently increases PP for one Pokémon move by {{upPoints}} for every 5 maximum PP (maximum 3).", - }, - "PokemonNatureChangeModifierType": { - name: "{{natureName}} Mint", - description: "Changes a Pokémon's nature to {{natureName}} and permanently unlocks the nature for the starter.", - }, - "DoubleBattleChanceBoosterModifierType": { - description: "Doubles the chance of an encounter being a double battle for {{battleCount}} battles.", - }, - "TempBattleStatBoosterModifierType": { - description: "Increases the {{tempBattleStatName}} of all party members by 1 stage for 5 battles.", - }, - "AttackTypeBoosterModifierType": { - description: "Increases the power of a Pokémon's {{moveType}}-type moves by 20%.", - }, - "PokemonLevelIncrementModifierType": { - description: "Increases a Pokémon's level by {{levels}}.", - }, - "AllPokemonLevelIncrementModifierType": { - description: "Increases all party members' level by {{levels}}.", - }, - "PokemonBaseStatBoosterModifierType": { - description: "Increases the holder's base {{statName}} by 10%. The higher your IVs, the higher the stack limit.", - }, - "AllPokemonFullHpRestoreModifierType": { - description: "Restores 100% HP for all Pokémon.", - }, - "AllPokemonFullReviveModifierType": { - description: "Revives all fainted Pokémon, fully restoring HP.", - }, - "MoneyRewardModifierType": { - description: "Grants a {{moneyMultiplier}} amount of money (₽{{moneyAmount}}).", - extra: { - "small": "small", - "moderate": "moderate", - "large": "large", - }, - }, - "ExpBoosterModifierType": { - description: "Increases gain of EXP. Points by {{boostPercent}}%.", - }, - "PokemonExpBoosterModifierType": { - description: "Increases the holder's gain of EXP. Points by {{boostPercent}}%.", - }, - "PokemonFriendshipBoosterModifierType": { - description: "Increases friendship gain per victory by 50%.", - }, - "PokemonMoveAccuracyBoosterModifierType": { - description: "Increases move accuracy by {{accuracyAmount}} (maximum 100).", - }, - "PokemonMultiHitModifierType": { - description: "Attacks hit one additional time at the cost of a 60/75/82.5% power reduction per stack respectively.", - }, - "TmModifierType": { - name: "TM{{moveId}} - {{moveName}}", - description: "Teach {{moveName}} to a Pokémon.", - }, - "TmModifierTypeWithInfo": { - name: "TM{{moveId}} - {{moveName}}", - description: "Teach {{moveName}} to a Pokémon\n(Hold C or Shift for more info).", - }, - "EvolutionItemModifierType": { - description: "Causes certain Pokémon to evolve.", - }, - "FormChangeItemModifierType": { - description: "Causes certain Pokémon to change form.", - }, - "FusePokemonModifierType": { - description: "Combines two Pokémon (transfers Ability, splits base stats and types, shares move pool).", - }, - "TerastallizeModifierType": { - name: "{{teraType}} Tera Shard", - description: "{{teraType}} Terastallizes the holder for up to 10 battles.", - }, - "ContactHeldItemTransferChanceModifierType": { - description: "Upon attacking, there is a {{chancePercent}}% chance the foe's held item will be stolen.", - }, - "TurnHeldItemTransferModifierType": { - description: "Every turn, the holder acquires one held item from the foe.", - }, - "EnemyAttackStatusEffectChanceModifierType": { - description: "Adds a {{chancePercent}}% chance to inflict {{statusEffect}} with attack moves.", - }, - "EnemyEndureChanceModifierType": { - description: "Adds a {{chancePercent}}% chance of enduring a hit.", - }, - - "RARE_CANDY": { name: "Rare Candy" }, - "RARER_CANDY": { name: "Rarer Candy" }, - - "MEGA_BRACELET": { name: "Mega Bracelet", description: "Mega Stones become available." }, - "DYNAMAX_BAND": { name: "Dynamax Band", description: "Max Mushrooms become available." }, - "TERA_ORB": { name: "Tera Orb", description: "Tera Shards become available." }, - - "MAP": { name: "Map", description: "Allows you to choose your destination at a crossroads." }, - - "POTION": { name: "Potion" }, - "SUPER_POTION": { name: "Super Potion" }, - "HYPER_POTION": { name: "Hyper Potion" }, - "MAX_POTION": { name: "Max Potion" }, - "FULL_RESTORE": { name: "Full Restore" }, - - "REVIVE": { name: "Revive" }, - "MAX_REVIVE": { name: "Max Revive" }, - - "FULL_HEAL": { name: "Full Heal" }, - - "SACRED_ASH": { name: "Sacred Ash" }, - - "REVIVER_SEED": { name: "Reviver Seed", description: "Revives the holder for 1/2 HP upon fainting from a direct hit." }, - - "WHITE_HERB": { name: "White Herb", description: "An item to be held by a Pokémon. It will restore any lowered stat in battle." }, - - "ETHER": { name: "Ether" }, - "MAX_ETHER": { name: "Max Ether" }, - - "ELIXIR": { name: "Elixir" }, - "MAX_ELIXIR": { name: "Max Elixir" }, - - "PP_UP": { name: "PP Up" }, - "PP_MAX": { name: "PP Max" }, - - "LURE": { name: "Lure" }, - "SUPER_LURE": { name: "Super Lure" }, - "MAX_LURE": { name: "Max Lure" }, - - "MEMORY_MUSHROOM": { name: "Memory Mushroom", description: "Recall one Pokémon's forgotten move." }, - - "EXP_SHARE": { name: "EXP. All", description: "Non-participants receive 20% of a single participant's EXP. Points." }, - "EXP_BALANCE": { name: "EXP. Balance", description: "Weighs EXP. Points received from battles towards lower-leveled party members." }, - - "OVAL_CHARM": { name: "Oval Charm", description: "When multiple Pokémon participate in a battle, each gets an extra 10% of the total EXP." }, - - "EXP_CHARM": { name: "EXP. Charm" }, - "SUPER_EXP_CHARM": { name: "Super EXP. Charm" }, - "GOLDEN_EXP_CHARM": { name: "Golden EXP. Charm" }, - - "LUCKY_EGG": { name: "Lucky Egg" }, - "GOLDEN_EGG": { name: "Golden Egg" }, - - "SOOTHE_BELL": { name: "Soothe Bell" }, - - "SCOPE_LENS": { name: "Scope Lens", description: "It's a lens for scoping out weak points. It boosts the holder's critical-hit ratio."}, - "LEEK": { name: "Leek", description: "This very long and stiff stalk of leek boosts the critical-hit ratio of Farfetch'd's moves."}, - - "EVIOLITE": { name: "Eviolite", description: "This mysterious evolutionary lump boosts the Defense and Sp. Def stats when held by a Pokémon that can still evolve." }, - - "SOUL_DEW": { name: "Soul Dew", description: "Increases the influence of a Pokémon's nature on its stats by 10% (additive)." }, - - "NUGGET": { name: "Nugget" }, - "BIG_NUGGET": { name: "Big Nugget" }, - "RELIC_GOLD": { name: "Relic Gold" }, - - "AMULET_COIN": { name: "Amulet Coin", description: "Increases money rewards by 20%." }, - "GOLDEN_PUNCH": { name: "Golden Punch", description: "Grants 50% of direct damage inflicted as money." }, - "COIN_CASE": { name: "Coin Case", description: "After every 10th battle, receive 10% of your money in interest." }, - - "LOCK_CAPSULE": { name: "Lock Capsule", description: "Allows you to lock item rarities when rerolling items." }, - - "GRIP_CLAW": { name: "Grip Claw" }, - "WIDE_LENS": { name: "Wide Lens" }, - - "MULTI_LENS": { name: "Multi Lens" }, - - "HEALING_CHARM": { name: "Healing Charm", description: "Increases the effectiveness of HP restoring moves and items by 10% (excludes Revives)." }, - "CANDY_JAR": { name: "Candy Jar", description: "Increases the number of levels added by Rare Candy items by 1." }, - - "BERRY_POUCH": { name: "Berry Pouch", description: "Adds a 30% chance that a used berry will not be consumed." }, - - "FOCUS_BAND": { name: "Focus Band", description: "Adds a 10% chance to survive with 1 HP after being damaged enough to faint." }, - - "QUICK_CLAW": { name: "Quick Claw", description: "Adds a 10% chance to move first regardless of speed (after priority)." }, - - "KINGS_ROCK": { name: "King's Rock", description: "Adds a 10% chance an attack move will cause the opponent to flinch." }, - - "LEFTOVERS": { name: "Leftovers", description: "Heals 1/16 of a Pokémon's maximum HP every turn." }, - "SHELL_BELL": { name: "Shell Bell", description: "Heals 1/8 of a Pokémon's dealt damage." }, - - "TOXIC_ORB": { name: "Toxic Orb", description: "It's a bizarre orb that exudes toxins when touched and will badly poison the holder during battle." }, - "FLAME_ORB": { name: "Flame Orb", description: "It's a bizarre orb that gives off heat when touched and will affect the holder with a burn during battle." }, - - "BATON": { name: "Baton", description: "Allows passing along effects when switching Pokémon, which also bypasses traps." }, - - "SHINY_CHARM": { name: "Shiny Charm", description: "Dramatically increases the chance of a wild Pokémon being Shiny." }, - "ABILITY_CHARM": { name: "Ability Charm", description: "Dramatically increases the chance of a wild Pokémon having a Hidden Ability." }, - - "IV_SCANNER": { name: "IV Scanner", description: "Allows scanning the IVs of wild Pokémon. 2 IVs are revealed per stack. The best IVs are shown first." }, - - "DNA_SPLICERS": { name: "DNA Splicers" }, - - "MINI_BLACK_HOLE": { name: "Mini Black Hole" }, - - "GOLDEN_POKEBALL": { name: "Golden Poké Ball", description: "Adds 1 extra item option at the end of every battle." }, - - "ENEMY_DAMAGE_BOOSTER": { name: "Damage Token", description: "Increases damage by 5%." }, - "ENEMY_DAMAGE_REDUCTION": { name: "Protection Token", description: "Reduces incoming damage by 2.5%." }, - "ENEMY_HEAL": { name: "Recovery Token", description: "Heals 2% of max HP every turn." }, - "ENEMY_ATTACK_POISON_CHANCE": { name: "Poison Token" }, - "ENEMY_ATTACK_PARALYZE_CHANCE": { name: "Paralyze Token" }, - "ENEMY_ATTACK_BURN_CHANCE": { name: "Burn Token" }, - "ENEMY_STATUS_EFFECT_HEAL_CHANCE": { name: "Full Heal Token", description: "Adds a 2.5% chance every turn to heal a status condition." }, - "ENEMY_ENDURE_CHANCE": { name: "Endure Token" }, - "ENEMY_FUSED_CHANCE": { name: "Fusion Token", description: "Adds a 1% chance that a wild Pokémon will be a fusion." }, - }, - SpeciesBoosterItem: { - "LIGHT_BALL": { name: "Light Ball", description: "It's a mysterious orb that boosts Pikachu's Attack and Sp. Atk stats." }, - "THICK_CLUB": { name: "Thick Club", description: "This hard bone of unknown origin boosts Cubone or Marowak's Attack stat." }, - "METAL_POWDER": { name: "Metal Powder", description: "Extremely fine yet hard, this odd powder boosts Ditto's Defense stat." }, - "QUICK_POWDER": { name: "Quick Powder", description: "Extremely fine yet hard, this odd powder boosts Ditto's Speed stat." } - }, - TempBattleStatBoosterItem: { - "x_attack": "X Attack", - "x_defense": "X Defense", - "x_sp_atk": "X Sp. Atk", - "x_sp_def": "X Sp. Def", - "x_speed": "X Speed", - "x_accuracy": "X Accuracy", - "dire_hit": "Dire Hit", - }, - - TempBattleStatBoosterStatName: { - "ATK": "Attack", - "DEF": "Defense", - "SPATK": "Sp. Atk", - "SPDEF": "Sp. Def", - "SPD": "Speed", - "ACC": "Accuracy", - "CRIT": "Critical Hit Ratio", - "EVA": "Evasiveness", - "DEFAULT": "???", - }, - - AttackTypeBoosterItem: { - "silk_scarf": "Silk Scarf", - "black_belt": "Black Belt", - "sharp_beak": "Sharp Beak", - "poison_barb": "Poison Barb", - "soft_sand": "Soft Sand", - "hard_stone": "Hard Stone", - "silver_powder": "Silver Powder", - "spell_tag": "Spell Tag", - "metal_coat": "Metal Coat", - "charcoal": "Charcoal", - "mystic_water": "Mystic Water", - "miracle_seed": "Miracle Seed", - "magnet": "Magnet", - "twisted_spoon": "Twisted Spoon", - "never_melt_ice": "Never-Melt Ice", - "dragon_fang": "Dragon Fang", - "black_glasses": "Black Glasses", - "fairy_feather": "Fairy Feather", - }, - BaseStatBoosterItem: { - "hp_up": "HP Up", - "protein": "Protein", - "iron": "Iron", - "calcium": "Calcium", - "zinc": "Zinc", - "carbos": "Carbos", - }, - EvolutionItem: { - "NONE": "None", - - "LINKING_CORD": "Linking Cord", - "SUN_STONE": "Sun Stone", - "MOON_STONE": "Moon Stone", - "LEAF_STONE": "Leaf Stone", - "FIRE_STONE": "Fire Stone", - "WATER_STONE": "Water Stone", - "THUNDER_STONE": "Thunder Stone", - "ICE_STONE": "Ice Stone", - "DUSK_STONE": "Dusk Stone", - "DAWN_STONE": "Dawn Stone", - "SHINY_STONE": "Shiny Stone", - "CRACKED_POT": "Cracked Pot", - "SWEET_APPLE": "Sweet Apple", - "TART_APPLE": "Tart Apple", - "STRAWBERRY_SWEET": "Strawberry Sweet", - "UNREMARKABLE_TEACUP": "Unremarkable Teacup", - - "CHIPPED_POT": "Chipped Pot", - "BLACK_AUGURITE": "Black Augurite", - "GALARICA_CUFF": "Galarica Cuff", - "GALARICA_WREATH": "Galarica Wreath", - "PEAT_BLOCK": "Peat Block", - "AUSPICIOUS_ARMOR": "Auspicious Armor", - "MALICIOUS_ARMOR": "Malicious Armor", - "MASTERPIECE_TEACUP": "Masterpiece Teacup", - "METAL_ALLOY": "Metal Alloy", - "SCROLL_OF_DARKNESS": "Scroll Of Darkness", - "SCROLL_OF_WATERS": "Scroll Of Waters", - "SYRUPY_APPLE": "Syrupy Apple", - }, - FormChangeItem: { - "NONE": "None", - - "ABOMASITE": "Abomasite", - "ABSOLITE": "Absolite", - "AERODACTYLITE": "Aerodactylite", - "AGGRONITE": "Aggronite", - "ALAKAZITE": "Alakazite", - "ALTARIANITE": "Altarianite", - "AMPHAROSITE": "Ampharosite", - "AUDINITE": "Audinite", - "BANETTITE": "Banettite", - "BEEDRILLITE": "Beedrillite", - "BLASTOISINITE": "Blastoisinite", - "BLAZIKENITE": "Blazikenite", - "CAMERUPTITE": "Cameruptite", - "CHARIZARDITE_X": "Charizardite X", - "CHARIZARDITE_Y": "Charizardite Y", - "DIANCITE": "Diancite", - "GALLADITE": "Galladite", - "GARCHOMPITE": "Garchompite", - "GARDEVOIRITE": "Gardevoirite", - "GENGARITE": "Gengarite", - "GLALITITE": "Glalitite", - "GYARADOSITE": "Gyaradosite", - "HERACRONITE": "Heracronite", - "HOUNDOOMINITE": "Houndoominite", - "KANGASKHANITE": "Kangaskhanite", - "LATIASITE": "Latiasite", - "LATIOSITE": "Latiosite", - "LOPUNNITE": "Lopunnite", - "LUCARIONITE": "Lucarionite", - "MANECTITE": "Manectite", - "MAWILITE": "Mawilite", - "MEDICHAMITE": "Medichamite", - "METAGROSSITE": "Metagrossite", - "MEWTWONITE_X": "Mewtwonite X", - "MEWTWONITE_Y": "Mewtwonite Y", - "PIDGEOTITE": "Pidgeotite", - "PINSIRITE": "Pinsirite", - "RAYQUAZITE": "Rayquazite", - "SABLENITE": "Sablenite", - "SALAMENCITE": "Salamencite", - "SCEPTILITE": "Sceptilite", - "SCIZORITE": "Scizorite", - "SHARPEDONITE": "Sharpedonite", - "SLOWBRONITE": "Slowbronite", - "STEELIXITE": "Steelixite", - "SWAMPERTITE": "Swampertite", - "TYRANITARITE": "Tyranitarite", - "VENUSAURITE": "Venusaurite", - - "BLUE_ORB": "Blue Orb", - "RED_ORB": "Red Orb", - "SHARP_METEORITE": "Sharp Meteorite", - "HARD_METEORITE": "Hard Meteorite", - "SMOOTH_METEORITE": "Smooth Meteorite", - "ADAMANT_CRYSTAL": "Adamant Crystal", - "LUSTROUS_GLOBE": "Lustrous Globe", - "GRISEOUS_CORE": "Griseous Core", - "REVEAL_GLASS": "Reveal Glass", - "GRACIDEA": "Gracidea", - "MAX_MUSHROOMS": "Max Mushrooms", - "DARK_STONE": "Dark Stone", - "LIGHT_STONE": "Light Stone", - "PRISON_BOTTLE": "Prison Bottle", - "N_LUNARIZER": "N Lunarizer", - "N_SOLARIZER": "N Solarizer", - "RUSTED_SWORD": "Rusted Sword", - "RUSTED_SHIELD": "Rusted Shield", - "ICY_REINS_OF_UNITY": "Icy Reins Of Unity", - "SHADOW_REINS_OF_UNITY": "Shadow Reins Of Unity", - "WELLSPRING_MASK": "Wellspring Mask", - "HEARTHFLAME_MASK": "Hearthflame Mask", - "CORNERSTONE_MASK": "Cornerstone Mask", - "SHOCK_DRIVE": "Shock Drive", - "BURN_DRIVE": "Burn Drive", - "CHILL_DRIVE": "Chill Drive", - "DOUSE_DRIVE": "Douse Drive", - "ULTRANECROZIUM_Z": "Ultranecrozium Z", - - "FIST_PLATE": "Fist Plate", - "SKY_PLATE": "Sky Plate", - "TOXIC_PLATE": "Toxic Plate", - "EARTH_PLATE": "Earth Plate", - "STONE_PLATE": "Stone Plate", - "INSECT_PLATE": "Insect Plate", - "SPOOKY_PLATE": "Spooky Plate", - "IRON_PLATE": "Iron Plate", - "FLAME_PLATE": "Flame Plate", - "SPLASH_PLATE": "Splash Plate", - "MEADOW_PLATE": "Meadow Plate", - "ZAP_PLATE": "Zap Plate", - "MIND_PLATE": "Mind Plate", - "ICICLE_PLATE": "Icicle Plate", - "DRACO_PLATE": "Draco Plate", - "DREAD_PLATE": "Dread Plate", - "PIXIE_PLATE": "Pixie Plate", - "BLANK_PLATE": "Blank Plate", - "LEGEND_PLATE": "Legend Plate", - "FIGHTING_MEMORY": "Fighting Memory", - "FLYING_MEMORY": "Flying Memory", - "POISON_MEMORY": "Poison Memory", - "GROUND_MEMORY": "Ground Memory", - "ROCK_MEMORY": "Rock Memory", - "BUG_MEMORY": "Bug Memory", - "GHOST_MEMORY": "Ghost Memory", - "STEEL_MEMORY": "Steel Memory", - "FIRE_MEMORY": "Fire Memory", - "WATER_MEMORY": "Water Memory", - "GRASS_MEMORY": "Grass Memory", - "ELECTRIC_MEMORY": "Electric Memory", - "PSYCHIC_MEMORY": "Psychic Memory", - "ICE_MEMORY": "Ice Memory", - "DRAGON_MEMORY": "Dragon Memory", - "DARK_MEMORY": "Dark Memory", - "FAIRY_MEMORY": "Fairy Memory", - "BLANK_MEMORY": "Blank Memory", - }, -} as const; diff --git a/src/locales/ca_ES/modifier.ts b/src/locales/en/modifier.json similarity index 84% rename from src/locales/ca_ES/modifier.ts rename to src/locales/en/modifier.json index 26a6a9c18ae..473be0e8bfa 100644 --- a/src/locales/ca_ES/modifier.ts +++ b/src/locales/en/modifier.json @@ -1,6 +1,4 @@ -import { SimpleTranslationEntries } from "#app/interfaces/locales"; - -export const modifier: SimpleTranslationEntries = { +{ "surviveDamageApply": "{{pokemonNameWithAffix}} hung on\nusing its {{typeName}}!", "turnHealApply": "{{pokemonNameWithAffix}} restored a little HP using\nits {{typeName}}!", "hitHealApply": "{{pokemonNameWithAffix}} restored a little HP using\nits {{typeName}}!", @@ -10,5 +8,5 @@ export const modifier: SimpleTranslationEntries = { "turnHeldItemTransferApply": "{{pokemonNameWithAffix}}'s {{itemName}} was absorbed\nby {{pokemonName}}'s {{typeName}}!", "contactHeldItemTransferApply": "{{pokemonNameWithAffix}}'s {{itemName}} was snatched\nby {{pokemonName}}'s {{typeName}}!", "enemyTurnHealApply": "{{pokemonNameWithAffix}}\nrestored some HP!", - "bypassSpeedChanceApply": "{{pokemonName}} can act faster than normal, thanks to its {{itemName}}!", -} as const; + "bypassSpeedChanceApply": "{{pokemonName}} can act faster than normal, thanks to its {{itemName}}!" +} \ No newline at end of file diff --git a/src/locales/en/modifier.ts b/src/locales/en/modifier.ts deleted file mode 100644 index 26a6a9c18ae..00000000000 --- a/src/locales/en/modifier.ts +++ /dev/null @@ -1,14 +0,0 @@ -import { SimpleTranslationEntries } from "#app/interfaces/locales"; - -export const modifier: SimpleTranslationEntries = { - "surviveDamageApply": "{{pokemonNameWithAffix}} hung on\nusing its {{typeName}}!", - "turnHealApply": "{{pokemonNameWithAffix}} restored a little HP using\nits {{typeName}}!", - "hitHealApply": "{{pokemonNameWithAffix}} restored a little HP using\nits {{typeName}}!", - "pokemonInstantReviveApply": "{{pokemonNameWithAffix}} was revived\nby its {{typeName}}!", - "pokemonResetNegativeStatStageApply": "{{pokemonNameWithAffix}}'s lowered stats were restored\nby its {{typeName}}!", - "moneyInterestApply": "You received interest of ₽{{moneyAmount}}\nfrom the {{typeName}}!", - "turnHeldItemTransferApply": "{{pokemonNameWithAffix}}'s {{itemName}} was absorbed\nby {{pokemonName}}'s {{typeName}}!", - "contactHeldItemTransferApply": "{{pokemonNameWithAffix}}'s {{itemName}} was snatched\nby {{pokemonName}}'s {{typeName}}!", - "enemyTurnHealApply": "{{pokemonNameWithAffix}}\nrestored some HP!", - "bypassSpeedChanceApply": "{{pokemonName}} can act faster than normal, thanks to its {{itemName}}!", -} as const; diff --git a/src/locales/en/move-trigger.ts b/src/locales/en/move-trigger.json similarity index 96% rename from src/locales/en/move-trigger.ts rename to src/locales/en/move-trigger.json index 5f9c6c0cdc2..baddbaa34bf 100644 --- a/src/locales/en/move-trigger.ts +++ b/src/locales/en/move-trigger.json @@ -1,6 +1,4 @@ -import { SimpleTranslationEntries } from "#app/interfaces/locales"; - -export const moveTriggers: SimpleTranslationEntries = { +{ "hitWithRecoil" : "{{pokemonName}} was damaged by the recoil!", "cutHpPowerUpMove": "{{pokemonName}} cut its own HP to power up its move!", "absorbedElectricity": "{{pokemonName}} absorbed electricity!", @@ -61,6 +59,7 @@ export const moveTriggers: SimpleTranslationEntries = { "faintCountdown": "{{pokemonName}}\nwill faint in {{turnCount}} turns.", "copyType": "{{pokemonName}}'s type became the same as\n{{targetPokemonName}}'s type!", "suppressAbilities": "{{pokemonName}}'s ability\nwas suppressed!", + "revivalBlessing": "{{pokemonName}} was revived!", "swapArenaTags": "{{pokemonName}} swapped the battle effects affecting each side of the field!", - "exposedMove": "{{pokemonName}} identified\n{{targetPokemonName}}!", -} as const; + "exposedMove": "{{pokemonName}} identified\n{{targetPokemonName}}!" +} diff --git a/src/locales/en/move.json b/src/locales/en/move.json new file mode 100644 index 00000000000..7a10335ed06 --- /dev/null +++ b/src/locales/en/move.json @@ -0,0 +1,3810 @@ +{ + "pound": { + "name": "Pound", + "effect": "The target is physically pounded with a long tail, a foreleg, or the like." + }, + "karateChop": { + "name": "Karate Chop", + "effect": "The target is attacked with a sharp chop. Critical hits land more easily." + }, + "doubleSlap": { + "name": "Double Slap", + "effect": "The target is slapped repeatedly, back and forth, two to five times in a row." + }, + "cometPunch": { + "name": "Comet Punch", + "effect": "The target is hit with a flurry of punches that strike two to five times in a row." + }, + "megaPunch": { + "name": "Mega Punch", + "effect": "The target is slugged by a punch thrown with muscle-packed power." + }, + "payDay": { + "name": "Pay Day", + "effect": "Numerous coins are hurled at the target to inflict damage. Money is earned after the battle." + }, + "firePunch": { + "name": "Fire Punch", + "effect": "The target is punched with a fiery fist. This may also leave the target with a burn." + }, + "icePunch": { + "name": "Ice Punch", + "effect": "The target is punched with an icy fist. This may also leave the target frozen." + }, + "thunderPunch": { + "name": "Thunder Punch", + "effect": "The target is punched with an electrified fist. This may also leave the target with paralysis." + }, + "scratch": { + "name": "Scratch", + "effect": "Hard, pointed, sharp claws rake the target to inflict damage." + }, + "viseGrip": { + "name": "Vise Grip", + "effect": "The target is gripped and squeezed from both sides to inflict damage." + }, + "guillotine": { + "name": "Guillotine", + "effect": "A vicious, tearing attack with big pincers. The target faints instantly if this attack hits." + }, + "razorWind": { + "name": "Razor Wind", + "effect": "In this two-turn attack, blades of wind hit opposing Pokémon on the second turn. Critical hits land more easily." + }, + "swordsDance": { + "name": "Swords Dance", + "effect": "A frenetic dance to uplift the fighting spirit. This sharply raises the user's Attack stat." + }, + "cut": { + "name": "Cut", + "effect": "The target is cut with a scythe or claw." + }, + "gust": { + "name": "Gust", + "effect": "A gust of wind is whipped up by wings and launched at the target to inflict damage." + }, + "wingAttack": { + "name": "Wing Attack", + "effect": "The target is struck with large, imposing wings spread wide to inflict damage." + }, + "whirlwind": { + "name": "Whirlwind", + "effect": "The target is blown away, and a different Pokémon is dragged out. In the wild, this ends a battle against a single Pokémon." + }, + "fly": { + "name": "Fly", + "effect": "The user flies up into the sky and then strikes its target on the next turn." + }, + "bind": { + "name": "Bind", + "effect": "Things such as long bodies or tentacles are used to bind and squeeze the target for four to five turns." + }, + "slam": { + "name": "Slam", + "effect": "The target is slammed with a long tail, vines, or the like to inflict damage." + }, + "vineWhip": { + "name": "Vine Whip", + "effect": "The target is struck with slender, whiplike vines to inflict damage." + }, + "stomp": { + "name": "Stomp", + "effect": "The target is stomped with a big foot. This may also make the target flinch." + }, + "doubleKick": { + "name": "Double Kick", + "effect": "The target is quickly kicked twice in succession using both feet." + }, + "megaKick": { + "name": "Mega Kick", + "effect": "The target is attacked by a kick launched with muscle-packed power." + }, + "jumpKick": { + "name": "Jump Kick", + "effect": "The user jumps up high, then strikes with a kick. If the kick misses, the user hurts itself." + }, + "rollingKick": { + "name": "Rolling Kick", + "effect": "The user lashes out with a quick, spinning kick. This may also make the target flinch." + }, + "sandAttack": { + "name": "Sand Attack", + "effect": "Sand is hurled in the target's face, reducing the target's accuracy." + }, + "headbutt": { + "name": "Headbutt", + "effect": "The user sticks out its head and attacks by charging straight into the target. This may also make the target flinch." + }, + "hornAttack": { + "name": "Horn Attack", + "effect": "The target is jabbed with a sharply pointed horn to inflict damage." + }, + "furyAttack": { + "name": "Fury Attack", + "effect": "The target is jabbed repeatedly with a horn or beak two to five times in a row." + }, + "hornDrill": { + "name": "Horn Drill", + "effect": "The user stabs the target with a horn that rotates like a drill. The target faints instantly if this attack hits." + }, + "tackle": { + "name": "Tackle", + "effect": "A physical attack in which the user charges and slams into the target with its whole body." + }, + "bodySlam": { + "name": "Body Slam", + "effect": "The user drops onto the target with its full body weight. This may also leave the target with paralysis." + }, + "wrap": { + "name": "Wrap", + "effect": "A long body, vines, or the like are used to wrap and squeeze the target for four to five turns." + }, + "takeDown": { + "name": "Take Down", + "effect": "A reckless, full-body charge attack for slamming into the target. This also damages the user a little." + }, + "thrash": { + "name": "Thrash", + "effect": "The user rampages and attacks for two to three turns. The user then becomes confused." + }, + "doubleEdge": { + "name": "Double-Edge", + "effect": "A reckless, life-risking tackle in which the user rushes the target. This also damages the user quite a lot." + }, + "tailWhip": { + "name": "Tail Whip", + "effect": "The user wags its tail cutely, making opposing Pokémon less wary and lowering their Defense stats." + }, + "poisonSting": { + "name": "Poison Sting", + "effect": "The user stabs the target with a poisonous stinger. This may also poison the target." + }, + "twineedle": { + "name": "Twineedle", + "effect": "The user damages the target twice in succession by jabbing it with two spikes. This may also poison the target." + }, + "pinMissile": { + "name": "Pin Missile", + "effect": "Sharp spikes are shot at the target in rapid succession. They hit two to five times in a row." + }, + "leer": { + "name": "Leer", + "effect": "The user gives opposing Pokémon an intimidating leer that lowers the Defense stat." + }, + "bite": { + "name": "Bite", + "effect": "The target is bitten with viciously sharp fangs. This may also make the target flinch." + }, + "growl": { + "name": "Growl", + "effect": "The user growls in an endearing way, making opposing Pokémon less wary. This lowers their Attack stats." + }, + "roar": { + "name": "Roar", + "effect": "The target is scared off, and a different Pokémon is dragged out. In the wild, this ends a battle against a single Pokémon." + }, + "sing": { + "name": "Sing", + "effect": "A soothing lullaby is sung in a calming voice that puts the target into a deep slumber." + }, + "supersonic": { + "name": "Supersonic", + "effect": "The user generates odd sound waves from its body that confuse the target." + }, + "sonicBoom": { + "name": "Sonic Boom", + "effect": "The target is hit with a destructive shock wave that always inflicts 20 HP damage." + }, + "disable": { + "name": "Disable", + "effect": "For four turns, this move prevents the target from using the move it last used." + }, + "acid": { + "name": "Acid", + "effect": "Opposing Pokémon are attacked with a spray of harsh acid. This may also lower their Sp. Def stats." + }, + "ember": { + "name": "Ember", + "effect": "The target is attacked with small flames. This may also leave the target with a burn." + }, + "flamethrower": { + "name": "Flamethrower", + "effect": "The target is scorched with an intense blast of fire. This may also leave the target with a burn." + }, + "mist": { + "name": "Mist", + "effect": "The user cloaks itself and its allies in a white mist that prevents any of their stats from being lowered for five turns." + }, + "waterGun": { + "name": "Water Gun", + "effect": "The target is blasted with a forceful shot of water." + }, + "hydroPump": { + "name": "Hydro Pump", + "effect": "The target is blasted by a huge volume of water launched under great pressure." + }, + "surf": { + "name": "Surf", + "effect": "The user attacks everything around it by swamping its surroundings with a giant wave." + }, + "iceBeam": { + "name": "Ice Beam", + "effect": "The target is struck with an icy-cold beam of energy. This may also leave the target frozen." + }, + "blizzard": { + "name": "Blizzard", + "effect": "A howling blizzard is summoned to strike opposing Pokémon. This may also leave the opposing Pokémon frozen." + }, + "psybeam": { + "name": "Psybeam", + "effect": "The target is attacked with a peculiar ray. This may also leave the target confused." + }, + "bubbleBeam": { + "name": "Bubble Beam", + "effect": "A spray of bubbles is forcefully ejected at the target. This may also lower the target's Speed stat." + }, + "auroraBeam": { + "name": "Aurora Beam", + "effect": "The target is hit with a rainbow-colored beam. This may also lower the target's Attack stat." + }, + "hyperBeam": { + "name": "Hyper Beam", + "effect": "The target is attacked with a powerful beam. The user can't move on the next turn." + }, + "peck": { + "name": "Peck", + "effect": "The target is jabbed with a sharply pointed beak or horn." + }, + "drillPeck": { + "name": "Drill Peck", + "effect": "A corkscrewing attack that strikes the target with a sharp beak acting as a drill." + }, + "submission": { + "name": "Submission", + "effect": "The user grabs the target and recklessly dives for the ground. This also damages the user a little." + }, + "lowKick": { + "name": "Low Kick", + "effect": "A powerful low kick that makes the target fall over. The heavier the target, the greater the move's power." + }, + "counter": { + "name": "Counter", + "effect": "A retaliation move that counters any physical attack, inflicting double the damage taken." + }, + "seismicToss": { + "name": "Seismic Toss", + "effect": "The target is thrown using the power of gravity. It inflicts damage equal to the user's level." + }, + "strength": { + "name": "Strength", + "effect": "The target is slugged with a punch thrown at maximum power." + }, + "absorb": { + "name": "Absorb", + "effect": "A nutrient-draining attack. The user's HP is restored by half the damage taken by the target." + }, + "megaDrain": { + "name": "Mega Drain", + "effect": "A nutrient-draining attack. The user's HP is restored by half the damage taken by the target." + }, + "leechSeed": { + "name": "Leech Seed", + "effect": "A seed is planted on the target. It steals some HP from the target every turn." + }, + "growth": { + "name": "Growth", + "effect": "The user's body grows all at once, raising the Attack and Sp. Atk stats." + }, + "razorLeaf": { + "name": "Razor Leaf", + "effect": "Sharp-edged leaves are launched to slash at opposing Pokémon. Critical hits land more easily." + }, + "solarBeam": { + "name": "Solar Beam", + "effect": "In this two-turn attack, the user gathers light, then blasts a bundled beam on the next turn." + }, + "poisonPowder": { + "name": "Poison Powder", + "effect": "The user scatters a cloud of poisonous dust that poisons the target." + }, + "stunSpore": { + "name": "Stun Spore", + "effect": "The user scatters a cloud of numbing powder that paralyzes the target." + }, + "sleepPowder": { + "name": "Sleep Powder", + "effect": "The user scatters a big cloud of sleep-inducing dust around the target." + }, + "petalDance": { + "name": "Petal Dance", + "effect": "The user attacks the target by scattering petals for two to three turns. The user then becomes confused." + }, + "stringShot": { + "name": "String Shot", + "effect": "Opposing Pokémon are bound with silk blown from the user's mouth that harshly lowers the Speed stat." + }, + "dragonRage": { + "name": "Dragon Rage", + "effect": "This attack hits the target with a shock wave of pure rage. This attack always inflicts 40 HP damage." + }, + "fireSpin": { + "name": "Fire Spin", + "effect": "The target becomes trapped within a fierce vortex of fire that rages for four to five turns." + }, + "thunderShock": { + "name": "Thunder Shock", + "effect": "A jolt of electricity crashes down on the target to inflict damage. This may also leave the target with paralysis." + }, + "thunderbolt": { + "name": "Thunderbolt", + "effect": "A strong electric blast crashes down on the target. This may also leave the target with paralysis." + }, + "thunderWave": { + "name": "Thunder Wave", + "effect": "The user launches a weak jolt of electricity that paralyzes the target." + }, + "thunder": { + "name": "Thunder", + "effect": "A wicked thunderbolt is dropped on the target to inflict damage. This may also leave the target with paralysis." + }, + "rockThrow": { + "name": "Rock Throw", + "effect": "The user picks up and throws a small rock at the target to attack." + }, + "earthquake": { + "name": "Earthquake", + "effect": "The user sets off an earthquake that strikes every Pokémon around it." + }, + "fissure": { + "name": "Fissure", + "effect": "The user opens up a fissure in the ground and drops the target in. The target faints instantly if this attack hits." + }, + "dig": { + "name": "Dig", + "effect": "The user burrows into the ground, then attacks on the next turn." + }, + "toxic": { + "name": "Toxic", + "effect": "A move that leaves the target badly poisoned. Its poison damage worsens every turn." + }, + "confusion": { + "name": "Confusion", + "effect": "The target is hit by a weak telekinetic force. This may also confuse the target." + }, + "psychic": { + "name": "Psychic", + "effect": "The target is hit by a strong telekinetic force. This may also lower the target's Sp. Def stat." + }, + "hypnosis": { + "name": "Hypnosis", + "effect": "The user employs hypnotic suggestion to make the target fall into a deep sleep." + }, + "meditate": { + "name": "Meditate", + "effect": "The user meditates to awaken the power deep within its body and raise its Attack stat." + }, + "agility": { + "name": "Agility", + "effect": "The user relaxes and lightens its body to move faster. This sharply raises the Speed stat." + }, + "quickAttack": { + "name": "Quick Attack", + "effect": "The user lunges at the target at a speed that makes it almost invisible. This move always goes first." + }, + "rage": { + "name": "Rage", + "effect": "As long as this move is in use, the power of rage raises the Attack stat each time the user is hit in battle." + }, + "teleport": { + "name": "Teleport", + "effect": "The user switches places with a party Pokémon in waiting, if any. If a wild Pokémon uses this move, it flees." + }, + "nightShade": { + "name": "Night Shade", + "effect": "The user makes the target see a frightening mirage. It inflicts damage equal to the user's level." + }, + "mimic": { + "name": "Mimic", + "effect": "The user copies the target's last move. The move can be used during battle until the Pokémon is switched out." + }, + "screech": { + "name": "Screech", + "effect": "An earsplitting screech harshly lowers the target's Defense stat." + }, + "doubleTeam": { + "name": "Double Team", + "effect": "By moving rapidly, the user makes illusory copies of itself to raise its evasiveness." + }, + "recover": { + "name": "Recover", + "effect": "Restoring its own cells, the user restores its own HP by half of its max HP." + }, + "harden": { + "name": "Harden", + "effect": "The user stiffens all the muscles in its body to raise its Defense stat." + }, + "minimize": { + "name": "Minimize", + "effect": "The user compresses its body to make itself look smaller, which sharply raises its evasiveness." + }, + "smokescreen": { + "name": "Smokescreen", + "effect": "The user releases an obscuring cloud of smoke or ink. This lowers the target's accuracy." + }, + "confuseRay": { + "name": "Confuse Ray", + "effect": "The target is exposed to a sinister ray that triggers confusion." + }, + "withdraw": { + "name": "Withdraw", + "effect": "The user withdraws its body into its hard shell, raising its Defense stat." + }, + "defenseCurl": { + "name": "Defense Curl", + "effect": "The user curls up to conceal weak spots and raise its Defense stat." + }, + "barrier": { + "name": "Barrier", + "effect": "The user throws up a sturdy wall that sharply raises its Defense stat." + }, + "lightScreen": { + "name": "Light Screen", + "effect": "A wondrous wall of light is put up to reduce damage from special attacks for five turns." + }, + "haze": { + "name": "Haze", + "effect": "The user creates a haze that eliminates every stat change among all the Pokémon engaged in battle." + }, + "reflect": { + "name": "Reflect", + "effect": "A wondrous wall of light is put up to reduce damage from physical attacks for five turns." + }, + "focusEnergy": { + "name": "Focus Energy", + "effect": "The user takes a deep breath and focuses so that critical hits land more easily." + }, + "bide": { + "name": "Bide", + "effect": "The user endures attacks for two turns, then strikes back to cause double the damage taken." + }, + "metronome": { + "name": "Metronome", + "effect": "The user waggles a finger and stimulates its brain into randomly using nearly any move." + }, + "mirrorMove": { + "name": "Mirror Move", + "effect": "The user counters the target by mimicking the target's last move." + }, + "selfDestruct": { + "name": "Self-Destruct", + "effect": "The user attacks everything around it by causing an explosion. The user faints upon using this move." + }, + "eggBomb": { + "name": "Egg Bomb", + "effect": "A large egg is hurled at the target with maximum force to inflict damage." + }, + "lick": { + "name": "Lick", + "effect": "The target is licked with a long tongue, causing damage. This may also leave the target with paralysis." + }, + "smog": { + "name": "Smog", + "effect": "The target is attacked with a discharge of filthy gases. This may also poison the target." + }, + "sludge": { + "name": "Sludge", + "effect": "Unsanitary sludge is hurled at the target. This may also poison the target." + }, + "boneClub": { + "name": "Bone Club", + "effect": "The user clubs the target with a bone. This may also make the target flinch." + }, + "fireBlast": { + "name": "Fire Blast", + "effect": "The target is attacked with an intense blast of all-consuming fire. This may also leave the target with a burn." + }, + "waterfall": { + "name": "Waterfall", + "effect": "The user charges at the target and may make it flinch." + }, + "clamp": { + "name": "Clamp", + "effect": "The target is clamped and squeezed by the user's very thick and sturdy shell for four to five turns." + }, + "swift": { + "name": "Swift", + "effect": "Star-shaped rays are shot at opposing Pokémon. This attack never misses." + }, + "skullBash": { + "name": "Skull Bash", + "effect": "The user tucks in its head to raise its Defense stat on the first turn, then rams the target on the next turn." + }, + "spikeCannon": { + "name": "Spike Cannon", + "effect": "Sharp spikes are shot at the target in rapid succession. They hit two to five times in a row." + }, + "constrict": { + "name": "Constrict", + "effect": "The target is attacked with long, creeping tentacles, vines, or the like. This may also lower the target's Speed stat." + }, + "amnesia": { + "name": "Amnesia", + "effect": "The user temporarily empties its mind to forget its concerns. This sharply raises the user's Sp. Def stat." + }, + "kinesis": { + "name": "Kinesis", + "effect": "The user distracts the target by bending a spoon. This lowers the target's accuracy." + }, + "softBoiled": { + "name": "Soft-Boiled", + "effect": "The user restores its own HP by up to half of its max HP." + }, + "highJumpKick": { + "name": "High Jump Kick", + "effect": "The target is attacked with a knee kick from a jump. If it misses, the user is hurt instead." + }, + "glare": { + "name": "Glare", + "effect": "The user intimidates the target with the pattern on its belly to cause paralysis." + }, + "dreamEater": { + "name": "Dream Eater", + "effect": "The user eats the dreams of a sleeping target. The user's HP is restored by half the damage taken by the target." + }, + "poisonGas": { + "name": "Poison Gas", + "effect": "A cloud of poison gas is sprayed in the face of opposing Pokémon, poisoning those it hits." + }, + "barrage": { + "name": "Barrage", + "effect": "Round objects are hurled at the target to strike two to five times in a row." + }, + "leechLife": { + "name": "Leech Life", + "effect": "The user drains the target's blood. The user's HP is restored by half the damage taken by the target." + }, + "lovelyKiss": { + "name": "Lovely Kiss", + "effect": "With a scary face, the user tries to force a kiss on the target. If it succeeds, the target falls asleep." + }, + "skyAttack": { + "name": "Sky Attack", + "effect": "A second-turn attack move where critical hits land more easily. This may also make the target flinch." + }, + "transform": { + "name": "Transform", + "effect": "The user transforms into a copy of the target right down to having the same move set." + }, + "bubble": { + "name": "Bubble", + "effect": "A spray of countless bubbles is jetted at the opposing Pokémon. This may also lower their Speed stat." + }, + "dizzyPunch": { + "name": "Dizzy Punch", + "effect": "The target is hit with rhythmically launched punches. This may also leave the target confused." + }, + "spore": { + "name": "Spore", + "effect": "The user scatters bursts of spores that induce sleep." + }, + "flash": { + "name": "Flash", + "effect": "The user flashes a bright light that cuts the target's accuracy." + }, + "psywave": { + "name": "Psywave", + "effect": "The target is attacked with an odd psychic wave. The attack varies in intensity." + }, + "splash": { + "name": "Splash", + "effect": "The user just flops and splashes around to no effect at all..." + }, + "acidArmor": { + "name": "Acid Armor", + "effect": "The user alters its cellular structure to liquefy itself, sharply raising its Defense stat." + }, + "crabhammer": { + "name": "Crabhammer", + "effect": "The target is hammered with a large pincer. Critical hits land more easily." + }, + "explosion": { + "name": "Explosion", + "effect": "The user attacks everything around it by causing a tremendous explosion. The user faints upon using this move." + }, + "furySwipes": { + "name": "Fury Swipes", + "effect": "The target is raked with sharp claws or scythes quickly two to five times in a row." + }, + "bonemerang": { + "name": "Bonemerang", + "effect": "The user throws the bone it holds. The bone loops around to hit the target twice—coming and going." + }, + "rest": { + "name": "Rest", + "effect": "The user goes to sleep for two turns. This fully restores the user's HP and heals any status conditions." + }, + "rockSlide": { + "name": "Rock Slide", + "effect": "Large boulders are hurled at opposing Pokémon to inflict damage. This may also make the opposing Pokémon flinch." + }, + "hyperFang": { + "name": "Hyper Fang", + "effect": "The user bites hard on the target with its sharp front fangs. This may also make the target flinch." + }, + "sharpen": { + "name": "Sharpen", + "effect": "The user makes its edges more jagged, which raises its Attack stat." + }, + "conversion": { + "name": "Conversion", + "effect": "The user changes its type to become the same type as the move at the top of the list of moves it knows." + }, + "triAttack": { + "name": "Tri Attack", + "effect": "The user strikes with a simultaneous three-beam attack. This may also burn, freeze, or paralyze the target." + }, + "superFang": { + "name": "Super Fang", + "effect": "The user chomps hard on the target with its sharp front fangs. This cuts the target's HP in half." + }, + "slash": { + "name": "Slash", + "effect": "The target is attacked with a slash of claws or blades. Critical hits land more easily." + }, + "substitute": { + "name": "Substitute", + "effect": "The user creates a substitute for itself using some of its HP. The substitute serves as the user's decoy." + }, + "struggle": { + "name": "Struggle", + "effect": "This attack is used in desperation only if the user has no PP. It also damages the user a little." + }, + "sketch": { + "name": "Sketch", + "effect": "It enables the user to permanently learn the move last used by the target. Once used, Sketch disappears." + }, + "tripleKick": { + "name": "Triple Kick", + "effect": "A consecutive three-kick attack that becomes more powerful with each successful hit." + }, + "thief": { + "name": "Thief", + "effect": "The user attacks and has a 30% chance to steal the target's held item simultaneously." + }, + "spiderWeb": { + "name": "Spider Web", + "effect": "The user ensnares the target with thin, gooey silk so it can't flee from battle." + }, + "mindReader": { + "name": "Mind Reader", + "effect": "The user senses the target's movements with its mind to ensure its next attack does not miss the target." + }, + "nightmare": { + "name": "Nightmare", + "effect": "A sleeping target sees a nightmare that inflicts some damage every turn." + }, + "flameWheel": { + "name": "Flame Wheel", + "effect": "The user cloaks itself in fire and charges at the target. This may also leave the target with a burn." + }, + "snore": { + "name": "Snore", + "effect": "This attack can be used only if the user is asleep. The harsh noise may also make the target flinch." + }, + "curse": { + "name": "Curse", + "effect": "A move that works differently for the Ghost type than for all other types." + }, + "flail": { + "name": "Flail", + "effect": "The user flails about aimlessly to attack. The less HP the user has, the greater the move's power." + }, + "conversion2": { + "name": "Conversion 2", + "effect": "The user changes its type to make itself resistant to the type of the attack the target used last." + }, + "aeroblast": { + "name": "Aeroblast", + "effect": "A vortex of air is shot at the target to inflict damage. Critical hits land more easily." + }, + "cottonSpore": { + "name": "Cotton Spore", + "effect": "The user releases cotton-like spores that cling to opposing Pokémon, which harshly lowers their Speed stats." + }, + "reversal": { + "name": "Reversal", + "effect": "An all-out attack that becomes more powerful the less HP the user has." + }, + "spite": { + "name": "Spite", + "effect": "The user unleashes its grudge on the move last used by the target by cutting 4 PP from it." + }, + "powderSnow": { + "name": "Powder Snow", + "effect": "The user attacks with a chilling gust of powdery snow. This may also freeze opposing Pokémon." + }, + "protect": { + "name": "Protect", + "effect": "This move enables the user to protect itself from all attacks. Its chance of failing rises if it is used in succession." + }, + "machPunch": { + "name": "Mach Punch", + "effect": "The user throws a punch at blinding speed. This move always goes first." + }, + "scaryFace": { + "name": "Scary Face", + "effect": "The user frightens the target with a scary face to harshly lower its Speed stat." + }, + "feintAttack": { + "name": "Feint Attack", + "effect": "The user approaches the target disarmingly, then throws a sucker punch. This attack never misses." + }, + "sweetKiss": { + "name": "Sweet Kiss", + "effect": "The user kisses the target with a sweet, angelic cuteness that causes confusion." + }, + "bellyDrum": { + "name": "Belly Drum", + "effect": "The user maximizes its Attack stat in exchange for HP equal to half its max HP." + }, + "sludgeBomb": { + "name": "Sludge Bomb", + "effect": "Unsanitary sludge is hurled at the target. This may also poison the target." + }, + "mudSlap": { + "name": "Mud-Slap", + "effect": "The user hurls mud in the target's face to inflict damage and lower its accuracy." + }, + "octazooka": { + "name": "Octazooka", + "effect": "The user attacks by spraying ink in the target's face or eyes. This may also lower the target's accuracy." + }, + "spikes": { + "name": "Spikes", + "effect": "The user lays a trap of spikes at the opposing team's feet. The trap hurts Pokémon that switch into battle." + }, + "zapCannon": { + "name": "Zap Cannon", + "effect": "The user fires an electric blast like a cannon to inflict damage and cause paralysis." + }, + "foresight": { + "name": "Foresight", + "effect": "Enables a Ghost-type target to be hit by Normal- and Fighting-type attacks. This also enables an evasive target to be hit." + }, + "destinyBond": { + "name": "Destiny Bond", + "effect": "After using this move, if the user faints, the Pokémon that landed the knockout hit also faints. Its chance of failing rises if it is used in succession." + }, + "perishSong": { + "name": "Perish Song", + "effect": "Any Pokémon that hears this song faints in three turns, unless it switches out of battle." + }, + "icyWind": { + "name": "Icy Wind", + "effect": "The user attacks with a gust of chilled air. This also lowers opposing Pokémon's Speed stats." + }, + "detect": { + "name": "Detect", + "effect": "This move enables the user to protect itself from all attacks. Its chance of failing rises if it is used in succession." + }, + "boneRush": { + "name": "Bone Rush", + "effect": "The user strikes the target with a hard bone two to five times in a row." + }, + "lockOn": { + "name": "Lock-On", + "effect": "The user takes sure aim at the target. This ensures the next attack does not miss the target." + }, + "outrage": { + "name": "Outrage", + "effect": "The user rampages and attacks for two to three turns. The user then becomes confused." + }, + "sandstorm": { + "name": "Sandstorm", + "effect": "A five-turn sandstorm is summoned to hurt all combatants except Rock, Ground, and Steel types. It raises the Sp. Def stat of Rock types." + }, + "gigaDrain": { + "name": "Giga Drain", + "effect": "A nutrient-draining attack. The user's HP is restored by half the damage taken by the target." + }, + "endure": { + "name": "Endure", + "effect": "The user endures any attack with at least 1 HP. Its chance of failing rises if it is used in succession." + }, + "charm": { + "name": "Charm", + "effect": "The user gazes at the target rather charmingly, making it less wary. This harshly lowers the target's Attack stat." + }, + "rollout": { + "name": "Rollout", + "effect": "The user continually rolls into the target over five turns. It becomes more powerful each time it hits." + }, + "falseSwipe": { + "name": "False Swipe", + "effect": "A restrained attack that prevents the target from fainting. The target is left with at least 1 HP." + }, + "swagger": { + "name": "Swagger", + "effect": "The user enrages and confuses the target. However, this also sharply raises the target's Attack stat." + }, + "milkDrink": { + "name": "Milk Drink", + "effect": "The user restores its own HP by up to half of its max HP." + }, + "spark": { + "name": "Spark", + "effect": "The user throws an electrically charged tackle at the target. This may also leave the target with paralysis." + }, + "furyCutter": { + "name": "Fury Cutter", + "effect": "The target is slashed with scythes or claws. This attack becomes more powerful if it hits in succession." + }, + "steelWing": { + "name": "Steel Wing", + "effect": "The target is hit with wings of steel. This may also raise the user's Defense stat." + }, + "meanLook": { + "name": "Mean Look", + "effect": "The user pins the target with a dark, arresting look. The target becomes unable to flee." + }, + "attract": { + "name": "Attract", + "effect": "If it is the opposite gender of the user, the target becomes infatuated and less likely to attack." + }, + "sleepTalk": { + "name": "Sleep Talk", + "effect": "While it is asleep, the user randomly uses one of the moves it knows." + }, + "healBell": { + "name": "Heal Bell", + "effect": "The user makes a soothing bell chime to heal the status conditions of all the party Pokémon." + }, + "return": { + "name": "Return", + "effect": "This full-power attack grows more powerful the more the user likes its Trainer." + }, + "present": { + "name": "Present", + "effect": "The user attacks by giving the target a gift with a hidden trap. It restores HP sometimes, however." + }, + "frustration": { + "name": "Frustration", + "effect": "This full-power attack grows more powerful the less the user likes its Trainer." + }, + "safeguard": { + "name": "Safeguard", + "effect": "The user creates a protective field that prevents status conditions for five turns." + }, + "painSplit": { + "name": "Pain Split", + "effect": "The user adds its HP to the target's HP, then equally shares the combined HP with the target." + }, + "sacredFire": { + "name": "Sacred Fire", + "effect": "The target is razed with a mystical fire of great intensity. This may also leave the target with a burn." + }, + "magnitude": { + "name": "Magnitude", + "effect": "The user attacks everything around it with a ground-shaking quake. Its power varies." + }, + "dynamicPunch": { + "name": "Dynamic Punch", + "effect": "The user punches the target with full, concentrated power. This confuses the target if it hits." + }, + "megahorn": { + "name": "Megahorn", + "effect": "Using its tough and impressive horn, the user rams into the target with no letup." + }, + "dragonBreath": { + "name": "Dragon Breath", + "effect": "The user exhales a mighty gust that inflicts damage. This may also leave the target with paralysis." + }, + "batonPass": { + "name": "Baton Pass", + "effect": "The user switches places with a party Pokémon in waiting and passes along any stat changes." + }, + "encore": { + "name": "Encore", + "effect": "The user compels the target to keep using the move it encored for three turns." + }, + "pursuit": { + "name": "Pursuit", + "effect": "The power of this attack move is doubled if it's used on a target that's switching out of battle." + }, + "rapidSpin": { + "name": "Rapid Spin", + "effect": "A spin attack that can also eliminate such moves as Bind, Wrap, and Leech Seed. This also raises the user's Speed stat." + }, + "sweetScent": { + "name": "Sweet Scent", + "effect": "A sweet scent that harshly lowers opposing Pokémon's evasiveness." + }, + "ironTail": { + "name": "Iron Tail", + "effect": "The target is slammed with a steel-hard tail. This may also lower the target's Defense stat." + }, + "metalClaw": { + "name": "Metal Claw", + "effect": "The target is raked with steel claws. This may also raise the user's Attack stat." + }, + "vitalThrow": { + "name": "Vital Throw", + "effect": "The user attacks last. In return, this throw move never misses." + }, + "morningSun": { + "name": "Morning Sun", + "effect": "The user restores its own HP. The amount of HP regained varies with the weather." + }, + "synthesis": { + "name": "Synthesis", + "effect": "The user restores its own HP. The amount of HP regained varies with the weather." + }, + "moonlight": { + "name": "Moonlight", + "effect": "The user restores its own HP. The amount of HP regained varies with the weather." + }, + "hiddenPower": { + "name": "Hidden Power", + "effect": "A unique attack that varies in type depending on the Pokémon using it." + }, + "crossChop": { + "name": "Cross Chop", + "effect": "The user delivers a double chop with its forearms crossed. Critical hits land more easily." + }, + "twister": { + "name": "Twister", + "effect": "The user whips up a vicious tornado to tear at opposing Pokémon. This may also make them flinch." + }, + "rainDance": { + "name": "Rain Dance", + "effect": "The user summons a heavy rain that falls for five turns, powering up Water-type moves. It lowers the power of Fire-type moves." + }, + "sunnyDay": { + "name": "Sunny Day", + "effect": "The user intensifies the sun for five turns, powering up Fire-type moves. It lowers the power of Water-type moves." + }, + "crunch": { + "name": "Crunch", + "effect": "The user crunches up the target with sharp fangs. This may also lower the target's Defense stat." + }, + "mirrorCoat": { + "name": "Mirror Coat", + "effect": "A retaliation move that counters any special attack, inflicting double the damage taken." + }, + "psychUp": { + "name": "Psych Up", + "effect": "The user hypnotizes itself into copying any stat change made by the target." + }, + "extremeSpeed": { + "name": "Extreme Speed", + "effect": "The user charges the target at blinding speed. This move always goes first." + }, + "ancientPower": { + "name": "Ancient Power", + "effect": "The user attacks with a prehistoric power. This may also raise all the user's stats at once." + }, + "shadowBall": { + "name": "Shadow Ball", + "effect": "The user hurls a shadowy blob at the target. This may also lower the target's Sp. Def stat." + }, + "futureSight": { + "name": "Future Sight", + "effect": "Two turns after this move is used, a hunk of psychic energy attacks the target." + }, + "rockSmash": { + "name": "Rock Smash", + "effect": "The user attacks with a punch. This may also lower the target's Defense stat." + }, + "whirlpool": { + "name": "Whirlpool", + "effect": "The user traps the target in a violent swirling whirlpool for four to five turns." + }, + "beatUp": { + "name": "Beat Up", + "effect": "The user gets all party Pokémon to attack the target. The more party Pokémon, the greater the number of attacks." + }, + "fakeOut": { + "name": "Fake Out", + "effect": "This attack hits first and makes the target flinch. It only works the first turn each time the user enters battle." + }, + "uproar": { + "name": "Uproar", + "effect": "The user attacks in an uproar for three turns. During that time, no Pokémon can fall asleep." + }, + "stockpile": { + "name": "Stockpile", + "effect": "The user charges up power and raises both its Defense and Sp. Def stats. The move can be used three times." + }, + "spitUp": { + "name": "Spit Up", + "effect": "The power stored using the move Stockpile is released at once in an attack. The more power is stored, the greater the move's power." + }, + "swallow": { + "name": "Swallow", + "effect": "The power stored using the move Stockpile is absorbed by the user to heal its HP. Storing more power heals more HP." + }, + "heatWave": { + "name": "Heat Wave", + "effect": "The user attacks by exhaling hot breath on opposing Pokémon. This may also leave those Pokémon with a burn." + }, + "hail": { + "name": "Hail", + "effect": "The user summons a hailstorm lasting five turns. It damages all Pokémon except Ice types." + }, + "torment": { + "name": "Torment", + "effect": "The user torments and enrages the target, making it incapable of using the same move twice in a row." + }, + "flatter": { + "name": "Flatter", + "effect": "Flattery is used to confuse the target. However, this also raises the target's Sp. Atk stat." + }, + "willOWisp": { + "name": "Will-O-Wisp", + "effect": "The user shoots a sinister flame at the target to inflict a burn." + }, + "memento": { + "name": "Memento", + "effect": "The user faints when using this move. In return, this harshly lowers the target's Attack and Sp. Atk stats." + }, + "facade": { + "name": "Facade", + "effect": "This attack move doubles its power if the user is poisoned, burned, or paralyzed." + }, + "focusPunch": { + "name": "Focus Punch", + "effect": "The user focuses its mind before launching a punch. This move fails if the user is hit before it is used." + }, + "smellingSalts": { + "name": "Smelling Salts", + "effect": "This attack's power is doubled when used on a target with paralysis. This also cures the target's paralysis, however." + }, + "followMe": { + "name": "Follow Me", + "effect": "The user draws attention to itself, making all targets take aim only at the user." + }, + "naturePower": { + "name": "Nature Power", + "effect": "This attack makes use of nature's power. Its effects vary depending on the user's environment." + }, + "charge": { + "name": "Charge", + "effect": "The user boosts the power of the Electric move it uses on the next turn. This also raises the user's Sp. Def stat." + }, + "taunt": { + "name": "Taunt", + "effect": "The target is taunted into a rage that allows it to use only attack moves for three turns." + }, + "helpingHand": { + "name": "Helping Hand", + "effect": "The user assists an ally by boosting the power of that ally's attack." + }, + "trick": { + "name": "Trick", + "effect": "The user catches the target off guard and swaps its held item with its own." + }, + "rolePlay": { + "name": "Role Play", + "effect": "The user mimics the target completely, copying the target's Ability." + }, + "wish": { + "name": "Wish", + "effect": "One turn after this move is used, the user's or its replacement's HP is restored by half the user's max HP." + }, + "assist": { + "name": "Assist", + "effect": "The user hurriedly and randomly uses a move among those known by ally Pokémon." + }, + "ingrain": { + "name": "Ingrain", + "effect": "The user lays roots that restore its HP on every turn. Because it's rooted, it can't switch out." + }, + "superpower": { + "name": "Superpower", + "effect": "The user attacks the target with great power. However, this also lowers the user's Attack and Defense stats." + }, + "magicCoat": { + "name": "Magic Coat", + "effect": "Moves like Leech Seed and moves that inflict status conditions are blocked by a barrier and reflected back to the user of those moves." + }, + "recycle": { + "name": "Recycle", + "effect": "The user recycles a held item that has been used in battle so it can be used again." + }, + "revenge": { + "name": "Revenge", + "effect": "This attack move's power is doubled if the user has been hurt by the opponent in the same turn." + }, + "brickBreak": { + "name": "Brick Break", + "effect": "The user attacks with a swift chop. It can also break barriers, such as Light Screen and Reflect." + }, + "yawn": { + "name": "Yawn", + "effect": "The user lets loose a huge yawn that lulls the target into falling asleep on the next turn." + }, + "knockOff": { + "name": "Knock Off", + "effect": "The user slaps down the target's held item, and that item can't be used in that battle. The move does more damage if the target has a held item." + }, + "endeavor": { + "name": "Endeavor", + "effect": "This attack move cuts down the target's HP to equal the user's HP." + }, + "eruption": { + "name": "Eruption", + "effect": "The user attacks opposing Pokémon with explosive fury. The lower the user's HP, the lower the move's power." + }, + "skillSwap": { + "name": "Skill Swap", + "effect": "The user employs its psychic power to exchange Abilities with the target." + }, + "imprison": { + "name": "Imprison", + "effect": "If opposing Pokémon know any move also known by the user, they are prevented from using it." + }, + "refresh": { + "name": "Refresh", + "effect": "The user rests to cure itself of poisoning, a burn, or paralysis." + }, + "grudge": { + "name": "Grudge", + "effect": "If the user faints, the user's grudge fully depletes the PP of the opponent's move that knocked it out." + }, + "snatch": { + "name": "Snatch", + "effect": "The user steals the effects of any attempts to use a healing or stat-changing move." + }, + "secretPower": { + "name": "Secret Power", + "effect": "The additional effects of this attack depend upon where it was used." + }, + "dive": { + "name": "Dive", + "effect": "Diving on the first turn, the user floats up and attacks on the next turn." + }, + "armThrust": { + "name": "Arm Thrust", + "effect": "The user lets loose a flurry of open-palmed arm thrusts that hit two to five times in a row." + }, + "camouflage": { + "name": "Camouflage", + "effect": "The user's type is changed depending on its environment, such as at water's edge, in grass, or in a cave." + }, + "tailGlow": { + "name": "Tail Glow", + "effect": "The user stares at flashing lights to focus its mind, drastically raising its Sp. Atk stat." + }, + "lusterPurge": { + "name": "Luster Purge", + "effect": "The user lets loose a damaging burst of light. This may also lower the target's Sp. Def stat." + }, + "mistBall": { + "name": "Mist Ball", + "effect": "A mist-like flurry of down envelops and damages the target. This may also lower the target's Sp. Atk stat." + }, + "featherDance": { + "name": "Feather Dance", + "effect": "The user covers the target's body with a mass of down that harshly lowers its Attack stat." + }, + "teeterDance": { + "name": "Teeter Dance", + "effect": "The user performs a wobbly dance that confuses the Pokémon around it." + }, + "blazeKick": { + "name": "Blaze Kick", + "effect": "The user launches a kick that lands a critical hit more easily. This may also leave the target with a burn." + }, + "mudSport": { + "name": "Mud Sport", + "effect": "The user kicks up mud on the battlefield. This weakens Electric-type moves for five turns." + }, + "iceBall": { + "name": "Ice Ball", + "effect": "The user attacks the target for five turns. The move's power increases each time it hits." + }, + "needleArm": { + "name": "Needle Arm", + "effect": "The user attacks by wildly swinging its thorny arms. This may also make the target flinch." + }, + "slackOff": { + "name": "Slack Off", + "effect": "The user slacks off, restoring its own HP by up to half of its max HP." + }, + "hyperVoice": { + "name": "Hyper Voice", + "effect": "The user lets loose a horribly echoing shout with the power to inflict damage." + }, + "poisonFang": { + "name": "Poison Fang", + "effect": "The user bites the target with toxic fangs. This may also leave the target badly poisoned." + }, + "crushClaw": { + "name": "Crush Claw", + "effect": "The user slashes the target with hard and sharp claws. This may also lower the target's Defense stat." + }, + "blastBurn": { + "name": "Blast Burn", + "effect": "The target is razed by a fiery explosion. The user can't move on the next turn." + }, + "hydroCannon": { + "name": "Hydro Cannon", + "effect": "The target is hit with a watery blast. The user can't move on the next turn." + }, + "meteorMash": { + "name": "Meteor Mash", + "effect": "The target is hit with a hard punch fired like a meteor. This may also raise the user's Attack stat." + }, + "astonish": { + "name": "Astonish", + "effect": "The user attacks the target while shouting in a startling fashion. This may also make the target flinch." + }, + "weatherBall": { + "name": "Weather Ball", + "effect": "This attack move varies in power and type depending on the weather." + }, + "aromatherapy": { + "name": "Aromatherapy", + "effect": "The user releases a soothing scent that heals all status conditions affecting the user's party." + }, + "fakeTears": { + "name": "Fake Tears", + "effect": "The user feigns crying to fluster the target, harshly lowering its Sp. Def stat." + }, + "airCutter": { + "name": "Air Cutter", + "effect": "The user launches razor-like wind to slash opposing Pokémon. Critical hits land more easily." + }, + "overheat": { + "name": "Overheat", + "effect": "The user attacks the target at full power. The attack's recoil harshly lowers the user's Sp. Atk stat." + }, + "odorSleuth": { + "name": "Odor Sleuth", + "effect": "Enables a Ghost-type target to be hit by Normal- and Fighting-type attacks. This also enables an evasive target to be hit." + }, + "rockTomb": { + "name": "Rock Tomb", + "effect": "Boulders are hurled at the target. This also lowers the target's Speed stat by preventing its movement." + }, + "silverWind": { + "name": "Silver Wind", + "effect": "The target is attacked with powdery scales blown by the wind. This may also raise all the user's stats." + }, + "metalSound": { + "name": "Metal Sound", + "effect": "A horrible sound like scraping metal harshly lowers the target's Sp. Def stat." + }, + "grassWhistle": { + "name": "Grass Whistle", + "effect": "The user plays a pleasant melody that lulls the target into a deep sleep." + }, + "tickle": { + "name": "Tickle", + "effect": "The user tickles the target into laughing, reducing its Attack and Defense stats." + }, + "cosmicPower": { + "name": "Cosmic Power", + "effect": "The user absorbs a mystical power from space to raise its Defense and Sp. Def stats." + }, + "waterSpout": { + "name": "Water Spout", + "effect": "The user spouts water to damage opposing Pokémon. The lower the user's HP, the lower the move's power." + }, + "signalBeam": { + "name": "Signal Beam", + "effect": "The user attacks with a sinister beam of light. This may also confuse the target." + }, + "shadowPunch": { + "name": "Shadow Punch", + "effect": "The user throws a punch from the shadows. This attack never misses." + }, + "extrasensory": { + "name": "Extrasensory", + "effect": "The user attacks with an odd, unseeable power. This may also make the target flinch." + }, + "skyUppercut": { + "name": "Sky Uppercut", + "effect": "The user attacks the target with an uppercut thrown skyward with force." + }, + "sandTomb": { + "name": "Sand Tomb", + "effect": "The user traps the target inside a harshly raging sandstorm for four to five turns." + }, + "sheerCold": { + "name": "Sheer Cold", + "effect": "The target faints instantly. It's less likely to hit the target if it's used by Pokémon other than Ice types." + }, + "muddyWater": { + "name": "Muddy Water", + "effect": "The user attacks by shooting muddy water at opposing Pokémon. This may also lower their accuracy." + }, + "bulletSeed": { + "name": "Bullet Seed", + "effect": "The user forcefully shoots seeds at the target two to five times in a row." + }, + "aerialAce": { + "name": "Aerial Ace", + "effect": "The user confounds the target with speed, then slashes. This attack never misses." + }, + "icicleSpear": { + "name": "Icicle Spear", + "effect": "The user launches sharp icicles at the target two to five times in a row." + }, + "ironDefense": { + "name": "Iron Defense", + "effect": "The user hardens its body's surface like iron, sharply raising its Defense stat." + }, + "block": { + "name": "Block", + "effect": "The user blocks the target's way with arms spread wide to prevent escape." + }, + "howl": { + "name": "Howl", + "effect": "The user howls loudly to raise the spirit of itself and allies. This raises their Attack stats." + }, + "dragonClaw": { + "name": "Dragon Claw", + "effect": "The user slashes the target with huge sharp claws." + }, + "frenzyPlant": { + "name": "Frenzy Plant", + "effect": "The user slams the target with the roots of an enormous tree. The user can't move on the next turn." + }, + "bulkUp": { + "name": "Bulk Up", + "effect": "The user tenses its muscles to bulk up its body, raising both its Attack and Defense stats." + }, + "bounce": { + "name": "Bounce", + "effect": "The user bounces up high, then drops on the target on the second turn. This may also leave the target with paralysis." + }, + "mudShot": { + "name": "Mud Shot", + "effect": "The user attacks by hurling a blob of mud at the target. This also lowers the target's Speed stat." + }, + "poisonTail": { + "name": "Poison Tail", + "effect": "The user hits the target with its tail. This may also poison the target. Critical hits land more easily." + }, + "covet": { + "name": "Covet", + "effect": "The user endearingly approaches the target, then has a 30% chance to steal the target's held item." + }, + "voltTackle": { + "name": "Volt Tackle", + "effect": "The user electrifies itself and charges the target. This also damages the user quite a lot. This attack may leave the target with paralysis." + }, + "magicalLeaf": { + "name": "Magical Leaf", + "effect": "The user scatters curious leaves that chase the target. This attack never misses." + }, + "waterSport": { + "name": "Water Sport", + "effect": "The user soaks the battlefield with water. This weakens Fire-type moves for five turns." + }, + "calmMind": { + "name": "Calm Mind", + "effect": "The user quietly focuses its mind and calms its spirit to raise its Sp. Atk and Sp. Def stats." + }, + "leafBlade": { + "name": "Leaf Blade", + "effect": "The user handles a sharp leaf like a sword and attacks by cutting its target. Critical hits land more easily." + }, + "dragonDance": { + "name": "Dragon Dance", + "effect": "The user vigorously performs a mystic, powerful dance that raises its Attack and Speed stats." + }, + "rockBlast": { + "name": "Rock Blast", + "effect": "The user hurls hard rocks at the target. Two to five rocks are launched in a row." + }, + "shockWave": { + "name": "Shock Wave", + "effect": "The user strikes the target with a quick jolt of electricity. This attack never misses." + }, + "waterPulse": { + "name": "Water Pulse", + "effect": "The user attacks the target with a pulsing blast of water. This may also confuse the target." + }, + "doomDesire": { + "name": "Doom Desire", + "effect": "Two turns after this move is used, a concentrated bundle of light blasts the target." + }, + "psychoBoost": { + "name": "Psycho Boost", + "effect": "The user attacks the target at full power. The attack's recoil harshly lowers the user's Sp. Atk stat." + }, + "roost": { + "name": "Roost", + "effect": "The user lands and rests its body. This move restores the user's HP by up to half of its max HP." + }, + "gravity": { + "name": "Gravity", + "effect": "This move enables Flying-type Pokémon or Pokémon with the Levitate Ability to be hit by Ground-type moves. Moves that involve flying can't be used." + }, + "miracleEye": { + "name": "Miracle Eye", + "effect": "Enables a Dark-type target to be hit by Psychic-type attacks. This also enables an evasive target to be hit." + }, + "wakeUpSlap": { + "name": "Wake-Up Slap", + "effect": "This attack inflicts big damage on a sleeping target. This also wakes the target up, however." + }, + "hammerArm": { + "name": "Hammer Arm", + "effect": "The user swings and hits with its strong, heavy fist. It lowers the user's Speed, however." + }, + "gyroBall": { + "name": "Gyro Ball", + "effect": "The user tackles the target with a high-speed spin. The slower the user compared to the target, the greater the move's power." + }, + "healingWish": { + "name": "Healing Wish", + "effect": "The user faints. In return, the Pokémon taking its place will have its HP restored and status conditions cured." + }, + "brine": { + "name": "Brine", + "effect": "If the target's HP is half or less, this attack will hit with double the power." + }, + "naturalGift": { + "name": "Natural Gift", + "effect": "The user draws power to attack by using its held Berry. The Berry determines the move's type and power." + }, + "feint": { + "name": "Feint", + "effect": "This attack hits a target using a move such as Protect or Detect. This also lifts the effects of those moves." + }, + "pluck": { + "name": "Pluck", + "effect": "The user pecks the target. If the target is holding a Berry, the user eats it and gains its effect." + }, + "tailwind": { + "name": "Tailwind", + "effect": "The user whips up a turbulent whirlwind that ups the Speed stats of the user and its allies for four turns." + }, + "acupressure": { + "name": "Acupressure", + "effect": "The user applies pressure to stress points, sharply boosting one of its or its allies' stats." + }, + "metalBurst": { + "name": "Metal Burst", + "effect": "The user retaliates with much greater force against the opponent that last inflicted damage on it." + }, + "uTurn": { + "name": "U-turn", + "effect": "After making its attack, the user rushes back to switch places with a party Pokémon in waiting." + }, + "closeCombat": { + "name": "Close Combat", + "effect": "The user fights the target up close without guarding itself. This also lowers the user's Defense and Sp. Def stats." + }, + "payback": { + "name": "Payback", + "effect": "The user stores power, then attacks. If the user moves after the target, this attack's power will be doubled." + }, + "assurance": { + "name": "Assurance", + "effect": "If the target has already taken some damage in the same turn, this attack's power is doubled." + }, + "embargo": { + "name": "Embargo", + "effect": "This move prevents the target from using its held item for five turns. Its Trainer is also prevented from using items on it." + }, + "fling": { + "name": "Fling", + "effect": "The user flings its held item at the target to attack. This move's power and effects depend on the item." + }, + "psychoShift": { + "name": "Psycho Shift", + "effect": "Using its psychic power of suggestion, the user transfers its status conditions to the target." + }, + "trumpCard": { + "name": "Trump Card", + "effect": "The fewer PP this move has, the greater its power." + }, + "healBlock": { + "name": "Heal Block", + "effect": "For five turns, the user prevents the opposing team from using any moves, Abilities, or held items that recover HP." + }, + "wringOut": { + "name": "Wring Out", + "effect": "The user powerfully wrings the target. The more HP the target has, the greater the move's power." + }, + "powerTrick": { + "name": "Power Trick", + "effect": "The user employs its psychic power to switch its Attack stat with its Defense stat." + }, + "gastroAcid": { + "name": "Gastro Acid", + "effect": "The user hurls up its stomach acids on the target. The fluid eliminates the effect of the target's Ability." + }, + "luckyChant": { + "name": "Lucky Chant", + "effect": "The user chants an incantation toward the sky, preventing opposing Pokémon from landing critical hits for five turns." + }, + "meFirst": { + "name": "Me First", + "effect": "The user cuts ahead of the target to copy and use the target's intended move with greater power. This move fails if it isn't used first." + }, + "copycat": { + "name": "Copycat", + "effect": "The user mimics the move used immediately before it. The move fails if no other move has been used yet." + }, + "powerSwap": { + "name": "Power Swap", + "effect": "The user employs its psychic power to switch changes to its Attack and Sp. Atk stats with the target." + }, + "guardSwap": { + "name": "Guard Swap", + "effect": "The user employs its psychic power to switch changes to its Defense and Sp. Def stats with the target." + }, + "punishment": { + "name": "Punishment", + "effect": "The more the target has powered up with stat changes, the greater the move's power." + }, + "lastResort": { + "name": "Last Resort", + "effect": "This move can be used only after the user has used all the other moves it knows in the battle." + }, + "worrySeed": { + "name": "Worry Seed", + "effect": "A seed that causes worry is planted on the target. It prevents sleep by making the target's Ability Insomnia." + }, + "suckerPunch": { + "name": "Sucker Punch", + "effect": "This move enables the user to attack first. This move fails if the target is not readying an attack." + }, + "toxicSpikes": { + "name": "Toxic Spikes", + "effect": "The user lays a trap of poison spikes at the feet of the opposing team. The spikes will poison opposing Pokémon that switch into battle." + }, + "heartSwap": { + "name": "Heart Swap", + "effect": "The user employs its psychic power to switch stat changes with the target." + }, + "aquaRing": { + "name": "Aqua Ring", + "effect": "The user envelops itself in a veil made of water. It regains some HP every turn." + }, + "magnetRise": { + "name": "Magnet Rise", + "effect": "The user levitates using electrically generated magnetism for five turns." + }, + "flareBlitz": { + "name": "Flare Blitz", + "effect": "The user cloaks itself in fire and charges the target. This also damages the user quite a lot. This attack may leave the target with a burn." + }, + "forcePalm": { + "name": "Force Palm", + "effect": "The target is attacked with a shock wave. This may also leave the target with paralysis." + }, + "auraSphere": { + "name": "Aura Sphere", + "effect": "The user lets loose a blast of aura power from deep within its body at the target. This attack never misses." + }, + "rockPolish": { + "name": "Rock Polish", + "effect": "The user polishes its body to reduce drag. This sharply raises the Speed stat." + }, + "poisonJab": { + "name": "Poison Jab", + "effect": "The target is stabbed with a tentacle, arm, or the like steeped in poison. This may also poison the target." + }, + "darkPulse": { + "name": "Dark Pulse", + "effect": "The user releases a horrible aura imbued with dark thoughts. This may also make the target flinch." + }, + "nightSlash": { + "name": "Night Slash", + "effect": "The user slashes the target the instant an opportunity arises. Critical hits land more easily." + }, + "aquaTail": { + "name": "Aqua Tail", + "effect": "The user attacks by swinging its tail as if it were a vicious wave in a raging storm." + }, + "seedBomb": { + "name": "Seed Bomb", + "effect": "The user slams a barrage of hard-shelled seeds down on the target from above." + }, + "airSlash": { + "name": "Air Slash", + "effect": "The user attacks with a blade of air that slices even the sky. This may also make the target flinch." + }, + "xScissor": { + "name": "X-Scissor", + "effect": "The user slashes at the target by crossing its scythes or claws as if they were a pair of scissors." + }, + "bugBuzz": { + "name": "Bug Buzz", + "effect": "The user generates a damaging sound wave by vibration. This may also lower the target's Sp. Def stat." + }, + "dragonPulse": { + "name": "Dragon Pulse", + "effect": "The target is attacked with a shock wave generated by the user's gaping mouth." + }, + "dragonRush": { + "name": "Dragon Rush", + "effect": "The user tackles the target while exhibiting overwhelming menace. This may also make the target flinch." + }, + "powerGem": { + "name": "Power Gem", + "effect": "The user attacks with a ray of light that sparkles as if it were made of gemstones." + }, + "drainPunch": { + "name": "Drain Punch", + "effect": "An energy-draining punch. The user's HP is restored by half the damage taken by the target." + }, + "vacuumWave": { + "name": "Vacuum Wave", + "effect": "The user whirls its fists to send a wave of pure vacuum at the target. This move always goes first." + }, + "focusBlast": { + "name": "Focus Blast", + "effect": "The user heightens its mental focus and unleashes its power. This may also lower the target's Sp. Def stat." + }, + "energyBall": { + "name": "Energy Ball", + "effect": "The user draws power from nature and fires it at the target. This may also lower the target's Sp. Def stat." + }, + "braveBird": { + "name": "Brave Bird", + "effect": "The user tucks in its wings and charges from a low altitude. This also damages the user quite a lot." + }, + "earthPower": { + "name": "Earth Power", + "effect": "The user makes the ground under the target erupt with power. This may also lower the target's Sp. Def stat." + }, + "switcheroo": { + "name": "Switcheroo", + "effect": "The user trades held items with the target faster than the eye can follow." + }, + "gigaImpact": { + "name": "Giga Impact", + "effect": "The user charges at the target using every bit of its power. The user can't move on the next turn." + }, + "nastyPlot": { + "name": "Nasty Plot", + "effect": "The user stimulates its brain by thinking bad thoughts. This sharply raises the user's Sp. Atk stat." + }, + "bulletPunch": { + "name": "Bullet Punch", + "effect": "The user strikes the target with tough punches as fast as bullets. This move always goes first." + }, + "avalanche": { + "name": "Avalanche", + "effect": "The power of this attack move is doubled if the user has been hurt by the target in the same turn." + }, + "iceShard": { + "name": "Ice Shard", + "effect": "The user flash-freezes chunks of ice and hurls them at the target. This move always goes first." + }, + "shadowClaw": { + "name": "Shadow Claw", + "effect": "The user slashes with a sharp claw made from shadows. Critical hits land more easily." + }, + "thunderFang": { + "name": "Thunder Fang", + "effect": "The user bites with electrified fangs. This may also make the target flinch or leave it with paralysis." + }, + "iceFang": { + "name": "Ice Fang", + "effect": "The user bites with cold-infused fangs. This may also make the target flinch or leave it frozen." + }, + "fireFang": { + "name": "Fire Fang", + "effect": "The user bites with flame-cloaked fangs. This may also make the target flinch or leave it with a burn." + }, + "shadowSneak": { + "name": "Shadow Sneak", + "effect": "The user extends its shadow and attacks the target from behind. This move always goes first." + }, + "mudBomb": { + "name": "Mud Bomb", + "effect": "The user launches a hard-packed mud ball to attack. This may also lower the target's accuracy." + }, + "psychoCut": { + "name": "Psycho Cut", + "effect": "The user tears at the target with blades formed by psychic power. Critical hits land more easily." + }, + "zenHeadbutt": { + "name": "Zen Headbutt", + "effect": "The user focuses its willpower to its head and attacks the target. This may also make the target flinch." + }, + "mirrorShot": { + "name": "Mirror Shot", + "effect": "The user lets loose a flash of energy at the target from its polished body. This may also lower the target's accuracy." + }, + "flashCannon": { + "name": "Flash Cannon", + "effect": "The user gathers all its light energy and releases it all at once. This may also lower the target's Sp. Def stat." + }, + "rockClimb": { + "name": "Rock Climb", + "effect": "The user attacks the target by smashing into it with incredible force. This may also confuse the target." + }, + "defog": { + "name": "Defog", + "effect": "A strong wind blows away the target's barriers such as Reflect or Light Screen. This also lowers the target's evasiveness." + }, + "trickRoom": { + "name": "Trick Room", + "effect": "The user creates a bizarre area in which slower Pokémon get to move first for five turns." + }, + "dracoMeteor": { + "name": "Draco Meteor", + "effect": "Comets are summoned down from the sky onto the target. The attack's recoil harshly lowers the user's Sp. Atk stat." + }, + "discharge": { + "name": "Discharge", + "effect": "The user strikes everything around it by letting loose a flare of electricity. This may also cause paralysis." + }, + "lavaPlume": { + "name": "Lava Plume", + "effect": "The user torches everything around it in an inferno of scarlet flames. This may also leave those it hits with a burn." + }, + "leafStorm": { + "name": "Leaf Storm", + "effect": "The user whips up a storm of leaves around the target. The attack's recoil harshly lowers the user's Sp. Atk stat." + }, + "powerWhip": { + "name": "Power Whip", + "effect": "The user violently whirls its vines, tentacles, or the like to harshly lash the target." + }, + "rockWrecker": { + "name": "Rock Wrecker", + "effect": "The user launches a huge boulder at the target to attack. The user can't move on the next turn." + }, + "crossPoison": { + "name": "Cross Poison", + "effect": "A slashing attack with a poisonous blade that may also poison the target. Critical hits land more easily." + }, + "gunkShot": { + "name": "Gunk Shot", + "effect": "The user shoots filthy garbage at the target to attack. This may also poison the target." + }, + "ironHead": { + "name": "Iron Head", + "effect": "The user slams the target with its steel-hard head. This may also make the target flinch." + }, + "magnetBomb": { + "name": "Magnet Bomb", + "effect": "The user launches steel bombs that stick to the target. This attack never misses." + }, + "stoneEdge": { + "name": "Stone Edge", + "effect": "The user stabs the target from below with sharpened stones. Critical hits land more easily." + }, + "captivate": { + "name": "Captivate", + "effect": "If any opposing Pokémon is the opposite gender of the user, it is charmed, which harshly lowers its Sp. Atk stat." + }, + "stealthRock": { + "name": "Stealth Rock", + "effect": "The user lays a trap of levitating stones around the opposing team. The trap hurts opposing Pokémon that switch into battle." + }, + "grassKnot": { + "name": "Grass Knot", + "effect": "The user snares the target with grass and trips it. The heavier the target, the greater the move's power." + }, + "chatter": { + "name": "Chatter", + "effect": "The user attacks the target with sound waves of deafening chatter. This confuses the target." + }, + "judgment": { + "name": "Judgment", + "effect": "The user releases countless shots of light at the target. This move's type varies depending on the kind of Plate the user is holding." + }, + "bugBite": { + "name": "Bug Bite", + "effect": "The user bites the target. If the target is holding a Berry, the user eats it and gains its effect." + }, + "chargeBeam": { + "name": "Charge Beam", + "effect": "The user attacks the target with an electric charge. The user may use any remaining electricity to raise its Sp. Atk stat." + }, + "woodHammer": { + "name": "Wood Hammer", + "effect": "The user slams its rugged body into the target to attack. This also damages the user quite a lot." + }, + "aquaJet": { + "name": "Aqua Jet", + "effect": "The user lunges at the target at a speed that makes it almost invisible. This move always goes first." + }, + "attackOrder": { + "name": "Attack Order", + "effect": "The user calls out its underlings to pummel the target. Critical hits land more easily." + }, + "defendOrder": { + "name": "Defend Order", + "effect": "The user calls out its underlings to shield its body, raising its Defense and Sp. Def stats." + }, + "healOrder": { + "name": "Heal Order", + "effect": "The user calls out its underlings to heal it. The user regains up to half of its max HP." + }, + "headSmash": { + "name": "Head Smash", + "effect": "The user attacks the target with a hazardous, full-power headbutt. This also damages the user terribly." + }, + "doubleHit": { + "name": "Double Hit", + "effect": "The user slams the target with a long tail, vines, or a tentacle. The target is hit twice in a row." + }, + "roarOfTime": { + "name": "Roar of Time", + "effect": "The user blasts the target with power that distorts even time. The user can't move on the next turn." + }, + "spacialRend": { + "name": "Spacial Rend", + "effect": "The user tears the target along with the space around it. Critical hits land more easily." + }, + "lunarDance": { + "name": "Lunar Dance", + "effect": "The user faints. In return, the Pokémon taking its place will have its status and HP fully restored." + }, + "crushGrip": { + "name": "Crush Grip", + "effect": "The target is crushed with great force. The more HP the target has left, the greater this move's power." + }, + "magmaStorm": { + "name": "Magma Storm", + "effect": "The target becomes trapped within a maelstrom of fire that rages for four to five turns." + }, + "darkVoid": { + "name": "Dark Void", + "effect": "Opposing Pokémon are dragged into a world of total darkness that makes them sleep." + }, + "seedFlare": { + "name": "Seed Flare", + "effect": "The user emits a shock wave from its body to attack its target. This may also harshly lower the target's Sp. Def stat." + }, + "ominousWind": { + "name": "Ominous Wind", + "effect": "The user blasts the target with a gust of repulsive wind. This may also raise all the user's stats at once." + }, + "shadowForce": { + "name": "Shadow Force", + "effect": "The user disappears, then strikes the target on the next turn. This move hits even if the target protects itself." + }, + "honeClaws": { + "name": "Hone Claws", + "effect": "The user sharpens its claws to boost its Attack stat and accuracy." + }, + "wideGuard": { + "name": "Wide Guard", + "effect": "The user and its allies are protected from wide-ranging attacks for one turn." + }, + "guardSplit": { + "name": "Guard Split", + "effect": "The user employs its psychic power to average its Defense and Sp. Def stats with those of the target." + }, + "powerSplit": { + "name": "Power Split", + "effect": "The user employs its psychic power to average its Attack and Sp. Atk stats with those of the target." + }, + "wonderRoom": { + "name": "Wonder Room", + "effect": "The user creates a bizarre area in which Pokémon's Defense and Sp. Def stats are swapped for five turns." + }, + "psyshock": { + "name": "Psyshock", + "effect": "The user materializes an odd psychic wave to attack the target. This attack does physical damage." + }, + "venoshock": { + "name": "Venoshock", + "effect": "The user drenches the target in a special poisonous liquid. This move's power is doubled if the target is poisoned." + }, + "autotomize": { + "name": "Autotomize", + "effect": "The user sheds part of its body to make itself lighter and sharply raise its Speed stat." + }, + "ragePowder": { + "name": "Rage Powder", + "effect": "The user scatters a cloud of irritating powder to draw attention to itself. Opposing Pokémon aim only at the user." + }, + "telekinesis": { + "name": "Telekinesis", + "effect": "The user makes the target float with its psychic power. The target is easier to hit for three turns." + }, + "magicRoom": { + "name": "Magic Room", + "effect": "The user creates a bizarre area in which Pokémon's held items lose their effects for five turns." + }, + "smackDown": { + "name": "Smack Down", + "effect": "The user throws a stone or similar projectile to attack the target. A flying Pokémon will fall to the ground when it's hit." + }, + "stormThrow": { + "name": "Storm Throw", + "effect": "The user strikes the target with a fierce blow. This attack always results in a critical hit." + }, + "flameBurst": { + "name": "Flame Burst", + "effect": "The user attacks the target with a bursting flame. The bursting flame damages Pokémon next to the target as well." + }, + "sludgeWave": { + "name": "Sludge Wave", + "effect": "The user strikes everything around it by swamping the area with a giant sludge wave. This may also poison those hit." + }, + "quiverDance": { + "name": "Quiver Dance", + "effect": "The user lightly performs a beautiful, mystic dance. This boosts the user's Sp. Atk, Sp. Def, and Speed stats." + }, + "heavySlam": { + "name": "Heavy Slam", + "effect": "The user slams into the target with its heavy body. The more the user outweighs the target, the greater the move's power." + }, + "synchronoise": { + "name": "Synchronoise", + "effect": "Using an odd shock wave, the user inflicts damage on any Pokémon of the same type in the area around it." + }, + "electroBall": { + "name": "Electro Ball", + "effect": "The user hurls an electric orb at the target. The faster the user is than the target, the greater the move's power." + }, + "soak": { + "name": "Soak", + "effect": "The user shoots a torrent of water at the target and changes the target's type to Water." + }, + "flameCharge": { + "name": "Flame Charge", + "effect": "Cloaking itself in flame, the user attacks the target. Then, building up more power, the user raises its Speed stat." + }, + "coil": { + "name": "Coil", + "effect": "The user coils up and concentrates. This raises its Attack and Defense stats as well as its accuracy." + }, + "lowSweep": { + "name": "Low Sweep", + "effect": "The user makes a swift attack on the target's legs, which lowers the target's Speed stat." + }, + "acidSpray": { + "name": "Acid Spray", + "effect": "The user spits fluid that works to melt the target. This harshly lowers the target's Sp. Def stat." + }, + "foulPlay": { + "name": "Foul Play", + "effect": "The user turns the target's power against it. The higher the target's Attack stat, the greater the damage it deals." + }, + "simpleBeam": { + "name": "Simple Beam", + "effect": "The user's mysterious psychic wave changes the target's Ability to Simple." + }, + "entrainment": { + "name": "Entrainment", + "effect": "The user dances with an odd rhythm that compels the target to mimic it, making the target's Ability the same as the user's." + }, + "afterYou": { + "name": "After You", + "effect": "The user helps the target and makes it use its move right after the user." + }, + "round": { + "name": "Round", + "effect": "The user attacks the target with a song. Others can join in the Round to increase the power of the attack." + }, + "echoedVoice": { + "name": "Echoed Voice", + "effect": "The user attacks the target with an echoing voice. If this move is used every turn, its power is increased." + }, + "chipAway": { + "name": "Chip Away", + "effect": "Looking for an opening, the user strikes consistently. The target's stat changes don't affect this attack's damage." + }, + "clearSmog": { + "name": "Clear Smog", + "effect": "The user attacks the target by throwing a clump of special mud. All stat changes are returned to normal." + }, + "storedPower": { + "name": "Stored Power", + "effect": "The user attacks the target with stored power. The more the user's stats are raised, the greater the move's power." + }, + "quickGuard": { + "name": "Quick Guard", + "effect": "The user protects itself and its allies from priority moves." + }, + "allySwitch": { + "name": "Ally Switch", + "effect": "The user teleports using a strange power and switches places with one of its allies." + }, + "scald": { + "name": "Scald", + "effect": "The user shoots boiling hot water at its target. This may also leave the target with a burn." + }, + "shellSmash": { + "name": "Shell Smash", + "effect": "The user breaks its shell, which lowers Defense and Sp. Def stats but sharply raises its Attack, Sp. Atk, and Speed stats." + }, + "healPulse": { + "name": "Heal Pulse", + "effect": "The user emits a healing pulse that restores the target's HP by up to half of its max HP." + }, + "hex": { + "name": "Hex", + "effect": "This relentless attack does massive damage to a target affected by status conditions." + }, + "skyDrop": { + "name": "Sky Drop", + "effect": "The user takes the target into the sky, then drops it during the next turn. The target cannot attack while in the sky." + }, + "shiftGear": { + "name": "Shift Gear", + "effect": "The user rotates its gears, raising its Attack stat and sharply raising its Speed stat." + }, + "circleThrow": { + "name": "Circle Throw", + "effect": "The target is thrown, and a different Pokémon is dragged out. In the wild, this ends a battle against a single Pokémon." + }, + "incinerate": { + "name": "Incinerate", + "effect": "The user attacks opposing Pokémon with fire. If a Pokémon is holding a certain item, such as a Berry, the item becomes burned up and unusable." + }, + "quash": { + "name": "Quash", + "effect": "The user suppresses the target and makes its move go last." + }, + "acrobatics": { + "name": "Acrobatics", + "effect": "The user nimbly strikes the target. The fewer held items, the higher the damage it inflicts." + }, + "reflectType": { + "name": "Reflect Type", + "effect": "The user reflects the target's type, making the user the same type as the target." + }, + "retaliate": { + "name": "Retaliate", + "effect": "The user gets revenge for a fainted ally. If an ally fainted in the previous turn, this move's power is increased." + }, + "finalGambit": { + "name": "Final Gambit", + "effect": "The user risks everything to attack its target. The user faints but does damage equal to its HP." + }, + "bestow": { + "name": "Bestow", + "effect": "The user passes its held item to the target when the target isn't holding an item." + }, + "inferno": { + "name": "Inferno", + "effect": "The user attacks by engulfing the target in an intense fire. This leaves the target with a burn." + }, + "waterPledge": { + "name": "Water Pledge", + "effect": "A column of water hits the target. When used with its fire equivalent, its power increases and a rainbow appears." + }, + "firePledge": { + "name": "Fire Pledge", + "effect": "A column of fire hits the target. When used with its grass equivalent, its power increases and a vast sea of fire appears." + }, + "grassPledge": { + "name": "Grass Pledge", + "effect": "A column of grass hits the target. When used with its water equivalent, its power increases and a vast swamp appears." + }, + "voltSwitch": { + "name": "Volt Switch", + "effect": "After making its attack, the user rushes back to switch places with a party Pokémon in waiting." + }, + "struggleBug": { + "name": "Struggle Bug", + "effect": "While resisting, the user attacks opposing Pokémon. This lowers the Sp. Atk stats of those hit." + }, + "bulldoze": { + "name": "Bulldoze", + "effect": "The user strikes everything around it by stomping down on the ground. This lowers the Speed stats of those hit." + }, + "frostBreath": { + "name": "Frost Breath", + "effect": "The user blows its cold breath on the target. This attack always results in a critical hit." + }, + "dragonTail": { + "name": "Dragon Tail", + "effect": "The target is knocked away, and a different Pokémon is dragged out. In the wild, this ends a battle against a single Pokémon." + }, + "workUp": { + "name": "Work Up", + "effect": "The user is roused, and its Attack and Sp. Atk stats increase." + }, + "electroweb": { + "name": "Electroweb", + "effect": "The user attacks and captures opposing Pokémon using an electric net. This lowers their Speed stats." + }, + "wildCharge": { + "name": "Wild Charge", + "effect": "The user shrouds itself in electricity and smashes into its target. This also damages the user a little." + }, + "drillRun": { + "name": "Drill Run", + "effect": "The user crashes into its target while rotating its body like a drill. Critical hits land more easily." + }, + "dualChop": { + "name": "Dual Chop", + "effect": "The user attacks its target by hitting it with brutal strikes. The target is hit twice in a row." + }, + "heartStamp": { + "name": "Heart Stamp", + "effect": "The user unleashes a vicious blow after its cute act makes the target less wary. This may also make the target flinch." + }, + "hornLeech": { + "name": "Horn Leech", + "effect": "The user drains the target's energy with its horns. The user's HP is restored by half the damage taken by the target." + }, + "sacredSword": { + "name": "Sacred Sword", + "effect": "The user attacks by slicing with a long horn. The target's stat changes don't affect this attack's damage." + }, + "razorShell": { + "name": "Razor Shell", + "effect": "The user cuts its target with sharp shells. This may also lower the target's Defense stat." + }, + "heatCrash": { + "name": "Heat Crash", + "effect": "The user slams its target with its flame-covered body. The more the user outweighs the target, the greater the move's power." + }, + "leafTornado": { + "name": "Leaf Tornado", + "effect": "The user attacks its target by encircling it in sharp leaves. This attack may also lower the target's accuracy." + }, + "steamroller": { + "name": "Steamroller", + "effect": "The user crushes its target by rolling over the target with its rolled-up body. This may also make the target flinch." + }, + "cottonGuard": { + "name": "Cotton Guard", + "effect": "The user protects itself by wrapping its body in soft cotton, which drastically raises the user's Defense stat." + }, + "nightDaze": { + "name": "Night Daze", + "effect": "The user lets loose a pitch-black shock wave at its target. This may also lower the target's accuracy." + }, + "psystrike": { + "name": "Psystrike", + "effect": "The user materializes an odd psychic wave to attack the target. This attack does physical damage." + }, + "tailSlap": { + "name": "Tail Slap", + "effect": "The user attacks by striking the target with its hard tail. It hits the target two to five times in a row." + }, + "hurricane": { + "name": "Hurricane", + "effect": "The user attacks by wrapping its opponent in a fierce wind that flies up into the sky. This may also confuse the target." + }, + "headCharge": { + "name": "Head Charge", + "effect": "The user charges its head into its target, using its powerful guard hair. This also damages the user a little." + }, + "gearGrind": { + "name": "Gear Grind", + "effect": "The user attacks by throwing steel gears at its target twice." + }, + "searingShot": { + "name": "Searing Shot", + "effect": "The user torches everything around it in an inferno of scarlet flames. This may also leave those it hits with a burn." + }, + "technoBlast": { + "name": "Techno Blast", + "effect": "The user fires a beam of light at its target. The move's type changes depending on the Drive the user holds." + }, + "relicSong": { + "name": "Relic Song", + "effect": "The user sings an ancient song and attacks by appealing to the hearts of the listening opposing Pokémon. This may also induce sleep." + }, + "secretSword": { + "name": "Secret Sword", + "effect": "The user cuts with its long horn. The odd power contained in the horn does physical damage to the target." + }, + "glaciate": { + "name": "Glaciate", + "effect": "The user attacks by blowing freezing cold air at opposing Pokémon. This lowers their Speed stats." + }, + "boltStrike": { + "name": "Bolt Strike", + "effect": "The user surrounds itself with a great amount of electricity and charges its target. This may also leave the target with paralysis." + }, + "blueFlare": { + "name": "Blue Flare", + "effect": "The user attacks by engulfing the target in an intense, yet beautiful, blue flame. This may also leave the target with a burn." + }, + "fieryDance": { + "name": "Fiery Dance", + "effect": "Cloaked in flames, the user attacks the target by dancing and flapping its wings. This may also raise the user's Sp. Atk stat." + }, + "freezeShock": { + "name": "Freeze Shock", + "effect": "On the second turn, the user hits the target with electrically charged ice. This may also leave the target with paralysis." + }, + "iceBurn": { + "name": "Ice Burn", + "effect": "On the second turn, an ultracold, freezing wind surrounds the target. This may leave the target with a burn." + }, + "snarl": { + "name": "Snarl", + "effect": "The user yells as if it's ranting about something, which lowers the Sp. Atk stats of opposing Pokémon." + }, + "icicleCrash": { + "name": "Icicle Crash", + "effect": "The user attacks by harshly dropping large icicles onto the target. This may also make the target flinch." + }, + "vCreate": { + "name": "V-create", + "effect": "With a hot flame on its forehead, the user hurls itself at its target. This lowers the user's Defense, Sp. Def, and Speed stats." + }, + "fusionFlare": { + "name": "Fusion Flare", + "effect": "The user brings down a giant flame. This move's power is increased when influenced by an enormous lightning bolt." + }, + "fusionBolt": { + "name": "Fusion Bolt", + "effect": "The user throws down a giant lightning bolt. This move's power is increased when influenced by an enormous flame." + }, + "flyingPress": { + "name": "Flying Press", + "effect": "The user dives down onto the target from the sky. This move is Fighting and Flying type simultaneously." + }, + "matBlock": { + "name": "Mat Block", + "effect": "Using a pulled-up mat as a shield, the user protects itself and its allies from damaging moves. This does not stop status moves." + }, + "belch": { + "name": "Belch", + "effect": "The user lets out a damaging belch at the target. The user must eat a held Berry to use this move." + }, + "rototiller": { + "name": "Rototiller", + "effect": "Tilling the soil, the user makes it easier for plants to grow. This raises the Attack and Sp. Atk stats of Grass-type Pokémon." + }, + "stickyWeb": { + "name": "Sticky Web", + "effect": "The user weaves a sticky net around the opposing team, which lowers their Speed stats upon switching into battle." + }, + "fellStinger": { + "name": "Fell Stinger", + "effect": "When the user knocks out a target with this move, the user's Attack stat rises drastically." + }, + "phantomForce": { + "name": "Phantom Force", + "effect": "The user vanishes somewhere, then strikes the target on the next turn. This move hits even if the target protects itself." + }, + "trickOrTreat": { + "name": "Trick-or-Treat", + "effect": "The user takes the target trick-or-treating. This adds Ghost type to the target's type." + }, + "nobleRoar": { + "name": "Noble Roar", + "effect": "Letting out a noble roar, the user intimidates the target and lowers its Attack and Sp. Atk stats." + }, + "ionDeluge": { + "name": "Ion Deluge", + "effect": "The user disperses electrically charged particles, which changes Normal-type moves to Electric-type moves." + }, + "parabolicCharge": { + "name": "Parabolic Charge", + "effect": "The user attacks everything around it. The user's HP is restored by half the damage taken by those hit." + }, + "forestsCurse": { + "name": "Forest's Curse", + "effect": "The user puts a forest curse on the target. The target is now Grass type as well." + }, + "petalBlizzard": { + "name": "Petal Blizzard", + "effect": "The user stirs up a violent petal blizzard and attacks everything around it." + }, + "freezeDry": { + "name": "Freeze-Dry", + "effect": "The user rapidly cools the target. This may also leave the target frozen. This move is super effective on Water types." + }, + "disarmingVoice": { + "name": "Disarming Voice", + "effect": "Letting out a charming cry, the user does emotional damage to opposing Pokémon. This attack never misses." + }, + "partingShot": { + "name": "Parting Shot", + "effect": "With a parting threat, the user lowers the target's Attack and Sp. Atk stats. Then it switches with a party Pokémon." + }, + "topsyTurvy": { + "name": "Topsy-Turvy", + "effect": "All stat changes affecting the target turn topsy-turvy and become the opposite of what they were." + }, + "drainingKiss": { + "name": "Draining Kiss", + "effect": "The user steals the target's HP with a kiss. The user's HP is restored by over half of the damage taken by the target." + }, + "craftyShield": { + "name": "Crafty Shield", + "effect": "The user protects itself and its allies from status moves with a mysterious power. This does not stop moves that do damage." + }, + "flowerShield": { + "name": "Flower Shield", + "effect": "The user raises the Defense stats of all Grass-type Pokémon in battle with a mysterious power." + }, + "grassyTerrain": { + "name": "Grassy Terrain", + "effect": "The user turns the ground to grass for five turns. This restores the HP of Pokémon on the ground a little every turn and powers up Grass-type moves." + }, + "mistyTerrain": { + "name": "Misty Terrain", + "effect": "This protects Pokémon on the ground from status conditions and halves damage from Dragon-type moves for five turns." + }, + "electrify": { + "name": "Electrify", + "effect": "If the target is electrified before it uses a move during that turn, the target's move becomes Electric type." + }, + "playRough": { + "name": "Play Rough", + "effect": "The user plays rough with the target and attacks it. This may also lower the target's Attack stat." + }, + "fairyWind": { + "name": "Fairy Wind", + "effect": "The user stirs up a fairy wind and strikes the target with it." + }, + "moonblast": { + "name": "Moonblast", + "effect": "Borrowing the power of the moon, the user attacks the target. This may also lower the target's Sp. Atk stat." + }, + "boomburst": { + "name": "Boomburst", + "effect": "The user attacks everything around it with the destructive power of a terrible, explosive sound." + }, + "fairyLock": { + "name": "Fairy Lock", + "effect": "By locking down the battlefield, the user keeps all Pokémon from fleeing during the next turn." + }, + "kingsShield": { + "name": "King's Shield", + "effect": "The user takes a defensive stance while it protects itself from damage. It also lowers the Attack stat of any attacker that makes direct contact." + }, + "playNice": { + "name": "Play Nice", + "effect": "The user and the target become friends, and the target loses its will to fight. This lowers the target's Attack stat." + }, + "confide": { + "name": "Confide", + "effect": "The user tells the target a secret, and the target loses its ability to concentrate. This lowers the target's Sp. Atk stat." + }, + "diamondStorm": { + "name": "Diamond Storm", + "effect": "The user whips up a storm of diamonds to damage opposing Pokémon. This may also sharply raise the user's Defense stat." + }, + "steamEruption": { + "name": "Steam Eruption", + "effect": "The user immerses the target in superheated steam. This may also leave the target with a burn." + }, + "hyperspaceHole": { + "name": "Hyperspace Hole", + "effect": "Using a hyperspace hole, the user appears right next to the target and strikes. This also hits a target using a move such as Protect or Detect." + }, + "waterShuriken": { + "name": "Water Shuriken", + "effect": "The user hits the target with throwing stars two to five times in a row. This move always goes first." + }, + "mysticalFire": { + "name": "Mystical Fire", + "effect": "The user attacks by breathing a special, hot fire. This also lowers the target's Sp. Atk stat." + }, + "spikyShield": { + "name": "Spiky Shield", + "effect": "In addition to protecting the user from attacks, this move also damages any attacker that makes direct contact." + }, + "aromaticMist": { + "name": "Aromatic Mist", + "effect": "The user raises the Sp. Def stat of an ally Pokémon by using a mysterious aroma." + }, + "eerieImpulse": { + "name": "Eerie Impulse", + "effect": "The user's body generates an eerie impulse. Exposing the target to it harshly lowers the target's Sp. Atk stat." + }, + "venomDrench": { + "name": "Venom Drench", + "effect": "Opposing Pokémon are drenched in an odd poisonous liquid. This lowers the Attack, Sp. Atk, and Speed stats of a poisoned target." + }, + "powder": { + "name": "Powder", + "effect": "The user covers the target in a combustible powder. If the target uses a Fire-type move, the powder explodes and damages the target." + }, + "geomancy": { + "name": "Geomancy", + "effect": "The user absorbs energy and sharply raises its Sp. Atk, Sp. Def, and Speed stats on the next turn." + }, + "magneticFlux": { + "name": "Magnetic Flux", + "effect": "The user manipulates magnetic fields, which raises the Defense and Sp. Def stats of ally Pokémon with the Plus or Minus Ability." + }, + "happyHour": { + "name": "Happy Hour", + "effect": "Using Happy Hour doubles the amount of prize money received after battle." + }, + "electricTerrain": { + "name": "Electric Terrain", + "effect": "The user electrifies the ground for five turns, powering up Electric-type moves. Pokémon on the ground no longer fall asleep." + }, + "dazzlingGleam": { + "name": "Dazzling Gleam", + "effect": "The user damages opposing Pokémon by emitting a powerful flash." + }, + "celebrate": { + "name": "Celebrate", + "effect": "The Pokémon congratulates you on your special day!" + }, + "holdHands": { + "name": "Hold Hands", + "effect": "The user and an ally hold hands. This makes them very happy." + }, + "babyDollEyes": { + "name": "Baby-Doll Eyes", + "effect": "The user stares at the target with its baby-doll eyes, which lowers the target's Attack stat. This move always goes first." + }, + "nuzzle": { + "name": "Nuzzle", + "effect": "The user attacks by nuzzling its electrified cheeks against the target. This also leaves the target with paralysis." + }, + "holdBack": { + "name": "Hold Back", + "effect": "The user holds back when it attacks, and the target is left with at least 1 HP." + }, + "infestation": { + "name": "Infestation", + "effect": "The target is infested and attacked for four to five turns. The target can't flee during this time." + }, + "powerUpPunch": { + "name": "Power-Up Punch", + "effect": "Striking opponents over and over makes the user's fists harder. Hitting a target raises the Attack stat." + }, + "oblivionWing": { + "name": "Oblivion Wing", + "effect": "The user absorbs its target's HP. The user's HP is restored by over half of the damage taken by the target." + }, + "thousandArrows": { + "name": "Thousand Arrows", + "effect": "This move also hits opposing Pokémon that are in the air. Those Pokémon are knocked down to the ground." + }, + "thousandWaves": { + "name": "Thousand Waves", + "effect": "The user attacks with a wave that crawls along the ground. Those it hits can't flee from battle." + }, + "landsWrath": { + "name": "Land's Wrath", + "effect": "The user gathers the energy of the land and focuses that power on opposing Pokémon to damage them." + }, + "lightOfRuin": { + "name": "Light of Ruin", + "effect": "Drawing power from the Eternal Flower, the user fires a powerful beam of light. This also damages the user quite a lot." + }, + "originPulse": { + "name": "Origin Pulse", + "effect": "The user attacks opposing Pokémon with countless beams of light that glow a deep and brilliant blue." + }, + "precipiceBlades": { + "name": "Precipice Blades", + "effect": "The user attacks opposing Pokémon by manifesting the power of the land in fearsome blades of stone." + }, + "dragonAscent": { + "name": "Dragon Ascent", + "effect": "After soaring upward, the user attacks its target by dropping out of the sky at high speeds. But it lowers its own Defense and Sp. Def stats in the process." + }, + "hyperspaceFury": { + "name": "Hyperspace Fury", + "effect": "Using its many arms, the user unleashes a barrage of attacks that ignore the effects of moves like Protect and Detect. But the user's Defense stat falls." + }, + "breakneckBlitzPhysical": { + "name": "Breakneck Blitz", + "effect": "The user builds up its momentum using its Z-Power and crashes into the target at full speed. The power varies, depending on the original move." + }, + "breakneckBlitzSpecial": { + "name": "Breakneck Blitz", + "effect": "Dummy Data" + }, + "allOutPummelingPhysical": { + "name": "All-Out Pummeling", + "effect": "The user rams an energy orb created by its Z-Power into the target with full force. The power varies, depending on the original move." + }, + "allOutPummelingSpecial": { + "name": "All-Out Pummeling", + "effect": "Dummy Data" + }, + "supersonicSkystrikePhysical": { + "name": "Supersonic Skystrike", + "effect": "The user soars up with its Z-Power and plummets toward the target at full speed. The power varies, depending on the original move." + }, + "supersonicSkystrikeSpecial": { + "name": "Supersonic Skystrike", + "effect": "Dummy Data" + }, + "acidDownpourPhysical": { + "name": "Acid Downpour", + "effect": "The user creates a poisonous swamp using its Z-Power and sinks the target into it at full force. The power varies, depending on the original move." + }, + "acidDownpourSpecial": { + "name": "Acid Downpour", + "effect": "Dummy Data" + }, + "tectonicRagePhysical": { + "name": "Tectonic Rage", + "effect": "The user burrows deep into the ground and slams into the target with the full force of its Z-Power. The power varies, depending on the original move." + }, + "tectonicRageSpecial": { + "name": "Tectonic Rage", + "effect": "Dummy Data" + }, + "continentalCrushPhysical": { + "name": "Continental Crush", + "effect": "The user summons a huge rock mountain using its Z-Power and drops it onto the target with full force. The power varies, depending on the original move." + }, + "continentalCrushSpecial": { + "name": "Continental Crush", + "effect": "Dummy Data" + }, + "savageSpinOutPhysical": { + "name": "Savage Spin-Out", + "effect": "The user binds the target with full force with threads of silk that the user spits using its Z-Power. The power varies, depending on the original move." + }, + "savageSpinOutSpecial": { + "name": "Savage Spin-Out", + "effect": "Dummy Data" + }, + "neverEndingNightmarePhysical": { + "name": "Never-Ending Nightmare", + "effect": "Deep-seated grudges summoned by the user's Z-Power trap the target. The power varies, depending on the original move." + }, + "neverEndingNightmareSpecial": { + "name": "Never-Ending Nightmare", + "effect": "Dummy Data" + }, + "corkscrewCrashPhysical": { + "name": "Corkscrew Crash", + "effect": "The user spins very fast and rams into the target with the full force of its Z-Power. The power varies, depending on the original move." + }, + "corkscrewCrashSpecial": { + "name": "Corkscrew Crash", + "effect": "Dummy Data" + }, + "infernoOverdrivePhysical": { + "name": "Inferno Overdrive", + "effect": "The user breathes a stream of intense fire toward the target with the full force of its Z-Power. The power varies depending on the original move." + }, + "infernoOverdriveSpecial": { + "name": "Inferno Overdrive", + "effect": "Dummy Data" + }, + "hydroVortexPhysical": { + "name": "Hydro Vortex", + "effect": "The user creates a huge whirling current using its Z-Power to swallow the target with full force. The power varies, depending on the original move." + }, + "hydroVortexSpecial": { + "name": "Hydro Vortex", + "effect": "Dummy Data" + }, + "bloomDoomPhysical": { + "name": "Bloom Doom", + "effect": "The user collects energy from plants using its Z-Power and attacks the target with full force. The power varies, depending on the original move." + }, + "bloomDoomSpecial": { + "name": "Bloom Doom", + "effect": "Dummy Data" + }, + "gigavoltHavocPhysical": { + "name": "Gigavolt Havoc", + "effect": "The user hits the target with a powerful electric current collected by its Z-Power. The power varies, depending on the original move." + }, + "gigavoltHavocSpecial": { + "name": "Gigavolt Havoc", + "effect": "Dummy Data" + }, + "shatteredPsychePhysical": { + "name": "Shattered Psyche", + "effect": "The user controls the target with its Z-Power and hurts the target with full force. The power varies, depending on the original move." + }, + "shatteredPsycheSpecial": { + "name": "Shattered Psyche", + "effect": "Dummy Data" + }, + "subzeroSlammerPhysical": { + "name": "Subzero Slammer", + "effect": "The user dramatically drops the temperature using its Z-Power and freezes the target with full force. The power varies, depending on the original move." + }, + "subzeroSlammerSpecial": { + "name": "Subzero Slammer", + "effect": "Dummy Data" + }, + "devastatingDrakePhysical": { + "name": "Devastating Drake", + "effect": "The user materializes its aura using its Z-Power and attacks the target with full force. The power varies, depending on the original move." + }, + "devastatingDrakeSpecial": { + "name": "Devastating Drake", + "effect": "Dummy Data" + }, + "blackHoleEclipsePhysical": { + "name": "Black Hole Eclipse", + "effect": "The user gathers dark energy using its Z-Power and sucks the target into it. The power varies, depending on the original move." + }, + "blackHoleEclipseSpecial": { + "name": "Black Hole Eclipse", + "effect": "Dummy Data" + }, + "twinkleTacklePhysical": { + "name": "Twinkle Tackle", + "effect": "The user creates a very charming space using its Z-Power and totally toys with the target. The power varies, depending on the original move." + }, + "twinkleTackleSpecial": { + "name": "Twinkle Tackle", + "effect": "Dummy Data" + }, + "catastropika": { + "name": "Catastropika", + "effect": "The user, Pikachu, surrounds itself with the maximum amount of electricity using its Z-Power and pounces on its target with full force." + }, + "shoreUp": { + "name": "Shore Up", + "effect": "The user regains up to half of its max HP. It restores more HP in a sandstorm." + }, + "firstImpression": { + "name": "First Impression", + "effect": "Although this move has great power, it only works the first turn each time the user enters battle." + }, + "banefulBunker": { + "name": "Baneful Bunker", + "effect": "In addition to protecting the user from attacks, this move also poisons any attacker that makes direct contact." + }, + "spiritShackle": { + "name": "Spirit Shackle", + "effect": "The user attacks while simultaneously stitching the target's shadow to the ground to prevent the target from escaping." + }, + "darkestLariat": { + "name": "Darkest Lariat", + "effect": "The user swings both arms and hits the target. The target's stat changes don't affect this attack's damage." + }, + "sparklingAria": { + "name": "Sparkling Aria", + "effect": "The user bursts into song, emitting many bubbles. Any Pokémon suffering from a burn will be healed by the touch of these bubbles." + }, + "iceHammer": { + "name": "Ice Hammer", + "effect": "The user swings and hits with its strong, heavy fist. It lowers the user's Speed, however." + }, + "floralHealing": { + "name": "Floral Healing", + "effect": "The user restores the target's HP by up to half of its max HP. It restores more HP when the terrain is grass." + }, + "highHorsepower": { + "name": "High Horsepower", + "effect": "The user fiercely attacks the target using its entire body." + }, + "strengthSap": { + "name": "Strength Sap", + "effect": "The user restores its HP by the same amount as the target's Attack stat. It also lowers the target's Attack stat." + }, + "solarBlade": { + "name": "Solar Blade", + "effect": "In this two-turn attack, the user gathers light and fills a blade with the light's energy, attacking the target on the next turn." + }, + "leafage": { + "name": "Leafage", + "effect": "The user attacks by pelting the target with leaves." + }, + "spotlight": { + "name": "Spotlight", + "effect": "The user shines a spotlight on the target so that only the target will be attacked during the turn." + }, + "toxicThread": { + "name": "Toxic Thread", + "effect": "The user shoots poisonous threads to poison the target and lower the target's Speed stat." + }, + "laserFocus": { + "name": "Laser Focus", + "effect": "The user concentrates intensely. The attack on the next turn always results in a critical hit." + }, + "gearUp": { + "name": "Gear Up", + "effect": "The user engages its gears to raise the Attack and Sp. Atk stats of ally Pokémon with the Plus or Minus Ability." + }, + "throatChop": { + "name": "Throat Chop", + "effect": "The user attacks the target's throat, and the resultant suffering prevents the target from using moves that emit sound for two turns." + }, + "pollenPuff": { + "name": "Pollen Puff", + "effect": "The user attacks the enemy with a pollen puff that explodes. If the target is an ally, it gives the ally a pollen puff that restores its HP instead." + }, + "anchorShot": { + "name": "Anchor Shot", + "effect": "The user entangles the target with its anchor chain while attacking. The target becomes unable to flee." + }, + "psychicTerrain": { + "name": "Psychic Terrain", + "effect": "This protects Pokémon on the ground from priority moves and powers up Psychic-type moves for five turns." + }, + "lunge": { + "name": "Lunge", + "effect": "The user makes a lunge at the target, attacking with full force. This also lowers the target's Attack stat." + }, + "fireLash": { + "name": "Fire Lash", + "effect": "The user strikes the target with a burning lash. This also lowers the target's Defense stat." + }, + "powerTrip": { + "name": "Power Trip", + "effect": "The user boasts its strength and attacks the target. The more the user's stats are raised, the greater the move's power." + }, + "burnUp": { + "name": "Burn Up", + "effect": "To inflict massive damage, the user burns itself out. After using this move, the user will no longer be Fire type." + }, + "speedSwap": { + "name": "Speed Swap", + "effect": "The user exchanges Speed stats with the target." + }, + "smartStrike": { + "name": "Smart Strike", + "effect": "The user stabs the target with a sharp horn. This attack never misses." + }, + "purify": { + "name": "Purify", + "effect": "The user heals the target's status condition. If the move succeeds, it also restores the user's own HP." + }, + "revelationDance": { + "name": "Revelation Dance", + "effect": "The user attacks the target by dancing very hard. The user's type determines the type of this move." + }, + "coreEnforcer": { + "name": "Core Enforcer", + "effect": "If the Pokémon the user has inflicted damage on have already used their moves, this move eliminates the effect of the target's Ability." + }, + "tropKick": { + "name": "Trop Kick", + "effect": "The user lands an intense kick of tropical origins on the target. This also lowers the target's Attack stat." + }, + "instruct": { + "name": "Instruct", + "effect": "The user instructs the target to use the target's last move again." + }, + "beakBlast": { + "name": "Beak Blast", + "effect": "The user first heats up its beak, and then it attacks the target. Making direct contact with the Pokémon while it's heating up its beak results in a burn." + }, + "clangingScales": { + "name": "Clanging Scales", + "effect": "The user rubs the scales on its entire body and makes a huge noise to attack opposing Pokémon. The user's Defense stat goes down after the attack." + }, + "dragonHammer": { + "name": "Dragon Hammer", + "effect": "The user uses its body like a hammer to attack the target and inflict damage." + }, + "brutalSwing": { + "name": "Brutal Swing", + "effect": "The user swings its body around violently to inflict damage on everything in its vicinity." + }, + "auroraVeil": { + "name": "Aurora Veil", + "effect": "This move reduces damage from physical and special moves for five turns. This can be used only when it is snowing." + }, + "sinisterArrowRaid": { + "name": "Sinister Arrow Raid", + "effect": "The user, Decidueye, creates countless arrows using its Z-Power and shoots the target with full force." + }, + "maliciousMoonsault": { + "name": "Malicious Moonsault", + "effect": "The user, Incineroar, strengthens its body using its Z-Power and crashes into the target with full force." + }, + "oceanicOperetta": { + "name": "Oceanic Operetta", + "effect": "The user, Primarina, summons a massive amount of water using its Z-Power and attacks the target with full force." + }, + "guardianOfAlola": { + "name": "Guardian of Alola", + "effect": "The user, the Land Spirit Pokémon, obtains Alola's energy using its Z-Power and attacks the target with full force. This reduces the target's HP greatly." + }, + "soulStealing7StarStrike": { + "name": "Soul-Stealing 7-Star Strike", + "effect": "After obtaining Z-Power, the user, Marshadow, punches and kicks the target consecutively with full force." + }, + "stokedSparksurfer": { + "name": "Stoked Sparksurfer", + "effect": "After obtaining Z-Power, the user, Alolan Raichu, attacks the target with full force. This move leaves the target with paralysis." + }, + "pulverizingPancake": { + "name": "Pulverizing Pancake", + "effect": "Z-Power brings out the true capabilities of the user, Snorlax. The Pokémon moves its enormous body energetically and attacks the target with full force." + }, + "extremeEvoboost": { + "name": "Extreme Evoboost", + "effect": "After obtaining Z-Power, the user, Eevee, gets energy from its evolved friends and boosts its stats sharply." + }, + "genesisSupernova": { + "name": "Genesis Supernova", + "effect": "After obtaining Z-Power, the user, Mew, attacks the target with full force. The terrain will be charged with psychic energy." + }, + "shellTrap": { + "name": "Shell Trap", + "effect": "The user sets a shell trap. If the user is hit by a physical move, the trap will explode and inflict damage on opposing Pokémon." + }, + "fleurCannon": { + "name": "Fleur Cannon", + "effect": "The user unleashes a strong beam. The attack's recoil harshly lowers the user's Sp. Atk stat." + }, + "psychicFangs": { + "name": "Psychic Fangs", + "effect": "The user bites the target with its psychic capabilities. This can also destroy Light Screen and Reflect." + }, + "stompingTantrum": { + "name": "Stomping Tantrum", + "effect": "Driven by frustration, the user attacks the target. If the user's previous move has failed, the power of this move doubles." + }, + "shadowBone": { + "name": "Shadow Bone", + "effect": "The user attacks by beating the target with a bone that contains a spirit. This may also lower the target's Defense stat." + }, + "accelerock": { + "name": "Accelerock", + "effect": "The user smashes into the target at high speed. This move always goes first." + }, + "liquidation": { + "name": "Liquidation", + "effect": "The user slams into the target using a full-force blast of water. This may also lower the target's Defense stat." + }, + "prismaticLaser": { + "name": "Prismatic Laser", + "effect": "The user shoots powerful lasers using the power of a prism. The user can't move on the next turn." + }, + "spectralThief": { + "name": "Spectral Thief", + "effect": "The user hides in the target's shadow, steals the target's stat boosts, and then attacks." + }, + "sunsteelStrike": { + "name": "Sunsteel Strike", + "effect": "The user slams into the target with the force of a meteor. This move can be used on the target regardless of its Abilities." + }, + "moongeistBeam": { + "name": "Moongeist Beam", + "effect": "The user emits a sinister ray to attack the target. This move can be used on the target regardless of its Abilities." + }, + "tearfulLook": { + "name": "Tearful Look", + "effect": "The user gets teary eyed to make the target lose its combative spirit. This lowers the target's Attack and Sp. Atk stats." + }, + "zingZap": { + "name": "Zing Zap", + "effect": "A strong electric blast crashes down on the target, giving it an electric shock. This may also make the target flinch." + }, + "naturesMadness": { + "name": "Nature's Madness", + "effect": "The user hits the target with the force of nature. It halves the target's HP." + }, + "multiAttack": { + "name": "Multi-Attack", + "effect": "Cloaking itself in high energy, the user slams into the target. The memory held determines the move's type." + }, + "tenMillionVoltThunderbolt": { + "name": "10,000,000 Volt Thunderbolt", + "effect": "The user, Pikachu wearing a cap, powers up a jolt of electricity using its Z-Power and unleashes it. Critical hits land more easily." + }, + "mindBlown": { + "name": "Mind Blown", + "effect": "The user attacks everything around it by causing its own head to explode. This also damages the user." + }, + "plasmaFists": { + "name": "Plasma Fists", + "effect": "The user attacks with electrically charged fists. This move changes Normal-type moves to Electric-type moves." + }, + "photonGeyser": { + "name": "Photon Geyser", + "effect": "The user attacks a target with a pillar of light. This move inflicts Attack or Sp. Atk damage—whichever stat is higher for the user." + }, + "lightThatBurnsTheSky": { + "name": "Light That Burns the Sky", + "effect": "This attack inflicts Attack or Sp. Atk damage—whichever stat is higher for the user, Necrozma. This move ignores the target's Ability." + }, + "searingSunrazeSmash": { + "name": "Searing Sunraze Smash", + "effect": "After obtaining Z-Power, the user, Solgaleo, attacks the target with full force. This move can ignore the effect of the target's Ability." + }, + "menacingMoonrazeMaelstrom": { + "name": "Menacing Moonraze Maelstrom", + "effect": "After obtaining Z-Power, the user, Lunala, attacks the target with full force. This move can ignore the effect of the target's Ability." + }, + "letsSnuggleForever": { + "name": "Let's Snuggle Forever", + "effect": "After obtaining Z-Power, the user, Mimikyu, punches the target with full force." + }, + "splinteredStormshards": { + "name": "Splintered Stormshards", + "effect": "After obtaining Z-Power, the user, Lycanroc, attacks the target with full force. This move negates the effect on the battlefield." + }, + "clangorousSoulblaze": { + "name": "Clangorous Soulblaze", + "effect": "After obtaining Z-Power, the user, Kommo-o, attacks the opposing Pokémon with full force. This move boosts the user's stats." + }, + "zippyZap": { + "name": "Zippy Zap", + "effect": "The user attacks the target with bursts of electricity at high speed. This move always goes first and results in a critical hit." + }, + "splishySplash": { + "name": "Splishy Splash", + "effect": "The user charges a huge wave with electricity and hits the opposing Pokémon with the wave. This may also leave the opposing Pokémon with paralysis." + }, + "floatyFall": { + "name": "Floaty Fall", + "effect": "The user floats in the air, and then dives at a steep angle to attack the target. This may also make the target flinch." + }, + "pikaPapow": { + "name": "Pika Papow", + "effect": "The more Pikachu loves its Trainer, the greater the move's power. It never misses." + }, + "bouncyBubble": { + "name": "Bouncy Bubble", + "effect": "The user attacks by shooting water bubbles at the target. It then absorbs water and restores its HP by the damage taken by the target." + }, + "buzzyBuzz": { + "name": "Buzzy Buzz", + "effect": "The user shoots a jolt of electricity to attack the target. This also leaves the target with paralysis." + }, + "sizzlySlide": { + "name": "Sizzly Slide", + "effect": "The user cloaks itself in fire and charges at the target. This also leaves the target with a burn." + }, + "glitzyGlow": { + "name": "Glitzy Glow", + "effect": "The user bombards the target with telekinetic force. A wondrous wall of light is put up to weaken the power of the opposing Pokémon's special moves." + }, + "baddyBad": { + "name": "Baddy Bad", + "effect": "The user acts bad and attacks the target. A wondrous wall of light is put up to weaken the power of the opposing Pokémon's physical moves." + }, + "sappySeed": { + "name": "Sappy Seed", + "effect": "The user grows a gigantic stalk that scatters seeds to attack the target. The seeds drain the target's HP every turn." + }, + "freezyFrost": { + "name": "Freezy Frost", + "effect": "The user attacks with a crystal made of cold frozen haze. It eliminates every stat change among all the Pokémon engaged in battle." + }, + "sparklySwirl": { + "name": "Sparkly Swirl", + "effect": "The user attacks the target by wrapping it with a whirlwind of an overpowering scent. This also heals all status conditions of the user's party." + }, + "veeveeVolley": { + "name": "Veevee Volley", + "effect": "The more Eevee loves its Trainer, the greater the move's power. It never misses." + }, + "doubleIronBash": { + "name": "Double Iron Bash", + "effect": "The user rotates, centering the hex nut in its chest, and then strikes with its arms twice in a row. This may also make the target flinch." + }, + "maxGuard": { + "name": "Max Guard", + "effect": "This move enables the user to protect itself from all attacks. Its chance of failing rises if it is used in succession." + }, + "dynamaxCannon": { + "name": "Dynamax Cannon", + "effect": "The user unleashes a strong beam from its core. Deals up to twice the damage if the target is overly leveled." + }, + "snipeShot": { + "name": "Snipe Shot", + "effect": "The user ignores the effects of opposing Pokémon's moves and Abilities that draw in moves, allowing this move to hit the chosen target." + }, + "jawLock": { + "name": "Jaw Lock", + "effect": "This move prevents the user and the target from switching out until either of them faints. The effect goes away if either of the Pokémon leaves the field." + }, + "stuffCheeks": { + "name": "Stuff Cheeks", + "effect": "The user eats its held Berry, then sharply raises its Defense stat." + }, + "noRetreat": { + "name": "No Retreat", + "effect": "This move raises all the user's stats but prevents the user from switching out or fleeing." + }, + "tarShot": { + "name": "Tar Shot", + "effect": "The user pours sticky tar over the target, lowering the target's Speed stat. The target becomes weaker to Fire-type moves." + }, + "magicPowder": { + "name": "Magic Powder", + "effect": "The user scatters a cloud of magic powder that changes the target to Psychic type." + }, + "dragonDarts": { + "name": "Dragon Darts", + "effect": "The user attacks twice using Dreepy. If there are two targets, this move hits each target once." + }, + "teatime": { + "name": "Teatime", + "effect": "The user has teatime with all the Pokémon in the battle. Each Pokémon eats its held Berry." + }, + "octolock": { + "name": "Octolock", + "effect": "The user locks the target in and prevents it from fleeing. This move also lowers the target's Defense and Sp. Def every turn." + }, + "boltBeak": { + "name": "Bolt Beak", + "effect": "The user stabs the target with its electrified beak. If the user attacks before the target, the power of this move is doubled." + }, + "fishiousRend": { + "name": "Fishious Rend", + "effect": "The user rends the target with its hard gills. If the user attacks before the target, the power of this move is doubled." + }, + "courtChange": { + "name": "Court Change", + "effect": "With its mysterious power, the user swaps the effects on either side of the field." + }, + "maxFlare": { + "name": "Max Flare", + "effect": "This is a Fire-type attack Dynamax Pokémon use. The user intensifies the sun for five turns." + }, + "maxFlutterby": { + "name": "Max Flutterby", + "effect": "This is a Bug-type attack Dynamax Pokémon use. This lowers the target's Sp. Atk stat." + }, + "maxLightning": { + "name": "Max Lightning", + "effect": "This is an Electric-type attack Dynamax Pokémon use. The user turns the ground into Electric Terrain for five turns." + }, + "maxStrike": { + "name": "Max Strike", + "effect": "This is a Normal-type attack Dynamax Pokémon use. This lowers the target's Speed stat." + }, + "maxKnuckle": { + "name": "Max Knuckle", + "effect": "This is a Fighting-type attack Dynamax Pokémon use. This raises ally Pokémon's Attack stats." + }, + "maxPhantasm": { + "name": "Max Phantasm", + "effect": "This is a Ghost-type attack Dynamax Pokémon use. This lowers the target's Defense stat." + }, + "maxHailstorm": { + "name": "Max Hailstorm", + "effect": "This is an Ice-type attack Dynamax Pokémon use. The user summons a hailstorm lasting five turns." + }, + "maxOoze": { + "name": "Max Ooze", + "effect": "This is a Poison-type attack Dynamax Pokémon use. This raises ally Pokémon's Sp. Atk stats." + }, + "maxGeyser": { + "name": "Max Geyser", + "effect": "This is a Water-type attack Dynamax Pokémon use. The user summons a heavy rain that falls for five turns." + }, + "maxAirstream": { + "name": "Max Airstream", + "effect": "This is a Flying-type attack Dynamax Pokémon use. This raises ally Pokémon's Speed stats." + }, + "maxStarfall": { + "name": "Max Starfall", + "effect": "This is a Fairy-type attack Dynamax Pokémon use. The user turns the ground into Misty Terrain for five turns." + }, + "maxWyrmwind": { + "name": "Max Wyrmwind", + "effect": "This is a Dragon-type attack Dynamax Pokémon use. This lowers the target's Attack stat." + }, + "maxMindstorm": { + "name": "Max Mindstorm", + "effect": "This is a Psychic-type attack Dynamax Pokémon use. The user turns the ground into Psychic Terrain for five turns." + }, + "maxRockfall": { + "name": "Max Rockfall", + "effect": "This is a Rock-type attack Dynamax Pokémon use. The user summons a sandstorm lasting five turns." + }, + "maxQuake": { + "name": "Max Quake", + "effect": "This is a Ground-type attack Dynamax Pokémon use. This raises ally Pokémon's Sp. Def stats." + }, + "maxDarkness": { + "name": "Max Darkness", + "effect": "This is a Dark-type attack Dynamax Pokémon use. This lowers the target's Sp. Def stat." + }, + "maxOvergrowth": { + "name": "Max Overgrowth", + "effect": "This is a Grass-type attack Dynamax Pokémon use. The user turns the ground into Grassy Terrain for five turns." + }, + "maxSteelspike": { + "name": "Max Steelspike", + "effect": "This is a Steel-type attack Dynamax Pokémon use. This raises ally Pokémon's Defense stats." + }, + "clangorousSoul": { + "name": "Clangorous Soul", + "effect": "The user raises all its stats by using some of its HP." + }, + "bodyPress": { + "name": "Body Press", + "effect": "The user attacks by slamming its body into the target. The higher the user's Defense, the more damage it can inflict on the target." + }, + "decorate": { + "name": "Decorate", + "effect": "The user sharply raises the target's Attack and Sp. Atk stats by decorating the target." + }, + "drumBeating": { + "name": "Drum Beating", + "effect": "The user plays its drum, controlling the drum's roots to attack the target. This also lowers the target's Speed stat." + }, + "snapTrap": { + "name": "Snap Trap", + "effect": "The user snares the target in a snap trap for four to five turns." + }, + "pyroBall": { + "name": "Pyro Ball", + "effect": "The user attacks by igniting a small stone and launching it as a fiery ball at the target. This may also leave the target with a burn." + }, + "behemothBlade": { + "name": "Behemoth Blade", + "effect": "The user wields a large, powerful sword using its whole body and cuts the target in a vigorous attack." + }, + "behemothBash": { + "name": "Behemoth Bash", + "effect": "The user's body becomes a firm shield and slams into the target fiercely." + }, + "auraWheel": { + "name": "Aura Wheel", + "effect": "Morpeko attacks and raises its Speed with the energy stored in its cheeks. This move's type changes depending on the user's form." + }, + "breakingSwipe": { + "name": "Breaking Swipe", + "effect": "The user swings its tough tail wildly and attacks opposing Pokémon. This also lowers their Attack stats." + }, + "branchPoke": { + "name": "Branch Poke", + "effect": "The user attacks the target by poking it with a sharply pointed branch." + }, + "overdrive": { + "name": "Overdrive", + "effect": "The user attacks opposing Pokémon by twanging a guitar or bass guitar, causing a huge echo and strong vibration." + }, + "appleAcid": { + "name": "Apple Acid", + "effect": "The user attacks the target with an acidic liquid created from tart apples. This also lowers the target's Sp. Def stat." + }, + "gravApple": { + "name": "Grav Apple", + "effect": "The user inflicts damage by dropping an apple from high above. This also lowers the target's Defense stat." + }, + "spiritBreak": { + "name": "Spirit Break", + "effect": "The user attacks the target with so much force that it could break the target's spirit. This also lowers the target's Sp. Atk stat." + }, + "strangeSteam": { + "name": "Strange Steam", + "effect": "The user attacks the target by emitting steam. This may also confuse the target." + }, + "lifeDew": { + "name": "Life Dew", + "effect": "The user scatters mysterious water around and restores the HP of itself and its ally Pokémon in the battle." + }, + "obstruct": { + "name": "Obstruct", + "effect": "This move enables the user to protect itself from all attacks. Its chance of failing rises if it is used in succession. Direct contact harshly lowers the attacker's Defense stat." + }, + "falseSurrender": { + "name": "False Surrender", + "effect": "The user pretends to bow its head, but then it stabs the target with its disheveled hair. This attack never misses." + }, + "meteorAssault": { + "name": "Meteor Assault", + "effect": "The user attacks wildly with its thick leek. The user can't move on the next turn, because the force of this move makes it stagger." + }, + "eternabeam": { + "name": "Eternabeam", + "effect": "This is Eternatus's most powerful attack in its original form. The user can't move on the next turn." + }, + "steelBeam": { + "name": "Steel Beam", + "effect": "The user fires a beam of steel that it collected from its entire body. This also damages the user." + }, + "expandingForce": { + "name": "Expanding Force", + "effect": "The user attacks the target with its psychic power. This move's power goes up and damages all opposing Pokémon on Psychic Terrain." + }, + "steelRoller": { + "name": "Steel Roller", + "effect": "The user attacks while destroying the terrain. This move fails when the ground hasn't turned into a terrain." + }, + "scaleShot": { + "name": "Scale Shot", + "effect": "The user attacks by shooting scales two to five times in a row. This move boosts the user's Speed stat but lowers its Defense stat." + }, + "meteorBeam": { + "name": "Meteor Beam", + "effect": "In this two-turn attack, the user gathers space power and boosts its Sp. Atk stat, then attacks the target on the next turn." + }, + "shellSideArm": { + "name": "Shell Side Arm", + "effect": "This move inflicts physical or special damage, whichever will be more effective. This may also poison the target." + }, + "mistyExplosion": { + "name": "Misty Explosion", + "effect": "The user attacks everything around it and faints upon using this move. This move's power is increased on Misty Terrain." + }, + "grassyGlide": { + "name": "Grassy Glide", + "effect": "Gliding on the ground, the user attacks the target. This move always goes first on Grassy Terrain." + }, + "risingVoltage": { + "name": "Rising Voltage", + "effect": "The user attacks with electric voltage rising from the ground. This move's power doubles when the target is on Electric Terrain." + }, + "terrainPulse": { + "name": "Terrain Pulse", + "effect": "The user utilizes the power of the terrain to attack. This move's type and power changes depending on the terrain when it's used." + }, + "skitterSmack": { + "name": "Skitter Smack", + "effect": "The user skitters behind the target to attack. This also lowers the target's Sp. Atk stat." + }, + "burningJealousy": { + "name": "Burning Jealousy", + "effect": "The user attacks with energy from jealousy. This leaves all opposing Pokémon that have had their stats boosted during the turn with a burn." + }, + "lashOut": { + "name": "Lash Out", + "effect": "The user lashes out to vent its frustration toward the target. If the user's stats were lowered during this turn, the power of this move is doubled." + }, + "poltergeist": { + "name": "Poltergeist", + "effect": "The user attacks the target by controlling the target's item. The move fails if the target doesn't have an item." + }, + "corrosiveGas": { + "name": "Corrosive Gas", + "effect": "The user surrounds everything around it with highly acidic gas and melts away items they hold." + }, + "coaching": { + "name": "Coaching", + "effect": "The user properly coaches its ally Pokémon, boosting their Attack and Defense stats." + }, + "flipTurn": { + "name": "Flip Turn", + "effect": "After making its attack, the user rushes back to switch places with a party Pokémon in waiting." + }, + "tripleAxel": { + "name": "Triple Axel", + "effect": "A consecutive three-kick attack that becomes more powerful with each successful hit." + }, + "dualWingbeat": { + "name": "Dual Wingbeat", + "effect": "The user slams the target with its wings. The target is hit twice in a row." + }, + "scorchingSands": { + "name": "Scorching Sands", + "effect": "The user throws scorching sand at the target to attack. This may also leave the target with a burn." + }, + "jungleHealing": { + "name": "Jungle Healing", + "effect": "The user becomes one with the jungle, restoring HP and healing any status conditions of itself and its ally Pokémon in battle." + }, + "wickedBlow": { + "name": "Wicked Blow", + "effect": "The user, having mastered the Dark style, strikes the target with a fierce blow. This attack always results in a critical hit." + }, + "surgingStrikes": { + "name": "Surging Strikes", + "effect": "The user, having mastered the Water style, strikes the target with a flowing motion three times in a row. This attack always results in a critical hit." + }, + "thunderCage": { + "name": "Thunder Cage", + "effect": "The user traps the target in a cage of sparking electricity for four to five turns." + }, + "dragonEnergy": { + "name": "Dragon Energy", + "effect": "Converting its life-force into power, the user attacks opposing Pokémon. The lower the user's HP, the lower the move's power." + }, + "freezingGlare": { + "name": "Freezing Glare", + "effect": "The user shoots its psychic power from its eyes to attack. This may also leave the target frozen." + }, + "fieryWrath": { + "name": "Fiery Wrath", + "effect": "The user transforms its wrath into a fire-like aura to attack. This may also make opposing Pokémon flinch." + }, + "thunderousKick": { + "name": "Thunderous Kick", + "effect": "The user overwhelms the target with lightning-like movement before delivering a kick. This also lowers the target's Defense stat." + }, + "glacialLance": { + "name": "Glacial Lance", + "effect": "The user attacks by hurling a blizzard-cloaked icicle lance at opposing Pokémon." + }, + "astralBarrage": { + "name": "Astral Barrage", + "effect": "The user attacks by sending a frightful amount of small ghosts at opposing Pokémon." + }, + "eerieSpell": { + "name": "Eerie Spell", + "effect": "The user attacks with its tremendous psychic power. This also removes 3 PP from the target's last move." + }, + "direClaw": { + "name": "Dire Claw", + "effect": "The user lashes out at the target with ruinous claws. This may also leave the target poisoned, paralyzed, or asleep." + }, + "psyshieldBash": { + "name": "Psyshield Bash", + "effect": "Cloaking itself in psychic energy, the user slams into the target. This also boosts the user's Defense stat." + }, + "powerShift": { + "name": "Power Shift", + "effect": "The user swaps its Attack and Defense stats." + }, + "stoneAxe": { + "name": "Stone Axe", + "effect": "The user swings its stone axes at the target. Stone splinters left behind by this attack float around the target." + }, + "springtideStorm": { + "name": "Springtide Storm", + "effect": "The user attacks by wrapping opposing Pokémon in fierce winds brimming with love and hate. This may also lower their Attack stats." + }, + "mysticalPower": { + "name": "Mystical Power", + "effect": "The user attacks by emitting a mysterious power. This also boosts the user's Sp. Atk stat." + }, + "ragingFury": { + "name": "Raging Fury", + "effect": "The user rampages around spewing flames for two to three turns. The user then becomes confused." + }, + "waveCrash": { + "name": "Wave Crash", + "effect": "The user shrouds itself in water and slams into the target with its whole body to inflict damage. This also damages the user quite a lot." + }, + "chloroblast": { + "name": "Chloroblast", + "effect": "The user launches its amassed chlorophyll to inflict damage on the target. This also damages the user." + }, + "mountainGale": { + "name": "Mountain Gale", + "effect": "The user hurls giant chunks of ice at the target to inflict damage. This may also make the target flinch." + }, + "victoryDance": { + "name": "Victory Dance", + "effect": "The user performs an intense dance to usher in victory, boosting its Attack, Defense, and Speed stats." + }, + "headlongRush": { + "name": "Headlong Rush", + "effect": "The user smashes into the target in a full-body tackle. This also lowers the user's Defense and Sp. Def stats." + }, + "barbBarrage": { + "name": "Barb Barrage", + "effect": "The user launches countless toxic barbs to inflict damage. This may also poison the target. This move's power is doubled if the target is already poisoned." + }, + "esperWing": { + "name": "Esper Wing", + "effect": "The user slashes the target with aura-enriched wings. This also boosts the user's Speed stat. This move has a heightened chance of landing a critical hit." + }, + "bitterMalice": { + "name": "Bitter Malice", + "effect": "The user attacks the target with spine-chilling resentment. This also lowers the target's Attack stat." + }, + "shelter": { + "name": "Shelter", + "effect": "The user makes its skin as hard as an iron shield, sharply boosting its Defense stat." + }, + "tripleArrows": { + "name": "Triple Arrows", + "effect": "The user kicks, then fires three arrows. This move has a heightened chance of landing a critical hit and may also lower the target's Defense stat or make it flinch." + }, + "infernalParade": { + "name": "Infernal Parade", + "effect": "The user attacks with myriad fireballs. This may also leave the target with a burn. This move's power is doubled if the target has a status condition." + }, + "ceaselessEdge": { + "name": "Ceaseless Edge", + "effect": "The user slashes its shell blade at the target. Shell splinters left behind by this attack remain scattered under the target as spikes." + }, + "bleakwindStorm": { + "name": "Bleakwind Storm", + "effect": "The user attacks with savagely cold winds that cause both body and spirit to tremble. This may also lower the Speed stats of opposing Pokémon." + }, + "wildboltStorm": { + "name": "Wildbolt Storm", + "effect": "The user summons a thunderous tempest and savagely attacks with lightning and wind. This may also leave opposing Pokémon with paralysis." + }, + "sandsearStorm": { + "name": "Sandsear Storm", + "effect": "The user attacks by wrapping opposing Pokémon in fierce winds and searingly hot sand. This may also leave them with a burn." + }, + "lunarBlessing": { + "name": "Lunar Blessing", + "effect": "The user receives a blessing from the crescent moon, restoring HP and curing status conditions for itself and its ally Pokémon currently in the battle." + }, + "takeHeart": { + "name": "Take Heart", + "effect": "The user lifts its spirits, curing its own status conditions and boosting its Sp. Atk and Sp. Def stats." + }, + "gMaxWildfire": { + "name": "G-Max Wildfire", + "effect": "A Fire-type attack that Gigantamax Charizard use. This move continues to deal damage to opponents for four turns." + }, + "gMaxBefuddle": { + "name": "G-Max Befuddle", + "effect": "A Bug-type attack that Gigantamax Butterfree use. This move inflicts the poisoned, paralyzed, or asleep status condition on opponents." + }, + "gMaxVoltCrash": { + "name": "G-Max Volt Crash", + "effect": "An Electric-type attack that Gigantamax Pikachu use. This move paralyzes opponents." + }, + "gMaxGoldRush": { + "name": "G-Max Gold Rush", + "effect": "A Normal-type attack that Gigantamax Meowth use. This move confuses opponents and also earns extra money." + }, + "gMaxChiStrike": { + "name": "G-Max Chi Strike", + "effect": "A Fighting-type attack that Gigantamax Machamp use. This move raises the chance of critical hits." + }, + "gMaxTerror": { + "name": "G-Max Terror", + "effect": "A Ghost-type attack that Gigantamax Gengar use. This Pokémon steps on the opposing Pokémon's shadow to prevent them from escaping." + }, + "gMaxResonance": { + "name": "G-Max Resonance", + "effect": "An Ice-type attack that Gigantamax Lapras use. This move reduces the damage received for five turns." + }, + "gMaxCuddle": { + "name": "G-Max Cuddle", + "effect": "A Normal-type attack that Gigantamax Eevee use. This move infatuates opponents." + }, + "gMaxReplenish": { + "name": "G-Max Replenish", + "effect": "A Normal-type attack that Gigantamax Snorlax use. This move restores Berries that have been eaten." + }, + "gMaxMalodor": { + "name": "G-Max Malodor", + "effect": "A Poison-type attack that Gigantamax Garbodor use. This move poisons opponents." + }, + "gMaxStonesurge": { + "name": "G-Max Stonesurge", + "effect": "A Water-type attack that Gigantamax Drednaw use. This move scatters sharp rocks around the field." + }, + "gMaxWindRage": { + "name": "G-Max Wind Rage", + "effect": "A Flying-type attack that Gigantamax Corviknight use. This move removes the effects of moves like Reflect and Light Screen." + }, + "gMaxStunShock": { + "name": "G-Max Stun Shock", + "effect": "An Electric-type attack that Gigantamax Toxtricity use. This move poisons or paralyzes opponents." + }, + "gMaxFinale": { + "name": "G-Max Finale", + "effect": "A Fairy-type attack that Gigantamax Alcremie use. This move heals the HP of allies." + }, + "gMaxDepletion": { + "name": "G-Max Depletion", + "effect": "A Dragon-type attack that Gigantamax Duraludon use. Reduces the PP of the last move used." + }, + "gMaxGravitas": { + "name": "G-Max Gravitas", + "effect": "A Psychic-type attack that Gigantamax Orbeetle use. This move changes gravity for five turns." + }, + "gMaxVolcalith": { + "name": "G-Max Volcalith", + "effect": "A Rock-type attack that Gigantamax Coalossal use. This move continues to deal damage to opponents for four turns." + }, + "gMaxSandblast": { + "name": "G-Max Sandblast", + "effect": "A Ground-type attack that Gigantamax Sandaconda use. Opponents are trapped in a raging sandstorm for four to five turns." + }, + "gMaxSnooze": { + "name": "G-Max Snooze", + "effect": "A Dark-type attack that Gigantamax Grimmsnarl use. The user lets loose a huge yawn that lulls the targets into falling asleep on the next turn." + }, + "gMaxTartness": { + "name": "G-Max Tartness", + "effect": "A Grass-type attack that Gigantamax Flapple use. This move reduces the opponents' evasiveness." + }, + "gMaxSweetness": { + "name": "G-Max Sweetness", + "effect": "A Grass-type attack that Gigantamax Appletun use. This move heals the status conditions of allies." + }, + "gMaxSmite": { + "name": "G-Max Smite", + "effect": "A Fairy-type attack that Gigantamax Hatterene use. This move confuses opponents." + }, + "gMaxSteelsurge": { + "name": "G-Max Steelsurge", + "effect": "A Steel-type attack that Gigantamax Copperajah use. This move scatters sharp spikes around the field." + }, + "gMaxMeltdown": { + "name": "G-Max Meltdown", + "effect": "A Steel-type attack that Gigantamax Melmetal use. This move makes opponents incapable of using the same move twice in a row." + }, + "gMaxFoamBurst": { + "name": "G-Max Foam Burst", + "effect": "A Water-type attack that Gigantamax Kingler use. This move harshly lowers the Speed of opponents." + }, + "gMaxCentiferno": { + "name": "G-Max Centiferno", + "effect": "A Fire-type attack that Gigantamax Centiskorch use. This move traps opponents in flames for four to five turns." + }, + "gMaxVineLash": { + "name": "G-Max Vine Lash", + "effect": "A Grass-type attack that Gigantamax Venusaur use. This move continues to deal damage to opponents for four turns." + }, + "gMaxCannonade": { + "name": "G-Max Cannonade", + "effect": "A Water-type attack that Gigantamax Blastoise use. This move continues to deal damage to opponents for four turns." + }, + "gMaxDrumSolo": { + "name": "G-Max Drum Solo", + "effect": "A Grass-type attack that Gigantamax Rillaboom use. This move can be used on the target regardless of its Abilities." + }, + "gMaxFireball": { + "name": "G-Max Fireball", + "effect": "A Fire-type attack that Gigantamax Cinderace use. This move can be used on the target regardless of its Abilities." + }, + "gMaxHydrosnipe": { + "name": "G-Max Hydrosnipe", + "effect": "A Water-type attack that Gigantamax Inteleon use. This move can be used on the target regardless of its Abilities." + }, + "gMaxOneBlow": { + "name": "G-Max One Blow", + "effect": "A Dark-type attack that Gigantamax Urshifu use. This single-strike move can ignore Max Guard." + }, + "gMaxRapidFlow": { + "name": "G-Max Rapid Flow", + "effect": "A Water-type attack that Gigantamax Urshifu use. This rapid-strike move can ignore Max Guard." + }, + "teraBlast": { + "name": "Tera Blast", + "effect": "If the user has Terastallized, it unleashes energy of its Tera Type. This move inflicts damage using the Attack or Sp. Atk stat-whichever is higher for the user." + }, + "silkTrap": { + "name": "Silk Trap", + "effect": "The user spins a silken trap, protecting itself from damage while lowering the Speed stat of any attacker that makes direct contact." + }, + "axeKick": { + "name": "Axe Kick", + "effect": "The user attacks by kicking up into the air and slamming its heel down upon the target. This may also confuse the target. If it misses, the user takes damage instead." + }, + "lastRespects": { + "name": "Last Respects", + "effect": "The user attacks to avenge its allies. The more defeated allies there are in the user's party, the greater the move's power." + }, + "luminaCrash": { + "name": "Lumina Crash", + "effect": "The user attacks by unleashing a peculiar light that even affects the mind. This also harshly lowers the target's Sp. Def stat." + }, + "orderUp": { + "name": "Order Up", + "effect": "The user attacks with elegant poise. If the user has a Tatsugiri in its mouth, this move boosts one of the user's stats based on the Tatsugiri's form." + }, + "jetPunch": { + "name": "Jet Punch", + "effect": "The user summons a torrent around its fist and punches at blinding speed. This move always goes first." + }, + "spicyExtract": { + "name": "Spicy Extract", + "effect": "The user emits an incredibly spicy extract, sharply boosting the target's Attack stat and harshly lowering the target's Defense stat." + }, + "spinOut": { + "name": "Spin Out", + "effect": "The user spins furiously by straining its legs, inflicting damage on the target. This also harshly lowers the user's Speed stat." + }, + "populationBomb": { + "name": "Population Bomb", + "effect": "The user's fellows gather in droves to perform a combo attack that hits the target one to ten times in a row." + }, + "iceSpinner": { + "name": "Ice Spinner", + "effect": "The user covers its feet in thin ice and twirls around, slamming into the target. This move's spinning motion also destroys the terrain." + }, + "glaiveRush": { + "name": "Glaive Rush", + "effect": "The user throws its entire body into a reckless charge. After this move is used, attacks on the user cannot miss and will inflict double damage until the user's next turn." + }, + "revivalBlessing": { + "name": "Revival Blessing", + "effect": "The user bestows a loving blessing, reviving a party Pokémon that has fainted and restoring half that Pokémon's max HP." + }, + "saltCure": { + "name": "Salt Cure", + "effect": "The user salt cures the target, inflicting damage every turn. Steel and Water types are more strongly affected by this move." + }, + "tripleDive": { + "name": "Triple Dive", + "effect": "The user performs a perfectly timed triple dive, hitting the target with splashes of water three times in a row." + }, + "mortalSpin": { + "name": "Mortal Spin", + "effect": "The user performs a spin attack that can also eliminate the effects of such moves as Bind, Wrap, and Leech Seed. This also poisons opposing Pokémon." + }, + "doodle": { + "name": "Doodle", + "effect": "The user captures the very essence of the target in a sketch. This changes the Abilities of the user and its ally Pokémon to that of the target." + }, + "filletAway": { + "name": "Fillet Away", + "effect": "The user sharply boosts its Attack, Sp. Atk, and Speed stats by using its own HP." + }, + "kowtowCleave": { + "name": "Kowtow Cleave", + "effect": "The user slashes at the target after kowtowing to make the target let down its guard. This attack never misses." + }, + "flowerTrick": { + "name": "Flower Trick", + "effect": "The user throws a rigged bouquet of flowers at the target. This attack never misses and always lands a critical hit." + }, + "torchSong": { + "name": "Torch Song", + "effect": "The user blows out raging flames as if singing a song, scorching the target. This also boosts the user's Sp. Atk stat." + }, + "aquaStep": { + "name": "Aqua Step", + "effect": "The user toys with the target and attacks it using light and fluid dance steps. This also boosts the user's Speed stat." + }, + "ragingBull": { + "name": "Raging Bull", + "effect": "The user performs a tackle like a raging bull. This move's type depends on the user's form. It can also break barriers, such as Light Screen and Reflect." + }, + "makeItRain": { + "name": "Make It Rain", + "effect": "The user attacks by throwing out a mass of coins. This also lowers the user's Sp. Atk stat. Money is earned after the battle." + }, + "psyblade": { + "name": "Psyblade", + "effect": "The user rends the target with an ethereal blade. This move's power is boosted by 50 percent if the user is on Electric Terrain." + }, + "hydroSteam": { + "name": "Hydro Steam", + "effect": "The user blasts the target with boiling-hot water. This move's power is not lowered in harsh sunlight but rather boosted by 50 percent." + }, + "ruination": { + "name": "Ruination", + "effect": "The user summons a ruinous disaster. This cuts the target's HP in half." + }, + "collisionCourse": { + "name": "Collision Course", + "effect": "The user transforms and crashes to the ground, causing a massive prehistoric explosion. This move's power is boosted more than usual if it's a supereffective hit." + }, + "electroDrift": { + "name": "Electro Drift", + "effect": "The user races forward at ultrafast speeds, piercing its target with futuristic electricity. This move's power is boosted more than usual if it's a supereffective hit." + }, + "shedTail": { + "name": "Shed Tail", + "effect": "The user creates a substitute for itself using its own HP before switching places with a party Pokémon in waiting." + }, + "chillyReception": { + "name": "Chilly Reception", + "effect": "The user tells a chillingly bad joke before switching places with a party Pokémon in waiting. This summons a snowstorm lasting five turns." + }, + "tidyUp": { + "name": "Tidy Up", + "effect": "The user tidies up and removes the effects of Spikes, Stealth Rock, Sticky Web, Toxic Spikes, and Substitute. This also boosts the user's Attack and Speed stats." + }, + "snowscape": { + "name": "Snowscape", + "effect": "The user summons a snowstorm lasting five turns. This boosts the Defense stats of Ice types." + }, + "pounce": { + "name": "Pounce", + "effect": "The user attacks by pouncing on the target. This also lowers the target's Speed stat." + }, + "trailblaze": { + "name": "Trailblaze", + "effect": "The user attacks suddenly as if leaping out from tall grass. The user's nimble footwork boosts its Speed stat." + }, + "chillingWater": { + "name": "Chilling Water", + "effect": "The user attacks the target by showering it with water that's so cold it saps the target's power. This also lowers the target's Attack stat." + }, + "hyperDrill": { + "name": "Hyper Drill", + "effect": "The user spins the pointed part of its body at high speed to pierce the target. This attack can hit a target using a move such as Protect or Detect." + }, + "twinBeam": { + "name": "Twin Beam", + "effect": "The user shoots mystical beams from its eyes to inflict damage. The target is hit twice in a row." + }, + "rageFist": { + "name": "Rage Fist", + "effect": "The user converts its rage into energy to attack. The more times the user has been hit by attacks, the greater the move's power." + }, + "armorCannon": { + "name": "Armor Cannon", + "effect": "The user shoots its own armor out as blazing projectiles. This also lowers the user's Defense and Sp. Def stats." + }, + "bitterBlade": { + "name": "Bitter Blade", + "effect": "The user focuses its bitter feelings toward the world of the living into a slashing attack. The user's HP is restored by up to half the damage taken by the target." + }, + "doubleShock": { + "name": "Double Shock", + "effect": "The user discharges all the electricity from its body to perform a high-damage attack. After using this move, the user will no longer be Electric type." + }, + "gigatonHammer": { + "name": "Gigaton Hammer", + "effect": "The user swings its whole body around to attack with its huge hammer. This move can't be used twice in a row." + }, + "comeuppance": { + "name": "Comeuppance", + "effect": "The user retaliates with much greater force against the opponent that last inflicted damage on it." + }, + "aquaCutter": { + "name": "Aqua Cutter", + "effect": "The user expels pressurized water to cut at the target like a blade. This move has a heightened chance of landing a critical hit." + }, + "blazingTorque": { + "name": "Blazing Torque", + "effect": "The user revs their blazing engine into the target. This may also leave the target with a burn." + }, + "wickedTorque": { + "name": "Wicked Torque", + "effect": "The user revs their engine into the target with malicious intent. This may put the target to sleep." + }, + "noxiousTorque": { + "name": "Noxious Torque", + "effect": "The user revs their poisonous engine into the target. This may also poison the target." + }, + "combatTorque": { + "name": "Combat Torque", + "effect": "The user revs their engine forcefully into the target. This may also leave the target with paralysis." + }, + "magicalTorque": { + "name": "Magical Torque", + "effect": "The user revs their fae-like engine into the target. This may also confuse the target." + }, + "bloodMoon": { + "name": "Blood Moon", + "effect": "The user unleashes the full brunt of its spirit from a full moon that shines as red as blood. This move can't be used twice in a row." + }, + "matchaGotcha": { + "name": "Matcha Gotcha", + "effect": "The user fires a blast of tea that it mixed. The user's HP is restored by up to half the damage taken by the target. This may also leave the target with a burn." + }, + "syrupBomb": { + "name": "Syrup Bomb", + "effect": "The user sets off an explosion of sticky candy syrup, which coats the target and causes the target's Speed stat to drop each turn for three turns." + }, + "ivyCudgel": { + "name": "Ivy Cudgel", + "effect": "The user strikes with an ivy-wrapped cudgel. This move's type changes depending on the mask worn by the user, and it has a heightened chance of landing a critical hit." + }, + "electroShot": { + "name": "Electro Shot", + "effect": "The user gathers electricity on the first turn, boosting its Sp. Atk stat, then fires a high-voltage shot on the next turn. The shot will be fired immediately in rain." + }, + "teraStarstorm": { + "name": "Tera Starstorm", + "effect": "With the power of its crystals, the user bombards and eliminates the target. When used by Terapagos in its Stellar Form, this move damages all opposing Pokémon." + }, + "fickleBeam": { + "name": "Fickle Beam", + "effect": "The user shoots a beam of light to inflict damage. Sometimes all the user's heads shoot beams in unison, doubling the move's power." + }, + "burningBulwark": { + "name": "Burning Bulwark", + "effect": "The user's intensely hot fur protects it from attacks and also burns any attacker that makes direct contact with it." + }, + "thunderclap": { + "name": "Thunderclap", + "effect": "This move enables the user to attack first with a jolt of electricity. This move fails if the target is not readying an attack." + }, + "mightyCleave": { + "name": "Mighty Cleave", + "effect": "The user wields the light that has accumulated atop its head to cleave the target. This move hits even if the target protects itself." + }, + "tachyonCutter": { + "name": "Tachyon Cutter", + "effect": "The user attacks by launching particle blades at the target twice in a row. This attack never misses." + }, + "hardPress": { + "name": "Hard Press", + "effect": "The target is crushed with an arm, a claw, or the like to inflict damage. The more HP the target has left, the greater the move's power." + }, + "dragonCheer": { + "name": "Dragon Cheer", + "effect": "The user raises its allies' morale with a draconic cry so that their future attacks have a heightened chance of landing critical hits. This rouses Dragon types more." + }, + "alluringVoice": { + "name": "Alluring Voice", + "effect": "The user attacks the target using its angelic voice. This also confuses the target if its stats have been boosted during the turn." + }, + "temperFlare": { + "name": "Temper Flare", + "effect": "Spurred by desperation, the user attacks the target. This move's power is doubled if the user's previous move failed." + }, + "supercellSlam": { + "name": "Supercell Slam", + "effect": "The user electrifies its body and drops onto the target to inflict damage. If this move misses, the user takes damage instead." + }, + "psychicNoise": { + "name": "Psychic Noise", + "effect": "The user attacks the target with unpleasant sound waves. For two turns, the target is prevented from recovering HP through moves, Abilities, or held items." + }, + "upperHand": { + "name": "Upper Hand", + "effect": "The user reacts to the target's movement and strikes with the heel of its palm, making the target flinch. This move fails if the target is not readying a priority move." + }, + "malignantChain": { + "name": "Malignant Chain", + "effect": "The user pours toxins into the target by wrapping them in a toxic, corrosive chain. This may also leave the target badly poisoned." + } +} diff --git a/src/locales/en/move.ts b/src/locales/en/move.ts deleted file mode 100644 index cec7c93ede5..00000000000 --- a/src/locales/en/move.ts +++ /dev/null @@ -1,3812 +0,0 @@ -import { MoveTranslationEntries } from "#app/interfaces/locales"; - -export const move: MoveTranslationEntries = { - "pound": { - name: "Pound", - effect: "The target is physically pounded with a long tail, a foreleg, or the like." - }, - "karateChop": { - name: "Karate Chop", - effect: "The target is attacked with a sharp chop. Critical hits land more easily." - }, - "doubleSlap": { - name: "Double Slap", - effect: "The target is slapped repeatedly, back and forth, two to five times in a row." - }, - "cometPunch": { - name: "Comet Punch", - effect: "The target is hit with a flurry of punches that strike two to five times in a row." - }, - "megaPunch": { - name: "Mega Punch", - effect: "The target is slugged by a punch thrown with muscle-packed power." - }, - "payDay": { - name: "Pay Day", - effect: "Numerous coins are hurled at the target to inflict damage. Money is earned after the battle." - }, - "firePunch": { - name: "Fire Punch", - effect: "The target is punched with a fiery fist. This may also leave the target with a burn." - }, - "icePunch": { - name: "Ice Punch", - effect: "The target is punched with an icy fist. This may also leave the target frozen." - }, - "thunderPunch": { - name: "Thunder Punch", - effect: "The target is punched with an electrified fist. This may also leave the target with paralysis." - }, - "scratch": { - name: "Scratch", - effect: "Hard, pointed, sharp claws rake the target to inflict damage." - }, - "viseGrip": { - name: "Vise Grip", - effect: "The target is gripped and squeezed from both sides to inflict damage." - }, - "guillotine": { - name: "Guillotine", - effect: "A vicious, tearing attack with big pincers. The target faints instantly if this attack hits." - }, - "razorWind": { - name: "Razor Wind", - effect: "In this two-turn attack, blades of wind hit opposing Pokémon on the second turn. Critical hits land more easily." - }, - "swordsDance": { - name: "Swords Dance", - effect: "A frenetic dance to uplift the fighting spirit. This sharply raises the user's Attack stat." - }, - "cut": { - name: "Cut", - effect: "The target is cut with a scythe or claw." - }, - "gust": { - name: "Gust", - effect: "A gust of wind is whipped up by wings and launched at the target to inflict damage." - }, - "wingAttack": { - name: "Wing Attack", - effect: "The target is struck with large, imposing wings spread wide to inflict damage." - }, - "whirlwind": { - name: "Whirlwind", - effect: "The target is blown away, and a different Pokémon is dragged out. In the wild, this ends a battle against a single Pokémon." - }, - "fly": { - name: "Fly", - effect: "The user flies up into the sky and then strikes its target on the next turn." - }, - "bind": { - name: "Bind", - effect: "Things such as long bodies or tentacles are used to bind and squeeze the target for four to five turns." - }, - "slam": { - name: "Slam", - effect: "The target is slammed with a long tail, vines, or the like to inflict damage." - }, - "vineWhip": { - name: "Vine Whip", - effect: "The target is struck with slender, whiplike vines to inflict damage." - }, - "stomp": { - name: "Stomp", - effect: "The target is stomped with a big foot. This may also make the target flinch." - }, - "doubleKick": { - name: "Double Kick", - effect: "The target is quickly kicked twice in succession using both feet." - }, - "megaKick": { - name: "Mega Kick", - effect: "The target is attacked by a kick launched with muscle-packed power." - }, - "jumpKick": { - name: "Jump Kick", - effect: "The user jumps up high, then strikes with a kick. If the kick misses, the user hurts itself." - }, - "rollingKick": { - name: "Rolling Kick", - effect: "The user lashes out with a quick, spinning kick. This may also make the target flinch." - }, - "sandAttack": { - name: "Sand Attack", - effect: "Sand is hurled in the target's face, reducing the target's accuracy." - }, - "headbutt": { - name: "Headbutt", - effect: "The user sticks out its head and attacks by charging straight into the target. This may also make the target flinch." - }, - "hornAttack": { - name: "Horn Attack", - effect: "The target is jabbed with a sharply pointed horn to inflict damage." - }, - "furyAttack": { - name: "Fury Attack", - effect: "The target is jabbed repeatedly with a horn or beak two to five times in a row." - }, - "hornDrill": { - name: "Horn Drill", - effect: "The user stabs the target with a horn that rotates like a drill. The target faints instantly if this attack hits." - }, - "tackle": { - name: "Tackle", - effect: "A physical attack in which the user charges and slams into the target with its whole body." - }, - "bodySlam": { - name: "Body Slam", - effect: "The user drops onto the target with its full body weight. This may also leave the target with paralysis." - }, - "wrap": { - name: "Wrap", - effect: "A long body, vines, or the like are used to wrap and squeeze the target for four to five turns." - }, - "takeDown": { - name: "Take Down", - effect: "A reckless, full-body charge attack for slamming into the target. This also damages the user a little." - }, - "thrash": { - name: "Thrash", - effect: "The user rampages and attacks for two to three turns. The user then becomes confused." - }, - "doubleEdge": { - name: "Double-Edge", - effect: "A reckless, life-risking tackle in which the user rushes the target. This also damages the user quite a lot." - }, - "tailWhip": { - name: "Tail Whip", - effect: "The user wags its tail cutely, making opposing Pokémon less wary and lowering their Defense stats." - }, - "poisonSting": { - name: "Poison Sting", - effect: "The user stabs the target with a poisonous stinger. This may also poison the target." - }, - "twineedle": { - name: "Twineedle", - effect: "The user damages the target twice in succession by jabbing it with two spikes. This may also poison the target." - }, - "pinMissile": { - name: "Pin Missile", - effect: "Sharp spikes are shot at the target in rapid succession. They hit two to five times in a row." - }, - "leer": { - name: "Leer", - effect: "The user gives opposing Pokémon an intimidating leer that lowers the Defense stat." - }, - "bite": { - name: "Bite", - effect: "The target is bitten with viciously sharp fangs. This may also make the target flinch." - }, - "growl": { - name: "Growl", - effect: "The user growls in an endearing way, making opposing Pokémon less wary. This lowers their Attack stats." - }, - "roar": { - name: "Roar", - effect: "The target is scared off, and a different Pokémon is dragged out. In the wild, this ends a battle against a single Pokémon." - }, - "sing": { - name: "Sing", - effect: "A soothing lullaby is sung in a calming voice that puts the target into a deep slumber." - }, - "supersonic": { - name: "Supersonic", - effect: "The user generates odd sound waves from its body that confuse the target." - }, - "sonicBoom": { - name: "Sonic Boom", - effect: "The target is hit with a destructive shock wave that always inflicts 20 HP damage." - }, - "disable": { - name: "Disable", - effect: "For four turns, this move prevents the target from using the move it last used." - }, - "acid": { - name: "Acid", - effect: "Opposing Pokémon are attacked with a spray of harsh acid. This may also lower their Sp. Def stats." - }, - "ember": { - name: "Ember", - effect: "The target is attacked with small flames. This may also leave the target with a burn." - }, - "flamethrower": { - name: "Flamethrower", - effect: "The target is scorched with an intense blast of fire. This may also leave the target with a burn." - }, - "mist": { - name: "Mist", - effect: "The user cloaks itself and its allies in a white mist that prevents any of their stats from being lowered for five turns." - }, - "waterGun": { - name: "Water Gun", - effect: "The target is blasted with a forceful shot of water." - }, - "hydroPump": { - name: "Hydro Pump", - effect: "The target is blasted by a huge volume of water launched under great pressure." - }, - "surf": { - name: "Surf", - effect: "The user attacks everything around it by swamping its surroundings with a giant wave." - }, - "iceBeam": { - name: "Ice Beam", - effect: "The target is struck with an icy-cold beam of energy. This may also leave the target frozen." - }, - "blizzard": { - name: "Blizzard", - effect: "A howling blizzard is summoned to strike opposing Pokémon. This may also leave the opposing Pokémon frozen." - }, - "psybeam": { - name: "Psybeam", - effect: "The target is attacked with a peculiar ray. This may also leave the target confused." - }, - "bubbleBeam": { - name: "Bubble Beam", - effect: "A spray of bubbles is forcefully ejected at the target. This may also lower the target's Speed stat." - }, - "auroraBeam": { - name: "Aurora Beam", - effect: "The target is hit with a rainbow-colored beam. This may also lower the target's Attack stat." - }, - "hyperBeam": { - name: "Hyper Beam", - effect: "The target is attacked with a powerful beam. The user can't move on the next turn." - }, - "peck": { - name: "Peck", - effect: "The target is jabbed with a sharply pointed beak or horn." - }, - "drillPeck": { - name: "Drill Peck", - effect: "A corkscrewing attack that strikes the target with a sharp beak acting as a drill." - }, - "submission": { - name: "Submission", - effect: "The user grabs the target and recklessly dives for the ground. This also damages the user a little." - }, - "lowKick": { - name: "Low Kick", - effect: "A powerful low kick that makes the target fall over. The heavier the target, the greater the move's power." - }, - "counter": { - name: "Counter", - effect: "A retaliation move that counters any physical attack, inflicting double the damage taken." - }, - "seismicToss": { - name: "Seismic Toss", - effect: "The target is thrown using the power of gravity. It inflicts damage equal to the user's level." - }, - "strength": { - name: "Strength", - effect: "The target is slugged with a punch thrown at maximum power." - }, - "absorb": { - name: "Absorb", - effect: "A nutrient-draining attack. The user's HP is restored by half the damage taken by the target." - }, - "megaDrain": { - name: "Mega Drain", - effect: "A nutrient-draining attack. The user's HP is restored by half the damage taken by the target." - }, - "leechSeed": { - name: "Leech Seed", - effect: "A seed is planted on the target. It steals some HP from the target every turn." - }, - "growth": { - name: "Growth", - effect: "The user's body grows all at once, raising the Attack and Sp. Atk stats." - }, - "razorLeaf": { - name: "Razor Leaf", - effect: "Sharp-edged leaves are launched to slash at opposing Pokémon. Critical hits land more easily." - }, - "solarBeam": { - name: "Solar Beam", - effect: "In this two-turn attack, the user gathers light, then blasts a bundled beam on the next turn." - }, - "poisonPowder": { - name: "Poison Powder", - effect: "The user scatters a cloud of poisonous dust that poisons the target." - }, - "stunSpore": { - name: "Stun Spore", - effect: "The user scatters a cloud of numbing powder that paralyzes the target." - }, - "sleepPowder": { - name: "Sleep Powder", - effect: "The user scatters a big cloud of sleep-inducing dust around the target." - }, - "petalDance": { - name: "Petal Dance", - effect: "The user attacks the target by scattering petals for two to three turns. The user then becomes confused." - }, - "stringShot": { - name: "String Shot", - effect: "Opposing Pokémon are bound with silk blown from the user's mouth that harshly lowers the Speed stat." - }, - "dragonRage": { - name: "Dragon Rage", - effect: "This attack hits the target with a shock wave of pure rage. This attack always inflicts 40 HP damage." - }, - "fireSpin": { - name: "Fire Spin", - effect: "The target becomes trapped within a fierce vortex of fire that rages for four to five turns." - }, - "thunderShock": { - name: "Thunder Shock", - effect: "A jolt of electricity crashes down on the target to inflict damage. This may also leave the target with paralysis." - }, - "thunderbolt": { - name: "Thunderbolt", - effect: "A strong electric blast crashes down on the target. This may also leave the target with paralysis." - }, - "thunderWave": { - name: "Thunder Wave", - effect: "The user launches a weak jolt of electricity that paralyzes the target." - }, - "thunder": { - name: "Thunder", - effect: "A wicked thunderbolt is dropped on the target to inflict damage. This may also leave the target with paralysis." - }, - "rockThrow": { - name: "Rock Throw", - effect: "The user picks up and throws a small rock at the target to attack." - }, - "earthquake": { - name: "Earthquake", - effect: "The user sets off an earthquake that strikes every Pokémon around it." - }, - "fissure": { - name: "Fissure", - effect: "The user opens up a fissure in the ground and drops the target in. The target faints instantly if this attack hits." - }, - "dig": { - name: "Dig", - effect: "The user burrows into the ground, then attacks on the next turn." - }, - "toxic": { - name: "Toxic", - effect: "A move that leaves the target badly poisoned. Its poison damage worsens every turn." - }, - "confusion": { - name: "Confusion", - effect: "The target is hit by a weak telekinetic force. This may also confuse the target." - }, - "psychic": { - name: "Psychic", - effect: "The target is hit by a strong telekinetic force. This may also lower the target's Sp. Def stat." - }, - "hypnosis": { - name: "Hypnosis", - effect: "The user employs hypnotic suggestion to make the target fall into a deep sleep." - }, - "meditate": { - name: "Meditate", - effect: "The user meditates to awaken the power deep within its body and raise its Attack stat." - }, - "agility": { - name: "Agility", - effect: "The user relaxes and lightens its body to move faster. This sharply raises the Speed stat." - }, - "quickAttack": { - name: "Quick Attack", - effect: "The user lunges at the target at a speed that makes it almost invisible. This move always goes first." - }, - "rage": { - name: "Rage", - effect: "As long as this move is in use, the power of rage raises the Attack stat each time the user is hit in battle." - }, - "teleport": { - name: "Teleport", - effect: "The user switches places with a party Pokémon in waiting, if any. If a wild Pokémon uses this move, it flees." - }, - "nightShade": { - name: "Night Shade", - effect: "The user makes the target see a frightening mirage. It inflicts damage equal to the user's level." - }, - "mimic": { - name: "Mimic", - effect: "The user copies the target's last move. The move can be used during battle until the Pokémon is switched out." - }, - "screech": { - name: "Screech", - effect: "An earsplitting screech harshly lowers the target's Defense stat." - }, - "doubleTeam": { - name: "Double Team", - effect: "By moving rapidly, the user makes illusory copies of itself to raise its evasiveness." - }, - "recover": { - name: "Recover", - effect: "Restoring its own cells, the user restores its own HP by half of its max HP." - }, - "harden": { - name: "Harden", - effect: "The user stiffens all the muscles in its body to raise its Defense stat." - }, - "minimize": { - name: "Minimize", - effect: "The user compresses its body to make itself look smaller, which sharply raises its evasiveness." - }, - "smokescreen": { - name: "Smokescreen", - effect: "The user releases an obscuring cloud of smoke or ink. This lowers the target's accuracy." - }, - "confuseRay": { - name: "Confuse Ray", - effect: "The target is exposed to a sinister ray that triggers confusion." - }, - "withdraw": { - name: "Withdraw", - effect: "The user withdraws its body into its hard shell, raising its Defense stat." - }, - "defenseCurl": { - name: "Defense Curl", - effect: "The user curls up to conceal weak spots and raise its Defense stat." - }, - "barrier": { - name: "Barrier", - effect: "The user throws up a sturdy wall that sharply raises its Defense stat." - }, - "lightScreen": { - name: "Light Screen", - effect: "A wondrous wall of light is put up to reduce damage from special attacks for five turns." - }, - "haze": { - name: "Haze", - effect: "The user creates a haze that eliminates every stat change among all the Pokémon engaged in battle." - }, - "reflect": { - name: "Reflect", - effect: "A wondrous wall of light is put up to reduce damage from physical attacks for five turns." - }, - "focusEnergy": { - name: "Focus Energy", - effect: "The user takes a deep breath and focuses so that critical hits land more easily." - }, - "bide": { - name: "Bide", - effect: "The user endures attacks for two turns, then strikes back to cause double the damage taken." - }, - "metronome": { - name: "Metronome", - effect: "The user waggles a finger and stimulates its brain into randomly using nearly any move." - }, - "mirrorMove": { - name: "Mirror Move", - effect: "The user counters the target by mimicking the target's last move." - }, - "selfDestruct": { - name: "Self-Destruct", - effect: "The user attacks everything around it by causing an explosion. The user faints upon using this move." - }, - "eggBomb": { - name: "Egg Bomb", - effect: "A large egg is hurled at the target with maximum force to inflict damage." - }, - "lick": { - name: "Lick", - effect: "The target is licked with a long tongue, causing damage. This may also leave the target with paralysis." - }, - "smog": { - name: "Smog", - effect: "The target is attacked with a discharge of filthy gases. This may also poison the target." - }, - "sludge": { - name: "Sludge", - effect: "Unsanitary sludge is hurled at the target. This may also poison the target." - }, - "boneClub": { - name: "Bone Club", - effect: "The user clubs the target with a bone. This may also make the target flinch." - }, - "fireBlast": { - name: "Fire Blast", - effect: "The target is attacked with an intense blast of all-consuming fire. This may also leave the target with a burn." - }, - "waterfall": { - name: "Waterfall", - effect: "The user charges at the target and may make it flinch." - }, - "clamp": { - name: "Clamp", - effect: "The target is clamped and squeezed by the user's very thick and sturdy shell for four to five turns." - }, - "swift": { - name: "Swift", - effect: "Star-shaped rays are shot at opposing Pokémon. This attack never misses." - }, - "skullBash": { - name: "Skull Bash", - effect: "The user tucks in its head to raise its Defense stat on the first turn, then rams the target on the next turn." - }, - "spikeCannon": { - name: "Spike Cannon", - effect: "Sharp spikes are shot at the target in rapid succession. They hit two to five times in a row." - }, - "constrict": { - name: "Constrict", - effect: "The target is attacked with long, creeping tentacles, vines, or the like. This may also lower the target's Speed stat." - }, - "amnesia": { - name: "Amnesia", - effect: "The user temporarily empties its mind to forget its concerns. This sharply raises the user's Sp. Def stat." - }, - "kinesis": { - name: "Kinesis", - effect: "The user distracts the target by bending a spoon. This lowers the target's accuracy." - }, - "softBoiled": { - name: "Soft-Boiled", - effect: "The user restores its own HP by up to half of its max HP." - }, - "highJumpKick": { - name: "High Jump Kick", - effect: "The target is attacked with a knee kick from a jump. If it misses, the user is hurt instead." - }, - "glare": { - name: "Glare", - effect: "The user intimidates the target with the pattern on its belly to cause paralysis." - }, - "dreamEater": { - name: "Dream Eater", - effect: "The user eats the dreams of a sleeping target. The user's HP is restored by half the damage taken by the target." - }, - "poisonGas": { - name: "Poison Gas", - effect: "A cloud of poison gas is sprayed in the face of opposing Pokémon, poisoning those it hits." - }, - "barrage": { - name: "Barrage", - effect: "Round objects are hurled at the target to strike two to five times in a row." - }, - "leechLife": { - name: "Leech Life", - effect: "The user drains the target's blood. The user's HP is restored by half the damage taken by the target." - }, - "lovelyKiss": { - name: "Lovely Kiss", - effect: "With a scary face, the user tries to force a kiss on the target. If it succeeds, the target falls asleep." - }, - "skyAttack": { - name: "Sky Attack", - effect: "A second-turn attack move where critical hits land more easily. This may also make the target flinch." - }, - "transform": { - name: "Transform", - effect: "The user transforms into a copy of the target right down to having the same move set." - }, - "bubble": { - name: "Bubble", - effect: "A spray of countless bubbles is jetted at the opposing Pokémon. This may also lower their Speed stat." - }, - "dizzyPunch": { - name: "Dizzy Punch", - effect: "The target is hit with rhythmically launched punches. This may also leave the target confused." - }, - "spore": { - name: "Spore", - effect: "The user scatters bursts of spores that induce sleep." - }, - "flash": { - name: "Flash", - effect: "The user flashes a bright light that cuts the target's accuracy." - }, - "psywave": { - name: "Psywave", - effect: "The target is attacked with an odd psychic wave. The attack varies in intensity." - }, - "splash": { - name: "Splash", - effect: "The user just flops and splashes around to no effect at all..." - }, - "acidArmor": { - name: "Acid Armor", - effect: "The user alters its cellular structure to liquefy itself, sharply raising its Defense stat." - }, - "crabhammer": { - name: "Crabhammer", - effect: "The target is hammered with a large pincer. Critical hits land more easily." - }, - "explosion": { - name: "Explosion", - effect: "The user attacks everything around it by causing a tremendous explosion. The user faints upon using this move." - }, - "furySwipes": { - name: "Fury Swipes", - effect: "The target is raked with sharp claws or scythes quickly two to five times in a row." - }, - "bonemerang": { - name: "Bonemerang", - effect: "The user throws the bone it holds. The bone loops around to hit the target twice—coming and going." - }, - "rest": { - name: "Rest", - effect: "The user goes to sleep for two turns. This fully restores the user's HP and heals any status conditions." - }, - "rockSlide": { - name: "Rock Slide", - effect: "Large boulders are hurled at opposing Pokémon to inflict damage. This may also make the opposing Pokémon flinch." - }, - "hyperFang": { - name: "Hyper Fang", - effect: "The user bites hard on the target with its sharp front fangs. This may also make the target flinch." - }, - "sharpen": { - name: "Sharpen", - effect: "The user makes its edges more jagged, which raises its Attack stat." - }, - "conversion": { - name: "Conversion", - effect: "The user changes its type to become the same type as the move at the top of the list of moves it knows." - }, - "triAttack": { - name: "Tri Attack", - effect: "The user strikes with a simultaneous three-beam attack. This may also burn, freeze, or paralyze the target." - }, - "superFang": { - name: "Super Fang", - effect: "The user chomps hard on the target with its sharp front fangs. This cuts the target's HP in half." - }, - "slash": { - name: "Slash", - effect: "The target is attacked with a slash of claws or blades. Critical hits land more easily." - }, - "substitute": { - name: "Substitute", - effect: "The user creates a substitute for itself using some of its HP. The substitute serves as the user's decoy." - }, - "struggle": { - name: "Struggle", - effect: "This attack is used in desperation only if the user has no PP. It also damages the user a little." - }, - "sketch": { - name: "Sketch", - effect: "It enables the user to permanently learn the move last used by the target. Once used, Sketch disappears." - }, - "tripleKick": { - name: "Triple Kick", - effect: "A consecutive three-kick attack that becomes more powerful with each successful hit." - }, - "thief": { - name: "Thief", - effect: "The user attacks and has a 30% chance to steal the target's held item simultaneously." - }, - "spiderWeb": { - name: "Spider Web", - effect: "The user ensnares the target with thin, gooey silk so it can't flee from battle." - }, - "mindReader": { - name: "Mind Reader", - effect: "The user senses the target's movements with its mind to ensure its next attack does not miss the target." - }, - "nightmare": { - name: "Nightmare", - effect: "A sleeping target sees a nightmare that inflicts some damage every turn." - }, - "flameWheel": { - name: "Flame Wheel", - effect: "The user cloaks itself in fire and charges at the target. This may also leave the target with a burn." - }, - "snore": { - name: "Snore", - effect: "This attack can be used only if the user is asleep. The harsh noise may also make the target flinch." - }, - "curse": { - name: "Curse", - effect: "A move that works differently for the Ghost type than for all other types." - }, - "flail": { - name: "Flail", - effect: "The user flails about aimlessly to attack. The less HP the user has, the greater the move's power." - }, - "conversion2": { - name: "Conversion 2", - effect: "The user changes its type to make itself resistant to the type of the attack the target used last." - }, - "aeroblast": { - name: "Aeroblast", - effect: "A vortex of air is shot at the target to inflict damage. Critical hits land more easily." - }, - "cottonSpore": { - name: "Cotton Spore", - effect: "The user releases cotton-like spores that cling to opposing Pokémon, which harshly lowers their Speed stats." - }, - "reversal": { - name: "Reversal", - effect: "An all-out attack that becomes more powerful the less HP the user has." - }, - "spite": { - name: "Spite", - effect: "The user unleashes its grudge on the move last used by the target by cutting 4 PP from it." - }, - "powderSnow": { - name: "Powder Snow", - effect: "The user attacks with a chilling gust of powdery snow. This may also freeze opposing Pokémon." - }, - "protect": { - name: "Protect", - effect: "This move enables the user to protect itself from all attacks. Its chance of failing rises if it is used in succession." - }, - "machPunch": { - name: "Mach Punch", - effect: "The user throws a punch at blinding speed. This move always goes first." - }, - "scaryFace": { - name: "Scary Face", - effect: "The user frightens the target with a scary face to harshly lower its Speed stat." - }, - "feintAttack": { - name: "Feint Attack", - effect: "The user approaches the target disarmingly, then throws a sucker punch. This attack never misses." - }, - "sweetKiss": { - name: "Sweet Kiss", - effect: "The user kisses the target with a sweet, angelic cuteness that causes confusion." - }, - "bellyDrum": { - name: "Belly Drum", - effect: "The user maximizes its Attack stat in exchange for HP equal to half its max HP." - }, - "sludgeBomb": { - name: "Sludge Bomb", - effect: "Unsanitary sludge is hurled at the target. This may also poison the target." - }, - "mudSlap": { - name: "Mud-Slap", - effect: "The user hurls mud in the target's face to inflict damage and lower its accuracy." - }, - "octazooka": { - name: "Octazooka", - effect: "The user attacks by spraying ink in the target's face or eyes. This may also lower the target's accuracy." - }, - "spikes": { - name: "Spikes", - effect: "The user lays a trap of spikes at the opposing team's feet. The trap hurts Pokémon that switch into battle." - }, - "zapCannon": { - name: "Zap Cannon", - effect: "The user fires an electric blast like a cannon to inflict damage and cause paralysis." - }, - "foresight": { - name: "Foresight", - effect: "Enables a Ghost-type target to be hit by Normal- and Fighting-type attacks. This also enables an evasive target to be hit." - }, - "destinyBond": { - name: "Destiny Bond", - effect: "After using this move, if the user faints, the Pokémon that landed the knockout hit also faints. Its chance of failing rises if it is used in succession." - }, - "perishSong": { - name: "Perish Song", - effect: "Any Pokémon that hears this song faints in three turns, unless it switches out of battle." - }, - "icyWind": { - name: "Icy Wind", - effect: "The user attacks with a gust of chilled air. This also lowers opposing Pokémon's Speed stats." - }, - "detect": { - name: "Detect", - effect: "This move enables the user to protect itself from all attacks. Its chance of failing rises if it is used in succession." - }, - "boneRush": { - name: "Bone Rush", - effect: "The user strikes the target with a hard bone two to five times in a row." - }, - "lockOn": { - name: "Lock-On", - effect: "The user takes sure aim at the target. This ensures the next attack does not miss the target." - }, - "outrage": { - name: "Outrage", - effect: "The user rampages and attacks for two to three turns. The user then becomes confused." - }, - "sandstorm": { - name: "Sandstorm", - effect: "A five-turn sandstorm is summoned to hurt all combatants except Rock, Ground, and Steel types. It raises the Sp. Def stat of Rock types." - }, - "gigaDrain": { - name: "Giga Drain", - effect: "A nutrient-draining attack. The user's HP is restored by half the damage taken by the target." - }, - "endure": { - name: "Endure", - effect: "The user endures any attack with at least 1 HP. Its chance of failing rises if it is used in succession." - }, - "charm": { - name: "Charm", - effect: "The user gazes at the target rather charmingly, making it less wary. This harshly lowers the target's Attack stat." - }, - "rollout": { - name: "Rollout", - effect: "The user continually rolls into the target over five turns. It becomes more powerful each time it hits." - }, - "falseSwipe": { - name: "False Swipe", - effect: "A restrained attack that prevents the target from fainting. The target is left with at least 1 HP." - }, - "swagger": { - name: "Swagger", - effect: "The user enrages and confuses the target. However, this also sharply raises the target's Attack stat." - }, - "milkDrink": { - name: "Milk Drink", - effect: "The user restores its own HP by up to half of its max HP." - }, - "spark": { - name: "Spark", - effect: "The user throws an electrically charged tackle at the target. This may also leave the target with paralysis." - }, - "furyCutter": { - name: "Fury Cutter", - effect: "The target is slashed with scythes or claws. This attack becomes more powerful if it hits in succession." - }, - "steelWing": { - name: "Steel Wing", - effect: "The target is hit with wings of steel. This may also raise the user's Defense stat." - }, - "meanLook": { - name: "Mean Look", - effect: "The user pins the target with a dark, arresting look. The target becomes unable to flee." - }, - "attract": { - name: "Attract", - effect: "If it is the opposite gender of the user, the target becomes infatuated and less likely to attack." - }, - "sleepTalk": { - name: "Sleep Talk", - effect: "While it is asleep, the user randomly uses one of the moves it knows." - }, - "healBell": { - name: "Heal Bell", - effect: "The user makes a soothing bell chime to heal the status conditions of all the party Pokémon." - }, - "return": { - name: "Return", - effect: "This full-power attack grows more powerful the more the user likes its Trainer." - }, - "present": { - name: "Present", - effect: "The user attacks by giving the target a gift with a hidden trap. It restores HP sometimes, however." - }, - "frustration": { - name: "Frustration", - effect: "This full-power attack grows more powerful the less the user likes its Trainer." - }, - "safeguard": { - name: "Safeguard", - effect: "The user creates a protective field that prevents status conditions for five turns." - }, - "painSplit": { - name: "Pain Split", - effect: "The user adds its HP to the target's HP, then equally shares the combined HP with the target." - }, - "sacredFire": { - name: "Sacred Fire", - effect: "The target is razed with a mystical fire of great intensity. This may also leave the target with a burn." - }, - "magnitude": { - name: "Magnitude", - effect: "The user attacks everything around it with a ground-shaking quake. Its power varies." - }, - "dynamicPunch": { - name: "Dynamic Punch", - effect: "The user punches the target with full, concentrated power. This confuses the target if it hits." - }, - "megahorn": { - name: "Megahorn", - effect: "Using its tough and impressive horn, the user rams into the target with no letup." - }, - "dragonBreath": { - name: "Dragon Breath", - effect: "The user exhales a mighty gust that inflicts damage. This may also leave the target with paralysis." - }, - "batonPass": { - name: "Baton Pass", - effect: "The user switches places with a party Pokémon in waiting and passes along any stat changes." - }, - "encore": { - name: "Encore", - effect: "The user compels the target to keep using the move it encored for three turns." - }, - "pursuit": { - name: "Pursuit", - effect: "The power of this attack move is doubled if it's used on a target that's switching out of battle." - }, - "rapidSpin": { - name: "Rapid Spin", - effect: "A spin attack that can also eliminate such moves as Bind, Wrap, and Leech Seed. This also raises the user's Speed stat." - }, - "sweetScent": { - name: "Sweet Scent", - effect: "A sweet scent that harshly lowers opposing Pokémon's evasiveness." - }, - "ironTail": { - name: "Iron Tail", - effect: "The target is slammed with a steel-hard tail. This may also lower the target's Defense stat." - }, - "metalClaw": { - name: "Metal Claw", - effect: "The target is raked with steel claws. This may also raise the user's Attack stat." - }, - "vitalThrow": { - name: "Vital Throw", - effect: "The user attacks last. In return, this throw move never misses." - }, - "morningSun": { - name: "Morning Sun", - effect: "The user restores its own HP. The amount of HP regained varies with the weather." - }, - "synthesis": { - name: "Synthesis", - effect: "The user restores its own HP. The amount of HP regained varies with the weather." - }, - "moonlight": { - name: "Moonlight", - effect: "The user restores its own HP. The amount of HP regained varies with the weather." - }, - "hiddenPower": { - name: "Hidden Power", - effect: "A unique attack that varies in type depending on the Pokémon using it." - }, - "crossChop": { - name: "Cross Chop", - effect: "The user delivers a double chop with its forearms crossed. Critical hits land more easily." - }, - "twister": { - name: "Twister", - effect: "The user whips up a vicious tornado to tear at opposing Pokémon. This may also make them flinch." - }, - "rainDance": { - name: "Rain Dance", - effect: "The user summons a heavy rain that falls for five turns, powering up Water-type moves. It lowers the power of Fire-type moves." - }, - "sunnyDay": { - name: "Sunny Day", - effect: "The user intensifies the sun for five turns, powering up Fire-type moves. It lowers the power of Water-type moves." - }, - "crunch": { - name: "Crunch", - effect: "The user crunches up the target with sharp fangs. This may also lower the target's Defense stat." - }, - "mirrorCoat": { - name: "Mirror Coat", - effect: "A retaliation move that counters any special attack, inflicting double the damage taken." - }, - "psychUp": { - name: "Psych Up", - effect: "The user hypnotizes itself into copying any stat change made by the target." - }, - "extremeSpeed": { - name: "Extreme Speed", - effect: "The user charges the target at blinding speed. This move always goes first." - }, - "ancientPower": { - name: "Ancient Power", - effect: "The user attacks with a prehistoric power. This may also raise all the user's stats at once." - }, - "shadowBall": { - name: "Shadow Ball", - effect: "The user hurls a shadowy blob at the target. This may also lower the target's Sp. Def stat." - }, - "futureSight": { - name: "Future Sight", - effect: "Two turns after this move is used, a hunk of psychic energy attacks the target." - }, - "rockSmash": { - name: "Rock Smash", - effect: "The user attacks with a punch. This may also lower the target's Defense stat." - }, - "whirlpool": { - name: "Whirlpool", - effect: "The user traps the target in a violent swirling whirlpool for four to five turns." - }, - "beatUp": { - name: "Beat Up", - effect: "The user gets all party Pokémon to attack the target. The more party Pokémon, the greater the number of attacks." - }, - "fakeOut": { - name: "Fake Out", - effect: "This attack hits first and makes the target flinch. It only works the first turn each time the user enters battle." - }, - "uproar": { - name: "Uproar", - effect: "The user attacks in an uproar for three turns. During that time, no Pokémon can fall asleep." - }, - "stockpile": { - name: "Stockpile", - effect: "The user charges up power and raises both its Defense and Sp. Def stats. The move can be used three times." - }, - "spitUp": { - name: "Spit Up", - effect: "The power stored using the move Stockpile is released at once in an attack. The more power is stored, the greater the move's power." - }, - "swallow": { - name: "Swallow", - effect: "The power stored using the move Stockpile is absorbed by the user to heal its HP. Storing more power heals more HP." - }, - "heatWave": { - name: "Heat Wave", - effect: "The user attacks by exhaling hot breath on opposing Pokémon. This may also leave those Pokémon with a burn." - }, - "hail": { - name: "Hail", - effect: "The user summons a hailstorm lasting five turns. It damages all Pokémon except Ice types." - }, - "torment": { - name: "Torment", - effect: "The user torments and enrages the target, making it incapable of using the same move twice in a row." - }, - "flatter": { - name: "Flatter", - effect: "Flattery is used to confuse the target. However, this also raises the target's Sp. Atk stat." - }, - "willOWisp": { - name: "Will-O-Wisp", - effect: "The user shoots a sinister flame at the target to inflict a burn." - }, - "memento": { - name: "Memento", - effect: "The user faints when using this move. In return, this harshly lowers the target's Attack and Sp. Atk stats." - }, - "facade": { - name: "Facade", - effect: "This attack move doubles its power if the user is poisoned, burned, or paralyzed." - }, - "focusPunch": { - name: "Focus Punch", - effect: "The user focuses its mind before launching a punch. This move fails if the user is hit before it is used." - }, - "smellingSalts": { - name: "Smelling Salts", - effect: "This attack's power is doubled when used on a target with paralysis. This also cures the target's paralysis, however." - }, - "followMe": { - name: "Follow Me", - effect: "The user draws attention to itself, making all targets take aim only at the user." - }, - "naturePower": { - name: "Nature Power", - effect: "This attack makes use of nature's power. Its effects vary depending on the user's environment." - }, - "charge": { - name: "Charge", - effect: "The user boosts the power of the Electric move it uses on the next turn. This also raises the user's Sp. Def stat." - }, - "taunt": { - name: "Taunt", - effect: "The target is taunted into a rage that allows it to use only attack moves for three turns." - }, - "helpingHand": { - name: "Helping Hand", - effect: "The user assists an ally by boosting the power of that ally's attack." - }, - "trick": { - name: "Trick", - effect: "The user catches the target off guard and swaps its held item with its own." - }, - "rolePlay": { - name: "Role Play", - effect: "The user mimics the target completely, copying the target's Ability." - }, - "wish": { - name: "Wish", - effect: "One turn after this move is used, the user's or its replacement's HP is restored by half the user's max HP." - }, - "assist": { - name: "Assist", - effect: "The user hurriedly and randomly uses a move among those known by ally Pokémon." - }, - "ingrain": { - name: "Ingrain", - effect: "The user lays roots that restore its HP on every turn. Because it's rooted, it can't switch out." - }, - "superpower": { - name: "Superpower", - effect: "The user attacks the target with great power. However, this also lowers the user's Attack and Defense stats." - }, - "magicCoat": { - name: "Magic Coat", - effect: "Moves like Leech Seed and moves that inflict status conditions are blocked by a barrier and reflected back to the user of those moves." - }, - "recycle": { - name: "Recycle", - effect: "The user recycles a held item that has been used in battle so it can be used again." - }, - "revenge": { - name: "Revenge", - effect: "This attack move's power is doubled if the user has been hurt by the opponent in the same turn." - }, - "brickBreak": { - name: "Brick Break", - effect: "The user attacks with a swift chop. It can also break barriers, such as Light Screen and Reflect." - }, - "yawn": { - name: "Yawn", - effect: "The user lets loose a huge yawn that lulls the target into falling asleep on the next turn." - }, - "knockOff": { - name: "Knock Off", - effect: "The user slaps down the target's held item, and that item can't be used in that battle. The move does more damage if the target has a held item." - }, - "endeavor": { - name: "Endeavor", - effect: "This attack move cuts down the target's HP to equal the user's HP." - }, - "eruption": { - name: "Eruption", - effect: "The user attacks opposing Pokémon with explosive fury. The lower the user's HP, the lower the move's power." - }, - "skillSwap": { - name: "Skill Swap", - effect: "The user employs its psychic power to exchange Abilities with the target." - }, - "imprison": { - name: "Imprison", - effect: "If opposing Pokémon know any move also known by the user, they are prevented from using it." - }, - "refresh": { - name: "Refresh", - effect: "The user rests to cure itself of poisoning, a burn, or paralysis." - }, - "grudge": { - name: "Grudge", - effect: "If the user faints, the user's grudge fully depletes the PP of the opponent's move that knocked it out." - }, - "snatch": { - name: "Snatch", - effect: "The user steals the effects of any attempts to use a healing or stat-changing move." - }, - "secretPower": { - name: "Secret Power", - effect: "The additional effects of this attack depend upon where it was used." - }, - "dive": { - name: "Dive", - effect: "Diving on the first turn, the user floats up and attacks on the next turn." - }, - "armThrust": { - name: "Arm Thrust", - effect: "The user lets loose a flurry of open-palmed arm thrusts that hit two to five times in a row." - }, - "camouflage": { - name: "Camouflage", - effect: "The user's type is changed depending on its environment, such as at water's edge, in grass, or in a cave." - }, - "tailGlow": { - name: "Tail Glow", - effect: "The user stares at flashing lights to focus its mind, drastically raising its Sp. Atk stat." - }, - "lusterPurge": { - name: "Luster Purge", - effect: "The user lets loose a damaging burst of light. This may also lower the target's Sp. Def stat." - }, - "mistBall": { - name: "Mist Ball", - effect: "A mist-like flurry of down envelops and damages the target. This may also lower the target's Sp. Atk stat." - }, - "featherDance": { - name: "Feather Dance", - effect: "The user covers the target's body with a mass of down that harshly lowers its Attack stat." - }, - "teeterDance": { - name: "Teeter Dance", - effect: "The user performs a wobbly dance that confuses the Pokémon around it." - }, - "blazeKick": { - name: "Blaze Kick", - effect: "The user launches a kick that lands a critical hit more easily. This may also leave the target with a burn." - }, - "mudSport": { - name: "Mud Sport", - effect: "The user kicks up mud on the battlefield. This weakens Electric-type moves for five turns." - }, - "iceBall": { - name: "Ice Ball", - effect: "The user attacks the target for five turns. The move's power increases each time it hits." - }, - "needleArm": { - name: "Needle Arm", - effect: "The user attacks by wildly swinging its thorny arms. This may also make the target flinch." - }, - "slackOff": { - name: "Slack Off", - effect: "The user slacks off, restoring its own HP by up to half of its max HP." - }, - "hyperVoice": { - name: "Hyper Voice", - effect: "The user lets loose a horribly echoing shout with the power to inflict damage." - }, - "poisonFang": { - name: "Poison Fang", - effect: "The user bites the target with toxic fangs. This may also leave the target badly poisoned." - }, - "crushClaw": { - name: "Crush Claw", - effect: "The user slashes the target with hard and sharp claws. This may also lower the target's Defense stat." - }, - "blastBurn": { - name: "Blast Burn", - effect: "The target is razed by a fiery explosion. The user can't move on the next turn." - }, - "hydroCannon": { - name: "Hydro Cannon", - effect: "The target is hit with a watery blast. The user can't move on the next turn." - }, - "meteorMash": { - name: "Meteor Mash", - effect: "The target is hit with a hard punch fired like a meteor. This may also raise the user's Attack stat." - }, - "astonish": { - name: "Astonish", - effect: "The user attacks the target while shouting in a startling fashion. This may also make the target flinch." - }, - "weatherBall": { - name: "Weather Ball", - effect: "This attack move varies in power and type depending on the weather." - }, - "aromatherapy": { - name: "Aromatherapy", - effect: "The user releases a soothing scent that heals all status conditions affecting the user's party." - }, - "fakeTears": { - name: "Fake Tears", - effect: "The user feigns crying to fluster the target, harshly lowering its Sp. Def stat." - }, - "airCutter": { - name: "Air Cutter", - effect: "The user launches razor-like wind to slash opposing Pokémon. Critical hits land more easily." - }, - "overheat": { - name: "Overheat", - effect: "The user attacks the target at full power. The attack's recoil harshly lowers the user's Sp. Atk stat." - }, - "odorSleuth": { - name: "Odor Sleuth", - effect: "Enables a Ghost-type target to be hit by Normal- and Fighting-type attacks. This also enables an evasive target to be hit." - }, - "rockTomb": { - name: "Rock Tomb", - effect: "Boulders are hurled at the target. This also lowers the target's Speed stat by preventing its movement." - }, - "silverWind": { - name: "Silver Wind", - effect: "The target is attacked with powdery scales blown by the wind. This may also raise all the user's stats." - }, - "metalSound": { - name: "Metal Sound", - effect: "A horrible sound like scraping metal harshly lowers the target's Sp. Def stat." - }, - "grassWhistle": { - name: "Grass Whistle", - effect: "The user plays a pleasant melody that lulls the target into a deep sleep." - }, - "tickle": { - name: "Tickle", - effect: "The user tickles the target into laughing, reducing its Attack and Defense stats." - }, - "cosmicPower": { - name: "Cosmic Power", - effect: "The user absorbs a mystical power from space to raise its Defense and Sp. Def stats." - }, - "waterSpout": { - name: "Water Spout", - effect: "The user spouts water to damage opposing Pokémon. The lower the user's HP, the lower the move's power." - }, - "signalBeam": { - name: "Signal Beam", - effect: "The user attacks with a sinister beam of light. This may also confuse the target." - }, - "shadowPunch": { - name: "Shadow Punch", - effect: "The user throws a punch from the shadows. This attack never misses." - }, - "extrasensory": { - name: "Extrasensory", - effect: "The user attacks with an odd, unseeable power. This may also make the target flinch." - }, - "skyUppercut": { - name: "Sky Uppercut", - effect: "The user attacks the target with an uppercut thrown skyward with force." - }, - "sandTomb": { - name: "Sand Tomb", - effect: "The user traps the target inside a harshly raging sandstorm for four to five turns." - }, - "sheerCold": { - name: "Sheer Cold", - effect: "The target faints instantly. It's less likely to hit the target if it's used by Pokémon other than Ice types." - }, - "muddyWater": { - name: "Muddy Water", - effect: "The user attacks by shooting muddy water at opposing Pokémon. This may also lower their accuracy." - }, - "bulletSeed": { - name: "Bullet Seed", - effect: "The user forcefully shoots seeds at the target two to five times in a row." - }, - "aerialAce": { - name: "Aerial Ace", - effect: "The user confounds the target with speed, then slashes. This attack never misses." - }, - "icicleSpear": { - name: "Icicle Spear", - effect: "The user launches sharp icicles at the target two to five times in a row." - }, - "ironDefense": { - name: "Iron Defense", - effect: "The user hardens its body's surface like iron, sharply raising its Defense stat." - }, - "block": { - name: "Block", - effect: "The user blocks the target's way with arms spread wide to prevent escape." - }, - "howl": { - name: "Howl", - effect: "The user howls loudly to raise the spirit of itself and allies. This raises their Attack stats." - }, - "dragonClaw": { - name: "Dragon Claw", - effect: "The user slashes the target with huge sharp claws." - }, - "frenzyPlant": { - name: "Frenzy Plant", - effect: "The user slams the target with the roots of an enormous tree. The user can't move on the next turn." - }, - "bulkUp": { - name: "Bulk Up", - effect: "The user tenses its muscles to bulk up its body, raising both its Attack and Defense stats." - }, - "bounce": { - name: "Bounce", - effect: "The user bounces up high, then drops on the target on the second turn. This may also leave the target with paralysis." - }, - "mudShot": { - name: "Mud Shot", - effect: "The user attacks by hurling a blob of mud at the target. This also lowers the target's Speed stat." - }, - "poisonTail": { - name: "Poison Tail", - effect: "The user hits the target with its tail. This may also poison the target. Critical hits land more easily." - }, - "covet": { - name: "Covet", - effect: "The user endearingly approaches the target, then has a 30% chance to steal the target's held item." - }, - "voltTackle": { - name: "Volt Tackle", - effect: "The user electrifies itself and charges the target. This also damages the user quite a lot. This attack may leave the target with paralysis." - }, - "magicalLeaf": { - name: "Magical Leaf", - effect: "The user scatters curious leaves that chase the target. This attack never misses." - }, - "waterSport": { - name: "Water Sport", - effect: "The user soaks the battlefield with water. This weakens Fire-type moves for five turns." - }, - "calmMind": { - name: "Calm Mind", - effect: "The user quietly focuses its mind and calms its spirit to raise its Sp. Atk and Sp. Def stats." - }, - "leafBlade": { - name: "Leaf Blade", - effect: "The user handles a sharp leaf like a sword and attacks by cutting its target. Critical hits land more easily." - }, - "dragonDance": { - name: "Dragon Dance", - effect: "The user vigorously performs a mystic, powerful dance that raises its Attack and Speed stats." - }, - "rockBlast": { - name: "Rock Blast", - effect: "The user hurls hard rocks at the target. Two to five rocks are launched in a row." - }, - "shockWave": { - name: "Shock Wave", - effect: "The user strikes the target with a quick jolt of electricity. This attack never misses." - }, - "waterPulse": { - name: "Water Pulse", - effect: "The user attacks the target with a pulsing blast of water. This may also confuse the target." - }, - "doomDesire": { - name: "Doom Desire", - effect: "Two turns after this move is used, a concentrated bundle of light blasts the target." - }, - "psychoBoost": { - name: "Psycho Boost", - effect: "The user attacks the target at full power. The attack's recoil harshly lowers the user's Sp. Atk stat." - }, - "roost": { - name: "Roost", - effect: "The user lands and rests its body. This move restores the user's HP by up to half of its max HP." - }, - "gravity": { - name: "Gravity", - effect: "This move enables Flying-type Pokémon or Pokémon with the Levitate Ability to be hit by Ground-type moves. Moves that involve flying can't be used." - }, - "miracleEye": { - name: "Miracle Eye", - effect: "Enables a Dark-type target to be hit by Psychic-type attacks. This also enables an evasive target to be hit." - }, - "wakeUpSlap": { - name: "Wake-Up Slap", - effect: "This attack inflicts big damage on a sleeping target. This also wakes the target up, however." - }, - "hammerArm": { - name: "Hammer Arm", - effect: "The user swings and hits with its strong, heavy fist. It lowers the user's Speed, however." - }, - "gyroBall": { - name: "Gyro Ball", - effect: "The user tackles the target with a high-speed spin. The slower the user compared to the target, the greater the move's power." - }, - "healingWish": { - name: "Healing Wish", - effect: "The user faints. In return, the Pokémon taking its place will have its HP restored and status conditions cured." - }, - "brine": { - name: "Brine", - effect: "If the target's HP is half or less, this attack will hit with double the power." - }, - "naturalGift": { - name: "Natural Gift", - effect: "The user draws power to attack by using its held Berry. The Berry determines the move's type and power." - }, - "feint": { - name: "Feint", - effect: "This attack hits a target using a move such as Protect or Detect. This also lifts the effects of those moves." - }, - "pluck": { - name: "Pluck", - effect: "The user pecks the target. If the target is holding a Berry, the user eats it and gains its effect." - }, - "tailwind": { - name: "Tailwind", - effect: "The user whips up a turbulent whirlwind that ups the Speed stats of the user and its allies for four turns." - }, - "acupressure": { - name: "Acupressure", - effect: "The user applies pressure to stress points, sharply boosting one of its or its allies' stats." - }, - "metalBurst": { - name: "Metal Burst", - effect: "The user retaliates with much greater force against the opponent that last inflicted damage on it." - }, - "uTurn": { - name: "U-turn", - effect: "After making its attack, the user rushes back to switch places with a party Pokémon in waiting." - }, - "closeCombat": { - name: "Close Combat", - effect: "The user fights the target up close without guarding itself. This also lowers the user's Defense and Sp. Def stats." - }, - "payback": { - name: "Payback", - effect: "The user stores power, then attacks. If the user moves after the target, this attack's power will be doubled." - }, - "assurance": { - name: "Assurance", - effect: "If the target has already taken some damage in the same turn, this attack's power is doubled." - }, - "embargo": { - name: "Embargo", - effect: "This move prevents the target from using its held item for five turns. Its Trainer is also prevented from using items on it." - }, - "fling": { - name: "Fling", - effect: "The user flings its held item at the target to attack. This move's power and effects depend on the item." - }, - "psychoShift": { - name: "Psycho Shift", - effect: "Using its psychic power of suggestion, the user transfers its status conditions to the target." - }, - "trumpCard": { - name: "Trump Card", - effect: "The fewer PP this move has, the greater its power." - }, - "healBlock": { - name: "Heal Block", - effect: "For five turns, the user prevents the opposing team from using any moves, Abilities, or held items that recover HP." - }, - "wringOut": { - name: "Wring Out", - effect: "The user powerfully wrings the target. The more HP the target has, the greater the move's power." - }, - "powerTrick": { - name: "Power Trick", - effect: "The user employs its psychic power to switch its Attack stat with its Defense stat." - }, - "gastroAcid": { - name: "Gastro Acid", - effect: "The user hurls up its stomach acids on the target. The fluid eliminates the effect of the target's Ability." - }, - "luckyChant": { - name: "Lucky Chant", - effect: "The user chants an incantation toward the sky, preventing opposing Pokémon from landing critical hits for five turns." - }, - "meFirst": { - name: "Me First", - effect: "The user cuts ahead of the target to copy and use the target's intended move with greater power. This move fails if it isn't used first." - }, - "copycat": { - name: "Copycat", - effect: "The user mimics the move used immediately before it. The move fails if no other move has been used yet." - }, - "powerSwap": { - name: "Power Swap", - effect: "The user employs its psychic power to switch changes to its Attack and Sp. Atk stats with the target." - }, - "guardSwap": { - name: "Guard Swap", - effect: "The user employs its psychic power to switch changes to its Defense and Sp. Def stats with the target." - }, - "punishment": { - name: "Punishment", - effect: "The more the target has powered up with stat changes, the greater the move's power." - }, - "lastResort": { - name: "Last Resort", - effect: "This move can be used only after the user has used all the other moves it knows in the battle." - }, - "worrySeed": { - name: "Worry Seed", - effect: "A seed that causes worry is planted on the target. It prevents sleep by making the target's Ability Insomnia." - }, - "suckerPunch": { - name: "Sucker Punch", - effect: "This move enables the user to attack first. This move fails if the target is not readying an attack." - }, - "toxicSpikes": { - name: "Toxic Spikes", - effect: "The user lays a trap of poison spikes at the feet of the opposing team. The spikes will poison opposing Pokémon that switch into battle." - }, - "heartSwap": { - name: "Heart Swap", - effect: "The user employs its psychic power to switch stat changes with the target." - }, - "aquaRing": { - name: "Aqua Ring", - effect: "The user envelops itself in a veil made of water. It regains some HP every turn." - }, - "magnetRise": { - name: "Magnet Rise", - effect: "The user levitates using electrically generated magnetism for five turns." - }, - "flareBlitz": { - name: "Flare Blitz", - effect: "The user cloaks itself in fire and charges the target. This also damages the user quite a lot. This attack may leave the target with a burn." - }, - "forcePalm": { - name: "Force Palm", - effect: "The target is attacked with a shock wave. This may also leave the target with paralysis." - }, - "auraSphere": { - name: "Aura Sphere", - effect: "The user lets loose a blast of aura power from deep within its body at the target. This attack never misses." - }, - "rockPolish": { - name: "Rock Polish", - effect: "The user polishes its body to reduce drag. This sharply raises the Speed stat." - }, - "poisonJab": { - name: "Poison Jab", - effect: "The target is stabbed with a tentacle, arm, or the like steeped in poison. This may also poison the target." - }, - "darkPulse": { - name: "Dark Pulse", - effect: "The user releases a horrible aura imbued with dark thoughts. This may also make the target flinch." - }, - "nightSlash": { - name: "Night Slash", - effect: "The user slashes the target the instant an opportunity arises. Critical hits land more easily." - }, - "aquaTail": { - name: "Aqua Tail", - effect: "The user attacks by swinging its tail as if it were a vicious wave in a raging storm." - }, - "seedBomb": { - name: "Seed Bomb", - effect: "The user slams a barrage of hard-shelled seeds down on the target from above." - }, - "airSlash": { - name: "Air Slash", - effect: "The user attacks with a blade of air that slices even the sky. This may also make the target flinch." - }, - "xScissor": { - name: "X-Scissor", - effect: "The user slashes at the target by crossing its scythes or claws as if they were a pair of scissors." - }, - "bugBuzz": { - name: "Bug Buzz", - effect: "The user generates a damaging sound wave by vibration. This may also lower the target's Sp. Def stat." - }, - "dragonPulse": { - name: "Dragon Pulse", - effect: "The target is attacked with a shock wave generated by the user's gaping mouth." - }, - "dragonRush": { - name: "Dragon Rush", - effect: "The user tackles the target while exhibiting overwhelming menace. This may also make the target flinch." - }, - "powerGem": { - name: "Power Gem", - effect: "The user attacks with a ray of light that sparkles as if it were made of gemstones." - }, - "drainPunch": { - name: "Drain Punch", - effect: "An energy-draining punch. The user's HP is restored by half the damage taken by the target." - }, - "vacuumWave": { - name: "Vacuum Wave", - effect: "The user whirls its fists to send a wave of pure vacuum at the target. This move always goes first." - }, - "focusBlast": { - name: "Focus Blast", - effect: "The user heightens its mental focus and unleashes its power. This may also lower the target's Sp. Def stat." - }, - "energyBall": { - name: "Energy Ball", - effect: "The user draws power from nature and fires it at the target. This may also lower the target's Sp. Def stat." - }, - "braveBird": { - name: "Brave Bird", - effect: "The user tucks in its wings and charges from a low altitude. This also damages the user quite a lot." - }, - "earthPower": { - name: "Earth Power", - effect: "The user makes the ground under the target erupt with power. This may also lower the target's Sp. Def stat." - }, - "switcheroo": { - name: "Switcheroo", - effect: "The user trades held items with the target faster than the eye can follow." - }, - "gigaImpact": { - name: "Giga Impact", - effect: "The user charges at the target using every bit of its power. The user can't move on the next turn." - }, - "nastyPlot": { - name: "Nasty Plot", - effect: "The user stimulates its brain by thinking bad thoughts. This sharply raises the user's Sp. Atk stat." - }, - "bulletPunch": { - name: "Bullet Punch", - effect: "The user strikes the target with tough punches as fast as bullets. This move always goes first." - }, - "avalanche": { - name: "Avalanche", - effect: "The power of this attack move is doubled if the user has been hurt by the target in the same turn." - }, - "iceShard": { - name: "Ice Shard", - effect: "The user flash-freezes chunks of ice and hurls them at the target. This move always goes first." - }, - "shadowClaw": { - name: "Shadow Claw", - effect: "The user slashes with a sharp claw made from shadows. Critical hits land more easily." - }, - "thunderFang": { - name: "Thunder Fang", - effect: "The user bites with electrified fangs. This may also make the target flinch or leave it with paralysis." - }, - "iceFang": { - name: "Ice Fang", - effect: "The user bites with cold-infused fangs. This may also make the target flinch or leave it frozen." - }, - "fireFang": { - name: "Fire Fang", - effect: "The user bites with flame-cloaked fangs. This may also make the target flinch or leave it with a burn." - }, - "shadowSneak": { - name: "Shadow Sneak", - effect: "The user extends its shadow and attacks the target from behind. This move always goes first." - }, - "mudBomb": { - name: "Mud Bomb", - effect: "The user launches a hard-packed mud ball to attack. This may also lower the target's accuracy." - }, - "psychoCut": { - name: "Psycho Cut", - effect: "The user tears at the target with blades formed by psychic power. Critical hits land more easily." - }, - "zenHeadbutt": { - name: "Zen Headbutt", - effect: "The user focuses its willpower to its head and attacks the target. This may also make the target flinch." - }, - "mirrorShot": { - name: "Mirror Shot", - effect: "The user lets loose a flash of energy at the target from its polished body. This may also lower the target's accuracy." - }, - "flashCannon": { - name: "Flash Cannon", - effect: "The user gathers all its light energy and releases it all at once. This may also lower the target's Sp. Def stat." - }, - "rockClimb": { - name: "Rock Climb", - effect: "The user attacks the target by smashing into it with incredible force. This may also confuse the target." - }, - "defog": { - name: "Defog", - effect: "A strong wind blows away the target's barriers such as Reflect or Light Screen. This also lowers the target's evasiveness." - }, - "trickRoom": { - name: "Trick Room", - effect: "The user creates a bizarre area in which slower Pokémon get to move first for five turns." - }, - "dracoMeteor": { - name: "Draco Meteor", - effect: "Comets are summoned down from the sky onto the target. The attack's recoil harshly lowers the user's Sp. Atk stat." - }, - "discharge": { - name: "Discharge", - effect: "The user strikes everything around it by letting loose a flare of electricity. This may also cause paralysis." - }, - "lavaPlume": { - name: "Lava Plume", - effect: "The user torches everything around it in an inferno of scarlet flames. This may also leave those it hits with a burn." - }, - "leafStorm": { - name: "Leaf Storm", - effect: "The user whips up a storm of leaves around the target. The attack's recoil harshly lowers the user's Sp. Atk stat." - }, - "powerWhip": { - name: "Power Whip", - effect: "The user violently whirls its vines, tentacles, or the like to harshly lash the target." - }, - "rockWrecker": { - name: "Rock Wrecker", - effect: "The user launches a huge boulder at the target to attack. The user can't move on the next turn." - }, - "crossPoison": { - name: "Cross Poison", - effect: "A slashing attack with a poisonous blade that may also poison the target. Critical hits land more easily." - }, - "gunkShot": { - name: "Gunk Shot", - effect: "The user shoots filthy garbage at the target to attack. This may also poison the target." - }, - "ironHead": { - name: "Iron Head", - effect: "The user slams the target with its steel-hard head. This may also make the target flinch." - }, - "magnetBomb": { - name: "Magnet Bomb", - effect: "The user launches steel bombs that stick to the target. This attack never misses." - }, - "stoneEdge": { - name: "Stone Edge", - effect: "The user stabs the target from below with sharpened stones. Critical hits land more easily." - }, - "captivate": { - name: "Captivate", - effect: "If any opposing Pokémon is the opposite gender of the user, it is charmed, which harshly lowers its Sp. Atk stat." - }, - "stealthRock": { - name: "Stealth Rock", - effect: "The user lays a trap of levitating stones around the opposing team. The trap hurts opposing Pokémon that switch into battle." - }, - "grassKnot": { - name: "Grass Knot", - effect: "The user snares the target with grass and trips it. The heavier the target, the greater the move's power." - }, - "chatter": { - name: "Chatter", - effect: "The user attacks the target with sound waves of deafening chatter. This confuses the target." - }, - "judgment": { - name: "Judgment", - effect: "The user releases countless shots of light at the target. This move's type varies depending on the kind of Plate the user is holding." - }, - "bugBite": { - name: "Bug Bite", - effect: "The user bites the target. If the target is holding a Berry, the user eats it and gains its effect." - }, - "chargeBeam": { - name: "Charge Beam", - effect: "The user attacks the target with an electric charge. The user may use any remaining electricity to raise its Sp. Atk stat." - }, - "woodHammer": { - name: "Wood Hammer", - effect: "The user slams its rugged body into the target to attack. This also damages the user quite a lot." - }, - "aquaJet": { - name: "Aqua Jet", - effect: "The user lunges at the target at a speed that makes it almost invisible. This move always goes first." - }, - "attackOrder": { - name: "Attack Order", - effect: "The user calls out its underlings to pummel the target. Critical hits land more easily." - }, - "defendOrder": { - name: "Defend Order", - effect: "The user calls out its underlings to shield its body, raising its Defense and Sp. Def stats." - }, - "healOrder": { - name: "Heal Order", - effect: "The user calls out its underlings to heal it. The user regains up to half of its max HP." - }, - "headSmash": { - name: "Head Smash", - effect: "The user attacks the target with a hazardous, full-power headbutt. This also damages the user terribly." - }, - "doubleHit": { - name: "Double Hit", - effect: "The user slams the target with a long tail, vines, or a tentacle. The target is hit twice in a row." - }, - "roarOfTime": { - name: "Roar of Time", - effect: "The user blasts the target with power that distorts even time. The user can't move on the next turn." - }, - "spacialRend": { - name: "Spacial Rend", - effect: "The user tears the target along with the space around it. Critical hits land more easily." - }, - "lunarDance": { - name: "Lunar Dance", - effect: "The user faints. In return, the Pokémon taking its place will have its status and HP fully restored." - }, - "crushGrip": { - name: "Crush Grip", - effect: "The target is crushed with great force. The more HP the target has left, the greater this move's power." - }, - "magmaStorm": { - name: "Magma Storm", - effect: "The target becomes trapped within a maelstrom of fire that rages for four to five turns." - }, - "darkVoid": { - name: "Dark Void", - effect: "Opposing Pokémon are dragged into a world of total darkness that makes them sleep." - }, - "seedFlare": { - name: "Seed Flare", - effect: "The user emits a shock wave from its body to attack its target. This may also harshly lower the target's Sp. Def stat." - }, - "ominousWind": { - name: "Ominous Wind", - effect: "The user blasts the target with a gust of repulsive wind. This may also raise all the user's stats at once." - }, - "shadowForce": { - name: "Shadow Force", - effect: "The user disappears, then strikes the target on the next turn. This move hits even if the target protects itself." - }, - "honeClaws": { - name: "Hone Claws", - effect: "The user sharpens its claws to boost its Attack stat and accuracy." - }, - "wideGuard": { - name: "Wide Guard", - effect: "The user and its allies are protected from wide-ranging attacks for one turn." - }, - "guardSplit": { - name: "Guard Split", - effect: "The user employs its psychic power to average its Defense and Sp. Def stats with those of the target." - }, - "powerSplit": { - name: "Power Split", - effect: "The user employs its psychic power to average its Attack and Sp. Atk stats with those of the target." - }, - "wonderRoom": { - name: "Wonder Room", - effect: "The user creates a bizarre area in which Pokémon's Defense and Sp. Def stats are swapped for five turns." - }, - "psyshock": { - name: "Psyshock", - effect: "The user materializes an odd psychic wave to attack the target. This attack does physical damage." - }, - "venoshock": { - name: "Venoshock", - effect: "The user drenches the target in a special poisonous liquid. This move's power is doubled if the target is poisoned." - }, - "autotomize": { - name: "Autotomize", - effect: "The user sheds part of its body to make itself lighter and sharply raise its Speed stat." - }, - "ragePowder": { - name: "Rage Powder", - effect: "The user scatters a cloud of irritating powder to draw attention to itself. Opposing Pokémon aim only at the user." - }, - "telekinesis": { - name: "Telekinesis", - effect: "The user makes the target float with its psychic power. The target is easier to hit for three turns." - }, - "magicRoom": { - name: "Magic Room", - effect: "The user creates a bizarre area in which Pokémon's held items lose their effects for five turns." - }, - "smackDown": { - name: "Smack Down", - effect: "The user throws a stone or similar projectile to attack the target. A flying Pokémon will fall to the ground when it's hit." - }, - "stormThrow": { - name: "Storm Throw", - effect: "The user strikes the target with a fierce blow. This attack always results in a critical hit." - }, - "flameBurst": { - name: "Flame Burst", - effect: "The user attacks the target with a bursting flame. The bursting flame damages Pokémon next to the target as well." - }, - "sludgeWave": { - name: "Sludge Wave", - effect: "The user strikes everything around it by swamping the area with a giant sludge wave. This may also poison those hit." - }, - "quiverDance": { - name: "Quiver Dance", - effect: "The user lightly performs a beautiful, mystic dance. This boosts the user's Sp. Atk, Sp. Def, and Speed stats." - }, - "heavySlam": { - name: "Heavy Slam", - effect: "The user slams into the target with its heavy body. The more the user outweighs the target, the greater the move's power." - }, - "synchronoise": { - name: "Synchronoise", - effect: "Using an odd shock wave, the user inflicts damage on any Pokémon of the same type in the area around it." - }, - "electroBall": { - name: "Electro Ball", - effect: "The user hurls an electric orb at the target. The faster the user is than the target, the greater the move's power." - }, - "soak": { - name: "Soak", - effect: "The user shoots a torrent of water at the target and changes the target's type to Water." - }, - "flameCharge": { - name: "Flame Charge", - effect: "Cloaking itself in flame, the user attacks the target. Then, building up more power, the user raises its Speed stat." - }, - "coil": { - name: "Coil", - effect: "The user coils up and concentrates. This raises its Attack and Defense stats as well as its accuracy." - }, - "lowSweep": { - name: "Low Sweep", - effect: "The user makes a swift attack on the target's legs, which lowers the target's Speed stat." - }, - "acidSpray": { - name: "Acid Spray", - effect: "The user spits fluid that works to melt the target. This harshly lowers the target's Sp. Def stat." - }, - "foulPlay": { - name: "Foul Play", - effect: "The user turns the target's power against it. The higher the target's Attack stat, the greater the damage it deals." - }, - "simpleBeam": { - name: "Simple Beam", - effect: "The user's mysterious psychic wave changes the target's Ability to Simple." - }, - "entrainment": { - name: "Entrainment", - effect: "The user dances with an odd rhythm that compels the target to mimic it, making the target's Ability the same as the user's." - }, - "afterYou": { - name: "After You", - effect: "The user helps the target and makes it use its move right after the user." - }, - "round": { - name: "Round", - effect: "The user attacks the target with a song. Others can join in the Round to increase the power of the attack." - }, - "echoedVoice": { - name: "Echoed Voice", - effect: "The user attacks the target with an echoing voice. If this move is used every turn, its power is increased." - }, - "chipAway": { - name: "Chip Away", - effect: "Looking for an opening, the user strikes consistently. The target's stat changes don't affect this attack's damage." - }, - "clearSmog": { - name: "Clear Smog", - effect: "The user attacks the target by throwing a clump of special mud. All stat changes are returned to normal." - }, - "storedPower": { - name: "Stored Power", - effect: "The user attacks the target with stored power. The more the user's stats are raised, the greater the move's power." - }, - "quickGuard": { - name: "Quick Guard", - effect: "The user protects itself and its allies from priority moves." - }, - "allySwitch": { - name: "Ally Switch", - effect: "The user teleports using a strange power and switches places with one of its allies." - }, - "scald": { - name: "Scald", - effect: "The user shoots boiling hot water at its target. This may also leave the target with a burn." - }, - "shellSmash": { - name: "Shell Smash", - effect: "The user breaks its shell, which lowers Defense and Sp. Def stats but sharply raises its Attack, Sp. Atk, and Speed stats." - }, - "healPulse": { - name: "Heal Pulse", - effect: "The user emits a healing pulse that restores the target's HP by up to half of its max HP." - }, - "hex": { - name: "Hex", - effect: "This relentless attack does massive damage to a target affected by status conditions." - }, - "skyDrop": { - name: "Sky Drop", - effect: "The user takes the target into the sky, then drops it during the next turn. The target cannot attack while in the sky." - }, - "shiftGear": { - name: "Shift Gear", - effect: "The user rotates its gears, raising its Attack stat and sharply raising its Speed stat." - }, - "circleThrow": { - name: "Circle Throw", - effect: "The target is thrown, and a different Pokémon is dragged out. In the wild, this ends a battle against a single Pokémon." - }, - "incinerate": { - name: "Incinerate", - effect: "The user attacks opposing Pokémon with fire. If a Pokémon is holding a certain item, such as a Berry, the item becomes burned up and unusable." - }, - "quash": { - name: "Quash", - effect: "The user suppresses the target and makes its move go last." - }, - "acrobatics": { - name: "Acrobatics", - effect: "The user nimbly strikes the target. The fewer held items, the higher the damage it inflicts." - }, - "reflectType": { - name: "Reflect Type", - effect: "The user reflects the target's type, making the user the same type as the target." - }, - "retaliate": { - name: "Retaliate", - effect: "The user gets revenge for a fainted ally. If an ally fainted in the previous turn, this move's power is increased." - }, - "finalGambit": { - name: "Final Gambit", - effect: "The user risks everything to attack its target. The user faints but does damage equal to its HP." - }, - "bestow": { - name: "Bestow", - effect: "The user passes its held item to the target when the target isn't holding an item." - }, - "inferno": { - name: "Inferno", - effect: "The user attacks by engulfing the target in an intense fire. This leaves the target with a burn." - }, - "waterPledge": { - name: "Water Pledge", - effect: "A column of water hits the target. When used with its fire equivalent, its power increases and a rainbow appears." - }, - "firePledge": { - name: "Fire Pledge", - effect: "A column of fire hits the target. When used with its grass equivalent, its power increases and a vast sea of fire appears." - }, - "grassPledge": { - name: "Grass Pledge", - effect: "A column of grass hits the target. When used with its water equivalent, its power increases and a vast swamp appears." - }, - "voltSwitch": { - name: "Volt Switch", - effect: "After making its attack, the user rushes back to switch places with a party Pokémon in waiting." - }, - "struggleBug": { - name: "Struggle Bug", - effect: "While resisting, the user attacks opposing Pokémon. This lowers the Sp. Atk stats of those hit." - }, - "bulldoze": { - name: "Bulldoze", - effect: "The user strikes everything around it by stomping down on the ground. This lowers the Speed stats of those hit." - }, - "frostBreath": { - name: "Frost Breath", - effect: "The user blows its cold breath on the target. This attack always results in a critical hit." - }, - "dragonTail": { - name: "Dragon Tail", - effect: "The target is knocked away, and a different Pokémon is dragged out. In the wild, this ends a battle against a single Pokémon." - }, - "workUp": { - name: "Work Up", - effect: "The user is roused, and its Attack and Sp. Atk stats increase." - }, - "electroweb": { - name: "Electroweb", - effect: "The user attacks and captures opposing Pokémon using an electric net. This lowers their Speed stats." - }, - "wildCharge": { - name: "Wild Charge", - effect: "The user shrouds itself in electricity and smashes into its target. This also damages the user a little." - }, - "drillRun": { - name: "Drill Run", - effect: "The user crashes into its target while rotating its body like a drill. Critical hits land more easily." - }, - "dualChop": { - name: "Dual Chop", - effect: "The user attacks its target by hitting it with brutal strikes. The target is hit twice in a row." - }, - "heartStamp": { - name: "Heart Stamp", - effect: "The user unleashes a vicious blow after its cute act makes the target less wary. This may also make the target flinch." - }, - "hornLeech": { - name: "Horn Leech", - effect: "The user drains the target's energy with its horns. The user's HP is restored by half the damage taken by the target." - }, - "sacredSword": { - name: "Sacred Sword", - effect: "The user attacks by slicing with a long horn. The target's stat changes don't affect this attack's damage." - }, - "razorShell": { - name: "Razor Shell", - effect: "The user cuts its target with sharp shells. This may also lower the target's Defense stat." - }, - "heatCrash": { - name: "Heat Crash", - effect: "The user slams its target with its flame-covered body. The more the user outweighs the target, the greater the move's power." - }, - "leafTornado": { - name: "Leaf Tornado", - effect: "The user attacks its target by encircling it in sharp leaves. This attack may also lower the target's accuracy." - }, - "steamroller": { - name: "Steamroller", - effect: "The user crushes its target by rolling over the target with its rolled-up body. This may also make the target flinch." - }, - "cottonGuard": { - name: "Cotton Guard", - effect: "The user protects itself by wrapping its body in soft cotton, which drastically raises the user's Defense stat." - }, - "nightDaze": { - name: "Night Daze", - effect: "The user lets loose a pitch-black shock wave at its target. This may also lower the target's accuracy." - }, - "psystrike": { - name: "Psystrike", - effect: "The user materializes an odd psychic wave to attack the target. This attack does physical damage." - }, - "tailSlap": { - name: "Tail Slap", - effect: "The user attacks by striking the target with its hard tail. It hits the target two to five times in a row." - }, - "hurricane": { - name: "Hurricane", - effect: "The user attacks by wrapping its opponent in a fierce wind that flies up into the sky. This may also confuse the target." - }, - "headCharge": { - name: "Head Charge", - effect: "The user charges its head into its target, using its powerful guard hair. This also damages the user a little." - }, - "gearGrind": { - name: "Gear Grind", - effect: "The user attacks by throwing steel gears at its target twice." - }, - "searingShot": { - name: "Searing Shot", - effect: "The user torches everything around it in an inferno of scarlet flames. This may also leave those it hits with a burn." - }, - "technoBlast": { - name: "Techno Blast", - effect: "The user fires a beam of light at its target. The move's type changes depending on the Drive the user holds." - }, - "relicSong": { - name: "Relic Song", - effect: "The user sings an ancient song and attacks by appealing to the hearts of the listening opposing Pokémon. This may also induce sleep." - }, - "secretSword": { - name: "Secret Sword", - effect: "The user cuts with its long horn. The odd power contained in the horn does physical damage to the target." - }, - "glaciate": { - name: "Glaciate", - effect: "The user attacks by blowing freezing cold air at opposing Pokémon. This lowers their Speed stats." - }, - "boltStrike": { - name: "Bolt Strike", - effect: "The user surrounds itself with a great amount of electricity and charges its target. This may also leave the target with paralysis." - }, - "blueFlare": { - name: "Blue Flare", - effect: "The user attacks by engulfing the target in an intense, yet beautiful, blue flame. This may also leave the target with a burn." - }, - "fieryDance": { - name: "Fiery Dance", - effect: "Cloaked in flames, the user attacks the target by dancing and flapping its wings. This may also raise the user's Sp. Atk stat." - }, - "freezeShock": { - name: "Freeze Shock", - effect: "On the second turn, the user hits the target with electrically charged ice. This may also leave the target with paralysis." - }, - "iceBurn": { - name: "Ice Burn", - effect: "On the second turn, an ultracold, freezing wind surrounds the target. This may leave the target with a burn." - }, - "snarl": { - name: "Snarl", - effect: "The user yells as if it's ranting about something, which lowers the Sp. Atk stats of opposing Pokémon." - }, - "icicleCrash": { - name: "Icicle Crash", - effect: "The user attacks by harshly dropping large icicles onto the target. This may also make the target flinch." - }, - "vCreate": { - name: "V-create", - effect: "With a hot flame on its forehead, the user hurls itself at its target. This lowers the user's Defense, Sp. Def, and Speed stats." - }, - "fusionFlare": { - name: "Fusion Flare", - effect: "The user brings down a giant flame. This move's power is increased when influenced by an enormous lightning bolt." - }, - "fusionBolt": { - name: "Fusion Bolt", - effect: "The user throws down a giant lightning bolt. This move's power is increased when influenced by an enormous flame." - }, - "flyingPress": { - name: "Flying Press", - effect: "The user dives down onto the target from the sky. This move is Fighting and Flying type simultaneously." - }, - "matBlock": { - name: "Mat Block", - effect: "Using a pulled-up mat as a shield, the user protects itself and its allies from damaging moves. This does not stop status moves." - }, - "belch": { - name: "Belch", - effect: "The user lets out a damaging belch at the target. The user must eat a held Berry to use this move." - }, - "rototiller": { - name: "Rototiller", - effect: "Tilling the soil, the user makes it easier for plants to grow. This raises the Attack and Sp. Atk stats of Grass-type Pokémon." - }, - "stickyWeb": { - name: "Sticky Web", - effect: "The user weaves a sticky net around the opposing team, which lowers their Speed stats upon switching into battle." - }, - "fellStinger": { - name: "Fell Stinger", - effect: "When the user knocks out a target with this move, the user's Attack stat rises drastically." - }, - "phantomForce": { - name: "Phantom Force", - effect: "The user vanishes somewhere, then strikes the target on the next turn. This move hits even if the target protects itself." - }, - "trickOrTreat": { - name: "Trick-or-Treat", - effect: "The user takes the target trick-or-treating. This adds Ghost type to the target's type." - }, - "nobleRoar": { - name: "Noble Roar", - effect: "Letting out a noble roar, the user intimidates the target and lowers its Attack and Sp. Atk stats." - }, - "ionDeluge": { - name: "Ion Deluge", - effect: "The user disperses electrically charged particles, which changes Normal-type moves to Electric-type moves." - }, - "parabolicCharge": { - name: "Parabolic Charge", - effect: "The user attacks everything around it. The user's HP is restored by half the damage taken by those hit." - }, - "forestsCurse": { - name: "Forest's Curse", - effect: "The user puts a forest curse on the target. The target is now Grass type as well." - }, - "petalBlizzard": { - name: "Petal Blizzard", - effect: "The user stirs up a violent petal blizzard and attacks everything around it." - }, - "freezeDry": { - name: "Freeze-Dry", - effect: "The user rapidly cools the target. This may also leave the target frozen. This move is super effective on Water types." - }, - "disarmingVoice": { - name: "Disarming Voice", - effect: "Letting out a charming cry, the user does emotional damage to opposing Pokémon. This attack never misses." - }, - "partingShot": { - name: "Parting Shot", - effect: "With a parting threat, the user lowers the target's Attack and Sp. Atk stats. Then it switches with a party Pokémon." - }, - "topsyTurvy": { - name: "Topsy-Turvy", - effect: "All stat changes affecting the target turn topsy-turvy and become the opposite of what they were." - }, - "drainingKiss": { - name: "Draining Kiss", - effect: "The user steals the target's HP with a kiss. The user's HP is restored by over half of the damage taken by the target." - }, - "craftyShield": { - name: "Crafty Shield", - effect: "The user protects itself and its allies from status moves with a mysterious power. This does not stop moves that do damage." - }, - "flowerShield": { - name: "Flower Shield", - effect: "The user raises the Defense stats of all Grass-type Pokémon in battle with a mysterious power." - }, - "grassyTerrain": { - name: "Grassy Terrain", - effect: "The user turns the ground to grass for five turns. This restores the HP of Pokémon on the ground a little every turn and powers up Grass-type moves." - }, - "mistyTerrain": { - name: "Misty Terrain", - effect: "This protects Pokémon on the ground from status conditions and halves damage from Dragon-type moves for five turns." - }, - "electrify": { - name: "Electrify", - effect: "If the target is electrified before it uses a move during that turn, the target's move becomes Electric type." - }, - "playRough": { - name: "Play Rough", - effect: "The user plays rough with the target and attacks it. This may also lower the target's Attack stat." - }, - "fairyWind": { - name: "Fairy Wind", - effect: "The user stirs up a fairy wind and strikes the target with it." - }, - "moonblast": { - name: "Moonblast", - effect: "Borrowing the power of the moon, the user attacks the target. This may also lower the target's Sp. Atk stat." - }, - "boomburst": { - name: "Boomburst", - effect: "The user attacks everything around it with the destructive power of a terrible, explosive sound." - }, - "fairyLock": { - name: "Fairy Lock", - effect: "By locking down the battlefield, the user keeps all Pokémon from fleeing during the next turn." - }, - "kingsShield": { - name: "King's Shield", - effect: "The user takes a defensive stance while it protects itself from damage. It also lowers the Attack stat of any attacker that makes direct contact." - }, - "playNice": { - name: "Play Nice", - effect: "The user and the target become friends, and the target loses its will to fight. This lowers the target's Attack stat." - }, - "confide": { - name: "Confide", - effect: "The user tells the target a secret, and the target loses its ability to concentrate. This lowers the target's Sp. Atk stat." - }, - "diamondStorm": { - name: "Diamond Storm", - effect: "The user whips up a storm of diamonds to damage opposing Pokémon. This may also sharply raise the user's Defense stat." - }, - "steamEruption": { - name: "Steam Eruption", - effect: "The user immerses the target in superheated steam. This may also leave the target with a burn." - }, - "hyperspaceHole": { - name: "Hyperspace Hole", - effect: "Using a hyperspace hole, the user appears right next to the target and strikes. This also hits a target using a move such as Protect or Detect." - }, - "waterShuriken": { - name: "Water Shuriken", - effect: "The user hits the target with throwing stars two to five times in a row. This move always goes first." - }, - "mysticalFire": { - name: "Mystical Fire", - effect: "The user attacks by breathing a special, hot fire. This also lowers the target's Sp. Atk stat." - }, - "spikyShield": { - name: "Spiky Shield", - effect: "In addition to protecting the user from attacks, this move also damages any attacker that makes direct contact." - }, - "aromaticMist": { - name: "Aromatic Mist", - effect: "The user raises the Sp. Def stat of an ally Pokémon by using a mysterious aroma." - }, - "eerieImpulse": { - name: "Eerie Impulse", - effect: "The user's body generates an eerie impulse. Exposing the target to it harshly lowers the target's Sp. Atk stat." - }, - "venomDrench": { - name: "Venom Drench", - effect: "Opposing Pokémon are drenched in an odd poisonous liquid. This lowers the Attack, Sp. Atk, and Speed stats of a poisoned target." - }, - "powder": { - name: "Powder", - effect: "The user covers the target in a combustible powder. If the target uses a Fire-type move, the powder explodes and damages the target." - }, - "geomancy": { - name: "Geomancy", - effect: "The user absorbs energy and sharply raises its Sp. Atk, Sp. Def, and Speed stats on the next turn." - }, - "magneticFlux": { - name: "Magnetic Flux", - effect: "The user manipulates magnetic fields, which raises the Defense and Sp. Def stats of ally Pokémon with the Plus or Minus Ability." - }, - "happyHour": { - name: "Happy Hour", - effect: "Using Happy Hour doubles the amount of prize money received after battle." - }, - "electricTerrain": { - name: "Electric Terrain", - effect: "The user electrifies the ground for five turns, powering up Electric-type moves. Pokémon on the ground no longer fall asleep." - }, - "dazzlingGleam": { - name: "Dazzling Gleam", - effect: "The user damages opposing Pokémon by emitting a powerful flash." - }, - "celebrate": { - name: "Celebrate", - effect: "The Pokémon congratulates you on your special day!" - }, - "holdHands": { - name: "Hold Hands", - effect: "The user and an ally hold hands. This makes them very happy." - }, - "babyDollEyes": { - name: "Baby-Doll Eyes", - effect: "The user stares at the target with its baby-doll eyes, which lowers the target's Attack stat. This move always goes first." - }, - "nuzzle": { - name: "Nuzzle", - effect: "The user attacks by nuzzling its electrified cheeks against the target. This also leaves the target with paralysis." - }, - "holdBack": { - name: "Hold Back", - effect: "The user holds back when it attacks, and the target is left with at least 1 HP." - }, - "infestation": { - name: "Infestation", - effect: "The target is infested and attacked for four to five turns. The target can't flee during this time." - }, - "powerUpPunch": { - name: "Power-Up Punch", - effect: "Striking opponents over and over makes the user's fists harder. Hitting a target raises the Attack stat." - }, - "oblivionWing": { - name: "Oblivion Wing", - effect: "The user absorbs its target's HP. The user's HP is restored by over half of the damage taken by the target." - }, - "thousandArrows": { - name: "Thousand Arrows", - effect: "This move also hits opposing Pokémon that are in the air. Those Pokémon are knocked down to the ground." - }, - "thousandWaves": { - name: "Thousand Waves", - effect: "The user attacks with a wave that crawls along the ground. Those it hits can't flee from battle." - }, - "landsWrath": { - name: "Land's Wrath", - effect: "The user gathers the energy of the land and focuses that power on opposing Pokémon to damage them." - }, - "lightOfRuin": { - name: "Light of Ruin", - effect: "Drawing power from the Eternal Flower, the user fires a powerful beam of light. This also damages the user quite a lot." - }, - "originPulse": { - name: "Origin Pulse", - effect: "The user attacks opposing Pokémon with countless beams of light that glow a deep and brilliant blue." - }, - "precipiceBlades": { - name: "Precipice Blades", - effect: "The user attacks opposing Pokémon by manifesting the power of the land in fearsome blades of stone." - }, - "dragonAscent": { - name: "Dragon Ascent", - effect: "After soaring upward, the user attacks its target by dropping out of the sky at high speeds. But it lowers its own Defense and Sp. Def stats in the process." - }, - "hyperspaceFury": { - name: "Hyperspace Fury", - effect: "Using its many arms, the user unleashes a barrage of attacks that ignore the effects of moves like Protect and Detect. But the user's Defense stat falls." - }, - "breakneckBlitzPhysical": { - name: "Breakneck Blitz", - effect: "The user builds up its momentum using its Z-Power and crashes into the target at full speed. The power varies, depending on the original move." - }, - "breakneckBlitzSpecial": { - name: "Breakneck Blitz", - effect: "Dummy Data" - }, - "allOutPummelingPhysical": { - name: "All-Out Pummeling", - effect: "The user rams an energy orb created by its Z-Power into the target with full force. The power varies, depending on the original move." - }, - "allOutPummelingSpecial": { - name: "All-Out Pummeling", - effect: "Dummy Data" - }, - "supersonicSkystrikePhysical": { - name: "Supersonic Skystrike", - effect: "The user soars up with its Z-Power and plummets toward the target at full speed. The power varies, depending on the original move." - }, - "supersonicSkystrikeSpecial": { - name: "Supersonic Skystrike", - effect: "Dummy Data" - }, - "acidDownpourPhysical": { - name: "Acid Downpour", - effect: "The user creates a poisonous swamp using its Z-Power and sinks the target into it at full force. The power varies, depending on the original move." - }, - "acidDownpourSpecial": { - name: "Acid Downpour", - effect: "Dummy Data" - }, - "tectonicRagePhysical": { - name: "Tectonic Rage", - effect: "The user burrows deep into the ground and slams into the target with the full force of its Z-Power. The power varies, depending on the original move." - }, - "tectonicRageSpecial": { - name: "Tectonic Rage", - effect: "Dummy Data" - }, - "continentalCrushPhysical": { - name: "Continental Crush", - effect: "The user summons a huge rock mountain using its Z-Power and drops it onto the target with full force. The power varies, depending on the original move." - }, - "continentalCrushSpecial": { - name: "Continental Crush", - effect: "Dummy Data" - }, - "savageSpinOutPhysical": { - name: "Savage Spin-Out", - effect: "The user binds the target with full force with threads of silk that the user spits using its Z-Power. The power varies, depending on the original move." - }, - "savageSpinOutSpecial": { - name: "Savage Spin-Out", - effect: "Dummy Data" - }, - "neverEndingNightmarePhysical": { - name: "Never-Ending Nightmare", - effect: "Deep-seated grudges summoned by the user's Z-Power trap the target. The power varies, depending on the original move." - }, - "neverEndingNightmareSpecial": { - name: "Never-Ending Nightmare", - effect: "Dummy Data" - }, - "corkscrewCrashPhysical": { - name: "Corkscrew Crash", - effect: "The user spins very fast and rams into the target with the full force of its Z-Power. The power varies, depending on the original move." - }, - "corkscrewCrashSpecial": { - name: "Corkscrew Crash", - effect: "Dummy Data" - }, - "infernoOverdrivePhysical": { - name: "Inferno Overdrive", - effect: "The user breathes a stream of intense fire toward the target with the full force of its Z-Power. The power varies depending on the original move." - }, - "infernoOverdriveSpecial": { - name: "Inferno Overdrive", - effect: "Dummy Data" - }, - "hydroVortexPhysical": { - name: "Hydro Vortex", - effect: "The user creates a huge whirling current using its Z-Power to swallow the target with full force. The power varies, depending on the original move." - }, - "hydroVortexSpecial": { - name: "Hydro Vortex", - effect: "Dummy Data" - }, - "bloomDoomPhysical": { - name: "Bloom Doom", - effect: "The user collects energy from plants using its Z-Power and attacks the target with full force. The power varies, depending on the original move." - }, - "bloomDoomSpecial": { - name: "Bloom Doom", - effect: "Dummy Data" - }, - "gigavoltHavocPhysical": { - name: "Gigavolt Havoc", - effect: "The user hits the target with a powerful electric current collected by its Z-Power. The power varies, depending on the original move." - }, - "gigavoltHavocSpecial": { - name: "Gigavolt Havoc", - effect: "Dummy Data" - }, - "shatteredPsychePhysical": { - name: "Shattered Psyche", - effect: "The user controls the target with its Z-Power and hurts the target with full force. The power varies, depending on the original move." - }, - "shatteredPsycheSpecial": { - name: "Shattered Psyche", - effect: "Dummy Data" - }, - "subzeroSlammerPhysical": { - name: "Subzero Slammer", - effect: "The user dramatically drops the temperature using its Z-Power and freezes the target with full force. The power varies, depending on the original move." - }, - "subzeroSlammerSpecial": { - name: "Subzero Slammer", - effect: "Dummy Data" - }, - "devastatingDrakePhysical": { - name: "Devastating Drake", - effect: "The user materializes its aura using its Z-Power and attacks the target with full force. The power varies, depending on the original move." - }, - "devastatingDrakeSpecial": { - name: "Devastating Drake", - effect: "Dummy Data" - }, - "blackHoleEclipsePhysical": { - name: "Black Hole Eclipse", - effect: "The user gathers dark energy using its Z-Power and sucks the target into it. The power varies, depending on the original move." - }, - "blackHoleEclipseSpecial": { - name: "Black Hole Eclipse", - effect: "Dummy Data" - }, - "twinkleTacklePhysical": { - name: "Twinkle Tackle", - effect: "The user creates a very charming space using its Z-Power and totally toys with the target. The power varies, depending on the original move." - }, - "twinkleTackleSpecial": { - name: "Twinkle Tackle", - effect: "Dummy Data" - }, - "catastropika": { - name: "Catastropika", - effect: "The user, Pikachu, surrounds itself with the maximum amount of electricity using its Z-Power and pounces on its target with full force." - }, - "shoreUp": { - name: "Shore Up", - effect: "The user regains up to half of its max HP. It restores more HP in a sandstorm." - }, - "firstImpression": { - name: "First Impression", - effect: "Although this move has great power, it only works the first turn each time the user enters battle." - }, - "banefulBunker": { - name: "Baneful Bunker", - effect: "In addition to protecting the user from attacks, this move also poisons any attacker that makes direct contact." - }, - "spiritShackle": { - name: "Spirit Shackle", - effect: "The user attacks while simultaneously stitching the target's shadow to the ground to prevent the target from escaping." - }, - "darkestLariat": { - name: "Darkest Lariat", - effect: "The user swings both arms and hits the target. The target's stat changes don't affect this attack's damage." - }, - "sparklingAria": { - name: "Sparkling Aria", - effect: "The user bursts into song, emitting many bubbles. Any Pokémon suffering from a burn will be healed by the touch of these bubbles." - }, - "iceHammer": { - name: "Ice Hammer", - effect: "The user swings and hits with its strong, heavy fist. It lowers the user's Speed, however." - }, - "floralHealing": { - name: "Floral Healing", - effect: "The user restores the target's HP by up to half of its max HP. It restores more HP when the terrain is grass." - }, - "highHorsepower": { - name: "High Horsepower", - effect: "The user fiercely attacks the target using its entire body." - }, - "strengthSap": { - name: "Strength Sap", - effect: "The user restores its HP by the same amount as the target's Attack stat. It also lowers the target's Attack stat." - }, - "solarBlade": { - name: "Solar Blade", - effect: "In this two-turn attack, the user gathers light and fills a blade with the light's energy, attacking the target on the next turn." - }, - "leafage": { - name: "Leafage", - effect: "The user attacks by pelting the target with leaves." - }, - "spotlight": { - name: "Spotlight", - effect: "The user shines a spotlight on the target so that only the target will be attacked during the turn." - }, - "toxicThread": { - name: "Toxic Thread", - effect: "The user shoots poisonous threads to poison the target and lower the target's Speed stat." - }, - "laserFocus": { - name: "Laser Focus", - effect: "The user concentrates intensely. The attack on the next turn always results in a critical hit." - }, - "gearUp": { - name: "Gear Up", - effect: "The user engages its gears to raise the Attack and Sp. Atk stats of ally Pokémon with the Plus or Minus Ability." - }, - "throatChop": { - name: "Throat Chop", - effect: "The user attacks the target's throat, and the resultant suffering prevents the target from using moves that emit sound for two turns." - }, - "pollenPuff": { - name: "Pollen Puff", - effect: "The user attacks the enemy with a pollen puff that explodes. If the target is an ally, it gives the ally a pollen puff that restores its HP instead." - }, - "anchorShot": { - name: "Anchor Shot", - effect: "The user entangles the target with its anchor chain while attacking. The target becomes unable to flee." - }, - "psychicTerrain": { - name: "Psychic Terrain", - effect: "This protects Pokémon on the ground from priority moves and powers up Psychic-type moves for five turns." - }, - "lunge": { - name: "Lunge", - effect: "The user makes a lunge at the target, attacking with full force. This also lowers the target's Attack stat." - }, - "fireLash": { - name: "Fire Lash", - effect: "The user strikes the target with a burning lash. This also lowers the target's Defense stat." - }, - "powerTrip": { - name: "Power Trip", - effect: "The user boasts its strength and attacks the target. The more the user's stats are raised, the greater the move's power." - }, - "burnUp": { - name: "Burn Up", - effect: "To inflict massive damage, the user burns itself out. After using this move, the user will no longer be Fire type." - }, - "speedSwap": { - name: "Speed Swap", - effect: "The user exchanges Speed stats with the target." - }, - "smartStrike": { - name: "Smart Strike", - effect: "The user stabs the target with a sharp horn. This attack never misses." - }, - "purify": { - name: "Purify", - effect: "The user heals the target's status condition. If the move succeeds, it also restores the user's own HP." - }, - "revelationDance": { - name: "Revelation Dance", - effect: "The user attacks the target by dancing very hard. The user's type determines the type of this move." - }, - "coreEnforcer": { - name: "Core Enforcer", - effect: "If the Pokémon the user has inflicted damage on have already used their moves, this move eliminates the effect of the target's Ability." - }, - "tropKick": { - name: "Trop Kick", - effect: "The user lands an intense kick of tropical origins on the target. This also lowers the target's Attack stat." - }, - "instruct": { - name: "Instruct", - effect: "The user instructs the target to use the target's last move again." - }, - "beakBlast": { - name: "Beak Blast", - effect: "The user first heats up its beak, and then it attacks the target. Making direct contact with the Pokémon while it's heating up its beak results in a burn." - }, - "clangingScales": { - name: "Clanging Scales", - effect: "The user rubs the scales on its entire body and makes a huge noise to attack opposing Pokémon. The user's Defense stat goes down after the attack." - }, - "dragonHammer": { - name: "Dragon Hammer", - effect: "The user uses its body like a hammer to attack the target and inflict damage." - }, - "brutalSwing": { - name: "Brutal Swing", - effect: "The user swings its body around violently to inflict damage on everything in its vicinity." - }, - "auroraVeil": { - name: "Aurora Veil", - effect: "This move reduces damage from physical and special moves for five turns. This can be used only when it is snowing." - }, - "sinisterArrowRaid": { - name: "Sinister Arrow Raid", - effect: "The user, Decidueye, creates countless arrows using its Z-Power and shoots the target with full force." - }, - "maliciousMoonsault": { - name: "Malicious Moonsault", - effect: "The user, Incineroar, strengthens its body using its Z-Power and crashes into the target with full force." - }, - "oceanicOperetta": { - name: "Oceanic Operetta", - effect: "The user, Primarina, summons a massive amount of water using its Z-Power and attacks the target with full force." - }, - "guardianOfAlola": { - name: "Guardian of Alola", - effect: "The user, the Land Spirit Pokémon, obtains Alola's energy using its Z-Power and attacks the target with full force. This reduces the target's HP greatly." - }, - "soulStealing7StarStrike": { - name: "Soul-Stealing 7-Star Strike", - effect: "After obtaining Z-Power, the user, Marshadow, punches and kicks the target consecutively with full force." - }, - "stokedSparksurfer": { - name: "Stoked Sparksurfer", - effect: "After obtaining Z-Power, the user, Alolan Raichu, attacks the target with full force. This move leaves the target with paralysis." - }, - "pulverizingPancake": { - name: "Pulverizing Pancake", - effect: "Z-Power brings out the true capabilities of the user, Snorlax. The Pokémon moves its enormous body energetically and attacks the target with full force." - }, - "extremeEvoboost": { - name: "Extreme Evoboost", - effect: "After obtaining Z-Power, the user, Eevee, gets energy from its evolved friends and boosts its stats sharply." - }, - "genesisSupernova": { - name: "Genesis Supernova", - effect: "After obtaining Z-Power, the user, Mew, attacks the target with full force. The terrain will be charged with psychic energy." - }, - "shellTrap": { - name: "Shell Trap", - effect: "The user sets a shell trap. If the user is hit by a physical move, the trap will explode and inflict damage on opposing Pokémon." - }, - "fleurCannon": { - name: "Fleur Cannon", - effect: "The user unleashes a strong beam. The attack's recoil harshly lowers the user's Sp. Atk stat." - }, - "psychicFangs": { - name: "Psychic Fangs", - effect: "The user bites the target with its psychic capabilities. This can also destroy Light Screen and Reflect." - }, - "stompingTantrum": { - name: "Stomping Tantrum", - effect: "Driven by frustration, the user attacks the target. If the user's previous move has failed, the power of this move doubles." - }, - "shadowBone": { - name: "Shadow Bone", - effect: "The user attacks by beating the target with a bone that contains a spirit. This may also lower the target's Defense stat." - }, - "accelerock": { - name: "Accelerock", - effect: "The user smashes into the target at high speed. This move always goes first." - }, - "liquidation": { - name: "Liquidation", - effect: "The user slams into the target using a full-force blast of water. This may also lower the target's Defense stat." - }, - "prismaticLaser": { - name: "Prismatic Laser", - effect: "The user shoots powerful lasers using the power of a prism. The user can't move on the next turn." - }, - "spectralThief": { - name: "Spectral Thief", - effect: "The user hides in the target's shadow, steals the target's stat boosts, and then attacks." - }, - "sunsteelStrike": { - name: "Sunsteel Strike", - effect: "The user slams into the target with the force of a meteor. This move can be used on the target regardless of its Abilities." - }, - "moongeistBeam": { - name: "Moongeist Beam", - effect: "The user emits a sinister ray to attack the target. This move can be used on the target regardless of its Abilities." - }, - "tearfulLook": { - name: "Tearful Look", - effect: "The user gets teary eyed to make the target lose its combative spirit. This lowers the target's Attack and Sp. Atk stats." - }, - "zingZap": { - name: "Zing Zap", - effect: "A strong electric blast crashes down on the target, giving it an electric shock. This may also make the target flinch." - }, - "naturesMadness": { - name: "Nature's Madness", - effect: "The user hits the target with the force of nature. It halves the target's HP." - }, - "multiAttack": { - name: "Multi-Attack", - effect: "Cloaking itself in high energy, the user slams into the target. The memory held determines the move's type." - }, - "tenMillionVoltThunderbolt": { - name: "10,000,000 Volt Thunderbolt", - effect: "The user, Pikachu wearing a cap, powers up a jolt of electricity using its Z-Power and unleashes it. Critical hits land more easily." - }, - "mindBlown": { - name: "Mind Blown", - effect: "The user attacks everything around it by causing its own head to explode. This also damages the user." - }, - "plasmaFists": { - name: "Plasma Fists", - effect: "The user attacks with electrically charged fists. This move changes Normal-type moves to Electric-type moves." - }, - "photonGeyser": { - name: "Photon Geyser", - effect: "The user attacks a target with a pillar of light. This move inflicts Attack or Sp. Atk damage—whichever stat is higher for the user." - }, - "lightThatBurnsTheSky": { - name: "Light That Burns the Sky", - effect: "This attack inflicts Attack or Sp. Atk damage—whichever stat is higher for the user, Necrozma. This move ignores the target's Ability." - }, - "searingSunrazeSmash": { - name: "Searing Sunraze Smash", - effect: "After obtaining Z-Power, the user, Solgaleo, attacks the target with full force. This move can ignore the effect of the target's Ability." - }, - "menacingMoonrazeMaelstrom": { - name: "Menacing Moonraze Maelstrom", - effect: "After obtaining Z-Power, the user, Lunala, attacks the target with full force. This move can ignore the effect of the target's Ability." - }, - "letsSnuggleForever": { - name: "Let's Snuggle Forever", - effect: "After obtaining Z-Power, the user, Mimikyu, punches the target with full force." - }, - "splinteredStormshards": { - name: "Splintered Stormshards", - effect: "After obtaining Z-Power, the user, Lycanroc, attacks the target with full force. This move negates the effect on the battlefield." - }, - "clangorousSoulblaze": { - name: "Clangorous Soulblaze", - effect: "After obtaining Z-Power, the user, Kommo-o, attacks the opposing Pokémon with full force. This move boosts the user's stats." - }, - "zippyZap": { - name: "Zippy Zap", - effect: "The user attacks the target with bursts of electricity at high speed. This move always goes first and raises the user's evasiveness." - }, - "splishySplash": { - name: "Splishy Splash", - effect: "The user charges a huge wave with electricity and hits the opposing Pokémon with the wave. This may also leave the opposing Pokémon with paralysis." - }, - "floatyFall": { - name: "Floaty Fall", - effect: "The user floats in the air, and then dives at a steep angle to attack the target. This may also make the target flinch." - }, - "pikaPapow": { - name: "Pika Papow", - effect: "The more Pikachu loves its Trainer, the greater the move's power. It never misses." - }, - "bouncyBubble": { - name: "Bouncy Bubble", - effect: "The user attacks by shooting water bubbles at the target. It then absorbs water and restores its HP by the damage taken by the target." - }, - "buzzyBuzz": { - name: "Buzzy Buzz", - effect: "The user shoots a jolt of electricity to attack the target. This also leaves the target with paralysis." - }, - "sizzlySlide": { - name: "Sizzly Slide", - effect: "The user cloaks itself in fire and charges at the target. This also leaves the target with a burn." - }, - "glitzyGlow": { - name: "Glitzy Glow", - effect: "The user bombards the target with telekinetic force. A wondrous wall of light is put up to weaken the power of the opposing Pokémon's special moves." - }, - "baddyBad": { - name: "Baddy Bad", - effect: "The user acts bad and attacks the target. A wondrous wall of light is put up to weaken the power of the opposing Pokémon's physical moves." - }, - "sappySeed": { - name: "Sappy Seed", - effect: "The user grows a gigantic stalk that scatters seeds to attack the target. The seeds drain the target's HP every turn." - }, - "freezyFrost": { - name: "Freezy Frost", - effect: "The user attacks with a crystal made of cold frozen haze. It eliminates every stat change among all the Pokémon engaged in battle." - }, - "sparklySwirl": { - name: "Sparkly Swirl", - effect: "The user attacks the target by wrapping it with a whirlwind of an overpowering scent. This also heals all status conditions of the user's party." - }, - "veeveeVolley": { - name: "Veevee Volley", - effect: "The more Eevee loves its Trainer, the greater the move's power. It never misses." - }, - "doubleIronBash": { - name: "Double Iron Bash", - effect: "The user rotates, centering the hex nut in its chest, and then strikes with its arms twice in a row. This may also make the target flinch." - }, - "maxGuard": { - name: "Max Guard", - effect: "This move enables the user to protect itself from all attacks. Its chance of failing rises if it is used in succession." - }, - "dynamaxCannon": { - name: "Dynamax Cannon", - effect: "The user unleashes a strong beam from its core. Deals up to twice the damage if the target is overly leveled." - }, - "snipeShot": { - name: "Snipe Shot", - effect: "The user ignores the effects of opposing Pokémon's moves and Abilities that draw in moves, allowing this move to hit the chosen target." - }, - "jawLock": { - name: "Jaw Lock", - effect: "This move prevents the user and the target from switching out until either of them faints. The effect goes away if either of the Pokémon leaves the field." - }, - "stuffCheeks": { - name: "Stuff Cheeks", - effect: "The user eats its held Berry, then sharply raises its Defense stat." - }, - "noRetreat": { - name: "No Retreat", - effect: "This move raises all the user's stats but prevents the user from switching out or fleeing." - }, - "tarShot": { - name: "Tar Shot", - effect: "The user pours sticky tar over the target, lowering the target's Speed stat. The target becomes weaker to Fire-type moves." - }, - "magicPowder": { - name: "Magic Powder", - effect: "The user scatters a cloud of magic powder that changes the target to Psychic type." - }, - "dragonDarts": { - name: "Dragon Darts", - effect: "The user attacks twice using Dreepy. If there are two targets, this move hits each target once." - }, - "teatime": { - name: "Teatime", - effect: "The user has teatime with all the Pokémon in the battle. Each Pokémon eats its held Berry." - }, - "octolock": { - name: "Octolock", - effect: "The user locks the target in and prevents it from fleeing. This move also lowers the target's Defense and Sp. Def every turn." - }, - "boltBeak": { - name: "Bolt Beak", - effect: "The user stabs the target with its electrified beak. If the user attacks before the target, the power of this move is doubled." - }, - "fishiousRend": { - name: "Fishious Rend", - effect: "The user rends the target with its hard gills. If the user attacks before the target, the power of this move is doubled." - }, - "courtChange": { - name: "Court Change", - effect: "With its mysterious power, the user swaps the effects on either side of the field." - }, - "maxFlare": { - name: "Max Flare", - effect: "This is a Fire-type attack Dynamax Pokémon use. The user intensifies the sun for five turns." - }, - "maxFlutterby": { - name: "Max Flutterby", - effect: "This is a Bug-type attack Dynamax Pokémon use. This lowers the target's Sp. Atk stat." - }, - "maxLightning": { - name: "Max Lightning", - effect: "This is an Electric-type attack Dynamax Pokémon use. The user turns the ground into Electric Terrain for five turns." - }, - "maxStrike": { - name: "Max Strike", - effect: "This is a Normal-type attack Dynamax Pokémon use. This lowers the target's Speed stat." - }, - "maxKnuckle": { - name: "Max Knuckle", - effect: "This is a Fighting-type attack Dynamax Pokémon use. This raises ally Pokémon's Attack stats." - }, - "maxPhantasm": { - name: "Max Phantasm", - effect: "This is a Ghost-type attack Dynamax Pokémon use. This lowers the target's Defense stat." - }, - "maxHailstorm": { - name: "Max Hailstorm", - effect: "This is an Ice-type attack Dynamax Pokémon use. The user summons a hailstorm lasting five turns." - }, - "maxOoze": { - name: "Max Ooze", - effect: "This is a Poison-type attack Dynamax Pokémon use. This raises ally Pokémon's Sp. Atk stats." - }, - "maxGeyser": { - name: "Max Geyser", - effect: "This is a Water-type attack Dynamax Pokémon use. The user summons a heavy rain that falls for five turns." - }, - "maxAirstream": { - name: "Max Airstream", - effect: "This is a Flying-type attack Dynamax Pokémon use. This raises ally Pokémon's Speed stats." - }, - "maxStarfall": { - name: "Max Starfall", - effect: "This is a Fairy-type attack Dynamax Pokémon use. The user turns the ground into Misty Terrain for five turns." - }, - "maxWyrmwind": { - name: "Max Wyrmwind", - effect: "This is a Dragon-type attack Dynamax Pokémon use. This lowers the target's Attack stat." - }, - "maxMindstorm": { - name: "Max Mindstorm", - effect: "This is a Psychic-type attack Dynamax Pokémon use. The user turns the ground into Psychic Terrain for five turns." - }, - "maxRockfall": { - name: "Max Rockfall", - effect: "This is a Rock-type attack Dynamax Pokémon use. The user summons a sandstorm lasting five turns." - }, - "maxQuake": { - name: "Max Quake", - effect: "This is a Ground-type attack Dynamax Pokémon use. This raises ally Pokémon's Sp. Def stats." - }, - "maxDarkness": { - name: "Max Darkness", - effect: "This is a Dark-type attack Dynamax Pokémon use. This lowers the target's Sp. Def stat." - }, - "maxOvergrowth": { - name: "Max Overgrowth", - effect: "This is a Grass-type attack Dynamax Pokémon use. The user turns the ground into Grassy Terrain for five turns." - }, - "maxSteelspike": { - name: "Max Steelspike", - effect: "This is a Steel-type attack Dynamax Pokémon use. This raises ally Pokémon's Defense stats." - }, - "clangorousSoul": { - name: "Clangorous Soul", - effect: "The user raises all its stats by using some of its HP." - }, - "bodyPress": { - name: "Body Press", - effect: "The user attacks by slamming its body into the target. The higher the user's Defense, the more damage it can inflict on the target." - }, - "decorate": { - name: "Decorate", - effect: "The user sharply raises the target's Attack and Sp. Atk stats by decorating the target." - }, - "drumBeating": { - name: "Drum Beating", - effect: "The user plays its drum, controlling the drum's roots to attack the target. This also lowers the target's Speed stat." - }, - "snapTrap": { - name: "Snap Trap", - effect: "The user snares the target in a snap trap for four to five turns." - }, - "pyroBall": { - name: "Pyro Ball", - effect: "The user attacks by igniting a small stone and launching it as a fiery ball at the target. This may also leave the target with a burn." - }, - "behemothBlade": { - name: "Behemoth Blade", - effect: "The user wields a large, powerful sword using its whole body and cuts the target in a vigorous attack." - }, - "behemothBash": { - name: "Behemoth Bash", - effect: "The user's body becomes a firm shield and slams into the target fiercely." - }, - "auraWheel": { - name: "Aura Wheel", - effect: "Morpeko attacks and raises its Speed with the energy stored in its cheeks. This move's type changes depending on the user's form." - }, - "breakingSwipe": { - name: "Breaking Swipe", - effect: "The user swings its tough tail wildly and attacks opposing Pokémon. This also lowers their Attack stats." - }, - "branchPoke": { - name: "Branch Poke", - effect: "The user attacks the target by poking it with a sharply pointed branch." - }, - "overdrive": { - name: "Overdrive", - effect: "The user attacks opposing Pokémon by twanging a guitar or bass guitar, causing a huge echo and strong vibration." - }, - "appleAcid": { - name: "Apple Acid", - effect: "The user attacks the target with an acidic liquid created from tart apples. This also lowers the target's Sp. Def stat." - }, - "gravApple": { - name: "Grav Apple", - effect: "The user inflicts damage by dropping an apple from high above. This also lowers the target's Defense stat." - }, - "spiritBreak": { - name: "Spirit Break", - effect: "The user attacks the target with so much force that it could break the target's spirit. This also lowers the target's Sp. Atk stat." - }, - "strangeSteam": { - name: "Strange Steam", - effect: "The user attacks the target by emitting steam. This may also confuse the target." - }, - "lifeDew": { - name: "Life Dew", - effect: "The user scatters mysterious water around and restores the HP of itself and its ally Pokémon in the battle." - }, - "obstruct": { - name: "Obstruct", - effect: "This move enables the user to protect itself from all attacks. Its chance of failing rises if it is used in succession. Direct contact harshly lowers the attacker's Defense stat." - }, - "falseSurrender": { - name: "False Surrender", - effect: "The user pretends to bow its head, but then it stabs the target with its disheveled hair. This attack never misses." - }, - "meteorAssault": { - name: "Meteor Assault", - effect: "The user attacks wildly with its thick leek. The user can't move on the next turn, because the force of this move makes it stagger." - }, - "eternabeam": { - name: "Eternabeam", - effect: "This is Eternatus's most powerful attack in its original form. The user can't move on the next turn." - }, - "steelBeam": { - name: "Steel Beam", - effect: "The user fires a beam of steel that it collected from its entire body. This also damages the user." - }, - "expandingForce": { - name: "Expanding Force", - effect: "The user attacks the target with its psychic power. This move's power goes up and damages all opposing Pokémon on Psychic Terrain." - }, - "steelRoller": { - name: "Steel Roller", - effect: "The user attacks while destroying the terrain. This move fails when the ground hasn't turned into a terrain." - }, - "scaleShot": { - name: "Scale Shot", - effect: "The user attacks by shooting scales two to five times in a row. This move boosts the user's Speed stat but lowers its Defense stat." - }, - "meteorBeam": { - name: "Meteor Beam", - effect: "In this two-turn attack, the user gathers space power and boosts its Sp. Atk stat, then attacks the target on the next turn." - }, - "shellSideArm": { - name: "Shell Side Arm", - effect: "This move inflicts physical or special damage, whichever will be more effective. This may also poison the target." - }, - "mistyExplosion": { - name: "Misty Explosion", - effect: "The user attacks everything around it and faints upon using this move. This move's power is increased on Misty Terrain." - }, - "grassyGlide": { - name: "Grassy Glide", - effect: "Gliding on the ground, the user attacks the target. This move always goes first on Grassy Terrain." - }, - "risingVoltage": { - name: "Rising Voltage", - effect: "The user attacks with electric voltage rising from the ground. This move's power doubles when the target is on Electric Terrain." - }, - "terrainPulse": { - name: "Terrain Pulse", - effect: "The user utilizes the power of the terrain to attack. This move's type and power changes depending on the terrain when it's used." - }, - "skitterSmack": { - name: "Skitter Smack", - effect: "The user skitters behind the target to attack. This also lowers the target's Sp. Atk stat." - }, - "burningJealousy": { - name: "Burning Jealousy", - effect: "The user attacks with energy from jealousy. This leaves all opposing Pokémon that have had their stats boosted during the turn with a burn." - }, - "lashOut": { - name: "Lash Out", - effect: "The user lashes out to vent its frustration toward the target. If the user's stats were lowered during this turn, the power of this move is doubled." - }, - "poltergeist": { - name: "Poltergeist", - effect: "The user attacks the target by controlling the target's item. The move fails if the target doesn't have an item." - }, - "corrosiveGas": { - name: "Corrosive Gas", - effect: "The user surrounds everything around it with highly acidic gas and melts away items they hold." - }, - "coaching": { - name: "Coaching", - effect: "The user properly coaches its ally Pokémon, boosting their Attack and Defense stats." - }, - "flipTurn": { - name: "Flip Turn", - effect: "After making its attack, the user rushes back to switch places with a party Pokémon in waiting." - }, - "tripleAxel": { - name: "Triple Axel", - effect: "A consecutive three-kick attack that becomes more powerful with each successful hit." - }, - "dualWingbeat": { - name: "Dual Wingbeat", - effect: "The user slams the target with its wings. The target is hit twice in a row." - }, - "scorchingSands": { - name: "Scorching Sands", - effect: "The user throws scorching sand at the target to attack. This may also leave the target with a burn." - }, - "jungleHealing": { - name: "Jungle Healing", - effect: "The user becomes one with the jungle, restoring HP and healing any status conditions of itself and its ally Pokémon in battle." - }, - "wickedBlow": { - name: "Wicked Blow", - effect: "The user, having mastered the Dark style, strikes the target with a fierce blow. This attack always results in a critical hit." - }, - "surgingStrikes": { - name: "Surging Strikes", - effect: "The user, having mastered the Water style, strikes the target with a flowing motion three times in a row. This attack always results in a critical hit." - }, - "thunderCage": { - name: "Thunder Cage", - effect: "The user traps the target in a cage of sparking electricity for four to five turns." - }, - "dragonEnergy": { - name: "Dragon Energy", - effect: "Converting its life-force into power, the user attacks opposing Pokémon. The lower the user's HP, the lower the move's power." - }, - "freezingGlare": { - name: "Freezing Glare", - effect: "The user shoots its psychic power from its eyes to attack. This may also leave the target frozen." - }, - "fieryWrath": { - name: "Fiery Wrath", - effect: "The user transforms its wrath into a fire-like aura to attack. This may also make opposing Pokémon flinch." - }, - "thunderousKick": { - name: "Thunderous Kick", - effect: "The user overwhelms the target with lightning-like movement before delivering a kick. This also lowers the target's Defense stat." - }, - "glacialLance": { - name: "Glacial Lance", - effect: "The user attacks by hurling a blizzard-cloaked icicle lance at opposing Pokémon." - }, - "astralBarrage": { - name: "Astral Barrage", - effect: "The user attacks by sending a frightful amount of small ghosts at opposing Pokémon." - }, - "eerieSpell": { - name: "Eerie Spell", - effect: "The user attacks with its tremendous psychic power. This also removes 3 PP from the target's last move." - }, - "direClaw": { - name: "Dire Claw", - effect: "The user lashes out at the target with ruinous claws. This may also leave the target poisoned, paralyzed, or asleep." - }, - "psyshieldBash": { - name: "Psyshield Bash", - effect: "Cloaking itself in psychic energy, the user slams into the target. This also boosts the user's Defense stat." - }, - "powerShift": { - name: "Power Shift", - effect: "The user swaps its Attack and Defense stats." - }, - "stoneAxe": { - name: "Stone Axe", - effect: "The user swings its stone axes at the target. Stone splinters left behind by this attack float around the target." - }, - "springtideStorm": { - name: "Springtide Storm", - effect: "The user attacks by wrapping opposing Pokémon in fierce winds brimming with love and hate. This may also lower their Attack stats." - }, - "mysticalPower": { - name: "Mystical Power", - effect: "The user attacks by emitting a mysterious power. This also boosts the user's Sp. Atk stat." - }, - "ragingFury": { - name: "Raging Fury", - effect: "The user rampages around spewing flames for two to three turns. The user then becomes confused." - }, - "waveCrash": { - name: "Wave Crash", - effect: "The user shrouds itself in water and slams into the target with its whole body to inflict damage. This also damages the user quite a lot." - }, - "chloroblast": { - name: "Chloroblast", - effect: "The user launches its amassed chlorophyll to inflict damage on the target. This also damages the user." - }, - "mountainGale": { - name: "Mountain Gale", - effect: "The user hurls giant chunks of ice at the target to inflict damage. This may also make the target flinch." - }, - "victoryDance": { - name: "Victory Dance", - effect: "The user performs an intense dance to usher in victory, boosting its Attack, Defense, and Speed stats." - }, - "headlongRush": { - name: "Headlong Rush", - effect: "The user smashes into the target in a full-body tackle. This also lowers the user's Defense and Sp. Def stats." - }, - "barbBarrage": { - name: "Barb Barrage", - effect: "The user launches countless toxic barbs to inflict damage. This may also poison the target. This move's power is doubled if the target is already poisoned." - }, - "esperWing": { - name: "Esper Wing", - effect: "The user slashes the target with aura-enriched wings. This also boosts the user's Speed stat. This move has a heightened chance of landing a critical hit." - }, - "bitterMalice": { - name: "Bitter Malice", - effect: "The user attacks the target with spine-chilling resentment. This also lowers the target's Attack stat." - }, - "shelter": { - name: "Shelter", - effect: "The user makes its skin as hard as an iron shield, sharply boosting its Defense stat." - }, - "tripleArrows": { - name: "Triple Arrows", - effect: "The user kicks, then fires three arrows. This move has a heightened chance of landing a critical hit and may also lower the target's Defense stat or make it flinch." - }, - "infernalParade": { - name: "Infernal Parade", - effect: "The user attacks with myriad fireballs. This may also leave the target with a burn. This move's power is doubled if the target has a status condition." - }, - "ceaselessEdge": { - name: "Ceaseless Edge", - effect: "The user slashes its shell blade at the target. Shell splinters left behind by this attack remain scattered under the target as spikes." - }, - "bleakwindStorm": { - name: "Bleakwind Storm", - effect: "The user attacks with savagely cold winds that cause both body and spirit to tremble. This may also lower the Speed stats of opposing Pokémon." - }, - "wildboltStorm": { - name: "Wildbolt Storm", - effect: "The user summons a thunderous tempest and savagely attacks with lightning and wind. This may also leave opposing Pokémon with paralysis." - }, - "sandsearStorm": { - name: "Sandsear Storm", - effect: "The user attacks by wrapping opposing Pokémon in fierce winds and searingly hot sand. This may also leave them with a burn." - }, - "lunarBlessing": { - name: "Lunar Blessing", - effect: "The user receives a blessing from the crescent moon, restoring HP and curing status conditions for itself and its ally Pokémon currently in the battle." - }, - "takeHeart": { - name: "Take Heart", - effect: "The user lifts its spirits, curing its own status conditions and boosting its Sp. Atk and Sp. Def stats." - }, - "gMaxWildfire": { - name: "G-Max Wildfire", - effect: "A Fire-type attack that Gigantamax Charizard use. This move continues to deal damage to opponents for four turns." - }, - "gMaxBefuddle": { - name: "G-Max Befuddle", - effect: "A Bug-type attack that Gigantamax Butterfree use. This move inflicts the poisoned, paralyzed, or asleep status condition on opponents." - }, - "gMaxVoltCrash": { - name: "G-Max Volt Crash", - effect: "An Electric-type attack that Gigantamax Pikachu use. This move paralyzes opponents." - }, - "gMaxGoldRush": { - name: "G-Max Gold Rush", - effect: "A Normal-type attack that Gigantamax Meowth use. This move confuses opponents and also earns extra money." - }, - "gMaxChiStrike": { - name: "G-Max Chi Strike", - effect: "A Fighting-type attack that Gigantamax Machamp use. This move raises the chance of critical hits." - }, - "gMaxTerror": { - name: "G-Max Terror", - effect: "A Ghost-type attack that Gigantamax Gengar use. This Pokémon steps on the opposing Pokémon's shadow to prevent them from escaping." - }, - "gMaxResonance": { - name: "G-Max Resonance", - effect: "An Ice-type attack that Gigantamax Lapras use. This move reduces the damage received for five turns." - }, - "gMaxCuddle": { - name: "G-Max Cuddle", - effect: "A Normal-type attack that Gigantamax Eevee use. This move infatuates opponents." - }, - "gMaxReplenish": { - name: "G-Max Replenish", - effect: "A Normal-type attack that Gigantamax Snorlax use. This move restores Berries that have been eaten." - }, - "gMaxMalodor": { - name: "G-Max Malodor", - effect: "A Poison-type attack that Gigantamax Garbodor use. This move poisons opponents." - }, - "gMaxStonesurge": { - name: "G-Max Stonesurge", - effect: "A Water-type attack that Gigantamax Drednaw use. This move scatters sharp rocks around the field." - }, - "gMaxWindRage": { - name: "G-Max Wind Rage", - effect: "A Flying-type attack that Gigantamax Corviknight use. This move removes the effects of moves like Reflect and Light Screen." - }, - "gMaxStunShock": { - name: "G-Max Stun Shock", - effect: "An Electric-type attack that Gigantamax Toxtricity use. This move poisons or paralyzes opponents." - }, - "gMaxFinale": { - name: "G-Max Finale", - effect: "A Fairy-type attack that Gigantamax Alcremie use. This move heals the HP of allies." - }, - "gMaxDepletion": { - name: "G-Max Depletion", - effect: "A Dragon-type attack that Gigantamax Duraludon use. Reduces the PP of the last move used." - }, - "gMaxGravitas": { - name: "G-Max Gravitas", - effect: "A Psychic-type attack that Gigantamax Orbeetle use. This move changes gravity for five turns." - }, - "gMaxVolcalith": { - name: "G-Max Volcalith", - effect: "A Rock-type attack that Gigantamax Coalossal use. This move continues to deal damage to opponents for four turns." - }, - "gMaxSandblast": { - name: "G-Max Sandblast", - effect: "A Ground-type attack that Gigantamax Sandaconda use. Opponents are trapped in a raging sandstorm for four to five turns." - }, - "gMaxSnooze": { - name: "G-Max Snooze", - effect: "A Dark-type attack that Gigantamax Grimmsnarl use. The user lets loose a huge yawn that lulls the targets into falling asleep on the next turn." - }, - "gMaxTartness": { - name: "G-Max Tartness", - effect: "A Grass-type attack that Gigantamax Flapple use. This move reduces the opponents' evasiveness." - }, - "gMaxSweetness": { - name: "G-Max Sweetness", - effect: "A Grass-type attack that Gigantamax Appletun use. This move heals the status conditions of allies." - }, - "gMaxSmite": { - name: "G-Max Smite", - effect: "A Fairy-type attack that Gigantamax Hatterene use. This move confuses opponents." - }, - "gMaxSteelsurge": { - name: "G-Max Steelsurge", - effect: "A Steel-type attack that Gigantamax Copperajah use. This move scatters sharp spikes around the field." - }, - "gMaxMeltdown": { - name: "G-Max Meltdown", - effect: "A Steel-type attack that Gigantamax Melmetal use. This move makes opponents incapable of using the same move twice in a row." - }, - "gMaxFoamBurst": { - name: "G-Max Foam Burst", - effect: "A Water-type attack that Gigantamax Kingler use. This move harshly lowers the Speed of opponents." - }, - "gMaxCentiferno": { - name: "G-Max Centiferno", - effect: "A Fire-type attack that Gigantamax Centiskorch use. This move traps opponents in flames for four to five turns." - }, - "gMaxVineLash": { - name: "G-Max Vine Lash", - effect: "A Grass-type attack that Gigantamax Venusaur use. This move continues to deal damage to opponents for four turns." - }, - "gMaxCannonade": { - name: "G-Max Cannonade", - effect: "A Water-type attack that Gigantamax Blastoise use. This move continues to deal damage to opponents for four turns." - }, - "gMaxDrumSolo": { - name: "G-Max Drum Solo", - effect: "A Grass-type attack that Gigantamax Rillaboom use. This move can be used on the target regardless of its Abilities." - }, - "gMaxFireball": { - name: "G-Max Fireball", - effect: "A Fire-type attack that Gigantamax Cinderace use. This move can be used on the target regardless of its Abilities." - }, - "gMaxHydrosnipe": { - name: "G-Max Hydrosnipe", - effect: "A Water-type attack that Gigantamax Inteleon use. This move can be used on the target regardless of its Abilities." - }, - "gMaxOneBlow": { - name: "G-Max One Blow", - effect: "A Dark-type attack that Gigantamax Urshifu use. This single-strike move can ignore Max Guard." - }, - "gMaxRapidFlow": { - name: "G-Max Rapid Flow", - effect: "A Water-type attack that Gigantamax Urshifu use. This rapid-strike move can ignore Max Guard." - }, - "teraBlast": { - name: "Tera Blast", - effect: "If the user has Terastallized, it unleashes energy of its Tera Type. This move inflicts damage using the Attack or Sp. Atk stat-whichever is higher for the user." - }, - "silkTrap": { - name: "Silk Trap", - effect: "The user spins a silken trap, protecting itself from damage while lowering the Speed stat of any attacker that makes direct contact." - }, - "axeKick": { - name: "Axe Kick", - effect: "The user attacks by kicking up into the air and slamming its heel down upon the target. This may also confuse the target. If it misses, the user takes damage instead." - }, - "lastRespects": { - name: "Last Respects", - effect: "The user attacks to avenge its allies. The more defeated allies there are in the user's party, the greater the move's power." - }, - "luminaCrash": { - name: "Lumina Crash", - effect: "The user attacks by unleashing a peculiar light that even affects the mind. This also harshly lowers the target's Sp. Def stat." - }, - "orderUp": { - name: "Order Up", - effect: "The user attacks with elegant poise. If the user has a Tatsugiri in its mouth, this move boosts one of the user's stats based on the Tatsugiri's form." - }, - "jetPunch": { - name: "Jet Punch", - effect: "The user summons a torrent around its fist and punches at blinding speed. This move always goes first." - }, - "spicyExtract": { - name: "Spicy Extract", - effect: "The user emits an incredibly spicy extract, sharply boosting the target's Attack stat and harshly lowering the target's Defense stat." - }, - "spinOut": { - name: "Spin Out", - effect: "The user spins furiously by straining its legs, inflicting damage on the target. This also harshly lowers the user's Speed stat." - }, - "populationBomb": { - name: "Population Bomb", - effect: "The user's fellows gather in droves to perform a combo attack that hits the target one to ten times in a row." - }, - "iceSpinner": { - name: "Ice Spinner", - effect: "The user covers its feet in thin ice and twirls around, slamming into the target. This move's spinning motion also destroys the terrain." - }, - "glaiveRush": { - name: "Glaive Rush", - effect: "The user throws its entire body into a reckless charge. After this move is used, attacks on the user cannot miss and will inflict double damage until the user's next turn." - }, - "revivalBlessing": { - name: "Revival Blessing", - effect: "The user bestows a loving blessing, reviving a party Pokémon that has fainted and restoring half that Pokémon's max HP." - }, - "saltCure": { - name: "Salt Cure", - effect: "The user salt cures the target, inflicting damage every turn. Steel and Water types are more strongly affected by this move." - }, - "tripleDive": { - name: "Triple Dive", - effect: "The user performs a perfectly timed triple dive, hitting the target with splashes of water three times in a row." - }, - "mortalSpin": { - name: "Mortal Spin", - effect: "The user performs a spin attack that can also eliminate the effects of such moves as Bind, Wrap, and Leech Seed. This also poisons opposing Pokémon." - }, - "doodle": { - name: "Doodle", - effect: "The user captures the very essence of the target in a sketch. This changes the Abilities of the user and its ally Pokémon to that of the target." - }, - "filletAway": { - name: "Fillet Away", - effect: "The user sharply boosts its Attack, Sp. Atk, and Speed stats by using its own HP." - }, - "kowtowCleave": { - name: "Kowtow Cleave", - effect: "The user slashes at the target after kowtowing to make the target let down its guard. This attack never misses." - }, - "flowerTrick": { - name: "Flower Trick", - effect: "The user throws a rigged bouquet of flowers at the target. This attack never misses and always lands a critical hit." - }, - "torchSong": { - name: "Torch Song", - effect: "The user blows out raging flames as if singing a song, scorching the target. This also boosts the user's Sp. Atk stat." - }, - "aquaStep": { - name: "Aqua Step", - effect: "The user toys with the target and attacks it using light and fluid dance steps. This also boosts the user's Speed stat." - }, - "ragingBull": { - name: "Raging Bull", - effect: "The user performs a tackle like a raging bull. This move's type depends on the user's form. It can also break barriers, such as Light Screen and Reflect." - }, - "makeItRain": { - name: "Make It Rain", - effect: "The user attacks by throwing out a mass of coins. This also lowers the user's Sp. Atk stat. Money is earned after the battle." - }, - "psyblade": { - name: "Psyblade", - effect: "The user rends the target with an ethereal blade. This move's power is boosted by 50 percent if the user is on Electric Terrain." - }, - "hydroSteam": { - name: "Hydro Steam", - effect: "The user blasts the target with boiling-hot water. This move's power is not lowered in harsh sunlight but rather boosted by 50 percent." - }, - "ruination": { - name: "Ruination", - effect: "The user summons a ruinous disaster. This cuts the target's HP in half." - }, - "collisionCourse": { - name: "Collision Course", - effect: "The user transforms and crashes to the ground, causing a massive prehistoric explosion. This move's power is boosted more than usual if it's a supereffective hit." - }, - "electroDrift": { - name: "Electro Drift", - effect: "The user races forward at ultrafast speeds, piercing its target with futuristic electricity. This move's power is boosted more than usual if it's a supereffective hit." - }, - "shedTail": { - name: "Shed Tail", - effect: "The user creates a substitute for itself using its own HP before switching places with a party Pokémon in waiting." - }, - "chillyReception": { - name: "Chilly Reception", - effect: "The user tells a chillingly bad joke before switching places with a party Pokémon in waiting. This summons a snowstorm lasting five turns." - }, - "tidyUp": { - name: "Tidy Up", - effect: "The user tidies up and removes the effects of Spikes, Stealth Rock, Sticky Web, Toxic Spikes, and Substitute. This also boosts the user's Attack and Speed stats." - }, - "snowscape": { - name: "Snowscape", - effect: "The user summons a snowstorm lasting five turns. This boosts the Defense stats of Ice types." - }, - "pounce": { - name: "Pounce", - effect: "The user attacks by pouncing on the target. This also lowers the target's Speed stat." - }, - "trailblaze": { - name: "Trailblaze", - effect: "The user attacks suddenly as if leaping out from tall grass. The user's nimble footwork boosts its Speed stat." - }, - "chillingWater": { - name: "Chilling Water", - effect: "The user attacks the target by showering it with water that's so cold it saps the target's power. This also lowers the target's Attack stat." - }, - "hyperDrill": { - name: "Hyper Drill", - effect: "The user spins the pointed part of its body at high speed to pierce the target. This attack can hit a target using a move such as Protect or Detect." - }, - "twinBeam": { - name: "Twin Beam", - effect: "The user shoots mystical beams from its eyes to inflict damage. The target is hit twice in a row." - }, - "rageFist": { - name: "Rage Fist", - effect: "The user converts its rage into energy to attack. The more times the user has been hit by attacks, the greater the move's power." - }, - "armorCannon": { - name: "Armor Cannon", - effect: "The user shoots its own armor out as blazing projectiles. This also lowers the user's Defense and Sp. Def stats." - }, - "bitterBlade": { - name: "Bitter Blade", - effect: "The user focuses its bitter feelings toward the world of the living into a slashing attack. The user's HP is restored by up to half the damage taken by the target." - }, - "doubleShock": { - name: "Double Shock", - effect: "The user discharges all the electricity from its body to perform a high-damage attack. After using this move, the user will no longer be Electric type." - }, - "gigatonHammer": { - name: "Gigaton Hammer", - effect: "The user swings its whole body around to attack with its huge hammer. This move can't be used twice in a row." - }, - "comeuppance": { - name: "Comeuppance", - effect: "The user retaliates with much greater force against the opponent that last inflicted damage on it." - }, - "aquaCutter": { - name: "Aqua Cutter", - effect: "The user expels pressurized water to cut at the target like a blade. This move has a heightened chance of landing a critical hit." - }, - "blazingTorque": { - name: "Blazing Torque", - effect: "The user revs their blazing engine into the target. This may also leave the target with a burn." - }, - "wickedTorque": { - name: "Wicked Torque", - effect: "The user revs their engine into the target with malicious intent. This may put the target to sleep." - }, - "noxiousTorque": { - name: "Noxious Torque", - effect: "The user revs their poisonous engine into the target. This may also poison the target." - }, - "combatTorque": { - name: "Combat Torque", - effect: "The user revs their engine forcefully into the target. This may also leave the target with paralysis." - }, - "magicalTorque": { - name: "Magical Torque", - effect: "The user revs their fae-like engine into the target. This may also confuse the target." - }, - "bloodMoon": { - name: "Blood Moon", - effect: "The user unleashes the full brunt of its spirit from a full moon that shines as red as blood. This move can't be used twice in a row." - }, - "matchaGotcha": { - name: "Matcha Gotcha", - effect: "The user fires a blast of tea that it mixed. The user's HP is restored by up to half the damage taken by the target. This may also leave the target with a burn." - }, - "syrupBomb": { - name: "Syrup Bomb", - effect: "The user sets off an explosion of sticky candy syrup, which coats the target and causes the target's Speed stat to drop each turn for three turns." - }, - "ivyCudgel": { - name: "Ivy Cudgel", - effect: "The user strikes with an ivy-wrapped cudgel. This move's type changes depending on the mask worn by the user, and it has a heightened chance of landing a critical hit." - }, - "electroShot": { - name: "Electro Shot", - effect: "The user gathers electricity on the first turn, boosting its Sp. Atk stat, then fires a high-voltage shot on the next turn. The shot will be fired immediately in rain." - }, - "teraStarstorm": { - name: "Tera Starstorm", - effect: "With the power of its crystals, the user bombards and eliminates the target. When used by Terapagos in its Stellar Form, this move damages all opposing Pokémon." - }, - "fickleBeam": { - name: "Fickle Beam", - effect: "The user shoots a beam of light to inflict damage. Sometimes all the user's heads shoot beams in unison, doubling the move's power." - }, - "burningBulwark": { - name: "Burning Bulwark", - effect: "The user's intensely hot fur protects it from attacks and also burns any attacker that makes direct contact with it." - }, - "thunderclap": { - name: "Thunderclap", - effect: "This move enables the user to attack first with a jolt of electricity. This move fails if the target is not readying an attack." - }, - "mightyCleave": { - name: "Mighty Cleave", - effect: "The user wields the light that has accumulated atop its head to cleave the target. This move hits even if the target protects itself." - }, - "tachyonCutter": { - name: "Tachyon Cutter", - effect: "The user attacks by launching particle blades at the target twice in a row. This attack never misses." - }, - "hardPress": { - name: "Hard Press", - effect: "The target is crushed with an arm, a claw, or the like to inflict damage. The more HP the target has left, the greater the move's power." - }, - "dragonCheer": { - name: "Dragon Cheer", - effect: "The user raises its allies' morale with a draconic cry so that their future attacks have a heightened chance of landing critical hits. This rouses Dragon types more." - }, - "alluringVoice": { - name: "Alluring Voice", - effect: "The user attacks the target using its angelic voice. This also confuses the target if its stats have been boosted during the turn." - }, - "temperFlare": { - name: "Temper Flare", - effect: "Spurred by desperation, the user attacks the target. This move's power is doubled if the user's previous move failed." - }, - "supercellSlam": { - name: "Supercell Slam", - effect: "The user electrifies its body and drops onto the target to inflict damage. If this move misses, the user takes damage instead." - }, - "psychicNoise": { - name: "Psychic Noise", - effect: "The user attacks the target with unpleasant sound waves. For two turns, the target is prevented from recovering HP through moves, Abilities, or held items." - }, - "upperHand": { - name: "Upper Hand", - effect: "The user reacts to the target's movement and strikes with the heel of its palm, making the target flinch. This move fails if the target is not readying a priority move." - }, - "malignantChain": { - name: "Malignant Chain", - effect: "The user pours toxins into the target by wrapping them in a toxic, corrosive chain. This may also leave the target badly poisoned." - } -} as const; diff --git a/src/locales/en/nature.ts b/src/locales/en/nature.json similarity index 79% rename from src/locales/en/nature.ts rename to src/locales/en/nature.json index 9ab26f3eb2a..ad740557094 100644 --- a/src/locales/en/nature.ts +++ b/src/locales/en/nature.json @@ -1,6 +1,4 @@ -import { SimpleTranslationEntries } from "#app/interfaces/locales"; - -export const nature: SimpleTranslationEntries = { +{ "Hardy": "Hardy", "Lonely": "Lonely", "Brave": "Brave", @@ -26,4 +24,4 @@ export const nature: SimpleTranslationEntries = { "Sassy": "Sassy", "Careful": "Careful", "Quirky": "Quirky" -} as const; +} \ No newline at end of file diff --git a/src/locales/ca_ES/party-ui-handler.ts b/src/locales/en/party-ui-handler.json similarity index 89% rename from src/locales/ca_ES/party-ui-handler.ts rename to src/locales/en/party-ui-handler.json index 4f300dd36ea..9c2b3f30e5e 100644 --- a/src/locales/ca_ES/party-ui-handler.ts +++ b/src/locales/en/party-ui-handler.json @@ -1,6 +1,4 @@ -import { SimpleTranslationEntries } from "#app/interfaces/locales"; - -export const partyUiHandler: SimpleTranslationEntries = { +{ "SEND_OUT": "Send Out", "SUMMARY": "Summary", "CANCEL": "Cancel", @@ -17,7 +15,6 @@ export const partyUiHandler: SimpleTranslationEntries = { "UNPAUSE_EVOLUTION": "Unpause Evolution", "REVIVE": "Revive", "RENAME": "Rename", - "choosePokemon": "Choose a Pokémon.", "doWhatWithThisPokemon": "Do what with this Pokémon?", "noEnergy": "{{pokemonName}} has no energy\nleft to battle!", @@ -34,13 +31,9 @@ export const partyUiHandler: SimpleTranslationEntries = { "changeQuantity": "Select a held item to transfer.\nUse < and > to change the quantity.", "selectAnotherPokemonToSplice": "Select another Pokémon to splice.", "cancel": "Cancel", - - // Slot TM text "able": "Able", "notAble": "Not able", "learned": "Learned", - - // Releasing messages "goodbye": "Goodbye, {{pokemonName}}!", "byebye": "Byebye, {{pokemonName}}!", "farewell": "Farewell, {{pokemonName}}!", @@ -50,5 +43,5 @@ export const partyUiHandler: SimpleTranslationEntries = { "illNeverForgetYou": "I'll never forget you, {{pokemonName}}!", "untilWeMeetAgain": "Until we meet again, {{pokemonName}}!", "sayonara": "Sayonara, {{pokemonName}}!", - "smellYaLater": "Smell ya later, {{pokemonName}}!", -} as const; + "smellYaLater": "Smell ya later, {{pokemonName}}!" +} \ No newline at end of file diff --git a/src/locales/en/party-ui-handler.ts b/src/locales/en/party-ui-handler.ts deleted file mode 100644 index 4f300dd36ea..00000000000 --- a/src/locales/en/party-ui-handler.ts +++ /dev/null @@ -1,54 +0,0 @@ -import { SimpleTranslationEntries } from "#app/interfaces/locales"; - -export const partyUiHandler: SimpleTranslationEntries = { - "SEND_OUT": "Send Out", - "SUMMARY": "Summary", - "CANCEL": "Cancel", - "RELEASE": "Release", - "APPLY": "Apply", - "TEACH": "Teach", - "SPLICE": "Splice", - "UNSPLICE": "Unsplice", - "ACTIVATE": "Activate", - "DEACTIVATE": "Deactivate", - "TRANSFER": "Transfer", - "ALL": "All", - "PASS_BATON": "Pass Baton", - "UNPAUSE_EVOLUTION": "Unpause Evolution", - "REVIVE": "Revive", - "RENAME": "Rename", - - "choosePokemon": "Choose a Pokémon.", - "doWhatWithThisPokemon": "Do what with this Pokémon?", - "noEnergy": "{{pokemonName}} has no energy\nleft to battle!", - "hasEnergy": "{{pokemonName}} still has energy\nto battle!", - "cantBeUsed": "{{pokemonName}} can't be used in\nthis challenge!", - "tooManyItems": "{{pokemonName}} has too many\nof this item!", - "anyEffect": "It won't have any effect.", - "unpausedEvolutions": "Evolutions have been unpaused for {{pokemonName}}.", - "unspliceConfirmation": "Do you really want to unsplice {{fusionName}}\nfrom {{pokemonName}}? {{fusionName}} will be lost.", - "wasReverted": "{{fusionName}} was reverted to {{pokemonName}}.", - "releaseConfirmation": "Do you really want to release {{pokemonName}}?", - "releaseInBattle": "You can't release a Pokémon that's in battle!", - "selectAMove": "Select a move.", - "changeQuantity": "Select a held item to transfer.\nUse < and > to change the quantity.", - "selectAnotherPokemonToSplice": "Select another Pokémon to splice.", - "cancel": "Cancel", - - // Slot TM text - "able": "Able", - "notAble": "Not able", - "learned": "Learned", - - // Releasing messages - "goodbye": "Goodbye, {{pokemonName}}!", - "byebye": "Byebye, {{pokemonName}}!", - "farewell": "Farewell, {{pokemonName}}!", - "soLong": "So long, {{pokemonName}}!", - "thisIsWhereWePart": "This is where we part, {{pokemonName}}!", - "illMissYou": "I'll miss you, {{pokemonName}}!", - "illNeverForgetYou": "I'll never forget you, {{pokemonName}}!", - "untilWeMeetAgain": "Until we meet again, {{pokemonName}}!", - "sayonara": "Sayonara, {{pokemonName}}!", - "smellYaLater": "Smell ya later, {{pokemonName}}!", -} as const; diff --git a/src/locales/en/pokeball.json b/src/locales/en/pokeball.json new file mode 100644 index 00000000000..8fa7a8d726b --- /dev/null +++ b/src/locales/en/pokeball.json @@ -0,0 +1,8 @@ +{ + "pokeBall": "Poké Ball", + "greatBall": "Great Ball", + "ultraBall": "Ultra Ball", + "rogueBall": "Rogue Ball", + "masterBall": "Master Ball", + "luxuryBall": "Luxury Ball" +} \ No newline at end of file diff --git a/src/locales/en/pokeball.ts b/src/locales/en/pokeball.ts deleted file mode 100644 index 01017cac46d..00000000000 --- a/src/locales/en/pokeball.ts +++ /dev/null @@ -1,10 +0,0 @@ -import { SimpleTranslationEntries } from "#app/interfaces/locales"; - -export const pokeball: SimpleTranslationEntries = { - "pokeBall": "Poké Ball", - "greatBall": "Great Ball", - "ultraBall": "Ultra Ball", - "rogueBall": "Rogue Ball", - "masterBall": "Master Ball", - "luxuryBall": "Luxury Ball", -} as const; diff --git a/src/locales/en/pokemon-form-battle.json b/src/locales/en/pokemon-form-battle.json new file mode 100644 index 00000000000..63a7fb793bd --- /dev/null +++ b/src/locales/en/pokemon-form-battle.json @@ -0,0 +1,14 @@ +{ + "mega": "Mega {{pokemonName}}", + "mega-x": "Mega {{pokemonName}} X", + "mega-y": "Mega {{pokemonName}} Y", + "primal": "Primal {{pokemonName}}", + "gigantamax": "G-Max {{pokemonName}}", + "eternamax": "E-Max {{pokemonName}}", + "megaChange": "{{preName}} Mega Evolved\ninto {{pokemonName}}!", + "gigantamaxChange": "{{preName}} Gigantamaxed\ninto {{pokemonName}}!", + "eternamaxChange": "{{preName}} Eternamaxed\ninto {{pokemonName}}!", + "revertChange": "{{pokemonName}} reverted\nto its original form!", + "formChange": "{{preName}} changed form!", + "disguiseChange": "Its disguise served it as a decoy!" +} \ No newline at end of file diff --git a/src/locales/ja/pokemon-form.ts b/src/locales/en/pokemon-form.json similarity index 78% rename from src/locales/ja/pokemon-form.ts rename to src/locales/en/pokemon-form.json index 922f23fafea..ea7e0f60c90 100644 --- a/src/locales/ja/pokemon-form.ts +++ b/src/locales/en/pokemon-form.json @@ -1,24 +1,4 @@ -import { SimpleTranslationEntries } from "#app/interfaces/locales"; - -export const battlePokemonForm: SimpleTranslationEntries = { - "mega": "Mega {{pokemonName}}", - "mega-x": "Mega {{pokemonName}} X", - "mega-y": "Mega {{pokemonName}} Y", - "primal": "Primal {{pokemonName}}", - "gigantamax": "G-Max {{pokemonName}}", - "eternamax": "E-Max {{pokemonName}}", - - "megaChange": "{{preName}} Mega Evolved\ninto {{pokemonName}}!", - "gigantamaxChange": "{{preName}} Gigantamaxed\ninto {{pokemonName}}!", - "eternamaxChange": "{{preName}} Eternamaxed\ninto {{pokemonName}}!", - "revertChange": "{{pokemonName}} reverted\nto its original form!", - "formChange": "{{preName}} changed form!", - "disguiseChange": "Its disguise served it as a decoy!", -} as const; - -export const pokemonForm: SimpleTranslationEntries = { - // Starters forms - // 1G +{ "pikachuCosplay": "Cosplay", "pikachuCoolCosplay": "Cool Cosplay", "pikachuBeautyCosplay": "Beauty Cosplay", @@ -27,7 +7,6 @@ export const pokemonForm: SimpleTranslationEntries = { "pikachuToughCosplay": "Tough Cosplay", "pikachuPartner": "Partner", "eeveePartner": "Partner", - // 2G "pichuSpiky": "Spiky", "unownA": "A", "unownB": "B", @@ -57,12 +36,10 @@ export const pokemonForm: SimpleTranslationEntries = { "unownZ": "Z", "unownExclamation": "!", "unownQuestion": "?", - // 3G "castformSunny": "Sunny", "castformRainy": "Rainy", "castformSnowy": "Snowy", "deoxysNormal": "Normal", - // 4G "burmyPlant": "Plant", "burmySandy": "Sandy", "burmyTrash": "Trash", @@ -75,7 +52,6 @@ export const pokemonForm: SimpleTranslationEntries = { "rotomMow": "Mow", "giratinaAltered": "Altered", "shayminLand": "Land", - // 5G "basculinRedStriped": "Red Striped", "basculinBlueStriped": "Blue Striped", "basculinWhiteStriped": "White Striped", @@ -88,7 +64,7 @@ export const pokemonForm: SimpleTranslationEntries = { "landorusIncarnate": "Incarnate", "keldeoOrdinary": "Ordinary", "meloettaAria": "Aria", - // 6G + "meloettaPirouette": "Pirouette", "froakieBattleBond": "Battle Bond", "scatterbugMeadow": "Meadow", "scatterbugIcySnow": "Icy Snow", @@ -134,7 +110,6 @@ export const pokemonForm: SimpleTranslationEntries = { "zygarde50Pc": "50% Forme Power Construct", "zygarde10Pc": "10% Forme Power Construct", "zygardeComplete": "Complete Forme", - // 7G "oricorioBaile": "Baile", "oricorioPompom": "Pom-Pom", "oricorioPau": "Pau", @@ -158,7 +133,6 @@ export const pokemonForm: SimpleTranslationEntries = { "mimikyuBusted": "Busted", "magearnaOriginal": "Original", "marshadowZenith": "Zenith", - // 8G "sinisteaPhony": "Phony", "sinisteaAntique": "Antique", "eiscueNoIce": "No Ice", @@ -169,7 +143,6 @@ export const pokemonForm: SimpleTranslationEntries = { "zamazentaHeroOfManyBattles": "Hero Of Many Battles", "zarudeDada": "Dada", "enamorusIncarnate": "Incarnate", - // 9G "squawkabillyGreenPlumage": "Green Plumage", "squawkabillyBluePlumage": "Blue Plumage", "squawkabillyYellowPlumage": "Yellow Plumage", @@ -180,19 +153,18 @@ export const pokemonForm: SimpleTranslationEntries = { "gimmighoulChest": "Chest", "gimmighoulRoaming": "Roaming", "koraidonApexBuild": "Apex Build", - "koraidonLimitedBuild":"Limited Build", - "koraidonSprintingBuild":"Sprinting Build", - "koraidonSwimmingBuild":"Swimming Build", - "koraidonGlidingBuild":"Gliding Build", - "miraidonUltimateMode":"Ultimate Mode", - "miraidonLowPowerMode":"Low Power Mode", - "miraidonDriveMode":"Drive Mode", - "miraidonAquaticMode":"Aquatic Mode", - "miraidonGlideMode":"Glide Mode", + "koraidonLimitedBuild": "Limited Build", + "koraidonSprintingBuild": "Sprinting Build", + "koraidonSwimmingBuild": "Swimming Build", + "koraidonGlidingBuild": "Gliding Build", + "miraidonUltimateMode": "Ultimate Mode", + "miraidonLowPowerMode": "Low Power Mode", + "miraidonDriveMode": "Drive Mode", + "miraidonAquaticMode": "Aquatic Mode", + "miraidonGlideMode": "Glide Mode", "poltchageistCounterfeit": "Counterfeit", "poltchageistArtisan": "Artisan", "paldeaTaurosCombat": "Combat", "paldeaTaurosBlaze": "Blaze", - "paldeaTaurosAqua": "Aqua", - -} as const; + "paldeaTaurosAqua": "Aqua" +} \ No newline at end of file diff --git a/src/locales/en/pokemon-form.ts b/src/locales/en/pokemon-form.ts deleted file mode 100644 index 922f23fafea..00000000000 --- a/src/locales/en/pokemon-form.ts +++ /dev/null @@ -1,198 +0,0 @@ -import { SimpleTranslationEntries } from "#app/interfaces/locales"; - -export const battlePokemonForm: SimpleTranslationEntries = { - "mega": "Mega {{pokemonName}}", - "mega-x": "Mega {{pokemonName}} X", - "mega-y": "Mega {{pokemonName}} Y", - "primal": "Primal {{pokemonName}}", - "gigantamax": "G-Max {{pokemonName}}", - "eternamax": "E-Max {{pokemonName}}", - - "megaChange": "{{preName}} Mega Evolved\ninto {{pokemonName}}!", - "gigantamaxChange": "{{preName}} Gigantamaxed\ninto {{pokemonName}}!", - "eternamaxChange": "{{preName}} Eternamaxed\ninto {{pokemonName}}!", - "revertChange": "{{pokemonName}} reverted\nto its original form!", - "formChange": "{{preName}} changed form!", - "disguiseChange": "Its disguise served it as a decoy!", -} as const; - -export const pokemonForm: SimpleTranslationEntries = { - // Starters forms - // 1G - "pikachuCosplay": "Cosplay", - "pikachuCoolCosplay": "Cool Cosplay", - "pikachuBeautyCosplay": "Beauty Cosplay", - "pikachuCuteCosplay": "Cute Cosplay", - "pikachuSmartCosplay": "Smart Cosplay", - "pikachuToughCosplay": "Tough Cosplay", - "pikachuPartner": "Partner", - "eeveePartner": "Partner", - // 2G - "pichuSpiky": "Spiky", - "unownA": "A", - "unownB": "B", - "unownC": "C", - "unownD": "D", - "unownE": "E", - "unownF": "F", - "unownG": "G", - "unownH": "H", - "unownI": "I", - "unownJ": "J", - "unownK": "K", - "unownL": "L", - "unownM": "M", - "unownN": "N", - "unownO": "O", - "unownP": "P", - "unownQ": "Q", - "unownR": "R", - "unownS": "S", - "unownT": "T", - "unownU": "U", - "unownV": "V", - "unownW": "W", - "unownX": "X", - "unownY": "Y", - "unownZ": "Z", - "unownExclamation": "!", - "unownQuestion": "?", - // 3G - "castformSunny": "Sunny", - "castformRainy": "Rainy", - "castformSnowy": "Snowy", - "deoxysNormal": "Normal", - // 4G - "burmyPlant": "Plant", - "burmySandy": "Sandy", - "burmyTrash": "Trash", - "shellosEast": "East", - "shellosWest": "West", - "rotomHeat": "Heat", - "rotomWash": "Wash", - "rotomFrost": "Frost", - "rotomFan": "Fan", - "rotomMow": "Mow", - "giratinaAltered": "Altered", - "shayminLand": "Land", - // 5G - "basculinRedStriped": "Red Striped", - "basculinBlueStriped": "Blue Striped", - "basculinWhiteStriped": "White Striped", - "deerlingSpring": "Spring", - "deerlingSummer": "Summer", - "deerlingAutumn": "Autumn", - "deerlingWinter": "Winter", - "tornadusIncarnate": "Incarnate", - "thundurusIncarnate": "Incarnate", - "landorusIncarnate": "Incarnate", - "keldeoOrdinary": "Ordinary", - "meloettaAria": "Aria", - // 6G - "froakieBattleBond": "Battle Bond", - "scatterbugMeadow": "Meadow", - "scatterbugIcySnow": "Icy Snow", - "scatterbugPolar": "Polar", - "scatterbugTundra": "Tundra", - "scatterbugContinental": "Continental", - "scatterbugGarden": "Garden", - "scatterbugElegant": "Elegant", - "scatterbugModern": "Modern", - "scatterbugMarine": "Marine", - "scatterbugArchipelago": "Archipelago", - "scatterbugHighPlains": "High Plains", - "scatterbugSandstorm": "Sandstorm", - "scatterbugRiver": "River", - "scatterbugMonsoon": "Monsoon", - "scatterbugSavanna": "Savanna", - "scatterbugSun": "Sun", - "scatterbugOcean": "Ocean", - "scatterbugJungle": "Jungle", - "scatterbugFancy": "Fancy", - "scatterbugPokeBall": "Poké Ball", - "flabebeRed": "Red", - "flabebeYellow": "Yellow", - "flabebeOrange": "Orange", - "flabebeBlue": "Blue", - "flabebeWhite": "White", - "furfrouHeart": "Heart", - "furfrouStar": "Star", - "furfrouDiamond": "Diamond", - "furfrouDebutante": "Debutante", - "furfrouMatron": "Matron", - "furfrouDandy": "Dandy", - "furfrouLaReine": "La Reine", - "furfrouKabuki": "Kabuki", - "furfrouPharaoh": "Pharaoh", - "pumpkabooSmall": "Small", - "pumpkabooLarge": "Large", - "pumpkabooSuper": "Super", - "xerneasNeutral": "Neutral", - "xerneasActive": "Active", - "zygarde50": "50% Forme", - "zygarde10": "10% Forme", - "zygarde50Pc": "50% Forme Power Construct", - "zygarde10Pc": "10% Forme Power Construct", - "zygardeComplete": "Complete Forme", - // 7G - "oricorioBaile": "Baile", - "oricorioPompom": "Pom-Pom", - "oricorioPau": "Pau", - "oricorioSensu": "Sensu", - "rockruffOwnTempo": "Own Tempo", - "miniorRedMeteor": "Red Meteor", - "miniorOrangeMeteor": "Orange Meteor", - "miniorYellowMeteor": "Yellow Meteor", - "miniorGreenMeteor": "Green Meteor", - "miniorBlueMeteor": "Blue Meteor", - "miniorIndigoMeteor": "Indigo Meteor", - "miniorVioletMeteor": "Violet Meteor", - "miniorRed": "Red", - "miniorOrange": "Orange", - "miniorYellow": "Yellow", - "miniorGreen": "Green", - "miniorBlue": "Blue", - "miniorIndigo": "Indigo", - "miniorViolet": "Violet", - "mimikyuDisguised": "Disguised", - "mimikyuBusted": "Busted", - "magearnaOriginal": "Original", - "marshadowZenith": "Zenith", - // 8G - "sinisteaPhony": "Phony", - "sinisteaAntique": "Antique", - "eiscueNoIce": "No Ice", - "indeedeeMale": "Male", - "indeedeeFemale": "Female", - "morpekoFullBelly": "Full Belly", - "zacianHeroOfManyBattles": "Hero Of Many Battles", - "zamazentaHeroOfManyBattles": "Hero Of Many Battles", - "zarudeDada": "Dada", - "enamorusIncarnate": "Incarnate", - // 9G - "squawkabillyGreenPlumage": "Green Plumage", - "squawkabillyBluePlumage": "Blue Plumage", - "squawkabillyYellowPlumage": "Yellow Plumage", - "squawkabillyWhitePlumage": "White Plumage", - "tatsugiriCurly": "Curly", - "tatsugiriDroopy": "Droopy", - "tatsugiriStretchy": "Stretchy", - "gimmighoulChest": "Chest", - "gimmighoulRoaming": "Roaming", - "koraidonApexBuild": "Apex Build", - "koraidonLimitedBuild":"Limited Build", - "koraidonSprintingBuild":"Sprinting Build", - "koraidonSwimmingBuild":"Swimming Build", - "koraidonGlidingBuild":"Gliding Build", - "miraidonUltimateMode":"Ultimate Mode", - "miraidonLowPowerMode":"Low Power Mode", - "miraidonDriveMode":"Drive Mode", - "miraidonAquaticMode":"Aquatic Mode", - "miraidonGlideMode":"Glide Mode", - "poltchageistCounterfeit": "Counterfeit", - "poltchageistArtisan": "Artisan", - "paldeaTaurosCombat": "Combat", - "paldeaTaurosBlaze": "Blaze", - "paldeaTaurosAqua": "Aqua", - -} as const; diff --git a/src/locales/en/pokemon-info-container.json b/src/locales/en/pokemon-info-container.json new file mode 100644 index 00000000000..e4574e3cf3f --- /dev/null +++ b/src/locales/en/pokemon-info-container.json @@ -0,0 +1,7 @@ +{ + "moveset": "Moveset", + "gender": "Gender:", + "ability": "Ability:", + "nature": "Nature:", + "form": "Form:" +} \ No newline at end of file diff --git a/src/locales/en/pokemon-info-container.ts b/src/locales/en/pokemon-info-container.ts deleted file mode 100644 index 64e5bd3cfcc..00000000000 --- a/src/locales/en/pokemon-info-container.ts +++ /dev/null @@ -1,9 +0,0 @@ -import { SimpleTranslationEntries } from "#app/interfaces/locales"; - -export const pokemonInfoContainer: SimpleTranslationEntries = { - "moveset": "Moveset", - "gender": "Gender:", - "ability": "Ability:", - "nature": "Nature:", - "form": "Form:" -} as const; diff --git a/src/locales/en/pokemon-info.ts b/src/locales/en/pokemon-info.json similarity index 80% rename from src/locales/en/pokemon-info.ts rename to src/locales/en/pokemon-info.json index 70a06294c76..87d2f7ad17b 100644 --- a/src/locales/en/pokemon-info.ts +++ b/src/locales/en/pokemon-info.json @@ -1,7 +1,5 @@ -import { PokemonInfoTranslationEntries } from "#app/interfaces/locales"; - -export const pokemonInfo: PokemonInfoTranslationEntries = { - Stat: { +{ + "Stat": { "HP": "Max. HP", "HPshortened": "MaxHP", "ATK": "Attack", @@ -18,8 +16,7 @@ export const pokemonInfo: PokemonInfoTranslationEntries = { "EVA": "Evasiveness", "HPStat": "HP" }, - - Type: { + "Type": { "UNKNOWN": "Unknown", "NORMAL": "Normal", "FIGHTING": "Fighting", @@ -39,6 +36,6 @@ export const pokemonInfo: PokemonInfoTranslationEntries = { "DRAGON": "Dragon", "DARK": "Dark", "FAIRY": "Fairy", - "STELLAR": "Stellar", - }, -} as const; + "STELLAR": "Stellar" + } +} \ No newline at end of file diff --git a/src/locales/en/pokemon-summary.json b/src/locales/en/pokemon-summary.json new file mode 100644 index 00000000000..80e0cdab010 --- /dev/null +++ b/src/locales/en/pokemon-summary.json @@ -0,0 +1,44 @@ +{ + "pokemonInfo": "Pokémon Info", + "status": "Status", + "powerAccuracyCategory": "Power\nAccuracy\nCategory", + "type": "Type", + "unknownTrainer": "Unknown", + "ot": "OT", + "nature": "nature", + "expPoints": "Exp. Points", + "nextLv": "Next Lv.", + "cancel": "Cancel", + "memoString": "{{natureFragment}} nature,\n{{metFragment}}", + "metFragment": { + "normal": "met at Lv{{level}},\n{{biome}}.", + "apparently": "apparently met at Lv{{level}},\n{{biome}}." + }, + "natureFragment": { + "Hardy": "{{nature}}", + "Lonely": "{{nature}}", + "Brave": "{{nature}}", + "Adamant": "{{nature}}", + "Naughty": "{{nature}}", + "Bold": "{{nature}}", + "Docile": "{{nature}}", + "Relaxed": "{{nature}}", + "Impish": "{{nature}}", + "Lax": "{{nature}}", + "Timid": "{{nature}}", + "Hasty": "{{nature}}", + "Serious": "{{nature}}", + "Jolly": "{{nature}}", + "Naive": "{{nature}}", + "Modest": "{{nature}}", + "Mild": "{{nature}}", + "Quiet": "{{nature}}", + "Bashful": "{{nature}}", + "Rash": "{{nature}}", + "Calm": "{{nature}}", + "Gentle": "{{nature}}", + "Sassy": "{{nature}}", + "Careful": "{{nature}}", + "Quirky": "{{nature}}" + } +} \ No newline at end of file diff --git a/src/locales/en/pokemon-summary.ts b/src/locales/en/pokemon-summary.ts deleted file mode 100644 index 484ea2a9d67..00000000000 --- a/src/locales/en/pokemon-summary.ts +++ /dev/null @@ -1,20 +0,0 @@ -import { TranslationEntries } from "#app/interfaces/locales"; - -export const pokemonSummary: TranslationEntries = { - "pokemonInfo": "Pokémon Info", - "status": "Status", - "powerAccuracyCategory": "Power\nAccuracy\nCategory", - "type": "Type", - "unknownTrainer": "Unknown", - "ot": "OT", - "nature": "nature", - "expPoints": "Exp. Points", - "nextLv": "Next Lv.", - "cancel": "Cancel", - - "memoString": "{{natureFragment}} nature,\n{{metFragment}}", - "metFragment": { - "normal": "met at Lv{{level}},\n{{biome}}.", - "apparently": "apparently met at Lv{{level}},\n{{biome}}.", - }, -} as const; diff --git a/src/locales/en/pokemon.ts b/src/locales/en/pokemon.json similarity index 99% rename from src/locales/en/pokemon.ts rename to src/locales/en/pokemon.json index 297bbcc3975..9185f749cfa 100644 --- a/src/locales/en/pokemon.ts +++ b/src/locales/en/pokemon.json @@ -1,6 +1,4 @@ -import { SimpleTranslationEntries } from "#app/interfaces/locales"; - -export const pokemon: SimpleTranslationEntries = { +{ "bulbasaur": "Bulbasaur", "ivysaur": "Ivysaur", "venusaur": "Venusaur", @@ -1082,5 +1080,5 @@ export const pokemon: SimpleTranslationEntries = { "hisui_decidueye": "Decidueye", "paldea_tauros": "Tauros", "paldea_wooper": "Wooper", - "bloodmoon_ursaluna": "Ursaluna", -} as const; + "bloodmoon_ursaluna": "Ursaluna" +} \ No newline at end of file diff --git a/src/locales/en/run-history.json b/src/locales/en/run-history.json new file mode 100644 index 00000000000..53596bdf629 --- /dev/null +++ b/src/locales/en/run-history.json @@ -0,0 +1,37 @@ +{ + "victory": "Victory!", + "defeatedWild": "Defeated by ", + "defeatedTrainer": "Defeated by ", + "defeatedTrainerDouble": "Defeated by Duo", + "defeatedRival": "Defeated by Rival", + "defeated": "Defeated", + "defeatedWild_female": "Defeated by ", + "defeatedTrainer_female": "Defeated by ", + "defeatedTrainerDouble_female": "Defeated by Duo", + "defeatedRival_female": "Defeated by Rival", + "defeated_female": "Defeated", + "luck": "Luck", + "score": "Score", + "mode": "Mode", + "challengeRules": "Rule(s)", + "challengeMonoGen1": "Gen I", + "challengeMonoGen2": "Gen II", + "challengeMonoGen3": "Gen III", + "challengeMonoGen4": "Gen IV", + "challengeMonoGen5": "Gen V", + "challengeMonoGen6": "Gen VI", + "challengeMonoGen7": "Gen VII", + "challengeMonoGen8": "Gen VIII", + "challengeMonoGen9": "Gen IX", + "playerItems": "Player Items", + "personalBest": "Personal Best!", + "SPDshortened": "Vel.", + "runInfo": "Run Info", + "money": "Money", + "runLength": "Run Length", + "viewHeldItems": "Held Items", + "hallofFameText": "Welcome to the Hall of Fame!", + "hallofFameText_female": "Welcome to the Hall of Fame!", + "viewHallOfFame": "View Hall of Fame!", + "viewEndingSplash": "View ending art!" +} diff --git a/src/locales/en/save-slot-select-ui-handler.json b/src/locales/en/save-slot-select-ui-handler.json new file mode 100644 index 00000000000..2db02b09783 --- /dev/null +++ b/src/locales/en/save-slot-select-ui-handler.json @@ -0,0 +1,7 @@ +{ + "overwriteData": "Overwrite the data in the selected slot?", + "loading": "Loading...", + "wave": "Wave", + "lv": "Lv", + "empty": "Empty" +} \ No newline at end of file diff --git a/src/locales/en/save-slot-select-ui-handler.ts b/src/locales/en/save-slot-select-ui-handler.ts deleted file mode 100644 index f4efa3de734..00000000000 --- a/src/locales/en/save-slot-select-ui-handler.ts +++ /dev/null @@ -1,9 +0,0 @@ -import { SimpleTranslationEntries } from "#app/interfaces/locales"; - -export const saveSlotSelectUiHandler: SimpleTranslationEntries = { - "overwriteData": "Overwrite the data in the selected slot?", - "loading": "Loading...", - "wave": "Wave", - "lv": "Lv", - "empty": "Empty", -} as const; diff --git a/src/locales/en/settings.ts b/src/locales/en/settings.json similarity index 92% rename from src/locales/en/settings.ts rename to src/locales/en/settings.json index c63f9de6049..6528f0368fe 100644 --- a/src/locales/en/settings.ts +++ b/src/locales/en/settings.json @@ -1,6 +1,4 @@ -import { SimpleTranslationEntries } from "#app/interfaces/locales.js"; - -export const settings: SimpleTranslationEntries = { +{ "boy": "Boy", "girl": "Girl", "general": "General", @@ -63,7 +61,9 @@ export const settings: SimpleTranslationEntries = { "typeHints": "Type Hints", "masterVolume": "Master Volume", "bgmVolume": "BGM Volume", + "fieldVolume": "Field Volume", "seVolume": "SE Volume", + "uiVolume": "UI Volume", "musicPreference": "Music Preference", "mixed": "Mixed", "gamepadPleasePlug": "Please Plug in a Gamepad or Press a Button", @@ -98,5 +98,10 @@ export const settings: SimpleTranslationEntries = { "gamepadSupport": "Gamepad Support", "showBgmBar": "Show Music Names", "moveTouchControls": "Move Touch Controls", - "shopOverlayOpacity": "Shop Overlay Opacity" -} as const; + "shopOverlayOpacity": "Shop Overlay Opacity", + "shopCursorTarget": "Shop Cursor Target", + "items": "Items", + "reroll": "Reroll", + "shop": "Shop", + "checkTeam": "Check Team" +} diff --git a/src/locales/ja/splash-messages.ts b/src/locales/en/splash-messages.json similarity index 89% rename from src/locales/ja/splash-messages.ts rename to src/locales/en/splash-messages.json index e549bc24f19..c0686e6ad75 100644 --- a/src/locales/ja/splash-messages.ts +++ b/src/locales/en/splash-messages.json @@ -1,6 +1,4 @@ -import { SimpleTranslationEntries } from "#app/interfaces/locales"; - -export const splashMessages: SimpleTranslationEntries = { +{ "battlesWon": "Battles Won!", "joinTheDiscord": "Join the Discord!", "infiniteLevels": "Infinite Levels!", @@ -34,5 +32,5 @@ export const splashMessages: SimpleTranslationEntries = { "alsoTryRadicalRed": "Also Try Radical Red!", "eeveeExpo": "Eevee Expo!", "ynoproject": "YNOproject!", - "breedersInSpace": "Breeders in space!", -} as const; + "breedersInSpace": "Breeders in space!" +} \ No newline at end of file diff --git a/src/locales/en/splash-messages.ts b/src/locales/en/splash-messages.ts deleted file mode 100644 index e549bc24f19..00000000000 --- a/src/locales/en/splash-messages.ts +++ /dev/null @@ -1,38 +0,0 @@ -import { SimpleTranslationEntries } from "#app/interfaces/locales"; - -export const splashMessages: SimpleTranslationEntries = { - "battlesWon": "Battles Won!", - "joinTheDiscord": "Join the Discord!", - "infiniteLevels": "Infinite Levels!", - "everythingStacks": "Everything Stacks!", - "optionalSaveScumming": "Optional Save Scumming!", - "biomes": "35 Biomes!", - "openSource": "Open Source!", - "playWithSpeed": "Play with 5x Speed!", - "liveBugTesting": "Live Bug Testing!", - "heavyInfluence": "Heavy RoR2 Influence!", - "pokemonRiskAndPokemonRain": "Pokémon Risk and Pokémon Rain!", - "nowWithMoreSalt": "Now with 33% More Salt!", - "infiniteFusionAtHome": "Infinite Fusion at Home!", - "brokenEggMoves": "Broken Egg Moves!", - "magnificent": "Magnificent!", - "mubstitute": "Mubstitute!", - "thatsCrazy": "That's Crazy!", - "oranceJuice": "Orance Juice!", - "questionableBalancing": "Questionable Balancing!", - "coolShaders": "Cool Shaders!", - "aiFree": "AI-Free!", - "suddenDifficultySpikes": "Sudden Difficulty Spikes!", - "basedOnAnUnfinishedFlashGame": "Based on an Unfinished Flash Game!", - "moreAddictiveThanIntended": "More Addictive than Intended!", - "mostlyConsistentSeeds": "Mostly Consistent Seeds!", - "achievementPointsDontDoAnything": "Achievement Points Don't Do Anything!", - "youDoNotStartAtLevel": "You Do Not Start at Level 2000!", - "dontTalkAboutTheManaphyEggIncident": "Don't Talk About the Manaphy Egg Incident!", - "alsoTryPokengine": "Also Try Pokéngine!", - "alsoTryEmeraldRogue": "Also Try Emerald Rogue!", - "alsoTryRadicalRed": "Also Try Radical Red!", - "eeveeExpo": "Eevee Expo!", - "ynoproject": "YNOproject!", - "breedersInSpace": "Breeders in space!", -} as const; diff --git a/src/locales/en/starter-select-ui-handler.ts b/src/locales/en/starter-select-ui-handler.json similarity index 77% rename from src/locales/en/starter-select-ui-handler.ts rename to src/locales/en/starter-select-ui-handler.json index 5e82abc8187..f578f128bee 100644 --- a/src/locales/en/starter-select-ui-handler.ts +++ b/src/locales/en/starter-select-ui-handler.json @@ -1,11 +1,4 @@ -import { SimpleTranslationEntries } from "#app/interfaces/locales"; - -/** - * The menu namespace holds most miscellaneous text that isn't directly part of the game's - * contents or directly related to Pokemon data. This includes menu navigation, settings, - * account interactions, descriptive text, etc. - */ -export const starterSelectUiHandler: SimpleTranslationEntries = { +{ "confirmStartTeam": "Begin with these Pokémon?", "confirmExit": "Do you want to exit?", "invalidParty": "This is not a valid starting party!", @@ -49,4 +42,4 @@ export const starterSelectUiHandler: SimpleTranslationEntries = { "locked": "Locked", "disabled": "Disabled", "uncaught": "Uncaught" -}; +} \ No newline at end of file diff --git a/src/locales/en/status-effect.json b/src/locales/en/status-effect.json new file mode 100644 index 00000000000..fdbacfdb9be --- /dev/null +++ b/src/locales/en/status-effect.json @@ -0,0 +1,65 @@ +{ + "none": { + "name": "None", + "description": "", + "obtain": "", + "obtainSource": "", + "activation": "", + "overlap": "", + "heal": "" + }, + "poison": { + "name": "Poison", + "description": "poisoning", + "obtain": "{{pokemonNameWithAffix}}\nwas poisoned!", + "obtainSource": "{{pokemonNameWithAffix}}\nwas poisoned by the {{sourceText}}!", + "activation": "{{pokemonNameWithAffix}} is hurt\nby poison!", + "overlap": "{{pokemonNameWithAffix}} is\nalready poisoned!", + "heal": "{{pokemonNameWithAffix}} was\ncured of its poison!" + }, + "toxic": { + "name": "Toxic", + "description": "poisoning", + "obtain": "{{pokemonNameWithAffix}}\nwas badly poisoned!", + "obtainSource": "{{pokemonNameWithAffix}}\nwas badly poisoned by the {{sourceText}}!", + "activation": "{{pokemonNameWithAffix}} is hurt\nby poison!", + "overlap": "{{pokemonNameWithAffix}} is\nalready poisoned!", + "heal": "{{pokemonNameWithAffix}} was\ncured of its poison!" + }, + "paralysis": { + "name": "Paralysis", + "description": "paralysis", + "obtain": "{{pokemonNameWithAffix}} was paralyzed,\nIt may be unable to move!", + "obtainSource": "{{pokemonNameWithAffix}} was paralyzed by the {{sourceText}}!\nIt may be unable to move!", + "activation": "{{pokemonNameWithAffix}} is paralyzed!\nIt can't move!", + "overlap": "{{pokemonNameWithAffix}} is\nalready paralyzed!", + "heal": "{{pokemonNameWithAffix}} was\nhealed of paralysis!" + }, + "sleep": { + "name": "Sleep", + "description": "sleep", + "obtain": "{{pokemonNameWithAffix}}\nfell asleep!", + "obtainSource": "{{pokemonNameWithAffix}}\nfell asleep from the {{sourceText}}!", + "activation": "{{pokemonNameWithAffix}} is fast asleep.", + "overlap": "{{pokemonNameWithAffix}} is\nalready asleep!", + "heal": "{{pokemonNameWithAffix}} woke up!" + }, + "freeze": { + "name": "Freeze", + "description": "freezing", + "obtain": "{{pokemonNameWithAffix}}\nwas frozen solid!", + "obtainSource": "{{pokemonNameWithAffix}}\nwas frozen solid by the {{sourceText}}!", + "activation": "{{pokemonNameWithAffix}} is\nfrozen solid!", + "overlap": "{{pokemonNameWithAffix}} is\nalready frozen!", + "heal": "{{pokemonNameWithAffix}} was\ndefrosted!" + }, + "burn": { + "name": "Burn", + "description": "burn", + "obtain": "{{pokemonNameWithAffix}}\nwas burned!", + "obtainSource": "{{pokemonNameWithAffix}}\nwas burned by the {{sourceText}}!", + "activation": "{{pokemonNameWithAffix}} is hurt\nby its burn!", + "overlap": "{{pokemonNameWithAffix}} is\nalready burned!", + "heal": "{{pokemonNameWithAffix}} was\nhealed of its burn!" + } +} diff --git a/src/locales/en/status-effect.ts b/src/locales/en/status-effect.ts deleted file mode 100644 index 5914fc27298..00000000000 --- a/src/locales/en/status-effect.ts +++ /dev/null @@ -1,67 +0,0 @@ -import { StatusEffectTranslationEntries } from "#app/interfaces/locales.js"; - -export const statusEffect: StatusEffectTranslationEntries = { - none: { - name: "None", - description: "", - obtain: "", - obtainSource: "", - activation: "", - overlap: "", - heal: "" - }, - poison: { - name: "Poison", - description: "poisoning", - obtain: "{{pokemonNameWithAffix}}\nwas poisoned!", - obtainSource: "{{pokemonNameWithAffix}}\nwas poisoned by the {{sourceText}}!", - activation: "{{pokemonNameWithAffix}} is hurt\nby poison!", - overlap: "{{pokemonNameWithAffix}} is\nalready poisoned!", - heal: "{{pokemonNameWithAffix}} was\ncured of its poison!" - }, - toxic: { - name: "Toxic", - description: "poisoning", - obtain: "{{pokemonNameWithAffix}}\nwas badly poisoned!", - obtainSource: "{{pokemonNameWithAffix}}\nwas badly poisoned by the {{sourceText}}!", - activation: "{{pokemonNameWithAffix}} is hurt\nby poison!", - overlap: "{{pokemonNameWithAffix}} is\nalready poisoned!", - heal: "{{pokemonNameWithAffix}} was\ncured of its poison!" - }, - paralysis: { - name: "Paralysis", - description: "paralysis", - obtain: "{{pokemonNameWithAffix}} was paralyzed,\nIt may be unable to move!", - obtainSource: "{{pokemonNameWithAffix}} was paralyzed by the {{sourceText}}!\nIt may be unable to move!", - activation: "{{pokemonNameWithAffix}} is paralyzed!\nIt can't move!", - overlap: "{{pokemonNameWithAffix}} is\nalready paralyzed!", - heal: "{{pokemonNameWithAffix}} was\nhealed of paralysis!" - }, - sleep: { - name: "Sleep", - description: "sleep", - obtain: "{{pokemonNameWithAffix}}\nfell asleep!", - obtainSource: "{{pokemonNameWithAffix}}\nfell asleep from the {{sourceText}}!", - activation: "{{pokemonNameWithAffix}} is fast asleep.", - overlap: "{{pokemonNameWithAffix}} is\nalready asleep!", - heal: "{{pokemonNameWithAffix}} woke up!" - }, - freeze: { - name: "Freeze", - description: "freezing", - obtain: "{{pokemonNameWithAffix}}\nwas frozen solid!", - obtainSource: "{{pokemonNameWithAffix}}\nwas frozen solid by the {{sourceText}}!", - activation: "{{pokemonNameWithAffix}} is\nfrozen solid!", - overlap: "{{pokemonNameWithAffix}} is\nalready frozen!", - heal: "{{pokemonNameWithAffix}} was\ndefrosted!" - }, - burn: { - name: "Burn", - description: "burn", - obtain: "{{pokemonNameWithAffix}}\nwas burned!", - obtainSource: "{{pokemonNameWithAffix}}\nwas burned by the {{sourceText}}!", - activation: "{{pokemonNameWithAffix}} is hurt\nby its burn!", - overlap: "{{pokemonNameWithAffix}} is\nalready burned!", - heal: "{{pokemonNameWithAffix}} was\nhealed of its burn!" - }, -} as const; diff --git a/src/locales/en/terrain.json b/src/locales/en/terrain.json new file mode 100644 index 00000000000..4619ecdf111 --- /dev/null +++ b/src/locales/en/terrain.json @@ -0,0 +1,16 @@ +{ + "misty": "Misty", + "mistyStartMessage": "Mist swirled around the battlefield!", + "mistyClearMessage": "The mist disappeared from the battlefield.", + "mistyBlockMessage": "{{pokemonNameWithAffix}} surrounds itself with a protective mist!", + "electric": "Electric", + "electricStartMessage": "An electric current ran across the battlefield!", + "electricClearMessage": "The electricity disappeared from the battlefield.", + "grassy": "Grassy", + "grassyStartMessage": "Grass grew to cover the battlefield!", + "grassyClearMessage": "The grass disappeared from the battlefield.", + "psychic": "Psychic", + "psychicStartMessage": "The battlefield got weird!", + "psychicClearMessage": "The weirdness disappeared from the battlefield!", + "defaultBlockMessage": "{{pokemonNameWithAffix}} is protected by the {{terrainName}} Terrain!" +} \ No newline at end of file diff --git a/src/locales/en/trainer-classes.json b/src/locales/en/trainer-classes.json new file mode 100644 index 00000000000..9e30915dee6 --- /dev/null +++ b/src/locales/en/trainer-classes.json @@ -0,0 +1,130 @@ +{ + "ace_trainer": "Ace Trainer", + "ace_trainer_female": "Ace Trainer", + "ace_duo": "Ace Duo", + "artist": "Artist", + "artist_female": "Artist", + "backers": "Backers", + "backpacker": "Backpacker", + "backpacker_female": "Backpacker", + "backpackers": "Backpackers", + "baker": "Baker", + "battle_girl": "Battle Girl", + "beauty": "Beauty", + "beginners": "Beginners", + "biker": "Biker", + "black_belt": "Black Belt", + "breeder": "Breeder", + "breeder_female": "Breeder", + "breeders": "Breeders", + "clerk": "Clerk", + "clerk_female": "Clerk", + "colleagues": "Colleagues", + "crush_kin": "Crush Kin", + "cyclist": "Cyclist", + "cyclist_female": "Cyclist", + "cyclists": "Cyclists", + "dancer": "Dancer", + "dancer_female": "Dancer", + "depot_agent": "Depot Agent", + "doctor": "Doctor", + "doctor_female": "Doctor", + "firebreather": "Firebreather", + "fisherman": "Fisherman", + "fisherman_female": "Fisherman", + "gentleman": "Gentleman", + "guitarist": "Guitarist", + "guitarist_female": "Guitarist", + "harlequin": "Harlequin", + "hiker": "Hiker", + "hooligans": "Hooligans", + "hoopster": "Hoopster", + "infielder": "Infielder", + "janitor": "Janitor", + "lady": "Lady", + "lass": "Lass", + "linebacker": "Linebacker", + "maid": "Maid", + "madame": "Madame", + "medical_team": "Medical Team", + "musician": "Musician", + "hex_maniac": "Hex Maniac", + "nurse": "Nurse", + "nursery_aide": "Nursery Aide", + "officer": "Officer", + "parasol_lady": "Parasol Lady", + "pilot": "Pilot", + "pokéfan": "Poké Fan", + "pokéfan_female": "Poké Fan", + "pokéfan_family": "Poké Fan Family", + "preschooler": "Preschooler", + "preschooler_female": "Preschooler", + "preschoolers": "Preschoolers", + "psychic": "Psychic", + "psychic_female": "Psychic", + "psychics": "Psychics", + "pokémon_ranger": "Pokémon Ranger", + "pokémon_ranger_female": "Pokémon Ranger", + "pokémon_rangers": "Pokémon Ranger", + "ranger": "Ranger", + "restaurant_staff": "Restaurant Staff", + "rich": "Rich", + "rich_female": "Rich", + "rich_boy": "Rich Boy", + "rich_couple": "Rich Couple", + "rich_kid": "Rich Kid", + "rich_kid_female": "Rich Kid", + "rich_kids": "Rich Kids", + "roughneck": "Roughneck", + "sailor": "Sailor", + "scientist": "Scientist", + "scientist_female": "Scientist", + "scientists": "Scientists", + "smasher": "Smasher", + "snow_worker": "Snow Worker", + "snow_worker_female": "Snow Worker", + "striker": "Striker", + "school_kid": "School Kid", + "school_kid_female": "School Kid", + "school_kids": "School Kids", + "swimmer": "Swimmer", + "swimmer_female": "Swimmer", + "swimmers": "Swimmers", + "twins": "Twins", + "veteran": "Veteran", + "veteran_female": "Veteran", + "veteran_duo": "Veteran Duo", + "waiter": "Waiter", + "waitress": "Waitress", + "worker": "Worker", + "worker_female": "Worker", + "workers": "Workers", + "youngster": "Youngster", + "rocket_grunt": "Rocket Grunt", + "rocket_grunts": "Rocket Grunts", + "rocket_grunt_female": "Rocket Grunt", + "magma_grunt": "Magma Grunt", + "magma_grunt_female": "Magma Grunt", + "magma_grunts": "Magma Grunts", + "aqua_grunt": "Aqua Grunt", + "aqua_grunt_female": "Aqua Grunt", + "aqua_grunts": "Aqua Grunts", + "galactic_grunt": "Galactic Grunt", + "galactic_grunt_female": "Galactic Grunt", + "galactic_grunts": "Galactic Grunts", + "plasma_grunt": "Plasma Grunt", + "plasma_grunt_female": "Plasma Grunt", + "plasma_grunts": "Plasma Grunts", + "flare_grunt": "Flare Grunt", + "flare_grunt_female": "Flare Grunt", + "flare_grunts": "Flare Grunts", + "aether_grunt": "Aether Foundation Employee", + "aether_grunt_female": "Aether Foundation Employee", + "aether_grunts": "Aether Foundation Employees", + "skull_grunt": "Team Skull Grunt", + "skull_grunt_female": "Team Skull Grunt", + "skull_grunts": "Team Skull Grunts", + "macro_grunt": "Macro Cosmos Trainer", + "macro_grunt_female": "Macro Cosmos Trainer", + "macro_grunts": "Macro Cosmos Trainers" +} diff --git a/src/locales/en/trainer-names.json b/src/locales/en/trainer-names.json new file mode 100644 index 00000000000..50a2ce18f34 --- /dev/null +++ b/src/locales/en/trainer-names.json @@ -0,0 +1,164 @@ +{ + "brock": "Brock", + "misty": "Misty", + "lt_surge": "Lt Surge", + "erika": "Erika", + "janine": "Janine", + "sabrina": "Sabrina", + "blaine": "Blaine", + "giovanni": "Giovanni", + "falkner": "Falkner", + "bugsy": "Bugsy", + "whitney": "Whitney", + "morty": "Morty", + "chuck": "Chuck", + "jasmine": "Jasmine", + "pryce": "Pryce", + "clair": "Clair", + "roxanne": "Roxanne", + "brawly": "Brawly", + "wattson": "Wattson", + "flannery": "Flannery", + "norman": "Norman", + "winona": "Winona", + "tate": "Tate", + "liza": "Liza", + "juan": "Juan", + "roark": "Roark", + "gardenia": "Gardenia", + "maylene": "Maylene", + "crasher_wake": "Crasher Wake", + "fantina": "Fantina", + "byron": "Byron", + "candice": "Candice", + "volkner": "Volkner", + "cilan": "Cilan", + "chili": "Chili", + "cress": "Cress", + "cheren": "Cheren", + "lenora": "Lenora", + "roxie": "Roxie", + "burgh": "Burgh", + "elesa": "Elesa", + "clay": "Clay", + "skyla": "Skyla", + "brycen": "Brycen", + "drayden": "Drayden", + "marlon": "Marlon", + "viola": "Viola", + "grant": "Grant", + "korrina": "Korrina", + "ramos": "Ramos", + "clemont": "Clemont", + "valerie": "Valerie", + "olympia": "Olympia", + "wulfric": "Wulfric", + "milo": "Milo", + "nessa": "Nessa", + "kabu": "Kabu", + "bea": "Bea", + "allister": "Allister", + "opal": "Opal", + "bede": "Bede", + "gordie": "Gordie", + "melony": "Melony", + "piers": "Piers", + "marnie": "Marnie", + "raihan": "Raihan", + "katy": "Katy", + "brassius": "Brassius", + "iono": "Iono", + "kofu": "Kofu", + "larry": "Larry", + "ryme": "Ryme", + "tulip": "Tulip", + "grusha": "Grusha", + "lorelei": "Lorelei", + "bruno": "Bruno", + "agatha": "Agatha", + "lance": "Lance", + "will": "Will", + "koga": "Koga", + "karen": "Karen", + "sidney": "Sidney", + "phoebe": "Phoebe", + "glacia": "Glacia", + "drake": "Drake", + "aaron": "Aaron", + "bertha": "Bertha", + "flint": "Flint", + "lucian": "Lucian", + "shauntal": "Shauntal", + "marshal": "Marshal", + "grimsley": "Grimsley", + "caitlin": "Caitlin", + "malva": "Malva", + "siebold": "Siebold", + "wikstrom": "Wikstrom", + "drasna": "Drasna", + "hala": "Hala", + "molayne": "Molayne", + "olivia": "Olivia", + "acerola": "Acerola", + "kahili": "Kahili", + "rika": "Rika", + "poppy": "Poppy", + "hassel": "Hassel", + "crispin": "Crispin", + "amarys": "Amarys", + "lacey": "Lacey", + "drayton": "Drayton", + "blue": "Blue", + "red": "Red", + "steven": "Steven", + "wallace": "Wallace", + "cynthia": "Cynthia", + "alder": "Alder", + "iris": "Iris", + "diantha": "Diantha", + "hau": "Hau", + "geeta": "Geeta", + "nemona": "Nemona", + "kieran": "Kieran", + "leon": "Leon", + "rival": "Finn", + "rival_female": "Ivy", + "archer": "Archer", + "ariana": "Ariana", + "proton": "Proton", + "petrel": "Petrel", + "tabitha": "Tabitha", + "courtney": "Courtney", + "shelly": "Shelly", + "matt": "Matt", + "mars": "Mars", + "jupiter": "Jupiter", + "saturn": "Saturn", + "zinzolin": "Zinzolin", + "rood": "Rood", + "xerosic": "Xerosic", + "bryony": "Bryony", + "faba": "Faba", + "plumeria": "Plumeria", + "oleana": "Oleana", + + "maxie": "Maxie", + "archie": "Archie", + "cyrus": "Cyrus", + "ghetsis": "Ghetsis", + "lysandre": "Lysandre", + "lusamine": "Lusamine", + "guzma": "Guzma", + "rose": "Rose", + + "blue_red_double": "Blue & Red", + "red_blue_double": "Red & Blue", + "tate_liza_double": "Tate & Liza", + "liza_tate_double": "Liza & Tate", + "steven_wallace_double": "Steven & Wallace", + "wallace_steven_double": "Wallace & Steven", + "alder_iris_double": "Alder & Iris", + "iris_alder_double": "Iris & Alder", + "marnie_piers_double": "Marnie & Piers", + "piers_marnie_double": "Piers & Marnie" +} diff --git a/src/locales/en/trainer-titles.json b/src/locales/en/trainer-titles.json new file mode 100644 index 00000000000..b9c919022be --- /dev/null +++ b/src/locales/en/trainer-titles.json @@ -0,0 +1,38 @@ +{ + "elite_four": "Elite Four", + "elite_four_female": "Elite Four", + "gym_leader": "Gym Leader", + "gym_leader_female": "Gym Leader", + "gym_leader_double": "Gym Leader Duo", + "champion": "Champion", + "champion_female": "Champion", + "champion_double": "Champion Duo", + "rival": "Rival", + "professor": "Professor", + "frontier_brain": "Frontier Brain", + "rocket_boss": "Team Rocket Boss", + "magma_boss": "Team Magma Boss", + "aqua_boss": "Team Aqua Boss", + "galactic_boss": "Team Galactic Boss", + "plasma_boss": "Team Plasma Boss", + "flare_boss": "Team Flare Boss", + "aether_boss": "Aether President", + "skull_boss": "Team Skull Boss", + "macro_boss": "Macro Cosmos President", + + "rocket_admin": "Team Rocket Admin", + "rocket_admin_female": "Team Rocket Admin", + "magma_admin": "Team Magma Admin", + "magma_admin_female": "Team Magma Admin", + "aqua_admin": "Team Aqua Admin", + "aqua_admin_female": "Team Aqua Admin", + "galactic_commander": "Team Galactic Commander", + "galactic_commander_female": "Team Galactic Commander", + "plasma_sage": "Team Plasma Sage", + "plasma_admin": "Team Plasma Admin", + "flare_admin": "Team Flare Admin", + "flare_admin_female": "Team Flare Admin", + "aether_admin": "Aether Foundation Admin", + "skull_admin": "Team Skull Admin", + "macro_admin": "Macro Cosmos" +} diff --git a/src/locales/en/trainers.ts b/src/locales/en/trainers.ts deleted file mode 100644 index a40fabaeacc..00000000000 --- a/src/locales/en/trainers.ts +++ /dev/null @@ -1,322 +0,0 @@ -import {SimpleTranslationEntries} from "#app/interfaces/locales"; - -// Titles of special trainers like gym leaders, elite four, and the champion -export const titles: SimpleTranslationEntries = { - "elite_four": "Elite Four", - "elite_four_female": "Elite Four", - "gym_leader": "Gym Leader", - "gym_leader_female": "Gym Leader", - "gym_leader_double": "Gym Leader Duo", - "champion": "Champion", - "champion_female": "Champion", - "champion_double": "Champion Duo", - "rival": "Rival", - "professor": "Professor", - "frontier_brain": "Frontier Brain", - "rocket_boss": "Team Rocket Boss", - "magma_boss": "Team Magma Boss", - "aqua_boss": "Team Aqua Boss", - "galactic_boss": "Team Galactic Boss", - "plasma_boss": "Team Plasma Boss", - "flare_boss": "Team Flare Boss", - - "rocket_admin": "Team Rocket Admin", - "rocket_admin_female": "Team Rocket Admin", - "magma_admin": "Team Magma Admin", - "magma_admin_female": "Team Magma Admin", - "aqua_admin": "Team Aqua Admin", - "aqua_admin_female": "Team Aqua Admin", - "galactic_commander": "Team Galactic Commander", - "galactic_commander_female": "Team Galactic Commander", - "plasma_sage": "Team Plasma Sage", - "plasma_admin": "Team Plasma Admin", - "flare_admin": "Team Flare Admin", - "flare_admin_female": "Team Flare Admin", - // Maybe if we add the evil teams we can add "Team Rocket" and "Team Aqua" etc. here as well as "Team Rocket Boss" and "Team Aqua Admin" etc. -} as const; - -// Titles of trainers like "Youngster" or "Lass" -export const trainerClasses: SimpleTranslationEntries = { - "ace_trainer": "Ace Trainer", - "ace_trainer_female": "Ace Trainer", - "ace_duo": "Ace Duo", - "artist": "Artist", - "artist_female": "Artist", - "backers": "Backers", - "backpacker": "Backpacker", - "backpacker_female": "Backpacker", - "backpackers": "Backpackers", - "baker": "Baker", - "battle_girl": "Battle Girl", - "beauty": "Beauty", - "beginners": "Beginners", - "biker": "Biker", - "black_belt": "Black Belt", - "breeder": "Breeder", - "breeder_female": "Breeder", - "breeders": "Breeders", - "clerk": "Clerk", - "clerk_female": "Clerk", - "colleagues": "Colleagues", - "crush_kin": "Crush Kin", - "cyclist": "Cyclist", - "cyclist_female": "Cyclist", - "cyclists": "Cyclists", - "dancer": "Dancer", - "dancer_female": "Dancer", - "depot_agent": "Depot Agent", - "doctor": "Doctor", - "doctor_female": "Doctor", - "firebreather": "Firebreather", - "fisherman": "Fisherman", - "fisherman_female": "Fisherman", - "gentleman": "Gentleman", - "guitarist": "Guitarist", - "guitarist_female": "Guitarist", - "harlequin": "Harlequin", - "hiker": "Hiker", - "hooligans": "Hooligans", - "hoopster": "Hoopster", - "infielder": "Infielder", - "janitor": "Janitor", - "lady": "Lady", - "lass": "Lass", - "linebacker": "Linebacker", - "maid": "Maid", - "madame": "Madame", - "medical_team": "Medical Team", - "musician": "Musician", - "hex_maniac": "Hex Maniac", - "nurse": "Nurse", - "nursery_aide": "Nursery Aide", - "officer": "Officer", - "parasol_lady": "Parasol Lady", - "pilot": "Pilot", - "pokéfan": "Poké Fan", - "pokéfan_female": "Poké Fan", - "pokéfan_family": "Poké Fan Family", - "preschooler": "Preschooler", - "preschooler_female": "Preschooler", - "preschoolers": "Preschoolers", - "psychic": "Psychic", - "psychic_female": "Psychic", - "psychics": "Psychics", - "pokémon_ranger": "Pokémon Ranger", - "pokémon_ranger_female": "Pokémon Ranger", - "pokémon_rangers": "Pokémon Ranger", - "ranger": "Ranger", - "restaurant_staff": "Restaurant Staff", - "rich": "Rich", - "rich_female": "Rich", - "rich_boy": "Rich Boy", - "rich_couple": "Rich Couple", - "rich_kid": "Rich Kid", - "rich_kid_female": "Rich Kid", - "rich_kids": "Rich Kids", - "roughneck": "Roughneck", - "sailor": "Sailor", - "scientist": "Scientist", - "scientist_female": "Scientist", - "scientists": "Scientists", - "smasher": "Smasher", - "snow_worker": "Snow Worker", - "snow_worker_female": "Snow Worker", - "striker": "Striker", - "school_kid": "School Kid", - "school_kid_female": "School Kid", - "school_kids": "School Kids", - "swimmer": "Swimmer", - "swimmer_female": "Swimmer", - "swimmers": "Swimmers", - "twins": "Twins", - "veteran": "Veteran", - "veteran_female": "Veteran", - "veteran_duo": "Veteran Duo", - "waiter": "Waiter", - "waitress": "Waitress", - "worker": "Worker", - "worker_female": "Worker", - "workers": "Workers", - "youngster": "Youngster", - "rocket_grunt": "Rocket Grunt", - "rocket_grunts": "Rocket Grunts", - "rocket_grunt_female": "Rocket Grunt", - "magma_grunt": "Magma Grunt", - "magma_grunt_female": "Magma Grunt", - "magma_grunts": "Magma Grunts", - "aqua_grunt": "Aqua Grunt", - "aqua_grunt_female": "Aqua Grunt", - "aqua_grunts": "Aqua Grunts", - "galactic_grunt": "Galactic Grunt", - "galactic_grunt_female": "Galactic Grunt", - "galactic_grunts": "Galactic Grunts", - "plasma_grunt": "Plasma Grunt", - "plasma_grunt_female": "Plasma Grunt", - "plasma_grunts": "Plasma Grunts", - "flare_grunt": "Flare Grunt", - "flare_grunt_female": "Flare Grunt", - "flare_grunts": "Flare Grunts", -} as const; - -// Names of special trainers like gym leaders, elite four, and the champion -export const trainerNames: SimpleTranslationEntries = { - "brock": "Brock", - "misty": "Misty", - "lt_surge": "Lt Surge", - "erika": "Erika", - "janine": "Janine", - "sabrina": "Sabrina", - "blaine": "Blaine", - "giovanni": "Giovanni", - "falkner": "Falkner", - "bugsy": "Bugsy", - "whitney": "Whitney", - "morty": "Morty", - "chuck": "Chuck", - "jasmine": "Jasmine", - "pryce": "Pryce", - "clair": "Clair", - "roxanne": "Roxanne", - "brawly": "Brawly", - "wattson": "Wattson", - "flannery": "Flannery", - "norman": "Norman", - "winona": "Winona", - "tate": "Tate", - "liza": "Liza", - "juan": "Juan", - "roark": "Roark", - "gardenia": "Gardenia", - "maylene": "Maylene", - "crasher_wake": "Crasher Wake", - "fantina": "Fantina", - "byron": "Byron", - "candice": "Candice", - "volkner": "Volkner", - "cilan": "Cilan", - "chili": "Chili", - "cress": "Cress", - "cheren": "Cheren", - "lenora": "Lenora", - "roxie": "Roxie", - "burgh": "Burgh", - "elesa": "Elesa", - "clay": "Clay", - "skyla": "Skyla", - "brycen": "Brycen", - "drayden": "Drayden", - "marlon": "Marlon", - "viola": "Viola", - "grant": "Grant", - "korrina": "Korrina", - "ramos": "Ramos", - "clemont": "Clemont", - "valerie": "Valerie", - "olympia": "Olympia", - "wulfric": "Wulfric", - "milo": "Milo", - "nessa": "Nessa", - "kabu": "Kabu", - "bea": "Bea", - "allister": "Allister", - "opal": "Opal", - "bede": "Bede", - "gordie": "Gordie", - "melony": "Melony", - "piers": "Piers", - "marnie": "Marnie", - "raihan": "Raihan", - "katy": "Katy", - "brassius": "Brassius", - "iono": "Iono", - "kofu": "Kofu", - "larry": "Larry", - "ryme": "Ryme", - "tulip": "Tulip", - "grusha": "Grusha", - "lorelei": "Lorelei", - "bruno": "Bruno", - "agatha": "Agatha", - "lance": "Lance", - "will": "Will", - "koga": "Koga", - "karen": "Karen", - "sidney": "Sidney", - "phoebe": "Phoebe", - "glacia": "Glacia", - "drake": "Drake", - "aaron": "Aaron", - "bertha": "Bertha", - "flint": "Flint", - "lucian": "Lucian", - "shauntal": "Shauntal", - "marshal": "Marshal", - "grimsley": "Grimsley", - "caitlin": "Caitlin", - "malva": "Malva", - "siebold": "Siebold", - "wikstrom": "Wikstrom", - "drasna": "Drasna", - "hala": "Hala", - "molayne": "Molayne", - "olivia": "Olivia", - "acerola": "Acerola", - "kahili": "Kahili", - "rika": "Rika", - "poppy": "Poppy", - "hassel": "Hassel", - "crispin": "Crispin", - "amarys": "Amarys", - "lacey": "Lacey", - "drayton": "Drayton", - "blue": "Blue", - "red": "Red", - "steven": "Steven", - "wallace": "Wallace", - "cynthia": "Cynthia", - "alder": "Alder", - "iris": "Iris", - "diantha": "Diantha", - "hau": "Hau", - "geeta": "Geeta", - "nemona": "Nemona", - "kieran": "Kieran", - "leon": "Leon", - "rival": "Finn", - "rival_female": "Ivy", - - // Evil Team Admins - "archer": "Archer", - "ariana": "Ariana", - "proton": "Proton", - "petrel": "Petrel", - "tabitha": "Tabitha", - "courtney": "Courtney", - "shelly": "Shelly", - "matt": "Matt", - "mars": "Mars", - "jupiter": "Jupiter", - "saturn": "Saturn", - "zinzolin": "Zinzolin", - "rood": "Rood", - "xerosic": "Xerosic", - "bryony": "Bryony", - - "maxie": "Maxie", - "archie": "Archie", - "cyrus": "Cyrus", - "ghetsis": "Ghetsis", - "lysandre": "Lysandre", - - // Double Names - "blue_red_double": "Blue & Red", - "red_blue_double": "Red & Blue", - "tate_liza_double": "Tate & Liza", - "liza_tate_double": "Liza & Tate", - "steven_wallace_double": "Steven & Wallace", - "wallace_steven_double": "Wallace & Steven", - "alder_iris_double": "Alder & Iris", - "iris_alder_double": "Iris & Alder", - "marnie_piers_double": "Marnie & Piers", - "piers_marnie_double": "Piers & Marnie", -} as const; diff --git a/src/locales/en/tutorial.json b/src/locales/en/tutorial.json new file mode 100644 index 00000000000..4c43f1fd896 --- /dev/null +++ b/src/locales/en/tutorial.json @@ -0,0 +1,10 @@ +{ + "intro": "Welcome to PokéRogue! This is a battle-focused Pokémon fangame with roguelite elements.\n$This game is not monetized and we claim no ownership of Pokémon nor of the copyrighted assets used.\n$The game is a work in progress, but fully playable.\nFor bug reports, please use the Discord community.\n$If the game runs slowly, please ensure 'Hardware Acceleration' is turned on in your browser settings.", + "accessMenu": "To access the menu, press M or Escape while awaiting input.\nThe menu contains settings and various features.", + "menu": "From this menu you can access the settings.\n$From the settings you can change game speed, window style, and other options.\n$There are also various other features here, so be sure to check them all!", + "starterSelect": "From this screen, you can select your starters by pressing\nZ or the Space bar. These are your initial party members.\n$Each starter has a value. Your party can have up to\n6 members as long as the total does not exceed 10.\n$You can also select gender, ability, and form depending on\nthe variants you've caught or hatched.\n$The IVs for a species are also the best of every one you've\ncaught or hatched, so try to get lots of the same species!", + "pokerus": "A daily random 3 selectable starters have a purple border.\n$If you see a starter you own with one of these,\ntry adding it to your party. Be sure to check its summary!", + "statChange": "Stat changes persist across battles as long as your Pokémon aren't recalled.\n$Your Pokémon are recalled before a trainer battle and before entering a new biome.\n$You can view the stat changes for any Pokémon on the field by holding C or Shift.\n$You can also view the moveset for an enemy Pokémon by holding V.\n$This only reveals moves that you've seen the Pokémon use this battle.", + "selectItem": "After every battle, you are given a choice of 3 random items.\nYou may only pick one.\n$These range from consumables, to Pokémon held items, to passive permanent items.\n$Most non-consumable item effects will stack in various ways.\n$Some items will only show up if they can be used, such as evolution items.\n$You can also transfer held items between Pokémon using the transfer option.\n$The transfer option will appear in the bottom right once you have obtained a held item.\n$You may purchase consumable items with money, and a larger variety will be available the further you get.\n$Be sure to buy these before you pick your random item, as it will progress to the next battle once you do.", + "eggGacha": "From this screen, you can redeem your vouchers for\nPokémon eggs.\n$Eggs have to be hatched and get closer to hatching after\nevery battle. Rarer eggs take longer to hatch.\n$Hatched Pokémon also won't be added to your party, they will\nbe added to your starters.\n$Pokémon hatched from eggs generally have better IVs than\nwild Pokémon.\n$Some Pokémon can only even be obtained from eggs.\n$There are 3 different machines to pull from with different\nbonuses, so pick the one that suits you best!" +} \ No newline at end of file diff --git a/src/locales/en/tutorial.ts b/src/locales/en/tutorial.ts deleted file mode 100644 index 3c4aa2b46f6..00000000000 --- a/src/locales/en/tutorial.ts +++ /dev/null @@ -1,44 +0,0 @@ -import { SimpleTranslationEntries } from "#app/interfaces/locales"; - -export const tutorial: SimpleTranslationEntries = { - "intro": `Welcome to PokéRogue! This is a battle-focused Pokémon fangame with roguelite elements. - $This game is not monetized and we claim no ownership of Pokémon nor of the copyrighted assets used. - $The game is a work in progress, but fully playable.\nFor bug reports, please use the Discord community. - $If the game runs slowly, please ensure 'Hardware Acceleration' is turned on in your browser settings.`, - - "accessMenu": "To access the menu, press M or Escape while awaiting input.\nThe menu contains settings and various features.", - - "menu": `From this menu you can access the settings. - $From the settings you can change game speed, window style, and other options. - $There are also various other features here, so be sure to check them all!`, - - "starterSelect": `From this screen, you can select your starters by pressing\nZ or the Space bar. These are your initial party members. - $Each starter has a value. Your party can have up to\n6 members as long as the total does not exceed 10. - $You can also select gender, ability, and form depending on\nthe variants you've caught or hatched. - $The IVs for a species are also the best of every one you've\ncaught or hatched, so try to get lots of the same species!`, - - "pokerus": `A daily random 3 selectable starters have a purple border. - $If you see a starter you own with one of these,\ntry adding it to your party. Be sure to check its summary!`, - - "statChange": `Stat changes persist across battles as long as your Pokémon aren't recalled. - $Your Pokémon are recalled before a trainer battle and before entering a new biome. - $You can view the stat changes for any Pokémon on the field by holding C or Shift. - $You can also view the moveset for an enemy Pokémon by holding V. - $This only reveals moves that you've seen the Pokémon use this battle.`, - - "selectItem": `After every battle, you are given a choice of 3 random items.\nYou may only pick one. - $These range from consumables, to Pokémon held items, to passive permanent items. - $Most non-consumable item effects will stack in various ways. - $Some items will only show up if they can be used, such as evolution items. - $You can also transfer held items between Pokémon using the transfer option. - $The transfer option will appear in the bottom right once you have obtained a held item. - $You may purchase consumable items with money, and a larger variety will be available the further you get. - $Be sure to buy these before you pick your random item, as it will progress to the next battle once you do.`, - - "eggGacha": `From this screen, you can redeem your vouchers for\nPokémon eggs. - $Eggs have to be hatched and get closer to hatching after\nevery battle. Rarer eggs take longer to hatch. - $Hatched Pokémon also won't be added to your party, they will\nbe added to your starters. - $Pokémon hatched from eggs generally have better IVs than\nwild Pokémon. - $Some Pokémon can only even be obtained from eggs. - $There are 3 different machines to pull from with different\nbonuses, so pick the one that suits you best!`, -} as const; diff --git a/src/locales/ca_ES/voucher.ts b/src/locales/en/voucher.json similarity index 65% rename from src/locales/ca_ES/voucher.ts rename to src/locales/en/voucher.json index b2894711020..a92f589870c 100644 --- a/src/locales/ca_ES/voucher.ts +++ b/src/locales/en/voucher.json @@ -1,6 +1,4 @@ -import { SimpleTranslationEntries } from "#app/interfaces/locales"; - -export const voucher: SimpleTranslationEntries = { +{ "vouchers": "Vouchers", "eggVoucher": "Egg Voucher", "eggVoucherPlus": "Egg Voucher Plus", @@ -8,4 +6,4 @@ export const voucher: SimpleTranslationEntries = { "eggVoucherGold": "Egg Voucher Gold", "locked": "Locked", "defeatTrainer": "Defeat {{trainerName}}" -} as const; +} \ No newline at end of file diff --git a/src/locales/en/voucher.ts b/src/locales/en/voucher.ts deleted file mode 100644 index 57db5fe767f..00000000000 --- a/src/locales/en/voucher.ts +++ /dev/null @@ -1,11 +0,0 @@ -import { SimpleTranslationEntries } from "#app/interfaces/locales"; - -export const voucher: SimpleTranslationEntries = { - "vouchers": "Vouchers", - "eggVoucher": "Egg Voucher", - "eggVoucherPlus": "Egg Voucher Plus", - "eggVoucherPremium": "Egg Voucher Premium", - "eggVoucherGold": "Egg Voucher Gold", - "locked": "Locked", - "defeatTrainer": "Defeat {{trainerName}}" -} as const; diff --git a/src/locales/en/weather.ts b/src/locales/en/weather.json similarity index 58% rename from src/locales/en/weather.ts rename to src/locales/en/weather.json index 8222064f341..10b6efe9828 100644 --- a/src/locales/en/weather.ts +++ b/src/locales/en/weather.json @@ -1,66 +1,32 @@ -import { SimpleTranslationEntries } from "#app/interfaces/locales"; - -/** - * The weather namespace holds text displayed when weather is active during a battle - */ -export const weather: SimpleTranslationEntries = { +{ "sunnyStartMessage": "The sunlight got bright!", "sunnyLapseMessage": "The sunlight is strong.", "sunnyClearMessage": "The sunlight faded.", - "rainStartMessage": "A downpour started!", "rainLapseMessage": "The downpour continues.", "rainClearMessage": "The rain stopped.", - "sandstormStartMessage": "A sandstorm brewed!", "sandstormLapseMessage": "The sandstorm rages.", "sandstormClearMessage": "The sandstorm subsided.", "sandstormDamageMessage": "{{pokemonNameWithAffix}} is buffeted\nby the sandstorm!", - "hailStartMessage": "It started to hail!", "hailLapseMessage": "Hail continues to fall.", "hailClearMessage": "The hail stopped.", "hailDamageMessage": "{{pokemonNameWithAffix}} is pelted\nby the hail!", - "snowStartMessage": "It started to snow!", "snowLapseMessage": "The snow is falling down.", "snowClearMessage": "The snow stopped.", - "fogStartMessage": "A thick fog emerged!", "fogLapseMessage": "The fog continues.", "fogClearMessage": "The fog disappeared.", - "heavyRainStartMessage": "A heavy downpour started!", "heavyRainLapseMessage": "The heavy downpour continues.", "heavyRainClearMessage": "The heavy rain stopped.", - "harshSunStartMessage": "The sunlight got hot!", "harshSunLapseMessage": "The sun is scorching hot.", "harshSunClearMessage": "The harsh sunlight faded.", - "strongWindsStartMessage": "A heavy wind began!", "strongWindsLapseMessage": "The wind blows intensely.", "strongWindsEffectMessage": "The mysterious air current weakened the attack!", "strongWindsClearMessage": "The heavy wind stopped." -}; - -export const terrain: SimpleTranslationEntries = { - "misty": "Misty", - "mistyStartMessage": "Mist swirled around the battlefield!", - "mistyClearMessage": "The mist disappeared from the battlefield.", - "mistyBlockMessage": "{{pokemonNameWithAffix}} surrounds itself with a protective mist!", - - "electric": "Electric", - "electricStartMessage": "An electric current ran across the battlefield!", - "electricClearMessage": "The electricity disappeared from the battlefield.", - - "grassy": "Grassy", - "grassyStartMessage": "Grass grew to cover the battlefield!", - "grassyClearMessage": "The grass disappeared from the battlefield.", - - "psychic": "Psychic", - "psychicStartMessage": "The battlefield got weird!", - "psychicClearMessage": "The weirdness disappeared from the battlefield!", - - "defaultBlockMessage": "{{pokemonNameWithAffix}} is protected by the {{terrainName}} Terrain!" -}; +} \ No newline at end of file diff --git a/src/locales/es/ability-trigger.json b/src/locales/es/ability-trigger.json new file mode 100644 index 00000000000..8bbcc80662c --- /dev/null +++ b/src/locales/es/ability-trigger.json @@ -0,0 +1,62 @@ +{ + "blockRecoilDamage": "¡{{abilityName}} de {{pokemonName}}\nlo protegió del daño de retroceso!", + "badDreams": "¡{{pokemonName}} está atormentado!", + "costar": "¡{{pokemonName}} copió los cambios de características de {{allyName}}!", + "iceFaceAvoidedDamage": "¡{{pokemonNameWithAffix}} evitó\ndaño con {{abilityName}}!", + "perishBody": "¡{{abilityName}} de {{pokemonName}} debilitará a ambos Pokémon en 3 turnos!", + "poisonHeal": "¡{{pokemonNameWithAffix}} restauró algunos de sus PS gracias a {{abilityName}}!", + "trace": "¡{{pokemonName}} ha copiado la habilidad {{abilityName}} \nde {{targetName}}!", + "windPowerCharged": "¡{{pokemonName}} se ha cargado de electricidad gracias a {{moveName}}!", + "quickDraw": "¡{{pokemonName}} ataca primero gracias a la habilidad Mano Rápida!", + "disguiseAvoidedDamage": "¡El disfraz de {{pokemonNameWithAffix}} se ha roto!", + "blockItemTheft": "¡{{pokemonNameWithAffix}} evitó el robo gracias a {{abilityName}}!", + "typeImmunityHeal": "¡{{pokemonNameWithAffix}} restauró algunos de sus PS gracias a {{abilityName}}!", + "nonSuperEffectiveImmunity": "¡{{pokemonNameWithAffix}} evitó el daño gracias a {{abilityName}}!", + "moveImmunity": "¡No afecta a {{pokemonNameWithAffix}}!", + "reverseDrain": "¡{{pokemonNameWithAffix}} absorbió lodo líquido!", + "postDefendTypeChange": "¡{{abilityName}} de {{pokemonNameWithAffix}} cambió a tipo {{typeName}}!", + "postDefendContactDamage": "¡{{abilityName}} de {{pokemonNameWithAffix}} ha herido a su atacante!", + "postDefendAbilitySwap": "¡{{pokemonNameWithAffix}} intercambió su habilidad con su objetivo!", + "postDefendAbilityGive": "¡{{pokemonNameWithAffix}} cambió la habilidad del objetivo por {{abilityName}}!", + "postDefendMoveDisable": "¡{{moveName}} de {{pokemonNameWithAffix}} ha sido anulado!", + "pokemonTypeChange": "¡{{pokemonNameWithAffix}} ha cambiado a tipo {{moveType}}!", + "postAttackStealHeldItem": "¡{{pokemonNameWithAffix}} robó {{stolenItemType}} de {{defenderName}}!", + "postDefendStealHeldItem": "¡{{pokemonNameWithAffix}} robó {{stolenItemType}} de {{attackerName}}!", + "copyFaintedAllyAbility": "¡{{abilityName}} de {{pokemonNameWithAffix}} fue copiada!", + "intimidateImmunity": "¡{{abilityName}} de {{pokemonNameWithAffix}} evita que sea intimidado!", + "postSummonAllyHeal": "¡{{pokemonNameWithAffix}} se ha bebido el té que ha preparado {{pokemonName}}!", + "postSummonClearAllyStats": "¡Los cambios de características de {{pokemonNameWithAffix}} fueron eliminados!", + "postSummonTransform": "¡{{pokemonNameWithAffix}} se transformó en {{targetName}}!", + "protectStat": "¡{{abilityName}} de {{pokemonNameWithAffix}} evita que baje su {{statName}}!", + "statusEffectImmunityWithName": "¡{{abilityName}} de {{pokemonNameWithAffix}} evita {{statusEffectName}}!", + "statusEffectImmunity": "¡{{abilityName}} de {{pokemonNameWithAffix}} evita los problemas de estado!", + "battlerTagImmunity": "¡{{abilityName}} de {{pokemonNameWithAffix}} previene {{battlerTagName}}!", + "forewarn": "¡{{pokemonNameWithAffix}} ha detectado el movimiento {{moveName}}!", + "frisk": "¡{{pokemonNameWithAffix}} ha cacheado {{opponentAbilityName}} de {{opponentName}}!", + "postWeatherLapseHeal": "¡{{pokemonNameWithAffix}} restauró algunos de sus PS gracias a {{abilityName}}!", + "postWeatherLapseDamage": "¡{{pokemonNameWithAffix}} se hizo daño por su {{abilityName}}!", + "postTurnLootCreateEatenBerry": "¡{{pokemonNameWithAffix}} recogió una {{berryName}}!", + "postTurnHeal": "¡{{pokemonNameWithAffix}} restauró algunos de sus PS gracias a {{abilityName}}!", + "fetchBall": "¡{{pokemonNameWithAffix}} encontró {{pokeballName}}!", + "healFromBerryUse": "¡{{pokemonNameWithAffix}} se curó gracias a {{abilityName}}!", + "arenaTrap": "¡{{pokemonNameWithAffix}} impide el cambio con {{abilityName}}!", + "postBattleLoot": "¡{{pokemonNameWithAffix}} recogió {{itemName}}!", + "postFaintContactDamage": "¡{{abilityName}} de {{pokemonNameWithAffix}} hizo daño a su atacante!", + "postFaintHpDamage": "¡{{abilityName}} de {{pokemonNameWithAffix}} hizo daño a su atacante!", + "postSummonPressure": "¡{{pokemonNameWithAffix}} ejerce Presión!", + "weatherEffectDisappeared": "El tiempo atmosférico ya no ejerce ninguna influencia.", + "postSummonMoldBreaker": "¡{{pokemonNameWithAffix}} rompió el molde!", + "postSummonAnticipation": "¡{{pokemonNameWithAffix}} se anticipó!", + "postSummonTurboblaze": "¡{{pokemonNameWithAffix}} irradia un aura llameante!", + "postSummonTeravolt": "¡{{pokemonNameWithAffix}} irradia un aura chisporroteante!", + "postSummonDarkAura": "¡{{pokemonNameWithAffix}} irradia un aura oscura!", + "postSummonFairyAura": "¡{{pokemonNameWithAffix}} irradia un aura feérica!", + "postSummonNeutralizingGas": "¡El Gas Reactivo de {{pokemonNameWithAffix}} se propaga por toda la zona!", + "postSummonAsOneGlastrier": "¡{{pokemonNameWithAffix}} tiene dos Habilidades!", + "postSummonAsOneSpectrier": "¡{{pokemonNameWithAffix}} tiene dos Habilidades!", + "postSummonVesselOfRuin": "¡{{pokemonNameWithAffix}} ha mermado {{statName}} de los demás Pokémon con Caldero Debacle!", + "postSummonSwordOfRuin": "¡{{pokemonNameWithAffix}} ha mermado {{statName}} de los demás Pokémon con Espada Debacle!", + "postSummonTabletsOfRuin": "¡{{pokemonNameWithAffix}} ha mermado {{statName}} de los demás Pokémon con Tablilla Debacle!", + "postSummonBeadsOfRuin": "¡{{pokemonNameWithAffix}} ha mermado {{statName}} de los demás Pokémon con Abalorio Debacle!", + "preventBerryUse": "{{pokemonNameWithAffix}} está muy nervioso y no puede comer bayas!" +} diff --git a/src/locales/es/ability-trigger.ts b/src/locales/es/ability-trigger.ts deleted file mode 100644 index 60bc186e99d..00000000000 --- a/src/locales/es/ability-trigger.ts +++ /dev/null @@ -1,63 +0,0 @@ -import { SimpleTranslationEntries } from "#app/interfaces/locales"; - -export const abilityTriggers: SimpleTranslationEntries = { - "blockRecoilDamage" : "¡{{abilityName}} de {{pokemonName}}\nlo protegió del daño de retroceso!", - "badDreams": "¡{{pokemonName}} está atormentado!", - "costar": "{{pokemonName}} copied {{allyName}}'s stat changes!", - "iceFaceAvoidedDamage": "¡{{pokemonNameWithAffix}} evitó\ndaño con {{abilityName}}!", - "perishBody": "{{pokemonName}}'s {{abilityName}}\nwill faint both pokemon in 3 turns!", - "poisonHeal": "{{pokemonName}}'s {{abilityName}}\nrestored its HP a little!", - "trace": "¡{{pokemonName}} ha copiado la habilidad {{abilityName}} \nde {{targetName}}!", - "windPowerCharged": "¡{{pokemonName}} se ha cargado de electricidad gracias a {{moveName}}!", - "quickDraw": "¡{{pokemonName}} ataca primero gracias a la habilidad Mano Rápida!", - "disguiseAvoidedDamage" : "¡El disfraz de {{pokemonNameWithAffix}} se ha roto!", - "blockItemTheft": "{{pokemonNameWithAffix}}'s {{abilityName}}\nprevents item theft!", - "typeImmunityHeal": "{{pokemonNameWithAffix}}'s {{abilityName}}\nrestored its HP a little!", - "nonSuperEffectiveImmunity": "{{pokemonNameWithAffix}} avoided damage\nwith {{abilityName}}!", - "moveImmunity": "It doesn't affect {{pokemonNameWithAffix}}!", - "reverseDrain": "{{pokemonNameWithAffix}} sucked up the liquid ooze!", - "postDefendTypeChange": "{{pokemonNameWithAffix}}'s {{abilityName}}\nmade it the {{typeName}} type!", - "postDefendContactDamage": "{{pokemonNameWithAffix}}'s {{abilityName}}\nhurt its attacker!", - "postDefendAbilitySwap": "{{pokemonNameWithAffix}} swapped\nabilities with its target!", - "postDefendAbilityGive": "{{pokemonNameWithAffix}} gave its target\n{{abilityName}}!", - "postDefendMoveDisable": "{{pokemonNameWithAffix}}'s {{moveName}}\nwas disabled!", - "pokemonTypeChange": "{{pokemonNameWithAffix}} transformed into the {{moveType}} type!", - "postAttackStealHeldItem": "{{pokemonNameWithAffix}} stole\n{{defenderName}}'s {{stolenItemType}}!", - "postDefendStealHeldItem": "{{pokemonNameWithAffix}} stole\n{{attackerName}}'s {{stolenItemType}}!", - "copyFaintedAllyAbility": "{{pokemonNameWithAffix}}'s {{abilityName}} was taken over!", - "intimidateImmunity": "{{pokemonNameWithAffix}}'s {{abilityName}} prevented it from being Intimidated!", - "postSummonAllyHeal": "{{pokemonNameWithAffix}} drank down all the\nmatcha that {{pokemonName}} made!", - "postSummonClearAllyStats": "{{pokemonNameWithAffix}}'s stat changes\nwere removed!", - "postSummonTransform": "{{pokemonNameWithAffix}} transformed\ninto {{targetName}}!", - "protectStat": "{{pokemonNameWithAffix}}'s {{abilityName}}\nprevents lowering its {{statName}}!", - "statusEffectImmunityWithName": "{{pokemonNameWithAffix}}'s {{abilityName}}\nprevents {{statusEffectName}}!", - "statusEffectImmunity": "{{pokemonNameWithAffix}}'s {{abilityName}}\nprevents status problems!", - "battlerTagImmunity": "{{pokemonNameWithAffix}}'s {{abilityName}}\nprevents {{battlerTagName}}!", - "forewarn": "{{pokemonNameWithAffix}} was forewarned about {{moveName}}!", - "frisk": "{{pokemonNameWithAffix}} frisked {{opponentName}}'s {{opponentAbilityName}}!", - "postWeatherLapseHeal": "{{pokemonNameWithAffix}}'s {{abilityName}}\nrestored its HP a little!", - "postWeatherLapseDamage": "{{pokemonNameWithAffix}} is hurt\nby its {{abilityName}}!", - "postTurnLootCreateEatenBerry": "{{pokemonNameWithAffix}} harvested one {{berryName}}!", - "postTurnHeal": "{{pokemonNameWithAffix}}'s {{abilityName}}\nrestored its HP a little!", - "fetchBall": "{{pokemonNameWithAffix}} found a\n{{pokeballName}}!", - "healFromBerryUse": "{{pokemonNameWithAffix}}'s {{abilityName}}\nrestored its HP!", - "arenaTrap": "{{pokemonNameWithAffix}}'s {{abilityName}}\nprevents switching!", - "postBattleLoot": "{{pokemonNameWithAffix}} picked up\n{{itemName}}!", - "postFaintContactDamage": "{{pokemonNameWithAffix}}'s {{abilityName}}\nhurt its attacker!", - "postFaintHpDamage": "{{pokemonNameWithAffix}}'s {{abilityName}}\nhurt its attacker!", - "postSummonPressure": "{{pokemonNameWithAffix}} is exerting its Pressure!", - "postSummonMoldBreaker": "{{pokemonNameWithAffix}} breaks the mold!", - "postSummonAnticipation": "{{pokemonNameWithAffix}} shuddered!", - "postSummonTurboblaze": "{{pokemonNameWithAffix}} is radiating a blazing aura!", - "postSummonTeravolt": "{{pokemonNameWithAffix}} is radiating a bursting aura!", - "postSummonDarkAura": "{{pokemonNameWithAffix}} is radiating a Dark Aura!", - "postSummonFairyAura": "{{pokemonNameWithAffix}} is radiating a Fairy Aura!", - "postSummonNeutralizingGas": "{{pokemonNameWithAffix}}'s Neutralizing Gas filled the area!", - "postSummonAsOneGlastrier": "{{pokemonNameWithAffix}} has two Abilities!", - "postSummonAsOneSpectrier": "{{pokemonNameWithAffix}} has two Abilities!", - "postSummonVesselOfRuin": "{{pokemonNameWithAffix}}'s Vessel of Ruin lowered the {{statName}}\nof all surrounding Pokémon!", - "postSummonSwordOfRuin": "{{pokemonNameWithAffix}}'s Sword of Ruin lowered the {{statName}}\nof all surrounding Pokémon!", - "postSummonTabletsOfRuin": "{{pokemonNameWithAffix}}'s Tablets of Ruin lowered the {{statName}}\nof all surrounding Pokémon!", - "postSummonBeadsOfRuin": "{{pokemonNameWithAffix}}'s Beads of Ruin lowered the {{statName}}\nof all surrounding Pokémon!", - "preventBerryUse": "{{pokemonNameWithAffix}} está muy nervioso y no puede comer bayas!", -} as const; diff --git a/src/locales/es/ability.json b/src/locales/es/ability.json new file mode 100644 index 00000000000..807cc755c94 --- /dev/null +++ b/src/locales/es/ability.json @@ -0,0 +1,1242 @@ +{ + "stench": { + "name": "Hedor", + "description": "Puede amedrentar a un Pokémon al atacarlo debido al mal olor que emana." + }, + "drizzle": { + "name": "Llovizna", + "description": "Hace que llueva al entrar en combate." + }, + "speedBoost": { + "name": "Impulso", + "description": "Aumenta su Velocidad en cada turno." + }, + "battleArmor": { + "name": "Armadura Batalla", + "description": "La robusta coraza que lo protege bloquea los golpes críticos." + }, + "sturdy": { + "name": "Robustez", + "description": "El Pokémon no puede debilitarse de un solo golpe cuando tiene los PS al máximo. También evita los movimientos fulminantes." + }, + "damp": { + "name": "Humedad", + "description": "Aumenta la humedad del entorno y evita que se puedan utilizar movimientos explosivos, tales como Autodestrucción." + }, + "limber": { + "name": "Flexibilidad", + "description": "Evita ser paralizado gracias a la flexibilidad de su cuerpo." + }, + "sandVeil": { + "name": "Velo Arena", + "description": "Aumenta su Evasión durante las tormentas de arena." + }, + "static": { + "name": "Elec. Estática", + "description": "La electricidad estática que lo envuelve puede paralizar al Pokémon que lo ataque con un movimiento de contacto." + }, + "voltAbsorb": { + "name": "Absorbe Elec", + "description": "Si lo alcanza un movimiento de tipo Eléctrico, recupera PS en vez de sufrir daño." + }, + "waterAbsorb": { + "name": "Absorbe Agua", + "description": "Si lo alcanza un movimiento de tipo Agua, recupera PS en vez de sufrir daño." + }, + "oblivious": { + "name": "Despiste", + "description": "Su indiferencia evita que sea provocado, caiga presa del enamoramiento o sufra los efectos de Intimidación." + }, + "cloudNine": { + "name": "Aclimatación", + "description": "Anula todos los efectos del tiempo atmosférico." + }, + "compoundEyes": { + "name": "Ojo Compuesto", + "description": "Aumenta la precisión de sus movimientos." + }, + "insomnia": { + "name": "Insomnio", + "description": "Su resistencia al sueño le impide quedarse dormido." + }, + "colorChange": { + "name": "Cambio Color", + "description": "Adopta el tipo del último movimiento del que es blanco." + }, + "immunity": { + "name": "Inmunidad", + "description": "Su sistema inmunitario evita el envenenamiento." + }, + "flashFire": { + "name": "Absorbe Fuego", + "description": "Si lo alcanza algún movimiento de tipo Fuego, potencia sus propios movimientos de dicho tipo." + }, + "shieldDust": { + "name": "Polvo Escudo", + "description": "El polvo de escamas que lo envuelve lo protege de los efectos secundarios de los ataques recibidos." + }, + "ownTempo": { + "name": "Ritmo Propio", + "description": "Como le gusta hacer las cosas a su manera, no le afecta la confusión ni sufre los efectos de Intimidación." + }, + "suctionCups": { + "name": "Ventosas", + "description": "Sus ventosas se aferran al suelo, con lo cual anula movimientos y objetos que fuercen el cambio de Pokémon." + }, + "intimidate": { + "name": "Intimidación", + "description": "Al entrar en combate, amilana al rival de tal manera que reduce su Ataque." + }, + "shadowTag": { + "name": "Sombra Trampa", + "description": "Pisa la sombra del rival para impedir que huya o lo cambien por otro." + }, + "roughSkin": { + "name": "Piel Tosca", + "description": "Hiere con su piel áspera al Pokémon que lo ataque con un movimiento de contacto." + }, + "wonderGuard": { + "name": "Superguarda", + "description": "Gracias a un poder misterioso, solo le hacen daño los movimientos supereficaces." + }, + "levitate": { + "name": "Levitación", + "description": "Su capacidad de flotar sobre el suelo le proporciona inmunidad frente a los movimientos de tipo Tierra." + }, + "effectSpore": { + "name": "Efecto Espora", + "description": "Puede dormir, envenenar o paralizar al Pokémon que lo ataque con un movimiento de contacto." + }, + "synchronize": { + "name": "Sincronía", + "description": "Contagia el envenenamiento, las quemaduras o la parálisis al Pokémon que le cause ese estado." + }, + "clearBody": { + "name": "Cuerpo Puro", + "description": "Evita que se reduzcan sus características a causa de movimientos o habilidades de otros Pokémon." + }, + "naturalCure": { + "name": "Cura Natural", + "description": "Sus problemas de estado desaparecen cuando se retira del combate." + }, + "lightningRod": { + "name": "Pararrayos", + "description": "Atrae y neutraliza los movimientos de tipo Eléctrico, que además le aumentan el Ataque Especial." + }, + "sereneGrace": { + "name": "Dicha", + "description": "Aumenta la probabilidad de que los movimientos causen efectos secundarios." + }, + "swiftSwim": { + "name": "Nado Rápido", + "description": "Aumenta su Velocidad cuando llueve." + }, + "chlorophyll": { + "name": "Clorofila", + "description": "Aumenta su Velocidad cuando hace sol." + }, + "illuminate": { + "name": "Iluminación", + "description": "Al iluminar el entorno, evita que su Precisión se reduzca." + }, + "trace": { + "name": "Calco", + "description": "Copia la habilidad del rival al entrar en combate." + }, + "hugePower": { + "name": "Potencia", + "description": "Duplica la potencia de sus ataques físicos." + }, + "poisonPoint": { + "name": "Punto Tóxico", + "description": "Puede envenenar al Pokémon que lo ataque con un movimiento de contacto." + }, + "innerFocus": { + "name": "Fuerza Mental", + "description": "Gracias a su profunda concentración, no se amedrenta ante los ataques de otros Pokémon ni sufre los efectos de Intimidación." + }, + "magmaArmor": { + "name": "Escudo Magma", + "description": "Gracias al magma candente que lo envuelve, no puede ser congelado." + }, + "waterVeil": { + "name": "Velo Agua", + "description": "Evita las quemaduras gracias a la capa de agua que lo envuelve." + }, + "magnetPull": { + "name": "Imán", + "description": "Su magnetismo atrae a los Pokémon de tipo Acero y les impide huir o ser cambiados por otros." + }, + "soundproof": { + "name": "Insonorizar", + "description": "Su aislamiento acústico lo protege de movimientos que usan sonido." + }, + "rainDish": { + "name": "Cura Lluvia", + "description": "Recupera PS de forma gradual cuando llueve." + }, + "sandStream": { + "name": "Chorro Arena", + "description": "Crea una tormenta de arena al entrar en combate." + }, + "pressure": { + "name": "Presión", + "description": "Presiona al rival de tal manera que este consume más PP al usar sus movimientos." + }, + "thickFat": { + "name": "Sebo", + "description": "Gracias a la gruesa capa de grasa que lo protege, reduce a la mitad el daño que recibe de ataques de tipo Fuego o Hielo." + }, + "earlyBird": { + "name": "Madrugar", + "description": "Si se duerme, tardará la mitad de tiempo en despertarse." + }, + "flameBody": { + "name": "Cuerpo Llama", + "description": "Puede quemar al Pokémon que lo ataque con un movimiento de contacto." + }, + "runAway": { + "name": "Fuga", + "description": "Puede escapar de cualquier Pokémon salvaje." + }, + "keenEye": { + "name": "Vista Lince", + "description": "Su aguda vista evita que su Precisión se reduzca." + }, + "hyperCutter": { + "name": "Corte Fuerte", + "description": "Evita que otros Pokémon le reduzcan el Ataque." + }, + "pickup": { + "name": "Recogida", + "description": "Puede recoger objetos que otros Pokémon hayan usado, o bien aquellos que encuentre en plena aventura." + }, + "truant": { + "name": "Pereza", + "description": "Al ejecutar un movimiento, descansará en el turno siguiente." + }, + "hustle": { + "name": "Entusiasmo", + "description": "Aumenta su Ataque, pero reduce su Precisión." + }, + "cuteCharm": { + "name": "Gran Encanto", + "description": "Puede causar enamoramiento al Pokémon que lo ataque con un movimiento de contacto." + }, + "plus": { + "name": "Más", + "description": "Aumenta su Ataque Especial si un Pokémon aliado tiene la habilidad Más o la habilidad Menos." + }, + "minus": { + "name": "Menos", + "description": "Aumenta su Ataque Especial si un Pokémon aliado tiene la habilidad Más o la habilidad Menos." + }, + "forecast": { + "name": "Predicción", + "description": "Cambia a tipo Agua, Fuego o Hielo en función del tiempo atmosférico." + }, + "stickyHold": { + "name": "Viscosidad", + "description": "Los objetos se quedan pegados a su cuerpo, por lo que no pueden robárselos." + }, + "shedSkin": { + "name": "Mudar", + "description": "Puede curar sus problemas de estado al mudar la piel." + }, + "guts": { + "name": "Agallas", + "description": "Si sufre un problema de estado, se arma de valor y aumenta su Ataque." + }, + "marvelScale": { + "name": "Escama Especial", + "description": "Si sufre un problema de estado, sus escamas especiales reaccionan y aumenta su Defensa." + }, + "liquidOoze": { + "name": "Viscosecreción", + "description": "Exuda una secreción viscosa y tóxica de intenso hedor que hiere a quienes intentan drenarle PS." + }, + "overgrow": { + "name": "Espesura", + "description": "Potencia sus movimientos de tipo Planta cuando le quedan pocos PS." + }, + "blaze": { + "name": "Mar Llamas", + "description": "Potencia sus movimientos de tipo Fuego cuando le quedan pocos PS." + }, + "torrent": { + "name": "Torrente", + "description": "Potencia sus movimientos de tipo Agua cuando le quedan pocos PS." + }, + "swarm": { + "name": "Enjambre", + "description": "Potencia sus movimientos de tipo Bicho cuando le quedan pocos PS." + }, + "rockHead": { + "name": "Cabeza Roca", + "description": "No pierde PS al usar movimientos que también hieren al usuario." + }, + "drought": { + "name": "Sequía", + "description": "El tiempo pasa a ser soleado al entrar en combate." + }, + "arenaTrap": { + "name": "Trampa Arena", + "description": "Evita que el rival huya o sea cambiado por otro." + }, + "vitalSpirit": { + "name": "Espíritu Vital", + "description": "Su determinación le impide quedarse dormido." + }, + "whiteSmoke": { + "name": "Humo Blanco", + "description": "El humo blanco que lo protege evita que otros Pokémon le reduzcan las características." + }, + "purePower": { + "name": "Energía Pura", + "description": "Duplica la potencia de sus ataques físicos gracias al yoga." + }, + "shellArmor": { + "name": "Caparazón", + "description": "La robusta coraza que lo protege bloquea los golpes críticos." + }, + "airLock": { + "name": "Esclusa de Aire", + "description": "Neutraliza todos los efectos del tiempo atmosférico." + }, + "tangledFeet": { + "name": "Tumbos", + "description": "Aumenta su Evasión si está confuso." + }, + "motorDrive": { + "name": "Electromotor", + "description": "Si lo alcanza un movimiento de tipo Eléctrico, aumenta su Velocidad en vez de sufrir daño." + }, + "rivalry": { + "name": "Rivalidad", + "description": "Si el objetivo es del mismo sexo, su competitividad le lleva a infligir más daño. Si es del sexo contrario, en cambio, el daño será menor." + }, + "steadfast": { + "name": "Impasible", + "description": "Cada vez que se amedrenta, aumenta su Velocidad debido a su voluntad inquebrantable." + }, + "snowCloak": { + "name": "Manto Níveo", + "description": "Aumenta su Evasión cuando nieva." + }, + "gluttony": { + "name": "Gula", + "description": "Cuando sus PS se ven reducidos a la mitad, engulle la baya que normalmente solo se comería cuando le quedasen pocos PS." + }, + "angerPoint": { + "name": "Irascible", + "description": "Si recibe un golpe crítico, monta en cólera y su Ataque aumenta al máximo." + }, + "unburden": { + "name": "Liviano", + "description": "Aumenta su Velocidad si usa o pierde el objeto que lleva." + }, + "heatproof": { + "name": "Ignífugo", + "description": "Su cuerpo, resistente al calor, reduce a la mitad el daño recibido por movimientos de tipo Fuego." + }, + "simple": { + "name": "Simple", + "description": "Duplica los cambios en las características." + }, + "drySkin": { + "name": "Piel Seca", + "description": "Pierde PS si hace sol y los recupera si llueve o recibe un movimiento de tipo Agua. Los movimientos de tipo Fuego, por su parte, le hacen más daño de lo normal." + }, + "download": { + "name": "Descarga", + "description": "Compara la Defensa y la Defensa Especial del rival para ver cuál es inferior y aumenta su propio Ataque o Ataque Especial según sea lo más eficaz." + }, + "ironFist": { + "name": "Puño Férreo", + "description": "Aumenta la potencia de los movimientos con los puños." + }, + "poisonHeal": { + "name": "Antídoto", + "description": "Si resulta envenenado, recupera PS en vez de perderlos." + }, + "adaptability": { + "name": "Adaptable", + "description": "Potencia aún más los movimientos cuyo tipo coincida con el suyo." + }, + "skillLink": { + "name": "Encadenado", + "description": "Ejecuta siempre los movimientos de ataque múltiple con el número máximo de golpes." + }, + "hydration": { + "name": "Hidratación", + "description": "Cura los problemas de estado si está lloviendo." + }, + "solarPower": { + "name": "Poder Solar", + "description": "Si hace sol, aumenta su Ataque Especial, pero pierde PS en cada turno." + }, + "quickFeet": { + "name": "Pies Rápidos", + "description": "Aumenta su Velocidad si sufre problemas de estado." + }, + "normalize": { + "name": "Normalidad", + "description": "Hace que todos sus movimientos se vuelvan de tipo Normal y aumenta ligeramente su potencia." + }, + "sniper": { + "name": "Francotirador", + "description": "Potencia los golpes críticos que asesta aún más de lo normal." + }, + "magicGuard": { + "name": "Muro Mágico", + "description": "Solo recibe daño de ataques." + }, + "noGuard": { + "name": "Indefenso", + "description": "Al quedar ambos expuestos, tanto sus movimientos como los del Pokémon que lo ataque acertarán siempre." + }, + "stall": { + "name": "Rezagado", + "description": "Ejecuta su movimiento tras todos los demás." + }, + "technician": { + "name": "Experto", + "description": "Aumenta la potencia de sus movimientos débiles." + }, + "leafGuard": { + "name": "Defensa Hoja", + "description": "Evita los problemas de estado si hace sol." + }, + "klutz": { + "name": "Zoquete", + "description": "No puede usar objetos equipados." + }, + "moldBreaker": { + "name": "Rompemoldes", + "description": "Sus movimientos no se ven afectados por la habilidad del objetivo." + }, + "superLuck": { + "name": "Afortunado", + "description": "Su buena suerte aumenta la probabilidad de asestar golpes críticos." + }, + "aftermath": { + "name": "Detonación", + "description": "Daña al Pokémon que le ha dado el golpe de gracia con un movimiento de contacto." + }, + "anticipation": { + "name": "Anticipación", + "description": "Prevé los movimientos peligrosos del rival." + }, + "forewarn": { + "name": "Alerta", + "description": "Revela uno de los movimientos del rival al entrar en combate." + }, + "unaware": { + "name": "Ignorante", + "description": "Pasa por alto los cambios en las características de un Pokémon al atacarlo o recibir daño." + }, + "tintedLens": { + "name": "Cromolente", + "description": "Potencia los movimientos que no son muy eficaces, que infligen ahora un daño normal." + }, + "filter": { + "name": "Filtro", + "description": "Mitiga el daño que le infligen los movimientos supereficaces." + }, + "slowStart": { + "name": "Inicio Lento", + "description": "Reduce a la mitad su Ataque y su Velocidad durante cinco turnos." + }, + "scrappy": { + "name": "Intrépido", + "description": "Alcanza a Pokémon de tipo Fantasma con movimientos de tipo Normal o Lucha. Además, no sufre los efectos de Intimidación." + }, + "stormDrain": { + "name": "Colector", + "description": "Atrae y neutraliza los movimientos de tipo Agua, que además le aumentan el Ataque Especial." + }, + "iceBody": { + "name": "Gélido", + "description": "Recupera PS de forma gradual cuando nieva." + }, + "solidRock": { + "name": "Roca Sólida", + "description": "Mitiga el daño que le infligen los movimientos supereficaces." + }, + "snowWarning": { + "name": "Nevada", + "description": "Invoca una nevada al entrar en combate." + }, + "honeyGather": { + "name": "Recogemiel", + "description": "The Pokémon gathers Honey after a battle. The Honey is then sold for money." + }, + "frisk": { + "name": "Cacheo", + "description": "Cuando entra en combate, el Pokémon puede comprobar la habilidad de un Pokémon rival." + }, + "reckless": { + "name": "Audaz", + "description": "Potencia los movimientos que también dañan al usuario." + }, + "multitype": { + "name": "Multitipo", + "description": "Cambia su tipo al de la tabla que lleve." + }, + "flowerGift": { + "name": "Don Floral", + "description": "Si hace sol, aumenta su Ataque y su Defensa Especial, así como los de sus aliados." + }, + "badDreams": { + "name": "Mal Sueño", + "description": "Inflige daño a cualquier rival que esté dormido." + }, + "pickpocket": { + "name": "Hurto", + "description": "Roba el objeto del Pokémon que lo ataque con un movimiento de contacto." + }, + "sheerForce": { + "name": "Potencia Bruta", + "description": "Aumenta la potencia de sus movimientos en detrimento de los efectos secundarios, que se ven anulados." + }, + "contrary": { + "name": "Respondón", + "description": "Invierte los cambios en las características: bajan cuando les toca subir y suben cuando les toca bajar." + }, + "unnerve": { + "name": "Nerviosismo", + "description": "Pone nervioso al rival y le impide comer bayas." + }, + "defiant": { + "name": "Competitivo", + "description": "Aumenta mucho su Ataque cuando el rival le reduce cualquiera de sus características." + }, + "defeatist": { + "name": "Flaqueza", + "description": "Cuando sus PS se ven reducidos a la mitad, se cansa tanto que su Ataque y su Ataque Especial también se ven reducidos a la mitad." + }, + "cursedBody": { + "name": "Cuerpo Maldito", + "description": "Puede anular el movimiento usado en su contra." + }, + "healer": { + "name": "Alma Cura", + "description": "A veces cura los problemas de estado de un aliado." + }, + "friendGuard": { + "name": "Compiescolta", + "description": "Reduce el daño que sufren los aliados." + }, + "weakArmor": { + "name": "Armadura Frágil", + "description": "Al recibir daño de un ataque físico, se reduce su Defensa, pero aumenta mucho su Velocidad." + }, + "heavyMetal": { + "name": "Metal Pesado", + "description": "Duplica su peso." + }, + "lightMetal": { + "name": "Metal Liviano", + "description": "Reduce a la mitad su peso." + }, + "multiscale": { + "name": "Multiescamas", + "description": "Reduce el daño que sufre si sus PS están al máximo." + }, + "toxicBoost": { + "name": "Ímpetu Tóxico", + "description": "Aumenta la potencia de sus ataques físicos cuando está envenenado." + }, + "flareBoost": { + "name": "Ímpetu Ardiente", + "description": "Aumenta la potencia de sus ataques especiales cuando sufre quemaduras." + }, + "harvest": { + "name": "Cosecha", + "description": "Puede reutilizar varias veces una misma baya." + }, + "telepathy": { + "name": "Telepatía", + "description": "Elude los ataques de los aliados durante el combate." + }, + "moody": { + "name": "Veleta", + "description": "Aumenta mucho una característica en cada turno, pero reduce otra." + }, + "overcoat": { + "name": "Funda", + "description": "No recibe daño de las tormentas de arena ni sufre los efectos causados por polvos o esporas." + }, + "poisonTouch": { + "name": "Toque Tóxico", + "description": "Puede envenenar al Pokémon al que ataque con un movimiento de contacto." + }, + "regenerator": { + "name": "Regeneración", + "description": "Recupera unos pocos PS cuando se retira del combate." + }, + "bigPecks": { + "name": "Sacapecho", + "description": "Impide que otros Pokémon le reduzcan la Defensa." + }, + "sandRush": { + "name": "Ímpetu Arena", + "description": "Aumenta su Velocidad durante las tormentas de arena." + }, + "wonderSkin": { + "name": "Piel Milagro", + "description": "Presenta una mayor resistencia ante los movimientos de estado." + }, + "analytic": { + "name": "Cálculo Final", + "description": "Aumenta la potencia de su movimiento si es el último en atacar." + }, + "illusion": { + "name": "Ilusión", + "description": "Adopta el aspecto del último Pokémon del equipo al entrar en combate para desconcertar al rival." + }, + "imposter": { + "name": "Impostor", + "description": "Se transforma en el Pokémon que tiene enfrente." + }, + "infiltrator": { + "name": "Allanamiento", + "description": "Ataca sorteando las barreras o el sustituto del objetivo." + }, + "mummy": { + "name": "Momia", + "description": "Contagia la habilidad Momia al Pokémon que lo ataque con un movimiento de contacto." + }, + "moxie": { + "name": "Autoestima", + "description": "Al debilitar a un objetivo, su confianza se refuerza de tal manera que aumenta su Ataque." + }, + "justified": { + "name": "Justiciero", + "description": "Si lo alcanza un movimiento de tipo Siniestro, aumenta el Ataque debido a su integridad." + }, + "rattled": { + "name": "Cobardía", + "description": "Si lo alcanza un ataque de tipo Siniestro, Bicho o Fantasma, o si sufre los efectos de Intimidación, el miedo hace que aumente su Velocidad." + }, + "magicBounce": { + "name": "Espejo Mágico", + "description": "Puede devolver los movimientos de estado sin verse afectado por ellos." + }, + "sapSipper": { + "name": "Herbívoro", + "description": "Si lo alcanza un movimiento de tipo Planta, aumenta su Ataque en vez de sufrir daño." + }, + "prankster": { + "name": "Bromista", + "description": "Sus movimientos de estado tienen prioridad alta." + }, + "sandForce": { + "name": "Poder Arena", + "description": "Potencia los movimientos de tipo Tierra, Acero y Roca durante las tormentas de arena." + }, + "ironBarbs": { + "name": "Punta Acero", + "description": "Inflige daño con sus púas de acero al Pokémon que lo ataque con un movimiento de contacto." + }, + "zenMode": { + "name": "Modo Daruma", + "description": "Cambia de forma si sus PS se ven reducidos a la mitad o menos." + }, + "victoryStar": { + "name": "Tinovictoria", + "description": "Aumenta su Precisión y la de sus aliados." + }, + "turboblaze": { + "name": "Turbollama", + "description": "Sus movimientos no se ven afectados por la habilidad del objetivo." + }, + "teravolt": { + "name": "Terravoltaje", + "description": "Sus movimientos no se ven afectados por la habilidad del objetivo." + }, + "aromaVeil": { + "name": "Velo Aroma", + "description": "Se protege a sí mismo y a sus aliados de efectos que impiden usar movimientos." + }, + "flowerVeil": { + "name": "Velo Flor", + "description": "Evita que los Pokémon de tipo Planta aliados sufran problemas de estado o que les reduzcan sus características." + }, + "cheekPouch": { + "name": "Carrillo", + "description": "Recupera PS al comer cualquier baya." + }, + "protean": { + "name": "Mutatipo", + "description": "Al entrar en combate, cambia su tipo al del primer movimiento que va a usar." + }, + "furCoat": { + "name": "Pelaje Recio", + "description": "Reduce a la mitad el daño que recibe de ataques físicos." + }, + "magician": { + "name": "Prestidigitador", + "description": "Roba el objeto del Pokémon al que alcance con un movimiento." + }, + "bulletproof": { + "name": "Antibalas", + "description": "No le afectan las bombas ni algunos proyectiles." + }, + "competitive": { + "name": "Tenacidad", + "description": "Aumenta mucho su Ataque Especial cuando el rival le reduce cualquiera de sus características." + }, + "strongJaw": { + "name": "Mandíbula Fuerte", + "description": "Su robusta mandíbula le confiere una mordedura mucho más potente." + }, + "refrigerate": { + "name": "Piel Helada", + "description": "Convierte los movimientos de tipo Normal en tipo Hielo y aumenta ligeramente su potencia." + }, + "sweetVeil": { + "name": "Velo Dulce", + "description": "No cae dormido y evita también que sus aliados se duerman." + }, + "stanceChange": { + "name": "Cambio Táctico", + "description": "Adopta la Forma Filo al lanzar un ataque, o bien la Forma Escudo si usa el movimiento Escudo Real." + }, + "galeWings": { + "name": "Alas Vendaval", + "description": "Da prioridad a los movimientos de tipo Volador si sus PS están al máximo." + }, + "megaLauncher": { + "name": "Megadisparador", + "description": "Aumenta la potencia de algunos movimientos de pulsos y auras." + }, + "grassPelt": { + "name": "Manto Frondoso", + "description": "Aumenta su Defensa si hay un campo de hierba en el terreno de combate." + }, + "symbiosis": { + "name": "Simbiosis", + "description": "Pasa su objeto a un aliado cuando este use el suyo." + }, + "toughClaws": { + "name": "Garra Dura", + "description": "Aumenta la potencia de los movimientos de contacto." + }, + "pixilate": { + "name": "Piel Feérica", + "description": "Convierte los movimientos de tipo Normal en tipo Hada y aumenta ligeramente su potencia." + }, + "gooey": { + "name": "Baba", + "description": "Reduce la Velocidad del Pokémon que lo ataque con un movimiento de contacto." + }, + "aerilate": { + "name": "Piel Celeste", + "description": "Convierte los movimientos de tipo Normal en tipo Volador y aumenta ligeramente su potencia." + }, + "parentalBond": { + "name": "Amor Filial", + "description": "Une fuerzas con su cría y ataca dos veces." + }, + "darkAura": { + "name": "Aura Oscura", + "description": "Aumenta la potencia de los movimientos de tipo Siniestro de todos los Pokémon." + }, + "fairyAura": { + "name": "Aura Feérica", + "description": "Aumenta la potencia de los movimientos de tipo Hada de todos los Pokémon." + }, + "auraBreak": { + "name": "Rompeaura", + "description": "Invierte los efectos de las habilidades de auras, por lo que reduce la potencia de ciertos movimientos en vez de aumentarla." + }, + "primordialSea": { + "name": "Mar del Albor", + "description": "Altera el clima para anular los ataques de tipo Fuego." + }, + "desolateLand": { + "name": "Tierra del Ocaso", + "description": "Altera el clima para anular los ataques de tipo Agua." + }, + "deltaStream": { + "name": "Ráfaga Delta", + "description": "Altera el clima para anular las vulnerabilidades del tipo Volador." + }, + "stamina": { + "name": "Firmeza", + "description": "Aumenta su Defensa al recibir un ataque." + }, + "wimpOut": { + "name": "Huida", + "description": "Se asusta y abandona el terreno de combate cuando sus PS se ven reducidos a la mitad." + }, + "emergencyExit": { + "name": "Retirada", + "description": "Abandona el terreno de combate cuando sus PS se ven reducidos a la mitad para evitar males mayores." + }, + "waterCompaction": { + "name": "Hidrorrefuerzo", + "description": "Aumenta mucho su Defensa si lo alcanza un movimiento de tipo Agua." + }, + "merciless": { + "name": "Ensañamiento", + "description": "Hace que sus movimientos asesten siempre un golpe crítico si el objetivo está envenenado." + }, + "shieldsDown": { + "name": "Escudo Limitado", + "description": "Rompe su coraza cuando sus PS se ven reducidos a la mitad y adopta una forma ofensiva." + }, + "stakeout": { + "name": "Vigilante", + "description": "Si el objetivo de su ataque es sustituido por otro, duplica el daño que infligirá." + }, + "waterBubble": { + "name": "Pompa", + "description": "Reduce el daño que le provocan los movimientos de tipo Fuego y es inmune a las quemaduras." + }, + "steelworker": { + "name": "Acero Templado", + "description": "Potencia los movimientos de tipo Acero." + }, + "berserk": { + "name": "Cólera", + "description": "Aumenta su Ataque Especial si sus PS se ven reducidos a la mitad debido a algún ataque." + }, + "slushRush": { + "name": "Quitanieves", + "description": "Aumenta su Velocidad cuando nieva." + }, + "longReach": { + "name": "Remoto", + "description": "Puede usar cualquier movimiento sin entrar en contacto con su objetivo." + }, + "liquidVoice": { + "name": "Voz Fluida", + "description": "Hace que todos sus movimientos que usan sonido pasen a ser de tipo Agua." + }, + "triage": { + "name": "Primer Auxilio", + "description": "Da prioridad a los movimientos que restauran PS." + }, + "galvanize": { + "name": "Piel Eléctrica", + "description": "Convierte los movimientos de tipo Normal en tipo Eléctrico y aumenta ligeramente su potencia." + }, + "surgeSurfer": { + "name": "Cola Surf", + "description": "Duplica su Velocidad si hay un campo eléctrico en el terreno de combate." + }, + "schooling": { + "name": "Banco", + "description": "Forma bancos con sus congéneres cuando tiene muchos PS, lo cual le otorga más fuerza. Cuando le quedan pocos PS, el banco se dispersa." + }, + "disguise": { + "name": "Disfraz", + "description": "Puede eludir un ataque valiéndose de la tela que le cubre el cuerpo una vez por combate." + }, + "battleBond": { + "name": "Fuerte Afecto", + "description": "Al derrotar a un Pokémon, los vínculos con su Entrenador se refuerzan y aumentan su Ataque, su Ataque Especial y su Velocidad." + }, + "powerConstruct": { + "name": "Agrupamiento", + "description": "Cuando sus PS se ven reducidos a la mitad, las células se reagrupan y adopta su Forma Completa." + }, + "corrosion": { + "name": "Corrosión", + "description": "Puede envenenar incluso a Pokémon de tipo Acero o Veneno." + }, + "comatose": { + "name": "Letargo Perenne", + "description": "No despierta jamás de su profundo letargo e incluso ataca dormido." + }, + "queenlyMajesty": { + "name": "Regia Presencia", + "description": "Intimida al rival y le impide usar movimientos con prioridad contra él y sus aliados." + }, + "innardsOut": { + "name": "Revés", + "description": "Al caer debilitado, inflige al atacante un daño equivalente a los PS que le quedaran antes de recibir el golpe de gracia." + }, + "dancer": { + "name": "Pareja de Baile", + "description": "Puede copiar inmediatamente cualquier movimiento de baile que haya usado otro Pokémon presente en el combate." + }, + "battery": { + "name": "Batería", + "description": "Potencia los ataques especiales de los aliados." + }, + "fluffy": { + "name": "Peluche", + "description": "Reduce a la mitad el daño recibido por los movimientos de contacto, pero duplica el que le infligen los de tipo Fuego." + }, + "dazzling": { + "name": "Cuerpo Vívido", + "description": "Desconcierta al rival y le impide usar movimientos con prioridad contra él y sus aliados." + }, + "soulHeart": { + "name": "Coránima", + "description": "Aumenta su Ataque Especial cada vez que un Pokémon cae debilitado." + }, + "tanglingHair": { + "name": "Rizos Rebeldes", + "description": "Reduce la Velocidad del Pokémon que lo ataque con un movimiento de contacto." + }, + "receiver": { + "name": "Receptor", + "description": "Adquiere la habilidad de un aliado debilitado." + }, + "powerOfAlchemy": { + "name": "Reacción Química", + "description": "Reacciona copiando la habilidad de un aliado debilitado." + }, + "beastBoost": { + "name": "Ultraimpulso", + "description": "Al derrotar a un Pokémon, aumenta su característica más fuerte." + }, + "rksSystem": { + "name": "Sistema Alfa", + "description": "Cambia su tipo según el disco que lleve instalado." + }, + "electricSurge": { + "name": "Electrogénesis", + "description": "Crea un campo eléctrico al entrar en combate." + }, + "psychicSurge": { + "name": "Psicogénesis", + "description": "Crea un campo psíquico al entrar en combate." + }, + "mistySurge": { + "name": "Nebulogénesis", + "description": "Crea un campo de niebla al entrar en combate." + }, + "grassySurge": { + "name": "Herbogénesis", + "description": "Crea un campo de hierba al entrar en combate." + }, + "fullMetalBody": { + "name": "Guardia Metálica", + "description": "Evita que se reduzcan sus características a causa de movimientos o habilidades de otros Pokémon." + }, + "shadowShield": { + "name": "Guardia Espectro", + "description": "Reduce el daño que sufre si sus PS están al máximo." + }, + "prismArmor": { + "name": "Armadura Prisma", + "description": "Mitiga el daño que le infligen los movimientos supereficaces." + }, + "neuroforce": { + "name": "Fuerza Cerebral", + "description": "Potencia los ataques supereficaces." + }, + "intrepidSword": { + "name": "Espada Indómita", + "description": "Aumenta su Ataque al entrar en combate por primera vez." + }, + "dauntlessShield": { + "name": "Escudo Recio", + "description": "Aumenta su Defensa al entrar en combate por primera vez." + }, + "libero": { + "name": "Líbero", + "description": "Al entrar en combate, cambia su tipo al del primer movimiento que va a usar." + }, + "ballFetch": { + "name": "Recogebolas", + "description": "Si no lleva equipado ningún objeto, recupera la Poké Ball del primer intento de captura fallido." + }, + "cottonDown": { + "name": "Pelusa", + "description": "Al ser alcanzado por un ataque, suelta una pelusa de algodón que reduce la Velocidad de todos los demás Pokémon." + }, + "propellerTail": { + "name": "Hélice Caudal", + "description": "Ignora los efectos de las habilidades o los movimientos que permiten a un Pokémon centrar la atención sobre sí." + }, + "mirrorArmor": { + "name": "Coraza Reflejo", + "description": "Refleja los efectos que reducen las características." + }, + "gulpMissile": { + "name": "Tragamisil", + "description": "Tras usar Surf o Buceo, emerge con una presa en la boca. Al recibir daño, ataca escupiéndola." + }, + "stalwart": { + "name": "Acérrimo", + "description": "Ignora los efectos de las habilidades o los movimientos que permiten a un Pokémon centrar la atención sobre sí." + }, + "steamEngine": { + "name": "Combustible", + "description": "Si lo alcanza un movimiento de tipo Fuego o Agua, aumenta muchísimo su Velocidad." + }, + "punkRock": { + "name": "Punk Rock", + "description": "Potencia los movimientos que usan sonido y reduce a la mitad el daño que le infligen dichos movimientos." + }, + "sandSpit": { + "name": "Expulsarena", + "description": "Provoca una tormenta de arena al recibir un ataque." + }, + "iceScales": { + "name": "Escama de Hielo", + "description": "Las gélidas escamas que protegen su cuerpo reducen a la mitad el daño que le infligen los ataques especiales." + }, + "ripen": { + "name": "Maduración", + "description": "Hace madurar las bayas, por lo que duplica sus efectos." + }, + "iceFace": { + "name": "Cara de Hielo", + "description": "Absorbe el daño de un ataque físico con el hielo de la cabeza, tras lo cual cambia de forma. El hielo se regenerará la próxima vez que nieve." + }, + "powerSpot": { + "name": "Fuente Energía", + "description": "Potencia los movimientos de los Pokémon adyacentes." + }, + "mimicry": { + "name": "Mimetismo", + "description": "Cambia su tipo según el campo que haya en el terreno de combate." + }, + "screenCleaner": { + "name": "Antibarrera", + "description": "Anula los efectos de Pantalla de Luz, Reflejo y Velo Aurora tanto de rivales como de aliados al entrar en combate." + }, + "steelySpirit": { + "name": "Alma Acerada", + "description": "Potencia los movimientos de tipo Acero del Pokémon y sus aliados." + }, + "perishBody": { + "name": "Cuerpo Mortal", + "description": "Si lo alcanza un movimiento de contacto, se debilitará al cabo de 3 turnos, así como el atacante, a menos que abandonen el terreno de combate." + }, + "wanderingSpirit": { + "name": "Alma Errante", + "description": "Si lo alcanza un movimiento de contacto, intercambia su habilidad con la del atacante." + }, + "gorillaTactics": { + "name": "Monotema", + "description": "Aumenta su Ataque, pero solo puede usar el primer movimiento escogido." + }, + "neutralizingGas": { + "name": "Gas Reactivo", + "description": "Anula los efectos de las habilidades de los demás Pokémon presentes mientras esté en el terreno de combate." + }, + "pastelVeil": { + "name": "Velo Pastel", + "description": "Se protege a sí mismo y a sus aliados del envenenamiento." + }, + "hungerSwitch": { + "name": "Mutapetito", + "description": "Alterna entre su Forma Saciada y Forma Voraz al final de cada turno." + }, + "quickDraw": { + "name": "Mano Rápida", + "description": "A veces, puede atacar el primero." + }, + "unseenFist": { + "name": "Puño Invisible", + "description": "Si usa un movimiento de contacto, puede infligir daño al objetivo aunque este se proteja." + }, + "curiousMedicine": { + "name": "Medicina Extraña", + "description": "Al entrar en combate, rezuma una substancia medicinal por la caracola que revierte los cambios en las características de los aliados." + }, + "transistor": { + "name": "Transistor", + "description": "Potencia los movimientos de tipo Eléctrico." + }, + "dragonsMaw": { + "name": "Mandíbula Dragón", + "description": "Potencia los movimientos de tipo Dragón." + }, + "chillingNeigh": { + "name": "Relincho Blanco", + "description": "Al derrotar a un objetivo, emite un relincho gélido y aumenta su Ataque." + }, + "grimNeigh": { + "name": "Relincho Negro", + "description": "Al derrotar a un objetivo, emite un relincho aterrador y aumenta su Ataque Especial." + }, + "asOneGlastrier": { + "name": "Unidad Ecuestre", + "description": "El Pokémon tiene dos habilidades: Relincho Negro de Spectrier y Nerviosismo de Calyrex." + }, + "asOneSpectrier": { + "name": "Unidad Ecuestre", + "description": "El Pokémon tiene dos habilidades: Relincho Negro de Spectrier y Nerviosismo de Calyrex." + }, + "lingeringAroma": { + "name": "Olor Persistente", + "description": "Contagia la habilidad Olor Persistente al Pokémon que lo ataque con un movimiento de contacto." + }, + "seedSower": { + "name": "Disemillar", + "description": "Crea un campo de hierba al recibir un ataque." + }, + "thermalExchange": { + "name": "Termoconversión", + "description": "Evita las quemaduras y, si lo alcanza un movimiento de tipo Fuego, aumenta su Ataque." + }, + "angerShell": { + "name": "Coraza Ira", + "description": "Cuando un ataque reduce sus PS a la mitad, un arrebato de cólera reduce su Defensa y su Defensa Especial, pero aumenta su Ataque, su Ataque Especial y su Velocidad." + }, + "purifyingSalt": { + "name": "Sal Purificadora", + "description": "Su sal pura lo protege de los problemas de estado y reduce a la mitad el daño que recibe de ataques de tipo Fantasma." + }, + "wellBakedBody": { + "name": "Cuerpo Horneado", + "description": "Si lo alcanza un movimiento de tipo Fuego, aumenta mucho su Defensa en vez de sufrir daño." + }, + "windRider": { + "name": "Surcavientos", + "description": "Si sopla un Viento Afín o lo alcanza un movimiento que usa viento, aumenta su Ataque. Tampoco recibe daño de este último." + }, + "guardDog": { + "name": "Perro Guardián", + "description": "Aumenta su Ataque si sufre los efectos de Intimidación. También anula movimientos y objetos que fuercen el cambio de Pokémon." + }, + "rockyPayload": { + "name": "Transportarrocas", + "description": "Potencia los movimientos de tipo Roca." + }, + "windPower": { + "name": "Energía Eólica", + "description": "Su cuerpo se carga de electricidad si lo alcanza un movimiento que usa viento, lo que potencia su siguiente movimiento de tipo Eléctrico." + }, + "zeroToHero": { + "name": "Cambio Heroico", + "description": "Adopta la Forma Heroica cuando se retira del combate." + }, + "commander": { + "name": "Comandar", + "description": "Si al entrar en combate coincide con un Dondozo aliado, se cuela en el interior de su boca para tomar el control." + }, + "electromorphosis": { + "name": "Dinamo", + "description": "Su cuerpo se carga de electricidad al recibir daño, lo que potencia su siguiente movimiento de tipo Eléctrico." + }, + "protosynthesis": { + "name": "Paleosíntesis", + "description": "Si hace sol o lleva un tanque de Energía Potenciadora, aumenta su característica más alta." + }, + "quarkDrive": { + "name": "Carga Cuark", + "description": "Si hay un campo eléctrico en el terreno de combate o lleva un tanque de Energía Potenciadora, aumenta su característica más alta." + }, + "goodAsGold": { + "name": "Cuerpo Áureo", + "description": "Su robusto cuerpo de oro inoxidable lo hace inmune frente a movimientos de estado de otros Pokémon." + }, + "vesselOfRuin": { + "name": "Caldero Debacle", + "description": "Reduce el Ataque Especial de todos los demás Pokémon con el poder de su caldero maldito." + }, + "swordOfRuin": { + "name": "Espada Debacle", + "description": "Reduce la Defensa de todos los demás Pokémon con el poder de su espada maldita." + }, + "tabletsOfRuin": { + "name": "Tablilla Debacle", + "description": "Reduce el Ataque de todos los demás Pokémon con el poder de sus tablillas malditas." + }, + "beadsOfRuin": { + "name": "Abalorio Debacle", + "description": "Reduce la Defensa Especial de todos los demás Pokémon con el poder de sus abalorios malditos." + }, + "orichalcumPulse": { + "name": "Latido Oricalco", + "description": "El tiempo pasa a ser soleado cuando entra en combate. Si hace mucho sol, su Ataque aumenta gracias a su pulso primigenio." + }, + "hadronEngine": { + "name": "Motor Hadrónico", + "description": "Crea un campo eléctrico al entrar en combate. Si hay un campo eléctrico, su Ataque Especial aumenta gracias a su motor futurista." + }, + "opportunist": { + "name": "Oportunista", + "description": "Copia las mejoras en las características del rival, aprovechándose de la situación." + }, + "cudChew": { + "name": "Rumia", + "description": "Cuando ingiere una baya, la regurgita al final del siguiente turno y se la come por segunda vez." + }, + "sharpness": { + "name": "Cortante", + "description": "Aumenta la potencia de los movimientos cortantes." + }, + "supremeOverlord": { + "name": "General Supremo", + "description": "Al entrar en combate, su Ataque y su Ataque Especial aumentan un poco por cada miembro del equipo que haya sido derrotado hasta el momento." + }, + "costar": { + "name": "Unísono", + "description": "Al entrar en combate, copia los cambios en las características de su aliado." + }, + "toxicDebris": { + "name": "Capa Tóxica", + "description": "Al recibir daño de un ataque físico, lanza una trampa de púas tóxicas a los pies del rival." + }, + "armorTail": { + "name": "Cola Armadura", + "description": "La extraña cola que le envuelve la cabeza impide al rival usar movimientos con prioridad contra él y sus aliados." + }, + "earthEater": { + "name": "Geofagia", + "description": "Si lo alcanza un movimiento de tipo Tierra, recupera PS en vez de sufrir daño." + }, + "myceliumMight": { + "name": "Poder Fúngico", + "description": "El Pokémon siempre actúa con lentitud cuando usa movimientos de estado, pero estos no se ven afectados por la habilidad del objetivo." + }, + "mindsEye": { + "name": "Ojo Mental", + "description": "Alcanza a Pokémon de tipo Fantasma con movimientos de tipo Normal o Lucha. Su Precisión no se puede reducir e ignora los cambios en la Evasión del objetivo." + }, + "supersweetSyrup": { + "name": "Néctar Dulce", + "description": "Al entrar en combate por primera vez, esparce un aroma dulzón a néctar que reduce la Evasión del rival." + }, + "hospitality": { + "name": "Hospitalidad", + "description": "Al entrar en combate, restaura algunos PS de su aliado como muestra de hospitalidad." + }, + "toxicChain": { + "name": "Cadena Tóxica", + "description": "Gracias al poder de su cadena impregnada de toxinas, puede envenenar gravemente al Pokémon al que ataque." + }, + "embodyAspectTeal": { + "name": "Evocarrecuerdos", + "description": "Al evocar viejos recuerdos, el Pokémon hace brillar la Máscara Cimiento y aumenta su Defensa." + }, + "embodyAspectWellspring": { + "name": "Evocarrecuerdos", + "description": "Al evocar viejos recuerdos, el Pokémon hace brillar la Máscara Cimiento y aumenta su Defensa." + }, + "embodyAspectHearthflame": { + "name": "Evocarrecuerdos", + "description": "Al evocar viejos recuerdos, el Pokémon hace brillar la Máscara Cimiento y aumenta su Defensa." + }, + "embodyAspectCornerstone": { + "name": "Evocarrecuerdos", + "description": "Al evocar viejos recuerdos, el Pokémon hace brillar la Máscara Cimiento y aumenta su Defensa." + }, + "teraShift": { + "name": "Teracambio", + "description": "Al entrar en combate, adopta la Forma Teracristal tras absorber la energía de su alrededor." + }, + "teraShell": { + "name": "Teracaparazón", + "description": "Su caparazón encierra energía de todos los tipos. Gracias a ello, si sus PS están al máximo, el movimiento que lo alcance no será muy eficaz." + }, + "teraformZero": { + "name": "Teraformación 0", + "description": "Cuando Terapagos adopta la Forma Astral, anula todos los efectos del tiempo atmosférico y de los campos que haya en el terreno gracias a su poder oculto." + }, + "poisonPuppeteer": { + "name": "Títere Tóxico", + "description": "Los rivales que Pecharunt envenene con sus movimientos también sufrirán confusión." + } +} diff --git a/src/locales/es/ability.ts b/src/locales/es/ability.ts deleted file mode 100644 index d89bc6fa3cc..00000000000 --- a/src/locales/es/ability.ts +++ /dev/null @@ -1,1244 +0,0 @@ -import { AbilityTranslationEntries } from "#app/interfaces/locales.js"; - -export const ability: AbilityTranslationEntries = { - "stench": { - name: "Hedor", - description: "Puede amedrentar a un Pokémon al atacarlo debido al mal olor que emana." - }, - "drizzle": { - name: "Llovizna", - description: "Hace que llueva al entrar en combate." - }, - "speedBoost": { - name: "Impulso", - description: "Aumenta su Velocidad en cada turno." - }, - "battleArmor": { - name: "Armadura Batalla", - description: "La robusta coraza que lo protege bloquea los golpes críticos." - }, - "sturdy": { - name: "Robustez", - description: "El Pokémon no puede debilitarse de un solo golpe cuando tiene los PS al máximo. También evita los movimientos fulminantes." - }, - "damp": { - name: "Humedad", - description: "Aumenta la humedad del entorno y evita que se puedan utilizar movimientos explosivos, tales como Autodestrucción." - }, - "limber": { - name: "Flexibilidad", - description: "Evita ser paralizado gracias a la flexibilidad de su cuerpo." - }, - "sandVeil": { - name: "Velo Arena", - description: "Aumenta su Evasión durante las tormentas de arena." - }, - "static": { - name: "Elec. Estática", - description: "La electricidad estática que lo envuelve puede paralizar al Pokémon que lo ataque con un movimiento de contacto." - }, - "voltAbsorb": { - name: "Absorbe Elec", - description: "Si lo alcanza un movimiento de tipo Eléctrico, recupera PS en vez de sufrir daño." - }, - "waterAbsorb": { - name: "Absorbe Agua", - description: "Si lo alcanza un movimiento de tipo Agua, recupera PS en vez de sufrir daño." - }, - "oblivious": { - name: "Despiste", - description: "Su indiferencia evita que sea provocado, caiga presa del enamoramiento o sufra los efectos de Intimidación." - }, - "cloudNine": { - name: "Aclimatación", - description: "Anula todos los efectos del tiempo atmosférico." - }, - "compoundEyes": { - name: "Ojo Compuesto", - description: "Aumenta la precisión de sus movimientos." - }, - "insomnia": { - name: "Insomnio", - description: "Su resistencia al sueño le impide quedarse dormido." - }, - "colorChange": { - name: "Cambio Color", - description: "Adopta el tipo del último movimiento del que es blanco." - }, - "immunity": { - name: "Inmunidad", - description: "Su sistema inmunitario evita el envenenamiento." - }, - "flashFire": { - name: "Absorbe Fuego", - description: "Si lo alcanza algún movimiento de tipo Fuego, potencia sus propios movimientos de dicho tipo." - }, - "shieldDust": { - name: "Polvo Escudo", - description: "El polvo de escamas que lo envuelve lo protege de los efectos secundarios de los ataques recibidos." - }, - "ownTempo": { - name: "Ritmo Propio", - description: "Como le gusta hacer las cosas a su manera, no le afecta la confusión ni sufre los efectos de Intimidación." - }, - "suctionCups": { - name: "Ventosas", - description: "Sus ventosas se aferran al suelo, con lo cual anula movimientos y objetos que fuercen el cambio de Pokémon." - }, - "intimidate": { - name: "Intimidación", - description: "Al entrar en combate, amilana al rival de tal manera que reduce su Ataque." - }, - "shadowTag": { - name: "Sombra Trampa", - description: "Pisa la sombra del rival para impedir que huya o lo cambien por otro." - }, - "roughSkin": { - name: "Piel Tosca", - description: "Hiere con su piel áspera al Pokémon que lo ataque con un movimiento de contacto." - }, - "wonderGuard": { - name: "Superguarda", - description: "Gracias a un poder misterioso, solo le hacen daño los movimientos supereficaces." - }, - "levitate": { - name: "Levitación", - description: "Su capacidad de flotar sobre el suelo le proporciona inmunidad frente a los movimientos de tipo Tierra." - }, - "effectSpore": { - name: "Efecto Espora", - description: "Puede dormir, envenenar o paralizar al Pokémon que lo ataque con un movimiento de contacto." - }, - "synchronize": { - name: "Sincronía", - description: "Contagia el envenenamiento, las quemaduras o la parálisis al Pokémon que le cause ese estado." - }, - "clearBody": { - name: "Cuerpo Puro", - description: "Evita que se reduzcan sus características a causa de movimientos o habilidades de otros Pokémon." - }, - "naturalCure": { - name: "Cura Natural", - description: "Sus problemas de estado desaparecen cuando se retira del combate." - }, - "lightningRod": { - name: "Pararrayos", - description: "Atrae y neutraliza los movimientos de tipo Eléctrico, que además le aumentan el Ataque Especial." - }, - "sereneGrace": { - name: "Dicha", - description: "Aumenta la probabilidad de que los movimientos causen efectos secundarios." - }, - "swiftSwim": { - name: "Nado Rápido", - description: "Aumenta su Velocidad cuando llueve." - }, - "chlorophyll": { - name: "Clorofila", - description: "Aumenta su Velocidad cuando hace sol." - }, - "illuminate": { - name: "Iluminación", - description: "Al iluminar el entorno, evita que su Precisión se reduzca." - }, - "trace": { - name: "Calco", - description: "Copia la habilidad del rival al entrar en combate." - }, - "hugePower": { - name: "Potencia", - description: "Duplica la potencia de sus ataques físicos." - }, - "poisonPoint": { - name: "Punto Tóxico", - description: "Puede envenenar al Pokémon que lo ataque con un movimiento de contacto." - }, - "innerFocus": { - name: "Fuerza Mental", - description: "Gracias a su profunda concentración, no se amedrenta ante los ataques de otros Pokémon ni sufre los efectos de Intimidación." - }, - "magmaArmor": { - name: "Escudo Magma", - description: "Gracias al magma candente que lo envuelve, no puede ser congelado." - }, - "waterVeil": { - name: "Velo Agua", - description: "Evita las quemaduras gracias a la capa de agua que lo envuelve." - }, - "magnetPull": { - name: "Imán", - description: "Su magnetismo atrae a los Pokémon de tipo Acero y les impide huir o ser cambiados por otros." - }, - "soundproof": { - name: "Insonorizar", - description: "Su aislamiento acústico lo protege de movimientos que usan sonido." - }, - "rainDish": { - name: "Cura Lluvia", - description: "Recupera PS de forma gradual cuando llueve." - }, - "sandStream": { - name: "Chorro Arena", - description: "Crea una tormenta de arena al entrar en combate." - }, - "pressure": { - name: "Presión", - description: "Presiona al rival de tal manera que este consume más PP al usar sus movimientos." - }, - "thickFat": { - name: "Sebo", - description: "Gracias a la gruesa capa de grasa que lo protege, reduce a la mitad el daño que recibe de ataques de tipo Fuego o Hielo." - }, - "earlyBird": { - name: "Madrugar", - description: "Si se duerme, tardará la mitad de tiempo en despertarse." - }, - "flameBody": { - name: "Cuerpo Llama", - description: "Puede quemar al Pokémon que lo ataque con un movimiento de contacto." - }, - "runAway": { - name: "Fuga", - description: "Puede escapar de cualquier Pokémon salvaje." - }, - "keenEye": { - name: "Vista Lince", - description: "Su aguda vista evita que su Precisión se reduzca." - }, - "hyperCutter": { - name: "Corte Fuerte", - description: "Evita que otros Pokémon le reduzcan el Ataque." - }, - "pickup": { - name: "Recogida", - description: "Puede recoger objetos que otros Pokémon hayan usado, o bien aquellos que encuentre en plena aventura." - }, - "truant": { - name: "Pereza", - description: "Al ejecutar un movimiento, descansará en el turno siguiente." - }, - "hustle": { - name: "Entusiasmo", - description: "Aumenta su Ataque, pero reduce su Precisión." - }, - "cuteCharm": { - name: "Gran Encanto", - description: "Puede causar enamoramiento al Pokémon que lo ataque con un movimiento de contacto." - }, - "plus": { - name: "Más", - description: "Aumenta su Ataque Especial si un Pokémon aliado tiene la habilidad Más o la habilidad Menos." - }, - "minus": { - name: "Menos", - description: "Aumenta su Ataque Especial si un Pokémon aliado tiene la habilidad Más o la habilidad Menos." - }, - "forecast": { - name: "Predicción", - description: "Cambia a tipo Agua, Fuego o Hielo en función del tiempo atmosférico." - }, - "stickyHold": { - name: "Viscosidad", - description: "Los objetos se quedan pegados a su cuerpo, por lo que no pueden robárselos." - }, - "shedSkin": { - name: "Mudar", - description: "Puede curar sus problemas de estado al mudar la piel." - }, - "guts": { - name: "Agallas", - description: "Si sufre un problema de estado, se arma de valor y aumenta su Ataque." - }, - "marvelScale": { - name: "Escama Especial", - description: "Si sufre un problema de estado, sus escamas especiales reaccionan y aumenta su Defensa." - }, - "liquidOoze": { - name: "Viscosecreción", - description: "Exuda una secreción viscosa y tóxica de intenso hedor que hiere a quienes intentan drenarle PS." - }, - "overgrow": { - name: "Espesura", - description: "Potencia sus movimientos de tipo Planta cuando le quedan pocos PS." - }, - "blaze": { - name: "Mar Llamas", - description: "Potencia sus movimientos de tipo Fuego cuando le quedan pocos PS." - }, - "torrent": { - name: "Torrente", - description: "Potencia sus movimientos de tipo Agua cuando le quedan pocos PS." - }, - "swarm": { - name: "Enjambre", - description: "Potencia sus movimientos de tipo Bicho cuando le quedan pocos PS." - }, - "rockHead": { - name: "Cabeza Roca", - description: "No pierde PS al usar movimientos que también hieren al usuario." - }, - "drought": { - name: "Sequía", - description: "El tiempo pasa a ser soleado al entrar en combate." - }, - "arenaTrap": { - name: "Trampa Arena", - description: "Evita que el rival huya o sea cambiado por otro." - }, - "vitalSpirit": { - name: "Espíritu Vital", - description: "Su determinación le impide quedarse dormido." - }, - "whiteSmoke": { - name: "Humo Blanco", - description: "El humo blanco que lo protege evita que otros Pokémon le reduzcan las características." - }, - "purePower": { - name: "Energía Pura", - description: "Duplica la potencia de sus ataques físicos gracias al yoga." - }, - "shellArmor": { - name: "Caparazón", - description: "La robusta coraza que lo protege bloquea los golpes críticos." - }, - "airLock": { - name: "Esclusa de Aire", - description: "Neutraliza todos los efectos del tiempo atmosférico." - }, - "tangledFeet": { - name: "Tumbos", - description: "Aumenta su Evasión si está confuso." - }, - "motorDrive": { - name: "Electromotor", - description: "Si lo alcanza un movimiento de tipo Eléctrico, aumenta su Velocidad en vez de sufrir daño." - }, - "rivalry": { - name: "Rivalidad", - description: "Si el objetivo es del mismo sexo, su competitividad le lleva a infligir más daño. Si es del sexo contrario, en cambio, el daño será menor." - }, - "steadfast": { - name: "Impasible", - description: "Cada vez que se amedrenta, aumenta su Velocidad debido a su voluntad inquebrantable." - }, - "snowCloak": { - name: "Manto Níveo", - description: "Aumenta su Evasión cuando nieva." - }, - "gluttony": { - name: "Gula", - description: "Cuando sus PS se ven reducidos a la mitad, engulle la baya que normalmente solo se comería cuando le quedasen pocos PS." - }, - "angerPoint": { - name: "Irascible", - description: "Si recibe un golpe crítico, monta en cólera y su Ataque aumenta al máximo." - }, - "unburden": { - name: "Liviano", - description: "Aumenta su Velocidad si usa o pierde el objeto que lleva." - }, - "heatproof": { - name: "Ignífugo", - description: "Su cuerpo, resistente al calor, reduce a la mitad el daño recibido por movimientos de tipo Fuego." - }, - "simple": { - name: "Simple", - description: "Duplica los cambios en las características." - }, - "drySkin": { - name: "Piel Seca", - description: "Pierde PS si hace sol y los recupera si llueve o recibe un movimiento de tipo Agua. Los movimientos de tipo Fuego, por su parte, le hacen más daño de lo normal." - }, - "download": { - name: "Descarga", - description: "Compara la Defensa y la Defensa Especial del rival para ver cuál es inferior y aumenta su propio Ataque o Ataque Especial según sea lo más eficaz." - }, - "ironFist": { - name: "Puño Férreo", - description: "Aumenta la potencia de los movimientos con los puños." - }, - "poisonHeal": { - name: "Antídoto", - description: "Si resulta envenenado, recupera PS en vez de perderlos." - }, - "adaptability": { - name: "Adaptable", - description: "Potencia aún más los movimientos cuyo tipo coincida con el suyo." - }, - "skillLink": { - name: "Encadenado", - description: "Ejecuta siempre los movimientos de ataque múltiple con el número máximo de golpes." - }, - "hydration": { - name: "Hidratación", - description: "Cura los problemas de estado si está lloviendo." - }, - "solarPower": { - name: "Poder Solar", - description: "Si hace sol, aumenta su Ataque Especial, pero pierde PS en cada turno." - }, - "quickFeet": { - name: "Pies Rápidos", - description: "Aumenta su Velocidad si sufre problemas de estado." - }, - "normalize": { - name: "Normalidad", - description: "Hace que todos sus movimientos se vuelvan de tipo Normal y aumenta ligeramente su potencia." - }, - "sniper": { - name: "Francotirador", - description: "Potencia los golpes críticos que asesta aún más de lo normal." - }, - "magicGuard": { - name: "Muro Mágico", - description: "Solo recibe daño de ataques." - }, - "noGuard": { - name: "Indefenso", - description: "Al quedar ambos expuestos, tanto sus movimientos como los del Pokémon que lo ataque acertarán siempre." - }, - "stall": { - name: "Rezagado", - description: "Ejecuta su movimiento tras todos los demás." - }, - "technician": { - name: "Experto", - description: "Aumenta la potencia de sus movimientos débiles." - }, - "leafGuard": { - name: "Defensa Hoja", - description: "Evita los problemas de estado si hace sol." - }, - "klutz": { - name: "Zoquete", - description: "No puede usar objetos equipados." - }, - "moldBreaker": { - name: "Rompemoldes", - description: "Sus movimientos no se ven afectados por la habilidad del objetivo." - }, - "superLuck": { - name: "Afortunado", - description: "Su buena suerte aumenta la probabilidad de asestar golpes críticos." - }, - "aftermath": { - name: "Detonación", - description: "Daña al Pokémon que le ha dado el golpe de gracia con un movimiento de contacto." - }, - "anticipation": { - name: "Anticipación", - description: "Prevé los movimientos peligrosos del rival." - }, - "forewarn": { - name: "Alerta", - description: "Revela uno de los movimientos del rival al entrar en combate." - }, - "unaware": { - name: "Ignorante", - description: "Pasa por alto los cambios en las características de un Pokémon al atacarlo o recibir daño." - }, - "tintedLens": { - name: "Cromolente", - description: "Potencia los movimientos que no son muy eficaces, que infligen ahora un daño normal." - }, - "filter": { - name: "Filtro", - description: "Mitiga el daño que le infligen los movimientos supereficaces." - }, - "slowStart": { - name: "Inicio Lento", - description: "Reduce a la mitad su Ataque y su Velocidad durante cinco turnos." - }, - "scrappy": { - name: "Intrépido", - description: "Alcanza a Pokémon de tipo Fantasma con movimientos de tipo Normal o Lucha. Además, no sufre los efectos de Intimidación." - }, - "stormDrain": { - name: "Colector", - description: "Atrae y neutraliza los movimientos de tipo Agua, que además le aumentan el Ataque Especial." - }, - "iceBody": { - name: "Gélido", - description: "Recupera PS de forma gradual cuando nieva." - }, - "solidRock": { - name: "Roca Sólida", - description: "Mitiga el daño que le infligen los movimientos supereficaces." - }, - "snowWarning": { - name: "Nevada", - description: "Invoca una nevada al entrar en combate." - }, - "honeyGather": { - name: "Recogemiel", - description: "The Pokémon gathers Honey after a battle. The Honey is then sold for money." - }, - "frisk": { - name: "Cacheo", - description: "Cuando entra en combate, el Pokémon puede comprobar la habilidad de un Pokémon rival." - }, - "reckless": { - name: "Audaz", - description: "Potencia los movimientos que también dañan al usuario." - }, - "multitype": { - name: "Multitipo", - description: "Cambia su tipo al de la tabla que lleve." - }, - "flowerGift": { - name: "Don Floral", - description: "Si hace sol, aumenta su Ataque y su Defensa Especial, así como los de sus aliados." - }, - "badDreams": { - name: "Mal Sueño", - description: "Inflige daño a cualquier rival que esté dormido." - }, - "pickpocket": { - name: "Hurto", - description: "Roba el objeto del Pokémon que lo ataque con un movimiento de contacto." - }, - "sheerForce": { - name: "Potencia Bruta", - description: "Aumenta la potencia de sus movimientos en detrimento de los efectos secundarios, que se ven anulados." - }, - "contrary": { - name: "Respondón", - description: "Invierte los cambios en las características: bajan cuando les toca subir y suben cuando les toca bajar." - }, - "unnerve": { - name: "Nerviosismo", - description: "Pone nervioso al rival y le impide comer bayas." - }, - "defiant": { - name: "Competitivo", - description: "Aumenta mucho su Ataque cuando el rival le reduce cualquiera de sus características." - }, - "defeatist": { - name: "Flaqueza", - description: "Cuando sus PS se ven reducidos a la mitad, se cansa tanto que su Ataque y su Ataque Especial también se ven reducidos a la mitad." - }, - "cursedBody": { - name: "Cuerpo Maldito", - description: "Puede anular el movimiento usado en su contra." - }, - "healer": { - name: "Alma Cura", - description: "A veces cura los problemas de estado de un aliado." - }, - "friendGuard": { - name: "Compiescolta", - description: "Reduce el daño que sufren los aliados." - }, - "weakArmor": { - name: "Armadura Frágil", - description: "Al recibir daño de un ataque físico, se reduce su Defensa, pero aumenta mucho su Velocidad." - }, - "heavyMetal": { - name: "Metal Pesado", - description: "Duplica su peso." - }, - "lightMetal": { - name: "Metal Liviano", - description: "Reduce a la mitad su peso." - }, - "multiscale": { - name: "Multiescamas", - description: "Reduce el daño que sufre si sus PS están al máximo." - }, - "toxicBoost": { - name: "Ímpetu Tóxico", - description: "Aumenta la potencia de sus ataques físicos cuando está envenenado." - }, - "flareBoost": { - name: "Ímpetu Ardiente", - description: "Aumenta la potencia de sus ataques especiales cuando sufre quemaduras." - }, - "harvest": { - name: "Cosecha", - description: "Puede reutilizar varias veces una misma baya." - }, - "telepathy": { - name: "Telepatía", - description: "Elude los ataques de los aliados durante el combate." - }, - "moody": { - name: "Veleta", - description: "Aumenta mucho una característica en cada turno, pero reduce otra." - }, - "overcoat": { - name: "Funda", - description: "No recibe daño de las tormentas de arena ni sufre los efectos causados por polvos o esporas." - }, - "poisonTouch": { - name: "Toque Tóxico", - description: "Puede envenenar al Pokémon al que ataque con un movimiento de contacto." - }, - "regenerator": { - name: "Regeneración", - description: "Recupera unos pocos PS cuando se retira del combate." - }, - "bigPecks": { - name: "Sacapecho", - description: "Impide que otros Pokémon le reduzcan la Defensa." - }, - "sandRush": { - name: "Ímpetu Arena", - description: "Aumenta su Velocidad durante las tormentas de arena." - }, - "wonderSkin": { - name: "Piel Milagro", - description: "Presenta una mayor resistencia ante los movimientos de estado." - }, - "analytic": { - name: "Cálculo Final", - description: "Aumenta la potencia de su movimiento si es el último en atacar." - }, - "illusion": { - name: "Ilusión", - description: "Adopta el aspecto del último Pokémon del equipo al entrar en combate para desconcertar al rival." - }, - "imposter": { - name: "Impostor", - description: "Se transforma en el Pokémon que tiene enfrente." - }, - "infiltrator": { - name: "Allanamiento", - description: "Ataca sorteando las barreras o el sustituto del objetivo." - }, - "mummy": { - name: "Momia", - description: "Contagia la habilidad Momia al Pokémon que lo ataque con un movimiento de contacto." - }, - "moxie": { - name: "Autoestima", - description: "Al debilitar a un objetivo, su confianza se refuerza de tal manera que aumenta su Ataque." - }, - "justified": { - name: "Justiciero", - description: "Si lo alcanza un movimiento de tipo Siniestro, aumenta el Ataque debido a su integridad." - }, - "rattled": { - name: "Cobardía", - description: "Si lo alcanza un ataque de tipo Siniestro, Bicho o Fantasma, o si sufre los efectos de Intimidación, el miedo hace que aumente su Velocidad." - }, - "magicBounce": { - name: "Espejo Mágico", - description: "Puede devolver los movimientos de estado sin verse afectado por ellos." - }, - "sapSipper": { - name: "Herbívoro", - description: "Si lo alcanza un movimiento de tipo Planta, aumenta su Ataque en vez de sufrir daño." - }, - "prankster": { - name: "Bromista", - description: "Sus movimientos de estado tienen prioridad alta." - }, - "sandForce": { - name: "Poder Arena", - description: "Potencia los movimientos de tipo Tierra, Acero y Roca durante las tormentas de arena." - }, - "ironBarbs": { - name: "Punta Acero", - description: "Inflige daño con sus púas de acero al Pokémon que lo ataque con un movimiento de contacto." - }, - "zenMode": { - name: "Modo Daruma", - description: "Cambia de forma si sus PS se ven reducidos a la mitad o menos." - }, - "victoryStar": { - name: "Tinovictoria", - description: "Aumenta su Precisión y la de sus aliados." - }, - "turboblaze": { - name: "Turbollama", - description: "Sus movimientos no se ven afectados por la habilidad del objetivo." - }, - "teravolt": { - name: "Terravoltaje", - description: "Sus movimientos no se ven afectados por la habilidad del objetivo." - }, - "aromaVeil": { - name: "Velo Aroma", - description: "Se protege a sí mismo y a sus aliados de efectos que impiden usar movimientos." - }, - "flowerVeil": { - name: "Velo Flor", - description: "Evita que los Pokémon de tipo Planta aliados sufran problemas de estado o que les reduzcan sus características." - }, - "cheekPouch": { - name: "Carrillo", - description: "Recupera PS al comer cualquier baya." - }, - "protean": { - name: "Mutatipo", - description: "Al entrar en combate, cambia su tipo al del primer movimiento que va a usar." - }, - "furCoat": { - name: "Pelaje Recio", - description: "Reduce a la mitad el daño que recibe de ataques físicos." - }, - "magician": { - name: "Prestidigitador", - description: "Roba el objeto del Pokémon al que alcance con un movimiento." - }, - "bulletproof": { - name: "Antibalas", - description: "No le afectan las bombas ni algunos proyectiles." - }, - "competitive": { - name: "Tenacidad", - description: "Aumenta mucho su Ataque Especial cuando el rival le reduce cualquiera de sus características." - }, - "strongJaw": { - name: "Mandíbula Fuerte", - description: "Su robusta mandíbula le confiere una mordedura mucho más potente." - }, - "refrigerate": { - name: "Piel Helada", - description: "Convierte los movimientos de tipo Normal en tipo Hielo y aumenta ligeramente su potencia." - }, - "sweetVeil": { - name: "Velo Dulce", - description: "No cae dormido y evita también que sus aliados se duerman." - }, - "stanceChange": { - name: "Cambio Táctico", - description: "Adopta la Forma Filo al lanzar un ataque, o bien la Forma Escudo si usa el movimiento Escudo Real." - }, - "galeWings": { - name: "Alas Vendaval", - description: "Da prioridad a los movimientos de tipo Volador si sus PS están al máximo." - }, - "megaLauncher": { - name: "Megadisparador", - description: "Aumenta la potencia de algunos movimientos de pulsos y auras." - }, - "grassPelt": { - name: "Manto Frondoso", - description: "Aumenta su Defensa si hay un campo de hierba en el terreno de combate." - }, - "symbiosis": { - name: "Simbiosis", - description: "Pasa su objeto a un aliado cuando este use el suyo." - }, - "toughClaws": { - name: "Garra Dura", - description: "Aumenta la potencia de los movimientos de contacto." - }, - "pixilate": { - name: "Piel Feérica", - description: "Convierte los movimientos de tipo Normal en tipo Hada y aumenta ligeramente su potencia." - }, - "gooey": { - name: "Baba", - description: "Reduce la Velocidad del Pokémon que lo ataque con un movimiento de contacto." - }, - "aerilate": { - name: "Piel Celeste", - description: "Convierte los movimientos de tipo Normal en tipo Volador y aumenta ligeramente su potencia." - }, - "parentalBond": { - name: "Amor Filial", - description: "Une fuerzas con su cría y ataca dos veces." - }, - "darkAura": { - name: "Aura Oscura", - description: "Aumenta la potencia de los movimientos de tipo Siniestro de todos los Pokémon." - }, - "fairyAura": { - name: "Aura Feérica", - description: "Aumenta la potencia de los movimientos de tipo Hada de todos los Pokémon." - }, - "auraBreak": { - name: "Rompeaura", - description: "Invierte los efectos de las habilidades de auras, por lo que reduce la potencia de ciertos movimientos en vez de aumentarla." - }, - "primordialSea": { - name: "Mar del Albor", - description: "Altera el clima para anular los ataques de tipo Fuego." - }, - "desolateLand": { - name: "Tierra del Ocaso", - description: "Altera el clima para anular los ataques de tipo Agua." - }, - "deltaStream": { - name: "Ráfaga Delta", - description: "Altera el clima para anular las vulnerabilidades del tipo Volador." - }, - "stamina": { - name: "Firmeza", - description: "Aumenta su Defensa al recibir un ataque." - }, - "wimpOut": { - name: "Huida", - description: "Se asusta y abandona el terreno de combate cuando sus PS se ven reducidos a la mitad." - }, - "emergencyExit": { - name: "Retirada", - description: "Abandona el terreno de combate cuando sus PS se ven reducidos a la mitad para evitar males mayores." - }, - "waterCompaction": { - name: "Hidrorrefuerzo", - description: "Aumenta mucho su Defensa si lo alcanza un movimiento de tipo Agua." - }, - "merciless": { - name: "Ensañamiento", - description: "Hace que sus movimientos asesten siempre un golpe crítico si el objetivo está envenenado." - }, - "shieldsDown": { - name: "Escudo Limitado", - description: "Rompe su coraza cuando sus PS se ven reducidos a la mitad y adopta una forma ofensiva." - }, - "stakeout": { - name: "Vigilante", - description: "Si el objetivo de su ataque es sustituido por otro, duplica el daño que infligirá." - }, - "waterBubble": { - name: "Pompa", - description: "Reduce el daño que le provocan los movimientos de tipo Fuego y es inmune a las quemaduras." - }, - "steelworker": { - name: "Acero Templado", - description: "Potencia los movimientos de tipo Acero." - }, - "berserk": { - name: "Cólera", - description: "Aumenta su Ataque Especial si sus PS se ven reducidos a la mitad debido a algún ataque." - }, - "slushRush": { - name: "Quitanieves", - description: "Aumenta su Velocidad cuando nieva." - }, - "longReach": { - name: "Remoto", - description: "Puede usar cualquier movimiento sin entrar en contacto con su objetivo." - }, - "liquidVoice": { - name: "Voz Fluida", - description: "Hace que todos sus movimientos que usan sonido pasen a ser de tipo Agua." - }, - "triage": { - name: "Primer Auxilio", - description: "Da prioridad a los movimientos que restauran PS." - }, - "galvanize": { - name: "Piel Eléctrica", - description: "Convierte los movimientos de tipo Normal en tipo Eléctrico y aumenta ligeramente su potencia." - }, - "surgeSurfer": { - name: "Cola Surf", - description: "Duplica su Velocidad si hay un campo eléctrico en el terreno de combate." - }, - "schooling": { - name: "Banco", - description: "Forma bancos con sus congéneres cuando tiene muchos PS, lo cual le otorga más fuerza. Cuando le quedan pocos PS, el banco se dispersa." - }, - "disguise": { - name: "Disfraz", - description: "Puede eludir un ataque valiéndose de la tela que le cubre el cuerpo una vez por combate." - }, - "battleBond": { - name: "Fuerte Afecto", - description: "Al derrotar a un Pokémon, los vínculos con su Entrenador se refuerzan y aumentan su Ataque, su Ataque Especial y su Velocidad." - }, - "powerConstruct": { - name: "Agrupamiento", - description: "Cuando sus PS se ven reducidos a la mitad, las células se reagrupan y adopta su Forma Completa." - }, - "corrosion": { - name: "Corrosión", - description: "Puede envenenar incluso a Pokémon de tipo Acero o Veneno." - }, - "comatose": { - name: "Letargo Perenne", - description: "No despierta jamás de su profundo letargo e incluso ataca dormido." - }, - "queenlyMajesty": { - name: "Regia Presencia", - description: "Intimida al rival y le impide usar movimientos con prioridad contra él y sus aliados." - }, - "innardsOut": { - name: "Revés", - description: "Al caer debilitado, inflige al atacante un daño equivalente a los PS que le quedaran antes de recibir el golpe de gracia." - }, - "dancer": { - name: "Pareja de Baile", - description: "Puede copiar inmediatamente cualquier movimiento de baile que haya usado otro Pokémon presente en el combate." - }, - "battery": { - name: "Batería", - description: "Potencia los ataques especiales de los aliados." - }, - "fluffy": { - name: "Peluche", - description: "Reduce a la mitad el daño recibido por los movimientos de contacto, pero duplica el que le infligen los de tipo Fuego." - }, - "dazzling": { - name: "Cuerpo Vívido", - description: "Desconcierta al rival y le impide usar movimientos con prioridad contra él y sus aliados." - }, - "soulHeart": { - name: "Coránima", - description: "Aumenta su Ataque Especial cada vez que un Pokémon cae debilitado." - }, - "tanglingHair": { - name: "Rizos Rebeldes", - description: "Reduce la Velocidad del Pokémon que lo ataque con un movimiento de contacto." - }, - "receiver": { - name: "Receptor", - description: "Adquiere la habilidad de un aliado debilitado." - }, - "powerOfAlchemy": { - name: "Reacción Química", - description: "Reacciona copiando la habilidad de un aliado debilitado." - }, - "beastBoost": { - name: "Ultraimpulso", - description: "Al derrotar a un Pokémon, aumenta su característica más fuerte." - }, - "rksSystem": { - name: "Sistema Alfa", - description: "Cambia su tipo según el disco que lleve instalado." - }, - "electricSurge": { - name: "Electrogénesis", - description: "Crea un campo eléctrico al entrar en combate." - }, - "psychicSurge": { - name: "Psicogénesis", - description: "Crea un campo psíquico al entrar en combate." - }, - "mistySurge": { - name: "Nebulogénesis", - description: "Crea un campo de niebla al entrar en combate." - }, - "grassySurge": { - name: "Herbogénesis", - description: "Crea un campo de hierba al entrar en combate." - }, - "fullMetalBody": { - name: "Guardia Metálica", - description: "Evita que se reduzcan sus características a causa de movimientos o habilidades de otros Pokémon." - }, - "shadowShield": { - name: "Guardia Espectro", - description: "Reduce el daño que sufre si sus PS están al máximo." - }, - "prismArmor": { - name: "Armadura Prisma", - description: "Mitiga el daño que le infligen los movimientos supereficaces." - }, - "neuroforce": { - name: "Fuerza Cerebral", - description: "Potencia los ataques supereficaces." - }, - "intrepidSword": { - name: "Espada Indómita", - description: "Aumenta su Ataque al entrar en combate por primera vez." - }, - "dauntlessShield": { - name: "Escudo Recio", - description: "Aumenta su Defensa al entrar en combate por primera vez." - }, - "libero": { - name: "Líbero", - description: "Al entrar en combate, cambia su tipo al del primer movimiento que va a usar." - }, - "ballFetch": { - name: "Recogebolas", - description: "Si no lleva equipado ningún objeto, recupera la Poké Ball del primer intento de captura fallido." - }, - "cottonDown": { - name: "Pelusa", - description: "Al ser alcanzado por un ataque, suelta una pelusa de algodón que reduce la Velocidad de todos los demás Pokémon." - }, - "propellerTail": { - name: "Hélice Caudal", - description: "Ignora los efectos de las habilidades o los movimientos que permiten a un Pokémon centrar la atención sobre sí." - }, - "mirrorArmor": { - name: "Coraza Reflejo", - description: "Refleja los efectos que reducen las características." - }, - "gulpMissile": { - name: "Tragamisil", - description: "Tras usar Surf o Buceo, emerge con una presa en la boca. Al recibir daño, ataca escupiéndola." - }, - "stalwart": { - name: "Acérrimo", - description: "Ignora los efectos de las habilidades o los movimientos que permiten a un Pokémon centrar la atención sobre sí." - }, - "steamEngine": { - name: "Combustible", - description: "Si lo alcanza un movimiento de tipo Fuego o Agua, aumenta muchísimo su Velocidad." - }, - "punkRock": { - name: "Punk Rock", - description: "Potencia los movimientos que usan sonido y reduce a la mitad el daño que le infligen dichos movimientos." - }, - "sandSpit": { - name: "Expulsarena", - description: "Provoca una tormenta de arena al recibir un ataque." - }, - "iceScales": { - name: "Escama de Hielo", - description: "Las gélidas escamas que protegen su cuerpo reducen a la mitad el daño que le infligen los ataques especiales." - }, - "ripen": { - name: "Maduración", - description: "Hace madurar las bayas, por lo que duplica sus efectos." - }, - "iceFace": { - name: "Cara de Hielo", - description: "Absorbe el daño de un ataque físico con el hielo de la cabeza, tras lo cual cambia de forma. El hielo se regenerará la próxima vez que nieve." - }, - "powerSpot": { - name: "Fuente Energía", - description: "Potencia los movimientos de los Pokémon adyacentes." - }, - "mimicry": { - name: "Mimetismo", - description: "Cambia su tipo según el campo que haya en el terreno de combate." - }, - "screenCleaner": { - name: "Antibarrera", - description: "Anula los efectos de Pantalla de Luz, Reflejo y Velo Aurora tanto de rivales como de aliados al entrar en combate." - }, - "steelySpirit": { - name: "Alma Acerada", - description: "Potencia los movimientos de tipo Acero del Pokémon y sus aliados." - }, - "perishBody": { - name: "Cuerpo Mortal", - description: "Si lo alcanza un movimiento de contacto, se debilitará al cabo de 3 turnos, así como el atacante, a menos que abandonen el terreno de combate." - }, - "wanderingSpirit": { - name: "Alma Errante", - description: "Si lo alcanza un movimiento de contacto, intercambia su habilidad con la del atacante." - }, - "gorillaTactics": { - name: "Monotema", - description: "Aumenta su Ataque, pero solo puede usar el primer movimiento escogido." - }, - "neutralizingGas": { - name: "Gas Reactivo", - description: "Anula los efectos de las habilidades de los demás Pokémon presentes mientras esté en el terreno de combate." - }, - "pastelVeil": { - name: "Velo Pastel", - description: "Se protege a sí mismo y a sus aliados del envenenamiento." - }, - "hungerSwitch": { - name: "Mutapetito", - description: "Alterna entre su Forma Saciada y Forma Voraz al final de cada turno." - }, - "quickDraw": { - name: "Mano Rápida", - description: "A veces, puede atacar el primero." - }, - "unseenFist": { - name: "Puño Invisible", - description: "Si usa un movimiento de contacto, puede infligir daño al objetivo aunque este se proteja." - }, - "curiousMedicine": { - name: "Medicina Extraña", - description: "Al entrar en combate, rezuma una substancia medicinal por la caracola que revierte los cambios en las características de los aliados." - }, - "transistor": { - name: "Transistor", - description: "Potencia los movimientos de tipo Eléctrico." - }, - "dragonsMaw": { - name: "Mandíbula Dragón", - description: "Potencia los movimientos de tipo Dragón." - }, - "chillingNeigh": { - name: "Relincho Blanco", - description: "Al derrotar a un objetivo, emite un relincho gélido y aumenta su Ataque." - }, - "grimNeigh": { - name: "Relincho Negro", - description: "Al derrotar a un objetivo, emite un relincho aterrador y aumenta su Ataque Especial." - }, - "asOneGlastrier": { - name: "Unidad Ecuestre", - description: "El Pokémon tiene dos habilidades: Relincho Negro de Spectrier y Nerviosismo de Calyrex." - }, - "asOneSpectrier": { - name: "Unidad Ecuestre", - description: "El Pokémon tiene dos habilidades: Relincho Negro de Spectrier y Nerviosismo de Calyrex." - }, - "lingeringAroma": { - name: "Olor Persistente", - description: "Contagia la habilidad Olor Persistente al Pokémon que lo ataque con un movimiento de contacto." - }, - "seedSower": { - name: "Disemillar", - description: "Crea un campo de hierba al recibir un ataque." - }, - "thermalExchange": { - name: "Termoconversión", - description: "Evita las quemaduras y, si lo alcanza un movimiento de tipo Fuego, aumenta su Ataque." - }, - "angerShell": { - name: "Coraza Ira", - description: "Cuando un ataque reduce sus PS a la mitad, un arrebato de cólera reduce su Defensa y su Defensa Especial, pero aumenta su Ataque, su Ataque Especial y su Velocidad." - }, - "purifyingSalt": { - name: "Sal Purificadora", - description: "Su sal pura lo protege de los problemas de estado y reduce a la mitad el daño que recibe de ataques de tipo Fantasma." - }, - "wellBakedBody": { - name: "Cuerpo Horneado", - description: "Si lo alcanza un movimiento de tipo Fuego, aumenta mucho su Defensa en vez de sufrir daño." - }, - "windRider": { - name: "Surcavientos", - description: "Si sopla un Viento Afín o lo alcanza un movimiento que usa viento, aumenta su Ataque. Tampoco recibe daño de este último." - }, - "guardDog": { - name: "Perro Guardián", - description: "Aumenta su Ataque si sufre los efectos de Intimidación. También anula movimientos y objetos que fuercen el cambio de Pokémon." - }, - "rockyPayload": { - name: "Transportarrocas", - description: "Potencia los movimientos de tipo Roca." - }, - "windPower": { - name: "Energía Eólica", - description: "Su cuerpo se carga de electricidad si lo alcanza un movimiento que usa viento, lo que potencia su siguiente movimiento de tipo Eléctrico." - }, - "zeroToHero": { - name: "Cambio Heroico", - description: "Adopta la Forma Heroica cuando se retira del combate." - }, - "commander": { - name: "Comandar", - description: "Si al entrar en combate coincide con un Dondozo aliado, se cuela en el interior de su boca para tomar el control." - }, - "electromorphosis": { - name: "Dinamo", - description: "Su cuerpo se carga de electricidad al recibir daño, lo que potencia su siguiente movimiento de tipo Eléctrico." - }, - "protosynthesis": { - name: "Paleosíntesis", - description: "Si hace sol o lleva un tanque de Energía Potenciadora, aumenta su característica más alta." - }, - "quarkDrive": { - name: "Carga Cuark", - description: "Si hay un campo eléctrico en el terreno de combate o lleva un tanque de Energía Potenciadora, aumenta su característica más alta." - }, - "goodAsGold": { - name: "Cuerpo Áureo", - description: "Su robusto cuerpo de oro inoxidable lo hace inmune frente a movimientos de estado de otros Pokémon." - }, - "vesselOfRuin": { - name: "Caldero Debacle", - description: "Reduce el Ataque Especial de todos los demás Pokémon con el poder de su caldero maldito." - }, - "swordOfRuin": { - name: "Espada Debacle", - description: "Reduce la Defensa de todos los demás Pokémon con el poder de su espada maldita." - }, - "tabletsOfRuin": { - name: "Tablilla Debacle", - description: "Reduce el Ataque de todos los demás Pokémon con el poder de sus tablillas malditas." - }, - "beadsOfRuin": { - name: "Abalorio Debacle", - description: "Reduce la Defensa Especial de todos los demás Pokémon con el poder de sus abalorios malditos." - }, - "orichalcumPulse": { - name: "Latido Oricalco", - description: "El tiempo pasa a ser soleado cuando entra en combate. Si hace mucho sol, su Ataque aumenta gracias a su pulso primigenio." - }, - "hadronEngine": { - name: "Motor Hadrónico", - description: "Crea un campo eléctrico al entrar en combate. Si hay un campo eléctrico, su Ataque Especial aumenta gracias a su motor futurista." - }, - "opportunist": { - name: "Oportunista", - description: "Copia las mejoras en las características del rival, aprovechándose de la situación." - }, - "cudChew": { - name: "Rumia", - description: "Cuando ingiere una baya, la regurgita al final del siguiente turno y se la come por segunda vez." - }, - "sharpness": { - name: "Cortante", - description: "Aumenta la potencia de los movimientos cortantes." - }, - "supremeOverlord": { - name: "General Supremo", - description: "Al entrar en combate, su Ataque y su Ataque Especial aumentan un poco por cada miembro del equipo que haya sido derrotado hasta el momento." - }, - "costar": { - name: "Unísono", - description: "Al entrar en combate, copia los cambios en las características de su aliado." - }, - "toxicDebris": { - name: "Capa Tóxica", - description: "Al recibir daño de un ataque físico, lanza una trampa de púas tóxicas a los pies del rival." - }, - "armorTail": { - name: "Cola Armadura", - description: "La extraña cola que le envuelve la cabeza impide al rival usar movimientos con prioridad contra él y sus aliados." - }, - "earthEater": { - name: "Geofagia", - description: "Si lo alcanza un movimiento de tipo Tierra, recupera PS en vez de sufrir daño." - }, - "myceliumMight": { - name: "Poder Fúngico", - description: "El Pokémon siempre actúa con lentitud cuando usa movimientos de estado, pero estos no se ven afectados por la habilidad del objetivo." - }, - "mindsEye": { - name: "Ojo Mental", - description: "Alcanza a Pokémon de tipo Fantasma con movimientos de tipo Normal o Lucha. Su Precisión no se puede reducir e ignora los cambios en la Evasión del objetivo." - }, - "supersweetSyrup": { - name: "Néctar Dulce", - description: "Al entrar en combate por primera vez, esparce un aroma dulzón a néctar que reduce la Evasión del rival." - }, - "hospitality": { - name: "Hospitalidad", - description: "Al entrar en combate, restaura algunos PS de su aliado como muestra de hospitalidad." - }, - "toxicChain": { - name: "Cadena Tóxica", - description: "Gracias al poder de su cadena impregnada de toxinas, puede envenenar gravemente al Pokémon al que ataque." - }, - "embodyAspectTeal": { - name: "Evocarrecuerdos", - description: "Al evocar viejos recuerdos, el Pokémon hace brillar la Máscara Cimiento y aumenta su Defensa." - }, - "embodyAspectWellspring": { - name: "Evocarrecuerdos", - description: "Al evocar viejos recuerdos, el Pokémon hace brillar la Máscara Cimiento y aumenta su Defensa." - }, - "embodyAspectHearthflame": { - name: "Evocarrecuerdos", - description: "Al evocar viejos recuerdos, el Pokémon hace brillar la Máscara Cimiento y aumenta su Defensa." - }, - "embodyAspectCornerstone": { - name: "Evocarrecuerdos", - description: "Al evocar viejos recuerdos, el Pokémon hace brillar la Máscara Cimiento y aumenta su Defensa." - }, - "teraShift": { - name: "Teracambio", - description: "Al entrar en combate, adopta la Forma Teracristal tras absorber la energía de su alrededor." - }, - "teraShell": { - name: "Teracaparazón", - description: "Su caparazón encierra energía de todos los tipos. Gracias a ello, si sus PS están al máximo, el movimiento que lo alcance no será muy eficaz." - }, - "teraformZero": { - name: "Teraformación 0", - description: "Cuando Terapagos adopta la Forma Astral, anula todos los efectos del tiempo atmosférico y de los campos que haya en el terreno gracias a su poder oculto." - }, - "poisonPuppeteer": { - name: "Títere Tóxico", - description: "Los rivales que Pecharunt envenene con sus movimientos también sufrirán confusión." - } -} as const; diff --git a/src/locales/es/achv.json b/src/locales/es/achv.json new file mode 100644 index 00000000000..c94b8858233 --- /dev/null +++ b/src/locales/es/achv.json @@ -0,0 +1,178 @@ +{ + "Achievements": { + "name": "Logros" + }, + "Locked": { + "name": "Bloqueado" + }, + "MoneyAchv": { + "description": "Acumula un total de ₽{{moneyAmount}}." + }, + "10K_MONEY": { + "name": "Ahorrador", + "name_female": "Ahorradora" + }, + "100K_MONEY": { + "name": "Rico", + "name_female": "Rica" + }, + "1M_MONEY": { + "name": "Millonario", + "name_female": "Millonaria" + }, + "10M_MONEY": { + "name": "Elusión Fiscal" + }, + "DamageAchv": { + "description": "Inflige {{damageAmount}} daño en un solo golpe." + }, + "250_DMG": { + "name": "Golpe Maestro" + }, + "1000_DMG": { + "name": "Golpe Devastador" + }, + "2500_DMG": { + "name": "¡Eso es un montón de daño!" + }, + "10000_DMG": { + "name": "One Punch Man" + }, + "HealAchv": { + "description": "Cura {{healAmount}} {{HP}} de una, con un movimiento, habilidad o objeto equipado." + }, + "250_HEAL": { + "name": "Sanador Novato", + "name_female": "Sanadora Novata" + }, + "1000_HEAL": { + "name": "Gran Sanador", + "name_female": "Gran Sanadora" + }, + "2500_HEAL": { + "name": "Clérigo", + "name_female": "Clériga" + }, + "10000_HEAL": { + "name": "Centro Pokémon" + }, + "LevelAchv": { + "description": "Sube a un Pokémon al nivel {{level}}." + }, + "LV_100": { + "name": "¡Pero espera, aún hay mas!" + }, + "LV_250": { + "name": "Élite" + }, + "LV_1000": { + "name": "Supera tus límites" + }, + "RibbonAchv": { + "description": "Acumula un total de {{ribbonAmount}} Cintas." + }, + "10_RIBBONS": { + "name": "Campeón Liga Pokémon", + "name_female": "Campeona Liga Pokémon" + }, + "25_RIBBONS": { + "name": "Campeón Liga Super", + "name_female": "Campeona Liga Super" + }, + "50_RIBBONS": { + "name": "Campeón Liga Ultra", + "name_female": "Campeona Liga Ultra" + }, + "75_RIBBONS": { + "name": "Campeón Liga Rogue", + "name_female": "Campeona Liga Rogue" + }, + "100_RIBBONS": { + "name": "Campeón Liga Master", + "name_female": "Campeona Liga Master" + }, + "TRANSFER_MAX_BATTLE_STAT": { + "name": "Trabajo en Equipo", + "description": "Haz relevo a otro miembro del equipo con al menos una estadística al máximo." + }, + "MAX_FRIENDSHIP": { + "name": "Amistad Total", + "description": "Alcanza con un Pokémon la amistad al máximo." + }, + "MEGA_EVOLVE": { + "name": "Megamorfosis", + "description": "Megaevoluciona a un Pokémon." + }, + "GIGANTAMAX": { + "name": "Criatura Colosal", + "description": "Haz Gigantamax a un Pokémon." + }, + "TERASTALLIZE": { + "name": "Entusiasta del STAB", + "description": "Teracristaliza a un Pokémon." + }, + "STELLAR_TERASTALLIZE": { + "name": "El Tipo Oculto", + "description": "Teracristaliza a un Pokémon al tipo Astral." + }, + "SPLICE": { + "name": "Infinite Fusion", + "description": "Fusiona dos Pokémon con la Punta ADN." + }, + "MINI_BLACK_HOLE": { + "name": "Devorador de Objetos", + "description": "Adquiere un Mini Agujero Negro." + }, + "CATCH_MYTHICAL": { + "name": "Singular", + "description": "Captura a un Pokémon Singular." + }, + "CATCH_SUB_LEGENDARY": { + "name": "(Sub)Legendario", + "description": "Captura a un Pokémon Sublegendario." + }, + "CATCH_LEGENDARY": { + "name": "Legendario", + "description": "Captura a un Pokémon Legendario." + }, + "SEE_SHINY": { + "name": "Shiny", + "description": "Encuentra a un Pokémon Shiny salvaje." + }, + "SHINY_PARTY": { + "name": "Eso es dedicación", + "description": "Tener un equipo completo de Pokémon shiny." + }, + "HATCH_MYTHICAL": { + "name": "Huevo Singular", + "description": "Hacer eclosionar un Pokémon Singular de un huevo." + }, + "HATCH_SUB_LEGENDARY": { + "name": "Huevo Sublegendario", + "description": "Hacer eclosionar un Pokémon Sublegendario de un huevo." + }, + "HATCH_LEGENDARY": { + "name": "Huevo Legendario", + "description": "Hacer eclosionar un Pokémon Legendario de un huevo." + }, + "HATCH_SHINY": { + "name": "Huevo Shiny", + "description": "Hacer eclosionar un Pokémon Shiny de un huevo." + }, + "HIDDEN_ABILITY": { + "name": "Potencial Oculto", + "description": "Captura un Pokémon con una habilidad oculta." + }, + "PERFECT_IVS": { + "name": "Certificado de Autenticidad", + "description": "Consigue IVs perfectos en un Pokémon." + }, + "CLASSIC_VICTORY": { + "name": "Imbatible", + "description": "Completa el juego en modo clásico." + }, + "INVERSE_BATTLE": { + "name": "Espejo ojepsE", + "description": "Completa el reto de Combate Inverso.\n.osrevnI etabmoC ed oter le atelpmoC" + } +} \ No newline at end of file diff --git a/src/locales/es/achv.ts b/src/locales/es/achv.ts deleted file mode 100644 index e291d93add2..00000000000 --- a/src/locales/es/achv.ts +++ /dev/null @@ -1,278 +0,0 @@ -import { AchievementTranslationEntries } from "#app/interfaces/locales.js"; - -// Achievement translations for the when the player character is male -export const PGMachv: AchievementTranslationEntries = { - "Achievements": { - name: "Logros", - }, - "Locked": { - name: "Bloqueado", - }, - - "MoneyAchv": { - description: "Acumula un total de ₽{{moneyAmount}}.", - }, - "10K_MONEY": { - name: "Ahorrador", - }, - "100K_MONEY": { - name: "Rico", - }, - "1M_MONEY": { - name: "Millonario", - }, - "10M_MONEY": { - name: "Elusión Fiscal", - }, - - "DamageAchv": { - description: "Inflige {{damageAmount}} daño en un solo golpe.", - }, - "250_DMG": { - name: "Golpe Maestro", - }, - "1000_DMG": { - name: "Golpe Devastador", - }, - "2500_DMG": { - name: "¡Eso es un montón de daño!", - }, - "10000_DMG": { - name: "One Punch Man", - }, - - "HealAchv": { - description: "Cura {{healAmount}} {{HP}} de una, con un movimiento, habilidad o objeto equipado.", - }, - "250_HEAL": { - name: "Sanador Novato", - }, - "1000_HEAL": { - name: "Gran Sanador", - }, - "2500_HEAL": { - name: "Clérigo", - }, - "10000_HEAL": { - name: "Centro Pokémon", - }, - - "LevelAchv": { - description: "Sube a un Pokémon al nivel {{level}}.", - }, - "LV_100": { - name: "¡Pero espera, aún hay mas!", - }, - "LV_250": { - name: "Élite", - }, - "LV_1000": { - name: "Supera tus límites", - }, - - "RibbonAchv": { - description: "Acumula un total de {{ribbonAmount}} Cintas.", - }, - "10_RIBBONS": { - name: "Campeón Liga Pokémon", - }, - "25_RIBBONS": { - name: "Campeón Liga Super", - }, - "50_RIBBONS": { - name: "Campeón Liga Ultra", - }, - "75_RIBBONS": { - name: "Campeón Liga Rogue", - }, - "100_RIBBONS": { - name: "Campeón Liga Master", - }, - - "TRANSFER_MAX_BATTLE_STAT": { - name: "Trabajo en Equipo", - description: "Haz relevo a otro miembro del equipo con al menos una estadística al máximo.", - }, - "MAX_FRIENDSHIP": { - name: "Amistad Total", - description: "Alcanza con un Pokémon la amistad al máximo.", - }, - "MEGA_EVOLVE": { - name: "Megamorfosis", - description: "Megaevoluciona a un Pokémon.", - }, - "GIGANTAMAX": { - name: "Criatura Colosal", - description: "Haz Gigantamax a un Pokémon.", - }, - "TERASTALLIZE": { - name: "Entusiasta del STAB", - description: "Teracristaliza a un Pokémon.", - }, - "STELLAR_TERASTALLIZE": { - name: "El Tipo Oculto", - description: "Teracristaliza a un Pokémon al tipo Astral.", - }, - "SPLICE": { - name: "Infinite Fusion", - description: "Fusiona dos Pokémon con la Punta ADN.", - }, - "MINI_BLACK_HOLE": { - name: "Devorador de Objetos", - description: "Adquiere un Mini Agujero Negro.", - }, - "CATCH_MYTHICAL": { - name: "Singular", - description: "Captura a un Pokémon Singular.", - }, - "CATCH_SUB_LEGENDARY": { - name: "(Sub)Legendario", - description: "Captura a un Pokémon Sublegendario.", - }, - "CATCH_LEGENDARY": { - name: "Legendario", - description: "Captura a un Pokémon Legendario.", - }, - "SEE_SHINY": { - name: "Shiny", - description: "Encuentra a un Pokémon Shiny salvaje.", - }, - "SHINY_PARTY": { - name: "Eso es dedicación", - description: "Tener un equipo completo de Pokémon shiny.", - }, - "HATCH_MYTHICAL": { - name: "Huevo Singular", - description: "Hacer eclosionar un Pokémon Singular de un huevo.", - }, - "HATCH_SUB_LEGENDARY": { - name: "Huevo Sublegendario", - description: "Hacer eclosionar un Pokémon Sublegendario de un huevo.", - }, - "HATCH_LEGENDARY": { - name: "Huevo Legendario", - description: "Hacer eclosionar un Pokémon Legendario de un huevo.", - }, - "HATCH_SHINY": { - name: "Huevo Shiny", - description: "Hacer eclosionar un Pokémon Shiny de un huevo.", - }, - "HIDDEN_ABILITY": { - name: "Potencial Oculto", - description: "Captura un Pokémon con una habilidad oculta.", - }, - "PERFECT_IVS": { - name: "Certificado de Autenticidad", - description: "Consigue IVs perfectos en un Pokémon.", - }, - "CLASSIC_VICTORY": { - name: "Imbatible", - description: "Completa el juego en modo clásico.", - }, - "UNEVOLVED_CLASSIC_VICTORY": { - name: "Bring Your Child To Work Day", - description: "Beat the game in Classic Mode with at least one unevolved party member." - }, - - "MONO_GEN_ONE": { - name: "The Original Rival", - description: "Complete the generation one only challenge.", - }, - "MONO_GEN_TWO": { - name: "Generation 1.5", - description: "Complete the generation two only challenge.", - }, - "MONO_GEN_THREE": { - name: "Too much water?", - description: "Complete the generation three only challenge.", - }, - "MONO_GEN_FOUR": { - name: "Is she really the hardest?", - description: "Complete the generation four only challenge.", - }, - "MONO_GEN_FIVE": { - name: "All Original", - description: "Complete the generation five only challenge.", - }, - "MONO_GEN_SIX": { - name: "Almost Royalty", - description: "Complete the generation six only challenge.", - }, - "MONO_GEN_SEVEN": { - name: "Only Technically", - description: "Complete the generation seven only challenge.", - }, - "MONO_GEN_EIGHT": { - name: "A Champion Time!", - description: "Complete the generation eight only challenge.", - }, - "MONO_GEN_NINE": { - name: "She was going easy on you", - description: "Complete the generation nine only challenge.", - }, - - "MonoType": { - description: "Complete the {{type}} monotype challenge.", - }, - "MONO_NORMAL": { - name: "Mono NORMAL", - }, - "MONO_FIGHTING": { - name: "I Know Kung Fu", - }, - "MONO_FLYING": { - name: "Mono FLYING", - }, - "MONO_POISON": { - name: "Kanto's Favourite", - }, - "MONO_GROUND": { - name: "Mono GROUND", - }, - "MONO_ROCK": { - name: "Brock Hard", - }, - "MONO_BUG": { - name: "Sting Like A Beedrill", - }, - "MONO_GHOST": { - name: "Who you gonna call?", - }, - "MONO_STEEL": { - name: "Mono STEEL", - }, - "MONO_FIRE": { - name: "Mono FIRE", - }, - "MONO_WATER": { - name: "When It Rains, It Pours", - }, - "MONO_GRASS": { - name: "Mono GRASS", - }, - "MONO_ELECTRIC": { - name: "Mono ELECTRIC", - }, - "MONO_PSYCHIC": { - name: "Mono PSYCHIC", - }, - "MONO_ICE": { - name: "Mono ICE", - }, - "MONO_DRAGON": { - name: "Mono DRAGON", - }, - "MONO_DARK": { - name: "It's just a phase", - }, - "MONO_FAIRY": { - name: "Mono FAIRY", - }, - "FRESH_START": { - name: "First Try!", - description: "Complete the Fresh Start challenge." - } -} as const; - -// Achievement translations for the when the player character is female (it for now uses the same translations as the male version) -export const PGFachv: AchievementTranslationEntries = PGMachv; diff --git a/src/locales/es/arena-flyout.ts b/src/locales/es/arena-flyout.json similarity index 82% rename from src/locales/es/arena-flyout.ts rename to src/locales/es/arena-flyout.json index 376b737811f..b2881b5de76 100644 --- a/src/locales/es/arena-flyout.ts +++ b/src/locales/es/arena-flyout.json @@ -1,13 +1,8 @@ -import { SimpleTranslationEntries } from "#app/interfaces/locales"; - -export const arenaFlyout: SimpleTranslationEntries = { - // Title +{ "activeBattleEffects": "Efectos de Terreno Activos", "player": "Jugador", "neutral": "Neutral", "enemy": "Enemigo", - - // WeatherType "sunny": "Sol", "rain": "Lluvia", "sandstorm": "Tormenta de Arena", @@ -17,14 +12,10 @@ export const arenaFlyout: SimpleTranslationEntries = { "heavyRain": "Diluvio", "harshSun": "Sol Abrasador", "strongWinds": "Turbulencias", - - // TerrainType "misty": "Campo de Niebla", "electric": "Campo Eléctrico", "grassy": "Campo de Hierba", "psychic": "Campo Psíquico", - - // ArenaTagType "mudSport": "Chapoteo Lodo", "waterSport": "Hidrochorro", "spikes": "Púas", @@ -45,5 +36,5 @@ export const arenaFlyout: SimpleTranslationEntries = { "matBlock": "Escudo Tatami", "craftyShield": "Truco Defensa", "tailwind": "Viento Afín", - "happyHour": "Paga Extra", -}; + "happyHour": "Paga Extra" +} \ No newline at end of file diff --git a/src/locales/es/arena-tag.json b/src/locales/es/arena-tag.json new file mode 100644 index 00000000000..9e26dfeeb6e --- /dev/null +++ b/src/locales/es/arena-tag.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/src/locales/es/arena-tag.ts b/src/locales/es/arena-tag.ts deleted file mode 100644 index 22612795308..00000000000 --- a/src/locales/es/arena-tag.ts +++ /dev/null @@ -1,53 +0,0 @@ -import { SimpleTranslationEntries } from "#app/interfaces/locales"; - -export const arenaTag: SimpleTranslationEntries = { - "yourTeam": "your team", - "opposingTeam": "the opposing team", - "arenaOnRemove": "{{moveName}}'s effect wore off.", - "arenaOnRemovePlayer": "{{moveName}}'s effect wore off\non your side.", - "arenaOnRemoveEnemy": "{{moveName}}'s effect wore off\non the foe's side.", - "mistOnAdd": "{{pokemonNameWithAffix}}'s team became\nshrouded in mist!", - "mistApply": "The mist prevented\nthe lowering of stats!", - "reflectOnAdd": "Reflect reduced the damage of physical moves.", - "reflectOnAddPlayer": "Reflect reduced the damage of physical moves on your side.", - "reflectOnAddEnemy": "Reflect reduced the damage of physical moves on the foe's side.", - "lightScreenOnAdd": "Light Screen reduced the damage of special moves.", - "lightScreenOnAddPlayer": "Light Screen reduced the damage of special moves on your side.", - "lightScreenOnAddEnemy": "Light Screen reduced the damage of special moves on the foe's side.", - "auroraVeilOnAdd": "Aurora Veil reduced the damage of moves.", - "auroraVeilOnAddPlayer": "Aurora Veil reduced the damage of moves on your side.", - "auroraVeilOnAddEnemy": "Aurora Veil reduced the damage of moves on the foe's side.", - "conditionalProtectOnAdd": "{{moveName}} protected team!", - "conditionalProtectOnAddPlayer": "{{moveName}} protected your team!", - "conditionalProtectOnAddEnemy": "{{moveName}} protected the\nopposing team!", - "conditionalProtectApply": "{{moveName}} protected {{pokemonNameWithAffix}}!", - "matBlockOnAdd": "{{pokemonNameWithAffix}} intends to flip up a mat\nand block incoming attacks!", - "noCritOnAddPlayer": "The {{moveName}} shielded your\nteam from critical hits!", - "noCritOnAddEnemy": "The {{moveName}} shielded the opposing\nteam from critical hits!", - "noCritOnRemove": "{{pokemonNameWithAffix}}'s {{moveName}}\nwore off!", - "wishTagOnAdd": "{{pokemonNameWithAffix}}'s wish\ncame true!", - "mudSportOnAdd": "Electricity's power was weakened!", - "mudSportOnRemove": "The effects of Mud Sport\nhave faded.", - "waterSportOnAdd": "Fire's power was weakened!", - "waterSportOnRemove": "The effects of Water Sport\nhave faded.", - "spikesOnAdd": "{{moveName}} were scattered\nall around {{opponentDesc}}'s feet!", - "spikesActivateTrap": "{{pokemonNameWithAffix}} is hurt\nby the spikes!", - "toxicSpikesOnAdd": "{{moveName}} were scattered\nall around {{opponentDesc}}'s feet!", - "toxicSpikesActivateTrapPoison": "{{pokemonNameWithAffix}} absorbed the {{moveName}}!", - "stealthRockOnAdd": "Pointed stones float in the air\naround {{opponentDesc}}!", - "stealthRockActivateTrap": "Pointed stones dug into\n{{pokemonNameWithAffix}}!", - "stickyWebOnAdd": "A {{moveName}} has been laid out on the ground around the opposing team!", - "stickyWebActivateTrap": "The opposing {{pokemonName}} was caught in a sticky web!", - "trickRoomOnAdd": "{{pokemonNameWithAffix}} twisted\nthe dimensions!", - "trickRoomOnRemove": "The twisted dimensions\nreturned to normal!", - "gravityOnAdd": "Gravity intensified!", - "gravityOnRemove": "Gravity returned to normal!", - "tailwindOnAdd": "The Tailwind blew from behind team!", - "tailwindOnAddPlayer": "The Tailwind blew from behind\nyour team!", - "tailwindOnAddEnemy": "The Tailwind blew from behind\nthe opposing team!", - "tailwindOnRemove": "Team's Tailwind petered out!", - "tailwindOnRemovePlayer": "Your team's Tailwind petered out!", - "tailwindOnRemoveEnemy": "The opposing team's Tailwind petered out!", - "happyHourOnAdd": "Everyone is caught up in the happy atmosphere!", - "happyHourOnRemove": "The atmosphere returned to normal.", -} as const; diff --git a/src/locales/es/battle-info.json b/src/locales/es/battle-info.json new file mode 100644 index 00000000000..9e26dfeeb6e --- /dev/null +++ b/src/locales/es/battle-info.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/src/locales/es/battle-info.ts b/src/locales/es/battle-info.ts deleted file mode 100644 index f24dad46c6c..00000000000 --- a/src/locales/es/battle-info.ts +++ /dev/null @@ -1,5 +0,0 @@ -import { SimpleTranslationEntries } from "#app/interfaces/locales"; - -export const battleInfo: SimpleTranslationEntries = { - "generation": "Generation {{generation}}", -} as const; diff --git a/src/locales/es/battle-message-ui-handler.json b/src/locales/es/battle-message-ui-handler.json new file mode 100644 index 00000000000..e1b63313ab6 --- /dev/null +++ b/src/locales/es/battle-message-ui-handler.json @@ -0,0 +1,8 @@ +{ + "ivBest": "Inmejorable", + "ivFantastic": "Fantástico", + "ivVeryGood": "Notable", + "ivPrettyGood": "Genial", + "ivDecent": "No está mal", + "ivNoGood": "Cojea un poco" +} \ No newline at end of file diff --git a/src/locales/es/battle-message-ui-handler.ts b/src/locales/es/battle-message-ui-handler.ts deleted file mode 100644 index cfc913f4b50..00000000000 --- a/src/locales/es/battle-message-ui-handler.ts +++ /dev/null @@ -1,10 +0,0 @@ -import { SimpleTranslationEntries } from "#app/interfaces/locales"; - -export const battleMessageUiHandler: SimpleTranslationEntries = { - "ivBest": "Inmejorable", - "ivFantastic": "Fantástico", - "ivVeryGood": "Notable", - "ivPrettyGood": "Genial", - "ivDecent": "No está mal", - "ivNoGood": "Cojea un poco", -} as const; diff --git a/src/locales/es/battle-scene.json b/src/locales/es/battle-scene.json new file mode 100644 index 00000000000..ef916edbf08 --- /dev/null +++ b/src/locales/es/battle-scene.json @@ -0,0 +1,3 @@ +{ + "moneyOwned": "{{formattedMoney}} ₽" +} \ No newline at end of file diff --git a/src/locales/es/battle.ts b/src/locales/es/battle.json similarity index 85% rename from src/locales/es/battle.ts rename to src/locales/es/battle.json index eb37699d911..8573f74a94e 100644 --- a/src/locales/es/battle.ts +++ b/src/locales/es/battle.json @@ -1,9 +1,6 @@ -import { SimpleTranslationEntries } from "#app/interfaces/locales"; - -export const battle: SimpleTranslationEntries = { +{ "bossAppeared": "¡{{bossName}} te corta el paso!", "trainerAppeared": "¡{{trainerName}}\nte desafía!", - "trainerAppearedDouble": "¡{{trainerName}}\nwould te desafían!", "trainerSendOut": "¡{{trainerName}} saca a\n{{pokemonName}}!", "singleWildAppeared": "¡Un {{pokemonName}} salvaje te corta el paso!", "multiWildAppeared": "¡Un {{pokemonName1}} y un {{pokemonName2}} salvajes\nte cortan el paso!", @@ -14,7 +11,6 @@ export const battle: SimpleTranslationEntries = { "switchQuestion": "¿Quieres cambiar a\n{{pokemonName}}?", "trainerDefeated": "¡Has derrotado a\n{{trainerName}}!", "moneyWon": "¡Has ganado\n₽{{moneyAmount}} por vencer!", - "moneyPickedUp": "You picked up ₽{{moneyAmount}}!", "pokemonCaught": "¡{{pokemonName}} atrapado!", "addedAsAStarter": "{{pokemonName}} ha sido añadido\na tus iniciales!", "partyFull": "Tu equipo esta completo.\n¿Quieres liberar un Pokémon para meter a {{pokemonName}}?", @@ -24,6 +20,7 @@ export const battle: SimpleTranslationEntries = { "hitResultSuperEffective": "¡Es supereficaz!", "hitResultNotVeryEffective": "No es muy eficaz…", "hitResultNoEffect": "No afecta a {{pokemonName}}!", + "hitResultImmune": "¡No afecta a {{pokemonName}}!", "hitResultOneHitKO": "¡KO en 1 golpe!", "attackFailed": "¡Pero ha fallado!", "attackMissed": "¡{{pokemonNameWithAffix}}\nha evitado el ataque!", @@ -39,7 +36,7 @@ export const battle: SimpleTranslationEntries = { "learnMoveNotLearned": "{{pokemonName}} no ha aprendido {{moveName}}.", "learnMoveForgetQuestion": "¿Qué movimiento quieres que olvide?", "learnMoveForgetSuccess": "{{pokemonName}} ha olvidado cómo utilizar {{moveName}}.", - "countdownPoof": "@d{32}1, @d{15}2, @d{15}y@d{15}… @d{15}… @d{15}… @d{15}@s{pb_bounce_1}¡Puf!", + "countdownPoof": "@d{32}1, @d{15}2, @d{15}y@d{15}… @d{15}… @d{15}… @d{15}@s{se/pb_bounce_1}¡Puf!", "learnMoveAnd": "Y…", "levelCapUp": "¡Se ha incrementado el\nnivel máximo a {{levelCap}}!", "moveNotImplemented": "{{moveName}} aún no está implementado y no se puede seleccionar.", @@ -69,8 +66,6 @@ export const battle: SimpleTranslationEntries = { "drainMessage": "¡{{pokemonName}} tuvo su\nenergía absorbida!", "regainHealth": "¡{{pokemonName}} recuperó\nPS!", "stealEatBerry": "¡{{pokemonName}} robó la {{berryName}}\nde {{targetName}} y se la comió!", - "ppHealBerry": "{{pokemonNameWithAffix}} restored PP to its move {{moveName}}\nusing its {{berryName}}!", - "hpHealBerry": "{{pokemonNameWithAffix}} restored its health using\nits {{berryName}}!", "fainted": "¡{{pokemonNameWithAffix}} se debilitó!", "statsAnd": "y", "stats": "Las estadísticas", @@ -89,11 +84,5 @@ export const battle: SimpleTranslationEntries = { "statSeverelyFell_one": "¡El {{stats}} de {{pokemonNameWithAffix}} ha bajado muchísimo!", "statSeverelyFell_other": "¡{{stats}} de\n{{pokemonNameWithAffix}} han bajado muchísimo!", "statWontGoAnyLower_one": "¡El {{stats}} de {{pokemonNameWithAffix}} no puede bajar más!", - "statWontGoAnyLower_other": "¡{{stats}} de\n{{pokemonNameWithAffix}} no pueden bajar más!", - "transformedIntoType": "{{pokemonName}} transformed\ninto the {{type}} type!", - "retryBattle": "Would you like to retry from the start of the battle?", - "unlockedSomething": "{{unlockedThing}}\nhas been unlocked.", - "congratulations": "Congratulations!", - "beatModeFirstTime": "{{speciesName}} beat {{gameMode}} Mode for the first time!\nYou received {{newModifier}}!", - "ppReduced": "It reduced the PP of {{targetName}}'s\n{{moveName}} by {{reduction}}!", -} as const; + "statWontGoAnyLower_other": "¡{{stats}} de\n{{pokemonNameWithAffix}} no pueden bajar más!" +} \ No newline at end of file diff --git a/src/locales/es/battler-tags.json b/src/locales/es/battler-tags.json new file mode 100644 index 00000000000..9e26dfeeb6e --- /dev/null +++ b/src/locales/es/battler-tags.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/src/locales/es/battler-tags.ts b/src/locales/es/battler-tags.ts deleted file mode 100644 index d0775efda08..00000000000 --- a/src/locales/es/battler-tags.ts +++ /dev/null @@ -1,73 +0,0 @@ -import { SimpleTranslationEntries } from "#app/interfaces/locales"; - -export const battlerTags: SimpleTranslationEntries = { - "trappedDesc": "trapping", - "flinchedDesc": "flinching", - "confusedDesc": "confusion", - "infatuatedDesc": "infatuation", - "seedDesc": "seeding", - "nightmareDesc": "nightmares", - "ingrainDesc": "roots", - "drowsyDesc": "drowsiness", - "rechargingLapse": "{{pokemonNameWithAffix}} must\nrecharge!", - "trappedOnAdd": "{{pokemonNameWithAffix}} can no\nlonger escape!", - "trappedOnRemove": "{{pokemonNameWithAffix}} was freed\nfrom {{moveName}}!", - "flinchedLapse": "{{pokemonNameWithAffix}} flinched!", - "confusedOnAdd": "{{pokemonNameWithAffix}} became\nconfused!", - "confusedOnRemove": "{{pokemonNameWithAffix}} snapped\nout of confusion!", - "confusedOnOverlap": "{{pokemonNameWithAffix}} is\nalready confused!", - "confusedLapse": "{{pokemonNameWithAffix}} is\nconfused!", - "confusedLapseHurtItself": "It hurt itself in its\nconfusion!", - "destinyBondLapseIsBoss": "{{pokemonNameWithAffix}} is unaffected\nby the effects of Destiny Bond.", - "destinyBondLapse": "{{pokemonNameWithAffix}} took\n{{pokemonNameWithAffix2}} down with it!", - "infatuatedOnAdd": "{{pokemonNameWithAffix}} fell in love\nwith {{sourcePokemonName}}!", - "infatuatedOnOverlap": "{{pokemonNameWithAffix}} is\nalready in love!", - "infatuatedLapse": "{{pokemonNameWithAffix}} is in love\nwith {{sourcePokemonName}}!", - "infatuatedLapseImmobilize": "{{pokemonNameWithAffix}} is\nimmobilized by love!", - "infatuatedOnRemove": "{{pokemonNameWithAffix}} got over\nits infatuation.", - "seededOnAdd": "{{pokemonNameWithAffix}} was seeded!", - "seededLapse": "{{pokemonNameWithAffix}}'s health is\nsapped by Leech Seed!", - "seededLapseShed": "{{pokemonNameWithAffix}}'s Leech Seed\nsucked up the liquid ooze!", - "nightmareOnAdd": "{{pokemonNameWithAffix}} began\nhaving a Nightmare!", - "nightmareOnOverlap": "{{pokemonNameWithAffix}} is\nalready locked in a Nightmare!", - "nightmareLapse": "{{pokemonNameWithAffix}} is locked\nin a Nightmare!", - "encoreOnAdd": "{{pokemonNameWithAffix}} got\nan Encore!", - "encoreOnRemove": "{{pokemonNameWithAffix}}'s Encore\nended!", - "helpingHandOnAdd": "{{pokemonNameWithAffix}} is ready to\nhelp {{pokemonName}}!", - "ingrainLapse": "{{pokemonNameWithAffix}} absorbed\nnutrients with its roots!", - "ingrainOnTrap": "{{pokemonNameWithAffix}} planted its roots!", - "aquaRingOnAdd": "{{pokemonNameWithAffix}} surrounded\nitself with a veil of water!", - "aquaRingLapse": "{{moveName}} restored\n{{pokemonName}}'s HP!", - "drowsyOnAdd": "{{pokemonNameWithAffix}} grew drowsy!", - "damagingTrapLapse": "{{pokemonNameWithAffix}} is hurt\nby {{moveName}}!", - "bindOnTrap": "{{pokemonNameWithAffix}} was squeezed by\n{{sourcePokemonName}}'s {{moveName}}!", - "wrapOnTrap": "{{pokemonNameWithAffix}} was Wrapped\nby {{sourcePokemonName}}!", - "vortexOnTrap": "{{pokemonNameWithAffix}} was trapped\nin the vortex!", - "clampOnTrap": "{{sourcePokemonNameWithAffix}} Clamped\n{{pokemonName}}!", - "sandTombOnTrap": "{{pokemonNameWithAffix}} became trapped\nby {{moveName}}!", - "magmaStormOnTrap": "{{pokemonNameWithAffix}} became trapped\nby swirling magma!", - "snapTrapOnTrap": "{{pokemonNameWithAffix}} got trapped\nby a snap trap!", - "thunderCageOnTrap": "{{sourcePokemonNameWithAffix}} trapped\n{{pokemonNameWithAffix}}!", - "infestationOnTrap": "{{pokemonNameWithAffix}} has been afflicted \nwith an infestation by {{sourcePokemonNameWithAffix}}!", - "protectedOnAdd": "{{pokemonNameWithAffix}}\nprotected itself!", - "protectedLapse": "{{pokemonNameWithAffix}}\nprotected itself!", - "enduringOnAdd": "{{pokemonNameWithAffix}} braced\nitself!", - "enduringLapse": "{{pokemonNameWithAffix}} endured\nthe hit!", - "sturdyLapse": "{{pokemonNameWithAffix}} endured\nthe hit!", - "perishSongLapse": "{{pokemonNameWithAffix}}'s perish count fell to {{turnCount}}.", - "centerOfAttentionOnAdd": "{{pokemonNameWithAffix}} became the center\nof attention!", - "truantLapse": "{{pokemonNameWithAffix}} is\nloafing around!", - "slowStartOnAdd": "{{pokemonNameWithAffix}} can't\nget it going!", - "slowStartOnRemove": "{{pokemonNameWithAffix}} finally\ngot its act together!", - "highestStatBoostOnAdd": "{{pokemonNameWithAffix}}'s {{statName}}\nwas heightened!", - "highestStatBoostOnRemove": "The effects of {{pokemonNameWithAffix}}'s\n{{abilityName}} wore off!", - "magnetRisenOnAdd": "{{pokemonNameWithAffix}} levitated with electromagnetism!", - "magnetRisenOnRemove": "{{pokemonNameWithAffix}}'s electromagnetism wore off!", - "critBoostOnAdd": "{{pokemonNameWithAffix}} is getting\npumped!", - "critBoostOnRemove": "{{pokemonNameWithAffix}} relaxed.", - "saltCuredOnAdd": "{{pokemonNameWithAffix}} is being salt cured!", - "saltCuredLapse": "{{pokemonNameWithAffix}} is hurt by {{moveName}}!", - "cursedOnAdd": "{{pokemonNameWithAffix}} cut its own HP and put a curse on the {{pokemonName}}!", - "cursedLapse": "{{pokemonNameWithAffix}} is afflicted by the Curse!", - "stockpilingOnAdd": "{{pokemonNameWithAffix}} stockpiled {{stockpiledCount}}!", -} as const; diff --git a/src/locales/es/berry.json b/src/locales/es/berry.json new file mode 100644 index 00000000000..befbb9a892f --- /dev/null +++ b/src/locales/es/berry.json @@ -0,0 +1,46 @@ +{ + "SITRUS": { + "name": "Baya Zidra", + "effect": "Restaura 25% PS si estos caen por debajo del 50%" + }, + "LUM": { + "name": "Baya Ziuela", + "effect": "Cura cualquier problema de estado" + }, + "ENIGMA": { + "name": "Baya Enigma", + "effect": "Restaura 25% PS si le alcanza un ataque supereficaz" + }, + "LIECHI": { + "name": "Baya Lichi", + "effect": "Aumenta el ataque si los PS están por debajo de 25%" + }, + "GANLON": { + "name": "Baya Gonlan", + "effect": "Aumenta la defensa si los PS están por debajo de 25%" + }, + "PETAYA": { + "name": "Baya Yapati", + "effect": "Aumenta el ataque especial si los PS están por debajo de 25%" + }, + "APICOT": { + "name": "Baya Aricoc", + "effect": "Aumenta la defensa especial si los PS están por debajo de 25%" + }, + "SALAC": { + "name": "Baya Aslac", + "effect": "Aumenta la velocidad si los PS están por debajo de 25%" + }, + "LANSAT": { + "name": "Baya Zonlan", + "effect": "Aumenta el índice de golpe crítico si los PS están por debajo de 25%" + }, + "STARF": { + "name": "Baya Arabol", + "effect": "Aumenta mucho una estadística al azar si los PS están por debajo de 25%" + }, + "LEPPA": { + "name": "Baya Zanama", + "effect": "Restaura 10 PP del primer movimiento cuyos PP bajen a 0" + } +} \ No newline at end of file diff --git a/src/locales/es/berry.ts b/src/locales/es/berry.ts deleted file mode 100644 index 0bebdf43c13..00000000000 --- a/src/locales/es/berry.ts +++ /dev/null @@ -1,48 +0,0 @@ -import { BerryTranslationEntries } from "#app/interfaces/locales"; - -export const berry: BerryTranslationEntries = { - "SITRUS": { - name: "Baya Zidra", - effect: "Restaura 25% PS si estos caen por debajo del 50%", - }, - "LUM": { - name: "Baya Ziuela", - effect: "Cura cualquier problema de estado", - }, - "ENIGMA": { - name: "Baya Enigma", - effect: "Restaura 25% PS si le alcanza un ataque supereficaz", - }, - "LIECHI": { - name: "Baya Lichi", - effect: "Aumenta el ataque si los PS están por debajo de 25%", - }, - "GANLON": { - name: "Baya Gonlan", - effect: "Aumenta la defensa si los PS están por debajo de 25%", - }, - "PETAYA": { - name: "Baya Yapati", - effect: "Aumenta el ataque especial si los PS están por debajo de 25%", - }, - "APICOT": { - name: "Baya Aricoc", - effect: "Aumenta la defensa especial si los PS están por debajo de 25%", - }, - "SALAC": { - name: "Baya Aslac", - effect: "Aumenta la velocidad si los PS están por debajo de 25%", - }, - "LANSAT": { - name: "Baya Zonlan", - effect: "Aumenta el índice de golpe crítico si los PS están por debajo de 25%", - }, - "STARF": { - name: "Baya Arabol", - effect: "Aumenta mucho una estadística al azar si los PS están por debajo de 25%", - }, - "LEPPA": { - name: "Baya Zanama", - effect: "Restaura 10 PP del primer movimiento cuyos PP bajen a 0", - }, -} as const; diff --git a/src/locales/es/bgm-name.ts b/src/locales/es/bgm-name.json similarity index 90% rename from src/locales/es/bgm-name.ts rename to src/locales/es/bgm-name.json index f7316ca1166..be617b79567 100644 --- a/src/locales/es/bgm-name.ts +++ b/src/locales/es/bgm-name.json @@ -1,8 +1,6 @@ -import { SimpleTranslationEntries } from "#app/interfaces/locales"; - -export const bgmName: SimpleTranslationEntries = { +{ "music": "Música: ", - "missing_entries" : "{{name}}", + "missing_entries": "{{name}}", "battle_kanto_champion": "B2W2 - ¡Vs Campeón de Kanto!", "battle_johto_champion": "B2W2 - ¡Vs Campeón de Johto!", "battle_hoenn_champion_g5": "B2W2 - ¡Vs Campeón de Hoenn!", @@ -80,13 +78,18 @@ export const bgmName: SimpleTranslationEntries = { "battle_galactic_grunt": "BDSP Team Galactic Battle", "battle_plasma_grunt": "BW - ¡Vs Equipo Plasma!", "battle_flare_grunt": "XY Team Flare Battle", + "battle_aether_grunt": "SM Aether Foundation Battle", + "battle_skull_grunt": "SM Team Skull Battle", + "battle_macro_grunt": "SWSH Trainer Battle", + "battle_galactic_admin": "BDSP Team Galactic Admin Battle", + "battle_skull_admin": "SM Team Skull Admin Battle", + "battle_oleana": "SWSH Oleana Battle", "battle_rocket_boss": "USUM Giovanni Battle", "battle_aqua_magma_boss": "ORAS Archie & Maxie Battle", "battle_galactic_boss": "BDSP Cyrus Battle", "battle_plasma_boss": "B2W2 Ghetsis Battle", "battle_flare_boss": "XY Lysandre Battle", - // Biome Music "abyss": "PMD EoS - Cráter Oscuro", "badlands": "PMD EoS - Valle Desolado", "beach": "PMD EoS - Risco Calado", @@ -102,18 +105,18 @@ export const bgmName: SimpleTranslationEntries = { "graveyard": "PMD EoS - Bosque Misterio", "ice_cave": "PMD EoS - Gran Iceberg", "island": "PMD EoS - Costa Escarpada", - "jungle": "Lmz - Jungle", // The composer thinks about a more creative name - "laboratory": "Firel - Laboratory", // The composer thinks about a more creative name + "jungle": "Lmz - Jungle", + "laboratory": "Firel - Laboratory", "lake": "PMD EoS - Cueva Cristal", "meadow": "PMD EoS - Bosque de la Cumbre del Cielo", - "metropolis": "Firel - Metropolis", // The composer thinks about a more creative name + "metropolis": "Firel - Metropolis", "mountain": "PMD EoS - Monte Cuerno", "plains": "PMD EoS - Pradera de la Cumbre del Cielo", "power_plant": "PMD EoS - Pradera Destello", "ruins": "PMD EoS - Sima Hermética", - "sea": "Andr06 - Marine Mystique", // Name defined by the composer - "seabed": "Firel - Seabed", // The composer thinks about a more creative name - "slum": "Andr06 - Sneaky Snom", // Name defined by the composer + "sea": "Andr06 - Marine Mystique", + "seabed": "Firel - Seabed", + "slum": "Andr06 - Sneaky Snom", "snowy_forest": "PMD EoS - Campo nevado de la Cumbre del Cielo", "space": "Firel - Aether", "swamp": "PMD EoS - Mar Circundante", @@ -122,8 +125,6 @@ export const bgmName: SimpleTranslationEntries = { "town": "PMD EoS - Tema del territorio aleatorio 3", "volcano": "PMD EoS - Cueva Vapor", "wasteland": "PMD EoS - Corazón Tierra Oculta", - - // Encounter "encounter_ace_trainer": "BW - Desafío Combate (Entrenador Guay)", "encounter_backpacker": "BW - Desafío Combate (Mochilero)", "encounter_clerk": "BW - Desafío Combate (Empresario)", @@ -138,9 +139,7 @@ export const bgmName: SimpleTranslationEntries = { "encounter_scientist": "BW - Desafío Combate (Científico)", "encounter_twins": "BW - Desafío Combate (Gemelas)", "encounter_youngster": "BW - Desafío Combate (Joven)", - - // Other "heal": "BW - Cura Pokémon", "menu": "PMD EoS - ¡Bienvenidos al mundo de los Pokémon!", - "title": "PMD EoS - Tema del menú principal", -} as const; + "title": "PMD EoS - Tema del menú principal" +} diff --git a/src/locales/es/biome.ts b/src/locales/es/biome.json similarity index 86% rename from src/locales/es/biome.ts rename to src/locales/es/biome.json index a0b861b57f5..ff67738a074 100644 --- a/src/locales/es/biome.ts +++ b/src/locales/es/biome.json @@ -1,6 +1,4 @@ -import { SimpleTranslationEntries } from "#app/interfaces/locales"; - -export const biome: SimpleTranslationEntries = { +{ "unknownLocation": "En algún lugar que no puedes recordar", "TOWN": "Pueblo", "PLAINS": "Valle", @@ -36,5 +34,5 @@ export const biome: SimpleTranslationEntries = { "SNOWY_FOREST": "Bosque nevado", "ISLAND": "Isla", "LABORATORY": "Laboratorio", - "END": "???", -} as const; + "END": "???" +} \ No newline at end of file diff --git a/src/locales/es/challenges.ts b/src/locales/es/challenges.json similarity index 58% rename from src/locales/es/challenges.ts rename to src/locales/es/challenges.json index 063933a5e27..6a7db8c10c3 100644 --- a/src/locales/es/challenges.ts +++ b/src/locales/es/challenges.json @@ -1,8 +1,5 @@ -import { TranslationEntries } from "#app/interfaces/locales"; - -export const challenges: TranslationEntries = { +{ "title": "Parámetros de Desafíos", - "illegalEvolution": "{{pokemon}} changed into an ineligble pokémon\nfor this challenge!", "singleGeneration": { "name": "Monogeneración", "desc": "Solo puedes usar Pokémon de {{gen}} generación.", @@ -15,17 +12,18 @@ export const challenges: TranslationEntries = { "gen_6": "sexta", "gen_7": "séptima", "gen_8": "octava", - "gen_9": "novena", + "gen_9": "novena" }, "singleType": { "name": "Monotipo", "desc": "Solo puedes usar Pokémon with the {{type}} type.", - "desc_default": "Solo puedes usar Pokémon del tipo elegido.", + "desc_default": "Solo puedes usar Pokémon del tipo elegido." }, - "freshStart": { - "name": "Fresh Start", - "desc": "You can only use the original starters, and only as if you had just started PokéRogue.", - "value.0": "Off", - "value.1": "On", + "inverseBattle": { + "name": "Combate Inverso", + "shortName": "Inverso", + "desc": "La efectividad de los tipos es invertida. No hay inmunidades entre tipos.\nEste reto deshabilita logros de otros retos.", + "value.0": "Desactivado", + "value.1": "Activado" } -} as const; +} \ No newline at end of file diff --git a/src/locales/es/command-ui-handler.json b/src/locales/es/command-ui-handler.json new file mode 100644 index 00000000000..554b9548cca --- /dev/null +++ b/src/locales/es/command-ui-handler.json @@ -0,0 +1,7 @@ +{ + "fight": "Luchar", + "ball": "Balls", + "pokemon": "Pokémon", + "run": "Huir", + "actionMessage": "¿Qué debería\nhacer {{pokemonName}}?" +} \ No newline at end of file diff --git a/src/locales/es/command-ui-handler.ts b/src/locales/es/command-ui-handler.ts deleted file mode 100644 index 5ddde2c983a..00000000000 --- a/src/locales/es/command-ui-handler.ts +++ /dev/null @@ -1,9 +0,0 @@ -import { SimpleTranslationEntries } from "#app/interfaces/locales"; - -export const commandUiHandler: SimpleTranslationEntries = { - "fight": "Luchar", - "ball": "Balls", - "pokemon": "Pokémon", - "run": "Huir", - "actionMessage": "¿Qué debería\nhacer {{pokemonName}}?", -} as const; diff --git a/src/locales/es/common.json b/src/locales/es/common.json new file mode 100644 index 00000000000..556ebb8454e --- /dev/null +++ b/src/locales/es/common.json @@ -0,0 +1,7 @@ +{ + "luckIndicator": "Suerte:", + "shinyOnHover": "Shiny", + "commonShiny": "Común", + "rareShiny": "Raro", + "epicShiny": "Épico" +} \ No newline at end of file diff --git a/src/locales/es/common.ts b/src/locales/es/common.ts deleted file mode 100644 index 347b39c973c..00000000000 --- a/src/locales/es/common.ts +++ /dev/null @@ -1,10 +0,0 @@ -import { SimpleTranslationEntries } from "#app/interfaces/locales"; - -export const common: SimpleTranslationEntries = { - "start": "Start", - "luckIndicator": "Suerte:", - "shinyOnHover": "Shiny", - "commonShiny": "Común", - "rareShiny": "Raro", - "epicShiny": "Épico", -} as const; diff --git a/src/locales/es/config.ts b/src/locales/es/config.ts index ce9ad19aac3..8f75c08f3f6 100644 --- a/src/locales/es/config.ts +++ b/src/locales/es/config.ts @@ -1,116 +1,113 @@ -import { ability } from "./ability"; -import { abilityTriggers } from "./ability-trigger"; -import { arenaFlyout } from "./arena-flyout"; -import { arenaTag } from "./arena-tag"; -import { PGFachv, PGMachv } from "./achv"; -import { battle } from "./battle"; -import { battleInfo } from "./battle-info"; -import { battleMessageUiHandler } from "./battle-message-ui-handler"; -import { battlerTags } from "./battler-tags"; -import { berry } from "./berry"; -import { bgmName } from "./bgm-name"; -import { biome } from "./biome"; -import { challenges } from "./challenges"; -import { commandUiHandler } from "./command-ui-handler"; -import { - PGFbattleSpecDialogue, - PGFdialogue, - PGFdoubleBattleDialogue, - PGFmiscDialogue, - PGMbattleSpecDialogue, - PGMdialogue, - PGMdoubleBattleDialogue, - PGMmiscDialogue -} from "./dialogue"; -import { egg } from "./egg"; -import { fightUiHandler } from "./fight-ui-handler"; -import { filterBar } from "./filter-bar"; -import { gameMode } from "./game-mode"; -import { gameStatsUiHandler } from "./game-stats-ui-handler"; -import { growth } from "./growth"; -import { menu } from "./menu"; -import { menuUiHandler } from "./menu-ui-handler"; -import { modifier } from "./modifier"; -import { modifierType } from "./modifier-type"; -import { move } from "./move"; -import { nature } from "./nature"; -import { pokeball } from "./pokeball"; -import { pokemon } from "./pokemon"; -import { pokemonForm, battlePokemonForm } from "./pokemon-form"; -import { pokemonInfo } from "./pokemon-info"; -import { pokemonInfoContainer } from "./pokemon-info-container"; -import { pokemonSummary } from "./pokemon-summary"; -import { saveSlotSelectUiHandler } from "./save-slot-select-ui-handler"; -import { splashMessages } from "./splash-messages"; -import { starterSelectUiHandler } from "./starter-select-ui-handler"; -import { statusEffect } from "./status-effect"; -import { titles, trainerClasses, trainerNames } from "./trainers"; -import { tutorial } from "./tutorial"; -import { voucher } from "./voucher"; -import { terrain, weather } from "./weather"; -import { partyUiHandler } from "./party-ui-handler"; -import { settings } from "./settings.js"; -import { common } from "./common.js"; -import { modifierSelectUiHandler } from "./modifier-select-ui-handler"; -import { moveTriggers } from "./move-trigger"; +import common from "./common.json"; +import settings from "./settings.json"; +import ability from "./ability.json"; +import abilityTriggers from "./ability-trigger.json"; +import arenaFlyout from "./arena-flyout.json"; +import arenaTag from "./arena-tag.json"; +import achv from "./achv.json"; +import battle from "./battle.json"; +import battleScene from "./battle-scene.json"; +import battleInfo from "./battle-info.json"; +import battleMessageUiHandler from "./battle-message-ui-handler.json"; +import battlerTags from "./battler-tags.json"; +import berry from "./berry.json"; +import bgmName from "./bgm-name.json"; +import biome from "./biome.json"; +import challenges from "./challenges.json"; +import commandUiHandler from "./command-ui-handler.json"; +import dialogue from "./dialogue.json"; +import battleSpecDialogue from "./dialogue-final-boss.json"; +import miscDialogue from "./dialogue-misc.json"; +import doubleBattleDialogue from "./dialogue-double-battle.json"; +import egg from "./egg.json"; +import fightUiHandler from "./fight-ui-handler.json"; +import filterBar from "./filter-bar.json"; +import gameMode from "./game-mode.json"; +import gameStatsUiHandler from "./game-stats-ui-handler.json"; +import growth from "./growth.json"; +import menu from "./menu.json"; +import menuUiHandler from "./menu-ui-handler.json"; +import modifier from "./modifier.json"; +import modifierType from "./modifier-type.json"; +import move from "./move.json"; +import nature from "./nature.json"; +import partyUiHandler from "./party-ui-handler.json"; +import pokeball from "./pokeball.json"; +import pokemon from "./pokemon.json"; +import pokemonForm from "./pokemon-form.json"; +import battlePokemonForm from "./pokemon-form-battle.json"; +import pokemonInfo from "./pokemon-info.json"; +import pokemonInfoContainer from "./pokemon-info-container.json"; +import pokemonSummary from "./pokemon-summary.json"; +import saveSlotSelectUiHandler from "./save-slot-select-ui-handler.json"; +import splashMessages from "./splash-messages.json"; +import starterSelectUiHandler from "./starter-select-ui-handler.json"; +import statusEffect from "./status-effect.json"; +import trainerTitles from "./trainer-titles.json"; +import trainerClasses from "./trainer-classes.json"; +import trainerNames from "./trainer-names.json"; +import tutorial from "./tutorial.json"; +import voucher from "./voucher.json"; +import weather from "./weather.json"; +import terrain from "./terrain.json"; +import modifierSelectUiHandler from "./modifier-select-ui-handler.json"; +import moveTriggers from "./move-trigger.json"; +import runHistory from "./run-history.json"; export const esConfig = { - ability: ability, - abilityTriggers: abilityTriggers, - arenaFlyout: arenaFlyout, - arenaTag: arenaTag, - battle: battle, - battleInfo: battleInfo, - battleMessageUiHandler: battleMessageUiHandler, - battlePokemonForm: battlePokemonForm, - battlerTags: battlerTags, - berry: berry, - bgmName: bgmName, - biome: biome, - challenges: challenges, - commandUiHandler: commandUiHandler, - common: common, - PGMachv: PGMachv, - PGFachv: PGFachv, - PGMdialogue: PGMdialogue, - PGFdialogue: PGFdialogue, - PGMbattleSpecDialogue: PGMbattleSpecDialogue, - PGFbattleSpecDialogue: PGFbattleSpecDialogue, - PGMmiscDialogue: PGMmiscDialogue, - PGFmiscDialogue: PGFmiscDialogue, - PGMdoubleBattleDialogue: PGMdoubleBattleDialogue, - PGFdoubleBattleDialogue: PGFdoubleBattleDialogue, - egg: egg, - fightUiHandler: fightUiHandler, - filterBar: filterBar, - gameMode: gameMode, - gameStatsUiHandler: gameStatsUiHandler, - growth: growth, - menu: menu, - menuUiHandler: menuUiHandler, - modifier: modifier, - modifierType: modifierType, - move: move, - nature: nature, - pokeball: pokeball, - pokemon: pokemon, - pokemonForm: pokemonForm, - pokemonInfo: pokemonInfo, - pokemonInfoContainer: pokemonInfoContainer, - pokemonSummary: pokemonSummary, - saveSlotSelectUiHandler: saveSlotSelectUiHandler, - settings: settings, - splashMessages: splashMessages, - starterSelectUiHandler: starterSelectUiHandler, - statusEffect: statusEffect, - terrain: terrain, - titles: titles, - trainerClasses: trainerClasses, - trainerNames: trainerNames, - tutorial: tutorial, - voucher: voucher, - weather: weather, - partyUiHandler: partyUiHandler, - modifierSelectUiHandler: modifierSelectUiHandler, - moveTriggers: moveTriggers + ability, + abilityTriggers, + arenaFlyout, + arenaTag, + battle, + battleScene, + battleInfo, + battleMessageUiHandler, + battlePokemonForm, + battlerTags, + berry, + bgmName, + biome, + challenges, + commandUiHandler, + common, + achv, + dialogue, + battleSpecDialogue, + miscDialogue, + doubleBattleDialogue, + egg, + fightUiHandler, + filterBar, + gameMode, + gameStatsUiHandler, + growth, + menu, + menuUiHandler, + modifier, + modifierType, + move, + nature, + pokeball, + pokemon, + pokemonForm, + pokemonInfo, + pokemonInfoContainer, + pokemonSummary, + saveSlotSelectUiHandler, + settings, + splashMessages, + starterSelectUiHandler, + statusEffect, + terrain, + titles: trainerTitles, + trainerClasses, + trainerNames, + tutorial, + voucher, + weather, + partyUiHandler, + modifierSelectUiHandler, + moveTriggers, + runHistory }; diff --git a/src/locales/es/dialogue-double-battle.json b/src/locales/es/dialogue-double-battle.json new file mode 100644 index 00000000000..9e26dfeeb6e --- /dev/null +++ b/src/locales/es/dialogue-double-battle.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/src/locales/es/dialogue-final-boss.json b/src/locales/es/dialogue-final-boss.json new file mode 100644 index 00000000000..9e26dfeeb6e --- /dev/null +++ b/src/locales/es/dialogue-final-boss.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/src/locales/es/dialogue-misc.json b/src/locales/es/dialogue-misc.json new file mode 100644 index 00000000000..9e26dfeeb6e --- /dev/null +++ b/src/locales/es/dialogue-misc.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/src/locales/es/dialogue.json b/src/locales/es/dialogue.json new file mode 100644 index 00000000000..cbd7dbf39ad --- /dev/null +++ b/src/locales/es/dialogue.json @@ -0,0 +1,52 @@ +{ + "aether_grunt": { + "encounter": { + "1": "¡Lucharé con toda mi fuerza para detenerte!", + "2": "Me da igual que seas un crío. Eres una amenaza y debes irte.", + "3": "Me dijeron que mandara a todos los entrenadores por donde venían, ¡sin excepciones!", + "4": "¡Te mostraré el poder del Paraíso Æther!", + "5": "Ahora que conoces la oscuridad en lo profundo del Paraíso Æther, es hora de que vayas desapareciendo..." + }, + "victory": { + "1": "¡Vaya! Demuestras habilidad.", + "2": "¿Qué quiere decir esto? ¿Eh?", + "3": "¡Vaya! Con esa fuerza, ¡no creo que pueda detenerte!", + "4": "Vaya... parece que puede que haya perdido.", + "5": "¡Mira, te hago una mueca!: ¡Aiyee!" + } + }, + "faba": { + "encounter": { + "1": "¡Yo, Subdirector Fabio, te mostraré la cruda realidad del mundo!", + "2": "¿Yo, la última línea de defensa de Æther, battallando a un mero crío?", + "3": "Yo, Fabio, soy el Subdirector de la Fundación Æther. Soy el único en el mundo, soy irremplazable." + }, + "victory": { + "1": "¡Aaaah!", + "2": "¿C-c-cómo puede ser? Eres tan solo un niño...", + "3": "Este... este es el motivo por el que odio a los niños." + } + }, + "aether_boss_lusamine_1": { + "encounter": { + "1": "¡Vas a asustar a mi pobre criatura! Parece que tendré que silenciarte cuanto antes." + }, + "victory": { + "1": "¿Cómo?¿Cómo puedes ser tan terrible?" + }, + "defeat": { + "1": "Buff." + } + }, + "aether_boss_lusamine_2": { + "encounter": { + "1": "¡¿Por qué me sigues molestando?! Estoy cansada de ti. ¡Hasta las narices!\n$Se acabó esta charla innecesaria. Este es el poder de Nihilego, ¡te demostraré cuánto te equivocas al venir aquí!" + }, + "victory": { + "1": "¡¡¡Aaauuuggghhhhhhhhh!!!" + }, + "defeat": { + "1": "¡Todo lo que quiero es a esta preciosa criatura! ¡Los demás no me importáis!" + } + } +} diff --git a/src/locales/es/dialogue.ts b/src/locales/es/dialogue.ts deleted file mode 100644 index 07e51458a29..00000000000 --- a/src/locales/es/dialogue.ts +++ /dev/null @@ -1,2916 +0,0 @@ -import {DialogueTranslationEntries, SimpleTranslationEntries} from "#app/interfaces/locales"; - -// Dialogue of the NPCs in the game when the player character is male (or unset) -export const PGMdialogue: DialogueTranslationEntries = { - "youngster": { - "encounter": { - 1: "Hey, ¿quieres luchar?", - 2: "¿También eres un entrenador novato?", - 3: "No te había visto antes. ¡Vamos a luchar!", - 4: "Perdí y estoy intentando buscar nuevos Pokémon.\n¡Espera, pareces débil! ¡Vamos, a luchar!", - 5: "¿Nos conocimos o no? Ni me acuerdo. ¡Supongo que es un gusto conocerte!", - 6: "¡Venga, vamos!", - 7: "¡Allá voy! ¡Te enseñaré mi poder!", - 8: "¡Ja ja ja! ¡Te enseñaré lo jimpresionante que es mi equipo!", - 9: "No pierdas tiempo saludando. ¡Adelante, cuando estés listo!", - 10: "No bajes la guardia o llorarás porque un niño te ganó.", - 11: "He cuidado a mis Pokémon con cariño. ¡Prohibido hacerles daño!", - 12: "¡Encantado de que lo lograses! A partir de aquí no será fácil.", - 13: "¡Las batallas continúan para siempre! ¡Bienvenido al mundo sin fin!" - }, - "victory": { - 1: "¡Guau! ¡Eres fuerte!", - 2: "¿No tuve oportunidad, eh?", - 3: "¡Cuando sea mayor te encontraré y te ganaré!", - 4: "Ay. No tengo más Pokémon.", - 5: "Imposible… ¡IMPOSIBLE! Cómo pude perder de nuevo…", - 6: "¡No! ¡Perdí!", - 7: "¡Guau! ¡Eres increíble! ¡Estoy alucinado y sorprendido!", - 8: "Puede ser… Cómo… Aunque mis Pokémon y yo somos los más fuertes…", - 9: "¡No perderé a la próxima! ¡Luchemos otra vez pronto!", - 10: "¡Oye! ¡No ves que solo soy un niño! ¡No es justo que vayas así conmigo!", - 11: "¡Tus Pokémon molan más! ¡Intercámbiamelos!", - 12: "Me perdí antes pero, ¿de qué tarea estaba hablando antes?", - 13: "¡Jajaja! ¡Esa es! ¡Correcto! ¡Ya te sientes como en casa en este mundo!" - } - }, - "lass": { - "encounter": { - 1: "¿Luchemos, podría ser?", - 2: "Pareces novato. ¡Luchemos!", - 3: "No te reconozco. ¿Un combate?", - 4: "¡Tengamos un combate Pokémon divertido!", - 5: "¡Te enseñaré lo básico de cómo entrenar Pokémon!", - 6: "¡Un combate serio empieza por un comienzo serio! ¿Seguro que estás listo?", - 7: "Solo se es joven una vez. Y solo tienes una oportunidad en una batalla. Pronto, solo serás un recuerdo.", - 8: "Asegúrate de ir fácil conmigo, ¿vale? ¡Pero seré seria luchando!", - 9: "El colegio es aburrido. No hay nada que hacer. Uaa. Solo lucho para pasar el tiempo." - }, - "victory": { - 1: "¡Impresionante! Tengo mucho que aprender.", - 2: "No pensé que me vencerías así…", - 3: "Espero la revancha algún día.", - 4: "¡Fue increíblemente divertido! Me dejaste cansada…", - 5: "¡Me enseñaste una lección! ¡Eres increíble!", - 6: "En serio, he perdido. O sea, es seriamente decepcionante, pero tú eres realmente guay.", - 7: "No necesito estos recuerdos. Borrando recuerdos…", - 8: "¡Te dije que fueses fácil conmigo! Aun así, me gusta cuando eres serio.", - 9: "Me canso de luchar… Habrá algo nuevo que hacer…" - } - }, - "breeder": { - "encounter": { - 1: "Pokémon obedientes, Pokémon egoístas… Los Pokémon tienen características únicas.", - 2: "Aunque tengo descendencia y comportamiento pobre, he cuidado muy bien a mis Pokémon.", - 3: "¿Tienes disciplina con tus Pokémon? Malcriarlos mucho no es bueno.", - }, - "victory": { - 1: "Es importante cuidar y mimar todas las características de los Pokémon.", - 2: "No como mi diabólica personalidad, mis Pokémon son muy buenos.", - 3: "Malcriar puede arruinar a los Pokémon y a los humanos.", - }, - "defeat": { - 1: "No deberías enfadarte con tu Pokémon, aún tras un combate perdido.", - 2: "¿Eh? ¿Buen Pokémon? Me acostumbro a cuidarlos.", - 3: "No importa el cariño que le tengas a tus Pokémon, tienes que ser serio si se portan mal." - } - }, - "breeder_female": { - "encounter": { - 1: "Los Pokémon nunca te traicionan, te devuelven el amor que les diste.", - 2: "¿Puedo darte un consejo para entrenar bien tus Pokémon?", - 3: "Cuidé estos Pokémon con un método especial." - }, - "victory": { - 1: "Ugh… No se supone que acabaría así. ¿Les cuidé de forma errónea?", - 2: "Cómo pudo pasarle esto a mi Pokémon... ¿Qué le das a tu Pokémon?", - 3: "Si pierdo, solo fue un pasatiempo. Mi ego se ve intacto." - }, - "defeat": { - 1: "Esto demuestra que los Pokémon aceptaron mi amor.", - 2: "El truco detrás de atrapar buenos Pokémon es cuidar buenos Pokémon.", - 3: "Los Pokémon serán fuertes o débiles según los cuides." - } - }, - "fisherman": { - "encounter": { - 1: "¡Uy uy uy! ¡Hiciste que huyera un pez!\n¿Qué harás al respecto?", - 2: "¡Vete! ¡Espantas los Pokémon!", - 3: "¡Veamos si pescas una victoria!", - }, - "victory": { - 1: "Olvídalo.", - 2: "A la siguiente, ¡pescaré mi victoria!", - 3: "Infravaloré la corriente esta vez.", - }, - }, - "fisherman_female": { - "encounter": { - 1: "¡Eh! ¡He pescado uno grande!", - 2: "¡La caña está lista, para pescar la victoria!", - 3: "¡Lista para hacer olas!" - }, - "victory": { - 1: "Volveré con un pez más grande.", - 2: "Pescaré la victoria a la siguiente...", - 3: "¡Estoy afilando mis anzuelos para la próxima!" - }, - }, - "swimmer": { - "encounter": { - 1: "¡Listo para bucear!", - 2: "¡Montemos las olas de la victoria!", - 3: "¡Listo para darme un chapuzón!", - }, - "victory": { - 1: "¡Empapado en la derrota!", - 2: "¡Las olas de la derrota!", - 3: "Vuelta a la costa, supongo.", - }, - }, - "backpacker": { - "encounter": { - 1: "¡Recoge y vámonos!", - 2: "¡Veamos si puedes mantener la velocidad!", - 3: "¡Sube la marcha, entrenador!", - 4: "Traté de encontrarme un sentido durante 20 años… ¿Pero dónde estoy?" - }, - "victory": { - 1: "¡Tropecé esta vez!", - 2: "Oh, creo que me perdí.", - 3: "¡Punto muerto!", - 4: "¡Un segundo! ¡Ey! ¿No sabes quién soy?" - }, - }, - "ace_trainer": { - "encounter": { - 1: "Pareces muy seguro en ti mismo.", - 2: "Enséñame tus Pokémon…", - 3: "Como soy un Entrenador Guay, la gente cree que soy fuerte.", - 4: "¿Sabes lo que toma ser un Entrenador Guay?" - }, - "victory": { - 1: "Sí, tienes buenos Pokémon…", - 2: "¡¿Cómo?! ¡Si soy un genio combatiendo!", - 3: "Claro, ¡tienes el poder del guión!", - 4: "¡OK! ¡OK! ¡Puedes ser un Entrenador Guay!" - }, - "defeat": { - 1: "¡Doy mi cuerpo y alma para los combates Pokémon.", - 2: "Según mis expectativas… Nada de qué sorprenderse…", - 3: "Pensé que crecería como persona frágil que parece que rompe a llorar si le hacen daño muy fuerte.", - 4: "Por supuesto que soy fuerte y no pierdo. Es importante que gane con gracia." - } - }, - "parasol_lady": { - "encounter": { - 1: "¡Tiempo de agradar al campo de batalla con elegancia y esmero!", - }, - "victory": { - 1: "¡Mi elegancia es indestructible!", - } - }, - "twins": { - "encounter": { - 1: "¡Prepárate, porque cuando somos juntas el problema es doble!", - 2: "Dos almas, una estrategia – ¡veamos si eres capaz de seguir nuestro poder gemelo!", - 3: "¡Espero que estés listo para el doble problema, porque traeremos mucha emoción!" - }, - "victory": { - 1: "¡Aunque hayamos perdido esta ronda, nuestra unión es indestructible!", - 2: "Nuestro espíritu gemelo no seguirá así por mucho tiempo.", - 3: "¡Volveremos más fuertes como un dúo dinámico!" - }, - "defeat": { - 1: "¡El poder gemelo triunfa como ninguno!", - 2: "¡Dos almas, un triunfo!", - 3: "¡Doble sonrisa, doble baile de victoria!" - } - }, - "cyclist": { - "encounter": { - 1: "Get ready to eat my dust!", - 2: "Gear up, challenger! I'm about to leave you in the dust!", - 3: "Pedal to the metal, let's see if you can keep pace!" - }, - "victory": { - 1: "Spokes may be still, but determination pedals on.", - 2: "Outpaced!", - 3: "The road to victory has many twists and turns yet to explore." - }, - }, - "black_belt": { - "encounter": { - 1: "I praise your courage in challenging me! For I am the one with the strongest kick!", - 2: "Oh, I see. Would you like to be cut to pieces? Or do you prefer the role of punching bag?" - }, - "victory": { - 1: "Oh. The Pokémon did the fighting. My strong kick didn't help a bit.", - 2: "Hmmm… If I was going to lose anyway, I was hoping to get totally messed up in the process." - }, - }, - "battle_girl": { - "encounter": { - 1: "You don't have to try to impress me. You can lose against me.", - }, - "victory": { - 1: "It's hard to say good-bye, but we are running out of time…", - }, - }, - "hiker": { - "encounter": { - 1: "My middle-age spread has given me as much gravitas as the mountains I hike!", - 2: "I inherited this big-boned body from my parents… I'm like a living mountain range…", - }, - "victory": { - 1: "At least I cannot lose when it comes to BMI!", - 2: "It's not enough… It's never enough. My bad cholesterol isn't high enough…" - }, - }, - "ranger": { - "encounter": { - 1: "When I am surrounded by nature, most other things cease to matter.", - 2: "When I'm living without nature in my life, sometimes I'll suddenly feel an anxiety attack coming on." - }, - "victory": { - 1: "It doesn't matter to the vastness of nature whether I win or lose…", - 2: "Something like this is pretty trivial compared to the stifling feelings of city life." - }, - "defeat": { - 1: "I won the battle. But victory is nothing compared to the vastness of nature…", - 2: "I'm sure how you feel is not so bad if you compare it to my anxiety attacks…" - } - }, - "scientist": { - "encounter": { - 1: "My research will lead this world to peace and joy.", - }, - "victory": { - 1: "I am a genius… I am not supposed to lose against someone like you…", - }, - }, - "school_kid": { - "encounter": { - 1: "…Heehee. I'm confident in my calculations and analysis.", - 2: "I'm gaining as much experience as I can because I want to be a Gym Leader someday." - }, - "victory": { - 1: "Ohhhh… Calculation and analysis are perhaps no match for chance…", - 2: "Even difficult, trying experiences have their purpose, I suppose." - } - }, - "artist": { - "encounter": { - 1: "I used to be popular, but now I am all washed up.", - }, - "victory": { - 1: "As times change, values also change. I realized that too late.", - }, - }, - "guitarist": { - "encounter": { - 1: "Get ready to feel the rhythm of defeat as I strum my way to victory!", - }, - "victory": { - 1: "Silenced for now, but my melody of resilience will play on.", - }, - }, - "worker": { - "encounter": { - 1: "It bothers me that people always misunderstand me. I'm a lot more pure than everyone thinks.", - }, - "victory": { - 1: "I really don't want my skin to burn, so I want to stay in the shade while I work.", - }, - }, - "worker_female": { - "encounter": { - 1: `It bothers me that people always misunderstand me. - $I'm a lot more pure than everyone thinks.` - }, - "victory": { - 1: "I really don't want my skin to burn, so I want to stay in the shade while I work." - }, - "defeat": { - 1: "My body and mind aren't necessarily always in sync." - } - }, - "worker_double": { - "encounter": { - 1: "I'll show you we can break you. We've been training in the field!", - }, - "victory": { - 1: "How strange… How could this be… I shouldn't have been outmuscled.", - }, - }, - "hex_maniac": { - "encounter": { - 1: "I normally only ever listen to classical music, but if I lose, I think I shall try a bit of new age!", - 2: "I grow stronger with each tear I cry." - }, - "victory": { - 1: "Is this the dawning of the age of Aquarius?", - 2: "Now I can get even stronger. I grow with every grudge." - }, - "defeat": { - 1: "New age simply refers to twentieth century classical composers, right?", - 2: "Don't get hung up on sadness or frustration. You can use your grudges to motivate yourself." - } - }, - "psychic": { - "encounter": { - 1: "Hi! Focus!", - }, - "victory": { - 1: "Eeeeek!", - }, - }, - "officer": { - "encounter": { - 1: "Brace yourself, because justice is about to be served!", - 2: "Ready to uphold the law and serve justice on the battlefield!" - }, - "victory": { - 1: "The weight of justice feels heavier than ever…", - 2: "The shadows of defeat linger in the precinct." - } - }, - "beauty": { - "encounter": { - 1: "My last ever battle… That's the way I'd like us to view this match…", - }, - "victory": { - 1: "It's been fun… Let's have another last battle again someday…", - }, - }, - "baker": { - "encounter": { - 1: "Hope you're ready to taste defeat!" - }, - "victory": { - 1: "I'll bake a comeback." - }, - }, - "biker": { - "encounter": { - 1: "Time to rev up and leave you in the dust!" - }, - "victory": { - 1: "I'll tune up for the next race." - }, - }, - "firebreather": { - "encounter": { - 1: "My flames shall devour you!", - 2: "My soul is on fire. I'll show you how hot it burns!", - 3: "Step right up and take a look!" - }, - "victory": { - 1: "I burned down to ashes...", - 2: "Yow! That's hot!", - 3: "Ow! I scorched the tip of my nose!" - }, - }, - "sailor": { - "encounter": { - 1: "¡Amigo, te haré caminar por la borda si pierdes!", - 2: "¡Adelante! ¡Mi orgullo como marinero está en auge!", - 3: "¡Ah del barco! ¿Estás mareado?" - }, - "victory": { - 1: "¡Argh! ¡Derrotado por un niño!", - 2: "¡Tu espíritu me ha hundido!", - 3: "Creo que soy yo quien está mareado..." - }, - }, - "archer": { - "encounter": { - 1: "Before you go any further, let's see how you far against us, Team Rocket!", - 2: "I have received reports that your skills are not insignificant. Let's see if they are true.", - 3: "I am Archer, an Admin of Team Rocket. And I do not go easy on enemies of our organization." - }, - "victory": { - 1: "What a blunder!", - 2: "With my current skills, I was not up to the task after all.", - 3: "F-forgive me, Giovanni... For me to be defeated by a mere trainer..." - }, - }, - "ariana": { - "encounter": { - 1: `Hold it right there! We can't someone on the loose." - $It's harmful to Team Rocket's pride, you see.`, - 2: `I don't know or care if what I'm doing is right or wrong... - $I just put my faith in Giovanni and do as I am told`, - 3: "Your trip ends here. I'm going to take you down!" - }, - "victory": { - 1: `Tch, you really are strong. It's too bad. - $If you were to join Team Rocket, you could become an Executive.`, - 2: "I... I'm shattered...", - 3: "Aaaieeeee! This can't be happening! I fought hard, but I still lost…" - }, - }, - "proton": { - "encounter": { - 1: "What do you want? If you interrupt our work, don't expect any mercy!", - 2: `What do we have here? I am often labeled as the scariest and cruelest guy in Team Rocket… - $I strongly urge you not to interfere with our business!`, - 3: "I am Proton, an Admin of Team Rocket. I am here to put an end to your meddling!" - }, - "victory": { - 1: "The fortress came down!", - 2: "You may have won this time… But all you did was make Team Rocket's wrath grow…", - 3: "I am defeated… But I will not forget this!" - }, - }, - - "petrel": { - "encounter": { - 1: `Muhahaha, we've been waiting for you. Me? You don't know who I am? It is me, Giovanni. - $The majestic Giovanni himself! Wahahaha! …Huh? I don't sound anything like Giovanni? - $I don't even look like Giovanni? How come? I've worked so hard to mimic him!`, - 2: "I am Petrel, an Admin of Team Rocket. I will not allow you to interfere with our plans!", - 3: "Rocket Executive Petrel will deal with this intruder!" - }, - "victory": { - 1: "OK, OK. I'll tell you where he is.", - 2: "I… I couldn't do a thing… Giovanni, please forgive me…", - 3: "No, I can't let this affect me. I have to inform the others…" - }, - }, - "tabitha": { - "encounter": { - 1: "Hehehe! So you've come all the way here! But you're too late!", - 2: `Hehehe... Got here already, did you? We underestimated you! But this is it! - $I'm a cut above the Grunts you've seen so far. I'm not stalling for time. - $I'm going to pulverize you!`, - 3: "I'm going to give you a little taste of pain! Resign yourself to it!" - }, - "victory": { - 1: `Hehehe! You might have beaten me, but you don't stand a chance against the Boss! - $If you get lost now, you won't have to face a sound whipping!`, - 2: "Hehehe... So, I lost, too...", - 3: "Ahya! How could this be? For an Admin like me to lose to some random trainer..." - }, - }, - "courtney": { - "encounter": { - 1: "The thing...The thing that you hold...That is what... That's what we of Team Magma seek...", - 2: "... Well then...Deleting...", - 3: "...Ha. ...Analyzing... ...Hah♪" - }, - "victory": { - 1: "... ...Change...the world.", - 2: `As anticipated. Unanticipated. You. Target lock...completed. - $Commencing...experiment. You. Forever. Aha... ♪`, - 3: "...Again? That's unanticipated. ...I knew it. You...are interesting! ...Haha. ♪" - }, - }, - "shelly": { - "encounter": { - 1: `Ahahahaha! You're going to meddle in Team Aqua's affairs? - $You're either absolutely fearless, simply ignorant, or both! - $You're so cute, you're disgusting! I'll put you down`, - 2: "What's this? Who's this spoiled brat?", - 3: "Cool your jets. Be patient. I'll crush you shortly." - }, - "victory": { - 1: `Ahahahaha! We got meddled with unexpectedly! We're out of options. - $We'll have to pull out. But this isn't the last you'll see of Team Aqua! - $We have other plans! Don't you forget it!`, - 2: "Ahhh?! Did I go too easy on you?!", - 3: `Uh. Are you telling me you've upped your game even more during the fight? - $You're a brat with a bright future… My Pokémon and I don't have any strength left to fight… - $Go on… Go and be destroyed by Archie.` - }, - }, - "matt": { - "encounter": { - 1: "Hoohahaha! What, you got a screw loose or something? Look at you, little Makuhita person!", - 2: "Oho! You! You're that funny kid!", - 3: "What are you doing here? Did you follow us?" - }, - "victory": { - 1: "All right then, until the Boss has time for you, I'll be your opponent!", - 2: `I can feel it! I can feel it, all right! The strength coming offa you! - $More! I still want more! But looks like we're outta time...`, - 3: "That was fun! I knew you'd show me a good time! I look forward to facing you again someday!" - }, - }, - "mars": { - "encounter": { - 1: "I'm Mars, one of Team Galactic's top Commanders.", - 2: "Team Galactic's vision for the future is unwavering. Opposition will be crushed without mercy!", - 3: "Feeling nervous? You should be!" - }, - "victory": { - 1: "This can't be happening! How did I lose?!", - 2: "You have some skill, I'll give you that.", - 3: "Defeated... This was a costly mistake." - } - }, - "jupiter": { - "encounter": { - 1: "Jupiter, Commander of Team Galactic, at your service.", - 2: "Resistance is futile. Team Galactic will prevail!", - 3: "You're trembling... scared already?" - }, - "victory": { - 1: "No way... I lost?!", - 2: "Impressive, you've got guts!", - 3: "Losing like this... How embarrassing." - } - }, - "saturn": { - "encounter": { - 1: "I am Saturn, Commander of Team Galactic.", - 2: "Our mission is absolute. Any hindrance will be obliterated!", - 3: "Is that fear I see in your eyes?" - }, - "victory": { - 1: "Impossible... Defeated by you?!", - 2: "You have proven yourself a worthy adversary.", - 3: "Bestowed in defeat... This is unacceptable." - }}, - "zinzolin": { - "encounter": { - 1: "You could become a threat to Team Plasma, so we will eliminate you here and now!", - 2: "Oh, for crying out loud... I didn't expect to have to battle in this freezing cold!", - 3: "You're an impressive Trainer to have made it this far. But it ends here." - }, - "victory": { - 1: "Ghetsis... I have failed you...", - 2: "It's bitter cold. I'm shivering. I'm suffering. Yet, I still stand victorious.", - 3: "Hmph. You're a smarter Trainer than I expected, but not smart enough." - } - }, - "rood": { - "encounter": { - 1: "You are a threat to Team Plasma. We cannot let you walk away from here and now!", - 2: "Oh, this icy wind... I never thought I'd have to fight here!", - 3: "You are a remarkable Trainer to have made it this far. But this is where it ends." - }, - "victory": { - 1: "Ghetsis... I have failed my mission...", - 2: "The cold is piercing. I'm shivering. I'm suffering. Yet, I have triumphed.", - 3: "Hm. You are a talented Trainer, but unfortunately not talented enough." - } - }, - "xerosic": { - "encounter": { - 1: "Ah ha ha! It would be my pleasure. Come on, little Trainer! Let's see what you've got!", - 2: "Hmm... You're more powerful than you look. I wonder how much energy there is inside you.", - 3: "I've been waiting for you! I need to do a little research on you! Come, let us begin!" - }, - "victory": { - 1: "Ah, you're quite strong. Oh yes—very strong, indeed.", - 2: "Ding-ding-ding! You did it! To the victor go the spoils!", - 3: "Wonderful! Amazing! You have tremendous skill and bravery!" - } - }, - "bryony": { - "encounter": { - 1: "I am Bryony, and it would be my pleasure to battle you. Show me what you've got.", - 2: "Impressive... You're more powerful than you appear. Let's see the true extent of your energy.", - 3: "I've anticipated your arrival. It's time for a little test. Shall we begin?" - }, - "victory": { - 1: "You're quite strong. Oh yes—very strong, indeed.", - 2: "Ding-ding-ding! You've done well. Victory is yours.", - 3: "Wonderful! Remarkable! Your skill and bravery are commendable." - } - }, - "rocket_grunt": { - "encounter": { - 1: "¡Ríndete ahora, o prepárate para luchar!", - 2: "We're pulling a big job here! Get lost, kid!", - 3: "Hand over your Pokémon, or face the wrath of Team Rocket!", - 4: "You're about to experience the true terror of Team Rocket!", - 5: "Hey, kid! Me am a Team Rocket member kind of guy!" //Use of wrong grammar is deliberate - }, - "victory": { - 1: "¡El Team Rocket despega de nuevo!", - 2: "Oh no! I dropped the Lift Key!", - 3: "I blew it!", - 4: "My associates won't stand for this!", - 5: "You say what? Team Rocket bye-bye a go-go? Broken it is says you?" //Use of wrong grammar is deliberate. - }, - }, - "magma_grunt": { - "encounter": { - 1: "¡No esperes piedad si te interpones al Team Magma!", - 2: "You'd better not interfere with our plans! We're making the world a better place!", - 3: "You're in the way! Team Magma has no time for kids like you!", - 4: "I hope you brought marshmallows because things are about to heat up!", - 5: "We're going to use the power of a volcano! It's gonna be... explosive! Get it? Heh heh!" - }, - "victory": { - 1: "¿Eh? ¿He perdido?", - 2: "I can't believe I lost! I even skipped lunch for this", - 3: "No way! You're just a kid!", - 4: "Urrrgh... I should've ducked into our hideout right away...", - 5: "You beat me... Do you think the boss will dock my pay for this?" - }, - }, - "aqua_grunt": { - "encounter": { - 1: "El Team Aqua no muestra piedad, ¡ni siquiera a los niños!", - 2: "Grrr... You've got some nerve meddling with Team Aqua!", - 3: "You're about to get soaked! And not just from my water Pokémon!", - 4: "We, Team Aqua, exist for the good of all!", - 5: "Prepare to be washed away by the tides of my... uh, Pokémon! Yeah, my Pokémon!" - }, - "victory": { - 1: "¡Bromeas! ¡No me lo creo!", - 2: "Arrgh, I didn't count on being meddled with by some meddling kid!", - 3: "I lost?! Guess I'll have to swim back to the hideout now...", - 4: "Oh, man, what a disaster... The boss is going to be furious...", - 5: "You beat me... Do you think the boss will make me walk the plank for this?" - }, - }, - "galactic_grunt": { - "encounter": { - 1: "¡No desafíes al Equipo Galaxia, te arrepentirás!", - 2: "Witness the power of our technology and the future we envision!", - 3: "In the name of Team Galactic, I'll eliminate anyone who stands in our way!", - 4: "Get ready to lose!", - 5: "Hope you're ready for a cosmic beatdown!" - }, - "victory": { - 1: "Me callaste la boca...", - 2: "This setback means nothing in the grand scheme.", - 3: "Our plans are bigger than this defeat.", - 4: "How?!", - 5: "Note to self: practice Pokémon battling, ASAP." - }, - }, - "plasma_grunt": { - "encounter": { - 1: "¡El Equipo Plasma no tolerará otros ideales!", - 2: "If I win against you, release your Pokémon!", - 3: "If you get in the way of Team Plasma, I'll take care of you!", - 4: "Team Plasma will liberate Pokémon from selfish humans like you!", - 5: "Our hairstyles are out of this world... but our battling skills? You'll find out soon enough." - }, - "victory": { - 1: "Plasmaaaaaaaaa!", - 2: "How could I lose...", - 3: "...What a weak Pokémon, I'll just have to go steal some better ones!", - 4: "Great plans are always interrupted.", - 5: "This is bad... Badbadbadbadbadbadbad! Bad for Team Plasma! Or Plasbad, for short!" - }, - }, - "flare_grunt": { - "encounter": { - 1: "Your Pokémon are no match for the elegance of Team Flare.", - 2: "Hope you brought your sunglasses, because things are about to get bright!", - 3: "Team Flare will cleanse the world of imperfection!", - 4: "Prepare to face the brilliance of Team Flare!", - 5: "Fashion is most important to us!" - }, - "victory": { - 1: "The future doesn't look bright for me.", - 2: "Perhaps there's more to battling than I thought. Back to the drawing board.", - 3: "Gahh?! I lost?!", - 4: "Even in defeat, Team Flare's elegance shines through.", - 5: "You may have beaten me, but when I lose, I go out in style!" - }, - }, - "rocket_boss_giovanni_1": { - "encounter": { - 1: "He de decir... estoy impresionado de que hayas llegado tan lejos." - }, - "victory": { - 1: "¿¡QUÉ?! ¡No puede ser!" - }, - "defeat": { - 1: "Recuerda mis palabras: Que no seas capaz de medir\n tu propia fuerza demuestra que todavía eres un niño" - } - }, - "rocket_boss_giovanni_2": { - "encounter": { - 1: "Mis antiguos socios me necesitan... ¿te atreves a imponerte en mi camino?" - }, - "victory": { - 1: "¿Cómo es esto posible?\nEl sueño del Team Rocket, ahora tan solo una mera ilusión..." - }, - "defeat": { - 1: "El Team Rocket renacerá... ¡y gobernaré el mundo!" - } - }, - "magma_boss_maxie_1": { - "encounter": { - 1: "Está bien, tendré que cavar yo mismo tu propia tumba. Siéntete orgulloso." - }, - "victory": { - 1: "Ugh! Eres... muy capaz...\nFue por poco, estuve a esto de ganarte..." - }, - "defeat": { - 1: "¡El Equipo Magma prevalecerá!" - } - }, - "magma_boss_maxie_2": { - "encounter": { - 1: "Eres el obstáculo final entre mi y mis propósitos.\n¡Aquí va mi mejor golpe! ¡MUAJAJAJA!" - }, - "victory": { - 1: "No... no es posib... nnngh..." - }, - "defeat": { - 1: "Y ahora... transformaré este planeta en una tierra ideal para la humanidad." - } - }, - "aqua_boss_archie_1": { - "encounter": { - 1: "Soy el líder del Equipo Aqua, así que me temo que aquí se acaba tu bromita." - }, - "victory": { - 1: "Volvamos a vernos más tarde. Recordaré tu cara." - }, - "defeat": { - 1: "¡Excelente! ¡Nadie se puede oponer a mi equipo!" - } - }, - "aqua_boss_archie_2": { - "encounter": { - 1: "Llevo esperando mucho que llegara este día.\n¡Contempla el poder de mi equipo!" - }, - "victory": { - 1: "Quién me lo iba a decir..." - }, - "defeat": { - 1: "Devolveré todo en este planeta a su estado original.\nSe avecina un nuevo mundo, ¡más puro!" - } - }, - "galactic_boss_cyrus_1": { - "encounter": { - 1: "Tu fútil sentimentalidad te hizo interferir.\n¡Haré que te arrepientas de escuchar a tu corazón!" - }, - "victory": { - 1: "Interesante. Muy... curioso." - }, - "defeat": { - 1: "Crearé un nuevo mundo..." - } - }, - "galactic_boss_cyrus_2": { - "encounter": { - 1: "Nos vemos de nuevo... se ve que nuestros destinos están entrelazados.\nPero, aquí y ahora, ¡sesgaré ese vínculo!" - }, - "victory": { - 1: "¿Cómo? ¿¡Cómo!? ¿¡¡CÓMO!!?" - }, - "defeat": { - 1: "Hasta nunca." - } - }, - "plasma_boss_ghetsis_1": { - "encounter": { - 1: "¡No permitiré que nadie me detenga!" - }, - "victory": { - 1: "¿Cómo puede ser esto? ¡yo creé al Equipo Plasma!\n¡Soy PERFECTO!" - }, - "defeat": { - 1: "Soy el perfecto gobernante para un perfecto nuevo mundo. ¡Muajajajaja!" - } - }, - "plasma_boss_ghetsis_2": { - "encounter": { - 1: "¡Adelante! ¡Quiero ver tu cara cuando la desesperación se apoderede de ti!" - }, - "victory": { - 1: "Mis planes... ¡no! ¡El mundo debería pertenecerme!" - }, - "defeat": { - 1: "¡Kyurem, Absorfusión... ahora!" - } - }, - "flare_boss_lysandre_1": { - "encounter": { - 1: "¿Acaso quieres detenerme? Demuéstramelo." - }, - "victory": { - 1: "Estás aquí para detenerme. Pero tendrás que esperar. " - }, - "defeat": { - 1: "Los Pokémon... su fin ha llegado." - } - }, - "flare_boss_lysandre_2": { - "encounter": { - 1: "El futuro que quieres tú, o el futuro que quiero yo.\nVeamos cuál de los dos se merece existir..." - }, - "victory": { - 1: "¡AARGH!" - }, - "defeat": { - 1: "Los idiotas sin ningún tipo de visión continuarán asediando este mundo." - } - }, - "brock": { - "encounter": { - 1: "Mi conocimiento en Pokémon tipo Roca te aplastará. ¡Dalo todo!", - 2: "¡Mi determinación tipo Roca te sorprenderá!", - 3: "¡Permíteme enseñarte la verdadera fuerza de mis Pokémon!" - }, - "victory": { - 1: "¡La fuerza de mis Pokémon superó mi defensa dura como una roca!", - 2: "¡El mundo es enorme! Me encantó tener una oportunidad para combatir contigo.", - 3: "A lo mejor tendría que volver a mi sueño de ser un Criapokémon…" - }, - "defeat": { - 1: "¡La mejor ofensa es una buena defensa!\n¡Esa es mi manera de hacer las cosas!", - 2: "¡Ven preparado sobre las rocas para saber cómo luchar contra las mías!", - 3: "Ja, ¡todos mis viajes por regiones se notan!" - } - }, - "misty": { - "encounter": { - 1: "¡Mi política es muy ofensiva con Pokémon tipo Agua!", - 2: "Oye, ¡te enseñaré la auténtica fuerza de mis Pokémon tipo Agua!", - 3: "Mi sueño era viajar conociendo Entrenadores fuertes…\n¿Serás suficiente desafío?" - }, - "victory": { - 1: "Eres muy fuerte… Admito tu talento…", - 2: "Grrr… ¡¿Solo tuviste suerte, sabes?!", - 3: "¡Guau, eres demasiado! ¡No me creo que me hayas vencido!" - }, - "defeat": { - 1: "¿Fue la valiente Misty demasiado para ti?", - 2: "¡Espero que hayas visto la elegancia en las técnicas de nado de mis Pokémon!", - 3: "¡Tus Pokémon no fueron rival para mi orgullo y felicidad!" - } - }, - "lt_surge": { - "encounter": { - 1: "¡Mis Pokémon eléctricos me salvaron en la guerra! ¡Te enseñaré cómo!", - 2: "¡10 voltios! ¡Te electrocutaré hasta la derrota!", - 3: "¡Te electrocutaré como a todos mis enemigos en combate!" - }, - "victory": { - 1: "¡Guau! ¡Tu equipo es lo mejor de lo mejor, chaval!", - 2: "¡Aaargh, eres fuerte! Incluso mis trucos electrizantes fallaron.", - 3: "¡Fue una derrota electrizante!" - }, - "defeat": { - 1: "¡Oh sí! Cuando se trata de Pokémon tipo Eléctrico, ¡soy el número uno!", - 2: "¡Jajaja! ¡Menuda batalla electrizante, chaval!", - 3: "Un combate Pokémon es la guerra, ¡y te he enseñado lo esencial, chaval!" - } - }, - "erika": { - "encounter": { - 1: "El tiempo es maravilloso aquí…\n¿Oh un combate? Perfecto, entonces.", - 2: "Mis dotes como Entrenadora rivalizan mis dotes como florista.", - 3: "Espero que el dulce aroma de mis Pokémon no me dé sueño…", - 4: "Ver flores en un jardín es tan relajante." - }, - "victory": { - 1: "¡Oh! Reconozco mi derrota.", - 2: "Este combate fue agradable.", - 3: "Ah, es mi derrota…", - 4: "Oh Dios mío." - }, - "defeat": { - 1: "Tenía miedo de dormirme…", - 2: "Oh, parece que mis Pokémon tipo planta te sobrecargaron.", - 3: "Este combate fue una experiencia muy relajante.", - 4: "Oh… ¿Eso es todo?" - } - }, - "janine": { - "encounter": { - 1: "I am mastering the art of poisonous attacks.\nI shall spar with you today!", - 2: "Father trusts that I can hold my own.\nI will prove him right!", - 3: "My ninja techniques are only second to my Father's!\nCan you keep up?" - }, - "victory": { - 1: "Even now, I still need training… I understand.", - 2: "Your battle technique has outmatched mine.", - 3: "I'm going to really apply myself and improve my skills." - }, - "defeat": { - 1: "Fufufu… the poison has sapped all your strength to battle.", - 2: "Ha! You didn't stand a chance against my superior ninja skills!", - 3: "Father's faith in me has proven to not be misplaced." - } - }, - "sabrina": { - "encounter": { - 1: "Through my psychic ability, I had a vision of your arrival!", - 2: "I dislike fighting, but if you wish, I will show you my powers!", - 3: "I can sense great ambition in you. I shall see if it not unfounded." - }, - "victory": { - 1: "Your power… It far exceeds what I foresaw…", - 2: "I failed to accurately predict your power.", - 3: "Even with my immense psychic powers, I cannot sense another as strong as you." - }, - "defeat": { - 1: "This victory… It is exactly as I foresaw in my visions!", - 2: "Perhaps it was another I sensed a great desire in…", - 3: "Hone your abilities before recklessly charging into battle.\nYou never know what the future may hold if you do…" - } - }, - "blaine": { - "encounter": { - 1: "Hah! Hope you brought a Burn Heal!", - 2: "My fiery Pokémon will incinerate all challengers!", - 3: "Get ready to play with fire!" - }, - "victory": { - 1: "I have burned down to nothing! Not even ashes remain!", - 2: "Didn't I stoke the flames high enough?", - 3: "I'm all burned out… But this makes my motivation to improve burn even hotter!" - }, - "defeat": { - 1: "My raging inferno cannot be quelled!", - 2: "My Pokémon have been powered up with the heat from this victory!", - 3: "Hah! My passion burns brighter than yours!" - } - }, - "giovanni": { - "encounter": { - 1: "I, the leader of Team Rocket, will make you feel a world of pain!", - 2: "My training here will be vital before I am to face my old associates again.", - 3: "I do not think you are prepared for the level of failure you are about to experience!" - }, - "victory": { - 1: "WHAT! Me, lose?! There is nothing I wish to say to you!", - 2: "Hmph… You could never understand what I hope to achieve.", - 3: "This defeat is merely delaying the inevitable.\nI will rise Team Rocket from the ashes in due time." - }, - "defeat": { - 1: "Not being able to measure your own strength shows that you are still but a child.", - 2: "Do not try to interfere with me again.", - 3: "I hope you understand how foolish challenging me was." - } - }, - "roxanne": { - "encounter": { - 1: "Would you kindly demonstrate how you battle?", - 2: "You can learn many things by battling many trainers.", - 3: "Oh, you caught me strategizing.\nWould you like to battle?" - }, - "victory": { - 1: "Oh, I appear to have lost.\nI understand.", - 2: "It seems that I still have so much more to learn when it comes to battle.", - 3: "I'll take what I learned here today to heart." - }, - "defeat": { - 1: "I have learned many things from our battle.\nI hope you have too.", - 2: "I look forward to battling you again.\nI hope you'll use what you've learned here.", - 3: "I won due to everything I have learned." - } - }, - "brawly": { - "encounter": { - 1: "Oh man, a challenger!\nLet's see what you can do!", - 2: "You seem like a big splash.\nLet's battle!", - 3: "Time to create a storm!\nLet's go!" - }, - "victory": { - 1: "Oh woah, you've washed me out!", - 2: "You surfed my wave and crashed me down!", - 3: "I feel like I'm lost in Granite Cave!" - }, - "defeat": { - 1: "Haha, I surfed the big wave!\nChallenge me again sometime.", - 2: "Surf with me again some time!", - 3: "Just like the tides come in and out, I hope you return to challenge me again." - } - }, - "wattson": { - "encounter": { - 1: "Time to get shocked!\nWahahahaha!", - 2: "I'll make sparks fly!\nWahahahaha!", - 3: "I hope you brought Paralyz Heal!\nWahahahaha!" - }, - "victory": { - 1: "Seems like I'm out of charge!\nWahahahaha!", - 2: "You've completely grounded me!\nWahahahaha!", - 3: "Thanks for the thrill!\nWahahahaha!" - }, - "defeat": { - 1: "Recharge your batteries and challenge me again sometime!\nWahahahaha!", - 2: "I hope you found our battle electrifying!\nWahahahaha!", - 3: "Aren't you shocked I won?\nWahahahaha!" - } - }, - "flannery": { - "encounter": { - 1: "Nice to meet you! Wait, no…\nI will crush you!", - 2: "I've only been a leader for a little while, but I'll smoke you!", - 3: "It's time to demonstrate the moves my grandfather has taught me! Let's battle!" - }, - "victory": { - 1: "You remind me of my grandfather…\nNo wonder I lost.", - 2: "Am I trying too hard?\nI should relax, can't get too heated.", - 3: "Losing isn't going to smother me out.\nTime to reignite training!" - }, - "defeat": { - 1: "I hope I've made my grandfather proud…\nLet's battle again some time.", - 2: "I…I can't believe I won!\nDoing things my way worked!", - 3: "Let's exchange burning hot moves again soon!" - } - }, - "norman": { - "encounter": { - 1: "I'm surprised you managed to get here.\nLet's battle.", - 2: "I'll do everything in my power as a Gym Leader to win.\nLet's go!", - 3: "You better give this your all.\nIt's time to battle!" - }, - "victory": { - 1: "I lost to you…?\nRules are rules, though.", - 2: "Was moving from Olivine a mistake…?", - 3: "I can't believe it.\nThat was a great match." - }, - "defeat": { - 1: "We both tried our best.\nI hope we can battle again soon.", - 2: "You should try challenging my kid instead.\nYou might learn something!", - 3: "Thank you for the excellent battle.\nBetter luck next time." - } - }, - "winona": { - "encounter": { - 1: "I've been soaring the skies looking for prey…\nAnd you're my target!", - 2: "No matter how our battle is, my Flying Pokémon and I will triumph with grace. Let's battle!", - 3: "I hope you aren't scared of heights.\nLet's ascend!" - }, - "victory": { - 1: "You're the first Trainer I've seen with more grace than I.\nExcellently played.", - 2: "Oh, my Flying Pokémon have plummeted!\nVery well.", - 3: "Though I may have fallen, my Pokémon will continue to fly!" - }, - "defeat": { - 1: "My Flying Pokémon and I will forever dance elegantly!", - 2: "I hope you enjoyed our show.\nOur graceful dance is finished.", - 3: "Won't you come see our elegant choreography again?" - } - }, - "tate": { - "encounter": { - 1: "Hehehe…\nWere you surprised to see me without my sister?", - 2: "I can see what you're thinking…\nYou want to battle!", - 3: "How can you defeat someone…\nWho knows your every move?" - }, - "victory": { - 1: "It can't be helped…\nI miss Liza…", - 2: "Your bond with your Pokémon was stronger than mine.", - 3: "If I were with Liza, we would have won.\nWe can finish each other's thoughts!" - }, - "defeat": { - 1: "My Pokémon and I are superior!", - 2: "If you can't even defeat me, you'll never be able to defeat Liza either.", - 3: "It's all thanks to my strict training with Liza.\nI can make myself one with Pokémon." - } - }, - "liza": { - "encounter": { - 1: "Fufufu…\nWere you surprised to see me without my brother?", - 2: "I can determine what you desire…\nYou want to battle, don't you?", - 3: "How can you defeat someone…\nWho's one with their Pokémon?" - }, - "victory": { - 1: "It can't be helped…\nI miss Tate…", - 2: "Your bond with your Pokémon…\nIt's stronger than mine.", - 3: "If I were with Tate, we would have won.\nWe can finish each other's sentences!" - }, - "defeat": { - 1: "My Pokémon and I are victorious.", - 2: "If you can't even defeat me, you'll never be able to defeat Tate either.", - 3: "It's all thanks to my strict training with Tate.\nI can synchronize myself with my Pokémon." - } - }, - "juan": { - "encounter": { - 1: "Now's not the time to act coy.\nLet's battle!", - 2: "Ahahaha, You'll be witness to my artistry with Water Pokémon!", - 3: "A typhoon approaches!\nWill you be able to test me?", - 4: "Please, you shall bear witness to our artistry.\nA grand illusion of water sculpted by my Pokémon and myself!" - }, - "victory": { - 1: "You may be a genius who can take on Wallace!", - 2: "I focused on elegance while you trained.\nIt's only natural that you defeated me.", - 3: "Ahahaha!\nVery well, You have won this time.", - 4: "From you, I sense the brilliant shine of skill that will overcome all." - }, - "defeat": { - 1: "My Pokémon and I have sculpted an illusion of Water and come out victorious.", - 2: "Ahahaha, I have won, and you have lost.", - 3: "Shall I loan you my outfit? It may help you battle!\nAhahaha, I jest!", - 4: "I'm the winner! Which is to say, you lost." - } - }, - "crasher_wake": { - "encounter": { - 1: "Crash! Crash! Watch out!\nCrasher Wake…is…heeere!", - 2: "Crash! Crash! Crasher Wake!", - 3: "I'm the tidal wave of power to wash you away!" - }, - "victory": { - 1: "That puts a grin on my face!\nGuhahaha! That was a blast!", - 2: "Hunwah! It's gone and ended!\nHow will I say this…\nI want more! I wanted to battle a lot more!", - 3: "WHAAAAT!?" - }, - "defeat": { - 1: "Yeeeeah! That's right!", - 2: "I won, but I want more! I wanted to battle a lot more!", - 3: "So long!" - } - }, - "falkner": { - "encounter": { - 1: "I'll show you the real power of the magnificent bird Pokémon!", - 2: "Winds, stay with me!", - 3: "Dad! I hope you're watching me battle from above!" - }, - "victory": { - 1: "I understand… I'll bow out gracefully.", - 2: "A defeat is a defeat. You are strong indeed.", - 3: "…Shoot! Yeah, I lost." - }, - "defeat": { - 1: "Dad! I won with your cherished bird Pokémon…", - 2: "Bird Pokémon are the best after all!", - 3: "Feels like I'm catching up to my dad!" - } - }, - "nessa": { - "encounter": { - 1: "No matter what kind of plan your refined mind may be plotting, my partner and I will be sure to sink it.", - 2: "I'm not here to chat. I'm here to win!", - 3: "This is a little gift from my Pokémon… I hope you can take it!" - }, - "victory": { - 1: "You and your Pokémon are just too much…", - 2: "How…? How can this be?!", - 3: "I was totally washed away!" - }, - "defeat": { - 1: "The raging wave crashes again!", - 2: "Time to ride the wave of victory!", - 3: "Ehehe!" - } - }, - "melony": { - "encounter": { - 1: "I'm not going to hold back!", - 2: "All righty, I suppose we should get started.", - 3: "I'll freeze you solid!" - }, - "victory": { - 1: "You… You're pretty good, huh?", - 2: "If you find Gordie around, be sure to give him a right trashing, would you?", - 3: "I think you took breaking the ice a little too literally…" - }, - "defeat": { - 1: "Now do you see how severe battles can be?", - 2: "Hee! Looks like I went and won again!", - 3: "Are you holding back?" - } - }, - "marlon": { - "encounter": { - 1: "You look strong! Shoots! Let's start!", - 2: "I'm strong like the ocean's wide. You're gonna get swept away, fo' sho'.", - 3: "Oh ho, so I'm facing you! That's off the wall." - }, - "victory": { - 1: "You totally rocked that! You're raising some wicked Pokémon. You got this Trainer thing down!", - 2: "You don't just look strong, you're strong fo' reals! Eh, I was swept away, too!", - 3: "You're strong as a gnarly wave!" - }, - "defeat": { - 1: "You're tough, but it's not enough to sway the sea, 'K!", - 2: "Hee! Looks like I went and won again!", - 3: "Sweet, sweet victory!" - } - }, - "shauntal": { - "encounter": { - 1: "Excuse me. You're a challenger, right?\nI'm the Elite Four's Ghost-type Pokémon user, Shauntal, and I shall be your opponent.", - 2: "I absolutely love writing about Trainers who come here and the Pokémon they train.\nCould I use you and your Pokémon as a subject?", - 3: "Every person who works with Pokémon has a story to tell.\nWhat story is about to be told?" - }, - "victory": { - 1: "Wow. I'm dumbstruck!", - 2: "S-sorry! First, I must apologize to my Pokémon…\n\nI'm really sorry you had a bad experience because of me!", - 3: "Even in light of that, I'm still one of the Elite Four!" - }, - "defeat": { - 1: "Eheh.", - 2: "That gave me excellent material for my next novel!", - 3: "And so, another tale ends…" - } - }, - "marshal": { - "encounter": { - 1: "My mentor, Alder, sees your potential as a Trainer and is taking an interest in you.\nIt is my intention to test you--to take you to the limits of your strength. Kiai!", - 2: "Victory, decisive victory, is my intention! Challenger, here I come!", - 3: "In myself, I seek to develop the strength of a fighter and shatter any weakness in myself!\nPrevailing with the force of my convictions!" - }, - "victory": { - 1: "Whew! Well done!", - 2: "As your battles continue, aim for even greater heights!", - 3: "The strength shown by you and your Pokémon has deeply impressed me…" - }, - "defeat": { - 1: "Hmm.", - 2: "That was good battle.", - 3: "Haaah! Haaah! Haiyaaaah!" - } - }, - "cheren": { - "encounter": { - 1: "You remind me of an old friend. That makes me excited about this Pokémon battle!", - 2: `Pokémon battles have no meaning if you don't think why you battle. - $Or better said, it makes battling together with Pokémon meaningless.`, - 3: "My name's Cheren! I'm a Gym Leader and a teacher! Pleasure to meet you." - }, - "victory": { - 1: "Thank you! I saw what was missing in me.", - 2: "Thank you! I feel like I saw a little of the way toward my ideals.", - 3: "Hmm… This is problematic." - }, - "defeat": { - 1: "As a Gym Leader, I aim to be a wall for you to overcome.", - 2: "All right!", - 3: "I made it where I am because Pokémon were by my side.\nPerhaps we need to think about why Pokémon help us not in terms of Pokémon and Trainers but as a relationship between living beings." - } - }, - "chili": { - "encounter": { - 1: "Yeeeeooow! Time to play with FIRE!! I'm the strongest of us brothers!", - 2: "Ta-da! The Fire-type scorcher Chili--that's me--will be your opponent!", - 3: "I'm going to show you what me and my blazing Fire types can do!" - }, - "victory": { - 1: "You got me. I am… burned… out…", - 2: "Whoa ho! You're on fire!", - 3: "Augh! You got me!" - }, - "defeat": { - 1: "I'm on fire! Play with me, and you'll get burned!", - 2: "When you play with fire, you get burned!", - 3: "I mean, c'mon, your opponent was me! You didn't have a chance!" - } - }, - "cilan": { - "encounter": { - 1: `Nothing personal... No hard feelings... Me and my Grass-type Pokémon will... - $Um... We're gonna battle come what may.`, - 2: "So, um, if you're OK with me, I'll, um, put everything I've got into being, er, you know, your opponent.", - 3: "OK… So, um, I'm Cilan, I like Grass-type Pokémon." - }, - "victory": { - 1: "Er… Is it over now?", - 2: `…What a surprise. You are very strong, aren't you? - $I guess my brothers wouldn't have been able to defeat you either…`, - 3: "…Huh. Looks like my timing was, um, off?" - }, - "defeat": { - 1: "Huh? Did I win?", - 2: `I guess… - $I suppose I won, because I've been competing with my brothers Chili and Cress, and we all were able to get tougher.`, - 3: "It…it was quite a thrilling experience…" - } - }, - "roark": { - "encounter": { - 1: "I need to see your potential as a Trainer. And, I'll need to see the toughness of the Pokémon that battle with you!", - 2: "Here goes! These are my rocking Pokémon, my pride and joy!", - 3: "Rock-type Pokémon are simply the best!", - 4: "I need to see your potential as a Trainer. And, I'll need to see the toughness of the Pokémon that battle with you!" - }, - "victory": { - 1: "W-what? That can't be! My buffed-up Pokémon!", - 2: "…We lost control there. Next time I'd like to challenge you to a Fossil-digging race underground.", - 3: "With skill like yours, it's natural for you to win.", - 4: "Wh-what?! It can't be! Even that wasn't enough?", - 5: "I blew it." - }, - "defeat": { - 1: "See? I'm proud of my rocking battle style!", - 2: "Thanks! The battle gave me confidence that I may be able to beat my dad!", - 3: "I feel like I just smashed through a really stubborn boulder!" - } - }, - "morty": { - "encounter": { - 1: `With a little more, I could see a future in which I meet the legendary Pokémon. - $You're going to help me reach that level!`, - 2: `It's said that a rainbow-hued Pokémon will come down to appear before a truly powerful Trainer. - $I believed that tale, so I have secretly trained here all my life. As a result, I can now see what others cannot. - $I see a shadow of the person who will make the Pokémon appear. - $I believe that person is me! You're going to help me reach that level!`, - 3: "Whether you choose to believe or not, mystic power does exist.", - 4: "You can bear witness to the fruits of my training.", - 5: "You must make your soul one with that of Pokémon. Can you do this?", - 6: "Say, do you want to be part of my training?" - }, - "victory": { - 1: "I'm not good enough yet…", - 2: `I see… Your journey has taken you to far-away places and you have witnessed much more than I. - $I envy you for that…`, - 3: "How is this possible…", - 4: `I don't think our potentials are so different. - $But you seem to have something more than that… So be it.`, - 5: "Guess I need more training.", - 6: "That's a shame." - }, - "defeat": { - 1: "I moved… one step ahead again.", - 2: "Fufufu…", - 3: "Wh-what?! It can't be! Even that wasn't enough?", - 4: "I feel like I just smashed through a really stubborn boulder!", - 5: "Ahahahah!", - 6: "I knew I would win!" - } - }, - "crispin": { - "encounter": { - 1: "I wanna win, so that's exactly what I'll do!", - 2: "I battle because I wanna battle! And you know what? That's how it should be!" - }, - "victory": { - 1: "I wanted to win…but I lost!", - 2: "I lost…'cause I couldn't win!" - }, - "defeat": { - 1: "Hey, wait a sec. Did I just win? I think I just won! Talk about satisfying!", - 2: "Wooo! That was amazing!" - } - }, - "amarys": { - "encounter": { - 1: `I want to be the one to help a certain person. That being the case, I cannot afford to lose. - $… Our battle starts now.`, - }, - "victory": { - 1: "I am… not enough, I see." - }, - "defeat": { - 1: "Victory belongs to me. Well fought." - } - }, - "lacey": { - "encounter": { - 1: "I'll be facing you with my usual party as a member of the Elite Four." - }, - "victory": { - 1: "That was a great battle!" - }, - "defeat": { - 1: "Let's give your Pokémon a nice round of applause for their efforts!" - } - }, - "drayton": { - "encounter": { - 1: `Man, I love chairs. Don't you love chairs? What lifesavers. - $I don't get why everyone doesn't just sit all the time. Standing up's tiring work!`, - }, - "victory": { - 1: "Guess I should've expected that!" - }, - "defeat": { - 1: "Heh heh! Don't mind me, just scooping up a W over here. I get it if you're upset, but don't go full Kieran on me, OK?" - } - }, - "ramos": { - "encounter": { - 1: `Did yeh enjoy the garden playground I made with all these sturdy plants o' mine? - $Their strength is a sign o' my strength as a gardener and a Gym Leader! Yeh sure yer up to facing all that?`, - }, - "victory": { - 1: "Yeh believe in yer Pokémon… And they believe in yeh, too… It was a fine battle, sprout." - }, - "defeat": { - 1: "Hohoho… Indeed. Frail little blades o' grass'll break through even concrete." - } - }, - "viola": { - "encounter": { - 1: `Whether it's the tears of frustration that follow a loss or the blossoming of joy that comes with victory… - $They're both great subjects for my camera! Fantastic! This'll be just fantastic! - $Now come at me!`, - 2: "My lens is always focused on victory--I won't let anything ruin this shot!" - }, - "victory": { - 1: "You and your Pokémon have shown me a whole new depth of field! Fantastic! Just fantastic!", - 2: `The world you see through a lens, and the world you see with a Pokémon by your side… - $The same world can look entirely different depending on your view.` - }, - "defeat": { - 1: "The photo from the moment of my victory will be a real winner, all right!", - 2: "Yes! I took some great photos!" - } - }, - "candice": { - "encounter": { - 1: `You want to challenge Candice? Sure thing! I was waiting for someone tough! - $But I should tell you, I'm tough because I know how to focus.`, - 2: `Pokémon, fashion, romance… It's all about focus! - $I'll show you just what I mean. Get ready to lose!` - }, - "victory": { - 1: "I must say, I'm warmed up to you! I might even admire you a little.", - 2: `Wow! You're great! You've earned my respect! - $I think your focus and will bowled us over totally. ` - }, - "defeat": { - 1: "I sensed your will to win, but I don't lose!", - 2: "See? Candice's focus! My Pokémon's focus is great, too!" - } - }, - "gardenia": { - "encounter": { - 1: "You have a winning aura about you. So, anyway, this will be fun. Let's have our battle!" - }, - "victory": { - 1: "Amazing! You're very good, aren't you?" - }, - "defeat": { - 1: "Yes! My Pokémon and I are perfectly good!" - } - }, - "aaron": { - "encounter": { - 1: "Ok! Let me take you on!" - }, - "victory": { - 1: "Battling is a deep and complex affair…" - }, - "defeat": { - 1: "Victory over an Elite Four member doesn't come easily." - } - }, - "cress": { - "encounter": { - 1: "That is correct! It shall be I and my esteemed Water types that you must face in battle!" - }, - "victory": { - 1: "Lose? Me? I don't believe this." - }, - "defeat": { - 1: "This is the appropriate result when I'm your opponent." - } - }, - "allister": { - "encounter": { - 1: "'M Allister.\nH-here… I go…" - }, - "victory": { - 1: `I nearly lost my mask from the shock… That was… - $Wow. I can see your skill for what it is.`, - }, - "defeat": { - 1: "Th-that was ace!" - } - }, - "clay": { - "encounter": { - 1: "Harrumph! Kept me waitin', didn't ya, kid? All right, time to see what ya can do!" - }, - "victory": { - 1: "Man oh man… It feels good to go all out and still be defeated!" - }, - "defeat": { - 1: `What's important is how ya react to losin'. - $That's why folks who use losin' as fuel to get better are tough.`, - } - }, - "kofu": { - "encounter": { - 1: "I'mma serve you a full course o' Water-type Pokémon! Don't try to eat 'em, though!" - }, - "victory": { - 1: "Vaultin' Veluza! Yer a lively one, aren't ya! A little TOO lively, if I do say so myself!" - }, - "defeat": { - 1: "You come back to see me again now, ya hear?" - } - }, - "tulip": { - "encounter": { - 1: "Allow me to put my skills to use to make your cute little Pokémon even more beautiful!" - }, - "victory": { - 1: "Your strength has a magic to it that cannot be washed away." - }, - "defeat": { - 1: "You know, in my line of work, people who lack talent in one area or the other often fade away quickly—never to be heard of again." - } - }, - "sidney": { - "encounter": { - 1: `I like that look you're giving me. I guess you'll give me a good match. - $That's good! Looking real good! All right! - $You and me, let's enjoy a battle that can only be staged here!`, - }, - "victory": { - 1: "Well, how do you like that? I lost! Eh, it was fun, so it doesn't matter." - }, - "defeat": { - 1: "No hard feelings, alright?" - } - }, - "phoebe": { - "encounter": { - 1: `While I trained, I gained the ability to commune with Ghost-type Pokémon. - $Yes, the bond I developed with Pokémon is extremely tight. - $So, come on, just try and see if you can even inflict damage on my Pokémon!`, - }, - "victory": { - 1: "Oh, darn. I've gone and lost." - }, - "defeat": { - 1: "I look forward to battling you again sometime!" - } - }, - "glacia": { - "encounter": { - 1: `All I have seen are challenges by weak Trainers and their Pokémon. - $What about you? It would please me to no end if I could go all out against you!`, - }, - "victory": { - 1: `You and your Pokémon… How hot your spirits burn! - $The all-consuming heat overwhelms. - $It's no surprise that my icy skills failed to harm you.`, - }, - "defeat": { - 1: "A fiercely passionate battle, indeed." - } - }, - "drake": { - "encounter": { - 1: `For us to battle with Pokémon as partners, do you know what it takes? Do you know what is needed? - $If you don't, then you will never prevail over me!`, - }, - "victory": { - 1: "Superb, it should be said." - }, - "defeat": { - 1: "I gave my all for that battle!" - } - }, - "wallace": { - "encounter": { - 1: `There's something about you… A difference in your demeanor. - $I think I sense that in you. Now, show me. Show me the power you wield with your Pokémon. - $And I, in turn, shall present you with a performance of illusions in water by me and my Pokémon!`, - }, - "victory": { - 1: `Bravo. I realize now your authenticity and magnificence as a Pokémon Trainer. - $I find much joy in having met you and your Pokémon. You have proven yourself worthy.`, - }, - "defeat": { - 1: "A grand illusion!" - } - }, - "lorelei": { - "encounter": { - 1: `No one can best me when it comes to icy Pokémon! Freezing moves are powerful! - $Your Pokémon will be at my mercy when they are frozen solid! Hahaha! Are you ready?`, - }, - "victory": { - 1: "How dare you!" - }, - "defeat": { - 1: "There's nothing you can do once you're frozen." - } - }, - "will": { - "encounter": { - 1: `I have trained all around the world, making my psychic Pokémon powerful. - $I can only keep getting better! Losing is not an option!`, - }, - "victory": { - 1: "I… I can't… believe it…" - }, - "defeat": { - 1: "That was close. I wonder what it is that you lack." - } - }, - "malva": { - "encounter": { - 1: `I feel like my heart might just burst into flames. - $I'm burning up with my hatred for you, runt!`, - }, - "victory": { - 1: "What news… So a new challenger has defeated Malva!" - }, - "defeat": { - 1: "I am delighted! Yes, delighted that I could squash you beneath my heel." - } - }, - "hala": { - "encounter": { - 1: "Old Hala is here to make you holler!" - }, - "victory": { - 1: "I could feel the power you gained on your journey." - }, - "defeat": { - 1: "Haha! What a delightful battle!" - } - }, - "molayne": { - "encounter": { - 1: `I gave the captain position to my cousin Sophocles, but I'm confident in my ability. - $My strength is like that of a supernova!`, - }, - "victory": { - 1: "I certainly found an interesting Trainer to face!" - }, - "defeat": { - 1: "Ahaha. What an interesting battle." - } - }, - "rika": { - "encounter": { - 1: "I'd say I'll go easy on you, but… I'd be lying! Think fast!" - }, - "victory": { - 1: "Not bad, kiddo." - }, - "defeat": { - 1: "Nahahaha! You really are something else, kiddo!" - } - }, - "bruno": { - "encounter": { - 1: "We will grind you down with our superior power! Hoo hah!" - }, - "victory": { - 1: "Why? How could I lose?" - }, - "defeat": { - 1: "You can challenge me all you like, but the results will never change!" - } - }, - "bugsy": { - "encounter": { - 1: "I'm Bugsy! I never lose when it comes to bug Pokémon!" - }, - "victory": { - 1: "Whoa, amazing! You're an expert on Pokémon!\nMy research isn't complete yet. OK, you win." - }, - "defeat": { - 1: "Thanks! Thanks to our battle, I was also able to make progress in my research!" - } - }, - "koga": { - "encounter": { - 1: "Fwahahahaha! Pokémon are not merely about brute force--you shall see soon enough!" - }, - "victory": { - 1: "Ah! You've proven your worth!" - }, - "defeat": { - 1: "Have you learned to fear the techniques of the ninja?" - } - }, - "bertha": { - "encounter": { - 1: "Well, would you show this old lady how much you've learned?" - }, - "victory": { - 1: `Well! Dear child, I must say, that was most impressive. - $Your Pokémon believed in you and did their best to earn you the win. - $Even though I've lost, I find myself with this silly grin!`, - }, - "defeat": { - 1: "Hahahahah! Looks like this old lady won!" - } - }, - "lenora": { - "encounter": { - 1: "Well then, challenger, I'm going to research how you battle with the Pokémon you've so lovingly raised!" - }, - "victory": { - 1: "My theory about you was correct. You're more than just talented… You're motivated! I salute you!" - }, - "defeat": { - 1: "Ah ha ha! If you lose, make sure to analyze why, and use that knowledge in your next battle!" - } - }, - "siebold": { - "encounter": { - 1: "As long as I am alive, I shall strive onward to seek the ultimate cuisine... and the strongest opponents in battle!" - }, - "victory": { - 1: "I shall store my memory of you and your Pokémon forever away within my heart." - }, - "defeat": { - 1: `Our Pokémon battle was like food for my soul. It shall keep me going. - $That is how I will pay my respects to you for giving your all in battle!`, - } - }, - "roxie": { - "encounter": { - 1: "Get ready! I'm gonna knock some sense outta ya!" - }, - "victory": { - 1: "Wild! Your reason's already more toxic than mine!" - }, - "defeat": { - 1: "Hey, c'mon! Get serious! You gotta put more out there!" - } - }, - "olivia": { - "encounter": { - 1: "No introduction needed here. Time to battle me, Olivia!" - }, - "victory": { - 1: "Really lovely… Both you and your Pokémon…" - }, - "defeat": { - 1: "Mmm-hmm." - } - }, - "poppy": { - "encounter": { - 1: "Oooh! Do you wanna have a Pokémon battle with me?" - }, - "victory": { - 1: "Uagh?! Mmmuuuggghhh…" - }, - "defeat": { - 1: `Yaaay! I did it! I de-feet-ed you! You can come for… For… An avenge match? - $Come for an avenge match anytime you want!`, - } - }, - "agatha": { - "encounter": { - 1: "Pokémon are for battling! I'll show you how a real Trainer battles!" - }, - "victory": { - 1: "Oh my! You're something special, child!" - }, - "defeat": { - 1: "Bahaha. That's how a proper battle's done!" - } - }, - "flint": { - "encounter": { - 1: "Hope you're warmed up, cause here comes the Big Bang!" - }, - "victory": { - 1: "Incredible! Your moves are so hot, they make mine look lukewarm!" - }, - "defeat": { - 1: "Huh? Is that it? I think you need a bit more passion." - } - }, - "grimsley": { - "encounter": { - 1: "The winner takes everything, and there's nothing left for the loser." - }, - "victory": { - 1: "When one loses, they lose everything… The next thing I'll look for will be victory, too!" - }, - "defeat": { - 1: "If somebody wins, the person who fought against that person will lose." - } - }, - "caitlin": { - "encounter": { - 1: `It's me who appeared when the flower opened up. You who have been waiting… - $You look like a Pokémon Trainer with refined strength and deepened kindness. - $What I look for in my opponent is superb strength… - $Please unleash your power to the fullest!`, - }, - "victory": { - 1: "My Pokémon and I learned so much! I offer you my thanks." - }, - "defeat": { - 1: "I aspire to claim victory with elegance and grace." - } - }, - "diantha": { - "encounter": { - 1: `Battling against you and your Pokémon, all of you brimming with hope for the future… - $Honestly, it just fills me up with energy I need to keep facing each new day! It does!`, - }, - "victory": { - 1: "Witnessing the noble spirits of you and your Pokémon in battle has really touched my heart…" - }, - "defeat": { - 1: "Oh, fantastic! What did you think? My team was pretty cool, right?" - } - }, - "wikstrom": { - "encounter": { - 1: `Well met, young challenger! Verily am I the famed blade of hardened steel, Duke Wikstrom! - $Let the battle begin! En garde!`, - }, - "victory": { - 1: "Glorious! The trust that you share with your honorable Pokémon surpasses even mine!" - }, - "defeat": { - 1: `What manner of magic is this? My heart, it doth hammer ceaselessly in my breast! - $Winning against such a worthy opponent doth give my soul wings--thus do I soar!`, - } - }, - "acerola": { - "encounter": { - 1: "Battling is just plain fun! Come on, I can take you!" - }, - "victory": { - 1: "I'm… I'm speechless! How did you do it?!" - }, - "defeat": { - 1: "Ehaha! What an amazing victory!" - } - }, - "larry_elite": { - "encounter": { - 1: `Hello there… It's me, Larry. - $I serve as a member of the Elite Four too, yes… Unfortunately for me.`, - }, - "victory": { - 1: "Well, that took the wind from under our wings…" - }, - "defeat": { - 1: "It's time for a meeting with the boss." - } - }, - "lance": { - "encounter": { - 1: "I've been waiting for you. Allow me to test your skill.", - 2: "I thought that you would be able to get this far. Let's get this started." - }, - "victory": { - 1: "You got me. You are magnificent!", - 2: "I never expected another trainer to beat me… I'm surprised." - }, - "defeat": { - 1: "That was close. Want to try again?", - 2: "It's not that you are weak. Don't let it bother you." - } - }, - "karen": { - "encounter": { - 1: "I am Karen. Would you care for a showdown with my Dark-type Pokémon?", - 2: "I am unlike those you've already met.", - 3: "You've assembled a charming team. Our battle should be a good one." - }, - "victory": { - 1: "No! I can't win. How did you become so strong?", - 2: "I will not stray from my chosen path.", - 3: "The Champion is looking forward to meeting you." - }, - "defeat": { - 1: "That's about what I expected.", - 2: "Well, that was relatively entertaining.", - 3: "Come visit me anytime." - } - }, - "milo": { - "encounter": { - 1: `Sure seems like you understand Pokémon real well. - $This is gonna be a doozy of a battle! - $I'll have to Dynamax my Pokémon if I want to win!`, - }, - "victory": { - 1: "The power of Grass has wilted… What an incredible Challenger!" - }, - "defeat": { - 1: "This'll really leave you in shock and awe." - } - }, - "lucian": { - "encounter": { - 1: `Just a moment, please. The book I'm reading has nearly reached its thrilling climax… - $The hero has obtained a mystic sword and is about to face their final trial… Ah, never mind. - $Since you've made it this far, I'll put that aside and battle you. - $Let me see if you'll achieve as much glory as the hero of my book!,` - }, - "victory": { - 1: "I see… It appears you've put me in checkmate." - }, - "defeat": { - 1: "I have a reputation to uphold." - } - }, - "drasna": { - "encounter": { - 1: `You must be a strong Trainer. Yes, quite strong indeed… - $That's just wonderful news! Facing opponents like you and your team will make my Pokémon grow like weeds!` - }, - "victory": { - 1: "Oh, dear me. That sure was a quick battle… I do hope you'll come back again sometime!" - }, - "defeat": { - 1: "How can this be?" - } - }, - "kahili": { - "encounter": { - 1: "So, here you are… Why don't we see who the winds favor today, you… Or me?" - }, - "victory": { - 1: "It's frustrating to me as a member of the Elite Four, but it seems your strength is the real deal." - }, - "defeat": { - 1: "That was an ace!" - } - }, - "hassel": { - "encounter": { - 1: "Prepare to learn firsthand how the fiery breath of ferocious battle feels!" - }, - "victory": { - 1: `Fortune smiled on me this time, but… - $Judging from how the match went, who knows if I will be so lucky next time.`, - }, - "defeat": { - 1: "That was an ace!" - } - }, - "blue": { - "encounter": { - 1: "You must be pretty good to get this far." - }, - "victory": { - 1: "I've only lost to him and now to you… Him? Hee, hee…" - }, - "defeat": { - 1: "See? My power is what got me here." - } - }, - "piers": { - "encounter": { - 1: "Get ready for a mosh pit with me and my party! Spikemuth, it's time to rock!" - }, - "victory": { - 1: "Me an' my team gave it our best. Let's meet up again for a battle some time…" - }, - "defeat": { - 1: "My throat's ragged from shoutin'… But 'at was an excitin' battle!" - } - }, - "red": { - "encounter": { - 1: "…!" - }, - "victory": { - 1: "…?" - }, - "defeat": { - 1: "…!" - } - }, - "jasmine": { - "encounter": { - 1: "Oh… Your Pokémon are impressive. I think I will enjoy this." - }, - "victory": { - 1: "You are truly strong. I'll have to try much harder, too." - }, - "defeat": { - 1: "I never expected to win." - } - }, - "lance_champion": { - "encounter": { - 1: "I am still the Champion. I won't hold anything back." - }, - "victory": { - 1: "This is the emergence of a new Champion." - }, - "defeat": { - 1: "I successfully defended my Championship." - } - }, - "steven": { - "encounter": { - 1: `Tell me… What have you seen on your journey with your Pokémon? - $What have you felt, meeting so many other Trainers out there? - $Traveling this rich land… Has it awoken something inside you? - $I want you to come at me with all that you've learned. - $My Pokémon and I will respond in turn with all that we know!`, - }, - "victory": { - 1: "So I, the Champion, fall in defeat…" - }, - "defeat": { - 1: "That was time well spent! Thank you!" - } - }, - "cynthia": { - "encounter": { - 1: "I, Cynthia, accept your challenge! There won't be any letup from me!" - }, - "victory": { - 1: "No matter how fun the battle is, it will always end sometime…" - }, - "defeat": { - 1: "Even if you lose, never lose your love of Pokémon." - } - }, - "iris": { - "encounter": { - 1: `Know what? I really look forward to having serious battles with strong Trainers! - $I mean, come on! The Trainers who make it here are Trainers who desire victory with every fiber of their being! - #And they are battling alongside Pokémon that have been through countless difficult battles! - $If I battle with people like that, not only will I get stronger, my Pokémon will, too! - $And we'll get to know each other even better! OK! Brace yourself! - $I'm Iris, the Pokémon League Champion, and I'm going to defeat you!`, - }, - "victory": { - 1: "Aghhhh… I did my best, but we lost…" - }, - "defeat": { - 1: "Yay! We won!" - } - }, - "hau": { - "encounter": { - 1: `I wonder if a Trainer battles differently depending on whether they're from a warm region or a cold region. - $Let's test it out!`, - }, - "victory": { - 1: "That was awesome! I think I kinda understand your vibe a little better now!" - }, - "defeat": { - 1: "Ma-an, that was some kinda battle!" - } - }, - "geeta": { - "encounter": { - 1: `I decided to throw my hat in the ring once more. - $Come now… Show me the fruits of your training.`, - }, - "victory": { - 1: "I eagerly await news of all your achievements!" - }, - "defeat": { - 1: "What's the matter? This isn't all, is it?" - } - }, - "nemona": { - "encounter": { - 1: "Yesss! I'm so psyched! Time for us to let loose!" - }, - "victory": { - 1: "Well, that stinks, but I still had fun! I'll getcha next time!" - }, - "defeat": { - 1: "Well, that was a great battle! Fruitful for sure." - } - }, - "leon": { - "encounter": { - 1: "We're gonna have an absolutely champion time!" - }, - "victory": { - 1: `My time as Champion is over… - $But what a champion time it's been! - $Thank you for the greatest battle I've ever had!`, - }, - "defeat": { - 1: "An absolute champion time, that was!" - } - }, - "whitney": { - "encounter": { - 1: "Hey! Don't you think Pokémon are, like, super cute?" - }, - "victory": { - 1: "Waaah! Waaah! You're so mean!" - }, - "defeat": { - 1: "And that's that!" - } - }, - "chuck": { - "encounter": { - 1: "Hah! You want to challenge me? Are you brave or just ignorant?" - }, - "victory": { - 1: "You're strong! Would you please make me your apprentice?" - }, - "defeat": { - 1: "There. Do you realize how much more powerful I am than you?" - } - }, - "katy": { - "encounter": { - 1: "Don't let your guard down unless you would like to find yourself knocked off your feet!" - }, - "victory": { - 1: "All of my sweet little Pokémon dropped like flies!" - }, - "defeat": { - 1: "Eat up, my cute little Vivillon!" - } - }, - "pryce": { - "encounter": { - 1: "Youth alone does not ensure victory! Experience is what counts." - }, - "victory": { - 1: "Outstanding! That was perfect. Try not to forget what you feel now." - }, - "defeat": { - 1: "Just as I envisioned." - } - }, - "clair": { - "encounter": { - 1: "Do you know who I am? And you still dare to challenge me?" - }, - "victory": { - 1: "I wonder how far you can get with your skill level. This should be fascinating." - }, - "defeat": { - 1: "That's that." - } - }, - "maylene": { - "encounter": { - 1: `I've come to challenge you now, and I won't hold anything back. - $Please prepare yourself for battle!`, - }, - "victory": { - 1: "I admit defeat…" - }, - "defeat": { - 1: "That was awesome." - } - }, - "fantina": { - "encounter": { - 1: `You shall challenge me, yes? But I shall win. - $That is what the Gym Leader of Hearthome does, non?`, - }, - "victory": { - 1: "You are so fantastically strong. I know why I have lost." - }, - "defeat": { - 1: "I am so, so, very happy!" - } - }, - "byron": { - "encounter": { - 1: `Trainer! You're young, just like my son, Roark. - $With more young Trainers taking charge, the future of Pokémon is bright! - $So, as a wall for young people, I'll take your challenge!`, - }, - "victory": { - 1: "Hmm! My sturdy Pokémon--defeated!" - }, - "defeat": { - 1: "Gwahahaha! How were my sturdy Pokémon?!" - } - }, - "olympia": { - "encounter": { - 1: "An ancient custom deciding one's destiny. The battle begins!" - }, - "victory": { - 1: "Create your own path. Let nothing get in your way. Your fate, your future." - }, - "defeat": { - 1: "Our path is clear now." - } - }, - "volkner": { - "encounter": { - 1: `Since you've come this far, you must be quite strong… - $I hope you're the Trainer who'll make me remember how fun it is to battle!`, - }, - "victory": { - 1: `You've got me beat… - $Your desire and the noble way your Pokémon battled for you… - $I even felt thrilled during our match. That was a very good battle.`, - }, - "defeat": { - 1: `It was not shocking at all… - $That is not what I wanted!`, - } - }, - "burgh": { - "encounter": { - 1: `M'hm… If I win this battle, I feel like I can draw a picture unlike any before it. - $OK! I can hear my battle muse loud and clear. Let's get straight to it!`, - 2: `Of course, I'm really proud of all of my Pokémon! - $Well now… Let's get right to it!` - }, - "victory": { - 1: "Is it over? Has my muse abandoned me?", - 2: "Hmm… It's over! You're incredible!" - }, - "defeat": { - 1: "Wow… It's beautiful somehow, isn't it…", - 2: `Sometimes I hear people say something was an ugly win. - $I think if you're trying your best, any win is beautiful.` - } - }, - "elesa": { - "encounter": { - 1: `C'est fini! When I'm certain of that, I feel an electric jolt run through my body! - $I want to feel the sensation, so now my beloved Pokémon are going to make your head spin!`, - }, - "victory": { - 1: "I meant to make your head spin, but you shocked me instead." - }, - "defeat": { - 1: "That was unsatisfying somehow… Will you give it your all next time?" - } - }, - "skyla": { - "encounter": { - 1: `It's finally time for a showdown! That means the Pokémon battle that decides who's at the top, right? - $I love being on the summit! 'Cause you can see forever and ever from high places! - $So, how about you and I have some fun?`, - }, - "victory": { - 1: "Being your opponent in battle is a new source of strength to me. Thank you!" - }, - "defeat": { - 1: "Win or lose, you always gain something from a battle, right?" - } - }, - "brycen": { - "encounter": { - 1: `There is also strength in being with other people and Pokémon. - $Receiving their support makes you stronger. I'll show you this power!`, - }, - "victory": { - 1: "The wonderful combination of you and your Pokémon! What a beautiful friendship!" - }, - "defeat": { - 1: "Extreme conditions really test you and train you!" - } - }, - "drayden": { - "encounter": { - 1: `What I want to find is a young Trainer who can show me a bright future. - $Let's battle with everything we have: your skill, my experience, and the love we've raised our Pokémon with!`, - }, - "victory": { - 1: "This intense feeling that floods me after a defeat… I don't know how to describe it." - }, - "defeat": { - 1: "Harrumph! I know your ability is greater than that!" - } - }, - "grant": { - "encounter": { - 1: `There is only one thing I wish for. - $That by surpassing one another, we find a way to even greater heights.`, - }, - "victory": { - 1: "You are a wall that I am unable to surmount!" - }, - "defeat": { - 1: `Do not give up. - $That is all there really is to it. - $The most important lessons in life are simple.`, - } - }, - "korrina": { - "encounter": { - 1: "Time for Lady Korrina's big appearance!" - }, - "victory": { - 1: "It's your very being that allows your Pokémon to evolve!" - }, - "defeat": { - 1: "What an explosive battle!" - } - }, - "clemont": { - "encounter": { - 1: "Oh! I'm glad that we got to meet!" - }, - "victory": { - 1: "Your passion for battle inspires me!" - }, - "defeat": { - 1: "Looks like my Trainer-Grow-Stronger Machine, Mach 2 is really working!" - } - }, - "valerie": { - "encounter": { - 1: `Oh, if it isn't a young Trainer… It is lovely to get to meet you like this. - $Then I suppose you have earned yourself the right to a battle, as a reward for your efforts. - $The elusive Fairy may appear frail as the breeze and delicate as a bloom, but it is strong.`, - }, - "victory": { - 1: "I hope that you will find things worth smiling about tomorrow…" - }, - "defeat": { - 1: "Oh goodness, what a pity…" - } - }, - "wulfric": { - "encounter": { - 1: `You know what? We all talk big about what you learn from battling and bonds and all that… - $But really, I just do it 'cause it's fun. - $Who cares about the grandstanding? Let's get to battling!`, - }, - "victory": { - 1: "Outstanding! I'm tough as an iceberg, but you smashed me through and through!" - }, - "defeat": { - 1: "Tussle with me and this is what happens!" - } - }, - "kabu": { - "encounter": { - 1: `Every Trainer and Pokémon trains hard in pursuit of victory. - $But that means your opponent is also working hard to win. - $In the end, the match is decided by which side is able to unleash their true potential.`, - }, - "victory": { - 1: "I'm glad I could battle you today!" - }, - "defeat": { - 1: "That's a great way for me to feel my own growth!" - } - }, - "bea": { - "encounter": { - 1: `Do you have an unshakable spirit that won't be moved, no matter how you are attacked? - $I think I'll just test that out, shall I?`, - }, - "victory": { - 1: "I felt the fighting spirit of your Pokémon as you led them in battle." - }, - "defeat": { - 1: "That was the best sort of match anyone could ever hope for." - } - }, - "opal": { - "encounter": { - 1: "Let me have a look at how you and your partner Pokémon behave!" - }, - "victory": { - 1: "Your pink is still lacking, but you're an excellent Trainer with excellent Pokémon." - }, - "defeat": { - 1: "Too bad for you, I guess." - } - }, - "bede": { - "encounter": { - 1: "I suppose I should prove beyond doubt just how pathetic you are and how strong I am." - }, - "victory": { - 1: "I see… Well, that's fine. I wasn't really trying all that hard anyway." - }, - "defeat": { - 1: "Not a bad job, I suppose." - } - }, - "gordie": { - "encounter": { - 1: "So, let's get this over with." - }, - "victory": { - 1: "I just want to climb into a hole… Well, I guess it'd be more like falling from here." - }, - "defeat": { - 1: "Battle like you always do, victory will follow!" - } - }, - "marnie": { - "encounter": { - 1: `The truth is, when all's said and done… I really just wanna become Champion for myself! - $So don't take it personal when I kick your butt!`, - }, - "victory": { - 1: "OK, so I lost… But I got to see a lot of the good points of you and your Pokémon!" - }, - "defeat": { - 1: "Hope you enjoyed our battle tactics." - } - }, - "raihan": { - "encounter": { - 1: "I'm going to defeat the Champion, win the whole tournament, and prove to the world just how strong the great Raihan really is!" - }, - "victory": { - 1: `I look this good even when I lose. - $It's a real curse. - $Guess it's time for another selfie!`, - }, - "defeat": { - 1: "Let's take a selfie to remember this." - } - }, - "brassius": { - "encounter": { - 1: "I assume you are ready? Let our collaborative work of art begin!" - }, - "victory": { - 1: "Ahhh…vant-garde!" - }, - "defeat": { - 1: "I will begin on a new piece at once!" - } - }, - "iono": { - "encounter": { - 1: `How're ya feelin' about this battle? - $... - $Let's get this show on the road! How strong is our challenger? - $I 'unno! Let's find out together!`, - }, - "victory": { - 1: "You're as flashy and bright as a 10,000,000-volt Thunderbolt, friendo!" - }, - "defeat": { - 1: "Your eyeballs are MINE!" - } - }, - "larry": { - "encounter": { - 1: "When all's said and done, simplicity is strongest." - }, - "victory": { - 1: "A serving of defeat, huh?" - }, - "defeat": { - 1: "I'll call it a day." - } - }, - "ryme": { - "encounter": { - 1: "Come on, baby! Rattle me down to the bone!" - }, - "victory": { - 1: "You're cool, my friend—you move my SOUL!" - }, - "defeat": { - 1: "Later, baby!" - } - }, - "grusha": { - "encounter": { - 1: "All I need to do is make sure the power of my Pokémon chills you to the bone!" - }, - "victory": { - 1: "Your burning passion… I kinda like it, to be honest." - }, - "defeat": { - 1: "Things didn't heat up for you." - } - }, - "marnie_elite": { - "encounter": { - 1: "You've made it this far, huh? Let's see if you can handle my Pokémon!", - 2: "I'll give it my best shot, but don't think I'll go easy on you!" - }, - "victory": { - 1: "I can't believe I lost... But you deserved that win. Well done!", - 2: "Looks like I've still got a lot to learn. Great battle, though!" - }, - "defeat": { - 1: "You put up a good fight, but I've got the edge! Better luck next time!", - 2: "Seems like my training's paid off. Thanks for the battle!" - } - }, - "nessa_elite": { - "encounter": { - 1: "The tides are turning in my favor. Ready to get swept away?", - 2: "Let's make some waves with this battle! I hope you're prepared!" - }, - "victory": { - 1: "You navigated those waters perfectly... Well done!", - 2: "Looks like my currents were no match for you. Great job!" - }, - "defeat": { - 1: "Water always finds a way. That was a refreshing battle!", - 2: "You fought well, but the ocean's power is unstoppable!" - } - }, - "bea_elite": { - "encounter": { - 1: "Prepare yourself! My fighting spirit burns bright!", - 2: "Let's see if you can keep up with my relentless pace!" - }, - "victory": { - 1: "Your strength... It's impressive. You truly deserve this win.", - 2: "I've never felt this intensity before. Amazing job!" - }, - "defeat": { - 1: "Another victory for my intense training regimen! Well done!", - 2: "You've got strength, but I trained harder. Great battle!" - } - }, - "allister_elite": { - "encounter": { - 1: "Shadows fall... Are you ready to face your fears?", - 2: "Let's see if you can handle the darkness that I command." - }, - "victory": { - 1: "You've dispelled the shadows... For now. Well done.", - 2: "Your light pierced through my darkness. Great job." - }, - "defeat": { - 1: "The shadows have spoken... Your strength isn't enough.", - 2: "Darkness triumphs... Maybe next time you'll see the light." - } - }, - "raihan_elite": { - "encounter": { - 1: "Storm's brewing! Let's see if you can weather this fight!", - 2: "Get ready to face the eye of the storm!" - }, - "victory": { - 1: "You've bested the storm... Incredible job!", - 2: "You rode the winds perfectly... Great battle!" - }, - "defeat": { - 1: "Another storm weathered, another victory claimed! Well fought!", - 2: "You got caught in my storm! Better luck next time!" - } - }, - "alder": { - "encounter": { - 1: "Prepárate para una batalla contra el entrenador más fuerte en Unova!" - }, - "victory": { - 1: "Bien hecho! Tienes ciertamente un talento inigualable" - }, - "defeat": { - 1: `Un viento fresco sopla a través en mi corazón - $Qué esfuerzo extraordinario!` - } - }, - "kieran": { - "encounter": { - 1: `A través del trabajo duro, me he vuelto más y más fuerte! - $No pierdo.` - }, - "victory": { - 1: `No puedo creerlo... - $¡Qué batalla tan divertida y trepidante!` - }, - "defeat": { - 1: `Asombroso, que batalla! - $Es hora de que entrenes aún más duro.` - } - }, - "rival": { - "encounter": { - 1: `@c{smile}Hey, I was looking for you! I knew you were eager to get going but I expected at least a goodbye… - $@c{smile_eclosed}So you're really pursuing your dream after all?\n I almost can't believe it. - $@c{serious_smile_fists}Since we're here, how about a battle?\nAfter all, I want to make sure you're ready. - $@c{serious_mopen_fists}Don't hold back, I want you to give me everything you've got!` - }, - "victory": { - 1: `@c{shock}Wow… You cleaned me out.\nAre you actually a beginner? - $@c{smile}Maybe it was a bit of luck but…\nWho knows you might just be able to go all the way. - $By the way, the professor asked me to give you these items. They look pretty cool. - $@c{serious_smile_fists}Good luck out there! - $@c{smile}Oh- and I hope you enjoy the event!` - }, - }, - "rival_female": { - "encounter": { - 1: `@c{smile_wave}There you are! I've been looking everywhere for you!\n@c{angry_mopen}Did you forget to say goodbye to your best friend? - $@c{smile_ehalf}You're going after your dream, huh?\nThat day is really today isn't it… - $@c{smile}Anyway, I'll forgive you for forgetting me, but on one condition. @c{smile_wave_wink}You have to battle me! - $@c{angry_mopen}Give it your all! Wouldn't want your adventure to be over before it started, right?` - }, - "victory": { - 1: `@c{shock}You just started and you're already this strong?!@d{96}\n@c{angry}You totally cheated, didn't you? - $@c{smile_wave_wink}Just kidding!@d{64} @c{smile_eclosed}I lost fair and square… I have a feeling you're going to do really well out there. - $@c{smile}By the way, the professor wanted me to give you some items. Hopefully they're helpful! - $@c{smile_wave}Do your best like always! I believe in you! - $@c{smile}Oh- and I hope you enjoy the event!` - }, - }, - "rival_2": { - "encounter": { - 1: `@c{smile}Hey, you're here too?\n@c{smile_eclosed}Still a perfect record, huh…? - $@c{serious_mopen_fists}I know it kind of looks like I followed you here, but that's mostly not true. - $@c{serious_smile_fists}Honestly though, I've been itching for a rematch since you beat me back at home. - $I've been doing a lot of my own training so I'll definitely put up a fight this time. - $@c{serious_mopen_fists}Don't hold back, just like before!\nLet's go!` - }, - "victory": { - 1: `@c{neutral_eclosed}Oh. I guess I was overconfident. - $@c{smile}That's alright, though. I figured this might happen.\n@c{serious_mopen_fists}It just means I need to try harder for next time!\n - $@c{smile}Oh, not that you really need the help, but I had an extra one of these lying around and figured you might want it.\n - $@c{serious_smile_fists}Don't expect another one after this, though!\nI can't keep giving my opponent an advantage after all. - $@c{smile}Anyway, take care, and enjoy the event!` - }, - }, - "rival_2_female": { - "encounter": { - 1: `@c{smile_wave}Oh, fancy meeting you here. Looks like you're still undefeated. @c{angry_mopen}Huh… Not bad! - $@c{angry_mopen}I know what you're thinking, and no, I wasn't creeping on you. @c{smile_eclosed}I just happened to be in the area. - $@c{smile_ehalf}I'm happy for you but I just want to let you know that it's OK to lose sometimes. - $@c{smile}We learn from our mistakes, often more than we would if we kept succeeding. - $@c{angry_mopen}In any case, I've been training hard for our rematch, so you'd better give it your all!` - }, - "victory": { - 1: `@c{neutral}I… wasn't supposed to lose that time… - $@c{smile}Aw well. That just means I'll have to train even harder for next time! - $@c{smile_wave}I also got you another one of these!\n@c{smile_wave_wink}No need to thank me~. - $@c{angry_mopen}This is the last one, though! You won't be getting anymore freebies from me after this! - $@c{smile_wave}Keep at it, and enjoy the event!` - }, - "defeat": { - 1: "It's OK to lose sometimes…" - } - }, - "rival_3": { - "encounter": { - 1: `@c{smile}Hey, look who it is! It's been a while.\n@c{neutral}You're… still undefeated? Huh. - $@c{neutral_eclosed}Things have been kind of… strange.\nIt's not the same back home without you. - $@c{serious}I know it's selfish, but I need to get this off my chest.\n@c{neutral_eclosed}I think you're in over your head here. - $@c{serious}Never losing once is just unrealistic.\nWe need to lose sometimes in order to grow. - $@c{neutral_eclosed}You've had a great run but there's still so much ahead, and it only gets harder. @c{neutral}Are you prepared for that? - $@c{serious_mopen_fists}If so, prove it to me.` - }, - "victory": { - 1: "@c{angry_mhalf}This is ridiculous… I've hardly stopped training…\nHow are we still so far apart?" - }, - }, - "rival_3_female": { - "encounter": { - 1: `@c{smile_wave}Long time no see! Still haven't lost, huh.\n@c{angry}You're starting to get on my nerves. @c{smile_wave_wink}Just kidding! - $@c{smile_ehalf}But really, don't you miss home by now? Or… me?\nI… I mean, we've really missed you. - $@c{smile_eclosed}I support you in your dream and everything, but the reality is you're going to lose sooner or later. - $@c{smile}And when you do, I'll be there for you like always.\n@c{angry_mopen}Now, let me show you how strong I've become!` - }, - "victory": { - 1: "@c{shock}After all that… it wasn't enough…?\nYou'll never come back at this rate…" - - }, - "defeat": { - 1: "You gave it your best, now let's go home." - } - }, - "rival_4": { - "encounter": { - 1: `@c{neutral}Hey. - $I won't mince words or pleasantries with you.\n@c{neutral_eclosed}I'm here to win, plain and simple. - $@c{serious_mhalf_fists}I've learned to maximize my potential by putting all my time into training. - $@c{smile}You get a lot of extra time when you cut out the unnecessary sleep and social interaction. - $@c{serious_mopen_fists}None of that matters anymore, not until I win. - $@c{neutral_eclosed}I've even reached the point where I don't lose anymore.\n@c{smile_eclosed}I suppose your philosophy wasn't so wrong after all. - $@c{angry_mhalf}Losing is for the weak, and I'm not weak anymore. - $@c{serious_mopen_fists}Prepare yourself.` - }, - "victory": { - 1: "@c{neutral}What…@d{64} What are you?" - }, - }, - "rival_4_female": { - "encounter": { - 1: `@c{neutral}It's me! You didn't forget about me again… did you? - $@c{smile}You should be proud of how far you made it. Congrats!\nBut it looks like it's the end of your journey. - $@c{smile_eclosed}You've awoken something in me I never knew was there.\nIt seems like all I do now is train. - $@c{smile_ehalf}I hardly even eat or sleep now, I just train my Pokémon all day, getting stronger every time. - $@c{neutral}In fact, I… hardly recognize myself. - $And now, I've finally reached peak performance.\nI don't think anyone could beat me now. - $And you know what? It's all because of you.\n@c{smile_ehalf}I don't know whether to thank you or hate you. - $@c{angry_mopen}Prepare yourself.` - }, - "victory": { - 1: "@c{neutral}What…@d{64} What are you?" - - }, - "defeat": { - 1: "$@c{smile}You should be proud of how far you made it." - } - }, - "rival_5": { - "encounter": { - 1: "@c{neutral}…" - }, - "victory": { - 1: "@c{neutral}…" - }, - }, - "rival_5_female": { - "encounter": { - 1: "@c{neutral}…" - }, - "victory": { - 1: "@c{neutral}…" - - }, - "defeat": { - 1: "$@c{smile_ehalf}…" - } - }, - "rival_6": { - "encounter": { - 1: `@c{smile_eclosed}We meet again. - $@c{neutral}I've had some time to reflect on all this.\nThere's a reason this all seems so strange. - $@c{neutral_eclosed}Your dream, my drive to beat you…\nIt's all a part of something greater. - $@c{serious}This isn't about me, or about you… This is about the world, @c{serious_mhalf_fists}and it's my purpose to push you to your limits. - $@c{neutral_eclosed}Whether I've fulfilled that purpose I can't say, but I've done everything in my power. - $@c{neutral}This place we ended up in is terrifying… Yet somehow I feel unphased, like I've been here before. - $@c{serious_mhalf_fists}You feel the same, don't you? - $@c{serious}…and it's like something here is speaking to me.\nThis is all the world's known for a long time now. - $Those times we cherished together that seem so recent are nothing but a distant memory. - $@c{neutral_eclosed}Who can say whether they were ever even real in the first place. - $@c{serious_mopen_fists}You need to keep pushing, because if you don't, it will never end. You're the only one who can do this. - $@c{serious_smile_fists}I hardly know what any of this means, I just know that it's true. - $@c{serious_mopen_fists}If you can't defeat me here and now, you won't stand a chance.` - }, - "victory": { - 1: `@c{smile_eclosed}It looks like my work is done here. - $I want you to promise me one thing.\n@c{smile}After you heal the world, please come home.` - }, - }, - "rival_6_female": { - "encounter": { - 1: `@c{smile_ehalf}So it's just us again. - $@c{smile_eclosed}You know, I keep going around and around in my head… - $@c{smile_ehalf}There's something to all this, why everything seems so strange now… - $@c{smile}You have your dream, and I have this ambition in me… - $I just can't help but feel there's a greater purpose to all this, to what we're doing, you and I. - $@c{smile_eclosed}I think I'm supposed to push you… to your limits. - $@c{smile_ehalf}I'm not sure if I've been doing a good job at that, but I've tried my best up to now. - $It's something about this strange and dreadful place… Everything seems so clear… - $This… is all the world's known for a long time now. - $@c{smile_eclosed}It's like I can barely remember the memories we cherished together. - $@c{smile_ehalf}Were they even real? They seem so far away now… - $@c{angry_mopen}You need to keep pushing, because if you don't, it will never end. You're the only one who can do this. - $@c{smile_ehalf}I… don't know what all this means… but I feel it's true. - $@c{neutral}If you can't defeat me here and now, you won't stand a chance.` - }, - "victory": { - 1: `@c{smile_ehalf}I… I think I fulfilled my purpose… - $@c{smile_eclosed}Promise me… After you heal the world… Please… come home safe. - $@c{smile_ehalf}…Thank you.` - - }, - }, -}; - - -// Dialogue of the NPCs in the game when the player character is female. For languages that do not have gendered pronouns, this can be set to PGMdialogue. -export const PGFdialogue: DialogueTranslationEntries = PGMdialogue; - -// Dialogue of the endboss of the game when the player character is male (Or unset) -export const PGMbattleSpecDialogue: SimpleTranslationEntries = { - "encounter": `It appears the time has finally come once again.\nYou know why you have come here, do you not? - $You were drawn here, because you have been here before.\nCountless times. - $Though, perhaps it can be counted.\nTo be precise, this is in fact your {{cycleCount}} cycle. - $Each cycle your mind reverts to its former state.\nEven so, somehow, remnants of your former selves remain. - $Until now you have yet to succeed, but I sense a different presence in you this time.\n - $You are the only one here, though it is as if there is… another. - $Will you finally prove a formidable challenge to me?\nThe challenge I have longed after for millennia? - $We begin.`, - "firstStageWin": `I see. The presence I felt was indeed real.\nIt appears I no longer need to hold back. - $Do not disappoint me.`, - "secondStageWin": "…Magnificent." -}; - -// Dialogue of the endboss of the game when the player character is female. For languages that do not have gendered pronouns, this can be set to PGMbattleSpecDialogue. -export const PGFbattleSpecDialogue: SimpleTranslationEntries = PGMbattleSpecDialogue; - -// Dialogue that does not fit into any other category (e.g. tutorial messages, or the end of the game). For when the player character is male -export const PGMmiscDialogue: SimpleTranslationEntries = { - "ending": - `@c{smile}Oh? You won?@d{96} @c{smile_eclosed}I guess I should've known.\nBut, you're back now. - $@c{smile}It's over.@d{64} You ended the loop. - $@c{serious_smile_fists}You fulfilled your dream too, didn't you?\nYou didn't lose even once. - $@c{neutral}I'm the only one who'll remember what you did.@d{96}\nI guess that's okay, isn't it? - $@c{serious_smile_fists}Your legend will always live on in our hearts. - $@c{smile_eclosed}Anyway, I've had about enough of this place, haven't you? Let's head home. - $@c{serious_smile_fists}Maybe when we get back, we can have another battle?\nIf you're up to it.`, - "ending_female": - `@c{shock}You're back?@d{32} Does that mean…@d{96} you won?!\n@c{smile_ehalf}I should have known you had it in you. - $@c{smile_eclosed}Of course… I always had that feeling.\n@c{smile}It's over now, right? You ended the loop. - $@c{smile_ehalf}You fulfilled your dream too, didn't you?\nYou didn't lose even once. - $I'll be the only one to remember what you did.\n@c{angry_mopen}I'll try not to forget! - $@c{smile_wave_wink}Just kidding!@d{64} @c{smile}I'd never forget.@d{32}\nYour legend will live on in our hearts. - $@c{smile_wave}Anyway,@d{64} it's getting late…@d{96} I think?\nIt's hard to tell in this place. - $Let's go home. @c{smile_wave_wink}Maybe tomorrow, we can have another battle, for old time's sake?`, -}; -// Dialogue that does not fit into any other category (e.g. tutorial messages, or the end of the game). For when the player character is female. For languages that do not have gendered pronouns, this can be set to PGMmiscDialogue. -export const PGFmiscDialogue: SimpleTranslationEntries = PGMmiscDialogue; - - -// Dialogue of the named double battles in the game. For when the player is male (or unset). -export const PGMdoubleBattleDialogue: DialogueTranslationEntries = { - "blue_red_double": { - "encounter": { - 1: `Blue: Hey Red, let's show them what we're made of! - $Red: ... - $Blue: This is Pallet Town Power!`, - }, - "victory": { - 1: `Blue: That was a great battle! - $Red: ...`, - }, - }, - "red_blue_double": { - "encounter": { - 1: `Red: ...! - $Blue: He never talks much. - $Blue: But dont let that fool you! He is a champ after all!`, - }, - "victory": { - 1: `Red: ...! - $Blue: Next time we will beat you!`, - }, - }, - "tate_liza_double": { - "encounter": { - 1: `Tate: Are you suprised? - $Liza: We are two gym leaders at once! - $Tate: We are twins! - $Liza: We dont need to talk to understand each other! - $Tate: Twice the power... - $Liza: Can you handle it?`, - }, - "victory": { - 1: `Tate: What? Our combination was perfect! - $Liza: Looks like we need to train more...`, - }, - }, - "liza_tate_double": { - "encounter": { - 1: `Liza: Hihihi... Are you suprised? - $Tate: Yes, we are really two gym leaders at once! - $Liza: This is my twin brother Tate! - $Tate: And this is my twin sister Liza! - $Liza: Don't you think we are a perfect combination?` - }, - "victory": { - 1: `Liza: Are we... - $Tate: ...not as strong as we thought?`, - }, - }, - "wallace_steven_double": { - "encounter": { - 1: `Steven: Wallace, let's show them the power of the champions! - $Wallace: We will show you the power of Hoenn! - $Steven: Let's go!`, - }, - "victory": { - 1: `Steven: That was a great battle! - $Wallace: We will win next time!`, - }, - }, - "steven_wallace_double": { - "encounter": { - 1: `Steven: Do you have any rare pokémon? - $Wallace: Steven... We are here for a battle, not to show off our pokémon. - $Steven: Oh... I see... Let's go then!`, - }, - "victory": { - 1: `Steven: Now that we are done with the battle, let's show off our pokémon! - $Wallace: Steven...`, - }, - }, - "alder_iris_double": { - "encounter": { - 1: `Alder: We are the strongest trainers in Unova! - $Iris: Fights against strong trainers are the best!`, - }, - "victory": { - 1: `Alder: Wow! You are super strong! - $Iris: We will win next time!`, - }, - }, - "iris_alder_double": { - "encounter": { - 1: `Iris: Welcome Challenger! I am THE Unova Champion! - $Alder: Iris, aren't you a bit too excited?`, - }, - "victory": { - 1: `Iris: A loss like this is not easy to take... - $Alder: But we will only get stronger with every loss!`, - }, - }, - "piers_marnie_double": { - "encounter": { - 1: `Marnie: Brother, let's show them the power of Spikemuth! - $Piers: We bring darkness!`, - }, - "victory": { - 1: `Marnie: You brought light to our darkness! - $Piers: Its too bright...`, - }, - }, - "marnie_piers_double": { - "encounter": { - 1: `Piers: Ready for a concert? - $Marnie: Brother... They are here to fight, not to sing...`, - }, - "victory": { - 1: `Piers: Now that was a great concert! - $Marnie: Brother...`, - }, - }, -}; - -// Dialogue of the named double battles in the game. For when the player is female. For languages that do not have gendered pronouns, this can be set to PGMdoubleBattleDialogue. -export const PGFdoubleBattleDialogue: DialogueTranslationEntries = PGMdoubleBattleDialogue; diff --git a/src/locales/es/egg.ts b/src/locales/es/egg.json similarity index 86% rename from src/locales/es/egg.ts rename to src/locales/es/egg.json index ab2c3aab903..2542d577323 100644 --- a/src/locales/es/egg.ts +++ b/src/locales/es/egg.json @@ -1,6 +1,4 @@ -import { SimpleTranslationEntries } from "#app/interfaces/locales"; - -export const egg: SimpleTranslationEntries = { +{ "egg": "Huevo", "greatTier": "Raro", "ultraTier": "Épico", @@ -24,5 +22,5 @@ export const egg: SimpleTranslationEntries = { "rareEggMoveUnlock": "Mov. Huevo Raro desbloqueado:\n{{moveName}}", "moveUPGacha": "¡Más Mov.\nHuevo Raro!", "shinyUPGacha": "¡Más Shiny!", - "legendaryUPGacha": ", ¡mayor\nprob.!", -} as const; + "legendaryUPGacha": ", ¡mayor\nprob.!" +} diff --git a/src/locales/es/fight-ui-handler.json b/src/locales/es/fight-ui-handler.json new file mode 100644 index 00000000000..dc8140b61fc --- /dev/null +++ b/src/locales/es/fight-ui-handler.json @@ -0,0 +1,7 @@ +{ + "pp": "PP", + "power": "Potencia", + "accuracy": "Precisión", + "abilityFlyInText": " {{passive}}{{pokemonName}}\n{{abilityName}}", + "passive": "Pasiva de " +} diff --git a/src/locales/es/fight-ui-handler.ts b/src/locales/es/fight-ui-handler.ts deleted file mode 100644 index 70526ce4692..00000000000 --- a/src/locales/es/fight-ui-handler.ts +++ /dev/null @@ -1,9 +0,0 @@ -import { SimpleTranslationEntries } from "#app/interfaces/locales"; - -export const fightUiHandler: SimpleTranslationEntries = { - "pp": "PP", - "power": "Potencia", - "accuracy": "Precisión", - "abilityFlyInText": " {{passive}}{{pokemonName}}\n{{abilityName}}", - "passive": "Pasiva de ", // The space at the end is important -} as const; diff --git a/src/locales/es/filter-bar.ts b/src/locales/es/filter-bar.json similarity index 88% rename from src/locales/es/filter-bar.ts rename to src/locales/es/filter-bar.json index e98289c447c..eac148e211c 100644 --- a/src/locales/es/filter-bar.ts +++ b/src/locales/es/filter-bar.json @@ -1,6 +1,4 @@ -import { SimpleTranslationEntries } from "#app/interfaces/locales"; - -export const filterBar: SimpleTranslationEntries = { +{ "genFilter": "Gen.", "typeFilter": "Tipo", "caughtFilter": "Capturado", @@ -36,5 +34,5 @@ export const filterBar: SimpleTranslationEntries = { "sortByCost": "Coste", "sortByCandies": "# Caramelos", "sortByIVs": "IVs", - "sortByName": "Nombre", -}; + "sortByName": "Nombre" +} \ No newline at end of file diff --git a/src/locales/es/game-mode.json b/src/locales/es/game-mode.json new file mode 100644 index 00000000000..e7925900253 --- /dev/null +++ b/src/locales/es/game-mode.json @@ -0,0 +1,8 @@ +{ + "classic": "Clásica", + "endless": "Infinita", + "endlessSpliced": "Infinita (Fusión)", + "dailyRun": "Diaria", + "unknown": "Desconicido", + "challenge": "Desafío" +} \ No newline at end of file diff --git a/src/locales/es/game-mode.ts b/src/locales/es/game-mode.ts deleted file mode 100644 index bf399b8fc74..00000000000 --- a/src/locales/es/game-mode.ts +++ /dev/null @@ -1,10 +0,0 @@ -import { SimpleTranslationEntries } from "#app/interfaces/locales"; - -export const gameMode: SimpleTranslationEntries = { - "classic": "Clásica", - "endless": "Infinita", - "endlessSpliced": "Infinita (Fusión)", - "dailyRun": "Diaria", - "unknown": "Desconicido", - "challenge": "Desafío", -} as const; diff --git a/src/locales/es/game-stats-ui-handler.json b/src/locales/es/game-stats-ui-handler.json new file mode 100644 index 00000000000..9e26dfeeb6e --- /dev/null +++ b/src/locales/es/game-stats-ui-handler.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/src/locales/es/game-stats-ui-handler.ts b/src/locales/es/game-stats-ui-handler.ts deleted file mode 100644 index 06b2211b0dd..00000000000 --- a/src/locales/es/game-stats-ui-handler.ts +++ /dev/null @@ -1,44 +0,0 @@ -import { SimpleTranslationEntries } from "#app/interfaces/locales"; - -export const gameStatsUiHandler: SimpleTranslationEntries = { - "stats": "Stats", - "playTime": "Play Time", - "totalBattles": "Total Battles", - "starters": "Starters", - "shinyStarters": "Shiny Starters", - "speciesSeen": "Species Seen", - "speciesCaught": "Species Caught", - "ribbonsOwned": "Ribbons Owned", - "classicRuns": "Classic Runs", - "classicWins": "Classic Wins", - "dailyRunAttempts": "Daily Run Attempts", - "dailyRunWins": "Daily Run Wins", - "endlessRuns": "Endless Runs", - "highestWaveEndless": "Highest Wave (Endless)", - "highestMoney": "Highest Money", - "highestDamage": "Highest Damage", - "highestHPHealed": "Highest HP Healed", - "pokemonEncountered": "Pokémon Encountered", - "pokemonDefeated": "Pokémon Defeated", - "pokemonCaught": "Pokémon Caught", - "eggsHatched": "Eggs Hatched", - "subLegendsSeen": "Sub-Legends Seen", - "subLegendsCaught": "Sub-Legends Caught", - "subLegendsHatched": "Sub-Legends Hatched", - "legendsSeen": "Legends Seen", - "legendsCaught": "Legends Caught", - "legendsHatched": "Legends Hatched", - "mythicalsSeen": "Mythicals Seen", - "mythicalsCaught": "Mythicals Caught", - "mythicalsHatched": "Mythicals Hatched", - "shiniesSeen": "Shinies Seen", - "shiniesCaught": "Shinies Caught", - "shiniesHatched": "Shinies Hatched", - "pokemonFused": "Pokémon Fused", - "trainersDefeated": "Trainers Defeated", - "eggsPulled": "Eggs Pulled", - "rareEggsPulled": "Rare Eggs Pulled", - "epicEggsPulled": "Epic Eggs Pulled", - "legendaryEggsPulled": "Legendary Eggs Pulled", - "manaphyEggsPulled": "Manaphy Eggs Pulled", -} as const; diff --git a/src/locales/es/growth.ts b/src/locales/es/growth.json similarity index 55% rename from src/locales/es/growth.ts rename to src/locales/es/growth.json index c72ea3d76c6..4def68fde74 100644 --- a/src/locales/es/growth.ts +++ b/src/locales/es/growth.json @@ -1,10 +1,8 @@ -import { SimpleTranslationEntries } from "#app/interfaces/locales"; - -export const growth: SimpleTranslationEntries = { +{ "Erratic": "Errático", "Fast": "Rápido", "Medium_Fast": "Medio Rápido", "Medium_Slow": "Medio Lento", "Slow": "Lento", "Fluctuating": "Fluctuante" -} as const; +} \ No newline at end of file diff --git a/src/locales/es/menu-ui-handler.ts b/src/locales/es/menu-ui-handler.json similarity index 77% rename from src/locales/es/menu-ui-handler.ts rename to src/locales/es/menu-ui-handler.json index 3f3b3703166..c906324cdbf 100644 --- a/src/locales/es/menu-ui-handler.ts +++ b/src/locales/es/menu-ui-handler.json @@ -1,10 +1,8 @@ -import { SimpleTranslationEntries } from "#app/interfaces/locales"; - -export const menuUiHandler: SimpleTranslationEntries = { +{ "GAME_SETTINGS": "Ajustes", "ACHIEVEMENTS": "Logros", "STATS": "Estadísticas", - "VOUCHERS": "Vales", + "RUN_HISTORY": "Historial de partida", "EGG_LIST": "Lista de Huevos", "EGG_GACHA": "Gacha de Huevos", "MANAGE_DATA": "Gestionar Datos", @@ -16,6 +14,8 @@ export const menuUiHandler: SimpleTranslationEntries = { "importSlotSelect": "Selecciona una ranura para importar.", "exportSession": "Exportar Sesión", "exportSlotSelect": "Selecciona una ranura para exportar.", + "importRunHistory":"Importar Historial de partida", + "exportRunHistory":"Exportar Historial de partida", "importData": "Importar Datos", "exportData": "Exportar Datos", "consentPreferences": "Consentimiento de datos", @@ -24,6 +24,5 @@ export const menuUiHandler: SimpleTranslationEntries = { "linkGoogle": "Conectar Google", "unlinkGoogle": "Desconectar Google", "cancel": "Cancelar", - "losingProgressionWarning": "Perderás cualquier progreso desde el inicio de la batalla. ¿Continuar?", - "noEggs": "You are not hatching\nany eggs at the moment!" -} as const; + "losingProgressionWarning": "Perderás cualquier progreso desde el inicio de la batalla. ¿Continuar?" +} \ No newline at end of file diff --git a/src/locales/es/menu.ts b/src/locales/es/menu.json similarity index 73% rename from src/locales/es/menu.ts rename to src/locales/es/menu.json index 55bd9c6c038..bd2479a02df 100644 --- a/src/locales/es/menu.ts +++ b/src/locales/es/menu.json @@ -1,11 +1,4 @@ -import { SimpleTranslationEntries } from "#app/interfaces/locales"; - -/** - * The menu namespace holds most miscellaneous text that isn't directly part of the game's - * contents or directly related to Pokemon data. This includes menu navigation, settings, - * account interactions, descriptive text, etc. - */ -export const menu: SimpleTranslationEntries = { +{ "cancel": "Cancelar", "continue": "Continuar", "dailyRun": "Reto diario (Beta)", @@ -23,7 +16,7 @@ export const menu: SimpleTranslationEntries = { "invalidLoginUsername": "El usuario no es válido", "invalidRegisterUsername": "El usuario solo puede contener letras, números y guiones bajos", "invalidLoginPassword": "La contraseña no es válida", - "invalidRegisterPassword": "Contraseña debe tener 6 o más caracter.", + "invalidRegisterPassword": "La contraseña debe tener 6 o más caracteres.", "usernameAlreadyUsed": "El usuario ya está en uso", "accountNonExistent": "El usuario no existe", "unmatchingPassword": "La contraseña no coincide", @@ -44,19 +37,19 @@ export const menu: SimpleTranslationEntries = { "weeklyRankings": "Rankings Semanales", "noRankings": "Sin Rankings", "positionIcon": "#", - "usernameScoreboard": "Username", - "score": "Score", - "wave": "Wave", + "usernameScoreboard": "Usuario", + "score": "Puntos", + "wave": "Oleada", "loading": "Cargando…", "loadingAsset": "Cargando recurso: {{assetName}}", "playersOnline": "Jugadores en Línea", - "yes":"Sí", - "no":"No", + "yes": "Sí", + "no": "No", "disclaimer": "AVISO", - "disclaimerDescription": "Este juego es un producto inacabado; puede tener problemas de jugabilidad (incluyendo la posible pérdida\n de datos de guardado),cambiar sin avisar, y puede o no puede ser actualizado hasta ser completado.", - "choosePokemon": "Choose a Pokémon.", - "renamePokemon": "Rename Pokémon", - "rename": "Rename", - "nickname": "Nickname", - "errorServerDown": "¡Ups! Ha habido un problema al contactar con el servidor.\n\nPuedes mantener esta ventana abierta,\nel juego se reconectará automáticamente.", -} as const; + "disclaimerDescription": "Este juego es un producto inacabado; puede tener problemas de jugabilidad (incluyendo la posible pérdida\n de datos de guardado), cambiar sin avisar, y puede o no puede ser actualizado hasta ser completado.", + "choosePokemon": "Elige un Pokémon.", + "renamePokemon": "Renombrar Pokémon.", + "rename": "Renombrar", + "nickname": "Apodo", + "errorServerDown": "¡Ups! Ha habido un problema al contactar con el servidor.\n\nPuedes mantener esta ventana abierta, el juego se reconectará automáticamente." +} diff --git a/src/locales/es/modifier-select-ui-handler.ts b/src/locales/es/modifier-select-ui-handler.json similarity index 76% rename from src/locales/es/modifier-select-ui-handler.ts rename to src/locales/es/modifier-select-ui-handler.json index e78be5d4ea5..7adcb885c9e 100644 --- a/src/locales/es/modifier-select-ui-handler.ts +++ b/src/locales/es/modifier-select-ui-handler.json @@ -1,15 +1,12 @@ -import { SimpleTranslationEntries } from "#app/interfaces/locales"; - -export const modifierSelectUiHandler: SimpleTranslationEntries = { - "transfer": "Transferir", - "reroll": "Actualizar", - "lockRarities": "Bloquear rarezas", - "checkTeam": "Ver Equipo", - "transferDesc": "Transfiere un objeto que lleva un Pokémon a otro.", - "rerollDesc": "Gasta dinero para actualizar las opciones de objetos.", - "lockRaritiesDesc": "Bloquea las rarezas de los objetos al actualizar (afecta el costo de actualización).", - "checkTeamDesc": "Revisa tu equipo o usa un objeto que cambia de forma.", - "rerollCost": "{{formattedMoney}} ₽", - "itemCost": "{{formattedMoney}} ₽" - -} as const; +{ + "transfer": "Transferir", + "reroll": "Actualizar", + "lockRarities": "Bloquear rarezas", + "checkTeam": "Ver Equipo", + "transferDesc": "Transfiere un objeto que lleva un Pokémon a otro.", + "rerollDesc": "Gasta dinero para actualizar las opciones de objetos.", + "lockRaritiesDesc": "Bloquea las rarezas de los objetos al actualizar (afecta el costo de actualización).", + "checkTeamDesc": "Revisa tu equipo o usa un objeto que cambia de forma.", + "rerollCost": "{{formattedMoney}} ₽", + "itemCost": "{{formattedMoney}} ₽" +} \ No newline at end of file diff --git a/src/locales/es/modifier-type.json b/src/locales/es/modifier-type.json new file mode 100644 index 00000000000..95325788bf4 --- /dev/null +++ b/src/locales/es/modifier-type.json @@ -0,0 +1,609 @@ +{ + "ModifierType": { + "AddPokeballModifierType": { + "name": "{{modifierCount}}x {{pokeballName}}", + "description": "Recibes {{modifierCount}}x {{pokeballName}} (En inventario: {{pokeballAmount}}) \nRatio de captura: {{catchRate}}." + }, + "AddVoucherModifierType": { + "name": "{{modifierCount}}x {{voucherTypeName}}", + "description": "Recibes {{modifierCount}}x {{voucherTypeName}}." + }, + "PokemonHeldItemModifierType": { + "extra": { + "inoperable": "¡{{pokemonName}} no puede\nrecibir este objeto!", + "tooMany": "¡{{pokemonName}} tiene este objeto\ndemasiadas veces!" + } + }, + "PokemonHpRestoreModifierType": { + "description": "Restaura {{restorePoints}} PS o, al menos, un {{restorePercent}}% PS de un Pokémon.", + "extra": { + "fully": "Restaura todos los PS de un Pokémon.", + "fullyWithStatus": "Restaura todos los PS de un Pokémon y cura todos los problemas de estados." + } + }, + "PokemonReviveModifierType": { + "description": "Revive a un Pokémon y restaura {{restorePercent}}% PS." + }, + "PokemonStatusHealModifierType": { + "description": "Cura todos los problemas de estados de un Pokémon." + }, + "PokemonPpRestoreModifierType": { + "description": "Restaura {{restorePoints}} PP del movimiento que elijas de un Pokémon.", + "extra": { + "fully": "Restaura todos los PP del movimiento que elijas de un Pokémon." + } + }, + "PokemonAllMovePpRestoreModifierType": { + "description": "Restaura {{restorePoints}} PP de todos los movimientos de un Pokémon.", + "extra": { + "fully": "Restaura todos los PP de todos los movimientos de un Pokémon." + } + }, + "PokemonPpUpModifierType": { + "description": "Aumenta permanentemente los PP para un movimiento de un Pokémon en {{upPoints}} por cada 5 PP máximo (máximo 3)." + }, + "PokemonNatureChangeModifierType": { + "name": "Menta {{natureName}}", + "description": "Cambia la naturaleza de un Pokémon a {{natureName}} y desbloquea permanentemente dicha naturaleza para el inicial." + }, + "DoubleBattleChanceBoosterModifierType": { + "description": "Duplica la posibilidad de que un encuentro sea una combate doble durante {{battleCount}} combates." + }, + "TempBattleStatBoosterModifierType": { + "description": "Aumenta la est. {{tempBattleStatName}} de todos los miembros del equipo en 1 nivel durante 5 combates." + }, + "AttackTypeBoosterModifierType": { + "description": "Aumenta la potencia de los movimientos de tipo {{moveType}} de un Pokémon en un 20%." + }, + "PokemonLevelIncrementModifierType": { + "description": "Aumenta el nivel de un Pokémon en {{levels}}." + }, + "AllPokemonLevelIncrementModifierType": { + "description": "Aumenta el nivel de todos los miembros del equipo en {{levels}}." + }, + "PokemonBaseStatBoosterModifierType": { + "description": "Aumenta la est. {{statName}} base del portador en un 10%.\nCuanto mayores sean tus IVs, mayor será el límite de acumulación." + }, + "AllPokemonFullHpRestoreModifierType": { + "description": "Restaura el 100% de los PS de todos los Pokémon." + }, + "AllPokemonFullReviveModifierType": { + "description": "Revive a todos los Pokémon debilitados y restaura completamente sus PS." + }, + "MoneyRewardModifierType": { + "description": "Otorga una {{moneyMultiplier}} cantidad de dinero (₽{{moneyAmount}}).", + "extra": { + "small": "pequeña", + "moderate": "moderada", + "large": "gran" + } + }, + "ExpBoosterModifierType": { + "description": "Aumenta la ganancia de EXP en un {{boostPercent}}%." + }, + "PokemonExpBoosterModifierType": { + "description": "Aumenta la ganancia de EXP del portador en un {{boostPercent}}%." + }, + "PokemonFriendshipBoosterModifierType": { + "description": "Aumenta la ganancia de amistad por victoria en un 50%." + }, + "PokemonMoveAccuracyBoosterModifierType": { + "description": "Aumenta la precisión de los movimiento en un {{accuracyAmount}} (máximo 100)." + }, + "PokemonMultiHitModifierType": { + "description": "Los ataques golpean una vez más a costa de una reducción de poder del 60/75/82,5% por cada objeto." + }, + "TmModifierType": { + "name": "MT{{moveId}} - {{moveName}}", + "description": "Enseña {{moveName}} a un Pokémon." + }, + "TmModifierTypeWithInfo": { + "name": "MT{{moveId}} - {{moveName}}", + "description": "Enseña {{moveName}} a un Pokémon\n(Mantén pulsado C o Shift para más info)." + }, + "EvolutionItemModifierType": { + "description": "Hace que ciertos Pokémon evolucionen." + }, + "FormChangeItemModifierType": { + "description": "Hace que ciertos Pokémon cambien de forma." + }, + "FusePokemonModifierType": { + "description": "Fusiona dos Pokémon (transfiere habilidades, divide estadísticas bases y tipos, comparte movimientos)." + }, + "TerastallizeModifierType": { + "name": "Teralito {{teraType}}", + "description": "Teracristaliza al portador al tipo {{teraType}} durante 10 combates." + }, + "ContactHeldItemTransferChanceModifierType": { + "description": "Al atacar, hay un {{chancePercent}}% de posibilidades de que robes el objeto que tiene el enemigo." + }, + "TurnHeldItemTransferModifierType": { + "description": "Cada turno, el portador roba un objeto del enemigo." + }, + "EnemyAttackStatusEffectChanceModifierType": { + "description": "Agrega un {{chancePercent}}% de probabilidad de infligir {{statusEffect}} con movimientos de ataque." + }, + "EnemyEndureChanceModifierType": { + "description": "Agrega un {{chancePercent}}% de probabilidad de resistir un ataque que lo debilitaría." + }, + "RARE_CANDY": { + "name": "Carameloraro" + }, + "RARER_CANDY": { + "name": "Caramelorarísimo" + }, + "MEGA_BRACELET": { + "name": "Megapulsera", + "description": "Las megapiedras se vuelven disponibles." + }, + "DYNAMAX_BAND": { + "name": "Maximuñequera", + "description": "Las maxisetas se vuelven disponibles." + }, + "TERA_ORB": { + "name": "Orbe Teracristal", + "description": "Los Teralitos están disponibles." + }, + "MAP": { + "name": "Mapa", + "description": "Te permite elegir tu camino al final del bioma." + }, + "POTION": { + "name": "Poción" + }, + "SUPER_POTION": { + "name": "Superpoción" + }, + "HYPER_POTION": { + "name": "Hiperpoción" + }, + "MAX_POTION": { + "name": "Máx. poción" + }, + "FULL_RESTORE": { + "name": "Restau. todo" + }, + "REVIVE": { + "name": "Revivir" + }, + "MAX_REVIVE": { + "name": "Máx. revivir" + }, + "FULL_HEAL": { + "name": "Cura total" + }, + "SACRED_ASH": { + "name": "Ceniza sagrada" + }, + "REVIVER_SEED": { + "name": "Semilla revivir", + "description": "Revive al portador con la mitad de sus PS al debilitarse por un golpe directo." + }, + "WHITE_HERB": { + "name": "Hierba blanca", + "description": "Un objeto que puede llevar un Pokémon. Restaurará cualquier estadística reducida en combate." + }, + "ETHER": { + "name": "Éter" + }, + "MAX_ETHER": { + "name": "Éter máx." + }, + "ELIXIR": { + "name": "Elixir" + }, + "MAX_ELIXIR": { + "name": "Elixir máx." + }, + "PP_UP": { + "name": "Más PP" + }, + "PP_MAX": { + "name": "Máx PP" + }, + "LURE": { + "name": "Incienso" + }, + "SUPER_LURE": { + "name": "Superincienso" + }, + "MAX_LURE": { + "name": "Incienso máximo" + }, + "MEMORY_MUSHROOM": { + "name": "Seta recuerdo", + "description": "Recuerda un movimiento olvidado de un Pokémon." + }, + "EXP_SHARE": { + "name": "Repartir EXP", + "description": "Los que no combatan reciben el 20% de la EXP." + }, + "EXP_BALANCE": { + "name": "Equilibrador EXP", + "description": "Da una mayor parte de la EXP recibida a los miembros del equipo que tengan menos nivel." + }, + "OVAL_CHARM": { + "name": "Amuleto Oval", + "description": "Cada Pokémon combatiente recibe un 10% adicional de la EXP total." + }, + "EXP_CHARM": { + "name": "Amuleto EXP" + }, + "SUPER_EXP_CHARM": { + "name": "Super Amuleto EXP" + }, + "GOLDEN_EXP_CHARM": { + "name": "Amuleto EXP Dorado" + }, + "LUCKY_EGG": { + "name": "Huevo suerte" + }, + "GOLDEN_EGG": { + "name": "Huevo dorado" + }, + "SOOTHE_BELL": { + "name": "Camp. alivio" + }, + "SCOPE_LENS": { + "name": "Periscopio", + "description": "Aumenta la probabilidad de asestar un golpe crítico." + }, + "LEEK": { + "name": "Puerro", + "description": "Puerro muy largo y duro que aumenta la probabilidad de asestar un golpe crítico. Debe llevarlo Farfetch'd." + }, + "EVIOLITE": { + "name": "Mineral evolutivo", + "description": "Roca misteriosa. El Pokémon portador aumentará su Defensa y su Defensa Especial si aún puede evolucionar." + }, + "SOUL_DEW": { + "name": "Rocío bondad", + "description": "Aumenta la influencia de la naturaleza de un Pokémon en sus estadísticas en un 10% (aditivo)." + }, + "NUGGET": { + "name": "Pepita" + }, + "BIG_NUGGET": { + "name": "Maxipepita" + }, + "RELIC_GOLD": { + "name": "Real de oro" + }, + "AMULET_COIN": { + "name": "Moneda amuleto", + "description": "Aumenta el dinero ganado en un 20%." + }, + "GOLDEN_PUNCH": { + "name": "Puño Dorado", + "description": "Otorga el 50% del daño infligido como dinero." + }, + "COIN_CASE": { + "name": "Monedero", + "description": "Después de cada 10 combates, recibe el 10% de tu dinero en intereses." + }, + "LOCK_CAPSULE": { + "name": "Cápsula candado", + "description": "Permite bloquear las rarezas de los objetos al refrescar objetos." + }, + "GRIP_CLAW": { + "name": "Garra garfio" + }, + "WIDE_LENS": { + "name": "Lupa" + }, + "MULTI_LENS": { + "name": "Multilupa" + }, + "HEALING_CHARM": { + "name": "Amuleto curación", + "description": "Aumenta la efectividad de los movimientos y objetos de curacion de PS en un 10% (excepto revivir)." + }, + "CANDY_JAR": { + "name": "Tarrón de caramelos", + "description": "Aumenta la cantidad de niveles otorgados por los ítems Caramelos Raros en 1." + }, + "BERRY_POUCH": { + "name": "Saco bayas", + "description": "Añade un 30% de posibilidades de que una baya no se gaste al usarla." + }, + "FOCUS_BAND": { + "name": "Banda aguante", + "description": "Agrega un 10% de probabilidad de resistir un ataque que lo debilitaría." + }, + "QUICK_CLAW": { + "name": "Garra rápida", + "description": "Agrega un 10% de probabilidad de atacar primero independientemente de la velocidad (después de la prioridad)." + }, + "KINGS_ROCK": { + "name": "Roca del rey", + "description": "Agrega un 10% de probabilidad de que un ataque haga que el oponente retroceda." + }, + "LEFTOVERS": { + "name": "Restos", + "description": "Cura 1/16 de los PS máximo de un Pokémon cada turno." + }, + "SHELL_BELL": { + "name": "Cascabel concha", + "description": "Cura 1/8 del daño infligido por un Pokémon." + }, + "TOXIC_ORB": { + "name": "Toxiesfera", + "description": "Extraña esfera que envenena gravemente a quien la usa en combate." + }, + "FLAME_ORB": { + "name": "Llamasfera", + "description": "Extraña esfera que causa quemaduras a quien la usa en combate." + }, + "BATON": { + "name": "Testigo", + "description": "Permite pasar los efectos al cambiar de Pokémon, también evita las trampas." + }, + "SHINY_CHARM": { + "name": "Amuleto iris", + "description": "Aumenta drásticamente la posibilidad de que un Pokémon salvaje sea Shiny." + }, + "ABILITY_CHARM": { + "name": "Amuleto habilidad", + "description": "Aumenta drásticamente la posibilidad de que un Pokémon salvaje tenga una habilidad oculta." + }, + "IV_SCANNER": { + "name": "Escáner IV", + "description": "Permite escanear los IVs de Pokémon salvajes. Se revelan 2 IVs por cada objeto.\nLos mejores IVs se muestran primero." + }, + "DNA_SPLICERS": { + "name": "Punta ADN" + }, + "MINI_BLACK_HOLE": { + "name": "Mini agujero negro" + }, + "GOLDEN_POKEBALL": { + "name": "Poké Ball Dorada", + "description": "Agrega 1 opción de objeto extra al final de cada combate." + }, + "ENEMY_DAMAGE_BOOSTER": { + "name": "Ficha de daño", + "description": "Aumenta el daño en un 5%." + }, + "ENEMY_DAMAGE_REDUCTION": { + "name": "Ficha de protección", + "description": "Reduce el daño recibido en un 2,5%." + }, + "ENEMY_HEAL": { + "name": "Ficha de curación", + "description": "Cura el 2% de los PS máximo en cada turno." + }, + "ENEMY_ATTACK_POISON_CHANCE": { + "name": "Ficha veneno" + }, + "ENEMY_ATTACK_PARALYZE_CHANCE": { + "name": "Ficha parálisis" + }, + "ENEMY_ATTACK_BURN_CHANCE": { + "name": "Ficha quemadura" + }, + "ENEMY_STATUS_EFFECT_HEAL_CHANCE": { + "name": "Ficha cura total", + "description": "Agrega un 2.5% de probabilidad cada turno de curar un problema de estado." + }, + "ENEMY_ENDURE_CHANCE": { + "name": "Ficha aguante" + }, + "ENEMY_FUSED_CHANCE": { + "name": "Ficha fusión", + "description": "Agrega un 1% de probabilidad de que un Pokémon salvaje sea una fusión." + } + }, + "SpeciesBoosterItem": { + "LIGHT_BALL": { + "name": "Bola luminosa", + "description": "Asombrosa esfera que aumenta el Ataque y el Ataque Especial. Debe llevarla Pikachu." + }, + "THICK_CLUB": { + "name": "Hueso grueso", + "description": "Extraño tipo de hueso que potencia los ataques físicos. Debe llevarlo Cubone o Marowak." + }, + "METAL_POWDER": { + "name": "Polvo metálico", + "description": "Polvo muy fino, pero a la vez poderoso, que aumenta la Defensa. Debe llevarlo Ditto." + }, + "QUICK_POWDER": { + "name": "Polvo veloz", + "description": "Polvo muy fino, pero a la vez poderoso, que aumenta la Velocidad. Debe llevarlo Ditto." + } + }, + "TempBattleStatBoosterItem": { + "x_attack": "Ataque X", + "x_defense": "Defensa X", + "x_sp_atk": "Ataq. Esp. X", + "x_sp_def": "Def. Esp. X", + "x_speed": "Velocidad X", + "x_accuracy": "Precisión X", + "dire_hit": "Crítico X" + }, + "TempBattleStatBoosterStatName": { + "ATK": "Ataque", + "DEF": "Defensa", + "SPATK": "Ataq. Esp.", + "SPDEF": "Def. Esp.", + "SPD": "Velocidad", + "ACC": "Precisión", + "CRIT": "Tasa de crítico", + "EVA": "Evasión", + "DEFAULT": "???" + }, + "AttackTypeBoosterItem": { + "silk_scarf": "Pañuelo seda", + "black_belt": "Cinturón negro", + "sharp_beak": "Pico afilado", + "poison_barb": "Flecha venenosa", + "soft_sand": "Arena fina", + "hard_stone": "Piedra dura", + "silver_powder": "Polvo plata", + "spell_tag": "Hechizo", + "metal_coat": "Revest. metálico", + "charcoal": "Carbón", + "mystic_water": "Agua mística", + "miracle_seed": "Semilla milagro", + "magnet": "Imán", + "twisted_spoon": "Cuchara torcida", + "never_melt_ice": "Antiderretir", + "dragon_fang": "Colmillo dragón", + "black_glasses": "Gafas de sol", + "fairy_feather": "Pluma feérica" + }, + "BaseStatBoosterItem": { + "hp_up": "Más PS", + "protein": "Proteína", + "iron": "Hierro", + "calcium": "Calcio", + "zinc": "Zinc", + "carbos": "Carburante" + }, + "EvolutionItem": { + "NONE": "Ninguno", + "LINKING_CORD": "Cordón unión", + "SUN_STONE": "Piedra solar", + "MOON_STONE": "Piedra lunar", + "LEAF_STONE": "Piedra hoja", + "FIRE_STONE": "Piedra fuego", + "WATER_STONE": "Piedra agua", + "THUNDER_STONE": "Piedra trueno", + "ICE_STONE": "Piedra hielo", + "DUSK_STONE": "Piedra noche", + "DAWN_STONE": "Piedra alba", + "SHINY_STONE": "Piedra día", + "CRACKED_POT": "Tetera agrietada", + "SWEET_APPLE": "Manzana dulce", + "TART_APPLE": "Manzana ácida", + "STRAWBERRY_SWEET": "Confite fresa", + "UNREMARKABLE_TEACUP": "Cuenco mediocre", + "CHIPPED_POT": "Tetera rota", + "BLACK_AUGURITE": "Mineral negro", + "GALARICA_CUFF": "Brazal galanuez", + "GALARICA_WREATH": "Corona galanuez", + "PEAT_BLOCK": "Bloque de turba", + "AUSPICIOUS_ARMOR": "Armadura auspiciosa", + "MALICIOUS_ARMOR": "Armadura maldita", + "MASTERPIECE_TEACUP": "Cuenco exquisito", + "METAL_ALLOY": "Metal compuesto", + "SCROLL_OF_DARKNESS": "Manuscrito sombras", + "SCROLL_OF_WATERS": "Manuscrito aguas", + "SYRUPY_APPLE": "Manzana melosa" + }, + "FormChangeItem": { + "NONE": "Ninguno", + "ABOMASITE": "Abomasnowita", + "ABSOLITE": "Absolita", + "AERODACTYLITE": "Aerodactylita", + "AGGRONITE": "Aggronita", + "ALAKAZITE": "Alakazamita", + "ALTARIANITE": "Altarianita", + "AMPHAROSITE": "Ampharosita", + "AUDINITE": "Audinita", + "BANETTITE": "Banettita", + "BEEDRILLITE": "Beedrillita", + "BLASTOISINITE": "Blastoisita", + "BLAZIKENITE": "Blazikenita", + "CAMERUPTITE": "Cameruptita", + "CHARIZARDITE_X": "Charizardita X", + "CHARIZARDITE_Y": "Charizardita Y", + "DIANCITE": "Diancita", + "GALLADITE": "Galladita", + "GARCHOMPITE": "Garchompita", + "GARDEVOIRITE": "Gardevoirita", + "GENGARITE": "Gengarita", + "GLALITITE": "Glalita", + "GYARADOSITE": "Gyaradosita", + "HERACRONITE": "Heracrossita", + "HOUNDOOMINITE": "Houndoomita", + "KANGASKHANITE": "Kangaskhanita", + "LATIASITE": "Latiasita", + "LATIOSITE": "Latiosita", + "LOPUNNITE": "Lopunnita", + "LUCARIONITE": "Lucarita", + "MANECTITE": "Manectricita", + "MAWILITE": "Mawilita", + "MEDICHAMITE": "Medichamita", + "METAGROSSITE": "Metagrossita", + "MEWTWONITE_X": "Mewtwoita X", + "MEWTWONITE_Y": "Mewtwoita Y", + "PIDGEOTITE": "Pidgeotita", + "PINSIRITE": "Pinsirita", + "RAYQUAZITE": "Rayquazita", + "SABLENITE": "Sableynita", + "SALAMENCITE": "Salamencita", + "SCEPTILITE": "Sceptilita", + "SCIZORITE": "Scizorita", + "SHARPEDONITE": "Sharpedonita", + "SLOWBRONITE": "Slowbronita", + "STEELIXITE": "Steelixita", + "SWAMPERTITE": "Swampertita", + "TYRANITARITE": "Tyranitarita", + "VENUSAURITE": "Venusaurita", + "BLUE_ORB": "Prisma azul", + "RED_ORB": "Prisma rojo", + "SHARP_METEORITE": "Meteorito afilado", + "HARD_METEORITE": "Meteorito duro", + "SMOOTH_METEORITE": "Meteorito suave", + "ADAMANT_CRYSTAL": "Gran diamansfera", + "LUSTROUS_GLOBE": "Gran lustresfera", + "GRISEOUS_CORE": "Gran griseosfera", + "REVEAL_GLASS": "Espejo veraz", + "GRACIDEA": "Gracídea", + "MAX_MUSHROOMS": "Maxisetas", + "DARK_STONE": "Orbe oscuro", + "LIGHT_STONE": "Orbe claro", + "PRISON_BOTTLE": "Vasija castigo", + "N_LUNARIZER": "Necroluna", + "N_SOLARIZER": "Necrosol", + "RUSTED_SWORD": "Espada oxidada", + "RUSTED_SHIELD": "Escudo oxidado", + "ICY_REINS_OF_UNITY": "Riendas unión heladas", + "SHADOW_REINS_OF_UNITY": "Riendas unión oscuras", + "WELLSPRING_MASK": "Máscara fuente", + "HEARTHFLAME_MASK": "Máscara horno", + "CORNERSTONE_MASK": "Máscara cimiento", + "SHOCK_DRIVE": "FulgoROM", + "BURN_DRIVE": "PiroROM", + "CHILL_DRIVE": "CrioROM", + "DOUSE_DRIVE": "HidroROM", + "ULTRANECROZIUM_Z": "Ultranecrostal Z", + "FIST_PLATE": "Tabla fuerte", + "SKY_PLATE": "Tabla cielo", + "TOXIC_PLATE": "Tabla tóxica", + "EARTH_PLATE": "Tabla terrax", + "STONE_PLATE": "Tabla pétrea", + "INSECT_PLATE": "Tabla bicho", + "SPOOKY_PLATE": "Tabla terror", + "IRON_PLATE": "Tabla acero", + "FLAME_PLATE": "Tabla llama", + "SPLASH_PLATE": "Tabla linfa", + "MEADOW_PLATE": "Tabla pradal", + "ZAP_PLATE": "Tabla trueno", + "MIND_PLATE": "Tabla mental", + "ICICLE_PLATE": "Tabla helada", + "DRACO_PLATE": "Tabla draco", + "DREAD_PLATE": "Tabla oscura", + "PIXIE_PLATE": "Tabla duende", + "BLANK_PLATE": "Tabla neutra", + "LEGEND_PLATE": "Tabla legendaria", + "FIGHTING_MEMORY": "Disco lucha", + "FLYING_MEMORY": "Disco volador", + "POISON_MEMORY": "Disco veneno", + "GROUND_MEMORY": "Disco tierra", + "ROCK_MEMORY": "Disco roca", + "BUG_MEMORY": "Disco bicho", + "GHOST_MEMORY": "Disco fantasma", + "STEEL_MEMORY": "Disco acero", + "FIRE_MEMORY": "Disco fuego", + "WATER_MEMORY": "Disco agua", + "GRASS_MEMORY": "Disco planta", + "ELECTRIC_MEMORY": "Disco eléctrico", + "PSYCHIC_MEMORY": "Disco psíquico", + "ICE_MEMORY": "Disco hielo", + "DRAGON_MEMORY": "Disco dragón", + "DARK_MEMORY": "Disco siniestro", + "FAIRY_MEMORY": "Disco hada", + "BLANK_MEMORY": "Disco en blanco" + } +} diff --git a/src/locales/es/modifier-type.ts b/src/locales/es/modifier-type.ts deleted file mode 100644 index fc3781d303b..00000000000 --- a/src/locales/es/modifier-type.ts +++ /dev/null @@ -1,456 +0,0 @@ -import { ModifierTypeTranslationEntries } from "#app/interfaces/locales"; - -export const modifierType: ModifierTypeTranslationEntries = { - ModifierType: { - "AddPokeballModifierType": { - name: "{{modifierCount}}x {{pokeballName}}", - description: "Recibes {{modifierCount}}x {{pokeballName}} (En inventario: {{pokeballAmount}}) \nRatio de captura: {{catchRate}}.", - }, - "AddVoucherModifierType": { - name: "{{modifierCount}}x {{voucherTypeName}}", - description: "Recibes {{modifierCount}}x {{voucherTypeName}}.", - }, - "PokemonHeldItemModifierType": { - extra: { - "inoperable": "¡{{pokemonName}} no puede\nrecibir este objeto!", - "tooMany": "¡{{pokemonName}} tiene este objeto\ndemasiadas veces!", - } - }, - "PokemonHpRestoreModifierType": { - description: "Restaura {{restorePoints}} PS o, al menos, un {{restorePercent}}% PS de un Pokémon.", - extra: { - "fully": "Restaura todos los PS de un Pokémon.", - "fullyWithStatus": "Restaura todos los PS de un Pokémon y cura todos los problemas de estados.", - } - }, - "PokemonReviveModifierType": { - description: "Revive a un Pokémon y restaura {{restorePercent}}% PS.", - }, - "PokemonStatusHealModifierType": { - description: "Cura todos los problemas de estados de un Pokémon.", - }, - "PokemonPpRestoreModifierType": { - description: "Restaura {{restorePoints}} PP del movimiento que elijas de un Pokémon.", - extra: { - "fully": "Restaura todos los PP del movimiento que elijas de un Pokémon.", - } - }, - "PokemonAllMovePpRestoreModifierType": { - description: "Restaura {{restorePoints}} PP de todos los movimientos de un Pokémon.", - extra: { - "fully": "Restaura todos los PP de todos los movimientos de un Pokémon.", - } - }, - "PokemonPpUpModifierType": { - description: "Aumenta permanentemente los PP para un movimiento de un Pokémon en {{upPoints}} por cada 5 PP máximo (máximo 3).", - }, - "PokemonNatureChangeModifierType": { - name: "Menta {{natureName}}", - description: "Cambia la naturaleza de un Pokémon a {{natureName}} y desbloquea permanentemente dicha naturaleza para el inicial.", - }, - "DoubleBattleChanceBoosterModifierType": { - description: "Duplica la posibilidad de que un encuentro sea una combate doble durante {{battleCount}} combates.", - }, - "TempBattleStatBoosterModifierType": { - description: "Aumenta la est. {{tempBattleStatName}} de todos los miembros del equipo en 1 nivel durante 5 combates.", - }, - "AttackTypeBoosterModifierType": { - description: "Aumenta la potencia de los movimientos de tipo {{moveType}} de un Pokémon en un 20%.", - }, - "PokemonLevelIncrementModifierType": { - description: "Aumenta el nivel de un Pokémon en {{levels}}.", - }, - "AllPokemonLevelIncrementModifierType": { - description: "Aumenta el nivel de todos los miembros del equipo en {{levels}}.", - }, - "PokemonBaseStatBoosterModifierType": { - description: "Aumenta la est. {{statName}} base del portador en un 10%.\nCuanto mayores sean tus IVs, mayor será el límite de acumulación.", - }, - "AllPokemonFullHpRestoreModifierType": { - description: "Restaura el 100% de los PS de todos los Pokémon.", - }, - "AllPokemonFullReviveModifierType": { - description: "Revive a todos los Pokémon debilitados y restaura completamente sus PS.", - }, - "MoneyRewardModifierType": { - description: "Otorga una {{moneyMultiplier}} cantidad de dinero (₽{{moneyAmount}}).", - extra: { - "small": "pequeña", - "moderate": "moderada", - "large": "gran", - }, - }, - "ExpBoosterModifierType": { - description: "Aumenta la ganancia de EXP en un {{boostPercent}}%.", - }, - "PokemonExpBoosterModifierType": { - description: "Aumenta la ganancia de EXP del portador en un {{boostPercent}}%.", - }, - "PokemonFriendshipBoosterModifierType": { - description: "Aumenta la ganancia de amistad por victoria en un 50%.", - }, - "PokemonMoveAccuracyBoosterModifierType": { - description: "Aumenta la precisión de los movimiento en un {{accuracyAmount}} (máximo 100).", - }, - "PokemonMultiHitModifierType": { - description: "Los ataques golpean una vez más a costa de una reducción de poder del 60/75/82,5% por cada objeto.", - }, - "TmModifierType": { - name: "MT{{moveId}} - {{moveName}}", - description: "Enseña {{moveName}} a un Pokémon.", - }, - "TmModifierTypeWithInfo": { - name: "MT{{moveId}} - {{moveName}}", - description: "Enseña {{moveName}} a un Pokémon\n(Hold C or Shift for more info).", - }, - "EvolutionItemModifierType": { - description: "Hace que ciertos Pokémon evolucionen.", - }, - "FormChangeItemModifierType": { - description: "Hace que ciertos Pokémon cambien de forma.", - }, - "FusePokemonModifierType": { - description: "Fusiona dos Pokémon (transfiere habilidades, divide estadísticas bases y tipos, comparte movimientos).", - }, - "TerastallizeModifierType": { - name: "Teralito {{teraType}}", - description: "Teracristaliza al portador al tipo {{teraType}} durante 10 combates.", - }, - "ContactHeldItemTransferChanceModifierType": { - description: "Al atacar, hay un {{chancePercent}}% de posibilidades de que robes el objeto que tiene el enemigo.", - }, - "TurnHeldItemTransferModifierType": { - description: "Cada turno, el portador roba un objeto del enemigo.", - }, - "EnemyAttackStatusEffectChanceModifierType": { - description: "Agrega un {{chancePercent}}% de probabilidad de infligir {{statusEffect}} con movimientos de ataque.", - }, - "EnemyEndureChanceModifierType": { - description: "Agrega un {{chancePercent}}% de probabilidad de resistir un ataque que lo debilitaría.", - }, - - "RARE_CANDY": { name: "Carameloraro" }, - "RARER_CANDY": { name: "Caramelorarísimo" }, - - "MEGA_BRACELET": { name: "Mega-aro", description: "Las Megapiedras están disponibles." }, - "DYNAMAX_BAND": { name: "Maximuñequera", description: "Las Maxisetas están disponibles." }, - "TERA_ORB": { name: "Orbe Teracristal", description: "Los Teralitos están disponibles." }, - - "MAP": { name: "Mapa", description: "Te permite elegir tu camino al final del bioma." }, - - "POTION": { name: "Poción" }, - "SUPER_POTION": { name: "Superpoción" }, - "HYPER_POTION": { name: "Hiperpoción" }, - "MAX_POTION": { name: "Máx. Poción" }, - "FULL_RESTORE": { name: "Restau. Todo" }, - - "REVIVE": { name: "Revivir" }, - "MAX_REVIVE": { name: "Máx. Revivir" }, - - "FULL_HEAL": { name: "Cura Total" }, - - "SACRED_ASH": { name: "Cen. Sagrada" }, - - "REVIVER_SEED": { name: "Semilla Revivir", description: "Revive al portador con la mitad de sus PS al debilitarse por un golpe directo." }, - - "WHITE_HERB": { name: "White Herb", description: "An item to be held by a Pokémon. It will restore any lowered stat in battle." }, - - "ETHER": { name: "Éter" }, - "MAX_ETHER": { name: "Éter Máx." }, - - "ELIXIR": { name: "Elixir" }, - "MAX_ELIXIR": { name: "Elixir Máx." }, - - "PP_UP": { name: "Más PP" }, - "PP_MAX": { name: "Máx PP" }, - - "LURE": { name: "Incienso" }, - "SUPER_LURE": { name: "Superincienso" }, - "MAX_LURE": { name: "Incienso Máximo" }, - - "MEMORY_MUSHROOM": { name: "Seta Recuerdo", description: "Recuerda un movimiento olvidado de un Pokémon." }, - - "EXP_SHARE": { name: "Repartir EXP", description: "Los que no combatan reciben el 20% de la EXP." }, - "EXP_BALANCE": { name: "Equilibrar EXP", description: "Da mayor parte de la EXP recibida a los miembros del equipo que tengan menos nivel." }, - - "OVAL_CHARM": { name: "Amuleto Oval", description: "Cada Pokémon combatiente recibe un 10% adicional de la EXP total." }, - - "EXP_CHARM": { name: "Amuleto EXP" }, - "SUPER_EXP_CHARM": { name: "Super Amuleto EXP" }, - "GOLDEN_EXP_CHARM": { name: "Amuleto EXP Dorado" }, - - "LUCKY_EGG": { name: "Huevo Suerte" }, - "GOLDEN_EGG": { name: "Huevo Dorado" }, - - "SOOTHE_BELL": { name: "Camp. Alivio" }, - - "SCOPE_LENS": { name: "Periscopio", description: "Aumenta la probabilidad de asestar un golpe crítico." }, - "LEEK": { name: "Puerro", description: "Puerro muy largo y duro que aumenta la probabilidad de asestar un golpe crítico. Debe llevarlo Farfetch'd." }, - - "EVIOLITE": { name: "Mineral Evolutivo", description: "Roca misteriosa. El Pokémon portador aumentará su Defensa y su Defensa Especial si aún puede evolucionar." }, - - "SOUL_DEW": { name: "Rocío bondad", description: "Aumenta la influencia de la naturaleza de un Pokémon en sus estadísticas en un 10% (aditivo)." }, - - "NUGGET": { name: "Pepita" }, - "BIG_NUGGET": { name: "Maxipepita" }, - "RELIC_GOLD": { name: "Real de oro" }, - - "AMULET_COIN": { name: "Moneda Amuleto", description: "Aumenta el dinero ganado en un 20%." }, - "GOLDEN_PUNCH": { name: "Puño Dorado", description: "Otorga el 50% del daño infligido como dinero." }, - "COIN_CASE": { name: "Monedero", description: "Después de cada 10 combates, recibe el 10% de tu dinero en intereses." }, - - "LOCK_CAPSULE": { name: "Cápsula candado", description: "Le permite bloquear las rarezas de los objetos al cambiar de objetos." }, - - "GRIP_CLAW": { name: "Garra Garfio" }, - "WIDE_LENS": { name: "Lupa" }, - - "MULTI_LENS": { name: "Multilupa" }, - - "HEALING_CHARM": { name: "Amuleto curación", description: "Aumenta la efectividad de los movimientos y objetos de curacion de PS en un 10% (excepto revivir)." }, - "CANDY_JAR": { name: "Candy Jar", description: "Aumenta en 1 el número de niveles añadidos por los carameloraros." }, - - "BERRY_POUCH": { name: "Saco Bayas", description: "Agrega un 30% de posibilidades de que una baya usada no se consuma." }, - - "FOCUS_BAND": { name: "Cinta Focus", description: "Agrega un 10% de probabilidad de resistir un ataque que lo debilitaría." }, - - "QUICK_CLAW": { name: "Garra Rápida", description: "Agrega un 10% de probabilidad de atacar primero independientemente de la velocidad (después de la prioridad)." }, - - "KINGS_ROCK": { name: "Roca del Rey", description: "Agrega un 10% de probabilidad de que un ataque haga que el oponente retroceda." }, - - "LEFTOVERS": { name: "Restos", description: "Cura 1/16 de los PS máximo de un Pokémon cada turno." }, - "SHELL_BELL": { name: "Camp Concha", description: "Cura 1/8 del daño infligido por un Pokémon." }, - - "TOXIC_ORB": { name: "Toxiesfera", description: "Extraña esfera que envenena gravemente a quien la usa en combate." }, - "FLAME_ORB": { name: "Llamasfera", description: "Extraña esfera que causa quemaduras a quien la usa en combate." }, - - "BATON": { name: "Relevo", description: "Permite pasar los efectos al cambiar de Pokémon, también evita las trampas." }, - - "SHINY_CHARM": { name: "Amuleto Iris", description: "Aumenta drásticamente la posibilidad de que un Pokémon salvaje sea Shiny." }, - "ABILITY_CHARM": { name: "Amuleto Habilidad", description: "Aumenta drásticamente la posibilidad de que un Pokémon salvaje tenga una habilidad oculta." }, - - "IV_SCANNER": { name: "Escáner IV", description: "Permite escanear los IVs de Pokémon salvajes. Se revelan 2 IVs por cada objeto.\nLos mejores IVs se muestran primero." }, - - "DNA_SPLICERS": { name: "Punta ADN" }, - - "MINI_BLACK_HOLE": { name: "Mini Agujero Negro" }, - - "GOLDEN_POKEBALL": { name: "Poké Ball Dorada", description: "Agrega 1 opción de objeto extra al final de cada combate." }, - - "ENEMY_DAMAGE_BOOSTER": { name: "Ficha Daño", description: "Aumenta el daño en un 5%." }, - "ENEMY_DAMAGE_REDUCTION": { name: "Ficha Protección", description: "Reduce el daño recibido en un 2,5%." }, - "ENEMY_HEAL": { name: "Ficha Curación", description: "Cura el 2% de los PS máximo en cada turno." }, - "ENEMY_ATTACK_POISON_CHANCE": { name: "Ficha Veneno" }, - "ENEMY_ATTACK_PARALYZE_CHANCE": { name: "Ficha Parálisis" }, - "ENEMY_ATTACK_BURN_CHANCE": { name: "Ficha Quemadura" }, - "ENEMY_STATUS_EFFECT_HEAL_CHANCE": { name: "Ficha Cura Total", description: "Agrega un 2.5% de probabilidad cada turno de curar un problema de estado." }, - "ENEMY_ENDURE_CHANCE": { name: "Ficha Aguante" }, - "ENEMY_FUSED_CHANCE": { name: "Ficha Fusión", description: "Agrega un 1% de probabilidad de que un Pokémon salvaje sea una fusión." }, - }, - SpeciesBoosterItem: { - "LIGHT_BALL": { name: "Bola Luminosa", description: "Asombrosa esfera que aumenta el Ataque y el Ataque Especial. Debe llevarla Pikachu." }, - "THICK_CLUB": { name: "Hueso Grueso", description: "Extraño tipo de hueso que potencia los ataques físicos. Debe llevarlo Cubone o Marowak." }, - "METAL_POWDER": { name: "Polvo Metálico", description: "Polvo muy fino, pero a la vez poderoso, que aumenta la Defensa. Debe llevarlo Ditto." }, - "QUICK_POWDER": { name: "Polvo Veloz", description: "Polvo muy fino, pero a la vez poderoso, que aumenta la Velocidad. Debe llevarlo Ditto." } - }, - TempBattleStatBoosterItem: { - "x_attack": "Ataque X", - "x_defense": "Defensa X", - "x_sp_atk": "Ataq. Esp. X", - "x_sp_def": "Def. Esp. X", - "x_speed": "Velocidad X", - "x_accuracy": "Precisión X", - "dire_hit": "Crítico X", - }, - - TempBattleStatBoosterStatName: { - "ATK": "Attack", - "DEF": "Defense", - "SPATK": "Sp. Atk", - "SPDEF": "Sp. Def", - "SPD": "Speed", - "ACC": "Accuracy", - "CRIT": "Critical Hit Ratio", - "EVA": "Evasiveness", - "DEFAULT": "???", - }, - AttackTypeBoosterItem: { - "silk_scarf": "Pañuelo Seda", - "black_belt": "Cinturón Negro", - "sharp_beak": "Pico Afilado", - "poison_barb": "Flecha Venenosa", - "soft_sand": "Arena Fina", - "hard_stone": "Piedra Dura", - "silver_powder": "Polvo Plata", - "spell_tag": "Hechizo", - "metal_coat": "Rev. Metálico", - "charcoal": "Carbón", - "mystic_water": "Agua Mística", - "miracle_seed": "Semilla Milagro", - "magnet": "Imán", - "twisted_spoon": "Cuchara Torcida", - "never_melt_ice": "Antiderretir", - "dragon_fang": "Colmillo Dragón", - "black_glasses": "Gafas de Sol", - "fairy_feather": "Pluma Hada", - }, - BaseStatBoosterItem: { - "hp_up": "Más PS", - "protein": "Proteína", - "iron": "Hierro", - "calcium": "Calcio", - "zinc": "Zinc", - "carbos": "Carburante", - }, - EvolutionItem: { - "NONE": "None", - - "LINKING_CORD": "Cordón Unión", - "SUN_STONE": "Piedra Solar", - "MOON_STONE": "Piedra Lunar", - "LEAF_STONE": "Piedra Hoja", - "FIRE_STONE": "Piedra Fuego", - "WATER_STONE": "Piedra Agua", - "THUNDER_STONE": "Piedra Trueno", - "ICE_STONE": "Piedra Hielo", - "DUSK_STONE": "Piedra Noche", - "DAWN_STONE": "Piedra Alba", - "SHINY_STONE": "Piedra Día", - "CRACKED_POT": "Tetera Agrietada", - "SWEET_APPLE": "Manzana Dulce", - "TART_APPLE": "Manzana Ácida", - "STRAWBERRY_SWEET": "Confite Fresa", - "UNREMARKABLE_TEACUP": "Cuenco Mediocre", - - "CHIPPED_POT": "Tetera Rota", - "BLACK_AUGURITE": "Mineral Negro", - "GALARICA_CUFF": "Brazal Galanuez", - "GALARICA_WREATH": "Corona Galanuez", - "PEAT_BLOCK": "Bloque de Turba", - "AUSPICIOUS_ARMOR": "Armadura Auspiciosa", - "MALICIOUS_ARMOR": "Armadura Maldita", - "MASTERPIECE_TEACUP": "Cuenco Exquisito", - "METAL_ALLOY": "Metal Compuesto", - "SCROLL_OF_DARKNESS": "Manuscrito Sombras", - "SCROLL_OF_WATERS": "Manuscrito Aguas", - "SYRUPY_APPLE": "Manzana Melosa", - }, - FormChangeItem: { - "NONE": "None", - - "ABOMASITE": "Abomasnowita", - "ABSOLITE": "Absolita", - "AERODACTYLITE": "Aerodactylita", - "AGGRONITE": "Aggronita", - "ALAKAZITE": "Alakazamita", - "ALTARIANITE": "Altarianita", - "AMPHAROSITE": "Ampharosita", - "AUDINITE": "Audinita", - "BANETTITE": "Banettita", - "BEEDRILLITE": "Beedrillita", - "BLASTOISINITE": "Blastoisita", - "BLAZIKENITE": "Blazikenita", - "CAMERUPTITE": "Cameruptita", - "CHARIZARDITE_X": "Charizardita X", - "CHARIZARDITE_Y": "Charizardita Y", - "DIANCITE": "Diancita", - "GALLADITE": "Galladita", - "GARCHOMPITE": "Garchompita", - "GARDEVOIRITE": "Gardevoirita", - "GENGARITE": "Gengarita", - "GLALITITE": "Glalita", - "GYARADOSITE": "Gyaradosita", - "HERACRONITE": "Heracrossita", - "HOUNDOOMINITE": "Houndoomita", - "KANGASKHANITE": "Kangaskhanita", - "LATIASITE": "Latiasita", - "LATIOSITE": "Latiosita", - "LOPUNNITE": "Lopunnita", - "LUCARIONITE": "Lucarita", - "MANECTITE": "Manectricita", - "MAWILITE": "Mawilita", - "MEDICHAMITE": "Medichamita", - "METAGROSSITE": "Metagrossita", - "MEWTWONITE_X": "Mewtwoita X", - "MEWTWONITE_Y": "Mewtwoita Y", - "PIDGEOTITE": "Pidgeotita", - "PINSIRITE": "Pinsirita", - "RAYQUAZITE": "Rayquazita", - "SABLENITE": "Sableynita", - "SALAMENCITE": "Salamencita", - "SCEPTILITE": "Sceptilita", - "SCIZORITE": "Scizorita", - "SHARPEDONITE": "Sharpedonita", - "SLOWBRONITE": "Slowbronita", - "STEELIXITE": "Steelixita", - "SWAMPERTITE": "Swampertita", - "TYRANITARITE": "Tyranitarita", - "VENUSAURITE": "Venusaurita", - - "BLUE_ORB": "Prisma Azul", - "RED_ORB": "Prisma Rojo", - "SHARP_METEORITE": "Meteorito Afilado", - "HARD_METEORITE": "Meteorito Duro", - "SMOOTH_METEORITE": "Meteorito Suave", - "ADAMANT_CRYSTAL": "Gran Diamansfera", - "LUSTROUS_GLOBE": "Gran Lustresfera", - "GRISEOUS_CORE": "Gran Griseosfera", - "REVEAL_GLASS": "Espejo Veraz", - "GRACIDEA": "Gracídea", - "MAX_MUSHROOMS": "MaxiSetas", - "DARK_STONE": "Piedra Oscura", - "LIGHT_STONE": "Piedra Luminosa", - "PRISON_BOTTLE": "Vasija Castigo", - "N_LUNARIZER": "Necroluna", - "N_SOLARIZER": "Necrosol", - "RUSTED_SWORD": "Espada Oxidada", - "RUSTED_SHIELD": "Escudo Oxidado", - "ICY_REINS_OF_UNITY": "Riendas Unión Heladas", - "SHADOW_REINS_OF_UNITY": "Riendas Unión Oscuras", - "WELLSPRING_MASK": "Máscara Fuente", - "HEARTHFLAME_MASK": "Máscara Horno", - "CORNERSTONE_MASK": "Máscara Cimiento", - "SHOCK_DRIVE": "FulgoROM", - "BURN_DRIVE": "PiroROM", - "CHILL_DRIVE": "CrioROM", - "DOUSE_DRIVE": "HidroROM", - "ULTRANECROZIUM_Z": "Ultranecrostal Z", - - "FIST_PLATE": "Tabla Fuerte", - "SKY_PLATE": "Tabla Cielo", - "TOXIC_PLATE": "Tabla Tóxica", - "EARTH_PLATE": "Tabla Terrax", - "STONE_PLATE": "Tabla Pétrea", - "INSECT_PLATE": "Tabla Bicho", - "SPOOKY_PLATE": "Tabla Terror", - "IRON_PLATE": "Tabla Acero", - "FLAME_PLATE": "Tabla Llama", - "SPLASH_PLATE": "Tabla Linfa", - "MEADOW_PLATE": "Tabla Pradal", - "ZAP_PLATE": "Tabla Trueno", - "MIND_PLATE": "Tabla Mental", - "ICICLE_PLATE": "Tabla Helada", - "DRACO_PLATE": "Tabla Draco", - "DREAD_PLATE": "Tabla Oscura", - "PIXIE_PLATE": "Tabla Duende", - "BLANK_PLATE": "Tabla Neutra", - "LEGEND_PLATE": "Tabla Legendaria", - "FIGHTING_MEMORY": "Disco Lucha", - "FLYING_MEMORY": "Disco Volador", - "POISON_MEMORY": "Disco Veneno", - "GROUND_MEMORY": "Disco Tierra", - "ROCK_MEMORY": "Disco Roca", - "BUG_MEMORY": "Disco Bicho", - "GHOST_MEMORY": "Disco Fantasma", - "STEEL_MEMORY": "Disco Acero", - "FIRE_MEMORY": "Disco Fuego", - "WATER_MEMORY": "Disco Agua", - "GRASS_MEMORY": "Disco Planta", - "ELECTRIC_MEMORY": "Disco Eléctrico", - "PSYCHIC_MEMORY": "Disco Psíquico", - "ICE_MEMORY": "Disco Hielo", - "DRAGON_MEMORY": "Disco Dragón", - "DARK_MEMORY": "Disco Siniestro", - "FAIRY_MEMORY": "Disco Hada", - "BLANK_MEMORY": "Disco Blanco", - }, -} as const; diff --git a/src/locales/es/modifier.json b/src/locales/es/modifier.json new file mode 100644 index 00000000000..593b3df2f0f --- /dev/null +++ b/src/locales/es/modifier.json @@ -0,0 +1,3 @@ +{ + "bypassSpeedChanceApply": "¡Gracias {{itemName}} {{pokemonName}} puede tener prioridad!" +} \ No newline at end of file diff --git a/src/locales/es/modifier.ts b/src/locales/es/modifier.ts deleted file mode 100644 index b0a3d36e233..00000000000 --- a/src/locales/es/modifier.ts +++ /dev/null @@ -1,14 +0,0 @@ -import { SimpleTranslationEntries } from "#app/interfaces/locales"; - -export const modifier: SimpleTranslationEntries = { - "surviveDamageApply": "{{pokemonNameWithAffix}} hung on\nusing its {{typeName}}!", - "turnHealApply": "{{pokemonNameWithAffix}} restored a little HP using\nits {{typeName}}!", - "hitHealApply": "{{pokemonNameWithAffix}} restored a little HP using\nits {{typeName}}!", - "pokemonInstantReviveApply": "{{pokemonNameWithAffix}} was revived\nby its {{typeName}}!", - "pokemonResetNegativeStatStageApply": "{{pokemonNameWithAffix}}'s lowered stats were restored\nby its {{typeName}}!", - "moneyInterestApply": "You received interest of ₽{{moneyAmount}}\nfrom the {{typeName}}!", - "turnHeldItemTransferApply": "{{pokemonNameWithAffix}}'s {{itemName}} was absorbed\nby {{pokemonName}}'s {{typeName}}!", - "contactHeldItemTransferApply": "{{pokemonNameWithAffix}}'s {{itemName}} was snatched\nby {{pokemonName}}'s {{typeName}}!", - "enemyTurnHealApply": "{{pokemonNameWithAffix}}\nrestored some HP!", - "bypassSpeedChanceApply": "¡Gracias {{itemName}} {{pokemonName}} puede tener prioridad!", -} as const; diff --git a/src/locales/es/move-trigger.json b/src/locales/es/move-trigger.json new file mode 100644 index 00000000000..b570f029377 --- /dev/null +++ b/src/locales/es/move-trigger.json @@ -0,0 +1,11 @@ +{ + "isChargingPower": "¡{{pokemonName}} está acumulando energía!", + "burnedItselfOut": "¡El fuego interior de {{pokemonName}} se ha extinguido!", + "startedHeatingUpBeak": "¡{{pokemonName}} empieza\na calentar su pico!", + "setUpShellTrap": "¡{{pokemonName}} ha activado la Coraza Trampa!", + "isOverflowingWithSpacePower": "¡{{pokemonName}} rebosa\nenergía cósmica!", + "usedUpAllElectricity": "¡{{pokemonName}} ha descargado toda su electricidad!", + "stoleItem": "¡{{pokemonName}} robó el objeto\n{{itemName}} de {{targetName}}!", + "statEliminated": "¡Los cambios en estadísticas fueron eliminados!", + "revivalBlessing": "¡{{pokemonName}} ha revivido!" +} \ No newline at end of file diff --git a/src/locales/es/move-trigger.ts b/src/locales/es/move-trigger.ts deleted file mode 100644 index cee5b58508f..00000000000 --- a/src/locales/es/move-trigger.ts +++ /dev/null @@ -1,66 +0,0 @@ -import { SimpleTranslationEntries } from "#app/interfaces/locales"; - -export const moveTriggers: SimpleTranslationEntries = { - "hitWithRecoil" : "{{pokemonName}} was damaged by the recoil!", - "cutHpPowerUpMove": "{{pokemonName}} cut its own HP to power up its move!", - "absorbedElectricity": "{{pokemonName}} absorbed electricity!", - "switchedStatChanges": "{{pokemonName}} switched stat changes with the target!", - "goingAllOutForAttack": "{{pokemonName}} is going all out for this attack!", - "regainedHealth": "{{pokemonName}} regained\nhealth!", - "keptGoingAndCrashed": "{{pokemonName}} kept going\nand crashed!", - "fled": "{{pokemonName}} fled!", - "cannotBeSwitchedOut": "{{pokemonName}} can't be switched out!", - "swappedAbilitiesWithTarget": "{{pokemonName}} swapped\nabilities with its target!", - "coinsScatteredEverywhere": "Coins were scattered everywhere!", - "attackedByItem": "{{pokemonName}} is about to be attacked by its {{itemName}}!", - "whippedUpAWhirlwind": "{{pokemonName}} whipped\nup a whirlwind!", - "flewUpHigh": "{{pokemonName}} flew\nup high!", - "tookInSunlight": "{{pokemonName}} absorbed light!", - "dugAHole": "{{pokemonName}} burrowed its way under the ground!", - "loweredItsHead": "{{pokemonName}} tucked in its head!", - "isGlowing": "{{pokemonName}} became cloaked in a harsh light!", - "bellChimed": "A bell chimed!", - "foresawAnAttack": "{{pokemonName}} foresaw\nan attack!", - "isTighteningFocus": "{{pokemonName}} is\ntightening its focus!", - "hidUnderwater": "{{pokemonName}} hid\nunderwater!", - "soothingAromaWaftedThroughArea": "A soothing aroma wafted through the area!", - "sprangUp": "{{pokemonName}} sprang up!", - "choseDoomDesireAsDestiny": "{{pokemonName}} chose\nDoom Desire as its destiny!", - "vanishedInstantly": "{{pokemonName}} vanished\ninstantly!", - "tookTargetIntoSky": "{{pokemonName}} took {{targetName}}\ninto the sky!", - "becameCloakedInFreezingLight": "{{pokemonName}} became cloaked\nin a freezing light!", - "becameCloakedInFreezingAir": "{{pokemonName}} became cloaked\nin freezing air!", - "isChargingPower": "¡{{pokemonName}} está acumulando energía!", - "burnedItselfOut": "¡El fuego interior de {{pokemonName}} se ha extinguido!", - "startedHeatingUpBeak": "¡{{pokemonName}} empieza\na calentar su pico!", - "setUpShellTrap": "¡{{pokemonName}} ha activado la Coraza Trampa!", - "isOverflowingWithSpacePower": "¡{{pokemonName}} rebosa\nenergía cósmica!", - "usedUpAllElectricity": "¡{{pokemonName}} ha descargado toda su electricidad!", - "stoleItem": "¡{{pokemonName}} robó el objeto\n{{itemName}} de {{targetName}}!", - "incineratedItem": "{{pokemonName}} incinerated\n{{targetName}}'s {{itemName}}!", - "knockedOffItem": "{{pokemonName}} knocked off\n{{targetName}}'s {{itemName}}!", - "tookMoveAttack": "{{pokemonName}} took\nthe {{moveName}} attack!", - "cutOwnHpAndMaximizedStat": "{{pokemonName}} cut its own HP\nand maximized its {{statName}}!", - "copiedStatChanges": "{{pokemonName}} copied\n{{targetName}}'s stat changes!", - "magnitudeMessage": "Magnitude {{magnitude}}!", - "tookAimAtTarget": "{{pokemonName}} took aim\nat {{targetName}}!", - "transformedIntoType": "{{pokemonName}} transformed\ninto the {{typeName}} type!", - "copiedMove": "{{pokemonName}} copied\n{{moveName}}!", - "sketchedMove": "{{pokemonName}} sketched\n{{moveName}}!", - "acquiredAbility": "The {{pokemonName}} acquired\n{{abilityName}}!", - "copiedTargetAbility": "{{pokemonName}} copied the {{targetName}}'s\n{{abilityName}}!", - "transformedIntoTarget": "{{pokemonName}} transformed\ninto {{targetName}}!", - "tryingToTakeFoeDown": "{{pokemonName}} is hoping to take its attacker down with it!", - "addType": "{{typeName}} was added to\n{{pokemonName}}!", - "cannotUseMove": "{{pokemonName}} cannot use {{moveName}}!", - "healHp": "{{pokemonName}} had its HP restored.", - "sacrificialFullRestore": "{{pokemonName}}'s Healing Wish\nwas granted!", - "invertStats": "{{pokemonName}}'s stat changes\nwere all reversed!", - "resetStats": "{{pokemonName}}'s stat changes\nwere eliminated!", - "statEliminated": "¡Los cambios en estadísticas fueron eliminados!", - "faintCountdown": "{{pokemonName}}\nwill faint in {{turnCount}} turns.", - "copyType": "{{pokemonName}}'s type\nchanged to match {{targetPokemonName}}'s!", - "suppressAbilities": "{{pokemonName}}'s ability\nwas suppressed!", - "swapArenaTags": "{{pokemonName}} swapped the battle effects affecting each side of the field!", - "exposedMove": "{{pokemonName}} identified\n{{targetPokemonName}}!", -} as const; diff --git a/src/locales/es/move.json b/src/locales/es/move.json new file mode 100644 index 00000000000..f4c28dd02e7 --- /dev/null +++ b/src/locales/es/move.json @@ -0,0 +1,3810 @@ +{ + "pound": { + "name": "Destructor", + "effect": "Golpea al objetivo con las extremidades, la cola o similares." + }, + "karateChop": { + "name": "Golpe Kárate", + "effect": "Da un golpe cortante. Suele ser crítico." + }, + "doubleSlap": { + "name": "Doble Bofetón", + "effect": "Abofetea de dos a cinco veces seguidas." + }, + "cometPunch": { + "name": "Puño Cometa", + "effect": "Pega de dos a cinco veces seguidas." + }, + "megaPunch": { + "name": "Megapuño", + "effect": "Un puñetazo de gran potencia." + }, + "payDay": { + "name": "Día de Pago", + "effect": "Arroja monedas al objetivo y las recupera al final del combate." + }, + "firePunch": { + "name": "Puño Fuego", + "effect": "Puñetazo ardiente que puede causar quemaduras." + }, + "icePunch": { + "name": "Puño Hielo", + "effect": "Puñetazo helado que puede llegar a congelar." + }, + "thunderPunch": { + "name": "Puño Trueno", + "effect": "Puñetazo eléctrico que puede paralizar al adversario." + }, + "scratch": { + "name": "Arañazo", + "effect": "Araña con afiladas garras." + }, + "viseGrip": { + "name": "Agarre", + "effect": "Atenaza al objetivo y le inflige daño." + }, + "guillotine": { + "name": "Guillotina", + "effect": "Ataque cortante que debilita al oponente de un golpe si acierta." + }, + "razorWind": { + "name": "Viento Cortante", + "effect": "Primero se prepara y en el segundo turno ataca al oponente con ráfagas de viento cortante. Alta probabilidad de ser crítico." + }, + "swordsDance": { + "name": "Danza Espada", + "effect": "Baile frenético que aumenta mucho el Ataque." + }, + "cut": { + "name": "Corte", + "effect": "Corta al adversario con garras, guadañas, etc." + }, + "gust": { + "name": "Tornado", + "effect": "Crea un tornado con las alas y lo lanza contra el objetivo." + }, + "wingAttack": { + "name": "Ataque Ala", + "effect": "Extiende totalmente sus majestuosas alas para golpear al objetivo con ellas." + }, + "whirlwind": { + "name": "Remolino", + "effect": "Se lleva al objetivo, que es cambiado por otro Pokémon. Si es un Pokémon salvaje, acaba el combate." + }, + "fly": { + "name": "Vuelo", + "effect": "El usuario vuela en el primer turno y ataca en el segundo." + }, + "bind": { + "name": "Atadura", + "effect": "Ata y oprime de cuatro a cinco turnos." + }, + "slam": { + "name": "Atizar", + "effect": "Golpea con la cola o con lianas, por ejemplo, para causar daño al objetivo." + }, + "vineWhip": { + "name": "Látigo Cepa", + "effect": "Azota al objetivo con lianas delgadas y largas tan flexibles como látigos." + }, + "stomp": { + "name": "Pisotón", + "effect": "Tremendo pisotón que puede hacer que el objetivo se amedrente." + }, + "doubleKick": { + "name": "Doble Patada", + "effect": "Una patada doble. Golpea dos veces." + }, + "megaKick": { + "name": "Megapatada", + "effect": "Patada de extrema fuerza." + }, + "jumpKick": { + "name": "Patada Salto", + "effect": "Da un salto y pega una patada. Si falla, se lesiona." + }, + "rollingKick": { + "name": "Patada Giro", + "effect": "Da una patada rápida y circular. Puede hacer retroceder al objetivo." + }, + "sandAttack": { + "name": "Ataque Arena", + "effect": "Arroja arena a la cara y baja la Precisión." + }, + "headbutt": { + "name": "Golpe Cabeza", + "effect": "Potente cabezazo que puede amedrentar al objetivo." + }, + "hornAttack": { + "name": "Cornada", + "effect": "Ataca al objetivo con una cornada punzante." + }, + "furyAttack": { + "name": "Ataque Furia", + "effect": "Cornea al objetivo de dos a cinco veces." + }, + "hornDrill": { + "name": "Perforador", + "effect": "Ataque con un cuerno giratorio que fulmina al objetivo de un solo golpe si acierta." + }, + "tackle": { + "name": "Placaje", + "effect": "Embestida con todo el cuerpo." + }, + "bodySlam": { + "name": "Golpe Cuerpo", + "effect": "Salta sobre el objetivo con todo su peso y puede llegar a paralizarlo." + }, + "wrap": { + "name": "Constricción", + "effect": "Oprime al objetivo de cuatro a cinco turnos con lianas o con su cuerpo." + }, + "takeDown": { + "name": "Derribo", + "effect": "Carga desmedida que también hiere al agresor." + }, + "thrash": { + "name": "Saña", + "effect": "El usuario ataca enfurecido durante dos o tres turnos y, después, se queda confuso." + }, + "doubleEdge": { + "name": "Doble Filo", + "effect": "Ataque arriesgado que también hiere al agresor." + }, + "tailWhip": { + "name": "Látigo", + "effect": "Agita la cola para bajar la Defensa del equipo rival." + }, + "poisonSting": { + "name": "Picotazo Veneno", + "effect": "Lanza un aguijón tóxico que puede envenenar al objetivo." + }, + "twineedle": { + "name": "Doble Ataque", + "effect": "Pincha dos veces con dos espinas. Puede envenenar." + }, + "pinMissile": { + "name": "Pin Misil", + "effect": "Lanza finas púas que hieren de dos a cinco veces." + }, + "leer": { + "name": "Malicioso", + "effect": "Intimida a los rivales para bajar su Defensa." + }, + "bite": { + "name": "Mordisco", + "effect": "Un voraz bocado con dientes afilados que puede amedrentar al objetivo." + }, + "growl": { + "name": "Gruñido", + "effect": "Dulce gruñido que distrae al objetivo para que baje la guardia y reduce su Ataque." + }, + "roar": { + "name": "Rugido", + "effect": "Se lleva al objetivo, que es cambiado por otro Pokémon. Si es un Pokémon salvaje, acaba el combate." + }, + "sing": { + "name": "Canto", + "effect": "Cancioncilla que hace dormir profundamente al objetivo." + }, + "supersonic": { + "name": "Supersónico", + "effect": "El cuerpo del usuario emite unas ondas sónicas raras que confunden al objetivo." + }, + "sonicBoom": { + "name": "Bomba Sónica", + "effect": "Lanza ondas de choque que restan 20 PS al objetivo." + }, + "disable": { + "name": "Anulación", + "effect": "Desactiva el último movimiento del objetivo durante cuatro turnos." + }, + "acid": { + "name": "Ácido", + "effect": "Rocía al objetivo con un ácido corrosivo. Puede reducir la Defensa Especial." + }, + "ember": { + "name": "Ascuas", + "effect": "Ataca con llamas pequeñas que pueden causar quemaduras." + }, + "flamethrower": { + "name": "Lanzallamas", + "effect": "Ataca con una gran ráfaga de fuego que puede causar quemaduras." + }, + "mist": { + "name": "Neblina", + "effect": "Rodea de una niebla blanquecina al bando del usuario e impide que el rival reduzca sus características durante cinco turnos." + }, + "waterGun": { + "name": "Pistola Agua", + "effect": "Ataca disparando agua con gran potencia." + }, + "hydroPump": { + "name": "Hidrobomba", + "effect": "Lanza una gran masa de agua a presión para atacar." + }, + "surf": { + "name": "Surf", + "effect": "Inunda el terreno de combate con una ola gigante que golpea a los Pokémon adyacentes." + }, + "iceBeam": { + "name": "Rayo Hielo", + "effect": "Rayo de hielo que puede llegar a congelar." + }, + "blizzard": { + "name": "Ventisca", + "effect": "Tormenta de hielo que puede llegar a congelar." + }, + "psybeam": { + "name": "Psicorrayo", + "effect": "Extraño rayo que puede causar confusión." + }, + "bubbleBeam": { + "name": "Rayo Burbuja", + "effect": "Ráfaga de burbujas que puede reducir la Velocidad." + }, + "auroraBeam": { + "name": "Rayo Aurora", + "effect": "Rayo multicolor que puede reducir el Ataque." + }, + "hyperBeam": { + "name": "Hiperrayo", + "effect": "El usuario ataca al objetivo con un potente haz de luz, pero deberá descansar en el siguiente turno." + }, + "peck": { + "name": "Picotazo", + "effect": "Ensarta al objetivo con un cuerno o pico punzante." + }, + "drillPeck": { + "name": "Pico Taladro", + "effect": "Picotazo giratorio y perforador muy potente." + }, + "submission": { + "name": "Sumisión", + "effect": "El usuario se lanza al suelo con el oponente en brazos y también se hace un poco de daño." + }, + "lowKick": { + "name": "Patada Baja", + "effect": "Patada baja que derriba al objetivo. Cuanto más pesa este, más daño le causa." + }, + "counter": { + "name": "Contraataque", + "effect": "Devuelve un golpe físico por duplicado." + }, + "seismicToss": { + "name": "Sísmico", + "effect": "Aprovecha la gravedad para derribar al objetivo. Le resta tantos PS como nivel tenga el usuario." + }, + "strength": { + "name": "Fuerza", + "effect": "Ataca al objetivo golpeándolo con todas sus fuerzas." + }, + "absorb": { + "name": "Absorber", + "effect": "Un ataque que absorbe nutrientes. Quien lo usa recupera la mitad de los PS del daño que produce." + }, + "megaDrain": { + "name": "Megaagotar", + "effect": "Un ataque que absorbe nutrientes. Quien lo usa recupera la mitad de los PS del daño que produce." + }, + "leechSeed": { + "name": "Drenadoras", + "effect": "Planta semillas que absorben PS del objetivo en cada turno y que le sirven para recuperarse." + }, + "growth": { + "name": "Desarrollo", + "effect": "Hace que su cuerpo crezca a marchas forzadas con lo que aumenta su Ataque y Ataque Especial." + }, + "razorLeaf": { + "name": "Hoja Afilada", + "effect": "Corta con hojas afiladas. Un ataque que suele ser crítico." + }, + "solarBeam": { + "name": "Rayo Solar", + "effect": "El usuario absorbe luz en el primer turno y en el segundo lanza un potente rayo de energía." + }, + "poisonPowder": { + "name": "Polvo Veneno", + "effect": "Esparce polvo tóxico que envenena al objetivo." + }, + "stunSpore": { + "name": "Paralizador", + "effect": "Esparce polvo que paraliza al objetivo." + }, + "sleepPowder": { + "name": "Somnífero", + "effect": "Esparce polvo que duerme al objetivo." + }, + "petalDance": { + "name": "Danza Pétalo", + "effect": "Ataca al objetivo lanzando pétalos de dos a tres turnos y, al finalizar, el usuario se queda confuso." + }, + "stringShot": { + "name": "Disparo Demora", + "effect": "Lanza seda a los rivales y reduce mucho su Velocidad." + }, + "dragonRage": { + "name": "Furia Dragón", + "effect": "Ráfaga de furiosas ondas de choque que quitan 40 PS." + }, + "fireSpin": { + "name": "Giro Fuego", + "effect": "Un aro de fuego que atrapa al objetivo de cuatro a cinco turnos." + }, + "thunderShock": { + "name": "Impactrueno", + "effect": "Ataque eléctrico que puede paralizar al objetivo." + }, + "thunderbolt": { + "name": "Rayo", + "effect": "Potente ataque eléctrico que puede paralizar al objetivo." + }, + "thunderWave": { + "name": "Onda Trueno", + "effect": "Una ligera descarga que paraliza al objetivo." + }, + "thunder": { + "name": "Trueno", + "effect": "Un poderoso rayo que daña al objetivo y puede paralizarlo." + }, + "rockThrow": { + "name": "Lanzarrocas", + "effect": "Tira una pequeña roca al objetivo." + }, + "earthquake": { + "name": "Terremoto", + "effect": "Un terremoto que afecta a los Pokémon adyacentes." + }, + "fissure": { + "name": "Fisura", + "effect": "Abre una grieta en el suelo y mete al objetivo en ella. Fulmina al objetivo de un solo golpe si acierta." + }, + "dig": { + "name": "Excavar", + "effect": "El usuario cava durante el primer turno y ataca en el segundo." + }, + "toxic": { + "name": "Tóxico", + "effect": "Envenena gravemente al objetivo y causa un daño mayor en cada turno." + }, + "confusion": { + "name": "Confusión", + "effect": "Débil ataque telequinético que puede causar confusión." + }, + "psychic": { + "name": "Psíquico", + "effect": "Fuerte ataque telequinético que puede bajar la Defensa Especial del objetivo." + }, + "hypnosis": { + "name": "Hipnosis", + "effect": "Ataque hipnótico que hace dormir profundamente al objetivo." + }, + "meditate": { + "name": "Meditación", + "effect": "El usuario reposa y medita para potenciar el Ataque." + }, + "agility": { + "name": "Agilidad", + "effect": "Relaja el cuerpo para ganar mucha Velocidad." + }, + "quickAttack": { + "name": "Ataque Rápido", + "effect": "Ataque de una rapidez espeluznante. Este movimiento tiene prioridad alta." + }, + "rage": { + "name": "Furia", + "effect": "Al usarse, aumenta el Ataque del usuario cada vez que es golpeado." + }, + "teleport": { + "name": "Teletransporte", + "effect": "Permite al usuario cambiarse por otro Pokémon del equipo, si lo hay. Si un Pokémon salvaje usa este movimiento, huye del combate." + }, + "nightShade": { + "name": "Tinieblas", + "effect": "Produce un espejismo ante el objetivo, que pierde tantos PS como nivel tenga el usuario." + }, + "mimic": { + "name": "Mimético", + "effect": "Copia el último movimiento usado por el objetivo, y puede utilizarlo mientras esté en el combate." + }, + "screech": { + "name": "Chirrido", + "effect": "Alarido agudo que reduce mucho la Defensa del objetivo." + }, + "doubleTeam": { + "name": "Doble Equipo", + "effect": "Crea copias de sí mismo para mejorar la Evasión." + }, + "recover": { + "name": "Recuperación", + "effect": "Restaura hasta la mitad de los PS máximos." + }, + "harden": { + "name": "Fortaleza", + "effect": "Tensa la musculatura del usuario para aumentar la Defensa." + }, + "minimize": { + "name": "Reducción", + "effect": "El usuario mengua para aumentar mucho la Evasión." + }, + "smokescreen": { + "name": "Pantalla de Humo", + "effect": "Reduce la Precisión del objetivo con una nube de humo o tinta." + }, + "confuseRay": { + "name": "Rayo Confuso", + "effect": "Rayo siniestro que confunde al objetivo." + }, + "withdraw": { + "name": "Refugio", + "effect": "El usuario se resguarda en su coraza, por lo que le sube la Defensa." + }, + "defenseCurl": { + "name": "Rizo Defensa", + "effect": "Se enrosca para ocultar sus puntos débiles y aumentar la Defensa." + }, + "barrier": { + "name": "Barrera", + "effect": "Crea una barrera que aumenta mucho la Defensa." + }, + "lightScreen": { + "name": "Pantalla de Luz", + "effect": "Pared de luz que reduce durante cinco turnos el daño producido por los ataques especiales." + }, + "haze": { + "name": "Niebla", + "effect": "Neblina oscura que elimina los cambios en las características de todos los Pokémon en combate." + }, + "reflect": { + "name": "Reflejo", + "effect": "Pared de luz que reduce durante cinco turnos el daño producido por los ataques físicos." + }, + "focusEnergy": { + "name": "Foco Energía", + "effect": "Concentra energía para aumentar las posibilidades de asestar un golpe crítico." + }, + "bide": { + "name": "Venganza", + "effect": "Espera dos turnos para atacar con el doble de potencia del daño recibido." + }, + "metronome": { + "name": "Metrónomo", + "effect": "Mueve un dedo y estimula su cerebro para usar al azar casi cualquier movimiento." + }, + "mirrorMove": { + "name": "Espejo", + "effect": "Ataca al objetivo con el último movimiento que este haya usado." + }, + "selfDestruct": { + "name": "Autodestrucción", + "effect": "El atacante explota y hiere a los Pokémon adyacentes. El usuario se debilita de inmediato." + }, + "eggBomb": { + "name": "Bomba Huevo", + "effect": "Arroja un huevo enorme al objetivo con gran fuerza." + }, + "lick": { + "name": "Lengüetazo", + "effect": "Una lengua ataca al objetivo. Puede causar parálisis." + }, + "smog": { + "name": "Polución", + "effect": "Lanza un ataque con gases tóxicos que pueden llegar a envenenar." + }, + "sludge": { + "name": "Residuos", + "effect": "Arroja residuos al objetivo. Puede llegar a envenenar." + }, + "boneClub": { + "name": "Hueso Palo", + "effect": "Aporrea con un hueso. Puede hacer retroceder al objetivo." + }, + "fireBlast": { + "name": "Llamarada", + "effect": "Llama intensa que chamusca y puede causar quemaduras." + }, + "waterfall": { + "name": "Cascada", + "effect": "Embiste con un gran impulso y puede llegar a amedrentar al objetivo." + }, + "clamp": { + "name": "Tenaza", + "effect": "Atrapa y atenaza con fuerza durante cuatro o cinco turnos." + }, + "swift": { + "name": "Meteoros", + "effect": "Lanza rayos en forma de estrella que no fallan nunca." + }, + "skullBash": { + "name": "Cabezazo", + "effect": "El usuario se prepara y sube su Defensa en el primer turno y en el segundo arremete con un cabezazo." + }, + "spikeCannon": { + "name": "Clavo Cañón", + "effect": "Lanza finas púas que hieren de dos a cinco veces." + }, + "constrict": { + "name": "Restricción", + "effect": "Ataca con largos tentáculos o zarcillos que pueden bajar la Velocidad." + }, + "amnesia": { + "name": "Amnesia", + "effect": "El usuario olvida sus preocupaciones y aumenta mucho la Defensa Especial." + }, + "kinesis": { + "name": "Kinético", + "effect": "Dobla una cuchara para distraer al objetivo y reducir su Precisión." + }, + "softBoiled": { + "name": "Ovocuración", + "effect": "Restaura la mitad de los PS máximos del usuario." + }, + "highJumpKick": { + "name": "Pat. Salto Alta", + "effect": "El usuario salta muy alto y da un rodillazo. Si falla, se hará daño." + }, + "glare": { + "name": "Deslumbrar", + "effect": "Intimida y asusta al objetivo con la mirada para dejarlo paralizado." + }, + "dreamEater": { + "name": "Comesueños", + "effect": "Restaura al usuario la mitad del daño causado a un objetivo dormido." + }, + "poisonGas": { + "name": "Gas Venenoso", + "effect": "Lanza una nube de gas tóxico al objetivo. Produce envenenamiento." + }, + "barrage": { + "name": "Bombardeo", + "effect": "Arroja esferas al objetivo entre dos y cinco veces seguidas." + }, + "leechLife": { + "name": "Chupavidas", + "effect": "Restaura al usuario la mitad del daño causado al objetivo." + }, + "lovelyKiss": { + "name": "Beso Amoroso", + "effect": "Intimida al objetivo con una cara que asusta y le da un beso que lo deja dormido." + }, + "skyAttack": { + "name": "Ataque Aéreo", + "effect": "Ataca durante dos turnos y suele asestar un golpe crítico. También puede amedrentar al objetivo." + }, + "transform": { + "name": "Transformación", + "effect": "El usuario se transforma en una copia del objetivo, con los mismos movimientos." + }, + "bubble": { + "name": "Burbuja", + "effect": "Lanza burbujas a los contrincantes y puede reducir su Velocidad." + }, + "dizzyPunch": { + "name": "Puño Mareo", + "effect": "Rítmicos puñetazos que pueden causar confusión." + }, + "spore": { + "name": "Espora", + "effect": "Esparce esporas que inducen el sueño." + }, + "flash": { + "name": "Destello", + "effect": "Luz cegadora que baja la Precisión del objetivo." + }, + "psywave": { + "name": "Psicoonda", + "effect": "Ataque con una onda de energía de intensidad variable." + }, + "splash": { + "name": "Salpicadura", + "effect": "No tiene ningún efecto. Solo salpica." + }, + "acidArmor": { + "name": "Armadura Ácida", + "effect": "Transforma la estructura celular para hacerse líquido y aumenta mucho la Defensa." + }, + "crabhammer": { + "name": "Martillazo", + "effect": "Golpea con fuerza con una pinza enorme. Suele asestar un golpe crítico." + }, + "explosion": { + "name": "Explosión", + "effect": "El atacante causa una grandísima explosión y hiere a los Pokémon adyacentes. El usuario se debilita de inmediato." + }, + "furySwipes": { + "name": "Golpes Furia", + "effect": "Araña rápidamente de dos a cinco veces." + }, + "bonemerang": { + "name": "Huesomerang", + "effect": "Lanza un hueso a modo de bumerán que golpea dos veces." + }, + "rest": { + "name": "Descanso", + "effect": "Restaura todos los PS y cura todos los problemas de estado del usuario, que se duerme los dos turnos siguientes." + }, + "rockSlide": { + "name": "Avalancha", + "effect": "Lanza grandes pedruscos. Puede amedrentar al objetivo." + }, + "hyperFang": { + "name": "Hipercolmillo", + "effect": "Ataca con agudos colmillos. Puede amedrentar al objetivo." + }, + "sharpen": { + "name": "Afilar", + "effect": "El perfil del usuario se hace más afilado y su Ataque mejora." + }, + "conversion": { + "name": "Conversión", + "effect": "Cambia el tipo del usuario por el del primer movimiento en su lista." + }, + "triAttack": { + "name": "Triataque", + "effect": "Ataque con tres rayos de luz que puede paralizar, quemar o congelar al objetivo." + }, + "superFang": { + "name": "Superdiente", + "effect": "Asesta una dentellada con sus afilados incisivos que reduce a la mitad los PS del objetivo." + }, + "slash": { + "name": "Cuchillada", + "effect": "Ataca con cuchillas o con pinzas. Suele asestar un golpe crítico." + }, + "substitute": { + "name": "Sustituto", + "effect": "Utiliza parte de los PS propios para crear un sustituto que actúa como señuelo." + }, + "struggle": { + "name": "Forcejeo", + "effect": "Solo se usa como último recurso al acabarse los PP. Hiere un poco al agresor." + }, + "sketch": { + "name": "Esquema", + "effect": "Aprende de forma permanente el último movimiento utilizado por el objetivo. Es de un solo uso." + }, + "tripleKick": { + "name": "Triple Patada", + "effect": "Propina hasta tres patadas seguidas, la potencia de las cuales aumenta cada vez que acierta." + }, + "thief": { + "name": "Ladrón", + "effect": "El usuario ataca y tiene un 30% de robarle el objeto al objetivo." + }, + "spiderWeb": { + "name": "Telaraña", + "effect": "Enreda al objetivo para evitar que abandone el combate." + }, + "mindReader": { + "name": "Telépata", + "effect": "El usuario adivina los movimientos del objetivo para hacer que su siguiente ataque no falle." + }, + "nightmare": { + "name": "Pesadilla", + "effect": "El objetivo dormido sufre una pesadilla que le hace perder PS en cada turno." + }, + "flameWheel": { + "name": "Rueda Fuego", + "effect": "Ataca envuelto en fuego. Puede causar quemaduras." + }, + "snore": { + "name": "Ronquido", + "effect": "Fuerte ronquido que solo puede usarse dormido. Puede amedrentar al objetivo." + }, + "curse": { + "name": "Maldición", + "effect": "Un movimiento que tiene efectos distintos si el usuario es de tipo Fantasma o no." + }, + "flail": { + "name": "Azote", + "effect": "Ataque frenético. Cuantos menos PS tenga el usuario, más daño producirá." + }, + "conversion2": { + "name": "Conversión2", + "effect": "El usuario cambia de tipo para hacerse resistente al último tipo de movimiento usado por el objetivo." + }, + "aeroblast": { + "name": "Aerochorro", + "effect": "Lanza un chorro de aire que suele asestar un golpe crítico." + }, + "cottonSpore": { + "name": "Esporagodón", + "effect": "Adhiere esporas a los rivales para reducir mucho su Velocidad." + }, + "reversal": { + "name": "Inversión", + "effect": "Ataque desesperado que causa más daño cuantos menos PS tenga el usuario." + }, + "spite": { + "name": "Rencor", + "effect": "Da rienda suelta a su rencor para reducir 4 PP del último movimiento usado por el objetivo." + }, + "powderSnow": { + "name": "Nieve Polvo", + "effect": "Lanza nieve que puede llegar a congelar." + }, + "protect": { + "name": "Protección", + "effect": "Frena todos los ataques, pero puede fallar si se usa repetidamente." + }, + "machPunch": { + "name": "Ultrapuño", + "effect": "Puñetazo de velocidad fulminante. Este movimiento tiene prioridad alta." + }, + "scaryFace": { + "name": "Cara Susto", + "effect": "Asusta al objetivo para reducir mucho su Velocidad." + }, + "feintAttack": { + "name": "Finta", + "effect": "Engaña al objetivo para acercarse y dar un puñetazo que no falla." + }, + "sweetKiss": { + "name": "Beso Dulce", + "effect": "Da un beso con tal dulzura que causa confusión." + }, + "bellyDrum": { + "name": "Tambor", + "effect": "Reduce la mitad de los PS máximos para mejorar al máximo el Ataque." + }, + "sludgeBomb": { + "name": "Bomba Lodo", + "effect": "Arroja residuos al objetivo. Puede llegar a envenenar." + }, + "mudSlap": { + "name": "Bofetón Lodo", + "effect": "Echa lodo en la cara del objetivo para infligirle daño y reducir su Precisión." + }, + "octazooka": { + "name": "Pulpocañón", + "effect": "Dispara tinta a la cara. Puede bajar la Precisión." + }, + "spikes": { + "name": "Púas", + "effect": "Esparce púas alrededor del equipo rival que hieren a los Pokémon rivales que entran en combate." + }, + "zapCannon": { + "name": "Electrocañón", + "effect": "Dispara una descarga eléctrica que causa daño y parálisis." + }, + "foresight": { + "name": "Profecía", + "effect": "Permite atacar con cualquier movimiento a objetivos de tipo Fantasma y golpear a Pokémon evasivos." + }, + "destinyBond": { + "name": "Mismo Destino", + "effect": "Si el usuario se debilita por un ataque rival antes de usar otro movimiento, el Pokémon rival se debilitará también. Puede fallar si se usa repetidamente." + }, + "perishSong": { + "name": "Canto Mortal", + "effect": "Si un Pokémon escucha este canto y no es cambiado por otro en tres turnos, acaba debilitándose." + }, + "icyWind": { + "name": "Viento Hielo", + "effect": "Ataque con aire helado que reduce la Velocidad del objetivo." + }, + "detect": { + "name": "Detección", + "effect": "Frena todos los ataques, pero puede fallar si se usa repetidamente." + }, + "boneRush": { + "name": "Ataque Óseo", + "effect": "Hueso en ristre, aporrea al objetivo de dos a cinco veces." + }, + "lockOn": { + "name": "Fijar Blanco", + "effect": "Fija el blanco para que el siguiente ataque no falle." + }, + "outrage": { + "name": "Enfado", + "effect": "El usuario ataca enfurecido durante dos o tres turnos y, después, se queda confuso." + }, + "sandstorm": { + "name": "Tormenta Arena", + "effect": "Tormenta de arena que dura cinco turnos y hiere a todos, excepto a los de tipo Roca, Tierra y Acero, y aumenta la Defensa Especial de los de tipo Roca." + }, + "gigaDrain": { + "name": "Gigadrenado", + "effect": "Un ataque que absorbe nutrientes. Quien lo usa recupera la mitad de los PS del daño que produce." + }, + "endure": { + "name": "Aguante", + "effect": "Resiste cualquier ataque y deja al menos 1 PS. Puede fallar si se usa repetidamente." + }, + "charm": { + "name": "Encanto", + "effect": "Engatusa al objetivo y reduce mucho su Ataque." + }, + "rollout": { + "name": "Rodar", + "effect": "El atacante rueda contra el objetivo durante cinco turnos, cada vez con mayor fuerza." + }, + "falseSwipe": { + "name": "Falso Tortazo", + "effect": "Ataque moderado que no debilita al objetivo y le deja al menos 1 PS." + }, + "swagger": { + "name": "Contoneo", + "effect": "Provoca confusión en el objetivo, pero también sube mucho su Ataque." + }, + "milkDrink": { + "name": "Batido", + "effect": "Restaura la mitad de los PS máximos del usuario." + }, + "spark": { + "name": "Chispa", + "effect": "Ataque eléctrico que puede llegar a paralizar." + }, + "furyCutter": { + "name": "Corte Furia", + "effect": "Ataque con garras o guadaña que crece en intensidad si se usa repetidas veces." + }, + "steelWing": { + "name": "Ala de Acero", + "effect": "Alas macizas que golpean al objetivo y pueden subir la Defensa del usuario." + }, + "meanLook": { + "name": "Mal de Ojo", + "effect": "Mal de ojo que impide al objetivo huir del combate o ser cambiado por otro." + }, + "attract": { + "name": "Atracción", + "effect": "Si el objetivo es del sexo opuesto, se enamorará y bajará la posibilidad de que ataque." + }, + "sleepTalk": { + "name": "Sonámbulo", + "effect": "Mientras duerme, usa uno de sus movimientos elegido al azar." + }, + "healBell": { + "name": "Cascabel Cura", + "effect": "Tañido que cura los problemas de estado de todos los Pokémon del equipo." + }, + "return": { + "name": "Retribución", + "effect": "Cuanto mayor sea la amistad con el Entrenador, más poderoso será este ataque." + }, + "present": { + "name": "Presente", + "effect": "Quien lo usa ataca al objetivo dándole un regalo con una bomba trampa. Sin embargo, a veces restaura sus PS." + }, + "frustration": { + "name": "Frustración", + "effect": "Cuanto menor sea la amistad con el Entrenador, más poderoso será este ataque." + }, + "safeguard": { + "name": "Velo Sagrado", + "effect": "Un poder misterioso que protege de problemas de estado durante cinco turnos." + }, + "painSplit": { + "name": "Divide Dolor", + "effect": "Suma los PS del usuario a los del objetivo y los reparte a partes iguales." + }, + "sacredFire": { + "name": "Fuego Sagrado", + "effect": "Fuego místico de gran intensidad que puede causar quemaduras." + }, + "magnitude": { + "name": "Magnitud", + "effect": "Sacudida sísmica de intensidad variable que afecta a todos los Pokémon a su alrededor." + }, + "dynamicPunch": { + "name": "Puño Dinámico", + "effect": "Puñetazo con toda la fuerza concentrada. Causa confusión si atina." + }, + "megahorn": { + "name": "Megacuerno", + "effect": "Ensarta al objetivo con su imponente cuerno o cornamenta." + }, + "dragonBreath": { + "name": "Dragoaliento", + "effect": "Poderosa ráfaga de aliento que golpea al objetivo y puede paralizarlo." + }, + "batonPass": { + "name": "Relevo", + "effect": "Cambia el puesto con otro miembro del equipo y le pasa los cambios en las características." + }, + "encore": { + "name": "Otra Vez", + "effect": "El objetivo repite su último movimiento durante tres turnos." + }, + "pursuit": { + "name": "Persecución", + "effect": "Hace el doble de daño al objetivo que pide el relevo." + }, + "rapidSpin": { + "name": "Giro Rápido", + "effect": "Ataque giratorio que puede eliminar movimientos como Atadura, Constricción y Drenadoras. También aumenta la Velocidad del usuario." + }, + "sweetScent": { + "name": "Dulce Aroma", + "effect": "Un dulce aroma engatusa al objetivo, por lo que se reduce mucho su Evasión." + }, + "ironTail": { + "name": "Cola Férrea", + "effect": "Ataca con una cola férrea y puede reducir la Defensa del objetivo." + }, + "metalClaw": { + "name": "Garra Metal", + "effect": "Ataque con garras de acero que puede aumentar el Ataque del usuario." + }, + "vitalThrow": { + "name": "Llave Vital", + "effect": "El usuario ataca el último, pero no falla." + }, + "morningSun": { + "name": "Sol Matinal", + "effect": "Restaura PS del usuario. La cantidad varía según el tiempo que haga." + }, + "synthesis": { + "name": "Síntesis", + "effect": "Restaura PS del usuario. La cantidad varía según el tiempo que haga." + }, + "moonlight": { + "name": "Luz Lunar", + "effect": "Restaura PS del usuario. La cantidad varía según el tiempo que haga." + }, + "hiddenPower": { + "name": "Poder Oculto", + "effect": "Movimiento cuyo tipo varía en función del Pokémon que lo usa." + }, + "crossChop": { + "name": "Tajo Cruzado", + "effect": "Corte doble que suele propinar un golpe crítico." + }, + "twister": { + "name": "Ciclón", + "effect": "Crea un violento tornado para hacer trizas al objetivo. Puede amedrentarlo." + }, + "rainDance": { + "name": "Danza Lluvia", + "effect": "Genera una fuerte lluvia que refuerza los movimientos de tipo Agua durante cinco turnos y debilita los de tipo Fuego." + }, + "sunnyDay": { + "name": "Día Soleado", + "effect": "Hace que se intensifique el efecto del sol durante cinco turnos, lo que potencia los movimientos de tipo Fuego y debilita los de tipo Agua." + }, + "crunch": { + "name": "Triturar", + "effect": "Tritura con afilados colmillos y puede reducir la Defensa del objetivo." + }, + "mirrorCoat": { + "name": "Manto Espejo", + "effect": "Responde a un ataque especial ocasionando el doble del daño recibido." + }, + "psychUp": { + "name": "Autosugestión", + "effect": "El usuario se sume en un trance y copia cualquier cambio que haya en las características de su objetivo." + }, + "extremeSpeed": { + "name": "Veloc. Extrema", + "effect": "Ataque de una velocidad extrema. Este movimiento tiene prioridad alta." + }, + "ancientPower": { + "name": "Poder Pasado", + "effect": "Ataque prehistórico que puede subir todas las características." + }, + "shadowBall": { + "name": "Bola Sombra", + "effect": "Lanza una bola oscura que puede bajar la Defensa Especial del objetivo." + }, + "futureSight": { + "name": "Premonición", + "effect": "Concentra energía psíquica para golpear al objetivo dos turnos después." + }, + "rockSmash": { + "name": "Golpe Roca", + "effect": "Propina un gran puñetazo que puede reducir la Defensa del objetivo." + }, + "whirlpool": { + "name": "Torbellino", + "effect": "Una tromba de agua atrapa al objetivo durante cuatro o cinco turnos." + }, + "beatUp": { + "name": "Paliza", + "effect": "Ataque de todo el equipo Pokémon. Cuantos más haya, más veces se atacará." + }, + "fakeOut": { + "name": "Sorpresa", + "effect": "Amedrenta al objetivo con este movimiento de prioridad alta. Solo sirve en el primer turno." + }, + "uproar": { + "name": "Alboroto", + "effect": "Ataca de forma alborotada durante tres turnos. Mantiene despiertos a todos." + }, + "stockpile": { + "name": "Reserva", + "effect": "Acumula energía y sube la Defensa y la Defensa Especial. Puede utilizarse hasta tres veces." + }, + "spitUp": { + "name": "Escupir", + "effect": "Libera de una vez la energía acumulada con Reserva. La potencia del movimiento será proporcional a la cantidad de energía acumulada." + }, + "swallow": { + "name": "Tragar", + "effect": "Absorbe la energía acumulada con Reserva para recobrar salud. Cuanta más se haya acumulado, mayor será el número de PS que se recuperen." + }, + "heatWave": { + "name": "Onda Ígnea", + "effect": "Provoca un viento abrasador que puede quemar al objetivo." + }, + "hail": { + "name": "Granizo", + "effect": "Tormenta de granizo que dura cinco turnos. Hiere a todos los Pokémon excepto a los de tipo Hielo." + }, + "torment": { + "name": "Tormento", + "effect": "Atormenta y enfurece al objetivo, que no puede usar dos veces seguidas el mismo movimiento." + }, + "flatter": { + "name": "Camelo", + "effect": "Halaga al objetivo y lo confunde, pero también sube su Ataque Especial." + }, + "willOWisp": { + "name": "Fuego Fatuo", + "effect": "Siniestras llamas moradas que producen quemaduras." + }, + "memento": { + "name": "Legado", + "effect": "El usuario se debilita, pero baja mucho tanto el Ataque como el Ataque Especial del objetivo." + }, + "facade": { + "name": "Imagen", + "effect": "Si el usuario está quemado, paralizado o envenenado, ataca con el doble de potencia." + }, + "focusPunch": { + "name": "Puño Certero", + "effect": "Se concentra para dar un puñetazo. Falla si se sufre un golpe antes de su uso." + }, + "smellingSalts": { + "name": "Estímulo", + "effect": "Hace el doble de daño a objetivos paralizados, pero también cura la parálisis." + }, + "followMe": { + "name": "Señuelo", + "effect": "Llama la atención para concentrar todos los ataques de todos los del equipo rival hacia sí mismo." + }, + "naturePower": { + "name": "Adaptación", + "effect": "Usa el poder de la naturaleza para atacar. Su efecto varía según el entorno de combate." + }, + "charge": { + "name": "Carga", + "effect": "Recarga energía para potenciar el siguiente movimiento de tipo Eléctrico. También sube la Defensa Especial." + }, + "taunt": { + "name": "Mofa", + "effect": "Enfurece al objetivo para que solo use movimientos de ataque durante tres turnos." + }, + "helpingHand": { + "name": "Refuerzo", + "effect": "El usuario ayuda a un aliado reforzando la potencia de su ataque." + }, + "trick": { + "name": "Truco", + "effect": "Engaña al objetivo desprevenido e intercambia objetos." + }, + "rolePlay": { + "name": "Imitación", + "effect": "Imita al objetivo por completo y copia su habilidad." + }, + "wish": { + "name": "Deseo", + "effect": "Restaura en el siguiente turno la mitad de los PS máximos del usuario o se los pasa al Pokémon que lo sustituye." + }, + "assist": { + "name": "Ayuda", + "effect": "Usa un movimiento de un miembro del equipo elegido al azar." + }, + "ingrain": { + "name": "Arraigo", + "effect": "Echa raíces para recuperar PS en cada turno, pero impide el relevo." + }, + "superpower": { + "name": "Fuerza Bruta", + "effect": "Ataque de gran potencia, pero que reduce el Ataque y la Defensa del agresor." + }, + "magicCoat": { + "name": "Capa Mágica", + "effect": "Barrera capaz de devolver al agresor movimientos como Drenadoras y otros que alteran el estado o las características." + }, + "recycle": { + "name": "Reciclaje", + "effect": "Recicla y así recupera un objeto equipado de un solo uso que ya haya sido empleado durante el combate." + }, + "revenge": { + "name": "Desquite", + "effect": "Ataque que produce el doble de daño si el usuario resulta herido en el mismo turno." + }, + "brickBreak": { + "name": "Demolición", + "effect": "Potente ataque que también es capaz de destruir barreras como Pantalla de Luz y Reflejo." + }, + "yawn": { + "name": "Bostezo", + "effect": "Gran bostezo que induce el sueño en el objetivo en el siguiente turno." + }, + "knockOff": { + "name": "Desarme", + "effect": "Impide al objetivo usar el objeto que lleva durante el combate. La potencia del movimiento se multiplica si el objetivo lleva un objeto." + }, + "endeavor": { + "name": "Esfuerzo", + "effect": "Reduce los PS del objetivo para que igualen a los del atacante." + }, + "eruption": { + "name": "Estallido", + "effect": "Furia explosiva. Cuanto menor sea el número de PS del usuario, menos potencia tendrá el movimiento." + }, + "skillSwap": { + "name": "Intercambio", + "effect": "Usa el poder psíquico para intercambiar habilidades con el objetivo." + }, + "imprison": { + "name": "Sellar", + "effect": "Impide a los rivales usar movimientos conocidos por el usuario durante el combate." + }, + "refresh": { + "name": "Alivio", + "effect": "Descansa para curar parálisis, envenenamiento o quemaduras." + }, + "grudge": { + "name": "Rabia", + "effect": "Si el usuario se debilita al recibir un ataque, todos los PP de este último ataque serán eliminados." + }, + "snatch": { + "name": "Robo", + "effect": "Roba el efecto de los movimientos de curación o de cambio de características que se usen." + }, + "secretPower": { + "name": "Daño Secreto", + "effect": "Ataque cuyos efectos secundarios varían según el entorno de combate." + }, + "dive": { + "name": "Buceo", + "effect": "El usuario se sumerge en el primer turno y ataca en el segundo." + }, + "armThrust": { + "name": "Empujón", + "effect": "Fuertes empujones que golpean de dos a cinco veces seguidas." + }, + "camouflage": { + "name": "Camuflaje", + "effect": "Modifica el tipo del Pokémon según el terreno de combate donde esté." + }, + "tailGlow": { + "name": "Luminicola", + "effect": "Se concentra en una ráfaga de luz que sube muchísimo el Ataque Especial." + }, + "lusterPurge": { + "name": "Resplandor", + "effect": "Fogonazo de luz que inflige daño al objetivo y puede reducir su Defensa Especial." + }, + "mistBall": { + "name": "Bola Neblina", + "effect": "Bola de plumas neblinosas que inflige daño al objetivo y puede reducir su Ataque Especial." + }, + "featherDance": { + "name": "Danza Pluma", + "effect": "Envuelve al objetivo con un manto de plumas para reducir mucho su Ataque." + }, + "teeterDance": { + "name": "Danza Caos", + "effect": "Danza histérica que confunde a los Pokémon que están alrededor del usuario." + }, + "blazeKick": { + "name": "Patada Ígnea", + "effect": "Patada que suele ser un golpe crítico y puede causar quemaduras." + }, + "mudSport": { + "name": "Chapoteo Lodo", + "effect": "El usuario esparce lodo a su alrededor, lo que debilita los movimientos de tipo Eléctrico durante cinco turnos." + }, + "iceBall": { + "name": "Bola Hielo", + "effect": "El atacante rueda contra el objetivo durante cinco turnos, cada vez con mayor fuerza." + }, + "needleArm": { + "name": "Brazo Pincho", + "effect": "Pega con brazos de pinchos y puede hacer retroceder al objetivo." + }, + "slackOff": { + "name": "Relajo", + "effect": "El usuario se relaja y restaura la mitad de sus PS máximos." + }, + "hyperVoice": { + "name": "Vozarrón", + "effect": "Grito desgarrador que inflige daño al objetivo." + }, + "poisonFang": { + "name": "Colmillo Veneno", + "effect": "Mordedura con colmillos venenosos que inflige daño al objetivo y puede envenenarlo gravemente." + }, + "crushClaw": { + "name": "Garra Brutal", + "effect": "Hace trizas al objetivo con garras afiladas y puede reducir su Defensa." + }, + "blastBurn": { + "name": "Anillo Ígneo", + "effect": "Calcina al objetivo con una explosión de fuego. El usuario deberá descansar en el siguiente turno." + }, + "hydroCannon": { + "name": "Hidrocañón", + "effect": "Ataca al objetivo con un cañonazo de agua. El usuario deberá descansar en el siguiente turno." + }, + "meteorMash": { + "name": "Puño Meteoro", + "effect": "Puñetazo que impacta como un meteorito y puede subir el Ataque del agresor." + }, + "astonish": { + "name": "Impresionar", + "effect": "Lanza un grito tan tremendo que impresiona y puede amedrentar al objetivo." + }, + "weatherBall": { + "name": "Meteorobola", + "effect": "El tipo y fuerza del ataque varían según el tiempo que haga." + }, + "aromatherapy": { + "name": "Aromaterapia", + "effect": "Cura todos los problemas de estado del equipo con un suave aroma." + }, + "fakeTears": { + "name": "Llanto Falso", + "effect": "Lágrimas de cocodrilo que bajan mucho la Defensa Especial del objetivo." + }, + "airCutter": { + "name": "Aire Afilado", + "effect": "Viento cortante que azota. Suele ser un golpe crítico." + }, + "overheat": { + "name": "Sofoco", + "effect": "Ataque en toda regla que baja mucho el Ataque Especial de quien lo usa." + }, + "odorSleuth": { + "name": "Rastreo", + "effect": "Permite atacar con cualquier movimiento a objetivos de tipo Fantasma y golpear a Pokémon evasivos." + }, + "rockTomb": { + "name": "Tumba Rocas", + "effect": "Tira rocas que detienen al objetivo y bajan su Velocidad." + }, + "silverWind": { + "name": "Viento Plata", + "effect": "Fuerte viento con polvo de escamas. Puede subir todas las características de quien lo usa." + }, + "metalSound": { + "name": "Eco Metálico", + "effect": "Horrible chirrido metálico que reduce mucho la Defensa Especial del objetivo." + }, + "grassWhistle": { + "name": "Silbato", + "effect": "Agradable melodía que adormece al objetivo." + }, + "tickle": { + "name": "Cosquillas", + "effect": "Hace reír al objetivo para bajar su Ataque y Defensa." + }, + "cosmicPower": { + "name": "Masa Cósmica", + "effect": "Sube la Defensa y la Defensa Especial propias con energía mística." + }, + "waterSpout": { + "name": "Salpicar", + "effect": "Chorro de agua. Cuantos menos PS tenga el usuario, menos potencia tendrá el movimiento." + }, + "signalBeam": { + "name": "Rayo Señal", + "effect": "Ataca con un rayo de luz siniestro. Puede confundir al objetivo." + }, + "shadowPunch": { + "name": "Puño Sombra", + "effect": "Puñetazo procedente de las sombras que no falla nunca." + }, + "extrasensory": { + "name": "Paranormal", + "effect": "Emite una energía muy extraña que puede amedrentar al objetivo." + }, + "skyUppercut": { + "name": "Gancho Alto", + "effect": "Gancho ascendente de gran ímpetu." + }, + "sandTomb": { + "name": "Bucle Arena", + "effect": "Enreda al objetivo en un remolino de arena de cuatro a cinco turnos." + }, + "sheerCold": { + "name": "Frío Polar", + "effect": "Debilita al objetivo de un solo golpe. Si lo usa un Pokémon que no sea de tipo Hielo, es difícil que acierte." + }, + "muddyWater": { + "name": "Agua Lodosa", + "effect": "Ataque con agua lodosa que puede reducir la Precisión del objetivo." + }, + "bulletSeed": { + "name": "Semilladora", + "effect": "Dispara rápido de dos a cinco ráfagas de semillas de manera consecutiva." + }, + "aerialAce": { + "name": "Golpe Aéreo", + "effect": "Desconcierta al objetivo con movimientos muy rápidos antes de cercenarlo. No falla nunca." + }, + "icicleSpear": { + "name": "Carámbano", + "effect": "Ataca lanzando de dos a cinco ráfagas consecutivas de carámbanos." + }, + "ironDefense": { + "name": "Defensa Férrea", + "effect": "Fortalece el cuerpo como si fuera de hierro y sube mucho la Defensa." + }, + "block": { + "name": "Bloqueo", + "effect": "Le corta el paso al objetivo para que no pueda escapar." + }, + "howl": { + "name": "Aullido", + "effect": "Aullido que sube el ánimo y aumenta el Ataque del equipo." + }, + "dragonClaw": { + "name": "Garra Dragón", + "effect": "Araña al objetivo con garras afiladas." + }, + "frenzyPlant": { + "name": "Planta Feroz", + "effect": "Golpea con una enorme planta. El usuario deberá descansar en el siguiente turno." + }, + "bulkUp": { + "name": "Corpulencia", + "effect": "Robustece el cuerpo para subir el Ataque y la Defensa." + }, + "bounce": { + "name": "Bote", + "effect": "El usuario bota en el primer turno y golpea al objetivo en el segundo y puede llegar a paralizarlo." + }, + "mudShot": { + "name": "Disparo Lodo", + "effect": "El usuario ataca lanzando una bola de lodo al objetivo que también reduce su Velocidad." + }, + "poisonTail": { + "name": "Cola Veneno", + "effect": "Puede envenenar y dar un golpe crítico." + }, + "covet": { + "name": "Antojo", + "effect": "Se acerca con ternura al objetivo y tiene un 30% de posibilidades de robar el objeto que lleve." + }, + "voltTackle": { + "name": "Placaje Eléc", + "effect": "Quien lo usa electrifica su cuerpo para luego atacar. Se hiere mucho a sí mismo, pero puede paralizar al objetivo." + }, + "magicalLeaf": { + "name": "Hoja Mágica", + "effect": "Esparce extrañas hojas que persiguen al objetivo. No falla nunca." + }, + "waterSport": { + "name": "Hidrochorro", + "effect": "El usuario se empapa en agua, lo que debilita los movimientos de tipo Fuego durante cinco turnos." + }, + "calmMind": { + "name": "Paz Mental", + "effect": "Aumenta la concentración y calma el espíritu para subir el Ataque Especial y la Defensa Especial." + }, + "leafBlade": { + "name": "Hoja Aguda", + "effect": "Acuchilla con una hoja fina. Suele dar un golpe crítico." + }, + "dragonDance": { + "name": "Danza Dragón", + "effect": "Danza mística que sube el Ataque y la Velocidad." + }, + "rockBlast": { + "name": "Pedrada", + "effect": "Lanza pedruscos al objetivo de dos a cinco veces consecutivas." + }, + "shockWave": { + "name": "Onda Voltio", + "effect": "Ataque eléctrico muy rápido que no falla nunca." + }, + "waterPulse": { + "name": "Hidropulso", + "effect": "Ataca con una potente onda de agua. Puede confundir al objetivo." + }, + "doomDesire": { + "name": "Deseo Oculto", + "effect": "Ataca al objetivo con innumerables haces de luz dos turnos después de haber usado el movimiento." + }, + "psychoBoost": { + "name": "Psicoataque", + "effect": "Ataque en toda regla que baja mucho el Ataque Especial de quien lo usa." + }, + "roost": { + "name": "Respiro", + "effect": "Aterriza sobre la superficie para descansar. Recupera hasta la mitad del total de sus PS." + }, + "gravity": { + "name": "Gravedad", + "effect": "Durante cinco turnos, se anulan los movimientos que alzan el vuelo y los Pokémon de tipo Volador o que levitan son vulnerables a movimientos de tipo Tierra." + }, + "miracleEye": { + "name": "Gran Ojo", + "effect": "Permite atacar con cualquier movimiento a objetivos de tipo Siniestro y golpear a Pokémon evasivos." + }, + "wakeUpSlap": { + "name": "Espabila", + "effect": "Inflige gran daño a objetivos dormidos. Sin embargo, los bofetones también los despiertan." + }, + "hammerArm": { + "name": "Machada", + "effect": "Un terrible puño golpea al contrincante, pero la Velocidad del usuario se ve reducida." + }, + "gyroBall": { + "name": "Giro Bola", + "effect": "Embiste al objetivo con un potente ataque giratorio. Cuanto más lento es el usuario, más daño causa." + }, + "healingWish": { + "name": "Deseo Cura", + "effect": "El usuario se debilita, pero cura los problemas de estado del Pokémon que lo sustituye y restaura sus PS." + }, + "brine": { + "name": "Salmuera", + "effect": "Si al objetivo le queda la mitad o menos de sus PS, el ataque será el doble de fuerte." + }, + "naturalGift": { + "name": "Don Natural", + "effect": "La baya que lleva presta su fuerza para atacar. El tipo de ataque y su fuerza dependen de la baya." + }, + "feint": { + "name": "Amago", + "effect": "Permite golpear a objetivos que han utilizado movimientos como Protección o Detección y anula sus efectos." + }, + "pluck": { + "name": "Picoteo", + "effect": "Picotea al objetivo. Si este sostiene una baya, la picotea también y obtiene sus efectos." + }, + "tailwind": { + "name": "Viento Afín", + "effect": "Crea un fuerte remolino que aumenta la Velocidad de los Pokémon de tu equipo durante cuatro turnos." + }, + "acupressure": { + "name": "Acupresión", + "effect": "Aplica presión en puntos clave del cuerpo para aumentar mucho una característica al azar." + }, + "metalBurst": { + "name": "Represión Metal", + "effect": "Devuelve al rival el último ataque recibido, pero con mucha más fuerza." + }, + "uTurn": { + "name": "Ida y Vuelta", + "effect": "Tras atacar, el usuario da paso a toda prisa a otro Pokémon del equipo." + }, + "closeCombat": { + "name": "A Bocajarro", + "effect": "Lucha abiertamente contra el objetivo sin protegerse. También reduce la Defensa y la Defensa Especial del usuario." + }, + "payback": { + "name": "Vendetta", + "effect": "El usuario contraataca con el doble de fuerza si el objetivo usa un movimiento antes." + }, + "assurance": { + "name": "Buena Baza", + "effect": "Si el objetivo ya ha sufrido daño en ese turno, la fuerza del ataque se duplica." + }, + "embargo": { + "name": "Embargo", + "effect": "Impide al objetivo usar el objeto que lleva durante cinco turnos. Su Entrenador tampoco puede usar objetos con él." + }, + "fling": { + "name": "Lanzamiento", + "effect": "El usuario lanza contra el objetivo el objeto que lleva. La potencia del movimiento y su efecto varían según el objeto." + }, + "psychoShift": { + "name": "Psicocambio", + "effect": "Usa su poder mental para transferir al objetivo sus problemas de estado." + }, + "trumpCard": { + "name": "As Oculto", + "effect": "Cuantos menos PP tenga el movimiento, mayor será la fuerza para atacar." + }, + "healBlock": { + "name": "Anticura", + "effect": "Impide al objetivo usar movimientos, habilidades y objetos equipados que recuperan PS durante cinco turnos." + }, + "wringOut": { + "name": "Estrujón", + "effect": "Estruja con fuerza al objetivo. Cuantos más PS tenga el objetivo, más fuerza tendrá el ataque." + }, + "powerTrick": { + "name": "Truco Fuerza", + "effect": "El usuario emplea su poder mental para intercambiar su Ataque y su Defensa." + }, + "gastroAcid": { + "name": "Bilis", + "effect": "El usuario arroja sus jugos biliares al objetivo, lo que anula el efecto de la habilidad en uso." + }, + "luckyChant": { + "name": "Conjuro", + "effect": "Lanza al cielo un conjuro que protege a todo su equipo de golpes críticos." + }, + "meFirst": { + "name": "Yo Primero", + "effect": "Se adelanta al movimiento que pretende usar el objetivo y lo lanza antes con más fuerza. Si el usuario es más lento, falla." + }, + "copycat": { + "name": "Copión", + "effect": "Imita el movimiento usado justo antes. El movimiento falla si no se ha usado aún ninguno." + }, + "powerSwap": { + "name": "Cambiafuerza", + "effect": "El usuario emplea su poder mental para intercambiar los cambios en el Ataque y el Ataque Especial con el objetivo." + }, + "guardSwap": { + "name": "Cambiadefensa", + "effect": "El usuario emplea su poder mental para intercambiar los cambios en la Defensa y la Defensa Especial con el objetivo." + }, + "punishment": { + "name": "Castigo", + "effect": "La fuerza del ataque aumenta cuanto más se ha fortalecido el objetivo con cambios de características." + }, + "lastResort": { + "name": "Última Baza", + "effect": "Este movimiento solo puede utilizarse tras haber usado al menos una vez todos los demás conocidos por el Pokémon." + }, + "worrySeed": { + "name": "Abatidoras", + "effect": "Planta una semilla en el objetivo que le causa pesar. Sustituye la habilidad del objetivo por Insomnio y le impide dormirse." + }, + "suckerPunch": { + "name": "Golpe Bajo", + "effect": "Permite atacar con prioridad. Falla si el objetivo no está preparando ningún ataque." + }, + "toxicSpikes": { + "name": "Púas Tóxicas", + "effect": "Lanza una trampa de púas tóxicas a los pies del objetivo que envenena a los rivales que entran en combate." + }, + "heartSwap": { + "name": "Cambiaalmas", + "effect": "Usa la fuerza mental para intercambiar con el objetivo los cambios en las características." + }, + "aquaRing": { + "name": "Acua Aro", + "effect": "El usuario se cubre con un manto de agua. Recupera algunos PS en cada turno." + }, + "magnetRise": { + "name": "Levitón", + "effect": "Levita gracias a un campo magnético generado por electricidad durante cinco turnos." + }, + "flareBlitz": { + "name": "Envite Ígneo", + "effect": "El Pokémon se cubre de llamas y carga contra el objetivo, aunque él también recibe daño. Puede quemar." + }, + "forcePalm": { + "name": "Palmeo", + "effect": "Ataca al objetivo con una onda de choque y puede llegar a paralizarlo." + }, + "auraSphere": { + "name": "Esfera Aural", + "effect": "Libera, desde su interior, una inmensa descarga de aura. Es infalible." + }, + "rockPolish": { + "name": "Pulimento", + "effect": "Reduce la resistencia puliendo su cuerpo. Aumenta mucho la Velocidad." + }, + "poisonJab": { + "name": "Puya Nociva", + "effect": "Pincha al objetivo con un tentáculo o brazo envenenado. Puede llegar a envenenar al objetivo." + }, + "darkPulse": { + "name": "Pulso Umbrío", + "effect": "Libera una horrible aura llena de malos pensamientos que puede amedrentar al objetivo." + }, + "nightSlash": { + "name": "Tajo Umbrío", + "effect": "Ataca al objetivo a la primera oportunidad. Suele ser crítico." + }, + "aquaTail": { + "name": "Acua Cola", + "effect": "Ataca agitando la cola como si fuera una ola rabiosa en una tormenta devastadora." + }, + "seedBomb": { + "name": "Bomba Germen", + "effect": "Lanza al objetivo una descarga de semillas explosivas desde arriba." + }, + "airSlash": { + "name": "Tajo Aéreo", + "effect": "Ataca con un viento afilado que incluso corta el aire. También puede amedrentar al objetivo." + }, + "xScissor": { + "name": "Tijera X", + "effect": "Cruza las guadañas o las garras para atacar al objetivo como si fueran unas tijeras." + }, + "bugBuzz": { + "name": "Zumbido", + "effect": "El usuario crea una onda sónica dañina moviendo su cuerpo que también puede disminuir la Defensa Especial del objetivo." + }, + "dragonPulse": { + "name": "Pulso Dragón", + "effect": "Abre mucho la boca y libera una onda de choque con la que ataca al objetivo." + }, + "dragonRush": { + "name": "Carga Dragón", + "effect": "Ataca de forma brutal mientras intimida al objetivo. Puede amedrentarlo." + }, + "powerGem": { + "name": "Joya de Luz", + "effect": "Ataca con un rayo de luz que centellea como si lo formaran miles de joyas." + }, + "drainPunch": { + "name": "Puño Drenaje", + "effect": "Un golpe que drena energía. El Pokémon recupera la mitad de los PS arrebatados al objetivo." + }, + "vacuumWave": { + "name": "Onda Vacío", + "effect": "Gira los puños y libera una onda de vacío contra el objetivo. Este movimiento tiene prioridad alta." + }, + "focusBlast": { + "name": "Onda Certera", + "effect": "Agudiza la concentración mental y libera su poder. Puede reducir la Defensa Especial del objetivo." + }, + "energyBall": { + "name": "Energibola", + "effect": "Aúna fuerzas de la naturaleza y libera su ataque. Puede reducir la Defensa Especial del objetivo." + }, + "braveBird": { + "name": "Pájaro Osado", + "effect": "Pliega sus alas y ataca con un vuelo rasante. El Pokémon que lo usa también resulta seriamente dañado." + }, + "earthPower": { + "name": "Tierra Viva", + "effect": "La tierra a los pies del objetivo erupciona violentamente. Puede reducir la Defensa Especial del objetivo." + }, + "switcheroo": { + "name": "Trapicheo", + "effect": "Intercambia con el objetivo los objetos que llevan tan rápido que es imposible verlo a simple vista." + }, + "gigaImpact": { + "name": "Gigaimpacto", + "effect": "El usuario carga contra el objetivo con toda la fuerza que tiene y descansa en el siguiente turno." + }, + "nastyPlot": { + "name": "Maquinación", + "effect": "Estimula su cerebro pensando en cosas malas. Aumenta mucho el Ataque Especial." + }, + "bulletPunch": { + "name": "Puño Bala", + "effect": "Ataca con fuertes puñetazos tan rápidos como proyectiles. Este movimiento tiene prioridad alta." + }, + "avalanche": { + "name": "Alud", + "effect": "Este ataque inflige el doble de daño a un objetivo que haya golpeado al usuario en ese mismo turno." + }, + "iceShard": { + "name": "Esquirla Helada", + "effect": "Crea esquirlas de hielo y las lanza a gran velocidad. Este movimiento tiene prioridad alta." + }, + "shadowClaw": { + "name": "Garra Umbría", + "effect": "Ataca con una garra afilada hecha de sombras. Suele ser crítico." + }, + "thunderFang": { + "name": "Colmillo Rayo", + "effect": "El usuario muerde al objetivo con colmillos electrificados y puede hacer que se amedrente o se paralice." + }, + "iceFang": { + "name": "Colmillo Hielo", + "effect": "El usuario muerde al objetivo con colmillos helados y puede hacer que se amedrente o se congele." + }, + "fireFang": { + "name": "Colmillo Ígneo", + "effect": "El usuario muerde al objetivo con colmillos en llamas y puede hacer que se amedrente o sufra quemaduras." + }, + "shadowSneak": { + "name": "Sombra Vil", + "effect": "Extiende su sombra y ataca al objetivo por la espalda. Este movimiento tiene prioridad alta." + }, + "mudBomb": { + "name": "Bomba Fango", + "effect": "Ataca lanzando una compacta bola de fango. Puede bajar la Precisión del objetivo." + }, + "psychoCut": { + "name": "Psicocorte", + "effect": "Ataca al objetivo con cuchillas formadas por energía psíquica. Suele ser crítico." + }, + "zenHeadbutt": { + "name": "Cabezazo Zen", + "effect": "Concentra su energía psíquica en la cabeza para golpear. Puede hacer que el objetivo se amedrente." + }, + "mirrorShot": { + "name": "Disparo Espejo", + "effect": "El usuario libera un haz de energía desde su pulido cuerpo. Puede bajar la Precisión." + }, + "flashCannon": { + "name": "Foco Resplandor", + "effect": "El usuario concentra toda la luz del cuerpo y la libera. Puede bajar la Defensa Especial del objetivo." + }, + "rockClimb": { + "name": "Treparrocas", + "effect": "Ataca con una gran embestida. Puede confundir al objetivo." + }, + "defog": { + "name": "Despejar", + "effect": "Potente viento que barre los efectos de movimientos como Reflejo o Pantalla de Luz usados por el objetivo. También reduce su Evasión." + }, + "trickRoom": { + "name": "Espacio Raro", + "effect": "Crea un espacio misterioso en el que los Pokémon lentos se mueven primero durante cinco turnos." + }, + "dracoMeteor": { + "name": "Cometa Draco", + "effect": "Hace que grandes cometas caigan del cielo sobre el objetivo. Baja mucho el Ataque Especial del que lo usa." + }, + "discharge": { + "name": "Chispazo", + "effect": "Una deslumbradora onda eléctrica afecta a los Pokémon que hay combatiendo alrededor. Puede paralizar." + }, + "lavaPlume": { + "name": "Humareda", + "effect": "Un infierno de llamas daña a los Pokémon adyacentes en combate. Puede causar quemaduras." + }, + "leafStorm": { + "name": "Lluevehojas", + "effect": "Envuelve al objetivo con una lluvia de hojas afiladas, pero reduce mucho su Ataque Especial." + }, + "powerWhip": { + "name": "Latigazo", + "effect": "El usuario agita violentamente sus lianas o tentáculos para golpear al objetivo." + }, + "rockWrecker": { + "name": "Romperrocas", + "effect": "Lanza una piedra enorme contra el objetivo. El usuario deberá descansar en el siguiente turno." + }, + "crossPoison": { + "name": "Veneno X", + "effect": "Tajo que puede envenenar al objetivo. Suele ser crítico." + }, + "gunkShot": { + "name": "Lanzamugre", + "effect": "Lanza contra el objetivo basura asquerosa y puede envenenarlo." + }, + "ironHead": { + "name": "Cabeza de Hierro", + "effect": "Ataca con su cabeza dura como el hierro. Puede hacer que el objetivo se amedrente." + }, + "magnetBomb": { + "name": "Bomba Imán", + "effect": "Lanza unas bombas de hierro que se pegan al adversario. No se puede esquivar." + }, + "stoneEdge": { + "name": "Roca Afilada", + "effect": "Clava piedras muy afiladas al objetivo. Suele ser crítico." + }, + "captivate": { + "name": "Seducción", + "effect": "Si el objetivo es del sexo opuesto, queda embelesado y baja mucho su Ataque Especial." + }, + "stealthRock": { + "name": "Trampa Rocas", + "effect": "Una trampa de rocas que flota en el aire y daña a los objetivos que entran en combate." + }, + "grassKnot": { + "name": "Hierba Lazo", + "effect": "Enreda al objetivo con hierba y lo derriba. Cuanto más pesado es el objetivo, más potencia tiene el movimiento." + }, + "chatter": { + "name": "Cháchara", + "effect": "Ataca con una onda de sonido muy ruidosa compuesta por palabras y confunde al objetivo." + }, + "judgment": { + "name": "Sentencia", + "effect": "Emite incontables haces de luz. El tipo del movimiento varía según la tabla que lleve el usuario." + }, + "bugBite": { + "name": "Picadura", + "effect": "Pica al objetivo. Si el objetivo lleva una baya, el usuario se la come y se beneficia de su efecto." + }, + "chargeBeam": { + "name": "Rayo Carga", + "effect": "Lanza un rayo eléctrico contra el objetivo. Puede subir el Ataque Especial de quien lo usa." + }, + "woodHammer": { + "name": "Mazazo", + "effect": "Arremete contra el objetivo con su robusto cuerpo. El usuario se hiere seriamente a sí mismo." + }, + "aquaJet": { + "name": "Acua Jet", + "effect": "Ataque de una rapidez espeluznante. Este movimiento tiene prioridad alta." + }, + "attackOrder": { + "name": "Al Ataque", + "effect": "El usuario llama a sus súbditos para que ataquen al objetivo. Suele ser crítico." + }, + "defendOrder": { + "name": "A Defender", + "effect": "El usuario llama a sus súbditos para que formen un escudo viviente. Sube la Defensa y la Defensa Especial." + }, + "healOrder": { + "name": "Auxilio", + "effect": "El usuario llama a sus súbditos para que lo curen. Recupera hasta la mitad de los PS máximos." + }, + "headSmash": { + "name": "Testarazo", + "effect": "El usuario arriesga su vida y lanza un cabezazo con toda su fuerza. El agresor resulta seriamente dañado." + }, + "doubleHit": { + "name": "Doble Golpe", + "effect": "Golpea al objetivo dos veces seguidas con la cola u otras partes de su cuerpo." + }, + "roarOfTime": { + "name": "Distorsión", + "effect": "Ataca al objetivo usando tal energía que el tiempo se distorsiona. El usuario deberá descansar en el siguiente turno." + }, + "spacialRend": { + "name": "Corte Vacío", + "effect": "Desgarra al objetivo y el espacio a su alrededor. Suele ser crítico." + }, + "lunarDance": { + "name": "Danza Lunar", + "effect": "El usuario se debilita, pero el Pokémon que lo sustituye recupera su estado, los PS y los PP." + }, + "crushGrip": { + "name": "Agarrón", + "effect": "Estruja al objetivo con gran fuerza. Cuantos más PS le queden al objetivo, más fuerte será el ataque." + }, + "magmaStorm": { + "name": "Lluvia Ígnea", + "effect": "El objetivo queda atrapado en una tormenta de fuego que dura de cuatro a cinco turnos." + }, + "darkVoid": { + "name": "Brecha Negra", + "effect": "El objetivo es enviado a un mundo de tinieblas que lo hace dormir." + }, + "seedFlare": { + "name": "Fulgor Semilla", + "effect": "Una onda de choque se libera del cuerpo. Puede bajar mucho la Defensa Especial del objetivo." + }, + "ominousWind": { + "name": "Viento Aciago", + "effect": "Produce un viento horripilante. Puede subir de golpe todas las características del usuario." + }, + "shadowForce": { + "name": "Golpe Umbrío", + "effect": "En el primer turno, desaparece. En el segundo, golpea al objetivo aunque se esté protegiendo." + }, + "honeClaws": { + "name": "Afilagarras", + "effect": "El usuario se afila las garras para aumentar su Ataque y su Precisión." + }, + "wideGuard": { + "name": "Vasta Guardia", + "effect": "Bloquea los ataques de objetivo múltiple lanzados contra el bando del usuario durante un turno." + }, + "guardSplit": { + "name": "Isoguardia", + "effect": "El usuario emplea sus poderes para hacer la media de su Defensa y su Defensa Especial con las del objetivo y compartirlas." + }, + "powerSplit": { + "name": "Isofuerza", + "effect": "El usuario emplea sus poderes para hacer la media de su Ataque y su Ataque Especial con los del objetivo y compartirlos." + }, + "wonderRoom": { + "name": "Zona Extraña", + "effect": "Crea un espacio misterioso donde se intercambian la Defensa y la Defensa Especial de todos los Pokémon durante cinco turnos." + }, + "psyshock": { + "name": "Psicocarga", + "effect": "Crea una onda psíquica que causa daño físico al objetivo." + }, + "venoshock": { + "name": "Carga Tóxica", + "effect": "Cubre al objetivo con un líquido venenoso. La potencia del movimiento se duplica si este ya está envenenado." + }, + "autotomize": { + "name": "Aligerar", + "effect": "El usuario se desprende de partes prescindibles de su cuerpo para hacerse más ligero y aumentar mucho su Velocidad." + }, + "ragePowder": { + "name": "Polvo Ira", + "effect": "Usa un polvo que enerva a los rivales y hace que centren en el usuario su atención y sus movimientos." + }, + "telekinesis": { + "name": "Telequinesis", + "effect": "El usuario emplea su poder mental para hacer flotar al objetivo, y lo convierte en un blanco fácil durante tres turnos." + }, + "magicRoom": { + "name": "Zona Mágica", + "effect": "Crea un espacio misterioso que inutiliza todos los objetos de los Pokémon durante cinco turnos." + }, + "smackDown": { + "name": "Antiaéreo", + "effect": "Ataca lanzando una piedra o un proyectil. Si el objetivo está en el aire, lo estrella contra el suelo." + }, + "stormThrow": { + "name": "Llave Corsé", + "effect": "Lanza un golpe devastador. Siempre asesta un golpe crítico." + }, + "flameBurst": { + "name": "Pirotecnia", + "effect": "Golpea al objetivo con una llamarada que afecta también a los Pokémon adyacentes." + }, + "sludgeWave": { + "name": "Onda Tóxica", + "effect": "Una onda tóxica que daña a los Pokémon de alrededor. Puede envenenar." + }, + "quiverDance": { + "name": "Danza Aleteo", + "effect": "Danza mística que aumenta el Ataque Especial, la Defensa Especial y la Velocidad." + }, + "heavySlam": { + "name": "Cuerpo Pesado", + "effect": "El usuario golpea con todo su cuerpo. Cuanto mayor sea su peso comparado con el del objetivo, mayor será la potencia del movimiento." + }, + "synchronoise": { + "name": "Sincrorruido", + "effect": "Una extraña onda que daña a todos los Pokémon adyacentes del mismo tipo que el que la ejecuta." + }, + "electroBall": { + "name": "Bola Voltio", + "effect": "Lanza una bola eléctrica. Cuanto mayor sea la Velocidad del usuario en comparación con la del objetivo, mayor será la potencia del movimiento." + }, + "soak": { + "name": "Empapar", + "effect": "Potente lluvia que transforma al objetivo en un Pokémon de tipo Agua." + }, + "flameCharge": { + "name": "Nitrocarga", + "effect": "Llamas que golpean al objetivo y aumentan la Velocidad del atacante." + }, + "coil": { + "name": "Enrosque", + "effect": "El usuario se concentra, lo que le permite aumentar su Ataque, Defensa y Precisión." + }, + "lowSweep": { + "name": "Puntapié", + "effect": "Ataque rápido dirigido a los pies del objetivo que le hace perder Velocidad." + }, + "acidSpray": { + "name": "Bomba Ácida", + "effect": "Ataca con un líquido corrosivo que reduce mucho la Defensa Especial del objetivo." + }, + "foulPlay": { + "name": "Juego Sucio", + "effect": "El usuario emplea la fuerza del objetivo para atacarlo. Cuanto mayor es el Ataque del objetivo, más daño provoca." + }, + "simpleBeam": { + "name": "Onda Simple", + "effect": "Lanza una onda psíquica que hace que la habilidad del objetivo pase a ser Simple." + }, + "entrainment": { + "name": "Danza Amiga", + "effect": "Una extraña danza que induce al objetivo a imitarla y cambia su habilidad por la misma que la del usuario." + }, + "afterYou": { + "name": "Cede Paso", + "effect": "Si el usuario es el más rápido, permite al objetivo usar un movimiento justo tras él, adelantándose a Pokémon más rápidos." + }, + "round": { + "name": "Canon", + "effect": "Un canto que ataca al objetivo. Cuantos más Pokémon lo usan, más aumenta de potencia." + }, + "echoedVoice": { + "name": "Eco Voz", + "effect": "Un susurro que aumenta de potencia conforme el usuario y otros Pokémon lo van utilizando." + }, + "chipAway": { + "name": "Guardia Baja", + "effect": "Un ataque que busca los puntos débiles del objetivo y puede causarle daño aunque cambien sus características." + }, + "clearSmog": { + "name": "Niebla Clara", + "effect": "Ataca al objetivo con una singular bola de lodo que elimina cualquier cambio en sus características." + }, + "storedPower": { + "name": "Poder Reserva", + "effect": "Acumula poder para golpear. Cuanto más suban las características del usuario, mayor será el daño." + }, + "quickGuard": { + "name": "Anticipo", + "effect": "Se protege a sí mismo y a sus aliados de movimientos con prioridad." + }, + "allySwitch": { + "name": "Cambio de Banda", + "effect": "Extraño poder que intercambia la posición del usuario con la de un aliado sobre el terreno de combate." + }, + "scald": { + "name": "Escaldar", + "effect": "Ataca arrojando agua hirviendo al objetivo. Puede causar quemaduras." + }, + "shellSmash": { + "name": "Rompecoraza", + "effect": "El usuario rompe su coraza y baja su Defensa y Defensa Especial, pero aumenta mucho su Ataque, Ataque Especial y Velocidad." + }, + "healPulse": { + "name": "Pulso Cura", + "effect": "Una onda curativa restaura la mitad de los PS máximos del objetivo." + }, + "hex": { + "name": "Infortunio", + "effect": "Ataque que causa un gran daño a los objetivos que sufren problemas de estado." + }, + "skyDrop": { + "name": "Caída Libre", + "effect": "Primer turno: lanza al objetivo al aire. Segundo turno: lo hace caer. Mientras está en el aire, no lo deja moverse." + }, + "shiftGear": { + "name": "Cambio de Marcha", + "effect": "Al hacer girar los engranajes, el usuario mejora su Ataque y aumenta mucho su Velocidad." + }, + "circleThrow": { + "name": "Llave Giro", + "effect": "Lanza por los aires al objetivo y hace que salga otro Pokémon. Si es uno salvaje, acaba el combate." + }, + "incinerate": { + "name": "Calcinación", + "effect": "Llamas que golpean al objetivo. Si este lleva una baya o ciertos objetos, se quemarán y ya no se podrán usar." + }, + "quash": { + "name": "Último Lugar", + "effect": "Consigue que el objetivo sea el último en moverse." + }, + "acrobatics": { + "name": "Acróbata", + "effect": "Golpea ágilmente. Si el usuario no porta ningún objeto, el objetivo resulta seriamente dañado." + }, + "reflectType": { + "name": "Clonatipo", + "effect": "Cambia el tipo del Pokémon al mismo tipo que el del objetivo." + }, + "retaliate": { + "name": "Represalia", + "effect": "Venga a los amigos caídos. Si en el turno anterior han derrotado a alguno, la potencia del ataque aumentará." + }, + "finalGambit": { + "name": "Sacrificio", + "effect": "El usuario se sacrifica causándole un daño al objetivo equivalente a sus propios PS perdidos." + }, + "bestow": { + "name": "Ofrenda", + "effect": "Entrega el objeto que lleva al objetivo en caso de que este no tenga ninguno." + }, + "inferno": { + "name": "Infierno", + "effect": "Ataca con una gran ráfaga de fuego que causa quemaduras." + }, + "waterPledge": { + "name": "Voto Agua", + "effect": "Ataca con columnas de agua. Combinado con Voto Fuego, crea un arcoíris y aumenta su potencia." + }, + "firePledge": { + "name": "Voto Fuego", + "effect": "Ataca con columnas de fuego. Combinado con Voto Planta, crea un mar de llamas y aumenta su potencia." + }, + "grassPledge": { + "name": "Voto Planta", + "effect": "Ataca con columnas de hojas. Combinado con Voto Agua, crea un pantano y aumenta su potencia." + }, + "voltSwitch": { + "name": "Voltiocambio", + "effect": "Tras atacar, el usuario da paso a toda prisa a otro Pokémon del equipo." + }, + "struggleBug": { + "name": "Estoicismo", + "effect": "El usuario opone resistencia y ataca a los oponentes. También reduce su Ataque Especial." + }, + "bulldoze": { + "name": "Terratemblor", + "effect": "Sacudida sísmica que afecta a los Pokémon adyacentes y también reduce su Velocidad." + }, + "frostBreath": { + "name": "Vaho Gélido", + "effect": "Quien lo usa ataca lanzando un aliento gélido. Siempre asesta un golpe crítico." + }, + "dragonTail": { + "name": "Cola Dragón", + "effect": "Ataca al objetivo y lo obliga a cambiarse por otro Pokémon. Si es uno salvaje, acaba el combate." + }, + "workUp": { + "name": "Avivar", + "effect": "Quien lo usa se concentra y potencia su Ataque y su Ataque Especial." + }, + "electroweb": { + "name": "Electrotela", + "effect": "Atrapa y ataca a los objetivos con una telaraña eléctrica. También reduce su Velocidad." + }, + "wildCharge": { + "name": "Voltio Cruel", + "effect": "Carga eléctrica muy potente que también hiere ligeramente a quien la usa." + }, + "drillRun": { + "name": "Taladradora", + "effect": "El usuario golpea usando su cuerpo como un taladro. Suele ser crítico." + }, + "dualChop": { + "name": "Golpe Bis", + "effect": "Golpea dos veces seguidas con las partes más recias de su cuerpo." + }, + "heartStamp": { + "name": "Arrumaco", + "effect": "El usuario despista al objetivo con gestos adorables y aprovecha la ocasión para asestarle un golpe tremendo que puede hacerlo retroceder." + }, + "hornLeech": { + "name": "Asta Drenaje", + "effect": "Un golpe que drena energía. El Pokémon recupera la mitad de los PS arrebatados al objetivo." + }, + "sacredSword": { + "name": "Espada Santa", + "effect": "El usuario ataca con una espada, ignorando cualquier cambio en las características del objetivo." + }, + "razorShell": { + "name": "Concha Filo", + "effect": "Una afilada vieira ataca al objetivo. También puede hacer disminuir su Defensa." + }, + "heatCrash": { + "name": "Golpe Calor", + "effect": "El usuario ataca con su cuerpo ardiente. Cuanto mayor sea su peso comparado con el del objetivo, más daño causará." + }, + "leafTornado": { + "name": "Ciclón de Hojas", + "effect": "Tritura con afiladas hojas y puede bajar la Precisión del objetivo." + }, + "steamroller": { + "name": "Rodillo de Púas", + "effect": "El usuario se hace una bola y arrolla al objetivo con su cuerpo. Puede hacerlo retroceder." + }, + "cottonGuard": { + "name": "Rizo Algodón", + "effect": "Cubre al Pokémon con una madeja protectora. Aumenta muchísimo la Defensa." + }, + "nightDaze": { + "name": "Pulso Noche", + "effect": "Ataca al objetivo con una onda siniestra. Puede bajar su Precisión." + }, + "psystrike": { + "name": "Onda Mental", + "effect": "Crea una onda psíquica que causa daño físico al objetivo." + }, + "tailSlap": { + "name": "Plumerazo", + "effect": "Golpea con la cola de dos a cinco veces seguidas." + }, + "hurricane": { + "name": "Vendaval", + "effect": "Golpea al objetivo con un fuerte torbellino que envuelve al rival y puede confundirlo." + }, + "headCharge": { + "name": "Ariete", + "effect": "Propina un tremendo cabezazo. También daña al usuario un poco." + }, + "gearGrind": { + "name": "Rueda Doble", + "effect": "Rota dos engranajes de hierro sobre el objetivo. Golpea dos veces." + }, + "searingShot": { + "name": "Bomba Ígnea", + "effect": "Un infierno de llamas daña a los Pokémon adyacentes en combate. Puede causar quemaduras." + }, + "technoBlast": { + "name": "Tecno Shock", + "effect": "Ataca al objetivo con un gran láser. El tipo del ataque lo determina el cartucho que porta el usuario." + }, + "relicSong": { + "name": "Canto Arcaico", + "effect": "Ataca conmoviendo al objetivo con un antiguo canto. Puede dormirlo." + }, + "secretSword": { + "name": "Sable Místico", + "effect": "Ensarta al objetivo con un largo cuerno dotado de un poder místico que provoca daño físico." + }, + "glaciate": { + "name": "Mundo Gélido", + "effect": "Ataque con aire helado que baja la Velocidad del objetivo." + }, + "boltStrike": { + "name": "Ataque Fulgor", + "effect": "Ataca envolviéndose de una gran carga eléctrica y embistiendo al objetivo con ella. Puede paralizar." + }, + "blueFlare": { + "name": "Llama Azul", + "effect": "Ataca con una bella pero potente llama azul que rodea al objetivo. Puede causar quemaduras." + }, + "fieryDance": { + "name": "Danza Llama", + "effect": "Envuelve en llamas y daña al objetivo. Puede aumentar el Ataque Especial de quien lo usa." + }, + "freezeShock": { + "name": "Rayo Gélido", + "effect": "El usuario carga un bloque de hielo con electricidad en el primer turno y ataca con él en el segundo. Puede paralizar." + }, + "iceBurn": { + "name": "Llama Gélida", + "effect": "Ataca al objetivo en el segundo turno rodeándolo de un aire gélido. Puede causar quemaduras." + }, + "snarl": { + "name": "Alarido", + "effect": "Chillido desagradable que reduce el Ataque Especial del objetivo." + }, + "icicleCrash": { + "name": "Chuzos", + "effect": "Lanza grandes carámbanos. Puede amedrentar al objetivo." + }, + "vCreate": { + "name": "V de Fuego", + "effect": "Golpea con una V de llamas al objetivo. Baja la Defensa, la Defensa Especial y la Velocidad de quien lo usa." + }, + "fusionFlare": { + "name": "Llama Fusión", + "effect": "Ataca con una llamarada gigantesca. Aumenta su potencia si es influenciada por una gran energía eléctrica." + }, + "fusionBolt": { + "name": "Rayo Fusión", + "effect": "Ataca con una enorme descarga eléctrica. Aumenta su potencia si es influenciada por una gigantesca llamarada." + }, + "flyingPress": { + "name": "Plancha Voladora", + "effect": "El usuario se lanza sobre su objetivo. Este movimiento es de tipo Lucha y tipo Volador al mismo tiempo." + }, + "matBlock": { + "name": "Escudo Tatami", + "effect": "El usuario usa un tatami para escudarse de los ataques enemigos. Protege también a los aliados. No funciona contra movimientos de estado." + }, + "belch": { + "name": "Eructo", + "effect": "El usuario causa daño a su objetivo lanzándole un eructo. Para poder utilizar este movimiento, tiene que haberse comido una baya equipada." + }, + "rototiller": { + "name": "Fertilizante", + "effect": "Labra la tierra haciendo que sea más fácil cultivarla y consigue que aumente el Ataque y el Ataque Especial de los Pokémon de tipo Planta." + }, + "stickyWeb": { + "name": "Red Viscosa", + "effect": "Coloca una red pegajosa alrededor del objetivo que reduce la Velocidad de los rivales que entran en combate." + }, + "fellStinger": { + "name": "Aguijón Letal", + "effect": "Si se derrota al objetivo utilizando este movimiento, aumenta muchísimo el Ataque del usuario." + }, + "phantomForce": { + "name": "Golpe Fantasma", + "effect": "El usuario desaparece en el primer turno y ataca a su objetivo en el segundo. Permite acertar aunque el objetivo esté protegiéndose." + }, + "trickOrTreat": { + "name": "Halloween", + "effect": "Invita al objetivo a celebrar Halloween, lo que añade el tipo Fantasma a los tipos de este." + }, + "nobleRoar": { + "name": "Rugido de Guerra", + "effect": "Intimida a su oponente con un rugido de guerra, lo que hace que disminuyan tanto su Ataque como su Ataque Especial." + }, + "ionDeluge": { + "name": "Cortina Plasma", + "effect": "El Pokémon disemina partículas con carga eléctrica que convierten los movimientos de tipo Normal en tipo Eléctrico." + }, + "parabolicCharge": { + "name": "Carga Parábola", + "effect": "Inflige daño a los Pokémon adyacentes. El usuario absorbe la mitad del daño producido para restaurar sus propios PS." + }, + "forestsCurse": { + "name": "Condena Silvana", + "effect": "El objetivo es presa de la maldición del bosque, por lo que pasa a ser un Pokémon de tipo Planta, además de conservar sus tipos habituales." + }, + "petalBlizzard": { + "name": "Tormenta Floral", + "effect": "El usuario desata un intenso vendaval de pétalos que daña a los Pokémon a su alrededor." + }, + "freezeDry": { + "name": "Liofilización", + "effect": "Enfría súbitamente al objetivo e incluso puede congelarlo. Es supereficaz contra Pokémon de tipo Agua." + }, + "disarmingVoice": { + "name": "Voz Cautivadora", + "effect": "Obnubila al objetivo con su fascinante voz y le provoca daños emocionales. No falla nunca." + }, + "partingShot": { + "name": "Última Palabra", + "effect": "El usuario se cambia por otro Pokémon de su equipo, pero antes amedrenta a su oponente y hace que disminuyan su Ataque y Ataque Especial." + }, + "topsyTurvy": { + "name": "Reversión", + "effect": "Invierte por completo los cambios en las características del objetivo." + }, + "drainingKiss": { + "name": "Beso Drenaje", + "effect": "El usuario absorbe PS del objetivo con un beso y restaura su propia energía en una cantidad igual o superior a la mitad del daño infligido." + }, + "craftyShield": { + "name": "Truco Defensa", + "effect": "Usa unos misteriosos poderes para protegerse a sí mismo y a sus aliados de movimientos de estado, pero no de otro tipo de ataques." + }, + "flowerShield": { + "name": "Defensa Floral", + "effect": "Aumenta la Defensa de todos los Pokémon de tipo Planta que hay en el combate usando unos misteriosos poderes." + }, + "grassyTerrain": { + "name": "Campo de Hierba", + "effect": "Durante cinco turnos, se potencian los movimientos de tipo Planta y los Pokémon que están en contacto con el suelo recuperan PS en cada turno." + }, + "mistyTerrain": { + "name": "Campo de Niebla", + "effect": "Durante cinco turnos, los Pokémon que están en el suelo no sufren problemas de estado y se reduce a la mitad el daño de los movimientos de tipo Dragón." + }, + "electrify": { + "name": "Electrificación", + "effect": "Si el objetivo queda electrificado antes de usar un movimiento, este será de tipo Eléctrico." + }, + "playRough": { + "name": "Carantoña", + "effect": "El Pokémon que lo usa le hace cucamonas al objetivo y lo ataca. Puede disminuir el Ataque del objetivo." + }, + "fairyWind": { + "name": "Viento Feérico", + "effect": "El Pokémon que lo usa desata un vendaval feérico que arremete contra el objetivo." + }, + "moonblast": { + "name": "Fuerza Lunar", + "effect": "Invoca el poder de la luna para atacar al objetivo. Puede reducir su Ataque Especial." + }, + "boomburst": { + "name": "Estruendo", + "effect": "Ataca a todos los Pokémon a su alrededor con una potentísima onda sonora." + }, + "fairyLock": { + "name": "Cerrojo Feérico", + "effect": "Consigue que ningún Pokémon pueda huir ni ser cambiado por otro en el siguiente turno echando un cerrojo." + }, + "kingsShield": { + "name": "Escudo Real", + "effect": "El usuario adopta una postura defensiva y se protege de cualquier daño. Reduce el Ataque de cualquier Pokémon con el que entre en contacto." + }, + "playNice": { + "name": "Camaradería", + "effect": "Se hace amigo de su objetivo y consigue que a este se le quiten las ganas de combatir, lo que reduce su Ataque." + }, + "confide": { + "name": "Confidencia", + "effect": "Hace que el objetivo pierda la concentración contándole un secreto y reduce su Ataque Especial." + }, + "diamondStorm": { + "name": "Torm. Diamantes", + "effect": "Desata un devastador vendaval de diamantes para dañar a los oponentes. Puede aumentar mucho la Defensa del usuario." + }, + "steamEruption": { + "name": "Chorro de Vapor", + "effect": "Envuelve al objetivo con vapor extremadamente caliente que puede causar quemaduras." + }, + "hyperspaceHole": { + "name": "Paso Dimensional", + "effect": "El usuario aparece junto al rival usando un agujero dimensional y le asesta un golpe que movimientos como Protección o Detección no pueden evitar." + }, + "waterShuriken": { + "name": "Shuriken de Agua", + "effect": "Golpea al objetivo de dos a cinco veces seguidas con estrellas arrojadizas hechas de mucosidad. Este movimiento tiene prioridad alta." + }, + "mysticalFire": { + "name": "Llama Embrujada", + "effect": "El usuario lanza por la boca una singular llama a gran temperatura con la que ataca a su objetivo y reduce su Ataque Especial." + }, + "spikyShield": { + "name": "Barrera Espinosa", + "effect": "Protege al usuario de ataques e inflige daño a quien se los lance si entra en contacto con él." + }, + "aromaticMist": { + "name": "Niebla Aromática", + "effect": "Consigue aumentar la Defensa Especial de un Pokémon de su equipo con una fragancia misteriosa." + }, + "eerieImpulse": { + "name": "Onda Anómala", + "effect": "El usuario irradia unas raras ondas que, al alcanzar al objetivo, reducen mucho su Ataque Especial." + }, + "venomDrench": { + "name": "Trampa Venenosa", + "effect": "Impregna a su objetivo con un líquido venenoso que disminuye el Ataque, el Ataque Especial y la Velocidad. Solo afecta a Pokémon ya envenenados." + }, + "powder": { + "name": "Polvo Explosivo", + "effect": "Esparce un polvo sobre el objetivo. Si este usa un movimiento de tipo Fuego en el mismo turno, el polvo explota y le inflige daño." + }, + "geomancy": { + "name": "Geocontrol", + "effect": "Concentra energía durante el primer turno, de forma que su Velocidad, Ataque Especial y Defensa Especial aumenten mucho en el segundo." + }, + "magneticFlux": { + "name": "Aura Magnética", + "effect": "Manipula el campo magnético y logra aumentar la Defensa y la Defensa Especial de los Pokémon aliados que cuenten con las habilidades Más y Menos." + }, + "happyHour": { + "name": "Paga Extra", + "effect": "Al usar este movimiento, se duplica el dinero recibido tras el combate." + }, + "electricTerrain": { + "name": "Campo Eléctrico", + "effect": "Durante cinco turnos, se potencian los movimientos de tipo Eléctrico y los Pokémon que están en contacto con el suelo no pueden quedarse dormidos." + }, + "dazzlingGleam": { + "name": "Brillo Mágico", + "effect": "Inflige daño al objetivo con una potente luz." + }, + "celebrate": { + "name": "Celebración", + "effect": "El Pokémon te felicita en un día muy especial para ti." + }, + "holdHands": { + "name": "Manos Juntas", + "effect": "El usuario le da la mano a un aliado y ambos se sienten muy felices." + }, + "babyDollEyes": { + "name": "Ojitos Tiernos", + "effect": "Lanza una mirada al objetivo con ojos acaramelados, con lo que logra que su Ataque se reduzca. Este movimiento tiene prioridad alta." + }, + "nuzzle": { + "name": "Moflete Estático", + "effect": "El usuario frota sus mofletes cargados de electricidad contra el objetivo y consigue paralizarlo." + }, + "holdBack": { + "name": "Clemencia", + "effect": "El usuario se contiene a la hora de atacar y deja al objetivo con al menos 1 PS." + }, + "infestation": { + "name": "Acoso", + "effect": "Hostiga al objetivo durante cuatro o cinco turnos e impide que pueda huir o ser cambiado por otro mientras tanto." + }, + "powerUpPunch": { + "name": "Puño Incremento", + "effect": "Cada vez que golpea a un oponente se endurecen sus puños. Si acierta al objetivo, el Ataque del usuario aumenta." + }, + "oblivionWing": { + "name": "Ala Mortífera", + "effect": "El usuario absorbe energía del objetivo y aumenta sus PS en una cantidad igual o superior a la mitad del daño infligido." + }, + "thousandArrows": { + "name": "Mil Flechas", + "effect": "Acierta incluso a Pokémon que estén en el aire y los hace caer al suelo." + }, + "thousandWaves": { + "name": "Mil Temblores", + "effect": "El usuario genera ondas sísmicas que se propagan por el suelo y sacuden al objetivo. Los Pokémon alcanzados no podrán huir del combate ni ser cambiados por otros." + }, + "landsWrath": { + "name": "Fuerza Telúrica", + "effect": "Acumula energía de la corteza terrestre y la concentra contra los oponentes, dañándolos." + }, + "lightOfRuin": { + "name": "Luz Aniquiladora", + "effect": "El usuario emplea el poder de la Flor Eterna para lanzar un potente rayo de luz, pero sufre bastante daño al hacerlo." + }, + "originPulse": { + "name": "Pulso Primigenio", + "effect": "Ataca al objetivo con una infinidad de rayos de luz azulada." + }, + "precipiceBlades": { + "name": "Filo del Abismo", + "effect": "Hace que el poder latente de la tierra se manifieste en forma de hojas afiladas y ataca al objetivo con ellas." + }, + "dragonAscent": { + "name": "Ascenso Draco", + "effect": "El usuario se precipita desde el cielo a una velocidad de vértigo para atacar al objetivo, pero hace que bajen la Defensa y la Defensa Especial del usuario." + }, + "hyperspaceFury": { + "name": "Cerco Dimensión", + "effect": "Ataca al objetivo con una ráfaga de golpes que pasan por alto los efectos de movimientos como Protección o Detección. Baja la Defensa del usuario." + }, + "breakneckBlitzPhysical": { + "name": "Carrera Arrolladora", + "effect": "El usuario emplea el Poder Z para coger carrerilla y arremeter contra el objetivo con gran fuerza. Su potencia depende de la del movimiento original." + }, + "breakneckBlitzSpecial": { + "name": "Carrera Arrolladora", + "effect": "Dummy data" + }, + "allOutPummelingPhysical": { + "name": "Ráfaga Demoledora", + "effect": "Emplea el Poder Z para lanzar una sarta de golpes demoledores contra el objetivo. Su potencia depende de la del movimiento original." + }, + "allOutPummelingSpecial": { + "name": "Ráfaga Demoledora", + "effect": "Dummy data" + }, + "supersonicSkystrikePhysical": { + "name": "Picado Supersónico", + "effect": "El usuario emplea el Poder Z para volar muy alto y abalanzarse en picado sobre el objetivo. Su potencia depende de la del movimiento original." + }, + "supersonicSkystrikeSpecial": { + "name": "Picado Supersónico", + "effect": "Dummy data" + }, + "acidDownpourPhysical": { + "name": "Diluvio Corrosivo", + "effect": "El usuario emplea el Poder Z para crear una ciénaga venenosa en la que sumerge al objetivo. Su potencia depende de la del movimiento original." + }, + "acidDownpourSpecial": { + "name": "Diluvio Corrosivo", + "effect": "Dummy data" + }, + "tectonicRagePhysical": { + "name": "Barrena Telúrica", + "effect": "Emplea el Poder Z para abrir una profunda grieta en el suelo que se traga al oponente. Su potencia depende de la del movimiento original." + }, + "tectonicRageSpecial": { + "name": "Barrena Telúrica", + "effect": "Dummy data" + }, + "continentalCrushPhysical": { + "name": "Aplastamiento Gigalítico", + "effect": "El usuario emplea el Poder Z para crear una montaña rocosa con la que aplasta al objetivo. Su potencia depende de la del movimiento original." + }, + "continentalCrushSpecial": { + "name": "Aplastamiento Gigalítico", + "effect": "Dummy data" + }, + "savageSpinOutPhysical": { + "name": "Guadaña Sedosa", + "effect": "Emplea el Poder Z para encerrar a su oponente en un capullo contra el que arremete con fuerza. Su potencia depende de la del movimiento original." + }, + "savageSpinOutSpecial": { + "name": "Guadaña Sedosa", + "effect": "Dummy data" + }, + "neverEndingNightmarePhysical": { + "name": "Presa Espectral", + "effect": "El usuario emplea el Poder Z para invocar a unos espectros encolerizados que apresan al objetivo. Su potencia depende de la del movimiento original." + }, + "neverEndingNightmareSpecial": { + "name": "Presa Espectral", + "effect": "Dummy data" + }, + "corkscrewCrashPhysical": { + "name": "Hélice Trepanadora", + "effect": "El usuario emplea el Poder Z para girar a toda velocidad y perforar al objetivo. Su potencia depende de la del movimiento original." + }, + "corkscrewCrashSpecial": { + "name": "Hélice Trepanadora", + "effect": "Dummy data" + }, + "infernoOverdrivePhysical": { + "name": "Hecatombe Pírica", + "effect": "El usuario emplea el Poder Z para lanzar una enorme llamarada con la que calcina a su objetivo. Su potencia depende de la del movimiento original." + }, + "infernoOverdriveSpecial": { + "name": "Hecatombe Pírica", + "effect": "Dummy data" + }, + "hydroVortexPhysical": { + "name": "Hidrovórtice Abisal", + "effect": "El usuario emplea el Poder Z para crear un potente torbellino de agua que engulle al objetivo. Su potencia depende de la del movimiento original." + }, + "hydroVortexSpecial": { + "name": "Hidrovórtice Abisal", + "effect": "Dummy data" + }, + "bloomDoomPhysical": { + "name": "Megatón Floral", + "effect": "Emplea el Poder Z para concentrar la energía de la vegetación que lo rodea y atacar al objetivo. Su potencia depende de la del movimiento original." + }, + "bloomDoomSpecial": { + "name": "Megatón Floral", + "effect": "Dummy data" + }, + "gigavoltHavocPhysical": { + "name": "Gigavoltio Destructor", + "effect": "El usuario emplea el Poder Z para generar una fuerte descarga eléctrica con la que electrocuta al objetivo. Su potencia depende de la del movimiento original." + }, + "gigavoltHavocSpecial": { + "name": "Gigavoltio Destructor", + "effect": "Dummy data" + }, + "shatteredPsychePhysical": { + "name": "Disruptor Psíquico", + "effect": "Emplea el Poder Z para manipular la mente del objetivo, infligiéndole un daño ingente. Su potencia depende de la del movimiento original." + }, + "shatteredPsycheSpecial": { + "name": "Disruptor Psíquico", + "effect": "Dummy data" + }, + "subzeroSlammerPhysical": { + "name": "Crioaliento Despiadado", + "effect": "Emplea el Poder Z para lanzar un rayo de hielo que baja la temperatura de golpe y congela al objetivo. Su potencia depende de la del movimiento original." + }, + "subzeroSlammerSpecial": { + "name": "Crioaliento Despiadado", + "effect": "Dummy data" + }, + "devastatingDrakePhysical": { + "name": "Dracoaliento Devastador", + "effect": "El usuario emplea el Poder Z para materializar su aura y golpear al objetivo. Su potencia depende de la del movimiento original." + }, + "devastatingDrakeSpecial": { + "name": "Dracoaliento Devastador", + "effect": "Dummy data" + }, + "blackHoleEclipsePhysical": { + "name": "Agujero Negro Aniquilador", + "effect": "El usuario emplea el Poder Z para generar un agujero negro que absorbe al objetivo. Su potencia depende de la del movimiento original." + }, + "blackHoleEclipseSpecial": { + "name": "Agujero Negro Aniquilador", + "effect": "Dummy data" + }, + "twinkleTacklePhysical": { + "name": "Arrumaco Sideral", + "effect": "El usuario emplea el Poder Z para crear una dimensión fascinante que deja al rival a su merced. Su potencia depende de la del movimiento original." + }, + "twinkleTackleSpecial": { + "name": "Arrumaco Sideral", + "effect": "Dummy data" + }, + "catastropika": { + "name": "Pikavoltio Letal", + "effect": "Pikachu emplea el Poder Z para acumular una gran cantidad de electricidad en su cuerpo y arremeter contra el objetivo." + }, + "shoreUp": { + "name": "Recogearena", + "effect": "Restaura la mitad de los PS máximos del usuario. Durante las tormentas de arena, restaura aún más PS." + }, + "firstImpression": { + "name": "Escaramuza", + "effect": "Movimiento de gran potencia que solo puede usarse en el turno en que el usuario sale al combate." + }, + "banefulBunker": { + "name": "Búnker", + "effect": "Protege de los ataques y, al mismo tiempo, envenena al Pokémon que use un movimiento de contacto contra el usuario." + }, + "spiritShackle": { + "name": "Puntada Sombría", + "effect": "Ataca al oponente y, al mismo tiempo, fija su sombra al terreno para impedir su huida." + }, + "darkestLariat": { + "name": "Lariat Oscuro", + "effect": "Gira sobre sí mismo y golpea al oponente con ambos brazos. Ignora los cambios en las características del objetivo." + }, + "sparklingAria": { + "name": "Aria Burbuja", + "effect": "Libera burbujas al cantar. Este movimiento cura las quemaduras de los Pokémon que reciban daño." + }, + "iceHammer": { + "name": "Martillo Hielo", + "effect": "Un terrible puño golpea al contrincante, pero la Velocidad del usuario se ve reducida." + }, + "floralHealing": { + "name": "Cura Floral", + "effect": "Restaura la mitad de los PS máximos del objetivo. Es más efectivo cuando se usa en conjunción con Campo de Hierba." + }, + "highHorsepower": { + "name": "Fuerza Equina", + "effect": "Asesta un golpe devastador usando todo su cuerpo." + }, + "strengthSap": { + "name": "Absorbefuerza", + "effect": "Restaura una cantidad de PS equivalente al valor de Ataque del rival, que además verá reducida esta característica." + }, + "solarBlade": { + "name": "Cuchilla Solar", + "effect": "El usuario dedica un turno a absorber energía lumínica y concentrarla en forma de cuchilla con la que ataca al rival en el siguiente turno." + }, + "leafage": { + "name": "Follaje", + "effect": "Ataca al objetivo lanzando hojas." + }, + "spotlight": { + "name": "Foco", + "effect": "Convierte a uno de los Pokémon que están combatiendo en el foco de atención, de modo que todos los ataques se dirijan hacia él." + }, + "toxicThread": { + "name": "Hilo Venenoso", + "effect": "Ataca al objetivo con hilillos venenosos que reducen su Velocidad y lo envenenan." + }, + "laserFocus": { + "name": "Aguzar", + "effect": "El usuario se concentra para que el siguiente ataque propine un golpe crítico." + }, + "gearUp": { + "name": "Piñón Auxiliar", + "effect": "Cambia de marcha y logra aumentar el Ataque y el Ataque Especial de los Pokémon aliados que cuenten con las habilidades Más y Menos." + }, + "throatChop": { + "name": "Golpe Mordaza", + "effect": "Inflige al rival un dolor tan abrumador que le impide utilizar durante dos turnos ataques que se sirven del sonido." + }, + "pollenPuff": { + "name": "Bola de Polen", + "effect": "Ataca al objetivo con una bola explosiva. Si esta alcanza a un aliado, le hará recuperar PS." + }, + "anchorShot": { + "name": "Anclaje", + "effect": "Ataca lanzando un ancla al objetivo, que queda atrapado y no puede huir ni ser cambiado por otro." + }, + "psychicTerrain": { + "name": "Campo Psíquico", + "effect": "Durante cinco turnos, se potencian los movimientos de tipo Psíquico y los Pokémon que están en el suelo quedan protegidos contra movimientos con prioridad." + }, + "lunge": { + "name": "Plancha", + "effect": "Ataca al objetivo abalanzándose sobre él con todas sus fuerzas y reduce su Ataque." + }, + "fireLash": { + "name": "Látigo Ígneo", + "effect": "Golpea al objetivo con un látigo incandescente y reduce su Defensa." + }, + "powerTrip": { + "name": "Chulería", + "effect": "Ataca al oponente presumiendo de su fuerza. Cuanto más hayan subido las características del usuario, mayor será el daño." + }, + "burnUp": { + "name": "Llama Final", + "effect": "Utiliza hasta el último resquicio de llamas de su cuerpo para infligir un grave daño al objetivo. Tras el ataque, el usuario deja de ser de tipo Fuego." + }, + "speedSwap": { + "name": "Cambiavelocidad", + "effect": "Intercambia su Velocidad por la del objetivo." + }, + "smartStrike": { + "name": "Cuerno Certero", + "effect": "El usuario ensarta al objetivo con su afilada cornamenta. No falla nunca." + }, + "purify": { + "name": "Purificación", + "effect": "Cura los problemas de estado del Pokémon rival y a cambio recupera PS propios." + }, + "revelationDance": { + "name": "Danza Despertar", + "effect": "Ataque que consiste en un baile muy enérgico. El tipo de este ataque se corresponde con el del Pokémon que lo ejecuta." + }, + "coreEnforcer": { + "name": "Núcleo Castigo", + "effect": "Inflige daño al rival, y si este ya ha hecho uso de algún movimiento, pierde su habilidad." + }, + "tropKick": { + "name": "Patada Tropical", + "effect": "Lanza una patada con la fuerza del trópico que golpea al objetivo y reduce su Ataque." + }, + "instruct": { + "name": "Mandato", + "effect": "Fuerza al objetivo a repetir inmediatamente su último movimiento." + }, + "beakBlast": { + "name": "Pico Cañón", + "effect": "Primero aumenta la temperatura de su pico y luego ejecuta un ataque. Quema al rival si este le propina un ataque físico mientras está calentando el pico." + }, + "clangingScales": { + "name": "Fragor Escamas", + "effect": "Frota todas las escamas de su cuerpo para crear un fuerte sonido con el que ataca. Cuando el ataque termina, su Defensa se ve reducida." + }, + "dragonHammer": { + "name": "Martillo Dragón", + "effect": "Usa el cuerpo como un martillo para abalanzarse sobre su rival y causarle daño." + }, + "brutalSwing": { + "name": "Giro Vil", + "effect": "Hace pivotar su cuerpo para causar daño a los Pokémon adyacentes." + }, + "auroraVeil": { + "name": "Velo Aurora", + "effect": "Reduce el daño de los ataques físicos y especiales durante cinco turnos. Solo puede usarse cuando está nevando." + }, + "sinisterArrowRaid": { + "name": "Aluvión de Flechas Sombrías", + "effect": "Decidueye usa el Poder Z para proyectar multitud de flechas potentísimas que atraviesan a su oponente." + }, + "maliciousMoonsault": { + "name": "Hiperplancha Oscura", + "effect": "Incineroar refuerza sus músculos con el Poder Z para golpear con todas sus fuerzas a su oponente." + }, + "oceanicOperetta": { + "name": "Sinfonía de la Diva Marina", + "effect": "Primarina invoca ingentes cantidades de agua con el Poder Z para atacar con gran potencia a su rival." + }, + "guardianOfAlola": { + "name": "Cólera del Guardián", + "effect": "Los Pokémon Dios Nativo canalizan la energía de Alola gracias al Poder Z y atacan con gran fuerza a sus rivales reduciendo un gran porcentaje de sus PS." + }, + "soulStealing7StarStrike": { + "name": "Constelación Robaalmas", + "effect": "Cuando Marshadow obtiene el Poder Z, lanza una potente y continua oleada de puñetazos y patadas con la que castiga a su rival." + }, + "stokedSparksurfer": { + "name": "Surfeo Galvánico", + "effect": "Cuando un Raichu de Alola obtiene el Poder Z, lanza un potente ataque contra su enemigo y lo deja paralizado." + }, + "pulverizingPancake": { + "name": "Arrojo Intempestivo", + "effect": "Gracias al Poder Z, Snorlax puede mover su enorme cuerpo con gran agilidad y determinación, cargando sobre el oponente con todas sus fuerzas." + }, + "extremeEvoboost": { + "name": "Novena Potencia", + "effect": "Cuando Eevee obtiene el Poder Z, toma prestada la energía de sus amigos evolucionados para potenciar enormemente sus características." + }, + "genesisSupernova": { + "name": "Supernova Original", + "effect": "Mew usa el Poder Z para realizar un potente ataque contra su adversario y crear un Campo Psíquico sobre el terreno." + }, + "shellTrap": { + "name": "Coraza Trampa", + "effect": "El caparazón del Pokémon se convierte en una trampa. Si lo alcanza un ataque físico, la trampa estalla y los rivales sufren daño." + }, + "fleurCannon": { + "name": "Cañón Floral", + "effect": "El usuario emite un potente rayo, pero su Ataque Especial se reduce mucho." + }, + "psychicFangs": { + "name": "Psicocolmillo", + "effect": "Ataca a sus rivales con poderes psíquicos que además destruyen barreras como Pantalla de Luz y Reflejo." + }, + "stompingTantrum": { + "name": "Pataleta", + "effect": "Usa la frustración como revulsivo para atacar. La potencia de Pataleta se duplica si el usuario ha fallado el último movimiento usado." + }, + "shadowBone": { + "name": "Hueso Sombrío", + "effect": "Ataca golpeando con un hueso poseído por un espíritu. Puede reducir la Defensa del objetivo." + }, + "accelerock": { + "name": "Roca Veloz", + "effect": "El usuario se lanza contra el objetivo a gran velocidad. Este movimiento tiene prioridad alta." + }, + "liquidation": { + "name": "Hidroariete", + "effect": "Ataca golpeando gracias a la fuerza del agua. También puede reducir la Defensa del objetivo." + }, + "prismaticLaser": { + "name": "Láser Prisma", + "effect": "El usuario utiliza un prisma para emitir un rayo de gran potencia, pero deberá descansar en el siguiente turno." + }, + "spectralThief": { + "name": "Robasombra", + "effect": "El usuario se esconde en la sombra del objetivo y lo ataca tras robarle las mejoras en sus características." + }, + "sunsteelStrike": { + "name": "Meteoimpacto", + "effect": "Ataca al objetivo con la potencia de un meteoro, ignorando su habilidad." + }, + "moongeistBeam": { + "name": "Rayo Umbrío", + "effect": "Ataca con un rayo misterioso que ignora la habilidad del objetivo." + }, + "tearfulLook": { + "name": "Ojos Llorosos", + "effect": "Mira al objetivo con ojos llorosos para hacerle perder su espíritu combativo y reduce su Ataque y Ataque Especial." + }, + "zingZap": { + "name": "Electropunzada", + "effect": "Se lanza contra el objetivo y le suelta una potente descarga eléctrica que puede hacer que se amedrente." + }, + "naturesMadness": { + "name": "Furia Natural", + "effect": "Golpea al objetivo con la furia de la naturaleza y reduce sus PS a la mitad." + }, + "multiAttack": { + "name": "Multiataque", + "effect": "El Pokémon se rodea de una potente energía con la que golpea al rival. El tipo del movimiento depende del disco que lleva el usuario." + }, + "tenMillionVoltThunderbolt": { + "name": "Gigarrayo Fulminante", + "effect": "Los Pikachu con gorra acumulan una carga eléctrica descomunal gracias al Poder Z y la lanzan contra el objetivo. Suele ser crítico." + }, + "mindBlown": { + "name": "Cabeza Sorpresa", + "effect": "El usuario hace explotar su cabeza para atacar a los Pokémon adyacentes, aunque también se hiere a sí mismo." + }, + "plasmaFists": { + "name": "Puños Plasma", + "effect": "El usuario ataca con puños cargados de electricidad. Convierte los movimientos de tipo Normal en movimientos de tipo Eléctrico." + }, + "photonGeyser": { + "name": "Géiser Fotónico", + "effect": "El usuario ataca con una gran columna de luz. Compara sus valores de Ataque y Ataque Especial para infligir daño con el más alto de los dos." + }, + "lightThatBurnsTheSky": { + "name": "Fotodestrucción Apocalíptica", + "effect": "Necrozma escoge la característica que tenga el valor más alto entre el Ataque y el Ataque Especial para infligir daño, ignorando la habilidad del objetivo." + }, + "searingSunrazeSmash": { + "name": "Embestida Solar", + "effect": "Solgaleo ataca con toda su fuerza tras imbuirse del Poder Z. Este movimiento ignora la habilidad del objetivo." + }, + "menacingMoonrazeMaelstrom": { + "name": "Deflagración Lunar", + "effect": "Lunala ataca con toda su fuerza tras imbuirse del Poder Z. Este movimiento ignora la habilidad del objetivo." + }, + "letsSnuggleForever": { + "name": "Somanta Amistosa", + "effect": "Mimikyu ataca con toda su fuerza tras imbuirse del Poder Z y asesta una lluvia de golpes." + }, + "splinteredStormshards": { + "name": "Tempestad Rocosa", + "effect": "Lycanroc ataca con toda su fuerza tras imbuirse del Poder Z y neutraliza el campo que esté activo." + }, + "clangorousSoulblaze": { + "name": "Estruendo Implacable", + "effect": "Kommo-o ataca con toda su fuerza al objetivo tras imbuirse del Poder Z. Además, potencia sus propias características." + }, + "zippyZap": { + "name": "Pikaturbo", + "effect": "The user attacks the target with bursts of electricity at high speed. This move always goes first and raises the user's evasiveness." + }, + "splishySplash": { + "name": "Salpikasurf", + "effect": "Golpea al adversario con una ola gigante electrificada, que también puede paralizarlo." + }, + "floatyFall": { + "name": "Pikapicado", + "effect": "El usuario se suspende en el aire para, a continuación, abalanzarse súbitamente sobre el rival. Puede hacer retroceder al objetivo." + }, + "pikaPapow": { + "name": "Pikatormenta", + "effect": "Lanza una descarga eléctrica infalible que resulta más potente cuanto mayor es el cariño que siente Pikachu hacia su Entrenador." + }, + "bouncyBubble": { + "name": "Vapodrenaje", + "effect": "Ataca lanzando proyectiles de agua y recupera una cantidad de PS equivalente a la del daño causado." + }, + "buzzyBuzz": { + "name": "Joltioparálisis", + "effect": "Lanza una potente descarga eléctrica sobre el rival y lo deja paralizado." + }, + "sizzlySlide": { + "name": "Flarembestida", + "effect": "Tras envolver su cuerpo en llamas, el usuario arrolla con fuerza al rival y le provoca quemaduras." + }, + "glitzyGlow": { + "name": "Espeaura", + "effect": "Envuelve al rival con ondas psíquicas y alza un extraño muro que debilita los ataques especiales del adversario." + }, + "baddyBad": { + "name": "Umbreozona", + "effect": "Lanza un ataque haciendo gala de su faceta más umbría y alza un extraño muro que mitiga los ataques físicos del adversario." + }, + "sappySeed": { + "name": "Leafitobombas", + "effect": "Hace brotar un tallo gigante que bombardea al rival con unas semillas que le drenan PS en cada turno." + }, + "freezyFrost": { + "name": "Glaceoprisma", + "effect": "Ataca al rival con negros cristales de niebla congelada. Revierte los cambios en las características de todos los Pokémon presentes." + }, + "sparklySwirl": { + "name": "Sylveotornado", + "effect": "Ataca al rival envolviéndolo en un remolino de aroma asfixiante. Cura a los aliados de cualquier problema de estado." + }, + "veeveeVolley": { + "name": "Eevimpacto", + "effect": "Un placaje infalible que resulta más potente cuanto mayor es el cariño que siente Eevee hacia su Entrenador." + }, + "doubleIronBash": { + "name": "Ferropuño Doble", + "effect": "Usando la tuerca del pecho como eje, gira sobre sí mismo y golpea con los brazos dos veces seguidas. Puede amedrentar al rival." + }, + "maxGuard": { + "name": "Maxibarrera", + "effect": "Frena todos los ataques, pero puede fallar si se usa repetidamente." + }, + "dynamaxCannon": { + "name": "Cañón Dinamax", + "effect": "El usuario ataca emitiendo un rayo desde su núcleo. Inflinge hasta el doble de daño si el objetivo tiene más niveles de lo normal." + }, + "snipeShot": { + "name": "Disparo Certero", + "effect": "Permite atacar al objetivo seleccionado ignorando las habilidades o movimientos que permiten a un Pokémon centrar la atención sobre sí." + }, + "jawLock": { + "name": "Presa Maxilar", + "effect": "Impide que tanto el atacante como el defensor puedan huir o ser cambiados por otros hasta que uno de ellos se debilite o abandone el terreno de combate." + }, + "stuffCheeks": { + "name": "Atiborramiento", + "effect": "El usuario ingiere la baya que lleva equipada para aumentar mucho su Defensa." + }, + "noRetreat": { + "name": "Bastión Final", + "effect": "El usuario aumenta todas sus características, pero ya no puede huir ni ser cambiado por otro." + }, + "tarShot": { + "name": "Alquitranazo", + "effect": "Cubre al objetivo de un alquitrán pegajoso que reduce su Velocidad y lo vuelve débil contra el fuego." + }, + "magicPowder": { + "name": "Polvo Mágico", + "effect": "Cubre al objetivo con unos polvos mágicos que le hacen adquirir el tipo Psíquico." + }, + "dragonDarts": { + "name": "Dracoflechas", + "effect": "El usuario ataca propulsando a ambos Dreepy. En caso de haber dos adversarios, cada Dreepy golpea a su propio objetivo por separado." + }, + "teatime": { + "name": "Hora del Té", + "effect": "El usuario invita a tomar el té a todos los presentes en el terreno de combate, lo que hace que ingieran las bayas que lleven equipadas." + }, + "octolock": { + "name": "Octopresa", + "effect": "Retiene al objetivo e impide que pueda huir o ser cambiado por otro, a la vez que reduce su Defensa y su Defensa Especial cada turno." + }, + "boltBeak": { + "name": "Electropico", + "effect": "El usuario ensarta al objetivo con su pico cargado de electricidad. Si ataca en primer lugar, la potencia del movimiento se duplica." + }, + "fishiousRend": { + "name": "Branquibocado", + "effect": "El usuario agarra al objetivo con sus duras branquias. En caso de atacar antes que este último, la potencia del movimiento se duplica." + }, + "courtChange": { + "name": "Cambio de Cancha", + "effect": "Extraño poder que intercambia los efectos en el terreno de combate de ambos bandos." + }, + "maxFlare": { + "name": "Maxignición", + "effect": "Ataque de tipo Fuego ejecutado por un Pokémon Dinamax. Hace que se intensifique el efecto del sol durante cinco turnos." + }, + "maxFlutterby": { + "name": "Maxinsecto", + "effect": "Ataque de tipo Bicho ejecutado por un Pokémon Dinamax. Reduce el Ataque Especial del objetivo." + }, + "maxLightning": { + "name": "Maxitormenta", + "effect": "Ataque de tipo Eléctrico ejecutado por un Pokémon Dinamax. Crea un campo eléctrico durante cinco turnos." + }, + "maxStrike": { + "name": "Maxiataque", + "effect": "Ataque de tipo Normal ejecutado por un Pokémon Dinamax. Reduce la Velocidad del objetivo." + }, + "maxKnuckle": { + "name": "Maxipuño", + "effect": "Ataque de tipo Lucha ejecutado por un Pokémon Dinamax. Aumenta el Ataque de tu bando." + }, + "maxPhantasm": { + "name": "Maxiespectro", + "effect": "Ataque de tipo Fantasma ejecutado por un Pokémon Dinamax. Reduce la Defensa del objetivo." + }, + "maxHailstorm": { + "name": "Maxihelada", + "effect": "Ataque de tipo Hielo ejecutado por un Pokémon Dinamax. Crea una tormenta de granizo que dura cinco turnos." + }, + "maxOoze": { + "name": "Maxiácido", + "effect": "Ataque de tipo Veneno ejecutado por un Pokémon Dinamax. Aumenta el Ataque Especial de tu bando." + }, + "maxGeyser": { + "name": "Maxichorro", + "effect": "Ataque de tipo Agua ejecutado por un Pokémon Dinamax. Desata un aguacero que dura cinco turnos." + }, + "maxAirstream": { + "name": "Maxiciclón", + "effect": "Ataque de tipo Volador ejecutado por un Pokémon Dinamax. Aumenta la Velocidad de tu bando." + }, + "maxStarfall": { + "name": "Maxiestela", + "effect": "Ataque de tipo Hada ejecutado por un Pokémon Dinamax. Crea un campo de niebla durante cinco turnos." + }, + "maxWyrmwind": { + "name": "Maxidraco", + "effect": "Ataque de tipo Dragón ejecutado por un Pokémon Dinamax. Reduce el Ataque del objetivo." + }, + "maxMindstorm": { + "name": "Maxionda", + "effect": "Ataque de tipo Psíquico ejecutado por un Pokémon Dinamax. Crea un campo psíquico durante cinco turnos." + }, + "maxRockfall": { + "name": "Maxilito", + "effect": "Ataque de tipo Roca ejecutado por un Pokémon Dinamax. Levanta una tormenta de arena que dura cinco turnos." + }, + "maxQuake": { + "name": "Maxitemblor", + "effect": "Ataque de tipo Tierra ejecutado por un Pokémon Dinamax. Aumenta la Defensa Especial de tu bando." + }, + "maxDarkness": { + "name": "Maxisombra", + "effect": "Ataque de tipo Siniestro ejecutado por un Pokémon Dinamax. Reduce la Defensa Especial del objetivo." + }, + "maxOvergrowth": { + "name": "Maxiflora", + "effect": "Ataque de tipo Planta ejecutado por un Pokémon Dinamax. Crea un campo de hierba durante cinco turnos." + }, + "maxSteelspike": { + "name": "Maximetal", + "effect": "Ataque de tipo Acero ejecutado por un Pokémon Dinamax. Aumenta la Defensa de tu bando." + }, + "clangorousSoul": { + "name": "Estruendo Escama", + "effect": "Utiliza parte de los PS propios para subir sus características." + }, + "bodyPress": { + "name": "Plancha Corporal", + "effect": "El usuario usa el cuerpo para lanzar su ataque e infligir un daño directamente proporcional a su Defensa." + }, + "decorate": { + "name": "Decoración", + "effect": "Aumenta mucho el Ataque y el Ataque Especial del objetivo al decorarlo." + }, + "drumBeating": { + "name": "Batería Asalto", + "effect": "El usuario controla un tocón mediante la percusión y al atacar reduce la Velocidad del objetivo." + }, + "snapTrap": { + "name": "Cepo", + "effect": "Cepo que atrapa al objetivo durante cuatro o cinco turnos y le causa daño mientras se encuentra preso." + }, + "pyroBall": { + "name": "Balón Ígneo", + "effect": "El usuario prende una pequeña piedra para crear una bola de fuego con la que ataca al objetivo. Puede causar quemaduras." + }, + "behemothBlade": { + "name": "Tajo Supremo", + "effect": "El usuario se convierte en una espada gigante para rebanar con vigor al objetivo." + }, + "behemothBash": { + "name": "Embate Supremo", + "effect": "El usuario se convierte en un escudo gigante para golpear con vigor al objetivo." + }, + "auraWheel": { + "name": "Rueda Aural", + "effect": "La energía que acumula en las mejillas le sirve para atacar y aumentar su Velocidad. Este movimiento cambia de tipo según la forma que adopte Morpeko." + }, + "breakingSwipe": { + "name": "Vasto Impacto", + "effect": "El usuario sacude violentamente su enorme cola para golpear al objetivo y reducir su Ataque a la par." + }, + "branchPoke": { + "name": "Punzada Rama", + "effect": "Ataca pinchando al objetivo con una rama afilada." + }, + "overdrive": { + "name": "Amplificador", + "effect": "El usuario rasguea la guitarra o el bajo para generar enormes vibraciones de intensa reverberación con las que ataca al objetivo." + }, + "appleAcid": { + "name": "Ácido Málico", + "effect": "Ataca al objetivo con el fluido corrosivo que desprende una manzana ácida, lo que también reduce la Defensa Especial de este." + }, + "gravApple": { + "name": "Fuerza G", + "effect": "El usuario ataca haciendo caer una manzana desde gran altura. Reduce la Defensa del objetivo." + }, + "spiritBreak": { + "name": "Choque Anímico", + "effect": "El usuario ataca al objetivo con tal ímpetu que acaba minando su moral y, en consecuencia, reduce su Ataque Especial." + }, + "strangeSteam": { + "name": "Cautivapor", + "effect": "Desprende un humo con el que ataca al objetivo, que puede acabar confundido." + }, + "lifeDew": { + "name": "Gota Vital", + "effect": "Vierte un agua misteriosa y balsámica que restaura tanto sus propios PS como los de aquellos aliados presentes en el terreno de combate." + }, + "obstruct": { + "name": "Obstrucción", + "effect": "Frena todos los ataques, pero puede fallar si se usa repetidamente. Reduce mucho la Defensa de quien ejecute un movimiento de contacto contra el usuario." + }, + "falseSurrender": { + "name": "Irreverencia", + "effect": "El usuario finge hacer una reverencia y aprovecha la ocasión para ensartar al objetivo con su cabello alborotado. No falla nunca." + }, + "meteorAssault": { + "name": "Asalto Estelar", + "effect": "El usuario agita violentamente su grueso puerro para atacar, pero el mareo que le provocan las sacudidas le obliga a descansar en el siguiente turno." + }, + "eternabeam": { + "name": "Rayo Infinito", + "effect": "Este es el mayor ataque de Eternatus una vez adquirida su forma original. No puede moverse en el turno siguiente." + }, + "steelBeam": { + "name": "Metaláser", + "effect": "Utiliza el acero de su cuerpo para disparar un potente rayo. El usuario se hiere a sí mismo." + }, + "expandingForce": { + "name": "Vasta Fuerza", + "effect": "El usuario ataca al objetivo con sus poderes psíquicos. Cuando se usa en conjunción con un campo psíquico, aumenta su potencia e inflige daño a todos los rivales." + }, + "steelRoller": { + "name": "Allanador Férreo", + "effect": "El usuario lanza su ataque y destruye el campo activo en el terreno de combate, y falla si no hay ninguno en ese momento." + }, + "scaleShot": { + "name": "Ráfaga Escamas", + "effect": "Lanza escamas al objetivo de dos a cinco veces seguidas. Aumenta la Velocidad del usuario, pero reduce su Defensa." + }, + "meteorBeam": { + "name": "Rayo Meteórico", + "effect": "El usuario dedica el primer turno a aumentar su Ataque Especial acumulando energía cósmica y lanza su ofensiva contra el objetivo en el segundo." + }, + "shellSideArm": { + "name": "Moluscañón", + "effect": "El usuario lanza un ataque físico o especial en función de cuál inflija más daño. Puede envenenar al objetivo." + }, + "mistyExplosion": { + "name": "Bruma Explosiva", + "effect": "El usuario ataca a todos a su alrededor, pero se debilita de inmediato. La potencia del movimiento aumenta si el terreno está cubierto por un campo de niebla." + }, + "grassyGlide": { + "name": "Fitoimpulso", + "effect": "Ataca al objetivo deslizándose sobre el terreno de combate. Este movimiento tiene prioridad alta cuando el terreno está cubierto por un campo de hierba." + }, + "risingVoltage": { + "name": "Alto Voltaje", + "effect": "Ataca con una descarga eléctrica que surge del terreno de combate. La potencia del movimiento se duplica si el rival se ve afectado por un campo eléctrico." + }, + "terrainPulse": { + "name": "Pulso de Campo", + "effect": "El usuario ataca aprovechando la energía del campo activo, que determina tanto el tipo como la potencia del movimiento." + }, + "skitterSmack": { + "name": "Golpe Rastrero", + "effect": "Ataca al objetivo por la espalda de forma subrepticia y, además, reduce su Ataque Especial." + }, + "burningJealousy": { + "name": "Envidia Ardiente", + "effect": "Ataca al objetivo con la energía generada por la envidia y causa quemaduras a los Pokémon cuyas características hayan aumentado en ese turno." + }, + "lashOut": { + "name": "Desahogo", + "effect": "Ataca al rival presa de la rabia. Si el usuario ha sufrido una reducción de características en ese turno, la potencia del movimiento se duplica." + }, + "poltergeist": { + "name": "Poltergeist", + "effect": "El usuario ataca utilizando el objeto que lleva el rival. Si no tiene ninguno equipado, el movimiento falla." + }, + "corrosiveGas": { + "name": "Gas Corrosivo", + "effect": "El usuario libera un gas cáustico que envuelve a todos los que se encuentren alrededor y derrite por completo los objetos que lleven equipados." + }, + "coaching": { + "name": "Motivación", + "effect": "El usuario imparte indicaciones precisas a sus aliados, que ven aumentados su Ataque y su Defensa." + }, + "flipTurn": { + "name": "Viraje", + "effect": "Tras atacar, el usuario da paso a toda prisa a otro Pokémon del equipo." + }, + "tripleAxel": { + "name": "Triple Axel", + "effect": "Propina hasta tres patadas seguidas, la potencia de las cuales aumenta cada vez que acierta." + }, + "dualWingbeat": { + "name": "Ala Bis", + "effect": "Ataca al adversario golpeándolo dos veces con las alas." + }, + "scorchingSands": { + "name": "Arenas Ardientes", + "effect": "Ataca al objetivo arrojándole arena a temperaturas muy elevadas. Puede causar quemaduras." + }, + "jungleHealing": { + "name": "Cura Selvática", + "effect": "Al entrar en plena armonía con la selva, el usuario cura problemas de estado y restaura PS no solo de sí mismo, sino también de los aliados presentes en el terreno." + }, + "wickedBlow": { + "name": "Golpe Oscuro", + "effect": "Golpe devastador que requiere un absoluto dominio de las artes siniestras. Siempre asesta un golpe crítico." + }, + "surgingStrikes": { + "name": "Azote Torrencial", + "effect": "El usuario, dominador absoluto del líquido elemento, golpea hasta tres veces con movimientos fluidos. Siempre asesta un golpe crítico." + }, + "thunderCage": { + "name": "Electrojaula", + "effect": "El objetivo queda atrapado en una jaula electrificada que permanece en el terreno de cuatro a cinco turnos." + }, + "dragonEnergy": { + "name": "Dracoenergía", + "effect": "El usuario convierte su fuerza vital en una energía con la que ataca al objetivo. Cuantos menos PS tenga el usuario, menor será la potencia del movimiento." + }, + "freezingGlare": { + "name": "Mirada Heladora", + "effect": "A través de sus ojos emite poderes psíquicos con los que ataca al objetivo, al que puede llegar a congelar." + }, + "fieryWrath": { + "name": "Furia Candente", + "effect": "El usuario convierte su ira en un aura flamígera para lanzar su ataque. Puede amedrentar al objetivo." + }, + "thunderousKick": { + "name": "Patada Relámpago", + "effect": "El usuario desconcierta al objetivo con movimientos centelleantes y le propina una patada que, además, reduce su Defensa." + }, + "glacialLance": { + "name": "Lanza Glacial", + "effect": "El usuario ataca al objetivo lanzándole un carámbano de hielo envuelto en una ventisca." + }, + "astralBarrage": { + "name": "Orbes Espectro", + "effect": "El usuario ataca al objetivo lanzándole una ingente cantidad de pequeños fantasmas." + }, + "eerieSpell": { + "name": "Conjuro Funesto", + "effect": "El usuario ataca con un poder psíquico de inmensa potencia y elimina 3 PP del último movimiento que haya usado el objetivo." + }, + "direClaw": { + "name": "Garra Nociva", + "effect": "Ataca al objetivo con unas garras letales que pueden envenenarlo, paralizarlo o dormirlo." + }, + "psyshieldBash": { + "name": "Asalto Barrera", + "effect": "El usuario ataca envuelto en una energía psíquica que además aumenta su Defensa." + }, + "powerShift": { + "name": "Cambiapoder", + "effect": "Intercambia su Ataque por su Defensa." + }, + "stoneAxe": { + "name": "Hachazo Pétreo", + "effect": "Ataca con un hacha de piedra y, al hacerlo, se desprenden fragmentos que rodean al objetivo." + }, + "springtideStorm": { + "name": "Ciclón Primavera", + "effect": "Desata una tormenta de amor y odio con la que envuelve y ataca al objetivo. También puede reducir su Ataque." + }, + "mysticalPower": { + "name": "Poder Místico", + "effect": "Ataca desatando un misterioso poder, que también aumenta su Ataque Especial." + }, + "ragingFury": { + "name": "Erupción de Ira", + "effect": "El usuario ataca con unas violentas llamas de dos a tres turnos seguidos y, después, se queda confuso." + }, + "waveCrash": { + "name": "Envite Acuático", + "effect": "El usuario se envuelve en agua y embiste contra el objetivo, pero también se hiere seriamente a sí mismo." + }, + "chloroblast": { + "name": "Clorofiláser", + "effect": "El usuario concentra clorofila y la dispara en forma de rayo, pero también se hiere a sí mismo." + }, + "mountainGale": { + "name": "Viento Carámbano", + "effect": "Ataca con unos carámbanos grandes como icebergs que pueden amedrentar al objetivo." + }, + "victoryDance": { + "name": "Danza Triunfal", + "effect": "Ejecuta una danza frenética que invoca la victoria y aumenta el Ataque, la Defensa y la Velocidad." + }, + "headlongRush": { + "name": "Arremetida", + "effect": "El usuario arremete con todas sus fuerzas, pero se reducen su Defensa y su Defensa Especial." + }, + "barbBarrage": { + "name": "Mil Púas Tóxicas", + "effect": "Dispara un sinfín de púas tóxicas que pueden envenenar al objetivo. La potencia del movimiento se duplica si este ya está envenenado." + }, + "esperWing": { + "name": "Ala Aural", + "effect": "Corta con unas alas imbuidas de aura. Suele asestar un golpe crítico y aumenta la Velocidad del usuario." + }, + "bitterMalice": { + "name": "Rencor Reprimido", + "effect": "Ataca al objetivo sometiéndolo a su frío rencor y reduce su Ataque." + }, + "shelter": { + "name": "Retracción", + "effect": "La piel del usuario se vuelve dura como un escudo de acero, lo que aumenta mucho su Defensa." + }, + "tripleArrows": { + "name": "Triple Flecha", + "effect": "Propina un talonazo y lanza tres flechas. Suele asestar un golpe crítico y puede reducir la Defensa del objetivo o amedrentarlo." + }, + "infernalParade": { + "name": "Marcha Espectral", + "effect": "Lanza innumerables bolas de fuego al objetivo que pueden causar quemaduras. La potencia del movimiento se duplica si este ya sufre un problema de estado." + }, + "ceaselessEdge": { + "name": "Tajo Metralla", + "effect": "Ataca con una espada de conchas y, al hacerlo, se esparcen fragmentos a modo de metralla a los pies del objetivo." + }, + "bleakwindStorm": { + "name": "Vendaval Gélido", + "effect": "Ataca con un viento muy frío que estremece el cuerpo y la mente y que, además, puede reducir la Velocidad del objetivo." + }, + "wildboltStorm": { + "name": "Electormenta", + "effect": "Invoca una tormenta eléctrica que ataca al objetivo con fuertes vientos y relámpagos y puede paralizarlo." + }, + "sandsearStorm": { + "name": "Simún de Arena", + "effect": "Ataca al objetivo envolviéndolo en unas arenas tórridas y un fuerte vendaval que pueden causar quemaduras." + }, + "lunarBlessing": { + "name": "Plegaria Lunar", + "effect": "Dedica una oración a la luna creciente que restaura los PS y cura los problemas de estado del bando del usuario." + }, + "takeHeart": { + "name": "Bálsamo Osado", + "effect": "El usuario se envalentona y se cura de los problemas de estado. Además, aumenta su Ataque Especial y su Defensa Especial." + }, + "gMaxWildfire": { + "name": "Gigallamarada", + "effect": "Ataque de tipo Fuego ejecutado por un Charizard Gigamax. Inflige daño durante cuatro turnos." + }, + "gMaxBefuddle": { + "name": "Gigaestupor", + "effect": "Ataque de tipo Bicho ejecutado por un Butterfree Gigamax. Envenena, paraliza o duerme al objetivo." + }, + "gMaxVoltCrash": { + "name": "Gigatronada", + "effect": "Ataque de tipo Eléctrico ejecutado por un Pikachu Gigamax. Paraliza al objetivo." + }, + "gMaxGoldRush": { + "name": "Gigamonedas", + "effect": "Ataque de tipo Normal ejecutado por un Meowth Gigamax. Confunde al objetivo y aumenta la recompensa recibida tras el combate." + }, + "gMaxChiStrike": { + "name": "Gigapuñición", + "effect": "Ataque de tipo Lucha ejecutado por un Machamp Gigamax. Aumenta las posibilidades de que el usuario y sus aliados asesten un golpe crítico." + }, + "gMaxTerror": { + "name": "Gigaaparición", + "effect": "Ataque de tipo Fantasma ejecutado por un Gengar Gigamax. Impide que el objetivo sea cambiado por otro." + }, + "gMaxResonance": { + "name": "Gigamelodía", + "effect": "Ataque de tipo Hielo ejecutado por un Lapras Gigamax. Reduce el daño recibido durante cinco turnos." + }, + "gMaxCuddle": { + "name": "Gigaternura", + "effect": "Ataque de tipo Normal ejecutado por un Eevee Gigamax. Hace que el objetivo se enamore." + }, + "gMaxReplenish": { + "name": "Gigarreciclaje", + "effect": "Ataque de tipo Normal ejecutado por un Snorlax Gigamax. Restaura las bayas que se hayan consumido." + }, + "gMaxMalodor": { + "name": "Gigapestilencia", + "effect": "Ataque de tipo Veneno ejecutado por un Garbodor Gigamax. Envenena al objetivo." + }, + "gMaxStonesurge": { + "name": "Gigatrampa Rocas", + "effect": "Ataque de tipo Agua ejecutado por un Drednaw Gigamax. Esparce rocas afiladas por el terreno de combate." + }, + "gMaxWindRage": { + "name": "Gigahuracán", + "effect": "Ataque de tipo Volador ejecutado por un Corviknight Gigamax. Es capaz de destruir barreras como las creadas por Pantalla de Luz y Reflejo." + }, + "gMaxStunShock": { + "name": "Gigadescarga", + "effect": "Ataque de tipo Eléctrico ejecutado por un Toxtricity Gigamax. Envenena o paraliza al objetivo." + }, + "gMaxFinale": { + "name": "Gigacolofón", + "effect": "Ataque de tipo Hada ejecutado por un Alcremie Gigamax. Restaura los PS de tu bando." + }, + "gMaxDepletion": { + "name": "Gigadesgaste", + "effect": "Ataque de tipo Dragón ejecutado por un Duraludon Gigamax. Reduce PP del último movimiento usado por el objetivo." + }, + "gMaxGravitas": { + "name": "Gigabóveda", + "effect": "Ataque de tipo Psíquico ejecutado por un Orbeetle Gigamax. Intensifica la fuerza de gravedad durante cinco turnos." + }, + "gMaxVolcalith": { + "name": "Gigarroca Ígnea", + "effect": "Ataque de tipo Roca ejecutado por un Coalossal Gigamax. Inflige daño durante cuatro turnos." + }, + "gMaxSandblast": { + "name": "Gigapolvareda", + "effect": "Ataque de tipo Tierra ejecutado por un Sandaconda Gigamax. Enreda al objetivo en un remolino de arena de cuatro a cinco turnos." + }, + "gMaxSnooze": { + "name": "Gigasopor", + "effect": "Ataque de tipo Siniestro ejecutado por un Grimmsnarl Gigamax. Induce al sueño al objetivo en el siguiente turno." + }, + "gMaxTartness": { + "name": "Gigacorrosión", + "effect": "Ataque de tipo Planta ejecutado por un Flapple Gigamax. Reduce la Evasión del objetivo." + }, + "gMaxSweetness": { + "name": "Giganéctar", + "effect": "Ataque de tipo Planta ejecutado por un Appletun Gigamax. Cura los problemas de estado de tu bando." + }, + "gMaxSmite": { + "name": "Gigacastigo", + "effect": "Ataque de tipo Hada ejecutado por un Hatterene Gigamax. Confunde al objetivo." + }, + "gMaxSteelsurge": { + "name": "Gigatrampa Acero", + "effect": "Ataque de tipo Acero ejecutado por un Copperajah Gigamax. Esparce púas de acero por el terreno de combate." + }, + "gMaxMeltdown": { + "name": "Gigafundido", + "effect": "Ataque de tipo Acero ejecutado por un Melmetal Gigamax. Impide al objetivo usar el mismo movimiento dos veces seguidas." + }, + "gMaxFoamBurst": { + "name": "Gigaespuma", + "effect": "Ataque de tipo Agua ejecutado por un Kingler Gigamax. Reduce mucho la Velocidad del objetivo." + }, + "gMaxCentiferno": { + "name": "Gigacienfuegos", + "effect": "Ataque de tipo Fuego ejecutado por un Centiskorch Gigamax. Un aro de fuego atrapa al objetivo de cuatro a cinco turnos." + }, + "gMaxVineLash": { + "name": "Gigalianas", + "effect": "Ataque de tipo Planta ejecutado por un Venusaur Gigamax. Inflige daño durante cuatro turnos." + }, + "gMaxCannonade": { + "name": "Gigacañonazo", + "effect": "Ataque de tipo Agua ejecutado por un Blastoise Gigamax. Inflige daño durante cuatro turnos." + }, + "gMaxDrumSolo": { + "name": "Gigarredoble", + "effect": "Ataque de tipo Planta ejecutado por un Rillaboom Gigamax. Ignora la habilidad del objetivo." + }, + "gMaxFireball": { + "name": "Gigaesfera Ígnea", + "effect": "Ataque de tipo Fuego ejecutado por un Cinderace Gigamax. Ignora la habilidad del objetivo." + }, + "gMaxHydrosnipe": { + "name": "Gigadisparo", + "effect": "Ataque de tipo Agua ejecutado por un Inteleon Gigamax. Ignora la habilidad del objetivo." + }, + "gMaxOneBlow": { + "name": "Gigagolpe Brusco", + "effect": "Ataque de tipo Siniestro ejecutado por un Urshifu Gigamax. Propina un único golpe que acierta al objetivo aunque haya usado Maxibarrera." + }, + "gMaxRapidFlow": { + "name": "Gigagolpe Fluido", + "effect": "Ataque de tipo Agua ejecutado por un Urshifu Gigamax. Propina golpes sucesivos que aciertan al objetivo aunque haya usado Maxibarrera." + }, + "teraBlast": { + "name": "Teraexplosión", + "effect": "Si el usuario se ha teracristalizado, ataca con la energía de su teratipo. Compara sus valores de Ataque y Ataque Especial para infligir daño con el más alto de los dos." + }, + "silkTrap": { + "name": "Telatrampa", + "effect": "Tiende una trampa sedosa que protege al usuario de los ataques al tiempo que reduce la Velocidad de cualquier Pokémon con el que entre en contacto." + }, + "axeKick": { + "name": "Patada Hacha", + "effect": "Lanza una patada al aire para, acto seguido, golpear con el talón. Si falla, se hiere a sí mismo. Puede confundir al objetivo." + }, + "lastRespects": { + "name": "Homenaje Póstumo", + "effect": "Ataca para vengar a sus compañeros caídos y aplacar su desazón. Cuantos más miembros del equipo se hayan debilitado, mayor será la potencia del movimiento." + }, + "luminaCrash": { + "name": "Fotocolisión", + "effect": "Ataca proyectando una extraña luz que afecta a la mente. Reduce mucho la Defensa Especial del objetivo." + }, + "orderUp": { + "name": "Oído Cocina", + "effect": "Ataca con porte gallardo. Si lleva un Tatsugiri en la boca, aumenta una de sus características en función de la forma de este último." + }, + "jetPunch": { + "name": "Puño Jet", + "effect": "Se envuelve el puño con un torrente y propina un golpe a tal velocidad que resulta casi imperceptible. Este movimiento tiene prioridad alta." + }, + "spicyExtract": { + "name": "Extracto Picante", + "effect": "Libera un extracto extraordinariamente picante que aumenta mucho el Ataque del objetivo, pero también reduce mucho su Defensa." + }, + "spinOut": { + "name": "Quemarrueda", + "effect": "Inflige daño al objetivo ejerciendo presión sobre sus extremidades y girando violentamente sobre sí. Reduce mucho la Velocidad del usuario." + }, + "populationBomb": { + "name": "Proliferación", + "effect": "Los congéneres del usuario se agrupan y ejecutan un ataque conjunto que golpea al objetivo de una a diez veces seguidas." + }, + "iceSpinner": { + "name": "Pirueta Helada", + "effect": "Se recubre las extremidades con una fina capa de hielo y se abalanza sobre el objetivo girando sobre sí. Destruye el campo activo en el terreno de combate." + }, + "glaiveRush": { + "name": "Asalto Espadón", + "effect": "Embiste de forma temeraria con todo el cuerpo. Los ataques que reciba antes de su siguiente turno no fallarán y causarán el doble de daño." + }, + "revivalBlessing": { + "name": "Plegaria Vital", + "effect": "Pronuncia una benévola oración que revive a un Pokémon del equipo que se haya debilitado y restaura la mitad de sus PS máximos." + }, + "saltCure": { + "name": "Salazón", + "effect": "Deja en salazón al objetivo, que pierde PS cada turno. Afecta especialmente a Pokémon de tipo Acero y tipo Agua." + }, + "tripleDive": { + "name": "Triple Inmersión", + "effect": "Ejecuta una inmersión triple en perfecta sincronía que golpea al objetivo con salpicaduras de agua tres veces seguidas." + }, + "mortalSpin": { + "name": "Giro Mortífero", + "effect": "Ataque giratorio que envenena al objetivo y anula los efectos de movimientos como Atadura, Constricción y Drenadoras." + }, + "doodle": { + "name": "Decalcomanía", + "effect": "Calca la esencia misma del objetivo para atribuir su habilidad a sí mismo y a sus aliados." + }, + "filletAway": { + "name": "Deslome", + "effect": "Aumenta mucho el Ataque, el Ataque Especial y la Velocidad del usuario a costa de parte de sus PS." + }, + "kowtowCleave": { + "name": "Genufendiente", + "effect": "Se postra en ademán de reverencia para hacer que el objetivo baje la guardia y aprovecha el descuido para atacar. No falla nunca." + }, + "flowerTrick": { + "name": "Truco Floral", + "effect": "Ataca al objetivo lanzándole un ramo de flores trucado. No falla nunca y siempre asesta un golpe crítico." + }, + "torchSong": { + "name": "Canto Ardiente", + "effect": "Expele tórridas llamaradas como si entonara una canción y abrasa al objetivo con ellas. Aumenta el Ataque Especial del usuario." + }, + "aquaStep": { + "name": "Danza Acuática", + "effect": "Juguetea con el objetivo mientras ejecuta una elegante y fluida danza y le inflige daño. Aumenta la Velocidad del usuario." + }, + "ragingBull": { + "name": "Furia Taurina", + "effect": "Embiste con tremenda fiereza. Este movimiento cambia de tipo en función de la variedad del usuario y es capaz de destruir barreras como Pantalla de Luz y Reflejo." + }, + "makeItRain": { + "name": "Fiebre Dorada", + "effect": "El usuario ataca arrojando una generosa cantidad de monedas, pero su Ataque Especial se ve reducido. Al finalizar el combate, las recupera en forma de ganancias." + }, + "psyblade": { + "name": "Psicohojas", + "effect": "El usuario rebana al objetivo con una espada inmaterial. Cuando se usa en conjunción con un campo eléctrico, la potencia del movimiento aumenta un 50 %." + }, + "hydroSteam": { + "name": "Hidrovapor", + "effect": "Vierte agua hirviendo sobre el objetivo. Cuando hace sol, la potencia del movimiento aumenta un 50 % en lugar de reducirse." + }, + "ruination": { + "name": "Calamidad", + "effect": "Provoca una catástrofe devastadora que reduce a la mitad los PS del objetivo." + }, + "collisionCourse": { + "name": "Nitrochoque", + "effect": "El usuario choca contra el suelo mientras se transforma y provoca una explosión primigenia. La potencia del movimiento aumenta si el ataque es supereficaz." + }, + "electroDrift": { + "name": "Electroderrape", + "effect": "Se abalanza sobre el objetivo mientras se transforma y lo atraviesa con electricidad futurista. La potencia del movimiento aumenta si el ataque es supereficaz." + }, + "shedTail": { + "name": "Autotomía", + "effect": "El usuario se cambia por otro Pokémon del equipo, pero antes utiliza parte de los PS propios para crear un sustituto para su relevo." + }, + "chillyReception": { + "name": "Fría Acogida", + "effect": "El usuario se cambia por otro Pokémon del equipo, pero antes cuenta un chiste que tiene una acogida tan fría que hace que nieve durante cinco turnos." + }, + "tidyUp": { + "name": "Limpieza General", + "effect": "Efectúa una limpieza a fondo que anula los efectos de Púas, Trampa Rocas, Red Viscosa, Púas Tóxicas y Sustituto. Aumenta el Ataque y la Velocidad del usuario." + }, + "snowscape": { + "name": "Paisaje Nevado", + "effect": "Desata una nevada que dura cinco turnos y aumenta la Defensa de los Pokémon de tipo Hielo." + }, + "pounce": { + "name": "Brinco", + "effect": "Ataca abalanzándose sobre el objetivo y le reduce la Velocidad." + }, + "trailblaze": { + "name": "Abrecaminos", + "effect": "Ataca de pronto como si saltara desde la hierba alta. El usuario se mueve con gran agilidad y aumenta su Velocidad." + }, + "chillingWater": { + "name": "Agua Fría", + "effect": "Ataca al objetivo rociándolo con un agua gélida y desalentadora que reduce su Ataque." + }, + "hyperDrill": { + "name": "Hipertaladro", + "effect": "El usuario hace rotar la parte puntiaguda de su cuerpo a gran velocidad para atacar al objetivo. Pasa por alto los efectos de movimientos como Protección o Detección." + }, + "twinBeam": { + "name": "Láser Doble", + "effect": "Ataca emitiendo dos misteriosos haces lumínicos por los ojos que infligen daño dos veces seguidas." + }, + "rageFist": { + "name": "Puño Furia", + "effect": "Convierte su rabia en energía para atacar. Cuantos más golpes haya recibido el usuario, mayor será la potencia del movimiento." + }, + "armorCannon": { + "name": "Cañón Armadura", + "effect": "Se deshace de su armadura y arroja las partes al objetivo cuales proyectiles ardientes. Reduce la Defensa y la Defensa Especial del usuario." + }, + "bitterBlade": { + "name": "Espada Lamento", + "effect": "Imbuye la punta de su espada con su desazón por el mundo y asesta una estocada llena de rencor. El usuario recupera la mitad de los PS del daño que produce." + }, + "doubleShock": { + "name": "Electropalmas", + "effect": "Libera toda la electricidad de su cuerpo para lanzar un ataque devastador. Tras ejecutar el movimiento, el usuario deja de ser de tipo Eléctrico." + }, + "gigatonHammer": { + "name": "Martillo Colosal", + "effect": "El usuario se ayuda de su propio peso corporal para propinar un golpe con un enorme martillo. Este movimiento no puede usarse dos veces seguidas." + }, + "comeuppance": { + "name": "Resarcimiento", + "effect": "Devuelve al rival el último ataque recibido, pero con mucha más fuerza." + }, + "aquaCutter": { + "name": "Tajo Acuático", + "effect": "Expele agua a presión con la que corta al objetivo como si de una hoja se tratara. Suele asestar un golpe crítico." + }, + "blazingTorque": { + "name": "Pirochoque", + "effect": "The user revs their blazing engine into the target. This may also leave the target with a burn." + }, + "wickedTorque": { + "name": "Ominochoque", + "effect": "The user revs their engine into the target with malicious intent. This may put the target to sleep." + }, + "noxiousTorque": { + "name": "Ponzochoque", + "effect": "The user revs their poisonous engine into the target. This may also poison the target." + }, + "combatTorque": { + "name": "Pugnachoque", + "effect": "The user revs their engine forcefully into the target. This may also leave the target with paralysis." + }, + "magicalTorque": { + "name": "Feerichoque", + "effect": "The user revs their fae-like engine into the target. This may also confuse the target." + }, + "bloodMoon": { + "name": "Luna Roja", + "effect": "Ataca canalizando toda su fuerza y proyectándola a través de una luna llena de color rojo intenso. Este movimiento no puede usarse dos veces seguidas." + }, + "matchaGotcha": { + "name": "Cañón Batidor", + "effect": "Rocía al objetivo con té recién batido y recupera la mitad de los PS del daño que produce. Puede causar quemaduras." + }, + "syrupBomb": { + "name": "Bomba Caramelo", + "effect": "Impregna al objetivo con una explosión de su viscoso néctar y lo carameliza, lo que hace que su Velocidad se reduzca progresivamente durante tres turnos." + }, + "ivyCudgel": { + "name": "Garrote Liana", + "effect": "Golpea con un garrote que forma enrollando su liana. El tipo del movimiento varía según la máscara que lleve puesta el usuario. Suele asestar un golpe crítico." + }, + "electroShot": { + "name": "Electrorrayo", + "effect": "Acumula electricidad y aumenta su Ataque Especial en el primer turno y dispara una descarga de alto voltaje en el segundo. Si llueve, puede atacar en el primer turno." + }, + "teraStarstorm": { + "name": "Teraclúster", + "effect": "Ataca al objetivo irradiando el poder de sus cristales. Si Terapagos usa este movimiento en su Forma Astral, inflige daño a todos los rivales." + }, + "fickleBeam": { + "name": "Láser Veleidoso", + "effect": "Ataca disparando un haz de luz. En ocasiones, el resto de sus cabezas se unen al ataque. Cuando esto sucede, la potencia del movimiento se duplica." + }, + "burningBulwark": { + "name": "Llama Protectora", + "effect": "Emplea su ardiente pelaje para protegerse de los ataques y causarle quemaduras al atacante si este usa un movimiento de contacto." + }, + "thunderclap": { + "name": "Relámpago Súbito", + "effect": "Invoca un rayo que cae sobre el objetivo antes de que este pueda realizar cualquier acción. Falla si el objetivo no está preparando ningún ataque." + }, + "mightyCleave": { + "name": "Filo Potente", + "effect": "Rebana al objetivo con la luz que ha acumulado en la testa. Permite acertar aunque el objetivo esté protegiéndose." + }, + "tachyonCutter": { + "name": "Tajo Taquión", + "effect": "Lanza una ráfaga de cuchillas formadas por partículas contra el objetivo y le inflige daño dos veces seguidas. No falla nunca." + }, + "hardPress": { + "name": "Prensa Metálica", + "effect": "Oprime con los brazos o las pinzas. Cuantos más PS le queden al objetivo, mayor será la potencia del movimiento." + }, + "dragonCheer": { + "name": "Bramido Dragón", + "effect": "Bramido de dragón que sube la moral de los aliados y aumenta sus probabilidades de asestar un golpe crítico. Es especialmente efectivo con aliados de tipo Dragón." + }, + "alluringVoice": { + "name": "Canto Encantador", + "effect": "Ataca con un canto angelical y, si las características del objetivo han aumentado en ese turno, lo deja confuso." + }, + "temperFlare": { + "name": "Cólera Ardiente", + "effect": "Arremete contra el objetivo tras dejarse llevar por la ira. Su potencia se duplica si el movimiento del usuario falló en el turno anterior." + }, + "supercellSlam": { + "name": "Plancha Voltaica", + "effect": "El usuario electrifica su cuerpo y salta en plancha sobre el objetivo. Si falla, se hiere a sí mismo." + }, + "psychicNoise": { + "name": "Psicorruido", + "effect": "Ataca emitiendo una onda sonora desagradable que impide al objetivo usar movimientos, habilidades y objetos equipados que recuperan PS durante dos turnos." + }, + "upperHand": { + "name": "Palma Rauda", + "effect": "Se anticipa al objetivo golpeándolo rápidamente con la palma y lo amedrenta. Falla si el objetivo no está preparando un movimiento de prioridad alta." + }, + "malignantChain": { + "name": "Cadena Virulenta", + "effect": "Apresa al objetivo con una cadena hecha de ponzoña que le inocula toxinas para minarle las fuerzas. Puede envenenar gravemente." + } +} diff --git a/src/locales/es/move.ts b/src/locales/es/move.ts deleted file mode 100644 index 873e7e2da94..00000000000 --- a/src/locales/es/move.ts +++ /dev/null @@ -1,3812 +0,0 @@ -import { MoveTranslationEntries } from "#app/interfaces/locales"; - -export const move: MoveTranslationEntries = { - pound: { - name: "Destructor", - effect: "Golpea al objetivo con las extremidades, la cola o similares.", - }, - karateChop: { - name: "Golpe Kárate", - effect: "Da un golpe cortante. Suele ser crítico.", - }, - doubleSlap: { - name: "Doble Bofetón", - effect: "Abofetea de dos a cinco veces seguidas.", - }, - cometPunch: { - name: "Puño Cometa", - effect: "Pega de dos a cinco veces seguidas.", - }, - megaPunch: { - name: "Megapuño", - effect: "Un puñetazo de gran potencia.", - }, - payDay: { - name: "Día de Pago", - effect: "Arroja monedas al objetivo y las recupera al final del combate.", - }, - firePunch: { - name: "Puño Fuego", - effect: "Puñetazo ardiente que puede causar quemaduras.", - }, - icePunch: { - name: "Puño Hielo", - effect: "Puñetazo helado que puede llegar a congelar.", - }, - thunderPunch: { - name: "Puño Trueno", - effect: "Puñetazo eléctrico que puede paralizar al adversario.", - }, - scratch: { - name: "Arañazo", - effect: "Araña con afiladas garras.", - }, - viseGrip: { - name: "Agarre", - effect: "Atenaza al objetivo y le inflige daño.", - }, - guillotine: { - name: "Guillotina", - effect: "Ataque cortante que debilita al oponente de un golpe si acierta.", - }, - razorWind: { - name: "Viento Cortante", - effect: "Primero se prepara y en el segundo turno ataca al oponente con ráfagas de viento cortante. Alta probabilidad de ser crítico.", - }, - swordsDance: { - name: "Danza Espada", - effect: "Baile frenético que aumenta mucho el Ataque.", - }, - cut: { - name: "Corte", - effect: "Corta al adversario con garras, guadañas, etc.", - }, - gust: { - name: "Tornado", - effect: "Crea un tornado con las alas y lo lanza contra el objetivo.", - }, - wingAttack: { - name: "Ataque Ala", - effect: "Extiende totalmente sus majestuosas alas para golpear al objetivo con ellas.", - }, - whirlwind: { - name: "Remolino", - effect: "Se lleva al objetivo, que es cambiado por otro Pokémon. Si es un Pokémon salvaje, acaba el combate.", - }, - fly: { - name: "Vuelo", - effect: "El usuario vuela en el primer turno y ataca en el segundo.", - }, - bind: { - name: "Atadura", - effect: "Ata y oprime de cuatro a cinco turnos.", - }, - slam: { - name: "Atizar", - effect: "Golpea con la cola o con lianas, por ejemplo, para causar daño al objetivo.", - }, - vineWhip: { - name: "Látigo Cepa", - effect: "Azota al objetivo con lianas delgadas y largas tan flexibles como látigos.", - }, - stomp: { - name: "Pisotón", - effect: "Tremendo pisotón que puede hacer que el objetivo se amedrente.", - }, - doubleKick: { - name: "Doble Patada", - effect: "Una patada doble. Golpea dos veces.", - }, - megaKick: { - name: "Megapatada", - effect: "Patada de extrema fuerza.", - }, - jumpKick: { - name: "Patada Salto", - effect: "Da un salto y pega una patada. Si falla, se lesiona.", - }, - rollingKick: { - name: "Patada Giro", - effect: "Da una patada rápida y circular. Puede hacer retroceder al objetivo.", - }, - sandAttack: { - name: "Ataque Arena", - effect: "Arroja arena a la cara y baja la Precisión.", - }, - headbutt: { - name: "Golpe Cabeza", - effect: "Potente cabezazo que puede amedrentar al objetivo.", - }, - hornAttack: { - name: "Cornada", - effect: "Ataca al objetivo con una cornada punzante.", - }, - furyAttack: { - name: "Ataque Furia", - effect: "Cornea al objetivo de dos a cinco veces.", - }, - hornDrill: { - name: "Perforador", - effect: "Ataque con un cuerno giratorio que fulmina al objetivo de un solo golpe si acierta.", - }, - tackle: { - name: "Placaje", - effect: "Embestida con todo el cuerpo.", - }, - bodySlam: { - name: "Golpe Cuerpo", - effect: "Salta sobre el objetivo con todo su peso y puede llegar a paralizarlo.", - }, - wrap: { - name: "Constricción", - effect: "Oprime al objetivo de cuatro a cinco turnos con lianas o con su cuerpo.", - }, - takeDown: { - name: "Derribo", - effect: "Carga desmedida que también hiere al agresor.", - }, - thrash: { - name: "Saña", - effect: "El usuario ataca enfurecido durante dos o tres turnos y, después, se queda confuso.", - }, - doubleEdge: { - name: "Doble Filo", - effect: "Ataque arriesgado que también hiere al agresor.", - }, - tailWhip: { - name: "Látigo", - effect: "Agita la cola para bajar la Defensa del equipo rival.", - }, - poisonSting: { - name: "Picotazo Veneno", - effect: "Lanza un aguijón tóxico que puede envenenar al objetivo.", - }, - twineedle: { - name: "Doble Ataque", - effect: "Pincha dos veces con dos espinas. Puede envenenar.", - }, - pinMissile: { - name: "Pin Misil", - effect: "Lanza finas púas que hieren de dos a cinco veces.", - }, - leer: { - name: "Malicioso", - effect: "Intimida a los rivales para bajar su Defensa.", - }, - bite: { - name: "Mordisco", - effect: "Un voraz bocado con dientes afilados que puede amedrentar al objetivo.", - }, - growl: { - name: "Gruñido", - effect: "Dulce gruñido que distrae al objetivo para que baje la guardia y reduce su Ataque.", - }, - roar: { - name: "Rugido", - effect: "Se lleva al objetivo, que es cambiado por otro Pokémon. Si es un Pokémon salvaje, acaba el combate.", - }, - sing: { - name: "Canto", - effect: "Cancioncilla que hace dormir profundamente al objetivo.", - }, - supersonic: { - name: "Supersónico", - effect: "El cuerpo del usuario emite unas ondas sónicas raras que confunden al objetivo.", - }, - sonicBoom: { - name: "Bomba Sónica", - effect: "Lanza ondas de choque que restan 20 PS al objetivo.", - }, - disable: { - name: "Anulación", - effect: "Desactiva el último movimiento del objetivo durante cuatro turnos.", - }, - acid: { - name: "Ácido", - effect: "Rocía al objetivo con un ácido corrosivo. Puede reducir la Defensa Especial.", - }, - ember: { - name: "Ascuas", - effect: "Ataca con llamas pequeñas que pueden causar quemaduras.", - }, - flamethrower: { - name: "Lanzallamas", - effect: "Ataca con una gran ráfaga de fuego que puede causar quemaduras.", - }, - mist: { - name: "Neblina", - effect: "Rodea de una niebla blanquecina al bando del usuario e impide que el rival reduzca sus características durante cinco turnos.", - }, - waterGun: { - name: "Pistola Agua", - effect: "Ataca disparando agua con gran potencia.", - }, - hydroPump: { - name: "Hidrobomba", - effect: "Lanza una gran masa de agua a presión para atacar.", - }, - surf: { - name: "Surf", - effect: "Inunda el terreno de combate con una ola gigante que golpea a los Pokémon adyacentes.", - }, - iceBeam: { - name: "Rayo Hielo", - effect: "Rayo de hielo que puede llegar a congelar.", - }, - blizzard: { - name: "Ventisca", - effect: "Tormenta de hielo que puede llegar a congelar.", - }, - psybeam: { - name: "Psicorrayo", - effect: "Extraño rayo que puede causar confusión.", - }, - bubbleBeam: { - name: "Rayo Burbuja", - effect: "Ráfaga de burbujas que puede reducir la Velocidad.", - }, - auroraBeam: { - name: "Rayo Aurora", - effect: "Rayo multicolor que puede reducir el Ataque.", - }, - hyperBeam: { - name: "Hiperrayo", - effect: "El usuario ataca al objetivo con un potente haz de luz, pero deberá descansar en el siguiente turno.", - }, - peck: { - name: "Picotazo", - effect: "Ensarta al objetivo con un cuerno o pico punzante.", - }, - drillPeck: { - name: "Pico Taladro", - effect: "Picotazo giratorio y perforador muy potente.", - }, - submission: { - name: "Sumisión", - effect: "El usuario se lanza al suelo con el oponente en brazos y también se hace un poco de daño.", - }, - lowKick: { - name: "Patada Baja", - effect: "Patada baja que derriba al objetivo. Cuanto más pesa este, más daño le causa.", - }, - counter: { - name: "Contraataque", - effect: "Devuelve un golpe físico por duplicado.", - }, - seismicToss: { - name: "Sísmico", - effect: "Aprovecha la gravedad para derribar al objetivo. Le resta tantos PS como nivel tenga el usuario.", - }, - strength: { - name: "Fuerza", - effect: "Ataca al objetivo golpeándolo con todas sus fuerzas.", - }, - absorb: { - name: "Absorber", - effect: "Un ataque que absorbe nutrientes. Quien lo usa recupera la mitad de los PS del daño que produce.", - }, - megaDrain: { - name: "Megaagotar", - effect: "Un ataque que absorbe nutrientes. Quien lo usa recupera la mitad de los PS del daño que produce.", - }, - leechSeed: { - name: "Drenadoras", - effect: "Planta semillas que absorben PS del objetivo en cada turno y que le sirven para recuperarse.", - }, - growth: { - name: "Desarrollo", - effect: "Hace que su cuerpo crezca a marchas forzadas con lo que aumenta su Ataque y Ataque Especial.", - }, - razorLeaf: { - name: "Hoja Afilada", - effect: "Corta con hojas afiladas. Un ataque que suele ser crítico.", - }, - solarBeam: { - name: "Rayo Solar", - effect: "El usuario absorbe luz en el primer turno y en el segundo lanza un potente rayo de energía.", - }, - poisonPowder: { - name: "Polvo Veneno", - effect: "Esparce polvo tóxico que envenena al objetivo.", - }, - stunSpore: { - name: "Paralizador", - effect: "Esparce polvo que paraliza al objetivo.", - }, - sleepPowder: { - name: "Somnífero", - effect: "Esparce polvo que duerme al objetivo.", - }, - petalDance: { - name: "Danza Pétalo", - effect: "Ataca al objetivo lanzando pétalos de dos a tres turnos y, al finalizar, el usuario se queda confuso.", - }, - stringShot: { - name: "Disparo Demora", - effect: "Lanza seda a los rivales y reduce mucho su Velocidad.", - }, - dragonRage: { - name: "Furia Dragón", - effect: "Ráfaga de furiosas ondas de choque que quitan 40 PS.", - }, - fireSpin: { - name: "Giro Fuego", - effect: "Un aro de fuego que atrapa al objetivo de cuatro a cinco turnos.", - }, - thunderShock: { - name: "Impactrueno", - effect: "Ataque eléctrico que puede paralizar al objetivo.", - }, - thunderbolt: { - name: "Rayo", - effect: "Potente ataque eléctrico que puede paralizar al objetivo.", - }, - thunderWave: { - name: "Onda Trueno", - effect: "Una ligera descarga que paraliza al objetivo.", - }, - thunder: { - name: "Trueno", - effect: "Un poderoso rayo que daña al objetivo y puede paralizarlo.", - }, - rockThrow: { - name: "Lanzarrocas", - effect: "Tira una pequeña roca al objetivo.", - }, - earthquake: { - name: "Terremoto", - effect: "Un terremoto que afecta a los Pokémon adyacentes.", - }, - fissure: { - name: "Fisura", - effect: "Abre una grieta en el suelo y mete al objetivo en ella. Fulmina al objetivo de un solo golpe si acierta.", - }, - dig: { - name: "Excavar", - effect: "El usuario cava durante el primer turno y ataca en el segundo.", - }, - toxic: { - name: "Tóxico", - effect: "Envenena gravemente al objetivo y causa un daño mayor en cada turno.", - }, - confusion: { - name: "Confusión", - effect: "Débil ataque telequinético que puede causar confusión.", - }, - psychic: { - name: "Psíquico", - effect: "Fuerte ataque telequinético que puede bajar la Defensa Especial del objetivo.", - }, - hypnosis: { - name: "Hipnosis", - effect: "Ataque hipnótico que hace dormir profundamente al objetivo.", - }, - meditate: { - name: "Meditación", - effect: "El usuario reposa y medita para potenciar el Ataque.", - }, - agility: { - name: "Agilidad", - effect: "Relaja el cuerpo para ganar mucha Velocidad.", - }, - quickAttack: { - name: "Ataque Rápido", - effect: "Ataque de una rapidez espeluznante. Este movimiento tiene prioridad alta.", - }, - rage: { - name: "Furia", - effect: "Al usarse, aumenta el Ataque del usuario cada vez que es golpeado.", - }, - teleport: { - name: "Teletransporte", - effect: "Permite al usuario cambiarse por otro Pokémon del equipo, si lo hay. Si un Pokémon salvaje usa este movimiento, huye del combate.", - }, - nightShade: { - name: "Tinieblas", - effect: "Produce un espejismo ante el objetivo, que pierde tantos PS como nivel tenga el usuario.", - }, - mimic: { - name: "Mimético", - effect: "Copia el último movimiento usado por el objetivo, y puede utilizarlo mientras esté en el combate.", - }, - screech: { - name: "Chirrido", - effect: "Alarido agudo que reduce mucho la Defensa del objetivo.", - }, - doubleTeam: { - name: "Doble Equipo", - effect: "Crea copias de sí mismo para mejorar la Evasión.", - }, - recover: { - name: "Recuperación", - effect: "Restaura hasta la mitad de los PS máximos.", - }, - harden: { - name: "Fortaleza", - effect: "Tensa la musculatura del usuario para aumentar la Defensa.", - }, - minimize: { - name: "Reducción", - effect: "El usuario mengua para aumentar mucho la Evasión.", - }, - smokescreen: { - name: "Pantalla de Humo", - effect: "Reduce la Precisión del objetivo con una nube de humo o tinta.", - }, - confuseRay: { - name: "Rayo Confuso", - effect: "Rayo siniestro que confunde al objetivo.", - }, - withdraw: { - name: "Refugio", - effect: "El usuario se resguarda en su coraza, por lo que le sube la Defensa.", - }, - defenseCurl: { - name: "Rizo Defensa", - effect: "Se enrosca para ocultar sus puntos débiles y aumentar la Defensa.", - }, - barrier: { - name: "Barrera", - effect: "Crea una barrera que aumenta mucho la Defensa.", - }, - lightScreen: { - name: "Pantalla de Luz", - effect: "Pared de luz que reduce durante cinco turnos el daño producido por los ataques especiales.", - }, - haze: { - name: "Niebla", - effect: "Neblina oscura que elimina los cambios en las características de todos los Pokémon en combate.", - }, - reflect: { - name: "Reflejo", - effect: "Pared de luz que reduce durante cinco turnos el daño producido por los ataques físicos.", - }, - focusEnergy: { - name: "Foco Energía", - effect: "Concentra energía para aumentar las posibilidades de asestar un golpe crítico.", - }, - bide: { - name: "Venganza", - effect: "Espera dos turnos para atacar con el doble de potencia del daño recibido.", - }, - metronome: { - name: "Metrónomo", - effect: "Mueve un dedo y estimula su cerebro para usar al azar casi cualquier movimiento.", - }, - mirrorMove: { - name: "Espejo", - effect: "Ataca al objetivo con el último movimiento que este haya usado.", - }, - selfDestruct: { - name: "Autodestrucción", - effect: "El atacante explota y hiere a los Pokémon adyacentes. El usuario se debilita de inmediato.", - }, - eggBomb: { - name: "Bomba Huevo", - effect: "Arroja un huevo enorme al objetivo con gran fuerza.", - }, - lick: { - name: "Lengüetazo", - effect: "Una lengua ataca al objetivo. Puede causar parálisis.", - }, - smog: { - name: "Polución", - effect: "Lanza un ataque con gases tóxicos que pueden llegar a envenenar.", - }, - sludge: { - name: "Residuos", - effect: "Arroja residuos al objetivo. Puede llegar a envenenar.", - }, - boneClub: { - name: "Hueso Palo", - effect: "Aporrea con un hueso. Puede hacer retroceder al objetivo.", - }, - fireBlast: { - name: "Llamarada", - effect: "Llama intensa que chamusca y puede causar quemaduras.", - }, - waterfall: { - name: "Cascada", - effect: "Embiste con un gran impulso y puede llegar a amedrentar al objetivo.", - }, - clamp: { - name: "Tenaza", - effect: "Atrapa y atenaza con fuerza durante cuatro o cinco turnos.", - }, - swift: { - name: "Meteoros", - effect: "Lanza rayos en forma de estrella que no fallan nunca.", - }, - skullBash: { - name: "Cabezazo", - effect: "El usuario se prepara y sube su Defensa en el primer turno y en el segundo arremete con un cabezazo.", - }, - spikeCannon: { - name: "Clavo Cañón", - effect: "Lanza finas púas que hieren de dos a cinco veces.", - }, - constrict: { - name: "Restricción", - effect: "Ataca con largos tentáculos o zarcillos que pueden bajar la Velocidad.", - }, - amnesia: { - name: "Amnesia", - effect: "El usuario olvida sus preocupaciones y aumenta mucho la Defensa Especial.", - }, - kinesis: { - name: "Kinético", - effect: "Dobla una cuchara para distraer al objetivo y reducir su Precisión.", - }, - softBoiled: { - name: "Ovocuración", - effect: "Restaura la mitad de los PS máximos del usuario.", - }, - highJumpKick: { - name: "Pat. Salto Alta", - effect: "El usuario salta muy alto y da un rodillazo. Si falla, se hará daño.", - }, - glare: { - name: "Deslumbrar", - effect: "Intimida y asusta al objetivo con la mirada para dejarlo paralizado.", - }, - dreamEater: { - name: "Comesueños", - effect: "Restaura al usuario la mitad del daño causado a un objetivo dormido.", - }, - poisonGas: { - name: "Gas Venenoso", - effect: "Lanza una nube de gas tóxico al objetivo. Produce envenenamiento.", - }, - barrage: { - name: "Bombardeo", - effect: "Arroja esferas al objetivo entre dos y cinco veces seguidas.", - }, - leechLife: { - name: "Chupavidas", - effect: "Restaura al usuario la mitad del daño causado al objetivo.", - }, - lovelyKiss: { - name: "Beso Amoroso", - effect: "Intimida al objetivo con una cara que asusta y le da un beso que lo deja dormido.", - }, - skyAttack: { - name: "Ataque Aéreo", - effect: "Ataca durante dos turnos y suele asestar un golpe crítico. También puede amedrentar al objetivo.", - }, - transform: { - name: "Transformación", - effect: "El usuario se transforma en una copia del objetivo, con los mismos movimientos.", - }, - bubble: { - name: "Burbuja", - effect: "Lanza burbujas a los contrincantes y puede reducir su Velocidad.", - }, - dizzyPunch: { - name: "Puño Mareo", - effect: "Rítmicos puñetazos que pueden causar confusión.", - }, - spore: { - name: "Espora", - effect: "Esparce esporas que inducen el sueño.", - }, - flash: { - name: "Destello", - effect: "Luz cegadora que baja la Precisión del objetivo.", - }, - psywave: { - name: "Psicoonda", - effect: "Ataque con una onda de energía de intensidad variable.", - }, - splash: { - name: "Salpicadura", - effect: "No tiene ningún efecto. Solo salpica.", - }, - acidArmor: { - name: "Armadura Ácida", - effect: "Transforma la estructura celular para hacerse líquido y aumenta mucho la Defensa.", - }, - crabhammer: { - name: "Martillazo", - effect: "Golpea con fuerza con una pinza enorme. Suele asestar un golpe crítico.", - }, - explosion: { - name: "Explosión", - effect: "El atacante causa una grandísima explosión y hiere a los Pokémon adyacentes. El usuario se debilita de inmediato.", - }, - furySwipes: { - name: "Golpes Furia", - effect: "Araña rápidamente de dos a cinco veces.", - }, - bonemerang: { - name: "Huesomerang", - effect: "Lanza un hueso a modo de bumerán que golpea dos veces.", - }, - rest: { - name: "Descanso", - effect: "Restaura todos los PS y cura todos los problemas de estado del usuario, que se duerme los dos turnos siguientes.", - }, - rockSlide: { - name: "Avalancha", - effect: "Lanza grandes pedruscos. Puede amedrentar al objetivo.", - }, - hyperFang: { - name: "Hipercolmillo", - effect: "Ataca con agudos colmillos. Puede amedrentar al objetivo.", - }, - sharpen: { - name: "Afilar", - effect: "El perfil del usuario se hace más afilado y su Ataque mejora.", - }, - conversion: { - name: "Conversión", - effect: "Cambia el tipo del usuario por el del primer movimiento en su lista.", - }, - triAttack: { - name: "Triataque", - effect: "Ataque con tres rayos de luz que puede paralizar, quemar o congelar al objetivo.", - }, - superFang: { - name: "Superdiente", - effect: "Asesta una dentellada con sus afilados incisivos que reduce a la mitad los PS del objetivo.", - }, - slash: { - name: "Cuchillada", - effect: "Ataca con cuchillas o con pinzas. Suele asestar un golpe crítico.", - }, - substitute: { - name: "Sustituto", - effect: "Utiliza parte de los PS propios para crear un sustituto que actúa como señuelo.", - }, - struggle: { - name: "Forcejeo", - effect: "Solo se usa como último recurso al acabarse los PP. Hiere un poco al agresor.", - }, - sketch: { - name: "Esquema", - effect: "Aprende de forma permanente el último movimiento utilizado por el objetivo. Es de un solo uso.", - }, - tripleKick: { - name: "Triple Patada", - effect: "Propina hasta tres patadas seguidas, la potencia de las cuales aumenta cada vez que acierta.", - }, - thief: { - name: "Ladrón", - effect: "El usuario ataca y tiene un 30% de robarle el objeto al objetivo.", - }, - spiderWeb: { - name: "Telaraña", - effect: "Enreda al objetivo para evitar que abandone el combate.", - }, - mindReader: { - name: "Telépata", - effect: "El usuario adivina los movimientos del objetivo para hacer que su siguiente ataque no falle.", - }, - nightmare: { - name: "Pesadilla", - effect: "El objetivo dormido sufre una pesadilla que le hace perder PS en cada turno.", - }, - flameWheel: { - name: "Rueda Fuego", - effect: "Ataca envuelto en fuego. Puede causar quemaduras.", - }, - snore: { - name: "Ronquido", - effect: "Fuerte ronquido que solo puede usarse dormido. Puede amedrentar al objetivo.", - }, - curse: { - name: "Maldición", - effect: "Un movimiento que tiene efectos distintos si el usuario es de tipo Fantasma o no.", - }, - flail: { - name: "Azote", - effect: "Ataque frenético. Cuantos menos PS tenga el usuario, más daño producirá.", - }, - conversion2: { - name: "Conversión2", - effect: "El usuario cambia de tipo para hacerse resistente al último tipo de movimiento usado por el objetivo.", - }, - aeroblast: { - name: "Aerochorro", - effect: "Lanza un chorro de aire que suele asestar un golpe crítico.", - }, - cottonSpore: { - name: "Esporagodón", - effect: "Adhiere esporas a los rivales para reducir mucho su Velocidad.", - }, - reversal: { - name: "Inversión", - effect: "Ataque desesperado que causa más daño cuantos menos PS tenga el usuario.", - }, - spite: { - name: "Rencor", - effect: "Da rienda suelta a su rencor para reducir 4 PP del último movimiento usado por el objetivo.", - }, - powderSnow: { - name: "Nieve Polvo", - effect: "Lanza nieve que puede llegar a congelar.", - }, - protect: { - name: "Protección", - effect: "Frena todos los ataques, pero puede fallar si se usa repetidamente.", - }, - machPunch: { - name: "Ultrapuño", - effect: "Puñetazo de velocidad fulminante. Este movimiento tiene prioridad alta.", - }, - scaryFace: { - name: "Cara Susto", - effect: "Asusta al objetivo para reducir mucho su Velocidad.", - }, - feintAttack: { - name: "Finta", - effect: "Engaña al objetivo para acercarse y dar un puñetazo que no falla.", - }, - sweetKiss: { - name: "Beso Dulce", - effect: "Da un beso con tal dulzura que causa confusión.", - }, - bellyDrum: { - name: "Tambor", - effect: "Reduce la mitad de los PS máximos para mejorar al máximo el Ataque.", - }, - sludgeBomb: { - name: "Bomba Lodo", - effect: "Arroja residuos al objetivo. Puede llegar a envenenar.", - }, - mudSlap: { - name: "Bofetón Lodo", - effect: "Echa lodo en la cara del objetivo para infligirle daño y reducir su Precisión.", - }, - octazooka: { - name: "Pulpocañón", - effect: "Dispara tinta a la cara. Puede bajar la Precisión.", - }, - spikes: { - name: "Púas", - effect: "Esparce púas alrededor del equipo rival que hieren a los Pokémon rivales que entran en combate.", - }, - zapCannon: { - name: "Electrocañón", - effect: "Dispara una descarga eléctrica que causa daño y parálisis.", - }, - foresight: { - name: "Profecía", - effect: "Permite atacar con cualquier movimiento a objetivos de tipo Fantasma y golpear a Pokémon evasivos.", - }, - destinyBond: { - name: "Mismo Destino", - effect: "Si el usuario se debilita por un ataque rival antes de usar otro movimiento, el Pokémon rival se debilitará también. Puede fallar si se usa repetidamente.", - }, - perishSong: { - name: "Canto Mortal", - effect: "Si un Pokémon escucha este canto y no es cambiado por otro en tres turnos, acaba debilitándose.", - }, - icyWind: { - name: "Viento Hielo", - effect: "Ataque con aire helado que reduce la Velocidad del objetivo.", - }, - detect: { - name: "Detección", - effect: "Frena todos los ataques, pero puede fallar si se usa repetidamente.", - }, - boneRush: { - name: "Ataque Óseo", - effect: "Hueso en ristre, aporrea al objetivo de dos a cinco veces.", - }, - lockOn: { - name: "Fijar Blanco", - effect: "Fija el blanco para que el siguiente ataque no falle.", - }, - outrage: { - name: "Enfado", - effect: "El usuario ataca enfurecido durante dos o tres turnos y, después, se queda confuso.", - }, - sandstorm: { - name: "Tormenta Arena", - effect: "Tormenta de arena que dura cinco turnos y hiere a todos, excepto a los de tipo Roca, Tierra y Acero, y aumenta la Defensa Especial de los de tipo Roca.", - }, - gigaDrain: { - name: "Gigadrenado", - effect: "Un ataque que absorbe nutrientes. Quien lo usa recupera la mitad de los PS del daño que produce.", - }, - endure: { - name: "Aguante", - effect: "Resiste cualquier ataque y deja al menos 1 PS. Puede fallar si se usa repetidamente.", - }, - charm: { - name: "Encanto", - effect: "Engatusa al objetivo y reduce mucho su Ataque.", - }, - rollout: { - name: "Rodar", - effect: "El atacante rueda contra el objetivo durante cinco turnos, cada vez con mayor fuerza.", - }, - falseSwipe: { - name: "Falso Tortazo", - effect: "Ataque moderado que no debilita al objetivo y le deja al menos 1 PS.", - }, - swagger: { - name: "Contoneo", - effect: "Provoca confusión en el objetivo, pero también sube mucho su Ataque.", - }, - milkDrink: { - name: "Batido", - effect: "Restaura la mitad de los PS máximos del usuario.", - }, - spark: { - name: "Chispa", - effect: "Ataque eléctrico que puede llegar a paralizar.", - }, - furyCutter: { - name: "Corte Furia", - effect: "Ataque con garras o guadaña que crece en intensidad si se usa repetidas veces.", - }, - steelWing: { - name: "Ala de Acero", - effect: "Alas macizas que golpean al objetivo y pueden subir la Defensa del usuario.", - }, - meanLook: { - name: "Mal de Ojo", - effect: "Mal de ojo que impide al objetivo huir del combate o ser cambiado por otro.", - }, - attract: { - name: "Atracción", - effect: "Si el objetivo es del sexo opuesto, se enamorará y bajará la posibilidad de que ataque.", - }, - sleepTalk: { - name: "Sonámbulo", - effect: "Mientras duerme, usa uno de sus movimientos elegido al azar.", - }, - healBell: { - name: "Cascabel Cura", - effect: "Tañido que cura los problemas de estado de todos los Pokémon del equipo.", - }, - return: { - name: "Retribución", - effect: "Cuanto mayor sea la amistad con el Entrenador, más poderoso será este ataque.", - }, - present: { - name: "Presente", - effect: "Quien lo usa ataca al objetivo dándole un regalo con una bomba trampa. Sin embargo, a veces restaura sus PS.", - }, - frustration: { - name: "Frustración", - effect: "Cuanto menor sea la amistad con el Entrenador, más poderoso será este ataque.", - }, - safeguard: { - name: "Velo Sagrado", - effect: "Un poder misterioso que protege de problemas de estado durante cinco turnos.", - }, - painSplit: { - name: "Divide Dolor", - effect: "Suma los PS del usuario a los del objetivo y los reparte a partes iguales.", - }, - sacredFire: { - name: "Fuego Sagrado", - effect: "Fuego místico de gran intensidad que puede causar quemaduras.", - }, - magnitude: { - name: "Magnitud", - effect: "Sacudida sísmica de intensidad variable que afecta a todos los Pokémon a su alrededor.", - }, - dynamicPunch: { - name: "Puño Dinámico", - effect: "Puñetazo con toda la fuerza concentrada. Causa confusión si atina.", - }, - megahorn: { - name: "Megacuerno", - effect: "Ensarta al objetivo con su imponente cuerno o cornamenta.", - }, - dragonBreath: { - name: "Dragoaliento", - effect: "Poderosa ráfaga de aliento que golpea al objetivo y puede paralizarlo.", - }, - batonPass: { - name: "Relevo", - effect: "Cambia el puesto con otro miembro del equipo y le pasa los cambios en las características.", - }, - encore: { - name: "Otra Vez", - effect: "El objetivo repite su último movimiento durante tres turnos.", - }, - pursuit: { - name: "Persecución", - effect: "Hace el doble de daño al objetivo que pide el relevo.", - }, - rapidSpin: { - name: "Giro Rápido", - effect: "Ataque giratorio que puede eliminar movimientos como Atadura, Constricción y Drenadoras. También aumenta la Velocidad del usuario.", - }, - sweetScent: { - name: "Dulce Aroma", - effect: "Un dulce aroma engatusa al objetivo, por lo que se reduce mucho su Evasión.", - }, - ironTail: { - name: "Cola Férrea", - effect: "Ataca con una cola férrea y puede reducir la Defensa del objetivo.", - }, - metalClaw: { - name: "Garra Metal", - effect: "Ataque con garras de acero que puede aumentar el Ataque del usuario.", - }, - vitalThrow: { - name: "Llave Vital", - effect: "El usuario ataca el último, pero no falla.", - }, - morningSun: { - name: "Sol Matinal", - effect: "Restaura PS del usuario. La cantidad varía según el tiempo que haga.", - }, - synthesis: { - name: "Síntesis", - effect: "Restaura PS del usuario. La cantidad varía según el tiempo que haga.", - }, - moonlight: { - name: "Luz Lunar", - effect: "Restaura PS del usuario. La cantidad varía según el tiempo que haga.", - }, - hiddenPower: { - name: "Poder Oculto", - effect: "Movimiento cuyo tipo varía en función del Pokémon que lo usa.", - }, - crossChop: { - name: "Tajo Cruzado", - effect: "Corte doble que suele propinar un golpe crítico.", - }, - twister: { - name: "Ciclón", - effect: "Crea un violento tornado para hacer trizas al objetivo. Puede amedrentarlo.", - }, - rainDance: { - name: "Danza Lluvia", - effect: "Genera una fuerte lluvia que refuerza los movimientos de tipo Agua durante cinco turnos y debilita los de tipo Fuego.", - }, - sunnyDay: { - name: "Día Soleado", - effect: "Hace que se intensifique el efecto del sol durante cinco turnos, lo que potencia los movimientos de tipo Fuego y debilita los de tipo Agua.", - }, - crunch: { - name: "Triturar", - effect: "Tritura con afilados colmillos y puede reducir la Defensa del objetivo.", - }, - mirrorCoat: { - name: "Manto Espejo", - effect: "Responde a un ataque especial ocasionando el doble del daño recibido.", - }, - psychUp: { - name: "Autosugestión", - effect: "El usuario se sume en un trance y copia cualquier cambio que haya en las características de su objetivo.", - }, - extremeSpeed: { - name: "Veloc. Extrema", - effect: "Ataque de una velocidad extrema. Este movimiento tiene prioridad alta.", - }, - ancientPower: { - name: "Poder Pasado", - effect: "Ataque prehistórico que puede subir todas las características.", - }, - shadowBall: { - name: "Bola Sombra", - effect: "Lanza una bola oscura que puede bajar la Defensa Especial del objetivo.", - }, - futureSight: { - name: "Premonición", - effect: "Concentra energía psíquica para golpear al objetivo dos turnos después.", - }, - rockSmash: { - name: "Golpe Roca", - effect: "Propina un gran puñetazo que puede reducir la Defensa del objetivo.", - }, - whirlpool: { - name: "Torbellino", - effect: "Una tromba de agua atrapa al objetivo durante cuatro o cinco turnos.", - }, - beatUp: { - name: "Paliza", - effect: "Ataque de todo el equipo Pokémon. Cuantos más haya, más veces se atacará.", - }, - fakeOut: { - name: "Sorpresa", - effect: "Amedrenta al objetivo con este movimiento de prioridad alta. Solo sirve en el primer turno.", - }, - uproar: { - name: "Alboroto", - effect: "Ataca de forma alborotada durante tres turnos. Mantiene despiertos a todos.", - }, - stockpile: { - name: "Reserva", - effect: "Acumula energía y sube la Defensa y la Defensa Especial. Puede utilizarse hasta tres veces.", - }, - spitUp: { - name: "Escupir", - effect: "Libera de una vez la energía acumulada con Reserva. La potencia del movimiento será proporcional a la cantidad de energía acumulada.", - }, - swallow: { - name: "Tragar", - effect: "Absorbe la energía acumulada con Reserva para recobrar salud. Cuanta más se haya acumulado, mayor será el número de PS que se recuperen.", - }, - heatWave: { - name: "Onda Ígnea", - effect: "Provoca un viento abrasador que puede quemar al objetivo.", - }, - hail: { - name: "Granizo", - effect: "Tormenta de granizo que dura cinco turnos. Hiere a todos los Pokémon excepto a los de tipo Hielo.", - }, - torment: { - name: "Tormento", - effect: "Atormenta y enfurece al objetivo, que no puede usar dos veces seguidas el mismo movimiento.", - }, - flatter: { - name: "Camelo", - effect: "Halaga al objetivo y lo confunde, pero también sube su Ataque Especial.", - }, - willOWisp: { - name: "Fuego Fatuo", - effect: "Siniestras llamas moradas que producen quemaduras.", - }, - memento: { - name: "Legado", - effect: "El usuario se debilita, pero baja mucho tanto el Ataque como el Ataque Especial del objetivo.", - }, - facade: { - name: "Imagen", - effect: "Si el usuario está quemado, paralizado o envenenado, ataca con el doble de potencia.", - }, - focusPunch: { - name: "Puño Certero", - effect: "Se concentra para dar un puñetazo. Falla si se sufre un golpe antes de su uso.", - }, - smellingSalts: { - name: "Estímulo", - effect: "Hace el doble de daño a objetivos paralizados, pero también cura la parálisis.", - }, - followMe: { - name: "Señuelo", - effect: "Llama la atención para concentrar todos los ataques de todos los del equipo rival hacia sí mismo.", - }, - naturePower: { - name: "Adaptación", - effect: "Usa el poder de la naturaleza para atacar. Su efecto varía según el entorno de combate.", - }, - charge: { - name: "Carga", - effect: "Recarga energía para potenciar el siguiente movimiento de tipo Eléctrico. También sube la Defensa Especial.", - }, - taunt: { - name: "Mofa", - effect: "Enfurece al objetivo para que solo use movimientos de ataque durante tres turnos.", - }, - helpingHand: { - name: "Refuerzo", - effect: "El usuario ayuda a un aliado reforzando la potencia de su ataque.", - }, - trick: { - name: "Truco", - effect: "Engaña al objetivo desprevenido e intercambia objetos.", - }, - rolePlay: { - name: "Imitación", - effect: "Imita al objetivo por completo y copia su habilidad.", - }, - wish: { - name: "Deseo", - effect: "Restaura en el siguiente turno la mitad de los PS máximos del usuario o se los pasa al Pokémon que lo sustituye.", - }, - assist: { - name: "Ayuda", - effect: "Usa un movimiento de un miembro del equipo elegido al azar.", - }, - ingrain: { - name: "Arraigo", - effect: "Echa raíces para recuperar PS en cada turno, pero impide el relevo.", - }, - superpower: { - name: "Fuerza Bruta", - effect: "Ataque de gran potencia, pero que reduce el Ataque y la Defensa del agresor.", - }, - magicCoat: { - name: "Capa Mágica", - effect: "Barrera capaz de devolver al agresor movimientos como Drenadoras y otros que alteran el estado o las características.", - }, - recycle: { - name: "Reciclaje", - effect: "Recicla y así recupera un objeto equipado de un solo uso que ya haya sido empleado durante el combate.", - }, - revenge: { - name: "Desquite", - effect: "Ataque que produce el doble de daño si el usuario resulta herido en el mismo turno.", - }, - brickBreak: { - name: "Demolición", - effect: "Potente ataque que también es capaz de destruir barreras como Pantalla de Luz y Reflejo.", - }, - yawn: { - name: "Bostezo", - effect: "Gran bostezo que induce el sueño en el objetivo en el siguiente turno.", - }, - knockOff: { - name: "Desarme", - effect: "Impide al objetivo usar el objeto que lleva durante el combate. La potencia del movimiento se multiplica si el objetivo lleva un objeto.", - }, - endeavor: { - name: "Esfuerzo", - effect: "Reduce los PS del objetivo para que igualen a los del atacante.", - }, - eruption: { - name: "Estallido", - effect: "Furia explosiva. Cuanto menor sea el número de PS del usuario, menos potencia tendrá el movimiento.", - }, - skillSwap: { - name: "Intercambio", - effect: "Usa el poder psíquico para intercambiar habilidades con el objetivo.", - }, - imprison: { - name: "Sellar", - effect: "Impide a los rivales usar movimientos conocidos por el usuario durante el combate.", - }, - refresh: { - name: "Alivio", - effect: "Descansa para curar parálisis, envenenamiento o quemaduras.", - }, - grudge: { - name: "Rabia", - effect: "Si el usuario se debilita al recibir un ataque, todos los PP de este último ataque serán eliminados.", - }, - snatch: { - name: "Robo", - effect: "Roba el efecto de los movimientos de curación o de cambio de características que se usen.", - }, - secretPower: { - name: "Daño Secreto", - effect: "Ataque cuyos efectos secundarios varían según el entorno de combate.", - }, - dive: { - name: "Buceo", - effect: "El usuario se sumerge en el primer turno y ataca en el segundo.", - }, - armThrust: { - name: "Empujón", - effect: "Fuertes empujones que golpean de dos a cinco veces seguidas.", - }, - camouflage: { - name: "Camuflaje", - effect: "Modifica el tipo del Pokémon según el terreno de combate donde esté.", - }, - tailGlow: { - name: "Luminicola", - effect: "Se concentra en una ráfaga de luz que sube muchísimo el Ataque Especial.", - }, - lusterPurge: { - name: "Resplandor", - effect: "Fogonazo de luz que inflige daño al objetivo y puede reducir su Defensa Especial.", - }, - mistBall: { - name: "Bola Neblina", - effect: "Bola de plumas neblinosas que inflige daño al objetivo y puede reducir su Ataque Especial.", - }, - featherDance: { - name: "Danza Pluma", - effect: "Envuelve al objetivo con un manto de plumas para reducir mucho su Ataque.", - }, - teeterDance: { - name: "Danza Caos", - effect: "Danza histérica que confunde a los Pokémon que están alrededor del usuario.", - }, - blazeKick: { - name: "Patada Ígnea", - effect: "Patada que suele ser un golpe crítico y puede causar quemaduras.", - }, - mudSport: { - name: "Chapoteo Lodo", - effect: "El usuario esparce lodo a su alrededor, lo que debilita los movimientos de tipo Eléctrico durante cinco turnos.", - }, - iceBall: { - name: "Bola Hielo", - effect: "El atacante rueda contra el objetivo durante cinco turnos, cada vez con mayor fuerza.", - }, - needleArm: { - name: "Brazo Pincho", - effect: "Pega con brazos de pinchos y puede hacer retroceder al objetivo.", - }, - slackOff: { - name: "Relajo", - effect: "El usuario se relaja y restaura la mitad de sus PS máximos.", - }, - hyperVoice: { - name: "Vozarrón", - effect: "Grito desgarrador que inflige daño al objetivo.", - }, - poisonFang: { - name: "Colmillo Veneno", - effect: "Mordedura con colmillos venenosos que inflige daño al objetivo y puede envenenarlo gravemente.", - }, - crushClaw: { - name: "Garra Brutal", - effect: "Hace trizas al objetivo con garras afiladas y puede reducir su Defensa.", - }, - blastBurn: { - name: "Anillo Ígneo", - effect: "Calcina al objetivo con una explosión de fuego. El usuario deberá descansar en el siguiente turno.", - }, - hydroCannon: { - name: "Hidrocañón", - effect: "Ataca al objetivo con un cañonazo de agua. El usuario deberá descansar en el siguiente turno.", - }, - meteorMash: { - name: "Puño Meteoro", - effect: "Puñetazo que impacta como un meteorito y puede subir el Ataque del agresor.", - }, - astonish: { - name: "Impresionar", - effect: "Lanza un grito tan tremendo que impresiona y puede amedrentar al objetivo.", - }, - weatherBall: { - name: "Meteorobola", - effect: "El tipo y fuerza del ataque varían según el tiempo que haga.", - }, - aromatherapy: { - name: "Aromaterapia", - effect: "Cura todos los problemas de estado del equipo con un suave aroma.", - }, - fakeTears: { - name: "Llanto Falso", - effect: "Lágrimas de cocodrilo que bajan mucho la Defensa Especial del objetivo.", - }, - airCutter: { - name: "Aire Afilado", - effect: "Viento cortante que azota. Suele ser un golpe crítico.", - }, - overheat: { - name: "Sofoco", - effect: "Ataque en toda regla que baja mucho el Ataque Especial de quien lo usa.", - }, - odorSleuth: { - name: "Rastreo", - effect: "Permite atacar con cualquier movimiento a objetivos de tipo Fantasma y golpear a Pokémon evasivos.", - }, - rockTomb: { - name: "Tumba Rocas", - effect: "Tira rocas que detienen al objetivo y bajan su Velocidad.", - }, - silverWind: { - name: "Viento Plata", - effect: "Fuerte viento con polvo de escamas. Puede subir todas las características de quien lo usa.", - }, - metalSound: { - name: "Eco Metálico", - effect: "Horrible chirrido metálico que reduce mucho la Defensa Especial del objetivo.", - }, - grassWhistle: { - name: "Silbato", - effect: "Agradable melodía que adormece al objetivo.", - }, - tickle: { - name: "Cosquillas", - effect: "Hace reír al objetivo para bajar su Ataque y Defensa.", - }, - cosmicPower: { - name: "Masa Cósmica", - effect: "Sube la Defensa y la Defensa Especial propias con energía mística.", - }, - waterSpout: { - name: "Salpicar", - effect: "Chorro de agua. Cuantos menos PS tenga el usuario, menos potencia tendrá el movimiento.", - }, - signalBeam: { - name: "Rayo Señal", - effect: "Ataca con un rayo de luz siniestro. Puede confundir al objetivo.", - }, - shadowPunch: { - name: "Puño Sombra", - effect: "Puñetazo procedente de las sombras que no falla nunca.", - }, - extrasensory: { - name: "Paranormal", - effect: "Emite una energía muy extraña que puede amedrentar al objetivo.", - }, - skyUppercut: { - name: "Gancho Alto", - effect: "Gancho ascendente de gran ímpetu.", - }, - sandTomb: { - name: "Bucle Arena", - effect: "Enreda al objetivo en un remolino de arena de cuatro a cinco turnos.", - }, - sheerCold: { - name: "Frío Polar", - effect: "Debilita al objetivo de un solo golpe. Si lo usa un Pokémon que no sea de tipo Hielo, es difícil que acierte.", - }, - muddyWater: { - name: "Agua Lodosa", - effect: "Ataque con agua lodosa que puede reducir la Precisión del objetivo.", - }, - bulletSeed: { - name: "Semilladora", - effect: "Dispara rápido de dos a cinco ráfagas de semillas de manera consecutiva.", - }, - aerialAce: { - name: "Golpe Aéreo", - effect: "Desconcierta al objetivo con movimientos muy rápidos antes de cercenarlo. No falla nunca.", - }, - icicleSpear: { - name: "Carámbano", - effect: "Ataca lanzando de dos a cinco ráfagas consecutivas de carámbanos.", - }, - ironDefense: { - name: "Defensa Férrea", - effect: "Fortalece el cuerpo como si fuera de hierro y sube mucho la Defensa.", - }, - block: { - name: "Bloqueo", - effect: "Le corta el paso al objetivo para que no pueda escapar.", - }, - howl: { - name: "Aullido", - effect: "Aullido que sube el ánimo y aumenta el Ataque del equipo.", - }, - dragonClaw: { - name: "Garra Dragón", - effect: "Araña al objetivo con garras afiladas.", - }, - frenzyPlant: { - name: "Planta Feroz", - effect: "Golpea con una enorme planta. El usuario deberá descansar en el siguiente turno.", - }, - bulkUp: { - name: "Corpulencia", - effect: "Robustece el cuerpo para subir el Ataque y la Defensa.", - }, - bounce: { - name: "Bote", - effect: "El usuario bota en el primer turno y golpea al objetivo en el segundo y puede llegar a paralizarlo.", - }, - mudShot: { - name: "Disparo Lodo", - effect: "El usuario ataca lanzando una bola de lodo al objetivo que también reduce su Velocidad.", - }, - poisonTail: { - name: "Cola Veneno", - effect: "Puede envenenar y dar un golpe crítico.", - }, - covet: { - name: "Antojo", - effect: "Se acerca con ternura al objetivo y tiene un 30% de posibilidades de robar el objeto que lleve.", - }, - voltTackle: { - name: "Placaje Eléc", - effect: "Quien lo usa electrifica su cuerpo para luego atacar. Se hiere mucho a sí mismo, pero puede paralizar al objetivo.", - }, - magicalLeaf: { - name: "Hoja Mágica", - effect: "Esparce extrañas hojas que persiguen al objetivo. No falla nunca.", - }, - waterSport: { - name: "Hidrochorro", - effect: "El usuario se empapa en agua, lo que debilita los movimientos de tipo Fuego durante cinco turnos.", - }, - calmMind: { - name: "Paz Mental", - effect: "Aumenta la concentración y calma el espíritu para subir el Ataque Especial y la Defensa Especial.", - }, - leafBlade: { - name: "Hoja Aguda", - effect: "Acuchilla con una hoja fina. Suele dar un golpe crítico.", - }, - dragonDance: { - name: "Danza Dragón", - effect: "Danza mística que sube el Ataque y la Velocidad.", - }, - rockBlast: { - name: "Pedrada", - effect: "Lanza pedruscos al objetivo de dos a cinco veces consecutivas.", - }, - shockWave: { - name: "Onda Voltio", - effect: "Ataque eléctrico muy rápido que no falla nunca.", - }, - waterPulse: { - name: "Hidropulso", - effect: "Ataca con una potente onda de agua. Puede confundir al objetivo.", - }, - doomDesire: { - name: "Deseo Oculto", - effect: "Ataca al objetivo con innumerables haces de luz dos turnos después de haber usado el movimiento.", - }, - psychoBoost: { - name: "Psicoataque", - effect: "Ataque en toda regla que baja mucho el Ataque Especial de quien lo usa.", - }, - roost: { - name: "Respiro", - effect: "Aterriza sobre la superficie para descansar. Recupera hasta la mitad del total de sus PS.", - }, - gravity: { - name: "Gravedad", - effect: "Durante cinco turnos, se anulan los movimientos que alzan el vuelo y los Pokémon de tipo Volador o que levitan son vulnerables a movimientos de tipo Tierra.", - }, - miracleEye: { - name: "Gran Ojo", - effect: "Permite atacar con cualquier movimiento a objetivos de tipo Siniestro y golpear a Pokémon evasivos.", - }, - wakeUpSlap: { - name: "Espabila", - effect: "Inflige gran daño a objetivos dormidos. Sin embargo, los bofetones también los despiertan.", - }, - hammerArm: { - name: "Machada", - effect: "Un terrible puño golpea al contrincante, pero la Velocidad del usuario se ve reducida.", - }, - gyroBall: { - name: "Giro Bola", - effect: "Embiste al objetivo con un potente ataque giratorio. Cuanto más lento es el usuario, más daño causa.", - }, - healingWish: { - name: "Deseo Cura", - effect: "El usuario se debilita, pero cura los problemas de estado del Pokémon que lo sustituye y restaura sus PS.", - }, - brine: { - name: "Salmuera", - effect: "Si al objetivo le queda la mitad o menos de sus PS, el ataque será el doble de fuerte.", - }, - naturalGift: { - name: "Don Natural", - effect: "La baya que lleva presta su fuerza para atacar. El tipo de ataque y su fuerza dependen de la baya.", - }, - feint: { - name: "Amago", - effect: "Permite golpear a objetivos que han utilizado movimientos como Protección o Detección y anula sus efectos.", - }, - pluck: { - name: "Picoteo", - effect: "Picotea al objetivo. Si este sostiene una baya, la picotea también y obtiene sus efectos.", - }, - tailwind: { - name: "Viento Afín", - effect: "Crea un fuerte remolino que aumenta la Velocidad de los Pokémon de tu equipo durante cuatro turnos.", - }, - acupressure: { - name: "Acupresión", - effect: "Aplica presión en puntos clave del cuerpo para aumentar mucho una característica al azar.", - }, - metalBurst: { - name: "Represión Metal", - effect: "Devuelve al rival el último ataque recibido, pero con mucha más fuerza.", - }, - uTurn: { - name: "Ida y Vuelta", - effect: "Tras atacar, el usuario da paso a toda prisa a otro Pokémon del equipo.", - }, - closeCombat: { - name: "A Bocajarro", - effect: "Lucha abiertamente contra el objetivo sin protegerse. También reduce la Defensa y la Defensa Especial del usuario.", - }, - payback: { - name: "Vendetta", - effect: "El usuario contraataca con el doble de fuerza si el objetivo usa un movimiento antes.", - }, - assurance: { - name: "Buena Baza", - effect: "Si el objetivo ya ha sufrido daño en ese turno, la fuerza del ataque se duplica.", - }, - embargo: { - name: "Embargo", - effect: "Impide al objetivo usar el objeto que lleva durante cinco turnos. Su Entrenador tampoco puede usar objetos con él.", - }, - fling: { - name: "Lanzamiento", - effect: "El usuario lanza contra el objetivo el objeto que lleva. La potencia del movimiento y su efecto varían según el objeto.", - }, - psychoShift: { - name: "Psicocambio", - effect: "Usa su poder mental para transferir al objetivo sus problemas de estado.", - }, - trumpCard: { - name: "As Oculto", - effect: "Cuantos menos PP tenga el movimiento, mayor será la fuerza para atacar.", - }, - healBlock: { - name: "Anticura", - effect: "Impide al objetivo usar movimientos, habilidades y objetos equipados que recuperan PS durante cinco turnos.", - }, - wringOut: { - name: "Estrujón", - effect: "Estruja con fuerza al objetivo. Cuantos más PS tenga el objetivo, más fuerza tendrá el ataque.", - }, - powerTrick: { - name: "Truco Fuerza", - effect: "El usuario emplea su poder mental para intercambiar su Ataque y su Defensa.", - }, - gastroAcid: { - name: "Bilis", - effect: "El usuario arroja sus jugos biliares al objetivo, lo que anula el efecto de la habilidad en uso.", - }, - luckyChant: { - name: "Conjuro", - effect: "Lanza al cielo un conjuro que protege a todo su equipo de golpes críticos.", - }, - meFirst: { - name: "Yo Primero", - effect: "Se adelanta al movimiento que pretende usar el objetivo y lo lanza antes con más fuerza. Si el usuario es más lento, falla.", - }, - copycat: { - name: "Copión", - effect: "Imita el movimiento usado justo antes. El movimiento falla si no se ha usado aún ninguno.", - }, - powerSwap: { - name: "Cambiafuerza", - effect: "El usuario emplea su poder mental para intercambiar los cambios en el Ataque y el Ataque Especial con el objetivo.", - }, - guardSwap: { - name: "Cambiadefensa", - effect: "El usuario emplea su poder mental para intercambiar los cambios en la Defensa y la Defensa Especial con el objetivo.", - }, - punishment: { - name: "Castigo", - effect: "La fuerza del ataque aumenta cuanto más se ha fortalecido el objetivo con cambios de características.", - }, - lastResort: { - name: "Última Baza", - effect: "Este movimiento solo puede utilizarse tras haber usado al menos una vez todos los demás conocidos por el Pokémon.", - }, - worrySeed: { - name: "Abatidoras", - effect: "Planta una semilla en el objetivo que le causa pesar. Sustituye la habilidad del objetivo por Insomnio y le impide dormirse.", - }, - suckerPunch: { - name: "Golpe Bajo", - effect: "Permite atacar con prioridad. Falla si el objetivo no está preparando ningún ataque.", - }, - toxicSpikes: { - name: "Púas Tóxicas", - effect: "Lanza una trampa de púas tóxicas a los pies del objetivo que envenena a los rivales que entran en combate.", - }, - heartSwap: { - name: "Cambiaalmas", - effect: "Usa la fuerza mental para intercambiar con el objetivo los cambios en las características.", - }, - aquaRing: { - name: "Acua Aro", - effect: "El usuario se cubre con un manto de agua. Recupera algunos PS en cada turno.", - }, - magnetRise: { - name: "Levitón", - effect: "Levita gracias a un campo magnético generado por electricidad durante cinco turnos.", - }, - flareBlitz: { - name: "Envite Ígneo", - effect: "El Pokémon se cubre de llamas y carga contra el objetivo, aunque él también recibe daño. Puede quemar.", - }, - forcePalm: { - name: "Palmeo", - effect: "Ataca al objetivo con una onda de choque y puede llegar a paralizarlo.", - }, - auraSphere: { - name: "Esfera Aural", - effect: "Libera, desde su interior, una inmensa descarga de aura. Es infalible.", - }, - rockPolish: { - name: "Pulimento", - effect: "Reduce la resistencia puliendo su cuerpo. Aumenta mucho la Velocidad.", - }, - poisonJab: { - name: "Puya Nociva", - effect: "Pincha al objetivo con un tentáculo o brazo envenenado. Puede llegar a envenenar al objetivo.", - }, - darkPulse: { - name: "Pulso Umbrío", - effect: "Libera una horrible aura llena de malos pensamientos que puede amedrentar al objetivo.", - }, - nightSlash: { - name: "Tajo Umbrío", - effect: "Ataca al objetivo a la primera oportunidad. Suele ser crítico.", - }, - aquaTail: { - name: "Acua Cola", - effect: "Ataca agitando la cola como si fuera una ola rabiosa en una tormenta devastadora.", - }, - seedBomb: { - name: "Bomba Germen", - effect: "Lanza al objetivo una descarga de semillas explosivas desde arriba.", - }, - airSlash: { - name: "Tajo Aéreo", - effect: "Ataca con un viento afilado que incluso corta el aire. También puede amedrentar al objetivo.", - }, - xScissor: { - name: "Tijera X", - effect: "Cruza las guadañas o las garras para atacar al objetivo como si fueran unas tijeras.", - }, - bugBuzz: { - name: "Zumbido", - effect: "El usuario crea una onda sónica dañina moviendo su cuerpo que también puede disminuir la Defensa Especial del objetivo.", - }, - dragonPulse: { - name: "Pulso Dragón", - effect: "Abre mucho la boca y libera una onda de choque con la que ataca al objetivo.", - }, - dragonRush: { - name: "Carga Dragón", - effect: "Ataca de forma brutal mientras intimida al objetivo. Puede amedrentarlo.", - }, - powerGem: { - name: "Joya de Luz", - effect: "Ataca con un rayo de luz que centellea como si lo formaran miles de joyas.", - }, - drainPunch: { - name: "Puño Drenaje", - effect: "Un golpe que drena energía. El Pokémon recupera la mitad de los PS arrebatados al objetivo.", - }, - vacuumWave: { - name: "Onda Vacío", - effect: "Gira los puños y libera una onda de vacío contra el objetivo. Este movimiento tiene prioridad alta.", - }, - focusBlast: { - name: "Onda Certera", - effect: "Agudiza la concentración mental y libera su poder. Puede reducir la Defensa Especial del objetivo.", - }, - energyBall: { - name: "Energibola", - effect: "Aúna fuerzas de la naturaleza y libera su ataque. Puede reducir la Defensa Especial del objetivo.", - }, - braveBird: { - name: "Pájaro Osado", - effect: "Pliega sus alas y ataca con un vuelo rasante. El Pokémon que lo usa también resulta seriamente dañado.", - }, - earthPower: { - name: "Tierra Viva", - effect: "La tierra a los pies del objetivo erupciona violentamente. Puede reducir la Defensa Especial del objetivo.", - }, - switcheroo: { - name: "Trapicheo", - effect: "Intercambia con el objetivo los objetos que llevan tan rápido que es imposible verlo a simple vista.", - }, - gigaImpact: { - name: "Gigaimpacto", - effect: "El usuario carga contra el objetivo con toda la fuerza que tiene y descansa en el siguiente turno.", - }, - nastyPlot: { - name: "Maquinación", - effect: "Estimula su cerebro pensando en cosas malas. Aumenta mucho el Ataque Especial.", - }, - bulletPunch: { - name: "Puño Bala", - effect: "Ataca con fuertes puñetazos tan rápidos como proyectiles. Este movimiento tiene prioridad alta.", - }, - avalanche: { - name: "Alud", - effect: "Este ataque inflige el doble de daño a un objetivo que haya golpeado al usuario en ese mismo turno.", - }, - iceShard: { - name: "Esquirla Helada", - effect: "Crea esquirlas de hielo y las lanza a gran velocidad. Este movimiento tiene prioridad alta.", - }, - shadowClaw: { - name: "Garra Umbría", - effect: "Ataca con una garra afilada hecha de sombras. Suele ser crítico.", - }, - thunderFang: { - name: "Colmillo Rayo", - effect: "El usuario muerde al objetivo con colmillos electrificados y puede hacer que se amedrente o se paralice.", - }, - iceFang: { - name: "Colmillo Hielo", - effect: "El usuario muerde al objetivo con colmillos helados y puede hacer que se amedrente o se congele.", - }, - fireFang: { - name: "Colmillo Ígneo", - effect: "El usuario muerde al objetivo con colmillos en llamas y puede hacer que se amedrente o sufra quemaduras.", - }, - shadowSneak: { - name: "Sombra Vil", - effect: "Extiende su sombra y ataca al objetivo por la espalda. Este movimiento tiene prioridad alta.", - }, - mudBomb: { - name: "Bomba Fango", - effect: "Ataca lanzando una compacta bola de fango. Puede bajar la Precisión del objetivo.", - }, - psychoCut: { - name: "Psicocorte", - effect: "Ataca al objetivo con cuchillas formadas por energía psíquica. Suele ser crítico.", - }, - zenHeadbutt: { - name: "Cabezazo Zen", - effect: "Concentra su energía psíquica en la cabeza para golpear. Puede hacer que el objetivo se amedrente.", - }, - mirrorShot: { - name: "Disparo Espejo", - effect: "El usuario libera un haz de energía desde su pulido cuerpo. Puede bajar la Precisión.", - }, - flashCannon: { - name: "Foco Resplandor", - effect: "El usuario concentra toda la luz del cuerpo y la libera. Puede bajar la Defensa Especial del objetivo.", - }, - rockClimb: { - name: "Treparrocas", - effect: "Ataca con una gran embestida. Puede confundir al objetivo.", - }, - defog: { - name: "Despejar", - effect: "Potente viento que barre los efectos de movimientos como Reflejo o Pantalla de Luz usados por el objetivo. También reduce su Evasión.", - }, - trickRoom: { - name: "Espacio Raro", - effect: "Crea un espacio misterioso en el que los Pokémon lentos se mueven primero durante cinco turnos.", - }, - dracoMeteor: { - name: "Cometa Draco", - effect: "Hace que grandes cometas caigan del cielo sobre el objetivo. Baja mucho el Ataque Especial del que lo usa.", - }, - discharge: { - name: "Chispazo", - effect: "Una deslumbradora onda eléctrica afecta a los Pokémon que hay combatiendo alrededor. Puede paralizar.", - }, - lavaPlume: { - name: "Humareda", - effect: "Un infierno de llamas daña a los Pokémon adyacentes en combate. Puede causar quemaduras.", - }, - leafStorm: { - name: "Lluevehojas", - effect: "Envuelve al objetivo con una lluvia de hojas afiladas, pero reduce mucho su Ataque Especial.", - }, - powerWhip: { - name: "Latigazo", - effect: "El usuario agita violentamente sus lianas o tentáculos para golpear al objetivo.", - }, - rockWrecker: { - name: "Romperrocas", - effect: "Lanza una piedra enorme contra el objetivo. El usuario deberá descansar en el siguiente turno.", - }, - crossPoison: { - name: "Veneno X", - effect: "Tajo que puede envenenar al objetivo. Suele ser crítico.", - }, - gunkShot: { - name: "Lanzamugre", - effect: "Lanza contra el objetivo basura asquerosa y puede envenenarlo.", - }, - ironHead: { - name: "Cabeza de Hierro", - effect: "Ataca con su cabeza dura como el hierro. Puede hacer que el objetivo se amedrente.", - }, - magnetBomb: { - name: "Bomba Imán", - effect: "Lanza unas bombas de hierro que se pegan al adversario. No se puede esquivar.", - }, - stoneEdge: { - name: "Roca Afilada", - effect: "Clava piedras muy afiladas al objetivo. Suele ser crítico.", - }, - captivate: { - name: "Seducción", - effect: "Si el objetivo es del sexo opuesto, queda embelesado y baja mucho su Ataque Especial.", - }, - stealthRock: { - name: "Trampa Rocas", - effect: "Una trampa de rocas que flota en el aire y daña a los objetivos que entran en combate.", - }, - grassKnot: { - name: "Hierba Lazo", - effect: "Enreda al objetivo con hierba y lo derriba. Cuanto más pesado es el objetivo, más potencia tiene el movimiento.", - }, - chatter: { - name: "Cháchara", - effect: "Ataca con una onda de sonido muy ruidosa compuesta por palabras y confunde al objetivo.", - }, - judgment: { - name: "Sentencia", - effect: "Emite incontables haces de luz. El tipo del movimiento varía según la tabla que lleve el usuario.", - }, - bugBite: { - name: "Picadura", - effect: "Pica al objetivo. Si el objetivo lleva una baya, el usuario se la come y se beneficia de su efecto.", - }, - chargeBeam: { - name: "Rayo Carga", - effect: "Lanza un rayo eléctrico contra el objetivo. Puede subir el Ataque Especial de quien lo usa.", - }, - woodHammer: { - name: "Mazazo", - effect: "Arremete contra el objetivo con su robusto cuerpo. El usuario se hiere seriamente a sí mismo.", - }, - aquaJet: { - name: "Acua Jet", - effect: "Ataque de una rapidez espeluznante. Este movimiento tiene prioridad alta.", - }, - attackOrder: { - name: "Al Ataque", - effect: "El usuario llama a sus súbditos para que ataquen al objetivo. Suele ser crítico.", - }, - defendOrder: { - name: "A Defender", - effect: "El usuario llama a sus súbditos para que formen un escudo viviente. Sube la Defensa y la Defensa Especial.", - }, - healOrder: { - name: "Auxilio", - effect: "El usuario llama a sus súbditos para que lo curen. Recupera hasta la mitad de los PS máximos.", - }, - headSmash: { - name: "Testarazo", - effect: "El usuario arriesga su vida y lanza un cabezazo con toda su fuerza. El agresor resulta seriamente dañado.", - }, - doubleHit: { - name: "Doble Golpe", - effect: "Golpea al objetivo dos veces seguidas con la cola u otras partes de su cuerpo.", - }, - roarOfTime: { - name: "Distorsión", - effect: "Ataca al objetivo usando tal energía que el tiempo se distorsiona. El usuario deberá descansar en el siguiente turno.", - }, - spacialRend: { - name: "Corte Vacío", - effect: "Desgarra al objetivo y el espacio a su alrededor. Suele ser crítico.", - }, - lunarDance: { - name: "Danza Lunar", - effect: "El usuario se debilita, pero el Pokémon que lo sustituye recupera su estado, los PS y los PP.", - }, - crushGrip: { - name: "Agarrón", - effect: "Estruja al objetivo con gran fuerza. Cuantos más PS le queden al objetivo, más fuerte será el ataque.", - }, - magmaStorm: { - name: "Lluvia Ígnea", - effect: "El objetivo queda atrapado en una tormenta de fuego que dura de cuatro a cinco turnos.", - }, - darkVoid: { - name: "Brecha Negra", - effect: "El objetivo es enviado a un mundo de tinieblas que lo hace dormir.", - }, - seedFlare: { - name: "Fulgor Semilla", - effect: "Una onda de choque se libera del cuerpo. Puede bajar mucho la Defensa Especial del objetivo.", - }, - ominousWind: { - name: "Viento Aciago", - effect: "Produce un viento horripilante. Puede subir de golpe todas las características del usuario.", - }, - shadowForce: { - name: "Golpe Umbrío", - effect: "En el primer turno, desaparece. En el segundo, golpea al objetivo aunque se esté protegiendo.", - }, - honeClaws: { - name: "Afilagarras", - effect: "El usuario se afila las garras para aumentar su Ataque y su Precisión.", - }, - wideGuard: { - name: "Vasta Guardia", - effect: "Bloquea los ataques de objetivo múltiple lanzados contra el bando del usuario durante un turno.", - }, - guardSplit: { - name: "Isoguardia", - effect: "El usuario emplea sus poderes para hacer la media de su Defensa y su Defensa Especial con las del objetivo y compartirlas.", - }, - powerSplit: { - name: "Isofuerza", - effect: "El usuario emplea sus poderes para hacer la media de su Ataque y su Ataque Especial con los del objetivo y compartirlos.", - }, - wonderRoom: { - name: "Zona Extraña", - effect: "Crea un espacio misterioso donde se intercambian la Defensa y la Defensa Especial de todos los Pokémon durante cinco turnos.", - }, - psyshock: { - name: "Psicocarga", - effect: "Crea una onda psíquica que causa daño físico al objetivo.", - }, - venoshock: { - name: "Carga Tóxica", - effect: "Cubre al objetivo con un líquido venenoso. La potencia del movimiento se duplica si este ya está envenenado.", - }, - autotomize: { - name: "Aligerar", - effect: "El usuario se desprende de partes prescindibles de su cuerpo para hacerse más ligero y aumentar mucho su Velocidad.", - }, - ragePowder: { - name: "Polvo Ira", - effect: "Usa un polvo que enerva a los rivales y hace que centren en el usuario su atención y sus movimientos.", - }, - telekinesis: { - name: "Telequinesis", - effect: "El usuario emplea su poder mental para hacer flotar al objetivo, y lo convierte en un blanco fácil durante tres turnos.", - }, - magicRoom: { - name: "Zona Mágica", - effect: "Crea un espacio misterioso que inutiliza todos los objetos de los Pokémon durante cinco turnos.", - }, - smackDown: { - name: "Antiaéreo", - effect: "Ataca lanzando una piedra o un proyectil. Si el objetivo está en el aire, lo estrella contra el suelo.", - }, - stormThrow: { - name: "Llave Corsé", - effect: "Lanza un golpe devastador. Siempre asesta un golpe crítico.", - }, - flameBurst: { - name: "Pirotecnia", - effect: "Golpea al objetivo con una llamarada que afecta también a los Pokémon adyacentes.", - }, - sludgeWave: { - name: "Onda Tóxica", - effect: "Una onda tóxica que daña a los Pokémon de alrededor. Puede envenenar.", - }, - quiverDance: { - name: "Danza Aleteo", - effect: "Danza mística que aumenta el Ataque Especial, la Defensa Especial y la Velocidad.", - }, - heavySlam: { - name: "Cuerpo Pesado", - effect: "El usuario golpea con todo su cuerpo. Cuanto mayor sea su peso comparado con el del objetivo, mayor será la potencia del movimiento.", - }, - synchronoise: { - name: "Sincrorruido", - effect: "Una extraña onda que daña a todos los Pokémon adyacentes del mismo tipo que el que la ejecuta.", - }, - electroBall: { - name: "Bola Voltio", - effect: "Lanza una bola eléctrica. Cuanto mayor sea la Velocidad del usuario en comparación con la del objetivo, mayor será la potencia del movimiento.", - }, - soak: { - name: "Empapar", - effect: "Potente lluvia que transforma al objetivo en un Pokémon de tipo Agua.", - }, - flameCharge: { - name: "Nitrocarga", - effect: "Llamas que golpean al objetivo y aumentan la Velocidad del atacante.", - }, - coil: { - name: "Enrosque", - effect: "El usuario se concentra, lo que le permite aumentar su Ataque, Defensa y Precisión.", - }, - lowSweep: { - name: "Puntapié", - effect: "Ataque rápido dirigido a los pies del objetivo que le hace perder Velocidad.", - }, - acidSpray: { - name: "Bomba Ácida", - effect: "Ataca con un líquido corrosivo que reduce mucho la Defensa Especial del objetivo.", - }, - foulPlay: { - name: "Juego Sucio", - effect: "El usuario emplea la fuerza del objetivo para atacarlo. Cuanto mayor es el Ataque del objetivo, más daño provoca.", - }, - simpleBeam: { - name: "Onda Simple", - effect: "Lanza una onda psíquica que hace que la habilidad del objetivo pase a ser Simple.", - }, - entrainment: { - name: "Danza Amiga", - effect: "Una extraña danza que induce al objetivo a imitarla y cambia su habilidad por la misma que la del usuario.", - }, - afterYou: { - name: "Cede Paso", - effect: "Si el usuario es el más rápido, permite al objetivo usar un movimiento justo tras él, adelantándose a Pokémon más rápidos.", - }, - round: { - name: "Canon", - effect: "Un canto que ataca al objetivo. Cuantos más Pokémon lo usan, más aumenta de potencia.", - }, - echoedVoice: { - name: "Eco Voz", - effect: "Un susurro que aumenta de potencia conforme el usuario y otros Pokémon lo van utilizando.", - }, - chipAway: { - name: "Guardia Baja", - effect: "Un ataque que busca los puntos débiles del objetivo y puede causarle daño aunque cambien sus características.", - }, - clearSmog: { - name: "Niebla Clara", - effect: "Ataca al objetivo con una singular bola de lodo que elimina cualquier cambio en sus características.", - }, - storedPower: { - name: "Poder Reserva", - effect: "Acumula poder para golpear. Cuanto más suban las características del usuario, mayor será el daño.", - }, - quickGuard: { - name: "Anticipo", - effect: "Se protege a sí mismo y a sus aliados de movimientos con prioridad.", - }, - allySwitch: { - name: "Cambio de Banda", - effect: "Extraño poder que intercambia la posición del usuario con la de un aliado sobre el terreno de combate.", - }, - scald: { - name: "Escaldar", - effect: "Ataca arrojando agua hirviendo al objetivo. Puede causar quemaduras.", - }, - shellSmash: { - name: "Rompecoraza", - effect: "El usuario rompe su coraza y baja su Defensa y Defensa Especial, pero aumenta mucho su Ataque, Ataque Especial y Velocidad.", - }, - healPulse: { - name: "Pulso Cura", - effect: "Una onda curativa restaura la mitad de los PS máximos del objetivo.", - }, - hex: { - name: "Infortunio", - effect: "Ataque que causa un gran daño a los objetivos que sufren problemas de estado.", - }, - skyDrop: { - name: "Caída Libre", - effect: "Primer turno: lanza al objetivo al aire. Segundo turno: lo hace caer. Mientras está en el aire, no lo deja moverse.", - }, - shiftGear: { - name: "Cambio de Marcha", - effect: "Al hacer girar los engranajes, el usuario mejora su Ataque y aumenta mucho su Velocidad.", - }, - circleThrow: { - name: "Llave Giro", - effect: "Lanza por los aires al objetivo y hace que salga otro Pokémon. Si es uno salvaje, acaba el combate.", - }, - incinerate: { - name: "Calcinación", - effect: "Llamas que golpean al objetivo. Si este lleva una baya o ciertos objetos, se quemarán y ya no se podrán usar.", - }, - quash: { - name: "Último Lugar", - effect: "Consigue que el objetivo sea el último en moverse.", - }, - acrobatics: { - name: "Acróbata", - effect: "Golpea ágilmente. Si el usuario no porta ningún objeto, el objetivo resulta seriamente dañado.", - }, - reflectType: { - name: "Clonatipo", - effect: "Cambia el tipo del Pokémon al mismo tipo que el del objetivo.", - }, - retaliate: { - name: "Represalia", - effect: "Venga a los amigos caídos. Si en el turno anterior han derrotado a alguno, la potencia del ataque aumentará.", - }, - finalGambit: { - name: "Sacrificio", - effect: "El usuario se sacrifica causándole un daño al objetivo equivalente a sus propios PS perdidos.", - }, - bestow: { - name: "Ofrenda", - effect: "Entrega el objeto que lleva al objetivo en caso de que este no tenga ninguno.", - }, - inferno: { - name: "Infierno", - effect: "Ataca con una gran ráfaga de fuego que causa quemaduras.", - }, - waterPledge: { - name: "Voto Agua", - effect: "Ataca con columnas de agua. Combinado con Voto Fuego, crea un arcoíris y aumenta su potencia.", - }, - firePledge: { - name: "Voto Fuego", - effect: "Ataca con columnas de fuego. Combinado con Voto Planta, crea un mar de llamas y aumenta su potencia.", - }, - grassPledge: { - name: "Voto Planta", - effect: "Ataca con columnas de hojas. Combinado con Voto Agua, crea un pantano y aumenta su potencia.", - }, - voltSwitch: { - name: "Voltiocambio", - effect: "Tras atacar, el usuario da paso a toda prisa a otro Pokémon del equipo.", - }, - struggleBug: { - name: "Estoicismo", - effect: "El usuario opone resistencia y ataca a los oponentes. También reduce su Ataque Especial.", - }, - bulldoze: { - name: "Terratemblor", - effect: "Sacudida sísmica que afecta a los Pokémon adyacentes y también reduce su Velocidad.", - }, - frostBreath: { - name: "Vaho Gélido", - effect: "Quien lo usa ataca lanzando un aliento gélido. Siempre asesta un golpe crítico.", - }, - dragonTail: { - name: "Cola Dragón", - effect: "Ataca al objetivo y lo obliga a cambiarse por otro Pokémon. Si es uno salvaje, acaba el combate.", - }, - workUp: { - name: "Avivar", - effect: "Quien lo usa se concentra y potencia su Ataque y su Ataque Especial.", - }, - electroweb: { - name: "Electrotela", - effect: "Atrapa y ataca a los objetivos con una telaraña eléctrica. También reduce su Velocidad.", - }, - wildCharge: { - name: "Voltio Cruel", - effect: "Carga eléctrica muy potente que también hiere ligeramente a quien la usa.", - }, - drillRun: { - name: "Taladradora", - effect: "El usuario golpea usando su cuerpo como un taladro. Suele ser crítico.", - }, - dualChop: { - name: "Golpe Bis", - effect: "Golpea dos veces seguidas con las partes más recias de su cuerpo.", - }, - heartStamp: { - name: "Arrumaco", - effect: "El usuario despista al objetivo con gestos adorables y aprovecha la ocasión para asestarle un golpe tremendo que puede hacerlo retroceder.", - }, - hornLeech: { - name: "Asta Drenaje", - effect: "Un golpe que drena energía. El Pokémon recupera la mitad de los PS arrebatados al objetivo.", - }, - sacredSword: { - name: "Espada Santa", - effect: "El usuario ataca con una espada, ignorando cualquier cambio en las características del objetivo.", - }, - razorShell: { - name: "Concha Filo", - effect: "Una afilada vieira ataca al objetivo. También puede hacer disminuir su Defensa.", - }, - heatCrash: { - name: "Golpe Calor", - effect: "El usuario ataca con su cuerpo ardiente. Cuanto mayor sea su peso comparado con el del objetivo, más daño causará.", - }, - leafTornado: { - name: "Ciclón de Hojas", - effect: "Tritura con afiladas hojas y puede bajar la Precisión del objetivo.", - }, - steamroller: { - name: "Rodillo de Púas", - effect: "El usuario se hace una bola y arrolla al objetivo con su cuerpo. Puede hacerlo retroceder.", - }, - cottonGuard: { - name: "Rizo Algodón", - effect: "Cubre al Pokémon con una madeja protectora. Aumenta muchísimo la Defensa.", - }, - nightDaze: { - name: "Pulso Noche", - effect: "Ataca al objetivo con una onda siniestra. Puede bajar su Precisión.", - }, - psystrike: { - name: "Onda Mental", - effect: "Crea una onda psíquica que causa daño físico al objetivo.", - }, - tailSlap: { - name: "Plumerazo", - effect: "Golpea con la cola de dos a cinco veces seguidas.", - }, - hurricane: { - name: "Vendaval", - effect: "Golpea al objetivo con un fuerte torbellino que envuelve al rival y puede confundirlo.", - }, - headCharge: { - name: "Ariete", - effect: "Propina un tremendo cabezazo. También daña al usuario un poco.", - }, - gearGrind: { - name: "Rueda Doble", - effect: "Rota dos engranajes de hierro sobre el objetivo. Golpea dos veces.", - }, - searingShot: { - name: "Bomba Ígnea", - effect: "Un infierno de llamas daña a los Pokémon adyacentes en combate. Puede causar quemaduras.", - }, - technoBlast: { - name: "Tecno Shock", - effect: "Ataca al objetivo con un gran láser. El tipo del ataque lo determina el cartucho que porta el usuario.", - }, - relicSong: { - name: "Canto Arcaico", - effect: "Ataca conmoviendo al objetivo con un antiguo canto. Puede dormirlo.", - }, - secretSword: { - name: "Sable Místico", - effect: "Ensarta al objetivo con un largo cuerno dotado de un poder místico que provoca daño físico.", - }, - glaciate: { - name: "Mundo Gélido", - effect: "Ataque con aire helado que baja la Velocidad del objetivo.", - }, - boltStrike: { - name: "Ataque Fulgor", - effect: "Ataca envolviéndose de una gran carga eléctrica y embistiendo al objetivo con ella. Puede paralizar.", - }, - blueFlare: { - name: "Llama Azul", - effect: "Ataca con una bella pero potente llama azul que rodea al objetivo. Puede causar quemaduras.", - }, - fieryDance: { - name: "Danza Llama", - effect: "Envuelve en llamas y daña al objetivo. Puede aumentar el Ataque Especial de quien lo usa.", - }, - freezeShock: { - name: "Rayo Gélido", - effect: "El usuario carga un bloque de hielo con electricidad en el primer turno y ataca con él en el segundo. Puede paralizar.", - }, - iceBurn: { - name: "Llama Gélida", - effect: "Ataca al objetivo en el segundo turno rodeándolo de un aire gélido. Puede causar quemaduras.", - }, - snarl: { - name: "Alarido", - effect: "Chillido desagradable que reduce el Ataque Especial del objetivo.", - }, - icicleCrash: { - name: "Chuzos", - effect: "Lanza grandes carámbanos. Puede amedrentar al objetivo.", - }, - vCreate: { - name: "V de Fuego", - effect: "Golpea con una V de llamas al objetivo. Baja la Defensa, la Defensa Especial y la Velocidad de quien lo usa.", - }, - fusionFlare: { - name: "Llama Fusión", - effect: "Ataca con una llamarada gigantesca. Aumenta su potencia si es influenciada por una gran energía eléctrica.", - }, - fusionBolt: { - name: "Rayo Fusión", - effect: "Ataca con una enorme descarga eléctrica. Aumenta su potencia si es influenciada por una gigantesca llamarada.", - }, - flyingPress: { - name: "Plancha Voladora", - effect: "El usuario se lanza sobre su objetivo. Este movimiento es de tipo Lucha y tipo Volador al mismo tiempo.", - }, - matBlock: { - name: "Escudo Tatami", - effect: "El usuario usa un tatami para escudarse de los ataques enemigos. Protege también a los aliados. No funciona contra movimientos de estado.", - }, - belch: { - name: "Eructo", - effect: "El usuario causa daño a su objetivo lanzándole un eructo. Para poder utilizar este movimiento, tiene que haberse comido una baya equipada.", - }, - rototiller: { - name: "Fertilizante", - effect: "Labra la tierra haciendo que sea más fácil cultivarla y consigue que aumente el Ataque y el Ataque Especial de los Pokémon de tipo Planta.", - }, - stickyWeb: { - name: "Red Viscosa", - effect: "Coloca una red pegajosa alrededor del objetivo que reduce la Velocidad de los rivales que entran en combate.", - }, - fellStinger: { - name: "Aguijón Letal", - effect: "Si se derrota al objetivo utilizando este movimiento, aumenta muchísimo el Ataque del usuario.", - }, - phantomForce: { - name: "Golpe Fantasma", - effect: "El usuario desaparece en el primer turno y ataca a su objetivo en el segundo. Permite acertar aunque el objetivo esté protegiéndose.", - }, - trickOrTreat: { - name: "Halloween", - effect: "Invita al objetivo a celebrar Halloween, lo que añade el tipo Fantasma a los tipos de este.", - }, - nobleRoar: { - name: "Rugido de Guerra", - effect: "Intimida a su oponente con un rugido de guerra, lo que hace que disminuyan tanto su Ataque como su Ataque Especial.", - }, - ionDeluge: { - name: "Cortina Plasma", - effect: "El Pokémon disemina partículas con carga eléctrica que convierten los movimientos de tipo Normal en tipo Eléctrico.", - }, - parabolicCharge: { - name: "Carga Parábola", - effect: "Inflige daño a los Pokémon adyacentes. El usuario absorbe la mitad del daño producido para restaurar sus propios PS.", - }, - forestsCurse: { - name: "Condena Silvana", - effect: "El objetivo es presa de la maldición del bosque, por lo que pasa a ser un Pokémon de tipo Planta, además de conservar sus tipos habituales.", - }, - petalBlizzard: { - name: "Tormenta Floral", - effect: "El usuario desata un intenso vendaval de pétalos que daña a los Pokémon a su alrededor.", - }, - freezeDry: { - name: "Liofilización", - effect: "Enfría súbitamente al objetivo e incluso puede congelarlo. Es supereficaz contra Pokémon de tipo Agua.", - }, - disarmingVoice: { - name: "Voz Cautivadora", - effect: "Obnubila al objetivo con su fascinante voz y le provoca daños emocionales. No falla nunca.", - }, - partingShot: { - name: "Última Palabra", - effect: "El usuario se cambia por otro Pokémon de su equipo, pero antes amedrenta a su oponente y hace que disminuyan su Ataque y Ataque Especial.", - }, - topsyTurvy: { - name: "Reversión", - effect: "Invierte por completo los cambios en las características del objetivo.", - }, - drainingKiss: { - name: "Beso Drenaje", - effect: "El usuario absorbe PS del objetivo con un beso y restaura su propia energía en una cantidad igual o superior a la mitad del daño infligido.", - }, - craftyShield: { - name: "Truco Defensa", - effect: "Usa unos misteriosos poderes para protegerse a sí mismo y a sus aliados de movimientos de estado, pero no de otro tipo de ataques.", - }, - flowerShield: { - name: "Defensa Floral", - effect: "Aumenta la Defensa de todos los Pokémon de tipo Planta que hay en el combate usando unos misteriosos poderes.", - }, - grassyTerrain: { - name: "Campo de Hierba", - effect: "Durante cinco turnos, se potencian los movimientos de tipo Planta y los Pokémon que están en contacto con el suelo recuperan PS en cada turno.", - }, - mistyTerrain: { - name: "Campo de Niebla", - effect: "Durante cinco turnos, los Pokémon que están en el suelo no sufren problemas de estado y se reduce a la mitad el daño de los movimientos de tipo Dragón.", - }, - electrify: { - name: "Electrificación", - effect: "Si el objetivo queda electrificado antes de usar un movimiento, este será de tipo Eléctrico.", - }, - playRough: { - name: "Carantoña", - effect: "El Pokémon que lo usa le hace cucamonas al objetivo y lo ataca. Puede disminuir el Ataque del objetivo.", - }, - fairyWind: { - name: "Viento Feérico", - effect: "El Pokémon que lo usa desata un vendaval feérico que arremete contra el objetivo.", - }, - moonblast: { - name: "Fuerza Lunar", - effect: "Invoca el poder de la luna para atacar al objetivo. Puede reducir su Ataque Especial.", - }, - boomburst: { - name: "Estruendo", - effect: "Ataca a todos los Pokémon a su alrededor con una potentísima onda sonora.", - }, - fairyLock: { - name: "Cerrojo Feérico", - effect: "Consigue que ningún Pokémon pueda huir ni ser cambiado por otro en el siguiente turno echando un cerrojo.", - }, - kingsShield: { - name: "Escudo Real", - effect: "El usuario adopta una postura defensiva y se protege de cualquier daño. Reduce el Ataque de cualquier Pokémon con el que entre en contacto.", - }, - playNice: { - name: "Camaradería", - effect: "Se hace amigo de su objetivo y consigue que a este se le quiten las ganas de combatir, lo que reduce su Ataque.", - }, - confide: { - name: "Confidencia", - effect: "Hace que el objetivo pierda la concentración contándole un secreto y reduce su Ataque Especial.", - }, - diamondStorm: { - name: "Torm. Diamantes", - effect: "Desata un devastador vendaval de diamantes para dañar a los oponentes. Puede aumentar mucho la Defensa del usuario.", - }, - steamEruption: { - name: "Chorro de Vapor", - effect: "Envuelve al objetivo con vapor extremadamente caliente que puede causar quemaduras.", - }, - hyperspaceHole: { - name: "Paso Dimensional", - effect: "El usuario aparece junto al rival usando un agujero dimensional y le asesta un golpe que movimientos como Protección o Detección no pueden evitar.", - }, - waterShuriken: { - name: "Shuriken de Agua", - effect: "Golpea al objetivo de dos a cinco veces seguidas con estrellas arrojadizas hechas de mucosidad. Este movimiento tiene prioridad alta.", - }, - mysticalFire: { - name: "Llama Embrujada", - effect: "El usuario lanza por la boca una singular llama a gran temperatura con la que ataca a su objetivo y reduce su Ataque Especial.", - }, - spikyShield: { - name: "Barrera Espinosa", - effect: "Protege al usuario de ataques e inflige daño a quien se los lance si entra en contacto con él.", - }, - aromaticMist: { - name: "Niebla Aromática", - effect: "Consigue aumentar la Defensa Especial de un Pokémon de su equipo con una fragancia misteriosa.", - }, - eerieImpulse: { - name: "Onda Anómala", - effect: "El usuario irradia unas raras ondas que, al alcanzar al objetivo, reducen mucho su Ataque Especial.", - }, - venomDrench: { - name: "Trampa Venenosa", - effect: "Impregna a su objetivo con un líquido venenoso que disminuye el Ataque, el Ataque Especial y la Velocidad. Solo afecta a Pokémon ya envenenados.", - }, - powder: { - name: "Polvo Explosivo", - effect: "Esparce un polvo sobre el objetivo. Si este usa un movimiento de tipo Fuego en el mismo turno, el polvo explota y le inflige daño.", - }, - geomancy: { - name: "Geocontrol", - effect: "Concentra energía durante el primer turno, de forma que su Velocidad, Ataque Especial y Defensa Especial aumenten mucho en el segundo.", - }, - magneticFlux: { - name: "Aura Magnética", - effect: "Manipula el campo magnético y logra aumentar la Defensa y la Defensa Especial de los Pokémon aliados que cuenten con las habilidades Más y Menos.", - }, - happyHour: { - name: "Paga Extra", - effect: "Al usar este movimiento, se duplica el dinero recibido tras el combate.", - }, - electricTerrain: { - name: "Campo Eléctrico", - effect: "Durante cinco turnos, se potencian los movimientos de tipo Eléctrico y los Pokémon que están en contacto con el suelo no pueden quedarse dormidos.", - }, - dazzlingGleam: { - name: "Brillo Mágico", - effect: "Inflige daño al objetivo con una potente luz.", - }, - celebrate: { - name: "Celebración", - effect: "El Pokémon te felicita en un día muy especial para ti.", - }, - holdHands: { - name: "Manos Juntas", - effect: "El usuario le da la mano a un aliado y ambos se sienten muy felices.", - }, - babyDollEyes: { - name: "Ojitos Tiernos", - effect: "Lanza una mirada al objetivo con ojos acaramelados, con lo que logra que su Ataque se reduzca. Este movimiento tiene prioridad alta.", - }, - nuzzle: { - name: "Moflete Estático", - effect: "El usuario frota sus mofletes cargados de electricidad contra el objetivo y consigue paralizarlo.", - }, - holdBack: { - name: "Clemencia", - effect: "El usuario se contiene a la hora de atacar y deja al objetivo con al menos 1 PS.", - }, - infestation: { - name: "Acoso", - effect: "Hostiga al objetivo durante cuatro o cinco turnos e impide que pueda huir o ser cambiado por otro mientras tanto.", - }, - powerUpPunch: { - name: "Puño Incremento", - effect: "Cada vez que golpea a un oponente se endurecen sus puños. Si acierta al objetivo, el Ataque del usuario aumenta.", - }, - oblivionWing: { - name: "Ala Mortífera", - effect: "El usuario absorbe energía del objetivo y aumenta sus PS en una cantidad igual o superior a la mitad del daño infligido.", - }, - thousandArrows: { - name: "Mil Flechas", - effect: "Acierta incluso a Pokémon que estén en el aire y los hace caer al suelo.", - }, - thousandWaves: { - name: "Mil Temblores", - effect: "El usuario genera ondas sísmicas que se propagan por el suelo y sacuden al objetivo. Los Pokémon alcanzados no podrán huir del combate ni ser cambiados por otros.", - }, - landsWrath: { - name: "Fuerza Telúrica", - effect: "Acumula energía de la corteza terrestre y la concentra contra los oponentes, dañándolos.", - }, - lightOfRuin: { - name: "Luz Aniquiladora", - effect: "El usuario emplea el poder de la Flor Eterna para lanzar un potente rayo de luz, pero sufre bastante daño al hacerlo.", - }, - originPulse: { - name: "Pulso Primigenio", - effect: "Ataca al objetivo con una infinidad de rayos de luz azulada.", - }, - precipiceBlades: { - name: "Filo del Abismo", - effect: "Hace que el poder latente de la tierra se manifieste en forma de hojas afiladas y ataca al objetivo con ellas.", - }, - dragonAscent: { - name: "Ascenso Draco", - effect: "El usuario se precipita desde el cielo a una velocidad de vértigo para atacar al objetivo, pero hace que bajen la Defensa y la Defensa Especial del usuario.", - }, - hyperspaceFury: { - name: "Cerco Dimensión", - effect: "Ataca al objetivo con una ráfaga de golpes que pasan por alto los efectos de movimientos como Protección o Detección. Baja la Defensa del usuario.", - }, - breakneckBlitzPhysical: { - name: "Carrera Arrolladora", - effect: "El usuario emplea el Poder Z para coger carrerilla y arremeter contra el objetivo con gran fuerza. Su potencia depende de la del movimiento original.", - }, - breakneckBlitzSpecial: { - name: "Carrera Arrolladora", - effect: "Dummy data", - }, - allOutPummelingPhysical: { - name: "Ráfaga Demoledora", - effect: "Emplea el Poder Z para lanzar una sarta de golpes demoledores contra el objetivo. Su potencia depende de la del movimiento original.", - }, - allOutPummelingSpecial: { - name: "Ráfaga Demoledora", - effect: "Dummy data", - }, - supersonicSkystrikePhysical: { - name: "Picado Supersónico", - effect: "El usuario emplea el Poder Z para volar muy alto y abalanzarse en picado sobre el objetivo. Su potencia depende de la del movimiento original.", - }, - supersonicSkystrikeSpecial: { - name: "Picado Supersónico", - effect: "Dummy data", - }, - acidDownpourPhysical: { - name: "Diluvio Corrosivo", - effect: "El usuario emplea el Poder Z para crear una ciénaga venenosa en la que sumerge al objetivo. Su potencia depende de la del movimiento original.", - }, - acidDownpourSpecial: { - name: "Diluvio Corrosivo", - effect: "Dummy data", - }, - tectonicRagePhysical: { - name: "Barrena Telúrica", - effect: "Emplea el Poder Z para abrir una profunda grieta en el suelo que se traga al oponente. Su potencia depende de la del movimiento original.", - }, - tectonicRageSpecial: { - name: "Barrena Telúrica", - effect: "Dummy data", - }, - continentalCrushPhysical: { - name: "Aplastamiento Gigalítico", - effect: "El usuario emplea el Poder Z para crear una montaña rocosa con la que aplasta al objetivo. Su potencia depende de la del movimiento original.", - }, - continentalCrushSpecial: { - name: "Aplastamiento Gigalítico", - effect: "Dummy data", - }, - savageSpinOutPhysical: { - name: "Guadaña Sedosa", - effect: "Emplea el Poder Z para encerrar a su oponente en un capullo contra el que arremete con fuerza. Su potencia depende de la del movimiento original.", - }, - savageSpinOutSpecial: { - name: "Guadaña Sedosa", - effect: "Dummy data", - }, - neverEndingNightmarePhysical: { - name: "Presa Espectral", - effect: "El usuario emplea el Poder Z para invocar a unos espectros encolerizados que apresan al objetivo. Su potencia depende de la del movimiento original.", - }, - neverEndingNightmareSpecial: { - name: "Presa Espectral", - effect: "Dummy data", - }, - corkscrewCrashPhysical: { - name: "Hélice Trepanadora", - effect: "El usuario emplea el Poder Z para girar a toda velocidad y perforar al objetivo. Su potencia depende de la del movimiento original.", - }, - corkscrewCrashSpecial: { - name: "Hélice Trepanadora", - effect: "Dummy data", - }, - infernoOverdrivePhysical: { - name: "Hecatombe Pírica", - effect: "El usuario emplea el Poder Z para lanzar una enorme llamarada con la que calcina a su objetivo. Su potencia depende de la del movimiento original.", - }, - infernoOverdriveSpecial: { - name: "Hecatombe Pírica", - effect: "Dummy data", - }, - hydroVortexPhysical: { - name: "Hidrovórtice Abisal", - effect: "El usuario emplea el Poder Z para crear un potente torbellino de agua que engulle al objetivo. Su potencia depende de la del movimiento original.", - }, - hydroVortexSpecial: { - name: "Hidrovórtice Abisal", - effect: "Dummy data", - }, - bloomDoomPhysical: { - name: "Megatón Floral", - effect: "Emplea el Poder Z para concentrar la energía de la vegetación que lo rodea y atacar al objetivo. Su potencia depende de la del movimiento original.", - }, - bloomDoomSpecial: { - name: "Megatón Floral", - effect: "Dummy data", - }, - gigavoltHavocPhysical: { - name: "Gigavoltio Destructor", - effect: "El usuario emplea el Poder Z para generar una fuerte descarga eléctrica con la que electrocuta al objetivo. Su potencia depende de la del movimiento original.", - }, - gigavoltHavocSpecial: { - name: "Gigavoltio Destructor", - effect: "Dummy data", - }, - shatteredPsychePhysical: { - name: "Disruptor Psíquico", - effect: "Emplea el Poder Z para manipular la mente del objetivo, infligiéndole un daño ingente. Su potencia depende de la del movimiento original.", - }, - shatteredPsycheSpecial: { - name: "Disruptor Psíquico", - effect: "Dummy data", - }, - subzeroSlammerPhysical: { - name: "Crioaliento Despiadado", - effect: "Emplea el Poder Z para lanzar un rayo de hielo que baja la temperatura de golpe y congela al objetivo. Su potencia depende de la del movimiento original.", - }, - subzeroSlammerSpecial: { - name: "Crioaliento Despiadado", - effect: "Dummy data", - }, - devastatingDrakePhysical: { - name: "Dracoaliento Devastador", - effect: "El usuario emplea el Poder Z para materializar su aura y golpear al objetivo. Su potencia depende de la del movimiento original.", - }, - devastatingDrakeSpecial: { - name: "Dracoaliento Devastador", - effect: "Dummy data", - }, - blackHoleEclipsePhysical: { - name: "Agujero Negro Aniquilador", - effect: "El usuario emplea el Poder Z para generar un agujero negro que absorbe al objetivo. Su potencia depende de la del movimiento original.", - }, - blackHoleEclipseSpecial: { - name: "Agujero Negro Aniquilador", - effect: "Dummy data", - }, - twinkleTacklePhysical: { - name: "Arrumaco Sideral", - effect: "El usuario emplea el Poder Z para crear una dimensión fascinante que deja al rival a su merced. Su potencia depende de la del movimiento original.", - }, - twinkleTackleSpecial: { - name: "Arrumaco Sideral", - effect: "Dummy data", - }, - catastropika: { - name: "Pikavoltio Letal", - effect: "Pikachu emplea el Poder Z para acumular una gran cantidad de electricidad en su cuerpo y arremeter contra el objetivo.", - }, - shoreUp: { - name: "Recogearena", - effect: "Restaura la mitad de los PS máximos del usuario. Durante las tormentas de arena, restaura aún más PS.", - }, - firstImpression: { - name: "Escaramuza", - effect: "Movimiento de gran potencia que solo puede usarse en el turno en que el usuario sale al combate.", - }, - banefulBunker: { - name: "Búnker", - effect: "Protege de los ataques y, al mismo tiempo, envenena al Pokémon que use un movimiento de contacto contra el usuario.", - }, - spiritShackle: { - name: "Puntada Sombría", - effect: "Ataca al oponente y, al mismo tiempo, fija su sombra al terreno para impedir su huida.", - }, - darkestLariat: { - name: "Lariat Oscuro", - effect: "Gira sobre sí mismo y golpea al oponente con ambos brazos. Ignora los cambios en las características del objetivo.", - }, - sparklingAria: { - name: "Aria Burbuja", - effect: "Libera burbujas al cantar. Este movimiento cura las quemaduras de los Pokémon que reciban daño.", - }, - iceHammer: { - name: "Martillo Hielo", - effect: "Un terrible puño golpea al contrincante, pero la Velocidad del usuario se ve reducida.", - }, - floralHealing: { - name: "Cura Floral", - effect: "Restaura la mitad de los PS máximos del objetivo. Es más efectivo cuando se usa en conjunción con Campo de Hierba.", - }, - highHorsepower: { - name: "Fuerza Equina", - effect: "Asesta un golpe devastador usando todo su cuerpo.", - }, - strengthSap: { - name: "Absorbefuerza", - effect: "Restaura una cantidad de PS equivalente al valor de Ataque del rival, que además verá reducida esta característica.", - }, - solarBlade: { - name: "Cuchilla Solar", - effect: "El usuario dedica un turno a absorber energía lumínica y concentrarla en forma de cuchilla con la que ataca al rival en el siguiente turno.", - }, - leafage: { - name: "Follaje", - effect: "Ataca al objetivo lanzando hojas.", - }, - spotlight: { - name: "Foco", - effect: "Convierte a uno de los Pokémon que están combatiendo en el foco de atención, de modo que todos los ataques se dirijan hacia él.", - }, - toxicThread: { - name: "Hilo Venenoso", - effect: "Ataca al objetivo con hilillos venenosos que reducen su Velocidad y lo envenenan.", - }, - laserFocus: { - name: "Aguzar", - effect: "El usuario se concentra para que el siguiente ataque propine un golpe crítico.", - }, - gearUp: { - name: "Piñón Auxiliar", - effect: "Cambia de marcha y logra aumentar el Ataque y el Ataque Especial de los Pokémon aliados que cuenten con las habilidades Más y Menos.", - }, - throatChop: { - name: "Golpe Mordaza", - effect: "Inflige al rival un dolor tan abrumador que le impide utilizar durante dos turnos ataques que se sirven del sonido.", - }, - pollenPuff: { - name: "Bola de Polen", - effect: "Ataca al objetivo con una bola explosiva. Si esta alcanza a un aliado, le hará recuperar PS.", - }, - anchorShot: { - name: "Anclaje", - effect: "Ataca lanzando un ancla al objetivo, que queda atrapado y no puede huir ni ser cambiado por otro.", - }, - psychicTerrain: { - name: "Campo Psíquico", - effect: "Durante cinco turnos, se potencian los movimientos de tipo Psíquico y los Pokémon que están en el suelo quedan protegidos contra movimientos con prioridad.", - }, - lunge: { - name: "Plancha", - effect: "Ataca al objetivo abalanzándose sobre él con todas sus fuerzas y reduce su Ataque.", - }, - fireLash: { - name: "Látigo Ígneo", - effect: "Golpea al objetivo con un látigo incandescente y reduce su Defensa.", - }, - powerTrip: { - name: "Chulería", - effect: "Ataca al oponente presumiendo de su fuerza. Cuanto más hayan subido las características del usuario, mayor será el daño.", - }, - burnUp: { - name: "Llama Final", - effect: "Utiliza hasta el último resquicio de llamas de su cuerpo para infligir un grave daño al objetivo. Tras el ataque, el usuario deja de ser de tipo Fuego.", - }, - speedSwap: { - name: "Cambiavelocidad", - effect: "Intercambia su Velocidad por la del objetivo.", - }, - smartStrike: { - name: "Cuerno Certero", - effect: "El usuario ensarta al objetivo con su afilada cornamenta. No falla nunca.", - }, - purify: { - name: "Purificación", - effect: "Cura los problemas de estado del Pokémon rival y a cambio recupera PS propios.", - }, - revelationDance: { - name: "Danza Despertar", - effect: "Ataque que consiste en un baile muy enérgico. El tipo de este ataque se corresponde con el del Pokémon que lo ejecuta.", - }, - coreEnforcer: { - name: "Núcleo Castigo", - effect: "Inflige daño al rival, y si este ya ha hecho uso de algún movimiento, pierde su habilidad.", - }, - tropKick: { - name: "Patada Tropical", - effect: "Lanza una patada con la fuerza del trópico que golpea al objetivo y reduce su Ataque.", - }, - instruct: { - name: "Mandato", - effect: "Fuerza al objetivo a repetir inmediatamente su último movimiento.", - }, - beakBlast: { - name: "Pico Cañón", - effect: "Primero aumenta la temperatura de su pico y luego ejecuta un ataque. Quema al rival si este le propina un ataque físico mientras está calentando el pico.", - }, - clangingScales: { - name: "Fragor Escamas", - effect: "Frota todas las escamas de su cuerpo para crear un fuerte sonido con el que ataca. Cuando el ataque termina, su Defensa se ve reducida.", - }, - dragonHammer: { - name: "Martillo Dragón", - effect: "Usa el cuerpo como un martillo para abalanzarse sobre su rival y causarle daño.", - }, - brutalSwing: { - name: "Giro Vil", - effect: "Hace pivotar su cuerpo para causar daño a los Pokémon adyacentes.", - }, - auroraVeil: { - name: "Velo Aurora", - effect: "Reduce el daño de los ataques físicos y especiales durante cinco turnos. Solo puede usarse cuando está nevando.", - }, - sinisterArrowRaid: { - name: "Aluvión de Flechas Sombrías", - effect: "Decidueye usa el Poder Z para proyectar multitud de flechas potentísimas que atraviesan a su oponente.", - }, - maliciousMoonsault: { - name: "Hiperplancha Oscura", - effect: "Incineroar refuerza sus músculos con el Poder Z para golpear con todas sus fuerzas a su oponente.", - }, - oceanicOperetta: { - name: "Sinfonía de la Diva Marina", - effect: "Primarina invoca ingentes cantidades de agua con el Poder Z para atacar con gran potencia a su rival.", - }, - guardianOfAlola: { - name: "Cólera del Guardián", - effect: "Los Pokémon Dios Nativo canalizan la energía de Alola gracias al Poder Z y atacan con gran fuerza a sus rivales reduciendo un gran porcentaje de sus PS.", - }, - soulStealing7StarStrike: { - name: "Constelación Robaalmas", - effect: "Cuando Marshadow obtiene el Poder Z, lanza una potente y continua oleada de puñetazos y patadas con la que castiga a su rival.", - }, - stokedSparksurfer: { - name: "Surfeo Galvánico", - effect: "Cuando un Raichu de Alola obtiene el Poder Z, lanza un potente ataque contra su enemigo y lo deja paralizado.", - }, - pulverizingPancake: { - name: "Arrojo Intempestivo", - effect: "Gracias al Poder Z, Snorlax puede mover su enorme cuerpo con gran agilidad y determinación, cargando sobre el oponente con todas sus fuerzas.", - }, - extremeEvoboost: { - name: "Novena Potencia", - effect: "Cuando Eevee obtiene el Poder Z, toma prestada la energía de sus amigos evolucionados para potenciar enormemente sus características.", - }, - genesisSupernova: { - name: "Supernova Original", - effect: "Mew usa el Poder Z para realizar un potente ataque contra su adversario y crear un Campo Psíquico sobre el terreno.", - }, - shellTrap: { - name: "Coraza Trampa", - effect: "El caparazón del Pokémon se convierte en una trampa. Si lo alcanza un ataque físico, la trampa estalla y los rivales sufren daño.", - }, - fleurCannon: { - name: "Cañón Floral", - effect: "El usuario emite un potente rayo, pero su Ataque Especial se reduce mucho.", - }, - psychicFangs: { - name: "Psicocolmillo", - effect: "Ataca a sus rivales con poderes psíquicos que además destruyen barreras como Pantalla de Luz y Reflejo.", - }, - stompingTantrum: { - name: "Pataleta", - effect: "Usa la frustración como revulsivo para atacar. La potencia de Pataleta se duplica si el usuario ha fallado el último movimiento usado.", - }, - shadowBone: { - name: "Hueso Sombrío", - effect: "Ataca golpeando con un hueso poseído por un espíritu. Puede reducir la Defensa del objetivo.", - }, - accelerock: { - name: "Roca Veloz", - effect: "El usuario se lanza contra el objetivo a gran velocidad. Este movimiento tiene prioridad alta.", - }, - liquidation: { - name: "Hidroariete", - effect: "Ataca golpeando gracias a la fuerza del agua. También puede reducir la Defensa del objetivo.", - }, - prismaticLaser: { - name: "Láser Prisma", - effect: "El usuario utiliza un prisma para emitir un rayo de gran potencia, pero deberá descansar en el siguiente turno.", - }, - spectralThief: { - name: "Robasombra", - effect: "El usuario se esconde en la sombra del objetivo y lo ataca tras robarle las mejoras en sus características.", - }, - sunsteelStrike: { - name: "Meteoimpacto", - effect: "Ataca al objetivo con la potencia de un meteoro, ignorando su habilidad.", - }, - moongeistBeam: { - name: "Rayo Umbrío", - effect: "Ataca con un rayo misterioso que ignora la habilidad del objetivo.", - }, - tearfulLook: { - name: "Ojos Llorosos", - effect: "Mira al objetivo con ojos llorosos para hacerle perder su espíritu combativo y reduce su Ataque y Ataque Especial.", - }, - zingZap: { - name: "Electropunzada", - effect: "Se lanza contra el objetivo y le suelta una potente descarga eléctrica que puede hacer que se amedrente.", - }, - naturesMadness: { - name: "Furia Natural", - effect: "Golpea al objetivo con la furia de la naturaleza y reduce sus PS a la mitad.", - }, - multiAttack: { - name: "Multiataque", - effect: "El Pokémon se rodea de una potente energía con la que golpea al rival. El tipo del movimiento depende del disco que lleva el usuario.", - }, - tenMillionVoltThunderbolt: { - name: "Gigarrayo Fulminante", - effect: "Los Pikachu con gorra acumulan una carga eléctrica descomunal gracias al Poder Z y la lanzan contra el objetivo. Suele ser crítico.", - }, - mindBlown: { - name: "Cabeza Sorpresa", - effect: "El usuario hace explotar su cabeza para atacar a los Pokémon adyacentes, aunque también se hiere a sí mismo.", - }, - plasmaFists: { - name: "Puños Plasma", - effect: "El usuario ataca con puños cargados de electricidad. Convierte los movimientos de tipo Normal en movimientos de tipo Eléctrico.", - }, - photonGeyser: { - name: "Géiser Fotónico", - effect: "El usuario ataca con una gran columna de luz. Compara sus valores de Ataque y Ataque Especial para infligir daño con el más alto de los dos.", - }, - lightThatBurnsTheSky: { - name: "Fotodestrucción Apocalíptica", - effect: "Necrozma escoge la característica que tenga el valor más alto entre el Ataque y el Ataque Especial para infligir daño, ignorando la habilidad del objetivo.", - }, - searingSunrazeSmash: { - name: "Embestida Solar", - effect: "Solgaleo ataca con toda su fuerza tras imbuirse del Poder Z. Este movimiento ignora la habilidad del objetivo.", - }, - menacingMoonrazeMaelstrom: { - name: "Deflagración Lunar", - effect: "Lunala ataca con toda su fuerza tras imbuirse del Poder Z. Este movimiento ignora la habilidad del objetivo.", - }, - letsSnuggleForever: { - name: "Somanta Amistosa", - effect: "Mimikyu ataca con toda su fuerza tras imbuirse del Poder Z y asesta una lluvia de golpes.", - }, - splinteredStormshards: { - name: "Tempestad Rocosa", - effect: "Lycanroc ataca con toda su fuerza tras imbuirse del Poder Z y neutraliza el campo que esté activo.", - }, - clangorousSoulblaze: { - name: "Estruendo Implacable", - effect: "Kommo-o ataca con toda su fuerza al objetivo tras imbuirse del Poder Z. Además, potencia sus propias características.", - }, - zippyZap: { - name: "Pikaturbo", - effect: "The user attacks the target with bursts of electricity at high speed. This move always goes first and raises the user's evasiveness.", - }, - splishySplash: { - name: "Salpikasurf", - effect: "Golpea al adversario con una ola gigante electrificada, que también puede paralizarlo.", - }, - floatyFall: { - name: "Pikapicado", - effect: "El usuario se suspende en el aire para, a continuación, abalanzarse súbitamente sobre el rival. Puede hacer retroceder al objetivo.", - }, - pikaPapow: { - name: "Pikatormenta", - effect: "Lanza una descarga eléctrica infalible que resulta más potente cuanto mayor es el cariño que siente Pikachu hacia su Entrenador.", - }, - bouncyBubble: { - name: "Vapodrenaje", - effect: "Ataca lanzando proyectiles de agua y recupera una cantidad de PS equivalente a la del daño causado.", - }, - buzzyBuzz: { - name: "Joltioparálisis", - effect: "Lanza una potente descarga eléctrica sobre el rival y lo deja paralizado.", - }, - sizzlySlide: { - name: "Flarembestida", - effect: "Tras envolver su cuerpo en llamas, el usuario arrolla con fuerza al rival y le provoca quemaduras.", - }, - glitzyGlow: { - name: "Espeaura", - effect: "Envuelve al rival con ondas psíquicas y alza un extraño muro que debilita los ataques especiales del adversario.", - }, - baddyBad: { - name: "Umbreozona", - effect: "Lanza un ataque haciendo gala de su faceta más umbría y alza un extraño muro que mitiga los ataques físicos del adversario.", - }, - sappySeed: { - name: "Leafitobombas", - effect: "Hace brotar un tallo gigante que bombardea al rival con unas semillas que le drenan PS en cada turno.", - }, - freezyFrost: { - name: "Glaceoprisma", - effect: "Ataca al rival con negros cristales de niebla congelada. Revierte los cambios en las características de todos los Pokémon presentes.", - }, - sparklySwirl: { - name: "Sylveotornado", - effect: "Ataca al rival envolviéndolo en un remolino de aroma asfixiante. Cura a los aliados de cualquier problema de estado.", - }, - veeveeVolley: { - name: "Eevimpacto", - effect: "Un placaje infalible que resulta más potente cuanto mayor es el cariño que siente Eevee hacia su Entrenador.", - }, - doubleIronBash: { - name: "Ferropuño Doble", - effect: "Usando la tuerca del pecho como eje, gira sobre sí mismo y golpea con los brazos dos veces seguidas. Puede amedrentar al rival.", - }, - maxGuard: { - name: "Maxibarrera", - effect: "Frena todos los ataques, pero puede fallar si se usa repetidamente.", - }, - dynamaxCannon: { - name: "Cañón Dinamax", - effect: "El usuario ataca emitiendo un rayo desde su núcleo. Inflinge hasta el doble de daño si el objetivo tiene más niveles de lo normal." - }, - snipeShot: { - name: "Disparo Certero", - effect: "Permite atacar al objetivo seleccionado ignorando las habilidades o movimientos que permiten a un Pokémon centrar la atención sobre sí.", - }, - jawLock: { - name: "Presa Maxilar", - effect: "Impide que tanto el atacante como el defensor puedan huir o ser cambiados por otros hasta que uno de ellos se debilite o abandone el terreno de combate.", - }, - stuffCheeks: { - name: "Atiborramiento", - effect: "El usuario ingiere la baya que lleva equipada para aumentar mucho su Defensa.", - }, - noRetreat: { - name: "Bastión Final", - effect: "El usuario aumenta todas sus características, pero ya no puede huir ni ser cambiado por otro.", - }, - tarShot: { - name: "Alquitranazo", - effect: "Cubre al objetivo de un alquitrán pegajoso que reduce su Velocidad y lo vuelve débil contra el fuego.", - }, - magicPowder: { - name: "Polvo Mágico", - effect: "Cubre al objetivo con unos polvos mágicos que le hacen adquirir el tipo Psíquico.", - }, - dragonDarts: { - name: "Dracoflechas", - effect: "El usuario ataca propulsando a ambos Dreepy. En caso de haber dos adversarios, cada Dreepy golpea a su propio objetivo por separado.", - }, - teatime: { - name: "Hora del Té", - effect: "El usuario invita a tomar el té a todos los presentes en el terreno de combate, lo que hace que ingieran las bayas que lleven equipadas.", - }, - octolock: { - name: "Octopresa", - effect: "Retiene al objetivo e impide que pueda huir o ser cambiado por otro, a la vez que reduce su Defensa y su Defensa Especial cada turno.", - }, - boltBeak: { - name: "Electropico", - effect: "El usuario ensarta al objetivo con su pico cargado de electricidad. Si ataca en primer lugar, la potencia del movimiento se duplica.", - }, - fishiousRend: { - name: "Branquibocado", - effect: "El usuario agarra al objetivo con sus duras branquias. En caso de atacar antes que este último, la potencia del movimiento se duplica.", - }, - courtChange: { - name: "Cambio de Cancha", - effect: "Extraño poder que intercambia los efectos en el terreno de combate de ambos bandos.", - }, - maxFlare: { - name: "Maxignición", - effect: "Ataque de tipo Fuego ejecutado por un Pokémon Dinamax. Hace que se intensifique el efecto del sol durante cinco turnos.", - }, - maxFlutterby: { - name: "Maxinsecto", - effect: "Ataque de tipo Bicho ejecutado por un Pokémon Dinamax. Reduce el Ataque Especial del objetivo.", - }, - maxLightning: { - name: "Maxitormenta", - effect: "Ataque de tipo Eléctrico ejecutado por un Pokémon Dinamax. Crea un campo eléctrico durante cinco turnos.", - }, - maxStrike: { - name: "Maxiataque", - effect: "Ataque de tipo Normal ejecutado por un Pokémon Dinamax. Reduce la Velocidad del objetivo.", - }, - maxKnuckle: { - name: "Maxipuño", - effect: "Ataque de tipo Lucha ejecutado por un Pokémon Dinamax. Aumenta el Ataque de tu bando.", - }, - maxPhantasm: { - name: "Maxiespectro", - effect: "Ataque de tipo Fantasma ejecutado por un Pokémon Dinamax. Reduce la Defensa del objetivo.", - }, - maxHailstorm: { - name: "Maxihelada", - effect: "Ataque de tipo Hielo ejecutado por un Pokémon Dinamax. Crea una tormenta de granizo que dura cinco turnos.", - }, - maxOoze: { - name: "Maxiácido", - effect: "Ataque de tipo Veneno ejecutado por un Pokémon Dinamax. Aumenta el Ataque Especial de tu bando.", - }, - maxGeyser: { - name: "Maxichorro", - effect: "Ataque de tipo Agua ejecutado por un Pokémon Dinamax. Desata un aguacero que dura cinco turnos.", - }, - maxAirstream: { - name: "Maxiciclón", - effect: "Ataque de tipo Volador ejecutado por un Pokémon Dinamax. Aumenta la Velocidad de tu bando.", - }, - maxStarfall: { - name: "Maxiestela", - effect: "Ataque de tipo Hada ejecutado por un Pokémon Dinamax. Crea un campo de niebla durante cinco turnos.", - }, - maxWyrmwind: { - name: "Maxidraco", - effect: "Ataque de tipo Dragón ejecutado por un Pokémon Dinamax. Reduce el Ataque del objetivo.", - }, - maxMindstorm: { - name: "Maxionda", - effect: "Ataque de tipo Psíquico ejecutado por un Pokémon Dinamax. Crea un campo psíquico durante cinco turnos.", - }, - maxRockfall: { - name: "Maxilito", - effect: "Ataque de tipo Roca ejecutado por un Pokémon Dinamax. Levanta una tormenta de arena que dura cinco turnos.", - }, - maxQuake: { - name: "Maxitemblor", - effect: "Ataque de tipo Tierra ejecutado por un Pokémon Dinamax. Aumenta la Defensa Especial de tu bando.", - }, - maxDarkness: { - name: "Maxisombra", - effect: "Ataque de tipo Siniestro ejecutado por un Pokémon Dinamax. Reduce la Defensa Especial del objetivo.", - }, - maxOvergrowth: { - name: "Maxiflora", - effect: "Ataque de tipo Planta ejecutado por un Pokémon Dinamax. Crea un campo de hierba durante cinco turnos.", - }, - maxSteelspike: { - name: "Maximetal", - effect: "Ataque de tipo Acero ejecutado por un Pokémon Dinamax. Aumenta la Defensa de tu bando.", - }, - clangorousSoul: { - name: "Estruendo Escama", - effect: "Utiliza parte de los PS propios para subir sus características.", - }, - bodyPress: { - name: "Plancha Corporal", - effect: "El usuario usa el cuerpo para lanzar su ataque e infligir un daño directamente proporcional a su Defensa.", - }, - decorate: { - name: "Decoración", - effect: "Aumenta mucho el Ataque y el Ataque Especial del objetivo al decorarlo.", - }, - drumBeating: { - name: "Batería Asalto", - effect: "El usuario controla un tocón mediante la percusión y al atacar reduce la Velocidad del objetivo.", - }, - snapTrap: { - name: "Cepo", - effect: "Cepo que atrapa al objetivo durante cuatro o cinco turnos y le causa daño mientras se encuentra preso.", - }, - pyroBall: { - name: "Balón Ígneo", - effect: "El usuario prende una pequeña piedra para crear una bola de fuego con la que ataca al objetivo. Puede causar quemaduras.", - }, - behemothBlade: { - name: "Tajo Supremo", - effect: "El usuario se convierte en una espada gigante para rebanar con vigor al objetivo.", - }, - behemothBash: { - name: "Embate Supremo", - effect: "El usuario se convierte en un escudo gigante para golpear con vigor al objetivo.", - }, - auraWheel: { - name: "Rueda Aural", - effect: "La energía que acumula en las mejillas le sirve para atacar y aumentar su Velocidad. Este movimiento cambia de tipo según la forma que adopte Morpeko.", - }, - breakingSwipe: { - name: "Vasto Impacto", - effect: "El usuario sacude violentamente su enorme cola para golpear al objetivo y reducir su Ataque a la par.", - }, - branchPoke: { - name: "Punzada Rama", - effect: "Ataca pinchando al objetivo con una rama afilada.", - }, - overdrive: { - name: "Amplificador", - effect: "El usuario rasguea la guitarra o el bajo para generar enormes vibraciones de intensa reverberación con las que ataca al objetivo.", - }, - appleAcid: { - name: "Ácido Málico", - effect: "Ataca al objetivo con el fluido corrosivo que desprende una manzana ácida, lo que también reduce la Defensa Especial de este.", - }, - gravApple: { - name: "Fuerza G", - effect: "El usuario ataca haciendo caer una manzana desde gran altura. Reduce la Defensa del objetivo.", - }, - spiritBreak: { - name: "Choque Anímico", - effect: "El usuario ataca al objetivo con tal ímpetu que acaba minando su moral y, en consecuencia, reduce su Ataque Especial.", - }, - strangeSteam: { - name: "Cautivapor", - effect: "Desprende un humo con el que ataca al objetivo, que puede acabar confundido.", - }, - lifeDew: { - name: "Gota Vital", - effect: "Vierte un agua misteriosa y balsámica que restaura tanto sus propios PS como los de aquellos aliados presentes en el terreno de combate.", - }, - obstruct: { - name: "Obstrucción", - effect: "Frena todos los ataques, pero puede fallar si se usa repetidamente. Reduce mucho la Defensa de quien ejecute un movimiento de contacto contra el usuario.", - }, - falseSurrender: { - name: "Irreverencia", - effect: "El usuario finge hacer una reverencia y aprovecha la ocasión para ensartar al objetivo con su cabello alborotado. No falla nunca.", - }, - meteorAssault: { - name: "Asalto Estelar", - effect: "El usuario agita violentamente su grueso puerro para atacar, pero el mareo que le provocan las sacudidas le obliga a descansar en el siguiente turno.", - }, - eternabeam: { - name: "Rayo Infinito", - effect: "Este es el mayor ataque de Eternatus una vez adquirida su forma original. No puede moverse en el turno siguiente.", - }, - steelBeam: { - name: "Metaláser", - effect: "Utiliza el acero de su cuerpo para disparar un potente rayo. El usuario se hiere a sí mismo.", - }, - expandingForce: { - name: "Vasta Fuerza", - effect: "El usuario ataca al objetivo con sus poderes psíquicos. Cuando se usa en conjunción con un campo psíquico, aumenta su potencia e inflige daño a todos los rivales.", - }, - steelRoller: { - name: "Allanador Férreo", - effect: "El usuario lanza su ataque y destruye el campo activo en el terreno de combate, y falla si no hay ninguno en ese momento.", - }, - scaleShot: { - name: "Ráfaga Escamas", - effect: "Lanza escamas al objetivo de dos a cinco veces seguidas. Aumenta la Velocidad del usuario, pero reduce su Defensa.", - }, - meteorBeam: { - name: "Rayo Meteórico", - effect: "El usuario dedica el primer turno a aumentar su Ataque Especial acumulando energía cósmica y lanza su ofensiva contra el objetivo en el segundo.", - }, - shellSideArm: { - name: "Moluscañón", - effect: "El usuario lanza un ataque físico o especial en función de cuál inflija más daño. Puede envenenar al objetivo.", - }, - mistyExplosion: { - name: "Bruma Explosiva", - effect: "El usuario ataca a todos a su alrededor, pero se debilita de inmediato. La potencia del movimiento aumenta si el terreno está cubierto por un campo de niebla.", - }, - grassyGlide: { - name: "Fitoimpulso", - effect: "Ataca al objetivo deslizándose sobre el terreno de combate. Este movimiento tiene prioridad alta cuando el terreno está cubierto por un campo de hierba.", - }, - risingVoltage: { - name: "Alto Voltaje", - effect: "Ataca con una descarga eléctrica que surge del terreno de combate. La potencia del movimiento se duplica si el rival se ve afectado por un campo eléctrico.", - }, - terrainPulse: { - name: "Pulso de Campo", - effect: "El usuario ataca aprovechando la energía del campo activo, que determina tanto el tipo como la potencia del movimiento.", - }, - skitterSmack: { - name: "Golpe Rastrero", - effect: "Ataca al objetivo por la espalda de forma subrepticia y, además, reduce su Ataque Especial.", - }, - burningJealousy: { - name: "Envidia Ardiente", - effect: "Ataca al objetivo con la energía generada por la envidia y causa quemaduras a los Pokémon cuyas características hayan aumentado en ese turno.", - }, - lashOut: { - name: "Desahogo", - effect: "Ataca al rival presa de la rabia. Si el usuario ha sufrido una reducción de características en ese turno, la potencia del movimiento se duplica.", - }, - poltergeist: { - name: "Poltergeist", - effect: "El usuario ataca utilizando el objeto que lleva el rival. Si no tiene ninguno equipado, el movimiento falla.", - }, - corrosiveGas: { - name: "Gas Corrosivo", - effect: "El usuario libera un gas cáustico que envuelve a todos los que se encuentren alrededor y derrite por completo los objetos que lleven equipados.", - }, - coaching: { - name: "Motivación", - effect: "El usuario imparte indicaciones precisas a sus aliados, que ven aumentados su Ataque y su Defensa.", - }, - flipTurn: { - name: "Viraje", - effect: "Tras atacar, el usuario da paso a toda prisa a otro Pokémon del equipo.", - }, - tripleAxel: { - name: "Triple Axel", - effect: "Propina hasta tres patadas seguidas, la potencia de las cuales aumenta cada vez que acierta.", - }, - dualWingbeat: { - name: "Ala Bis", - effect: "Ataca al adversario golpeándolo dos veces con las alas.", - }, - scorchingSands: { - name: "Arenas Ardientes", - effect: "Ataca al objetivo arrojándole arena a temperaturas muy elevadas. Puede causar quemaduras.", - }, - jungleHealing: { - name: "Cura Selvática", - effect: "Al entrar en plena armonía con la selva, el usuario cura problemas de estado y restaura PS no solo de sí mismo, sino también de los aliados presentes en el terreno.", - }, - wickedBlow: { - name: "Golpe Oscuro", - effect: "Golpe devastador que requiere un absoluto dominio de las artes siniestras. Siempre asesta un golpe crítico.", - }, - surgingStrikes: { - name: "Azote Torrencial", - effect: "El usuario, dominador absoluto del líquido elemento, golpea hasta tres veces con movimientos fluidos. Siempre asesta un golpe crítico.", - }, - thunderCage: { - name: "Electrojaula", - effect: "El objetivo queda atrapado en una jaula electrificada que permanece en el terreno de cuatro a cinco turnos.", - }, - dragonEnergy: { - name: "Dracoenergía", - effect: "El usuario convierte su fuerza vital en una energía con la que ataca al objetivo. Cuantos menos PS tenga el usuario, menor será la potencia del movimiento.", - }, - freezingGlare: { - name: "Mirada Heladora", - effect: "A través de sus ojos emite poderes psíquicos con los que ataca al objetivo, al que puede llegar a congelar.", - }, - fieryWrath: { - name: "Furia Candente", - effect: "El usuario convierte su ira en un aura flamígera para lanzar su ataque. Puede amedrentar al objetivo.", - }, - thunderousKick: { - name: "Patada Relámpago", - effect: "El usuario desconcierta al objetivo con movimientos centelleantes y le propina una patada que, además, reduce su Defensa.", - }, - glacialLance: { - name: "Lanza Glacial", - effect: "El usuario ataca al objetivo lanzándole un carámbano de hielo envuelto en una ventisca.", - }, - astralBarrage: { - name: "Orbes Espectro", - effect: "El usuario ataca al objetivo lanzándole una ingente cantidad de pequeños fantasmas.", - }, - eerieSpell: { - name: "Conjuro Funesto", - effect: "El usuario ataca con un poder psíquico de inmensa potencia y elimina 3 PP del último movimiento que haya usado el objetivo.", - }, - direClaw: { - name: "Garra Nociva", - effect: "Ataca al objetivo con unas garras letales que pueden envenenarlo, paralizarlo o dormirlo.", - }, - psyshieldBash: { - name: "Asalto Barrera", - effect: "El usuario ataca envuelto en una energía psíquica que además aumenta su Defensa.", - }, - powerShift: { - name: "Cambiapoder", - effect: "Intercambia su Ataque por su Defensa.", - }, - stoneAxe: { - name: "Hachazo Pétreo", - effect: "Ataca con un hacha de piedra y, al hacerlo, se desprenden fragmentos que rodean al objetivo.", - }, - springtideStorm: { - name: "Ciclón Primavera", - effect: "Desata una tormenta de amor y odio con la que envuelve y ataca al objetivo. También puede reducir su Ataque.", - }, - mysticalPower: { - name: "Poder Místico", - effect: "Ataca desatando un misterioso poder, que también aumenta su Ataque Especial.", - }, - ragingFury: { - name: "Erupción de Ira", - effect: "El usuario ataca con unas violentas llamas de dos a tres turnos seguidos y, después, se queda confuso.", - }, - waveCrash: { - name: "Envite Acuático", - effect: "El usuario se envuelve en agua y embiste contra el objetivo, pero también se hiere seriamente a sí mismo.", - }, - chloroblast: { - name: "Clorofiláser", - effect: "El usuario concentra clorofila y la dispara en forma de rayo, pero también se hiere a sí mismo.", - }, - mountainGale: { - name: "Viento Carámbano", - effect: "Ataca con unos carámbanos grandes como icebergs que pueden amedrentar al objetivo.", - }, - victoryDance: { - name: "Danza Triunfal", - effect: "Ejecuta una danza frenética que invoca la victoria y aumenta el Ataque, la Defensa y la Velocidad.", - }, - headlongRush: { - name: "Arremetida", - effect: "El usuario arremete con todas sus fuerzas, pero se reducen su Defensa y su Defensa Especial.", - }, - barbBarrage: { - name: "Mil Púas Tóxicas", - effect: "Dispara un sinfín de púas tóxicas que pueden envenenar al objetivo. La potencia del movimiento se duplica si este ya está envenenado.", - }, - esperWing: { - name: "Ala Aural", - effect: "Corta con unas alas imbuidas de aura. Suele asestar un golpe crítico y aumenta la Velocidad del usuario.", - }, - bitterMalice: { - name: "Rencor Reprimido", - effect: "Ataca al objetivo sometiéndolo a su frío rencor y reduce su Ataque.", - }, - shelter: { - name: "Retracción", - effect: "La piel del usuario se vuelve dura como un escudo de acero, lo que aumenta mucho su Defensa.", - }, - tripleArrows: { - name: "Triple Flecha", - effect: "Propina un talonazo y lanza tres flechas. Suele asestar un golpe crítico y puede reducir la Defensa del objetivo o amedrentarlo.", - }, - infernalParade: { - name: "Marcha Espectral", - effect: "Lanza innumerables bolas de fuego al objetivo que pueden causar quemaduras. La potencia del movimiento se duplica si este ya sufre un problema de estado.", - }, - ceaselessEdge: { - name: "Tajo Metralla", - effect: "Ataca con una espada de conchas y, al hacerlo, se esparcen fragmentos a modo de metralla a los pies del objetivo.", - }, - bleakwindStorm: { - name: "Vendaval Gélido", - effect: "Ataca con un viento muy frío que estremece el cuerpo y la mente y que, además, puede reducir la Velocidad del objetivo.", - }, - wildboltStorm: { - name: "Electormenta", - effect: "Invoca una tormenta eléctrica que ataca al objetivo con fuertes vientos y relámpagos y puede paralizarlo.", - }, - sandsearStorm: { - name: "Simún de Arena", - effect: "Ataca al objetivo envolviéndolo en unas arenas tórridas y un fuerte vendaval que pueden causar quemaduras.", - }, - lunarBlessing: { - name: "Plegaria Lunar", - effect: "Dedica una oración a la luna creciente que restaura los PS y cura los problemas de estado del bando del usuario.", - }, - takeHeart: { - name: "Bálsamo Osado", - effect: "El usuario se envalentona y se cura de los problemas de estado. Además, aumenta su Ataque Especial y su Defensa Especial.", - }, - gMaxWildfire: { - name: "Gigallamarada", - effect: "Ataque de tipo Fuego ejecutado por un Charizard Gigamax. Inflige daño durante cuatro turnos.", - }, - gMaxBefuddle: { - name: "Gigaestupor", - effect: "Ataque de tipo Bicho ejecutado por un Butterfree Gigamax. Envenena, paraliza o duerme al objetivo.", - }, - gMaxVoltCrash: { - name: "Gigatronada", - effect: "Ataque de tipo Eléctrico ejecutado por un Pikachu Gigamax. Paraliza al objetivo.", - }, - gMaxGoldRush: { - name: "Gigamonedas", - effect: "Ataque de tipo Normal ejecutado por un Meowth Gigamax. Confunde al objetivo y aumenta la recompensa recibida tras el combate.", - }, - gMaxChiStrike: { - name: "Gigapuñición", - effect: "Ataque de tipo Lucha ejecutado por un Machamp Gigamax. Aumenta las posibilidades de que el usuario y sus aliados asesten un golpe crítico.", - }, - gMaxTerror: { - name: "Gigaaparición", - effect: "Ataque de tipo Fantasma ejecutado por un Gengar Gigamax. Impide que el objetivo sea cambiado por otro.", - }, - gMaxResonance: { - name: "Gigamelodía", - effect: "Ataque de tipo Hielo ejecutado por un Lapras Gigamax. Reduce el daño recibido durante cinco turnos.", - }, - gMaxCuddle: { - name: "Gigaternura", - effect: "Ataque de tipo Normal ejecutado por un Eevee Gigamax. Hace que el objetivo se enamore.", - }, - gMaxReplenish: { - name: "Gigarreciclaje", - effect: "Ataque de tipo Normal ejecutado por un Snorlax Gigamax. Restaura las bayas que se hayan consumido.", - }, - gMaxMalodor: { - name: "Gigapestilencia", - effect: "Ataque de tipo Veneno ejecutado por un Garbodor Gigamax. Envenena al objetivo.", - }, - gMaxStonesurge: { - name: "Gigatrampa Rocas", - effect: "Ataque de tipo Agua ejecutado por un Drednaw Gigamax. Esparce rocas afiladas por el terreno de combate.", - }, - gMaxWindRage: { - name: "Gigahuracán", - effect: "Ataque de tipo Volador ejecutado por un Corviknight Gigamax. Es capaz de destruir barreras como las creadas por Pantalla de Luz y Reflejo.", - }, - gMaxStunShock: { - name: "Gigadescarga", - effect: "Ataque de tipo Eléctrico ejecutado por un Toxtricity Gigamax. Envenena o paraliza al objetivo.", - }, - gMaxFinale: { - name: "Gigacolofón", - effect: "Ataque de tipo Hada ejecutado por un Alcremie Gigamax. Restaura los PS de tu bando.", - }, - gMaxDepletion: { - name: "Gigadesgaste", - effect: "Ataque de tipo Dragón ejecutado por un Duraludon Gigamax. Reduce PP del último movimiento usado por el objetivo.", - }, - gMaxGravitas: { - name: "Gigabóveda", - effect: "Ataque de tipo Psíquico ejecutado por un Orbeetle Gigamax. Intensifica la fuerza de gravedad durante cinco turnos.", - }, - gMaxVolcalith: { - name: "Gigarroca Ígnea", - effect: "Ataque de tipo Roca ejecutado por un Coalossal Gigamax. Inflige daño durante cuatro turnos.", - }, - gMaxSandblast: { - name: "Gigapolvareda", - effect: "Ataque de tipo Tierra ejecutado por un Sandaconda Gigamax. Enreda al objetivo en un remolino de arena de cuatro a cinco turnos.", - }, - gMaxSnooze: { - name: "Gigasopor", - effect: "Ataque de tipo Siniestro ejecutado por un Grimmsnarl Gigamax. Induce al sueño al objetivo en el siguiente turno.", - }, - gMaxTartness: { - name: "Gigacorrosión", - effect: "Ataque de tipo Planta ejecutado por un Flapple Gigamax. Reduce la Evasión del objetivo.", - }, - gMaxSweetness: { - name: "Giganéctar", - effect: "Ataque de tipo Planta ejecutado por un Appletun Gigamax. Cura los problemas de estado de tu bando.", - }, - gMaxSmite: { - name: "Gigacastigo", - effect: "Ataque de tipo Hada ejecutado por un Hatterene Gigamax. Confunde al objetivo.", - }, - gMaxSteelsurge: { - name: "Gigatrampa Acero", - effect: "Ataque de tipo Acero ejecutado por un Copperajah Gigamax. Esparce púas de acero por el terreno de combate.", - }, - gMaxMeltdown: { - name: "Gigafundido", - effect: "Ataque de tipo Acero ejecutado por un Melmetal Gigamax. Impide al objetivo usar el mismo movimiento dos veces seguidas.", - }, - gMaxFoamBurst: { - name: "Gigaespuma", - effect: "Ataque de tipo Agua ejecutado por un Kingler Gigamax. Reduce mucho la Velocidad del objetivo.", - }, - gMaxCentiferno: { - name: "Gigacienfuegos", - effect: "Ataque de tipo Fuego ejecutado por un Centiskorch Gigamax. Un aro de fuego atrapa al objetivo de cuatro a cinco turnos.", - }, - gMaxVineLash: { - name: "Gigalianas", - effect: "Ataque de tipo Planta ejecutado por un Venusaur Gigamax. Inflige daño durante cuatro turnos.", - }, - gMaxCannonade: { - name: "Gigacañonazo", - effect: "Ataque de tipo Agua ejecutado por un Blastoise Gigamax. Inflige daño durante cuatro turnos.", - }, - gMaxDrumSolo: { - name: "Gigarredoble", - effect: "Ataque de tipo Planta ejecutado por un Rillaboom Gigamax. Ignora la habilidad del objetivo.", - }, - gMaxFireball: { - name: "Gigaesfera Ígnea", - effect: "Ataque de tipo Fuego ejecutado por un Cinderace Gigamax. Ignora la habilidad del objetivo.", - }, - gMaxHydrosnipe: { - name: "Gigadisparo", - effect: "Ataque de tipo Agua ejecutado por un Inteleon Gigamax. Ignora la habilidad del objetivo.", - }, - gMaxOneBlow: { - name: "Gigagolpe Brusco", - effect: "Ataque de tipo Siniestro ejecutado por un Urshifu Gigamax. Propina un único golpe que acierta al objetivo aunque haya usado Maxibarrera.", - }, - gMaxRapidFlow: { - name: "Gigagolpe Fluido", - effect: "Ataque de tipo Agua ejecutado por un Urshifu Gigamax. Propina golpes sucesivos que aciertan al objetivo aunque haya usado Maxibarrera.", - }, - teraBlast: { - name: "Teraexplosión", - effect: "Si el usuario se ha teracristalizado, ataca con la energía de su teratipo. Compara sus valores de Ataque y Ataque Especial para infligir daño con el más alto de los dos.", - }, - silkTrap: { - name: "Telatrampa", - effect: "Tiende una trampa sedosa que protege al usuario de los ataques al tiempo que reduce la Velocidad de cualquier Pokémon con el que entre en contacto.", - }, - axeKick: { - name: "Patada Hacha", - effect: "Lanza una patada al aire para, acto seguido, golpear con el talón. Si falla, se hiere a sí mismo. Puede confundir al objetivo.", - }, - lastRespects: { - name: "Homenaje Póstumo", - effect: "Ataca para vengar a sus compañeros caídos y aplacar su desazón. Cuantos más miembros del equipo se hayan debilitado, mayor será la potencia del movimiento.", - }, - luminaCrash: { - name: "Fotocolisión", - effect: "Ataca proyectando una extraña luz que afecta a la mente. Reduce mucho la Defensa Especial del objetivo.", - }, - orderUp: { - name: "Oído Cocina", - effect: "Ataca con porte gallardo. Si lleva un Tatsugiri en la boca, aumenta una de sus características en función de la forma de este último.", - }, - jetPunch: { - name: "Puño Jet", - effect: "Se envuelve el puño con un torrente y propina un golpe a tal velocidad que resulta casi imperceptible. Este movimiento tiene prioridad alta.", - }, - spicyExtract: { - name: "Extracto Picante", - effect: "Libera un extracto extraordinariamente picante que aumenta mucho el Ataque del objetivo, pero también reduce mucho su Defensa.", - }, - spinOut: { - name: "Quemarrueda", - effect: "Inflige daño al objetivo ejerciendo presión sobre sus extremidades y girando violentamente sobre sí. Reduce mucho la Velocidad del usuario.", - }, - populationBomb: { - name: "Proliferación", - effect: "Los congéneres del usuario se agrupan y ejecutan un ataque conjunto que golpea al objetivo de una a diez veces seguidas.", - }, - iceSpinner: { - name: "Pirueta Helada", - effect: "Se recubre las extremidades con una fina capa de hielo y se abalanza sobre el objetivo girando sobre sí. Destruye el campo activo en el terreno de combate.", - }, - glaiveRush: { - name: "Asalto Espadón", - effect: "Embiste de forma temeraria con todo el cuerpo. Los ataques que reciba antes de su siguiente turno no fallarán y causarán el doble de daño.", - }, - revivalBlessing: { - name: "Plegaria Vital", - effect: "Pronuncia una benévola oración que revive a un Pokémon del equipo que se haya debilitado y restaura la mitad de sus PS máximos.", - }, - saltCure: { - name: "Salazón", - effect: "Deja en salazón al objetivo, que pierde PS cada turno. Afecta especialmente a Pokémon de tipo Acero y tipo Agua.", - }, - tripleDive: { - name: "Triple Inmersión", - effect: "Ejecuta una inmersión triple en perfecta sincronía que golpea al objetivo con salpicaduras de agua tres veces seguidas.", - }, - mortalSpin: { - name: "Giro Mortífero", - effect: "Ataque giratorio que envenena al objetivo y anula los efectos de movimientos como Atadura, Constricción y Drenadoras.", - }, - doodle: { - name: "Decalcomanía", - effect: "Calca la esencia misma del objetivo para atribuir su habilidad a sí mismo y a sus aliados.", - }, - filletAway: { - name: "Deslome", - effect: "Aumenta mucho el Ataque, el Ataque Especial y la Velocidad del usuario a costa de parte de sus PS.", - }, - kowtowCleave: { - name: "Genufendiente", - effect: "Se postra en ademán de reverencia para hacer que el objetivo baje la guardia y aprovecha el descuido para atacar. No falla nunca.", - }, - flowerTrick: { - name: "Truco Floral", - effect: "Ataca al objetivo lanzándole un ramo de flores trucado. No falla nunca y siempre asesta un golpe crítico.", - }, - torchSong: { - name: "Canto Ardiente", - effect: "Expele tórridas llamaradas como si entonara una canción y abrasa al objetivo con ellas. Aumenta el Ataque Especial del usuario.", - }, - aquaStep: { - name: "Danza Acuática", - effect: "Juguetea con el objetivo mientras ejecuta una elegante y fluida danza y le inflige daño. Aumenta la Velocidad del usuario.", - }, - ragingBull: { - name: "Furia Taurina", - effect: "Embiste con tremenda fiereza. Este movimiento cambia de tipo en función de la variedad del usuario y es capaz de destruir barreras como Pantalla de Luz y Reflejo.", - }, - makeItRain: { - name: "Fiebre Dorada", - effect: "El usuario ataca arrojando una generosa cantidad de monedas, pero su Ataque Especial se ve reducido. Al finalizar el combate, las recupera en forma de ganancias.", - }, - psyblade: { - name: "Psicohojas", - effect: "El usuario rebana al objetivo con una espada inmaterial. Cuando se usa en conjunción con un campo eléctrico, la potencia del movimiento aumenta un 50 %.", - }, - hydroSteam: { - name: "Hidrovapor", - effect: "Vierte agua hirviendo sobre el objetivo. Cuando hace sol, la potencia del movimiento aumenta un 50 % en lugar de reducirse.", - }, - ruination: { - name: "Calamidad", - effect: "Provoca una catástrofe devastadora que reduce a la mitad los PS del objetivo.", - }, - collisionCourse: { - name: "Nitrochoque", - effect: "El usuario choca contra el suelo mientras se transforma y provoca una explosión primigenia. La potencia del movimiento aumenta si el ataque es supereficaz.", - }, - electroDrift: { - name: "Electroderrape", - effect: "Se abalanza sobre el objetivo mientras se transforma y lo atraviesa con electricidad futurista. La potencia del movimiento aumenta si el ataque es supereficaz.", - }, - shedTail: { - name: "Autotomía", - effect: "El usuario se cambia por otro Pokémon del equipo, pero antes utiliza parte de los PS propios para crear un sustituto para su relevo.", - }, - chillyReception: { - name: "Fría Acogida", - effect: "El usuario se cambia por otro Pokémon del equipo, pero antes cuenta un chiste que tiene una acogida tan fría que hace que nieve durante cinco turnos.", - }, - tidyUp: { - name: "Limpieza General", - effect: "Efectúa una limpieza a fondo que anula los efectos de Púas, Trampa Rocas, Red Viscosa, Púas Tóxicas y Sustituto. Aumenta el Ataque y la Velocidad del usuario.", - }, - snowscape: { - name: "Paisaje Nevado", - effect: "Desata una nevada que dura cinco turnos y aumenta la Defensa de los Pokémon de tipo Hielo.", - }, - pounce: { - name: "Brinco", - effect: "Ataca abalanzándose sobre el objetivo y le reduce la Velocidad.", - }, - trailblaze: { - name: "Abrecaminos", - effect: "Ataca de pronto como si saltara desde la hierba alta. El usuario se mueve con gran agilidad y aumenta su Velocidad.", - }, - chillingWater: { - name: "Agua Fría", - effect: "Ataca al objetivo rociándolo con un agua gélida y desalentadora que reduce su Ataque.", - }, - hyperDrill: { - name: "Hipertaladro", - effect: "El usuario hace rotar la parte puntiaguda de su cuerpo a gran velocidad para atacar al objetivo. Pasa por alto los efectos de movimientos como Protección o Detección.", - }, - twinBeam: { - name: "Láser Doble", - effect: "Ataca emitiendo dos misteriosos haces lumínicos por los ojos que infligen daño dos veces seguidas.", - }, - rageFist: { - name: "Puño Furia", - effect: "Convierte su rabia en energía para atacar. Cuantos más golpes haya recibido el usuario, mayor será la potencia del movimiento.", - }, - armorCannon: { - name: "Cañón Armadura", - effect: "Se deshace de su armadura y arroja las partes al objetivo cuales proyectiles ardientes. Reduce la Defensa y la Defensa Especial del usuario.", - }, - bitterBlade: { - name: "Espada Lamento", - effect: "Imbuye la punta de su espada con su desazón por el mundo y asesta una estocada llena de rencor. El usuario recupera la mitad de los PS del daño que produce.", - }, - doubleShock: { - name: "Electropalmas", - effect: "Libera toda la electricidad de su cuerpo para lanzar un ataque devastador. Tras ejecutar el movimiento, el usuario deja de ser de tipo Eléctrico.", - }, - gigatonHammer: { - name: "Martillo Colosal", - effect: "El usuario se ayuda de su propio peso corporal para propinar un golpe con un enorme martillo. Este movimiento no puede usarse dos veces seguidas.", - }, - comeuppance: { - name: "Resarcimiento", - effect: "Devuelve al rival el último ataque recibido, pero con mucha más fuerza.", - }, - aquaCutter: { - name: "Tajo Acuático", - effect: "Expele agua a presión con la que corta al objetivo como si de una hoja se tratara. Suele asestar un golpe crítico.", - }, - blazingTorque: { - name: "Pirochoque", - effect: "The user revs their blazing engine into the target. This may also leave the target with a burn.", - }, - wickedTorque: { - name: "Ominochoque", - effect: "The user revs their engine into the target with malicious intent. This may put the target to sleep.", - }, - noxiousTorque: { - name: "Ponzochoque", - effect: "The user revs their poisonous engine into the target. This may also poison the target.", - }, - combatTorque: { - name: "Pugnachoque", - effect: "The user revs their engine forcefully into the target. This may also leave the target with paralysis.", - }, - magicalTorque: { - name: "Feerichoque", - effect: "The user revs their fae-like engine into the target. This may also confuse the target.", - }, - bloodMoon: { - name: "Luna Roja", - effect: "Ataca canalizando toda su fuerza y proyectándola a través de una luna llena de color rojo intenso. Este movimiento no puede usarse dos veces seguidas.", - }, - matchaGotcha: { - name: "Cañón Batidor", - effect: "Rocía al objetivo con té recién batido y recupera la mitad de los PS del daño que produce. Puede causar quemaduras.", - }, - syrupBomb: { - name: "Bomba Caramelo", - effect: "Impregna al objetivo con una explosión de su viscoso néctar y lo carameliza, lo que hace que su Velocidad se reduzca progresivamente durante tres turnos.", - }, - ivyCudgel: { - name: "Garrote Liana", - effect: "Golpea con un garrote que forma enrollando su liana. El tipo del movimiento varía según la máscara que lleve puesta el usuario. Suele asestar un golpe crítico.", - }, - electroShot: { - name: "Electrorrayo", - effect: "Acumula electricidad y aumenta su Ataque Especial en el primer turno y dispara una descarga de alto voltaje en el segundo. Si llueve, puede atacar en el primer turno.", - }, - teraStarstorm: { - name: "Teraclúster", - effect: "Ataca al objetivo irradiando el poder de sus cristales. Si Terapagos usa este movimiento en su Forma Astral, inflige daño a todos los rivales.", - }, - fickleBeam: { - name: "Láser Veleidoso", - effect: "Ataca disparando un haz de luz. En ocasiones, el resto de sus cabezas se unen al ataque. Cuando esto sucede, la potencia del movimiento se duplica.", - }, - burningBulwark: { - name: "Llama Protectora", - effect: "Emplea su ardiente pelaje para protegerse de los ataques y causarle quemaduras al atacante si este usa un movimiento de contacto.", - }, - thunderclap: { - name: "Relámpago Súbito", - effect: "Invoca un rayo que cae sobre el objetivo antes de que este pueda realizar cualquier acción. Falla si el objetivo no está preparando ningún ataque.", - }, - mightyCleave: { - name: "Filo Potente", - effect: "Rebana al objetivo con la luz que ha acumulado en la testa. Permite acertar aunque el objetivo esté protegiéndose.", - }, - tachyonCutter: { - name: "Tajo Taquión", - effect: "Lanza una ráfaga de cuchillas formadas por partículas contra el objetivo y le inflige daño dos veces seguidas. No falla nunca.", - }, - hardPress: { - name: "Prensa Metálica", - effect: "Oprime con los brazos o las pinzas. Cuantos más PS le queden al objetivo, mayor será la potencia del movimiento.", - }, - dragonCheer: { - name: "Bramido Dragón", - effect: "Bramido de dragón que sube la moral de los aliados y aumenta sus probabilidades de asestar un golpe crítico. Es especialmente efectivo con aliados de tipo Dragón.", - }, - alluringVoice: { - name: "Canto Encantador", - effect: "Ataca con un canto angelical y, si las características del objetivo han aumentado en ese turno, lo deja confuso.", - }, - temperFlare: { - name: "Cólera Ardiente", - effect: "Arremete contra el objetivo tras dejarse llevar por la ira. Su potencia se duplica si el movimiento del usuario falló en el turno anterior.", - }, - supercellSlam: { - name: "Plancha Voltaica", - effect: "El usuario electrifica su cuerpo y salta en plancha sobre el objetivo. Si falla, se hiere a sí mismo.", - }, - psychicNoise: { - name: "Psicorruido", - effect: "Ataca emitiendo una onda sonora desagradable que impide al objetivo usar movimientos, habilidades y objetos equipados que recuperan PS durante dos turnos.", - }, - upperHand: { - name: "Palma Rauda", - effect: "Se anticipa al objetivo golpeándolo rápidamente con la palma y lo amedrenta. Falla si el objetivo no está preparando un movimiento de prioridad alta.", - }, - malignantChain: { - name: "Cadena Virulenta", - effect: "Apresa al objetivo con una cadena hecha de ponzoña que le inocula toxinas para minarle las fuerzas. Puede envenenar gravemente.", - }, -} as const; diff --git a/src/locales/es/nature.ts b/src/locales/es/nature.json similarity index 80% rename from src/locales/es/nature.ts rename to src/locales/es/nature.json index ddeff5aa0ab..a21fd327ef5 100644 --- a/src/locales/es/nature.ts +++ b/src/locales/es/nature.json @@ -1,6 +1,4 @@ -import { SimpleTranslationEntries } from "#app/interfaces/locales"; - -export const nature: SimpleTranslationEntries = { +{ "Hardy": "Fuerte", "Lonely": "Huraña", "Brave": "Audaz", @@ -26,4 +24,4 @@ export const nature: SimpleTranslationEntries = { "Sassy": "Grosera", "Careful": "Cauta", "Quirky": "Rara" -} as const; +} \ No newline at end of file diff --git a/src/locales/es/party-ui-handler.ts b/src/locales/es/party-ui-handler.json similarity index 84% rename from src/locales/es/party-ui-handler.ts rename to src/locales/es/party-ui-handler.json index cbbd6734b62..65552a1e1d5 100644 --- a/src/locales/es/party-ui-handler.ts +++ b/src/locales/es/party-ui-handler.json @@ -1,11 +1,4 @@ -import { SimpleTranslationEntries } from "#app/interfaces/locales"; - -export const partyUiHandler: SimpleTranslationEntries = { - "SEND_OUT": "Send Out", - "SUMMARY": "Summary", - "CANCEL": "Cancel", - "RELEASE": "Release", - "APPLY": "Apply", +{ "TEACH": "Enseñar", "SPLICE": "Fusionar", "UNSPLICE": "Separar", @@ -17,7 +10,6 @@ export const partyUiHandler: SimpleTranslationEntries = { "UNPAUSE_EVOLUTION": "Reanudar Evolución", "REVIVE": "Revivir", "RENAME": "Rename", - "choosePokemon": "Elige a un Pokémon.", "doWhatWithThisPokemon": "¿Que quieres hacer con este Pokémon?", "noEnergy": "¡A {{pokemonName}} no le quedan\nfuerzas para luchar!", @@ -34,13 +26,9 @@ export const partyUiHandler: SimpleTranslationEntries = { "changeQuantity": "Selecciona un objeto equipado para transferir.\nUsa < y > para cambiar la cantidad.", "selectAnotherPokemonToSplice": "Selecciona otro Pokémon para fusionar.", "cancel": "Salir", - - // Slot TM text "able": "Apto", "notAble": "No apto", "learned": "Aprendido", - - // Releasing messages "goodbye": "¡Adiós, {{pokemonName}}!", "byebye": "¡Chao, {{pokemonName}}!", "farewell": "¡Hasta luego, {{pokemonName}}!", @@ -50,5 +38,5 @@ export const partyUiHandler: SimpleTranslationEntries = { "illNeverForgetYou": "¡Nunca te olvidaré, {{pokemonName}}!", "untilWeMeetAgain": "¡Hasta que nos volvamos a encontrar, {{pokemonName}}!", "sayonara": "¡Sayonara, {{pokemonName}}!", - "smellYaLater": "¡Nos vemos luego, {{pokemonName}}!", -} as const; + "smellYaLater": "¡Nos vemos luego, {{pokemonName}}!" +} \ No newline at end of file diff --git a/src/locales/es/pokeball.json b/src/locales/es/pokeball.json new file mode 100644 index 00000000000..9eb2a9f0d44 --- /dev/null +++ b/src/locales/es/pokeball.json @@ -0,0 +1,8 @@ +{ + "pokeBall": "Poké Ball", + "greatBall": "Super Ball", + "ultraBall": "Ultra Ball", + "rogueBall": "Rogue Ball", + "masterBall": "Master Ball", + "luxuryBall": "Lujo Ball" +} \ No newline at end of file diff --git a/src/locales/es/pokeball.ts b/src/locales/es/pokeball.ts deleted file mode 100644 index c9b62cdd9ea..00000000000 --- a/src/locales/es/pokeball.ts +++ /dev/null @@ -1,10 +0,0 @@ -import { SimpleTranslationEntries } from "#app/interfaces/locales"; - -export const pokeball: SimpleTranslationEntries = { - "pokeBall": "Poké Ball", - "greatBall": "Super Ball", - "ultraBall": "Ultra Ball", - "rogueBall": "Rogue Ball", - "masterBall": "Master Ball", - "luxuryBall": "Lujo Ball", -} as const; diff --git a/src/locales/es/pokemon-form-battle.json b/src/locales/es/pokemon-form-battle.json new file mode 100644 index 00000000000..7af01f8f093 --- /dev/null +++ b/src/locales/es/pokemon-form-battle.json @@ -0,0 +1,8 @@ +{ + "mega": "Mega {{pokemonName}}", + "mega-x": "Mega {{pokemonName}} X", + "mega-y": "Mega {{pokemonName}} Y", + "primal": "{{pokemonName}} Primigenio", + "gigantamax": "G-Max {{pokemonName}}", + "eternamax": "E-Max {{pokemonName}}" +} \ No newline at end of file diff --git a/src/locales/es/pokemon-form.ts b/src/locales/es/pokemon-form.json similarity index 70% rename from src/locales/es/pokemon-form.ts rename to src/locales/es/pokemon-form.json index 7098ba597f7..c46521d78da 100644 --- a/src/locales/es/pokemon-form.ts +++ b/src/locales/es/pokemon-form.json @@ -1,24 +1,4 @@ -import { SimpleTranslationEntries } from "#app/interfaces/locales"; - -export const battlePokemonForm: SimpleTranslationEntries = { - "mega": "Mega {{pokemonName}}", - "mega-x": "Mega {{pokemonName}} X", - "mega-y": "Mega {{pokemonName}} Y", - "primal": "{{pokemonName}} Primigenio", - "gigantamax": "G-Max {{pokemonName}}", - "eternamax": "E-Max {{pokemonName}}", - - "megaChange": "{{preName}} Mega Evolved\ninto {{pokemonName}}!", - "gigantamaxChange": "{{preName}} Gigantamaxed\ninto {{pokemonName}}!", - "eternamaxChange": "{{preName}} Eternamaxed\ninto {{pokemonName}}!", - "revertChange": "{{pokemonName}} reverted\nto its original form!", - "formChange": "{{preName}} changed form!", - "disguiseChange": "Its disguise served it as a decoy!", -} as const; - -export const pokemonForm: SimpleTranslationEntries = { - // Starters forms - // 1G +{ "pikachuCosplay": "Coqueta", "pikachuCoolCosplay": "Roquera", "pikachuBeautyCosplay": "Aristócrata", @@ -27,8 +7,6 @@ export const pokemonForm: SimpleTranslationEntries = { "pikachuToughCosplay": "Enmascarada", "pikachuPartner": "Compañero", "eeveePartner": "Compañero", - // 2G - "pichuSpiky": "Spiky", "unownA": "A", "unownB": "B", "unownC": "C", @@ -57,12 +35,10 @@ export const pokemonForm: SimpleTranslationEntries = { "unownZ": "Z", "unownExclamation": "!", "unownQuestion": "?", - // 3G "castformSunny": "Sol", "castformRainy": "Lluvia", "castformSnowy": "Nieve", "deoxysNormal": "Normal", - // 4G "burmyPlant": "Planta", "burmySandy": "Arena", "burmyTrash": "Basura", @@ -73,9 +49,6 @@ export const pokemonForm: SimpleTranslationEntries = { "rotomFrost": "Frío", "rotomFan": "Ventilador", "rotomMow": "Corte", - "giratinaAltered": "Altered", - "shayminLand": "Land", - // 5G "basculinRedStriped": "Raya Roja", "basculinBlueStriped": "Raya Azul", "basculinWhiteStriped": "Raya Blanca", @@ -83,12 +56,8 @@ export const pokemonForm: SimpleTranslationEntries = { "deerlingSummer": "Verano", "deerlingAutumn": "Otoño", "deerlingWinter": "Invierno", - "tornadusIncarnate": "Incarnate", - "thundurusIncarnate": "Incarnate", - "landorusIncarnate": "Incarnate", - "keldeoOrdinary": "Ordinary", - "meloettaAria": "Aria", - // 6G + "meloettaAria": "Lírica", + "meloettaPirouette": "Danza", "froakieBattleBond": "Fuerte Afecto", "scatterbugMeadow": "Floral", "scatterbugIcySnow": "Polar", @@ -134,7 +103,6 @@ export const pokemonForm: SimpleTranslationEntries = { "zygarde50Pc": "Zygarde al 50%", "zygarde10Pc": "Zygarde al 10%", "zygardeComplete": "Zygarde Completo", - // 7G "oricorioBaile": "Apasionado", "oricorioPompom": "Animado", "oricorioPau": "Plácido", @@ -158,18 +126,12 @@ export const pokemonForm: SimpleTranslationEntries = { "mimikyuBusted": "Descubierta", "magearnaOriginal": "Vetusto", "marshadowZenith": "Cénit", - // 8G "sinisteaPhony": "Falsificada", "sinisteaAntique": "Auténtica", "eiscueNoIce": "Cara Deshielo", "indeedeeMale": "Macho", "indeedeeFemale": "Hembra", - "morpekoFullBelly": "Full Belly", - "zacianHeroOfManyBattles": "Hero Of Many Battles", - "zamazentaHeroOfManyBattles": "Hero Of Many Battles", "zarudeDada": "Papá", - "enamorusIncarnate": "Incarnate", - // 9G "squawkabillyGreenPlumage": "Plumaje Verde", "squawkabillyBluePlumage": "Plumaje Azul", "squawkabillyYellowPlumage": "Plumaje Amarillo", @@ -179,20 +141,9 @@ export const pokemonForm: SimpleTranslationEntries = { "tatsugiriStretchy": "Estirada", "gimmighoulChest": "Cofre", "gimmighoulRoaming": "Andante", - "koraidonApexBuild": "Apex Build", - "koraidonLimitedBuild":"Limited Build", - "koraidonSprintingBuild":"Sprinting Build", - "koraidonSwimmingBuild":"Swimming Build", - "koraidonGlidingBuild":"Gliding Build", - "miraidonUltimateMode":"Ultimate Mode", - "miraidonLowPowerMode":"Low Power Mode", - "miraidonDriveMode":"Drive Mode", - "miraidonAquaticMode":"Aquatic Mode", - "miraidonGlideMode":"Glide Mode", "poltchageistCounterfeit": "Imitación", "poltchageistArtisan": "Original", "paldeaTaurosCombat": "Combatiente", "paldeaTaurosBlaze": "Ardiente", - "paldeaTaurosAqua": "Acuático", - -} as const; + "paldeaTaurosAqua": "Acuático" +} \ No newline at end of file diff --git a/src/locales/es/pokemon-info-container.json b/src/locales/es/pokemon-info-container.json new file mode 100644 index 00000000000..7159c7eae71 --- /dev/null +++ b/src/locales/es/pokemon-info-container.json @@ -0,0 +1,6 @@ +{ + "moveset": "Movimientos", + "gender": "Género:", + "ability": "Habilid:", + "nature": "Natur:" +} \ No newline at end of file diff --git a/src/locales/es/pokemon-info-container.ts b/src/locales/es/pokemon-info-container.ts deleted file mode 100644 index 6f97f29ee39..00000000000 --- a/src/locales/es/pokemon-info-container.ts +++ /dev/null @@ -1,8 +0,0 @@ -import { SimpleTranslationEntries } from "#app/interfaces/locales"; - -export const pokemonInfoContainer: SimpleTranslationEntries = { - "moveset": "Movimientos", - "gender": "Género:", - "ability": "Habilid:", - "nature": "Natur:", -} as const; diff --git a/src/locales/es/pokemon-info.ts b/src/locales/es/pokemon-info.json similarity index 61% rename from src/locales/es/pokemon-info.ts rename to src/locales/es/pokemon-info.json index 56fd7130c0a..241f5e7c5d0 100644 --- a/src/locales/es/pokemon-info.ts +++ b/src/locales/es/pokemon-info.json @@ -1,24 +1,22 @@ -import { PokemonInfoTranslationEntries } from "#app/interfaces/locales"; - -export const pokemonInfo: PokemonInfoTranslationEntries = { - Stat: { +{ + "Stat": { "HP": "PS", "HPshortened": "PS", "ATK": "Ataque", - "ATKshortened": "Ata", + "ATKshortened": "Atq.", "DEF": "Defensa", - "DEFshortened": "Def", - "SPATK": "At. Esp.", - "SPATKshortened": "AtEsp", + "DEFshortened": "Def.", + "SPATK": "Atq. Esp.", + "SPATKshortened": "AtqEs.", "SPDEF": "Def. Esp.", - "SPDEFshortened": "DefEsp", + "SPDEFshortened": "DefEs.", "SPD": "Velocidad", "SPDshortened": "Veloc.", - "ACC": "Accuracy", - "EVA": "Evasiveness" + "ACC": "Precisión", + "EVA": "Evasión", + "HPStat": "PS" }, - - Type: { + "Type": { "UNKNOWN": "Desconocido", "NORMAL": "Normal", "FIGHTING": "Lucha", @@ -38,6 +36,6 @@ export const pokemonInfo: PokemonInfoTranslationEntries = { "DRAGON": "Dragón", "DARK": "Siniestro", "FAIRY": "Hada", - "STELLAR": "Astral", - }, -} as const; + "STELLAR": "Astral" + } +} diff --git a/src/locales/es/pokemon-summary.ts b/src/locales/es/pokemon-summary.json similarity index 77% rename from src/locales/es/pokemon-summary.ts rename to src/locales/es/pokemon-summary.json index 2eca4f118c6..e47335c8394 100644 --- a/src/locales/es/pokemon-summary.ts +++ b/src/locales/es/pokemon-summary.json @@ -1,6 +1,4 @@ -import { TranslationEntries } from "#app/interfaces/locales"; - -export const pokemonSummary: TranslationEntries = { +{ "pokemonInfo": "Info. Pokémon", "status": "Estado", "powerAccuracyCategory": "Potencia\nPrecisión\nCategoría", @@ -11,10 +9,9 @@ export const pokemonSummary: TranslationEntries = { "expPoints": "Puntos Exp.", "nextLv": "Nv. siguiente", "cancel": "Salir", - "memoString": "Naturaleza {{natureFragment}},\n{{metFragment}}", "metFragment": { "normal": "encontrado al Nv. {{level}},\n{{biome}}.", - "apparently": "aparentemente encontrado al Nv. {{level}},\n{{biome}}.", - }, -} as const; + "apparently": "aparentemente encontrado al Nv. {{level}},\n{{biome}}." + } +} \ No newline at end of file diff --git a/src/locales/es/pokemon.ts b/src/locales/es/pokemon.json similarity index 99% rename from src/locales/es/pokemon.ts rename to src/locales/es/pokemon.json index 93f13aed8b0..1c2b2cd97a4 100644 --- a/src/locales/es/pokemon.ts +++ b/src/locales/es/pokemon.json @@ -1,6 +1,4 @@ -import { SimpleTranslationEntries } from "#app/interfaces/locales"; - -export const pokemon: SimpleTranslationEntries = { +{ "bulbasaur": "Bulbasaur", "ivysaur": "Ivysaur", "venusaur": "Venusaur", @@ -1082,5 +1080,5 @@ export const pokemon: SimpleTranslationEntries = { "hisui_decidueye": "Decidueye", "paldea_tauros": "Tauros", "paldea_wooper": "Wooper", - "bloodmoon_ursaluna": "Ursaluna", -} as const; + "bloodmoon_ursaluna": "Ursaluna" +} \ No newline at end of file diff --git a/src/locales/es/run-history.json b/src/locales/es/run-history.json new file mode 100644 index 00000000000..99b30586621 --- /dev/null +++ b/src/locales/es/run-history.json @@ -0,0 +1,37 @@ +{ + "victory": "¡Victoria!", + "defeatedWild": "Derrotado por ", + "defeatedTrainer": "Derrotado por ", + "defeatedTrainerDouble": "Derrotado por un dúo", + "defeatedRival": "Derrotado por el rival", + "defeated": "Derrotado", + "defeatedWild_female": "Derrotada por ", + "defeatedTrainer_female": "Derrotada por ", + "defeatedTrainerDouble_female": "Derrotada por un dúo", + "defeatedRival_female": "Derrotada por el rival", + "defeated_female": "Derrotada", + "luck": "Suerte", + "score": "Puntuación", + "mode": "Modo", + "challengeRules": "Regla(s)", + "challengeMonoGen1": "Gen I", + "challengeMonoGen2": "Gen II", + "challengeMonoGen3": "Gen III", + "challengeMonoGen4": "Gen IV", + "challengeMonoGen5": "Gen V", + "challengeMonoGen6": "Gen VI", + "challengeMonoGen7": "Gen VII", + "challengeMonoGen8": "Gen VIII", + "challengeMonoGen9": "Gen IX", + "playerItems": "Objetos del jugador", + "personalBest": "¡Récord personal!", + "SPDshortened": "Vel.", + "runInfo": "Info. de partida", + "money": "Dinero", + "runLength": "Duración de partida", + "viewHeldItems": "Objetos equipados", + "hallofFameText": "¡Bienvenido al Hall de la Fama!", + "hallofFameText_female": "¡Bienvenida al Hall de la Fama!", + "viewHallOfFame": "¡Ver Hall de la Fama!", + "viewEndingSplash": "¡Ver la imagen final!" +} \ No newline at end of file diff --git a/src/locales/es/save-slot-select-ui-handler.json b/src/locales/es/save-slot-select-ui-handler.json new file mode 100644 index 00000000000..bcb93a5c2cc --- /dev/null +++ b/src/locales/es/save-slot-select-ui-handler.json @@ -0,0 +1,7 @@ +{ + "overwriteData": "¿Sobrescribir los datos en la ranura seleccionada?", + "loading": "Cargando...", + "wave": "Oleada", + "lv": "Nv", + "empty": "Vacío" +} \ No newline at end of file diff --git a/src/locales/es/save-slot-select-ui-handler.ts b/src/locales/es/save-slot-select-ui-handler.ts deleted file mode 100644 index 645afd453a9..00000000000 --- a/src/locales/es/save-slot-select-ui-handler.ts +++ /dev/null @@ -1,9 +0,0 @@ -import { SimpleTranslationEntries } from "#app/interfaces/locales"; - -export const saveSlotSelectUiHandler: SimpleTranslationEntries = { - "overwriteData": "¿Sobrescribir los datos en la ranura seleccionada?", - "loading": "Cargando...", - "wave": "Oleada", - "lv": "Nv", - "empty": "Vacío", -} as const; diff --git a/src/locales/es/settings.json b/src/locales/es/settings.json new file mode 100644 index 00000000000..9c16fbb0fd6 --- /dev/null +++ b/src/locales/es/settings.json @@ -0,0 +1,107 @@ +{ + "boy": "Chico", + "girl": "Chica", + "general": "General", + "display": "Pantalla", + "audio": "Audio", + "gamepad": "Mando", + "keyboard": "Teclado", + "gameSpeed": "Veloc. del juego", + "hpBarSpeed": "Veloc. barra PS", + "expGainsSpeed": "Veloc. de EXP", + "expPartyDisplay": "Mostrar EXP del Equipo", + "skipSeenDialogues": "Saltar diálogos leídos", + "battleStyle": "Estilo de lucha", + "enableRetries": "Activar reintento", + "hideIvs": "Ocultar escáner de IVs", + "tutorials": "Tutoriales", + "touchControls": "Control táctil", + "vibrations": "Vibración", + "normal": "Normal", + "fast": "+1", + "faster": "+2", + "skip": "Saltar", + "levelUpNotifications": "Aumentos de nivel", + "on": "Sí", + "off": "No", + "switch": "Cambiar", + "set": "Mantener", + "auto": "Auto.", + "disabled": "Desact.", + "language": "Idioma", + "change": "Cambiar", + "uiTheme": "Color UI", + "default": "Predet.", + "legacy": "Clásico", + "windowType": "Ventana", + "moneyFormat": "Formato dinero", + "damageNumbers": "Cifras de daño", + "simple": "Simple", + "fancy": "Elegante", + "abbreviated": "Abreviado", + "moveAnimations": "Animación de movs.", + "showStatsOnLevelUp": "Estadísticas al aum. nivel", + "candyUpgradeNotification": "Aviso de caramelos", + "passivesOnly": "Solo pasivas", + "candyUpgradeDisplay": "Muestra de caramelos", + "icon": "Icono", + "animation": "Animación", + "moveInfo": "Info. de movimientos", + "showMovesetFlyout": "Descripción de movimientos", + "showArenaFlyout": "Descripción de escenarios", + "showTimeOfDayWidget": "Mostrar hora del día", + "timeOfDayAnimation": "Animación hora del día", + "bounce": "Rebote", + "timeOfDay_back": "Vuelta", + "spriteSet": "Set de sprites", + "consistent": "Consistente", + "mixedAnimated": "Mixto", + "fusionPaletteSwaps": "Colores de fusión", + "playerGender": "Género del jugador", + "typeHints": "Pistas de tipos", + "masterVolume": "Volumen total", + "bgmVolume": "Volumen música", + "fieldVolume": "Volumen escenario", + "seVolume": "Volumen efectos", + "uiVolume": "Volumen sistema", + "musicPreference": "Preferencia musical", + "mixed": "Mixta", + "gamepadPleasePlug": "Conecta un mando o pulsa un botón", + "delete": "Eliminar", + "keyboardPleasePress": "Pulsa una tecla de tu teclado", + "reset": "Restablecer", + "requireReload": "Requiere reinicio", + "action": "Acción", + "back": "Atrás", + "pressToBind": "Pulsa para vincular", + "pressButton": "Pulsa un botón...", + "buttonUp": "Arriba", + "buttonDown": "Abajo", + "buttonLeft": "Izquierda", + "buttonRight": "Derecha", + "buttonAction": "Acción", + "buttonMenu": "Menú", + "buttonSubmit": "Confirmar", + "buttonCancel": "Cancelar", + "buttonStats": "Estadísticas", + "buttonCycleForm": "Cambiar forma", + "buttonCycleShiny": "Cambiar shiny", + "buttonCycleGender": "Cambiar género", + "buttonCycleAbility": "Cambiar habilidad", + "buttonCycleNature": "Cambiar naturaleza", + "buttonCycleVariant": "Cambiar variante", + "buttonSpeedUp": "Acelerar", + "buttonSlowDown": "Ralentizar", + "alt": " (Alt.)", + "mute": "Silenciar", + "controller": "Mando", + "gamepadSupport": "Soporte de mando", + "showBgmBar": "Mostrar título de canción", + "moveTouchControls": "Controles táctiles", + "shopOverlayOpacity": "Opacidad de la fase de compra", + "shopCursorTarget": "Cursor de la tienda", + "items": "Objetos", + "reroll": "Actualizar", + "shop": "Tienda", + "checkTeam": "Ver equipo" +} diff --git a/src/locales/es/settings.ts b/src/locales/es/settings.ts deleted file mode 100644 index c7f723fe80c..00000000000 --- a/src/locales/es/settings.ts +++ /dev/null @@ -1,102 +0,0 @@ -import { SimpleTranslationEntries } from "#app/interfaces/locales.js"; - -export const settings: SimpleTranslationEntries = { - "boy": "Chico", - "girl": "Chica", - "general": "General", - "display": "Display", - "audio": "Audio", - "gamepad": "Gamepad", - "keyboard": "Keyboard", - "gameSpeed": "Game Speed", - "hpBarSpeed": "HP Bar Speed", - "expGainsSpeed": "EXP Gains Speed", - "expPartyDisplay": "Show EXP Party", - "skipSeenDialogues": "Skip Seen Dialogues", - "battleStyle": "Battle Style", - "enableRetries": "Enable Retries", - "hideIvs": "Hide IV scanner", - "tutorials": "Tutorials", - "touchControls": "Touch Controls", - "vibrations": "Vibrations", - "normal": "Normal", - "fast": "Fast", - "faster": "Faster", - "skip": "Skip", - "levelUpNotifications": "Level Up Notifications", - "on": "On", - "off": "Off", - "switch": "Switch", - "set": "Set", - "auto": "Auto", - "disabled": "Disabled", - "language": "Language", - "change": "Change", - "uiTheme": "UI Theme", - "default": "Default", - "legacy": "Legacy", - "windowType": "Window Type", - "moneyFormat": "Money Format", - "damageNumbers": "Damage Numbers", - "simple": "Simple", - "fancy": "Fancy", - "abbreviated": "Abbreviated", - "moveAnimations": "Move Animations", - "showStatsOnLevelUp": "Show Stats on Level Up", - "candyUpgradeNotification": "Candy Upgrade Notification", - "passivesOnly": "Passives Only", - "candyUpgradeDisplay": "Candy Upgrade Display", - "icon": "Icon", - "animation": "Animation", - "moveInfo": "Move Info", - "showMovesetFlyout": "Show Moveset Flyout", - "showArenaFlyout": "Show Arena Flyout", - "showTimeOfDayWidget": "Show Time of Day Widget", - "timeOfDayAnimation": "Time of Day Animation", - "bounce": "Bounce", - "timeOfDay_back": "Back", - "spriteSet": "Sprite Set", - "consistent": "Consistent", - "mixedAnimated": "Mixed Animated", - "fusionPaletteSwaps": "Fusion Palette Swaps", - "playerGender": "Player Gender", - "typeHints": "Type Hints", - "masterVolume": "Master Volume", - "bgmVolume": "BGM Volume", - "seVolume": "SE Volume", - "musicPreference": "Music Preference", - "mixed": "Mixed", - "gamepadPleasePlug": "Please Plug in a Gamepad or Press a Button", - "delete": "Delete", - "keyboardPleasePress": "Please Press a Key on Your Keyboard", - "reset": "Reset", - "requireReload": "Reload Required", - "action": "Action", - "back": "Back", - "pressToBind": "Press to Bind", - "pressButton": "Press a Button...", - "buttonUp": "Up", - "buttonDown": "Down", - "buttonLeft": "Left", - "buttonRight": "Right", - "buttonAction": "Action", - "buttonMenu": "Menu", - "buttonSubmit": "Submit", - "buttonCancel": "Cancel", - "buttonStats": "Stats", - "buttonCycleForm": "Cycle Form", - "buttonCycleShiny": "Cycle Shiny", - "buttonCycleGender": "Cycle Gender", - "buttonCycleAbility": "Cycle Ability", - "buttonCycleNature": "Cycle Nature", - "buttonCycleVariant": "Cycle Variant", - "buttonSpeedUp": "Speed Up", - "buttonSlowDown": "Slow Down", - "alt": " (Alt)", - "mute": "Mute", - "controller": "Controller", - "gamepadSupport": "Gamepad Support", - "showBgmBar": "Show Music Names", - "moveTouchControls": "Move Touch Controls", - "shopOverlayOpacity": "Opacidad de la fase de compra" -} as const; diff --git a/src/locales/es/splash-messages.ts b/src/locales/es/splash-messages.json similarity index 89% rename from src/locales/es/splash-messages.ts rename to src/locales/es/splash-messages.json index 47f9fa1f98f..90ce3593b89 100644 --- a/src/locales/es/splash-messages.ts +++ b/src/locales/es/splash-messages.json @@ -1,6 +1,4 @@ -import { SimpleTranslationEntries } from "#app/interfaces/locales"; - -export const splashMessages: SimpleTranslationEntries = { +{ "battlesWon": "¡Batallas ganadas!", "joinTheDiscord": "¡Únete al Discord!", "infiniteLevels": "¡Niveles infinitos!", @@ -34,5 +32,5 @@ export const splashMessages: SimpleTranslationEntries = { "alsoTryRadicalRed": "¡Prueba también Radical Red!", "eeveeExpo": "¡Eevee Expo!", "ynoproject": "¡YNOproject!", - "breedersInSpace": "Criadores... ¡EN EL ESPACIO!", -} as const; + "breedersInSpace": "Criadores... ¡EN EL ESPACIO!" +} diff --git a/src/locales/es/starter-select-ui-handler.ts b/src/locales/es/starter-select-ui-handler.json similarity index 69% rename from src/locales/es/starter-select-ui-handler.ts rename to src/locales/es/starter-select-ui-handler.json index 1a2be0d8b75..69cc937d4e3 100644 --- a/src/locales/es/starter-select-ui-handler.ts +++ b/src/locales/es/starter-select-ui-handler.json @@ -1,13 +1,5 @@ -import { SimpleTranslationEntries } from "#app/interfaces/locales"; - -/** - * The menu namespace holds most miscellaneous text that isn't directly part of the game's - * contents or directly related to Pokemon data. This includes menu navigation, settings, - * account interactions, descriptive text, etc. - */ -export const starterSelectUiHandler: SimpleTranslationEntries = { +{ "confirmStartTeam": "¿Comenzar con estos Pokémon?", - "confirmExit": "Do you want to exit?", "invalidParty": "¡Este equipo no es válido!", "gen1": "I", "gen2": "II", @@ -28,15 +20,12 @@ export const starterSelectUiHandler: SimpleTranslationEntries = { "toggleIVs": "Mostrar IVs", "manageMoves": "Cambiar movs.", "manageNature": "Cambiar natur.", - "addToFavorites": "Add to Favorites", - "removeFromFavorites": "Remove from Favorites", "useCandies": "Usar Caramelos", "selectNature": "Elige Natur.", "selectMoveSwapOut": "Elige el movimiento que sustituir.", "selectMoveSwapWith": "Elige el movimiento que sustituirá a", "unlockPassive": "Añadir Pasiva", "reduceCost": "Reducir Coste", - "sameSpeciesEgg": "Buy an Egg", "cycleShiny": ": Shiny", "cycleForm": ": Forma", "cycleGender": ": Género", @@ -49,4 +38,4 @@ export const starterSelectUiHandler: SimpleTranslationEntries = { "locked": "Bloqueado", "disabled": "No disponible", "uncaught": "No capturado" -}; +} \ No newline at end of file diff --git a/src/locales/es/status-effect.json b/src/locales/es/status-effect.json new file mode 100644 index 00000000000..eeb8c251e8a --- /dev/null +++ b/src/locales/es/status-effect.json @@ -0,0 +1,65 @@ +{ + "none": { + "name": "Ninguno", + "description": "", + "obtain": "", + "obtainSource": "", + "activation": "", + "overlap": "", + "heal": "" + }, + "poison": { + "name": "Envenenamiento", + "description": "envenenamiento", + "obtain": "¡{{pokemonNameWithAffix}}\nha sido envenenado!", + "obtainSource": "¡{{pokemonNameWithAffix}}\nha sido envenenado por {{sourceText}}!", + "activation": "¡El veneno resta PS a {{pokemonNameWithAffix}}!", + "overlap": "¡{{pokemonNameWithAffix}} ya\nestá envenenado!", + "heal": "¡{{pokemonNameWithAffix}} ya no\nestá envenenado!" + }, + "toxic": { + "name": "Envenenamiento grave", + "description": "envenenamiento grave", + "obtain": "¡{{pokemonNameWithAffix}}\nha sido gravemente envenenado!", + "obtainSource": "¡{{pokemonNameWithAffix}}\nha sido gravemente envenenado por {{sourceText}}!", + "activation": "¡El veneno resta PS a {{pokemonNameWithAffix}}!", + "overlap": "¡{{pokemonNameWithAffix}} ya\nestá envenenado!", + "heal": "¡{{pokemonNameWithAffix}} ya no\nestá envenenado!" + }, + "paralysis": { + "name": "Parálisis", + "description": "parálisis", + "obtain": "¡{{pokemonNameWithAffix}} sufre parálisis!\nQuizás no se pueda mover.", + "obtainSource": "¡{{pokemonNameWithAffix}} sufre parálisis por {{sourceText}}!\nQuizás no se pueda mover.", + "activation": "¡{{pokemonNameWithAffix}} está paralizado!\n¡No se puede mover!", + "overlap": "¡{{pokemonNameWithAffix}} ya\nestá paralizado!", + "heal": "¡{{pokemonNameWithAffix}} ya no\nestá paralizado!" + }, + "sleep": { + "name": "Dormir", + "description": "dormir", + "obtain": "¡{{pokemonNameWithAffix}}\nse ha dormido!", + "obtainSource": "¡{{pokemonNameWithAffix}}\nse ha dormido\npor culpa de {{sourceText}}!", + "activation": "¡{{pokemonNameWithAffix}} está/ndormido como un tronco.", + "overlap": "¡{{pokemonNameWithAffix}} ya\nestá dormido!", + "heal": "¡{{pokemonNameWithAffix}} se despertó!" + }, + "freeze": { + "name": "Congelamiento", + "description": "congelamiento", + "obtain": "¡{{pokemonNameWithAffix}}\nha sido congelado!", + "obtainSource": "¡{{pokemonNameWithAffix}}\nha sido congelado por {{sourceText}}!", + "activation": "¡{{pokemonNameWithAffix}} está\ncongelado!", + "overlap": "¡{{pokemonNameWithAffix}} ya\nestá congelado!", + "heal": "¡{{pokemonNameWithAffix}} se\nha descongelado!" + }, + "burn": { + "name": "Quemadura", + "description": "quemadura", + "obtain": "¡{{pokemonNameWithAffix}}\nse ha quemado!", + "obtainSource": "¡{{pokemonNameWithAffix}}\nse ha quemado por {{sourceText}}!", + "activation": "¡{{pokemonNameWithAffix}} se resiente\nde las quemaduras!", + "overlap": "¡{{pokemonNameWithAffix}} ya\nestá quemado!", + "heal": "¡{{pokemonNameWithAffix}} ya no\nestá quemado!" + } +} \ No newline at end of file diff --git a/src/locales/es/status-effect.ts b/src/locales/es/status-effect.ts deleted file mode 100644 index 975288fc451..00000000000 --- a/src/locales/es/status-effect.ts +++ /dev/null @@ -1,67 +0,0 @@ -import { StatusEffectTranslationEntries } from "#app/interfaces/locales.js"; - -export const statusEffect: StatusEffectTranslationEntries = { - none: { - name: "Ninguno", - description: "", - obtain: "", - obtainSource: "", - activation: "", - overlap: "", - heal: "" - }, - poison: { - name: "Envenenamiento", - description: "envenenamiento", - obtain: "¡{{pokemonNameWithAffix}}\nha sido envenenado!", - obtainSource: "¡{{pokemonNameWithAffix}}\nha sido envenenado por {{sourceText}}!", - activation: "¡El veneno resta PS a {{pokemonNameWithAffix}}!", - overlap: "¡{{pokemonNameWithAffix}} ya\nestá envenenado!", - heal: "¡{{pokemonNameWithAffix}} ya no\nestá envenenado!" - }, - toxic: { - name: "Envenenamiento grave", - description: "envenenamiento grave", - obtain: "¡{{pokemonNameWithAffix}}\nha sido gravemente envenenado!", - obtainSource: "¡{{pokemonNameWithAffix}}\nha sido gravemente envenenado por {{sourceText}}!", - activation: "¡El veneno resta PS a {{pokemonNameWithAffix}}!", - overlap: "¡{{pokemonNameWithAffix}} ya\nestá envenenado!", - heal: "¡{{pokemonNameWithAffix}} ya no\nestá envenenado!" - }, - paralysis: { - name: "Parálisis", - description: "parálisis", - obtain: "¡{{pokemonNameWithAffix}} sufre parálisis!\nQuizás no se pueda mover.", - obtainSource: "¡{{pokemonNameWithAffix}} sufre parálisis por {{sourceText}}!\nQuizás no se pueda mover.", - activation: "¡{{pokemonNameWithAffix}} está paralizado!\n¡No se puede mover!", - overlap: "¡{{pokemonNameWithAffix}} ya\nestá paralizado!", - heal: "¡{{pokemonNameWithAffix}} ya no\nestá paralizado!" - }, - sleep: { - name: "Dormir", - description: "dormir", - obtain: "¡{{pokemonNameWithAffix}}\nse ha dormido!", - obtainSource: "¡{{pokemonNameWithAffix}}\nse ha dormido\npor culpa de {{sourceText}}!", - activation: "¡{{pokemonNameWithAffix}} está/ndormido como un tronco.", - overlap: "¡{{pokemonNameWithAffix}} ya\nestá dormido!", - heal: "¡{{pokemonNameWithAffix}} se despertó!" - }, - freeze: { - name: "Congelamiento", - description: "congelamiento", - obtain: "¡{{pokemonNameWithAffix}}\nha sido congelado!", - obtainSource: "¡{{pokemonNameWithAffix}}\nha sido congelado por {{sourceText}}!", - activation: "¡{{pokemonNameWithAffix}} está\ncongelado!", - overlap: "¡{{pokemonNameWithAffix}} ya\nestá congelado!", - heal: "¡{{pokemonNameWithAffix}} se\nha descongelado!" - }, - burn: { - name: "Quemadura", - description: "quemadura", - obtain: "¡{{pokemonNameWithAffix}}\nse ha quemado!", - obtainSource: "¡{{pokemonNameWithAffix}}\nse ha quemado por {{sourceText}}!", - activation: "¡{{pokemonNameWithAffix}} se resiente\nde las quemaduras!", - overlap: "¡{{pokemonNameWithAffix}} ya\nestá quemado!", - heal: "¡{{pokemonNameWithAffix}} ya no\nestá quemado!" - }, -} as const; diff --git a/src/locales/es/terrain.json b/src/locales/es/terrain.json new file mode 100644 index 00000000000..9e26dfeeb6e --- /dev/null +++ b/src/locales/es/terrain.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/src/locales/es/trainer-classes.json b/src/locales/es/trainer-classes.json new file mode 100644 index 00000000000..0677193e4f8 --- /dev/null +++ b/src/locales/es/trainer-classes.json @@ -0,0 +1,102 @@ +{ + "ace_trainer": "Entrenador Guay", + "ace_trainer_female": "Entrenadora Guay", + "ace_duo": "Pareja Guay", + "artist": "Artista", + "artist_female": "Artista", + "backers": "Hinchas", + "backpacker": "Mochilero", + "backpacker_female": "Mochilera", + "backpackers": "Mochileros", + "baker": "Pastelera", + "battle_girl": "Luchadora", + "beauty": "Modelo", + "beginners": "Principiantes", + "biker": "Motorista", + "black_belt": "Karateka", + "breeder": "Criapokémon", + "breeder_female": "Criapokémon", + "breeders": "Criadores", + "clerk": "Empresario", + "clerk_female": "Oficinista", + "colleagues": "Colegas Oficina", + "crush_kin": "Luchadores", + "cyclist": "Ciclista", + "cyclist_female": "Ciclista", + "cyclists": "Ciclistas", + "dancer": "Breakdancer", + "dancer_female": "Bailarina", + "depot_agent": "Ferroviario", + "doctor": "Enfermero", + "doctor_female": "Enfermera", + "firebreather": "Comefuegos", + "fisherman": "Pescador", + "fisherman_female": "Pescadora", + "gentleman": "Aristócrata", + "guitarist": "Guitarrista", + "guitarist_female": "Guitarrista", + "harlequin": "Arlequín", + "hiker": "Montañero", + "hooligans": "Pandilleros", + "hoopster": "Pívot", + "infielder": "Pitcher", + "janitor": "Limpiador", + "lady": "Damisela", + "lass": "Chica", + "linebacker": "Quarterback", + "maid": "Criada", + "madame": "Señora", + "medical_team": "Equipo Médico", + "musician": "Cantautor", + "hex_maniac": "Bruja", + "nurse": "Enfermera", + "nursery_aide": "Seño", + "officer": "Policía", + "parasol_lady": "Dama Parasol", + "pilot": "Piloto", + "pokéfan": "Pokéfan", + "pokéfan_female": "Pokéfan", + "pokéfan_family": "Pareja de Pokéfans", + "preschooler": "Preescolar", + "preschooler_female": "Preescolar", + "preschoolers": "Preescolares", + "psychic": "Médium", + "psychic_female": "Mentalista", + "psychics": "Pareja Médium", + "restaurant_staff": "Personal Restaurante", + "rich": "Bien", + "rich_female": "Bien", + "rich_boy": "Niño Bien", + "rich_couple": "Pareja Bien", + "rich_kid": "Niño Bien", + "rich_kid_female": "Niña Bien", + "rich_kids": "Niños Bien", + "roughneck": "Calvo", + "sailor": "Marinero", + "scientist": "Científico", + "scientist_female": "Científica", + "scientists": "Científicos", + "smasher": "Tenista", + "snow_worker": "Operario Nieve", + "snow_worker_female": "Operaria Nieve", + "striker": "Delantero", + "school_kid": "Colegial", + "school_kid_female": "Colegial", + "school_kids": "Colegiales", + "swimmer": "Nadador", + "swimmer_female": "Nadadora", + "swimmers": "Nadadores", + "twins": "Gemelas", + "veteran": "Veterano", + "veteran_female": "Veterana", + "veteran_duo": "Dúo Veterano", + "waiter": "Camarero", + "waitress": "Camarera", + "worker": "Operario", + "worker_female": "Operaria", + "workers": "Operarios", + "youngster": "Joven", + "aether_grunt": "Empleado de la Fundación Æther", + "aether_grunt_female": "Empleada de la Fundación Æther", + "aether_grunts": "Empleados de la Fundación Æther" +} diff --git a/src/locales/es/trainer-names.json b/src/locales/es/trainer-names.json new file mode 100644 index 00000000000..c6758366db7 --- /dev/null +++ b/src/locales/es/trainer-names.json @@ -0,0 +1,160 @@ +{ + "brock": "Brock", + "misty": "Misty", + "lt_surge": "Tt. Surge", + "erika": "Erika", + "janine": "Sachiko", + "sabrina": "Sabrina", + "blaine": "Blaine", + "giovanni": "Giovanni", + "falkner": "Pegaso", + "bugsy": "Antón", + "whitney": "Blanca", + "morty": "Morti", + "chuck": "Aníbal", + "jasmine": "Yasmina", + "pryce": "Fredo", + "clair": "Débora", + "roxanne": "Petra", + "brawly": "Marcial", + "wattson": "Erico", + "flannery": "Candela", + "norman": "Norman", + "winona": "Alana", + "tate": "Vito", + "liza": "Leti", + "juan": "Galán", + "roark": "Roco", + "gardenia": "Gardenia", + "maylene": "Brega", + "crasher_wake": "Mananti", + "fantina": "Fantina", + "byron": "Acerón", + "candice": "Inverna", + "volkner": "Lectro", + "cilan": "Millo", + "chili": "Zeo", + "cress": "Maiz", + "cheren": "Cheren", + "lenora": "Aloe", + "roxie": "Hiedra", + "burgh": "Camus", + "elesa": "Camila", + "clay": "Yakón", + "skyla": "Gerania", + "brycen": "Junco", + "drayden": "Lirio", + "marlon": "Ciprián", + "viola": "Violeta", + "grant": "Lino", + "korrina": "Corelia", + "ramos": "Amaro", + "clemont": "Lem", + "valerie": "Valeria", + "olympia": "Ástrid", + "wulfric": "Édel", + "milo": "Percy", + "nessa": "Cathy", + "kabu": "Naboru", + "bea": "Judith", + "allister": "Allistair", + "opal": "Sally", + "bede": "Berto", + "gordie": "Morris", + "melony": "Mel", + "piers": "Nerio", + "marnie": "Roxy", + "raihan": "Roy", + "katy": "Araceli", + "brassius": "Brais", + "iono": "e-Nigma", + "kofu": "Fuco", + "larry": "Laureano", + "ryme": "Lima", + "tulip": "Tuli", + "grusha": "Grusha", + "lorelei": "Lorelei", + "bruno": "Bruno", + "agatha": "Agatha", + "lance": "Lance", + "will": "Mento", + "koga": "Koga", + "karen": "Karen", + "sidney": "Sixto", + "phoebe": "Fátima", + "glacia": "Nívea", + "drake": "Dracón", + "aaron": "Alecrán", + "bertha": "Gaia", + "flint": "Fausto", + "lucian": "Delos", + "shauntal": "Anís", + "marshal": "Lotto", + "grimsley": "Aza", + "caitlin": "Catleya", + "malva": "Malva", + "siebold": "Narciso", + "wikstrom": "Tileo", + "drasna": "Drácena", + "hala": "Kaudan", + "molayne": "Lario", + "olivia": "Mayla", + "acerola": "Zarala", + "kahili": "Kahili", + "rika": "Cayena", + "poppy": "Pola", + "hassel": "Hesperio", + "crispin": "Denis", + "amarys": "Nerina", + "lacey": "Aroa", + "drayton": "Levi", + "blue": "Azul", + "red": "Rojo", + "steven": "Máximo", + "wallace": "Plubio", + "cynthia": "Cintia", + "alder": "Mirto", + "iris": "Iris", + "diantha": "Dianta", + "hau": "Tilo", + "geeta": "Ságita", + "nemona": "Mencía", + "kieran": "Cass", + "leon": "Lionel", + "rival": "Finn", + "rival_female": "Ivy", + "archer": "Archer", + "ariana": "Ariana", + "proton": "Proton", + "petrel": "Petrel", + "tabitha": "Tabitha", + "courtney": "Courtney", + "shelly": "Shelly", + "matt": "Matt", + "mars": "Mars", + "jupiter": "Jupiter", + "saturn": "Saturn", + "zinzolin": "Zinzolin", + "rood": "Rood", + "xerosic": "Xerosic", + "bryony": "Bryony", + "faba": "Fabio", + + "maxie": "Maxie", + "archie": "Archie", + "cyrus": "Cyrus", + "ghetsis": "Ghetsis", + "lysandre": "Lysandre", + "lusamine": "Samina", + + "blue_red_double": "Azul y Rojo", + "red_blue_double": "Rojo y Azul", + "tate_liza_double": "Vito y Leti", + "liza_tate_double": "Leti y Vito", + "steven_wallace_double": "Máximo y Plubio", + "wallace_steven_double": "Plubio y Máximo", + "alder_iris_double": "Mirto e Iris", + "iris_alder_double": "Iris y Mirto", + "marnie_piers_double": "Roxy y Nerio", + "piers_marnie_double": "Nerio y Roxy" +} diff --git a/src/locales/es/trainer-titles.json b/src/locales/es/trainer-titles.json new file mode 100644 index 00000000000..5bee9fc8c51 --- /dev/null +++ b/src/locales/es/trainer-titles.json @@ -0,0 +1,34 @@ +{ + "elite_four": "Alto Mando", + "elite_four_female": "Alto Mando", + "gym_leader": "Líder de gimnasio", + "gym_leader_female": "Líder de gimnasio", + "gym_leader_double": "Líderes de Gimnasio", + "champion": "Campeón", + "champion_female": "Campeona", + "champion_double": "Campeones", + "rival": "Rival", + "professor": "Profesor", + "frontier_brain": "As del Frente Batalla", + "rocket_boss": "Team Rocket Boss", + "magma_boss": "Team Magma Boss", + "aqua_boss": "Team Aqua Boss", + "galactic_boss": "Team Galactic Boss", + "plasma_boss": "Team Plasma Boss", + "flare_boss": "Team Flare Boss", + "aether_boss": "Presidente Æther", + + "rocket_admin": "Team Rocket Admin", + "rocket_admin_female": "Team Rocket Admin", + "magma_admin": "Team Magma Admin", + "magma_admin_female": "Team Magma Admin", + "aqua_admin": "Team Aqua Admin", + "aqua_admin_female": "Team Aqua Admin", + "galactic_commander": "Team Galactic Commander", + "galactic_commander_female": "Team Galactic Commander", + "plasma_sage": "Team Plasma Sage", + "plasma_admin": "Team Plasma Admin", + "flare_admin": "Team Flare Admin", + "flare_admin_female": "Team Flare Admin", + "aether_admin": "Director de la Fundación Æther" +} diff --git a/src/locales/es/trainers.ts b/src/locales/es/trainers.ts deleted file mode 100644 index 32f966c6359..00000000000 --- a/src/locales/es/trainers.ts +++ /dev/null @@ -1,322 +0,0 @@ -import {SimpleTranslationEntries} from "#app/interfaces/locales"; - -// Titles of special trainers like gym leaders, elite four, and the champion -export const titles: SimpleTranslationEntries = { - "elite_four": "Alto Mando", - "elite_four_female": "Alto Mando", - "gym_leader": "Líder de gimnasio", - "gym_leader_female": "Líder de gimnasio", - "gym_leader_double": "Líderes de Gimnasio", - "champion": "Campeón", - "champion_female": "Campeona", - "champion_double": "Campeones", - "rival": "Rival", - "professor": "Profesor", - "frontier_brain": "As del Frente Batalla", - "rocket_boss": "Team Rocket Boss", - "magma_boss": "Team Magma Boss", - "aqua_boss": "Team Aqua Boss", - "galactic_boss": "Team Galactic Boss", - "plasma_boss": "Team Plasma Boss", - "flare_boss": "Team Flare Boss", - - "rocket_admin": "Team Rocket Admin", - "rocket_admin_female": "Team Rocket Admin", - "magma_admin": "Team Magma Admin", - "magma_admin_female": "Team Magma Admin", - "aqua_admin": "Team Aqua Admin", - "aqua_admin_female": "Team Aqua Admin", - "galactic_commander": "Team Galactic Commander", - "galactic_commander_female": "Team Galactic Commander", - "plasma_sage": "Team Plasma Sage", - "plasma_admin": "Team Plasma Admin", - "flare_admin": "Team Flare Admin", - "flare_admin_female": "Team Flare Admin", - // Maybe if we add the evil teams we can add "Team Rocket" and "Team Aqua" etc. here as well as "Team Rocket Boss" and "Team Aqua Admin" etc. -} as const; - -// Titles of trainers like "Youngster" or "Lass" -export const trainerClasses: SimpleTranslationEntries = { - "ace_trainer": "Entrenador Guay", - "ace_trainer_female": "Entrenadora Guay", - "ace_duo": "Pareja Guay", - "artist": "Artista", - "artist_female": "Artista", - "backers": "Hinchas", - "backpacker": "Mochilero", - "backpacker_female": "Mochilera", - "backpackers": "Mochileros", - "baker": "Pastelera", - "battle_girl": "Luchadora", - "beauty": "Modelo", - "beginners": "Principiantes", - "biker": "Motorista", - "black_belt": "Karateka", - "breeder": "Criapokémon", - "breeder_female": "Criapokémon", - "breeders": "Criadores", - "clerk": "Empresario", - "clerk_female": "Oficinista", - "colleagues": "Colegas Oficina", - "crush_kin": "Luchadores", - "cyclist": "Ciclista", - "cyclist_female": "Ciclista", - "cyclists": "Ciclistas", - "dancer": "Breakdancer", - "dancer_female": "Bailarina", - "depot_agent": "Ferroviario", - "doctor": "Enfermero", - "doctor_female": "Enfermera", - "firebreather": "Comefuegos", - "fisherman": "Pescador", - "fisherman_female": "Pescadora", - "gentleman": "Aristócrata", - "guitarist": "Guitarrista", - "guitarist_female": "Guitarrista", - "harlequin": "Arlequín", - "hiker": "Montañero", - "hooligans": "Pandilleros", - "hoopster": "Pívot", - "infielder": "Pitcher", - "janitor": "Limpiador", - "lady": "Damisela", - "lass": "Chica", - "linebacker": "Quarterback", - "maid": "Criada", - "madame": "Señora", - "medical_team": "Equipo Médico", - "musician": "Cantautor", - "hex_maniac": "Bruja", - "nurse": "Enfermera", - "nursery_aide": "Seño", - "officer": "Policía", - "parasol_lady": "Dama Parasol", - "pilot": "Piloto", - "pokéfan": "Pokéfan", - "pokéfan_female": "Pokéfan", - "pokéfan_family": "Pareja de Pokéfans", - "preschooler": "Preescolar", - "preschooler_female": "Preescolar", - "preschoolers": "Preescolares", - "psychic": "Médium", - "psychic_female": "Mentalista", - "psychics": "Pareja Médium", - "pokémon_ranger": "Pokémon Ranger", - "pokémon_rangers": "Pokémon Ranger", - "ranger": "Ranger", - "restaurant_staff": "Personal Restaurante", - "rich": "Bien", - "rich_female": "Bien", - "rich_boy": "Niño Bien", - "rich_couple": "Pareja Bien", - "rich_kid": "Niño Bien", - "rich_kid_female": "Niña Bien", - "rich_kids": "Niños Bien", - "roughneck": "Calvo", - "sailor": "Marinero", - "scientist": "Científico", - "scientist_female": "Científica", - "scientists": "Científicos", - "smasher": "Tenista", - "snow_worker": "Operario Nieve", - "snow_worker_female": "Operaria Nieve", - "striker": "Delantero", - "school_kid": "Colegial", - "school_kid_female": "Colegial", - "school_kids": "Colegiales", - "swimmer": "Nadador", - "swimmer_female": "Nadadora", - "swimmers": "Nadadores", - "twins": "Gemelas", - "veteran": "Veterano", - "veteran_female": "Veterana", - "veteran_duo": "Dúo Veterano", - "waiter": "Camarero", - "waitress": "Camarera", - "worker": "Operario", - "worker_female": "Operaria", - "workers": "Operarios", - "youngster": "Joven", - "rocket_grunt": "Rocket Grunt", - "rocket_grunts": "Rocket Grunts", - "rocket_grunt_female": "Rocket Grunt", - "magma_grunt": "Magma Grunt", - "magma_grunt_female": "Magma Grunt", - "magma_grunts": "Magma Grunts", - "aqua_grunt": "Aqua Grunt", - "aqua_grunt_female": "Aqua Grunt", - "aqua_grunts": "Aqua Grunts", - "galactic_grunt": "Galactic Grunt", - "galactic_grunt_female": "Galactic Grunt", - "galactic_grunts": "Galactic Grunts", - "plasma_grunt": "Plasma Grunt", - "plasma_grunt_female": "Plasma Grunt", - "plasma_grunts": "Plasma Grunts", - "flare_grunt": "Flare Grunt", - "flare_grunt_female": "Flare Grunt", - "flare_grunts": "Flare Grunts", -} as const; - -// Names of special trainers like gym leaders, elite four, and the champion -export const trainerNames: SimpleTranslationEntries = { - "brock": "Brock", - "misty": "Misty", - "lt_surge": "Tt. Surge", - "erika": "Erika", - "janine": "Sachiko", - "sabrina": "Sabrina", - "blaine": "Blaine", - "giovanni": "Giovanni", - "falkner": "Pegaso", - "bugsy": "Antón", - "whitney": "Blanca", - "morty": "Morti", - "chuck": "Aníbal", - "jasmine": "Yasmina", - "pryce": "Fredo", - "clair": "Débora", - "roxanne": "Petra", - "brawly": "Marcial", - "wattson": "Erico", - "flannery": "Candela", - "norman": "Norman", - "winona": "Alana", - "tate": "Vito", - "liza": "Leti", - "juan": "Galán", - "roark": "Roco", - "gardenia": "Gardenia", - "maylene": "Brega", - "crasher_wake": "Mananti", - "fantina": "Fantina", - "byron": "Acerón", - "candice": "Inverna", - "volkner": "Lectro", - "cilan": "Millo", - "chili": "Zeo", - "cress": "Maiz", - "cheren": "Cheren", - "lenora": "Aloe", - "roxie": "Hiedra", - "burgh": "Camus", - "elesa": "Camila", - "clay": "Yakón", - "skyla": "Gerania", - "brycen": "Junco", - "drayden": "Lirio", - "marlon": "Ciprián", - "viola": "Violeta", - "grant": "Lino", - "korrina": "Corelia", - "ramos": "Amaro", - "clemont": "Lem", - "valerie": "Valeria", - "olympia": "Ástrid", - "wulfric": "Édel", - "milo": "Percy", - "nessa": "Cathy", - "kabu": "Naboru", - "bea": "Judith", - "allister": "Allistair", - "opal": "Sally", - "bede": "Berto", - "gordie": "Morris", - "melony": "Mel", - "piers": "Nerio", - "marnie": "Roxy", - "raihan": "Roy", - "katy": "Araceli", - "brassius": "Brais", - "iono": "e-Nigma", - "kofu": "Fuco", - "larry": "Laureano", - "ryme": "Lima", - "tulip": "Tuli", - "grusha": "Grusha", - "lorelei": "Lorelei", - "bruno": "Bruno", - "agatha": "Agatha", - "lance": "Lance", - "will": "Mento", - "koga": "Koga", - "karen": "Karen", - "sidney": "Sixto", - "phoebe": "Fátima", - "glacia": "Nívea", - "drake": "Dracón", - "aaron": "Alecrán", - "bertha": "Gaia", - "flint": "Fausto", - "lucian": "Delos", - "shauntal": "Anís", - "marshal": "Lotto", - "grimsley": "Aza", - "caitlin": "Catleya", - "malva": "Malva", - "siebold": "Narciso", - "wikstrom": "Tileo", - "drasna": "Drácena", - "hala": "Kaudan", - "molayne": "Lario", - "olivia": "Mayla", - "acerola": "Zarala", - "kahili": "Kahili", - "rika": "Cayena", - "poppy": "Pola", - "hassel": "Hesperio", - "crispin": "Denis", - "amarys": "Nerina", - "lacey": "Aroa", - "drayton": "Levi", - "blue": "Azul", - "red": "Rojo", - "steven": "Máximo", - "wallace": "Plubio", - "cynthia": "Cintia", - "alder": "Mirto", - "iris": "Iris", - "diantha": "Dianta", - "hau": "Tilo", - "geeta": "Ságita", - "nemona": "Mencía", - "kieran": "Cass", - "leon": "Lionel", - "rival": "Finn", - "rival_female": "Ivy", - - // Evil Team Admins - "archer": "Archer", - "ariana": "Ariana", - "proton": "Proton", - "petrel": "Petrel", - "tabitha": "Tabitha", - "courtney": "Courtney", - "shelly": "Shelly", - "matt": "Matt", - "mars": "Mars", - "jupiter": "Jupiter", - "saturn": "Saturn", - "zinzolin": "Zinzolin", - "rood": "Rood", - "xerosic": "Xerosic", - "bryony": "Bryony", - - "maxie": "Maxie", - "archie": "Archie", - "cyrus": "Cyrus", - "ghetsis": "Ghetsis", - "lysandre": "Lysandre", - - - // Double Names - "blue_red_double": "Azul y Rojo", - "red_blue_double": "Rojo y Azul", - "tate_liza_double": "Vito y Leti", - "liza_tate_double": "Leti y Vito", - "steven_wallace_double": "Máximo y Plubio", - "wallace_steven_double": "Plubio y Máximo", - "alder_iris_double": "Mirto e Iris", - "iris_alder_double": "Iris y Mirto", - "marnie_piers_double": "Roxy y Nerio", - "piers_marnie_double": "Nerio y Roxy", -} as const; diff --git a/src/locales/es/tutorial.json b/src/locales/es/tutorial.json new file mode 100644 index 00000000000..e19dbcf09ad --- /dev/null +++ b/src/locales/es/tutorial.json @@ -0,0 +1,10 @@ +{ + "intro": "¡Bienvenido/a a PokéRogue! Este es un fangame de Pokémon centrado en el combate con elementos roguelite.\n$Este juego no está monetizado y no reclamamos ningún derecho de propiedad sobre Pokémon ni sobre ninguno de\n$los recursos con copyright utilizados.\n$El juego está en desarrollo, pero es completamente jugable.\nPara reportar bugs, por favor, hazlo en nuestra\n$comunidad de Discord.\n$Si el juego va lento, por favor, asegúrate de que tengas activada la opción 'Aceleración de gráficos' en los\n$ajustes de tu navegador.", + "accessMenu": "Para acceder al menú, pulsa M o Escape cuando\ntengas el control.\n$El menú contiene los ajustes y otras funciones.", + "menu": "Desde este menú podrás acceder a los ajustes.\n$Podrás cambiar la velocidad del juego, el estilo de la ventana y demás.\n$Hay más opciones, ¡así que pruébalas todas!", + "starterSelect": "En esta pantalla, podrás elegir tus iniciales presionando Z\no Espacio. Estos serán tus miembros de equipo al comenzar.\n$Cada inicial tiene un valor. Tu equipo puede contener hasta 6\nmiembros mientras el valor total no pase de 10.\n$También puedes elegir su género, habilidad y forma\ndependiendo de las variantes que hayas conseguido.\n$Los IVs de los iniciales corresponderán al valor más alto de\nlos Pokémon de la misma especie que hayas obtenido.\n$¡Así que intenta conseguir muchos Pokémon de la misma\nespecie!", + "pokerus": "Cada día, 3 iniciales aleatorios tendrán un borde morado.\n$Si ves un inicial que tengas con este borde, prueba a\nañadirlo a tu equipo. ¡No olvides revisar sus datos!", + "statChange": "Los cambios de estadísticas se mantienen entre combates\nmientras que el Pokémon no vuelva a su Poké Ball.\n$Tus Pokémon vuelven a sus Poké Balls antes de combates contra entrenadores y de entrar a un nuevo bioma.\n$También puedes ver los cambios de estadísticas del Pokémon en campo manteniendo pulsado C o Shift.\n$También puedes ver los movimientos de un Pokémon enemigo manteniendo presionada la V.\n$Esto solo revela los movimientos que has visto usar al Pokémon en esta combate.", + "selectItem": "Tras cada combate, tendrás la opción de elegir entre tres objetos aleatorios. Solo podrás escoger uno.\n$Estos objetos pueden ser consumibles, objetos equipables u objetos pasivos permanentes (hasta acabar la partida).\n$La mayoría de los efectos de objetos no consumibles se acumularán de varias maneras.\n$Algunos objetos solo aparecerán si pueden ser utilizados, como las piedras evolutivas.\n$También puedes transferir objetos equipados entre Pokémon, utilizando la opción de transferir.\n$La opción de transferir aparecerá en la parte inferior derecha una vez hayas obtenido un objeto equipable.\n$También puedes comprar objetos consumibles con dinero y su variedad irá aumentando según tu avance.\n$Asegúrate de comprar antes de escoger una recompensa, ya que se avanzará automáticamente al siguiente combate.", + "eggGacha": "En esta pantalla podrás canjear tus vales por huevos\nde Pokémon.\n$Los huevos deben eclosionar y estarán más cerca de\nhacerlo tras cada combate.\n$Los huevos más raros tardarán más en eclosionar.\n$Los Pokémon que hayan salido del huevo no se\nañadirán a tu equipo, pero sí a tus iniciales.\n$Los Pokémon salidos de un huevo suelen tener mejores\nIVs que los Pokémon salvajes.\n$Algunos Pokémon solo pueden ser obtenidos de huevos.\n$Hay 3 máquinas diferentes entre las que elegir, cada\nuna con diferentes bonificaciones.\n$¡Así que escoge la que más te interese!" +} \ No newline at end of file diff --git a/src/locales/es/tutorial.ts b/src/locales/es/tutorial.ts deleted file mode 100644 index 5a33bcd9dd0..00000000000 --- a/src/locales/es/tutorial.ts +++ /dev/null @@ -1,51 +0,0 @@ -import { SimpleTranslationEntries } from "#app/interfaces/locales"; - -export const tutorial: SimpleTranslationEntries = { - "intro": `¡Bienvenido/a a PokéRogue! Este es un fangame de Pokémon centrado en el combate con elementos roguelite. - $Este juego no está monetizado y no reclamamos ningún derecho de propiedad sobre Pokémon ni sobre ninguno de - $los recursos con copyright utilizados. - $El juego está en desarrollo, pero es completamente jugable.\nPara reportar bugs, por favor, hazlo en nuestra - $comunidad de Discord. - $Si el juego va lento, por favor, asegúrate de que tengas activada la opción 'Aceleración de gráficos' en los - $ajustes de tu navegador.`, - - "accessMenu": `Para acceder al menú, pulsa M o Escape cuando\ntengas el control. - $El menú contiene los ajustes y otras funciones.`, - - "menu": `Desde este menú podrás acceder a los ajustes. - $Podrás cambiar la velocidad del juego, el estilo de la ventana y demás. - $Hay más opciones, ¡así que pruébalas todas!`, - - "starterSelect": `En esta pantalla, podrás elegir tus iniciales presionando Z\no Espacio. Estos serán tus miembros de equipo al comenzar. - $Cada inicial tiene un valor. Tu equipo puede contener hasta 6\nmiembros mientras el valor total no pase de 10. - $También puedes elegir su género, habilidad y forma\ndependiendo de las variantes que hayas conseguido. - $Los IVs de los iniciales corresponderán al valor más alto de\nlos Pokémon de la misma especie que hayas obtenido. - $¡Así que intenta conseguir muchos Pokémon de la misma\nespecie!`, - - "pokerus": `Cada día, 3 iniciales aleatorios tendrán un borde morado. - $Si ves un inicial que tengas con este borde, prueba a\nañadirlo a tu equipo. ¡No olvides revisar sus datos!`, - - "statChange": `Los cambios de estadísticas se mantienen entre combates\nmientras que el Pokémon no vuelva a su Poké Ball. - $Tus Pokémon vuelven a sus Poké Balls antes de combates contra entrenadores y de entrar a un nuevo bioma. - $También puedes ver los cambios de estadísticas del Pokémon en campo manteniendo pulsado C o Shift. - $También puedes ver los movimientos de un Pokémon enemigo manteniendo presionada la V. - $Esto solo revela los movimientos que has visto usar al Pokémon en esta combate.`, - - "selectItem": `Tras cada combate, tendrás la opción de elegir entre tres objetos aleatorios. Solo podrás escoger uno. - $Estos objetos pueden ser consumibles, objetos equipables u objetos pasivos permanentes (hasta acabar la partida). - $La mayoría de los efectos de objetos no consumibles se acumularán de varias maneras. - $Algunos objetos solo aparecerán si pueden ser utilizados, como las piedras evolutivas. - $También puedes transferir objetos equipados entre Pokémon, utilizando la opción de transferir. - $La opción de transferir aparecerá en la parte inferior derecha una vez hayas obtenido un objeto equipable. - $También puedes comprar objetos consumibles con dinero y su variedad irá aumentando según tu avance. - $Asegúrate de comprar antes de escoger una recompensa, ya que se avanzará automáticamente al siguiente combate.`, - - "eggGacha": `En esta pantalla podrás canjear tus vales por huevos\nde Pokémon. - $Los huevos deben eclosionar y estarán más cerca de\nhacerlo tras cada combate. - $Los huevos más raros tardarán más en eclosionar. - $Los Pokémon que hayan salido del huevo no se\nañadirán a tu equipo, pero sí a tus iniciales. - $Los Pokémon salidos de un huevo suelen tener mejores\nIVs que los Pokémon salvajes. - $Algunos Pokémon solo pueden ser obtenidos de huevos. - $Hay 3 máquinas diferentes entre las que elegir, cada\nuna con diferentes bonificaciones. - $¡Así que escoge la que más te interese!`, -} as const; diff --git a/src/locales/es/voucher.ts b/src/locales/es/voucher.json similarity index 63% rename from src/locales/es/voucher.ts rename to src/locales/es/voucher.json index 60479160efe..e55c791c94a 100644 --- a/src/locales/es/voucher.ts +++ b/src/locales/es/voucher.json @@ -1,11 +1,9 @@ -import { SimpleTranslationEntries } from "#app/interfaces/locales"; - -export const voucher: SimpleTranslationEntries = { - "vouchers": "Vales", - "eggVoucher": "Vale Huevo", - "eggVoucherPlus": "Vale Huevo Plus", - "eggVoucherPremium": "Vale Huevo Premium", - "eggVoucherGold": "Vale Huevo Dorado", - "locked": "Bloqueado", - "defeatTrainer": "Derrota a {{trainerName}}" -} as const; +{ + "vouchers": "Vales", + "eggVoucher": "Vale Huevo", + "eggVoucherPlus": "Vale Huevo Plus", + "eggVoucherPremium": "Vale Huevo Premium", + "eggVoucherGold": "Vale Huevo Dorado", + "locked": "Bloqueado", + "defeatTrainer": "Derrota a {{trainerName}}" +} \ No newline at end of file diff --git a/src/locales/es/weather.ts b/src/locales/es/weather.json similarity index 59% rename from src/locales/es/weather.ts rename to src/locales/es/weather.json index 1129443d71b..44716a165dd 100644 --- a/src/locales/es/weather.ts +++ b/src/locales/es/weather.json @@ -1,66 +1,32 @@ -import { SimpleTranslationEntries } from "#app/interfaces/locales"; - -/** - * The weather namespace holds text displayed when weather is active during a battle - */ -export const weather: SimpleTranslationEntries = { +{ "sunnyStartMessage": "¡El sol esta brillando!", "sunnyLapseMessage": "Hace mucho sol...", "sunnyClearMessage": "Se ha ido el sol.", - "rainStartMessage": "¡Ha empezado a llover!", "rainLapseMessage": "Sigue lloviendo...", "rainClearMessage": "Ha dejado de llover.", - "sandstormStartMessage": "¡Se ha desatado una tormenta de arena!", "sandstormLapseMessage": "La tormenta de arena arrecia...", "sandstormClearMessage": "La tormenta de arena termino.", "sandstormDamageMessage": "¡La tormenta de arena zarandea al\n{{pokemonNameWithAffix}}!", - "hailStartMessage": "¡Ha empezado a granizar!", "hailLapseMessage": "Sigue granizando...", "hailClearMessage": "Had dejado de granizar.", "hailDamageMessage": "El granizo golpea al\n{{pokemonNameWithAffix}}!", - "snowStartMessage": "¡Ha empezado a nevar!", "snowLapseMessage": "Sigue nevando...", "snowClearMessage": "Ha dejado de nevar.", - "fogStartMessage": "La niebla es densa...", "fogLapseMessage": "Sigue la niebla...", "fogClearMessage": "La niebla ha desaparecido.", - "heavyRainStartMessage": "¡Ha empezado a diluviar!", "heavyRainLapseMessage": "Sigue diluviando...", "heavyRainClearMessage": "Ha dejado de diluviar.", - "harshSunStartMessage": "¡El sol que hace ahora es realmente abrasador!", "harshSunLapseMessage": "El sol sigue abrasando.", "harshSunClearMessage": "El sol vuelve a brillar como siempre.", - "strongWindsStartMessage": "¡Comenzó un fuerte viento!", "strongWindsLapseMessage": "El viento sopla intensamente.", "strongWindsEffectMessage": "¡Las misteriosas turbulencias atenúan el ataque!", "strongWindsClearMessage": "El fuerte viento cesó." -}; - -export const terrain: SimpleTranslationEntries = { - "misty": "Misty", - "mistyStartMessage": "Mist swirled around the battlefield!", - "mistyClearMessage": "The mist disappeared from the battlefield.", - "mistyBlockMessage": "{{pokemonNameWithAffix}} surrounds itself with a protective mist!", - - "electric": "Electric", - "electricStartMessage": "An electric current ran across the battlefield!", - "electricClearMessage": "The electricity disappeared from the battlefield.", - - "grassy": "Grassy", - "grassyStartMessage": "Grass grew to cover the battlefield!", - "grassyClearMessage": "The grass disappeared from the battlefield.", - - "psychic": "Psychic", - "psychicStartMessage": "The battlefield got weird!", - "psychicClearMessage": "The weirdness disappeared from the battlefield!", - - "defaultBlockMessage": "{{pokemonNameWithAffix}} is protected by the {{terrainName}} Terrain!" -}; +} \ No newline at end of file diff --git a/src/locales/fr/ability-trigger.ts b/src/locales/fr/ability-trigger.json similarity index 93% rename from src/locales/fr/ability-trigger.ts rename to src/locales/fr/ability-trigger.json index cd077993b4e..d10fc18a146 100644 --- a/src/locales/fr/ability-trigger.ts +++ b/src/locales/fr/ability-trigger.json @@ -1,7 +1,5 @@ -import { SimpleTranslationEntries } from "#app/interfaces/locales"; - -export const abilityTriggers: SimpleTranslationEntries = { - "blockRecoilDamage" : "{{abilityName}}\nde {{pokemonName}} le protège du contrecoup !", +{ + "blockRecoilDamage": "{{abilityName}}\nde {{pokemonName}} le protège du contrecoup !", "badDreams": "{{pokemonName}} a le sommeil agité !", "costar": "{{pokemonName}} copie les changements de stats\nde {{allyName}} !", "iceFaceAvoidedDamage": "{{pokemonNameWithAffix}} évite les dégâts\navec {{abilityName}} !", @@ -14,7 +12,7 @@ export const abilityTriggers: SimpleTranslationEntries = { "typeImmunityHeal": "{{abilityName}} de {{pokemonNameWithAffix}}\nrestaure un peu ses PV !", "nonSuperEffectiveImmunity": "{{pokemonNameWithAffix}} évite\nles dégâts avec {{abilityName}} !", "disguiseAvoidedDamage": "Le déguisement de {{pokemonNameWithAffix}}\ntombe !", - "moveImmunity": "Ça n'affecte pas {{pokemonNameWithAffix}}…", + "moveImmunity": "Ça n’affecte pas {{pokemonNameWithAffix}}…", "reverseDrain": "{{pokemonNameWithAffix}} aspire\nle suintement !", "postDefendTypeChange": "{{abilityName}} de {{pokemonNameWithAffix}}\nle transforme en type {{typeName}} !", "postDefendContactDamage": "{{pokemonNameWithAffix}} est blessé\npar son talent {{abilityName}} !", @@ -25,7 +23,7 @@ export const abilityTriggers: SimpleTranslationEntries = { "postAttackStealHeldItem": "{{pokemonNameWithAffix}} vole\nl’objet {{stolenItemType}} de {{defenderName}} !", "postDefendStealHeldItem": "{{pokemonNameWithAffix}} vole\nl’objet {{stolenItemType}} de {{attackerName}} !", "copyFaintedAllyAbility": "{{pokemonNameWithAffix}} reçoit\nle talent {{abilityName}} !", - "intimidateImmunity": "{{abilityName}} de {{pokemonNameWithAffix}}\nl’empêche d'être intimidé !", + "intimidateImmunity": "{{abilityName}} de {{pokemonNameWithAffix}}\nl’empêche d’être intimidé !", "postSummonAllyHeal": "{{pokemonNameWithAffix}} boit le thé\npréparé par {{pokemonName}} !", "postSummonClearAllyStats": "Les stats de {{pokemonNameWithAffix}}\nsont revenues à la normale !", "postSummonTransform": "{{pokemonNameWithAffix}} prend\nl’apparence de {{targetName}} !", @@ -46,6 +44,7 @@ export const abilityTriggers: SimpleTranslationEntries = { "postFaintContactDamage": "{{pokemonNameWithAffix}} est blessé\npar son talent {{abilityName}} !", "postFaintHpDamage": "{{pokemonNameWithAffix}} est blessé\npar son talent {{abilityName}} !", "postSummonPressure": "{{pokemonNameWithAffix}}\naugmente la pression !", + "weatherEffectDisappeared": "Les effets de la météo se dissipent !", "postSummonMoldBreaker": "{{pokemonNameWithAffix}}\nbrise le moule !", "postSummonAnticipation": "{{pokemonNameWithAffix}}\nest tout tremblant !", "postSummonTurboblaze": "{{pokemonNameWithAffix}} dégage\nune aura de flammes incandescentes !", @@ -59,5 +58,5 @@ export const abilityTriggers: SimpleTranslationEntries = { "postSummonSwordOfRuin": "L’Épée du Fléau de {{pokemonNameWithAffix}}\naffaiblit la {{statName}} des Pokémon alentour !", "postSummonTabletsOfRuin": "Le Bois du Fléau de {{pokemonNameWithAffix}}\naffaiblit l’{{statName}} des Pokémon alentour !", "postSummonBeadsOfRuin": "Les Perles du Fléau de {{pokemonNameWithAffix}}\naffaiblissent la {{statName}} des Pokémon alentour !", - "preventBerryUse": "{{pokemonNameWithAffix}} est tendu\net ne peut plus manger de Baies !", -} as const; + "preventBerryUse": "{{pokemonNameWithAffix}} est tendu\net ne peut plus manger de Baies !" +} diff --git a/src/locales/fr/ability.json b/src/locales/fr/ability.json new file mode 100644 index 00000000000..7db44c45fa7 --- /dev/null +++ b/src/locales/fr/ability.json @@ -0,0 +1,1242 @@ +{ + "stench": { + "name": "Puanteur", + "description": "Le Pokémon émet une odeur si nauséabonde qu’il peut effrayer sa cible en l’attaquant." + }, + "drizzle": { + "name": "Crachin", + "description": "Le Pokémon invoque la pluie quand il entre au combat." + }, + "speedBoost": { + "name": "Turbo", + "description": "La Vitesse du Pokémon augmente à chaque tour." + }, + "battleArmor": { + "name": "Armurbaston", + "description": "Le Pokémon est protégé des coups critiques par une solide carapace." + }, + "sturdy": { + "name": "Fermeté", + "description": "Le Pokémon encaisse toujours au moins une attaque s’il a tous ses PV. Il est également immunisé contre les capacités pouvant mettre K.O. en un coup." + }, + "damp": { + "name": "Moiteur", + "description": "Le Pokémon augmente l’humidité de l’air, ce qui empêche tous les Pokémon d’utiliser des capacités explosives telles que Destruction." + }, + "limber": { + "name": "Échauffement", + "description": "Le Pokémon s’est suffisamment échauffé, ce qui l’immunise contre la paralysie." + }, + "sandVeil": { + "name": "Voile Sable", + "description": "Augmente l’Esquive du Pokémon lors des tempêtes de sable." + }, + "static": { + "name": "Statik", + "description": "Le Pokémon charge son corps en électricité statique, et tout contact avec lui peut paralyser." + }, + "voltAbsorb": { + "name": "Absorbe-Volt", + "description": "Si le Pokémon est touché par une capacité Électrik, il ne subit aucun dégât et regagne des PV à la place." + }, + "waterAbsorb": { + "name": "Absorbe-Eau", + "description": "Si le Pokémon est touché par une capacité Eau, il ne subit aucun dégât et regagne des PV à la place." + }, + "oblivious": { + "name": "Benêt", + "description": "Le Pokémon est un grand benêt, ce qui l’immunise contre l’attraction, la provocation ou l’intimidation." + }, + "cloudNine": { + "name": "Ciel Gris", + "description": "Annule tous les effets liés à la météo." + }, + "compoundEyes": { + "name": "Œil Composé", + "description": "Les yeux à facettes du Pokémon augmentent la Précision de ses capacités." + }, + "insomnia": { + "name": "Insomnia", + "description": "Le Pokémon est incapable de dormir." + }, + "colorChange": { + "name": "Homochromie", + "description": "Lorsque le Pokémon est touché par une capacité, il prend le type de celle-ci." + }, + "immunity": { + "name": "Vaccin", + "description": "Le Pokémon est naturellement immunisé contre toute forme de poison." + }, + "flashFire": { + "name": "Torche", + "description": "Lorsque le Pokémon est touché par une capacité de type Feu, il absorbe la chaleur pour renforcer ses propres capacités Feu." + }, + "shieldDust": { + "name": "Écran Poudre", + "description": "Le Pokémon dispose d’un écran naturel qui le protège des effets additionnels des attaques ennemies." + }, + "ownTempo": { + "name": "Tempo Perso", + "description": "Le Pokémon vit sa vie à son propre rythme, ce qui l’immunise contre la confusion et l’intimidation." + }, + "suctionCups": { + "name": "Ventouse", + "description": "Le Pokémon est solidement fixé au sol par des ventouses, ce qui le protège des capacités ou objets qui font changer de Pokémon." + }, + "intimidate": { + "name": "Intimidation", + "description": "Le Pokémon rugit lorsqu’il arrive au combat, ce qui intimide l’ennemi et baisse son Attaque." + }, + "shadowTag": { + "name": "Marque Ombre", + "description": "Empêche les Pokémon ennemis de quitter le terrain." + }, + "roughSkin": { + "name": "Peau Dure", + "description": "Blesse l’attaquant lorsque le Pokémon subit une attaque directe." + }, + "wonderGuard": { + "name": "Garde Mystik", + "description": "Une puissance mystérieuse protège le Pokémon contre toutes les capacités, sauf celles qui sont super efficaces." + }, + "levitate": { + "name": "Lévitation", + "description": "Le Pokémon flotte, ce qui l’immunise contre les capacités de type Sol." + }, + "effectSpore": { + "name": "Pose Spore", + "description": "Peut paralyser, empoisonner ou endormir l’attaquant lorsque le Pokémon subit une attaque directe." + }, + "synchronize": { + "name": "Synchro", + "description": "Quand le Pokémon est brulé, paralysé ou empoisonné par un autre Pokémon, il partage ce statut avec celui-ci." + }, + "clearBody": { + "name": "Corps Sain", + "description": "Empêche les stats du Pokémon de baisser à cause du talent ou d’une capacité de l’adversaire." + }, + "naturalCure": { + "name": "Médic Nature", + "description": "Le Pokémon soigne ses altérations de statut en quittant le combat." + }, + "lightningRod": { + "name": "Paratonnerre", + "description": "Le Pokémon détourne sur lui les capacités de type Électrik et les neutralise, tout en augmentant son Attaque Spéciale." + }, + "sereneGrace": { + "name": "Sérénité", + "description": "Augmente les chances d’infliger des effets additionnels." + }, + "swiftSwim": { + "name": "Glissade", + "description": "Augmente la Vitesse du Pokémon s’il pleut." + }, + "chlorophyll": { + "name": "Chlorophylle", + "description": "Augmente la Vitesse du Pokémon s’il y a du soleil." + }, + "illuminate": { + "name": "Lumiattirance", + "description": "Le Pokémon illumine les alentours, facilitant les rencontres avec les Pokémon sauvages et empêche sa Précision de baisser." + }, + "trace": { + "name": "Calque", + "description": "Lorsque le Pokémon entre au combat, il calque le talent d’un ennemi pour remplacer le sien." + }, + "hugePower": { + "name": "Coloforce", + "description": "Double la puissance des attaques physiques." + }, + "poisonPoint": { + "name": "Point Poison", + "description": "Peut empoisonner l’attaquant lorsque le Pokémon subit une attaque directe." + }, + "innerFocus": { + "name": "Attention", + "description": "Le Pokémon a un mental à toute épreuve qui empêche les attaques ennemies de lui faire peur. Il est aussi immunisé contre le talent Intimidation." + }, + "magmaArmor": { + "name": "Armumagma", + "description": "Le magma qui recouvre le corps du Pokémon le protège contre le gel." + }, + "waterVeil": { + "name": "Ignifu-Voile", + "description": "Le voile qui recouvre le Pokémon le protège des brulures." + }, + "magnetPull": { + "name": "Magnépiège", + "description": "Attire les Pokémon Acier grâce à un champ magnétique, ce qui les empêche de quitter le terrain." + }, + "soundproof": { + "name": "Anti-Bruit", + "description": "Protège le Pokémon de toutes les capacités sonores." + }, + "rainDish": { + "name": "Cuvette", + "description": "Le Pokémon récupère progressivement des PV lorsqu’il pleut." + }, + "sandStream": { + "name": "Sable Volant", + "description": "Le Pokémon invoque une tempête de sable quand il entre au combat." + }, + "pressure": { + "name": "Pression", + "description": "Met la pression à l’adversaire pour le forcer à dépenser plus de PP." + }, + "thickFat": { + "name": "Isograisse", + "description": "Le Pokémon est protégé par une épaisse couche de graisse qui diminue de moitié les dégâts qu’il subit des capacités de types Feu et Glace." + }, + "earlyBird": { + "name": "Matinal", + "description": "Le Pokémon se réveille deux fois plus rapidement que les autres." + }, + "flameBody": { + "name": "Corps Ardent", + "description": "Peut bruler l’attaquant lorsque le Pokémon subit une attaque directe." + }, + "runAway": { + "name": "Fuite", + "description": "Permet de fuir n’importe quel Pokémon sauvage." + }, + "keenEye": { + "name": "Regard Vif", + "description": "Les yeux perçants du Pokémon empêchent sa Précision de baisser." + }, + "hyperCutter": { + "name": "Hyper Cutter", + "description": "Le Pokémon est armé de puissantes pinces qui font sa fierté et empêchent son Attaque d’être baissée par l’adversaire." + }, + "pickup": { + "name": "Ramassage", + "description": "Permet parfois au Pokémon de ramasser les objets que d’autres Pokémon ont utilisés. Il lui arrive aussi d’en trouver hors des combats." + }, + "truant": { + "name": "Absentéisme", + "description": "Lorsque le Pokémon utilise une capacité, il passe le tour suivant à paresser." + }, + "hustle": { + "name": "Agitation", + "description": "Améliore l’Attaque du Pokémon, mais diminue la Précision." + }, + "cuteCharm": { + "name": "Joli Sourire", + "description": "Peut séduire l’attaquant lorsque le Pokémon subit une attaque directe." + }, + "plus": { + "name": "Plus", + "description": "L’Attaque Spéciale du Pokémon augmente si un Pokémon allié a le talent Moins ou Plus." + }, + "minus": { + "name": "Moins", + "description": "L’Attaque Spéciale du Pokémon augmente si un Pokémon allié a le talent Moins ou Plus." + }, + "forecast": { + "name": "Météo", + "description": "Le Pokémon prend le type Eau, Feu ou Glace en fonction de la météo." + }, + "stickyHold": { + "name": "Glu", + "description": "Les objets sont collés au corps gluant du Pokémon, ce qui empêche ses adversaires de les dérober." + }, + "shedSkin": { + "name": "Mue", + "description": "Le Pokémon soigne parfois ses altérations de statut en muant." + }, + "guts": { + "name": "Cran", + "description": "Augmente l’Attaque du Pokémon s’il est affecté par une altération de statut." + }, + "marvelScale": { + "name": "Écaille Spéciale", + "description": "Les écailles mystérieuses du Pokémon réagissent aux altérations de statut en augmentant sa Défense." + }, + "liquidOoze": { + "name": "Suintement", + "description": "Le Pokémon suinte un liquide toxique nauséabond qui blesse tous ceux qui tentent de voler ses PV." + }, + "overgrow": { + "name": "Engrais", + "description": "Augmente la puissance des capacités de type Plante du Pokémon quand il a perdu une certaine quantité de PV." + }, + "blaze": { + "name": "Brasier", + "description": "Augmente la puissance des capacités de type Feu du Pokémon quand il a perdu une certaine quantité de PV." + }, + "torrent": { + "name": "Torrent", + "description": "Augmente la puissance des capacités de type Eau du Pokémon quand il a perdu une certaine quantité de PV." + }, + "swarm": { + "name": "Essaim", + "description": "Augmente la puissance des capacités de type Insecte du Pokémon quand il a perdu une certaine quantité de PV." + }, + "rockHead": { + "name": "Tête de Roc", + "description": "Le Pokémon peut utiliser des capacités occasionnant un contrecoup sans perdre de PV." + }, + "drought": { + "name": "Sécheresse", + "description": "Le Pokémon invoque le soleil quand il entre au combat." + }, + "arenaTrap": { + "name": "Piège Sable", + "description": "Empêche l’adversaire de quitter le terrain." + }, + "vitalSpirit": { + "name": "Esprit Vital", + "description": "Empêche le Pokémon de s’endormir." + }, + "whiteSmoke": { + "name": "Écran Fumée", + "description": "Un écran de fumée empêche l’adversaire de baisser les stats du Pokémon." + }, + "purePower": { + "name": "Force Pure", + "description": "Le Pokémon utilise sa maitrise du yoga pour doubler la puissance de ses attaques physiques." + }, + "shellArmor": { + "name": "Coque Armure", + "description": "Le Pokémon est protégé des coups critiques par sa carapace." + }, + "airLock": { + "name": "Air Lock", + "description": "Annule tous les effets de la météo." + }, + "tangledFeet": { + "name": "Pieds Confus", + "description": "Augmente l’Esquive du Pokémon s’il est confus." + }, + "motorDrive": { + "name": "Motorisé", + "description": "Si le Pokémon est touché par une capacité de type Électrik, il ne subit aucun dégât et sa Vitesse augmente." + }, + "rivalry": { + "name": "Rivalité", + "description": "Le Pokémon déteste la concurrence et inflige plus de dégâts si sa cible est du même sexe. Par contre, il en inflige moins si sa cible est du sexe opposé." + }, + "steadfast": { + "name": "Impassible", + "description": "Augmente la Vitesse du Pokémon quand il a peur." + }, + "snowCloak": { + "name": "Rideau Neige", + "description": "Augmente l’Esquive du Pokémon quand il neige." + }, + "gluttony": { + "name": "Gloutonnerie", + "description": "Si le Pokémon tient une Baie à manger en cas de PV bas, il la mange dès qu’il a perdu la moitié de ses PV." + }, + "angerPoint": { + "name": "Colérique", + "description": "Si le Pokémon subit un coup critique, il entre dans une colère noire qui augmente son Attaque au maximum." + }, + "unburden": { + "name": "Délestage", + "description": "Augmente la Vitesse du Pokémon s’il perd ou utilise l’objet qu’il tenait au début du combat." + }, + "heatproof": { + "name": "Ignifugé", + "description": "Diminue de moitié les dégâts infligés au Pokémon par les capacités de type Feu." + }, + "simple": { + "name": "Simple", + "description": "Les changements de stats sont deux fois plus importants pour le Pokémon." + }, + "drySkin": { + "name": "Peau Sèche", + "description": "Quand le soleil brille, le Pokémon perd des PV et subit plus de dégâts des capacités Feu, mais il regagne des PV lorsqu’il pleut ou s’il est touché par une capacité Eau." + }, + "download": { + "name": "Télécharge", + "description": "Le Pokémon compare la Défense et la Défense Spéciale de l’adversaire et, en fonction de la stat la plus basse, il augmente sa propre Attaque ou Attaque Spéciale." + }, + "ironFist": { + "name": "Poing de Fer", + "description": "Augmente la puissance des capacités coups de poing." + }, + "poisonHeal": { + "name": "Soin Poison", + "description": "Quand le Pokémon est empoisonné, il regagne des PV au lieu d’en perdre." + }, + "adaptability": { + "name": "Adaptabilité", + "description": "Quand le Pokémon utilise une capacité du même type que lui, le bonus de puissance qu’elle reçoit est encore plus important que normalement." + }, + "skillLink": { + "name": "Multi-Coups", + "description": "Les capacités pouvant frapper plusieurs fois frappent toujours le nombre maximal de coups." + }, + "hydration": { + "name": "Hydratation", + "description": "Soigne les altérations de statut du Pokémon quand il pleut." + }, + "solarPower": { + "name": "Force Soleil", + "description": "Quand le soleil brille, l’Attaque Spéciale du Pokémon augmente mais il perd des PV à chaque tour." + }, + "quickFeet": { + "name": "Pied Véloce", + "description": "Augmente la Vitesse du Pokémon en cas d’altération de statut." + }, + "normalize": { + "name": "Normalise", + "description": "Toutes les capacités du Pokémon deviennent de type Normal, quel que soit leur type original. Leur puissance augmente légèrement." + }, + "sniper": { + "name": "Sniper", + "description": "Lorsque le Pokémon porte un coup critique, les dégâts infligés augmentent encore plus que d’habitude." + }, + "magicGuard": { + "name": "Garde Magik", + "description": "Seules les attaques peuvent blesser le Pokémon." + }, + "noGuard": { + "name": "Annule Garde", + "description": "Les capacités du Pokémon touchent leur cible à coup sûr, mais les capacités adverses le touchent aussi à coup sûr." + }, + "stall": { + "name": "Frein", + "description": "Le Pokémon utilise toujours sa capacité en dernier." + }, + "technician": { + "name": "Technicien", + "description": "Augmente la puissance des capacités les plus faibles." + }, + "leafGuard": { + "name": "Feuille Garde", + "description": "Protège le Pokémon contre les altérations de statut quand le soleil brille." + }, + "klutz": { + "name": "Maladresse", + "description": "Le Pokémon ne peut utiliser aucun objet tenu." + }, + "moldBreaker": { + "name": "Brise Moule", + "description": "Le Pokémon ignore les talents adverses qui auraient un effet sur ses capacités." + }, + "superLuck": { + "name": "Chanceux", + "description": "Le Pokémon est tellement chanceux qu’il inflige plus fréquemment des coups critiques." + }, + "aftermath": { + "name": "Boom Final", + "description": "Si le Pokémon est mis K.O. par une attaque directe, il inflige des dégâts à l’attaquant avant de s’évanouir." + }, + "anticipation": { + "name": "Anticipation", + "description": "Le Pokémon devine si l’adversaire connait une capacité dangereuse pour lui." + }, + "forewarn": { + "name": "Prédiction", + "description": "Révèle l’une des capacités de l’adversaire quand le combat commence." + }, + "unaware": { + "name": "Inconscient", + "description": "Le Pokémon ignore les changements de stats des autres Pokémon, qu’il attaque ou soit attaqué." + }, + "tintedLens": { + "name": "Lentiteintée", + "description": "Permet à une capacité qui n’est pas très efficace d’infliger des dégâts comme si elle était efficace normalement." + }, + "filter": { + "name": "Filtre", + "description": "Diminue la puissance des attaques super efficaces subies." + }, + "slowStart": { + "name": "Début Calme", + "description": "Divise la Vitesse et l’Attaque du Pokémon par deux pendant les cinq premiers tours du combat." + }, + "scrappy": { + "name": "Querelleur", + "description": "Permet aux capacités de type Normal ou Combat du Pokémon de toucher les Pokémon de type Spectre. Immunise aussi contre le talent Intimidation." + }, + "stormDrain": { + "name": "Lavabo", + "description": "Le Pokémon détourne sur lui les capacités de type Eau et les neutralise, tout en augmentant son Attaque Spéciale." + }, + "iceBody": { + "name": "Corps Gel", + "description": "Régénère peu à peu les PV du Pokémon quand il neige." + }, + "solidRock": { + "name": "Solide Roc", + "description": "Diminue la puissance des attaques super efficaces subies." + }, + "snowWarning": { + "name": "Alerte Neige", + "description": "Le Pokémon invoque la neige quand il entre au combat." + }, + "honeyGather": { + "name": "Cherche Miel", + "description": "Le Pokémon trouve du Miel après un combat et est directement revendu contre de l’argent." + }, + "frisk": { + "name": "Fouille", + "description": "Lorsqu’il entre en combat, le Pokémon peut vérifier la capacité d’un Pokémon adverse." + }, + "reckless": { + "name": "Téméraire", + "description": "Augmente la puissance des capacités occasionnant un contrecoup." + }, + "multitype": { + "name": "Multi-Type", + "description": "Modifie le type du Pokémon en fonction de la plaque qu’il tient." + }, + "flowerGift": { + "name": "Don Floral", + "description": "Augmente l’Attaque et la Défense Spéciale du Pokémon et de ses alliés lorsque le soleil brille." + }, + "badDreams": { + "name": "Mauvais Rêve", + "description": "Inflige des dégâts aux ennemis endormis." + }, + "pickpocket": { + "name": "Pickpocket", + "description": "Vole l’objet que tient l’attaquant quand le Pokémon subit une attaque directe." + }, + "sheerForce": { + "name": "Sans Limite", + "description": "Les capacités ayant un effet additionnel le perdent, mais leur puissance augmente." + }, + "contrary": { + "name": "Contestation", + "description": "Inverse les changements de stats : les augmentations de stats se transforment en baisses, et vice-versa." + }, + "unnerve": { + "name": "Tension", + "description": "Fait stresser l’adversaire, ce qui l’empêche de manger des Baies." + }, + "defiant": { + "name": "Acharné", + "description": "Augmente beaucoup l’Attaque du Pokémon quand ses stats sont baissées par l’adversaire." + }, + "defeatist": { + "name": "Défaitiste", + "description": "Le Pokémon devient défaitiste quand ses PV tombent à la moitié, et son Attaque et son Attaque Spéciale sont divisées par deux." + }, + "cursedBody": { + "name": "Corps Maudit", + "description": "Quand le Pokémon est touché par une capacité adverse, il inflige parfois Entrave sur celle-ci." + }, + "healer": { + "name": "Cœur Soin", + "description": "Soigne parfois une altération de statut d’un allié proche." + }, + "friendGuard": { + "name": "Garde-Ami", + "description": "Diminue les dégâts subis par les alliés." + }, + "weakArmor": { + "name": "Armurouillée", + "description": "Quand le Pokémon est touché par une capacité physique, sa Défense baisse mais sa Vitesse augmente beaucoup." + }, + "heavyMetal": { + "name": "Heavy Metal", + "description": "Double le poids du Pokémon." + }, + "lightMetal": { + "name": "Light Metal", + "description": "Divise par deux le poids du Pokémon." + }, + "multiscale": { + "name": "Multiécaille", + "description": "Le Pokémon subit moins de dégâts quand ses PV sont au maximum." + }, + "toxicBoost": { + "name": "Rage Poison", + "description": "Augmente la puissance des capacités physiques quand le Pokémon est empoisonné." + }, + "flareBoost": { + "name": "Rage Brûlure", + "description": "Augmente la puissance des capacités spéciales quand le Pokémon est brulé." + }, + "harvest": { + "name": "Récolte", + "description": "Permet de réutiliser une même Baie plusieurs fois." + }, + "telepathy": { + "name": "Télépathe", + "description": "Le Pokémon anticipe et évite les attaques de ses alliés." + }, + "moody": { + "name": "Lunatique", + "description": "Augmente beaucoup une stat du Pokémon et en baisse une autre au hasard à chaque tour." + }, + "overcoat": { + "name": "Envelocape", + "description": "Protège des dégâts occasionnés par les tempêtes de sable, ainsi que des effets des capacités qui libèrent de la poudre et des spores." + }, + "poisonTouch": { + "name": "Toxitouche", + "description": "Peut empoisonner l’ennemi par simple contact." + }, + "regenerator": { + "name": "Régé-Force", + "description": "Restaure un peu de PV si le Pokémon est retiré du combat." + }, + "bigPecks": { + "name": "Cœur de Coq", + "description": "Protège des effets qui baissent la Défense." + }, + "sandRush": { + "name": "Baigne Sable", + "description": "Augmente la Vitesse lors des tempêtes de sable." + }, + "wonderSkin": { + "name": "Peau Miracle", + "description": "Le Pokémon résiste mieux aux capacités de statut." + }, + "analytic": { + "name": "Analyste", + "description": "Augmente la puissance des capacités du Pokémon s’il attaque en dernier." + }, + "illusion": { + "name": "Illusion", + "description": "Le Pokémon prend l’apparence du dernier membre de l’équipe pour tromper l’adversaire." + }, + "imposter": { + "name": "Imposteur", + "description": "Le Pokémon prend l’apparence du Pokémon adverse." + }, + "infiltrator": { + "name": "Infiltration", + "description": "Traverse les barrières et les clones adverses pour attaquer directement." + }, + "mummy": { + "name": "Momie", + "description": "Lorsque le Pokémon subit une attaque directe, le talent de l’attaquant est remplacé par Momie." + }, + "moxie": { + "name": "Impudence", + "description": "Quand le Pokémon met un ennemi K.O., sa confiance en lui ne connait plus de limite et son Attaque augmente." + }, + "justified": { + "name": "Cœur Noble", + "description": "Réveille la noblesse du Pokémon lorsqu’il subit une attaque de type Ténèbres, ce qui augmente son Attaque." + }, + "rattled": { + "name": "Phobique", + "description": "Si le Pokémon est touché par le talent Intimidation ou une attaque de type Ténèbres, Spectre ou Insecte, sa phobie se révèle et sa Vitesse augmente." + }, + "magicBounce": { + "name": "Miroir Magik", + "description": "Annule les effets des capacités de statut subies par le Pokémon et les retourne à l’envoyeur." + }, + "sapSipper": { + "name": "Herbivore", + "description": "Annule les attaques de type Plante subies par le Pokémon et augmente son Attaque." + }, + "prankster": { + "name": "Farceur", + "description": "Rend les capacités de statut du Pokémon prioritaires." + }, + "sandForce": { + "name": "Force Sable", + "description": "Augmente la puissance des capacités de types Roche, Sol et Acier en cas de tempête de sable." + }, + "ironBarbs": { + "name": "Épine de Fer", + "description": "Inflige des dégâts à l’attaquant lorsque le Pokémon subit une attaque directe." + }, + "zenMode": { + "name": "Mode Transe", + "description": "Le Pokémon change de forme quand il lui reste moins de la moitié de ses PV." + }, + "victoryStar": { + "name": "Victorieux", + "description": "Augmente la Précision du Pokémon et de ses alliés." + }, + "turboblaze": { + "name": "Turbo Brasier", + "description": "Le Pokémon ignore les talents adverses qui auraient un effet sur ses capacités." + }, + "teravolt": { + "name": "Téra-Voltage", + "description": "Le Pokémon ignore les talents adverses qui auraient un effet sur ses capacités." + }, + "aromaVeil": { + "name": "Aroma-Voile", + "description": "Protège le Pokémon et ses alliés des effets limitant le libre arbitre." + }, + "flowerVeil": { + "name": "Flora-Voile", + "description": "Empêche les alliés de type Plante de subir des baisses de stats et des altérations de statut." + }, + "cheekPouch": { + "name": "Bajoues", + "description": "Le Pokémon récupère des PV lorsqu’il consomme n’importe quelle Baie en plus de bénéficier de ses effets habituels." + }, + "protean": { + "name": "Protéen", + "description": "Le Pokémon prend le type de la capacité qu’il utilise. Ce talent ne peut se déclencher qu’une fois par entrée au combat du Pokémon." + }, + "furCoat": { + "name": "Toison Épaisse", + "description": "Divise par deux les dégâts des capacités physiques subies par le Pokémon." + }, + "magician": { + "name": "Magicien", + "description": "Les capacités volent aussi l’objet tenu par la cible." + }, + "bulletproof": { + "name": "Pare-Balles", + "description": "Protège de certaines capacités lançant des projectiles comme des bombes et des balles." + }, + "competitive": { + "name": "Battant", + "description": "Augmente beaucoup l’Attaque Spéciale du Pokémon quand ses stats ont été baissées par l’adversaire." + }, + "strongJaw": { + "name": "Prognathe", + "description": "Le Pokémon a une mâchoire robuste qui augmente la puissance de ses capacités de morsure." + }, + "refrigerate": { + "name": "Peau Gelée", + "description": "Les capacités de type Normal deviennent de type Glace. Leur puissance augmente légèrement." + }, + "sweetVeil": { + "name": "Gluco-Voile", + "description": "Le Pokémon et ses alliés ne peuvent pas s’endormir." + }, + "stanceChange": { + "name": "Déclic Tactique", + "description": "Le Pokémon prend la Forme Assaut lorsqu’il utilise une capacité offensive, et la Forme Parade lorsqu’il utilise Bouclier Royal." + }, + "galeWings": { + "name": "Ailes Bourrasque", + "description": "Quand les PV du Pokémon sont au maximum, ses capacités de type Vol sont prioritaires." + }, + "megaLauncher": { + "name": "Méga Blaster", + "description": "Augmente la puissance des capacités qui projettent une aura." + }, + "grassPelt": { + "name": "Toison Herbue", + "description": "Augmente la Défense du Pokémon si un champ herbu est actif." + }, + "symbiosis": { + "name": "Symbiose", + "description": "Quand les alliés utilisent l’objet qu’ils tiennent, le Pokémon leur donne l’objet qu’il tient en remplacement." + }, + "toughClaws": { + "name": "Griffe Dure", + "description": "Augmente la puissance des attaques directes du Pokémon." + }, + "pixilate": { + "name": "Peau Féérique", + "description": "Les capacités de type Normal deviennent de type Fée. Leur puissance augmente légèrement." + }, + "gooey": { + "name": "Poisseux", + "description": "Baisse la Vitesse de l’attaquant lorsque le Pokémon subit une attaque directe." + }, + "aerilate": { + "name": "Peau Céleste", + "description": "Les capacités de type Normal deviennent de type Vol. Leur puissance augmente légèrement." + }, + "parentalBond": { + "name": "Amour Filial", + "description": "La mère et son petit unissent leurs forces pour attaquer deux fois d’affilée." + }, + "darkAura": { + "name": "Aura Ténébreuse", + "description": "Augmente la puissance des capacités de type Ténèbres de tous les Pokémon." + }, + "fairyAura": { + "name": "Aura Féérique", + "description": "Augmente la puissance des capacités de type Fée de tous les Pokémon." + }, + "auraBreak": { + "name": "Aura Inversée", + "description": "Inverse l’effet des talents « Aura » afin que ceux-ci baissent la puissance des capacités affectées au lieu de l’augmenter." + }, + "primordialSea": { + "name": "Mer Primaire", + "description": "Altère les conditions météo pour neutraliser les attaques de type Feu." + }, + "desolateLand": { + "name": "Terre Finale", + "description": "Altère les conditions météo pour neutraliser les attaques de type Eau." + }, + "deltaStream": { + "name": "Souffle Delta", + "description": "Altère les conditions météo pour annuler les faiblesses du type Vol." + }, + "stamina": { + "name": "Endurance", + "description": "Augmente la Défense du Pokémon lorsqu’il subit une attaque." + }, + "wimpOut": { + "name": "Escampette", + "description": "Le Pokémon perd confiance quand ses PV tombent à la moitié et s’enfuit dans sa Poké Ball." + }, + "emergencyExit": { + "name": "Repli Tactique", + "description": "Le Pokémon évite les situations inutilement dangereuses. Quand ses PV tombent à la moitié, il se réfugie dans sa Poké Ball." + }, + "waterCompaction": { + "name": "Sable Humide", + "description": "Augmente beaucoup la Défense du Pokémon quand il subit une capacité de type Eau." + }, + "merciless": { + "name": "Cruauté", + "description": "Lorsque le Pokémon attaque un adversaire empoisonné, le coup est forcément critique." + }, + "shieldsDown": { + "name": "Bouclier-Carcan", + "description": "Lorsque le Pokémon perd la moitié de ses PV, son enveloppe se brise et il adopte une posture offensive." + }, + "stakeout": { + "name": "Filature", + "description": "Lorsque le Pokémon attaque une cible qui vient d’entrer sur le terrain en remplacement d’un autre Pokémon, les dégâts infligés sont doublés." + }, + "waterBubble": { + "name": "Aquabulle", + "description": "Réduit la puissance des capacités de type Feu subies par le Pokémon. Il est également immunisé contre les brulures." + }, + "steelworker": { + "name": "Expert Acier", + "description": "Augmente la puissance des attaques de type Acier." + }, + "berserk": { + "name": "Folle Furie", + "description": "Augmente l’Attaque Spéciale du Pokémon lorsque ses PV tombent à la moitié à cause d’une attaque de l’adversaire." + }, + "slushRush": { + "name": "Chasse-Neige", + "description": "Augmente la Vitesse du Pokémon quand il neige." + }, + "longReach": { + "name": "Longue Portée", + "description": "Le Pokémon est capable d’utiliser toutes ses capacités sans entrer en contact direct avec sa cible." + }, + "liquidVoice": { + "name": "Hydrata-Son", + "description": "Toutes les attaques sonores du Pokémon prennent le type Eau." + }, + "triage": { + "name": "Prioguérison", + "description": "Rend les capacités de soin prioritaires." + }, + "galvanize": { + "name": "Peau Électrique", + "description": "Les capacités de type Normal deviennent de type Électrik. Leur puissance augmente légèrement." + }, + "surgeSurfer": { + "name": "Surf Caudal", + "description": "La Vitesse du Pokémon est doublée sur un champ électrifié." + }, + "schooling": { + "name": "Banc", + "description": "Le Pokémon se rassemble avec ses congénères quand ses PV sont élevés. Quand il ne lui reste plus beaucoup de PV, le banc se disperse." + }, + "disguise": { + "name": "Fantômasque", + "description": "Le déguisement qui recouvre le corps du Pokémon est capable de le protéger d’une attaque." + }, + "battleBond": { + "name": "Synergie", + "description": "En battant un ennemi, ce Pokémon renforce ses liens avec son Dresseur, ce qui augmente son Attaque, son Attaque Spéciale et sa Vitesse." + }, + "powerConstruct": { + "name": "Rassemblement", + "description": "Lorsque le Pokémon perd la moitié de ses PV, ses Cellules se rassemblent pour l’encourager, ce qui lui permet de prendre sa Forme Parfaite." + }, + "corrosion": { + "name": "Corrosion", + "description": "Permet d’empoisonner les Pokémon de type Acier ou Poison." + }, + "comatose": { + "name": "Hypersommeil", + "description": "Le Pokémon rêve en permanence et ne se réveille jamais. Il est capable d’attaquer normalement tout en dormant." + }, + "queenlyMajesty": { + "name": "Prestance Royale", + "description": "L’adversaire est impressionné par la majesté du Pokémon et ne peut pas le viser avec une capacité prioritaire." + }, + "innardsOut": { + "name": "Expuls’Organes", + "description": "Le Pokémon inflige à l’adversaire l’ayant mis K.O. des dégâts égaux au nombre de PV qu’il lui restait avant le coup de grâce." + }, + "dancer": { + "name": "Danseuse", + "description": "Si n’importe quel Pokémon utilise une capacité dansante, le Pokémon utilise immédiatement cette danse lui aussi." + }, + "battery": { + "name": "Batterie", + "description": "Augmente la puissance des capacités spéciales des alliés." + }, + "fluffy": { + "name": "Boule de Poils", + "description": "Divise par deux les dégâts des attaques directes subies par le Pokémon, mais double les dégâts des capacités de type Feu." + }, + "dazzling": { + "name": "Corps Coloré", + "description": "L’adversaire est abasourdi par le Pokémon et ne peut pas le viser avec une capacité prioritaire." + }, + "soulHeart": { + "name": "Animacœur", + "description": "Augmente l’Attaque Spéciale du Pokémon lorsqu’un autre Pokémon est mis K.O." + }, + "tanglingHair": { + "name": "Mèche Rebelle", + "description": "Baisse la Vitesse de l’attaquant lorsque le Pokémon subit une attaque directe." + }, + "receiver": { + "name": "Receveur", + "description": "Le Pokémon reçoit le talent d’un allié mis K.O." + }, + "powerOfAlchemy": { + "name": "Osmose", + "description": "Le Pokémon acquiert le talent d’un allié mis K.O." + }, + "beastBoost": { + "name": "Boost Chimère", + "description": "Augmente la stat la plus élevée du Pokémon quand il met K.O. un autre Pokémon." + }, + "rksSystem": { + "name": "Système Alpha", + "description": "Change le type du Pokémon en fonction de la ROM équipée." + }, + "electricSurge": { + "name": "Créa-Élec", + "description": "Le Pokémon crée un champ électrifié au moment où il entre au combat." + }, + "psychicSurge": { + "name": "Créa-Psy", + "description": "Le Pokémon crée un champ psychique au moment où il entre au combat." + }, + "mistySurge": { + "name": "Créa-Brume", + "description": "Le Pokémon crée un champ brumeux au moment où il entre au combat." + }, + "grassySurge": { + "name": "Créa-Herbe", + "description": "Le Pokémon crée un champ herbu au moment où il entre au combat." + }, + "fullMetalBody": { + "name": "Métallo-Garde", + "description": "Empêche les stats du Pokémon de baisser à cause du talent ou d’une capacité de l’adversaire." + }, + "shadowShield": { + "name": "Spectro-Bouclier", + "description": "Le Pokémon subit moins de dégâts quand ses PV sont au maximum." + }, + "prismArmor": { + "name": "Prisme-Armure", + "description": "Diminue la puissance des attaques super efficaces subies." + }, + "neuroforce": { + "name": "Cérébro-Force", + "description": "Augmente encore plus la puissance des attaques super efficaces." + }, + "intrepidSword": { + "name": "Lame Indomptable", + "description": "Augmente l’Attaque du Pokémon la première fois qu’il entre au combat." + }, + "dauntlessShield": { + "name": "Égide Inflexible", + "description": "Augmente la Défense du Pokémon la première fois qu’il entre au combat." + }, + "libero": { + "name": "Libéro", + "description": "Le Pokémon prend le type de la capacité qu’il utilise. Ce talent ne peut se déclencher qu’une fois par entrée au combat du Pokémon." + }, + "ballFetch": { + "name": "Ramasse Ball", + "description": "Si le Pokémon ne tient aucun objet, il ramassera la Poké Ball lors du premier lancer raté du combat." + }, + "cottonDown": { + "name": "Effilochage", + "description": "Quand le Pokémon est touché par une attaque, il dissémine des aigrettes qui diminuent la Vitesse de tout le monde, sauf la sienne." + }, + "propellerTail": { + "name": "Propulseur", + "description": "Permet d’ignorer l’effet des capacités ou des talents qui attirent les capacités." + }, + "mirrorArmor": { + "name": "Armure Miroir", + "description": "Le Pokémon renvoie les effets réducteurs de stats qu’il reçoit." + }, + "gulpMissile": { + "name": "Dégobage", + "description": "Quand le Pokémon utilise Surf ou Plongée, il revient avec une proie. Lorsqu’il subit des dégâts par la suite, il attaque en recrachant sa proie." + }, + "stalwart": { + "name": "Nerfs d’Acier", + "description": "Permet d’ignorer l’effet des capacités ou des talents qui attirent les capacités." + }, + "steamEngine": { + "name": "Turbine", + "description": "Lorsque le Pokémon est touché par des capacités de type Eau ou Feu, sa Vitesse augmente énormément." + }, + "punkRock": { + "name": "Punk Rock", + "description": "Augmente la puissance des capacités basées sur le son. Le Pokémon ne subit que la moitié des dégâts quand il est touché par ce genre de capacités." + }, + "sandSpit": { + "name": "Expul’Sable", + "description": "Le Pokémon déclenche une tempête de sable quand il subit une attaque." + }, + "iceScales": { + "name": "Écailles Glacées", + "description": "Le Pokémon est protégé par des écailles de glace. Les dégâts qu’il subit par des capacités spéciales sont divisés par deux." + }, + "ripen": { + "name": "Mûrissement", + "description": "Le Pokémon fait murir la Baie qu’il tient et double ainsi son effet." + }, + "iceFace": { + "name": "Tête de Gel", + "description": "Le glaçon sur sa tête encaisse les attaques physiques à la place du Pokémon, mais sa destruction modifie son apparence. Le glaçon se reforme quand il neige." + }, + "powerSpot": { + "name": "Cercle d’Énergie", + "description": "Augmente la puissance des capacités des Pokémon qui se trouvent à proximité." + }, + "mimicry": { + "name": "Mimétisme", + "description": "Le Pokémon adopte le même type que le terrain lorsqu’un champ est actif." + }, + "screenCleaner": { + "name": "Brise-Barrière", + "description": "Quand le Pokémon entre au combat, les effets de Mur Lumière, Protection et Voile Aurore disparaissent pour les alliés comme pour les adversaires." + }, + "steelySpirit": { + "name": "Boost Acier", + "description": "Augmente la puissance des attaques de type Acier du Pokémon et de ses alliés." + }, + "perishBody": { + "name": "Corps Condamné", + "description": "Lorsque le Pokémon est directement touché par une capacité, l’assaillant et lui tomberont K.O. dans trois tours, à moins qu’ils ne soient remplacés entre temps." + }, + "wanderingSpirit": { + "name": "Âme Vagabonde", + "description": "Lorsque le Pokémon est directement touché par une capacité, il échange son talent avec celui de l’assaillant." + }, + "gorillaTactics": { + "name": "Entêtement", + "description": "Augmente l’Attaque, mais empêche d’utiliser toute autre capacité que celle utilisée en premier par le Pokémon." + }, + "neutralizingGas": { + "name": "Gaz Inhibiteur", + "description": "Si un Pokémon avec Gaz Inhibiteur est sur le terrain, les effets des talents de tous les autres Pokémon ne s’activent pas ou sont neutralisés." + }, + "pastelVeil": { + "name": "Voile Pastel", + "description": "Protège le Pokémon et ses alliés contre toutes les altérations de statut liées à l’empoisonnement." + }, + "hungerSwitch": { + "name": "Déclic Fringale", + "description": "À la fin de chaque tour, le Pokémon alterne entre ses formes Mode Rassasié et Mode Affamé." + }, + "quickDraw": { + "name": "Tir Vif", + "description": "Permet parfois au Pokémon d’agir en premier." + }, + "unseenFist": { + "name": "Poing Invisible", + "description": "Si le Pokémon utilise une attaque directe, celle-ci pourra toucher la cible même si elle se protège." + }, + "curiousMedicine": { + "name": "Breuvage Suspect", + "description": "Quand il entre au combat, le Pokémon répand une substance qui annule les changements de stats de ses alliés." + }, + "transistor": { + "name": "Transistor", + "description": "Augmente la puissance des capacités de type Électrik." + }, + "dragonsMaw": { + "name": "Dent de Dragon", + "description": "Augmente la puissance des capacités de type Dragon." + }, + "chillingNeigh": { + "name": "Blanche Ruade", + "description": "Quand le Pokémon met un ennemi K.O., il émet un hennissement glaçant, ce qui augmente son Attaque." + }, + "grimNeigh": { + "name": "Sombre Ruade", + "description": "Quand le Pokémon met un ennemi K.O., il émet un hennissement terrifiant qui augmente son Attaque Spéciale." + }, + "asOneGlastrier": { + "name": "Osmose Équine", + "description": "Les talents Tension de Sylveroy et Blanche Ruade de Blizzeval sont cumulés." + }, + "asOneSpectrier": { + "name": "Osmose Équine", + "description": "Les talents Tension de Sylveroy et Sombre Ruade de Spectreval sont cumulés." + }, + "lingeringAroma": { + "name": "Odeur Tenace", + "description": "Lorsque le Pokémon subit une attaque directe, le talent de l’attaquant est remplacé par Odeur Tenace." + }, + "seedSower": { + "name": "Semencier", + "description": "Le Pokémon crée un champ herbu quand il subit une attaque." + }, + "thermalExchange": { + "name": "Thermodynamique", + "description": "Lorsque le Pokémon est touché par une capacité de type Feu, il ne subit aucun dégât et son Attaque augmente." + }, + "angerShell": { + "name": "Courroupace", + "description": "Le Pokémon enrage s’il a moins de la moitié de ses PV après avoir subi une attaque. Sa Déf. et sa Déf. Spé. baissent, et son Atq., son Atq. Spé. et sa Vit. augmentent." + }, + "purifyingSalt": { + "name": "Sel Purificateur", + "description": "Le sel pur immunise le Pokémon contre les altérations de statut, et diminue de moitié les dégâts des capacités de type Spectre." + }, + "wellBakedBody": { + "name": "Bien Cuit", + "description": "Si le Pokémon est touché par une capacité de type Feu, il ne subit aucun dégât et sa Défense augmente beaucoup." + }, + "windRider": { + "name": "Aéroporté", + "description": "L’Attaque du Pokémon augmente si un vent arrière souffle ou s’il est touché par une capacité faisant appel au vent. Dans ce dernier cas, il ne subit aucun dégât." + }, + "guardDog": { + "name": "Chien de Garde", + "description": "L’Attaque du Pokémon augmente s’il subit l’effet du talent Intimidation. Les capacités ou objets qui font changer de Pokémon n’ont aucun effet sur lui." + }, + "rockyPayload": { + "name": "Porte-Roche", + "description": "Augmente la puissance des capacités de type Roche." + }, + "windPower": { + "name": "Turbine Éolienne", + "description": "Si le Pokémon est touché par une capacité faisant appel au vent, il se charge en électricité." + }, + "zeroToHero": { + "name": "Supermutation", + "description": "Le Pokémon prend sa Forme Super en quittant le combat." + }, + "commander": { + "name": "Commandant", + "description": "Si un Oyacata allié est sur le terrain quand ce Pokémon rejoint le combat, ce dernier entre dans sa bouche et devient son commandant." + }, + "electromorphosis": { + "name": "Grecharge", + "description": "Si le Pokémon subit des dégâts, il se charge en électricité." + }, + "protosynthesis": { + "name": "Paléosynthèse", + "description": "Quand le soleil brille ou que le Pokémon tient une capsule d’Énergie Booster, sa stat la plus élevée augmente." + }, + "quarkDrive": { + "name": "Charge Quantique", + "description": "Quand un champ électrifié est actif ou que le Pokémon tient une capsule d’Énergie Booster, sa stat la plus élevée augmente." + }, + "goodAsGold": { + "name": "Corps en Or", + "description": "Le corps en or pur et robuste du Pokémon l’immunise contre les capacités de statut des autres Pokémon." + }, + "vesselOfRuin": { + "name": "Urne du Fléau", + "description": "Le pouvoir de l’urne qui appelle le fléau affaiblit l’Attaque Spéciale de tous les autres Pokémon." + }, + "swordOfRuin": { + "name": "Épée du Fléau", + "description": "Le pouvoir de l’épée qui appelle le fléau affaiblit la Défense de tous les autres Pokémon." + }, + "tabletsOfRuin": { + "name": "Bois du Fléau", + "description": "Le pouvoir du bois qui appelle le fléau affaiblit l’Attaque de tous les autres Pokémon." + }, + "beadsOfRuin": { + "name": "Perles du Fléau", + "description": "Le pouvoir des perles qui appellent le fléau affaiblit la Défense Spéciale de tous les autres Pokémon." + }, + "orichalcumPulse": { + "name": "Pouls Orichalque", + "description": "Le Pokémon invoque le soleil quand il rejoint le combat. Quand les rayons du soleil sont intenses, une pulsation primitive augmente son Attaque." + }, + "hadronEngine": { + "name": "Moteur à Hadrons", + "description": "Le Pokémon crée un champ électrifié quand il rejoint le combat. Une machine du futur fait monter son Attaque Spéciale si un champ électrifié est actif." + }, + "opportunist": { + "name": "Opportuniste", + "description": "Quand les stats de l’ennemi augmentent, le Pokémon en profite pour augmenter ses stats de la même manière." + }, + "cudChew": { + "name": "Ruminant", + "description": "Quand le Pokémon mange une Baie, il la régurgite à la fin du tour suivant et la mange une nouvelle fois." + }, + "sharpness": { + "name": "Incisif", + "description": "Augmente la puissance des capacités tranchantes." + }, + "supremeOverlord": { + "name": "Général Suprême", + "description": "Quand le Pokémon entre sur le terrain, son Attaque et son Attaque Spéciale augmentent légèrement pour chaque allié mis K.O. auparavant." + }, + "costar": { + "name": "Collab", + "description": "Quand le Pokémon entre sur le terrain, il copie les changements de stats de son allié." + }, + "toxicDebris": { + "name": "Dépôt Toxique", + "description": "Quand le Pokémon est touché par une capacité physique, il répand des pics toxiques dans le camp adverse." + }, + "armorTail": { + "name": "Armure Caudale", + "description": "L’étrange queue qui recouvre la tête du Pokémon empêche ce dernier d’être visé par une capacité prioritaire." + }, + "earthEater": { + "name": "Absorbe-Terre", + "description": "Si le Pokémon est touché par une capacité de type Sol, il regagne des PV au lieu de subir des dégâts." + }, + "myceliumMight": { + "name": "Force Fongique", + "description": "Le Pokémon agit toujours plus lentement quand il utilise une capacité de statut, mais il ignore les talents adverses." + }, + "mindsEye": { + "name": "Œil Révélateur", + "description": "Le Pokémon ignore les changements d’Esquive des cibles et peut toucher les Pokémon Spectre avec des capacités Normal ou Combat. Sa Précision ne peut pas baisser." + }, + "supersweetSyrup": { + "name": "Nectar Mielleux", + "description": "La première fois que le Pokémon entre au combat, une odeur de nectar sucré se répand sur le terrain, ce qui baisse l’Esquive de l’adversaire." + }, + "hospitality": { + "name": "Aux Petits Soins", + "description": "Quand il rejoint le combat, ce Pokémon est aux petits soins avec son allié et restaure quelques PV." + }, + "toxicChain": { + "name": "Chaîne Toxique", + "description": "Grâce aux pouvoirs de sa chaine imprégnée de toxines, le Pokémon peut empoisonner gravement sa cible en la touchant avec une capacité." + }, + "embodyAspectTeal": { + "name": "Force Mémorielle", + "description": "Le Pokémon fait briller le Masque Turquoise en puisant dans ses souvenirs, ce qui augmente sa Vitesse." + }, + "embodyAspectWellspring": { + "name": "Force Mémorielle", + "description": "Le Pokémon fait briller le Masque du Puits en puisant dans ses souvenirs, ce qui augmente sa Défense Spéciale." + }, + "embodyAspectHearthflame": { + "name": "Force Mémorielle", + "description": "Le Pokémon fait briller le Masque du Fourneau en puisant dans ses souvenirs, ce qui augmente son Attaque." + }, + "embodyAspectCornerstone": { + "name": "Force Mémorielle", + "description": "Le Pokémon fait briller le Masque de la Pierre en puisant dans ses souvenirs, ce qui augmente sa Défense." + }, + "teraShift": { + "name": "Téramorphose", + "description": "Quand le Pokémon rejoint le combat, il absorbe l’énergie alentour et prend sa Forme Téracristal." + }, + "teraShell": { + "name": "Téra-Carapace", + "description": "Grâce à sa carapace qui renferme l’énergie de tous les types, les capacités subies par ce Pokémon quand ses PV sont au maximum ne sont pas très efficaces." + }, + "teraformZero": { + "name": "Téraformation 0", + "description": "Lorsque Terapagos prend sa Forme Stellaire, il utilise son pouvoir enfoui pour annuler les effets de la météo et des champs actifs." + }, + "poisonPuppeteer": { + "name": "Emprise Toxique", + "description": "Lorsque Pêchaminus empoisonne un Pokémon grâce à l’une de ses capacités, ce dernier devient également confus." + } +} diff --git a/src/locales/fr/ability.ts b/src/locales/fr/ability.ts deleted file mode 100644 index a69519e187a..00000000000 --- a/src/locales/fr/ability.ts +++ /dev/null @@ -1,1244 +0,0 @@ -import { AbilityTranslationEntries } from "#app/interfaces/locales.js"; - -export const ability: AbilityTranslationEntries = { - stench: { - name: "Puanteur", - description: "Le Pokémon émet une odeur si nauséabonde qu’il peut effrayer sa cible en l’attaquant.", - }, - drizzle: { - name: "Crachin", - description: "Le Pokémon invoque la pluie quand il entre au combat.", - }, - speedBoost: { - name: "Turbo", - description: "La Vitesse du Pokémon augmente à chaque tour.", - }, - battleArmor: { - name: "Armurbaston", - description: "Le Pokémon est protégé des coups critiques par une solide carapace.", - }, - sturdy: { - name: "Fermeté", - description: "Le Pokémon encaisse toujours au moins une attaque s’il a tous ses PV. Il est également immunisé contre les capacités pouvant mettre K.O. en un coup.", - }, - damp: { - name: "Moiteur", - description: "Le Pokémon augmente l’humidité de l’air, ce qui empêche tous les Pokémon d’utiliser des capacités explosives telles que Destruction.", - }, - limber: { - name: "Échauffement", - description: "Le Pokémon s’est suffisamment échauffé, ce qui l’immunise contre la paralysie.", - }, - sandVeil: { - name: "Voile Sable", - description: "Augmente l’Esquive du Pokémon lors des tempêtes de sable.", - }, - static: { - name: "Statik", - description: "Le Pokémon charge son corps en électricité statique, et tout contact avec lui peut paralyser.", - }, - voltAbsorb: { - name: "Absorbe-Volt", - description: "Si le Pokémon est touché par une capacité Électrik, il ne subit aucun dégât et regagne des PV à la place.", - }, - waterAbsorb: { - name: "Absorbe-Eau", - description: "Si le Pokémon est touché par une capacité Eau, il ne subit aucun dégât et regagne des PV à la place.", - }, - oblivious: { - name: "Benêt", - description: "Le Pokémon est un grand benêt, ce qui l’immunise contre l’attraction, la provocation ou l’intimidation.", - }, - cloudNine: { - name: "Ciel Gris", - description: "Annule tous les effets liés à la météo.", - }, - compoundEyes: { - name: "Œil Composé", - description: "Les yeux à facettes du Pokémon augmentent la Précision de ses capacités.", - }, - insomnia: { - name: "Insomnia", - description: "Le Pokémon est incapable de dormir.", - }, - colorChange: { - name: "Homochromie", - description: "Lorsque le Pokémon est touché par une capacité, il prend le type de celle-ci.", - }, - immunity: { - name: "Vaccin", - description: "Le Pokémon est naturellement immunisé contre toute forme de poison.", - }, - flashFire: { - name: "Torche", - description: "Lorsque le Pokémon est touché par une capacité de type Feu, il absorbe la chaleur pour renforcer ses propres capacités Feu.", - }, - shieldDust: { - name: "Écran Poudre", - description: "Le Pokémon dispose d’un écran naturel qui le protège des effets additionnels des attaques ennemies.", - }, - ownTempo: { - name: "Tempo Perso", - description: "Le Pokémon vit sa vie à son propre rythme, ce qui l’immunise contre la confusion et l’intimidation.", - }, - suctionCups: { - name: "Ventouse", - description: "Le Pokémon est solidement fixé au sol par des ventouses, ce qui le protège des capacités ou objets qui font changer de Pokémon.", - }, - intimidate: { - name: "Intimidation", - description: "Le Pokémon rugit lorsqu’il arrive au combat, ce qui intimide l’ennemi et baisse son Attaque.", - }, - shadowTag: { - name: "Marque Ombre", - description: "Empêche les Pokémon ennemis de quitter le terrain.", - }, - roughSkin: { - name: "Peau Dure", - description: "Blesse l’attaquant lorsque le Pokémon subit une attaque directe.", - }, - wonderGuard: { - name: "Garde Mystik", - description: "Une puissance mystérieuse protège le Pokémon contre toutes les capacités, sauf celles qui sont super efficaces.", - }, - levitate: { - name: "Lévitation", - description: "Le Pokémon flotte, ce qui l’immunise contre les capacités de type Sol.", - }, - effectSpore: { - name: "Pose Spore", - description: "Peut paralyser, empoisonner ou endormir l’attaquant lorsque le Pokémon subit une attaque directe.", - }, - synchronize: { - name: "Synchro", - description: "Quand le Pokémon est brulé, paralysé ou empoisonné par un autre Pokémon, il partage ce statut avec celui-ci.", - }, - clearBody: { - name: "Corps Sain", - description: "Empêche les stats du Pokémon de baisser à cause du talent ou d’une capacité de l’adversaire.", - }, - naturalCure: { - name: "Médic Nature", - description: "Le Pokémon soigne ses altérations de statut en quittant le combat.", - }, - lightningRod: { - name: "Paratonnerre", - description: "Le Pokémon détourne sur lui les capacités de type Électrik et les neutralise, tout en augmentant son Attaque Spéciale.", - }, - sereneGrace: { - name: "Sérénité", - description: "Augmente les chances d’infliger des effets additionnels.", - }, - swiftSwim: { - name: "Glissade", - description: "Augmente la Vitesse du Pokémon s’il pleut.", - }, - chlorophyll: { - name: "Chlorophylle", - description: "Augmente la Vitesse du Pokémon s’il y a du soleil.", - }, - illuminate: { - name: "Lumiattirance", - description: "Le Pokémon illumine les alentours, facilitant les rencontres avec les Pokémon sauvages et empêche sa Précision de baisser.", - }, - trace: { - name: "Calque", - description: "Lorsque le Pokémon entre au combat, il calque le talent d’un ennemi pour remplacer le sien.", - }, - hugePower: { - name: "Coloforce", - description: "Double la puissance des attaques physiques.", - }, - poisonPoint: { - name: "Point Poison", - description: "Peut empoisonner l’attaquant lorsque le Pokémon subit une attaque directe.", - }, - innerFocus: { - name: "Attention", - description: "Le Pokémon a un mental à toute épreuve qui empêche les attaques ennemies de lui faire peur. Il est aussi immunisé contre le talent Intimidation.", - }, - magmaArmor: { - name: "Armumagma", - description: "Le magma qui recouvre le corps du Pokémon le protège contre le gel.", - }, - waterVeil: { - name: "Ignifu-Voile", - description: "Le voile qui recouvre le Pokémon le protège des brulures.", - }, - magnetPull: { - name: "Magnépiège", - description: "Attire les Pokémon Acier grâce à un champ magnétique, ce qui les empêche de quitter le terrain.", - }, - soundproof: { - name: "Anti-Bruit", - description: "Protège le Pokémon de toutes les capacités sonores.", - }, - rainDish: { - name: "Cuvette", - description: "Le Pokémon récupère progressivement des PV lorsqu’il pleut.", - }, - sandStream: { - name: "Sable Volant", - description: "Le Pokémon invoque une tempête de sable quand il entre au combat.", - }, - pressure: { - name: "Pression", - description: "Met la pression à l’adversaire pour le forcer à dépenser plus de PP.", - }, - thickFat: { - name: "Isograisse", - description: "Le Pokémon est protégé par une épaisse couche de graisse qui diminue de moitié les dégâts qu’il subit des capacités de types Feu et Glace.", - }, - earlyBird: { - name: "Matinal", - description: "Le Pokémon se réveille deux fois plus rapidement que les autres.", - }, - flameBody: { - name: "Corps Ardent", - description: "Peut bruler l’attaquant lorsque le Pokémon subit une attaque directe.", - }, - runAway: { - name: "Fuite", - description: "Permet de fuir n’importe quel Pokémon sauvage.", - }, - keenEye: { - name: "Regard Vif", - description: "Les yeux perçants du Pokémon empêchent sa Précision de baisser.", - }, - hyperCutter: { - name: "Hyper Cutter", - description: "Le Pokémon est armé de puissantes pinces qui font sa fierté et empêchent son Attaque d’être baissée par l’adversaire.", - }, - pickup: { - name: "Ramassage", - description: "Permet parfois au Pokémon de ramasser les objets que d’autres Pokémon ont utilisés. Il lui arrive aussi d’en trouver hors des combats.", - }, - truant: { - name: "Absentéisme", - description: "Lorsque le Pokémon utilise une capacité, il passe le tour suivant à paresser.", - }, - hustle: { - name: "Agitation", - description: "Améliore l’Attaque du Pokémon, mais diminue la Précision.", - }, - cuteCharm: { - name: "Joli Sourire", - description: "Peut séduire l’attaquant lorsque le Pokémon subit une attaque directe.", - }, - plus: { - name: "Plus", - description: "L’Attaque Spéciale du Pokémon augmente si un Pokémon allié a le talent Moins ou Plus.", - }, - minus: { - name: "Moins", - description: "L’Attaque Spéciale du Pokémon augmente si un Pokémon allié a le talent Moins ou Plus.", - }, - forecast: { - name: "Météo", - description: "Le Pokémon prend le type Eau, Feu ou Glace en fonction de la météo.", - }, - stickyHold: { - name: "Glu", - description: "Les objets sont collés au corps gluant du Pokémon, ce qui empêche ses adversaires de les dérober.", - }, - shedSkin: { - name: "Mue", - description: "Le Pokémon soigne parfois ses altérations de statut en muant.", - }, - guts: { - name: "Cran", - description: "Augmente l’Attaque du Pokémon s’il est affecté par une altération de statut.", - }, - marvelScale: { - name: "Écaille Spéciale", - description: "Les écailles mystérieuses du Pokémon réagissent aux altérations de statut en augmentant sa Défense.", - }, - liquidOoze: { - name: "Suintement", - description: "Le Pokémon suinte un liquide toxique nauséabond qui blesse tous ceux qui tentent de voler ses PV.", - }, - overgrow: { - name: "Engrais", - description: "Augmente la puissance des capacités de type Plante du Pokémon quand il a perdu une certaine quantité de PV.", - }, - blaze: { - name: "Brasier", - description: "Augmente la puissance des capacités de type Feu du Pokémon quand il a perdu une certaine quantité de PV.", - }, - torrent: { - name: "Torrent", - description: "Augmente la puissance des capacités de type Eau du Pokémon quand il a perdu une certaine quantité de PV.", - }, - swarm: { - name: "Essaim", - description: "Augmente la puissance des capacités de type Insecte du Pokémon quand il a perdu une certaine quantité de PV.", - }, - rockHead: { - name: "Tête de Roc", - description: "Le Pokémon peut utiliser des capacités occasionnant un contrecoup sans perdre de PV.", - }, - drought: { - name: "Sécheresse", - description: "Le Pokémon invoque le soleil quand il entre au combat.", - }, - arenaTrap: { - name: "Piège Sable", - description: "Empêche l’adversaire de quitter le terrain.", - }, - vitalSpirit: { - name: "Esprit Vital", - description: "Empêche le Pokémon de s’endormir.", - }, - whiteSmoke: { - name: "Écran Fumée", - description: "Un écran de fumée empêche l’adversaire de baisser les stats du Pokémon.", - }, - purePower: { - name: "Force Pure", - description: "Le Pokémon utilise sa maitrise du yoga pour doubler la puissance de ses attaques physiques.", - }, - shellArmor: { - name: "Coque Armure", - description: "Le Pokémon est protégé des coups critiques par sa carapace.", - }, - airLock: { - name: "Air Lock", - description: "Annule tous les effets de la météo.", - }, - tangledFeet: { - name: "Pieds Confus", - description: "Augmente l’Esquive du Pokémon s’il est confus.", - }, - motorDrive: { - name: "Motorisé", - description: "Si le Pokémon est touché par une capacité de type Électrik, il ne subit aucun dégât et sa Vitesse augmente.", - }, - rivalry: { - name: "Rivalité", - description: "Le Pokémon déteste la concurrence et inflige plus de dégâts si sa cible est du même sexe. Par contre, il en inflige moins si sa cible est du sexe opposé.", - }, - steadfast: { - name: "Impassible", - description: "Augmente la Vitesse du Pokémon quand il a peur.", - }, - snowCloak: { - name: "Rideau Neige", - description: "Augmente l’Esquive du Pokémon quand il neige.", - }, - gluttony: { - name: "Gloutonnerie", - description: "Si le Pokémon tient une Baie à manger en cas de PV bas, il la mange dès qu’il a perdu la moitié de ses PV.", - }, - angerPoint: { - name: "Colérique", - description: "Si le Pokémon subit un coup critique, il entre dans une colère noire qui augmente son Attaque au maximum.", - }, - unburden: { - name: "Délestage", - description: "Augmente la Vitesse du Pokémon s’il perd ou utilise l’objet qu’il tenait au début du combat.", - }, - heatproof: { - name: "Ignifugé", - description: "Diminue de moitié les dégâts infligés au Pokémon par les capacités de type Feu.", - }, - simple: { - name: "Simple", - description: "Les changements de stats sont deux fois plus importants pour le Pokémon.", - }, - drySkin: { - name: "Peau Sèche", - description: "Quand le soleil brille, le Pokémon perd des PV et subit plus de dégâts des capacités Feu, mais il regagne des PV lorsqu’il pleut ou s’il est touché par une capacité Eau.", - }, - download: { - name: "Télécharge", - description: "Le Pokémon compare la Défense et la Défense Spéciale de l’adversaire et, en fonction de la stat la plus basse, il augmente sa propre Attaque ou Attaque Spéciale.", - }, - ironFist: { - name: "Poing de Fer", - description: "Augmente la puissance des capacités coups de poing.", - }, - poisonHeal: { - name: "Soin Poison", - description: "Quand le Pokémon est empoisonné, il regagne des PV au lieu d’en perdre.", - }, - adaptability: { - name: "Adaptabilité", - description: "Quand le Pokémon utilise une capacité du même type que lui, le bonus de puissance qu’elle reçoit est encore plus important que normalement.", - }, - skillLink: { - name: "Multi-Coups", - description: "Les capacités pouvant frapper plusieurs fois frappent toujours le nombre maximal de coups.", - }, - hydration: { - name: "Hydratation", - description: "Soigne les altérations de statut du Pokémon quand il pleut.", - }, - solarPower: { - name: "Force Soleil", - description: "Quand le soleil brille, l’Attaque Spéciale du Pokémon augmente mais il perd des PV à chaque tour.", - }, - quickFeet: { - name: "Pied Véloce", - description: "Augmente la Vitesse du Pokémon en cas d’altération de statut.", - }, - normalize: { - name: "Normalise", - description: "Toutes les capacités du Pokémon deviennent de type Normal, quel que soit leur type original. Leur puissance augmente légèrement.", - }, - sniper: { - name: "Sniper", - description: "Lorsque le Pokémon porte un coup critique, les dégâts infligés augmentent encore plus que d’habitude.", - }, - magicGuard: { - name: "Garde Magik", - description: "Seules les attaques peuvent blesser le Pokémon.", - }, - noGuard: { - name: "Annule Garde", - description: "Les capacités du Pokémon touchent leur cible à coup sûr, mais les capacités adverses le touchent aussi à coup sûr.", - }, - stall: { - name: "Frein", - description: "Le Pokémon utilise toujours sa capacité en dernier.", - }, - technician: { - name: "Technicien", - description: "Augmente la puissance des capacités les plus faibles.", - }, - leafGuard: { - name: "Feuille Garde", - description: "Protège le Pokémon contre les altérations de statut quand le soleil brille.", - }, - klutz: { - name: "Maladresse", - description: "Le Pokémon ne peut utiliser aucun objet tenu.", - }, - moldBreaker: { - name: "Brise Moule", - description: "Le Pokémon ignore les talents adverses qui auraient un effet sur ses capacités.", - }, - superLuck: { - name: "Chanceux", - description: "Le Pokémon est tellement chanceux qu’il inflige plus fréquemment des coups critiques.", - }, - aftermath: { - name: "Boom Final", - description: "Si le Pokémon est mis K.O. par une attaque directe, il inflige des dégâts à l’attaquant avant de s’évanouir.", - }, - anticipation: { - name: "Anticipation", - description: "Le Pokémon devine si l’adversaire connait une capacité dangereuse pour lui.", - }, - forewarn: { - name: "Prédiction", - description: "Révèle l’une des capacités de l’adversaire quand le combat commence.", - }, - unaware: { - name: "Inconscient", - description: "Le Pokémon ignore les changements de stats des autres Pokémon, qu’il attaque ou soit attaqué.", - }, - tintedLens: { - name: "Lentiteintée", - description: "Permet à une capacité qui n’est pas très efficace d’infliger des dégâts comme si elle était efficace normalement.", - }, - filter: { - name: "Filtre", - description: "Diminue la puissance des attaques super efficaces subies.", - }, - slowStart: { - name: "Début Calme", - description: "Divise la Vitesse et l’Attaque du Pokémon par deux pendant les cinq premiers tours du combat.", - }, - scrappy: { - name: "Querelleur", - description: "Permet aux capacités de type Normal ou Combat du Pokémon de toucher les Pokémon de type Spectre. Immunise aussi contre le talent Intimidation.", - }, - stormDrain: { - name: "Lavabo", - description: "Le Pokémon détourne sur lui les capacités de type Eau et les neutralise, tout en augmentant son Attaque Spéciale.", - }, - iceBody: { - name: "Corps Gel", - description: "Régénère peu à peu les PV du Pokémon quand il neige.", - }, - solidRock: { - name: "Solide Roc", - description: "Diminue la puissance des attaques super efficaces subies.", - }, - snowWarning: { - name: "Alerte Neige", - description: "Le Pokémon invoque la neige quand il entre au combat.", - }, - honeyGather: { - name: "Cherche Miel", - description: "The Pokémon gathers Honey after a battle. The Honey is then sold for money.", - }, - frisk: { - name: "Fouille", - description: "Lorsqu'il entre en combat, le Pokémon peut vérifier la capacité d'un Pokémon adverse.", - }, - reckless: { - name: "Téméraire", - description: "Augmente la puissance des capacités occasionnant un contrecoup.", - }, - multitype: { - name: "Multi-Type", - description: "Modifie le type du Pokémon en fonction de la plaque qu’il tient.", - }, - flowerGift: { - name: "Don Floral", - description: "Augmente l’Attaque et la Défense Spéciale du Pokémon et de ses alliés lorsque le soleil brille.", - }, - badDreams: { - name: "Mauvais Rêve", - description: "Inflige des dégâts aux ennemis endormis.", - }, - pickpocket: { - name: "Pickpocket", - description: "Vole l’objet que tient l’attaquant quand le Pokémon subit une attaque directe.", - }, - sheerForce: { - name: "Sans Limite", - description: "Les capacités ayant un effet additionnel le perdent, mais leur puissance augmente.", - }, - contrary: { - name: "Contestation", - description: "Inverse les changements de stats : les augmentations de stats se transforment en baisses, et vice-versa.", - }, - unnerve: { - name: "Tension", - description: "Fait stresser l’adversaire, ce qui l’empêche de manger des Baies.", - }, - defiant: { - name: "Acharné", - description: "Augmente beaucoup l’Attaque du Pokémon quand ses stats sont baissées par l’adversaire.", - }, - defeatist: { - name: "Défaitiste", - description: "Le Pokémon devient défaitiste quand ses PV tombent à la moitié, et son Attaque et son Attaque Spéciale sont divisées par deux.", - }, - cursedBody: { - name: "Corps Maudit", - description: "Quand le Pokémon est touché par une capacité adverse, il inflige parfois Entrave sur celle-ci.", - }, - healer: { - name: "Cœur Soin", - description: "Soigne parfois une altération de statut d’un allié proche.", - }, - friendGuard: { - name: "Garde-Ami", - description: "Diminue les dégâts subis par les alliés.", - }, - weakArmor: { - name: "Armurouillée", - description: "Quand le Pokémon est touché par une capacité physique, sa Défense baisse mais sa Vitesse augmente beaucoup.", - }, - heavyMetal: { - name: "Heavy Metal", - description: "Double le poids du Pokémon.", - }, - lightMetal: { - name: "Light Metal", - description: "Divise par deux le poids du Pokémon.", - }, - multiscale: { - name: "Multiécaille", - description: "Le Pokémon subit moins de dégâts quand ses PV sont au maximum.", - }, - toxicBoost: { - name: "Rage Poison", - description: "Augmente la puissance des capacités physiques quand le Pokémon est empoisonné.", - }, - flareBoost: { - name: "Rage Brûlure", - description: "Augmente la puissance des capacités spéciales quand le Pokémon est brulé.", - }, - harvest: { - name: "Récolte", - description: "Permet de réutiliser une même Baie plusieurs fois.", - }, - telepathy: { - name: "Télépathe", - description: "Le Pokémon anticipe et évite les attaques de ses alliés.", - }, - moody: { - name: "Lunatique", - description: "Augmente beaucoup une stat du Pokémon et en baisse une autre au hasard à chaque tour.", - }, - overcoat: { - name: "Envelocape", - description: "Protège des dégâts occasionnés par les tempêtes de sable, ainsi que des effets des capacités qui libèrent de la poudre et des spores.", - }, - poisonTouch: { - name: "Toxitouche", - description: "Peut empoisonner l’ennemi par simple contact.", - }, - regenerator: { - name: "Régé-Force", - description: "Restaure un peu de PV si le Pokémon est retiré du combat.", - }, - bigPecks: { - name: "Cœur de Coq", - description: "Protège des effets qui baissent la Défense.", - }, - sandRush: { - name: "Baigne Sable", - description: "Augmente la Vitesse lors des tempêtes de sable.", - }, - wonderSkin: { - name: "Peau Miracle", - description: "Le Pokémon résiste mieux aux capacités de statut.", - }, - analytic: { - name: "Analyste", - description: "Augmente la puissance des capacités du Pokémon s’il attaque en dernier.", - }, - illusion: { - name: "Illusion", - description: "Le Pokémon prend l’apparence du dernier membre de l’équipe pour tromper l’adversaire.", - }, - imposter: { - name: "Imposteur", - description: "Le Pokémon prend l’apparence du Pokémon adverse.", - }, - infiltrator: { - name: "Infiltration", - description: "Traverse les barrières et les clones adverses pour attaquer directement.", - }, - mummy: { - name: "Momie", - description: "Lorsque le Pokémon subit une attaque directe, le talent de l’attaquant est remplacé par Momie.", - }, - moxie: { - name: "Impudence", - description: "Quand le Pokémon met un ennemi K.O., sa confiance en lui ne connait plus de limite et son Attaque augmente.", - }, - justified: { - name: "Cœur Noble", - description: "Réveille la noblesse du Pokémon lorsqu’il subit une attaque de type Ténèbres, ce qui augmente son Attaque.", - }, - rattled: { - name: "Phobique", - description: "Si le Pokémon est touché par le talent Intimidation ou une attaque de type Ténèbres, Spectre ou Insecte, sa phobie se révèle et sa Vitesse augmente.", - }, - magicBounce: { - name: "Miroir Magik", - description: "Annule les effets des capacités de statut subies par le Pokémon et les retourne à l’envoyeur.", - }, - sapSipper: { - name: "Herbivore", - description: "Annule les attaques de type Plante subies par le Pokémon et augmente son Attaque.", - }, - prankster: { - name: "Farceur", - description: "Rend les capacités de statut du Pokémon prioritaires.", - }, - sandForce: { - name: "Force Sable", - description: "Augmente la puissance des capacités de types Roche, Sol et Acier en cas de tempête de sable.", - }, - ironBarbs: { - name: "Épine de Fer", - description: "Inflige des dégâts à l’attaquant lorsque le Pokémon subit une attaque directe.", - }, - zenMode: { - name: "Mode Transe", - description: "Le Pokémon change de forme quand il lui reste moins de la moitié de ses PV.", - }, - victoryStar: { - name: "Victorieux", - description: "Augmente la Précision du Pokémon et de ses alliés.", - }, - turboblaze: { - name: "Turbo Brasier", - description: "Le Pokémon ignore les talents adverses qui auraient un effet sur ses capacités.", - }, - teravolt: { - name: "Téra-Voltage", - description: "Le Pokémon ignore les talents adverses qui auraient un effet sur ses capacités.", - }, - aromaVeil: { - name: "Aroma-Voile", - description: "Protège le Pokémon et ses alliés des effets limitant le libre arbitre.", - }, - flowerVeil: { - name: "Flora-Voile", - description: "Empêche les alliés de type Plante de subir des baisses de stats et des altérations de statut.", - }, - cheekPouch: { - name: "Bajoues", - description: "Le Pokémon récupère des PV lorsqu’il consomme n’importe quelle Baie en plus de bénéficier de ses effets habituels.", - }, - protean: { - name: "Protéen", - description: "Le Pokémon prend le type de la capacité qu’il utilise. Ce talent ne peut se déclencher qu’une fois par entrée au combat du Pokémon.", - }, - furCoat: { - name: "Toison Épaisse", - description: "Divise par deux les dégâts des capacités physiques subies par le Pokémon.", - }, - magician: { - name: "Magicien", - description: "Les capacités volent aussi l’objet tenu par la cible.", - }, - bulletproof: { - name: "Pare-Balles", - description: "Protège de certaines capacités lançant des projectiles comme des bombes et des balles.", - }, - competitive: { - name: "Battant", - description: "Augmente beaucoup l’Attaque Spéciale du Pokémon quand ses stats ont été baissées par l’adversaire.", - }, - strongJaw: { - name: "Prognathe", - description: "Le Pokémon a une mâchoire robuste qui augmente la puissance de ses capacités de morsure.", - }, - refrigerate: { - name: "Peau Gelée", - description: "Les capacités de type Normal deviennent de type Glace. Leur puissance augmente légèrement.", - }, - sweetVeil: { - name: "Gluco-Voile", - description: "Le Pokémon et ses alliés ne peuvent pas s’endormir.", - }, - stanceChange: { - name: "Déclic Tactique", - description: "Le Pokémon prend la Forme Assaut lorsqu’il utilise une capacité offensive, et la Forme Parade lorsqu’il utilise Bouclier Royal.", - }, - galeWings: { - name: "Ailes Bourrasque", - description: "Quand les PV du Pokémon sont au maximum, ses capacités de type Vol sont prioritaires.", - }, - megaLauncher: { - name: "Méga Blaster", - description: "Augmente la puissance des capacités qui projettent une aura.", - }, - grassPelt: { - name: "Toison Herbue", - description: "Augmente la Défense du Pokémon si un champ herbu est actif.", - }, - symbiosis: { - name: "Symbiose", - description: "Quand les alliés utilisent l’objet qu’ils tiennent, le Pokémon leur donne l’objet qu’il tient en remplacement.", - }, - toughClaws: { - name: "Griffe Dure", - description: "Augmente la puissance des attaques directes du Pokémon.", - }, - pixilate: { - name: "Peau Féérique", - description: "Les capacités de type Normal deviennent de type Fée. Leur puissance augmente légèrement.", - }, - gooey: { - name: "Poisseux", - description: "Baisse la Vitesse de l’attaquant lorsque le Pokémon subit une attaque directe.", - }, - aerilate: { - name: "Peau Céleste", - description: "Les capacités de type Normal deviennent de type Vol. Leur puissance augmente légèrement.", - }, - parentalBond: { - name: "Amour Filial", - description: "La mère et son petit unissent leurs forces pour attaquer deux fois d’affilée.", - }, - darkAura: { - name: "Aura Ténébreuse", - description: "Augmente la puissance des capacités de type Ténèbres de tous les Pokémon.", - }, - fairyAura: { - name: "Aura Féérique", - description: "Augmente la puissance des capacités de type Fée de tous les Pokémon.", - }, - auraBreak: { - name: "Aura Inversée", - description: "Inverse l’effet des talents « Aura » afin que ceux-ci baissent la puissance des capacités affectées au lieu de l’augmenter.", - }, - primordialSea: { - name: "Mer Primaire", - description: "Altère les conditions météo pour neutraliser les attaques de type Feu.", - }, - desolateLand: { - name: "Terre Finale", - description: "Altère les conditions météo pour neutraliser les attaques de type Eau.", - }, - deltaStream: { - name: "Souffle Delta", - description: "Altère les conditions météo pour annuler les faiblesses du type Vol.", - }, - stamina: { - name: "Endurance", - description: "Augmente la Défense du Pokémon lorsqu’il subit une attaque.", - }, - wimpOut: { - name: "Escampette", - description: "Le Pokémon perd confiance quand ses PV tombent à la moitié et s’enfuit dans sa Poké Ball.", - }, - emergencyExit: { - name: "Repli Tactique", - description: "Le Pokémon évite les situations inutilement dangereuses. Quand ses PV tombent à la moitié, il se réfugie dans sa Poké Ball.", - }, - waterCompaction: { - name: "Sable Humide", - description: "Augmente beaucoup la Défense du Pokémon quand il subit une capacité de type Eau.", - }, - merciless: { - name: "Cruauté", - description: "Lorsque le Pokémon attaque un adversaire empoisonné, le coup est forcément critique.", - }, - shieldsDown: { - name: "Bouclier-Carcan", - description: "Lorsque le Pokémon perd la moitié de ses PV, son enveloppe se brise et il adopte une posture offensive.", - }, - stakeout: { - name: "Filature", - description: "Lorsque le Pokémon attaque une cible qui vient d’entrer sur le terrain en remplacement d’un autre Pokémon, les dégâts infligés sont doublés.", - }, - waterBubble: { - name: "Aquabulle", - description: "Réduit la puissance des capacités de type Feu subies par le Pokémon. Il est également immunisé contre les brulures.", - }, - steelworker: { - name: "Expert Acier", - description: "Augmente la puissance des attaques de type Acier.", - }, - berserk: { - name: "Folle Furie", - description: "Augmente l’Attaque Spéciale du Pokémon lorsque ses PV tombent à la moitié à cause d’une attaque de l’adversaire.", - }, - slushRush: { - name: "Chasse-Neige", - description: "Augmente la Vitesse du Pokémon quand il neige.", - }, - longReach: { - name: "Longue Portée", - description: "Le Pokémon est capable d’utiliser toutes ses capacités sans entrer en contact direct avec sa cible.", - }, - liquidVoice: { - name: "Hydrata-Son", - description: "Toutes les attaques sonores du Pokémon prennent le type Eau.", - }, - triage: { - name: "Prioguérison", - description: "Rend les capacités de soin prioritaires.", - }, - galvanize: { - name: "Peau Électrique", - description: "Les capacités de type Normal deviennent de type Électrik. Leur puissance augmente légèrement.", - }, - surgeSurfer: { - name: "Surf Caudal", - description: "La Vitesse du Pokémon est doublée sur un champ électrifié.", - }, - schooling: { - name: "Banc", - description: "Le Pokémon se rassemble avec ses congénères quand ses PV sont élevés. Quand il ne lui reste plus beaucoup de PV, le banc se disperse.", - }, - disguise: { - name: "Fantômasque", - description: "Le déguisement qui recouvre le corps du Pokémon est capable de le protéger d’une attaque.", - }, - battleBond: { - name: "Synergie", - description: "En battant un ennemi, ce Pokémon renforce ses liens avec son Dresseur, ce qui augmente son Attaque, son Attaque Spéciale et sa Vitesse.", - }, - powerConstruct: { - name: "Rassemblement", - description: "Lorsque le Pokémon perd la moitié de ses PV, ses Cellules se rassemblent pour l’encourager, ce qui lui permet de prendre sa Forme Parfaite.", - }, - corrosion: { - name: "Corrosion", - description: "Permet d’empoisonner les Pokémon de type Acier ou Poison.", - }, - comatose: { - name: "Hypersommeil", - description: "Le Pokémon rêve en permanence et ne se réveille jamais. Il est capable d’attaquer normalement tout en dormant.", - }, - queenlyMajesty: { - name: "Prestance Royale", - description: "L’adversaire est impressionné par la majesté du Pokémon et ne peut pas le viser avec une capacité prioritaire.", - }, - innardsOut: { - name: "Expuls’Organes", - description: "Le Pokémon inflige à l’adversaire l’ayant mis K.O. des dégâts égaux au nombre de PV qu’il lui restait avant le coup de grâce.", - }, - dancer: { - name: "Danseuse", - description: "Si n’importe quel Pokémon utilise une capacité dansante, le Pokémon utilise immédiatement cette danse lui aussi.", - }, - battery: { - name: "Batterie", - description: "Augmente la puissance des capacités spéciales des alliés.", - }, - fluffy: { - name: "Boule de Poils", - description: "Divise par deux les dégâts des attaques directes subies par le Pokémon, mais double les dégâts des capacités de type Feu.", - }, - dazzling: { - name: "Corps Coloré", - description: "L’adversaire est abasourdi par le Pokémon et ne peut pas le viser avec une capacité prioritaire.", - }, - soulHeart: { - name: "Animacœur", - description: "Augmente l’Attaque Spéciale du Pokémon lorsqu’un autre Pokémon est mis K.O.", - }, - tanglingHair: { - name: "Mèche Rebelle", - description: "Baisse la Vitesse de l’attaquant lorsque le Pokémon subit une attaque directe.", - }, - receiver: { - name: "Receveur", - description: "Le Pokémon reçoit le talent d’un allié mis K.O.", - }, - powerofAlchemy: { - name: "Osmose", - description: "Le Pokémon acquiert le talent d’un allié mis K.O.", - }, - beastBoost: { - name: "Boost Chimère", - description: "Augmente la stat la plus élevée du Pokémon quand il met K.O. un autre Pokémon.", - }, - rksSystem: { - name: "Système Alpha", - description: "Change le type du Pokémon en fonction de la ROM équipée.", - }, - electricSurge: { - name: "Créa-Élec", - description: "Le Pokémon crée un champ électrifié au moment où il entre au combat.", - }, - psychicSurge: { - name: "Créa-Psy", - description: "Le Pokémon crée un champ psychique au moment où il entre au combat.", - }, - mistySurge: { - name: "Créa-Brume", - description: "Le Pokémon crée un champ brumeux au moment où il entre au combat.", - }, - grassySurge: { - name: "Créa-Herbe", - description: "Le Pokémon crée un champ herbu au moment où il entre au combat.", - }, - fullMetalBody: { - name: "Métallo-Garde", - description: "Empêche les stats du Pokémon de baisser à cause du talent ou d’une capacité de l’adversaire.", - }, - shadowShield: { - name: "Spectro-Bouclier", - description: "Le Pokémon subit moins de dégâts quand ses PV sont au maximum.", - }, - prismArmor: { - name: "Prisme-Armure", - description: "Diminue la puissance des attaques super efficaces subies.", - }, - neuroforce: { - name: "Cérébro-Force", - description: "Augmente encore plus la puissance des attaques super efficaces.", - }, - intrepidSword: { - name: "Lame Indomptable", - description: "Augmente l’Attaque du Pokémon la première fois qu’il entre au combat.", - }, - dauntlessShield: { - name: "Égide Inflexible", - description: "Augmente la Défense du Pokémon la première fois qu’il entre au combat.", - }, - libero: { - name: "Libéro", - description: "Le Pokémon prend le type de la capacité qu’il utilise. Ce talent ne peut se déclencher qu’une fois par entrée au combat du Pokémon.", - }, - ballFetch: { - name: "Ramasse Ball", - description: "Si le Pokémon ne tient aucun objet, il ramassera la Poké Ball lors du premier lancer raté du combat.", - }, - cottonDown: { - name: "Effilochage", - description: "Quand le Pokémon est touché par une attaque, il dissémine des aigrettes qui diminuent la Vitesse de tout le monde, sauf la sienne.", - }, - propellerTail: { - name: "Propulseur", - description: "Permet d’ignorer l’effet des capacités ou des talents qui attirent les capacités.", - }, - mirrorArmor: { - name: "Armure Miroir", - description: "Le Pokémon renvoie les effets réducteurs de stats qu’il reçoit.", - }, - gulpMissile: { - name: "Dégobage", - description: "Quand le Pokémon utilise Surf ou Plongée, il revient avec une proie. Lorsqu’il subit des dégâts par la suite, il attaque en recrachant sa proie.", - }, - stalwart: { - name: "Nerfs d’Acier", - description: "Permet d’ignorer l’effet des capacités ou des talents qui attirent les capacités.", - }, - steamEngine: { - name: "Turbine", - description: "Lorsque le Pokémon est touché par des capacités de type Eau ou Feu, sa Vitesse augmente énormément.", - }, - punkRock: { - name: "Punk Rock", - description: "Augmente la puissance des capacités basées sur le son. Le Pokémon ne subit que la moitié des dégâts quand il est touché par ce genre de capacités.", - }, - sandSpit: { - name: "Expul’Sable", - description: "Le Pokémon déclenche une tempête de sable quand il subit une attaque.", - }, - iceScales: { - name: "Écailles Glacées", - description: "Le Pokémon est protégé par des écailles de glace. Les dégâts qu’il subit par des capacités spéciales sont divisés par deux.", - }, - ripen: { - name: "Mûrissement", - description: "Le Pokémon fait murir la Baie qu’il tient et double ainsi son effet.", - }, - iceFace: { - name: "Tête de Gel", - description: "Le glaçon sur sa tête encaisse les attaques physiques à la place du Pokémon, mais sa destruction modifie son apparence. Le glaçon se reforme quand il neige.", - }, - powerSpot: { - name: "Cercle d’Énergie", - description: "Augmente la puissance des capacités des Pokémon qui se trouvent à proximité.", - }, - mimicry: { - name: "Mimétisme", - description: "Le Pokémon adopte le même type que le terrain lorsqu’un champ est actif.", - }, - screenCleaner: { - name: "Brise-Barrière", - description: "Quand le Pokémon entre au combat, les effets de Mur Lumière, Protection et Voile Aurore disparaissent pour les alliés comme pour les adversaires.", - }, - steelySpirit: { - name: "Boost Acier", - description: "Augmente la puissance des attaques de type Acier du Pokémon et de ses alliés.", - }, - perishBody: { - name: "Corps Condamné", - description: "Lorsque le Pokémon est directement touché par une capacité, l’assaillant et lui tomberont K.O. dans trois tours, à moins qu’ils ne soient remplacés entre temps.", - }, - wanderingSpirit: { - name: "Âme Vagabonde", - description: "Lorsque le Pokémon est directement touché par une capacité, il échange son talent avec celui de l’assaillant.", - }, - gorillaTactics: { - name: "Entêtement", - description: "Augmente l’Attaque, mais empêche d’utiliser toute autre capacité que celle utilisée en premier par le Pokémon.", - }, - neutralizingGas: { - name: "Gaz Inhibiteur", - description: "Si un Pokémon avec Gaz Inhibiteur est sur le terrain, les effets des talents de tous les autres Pokémon ne s’activent pas ou sont neutralisés.", - }, - pastelVeil: { - name: "Voile Pastel", - description: "Protège le Pokémon et ses alliés contre toutes les altérations de statut liées à l’empoisonnement.", - }, - hungerSwitch: { - name: "Déclic Fringale", - description: "À la fin de chaque tour, le Pokémon alterne entre ses formes Mode Rassasié et Mode Affamé.", - }, - quickDraw: { - name: "Tir Vif", - description: "Permet parfois au Pokémon d’agir en premier.", - }, - unseenFist: { - name: "Poing Invisible", - description: "Si le Pokémon utilise une attaque directe, celle-ci pourra toucher la cible même si elle se protège.", - }, - curiousMedicine: { - name: "Breuvage Suspect", - description: "Quand il entre au combat, le Pokémon répand une substance qui annule les changements de stats de ses alliés.", - }, - transistor: { - name: "Transistor", - description: "Augmente la puissance des capacités de type Électrik.", - }, - dragonsMaw: { - name: "Dent de Dragon", - description: "Augmente la puissance des capacités de type Dragon.", - }, - chillingNeigh: { - name: "Blanche Ruade", - description: "Quand le Pokémon met un ennemi K.O., il émet un hennissement glaçant, ce qui augmente son Attaque.", - }, - grimNeigh: { - name: "Sombre Ruade", - description: "Quand le Pokémon met un ennemi K.O., il émet un hennissement terrifiant qui augmente son Attaque Spéciale.", - }, - asOneGlastrier: { - name: "Osmose Équine", - description: "Les talents Tension de Sylveroy et Blanche Ruade de Blizzeval sont cumulés.", - }, - asOneSpectrier: { - name: "Osmose Équine", - description: "Les talents Tension de Sylveroy et Sombre Ruade de Spectreval sont cumulés.", - }, - lingeringAroma: { - name: "Odeur Tenace", - description: "Lorsque le Pokémon subit une attaque directe, le talent de l’attaquant est remplacé par Odeur Tenace.", - }, - seedSower: { - name: "Semencier", - description: "Le Pokémon crée un champ herbu quand il subit une attaque.", - }, - thermalExchange: { - name: "Thermodynamique", - description: "Lorsque le Pokémon est touché par une capacité de type Feu, il ne subit aucun dégât et son Attaque augmente.", - }, - angerShell: { - name: "Courroupace", - description: "Le Pokémon enrage s’il a moins de la moitié de ses PV après avoir subi une attaque. Sa Déf. et sa Déf. Spé. baissent, et son Atq., son Atq. Spé. et sa Vit. augmentent.", - }, - purifyingSalt: { - name: "Sel Purificateur", - description: "Le sel pur immunise le Pokémon contre les altérations de statut, et diminue de moitié les dégâts des capacités de type Spectre.", - }, - wellBakedBody: { - name: "Bien Cuit", - description: "Si le Pokémon est touché par une capacité de type Feu, il ne subit aucun dégât et sa Défense augmente beaucoup.", - }, - windRider: { - name: "Aéroporté", - description: "L’Attaque du Pokémon augmente si un vent arrière souffle ou s’il est touché par une capacité faisant appel au vent. Dans ce dernier cas, il ne subit aucun dégât.", - }, - guardDog: { - name: "Chien de Garde", - description: "L’Attaque du Pokémon augmente s’il subit l’effet du talent Intimidation. Les capacités ou objets qui font changer de Pokémon n’ont aucun effet sur lui.", - }, - rockyPayload: { - name: "Porte-Roche", - description: "Augmente la puissance des capacités de type Roche.", - }, - windPower: { - name: "Turbine Éolienne", - description: "Si le Pokémon est touché par une capacité faisant appel au vent, il se charge en électricité.", - }, - zeroToHero: { - name: "Supermutation", - description: "Le Pokémon prend sa Forme Super en quittant le combat.", - }, - commander: { - name: "Commandant", - description: "Si un Oyacata allié est sur le terrain quand ce Pokémon rejoint le combat, ce dernier entre dans sa bouche et devient son commandant.", - }, - electromorphosis: { - name: "Grecharge", - description: "Si le Pokémon subit des dégâts, il se charge en électricité.", - }, - protosynthesis: { - name: "Paléosynthèse", - description: "Quand le soleil brille ou que le Pokémon tient une capsule d’Énergie Booster, sa stat la plus élevée augmente.", - }, - quarkDrive: { - name: "Charge Quantique", - description: "Quand un champ électrifié est actif ou que le Pokémon tient une capsule d’Énergie Booster, sa stat la plus élevée augmente.", - }, - goodAsGold: { - name: "Corps en Or", - description: "Le corps en or pur et robuste du Pokémon l’immunise contre les capacités de statut des autres Pokémon.", - }, - vesselOfRuin: { - name: "Urne du Fléau", - description: "Le pouvoir de l’urne qui appelle le fléau affaiblit l’Attaque Spéciale de tous les autres Pokémon.", - }, - swordOfRuin: { - name: "Épée du Fléau", - description: "Le pouvoir de l’épée qui appelle le fléau affaiblit la Défense de tous les autres Pokémon.", - }, - tabletsOfRuin: { - name: "Bois du Fléau", - description: "Le pouvoir du bois qui appelle le fléau affaiblit l’Attaque de tous les autres Pokémon.", - }, - beadsOfRuin: { - name: "Perles du Fléau", - description: "Le pouvoir des perles qui appellent le fléau affaiblit la Défense Spéciale de tous les autres Pokémon.", - }, - orichalcumPulse: { - name: "Pouls Orichalque", - description: "Le Pokémon invoque le soleil quand il rejoint le combat. Quand les rayons du soleil sont intenses, une pulsation primitive augmente son Attaque.", - }, - hadronEngine: { - name: "Moteur à Hadrons", - description: "Le Pokémon crée un champ électrifié quand il rejoint le combat. Une machine du futur fait monter son Attaque Spéciale si un champ électrifié est actif.", - }, - opportunist: { - name: "Opportuniste", - description: "Quand les stats de l’ennemi augmentent, le Pokémon en profite pour augmenter ses stats de la même manière.", - }, - cudChew: { - name: "Ruminant", - description: "Quand le Pokémon mange une Baie, il la régurgite à la fin du tour suivant et la mange une nouvelle fois.", - }, - sharpness: { - name: "Incisif", - description: "Augmente la puissance des capacités tranchantes.", - }, - supremeOverlord: { - name: "Général Suprême", - description: "Quand le Pokémon entre sur le terrain, son Attaque et son Attaque Spéciale augmentent légèrement pour chaque allié mis K.O. auparavant.", - }, - costar: { - name: "Collab", - description: "Quand le Pokémon entre sur le terrain, il copie les changements de stats de son allié.", - }, - toxicDebris: { - name: "Dépôt Toxique", - description: "Quand le Pokémon est touché par une capacité physique, il répand des pics toxiques dans le camp adverse.", - }, - armorTail: { - name: "Armure Caudale", - description: "L’étrange queue qui recouvre la tête du Pokémon empêche ce dernier d’être visé par une capacité prioritaire.", - }, - earthEater: { - name: "Absorbe-Terre", - description: "Si le Pokémon est touché par une capacité de type Sol, il regagne des PV au lieu de subir des dégâts.", - }, - myceliumMight: { - name: "Force Fongique", - description: "Le Pokémon agit toujours plus lentement quand il utilise une capacité de statut, mais il ignore les talents adverses.", - }, - mindsEye: { - name: "Œil Révélateur", - description: "Le Pokémon ignore les changements d’Esquive des cibles et peut toucher les Pokémon Spectre avec des capacités Normal ou Combat. Sa Précision ne peut pas baisser.", - }, - supersweetSyrup: { - name: "Nectar Mielleux", - description: "La première fois que le Pokémon entre au combat, une odeur de nectar sucré se répand sur le terrain, ce qui baisse l’Esquive de l’adversaire.", - }, - hospitality: { - name: "Aux Petits Soins", - description: "Quand il rejoint le combat, ce Pokémon est aux petits soins avec son allié et restaure quelques PV.", - }, - toxicChain: { - name: "Chaîne Toxique", - description: "Grâce aux pouvoirs de sa chaine imprégnée de toxines, le Pokémon peut empoisonner gravement sa cible en la touchant avec une capacité.", - }, - embodyAspectTeal: { - name: "Force Mémorielle", - description: "Le Pokémon fait briller le Masque Turquoise en puisant dans ses souvenirs, ce qui augmente sa Vitesse.", - }, - embodyAspectWellspring: { - name: "Force Mémorielle", - description: "Le Pokémon fait briller le Masque du Puits en puisant dans ses souvenirs, ce qui augmente sa Défense Spéciale.", - }, - embodyAspectHearthflame: { - name: "Force Mémorielle", - description: "Le Pokémon fait briller le Masque du Fourneau en puisant dans ses souvenirs, ce qui augmente son Attaque.", - }, - embodyAspectCornerstone: { - name: "Force Mémorielle", - description: "Le Pokémon fait briller le Masque de la Pierre en puisant dans ses souvenirs, ce qui augmente sa Défense.", - }, - teraShift: { - name: "Téramorphose", - description: "Quand le Pokémon rejoint le combat, il absorbe l’énergie alentour et prend sa Forme Téracristal.", - }, - teraShell: { - name: "Téra-Carapace", - description: "Grâce à sa carapace qui renferme l’énergie de tous les types, les capacités subies par ce Pokémon quand ses PV sont au maximum ne sont pas très efficaces.", - }, - teraformZero: { - name: "Téraformation 0", - description: "Lorsque Terapagos prend sa Forme Stellaire, il utilise son pouvoir enfoui pour annuler les effets de la météo et des champs actifs.", - }, - poisonPuppeteer: { - name: "Emprise Toxique", - description: "Lorsque Pêchaminus empoisonne un Pokémon grâce à l’une de ses capacités, ce dernier devient également confus.", - }, -} as const; diff --git a/src/locales/fr/achv.json b/src/locales/fr/achv.json new file mode 100644 index 00000000000..60655ae22cf --- /dev/null +++ b/src/locales/fr/achv.json @@ -0,0 +1,282 @@ +{ + "Achievements": { + "name": "Succès" + }, + "Locked": { + "name": "Verrouillé" + }, + "MoneyAchv": { + "description": "Récolter un total de {{moneyAmount}} ₽." + }, + "10K_MONEY": { + "name": "Épargnant", + "name_female": "Épargnante" + }, + "100K_MONEY": { + "name": "Je possède des thunes" + }, + "1M_MONEY": { + "name": "Banquier", + "name_female": "Banquière" + }, + "10M_MONEY": { + "name": "Évadé fiscal", + "name_female": "Évadée fiscale" + }, + "DamageAchv": { + "description": "Infliger {{damageAmount}} de dégâts en un coup." + }, + "250_DMG": { + "name": "Caïd" + }, + "1000_DMG": { + "name": "Boxeur", + "name_female": "Boxeuse" + }, + "2500_DMG": { + "name": "Distributeur de pains", + "name_female": "Distributrice de pains" + }, + "10000_DMG": { + "name": "One Punch Man", + "name_female": "One Punch Woman" + }, + "HealAchv": { + "description": "Soigner {{healAmount}} {{HP}} en une fois avec une capacité,\nun talent ou un objet tenu." + }, + "250_HEAL": { + "name": "Infirmier", + "name_female": "Infirmière" + }, + "1000_HEAL": { + "name": "Médecin" + }, + "2500_HEAL": { + "name": "Clerc" + }, + "10000_HEAL": { + "name": "Centre Pokémon" + }, + "LevelAchv": { + "description": "Monter un Pokémon au N.{{level}}." + }, + "LV_100": { + "name": "Et c’est pas fini !" + }, + "LV_250": { + "name": "Élite" + }, + "LV_1000": { + "name": "Vers l’infini et au-delà" + }, + "RibbonAchv": { + "description": "Accumuler un total de {{ribbonAmount}} Rubans." + }, + "10_RIBBONS": { + "name": "Maitre de la Ligue", + "name_female": "Maitresse de la Ligue" + }, + "25_RIBBONS": { + "name": "Super Maitre de la Ligue", + "name_female": "Super Maitresse de la Ligue" + }, + "50_RIBBONS": { + "name": "Hyper Maitre de la Ligue", + "name_female": "Hyper Maitresse de la Ligue" + }, + "75_RIBBONS": { + "name": "Rogue Maitre de la Ligue", + "name_female": "Rogue Maitresse de la Ligue" + }, + "100_RIBBONS": { + "name": "Master Maitre de la Ligue", + "name_female": "Master Maitresse de la Ligue" + }, + "TRANSFER_MAX_BATTLE_STAT": { + "name": "Travail d’équipe", + "description": "Utiliser Relais avec au moins une statistique montée à fond." + }, + "MAX_FRIENDSHIP": { + "name": "Copinage", + "description": "Atteindre le niveau de bonheur maximal avec un Pokémon." + }, + "MEGA_EVOLVE": { + "name": "Mégamorph", + "description": "Méga-évoluer un Pokémon." + }, + "GIGANTAMAX": { + "name": "Kaijū", + "description": "Gigamaxer un Pokémon." + }, + "TERASTALLIZE": { + "name": "J’aime les STAB", + "description": "Téracristalliser un Pokémon." + }, + "STELLAR_TERASTALLIZE": { + "name": "Le type enfoui", + "description": "Téracristalliser un Pokémon en type Stellaire." + }, + "SPLICE": { + "name": "Infinite Fusion", + "description": "Fusionner deux Pokémon avec le Pointeau ADN." + }, + "MINI_BLACK_HOLE": { + "name": "Item-stellar", + "description": "Obtenir un Mini Trou Noir." + }, + "CATCH_MYTHICAL": { + "name": "Fabuleux", + "description": "Capturer un Pokémon fabuleux." + }, + "CATCH_SUB_LEGENDARY": { + "name": "(Semi-)Légendaire", + "description": "Capturer un Pokémon semi-légendaire." + }, + "CATCH_LEGENDARY": { + "name": "Légendaire", + "description": "Capturer un Pokémon légendaire." + }, + "SEE_SHINY": { + "name": "Chromatique", + "description": "Trouver un Pokémon sauvage chromatique." + }, + "SHINY_PARTY": { + "name": "Shasseur", + "name_female": "Shasseuse", + "description": "Avoir une équipe exclusivement composée de Pokémon chromatiques." + }, + "HATCH_MYTHICAL": { + "name": "Œuf fabuleux", + "description": "Obtenir un Pokémon fabuleux dans un Œuf." + }, + "HATCH_SUB_LEGENDARY": { + "name": "Œuf semi-légendaire", + "description": "Obtenir un Pokémon semi-légendaire dans un Œuf." + }, + "HATCH_LEGENDARY": { + "name": "Œuf légendaire", + "description": "Obtenir un Pokémon légendaire dans un Œuf." + }, + "HATCH_SHINY": { + "name": "Œuf chromatique", + "description": "Obtenir un Pokémon chromatique dans un Œuf." + }, + "HIDDEN_ABILITY": { + "name": "Potentiel enfoui", + "description": "Capturer un Pokémon possédant un talent caché." + }, + "PERFECT_IVS": { + "name": "Certificat d’authenticité", + "description": "Avoir des IV parfaits sur un Pokémon." + }, + "CLASSIC_VICTORY": { + "name": "Invaincu", + "name_female": "Invaincue", + "description": "Terminer le jeu en mode Classique." + }, + "UNEVOLVED_CLASSIC_VICTORY": { + "name": "Le stagiaire de 3e", + "description": "Terminer le mode Classique avec au moins un Pokémon non-évolué dans l’équipe." + }, + "MONO_GEN_ONE": { + "name": "Le rival originel", + "description": "Terminer un challenge avec uniquement des Pokémon\nde 1re génération." + }, + "MONO_GEN_TWO": { + "name": "Entre tradition et modernité", + "description": "Terminer un challenge avec uniquement des Pokémon\nde 2e génération." + }, + "MONO_GEN_THREE": { + "name": "Too much water ?", + "description": "Terminer un challenge avec uniquement des Pokémon\nde 3e génération." + }, + "MONO_GEN_FOUR": { + "name": "Réellement la plus difficile ?", + "description": "Terminer un challenge avec uniquement des Pokémon\nde 4e génération." + }, + "MONO_GEN_FIVE": { + "name": "Recast complet", + "description": "Terminer un challenge avec uniquement des Pokémon\nde 5e génération." + }, + "MONO_GEN_SIX": { + "name": "Aristocrate", + "description": "Terminer un challenge avec uniquement des Pokémon\nde 6e génération." + }, + "MONO_GEN_SEVEN": { + "name": "Seulement techniquement", + "description": "Terminer un challenge avec uniquement des Pokémon\nde 7e génération." + }, + "MONO_GEN_EIGHT": { + "name": "L’heure de gloire", + "description": "Terminer un challenge avec uniquement des Pokémon\nde 8e génération." + }, + "MONO_GEN_NINE": { + "name": "Ça va, c’était EZ", + "description": "Terminer un challenge avec uniquement des Pokémon\nde 9e génération." + }, + "MonoType": { + "description": "Terminer un challenge en monotype {{type}}." + }, + "MONO_NORMAL": { + "name": "Extraordinairement banal" + }, + "MONO_FIGHTING": { + "name": "Je connais le kung-fu" + }, + "MONO_FLYING": { + "name": "Angry Birds" + }, + "MONO_POISON": { + "name": "Touche moi je t’empoisonne !" + }, + "MONO_GROUND": { + "name": "Prévisions : Séisme" + }, + "MONO_ROCK": { + "name": "Comme un roc" + }, + "MONO_BUG": { + "name": "Une chenille !" + }, + "MONO_GHOST": { + "name": "SOS Fantômes" + }, + "MONO_STEEL": { + "name": "De type Acier !" + }, + "MONO_FIRE": { + "name": "Allumer le feu" + }, + "MONO_WATER": { + "name": "Vacances en Bretagne" + }, + "MONO_GRASS": { + "name": "Ne pas toucher !" + }, + "MONO_ELECTRIC": { + "name": "À la masse" + }, + "MONO_PSYCHIC": { + "name": "Grocervo" + }, + "MONO_ICE": { + "name": "Froid comme la glace" + }, + "MONO_DRAGON": { + "name": "Légendes du club, ou presque" + }, + "MONO_DARK": { + "name": "Ça va lui passer" + }, + "MONO_FAIRY": { + "name": "Hey ! Listen !" + }, + "FRESH_START": { + "name": "Du premier coup !", + "description": "Terminer un challenge « Nouveau départ »." + }, + "INVERSE_BATTLE": { + "name": "La teuté à verlan", + "description": "Terminer un challenge en Combat Inversé.\nMineter un lenjcha en Ba-con Versin." + } +} diff --git a/src/locales/fr/achv.ts b/src/locales/fr/achv.ts deleted file mode 100644 index 43977cb7692..00000000000 --- a/src/locales/fr/achv.ts +++ /dev/null @@ -1,397 +0,0 @@ -import { AchievementTranslationEntries } from "#app/interfaces/locales.js"; - -// Achievement translations for the when the player character is male -export const PGMachv: AchievementTranslationEntries = { - "Achievements": { - name: "Succès", - }, - "Locked": { - name: "Verrouillé", - }, - - "MoneyAchv": { - description: "Récolter un total de {{moneyAmount}} ₽.", - }, - "10K_MONEY": { - name: "Épargnant", - }, - "100K_MONEY": { - name: "Je possède des thunes", - }, - "1M_MONEY": { - name: "Banquier", - }, - "10M_MONEY": { - name: "Évadé fiscal", - }, - - "DamageAchv": { - description: "Infliger {{damageAmount}} de dégâts en un coup.", - }, - "250_DMG": { - name: "Caïd", - }, - "1000_DMG": { - name: "Boxeur", - }, - "2500_DMG": { - name: "Distributeur de pains", - }, - "10000_DMG": { - name: "One Punch Man", - }, - - "HealAchv": { - description: "Soigner {{healAmount}} {{HP}} en une fois avec une capacité, un talent ou un objet tenu.", - }, - "250_HEAL": { - name: "Infirmier", - }, - "1000_HEAL": { - name: "Médecin", - }, - "2500_HEAL": { - name: "Clerc", - }, - "10000_HEAL": { - name: "Centre Pokémon", - }, - - "LevelAchv": { - description: "Monter un Pokémon au N.{{level}}.", - }, - "LV_100": { - name: "Et c’est pas fini !", - }, - "LV_250": { - name: "Élite", - }, - "LV_1000": { - name: "Vers l’infini et au-delà", - }, - - "RibbonAchv": { - description: "Accumuler un total de {{ribbonAmount}} Rubans.", - }, - "10_RIBBONS": { - name: "Maitre de la Ligue", - }, - "25_RIBBONS": { - name: "Super Maitre de la Ligue", - }, - "50_RIBBONS": { - name: "Hyper Maitre de la Ligue", - }, - "75_RIBBONS": { - name: "Rogue Maitre de la Ligue", - }, - "100_RIBBONS": { - name: "Master Maitre de la Ligue", - }, - - "TRANSFER_MAX_BATTLE_STAT": { - name: "Travail d’équipe", - description: "Utiliser Relais avec au moins une statistique montée à fond.", - }, - "MAX_FRIENDSHIP": { - name: "Copinage", - description: "Atteindre le niveau de bonheur maximal avec un Pokémon.", - }, - "MEGA_EVOLVE": { - name: "Mégamorph", - description: "Méga-évoluer un Pokémon.", - }, - "GIGANTAMAX": { - name: "Kaijū", - description: "Gigamaxer un Pokémon.", - }, - "TERASTALLIZE": { - name: "J’aime les STAB", - description: "Téracristalliser un Pokémon.", - }, - "STELLAR_TERASTALLIZE": { - name: "Le type enfoui", - description: "Téracristalliser un Pokémon en type Stellaire.", - }, - "SPLICE": { - name: "Infinite Fusion", - description: "Fusionner deux Pokémon avec le Pointeau ADN.", - }, - "MINI_BLACK_HOLE": { - name: "Item-stellar", - description: "Obtenir un Mini Trou Noir.", - }, - "CATCH_MYTHICAL": { - name: "Fabuleux", - description: "Capturer un Pokémon fabuleux.", - }, - "CATCH_SUB_LEGENDARY": { - name: "(Semi-)Légendaire", - description: "Capturer un Pokémon semi-légendaire.", - }, - "CATCH_LEGENDARY": { - name: "Légendaire", - description: "Capturer un Pokémon légendaire.", - }, - "SEE_SHINY": { - name: "Chromatique", - description: "Trouver un Pokémon sauvage chromatique.", - }, - "SHINY_PARTY": { - name: "Shasseur", - description: "Avoir une équipe exclusivement composée de Pokémon chromatiques.", - }, - "HATCH_MYTHICAL": { - name: "Œuf fabuleux", - description: "Obtenir un Pokémon fabuleux dans un Œuf.", - }, - "HATCH_SUB_LEGENDARY": { - name: "Œuf semi-légendaire", - description: "Obtenir un Pokémon semi-légendaire dans un Œuf.", - }, - "HATCH_LEGENDARY": { - name: "Œuf légendaire", - description: "Obtenir un Pokémon légendaire dans un Œuf.", - }, - "HATCH_SHINY": { - name: "Œuf chromatique", - description: "Obtenir un Pokémon chromatique dans un Œuf.", - }, - "HIDDEN_ABILITY": { - name: "Potentiel enfoui", - description: "Capturer un Pokémon possédant un talent caché.", - }, - "PERFECT_IVS": { - name: "Certificat d’authenticité", - description: "Avoir des IV parfaits sur un Pokémon.", - }, - "CLASSIC_VICTORY": { - name: "Invaincu", - description: "Terminer le jeu en mode Classique.", - }, - "UNEVOLVED_CLASSIC_VICTORY": { - name: "Le stagiaire de 3e", - description: "Terminer le mode Classique avec au moins un Pokémon non-évolué dans l’équipe." - }, - - "MONO_GEN_ONE": { - name: "Le rival originel", - description: "Terminer un challenge avec uniquement des Pokémon\nde 1re génération.", - }, - "MONO_GEN_TWO": { - name: "Entre tradition et modernité", - description: "Terminer un challenge avec uniquement des Pokémon\nde 2e génération.", - }, - "MONO_GEN_THREE": { - name: "Too much water ?", - description: "Terminer un challenge avec uniquement des Pokémon\nde 3e génération.", - }, - "MONO_GEN_FOUR": { - name: "Réellement la plus difficile ?", - description: "Terminer un challenge avec uniquement des Pokémon\nde 4e génération.", - }, - "MONO_GEN_FIVE": { - name: "Recast complet", - description: "Terminer un challenge avec uniquement des Pokémon\nde 5e génération.", - }, - "MONO_GEN_SIX": { - name: "Aristocrate", - description: "Terminer un challenge avec uniquement des Pokémon\nde 6e génération.", - }, - "MONO_GEN_SEVEN": { - name: "Seulement techniquement", - description: "Terminer un challenge avec uniquement des Pokémon\nde 7e génération.", - }, - "MONO_GEN_EIGHT": { - name: "L’heure de gloire", - description: "Terminer un challenge avec uniquement des Pokémon\nde 8e génération.", - }, - "MONO_GEN_NINE": { - name: "Ça va, c’était EZ", - description: "Terminer un challenge avec uniquement des Pokémon\nde 9e génération.", - }, - - "MonoType": { - description: "Terminer un challenge en monotype {{type}}.", - }, - "MONO_NORMAL": { - name: "Extraordinairement banal", - }, - "MONO_FIGHTING": { - name: "Je connais le kung-fu", - }, - "MONO_FLYING": { - name: "Angry Birds", - }, - "MONO_POISON": { - name: "Touche moi je t’empoisonne !", - }, - "MONO_GROUND": { - name: "Prévisions : Séisme", - }, - "MONO_ROCK": { - name: "Comme un roc", - }, - "MONO_BUG": { - name: "Une chenille !", - }, - "MONO_GHOST": { - name: "SOS Fantômes", - }, - "MONO_STEEL": { - name: "De type Acier !", - }, - "MONO_FIRE": { - name: "Allumer le feu", - }, - "MONO_WATER": { - name: "Vacances en Bretagne", - }, - "MONO_GRASS": { - name: "Ne pas toucher !", - }, - "MONO_ELECTRIC": { - name: "À la masse", - }, - "MONO_PSYCHIC": { - name: "Grocervo", - }, - "MONO_ICE": { - name: "Froid comme la glace", - }, - "MONO_DRAGON": { - name: "Légendes du club, ou presque", - }, - "MONO_DARK": { - name: "Ça va lui passer", - }, - "MONO_FAIRY": { - name: "Hey ! Listen !", - }, - "FRESH_START": { - name: "Du premier coup !", - description: "Terminer un challenge « Nouveau départ »." - } -} as const; - -// Achievement translations for the when the player character is female (it for now uses the same translations as the male version) -export const PGFachv: AchievementTranslationEntries = { - "Achievements": { - name: PGMachv.Achievements.name, - }, - "Locked": { - name: PGMachv.Locked.name, - }, - - "MoneyAchv": PGMachv.MoneyAchv, - "10K_MONEY": { - name: "Épargnante", - }, - "100K_MONEY": PGMachv["100K_MONEY"], - "1M_MONEY": { - name: "Banquière", - }, - "10M_MONEY": { - name: "Évadée fiscale", - }, - - "DamageAchv": PGMachv.DamageAchv, - "250_DMG": PGMachv["250_DMG"], - "1000_DMG": { - name: "Boxeuse", - }, - "2500_DMG": { - name: "Distributrice de pains", - }, - "10000_DMG": { - name: "One Punch Woman", - }, - - "HealAchv": PGMachv.HealAchv, - "250_HEAL": { - name: "Infirmière", - }, - "1000_HEAL": PGMachv["1000_HEAL"], - "2500_HEAL": PGMachv["2500_HEAL"], - "10000_HEAL": PGMachv["10000_HEAL"], - - "LevelAchv": PGMachv.LevelAchv, - "LV_100": PGMachv["LV_100"], - "LV_250": PGMachv["LV_250"], - "LV_1000": PGMachv["LV_1000"], - - "RibbonAchv": PGMachv.RibbonAchv, - "10_RIBBONS": { - name: "Maitresse de la Ligue", - }, - "25_RIBBONS": { - name: "Super Maitresse de la Ligue", - }, - "50_RIBBONS": { - name: "Hyper Maitresse de la Ligue", - }, - "75_RIBBONS": { - name: "Rogue Maitresse de la Ligue", - }, - "100_RIBBONS": { - name: "Master Maitresse de la Ligue", - }, - - "TRANSFER_MAX_BATTLE_STAT": PGMachv.TRANSFER_MAX_BATTLE_STAT, - "MAX_FRIENDSHIP": PGMachv.MAX_FRIENDSHIP, - "MEGA_EVOLVE": PGMachv.MEGA_EVOLVE, - "GIGANTAMAX": PGMachv.GIGANTAMAX, - "TERASTALLIZE": PGMachv.TERASTALLIZE, - "STELLAR_TERASTALLIZE": PGMachv.STELLAR_TERASTALLIZE, - "SPLICE": PGMachv.SPLICE, - "MINI_BLACK_HOLE": PGMachv.MINI_BLACK_HOLE, - "CATCH_MYTHICAL": PGMachv.CATCH_MYTHICAL, - "CATCH_SUB_LEGENDARY": PGMachv.CATCH_SUB_LEGENDARY, - "CATCH_LEGENDARY": PGMachv.CATCH_LEGENDARY, - "SEE_SHINY": PGMachv.SEE_SHINY, - "SHINY_PARTY": { - name: "Shasseuse", - description: "Avoir une équipe exclusivement composée de Pokémon chromatiques", - }, - "HATCH_MYTHICAL": PGMachv.HATCH_MYTHICAL, - "HATCH_SUB_LEGENDARY": PGMachv.HATCH_SUB_LEGENDARY, - "HATCH_LEGENDARY": PGMachv.HATCH_LEGENDARY, - "HATCH_SHINY": PGMachv.HATCH_SHINY, - "HIDDEN_ABILITY": PGMachv.HIDDEN_ABILITY, - "PERFECT_IVS": PGMachv.PERFECT_IVS, - "CLASSIC_VICTORY": { - name: "Invaincue", - description: "Terminer le jeu en mode classique", - }, - "UNEVOLVED_CLASSIC_VICTORY": PGMachv.UNEVOLVED_CLASSIC_VICTORY, - "MONO_GEN_ONE": PGMachv.MONO_GEN_ONE, - "MONO_GEN_TWO": PGMachv.MONO_GEN_TWO, - "MONO_GEN_THREE": PGMachv.MONO_GEN_THREE, - "MONO_GEN_FOUR": PGMachv.MONO_GEN_FOUR, - "MONO_GEN_FIVE": PGMachv.MONO_GEN_FIVE, - "MONO_GEN_SIX": PGMachv.MONO_GEN_SIX, - "MONO_GEN_SEVEN": PGMachv.MONO_GEN_SEVEN, - "MONO_GEN_EIGHT": PGMachv.MONO_GEN_EIGHT, - "MONO_GEN_NINE": PGMachv.MONO_GEN_NINE, - - "MonoType": PGMachv.MonoType, - "MONO_NORMAL": PGMachv.MONO_NORMAL, - "MONO_FIGHTING": PGMachv.MONO_FIGHTING, - "MONO_FLYING": PGMachv.MONO_FLYING, - "MONO_POISON": PGMachv.MONO_POISON, - "MONO_GROUND": PGMachv.MONO_GROUND, - "MONO_ROCK": PGMachv.MONO_ROCK, - "MONO_BUG": PGMachv.MONO_BUG, - "MONO_GHOST": PGMachv.MONO_GHOST, - "MONO_STEEL": PGMachv.MONO_STEEL, - "MONO_FIRE": PGMachv.MONO_FIRE, - "MONO_WATER": PGMachv.MONO_WATER, - "MONO_GRASS": PGMachv.MONO_GRASS, - "MONO_ELECTRIC": PGMachv.MONO_ELECTRIC, - "MONO_PSYCHIC": PGMachv.MONO_PSYCHIC, - "MONO_ICE": PGMachv.MONO_ICE, - "MONO_DRAGON": PGMachv.MONO_DRAGON, - "MONO_DARK": PGMachv.MONO_DARK, - "MONO_FAIRY": PGMachv.MONO_FAIRY, - "FRESH_START": PGMachv.FRESH_START -} as const; diff --git a/src/locales/fr/arena-flyout.ts b/src/locales/fr/arena-flyout.json similarity index 82% rename from src/locales/fr/arena-flyout.ts rename to src/locales/fr/arena-flyout.json index cf412e3b671..ce78643862e 100644 --- a/src/locales/fr/arena-flyout.ts +++ b/src/locales/fr/arena-flyout.json @@ -1,13 +1,8 @@ -import { SimpleTranslationEntries } from "#app/interfaces/locales"; - -export const arenaFlyout: SimpleTranslationEntries = { - // Title +{ "activeBattleEffects": "Effets Actifs", "player": "Vous", "neutral": "Neutre", "enemy": "Ennemi", - - // WeatherType "sunny": "Soleil", "rain": "Pluie", "sandstorm": "Tempête de Sable", @@ -17,14 +12,10 @@ export const arenaFlyout: SimpleTranslationEntries = { "heavyRain": "Pluie Battante", "harshSun": "Soleil Brulant", "strongWinds": "Vent Mystérieux", - - // TerrainType "misty": "Champ Brumeux", "electric": "Champ Électrifié", "grassy": "Champ Herbu", "psychic": "Champ Psychique", - - // ArenaTagType "mudSport": "Lance-Boue", "waterSport": "Tourniquet", "spikes": "Picots", @@ -45,5 +36,5 @@ export const arenaFlyout: SimpleTranslationEntries = { "matBlock": "Tatamigaeshi", "craftyShield": "Vigilance", "tailwind": "Vent Arrière", - "happyHour": "Étrennes", -}; + "happyHour": "Étrennes" +} \ No newline at end of file diff --git a/src/locales/fr/arena-tag.ts b/src/locales/fr/arena-tag.json similarity index 93% rename from src/locales/fr/arena-tag.ts rename to src/locales/fr/arena-tag.json index 62ef203cf68..16355816ae4 100644 --- a/src/locales/fr/arena-tag.ts +++ b/src/locales/fr/arena-tag.json @@ -1,12 +1,10 @@ -import { SimpleTranslationEntries } from "#app/interfaces/locales"; - -export const arenaTag: SimpleTranslationEntries = { +{ "yourTeam": "votre équipe", "opposingTeam": "l’équipe adverse", "arenaOnRemove": "L’effet de la capacité {{moveName}}\ns’est dissipé !", "arenaOnRemovePlayer": "L’effet de la capacité {{moveName}}\ns’est dissipé sur votre équipe !", "arenaOnRemoveEnemy": "L’effet de la capacité {{moveName}}\ns’est dissipé sur l’équipe ennemie !", - "mistOnAdd": "La brume enveloppe l’équipe\de {{pokemonNameWithAffix}} !", + "mistOnAdd": "La brume enveloppe l’équipe\nde {{pokemonNameWithAffix}} !", "mistApply": "La brume empêche les stats de baisser !", "reflectOnAdd": "Protection augmente la résistance\naux capacités physiques !", "reflectOnAddPlayer": "Protection augmente la résistance\nde l’équipe aux capacités physiques !", @@ -49,5 +47,5 @@ export const arenaTag: SimpleTranslationEntries = { "tailwindOnRemovePlayer": "Le vent arrière soufflant\nsur votre équipe s’arrête !", "tailwindOnRemoveEnemy": "Le vent arrière soufflant\nsur l’équipe ennemie s’arrête !", "happyHourOnAdd": "L’ambiance est euphorique !", - "happyHourOnRemove": "L’ambiance se calme !", -} as const; + "happyHourOnRemove": "L’ambiance se calme !" +} \ No newline at end of file diff --git a/src/locales/fr/battle-info.json b/src/locales/fr/battle-info.json new file mode 100644 index 00000000000..1408fd4d602 --- /dev/null +++ b/src/locales/fr/battle-info.json @@ -0,0 +1,3 @@ +{ + "generation": "{{generation}}" +} diff --git a/src/locales/fr/battle-info.ts b/src/locales/fr/battle-info.ts deleted file mode 100644 index a0b2ad2911a..00000000000 --- a/src/locales/fr/battle-info.ts +++ /dev/null @@ -1,5 +0,0 @@ -import { SimpleTranslationEntries } from "#app/interfaces/locales"; - -export const battleInfo: SimpleTranslationEntries = { - "generation": "Génération {{generation}}", -} as const; diff --git a/src/locales/fr/battle-message-ui-handler.json b/src/locales/fr/battle-message-ui-handler.json new file mode 100644 index 00000000000..bc5b4c4dbce --- /dev/null +++ b/src/locales/fr/battle-message-ui-handler.json @@ -0,0 +1,8 @@ +{ + "ivBest": "Exceptionnel", + "ivFantastic": "Fantastique", + "ivVeryGood": "Très bon", + "ivPrettyGood": "Bon", + "ivDecent": "Passable…", + "ivNoGood": "Pas top…" +} \ No newline at end of file diff --git a/src/locales/fr/battle-message-ui-handler.ts b/src/locales/fr/battle-message-ui-handler.ts deleted file mode 100644 index cb2f745577e..00000000000 --- a/src/locales/fr/battle-message-ui-handler.ts +++ /dev/null @@ -1,10 +0,0 @@ -import { SimpleTranslationEntries } from "#app/interfaces/locales"; - -export const battleMessageUiHandler: SimpleTranslationEntries = { - "ivBest": "Exceptionnel", - "ivFantastic": "Fantastique", - "ivVeryGood": "Très bon", - "ivPrettyGood": "Bon", - "ivDecent": "Passable…", - "ivNoGood": "Pas top…", -} as const; diff --git a/src/locales/fr/battle-scene.json b/src/locales/fr/battle-scene.json new file mode 100644 index 00000000000..ef916edbf08 --- /dev/null +++ b/src/locales/fr/battle-scene.json @@ -0,0 +1,3 @@ +{ + "moneyOwned": "{{formattedMoney}} ₽" +} \ No newline at end of file diff --git a/src/locales/fr/battle.ts b/src/locales/fr/battle.json similarity index 97% rename from src/locales/fr/battle.ts rename to src/locales/fr/battle.json index 12ee9e0d696..1c108c89ded 100644 --- a/src/locales/fr/battle.ts +++ b/src/locales/fr/battle.json @@ -1,6 +1,4 @@ -import { SimpleTranslationEntries } from "#app/interfaces/locales"; - -export const battle: SimpleTranslationEntries = { +{ "bossAppeared": "Un {{bossName}} apparait.", "trainerAppeared": "Un combat est lancé\npar {{trainerName}} !", "trainerAppearedDouble": "Un combat est lancé\npar {{trainerName}} !", @@ -24,6 +22,7 @@ export const battle: SimpleTranslationEntries = { "hitResultSuperEffective": "C’est super efficace !", "hitResultNotVeryEffective": "Ce n’est pas très efficace…", "hitResultNoEffect": "Ça n’affecte pas {{pokemonName}}…", + "hitResultImmune": "{{pokemonName}} n’est pas affecté !", "hitResultOneHitKO": "K.O. en un coup !", "attackFailed": "Mais cela échoue !", "attackMissed": "{{pokemonNameWithAffix}}\névite l’attaque !", @@ -39,7 +38,7 @@ export const battle: SimpleTranslationEntries = { "learnMoveNotLearned": "{{pokemonName}} n’a pas appris\n{{moveName}}.", "learnMoveForgetQuestion": "Quelle capacité doit être oubliée ?", "learnMoveForgetSuccess": "{{pokemonName}} oublie comment\nutiliser {{moveName}}.", - "countdownPoof": "@d{32}1, @d{15}2, @d{15}et@d{15}… @d{15}… @d{15}… @d{15}@s{pb_bounce_1}Tadaaa !", + "countdownPoof": "@d{32}1, @d{15}2, @d{15}et@d{15}… @d{15}… @d{15}… @d{15}@s{se/pb_bounce_1}Tadaaa !", "learnMoveAnd": "Et…", "levelCapUp": "La limite de niveau\na été augmentée à {{levelCap}} !", "moveNotImplemented": "{{moveName}} n’est pas encore implémenté et ne peut pas être sélectionné.", @@ -95,5 +94,5 @@ export const battle: SimpleTranslationEntries = { "retryBattle": "Voulez-vous réessayer depuis le début du combat ?", "unlockedSomething": "{{unlockedThing}}\na été débloqué.", "congratulations": "Félicitations !", - "beatModeFirstTime": "{{speciesName}} a battu le mode {{gameMode}} pour la première fois !\nVous avez reçu {{newModifier}} !", -} as const; + "beatModeFirstTime": "{{speciesName}} a battu le mode {{gameMode}} pour la première fois !\nVous avez reçu {{newModifier}} !" +} \ No newline at end of file diff --git a/src/locales/fr/battler-tags.ts b/src/locales/fr/battler-tags.json similarity index 96% rename from src/locales/fr/battler-tags.ts rename to src/locales/fr/battler-tags.json index 7598dcaff74..46b086938b3 100644 --- a/src/locales/fr/battler-tags.ts +++ b/src/locales/fr/battler-tags.json @@ -1,6 +1,4 @@ -import { SimpleTranslationEntries } from "#app/interfaces/locales"; - -export const battlerTags: SimpleTranslationEntries = { +{ "trappedDesc": "le piège", "flinchedDesc": "la peur", "confusedDesc": "la confusion", @@ -69,5 +67,5 @@ export const battlerTags: SimpleTranslationEntries = { "saltCuredLapse": "{{pokemonNameWithAffix}} est blessé\npar la capacité {{moveName}} !", "cursedOnAdd": "{{pokemonNameWithAffix}} sacrifie des PV\net lance une malédiction sur {{pokemonName}} !", "cursedLapse": "{{pokemonNameWithAffix}} est touché par la malédiction !", - "stockpilingOnAdd": "{{pokemonNameWithAffix}} utilise\nla capacité Stockage {{stockpiledCount}} fois !", -} as const; + "stockpilingOnAdd": "{{pokemonNameWithAffix}} utilise\nla capacité Stockage {{stockpiledCount}} fois !" +} \ No newline at end of file diff --git a/src/locales/fr/berry.json b/src/locales/fr/berry.json new file mode 100644 index 00000000000..833e1d1d8fd --- /dev/null +++ b/src/locales/fr/berry.json @@ -0,0 +1,46 @@ +{ + "SITRUS": { + "name": "Baie Sitrus", + "effect": "Restaure 25% des PV s’ils sont inférieurs à 50%." + }, + "LUM": { + "name": "Baie Prine", + "effect": "Soigne tout problème de statut permanant et la confusion." + }, + "ENIGMA": { + "name": "Baie Enigma", + "effect": "Restaure 25% des PV si touché par une capacité super efficace." + }, + "LIECHI": { + "name": "Baie Lichii", + "effect": "Augmente l’Attaque si les PV sont inférieurs à 25%." + }, + "GANLON": { + "name": "Baie Lingan", + "effect": "Augmente la Défense si les PV sont inférieurs à 25%." + }, + "PETAYA": { + "name": "Baie Pitaye", + "effect": "Augmente l’Atq. Spé. si les PV sont inférieurs à 25%." + }, + "APICOT": { + "name": "Baie Abriko", + "effect": "Augmente la Déf. Spé. si les PV sont inférieurs à 25%." + }, + "SALAC": { + "name": "Baie Sailak", + "effect": "Augmente la Vitesse si les PV sont inférieurs à 25%." + }, + "LANSAT": { + "name": "Baie Lansat", + "effect": "Augmente le taux de coups critiques si les PV sont inférieurs à 25%." + }, + "STARF": { + "name": "Baie Frista", + "effect": "Augmente énormément une statistique au hasard si les PV sont inférieurs à 25%." + }, + "LEPPA": { + "name": "Baie Mepo", + "effect": "Restaure 10 PP à une capacité dès que ses PP tombent à 0." + } +} \ No newline at end of file diff --git a/src/locales/fr/berry.ts b/src/locales/fr/berry.ts deleted file mode 100644 index e08afb8bc55..00000000000 --- a/src/locales/fr/berry.ts +++ /dev/null @@ -1,48 +0,0 @@ -import { BerryTranslationEntries } from "#app/interfaces/locales"; - -export const berry: BerryTranslationEntries = { - "SITRUS": { - name: "Baie Sitrus", - effect: "Restaure 25% des PV s’ils sont inférieurs à 50%.", - }, - "LUM": { - name: "Baie Prine", - effect: "Soigne tout problème de statut permanant et la confusion.", - }, - "ENIGMA": { - name: "Baie Enigma", - effect: "Restaure 25% des PV si touché par une capacité super efficace.", - }, - "LIECHI": { - name: "Baie Lichii", - effect: "Augmente l’Attaque si les PV sont inférieurs à 25%.", - }, - "GANLON": { - name: "Baie Lingan", - effect: "Augmente la Défense si les PV sont inférieurs à 25%.", - }, - "PETAYA": { - name: "Baie Pitaye", - effect: "Augmente l’Atq. Spé. si les PV sont inférieurs à 25%.", - }, - "APICOT": { - name: "Baie Abriko", - effect: "Augmente la Déf. Spé. si les PV sont inférieurs à 25%.", - }, - "SALAC": { - name: "Baie Sailak", - effect: "Augmente la Vitesse si les PV sont inférieurs à 25%.", - }, - "LANSAT": { - name: "Baie Lansat", - effect: "Augmente le taux de coups critiques si les PV sont inférieurs à 25%.", - }, - "STARF": { - name: "Baie Frista", - effect: "Augmente énormément une statistique au hasard si les PV sont inférieurs à 25%.", - }, - "LEPPA": { - name: "Baie Mepo", - effect: "Restaure 10 PP à une capacité dès que ses PP tombent à 0.", - }, -} as const; diff --git a/src/locales/fr/bgm-name.ts b/src/locales/fr/bgm-name.json similarity index 71% rename from src/locales/fr/bgm-name.ts rename to src/locales/fr/bgm-name.json index f3ae438d36d..ecf0075e79d 100644 --- a/src/locales/fr/bgm-name.ts +++ b/src/locales/fr/bgm-name.json @@ -1,8 +1,6 @@ -import { SimpleTranslationEntries } from "#app/interfaces/locales"; - -export const bgmName: SimpleTranslationEntries = { - "music": "Musique : ", - "missing_entries" : "{{name}}", +{ + "music": "♪ : ", + "missing_entries": "{{name}}", "battle_kanto_champion": "N2B2 - Vs. Maitre de Kanto", "battle_johto_champion": "N2B2 - Vs. Maitre de Johto", "battle_hoenn_champion_g5": "N2B2 - Vs. Maitre de Hoenn", @@ -47,6 +45,7 @@ export const bgmName: SimpleTranslationEntries = { "battle_legendary_lake_trio": "ROSA - Vs. Gardiens des Lacs", "battle_legendary_sinnoh": "ROSA - Vs. Légendaire de Sinnoh", "battle_legendary_dia_pal": "ROSA - Vs. Dialga/Palkia", + "battle_legendary_origin_forme": "LPA - Vs. Dialga/Palkia Originel", "battle_legendary_giratina": "ROSA - Vs. Giratina", "battle_legendary_arceus": "HGSS - Vs. Arceus", "battle_legendary_unova": "NB - Vs. Légendaire d’Unys", @@ -61,6 +60,7 @@ export const bgmName: SimpleTranslationEntries = { "battle_legendary_zac_zam": "ÉB - Vs. Zacian/Zamazenta", "battle_legendary_glas_spec": "ÉB - Vs. Blizzeval/Spectreval", "battle_legendary_calyrex": "ÉB - Vs. Sylveroy", + "battle_legendary_riders": "ÉB - Vs. Sylveroy Cavalier du Froid/d’Effroi", "battle_legendary_birds_galar": "ÉB - Vs. Oiseaux Légendaires de Galar", "battle_legendary_ruinous": "ÉV - Vs. Trésors du fléau", "battle_legendary_kor_mir": "ÉV - Profondeurs de la Zone Zéro (Combat)", @@ -80,50 +80,56 @@ export const bgmName: SimpleTranslationEntries = { "battle_galactic_grunt": "DÉPS Vs. Team Galaxie", "battle_plasma_grunt": "NB - Vs. Team Plasma", "battle_flare_grunt": "XY - Vs. Team Flare", + "battle_aether_grunt": "SL - Vs. Fondation Æther", + "battle_skull_grunt": "SL - Vs. Team Skull", + "battle_macro_grunt": "ÉB - Vs. Macro Cosmos", + "battle_galactic_admin": "DÉPS - Vs. Admin Team Galaxie", + "battle_skull_admin": "SL - Vs. Admin Team Skull", + "battle_oleana": "ÉB - Vs. Liv", "battle_rocket_boss": "USUL - Vs. Giovanni", "battle_aqua_magma_boss": "ROSA - Vs. Arthur/Max", "battle_galactic_boss": "DÉPS - Vs. Hélio", "battle_plasma_boss": "N2B2 - Vs. Ghetis", "battle_flare_boss": "XY - Vs. Lysandre", + "battle_aether_boss": "SL - Vs. Elsa-Mina", + "battle_skull_boss": "SL - Vs. Guzma", + "battle_macro_boss": "ÉB - Vs. Shehroz", - // Biome Music - "abyss": "PDM EdS - Cratère Obscur", - "badlands": "PDM EdS - Vallée Stérile", - "beach": "PDM EdS - Falaise Trempée", - "cave": "PDM EdS - Pic Céleste (grotte)", - "construction_site": "PDM EdS - Carrière Rocher", - "desert": "PDM EdS - Désert du Nord", - "dojo": "PDM EdS - Dojo Ossatueur", - "end": "PDM EdS - Tour Céleste", - "factory": "PDM EdS - Ruines Cachées", - "fairy_cave": "PDM EdS - Caverne Étoile", - "forest": "PDM EdS - Forêt Crépuscule", - "grass": "PDM EdS - Bois aux Pommes", - "graveyard": "PDM EdS - Forêt Trompeuse", - "ice_cave": "PDM EdS - Montagne Glacier", - "island": "PDM EdS - Côte Escarpée", - "jungle": "Lmz - Jungle", // The composer thinks about a more creative name - "laboratory": "Firel - Laboratory", // The composer thinks about a more creative name - "lake": "PDM EdS - Caverne Cristal", - "meadow": "PDM EdS - Pic Céleste (forêt)", - "metropolis": "Firel - Metropolis", // The composer thinks about a more creative name - "mountain": "PDM EdS - Mt Corne", - "plains": "PDM EdS - Pic Céleste (prairie)", - "power_plant": "PDM EdS - Plaines Élek", - "ruins": "PDM EdS - Ruine Scellée", - "sea": "Andr06 - Marine Mystique", // Name defined by the composer - "seabed": "Firel - Seabed", // The composer thinks about a more creative name - "slum": "Andr06 - Sneaky Snom", // Name defined by the composer - "snowy_forest": "PDM EdS - Pic Céleste (plaine enneigée)", + "abyss": "PDM EdC - Cratère Obscur", + "badlands": "PDM EdC - Vallée Stérile", + "beach": "PDM EdC - Falaise Trempée", + "cave": "PDM EdC - Pic Céleste (grotte)", + "construction_site": "PDM EdC - Carrière Rocher", + "desert": "PDM EdC - Désert du Nord", + "dojo": "PDM EdC - Dojo Ossatueur", + "end": "PDM EdC - Tour Céleste", + "factory": "PDM EdC - Ruines Cachées", + "fairy_cave": "PDM EdC - Caverne Étoile", + "forest": "PDM EdC - Forêt Crépuscule", + "grass": "PDM EdC - Bois aux Pommes", + "graveyard": "PDM EdC - Forêt Trompeuse", + "ice_cave": "PDM EdC - Montagne Glacier", + "island": "PDM EdC - Côte Escarpée", + "jungle": "Lmz - Jungle", + "laboratory": "Firel - Laboratory", + "lake": "PDM EdC - Caverne Cristal", + "meadow": "PDM EdC - Pic Céleste (forêt)", + "metropolis": "Firel - Metropolis", + "mountain": "PDM EdC - Mont Corne", + "plains": "PDM EdC - Pic Céleste (prairie)", + "power_plant": "PDM EdC - Plaines Élek", + "ruins": "PDM EdC - Ruine Scellée", + "sea": "Andr06 - Marine Mystique", + "seabed": "Firel - Seabed", + "slum": "Andr06 - Sneaky Snom", + "snowy_forest": "PDM EdC - Pic Céleste (plaine enneigée)", "space": "Firel - Aether", - "swamp": "PDM EdS - Mer Fermée", - "tall_grass": "PDM EdS - Forêt Brumeuse", - "temple": "PDM EdS - Grotte Égide", - "town": "PDM EdS - Donjon aléatoire - Thème 3", - "volcano": "PDM EdS - Grotte Étuve", - "wasteland": "PDM EdS - Terres Illusoires", - - // Encounter + "swamp": "PDM EdC - Mer Fermée", + "tall_grass": "PDM EdC - Forêt Brumeuse", + "temple": "PDM EdC - Grotte Égide", + "town": "PDM EdC - Donjon aléatoire - Thème 3", + "volcano": "PDM EdC - Grotte Étuve", + "wasteland": "PDM EdC - Terres Illusoires", "encounter_ace_trainer": "NB - Regards croisés (Topdresseur·euse)", "encounter_backpacker": "NB - Regards croisés (Randonneur·euse)", "encounter_clerk": "NB - Regards croisés (Employé·e)", @@ -138,9 +144,7 @@ export const bgmName: SimpleTranslationEntries = { "encounter_scientist": "NB - Regards croisés (Scientifique)", "encounter_twins": "NB - Regards croisés (Jumelles)", "encounter_youngster": "NB - Regards croisés (Gamin)", - - // Other "heal": "NB - Soin de Pokémon", - "menu": "PDM EdS - Bienvenue dans le monde de Pokémon !", - "title": "PDM EdS - Menu Principal", -} as const; + "menu": "PDM EdC - Bienvenue dans le monde de Pokémon !", + "title": "PDM EdC - Menu Principal" +} diff --git a/src/locales/fr/biome.ts b/src/locales/fr/biome.json similarity index 86% rename from src/locales/fr/biome.ts rename to src/locales/fr/biome.json index 83029b3a8d4..e1012c7ea9e 100644 --- a/src/locales/fr/biome.ts +++ b/src/locales/fr/biome.json @@ -1,6 +1,4 @@ -import { SimpleTranslationEntries } from "#app/interfaces/locales"; - -export const biome: SimpleTranslationEntries = { +{ "unknownLocation": "vous avez oublié où", "TOWN": "Ville", "PLAINS": "Plaines", @@ -36,5 +34,5 @@ export const biome: SimpleTranslationEntries = { "SNOWY_FOREST": "Forêt Enneigée", "ISLAND": "Ile", "LABORATORY": "Laboratoire", - "END": "???", -} as const; + "END": "???" +} \ No newline at end of file diff --git a/src/locales/fr/challenges.ts b/src/locales/fr/challenges.json similarity index 73% rename from src/locales/fr/challenges.ts rename to src/locales/fr/challenges.json index e91c897f83a..a83ec2e0be4 100644 --- a/src/locales/fr/challenges.ts +++ b/src/locales/fr/challenges.json @@ -1,6 +1,4 @@ -import { TranslationEntries } from "#app/interfaces/locales"; - -export const challenges: TranslationEntries = { +{ "title": "Paramètres du Challenge", "illegalEvolution": "{{pokemon}} est devenu\ninéligible pour ce challenge !", "singleGeneration": { @@ -15,18 +13,24 @@ export const challenges: TranslationEntries = { "gen_6": "6e", "gen_7": "7e", "gen_8": "8e", - "gen_9": "9e", + "gen_9": "9e" }, "singleType": { "name": "Monotype", "desc": "Vous ne pouvez choisir que des Pokémon de type {{type}}.", "desc_default": "Vous ne pouvez choisir que des Pokémon du type sélectionné." - //type in pokemon-info }, "freshStart": { "name": "Nouveau départ", "desc": "Vous ne pouvez choisir que les starters de base du jeu, comme si vous le recommenciez.", "value.0": "Non", - "value.1": "Oui", + "value.1": "Oui" + }, + "inverseBattle": { + "name": "Combat Inversé", + "shortName": "Inversé", + "desc": "Les affinités de la table des types sont inversées et plus aucun type n’a d’immunité.\nDésactive les succès des autres challenges.", + "value.0": "Non", + "value.1": "Oui" } -} as const; +} \ No newline at end of file diff --git a/src/locales/fr/command-ui-handler.json b/src/locales/fr/command-ui-handler.json new file mode 100644 index 00000000000..a991c618820 --- /dev/null +++ b/src/locales/fr/command-ui-handler.json @@ -0,0 +1,7 @@ +{ + "fight": "Attaque", + "ball": "Ball", + "pokemon": "Pokémon", + "run": "Fuite", + "actionMessage": "Que doit faire\n{{pokemonName}} ?" +} \ No newline at end of file diff --git a/src/locales/fr/command-ui-handler.ts b/src/locales/fr/command-ui-handler.ts deleted file mode 100644 index 42180d31276..00000000000 --- a/src/locales/fr/command-ui-handler.ts +++ /dev/null @@ -1,9 +0,0 @@ -import { SimpleTranslationEntries } from "#app/interfaces/locales"; - -export const commandUiHandler: SimpleTranslationEntries = { - "fight": "Attaque", - "ball": "Ball", - "pokemon": "Pokémon", - "run": "Fuite", - "actionMessage": "Que doit faire\n{{pokemonName}} ?", -} as const; diff --git a/src/locales/fr/common.json b/src/locales/fr/common.json new file mode 100644 index 00000000000..623177d1e2b --- /dev/null +++ b/src/locales/fr/common.json @@ -0,0 +1,8 @@ +{ + "start": "Lancer", + "luckIndicator": "Chance :", + "shinyOnHover": "Chromatique", + "commonShiny": "Commun", + "rareShiny": "Rare", + "epicShiny": "Épique" +} diff --git a/src/locales/fr/common.ts b/src/locales/fr/common.ts deleted file mode 100644 index c8e3d58dd3e..00000000000 --- a/src/locales/fr/common.ts +++ /dev/null @@ -1,10 +0,0 @@ -import { SimpleTranslationEntries } from "#app/interfaces/locales"; - -export const common: SimpleTranslationEntries = { - "start": "Lancer", - "luckIndicator": "Chance :", - "shinyOnHover": "Chromatique", - "commonShiny": "Commun", - "rareShiny": "Rare", - "epicShiny": "Épique", -} as const; diff --git a/src/locales/fr/config.ts b/src/locales/fr/config.ts index 246ae9a073f..f79374cd3b9 100644 --- a/src/locales/fr/config.ts +++ b/src/locales/fr/config.ts @@ -1,116 +1,113 @@ -import { ability } from "./ability"; -import { abilityTriggers } from "./ability-trigger"; -import { arenaFlyout } from "./arena-flyout"; -import { arenaTag } from "./arena-tag"; -import { PGFachv, PGMachv } from "./achv"; -import { battle } from "./battle"; -import { battleInfo } from "./battle-info"; -import { battleMessageUiHandler } from "./battle-message-ui-handler"; -import { battlerTags } from "./battler-tags"; -import { berry } from "./berry"; -import { bgmName } from "./bgm-name"; -import { biome } from "./biome"; -import { challenges } from "./challenges"; -import { commandUiHandler } from "./command-ui-handler"; -import { - PGFbattleSpecDialogue, - PGFdialogue, - PGFdoubleBattleDialogue, - PGFmiscDialogue, - PGMbattleSpecDialogue, - PGMdialogue, - PGMdoubleBattleDialogue, - PGMmiscDialogue -} from "./dialogue"; -import { egg } from "./egg"; -import { fightUiHandler } from "./fight-ui-handler"; -import { filterBar } from "./filter-bar"; -import { gameMode } from "./game-mode"; -import { gameStatsUiHandler } from "./game-stats-ui-handler"; -import { growth } from "./growth"; -import { menu } from "./menu"; -import { menuUiHandler } from "./menu-ui-handler"; -import { modifier } from "./modifier"; -import { modifierType } from "./modifier-type"; -import { move } from "./move"; -import { nature } from "./nature"; -import { pokeball } from "./pokeball"; -import { pokemon } from "./pokemon"; -import { pokemonForm, battlePokemonForm } from "./pokemon-form"; -import { pokemonInfo } from "./pokemon-info"; -import { pokemonInfoContainer } from "./pokemon-info-container"; -import { pokemonSummary } from "./pokemon-summary"; -import { saveSlotSelectUiHandler } from "./save-slot-select-ui-handler"; -import { splashMessages } from "./splash-messages"; -import { starterSelectUiHandler } from "./starter-select-ui-handler"; -import { statusEffect } from "./status-effect"; -import { titles, trainerClasses, trainerNames } from "./trainers"; -import { tutorial } from "./tutorial"; -import { voucher } from "./voucher"; -import { terrain, weather } from "./weather"; -import { partyUiHandler } from "./party-ui-handler"; -import { settings } from "./settings.js"; -import { common } from "./common.js"; -import { modifierSelectUiHandler } from "./modifier-select-ui-handler"; -import { moveTriggers } from "./move-trigger"; +import common from "./common.json"; +import settings from "./settings.json"; +import ability from "./ability.json"; +import abilityTriggers from "./ability-trigger.json"; +import arenaFlyout from "./arena-flyout.json"; +import arenaTag from "./arena-tag.json"; +import achv from "./achv.json"; +import battle from "./battle.json"; +import battleScene from "./battle-scene.json"; +import battleInfo from "./battle-info.json"; +import battleMessageUiHandler from "./battle-message-ui-handler.json"; +import battlerTags from "./battler-tags.json"; +import berry from "./berry.json"; +import bgmName from "./bgm-name.json"; +import biome from "./biome.json"; +import challenges from "./challenges.json"; +import commandUiHandler from "./command-ui-handler.json"; +import dialogue from "./dialogue.json"; +import battleSpecDialogue from "./dialogue-final-boss.json"; +import miscDialogue from "./dialogue-misc.json"; +import doubleBattleDialogue from "./dialogue-double-battle.json"; +import egg from "./egg.json"; +import fightUiHandler from "./fight-ui-handler.json"; +import filterBar from "./filter-bar.json"; +import gameMode from "./game-mode.json"; +import gameStatsUiHandler from "./game-stats-ui-handler.json"; +import growth from "./growth.json"; +import menu from "./menu.json"; +import menuUiHandler from "./menu-ui-handler.json"; +import modifier from "./modifier.json"; +import modifierType from "./modifier-type.json"; +import move from "./move.json"; +import nature from "./nature.json"; +import partyUiHandler from "./party-ui-handler.json"; +import pokeball from "./pokeball.json"; +import pokemon from "./pokemon.json"; +import pokemonForm from "./pokemon-form.json"; +import battlePokemonForm from "./pokemon-form-battle.json"; +import pokemonInfo from "./pokemon-info.json"; +import pokemonInfoContainer from "./pokemon-info-container.json"; +import pokemonSummary from "./pokemon-summary.json"; +import saveSlotSelectUiHandler from "./save-slot-select-ui-handler.json"; +import splashMessages from "./splash-messages.json"; +import starterSelectUiHandler from "./starter-select-ui-handler.json"; +import statusEffect from "./status-effect.json"; +import trainerTitles from "./trainer-titles.json"; +import trainerClasses from "./trainer-classes.json"; +import trainerNames from "./trainer-names.json"; +import tutorial from "./tutorial.json"; +import voucher from "./voucher.json"; +import weather from "./weather.json"; +import terrain from "./terrain.json"; +import modifierSelectUiHandler from "./modifier-select-ui-handler.json"; +import moveTriggers from "./move-trigger.json"; +import runHistory from "./run-history.json"; export const frConfig = { - ability: ability, - abilityTriggers: abilityTriggers, - arenaFlyout: arenaFlyout, - arenaTag: arenaTag, - battle: battle, - battleInfo: battleInfo, - battleMessageUiHandler: battleMessageUiHandler, - battlePokemonForm: battlePokemonForm, - battlerTags: battlerTags, - berry: berry, - bgmName: bgmName, - biome: biome, - challenges: challenges, - commandUiHandler: commandUiHandler, - common: common, - PGMachv: PGMachv, - PGFachv: PGFachv, - PGMdialogue: PGMdialogue, - PGFdialogue: PGFdialogue, - PGMbattleSpecDialogue: PGMbattleSpecDialogue, - PGFbattleSpecDialogue: PGFbattleSpecDialogue, - PGMmiscDialogue: PGMmiscDialogue, - PGFmiscDialogue: PGFmiscDialogue, - PGMdoubleBattleDialogue: PGMdoubleBattleDialogue, - PGFdoubleBattleDialogue: PGFdoubleBattleDialogue, - egg: egg, - fightUiHandler: fightUiHandler, - filterBar: filterBar, - gameMode: gameMode, - gameStatsUiHandler: gameStatsUiHandler, - growth: growth, - menu: menu, - menuUiHandler: menuUiHandler, - modifier: modifier, - modifierType: modifierType, - move: move, - nature: nature, - pokeball: pokeball, - pokemon: pokemon, - pokemonForm: pokemonForm, - pokemonInfo: pokemonInfo, - pokemonInfoContainer: pokemonInfoContainer, - pokemonSummary: pokemonSummary, - saveSlotSelectUiHandler: saveSlotSelectUiHandler, - settings: settings, - splashMessages: splashMessages, - starterSelectUiHandler: starterSelectUiHandler, - statusEffect: statusEffect, - terrain: terrain, - titles: titles, - trainerClasses: trainerClasses, - trainerNames: trainerNames, - tutorial: tutorial, - voucher: voucher, - weather: weather, - partyUiHandler: partyUiHandler, - modifierSelectUiHandler: modifierSelectUiHandler, - moveTriggers: moveTriggers + ability, + abilityTriggers, + arenaFlyout, + arenaTag, + battle, + battleScene, + battleInfo, + battleMessageUiHandler, + battlePokemonForm, + battlerTags, + berry, + bgmName, + biome, + challenges, + commandUiHandler, + common, + achv, + dialogue, + battleSpecDialogue, + miscDialogue, + doubleBattleDialogue, + egg, + fightUiHandler, + filterBar, + gameMode, + gameStatsUiHandler, + growth, + menu, + menuUiHandler, + modifier, + modifierType, + move, + nature, + pokeball, + pokemon, + pokemonForm, + pokemonInfo, + pokemonInfoContainer, + pokemonSummary, + saveSlotSelectUiHandler, + settings, + splashMessages, + starterSelectUiHandler, + statusEffect, + terrain, + titles: trainerTitles, + trainerClasses, + trainerNames, + tutorial, + voucher, + weather, + partyUiHandler, + modifierSelectUiHandler, + moveTriggers, + runHistory, }; diff --git a/src/locales/fr/dialogue-double-battle.json b/src/locales/fr/dialogue-double-battle.json new file mode 100644 index 00000000000..d35e9d87ced --- /dev/null +++ b/src/locales/fr/dialogue-double-battle.json @@ -0,0 +1,83 @@ +{ + "blue_red_double": { + "encounter": { + "1": "Blue : Hé Red, montrons-lui de quel bois on se chauffe !\n$Red : …\n$Blue : Voilà la puissance du Bourg Palette !" + }, + "victory": { + "1": "Blue : C’était un magnifique combat !\n$Red : …" + } + }, + "red_blue_double": { + "encounter": { + "1": "Red : … !\n$Blue : Il est pas très loquace.\n$Blue : Mais ne te laisse pas avoir, ça reste un Maitre Pokémon !" + }, + "victory": { + "1": "Red : … !\n$Blue : La prochaine fois, on va te battre !" + } + }, + "tate_liza_double": { + "encounter": { + "1": "Lévy : Héhéhé… Tu en fais une drôle de tête.\n$Tatia : Tu ne t’attendais pas à rencontrer deux Champions, n’est-ce pas ?\n$Lévy : Nous sommes des jumeaux !\n$Tatia : Nous n’avons pas besoin de parler entre nous !\n$Lévy : Tu crois pouvoir briser…\n$Tatia : … Notre duo parfait ?" + }, + "victory": { + "1": "Lévy : Quoi ? Notre combinaison était parfaite !\n$Tatia : Nous avons encore besoin d’entrainement…" + } + }, + "liza_tate_double": { + "encounter": { + "1": "Tatia : Hihih… Si tu voyais ta tête !\n$Lévy : Oui, nous sommes deux Champions en un !\n$Tatia : Voici mon frère, Lévy…\n$Lévy : … Et ma sœur, Tatia !\n$Tatia : Tu ne penses pas que notre combinaison est parfaite ?" + }, + "victory": { + "1": "Tatia : Quoi ? Notre combinaison…\n$Lévy : … a échoué !" + } + }, + "wallace_steven_double": { + "encounter": { + "1": "Pierre R. : Marc, montrons-lui la puissance des Maitres !\n$Marc : Tu vas gouter au pouvoir de Hoenn !\n$Pierre R. : C’est parti !" + }, + "victory": { + "1": "Pierre R. : C’était un beau combat !\n$Marc : Ce sera notre tour la prochaine fois !" + } + }, + "steven_wallace_double": { + "encounter": { + "1": "Pierre R. : Excuse-moi, aurais-tu des Pokémon rares ?\n$Marc : Pierre… Nous sommes là pour nous battre, pas pour frimer avec nos Pokémon.\n$Pierre R. : Oh… Je vois… Commençons alors !" + }, + "victory": { + "1": "Pierre R. : Bien, maintenant que ce combat est clos, montrons-nous nos Pokémon !\n$Marc : Pierre…" + } + }, + "alder_iris_double": { + "encounter": { + "1": "Goyah : Nous sommes l’élite des Dresseurs d’Unys !\n$Iris : Rien de mieux que des combats contre des prodiges !" + }, + "victory": { + "1": "Goyah : INCROYABLE ! T’es trop doué !\n$Iris : On gagnera la prochaine fois !" + } + }, + "iris_alder_double": { + "encounter": { + "1": "Iris : Bienvenue, Dresseur ! Je suis LA Maitresse d’Unys !\n$Goyah : Iris, concentre-toi s’il te plait…" + }, + "victory": { + "1": "Iris : On a tout donné et pourtant…\n$Goyah : Cette défaite ne pourra que nous être bénéfique !" + } + }, + "piers_marnie_double": { + "encounter": { + "1": "Rosemary : Frérot, montrons-lui la puissance de Smashings !\n$Peterson : Nous sommes les ténèbres !" + }, + "victory": { + "1": "Rosemary : T’as amené la lumière dans les ténèbres !\n$Peterson : P’têtre un peu trop…" + } + }, + "marnie_piers_double": { + "encounter": { + "1": "Peterson : Chauds pour un concert ?\n$Rosemary : Frérot… Il est pas là pour chanter, mais se battre…", + "1_female": "Peterson : Chauds pour un concert ?\n$Rosemary : Frérot… Elle est pas là pour chanter, mais se battre…" + }, + "victory": { + "1": "Peterson : Ça c’est du rock !\n$Rosemary : Frérot…" + } + } +} diff --git a/src/locales/fr/dialogue-final-boss.json b/src/locales/fr/dialogue-final-boss.json new file mode 100644 index 00000000000..c5a5e3b7d89 --- /dev/null +++ b/src/locales/fr/dialogue-final-boss.json @@ -0,0 +1,6 @@ +{ + "encounter": "Une fois de plus, te revoilà.\nSais-tu que ce n’est point là ta première venue ?\n$Tu as été appelé ici parce que t’y es déjà venu.\nUn nombre inimaginable de fois.\n$Mais allons-y, faisons le décompte.\nTu en es très précisément à ton {{cycleCount}}e cycle.\n$Chaque cycle réinitialise ton souvenir du précédent.\nMais étrangement, des bribes subsistent en toi.\n$Jusqu’à maintenant, tu as toujours échoué. Mais je ressens quelque chose de différent cette fois-ci.\n\n$Tu es la seule présence ici, bien que j’ai le sentiment d’en ressentir… une autre.\n$Vas-tu enfin me livrer un affrontement digne de ce nom ?\nCe challenge dont je rêve depuis un millénaire ?\n$Commençons.", + "encounter_female": "Une fois de plus, te revoilà.\nSais-tu que ce n’est point là ta première venue ?\n$Tu as été appelée ici parce que t’y es déjà venue.\nUn nombre inimaginable de fois.\n$Mais allons-y, faisons le décompte.\nTu en es très précisément à ton {{cycleCount}}e cycle.\n$Chaque cycle réinitialise ton souvenir du précédent.\nMais étrangement, des bribes subsistent en toi.\n$Jusqu’à maintenant, tu as toujours échoué. Mais je ressens quelque chose de différent cette fois-ci.\n\n$Tu es la seule présence ici, bien que j’ai le sentiment d’en ressentir… une autre.\n$Vas-tu enfin me livrer un affrontement digne de ce nom ?\nCe challenge dont je rêve depuis un millénaire ?\n$Commençons.", + "firstStageWin": "Je vois. Cette présence était bien réelle.\nJe n’ai donc plus besoin de retenir mes coups.\n$Ne me déçoit pas.", + "secondStageWin": "… Magnifique." +} \ No newline at end of file diff --git a/src/locales/fr/dialogue-misc.json b/src/locales/fr/dialogue-misc.json new file mode 100644 index 00000000000..d932d283d37 --- /dev/null +++ b/src/locales/fr/dialogue-misc.json @@ -0,0 +1,4 @@ +{ + "ending": "@c{smile}Oh ? T’as gagné ?@d{96} @c{smile_eclosed}J’aurais dû le savoir.\nMais de voilà de retour.\n$@c{smile}C’est terminé.@d{64} T’as brisé ce cycle infernal.\n$@c{serious_smile_fists}T’as aussi accompli ton rêve non ?\nTu n’as pas connu la moindre défaite.\n$@c{neutral}Je suis le seul à me souvenir de ce que t’as fait.@d{96}\nJe pense que ça ira, non ?\n$@c{serious_smile_fists}Ta légende vivra à jamais dans nos cœurs.\n$@c{smile_eclosed}Bref, j’en ai un peu marre de ce endroit, pas toi ? Rentrons à la maison.\n$@c{serious_smile_fists}On se fera un p’tit combat une fois rentrés ?\nSi t’es d’accord.", + "ending_female": "@c{shock}T’es revenu ?@d{32} Ça veut dire…@d{96} que t’as gagné ?!\n@c{smile_ehalf}J’aurais dû le savoir.\n$@c{smile_eclosed}Bien sûr… J’ai toujours eu ce sentiment.\n@c{smile}C’est fini maitenant hein ? T’as brisé ce cycle.\n$@c{smile_ehalf}T’as aussi accompli ton rêve non ?\nTu n’as pas connu la moindre défaite.\n$Je serai la seule à me souvenir de ce que t’as fait.\n@c{angry_mopen}Je tâcherai de ne pas oublier !\n$@c{smile_wave_wink}J’déconne !@d{64} @c{smile}Jamais j’oublierai.@d{32}\nTa légende vivra à jamais dans nos cœurs.\n$@c{smile_wave}Bon,@d{64} il se fait tard…@d{96} je crois ?\nDifficile à dire ici.\n$Rentrons, @c{smile_wave_wink}et demain on se fera un p’tit combat, comme au bon vieux temps ?" +} \ No newline at end of file diff --git a/src/locales/fr/dialogue.json b/src/locales/fr/dialogue.json new file mode 100644 index 00000000000..c9bb3c417c7 --- /dev/null +++ b/src/locales/fr/dialogue.json @@ -0,0 +1,614 @@ +{ + "youngster": { + "encounter": { + "1": "Hé ! Combat ?", + "2": "Toi aussi tu débutes ?", + "3": "Hé, j’me souviens pas de ta tête. Combat !", + "4": "J’ai perdu, alors j’essaye de capturer d’autres Pokémon.\nHé, t’as l’air faible toi ! Allez, combat !", + "5": "On s’connait ? J’ai comme un doute. Dans tous les cas, sympa de te rencontrer !", + "6": "Allez, c’est parti !", + "7": "Attention, me voilà !\nTu vas voir comment j’suis fort !", + "8": "Coucou… Tu veux voir mes bô Pokémon ?", + "9": "Trève de mondanités. Ramène-toi quand tu le sens !", + "10": "Baisse pas ta garde si tu veux pas pleurer d’avoir perdu face à un gamin.", + "11": "J’ai tout donné pour élever mes Pokémon. Attention à toi si tu leur fait du mal !", + "12": "Incroyable que t’y sois parvenu ! Mais la suite va pas être une partie de plaisir.", + "12_female": "Incroyable que t’y sois parvenue ! Mais la suite va pas être une partie de plaisir.", + "13": "Les combats sont éternels ! Bienvenue dans un monde sans fin !" + }, + "victory": { + "1": "Hé, mais t’es trop fort !", + "1_female": "Hé, mais t’es trop forte !", + "2": "En vrai j’avais aucune chance hein ?", + "3": "J’te retrouverai un jour, et là j’te battrai !", + "4": "Arg… J’ai plus aucun Pokémon.", + "5": "Non… IMPOSSIBLE ! Pourquoi j’ai encore perdu…", + "6": "Non ! J’ai perdu !", + "7": "Waah ! T’es trop incroyable ! J’suis bouche bée !", + "8": "Pourquoi… Comment… Pourtant on est les plus forts, mes Pokémon et moi…", + "9": "J’perdrai pas la prochaine fois ! Remettons ça un jour !", + "10": "Weeeesh ! Tu vois que j’suis qu’un gamin ? C’est pas juste de me bully comme ça !", + "11": "Tes Pokémon sont trop incroyables !\n… P’tit échange ?", + "12": "Je me suis fait un peu aider plus tôt, mais de quel taf je parlais ?", + "13": "Ahaha ! Et voilà, ça y est !\nT’es déjà comme chez toi dans ce monde !" + } + }, + "lass": { + "encounter": { + "1": "Affrontons-nous, d’accord ?", + "2": "T’as l’air d’un nouveau Dresseur. Battons nous !", + "2_female": "T’as l’air d’une nouvelle Dresseuse. Battons nous !", + "3": "Je te connais pas. Ça te dis de te battre ?", + "4": "Prenons du bon temps avec ce combat Pokémon !", + "5": "Je vais t’apprendre à te battre avec tes Pokémon !", + "6": "Un combat doit toujours être pris au sérieux.\nT’es prêt à te battre ?", + "6_female": "Un combat doit toujours être pris au sérieux.\nT’es prête à te battre ?", + "7": "Tu seras pas jeune éternellement. T’as qu’une chance pendant un combat. Bientôt, tu seras plus qu’un souvenir.", + "8": "Tu ferais mieux d’y aller doucement avec moi. Mais je vais me battre sérieusement !", + "9": "Je m’ennuie à l’école. Y’a rien à y faire. *Baille*\nJe me bats juste pour passer le temps." + }, + "victory": { + "1": "Wah, c’était impressionnant ! J’ai encore beaucoup à apprendre.", + "2": "Je ne pensais pas que je perdrais comme ça…", + "2_female": "Je pensais pas que je perdrais comme ça…", + "3": "J’espère que j’aurai ma revanche un jour.", + "4": "C’était super amusant ! Mais ce combat m’a épuisée…", + "5": "Tu m’as appris une belle leçon ! T’es vraiment incroyable !", + "6": "Vraiment ? J’ai perdu… ? C’est des choses qui arrivent, ça me déprime mais tu es vraiment très cool.", + "6_female": "Vraiment ? J’ai perdu… ? C’est des choses qui arrivent, ça me déprime mais t’es vraiment très cool.", + "7": "J’ai pas besoin de ce genre de souvenirs.\n*Suppression de mémoire en cours…*", + "8": "Hé ! Je t’avais dit d’y aller doucement avec moi ! Mais t’es vraiment si cool quand tu te bats sérieusement…", + "9": "J’en ai marre des combats Pokémon…\nJe vais chercher d’autres trucs à faire…" + } + }, + "breeder": { + "encounter": { + "1": "Qu’ils soient obéissants ou égoïstes… Les Pokémon ont des caractéristiques uniques.", + "2": "Même si mes choix et ma personnalité ne sont pas fous, je pense quand même bien avoir élevé mes Pokémon.", + "3": "Hum, t’es pas trop laxiste avec tes Pokémon ?\nTrop les chouchouter n’est pas bon." + }, + "victory": { + "1": "Il est primordial de nourir et développer toutes les caractéristiques de chaque Pokémon.", + "2": "Contrairement à moi, ces Pokémon ont un bon fond.", + "3": "Trop d’éloges peut ruiner les Pokémon et les gens." + }, + "defeat": { + "1": "Tu ne devrais pas t’énerver sur tes Pokémon, même après une défaite.", + "2": "Alors ? Pas mal mes Pokémon, hein ? Je suis fait pour ça.", + "3": "Peu importe à quel point t’aimes tes Pokémon, il faut toujours de la discipline s’ils se comportent mal." + } + }, + "breeder_female": { + "encounter": { + "1": "Les Pokémon ne trahissent jamais. Ils te rendront toujours l’amour que tu leur donne.", + "2": "Puis-je te donner une astuce pour mieux élever tes Pokémon ?", + "3": "J’ai élevé mes Pokémon en utilisant une méthode très spéciale." + }, + "victory": { + "1": "Arg… C’était pas supposé se passer comme ça. Leur ai-je administré la mauvaise préparation ?", + "2": "Comment ça a pu arriver…\nAvec quoi nourris-tu tes Pokémon ?", + "3": "Si je perds, c’est juste pour te dire que je tuais le temps. Mon ego n’est absolument pas touché…" + }, + "defeat": { + "1": "C’est la preuve que mes Pokémon reconnaissent tout mon amour.", + "2": "Le seul secret derrière des Pokémon bien entrainés, c’est surtout d’en capturer des bons.", + "3": "La force des Pokémon dépend de ta capacité à savoir les élever correctement." + } + }, + "fisherman": { + "encounter": { + "1": "Aaah non ! J’avais une touche !\nTu comptes faire quoi pour arranger ça ?", + "2": "Bouge de là ! Tu fais peur aux Pokémon !", + "3": "Voyons si t’arrives à ferrer une victoire !" + }, + "victory": { + "1": "Vas-y là, oublie.", + "2": "La prochaine fois, je vais me repêcher !", + "3": "Je présume que j’ai sous-estimé les courants…" + } + }, + "fisherman_female": { + "encounter": { + "1": "Oh la belle prise !", + "2": "Ma ligne est en place, prête à ferrer le succès !", + "3": "Prête à faire des vagues !" + }, + "victory": { + "1": "Je suppose que je vais avoir besoin d’un plus gros hameçon.", + "2": "La ligne s’est brisée, j’ai pas pu la ferrer…", + "3": "Attends que j’aiguise mes hameçons pour la revanche !" + } + }, + "swimmer": { + "encounter": { + "1": "C’est l’heure de plonger dans le vif !", + "2": "C’est le moment de surfer sur les vagues de la victoire !", + "3": "Je vais t’éclabousser de mon talent !" + }, + "victory": { + "1": "Tu m’as complètement séché", + "2": "Il semblerait que ce soit celles de la défaite…", + "3": "Retour sur la terre ferme je suppose" + } + }, + "backpacker": { + "encounter": { + "1": "Fais ton sac, on y va !", + "2": "Voyons si t’arrives à garder le rythme !", + "3": "Accélère le pas, camarade !", + "4": "J’ai passé 20 ans à la recherche de moi-même…\nMais où suis-je ?" + }, + "victory": { + "1": "J’ai trébuché !", + "2": "Ah, je crois que je me suis paumé.", + "3": "Ah, une impasse !", + "4": "Hé ! Attends une seconde…\nTu saurais pas qui je suis ?" + } + }, + "ace_trainer": { + "encounter": { + "1": "T’as l’air plutôt confiant.", + "1_female": "T’as l’air plutôt confiante.", + "2": "Tes Pokémon… Montre-les-moi…", + "3": "Les gens pensent que je suis fort par que je suis un Topdresseur.", + "4": "T’es au courant de ce que ça signifie d’être un Topdresseur ?" + }, + "victory": { + "1": "Très bien… T’as de bons Pokémon…", + "2": "Quoi ?! Mais c’est moi le génie des combats !", + "3": "Évidemment que t’es le personnage principal !", + "4": "OK ! OK ! Tu pourrais être un Topdresseur !", + "4_female": "OK ! OK ! Tu pourrais être une Topdresseuse !" + }, + "defeat": { + "1": "Je me dévoue corps et âme aux combats Pokémon !", + "2": "Comme prévu… Vraiment aucune surprise…", + "3": "Et moi qui pensais qu’en grandissant, j’allais rester frêle et fragile, à me briser à la moindre étreinte.", + "4": "Évidemment que je suis fort et encore moins un perdant. C’est important de gagner avec grâce." + } + }, + "parasol_lady": { + "encounter": { + "1": "Honorons ce terrain de combat avec élégance et équilibre !" + }, + "victory": { + "1": "Mon élégance demeure inébranlable !" + } + }, + "rocket_grunt": { + "encounter": { + "1": "Nous sommes de retour !", + "2": "Ça bosse dur, ici ! Alors du balai !", + "3": "File-nous tes Pokémon ou tu vas gouter à la colère de la Team Rocket !", + "4": "Sois témoin de ce qu’est une vraie terreur de la Team Rocket!", + "5": "Hé gamin ! Moi être guy member of la Team Rocket !", + "5_female": "Hé gamine ! Moi être guy member of la Team Rocket !" + }, + "victory": { + "1": "Une fois de plus la Team Rocket s’envole vers d’autres cieux !", + "2": "Mince! J’ai laissé tomber\nla Clé Ascenseur !", + "3": "J’ai tout foiré !", + "4": "Mes compagnons vont me venger !", + "5": "Toi dire quoi ? Forget que tu m’as vu !\nYou n’as rien seen !" + } + }, + "magma_grunt": { + "encounter": { + "1": "N’espère pas recevoir de la pitié si tu te mets sur le chemin de la Team Magma !", + "2": "Ne te mêle pas de nos affaires ! On va rendre ce monde meilleur !", + "3": "Hors de mon chemin ! La Team Magma n’a pas de temps pour les gamins !", + "4": "J’espère que t’as quelques marshmallows, car ça va chauffer !", + "5": "On va utiliser le puissance d’un volcan ! Ça va être… explosif ! Tu l’as… ? Héhé !" + }, + "victory": { + "1": "Je…?\nJ’ai perdu ?!", + "2": "Je peux pas croire que j’ai pas pris mon déjeuner juste pour ça…", + "3": "Impossible ! T’es qu’un gosse !", + "3_female": "Impossible ! T’es qu’une gosse !", + "4": "Aahhh…\nJ’aurais dû directement rentrer à la planque…", + "5": "Tu m’as démoli… Tu crois que le boss va suspendre mon salaire ?" + } + }, + "aqua_grunt": { + "encounter": { + "1": "Aucune pitié si tu te mets sur le chemin de la Team Aqua, même pour un gamin !", + "2": "Grrr…\nTu as eu le culot de t’opposer à la Team Aqua !", + "3": "Je vais te liquéfier !\nEt ce sera pas qu’à cause des mes Pokémon Eau !", + "4": "Nous, la Team Aqua, existons pour le bien commun !", + "5": "Prépare-toi à te faire emporter par le courant de…\nEuh… Mes Pokémon ! Oui, mes Pokémon !" + }, + "victory": { + "1": "Comment ça ?", + "2": "Ah, j’avais pas prévu d’être gêné par un mouflet qui se mêle de tout !", + "3": "J’ai perdu ?! Super, j’ai plus qu’à nager jusqu’à la planque maintenant…", + "4": "Oh non quelle angoisse…\nLe boss va me démonter…", + "5": "Je suis battu… Tu penses que le boss va me faire subir le supplice de la planche ?…" + } + }, + "galactic_grunt": { + "encounter": { + "1": "Ne te mets pas en travers de la Team Galaxie !", + "2": "Sois témoin de la puissance de notre technologie et du futur qui se profile !", + "3": "Au nom de la Team Galaxie, j’éliminerai quiconque se mettera sur notre route !", + "4": "Prépare ta défaite !", + "5": "J’espère que t’es prêt à te prendre une raclée de l’espace !", + "5_female": "J’espère que t’es prête à te prendre une raclée de l’espace !" + }, + "victory": { + "1": "Désactivation…", + "2": "Cet échec n’est qu’une poussière face à nos ambitions débordantes.", + "3": "Notre projet est bien plus important que cette défaite.", + "4": "Comment ?!", + "5": "Note à moi-même :\nM’entrainer aux combats Pokémon. Ça urge…" + } + }, + "plasma_grunt": { + "encounter": { + "1": "Pas de quatiers à ceux qui ne suivent pas notre idéal !", + "2": "Si je gagne, tu relâches tous tes Pokémon !", + "3": "Si tu te mets en travers de la Team Plasma, je m’occuperai de toi personnellement !", + "4": "La Team Plasma va libérer les Pokémon de tous les humains égoïstes dans ton genre !", + "5": "Nos coupes sont lunaires… Mais en combat ?\nTu vas vite le découvrir." + }, + "victory": { + "1": "Plasmaaaaaaaaa !", + "2": "Comment ai-je pu perdre…", + "3": "… Ce Pokémon est nul, j’vais aller en voler de meilleurs !", + "4": "Les plans ambitieux connaissent toujours leurs lots d’interruptions.", + "5": "C’est mauvais… MAUVAIS MAUVAIS MAUVAIS MAUVAIS !\nVa falloir battre en retraite, c’est la méga cata !" + } + }, + "flare_grunt": { + "encounter": { + "1": "Tes Pokémon ne sont pas dignes de l’élégance de la Team Flare.", + "2": "T’as des lunettes de soleil j’espère ?\nCar prépare-toi à être ébloui !", + "2_female": "T’as des lunettes de soleil j’espère ?\nCar prépare-toi à être éblouie !", + "3": "La Team Flare va purifier ce monde de toute imperfection !", + "4": "Prépare-toi à découvrir l’indiscutable sens du style de la Team Flare !", + "5": "La mode, c’est important !" + }, + "victory": { + "1": "Mon futur n’a pas l’air si radieux.", + "2": "Les combats semblent être plus complexes que je le pensais.\nRetour aux planches à dessin.", + "3": "Ehhhh ?! J’ai perdu ?!", + "4": "Même dans la défaite, l’élégance de la Team Flare continue de rayonner sur ce monde.", + "5": "J’appelle pas ça perdre, j’appelle ça échouer avec panache !" + } + }, + "rocket_boss_giovanni_1": { + "encounter": { + "1": "Bien. Je dois admettre que je suis impressionné de te voir ici !" + }, + "victory": { + "1": "QUOI ? IMPOSSIBLE !" + }, + "defeat": { + "1": "Retiens bien. Ton incapacité à évaluer ta propre force est\nla démonstration claire que tu n’es encore qu’un gamin.", + "1_female": "Retiens bien. Ton incapacité à évaluer ta propre force est\nla démonstration claire que tu n’es encore qu’une gamine." + } + }, + "rocket_boss_giovanni_2": { + "encounter": { + "1": "Mes anciens collaborateurs m’attendent.\nComptes-tu m’en empêcher ?" + }, + "victory": { + "1": "Comment c’est possible… ? Le grand dessein de la Team Rocket n’est plus qu’une illusion…" + }, + "defeat": { + "1": "La Team Rocket renaitra, et je dominerai le monde !" + } + }, + "magma_boss_maxie_1": { + "encounter": { + "1": "Je vais t’enterrer de mes propres mains.\nJ’espère que t’apprécieras cet honneur !" + }, + "victory": { + "1": "Gnn… ! Tu… T’as du répondant…\nCe sentiment d’être à la traine, de si peu…" + }, + "defeat": { + "1": "La Team Magma vaincra !" + } + }, + "magma_boss_maxie_2": { + "encounter": { + "1": "T’es le dernier rempart entravant mes objectifs. Prépare-toi à mon ultime riposte ! Hahahaha !" + }, + "victory": { + "1": "Ce… Ce n’est pas… Gnn…" + }, + "defeat": { + "1": "L’heure est venue…\nJe vais transformer cette planète en paradis pour l’humanité." + } + }, + "aqua_boss_archie_1": { + "encounter": { + "1": "Je suis le Leader de la Team Aqua.\nJ’ai bien peur que pour toi, ce soit fin de parcours." + }, + "victory": { + "1": "Retrouvons-nous.\nJe me souviendrai de ton visage." + }, + "defeat": { + "1": "Magnifique !\nPlus rien ne peut nous retenir !" + } + }, + "aqua_boss_archie_2": { + "encounter": { + "1": "J’ai attendu ce moment depuis si longtemps.\nVoici la vraie puissance de la Team Aqua !" + }, + "victory": { + "1": "Comme si j’y avait cru…" + }, + "defeat": { + "1": "Je rendrai à ce monde sa pureté originelle !" + } + }, + "galactic_boss_cyrus_1": { + "encounter": { + "1": "Tu t’es senti obligé de venir ici dans un acte vide de sens. Je vais te le faire regretter.", + "1_female": "Tu t’es sentie obligée de venir ici dans un acte vide de sens. Je vais te le faire regretter." + }, + "victory": { + "1": "Intéressant. Et plutôt curieux." + }, + "defeat": { + "1": "Je le créerai, mon nouveau monde…" + } + }, + "galactic_boss_cyrus_2": { + "encounter": { + "1": "Nous y revoilà. Il semblerait que nos destinées soient entremêlées. Il est l’heure d’y mettre un terme." + }, + "victory": { + "1": "Comment. Comment ?\nCOMMENT ?!" + }, + "defeat": { + "1": "Adieu." + } + }, + "plasma_boss_ghetsis_1": { + "encounter": { + "1": "Je n’accepterai pas qu’on me barre la route !\nPeu importe qui fait quoi !" + }, + "victory": { + "1": "Comment ? Je suis le leader de la Team Plasma !\nJe suis parfait !" + }, + "defeat": { + "1": "Je suis le parfait monarque d’un monde parfait !\nHahaha !" + } + }, + "plasma_boss_ghetsis_2": { + "encounter": { + "1": "Viens ! Je veux voir ton visage à l’instant même où l’espoir quittera ton corps !" + }, + "victory": { + "1": "Mes calculs… Non ! Mes plans étaient parfaits !\nCe monde devrait être mien !" + }, + "defeat": { + "1": "Kyurem ! Fusiorption !!!" + } + }, + "flare_boss_lysandre_1": { + "encounter": { + "1": "Comptes-tu m’arrêter ? Prouve-le." + }, + "victory": { + "1": "T’es venu m’arrêter. Mais je te demande d’attendre." + }, + "defeat": { + "1": "Les Pokémon… Ne devraient plus exister." + } + }, + "flare_boss_lysandre_2": { + "encounter": { + "1": "Ton futur ou le mien…\nVoyons lequel mérite plus d’aboutir." + }, + "victory": { + "1": "Ohhhh… !" + }, + "defeat": { + "1": "Les ignorants sans aucune vision n’auront donc de cesse de souiller ce monde." + } + }, + "brock": { + "encounter": { + "1": "Mon expertise des types Roche va te mettre au sol ! En garde !", + "2": "Tu veux toujours te battre avec moi ? Même en sachant que tu vas perdre ?", + "3": "Laisse-moi de montrer la véritable force de mes Pokémon Roche !" + }, + "victory": { + "1": "J’étais trop sûr de moi, c’est pour ça que j’ai perdu.", + "2": "Ce monde est vaste ! Je suis honoré d’avoir pu t’affronter.", + "3": "Peut-être bien que je n’aurais pas dû abandonner ma vocation d’Éleveur…" + }, + "defeat": { + "1": "La défense est la meilleure des attaques !\nTelle est ma méthode !", + "2": "Viens étudier des roches avec moi la prochaine fois si tu veux apprendre à mieux les aborder !", + "3": "Tout ce temps à voyager autour du monde paie enfin !" + } + }, + "misty": { + "encounter": { + "1": "Ma tactique ? Attaquer avec des Pokémon Eau !", + "2": "Je vais te prouver le tsunami que sont mes Pokémon aquatiques !", + "3": "Mon rêve, c’était de voyager et de défier des Dresseurs super forts. Seras-tu à la hauteur ?" + }, + "victory": { + "1": "OK. T’es pas naze… Je le reconnais…", + "2": "Pfff… T’as juste eu de la chance hein ?!", + "3": "Ouah ! T’es super balèze !" + }, + "defeat": { + "1": "Qu’en dis-tu? C’est ça, la puissance des Pokémon Eau !", + "2": "J’espère que t’as pris note des élégantes techniques de nage de mes Pokémon !", + "3": "Tes Pokémon ne jouent visiblement pas dans le même bassin…" + } + }, + "lt_surge": { + "encounter": { + "1": "T’as pas froid aux yeux, soldat ! Les combats Pokémon, c’est la guerre !", + "2": "Tu as du guts pour venir me fight ici ! Je vais te shock !", + "3": "Compte tes dents, tu vas morfler !\nMes Pokémon Électrik vont t’atomiser !" + }, + "victory": { + "1": "Whoo ! T’iras loin toi.", + "2": "Oh noes ! Mes tricks électriques sont à plat…\nYou are very fortiche!", + "3": "Tu es very costaud ! Je vais training very dur mes Pokémon, moi too, et on sera Number One !" + }, + "defeat": { + "1": "Oh yeah !\nMes Pokémon Électrik sont les best du monde !", + "2": "Oh yeah, baby ! I am trop fort !", + "3": "Une combat Pokémon, c’est comme une guerre et t’as eu droit à une bataille de premier ordre !" + } + }, + "erika": { + "encounter": { + "1": "Il fait beau, aujourd’hui, n’est-ce pas… ?\nQuoi un combat… ? Très bien…", + "2": "L’arrangement floral est ma spécialité, et mes Pokémon sont de type Plante. Quoi ? Tu veux te battre ?", + "3": "Il fait beau… Le soleil brille… Les plantes bourgeonnent… Je m’ennuie…", + "4": "Voir un tel jardin rempli de fleurs est si apaisant…" + }, + "victory": { + "1": "Bien joué, c’est mértié.", + "2": "Dommage, on s’amusait si bien…", + "3": "Oh non, le combat est terminé…", + "4": "Aaah, ça fait du bien !\nMerci, j’en avais besoin." + }, + "defeat": { + "1": "J’ai failli m’endormir…", + "2": "Oh non… Mes Pokémon Plante ont l’air de t’avoir bien endormi…", + "2_female": "Oh non… Mes Pokémon Plante ont l’air de t’avoir bien endormie…", + "3": "Ce combat était si apaisant…", + "4": "Oh non… C’est tout ?" + } + }, + "alder": { + "encounter": { + "1": "Prépare-toi pour un combat contre le meilleur Dresseur d’Unys !" + }, + "victory": { + "1": "Bien joué ! Tu as sans aucun doute un talent inégalé." + }, + "defeat": { + "1": "Une brise fraiche traverse mon cœur…\n$Quel effort extraordinaire !" + } + }, + "kieran": { + "encounter": { + "1": "Grâce à un travail acharné, je deviens de plus en plus fort !\n$Je ne perdrai pas." + }, + "victory": { + "1": "Je n’y crois pas…\n$Quel combat amusant et palpitant !" + }, + "defeat": { + "1": "Eh beh, quel combat !\n$Il est temps pour toi de t’entrainer encore plus dur." + } + }, + "rival": { + "encounter": { + "1": "@c{smile}Ah, je te cherchais ! Je savais que t’étais pressé de partir, mais je m’attendais quand même à un au revoir…\n$@c{smile_eclosed}T’as finalement décidé de réaliser ton rêve ?\nJ’ai peine à y croire.\n$@c{serious_smile_fists}Vu que t’es là, ça te dis un petit combat ?\nJe voudrais quand même m’assurer que t’es prêt.\n$@c{serious_mopen_fists}Surtout ne te retiens pas et donne-moi tout ce que t’as !" + }, + "victory": { + "1": "@c{shock}Wah… Tu m’as vraiment lavé.\nT’es vraiment un débutant ?\n$@c{smile}T’as peut-être eu de la chance, mais…\nPeut-être que t’arriveras jusqu’au bout du chemin.\n$D’ailleurs, le prof m’a demandé de te filer ces objets.\nIls ont l’air sympas.\n$@c{serious_smile_fists}Bonne chance à toi !" + } + }, + "rival_female": { + "encounter": { + "1": "@c{smile_wave}Ah, te voilà ! Je t’ai cherché partout !\n@c{angry_mopen}On oublie de dire au revoir à sa meilleure amie ?\n$@c{smile_ehalf}T’as décidé de réaliser ton rêve, hein ?\nCe jour est donc vraiment arrivé…\n$@c{smile}Je veux bien te pardonner de m’avoir oubliée,\nà une conditon. @c{smile_wave_wink}Que tu m’affronte !\n$@c{angry_mopen}Donne tout ! Ce serait dommage que ton aventure finisse avant d’avoir commencé, hein ?" + }, + "victory": { + "1": "@c{shock}Tu viens de commencer et t’es déjà si fort ?!@d{96}\n@c{angry}T’as triché non ? Avoue !\n$@c{smile_wave_wink}J’déconne !@d{64} @c{smile_eclosed}J’ai perdu dans les règles…\nJ’ai le sentiment que tu vas très bien t’en sortir.\n$@c{smile}D’ailleurs, le prof veut que je te donne ces quelques objets. Ils te seront utiles, pour sûr !\n$@c{smile_wave}Fais de ton mieux, comme toujours !\nJe crois fort en toi !" + } + }, + "rival_2": { + "encounter": { + "1": "@c{smile}Hé, toi aussi t’es là ?\n@c{smile_eclosed}Toujours invaincu, hein… ?\n$@c{serious_mopen_fists}Je sais que j’ai l’air de t’avoir suivi ici, mais c’est pas complètement vrai.\n$@c{serious_smile_fists}Pour être honnête, ça me démangeait d’avoir une revanche depuis que tu m’as battu.\n$Je me suis beaucoup entrainé, alors sois sure que je vais pas retenir mes coups cette fois.\n$@c{serious_mopen_fists}Et comme la dernière fois, ne te retiens pas !\nC’est parti !" + }, + "victory": { + "1": "@c{neutral_eclosed}Oh. Je crois que j’ai trop pris la confiance.\n$@c{smile}Pas grave, c’est OK. Je me doutais que ça arriverait.\n@c{serious_mopen_fists}Je vais juste devoir encore plus m’entrainer !\n\n$@c{smile}Ah, et pas que t’aies réellement besoin d’aide, mais j’ai ça en trop sur moi qui pourrait t’intéresser.\n\n$@c{serious_smile_fists}Mais n’espère plus en avoir d’autres !\nJe peux pas passer mon temps à aider mon adversaire.\n$@c{smile}Bref, prends soin de toi et profite bien de l’évènement !" + } + }, + "rival_2_female": { + "encounter": { + "1": "@c{smile_wave}Hé, sympa de te croiser ici. T’as toujours l’air invaincu. @c{angry_mopen}Eh… Pas mal !\n$@c{angry_mopen}Je sais à quoi tu penses et non, je t’espionne pas.\n@c{smile_eclosed}C’est juste que j’étais aussi dans le coin.\n$@c{smile_ehalf}Heureuse pour toi, mais je veux juste te rappeler que c’est pas grave de perdre parfois.\n$@c{smile}On apprend de nos erreurs, souvent plus que si on ne connaissait que le succès.\n$@c{angry_mopen}Dans tous les cas je me suis bien entrainée pour cette revanche, t’as intérêt à tout donner !" + }, + "victory": { + "1": "@c{neutral}Je… J’étais pas encore supposée perdre…\n$@c{smile}Bon. Ça veut juste dire que je vais devoir encore plus m’entrainer !\n$@c{smile_wave}J’ai aussi ça en rab pour toi !\n@c{smile_wave_wink}Inutile de me remercier ~.\n$@c{angry_mopen}C’étaient les derniers, terminé les cadeaux après ceux-là !\n$@c{smile_wave}Allez, tiens le coup et profite bien de l’évènement !" + }, + "defeat": { + "1": "Je suppose que c’est parfois normal de perdre…" + } + }, + "rival_3": { + "encounter": { + "1": "@c{smile}Hé, mais qui voilà ! Ça fait un bail.\n@c{neutral}T’es… toujours invaincu ? Incroyable.\n$@c{neutral_eclosed}Tout est devenu un peu… étrange.\nC’est plus pareil sans toi au village.\n$@c{serious}Je sais que c’est égoïste, mais j’ai besoin d’expier ça.\n@c{neutral_eclosed}Je crois que tout ça te dépasse.\n$@c{serious}Ne jamais perdre, c’est juste irréaliste.\nGrandir, c’est parfois aussi savoir perdre.\n$@c{neutral_eclosed}T’as un beau parcours, mais il y a encore tellement à venir et ça va pas s’arranger. @c{neutral}T’es prêt pour ça ?\n$@c{serious_mopen_fists}Si tu l’es, alors prouve-le." + }, + "victory": { + "1": "@c{angry_mhalf}C’est lunaire… J’ai presque fait que m’entrainer…\nAlors pourquoi il y a encore un tel écart entre nous ?" + } + }, + "rival_3_female": { + "encounter": { + "1": "@c{smile_wave}Ça fait une éternité ! Toujours debout hein ?\n@c{angry}Tu commences à me pousser à bout là. @c{smile_wave_wink}T’inquiètes j’déconne !\n$@c{smile_ehalf}Mais en vrai, ta maison te manque pas ? Ou… Moi ?\nJ… Je veux dire… Tu me manques vraiment beaucoup.\n$@c{smile_eclosed}Je te soutiendrai toujours dans tes ambitions, mais la vérité est que tu finiras par perdre un jour ou l’autre.\n$@c{smile}Quand ça arrivera, je serai là pour toi, comme toujours.\n@c{angry_mopen}Maintenant, montre-moi à quel point t’es devenu fort !" + }, + "victory": { + "1": "@c{shock}Après tout ça… Ça te suffit toujours pas… ?\nTu reviendras jamais à ce rythme…" + }, + "defeat": { + "1": "T’as fait de ton mieux.\nAllez, rentrons à la maison." + } + }, + "rival_4": { + "encounter": { + "1": "@c{neutral}Hé.\n$Je vais pas y aller par quatre chemins avec toi.\n@c{neutral_eclosed}Je suis là pour gagner. Simple, basique.\n$@c{serious_mhalf_fists}J’ai appris à maximiser tout mon potentiel en m’entrainant d’arrachepied.\n$@c{smile}C’est fou tout le temps que tu peux te dégager si tu dors pas en sacrifiant ta vie sociale.\n$@c{serious_mopen_fists}Plus rien n’a d’importance désormais, pas tant que j’aurai pas gagné.\n$@c{neutral_eclosed}J’ai atteint un stade où je ne peux plus perdre.\n@c{smile_eclosed}Je présume que ta philosophie était pas si fausse finalement.\n$@c{angry_mhalf}La défaite, c’est pour les faibles, et je ne suis plus un faible.\n$@c{serious_mopen_fists}Tiens-toi prêt." + }, + "victory": { + "1": "@c{neutral}Que…@d{64} Qui es-tu ?" + } + }, + "rival_4_female": { + "encounter": { + "1": "@c{neutral}C’est moi ! Tu m’as pas encore oubliée… n’est-ce pas ?\n$@c{smile}Tu devrais être fier d’être arrivé aussi loin. GG !\nMais c’est certainement pas la fin de ton aventure.\n$@c{smile_eclosed}T’as éveillé en moi quelque chose que j’ignorais.\nTout mon temps passe dans l’entrainement.\n$@c{smile_ehalf}Je dors et je mange à peine, je m’entraine juste tous les jours, et deviens de plus en plus forte.\n$@c{neutral}En vrai, Je… J’ai de la peine à me reconnaitre.\n$Mais maintenant, je suis au top de mes capacités.\nJe doute que tu sois de nouveau capable de me battre.\n$Et tu sais quoi ? Tout ça, c’est de ta faute.\n@c{smile_ehalf}Et j’ignore si je dois te remercier ou te haïr.\n$@c{angry_mopen}Tiens-toi prêt." + }, + "victory": { + "1": "@c{neutral}Que…@d{64} Qui es-tu ?" + }, + "defeat": { + "1": "$@c{smile}Tu devrais être fier d’être arrivé jusque là." + } + }, + "rival_5": { + "encounter": { + "1": "@c{neutral}…" + }, + "victory": { + "1": "@c{neutral}…" + } + }, + "rival_5_female": { + "encounter": { + "1": "@c{neutral}…" + }, + "victory": { + "1": "@c{neutral}…" + }, + "defeat": { + "1": "$@c{smile_ehalf}…" + } + }, + "rival_6": { + "encounter": { + "1": "@c{smile_eclosed}Nous y revoilà.\n$@c{neutral}J’ai eu du temps pour réfléchir à tout ça.\nIl y a une raison à pourquoi tout semble étrange.\n$@c{neutral_eclosed}Ton rêve, ma volonté de te battre…\nFont partie de quelque chose de plus grand.\n$@c{serious}C’est même pas à propos de moi, ni de toi… Mais du monde, @c{serious_mhalf_fists}et te repousser dans tes limites est ma mission.\n$@c{neutral_eclosed}J’ignore si je serai capable de l’accomplir, mais je ferai tout ce qui est en mon pouvoir.\n$@c{neutral}Cet endroit est terrifiant… Et pourtant il m’a l’air familier, comme si j’y avais déjà mis les pieds.\n$@c{serious_mhalf_fists}Tu ressens la même chose, pas vrai ?\n$@c{serious}… et c’est comme si quelque chose ici me parlait.\n$Comme si c’était tout ce que ce monde avait toujours connu.\n$Ces précieux moments ensemble semblent si proches ne sont rien de plus qu’un lointain souvenir.\n$@c{neutral_eclosed}D’ailleurs, qui peut dire aujourd’hui qu’ils ont pu être réels ?\n$@c{serious_mopen_fists}Il faut que tu persévères. Si tu t’arrêtes, ça n’aura jamais de fin et t’es le seul à en être capable.\n$@c{serious_smile_fists}Difficile de comprendre le sens de tout ça, je sais juste que c’est la réalité.\n$@c{serious_mopen_fists}Si tu ne parviens pas à me battre ici et maintenant, tu n’as aucune chance." + }, + "victory": { + "1": "@c{smile_eclosed}J’ai fait ce que j’avais à faire.\n$Promets-moi juste une chose.\n@c{smile}Après avoir réparé ce monde… Rentre à la maison." + } + }, + "rival_6_female": { + "encounter": { + "1": "@c{smile_ehalf}C’est donc encore entre toi et moi.\n$@c{smile_eclosed}Tu sais, j’ai beau retouner ça dans tous les sens…\n$@c{smile_ehalf}Quelque chose peut expliquer tout ça, pourquoi tout semble si étrange…\n$@c{smile}T’as tes rêves, j’ai mes ambitions…\n$J’ai juste le sentiment qu’il y a un grand dessein derrière tout ça, derrière ce qu’on fait toi et moi.\n$@c{smile_eclosed}Je crois que mon but est de… repousser tes limites.\n$@c{smile_ehalf}Je suis pas certaine de bien être douée à cet exercice, mais je fais de mon mieux.\n$Cet endroit épouvantable cache quelque chose d’étrange… Tout semble si limpide…\n$Comme… si c’était tout ce que ce monde avait toujours connu.\n$@c{smile_eclosed}J’ai le sentiment que nos précieux moments ensemble sont devenus si flous.\n$@c{smile_ehalf}Ont-ils au moins été réels ? Tout semble si loin maintenant…\n$@c{angry_mopen}Il faut que tu persévères. Si tu t’arrêtes, ça n’aura jamais de fin et t’es le seul à en être capable.\n$@c{smile_ehalf}Je… j’ignore le sens de tout ça… Mais je sais que c’est la réalité.\n$@c{neutral}Si tu ne parviens pas à me battre ici et maintenant, tu n’as aucune chance." + }, + "victory": { + "1": "@c{smile_ehalf}Je… Je crois que j’ai rempli ma mission…\n$@c{smile_eclosed}Promets-moi… Après avoir réparé ce monde… Reviens à la maison sain et sauf.\n$@c{smile_ehalf}… Merci." + } + } +} diff --git a/src/locales/fr/dialogue.ts b/src/locales/fr/dialogue.ts deleted file mode 100644 index 49dc6124fbf..00000000000 --- a/src/locales/fr/dialogue.ts +++ /dev/null @@ -1,5521 +0,0 @@ -import {DialogueTranslationEntries, SimpleTranslationEntries} from "#app/interfaces/locales"; - -// Dialogue of the NPCs in the game when the player character is male (or unset) -export const PGMdialogue: DialogueTranslationEntries = { - "youngster": { - "encounter": { - 1: "Hé ! Combat ?", - 2: "Toi aussi tu débutes ?", - 3: "Hé, j’me souviens pas de ta tête. Combat !", - 4: "J’ai perdu, alors j’essaye de capturer d’autres Pokémon.\nHé, t’as l’air faible toi ! Allez, combat !", - 5: "On s’connait ? J’ai comme un doute. Dans tous les cas, sympa de te rencontrer !", - 6: "Allez, c’est parti !", - 7: "Attention, me voilà !\nTu vas voir comment j’suis fort !", - 8: "Coucou… Tu veux voir mes bô Pokémon ?", - 9: "Trève de mondanités. Ramène-toi quand tu le sens !", - 10: "Baisse pas ta garde si tu veux pas pleurer d’avoir perdu face à un gamin.", - 11: "J’ai tout donné pour élever mes Pokémon. Attention à toi si tu leur fait du mal !", - 12: "Incroyable que t’y sois parvenu ! Mais la suite va pas être une partie de plaisir.", - 13: "Les combats sont éternels ! Bienvenue dans un monde sans fin !" - }, - "victory": { - 1: "Hé, mais t’es trop fort !", - 2: "En vrai j’avais aucune chance hein ?", - 3: "J’te retrouverai un jour, et là j’te battrai !", - 4: "Arg… J’ai plus aucun Pokémon.", - 5: "Non… IMPOSSIBLE ! Pourquoi j’ai encore perdu…", - 6: "Non ! J’ai perdu !", - 7: "Waah ! T’es trop incroyable ! J’suis bouche bée !", - 8: "Pourquoi… Comment… Pourtant on est les plus forts, mes Pokémon et moi…", - 9: "J’perdrai pas la prochaine fois ! Remettons ça un jour !", - 10: "Weeeesh ! Tu vois que j’suis qu’un gamin ? C’est pas juste de me bully comme ça !", - 11: "Tes Pokémon sont trop incroyables !\n… P’tit échange ?", - 12: "Je me suis fait un peu aider plus tôt, mais de quel taf je parlais ?", - 13: "Ahaha ! Et voilà, ça y est !\nT’es déjà comme chez toi dans ce monde !" - } - }, - "lass": { - "encounter": { - 1: "Affrontons-nous, d’accord ?", - 2: "T’as l’air d’un nouveau Dresseur. Battons nous !", - 3: "Je te connais pas. Ça te dis de te battre ?", - 4: "Prenons du bon temps avec ce combat Pokémon !", - 5: "Je vais t’apprendre à te battre avec tes Pokémon !", - 6: "Un combat doit être pris au sérieux. T’es prêt à te battre ?", - 7: "Tu seras pas jeune éternellement. T’as qu’une chance pendant un combat. Bientôt, tu seras plus qu’un souvenir.", - 8: "Tu ferais mieux d’y aller doucement avec moi. Mais je vais me battre sérieusement !", - 9: "Je m’ennuie à l’école. Y’a rien à y faire. *Baille*\nJe me bats juste pour passer le temps." - }, - "victory": { - 1: "Wah, c’était impressionnant ! J’ai encore beaucoup à apprendre.", - 2: "Je ne pensais pas que je perdrais comme ça…", - 3: "J’espère que j’aurai ma revanche un jour.", - 4: "C’était super amusant ! Mais ce combat m’a épuisée…", - 5: "Tu m’as appris une belle leçon ! T’es vraiment incroyable !", - 6: "Vraiment ? J’ai perdu… ? C’est des choses qui arrivent, ça me déprime mais tu es vraiment très cool.", - 7: "J’ai pas besoin de ce genre de souvenirs.\n*Suppression de mémoire en cours…*", - 8: "Hé ! Je t’avais dit d’y aller doucement avec moi ! Mais t’es vraiment si cool quand tu te bats sérieusement…", - 9: "J’en ai marre des combats Pokémon…\nJe vais chercher d’autres trucs à faire…" - } - }, - "breeder": { - "encounter": { - 1: "Qu’ils soient obéissants ou égoïstes… Les Pokémon ont des caractéristiques uniques.", - 2: "Même si mes choix et ma personnalité ne sont pas fous, je pense quand même bien avoir élevé mes Pokémon.", - 3: "Hum, t’es pas trop laxiste avec tes Pokémon ?\nTrop les chouchouter n’est pas bon.", - }, - "victory": { - 1: "Il est primordial de nourir et développer toutes les caractéristiques de chaque Pokémon.", - 2: "Contrairement à moi, ces Pokémon ont un bon fond.", - 3: "Trop d’éloges peut ruiner les Pokémon et les gens.", - }, - "defeat": { - 1: "Tu ne devrais pas t’énerver sur tes Pokémon, même après une défaite.", - 2: "Alors ? Pas mal mes Pokémon, hein ? Je suis fait pour ça.", - 3: "Peut importe à quel point t’aimes tes Pokémon, il faut toujours de la discipline s’ils se comportent mal." - } - }, - "breeder_female": { - "encounter": { - 1: "Les Pokémon ne trahissent jamais. Ils te rendront toujours l’amour que tu leur donne.", - 2: "Puis-je te donner une astuce pour mieux élever tes Pokémon ?", - 3: "J’ai élevé mes Pokémon en utilisant une méthode très spéciale." - }, - "victory": { - 1: "Arg… C’était pas supposé se passer comme ça. Leur ai-je administré la mauvaise préparation ?", - 2: "Comment ça a pu arriver…\nAvec quoi nourris-tu tes Pokémon ?", - 3: "Si je perds, c’est juste pour te dire que je tuais le temps. Mon ego n’est absolument pas touché…" - }, - "defeat": { - 1: "C’est la preuve que mes Pokémon reconnaissent tout mon amour.", - 2: "Le seul secret derrière des Pokémon bien entrainés, c’est surtout d’en capturer des bons.", - 3: "La force des Pokémon dépend de ta capacité à savoir les élever correctement." - } - }, - "fisherman": { - "encounter": { - 1: "Aaah non ! J’avais une touche !\nTu comptes faire quoi pour arranger ça ?", - 2: "Bouge de là ! Tu fais peur aux Pokémon !", - 3: "Voyons si t'arrives à ferrer une victoire !", - }, - "victory": { - 1: "Vas-y là, oublie.", - 2: "La prochaine fois, je vais me repêcher !", - 3: "Je présume que j’ai sous-estimé les courants…", - }, - }, - "fisherman_female": { - "encounter": { - 1: "Oh la belle prise !", - 2: "Ma ligne est en place, prête à ferrer le succès !", - 3: "Prête à faire des vagues !" - }, - "victory": { - 1: "Je suppose que je vais avoir besoin d’un plus gros hameçon.", - 2: "La ligne s’est brisée, j’ai pas pu la ferrer…", - 3: "Attends que j’aiguise mes hameçons pour la revanche !" - }, - }, - "swimmer": { - "encounter": { - 1: "C’est l’heure de plonger dans le vif !", - 2: "C’est le moment de surfer sur les vagues de la victoire !", - 3: "Je vais t’éclabousser de mon talent !", - }, - "victory": { - 1: "Tu m’as complètement séché", - 2: "Il semblerait que ce soit celles de la défaite…", - 3: "Retour sur la terre ferme je suppose", - }, - }, - "backpacker": { - "encounter": { - 1: "Fais ton sac, on y va !", - 2: "Voyons si t’arrives à garder le rythme !", - 3: "Accélère le pas, camarade !", - 4: "J’ai passé 20 ans à la recherche de moi-même…\nMais où suis-je ?" - }, - "victory": { - 1: "J’ai trébuché !", - 2: "Ah, je crois que je me suis paumé.", - 3: "Ah, une impasse !", - 4: "Hé ! Attends une seconde…\nTu saurais pas qui je suis ?" - }, - }, - "ace_trainer": { - "encounter": { - 1: "T’as l’air plutôt confiant.", - 2: "Tes Pokémon… Montre-les-moi…", - 3: "Les gens pensent que je suis fort par que je suis un Topdresseur.", - 4: "T’es au courant de ce que ça signifie d’être un Topdresseur ?" - }, - "victory": { - 1: "Très bien… T’as de bons Pokémon…", - 2: "Quoi ?! Mais c'est moi le génie des combats !", - 3: "Évidemment que t’es le personnage principal !", - 4: "OK ! OK ! Tu pourrais être un Topdresseur !" - }, - "defeat": { - 1: "Je me dévoue corps et âme aux combats Pokémon !", - 2: "Comme prévu… Vraiment aucune surprise…", - 3: "Et moi qui pensais qu’en grandissant, j’allais rester frêle et fragile, à me briser à la moindre étreinte.", - 4: "Évidemment que je suis fort et encore moins un perdant. C’est important de gagner avec grâce." - } - }, - "parasol_lady": { - "encounter": { - 1: "Honorons ce terrain de combat avec élégance et équilibre !", - }, - "victory": { - 2: "Mon élégance demeure inébranlable !", - } - }, - "twins": { - "encounter": { - 1: "Get ready, because when we team up, it's double the trouble!", - 2: "Two hearts, one strategy – let's see if you can keep up with our twin power!", - 3: "Hope you're ready for double trouble, because we're about to bring the heat!" - }, - "victory": { - 1: "We may have lost this round, but our bond remains unbreakable!", - 2: "Our twin spirit won't be dimmed for long.", - 3: "We'll come back stronger as a dynamic duo!" - }, - "defeat": { - 1: "Twin power reigns supreme!", - 2: "Two hearts, one triumph!", - 3: "Double the smiles, double the victory dance!" - } - }, - "cyclist": { - "encounter": { - 1: "Get ready to eat my dust!", - 2: "Gear up, challenger! I'm about to leave you in the dust!", - 3: "Pedal to the metal, let's see if you can keep pace!" - }, - "victory": { - 1: "Spokes may be still, but determination pedals on.", - 2: "Outpaced!", - 3: "The road to victory has many twists and turns yet to explore." - }, - }, - "black_belt": { - "encounter": { - 1: "I praise your courage in challenging me! For I am the one with the strongest kick!", - 2: "Oh, I see. Would you like to be cut to pieces? Or do you prefer the role of punching bag?" - }, - "victory": { - 1: "Oh. The Pokémon did the fighting. My strong kick didn't help a bit.", - 2: "Hmmm… If I was going to lose anyway, I was hoping to get totally messed up in the process." - }, - }, - "battle_girl": { - "encounter": { - 1: "You don't have to try to impress me. You can lose against me.", - }, - "victory": { - 1: "It's hard to say good-bye, but we are running out of time…", - }, - }, - "hiker": { - "encounter": { - 1: "My middle-age spread has given me as much gravitas as the mountains I hike!", - 2: "I inherited this big-boned body from my parents… I'm like a living mountain range…", - }, - "victory": { - 1: "At least I cannot lose when it comes to BMI!", - 2: "It's not enough… It's never enough. My bad cholesterol isn't high enough…" - }, - }, - "ranger": { - "encounter": { - 1: "When I am surrounded by nature, most other things cease to matter.", - 2: "When I'm living without nature in my life, sometimes I'll suddenly feel an anxiety attack coming on." - }, - "victory": { - 1: "It doesn't matter to the vastness of nature whether I win or lose…", - 2: "Something like this is pretty trivial compared to the stifling feelings of city life." - }, - "defeat": { - 1: "I won the battle. But victory is nothing compared to the vastness of nature…", - 2: "I'm sure how you feel is not so bad if you compare it to my anxiety attacks…" - } - }, - "scientist": { - "encounter": { - 1: "My research will lead this world to peace and joy.", - }, - "victory": { - 1: "I am a genius… I am not supposed to lose against someone like you…", - }, - }, - "school_kid": { - "encounter": { - 1: "…Heehee. I'm confident in my calculations and analysis.", - 2: "I'm gaining as much experience as I can because I want to be a Gym Leader someday." - }, - "victory": { - 1: "Ohhhh… Calculation and analysis are perhaps no match for chance…", - 2: "Even difficult, trying experiences have their purpose, I suppose." - } - }, - "artist": { - "encounter": { - 1: "I used to be popular, but now I am all washed up.", - }, - "victory": { - 1: "As times change, values also change. I realized that too late.", - }, - }, - "guitarist": { - "encounter": { - 1: "Get ready to feel the rhythm of defeat as I strum my way to victory!", - }, - "victory": { - 1: "Silenced for now, but my melody of resilience will play on.", - }, - }, - "worker": { - "encounter": { - 1: "It bothers me that people always misunderstand me. I'm a lot more pure than everyone thinks.", - }, - "victory": { - 1: "I really don't want my skin to burn, so I want to stay in the shade while I work.", - }, - }, - "worker_female": { - "encounter": { - 1: `It bothers me that people always misunderstand me. - $I'm a lot more pure than everyone thinks.` - }, - "victory": { - 1: "I really don't want my skin to burn, so I want to stay in the shade while I work." - }, - "defeat": { - 1: "My body and mind aren't necessarily always in sync." - } - }, - "worker_double": { - "encounter": { - 1: "I'll show you we can break you. We've been training in the field!", - }, - "victory": { - 1: "How strange… How could this be… I shouldn't have been outmuscled.", - }, - }, - "hex_maniac": { - "encounter": { - 1: "I normally only ever listen to classical music, but if I lose, I think I shall try a bit of new age!", - 2: "I grow stronger with each tear I cry." - }, - "victory": { - 1: "Is this the dawning of the age of Aquarius?", - 2: "Now I can get even stronger. I grow with every grudge." - }, - "defeat": { - 1: "New age simply refers to twentieth century classical composers, right?", - 2: "Don't get hung up on sadness or frustration. You can use your grudges to motivate yourself." - } - }, - "psychic": { - "encounter": { - 1: "Hi! Focus!", - }, - "victory": { - 1: "Eeeeek!", - }, - }, - "officer": { - "encounter": { - 1: "Brace yourself, because justice is about to be served!", - 2: "Ready to uphold the law and serve justice on the battlefield!" - }, - "victory": { - 1: "The weight of justice feels heavier than ever…", - 2: "The shadows of defeat linger in the precinct." - } - }, - "beauty": { - "encounter": { - 1: "My last ever battle… That's the way I'd like us to view this match…", - }, - "victory": { - 1: "It's been fun… Let's have another last battle again someday…", - }, - }, - "baker": { - "encounter": { - 1: "Hope you're ready to taste defeat!" - }, - "victory": { - 1: "I'll bake a comeback." - }, - }, - "biker": { - "encounter": { - 1: "Time to rev up and leave you in the dust!" - }, - "victory": { - 1: "I'll tune up for the next race." - }, - }, - "firebreather": { - "encounter": { - 1: "My flames shall devour you!", - 2: "My soul is on fire. I'll show you how hot it burns!", - 3: "Step right up and take a look!" - }, - "victory": { - 1: "I burned down to ashes...", - 2: "Yow! That's hot!", - 3: "Ow! I scorched the tip of my nose!" - }, - }, - "sailor": { - "encounter": { - 1: "Matey, you're walking the plank if you lose!", - 2: "Come on then! My sailor's pride is at stake!", - 3: "Ahoy there! Are you seasick?" - }, - "victory": { - 1: "Argh! Beaten by a kid!", - 2: "Your spirit sank me!", - 3: "I think it's me that's seasick..." - }, - }, - "rocket_grunt": { - "encounter": { - 1: "Nous sommes de retour !", - 2: "We're pulling a big job here! Get lost, kid!", - 3: "Hand over your Pokémon, or face the wrath of Team Rocket!", - 4: "You're about to experience the true terror of Team Rocket!", - 5: "Hey, kid! Me am a Team Rocket member kind of guy!" //Use of wrong grammar is deliberate - }, - "victory": { - 1: "Une fois de plus la Team Rocket s’envole vers d’autres cieux !", - 2: "Oh no! I dropped the Lift Key!", - 3: "I blew it!", - 4: "My associates won't stand for this!", - 5: "You say what? Team Rocket bye-bye a go-go? Broken it is says you?" //Use of wrong grammar is deliberate. - }, - }, - "magma_grunt": { - "encounter": { - 1: "N’espère pas recevoir de la pitié si tu te mets sur le chemin de la Team Magma !", - 2: "You'd better not interfere with our plans! We're making the world a better place!", - 3: "You're in the way! Team Magma has no time for kids like you!", - 4: "I hope you brought marshmallows because things are about to heat up!", - 5: "We're going to use the power of a volcano! It's gonna be... explosive! Get it? Heh heh!" - }, - "victory": { - 1: "Je…?\nJ’ai perdu ?!", - 2: "I can't believe I lost! I even skipped lunch for this", - 3: "No way! You're just a kid!", - 4: "Urrrgh... I should've ducked into our hideout right away...", - 5: "You beat me... Do you think the boss will dock my pay for this?" - }, - }, - "aqua_grunt": { - "encounter": { - 1: "Aucune pitié si tu te mets sur le chemin de la Team Aqua, même pour un gamin !", - 2: "Grrr... You've got some nerve meddling with Team Aqua!", - 3: "You're about to get soaked! And not just from my water Pokémon!", - 4: "We, Team Aqua, exist for the good of all!", - 5: "Prepare to be washed away by the tides of my... uh, Pokémon! Yeah, my Pokémon!" - }, - "victory": { - 1: "Comment ça ?", - 2: "Arrgh, I didn't count on being meddled with by some meddling kid!", - 3: "I lost?! Guess I'll have to swim back to the hideout now...", - 4: "Oh, man, what a disaster... The boss is going to be furious...", - 5: "You beat me... Do you think the boss will make me walk the plank for this?" - }, - }, - "galactic_grunt": { - "encounter": { - 1: "Ne te mets pas en travers de la Team Galaxie !", - 2: "Witness the power of our technology and the future we envision!", - 3: "In the name of Team Galactic, I'll eliminate anyone who stands in our way!", - 4: "Get ready to lose!", - 5: "Hope you're ready for a cosmic beatdown!" - }, - "victory": { - 1: "Désactivation…", - 2: "This setback means nothing in the grand scheme.", - 3: "Our plans are bigger than this defeat.", - 4: "How?!", - 5: "Note to self: practice Pokémon battling, ASAP." - }, - }, - "plasma_grunt": { - "encounter": { - 1: "Pas de quatiers à ceux qui ne suivent pas notre idéal !", - 2: "If I win against you, release your Pokémon!", - 3: "If you get in the way of Team Plasma, I'll take care of you!", - 4: "Team Plasma will liberate Pokémon from selfish humans like you!", - 5: "Our hairstyles are out of this world... but our battling skills? You'll find out soon enough." - }, - "victory": { - 1: "Plasmaaaaaaaaa !", - 2: "How could I lose...", - 3: "...What a weak Pokémon, I'll just have to go steal some better ones!", - 4: "Great plans are always interrupted.", - 5: "This is bad... Badbadbadbadbadbadbad! Bad for Team Plasma! Or Plasbad, for short!" - }, - }, - "flare_grunt": { - "encounter": { - 1: "Your Pokémon are no match for the elegance of Team Flare.", - 2: "Hope you brought your sunglasses, because things are about to get bright!", - 3: "Team Flare will cleanse the world of imperfection!", - 4: "Prepare to face the brilliance of Team Flare!", - 5: "Fashion is most important to us!" - }, - "victory": { - 1: "The future doesn't look bright for me.", - 2: "Perhaps there's more to battling than I thought. Back to the drawing board.", - 3: "Gahh?! I lost?!", - 4: "Even in defeat, Team Flare's elegance shines through.", - 5: "You may have beaten me, but when I lose, I go out in style!" - }, - }, - "rocket_boss_giovanni_1": { - "encounter": { - 1: "Bien. Je dois admettre que je suis impressionné de te voir ici !" - }, - "victory": { - 1: "QUOI ? IMPOSSIBLE !" - }, - "defeat": { - 1: "Retiens bien. Ton incapacité à évaluer ta propre force est\nla démonstration claire que tu n’es encore qu’un gamin." - } - }, - "rocket_boss_giovanni_2": { - "encounter": { - 1: "Mes anciens collaborateurs m’attendent.\nComptes-tu m’en empêcher ?" - }, - "victory": { - 1: "Comment c’est possible… ? Le grand dessein de la Team Rocket n’est plus qu’une illusion…" - }, - "defeat": { - 1: "La Team Rocket renaitra, et je dominerai le monde !" - } - }, - "magma_boss_maxie_1": { - "encounter": { - 1: "Je vais t’enterrer de mes propres mains.\nJ’espère que t’apprécieras cet honneur !" - }, - "victory": { - 1: "Gnn… ! Tu… T’as du répondant…\nCe sentiment d’être à la traine, de si peu…" - }, - "defeat": { - 1: "La Team Magma vaincra !" - } - }, - "magma_boss_maxie_2": { - "encounter": { - 1: "T’es le dernier rempart entravant mes objectifs. Prépare-toi à mon ultime riposte ! Hahahaha !" - }, - "victory": { - 1: "Ce… Ce n’est pas… Gnn…" - }, - "defeat": { - 1: "L’heure est venue…\nJe vais transformer cette planète en paradis pour l’humanité." - } - }, - "aqua_boss_archie_1": { - "encounter": { - 1: "Je suis le Leader de la Team Aqua.\nJ’ai bien peur que pour toi, ce soit fin de parcours." - }, - "victory": { - 1: "Retrouvons-nous.\nJe me souviendrai de ton visage." - }, - "defeat": { - 1: "Magnifique !\nPlus rien ne peut nous retenir !" - } - }, - "aqua_boss_archie_2": { - "encounter": { - 1: "J’ai attendu ce moment depuis si longtemps.\nVoici la vraie puissance de la Team Aqua !" - }, - "victory": { - 1: "Comme si j’y avait cru…" - }, - "defeat": { - 1: "Je rendrai à ce monde sa pureté originelle !" - } - }, - "galactic_boss_cyrus_1": { - "encounter": { - 1: "Tu t’es senti obligé de venir ici dans un acte vide de sens. Je vais te le faire regretter." - }, - "victory": { - 1: "Intéressant. Et plutôt curieux." - }, - "defeat": { - 1: "Je le créerai, mon nouveau monde…" - } - }, - "galactic_boss_cyrus_2": { - "encounter": { - 1: "Nous y revoilà. Il semblerait que nos destinées soient entremêlées. Il est l’heure d’y mettre un terme." - }, - "victory": { - 1: "Comment. Comment ?\nCOMMENT ?!" - }, - "defeat": { - 1: "Adieu." - } - }, - "plasma_boss_ghetsis_1": { - "encounter": { - 1: "Je n’accepterai pas qu’on me barre la route !\nPeu importe qui fait quoi !" - }, - "victory": { - 1: "Comment ? Je suis le leader de la Team Plasma !\nJe suis parfait !" - }, - "defeat": { - 1: "Je suis le parfait monarque d’un monde parfait !\nHahaha !" - } - }, - "plasma_boss_ghetsis_2": { - "encounter": { - 1: "Viens ! Je veux voir ton visage à l’instant même où l’espoir quittera ton corps !" - }, - "victory": { - 1: "Mes calculs… Non ! Mes plans étaient parfaits !\nCe monde devrait être mien !" - }, - "defeat": { - 1: "Kyurem ! Fusiorption !!!" - } - }, - "flare_boss_lysandre_1": { - "encounter": { - 1: "Comptes-tu m’arrêter ? Prouve-le." - }, - "victory": { - 1: "T’es venu m’arrêter. Mais je te demande d’attendre." - }, - "defeat": { - 1: "Les Pokémon… Ne devraient plus exister." - } - }, - "flare_boss_lysandre_2": { - "encounter": { - 1: "Ton futur ou le mien…\nVoyons lequel mérite plus d’aboutir." - }, - "victory": { - 1: "Ohhhh… !" - }, - "defeat": { - 1: "Les ignorants sans aucune vision n’auront donc de cesse de souiller ce monde." - } - }, - "brock": { - "encounter": { - 1: "My expertise on Rock-type Pokémon will take you down! Come on!", - 2: "My rock-hard willpower will overwhelm you!", - 3: "Allow me to show you the true strength of my Pokémon!" - }, - "victory": { - 1: "Your Pokémon's strength have overcome my rock-hard defenses!", - 2: "The world is huge! I'm glad to have had a chance to battle you.", - 3: "Perhaps I should go back to pursuing my dream as a Pokémon Breeder…" - }, - "defeat": { - 1: "The best offense is a good defense!\nThat's my way of doing things!", - 2: "Come study rocks with me next time to better learn how to fight them!", - 3: "Hah, all my traveling around the regions is paying off!" - } - }, - "misty": { - "encounter": { - 1: "My policy is an all out offensive with Water-type Pokémon!", - 2: "Hiya, I'll show you the strength of my aquatic Pokémon!", - 3: "My dream was to go on a journey and battle powerful trainers…\nWill you be a sufficient challenge?" - }, - "victory": { - 1: "You really are strong… I'll admit that you are skilled…", - 2: "Grrr… You know you just got lucky, right?!", - 3: "Wow, you're too much! I can't believe you beat me!" - }, - "defeat": { - 1: "Was the mighty Misty too much for you?", - 2: "I hope you saw my Pokémon's elegant swimming techniques!", - 3: "Your Pokémon were no match for my pride and joys!" - } - }, - "lt_surge": { - "encounter": { - 1: "My Electric Pokémon saved me during the war! I'll show you how!", - 2: "Ten-hut! I'll shock you into surrender!", - 3: "I'll zap you just like I do to all my enemies in battle!" - }, - "victory": { - 1: "Whoa! Your team's the real deal, kid!", - 2: "Aaargh, you're strong! Even my electric tricks lost against you.", - 3: "That was an absolutely shocking loss!" - }, - "defeat": { - 1: "Oh yeah! When it comes to Electric-type Pokémon, I'm number one in the world!", - 2: "Hahaha! That was an electrifying battle, kid!", - 3: "A Pokémon battle is war, and I have showed you first-hand combat!" - } - }, - "erika": { - "encounter": { - 1: "Ah, the weather is lovely here…\nOh, a battle? Very well then.", - 2: "My Pokémon battling skills rival that of my flower arranging skills.", - 3: "Oh, I hope the pleasant aroma of my Pokémon doesn't put me to sleep again…", - 4: "Seeing flowers in a garden is so soothing." - }, - "victory": { - 1: "Oh! I concede defeat.", - 2: "That match was most delightful.", - 3: "Ah, it appears it is my loss…", - 4: "Oh, my goodness." - }, - "defeat": { - 1: "I was afraid I would doze off…", - 2: "Oh my, it seems my Grass Pokémon overwhelmed you.", - 3: "That battle was such a soothing experience.", - 4: "Oh… Is that all?" - } - }, - "janine": { - "encounter": { - 1: "I am mastering the art of poisonous attacks.\nI shall spar with you today!", - 2: "Father trusts that I can hold my own.\nI will prove him right!", - 3: "My ninja techniques are only second to my Father's!\nCan you keep up?" - }, - "victory": { - 1: "Even now, I still need training… I understand.", - 2: "Your battle technique has outmatched mine.", - 3: "I'm going to really apply myself and improve my skills." - }, - "defeat": { - 1: "Fufufu… the poison has sapped all your strength to battle.", - 2: "Ha! You didn't stand a chance against my superior ninja skills!", - 3: "Father's faith in me has proven to not be misplaced." - } - }, - "sabrina": { - "encounter": { - 1: "Through my psychic ability, I had a vision of your arrival!", - 2: "I dislike fighting, but if you wish, I will show you my powers!", - 3: "I can sense great ambition in you. I shall see if it not unfounded." - }, - "victory": { - 1: "Your power… It far exceeds what I foresaw…", - 2: "I failed to accurately predict your power.", - 3: "Even with my immense psychic powers, I cannot sense another as strong as you." - }, - "defeat": { - 1: "This victory… It is exactly as I foresaw in my visions!", - 2: "Perhaps it was another I sensed a great desire in…", - 3: "Hone your abilities before recklessly charging into battle.\nYou never know what the future may hold if you do…" - } - }, - "blaine": { - "encounter": { - 1: "Hah! Hope you brought a Burn Heal!", - 2: "My fiery Pokémon will incinerate all challengers!", - 3: "Get ready to play with fire!" - }, - "victory": { - 1: "I have burned down to nothing! Not even ashes remain!", - 2: "Didn't I stoke the flames high enough?", - 3: "I'm all burned out… But this makes my motivation to improve burn even hotter!" - }, - "defeat": { - 1: "My raging inferno cannot be quelled!", - 2: "My Pokémon have been powered up with the heat from this victory!", - 3: "Hah! My passion burns brighter than yours!" - } - }, - "giovanni": { - "encounter": { - 1: "I, the leader of Team Rocket, will make you feel a world of pain!", - 2: "My training here will be vital before I am to face my old associates again.", - 3: "I do not think you are prepared for the level of failure you are about to experience!" - }, - "victory": { - 1: "WHAT! Me, lose?! There is nothing I wish to say to you!", - 2: "Hmph… You could never understand what I hope to achieve.", - 3: "This defeat is merely delaying the inevitable.\nI will rise Team Rocket from the ashes in due time." - }, - "defeat": { - 1: "Not being able to measure your own strength shows that you are still but a child.", - 2: "Do not try to interfere with me again.", - 3: "I hope you understand how foolish challenging me was." - } - }, - "roxanne": { - "encounter": { - 1: "Would you kindly demonstrate how you battle?", - 2: "You can learn many things by battling many trainers.", - 3: "Oh, you caught me strategizing.\nWould you like to battle?" - }, - "victory": { - 1: "Oh, I appear to have lost.\nI understand.", - 2: "It seems that I still have so much more to learn when it comes to battle.", - 3: "I'll take what I learned here today to heart." - }, - "defeat": { - 1: "I have learned many things from our battle.\nI hope you have too.", - 2: "I look forward to battling you again.\nI hope you'll use what you've learned here.", - 3: "I won due to everything I have learned." - } - }, - "brawly": { - "encounter": { - 1: "Oh man, a challenger!\nLet's see what you can do!", - 2: "You seem like a big splash.\nLet's battle!", - 3: "Time to create a storm!\nLet's go!" - }, - "victory": { - 1: "Oh woah, you've washed me out!", - 2: "You surfed my wave and crashed me down!", - 3: "I feel like I'm lost in Granite Cave!" - }, - "defeat": { - 1: "Haha, I surfed the big wave!\nChallenge me again sometime.", - 2: "Surf with me again some time!", - 3: "Just like the tides come in and out, I hope you return to challenge me again." - } - }, - "wattson": { - "encounter": { - 1: "Time to get shocked!\nWahahahaha!", - 2: "I'll make sparks fly!\nWahahahaha!", - 3: "I hope you brought Paralyz Heal!\nWahahahaha!" - }, - "victory": { - 1: "Seems like I'm out of charge!\nWahahahaha!", - 2: "You've completely grounded me!\nWahahahaha!", - 3: "Thanks for the thrill!\nWahahahaha!" - }, - "defeat": { - 1: "Recharge your batteries and challenge me again sometime!\nWahahahaha!", - 2: "I hope you found our battle electrifying!\nWahahahaha!", - 3: "Aren't you shocked I won?\nWahahahaha!" - } - }, - "flannery": { - "encounter": { - 1: "Nice to meet you! Wait, no…\nI will crush you!", - 2: "I've only been a leader for a little while, but I'll smoke you!", - 3: "It's time to demonstrate the moves my grandfather has taught me! Let's battle!" - }, - "victory": { - 1: "You remind me of my grandfather…\nNo wonder I lost.", - 2: "Am I trying too hard?\nI should relax, can't get too heated.", - 3: "Losing isn't going to smother me out.\nTime to reignite training!" - }, - "defeat": { - 1: "I hope I've made my grandfather proud…\nLet's battle again some time.", - 2: "I…I can't believe I won!\nDoing things my way worked!", - 3: "Let's exchange burning hot moves again soon!" - } - }, - "norman": { - "encounter": { - 1: "I'm surprised you managed to get here.\nLet's battle.", - 2: "I'll do everything in my power as a Gym Leader to win.\nLet's go!", - 3: "You better give this your all.\nIt's time to battle!" - }, - "victory": { - 1: "I lost to you…?\nRules are rules, though.", - 2: "Was moving from Olivine a mistake…?", - 3: "I can't believe it.\nThat was a great match." - }, - "defeat": { - 1: "We both tried our best.\nI hope we can battle again soon.", - 2: "You should try challenging my kid instead.\nYou might learn something!", - 3: "Thank you for the excellent battle.\nBetter luck next time." - } - }, - "winona": { - "encounter": { - 1: "I've been soaring the skies looking for prey…\nAnd you're my target!", - 2: "No matter how our battle is, my Flying Pokémon and I will triumph with grace. Let's battle!", - 3: "I hope you aren't scared of heights.\nLet's ascend!" - }, - "victory": { - 1: "You're the first Trainer I've seen with more grace than I.\nExcellently played.", - 2: "Oh, my Flying Pokémon have plummeted!\nVery well.", - 3: "Though I may have fallen, my Pokémon will continue to fly!" - }, - "defeat": { - 1: "My Flying Pokémon and I will forever dance elegantly!", - 2: "I hope you enjoyed our show.\nOur graceful dance is finished.", - 3: "Won't you come see our elegant choreography again?" - } - }, - "tate": { - "encounter": { - 1: "Hehehe…\nWere you surprised to see me without my sister?", - 2: "I can see what you're thinking…\nYou want to battle!", - 3: "How can you defeat someone…\nWho knows your every move?" - }, - "victory": { - 1: "It can't be helped…\nI miss Liza…", - 2: "Your bond with your Pokémon was stronger than mine.", - 3: "If I were with Liza, we would have won.\nWe can finish each other's thoughts!" - }, - "defeat": { - 1: "My Pokémon and I are superior!", - 2: "If you can't even defeat me, you'll never be able to defeat Liza either.", - 3: "It's all thanks to my strict training with Liza.\nI can make myself one with Pokémon." - } - }, - "liza": { - "encounter": { - 1: "Fufufu…\nWere you surprised to see me without my brother?", - 2: "I can determine what you desire…\nYou want to battle, don't you?", - 3: "How can you defeat someone…\nWho's one with their Pokémon?" - }, - "victory": { - 1: "It can't be helped…\nI miss Tate…", - 2: "Your bond with your Pokémon…\nIt's stronger than mine.", - 3: "If I were with Tate, we would have won.\nWe can finish each other's sentences!" - }, - "defeat": { - 1: "My Pokémon and I are victorious.", - 2: "If you can't even defeat me, you'll never be able to defeat Tate either.", - 3: "It's all thanks to my strict training with Tate.\nI can synchronize myself with my Pokémon." - } - }, - "juan": { - "encounter": { - 1: "Now's not the time to act coy.\nLet's battle!", - 2: "Ahahaha, You'll be witness to my artistry with Water Pokémon!", - 3: "A typhoon approaches!\nWill you be able to test me?", - 4: "Please, you shall bear witness to our artistry.\nA grand illusion of water sculpted by my Pokémon and myself!" - }, - "victory": { - 1: "You may be a genius who can take on Wallace!", - 2: "I focused on elegance while you trained.\nIt's only natural that you defeated me.", - 3: "Ahahaha!\nVery well, You have won this time.", - 4: "From you, I sense the brilliant shine of skill that will overcome all." - }, - "defeat": { - 1: "My Pokémon and I have sculpted an illusion of Water and come out victorious.", - 2: "Ahahaha, I have won, and you have lost.", - 3: "Shall I loan you my outfit? It may help you battle!\nAhahaha, I jest!", - 4: "I'm the winner! Which is to say, you lost." - } - }, - "crasher_wake": { - "encounter": { - 1: "Crash! Crash! Watch out!\nCrasher Wake…is…heeere!", - 2: "Crash! Crash! Crasher Wake!", - 3: "I'm the tidal wave of power to wash you away!" - }, - "victory": { - 1: "That puts a grin on my face!\nGuhahaha! That was a blast!", - 2: "Hunwah! It's gone and ended!\nHow will I say this…\nI want more! I wanted to battle a lot more!", - 3: "WHAAAAT!?" - }, - "defeat": { - 1: "Yeeeeah! That's right!", - 2: "I won, but I want more! I wanted to battle a lot more!", - 3: "So long!" - } - }, - "falkner": { - "encounter": { - 1: "I'll show you the real power of the magnificent bird Pokémon!", - 2: "Winds, stay with me!", - 3: "Dad! I hope you're watching me battle from above!" - }, - "victory": { - 1: "I understand… I'll bow out gracefully.", - 2: "A defeat is a defeat. You are strong indeed.", - 3: "…Shoot! Yeah, I lost." - }, - "defeat": { - 1: "Dad! I won with your cherished bird Pokémon…", - 2: "Bird Pokémon are the best after all!", - 3: "Feels like I'm catching up to my dad!" - } - }, - "nessa": { - "encounter": { - 1: "No matter what kind of plan your refined mind may be plotting, my partner and I will be sure to sink it.", - 2: "I'm not here to chat. I'm here to win!", - 3: "This is a little gift from my Pokémon… I hope you can take it!" - }, - "victory": { - 1: "You and your Pokémon are just too much…", - 2: "How…? How can this be?!", - 3: "I was totally washed away!" - }, - "defeat": { - 1: "The raging wave crashes again!", - 2: "Time to ride the wave of victory!", - 3: "Ehehe!" - } - }, - "melony": { - "encounter": { - 1: "I'm not going to hold back!", - 2: "All righty, I suppose we should get started.", - 3: "I'll freeze you solid!" - }, - "victory": { - 1: "You… You're pretty good, huh?", - 2: "If you find Gordie around, be sure to give him a right trashing, would you?", - 3: "I think you took breaking the ice a little too literally…" - }, - "defeat": { - 1: "Now do you see how severe battles can be?", - 2: "Hee! Looks like I went and won again!", - 3: "Are you holding back?" - } - }, - "marlon": { - "encounter": { - 1: "You look strong! Shoots! Let's start!", - 2: "I'm strong like the ocean's wide. You're gonna get swept away, fo' sho'.", - 3: "Oh ho, so I'm facing you! That's off the wall." - }, - "victory": { - 1: "You totally rocked that! You're raising some wicked Pokémon. You got this Trainer thing down!", - 2: "You don't just look strong, you're strong fo' reals! Eh, I was swept away, too!", - 3: "You're strong as a gnarly wave!" - }, - "defeat": { - 1: "You're tough, but it's not enough to sway the sea, 'K!", - 2: "Hee! Looks like I went and won again!", - 3: "Sweet, sweet victory!" - } - }, - "shauntal": { - "encounter": { - 1: "Excuse me. You're a challenger, right?\nI'm the Elite Four's Ghost-type Pokémon user, Shauntal, and I shall be your opponent.", - 2: "I absolutely love writing about Trainers who come here and the Pokémon they train.\nCould I use you and your Pokémon as a subject?", - 3: "Every person who works with Pokémon has a story to tell.\nWhat story is about to be told?" - }, - "victory": { - 1: "Wow. I'm dumbstruck!", - 2: "S-sorry! First, I must apologize to my Pokémon…\n\nI'm really sorry you had a bad experience because of me!", - 3: "Even in light of that, I'm still one of the Elite Four!" - }, - "defeat": { - 1: "Eheh.", - 2: "That gave me excellent material for my next novel!", - 3: "And so, another tale ends…" - } - }, - "marshal": { - "encounter": { - 1: "My mentor, Alder, sees your potential as a Trainer and is taking an interest in you.\nIt is my intention to test you--to take you to the limits of your strength. Kiai!", - 2: "Victory, decisive victory, is my intention! Challenger, here I come!", - 3: "In myself, I seek to develop the strength of a fighter and shatter any weakness in myself!\nPrevailing with the force of my convictions!" - }, - "victory": { - 1: "Whew! Well done!", - 2: "As your battles continue, aim for even greater heights!", - 3: "The strength shown by you and your Pokémon has deeply impressed me…" - }, - "defeat": { - 1: "Hmm.", - 2: "That was good battle.", - 3: "Haaah! Haaah! Haiyaaaah!" - } - }, - "cheren": { - "encounter": { - 1: "You remind me of an old friend. That makes me excited about this Pokémon battle!", - 2: `Pokémon battles have no meaning if you don't think why you battle. - $Or better said, it makes battling together with Pokémon meaningless.`, - 3: "My name's Cheren! I'm a Gym Leader and a teacher! Pleasure to meet you." - }, - "victory": { - 1: "Thank you! I saw what was missing in me.", - 2: "Thank you! I feel like I saw a little of the way toward my ideals.", - 3: "Hmm… This is problematic." - }, - "defeat": { - 1: "As a Gym Leader, I aim to be a wall for you to overcome.", - 2: "All right!", - 3: "I made it where I am because Pokémon were by my side.\nPerhaps we need to think about why Pokémon help us not in terms of Pokémon and Trainers but as a relationship between living beings." - } - }, - "chili": { - "encounter": { - 1: "Yeeeeooow! Time to play with FIRE!! I'm the strongest of us brothers!", - 2: "Ta-da! The Fire-type scorcher Chili--that's me--will be your opponent!", - 3: "I'm going to show you what me and my blazing Fire types can do!" - }, - "victory": { - 1: "You got me. I am… burned… out…", - 2: "Whoa ho! You're on fire!", - 3: "Augh! You got me!" - }, - "defeat": { - 1: "I'm on fire! Play with me, and you'll get burned!", - 2: "When you play with fire, you get burned!", - 3: "I mean, c'mon, your opponent was me! You didn't have a chance!" - } - }, - "cilan": { - "encounter": { - 1: `Nothing personal... No hard feelings... Me and my Grass-type Pokémon will... - $Um... We're gonna battle come what may.`, - 2: "So, um, if you're OK with me, I'll, um, put everything I've got into being, er, you know, your opponent.", - 3: "OK… So, um, I'm Cilan, I like Grass-type Pokémon." - }, - "victory": { - 1: "Er… Is it over now?", - 2: `…What a surprise. You are very strong, aren't you? - $I guess my brothers wouldn't have been able to defeat you either…`, - 3: "…Huh. Looks like my timing was, um, off?" - }, - "defeat": { - 1: "Huh? Did I win?", - 2: `I guess… - $I suppose I won, because I've been competing with my brothers Chili and Cress, and we all were able to get tougher.`, - 3: "It…it was quite a thrilling experience…" - } - }, - "roark": { - "encounter": { - 1: "I need to see your potential as a Trainer. And, I'll need to see the toughness of the Pokémon that battle with you!", - 2: "Here goes! These are my rocking Pokémon, my pride and joy!", - 3: "Rock-type Pokémon are simply the best!", - 4: "I need to see your potential as a Trainer. And, I'll need to see the toughness of the Pokémon that battle with you!" - }, - "victory": { - 1: "W-what? That can't be! My buffed-up Pokémon!", - 2: "…We lost control there. Next time I'd like to challenge you to a Fossil-digging race underground.", - 3: "With skill like yours, it's natural for you to win.", - 4: "Wh-what?! It can't be! Even that wasn't enough?", - 5: "I blew it." - }, - "defeat": { - 1: "See? I'm proud of my rocking battle style!", - 2: "Thanks! The battle gave me confidence that I may be able to beat my dad!", - 3: "I feel like I just smashed through a really stubborn boulder!" - } - }, - "morty": { - "encounter": { - 1: `With a little more, I could see a future in which I meet the legendary Pokémon. - $You're going to help me reach that level!`, - 2: `It's said that a rainbow-hued Pokémon will come down to appear before a truly powerful Trainer. - $I believed that tale, so I have secretly trained here all my life. As a result, I can now see what others cannot. - $I see a shadow of the person who will make the Pokémon appear. - $I believe that person is me! You're going to help me reach that level!`, - 3: "Whether you choose to believe or not, mystic power does exist.", - 4: "You can bear witness to the fruits of my training.", - 5: "You must make your soul one with that of Pokémon. Can you do this?", - 6: "Say, do you want to be part of my training?" - }, - "victory": { - 1: "I'm not good enough yet…", - 2: `I see… Your journey has taken you to far-away places and you have witnessed much more than I. - $I envy you for that…`, - 3: "How is this possible…", - 4: `I don't think our potentials are so different. - $But you seem to have something more than that… So be it.`, - 5: "Guess I need more training.", - 6: "That's a shame." - }, - "defeat": { - 1: "I moved… one step ahead again.", - 2: "Fufufu…", - 3: "Wh-what?! It can't be! Even that wasn't enough?", - 4: "I feel like I just smashed through a really stubborn boulder!", - 5: "Ahahahah!", - 6: "I knew I would win!" - } - }, - "crispin": { - "encounter": { - 1: "I wanna win, so that's exactly what I'll do!", - 2: "I battle because I wanna battle! And you know what? That's how it should be!" - }, - "victory": { - 1: "I wanted to win…but I lost!", - 2: "I lost…'cause I couldn't win!" - }, - "defeat": { - 1: "Hey, wait a sec. Did I just win? I think I just won! Talk about satisfying!", - 2: "Wooo! That was amazing!" - } - }, - "amarys": { - "encounter": { - 1: `I want to be the one to help a certain person. That being the case, I cannot afford to lose. - $… Our battle starts now.`, - }, - "victory": { - 1: "I am… not enough, I see." - }, - "defeat": { - 1: "Victory belongs to me. Well fought." - } - }, - "lacey": { - "encounter": { - 1: "I'll be facing you with my usual party as a member of the Elite Four." - }, - "victory": { - 1: "That was a great battle!" - }, - "defeat": { - 1: "Let's give your Pokémon a nice round of applause for their efforts!" - } - }, - "drayton": { - "encounter": { - 1: `Man, I love chairs. Don't you love chairs? What lifesavers. - $I don't get why everyone doesn't just sit all the time. Standing up's tiring work!`, - }, - "victory": { - 1: "Guess I should've expected that!" - }, - "defeat": { - 1: "Heh heh! Don't mind me, just scooping up a W over here. I get it if you're upset, but don't go full Kieran on me, OK?" - } - }, - "ramos": { - "encounter": { - 1: `Did yeh enjoy the garden playground I made with all these sturdy plants o' mine? - $Their strength is a sign o' my strength as a gardener and a Gym Leader! Yeh sure yer up to facing all that?`, - }, - "victory": { - 1: "Yeh believe in yer Pokémon… And they believe in yeh, too… It was a fine battle, sprout." - }, - "defeat": { - 1: "Hohoho… Indeed. Frail little blades o' grass'll break through even concrete." - } - }, - "viola": { - "encounter": { - 1: `Whether it's the tears of frustration that follow a loss or the blossoming of joy that comes with victory… - $They're both great subjects for my camera! Fantastic! This'll be just fantastic! - $Now come at me!`, - 2: "My lens is always focused on victory--I won't let anything ruin this shot!" - }, - "victory": { - 1: "You and your Pokémon have shown me a whole new depth of field! Fantastic! Just fantastic!", - 2: `The world you see through a lens, and the world you see with a Pokémon by your side… - $The same world can look entirely different depending on your view.` - }, - "defeat": { - 1: "The photo from the moment of my victory will be a real winner, all right!", - 2: "Yes! I took some great photos!" - } - }, - "candice": { - "encounter": { - 1: `You want to challenge Candice? Sure thing! I was waiting for someone tough! - $But I should tell you, I'm tough because I know how to focus.`, - 2: `Pokémon, fashion, romance… It's all about focus! - $I'll show you just what I mean. Get ready to lose!` - }, - "victory": { - 1: "I must say, I'm warmed up to you! I might even admire you a little.", - 2: `Wow! You're great! You've earned my respect! - $I think your focus and will bowled us over totally. ` - }, - "defeat": { - 1: "I sensed your will to win, but I don't lose!", - 2: "See? Candice's focus! My Pokémon's focus is great, too!" - } - }, - "gardenia": { - "encounter": { - 1: "You have a winning aura about you. So, anyway, this will be fun. Let's have our battle!" - }, - "victory": { - 1: "Amazing! You're very good, aren't you?" - }, - "defeat": { - 1: "Yes! My Pokémon and I are perfectly good!" - } - }, - "aaron": { - "encounter": { - 1: "Ok! Let me take you on!" - }, - "victory": { - 1: "Battling is a deep and complex affair…" - }, - "defeat": { - 1: "Victory over an Elite Four member doesn't come easily." - } - }, - "cress": { - "encounter": { - 1: "That is correct! It shall be I and my esteemed Water types that you must face in battle!" - }, - "victory": { - 1: "Lose? Me? I don't believe this." - }, - "defeat": { - 1: "This is the appropriate result when I'm your opponent." - } - }, - "allister": { - "encounter": { - 1: "'M Allister.\nH-here… I go…" - }, - "victory": { - 1: `I nearly lost my mask from the shock… That was… - $Wow. I can see your skill for what it is.`, - }, - "defeat": { - 1: "Th-that was ace!" - } - }, - "clay": { - "encounter": { - 1: "Harrumph! Kept me waitin', didn't ya, kid? All right, time to see what ya can do!" - }, - "victory": { - 1: "Man oh man… It feels good to go all out and still be defeated!" - }, - "defeat": { - 1: `What's important is how ya react to losin'. - $That's why folks who use losin' as fuel to get better are tough.`, - } - }, - "kofu": { - "encounter": { - 1: "I'mma serve you a full course o' Water-type Pokémon! Don't try to eat 'em, though!" - }, - "victory": { - 1: "Vaultin' Veluza! Yer a lively one, aren't ya! A little TOO lively, if I do say so myself!" - }, - "defeat": { - 1: "You come back to see me again now, ya hear?" - } - }, - "tulip": { - "encounter": { - 1: "Allow me to put my skills to use to make your cute little Pokémon even more beautiful!" - }, - "victory": { - 1: "Your strength has a magic to it that cannot be washed away." - }, - "defeat": { - 1: "You know, in my line of work, people who lack talent in one area or the other often fade away quickly—never to be heard of again." - } - }, - "sidney": { - "encounter": { - 1: `I like that look you're giving me. I guess you'll give me a good match. - $That's good! Looking real good! All right! - $You and me, let's enjoy a battle that can only be staged here!`, - }, - "victory": { - 1: "Well, how do you like that? I lost! Eh, it was fun, so it doesn't matter." - }, - "defeat": { - 1: "No hard feelings, alright?" - } - }, - "phoebe": { - "encounter": { - 1: `While I trained, I gained the ability to commune with Ghost-type Pokémon. - $Yes, the bond I developed with Pokémon is extremely tight. - $So, come on, just try and see if you can even inflict damage on my Pokémon!`, - }, - "victory": { - 1: "Oh, darn. I've gone and lost." - }, - "defeat": { - 1: "I look forward to battling you again sometime!" - } - }, - "glacia": { - "encounter": { - 1: `All I have seen are challenges by weak Trainers and their Pokémon. - $What about you? It would please me to no end if I could go all out against you!`, - }, - "victory": { - 1: `You and your Pokémon… How hot your spirits burn! - $The all-consuming heat overwhelms. - $It's no surprise that my icy skills failed to harm you.`, - }, - "defeat": { - 1: "A fiercely passionate battle, indeed." - } - }, - "drake": { - "encounter": { - 1: `For us to battle with Pokémon as partners, do you know what it takes? Do you know what is needed? - $If you don't, then you will never prevail over me!`, - }, - "victory": { - 1: "Superb, it should be said." - }, - "defeat": { - 1: "I gave my all for that battle!" - } - }, - "wallace": { - "encounter": { - 1: `There's something about you… A difference in your demeanor. - $I think I sense that in you. Now, show me. Show me the power you wield with your Pokémon. - $And I, in turn, shall present you with a performance of illusions in water by me and my Pokémon!`, - }, - "victory": { - 1: `Bravo. I realize now your authenticity and magnificence as a Pokémon Trainer. - $I find much joy in having met you and your Pokémon. You have proven yourself worthy.`, - }, - "defeat": { - 1: "A grand illusion!" - } - }, - "lorelei": { - "encounter": { - 1: `No one can best me when it comes to icy Pokémon! Freezing moves are powerful! - $Your Pokémon will be at my mercy when they are frozen solid! Hahaha! Are you ready?`, - }, - "victory": { - 1: "How dare you!" - }, - "defeat": { - 1: "There's nothing you can do once you're frozen." - } - }, - "will": { - "encounter": { - 1: `I have trained all around the world, making my psychic Pokémon powerful. - $I can only keep getting better! Losing is not an option!`, - }, - "victory": { - 1: "I… I can't… believe it…" - }, - "defeat": { - 1: "That was close. I wonder what it is that you lack." - } - }, - "malva": { - "encounter": { - 1: `I feel like my heart might just burst into flames. - $I'm burning up with my hatred for you, runt!`, - }, - "victory": { - 1: "What news… So a new challenger has defeated Malva!" - }, - "defeat": { - 1: "I am delighted! Yes, delighted that I could squash you beneath my heel." - } - }, - "hala": { - "encounter": { - 1: "Old Hala is here to make you holler!" - }, - "victory": { - 1: "I could feel the power you gained on your journey." - }, - "defeat": { - 1: "Haha! What a delightful battle!" - } - }, - "molayne": { - "encounter": { - 1: `I gave the captain position to my cousin Sophocles, but I'm confident in my ability. - $My strength is like that of a supernova!`, - }, - "victory": { - 1: "I certainly found an interesting Trainer to face!" - }, - "defeat": { - 1: "Ahaha. What an interesting battle." - } - }, - "rika": { - "encounter": { - 1: "I'd say I'll go easy on you, but… I'd be lying! Think fast!" - }, - "victory": { - 1: "Not bad, kiddo." - }, - "defeat": { - 1: "Nahahaha! You really are something else, kiddo!" - } - }, - "bruno": { - "encounter": { - 1: "We will grind you down with our superior power! Hoo hah!" - }, - "victory": { - 1: "Why? How could I lose?" - }, - "defeat": { - 1: "You can challenge me all you like, but the results will never change!" - } - }, - "bugsy": { - "encounter": { - 1: "I'm Bugsy! I never lose when it comes to bug Pokémon!" - }, - "victory": { - 1: "Whoa, amazing! You're an expert on Pokémon!\nMy research isn't complete yet. OK, you win." - }, - "defeat": { - 1: "Thanks! Thanks to our battle, I was also able to make progress in my research!" - } - }, - "koga": { - "encounter": { - 1: "Fwahahahaha! Pokémon are not merely about brute force--you shall see soon enough!" - }, - "victory": { - 1: "Ah! You've proven your worth!" - }, - "defeat": { - 1: "Have you learned to fear the techniques of the ninja?" - } - }, - "bertha": { - "encounter": { - 1: "Well, would you show this old lady how much you've learned?" - }, - "victory": { - 1: `Well! Dear child, I must say, that was most impressive. - $Your Pokémon believed in you and did their best to earn you the win. - $Even though I've lost, I find myself with this silly grin!`, - }, - "defeat": { - 1: "Hahahahah! Looks like this old lady won!" - } - }, - "lenora": { - "encounter": { - 1: "Well then, challenger, I'm going to research how you battle with the Pokémon you've so lovingly raised!" - }, - "victory": { - 1: "My theory about you was correct. You're more than just talented… You're motivated! I salute you!" - }, - "defeat": { - 1: "Ah ha ha! If you lose, make sure to analyze why, and use that knowledge in your next battle!" - } - }, - "siebold": { - "encounter": { - 1: "As long as I am alive, I shall strive onward to seek the ultimate cuisine... and the strongest opponents in battle!" - }, - "victory": { - 1: "I shall store my memory of you and your Pokémon forever away within my heart." - }, - "defeat": { - 1: `Our Pokémon battle was like food for my soul. It shall keep me going. - $That is how I will pay my respects to you for giving your all in battle!`, - } - }, - "roxie": { - "encounter": { - 1: "Get ready! I'm gonna knock some sense outta ya!" - }, - "victory": { - 1: "Wild! Your reason's already more toxic than mine!" - }, - "defeat": { - 1: "Hey, c'mon! Get serious! You gotta put more out there!" - } - }, - "olivia": { - "encounter": { - 1: "No introduction needed here. Time to battle me, Olivia!" - }, - "victory": { - 1: "Really lovely… Both you and your Pokémon…" - }, - "defeat": { - 1: "Mmm-hmm." - } - }, - "poppy": { - "encounter": { - 1: "Oooh! Do you wanna have a Pokémon battle with me?" - }, - "victory": { - 1: "Uagh?! Mmmuuuggghhh…" - }, - "defeat": { - 1: `Yaaay! I did it! I de-feet-ed you! You can come for… For… An avenge match? - $Come for an avenge match anytime you want!`, - } - }, - "agatha": { - "encounter": { - 1: "Pokémon are for battling! I'll show you how a real Trainer battles!" - }, - "victory": { - 1: "Oh my! You're something special, child!" - }, - "defeat": { - 1: "Bahaha. That's how a proper battle's done!" - } - }, - "flint": { - "encounter": { - 1: "Hope you're warmed up, cause here comes the Big Bang!" - }, - "victory": { - 1: "Incredible! Your moves are so hot, they make mine look lukewarm!" - }, - "defeat": { - 1: "Huh? Is that it? I think you need a bit more passion." - } - }, - "grimsley": { - "encounter": { - 1: "The winner takes everything, and there's nothing left for the loser." - }, - "victory": { - 1: "When one loses, they lose everything… The next thing I'll look for will be victory, too!" - }, - "defeat": { - 1: "If somebody wins, the person who fought against that person will lose." - } - }, - "caitlin": { - "encounter": { - 1: `It's me who appeared when the flower opened up. You who have been waiting… - $You look like a Pokémon Trainer with refined strength and deepened kindness. - $What I look for in my opponent is superb strength… - $Please unleash your power to the fullest!`, - }, - "victory": { - 1: "My Pokémon and I learned so much! I offer you my thanks." - }, - "defeat": { - 1: "I aspire to claim victory with elegance and grace." - } - }, - "diantha": { - "encounter": { - 1: `Battling against you and your Pokémon, all of you brimming with hope for the future… - $Honestly, it just fills me up with energy I need to keep facing each new day! It does!`, - }, - "victory": { - 1: "Witnessing the noble spirits of you and your Pokémon in battle has really touched my heart…" - }, - "defeat": { - 1: "Oh, fantastic! What did you think? My team was pretty cool, right?" - } - }, - "wikstrom": { - "encounter": { - 1: `Well met, young challenger! Verily am I the famed blade of hardened steel, Duke Wikstrom! - $Let the battle begin! En garde!`, - }, - "victory": { - 1: "Glorious! The trust that you share with your honorable Pokémon surpasses even mine!" - }, - "defeat": { - 1: `What manner of magic is this? My heart, it doth hammer ceaselessly in my breast! - $Winning against such a worthy opponent doth give my soul wings--thus do I soar!`, - } - }, - "acerola": { - "encounter": { - 1: "Battling is just plain fun! Come on, I can take you!" - }, - "victory": { - 1: "I'm… I'm speechless! How did you do it?!" - }, - "defeat": { - 1: "Ehaha! What an amazing victory!" - } - }, - "larry_elite": { - "encounter": { - 1: `Hello there… It's me, Larry. - $I serve as a member of the Elite Four too, yes… Unfortunately for me.`, - }, - "victory": { - 1: "Well, that took the wind from under our wings…" - }, - "defeat": { - 1: "It's time for a meeting with the boss." - } - }, - "lance": { - "encounter": { - 1: "I've been waiting for you. Allow me to test your skill.", - 2: "I thought that you would be able to get this far. Let's get this started." - }, - "victory": { - 1: "You got me. You are magnificent!", - 2: "I never expected another trainer to beat me… I'm surprised." - }, - "defeat": { - 1: "That was close. Want to try again?", - 2: "It's not that you are weak. Don't let it bother you." - } - }, - "karen": { - "encounter": { - 1: "I am Karen. Would you care for a showdown with my Dark-type Pokémon?", - 2: "I am unlike those you've already met.", - 3: "You've assembled a charming team. Our battle should be a good one." - }, - "victory": { - 1: "No! I can't win. How did you become so strong?", - 2: "I will not stray from my chosen path.", - 3: "The Champion is looking forward to meeting you." - }, - "defeat": { - 1: "That's about what I expected.", - 2: "Well, that was relatively entertaining.", - 3: "Come visit me anytime." - } - }, - "milo": { - "encounter": { - 1: `Sure seems like you understand Pokémon real well. - $This is gonna be a doozy of a battle! - $I'll have to Dynamax my Pokémon if I want to win!`, - }, - "victory": { - 1: "The power of Grass has wilted… What an incredible Challenger!" - }, - "defeat": { - 1: "This'll really leave you in shock and awe." - } - }, - "lucian": { - "encounter": { - 1: `Just a moment, please. The book I'm reading has nearly reached its thrilling climax… - $The hero has obtained a mystic sword and is about to face their final trial… Ah, never mind. - $Since you've made it this far, I'll put that aside and battle you. - $Let me see if you'll achieve as much glory as the hero of my book!,` - }, - "victory": { - 1: "I see… It appears you've put me in checkmate." - }, - "defeat": { - 1: "I have a reputation to uphold." - } - }, - "drasna": { - "encounter": { - 1: `You must be a strong Trainer. Yes, quite strong indeed… - $That's just wonderful news! Facing opponents like you and your team will make my Pokémon grow like weeds!` - }, - "victory": { - 1: "Oh, dear me. That sure was a quick battle… I do hope you'll come back again sometime!" - }, - "defeat": { - 1: "How can this be?" - } - }, - "kahili": { - "encounter": { - 1: "So, here you are… Why don't we see who the winds favor today, you… Or me?" - }, - "victory": { - 1: "It's frustrating to me as a member of the Elite Four, but it seems your strength is the real deal." - }, - "defeat": { - 1: "That was an ace!" - } - }, - "hassel": { - "encounter": { - 1: "Prepare to learn firsthand how the fiery breath of ferocious battle feels!" - }, - "victory": { - 1: `Fortune smiled on me this time, but… - $Judging from how the match went, who knows if I will be so lucky next time.`, - }, - "defeat": { - 1: "That was an ace!" - } - }, - "blue": { - "encounter": { - 1: "You must be pretty good to get this far." - }, - "victory": { - 1: "I've only lost to him and now to you… Him? Hee, hee…" - }, - "defeat": { - 1: "See? My power is what got me here." - } - }, - "piers": { - "encounter": { - 1: "Get ready for a mosh pit with me and my party! Spikemuth, it's time to rock!" - }, - "victory": { - 1: "Me an' my team gave it our best. Let's meet up again for a battle some time…" - }, - "defeat": { - 1: "My throat's ragged from shoutin'… But 'at was an excitin' battle!" - } - }, - "red": { - "encounter": { - 1: "…!" - }, - "victory": { - 1: "…?" - }, - "defeat": { - 1: "…!" - } - }, - "jasmine": { - "encounter": { - 1: "Oh… Your Pokémon are impressive. I think I will enjoy this." - }, - "victory": { - 1: "You are truly strong. I'll have to try much harder, too." - }, - "defeat": { - 1: "I never expected to win." - } - }, - "lance_champion": { - "encounter": { - 1: "I am still the Champion. I won't hold anything back." - }, - "victory": { - 1: "This is the emergence of a new Champion." - }, - "defeat": { - 1: "I successfully defended my Championship." - } - }, - "steven": { - "encounter": { - 1: `Tell me… What have you seen on your journey with your Pokémon? - $What have you felt, meeting so many other Trainers out there? - $Traveling this rich land… Has it awoken something inside you? - $I want you to come at me with all that you've learned. - $My Pokémon and I will respond in turn with all that we know!`, - }, - "victory": { - 1: "So I, the Champion, fall in defeat…" - }, - "defeat": { - 1: "That was time well spent! Thank you!" - } - }, - "cynthia": { - "encounter": { - 1: "I, Cynthia, accept your challenge! There won't be any letup from me!" - }, - "victory": { - 1: "No matter how fun the battle is, it will always end sometime…" - }, - "defeat": { - 1: "Even if you lose, never lose your love of Pokémon." - } - }, - "iris": { - "encounter": { - 1: `Know what? I really look forward to having serious battles with strong Trainers! - $I mean, come on! The Trainers who make it here are Trainers who desire victory with every fiber of their being! - #And they are battling alongside Pokémon that have been through countless difficult battles! - $If I battle with people like that, not only will I get stronger, my Pokémon will, too! - $And we'll get to know each other even better! OK! Brace yourself! - $I'm Iris, the Pokémon League Champion, and I'm going to defeat you!`, - }, - "victory": { - 1: "Aghhhh… I did my best, but we lost…" - }, - "defeat": { - 1: "Yay! We won!" - } - }, - "hau": { - "encounter": { - 1: `I wonder if a Trainer battles differently depending on whether they're from a warm region or a cold region. - $Let's test it out!`, - }, - "victory": { - 1: "That was awesome! I think I kinda understand your vibe a little better now!" - }, - "defeat": { - 1: "Ma-an, that was some kinda battle!" - } - }, - "geeta": { - "encounter": { - 1: `I decided to throw my hat in the ring once more. - $Come now… Show me the fruits of your training.`, - }, - "victory": { - 1: "I eagerly await news of all your achievements!" - }, - "defeat": { - 1: "What's the matter? This isn't all, is it?" - } - }, - "nemona": { - "encounter": { - 1: "Yesss! I'm so psyched! Time for us to let loose!" - }, - "victory": { - 1: "Well, that stinks, but I still had fun! I'll getcha next time!" - }, - "defeat": { - 1: "Well, that was a great battle! Fruitful for sure." - } - }, - "leon": { - "encounter": { - 1: "We're gonna have an absolutely champion time!" - }, - "victory": { - 1: `My time as Champion is over… - $But what a champion time it's been! - $Thank you for the greatest battle I've ever had!`, - }, - "defeat": { - 1: "An absolute champion time, that was!" - } - }, - "whitney": { - "encounter": { - 1: "Hey! Don't you think Pokémon are, like, super cute?" - }, - "victory": { - 1: "Waaah! Waaah! You're so mean!" - }, - "defeat": { - 1: "And that's that!" - } - }, - "chuck": { - "encounter": { - 1: "Hah! You want to challenge me? Are you brave or just ignorant?" - }, - "victory": { - 1: "You're strong! Would you please make me your apprentice?" - }, - "defeat": { - 1: "There. Do you realize how much more powerful I am than you?" - } - }, - "katy": { - "encounter": { - 1: "Don't let your guard down unless you would like to find yourself knocked off your feet!" - }, - "victory": { - 1: "All of my sweet little Pokémon dropped like flies!" - }, - "defeat": { - 1: "Eat up, my cute little Vivillon!" - } - }, - "pryce": { - "encounter": { - 1: "Youth alone does not ensure victory! Experience is what counts." - }, - "victory": { - 1: "Outstanding! That was perfect. Try not to forget what you feel now." - }, - "defeat": { - 1: "Just as I envisioned." - } - }, - "clair": { - "encounter": { - 1: "Do you know who I am? And you still dare to challenge me?" - }, - "victory": { - 1: "I wonder how far you can get with your skill level. This should be fascinating." - }, - "defeat": { - 1: "That's that." - } - }, - "maylene": { - "encounter": { - 1: `I've come to challenge you now, and I won't hold anything back. - $Please prepare yourself for battle!`, - }, - "victory": { - 1: "I admit defeat…" - }, - "defeat": { - 1: "That was awesome." - } - }, - "fantina": { - "encounter": { - 1: `You shall challenge me, yes? But I shall win. - $That is what the Gym Leader of Hearthome does, non?`, - }, - "victory": { - 1: "You are so fantastically strong. I know why I have lost." - }, - "defeat": { - 1: "I am so, so, very happy!" - } - }, - "byron": { - "encounter": { - 1: `Trainer! You're young, just like my son, Roark. - $With more young Trainers taking charge, the future of Pokémon is bright! - $So, as a wall for young people, I'll take your challenge!`, - }, - "victory": { - 1: "Hmm! My sturdy Pokémon--defeated!" - }, - "defeat": { - 1: "Gwahahaha! How were my sturdy Pokémon?!" - } - }, - "olympia": { - "encounter": { - 1: "An ancient custom deciding one's destiny. The battle begins!" - }, - "victory": { - 1: "Create your own path. Let nothing get in your way. Your fate, your future." - }, - "defeat": { - 1: "Our path is clear now." - } - }, - "volkner": { - "encounter": { - 1: `Since you've come this far, you must be quite strong… - $I hope you're the Trainer who'll make me remember how fun it is to battle!`, - }, - "victory": { - 1: `You've got me beat… - $Your desire and the noble way your Pokémon battled for you… - $I even felt thrilled during our match. That was a very good battle.`, - }, - "defeat": { - 1: `It was not shocking at all… - $That is not what I wanted!`, - } - }, - "burgh": { - "encounter": { - 1: `M'hm… If I win this battle, I feel like I can draw a picture unlike any before it. - $OK! I can hear my battle muse loud and clear. Let's get straight to it!`, - 2: `Of course, I'm really proud of all of my Pokémon! - $Well now… Let's get right to it!` - }, - "victory": { - 1: "Is it over? Has my muse abandoned me?", - 2: "Hmm… It's over! You're incredible!" - }, - "defeat": { - 1: "Wow… It's beautiful somehow, isn't it…", - 2: `Sometimes I hear people say something was an ugly win. - $I think if you're trying your best, any win is beautiful.` - } - }, - "elesa": { - "encounter": { - 1: `C'est fini! When I'm certain of that, I feel an electric jolt run through my body! - $I want to feel the sensation, so now my beloved Pokémon are going to make your head spin!`, - }, - "victory": { - 1: "I meant to make your head spin, but you shocked me instead." - }, - "defeat": { - 1: "That was unsatisfying somehow… Will you give it your all next time?" - } - }, - "skyla": { - "encounter": { - 1: `It's finally time for a showdown! That means the Pokémon battle that decides who's at the top, right? - $I love being on the summit! 'Cause you can see forever and ever from high places! - $So, how about you and I have some fun?`, - }, - "victory": { - 1: "Being your opponent in battle is a new source of strength to me. Thank you!" - }, - "defeat": { - 1: "Win or lose, you always gain something from a battle, right?" - } - }, - "brycen": { - "encounter": { - 1: `There is also strength in being with other people and Pokémon. - $Receiving their support makes you stronger. I'll show you this power!`, - }, - "victory": { - 1: "The wonderful combination of you and your Pokémon! What a beautiful friendship!" - }, - "defeat": { - 1: "Extreme conditions really test you and train you!" - } - }, - "drayden": { - "encounter": { - 1: `What I want to find is a young Trainer who can show me a bright future. - $Let's battle with everything we have: your skill, my experience, and the love we've raised our Pokémon with!`, - }, - "victory": { - 1: "This intense feeling that floods me after a defeat… I don't know how to describe it." - }, - "defeat": { - 1: "Harrumph! I know your ability is greater than that!" - } - }, - "grant": { - "encounter": { - 1: `There is only one thing I wish for. - $That by surpassing one another, we find a way to even greater heights.`, - }, - "victory": { - 1: "You are a wall that I am unable to surmount!" - }, - "defeat": { - 1: `Do not give up. - $That is all there really is to it. - $The most important lessons in life are simple.`, - } - }, - "korrina": { - "encounter": { - 1: "Time for Lady Korrina's big appearance!" - }, - "victory": { - 1: "It's your very being that allows your Pokémon to evolve!" - }, - "defeat": { - 1: "What an explosive battle!" - } - }, - "clemont": { - "encounter": { - 1: "Oh! I'm glad that we got to meet!" - }, - "victory": { - 1: "Your passion for battle inspires me!" - }, - "defeat": { - 1: "Looks like my Trainer-Grow-Stronger Machine, Mach 2 is really working!" - } - }, - "valerie": { - "encounter": { - 1: `Oh, if it isn't a young Trainer… It is lovely to get to meet you like this. - $Then I suppose you have earned yourself the right to a battle, as a reward for your efforts. - $The elusive Fairy may appear frail as the breeze and delicate as a bloom, but it is strong.`, - }, - "victory": { - 1: "I hope that you will find things worth smiling about tomorrow…" - }, - "defeat": { - 1: "Oh goodness, what a pity…" - } - }, - "wulfric": { - "encounter": { - 1: `You know what? We all talk big about what you learn from battling and bonds and all that… - $But really, I just do it 'cause it's fun. - $Who cares about the grandstanding? Let's get to battling!`, - }, - "victory": { - 1: "Outstanding! I'm tough as an iceberg, but you smashed me through and through!" - }, - "defeat": { - 1: "Tussle with me and this is what happens!" - } - }, - "kabu": { - "encounter": { - 1: `Every Trainer and Pokémon trains hard in pursuit of victory. - $But that means your opponent is also working hard to win. - $In the end, the match is decided by which side is able to unleash their true potential.`, - }, - "victory": { - 1: "I'm glad I could battle you today!" - }, - "defeat": { - 1: "That's a great way for me to feel my own growth!" - } - }, - "bea": { - "encounter": { - 1: `Do you have an unshakable spirit that won't be moved, no matter how you are attacked? - $I think I'll just test that out, shall I?`, - }, - "victory": { - 1: "I felt the fighting spirit of your Pokémon as you led them in battle." - }, - "defeat": { - 1: "That was the best sort of match anyone could ever hope for." - } - }, - "opal": { - "encounter": { - 1: "Let me have a look at how you and your partner Pokémon behave!" - }, - "victory": { - 1: "Your pink is still lacking, but you're an excellent Trainer with excellent Pokémon." - }, - "defeat": { - 1: "Too bad for you, I guess." - } - }, - "bede": { - "encounter": { - 1: "I suppose I should prove beyond doubt just how pathetic you are and how strong I am." - }, - "victory": { - 1: "I see… Well, that's fine. I wasn't really trying all that hard anyway." - }, - "defeat": { - 1: "Not a bad job, I suppose." - } - }, - "gordie": { - "encounter": { - 1: "So, let's get this over with." - }, - "victory": { - 1: "I just want to climb into a hole… Well, I guess it'd be more like falling from here." - }, - "defeat": { - 1: "Battle like you always do, victory will follow!" - } - }, - "marnie": { - "encounter": { - 1: `The truth is, when all's said and done… I really just wanna become Champion for myself! - $So don't take it personal when I kick your butt!`, - }, - "victory": { - 1: "OK, so I lost… But I got to see a lot of the good points of you and your Pokémon!" - }, - "defeat": { - 1: "Hope you enjoyed our battle tactics." - } - }, - "raihan": { - "encounter": { - 1: "I'm going to defeat the Champion, win the whole tournament, and prove to the world just how strong the great Raihan really is!" - }, - "victory": { - 1: `I look this good even when I lose. - $It's a real curse. - $Guess it's time for another selfie!`, - }, - "defeat": { - 1: "Let's take a selfie to remember this." - } - }, - "brassius": { - "encounter": { - 1: "I assume you are ready? Let our collaborative work of art begin!" - }, - "victory": { - 1: "Ahhh…vant-garde!" - }, - "defeat": { - 1: "I will begin on a new piece at once!" - } - }, - "iono": { - "encounter": { - 1: `How're ya feelin' about this battle? - $... - $Let's get this show on the road! How strong is our challenger? - $I 'unno! Let's find out together!`, - }, - "victory": { - 1: "You're as flashy and bright as a 10,000,000-volt Thunderbolt, friendo!" - }, - "defeat": { - 1: "Your eyeballs are MINE!" - } - }, - "larry": { - "encounter": { - 1: "When all's said and done, simplicity is strongest." - }, - "victory": { - 1: "A serving of defeat, huh?" - }, - "defeat": { - 1: "I'll call it a day." - } - }, - "ryme": { - "encounter": { - 1: "Come on, baby! Rattle me down to the bone!" - }, - "victory": { - 1: "You're cool, my friend—you move my SOUL!" - }, - "defeat": { - 1: "Later, baby!" - } - }, - "grusha": { - "encounter": { - 1: "All I need to do is make sure the power of my Pokémon chills you to the bone!" - }, - "victory": { - 1: "Your burning passion… I kinda like it, to be honest." - }, - "defeat": { - 1: "Things didn't heat up for you." - } - }, - "marnie_elite": { - "encounter": { - 1: "You've made it this far, huh? Let's see if you can handle my Pokémon!", - 2: "I'll give it my best shot, but don't think I'll go easy on you!" - }, - "victory": { - 1: "I can't believe I lost... But you deserved that win. Well done!", - 2: "Looks like I've still got a lot to learn. Great battle, though!" - }, - "defeat": { - 1: "You put up a good fight, but I've got the edge! Better luck next time!", - 2: "Seems like my training's paid off. Thanks for the battle!" - } - }, - "nessa_elite": { - "encounter": { - 1: "The tides are turning in my favor. Ready to get swept away?", - 2: "Let's make some waves with this battle! I hope you're prepared!" - }, - "victory": { - 1: "You navigated those waters perfectly... Well done!", - 2: "Looks like my currents were no match for you. Great job!" - }, - "defeat": { - 1: "Water always finds a way. That was a refreshing battle!", - 2: "You fought well, but the ocean's power is unstoppable!" - } - }, - "bea_elite": { - "encounter": { - 1: "Prepare yourself! My fighting spirit burns bright!", - 2: "Let's see if you can keep up with my relentless pace!" - }, - "victory": { - 1: "Your strength... It's impressive. You truly deserve this win.", - 2: "I've never felt this intensity before. Amazing job!" - }, - "defeat": { - 1: "Another victory for my intense training regimen! Well done!", - 2: "You've got strength, but I trained harder. Great battle!" - } - }, - "allister_elite": { - "encounter": { - 1: "Shadows fall... Are you ready to face your fears?", - 2: "Let's see if you can handle the darkness that I command." - }, - "victory": { - 1: "You've dispelled the shadows... For now. Well done.", - 2: "Your light pierced through my darkness. Great job." - }, - "defeat": { - 1: "The shadows have spoken... Your strength isn't enough.", - 2: "Darkness triumphs... Maybe next time you'll see the light." - } - }, - "raihan_elite": { - "encounter": { - 1: "Storm's brewing! Let's see if you can weather this fight!", - 2: "Get ready to face the eye of the storm!" - }, - "victory": { - 1: "You've bested the storm... Incredible job!", - 2: "You rode the winds perfectly... Great battle!" - }, - "defeat": { - 1: "Another storm weathered, another victory claimed! Well fought!", - 2: "You got caught in my storm! Better luck next time!" - } - }, - "alder": { - "encounter": { - 1: "Prépare-toi pour un combat contre le meilleur Dresseur d’Unys !", - }, - "victory": { - 1: "Bien joué ! Tu as sans aucun doute un talent inégalé.", - }, - "defeat": { - 1: `Une brise fraiche traverse mon cœur… - $Quel effort extraordinaire !`, - } - }, - "kieran": { - "encounter": { - 1: `Grâce à un travail acharné, je deviens de plus en plus fort ! - $Je ne perdrai pas.`, - }, - "victory": { - 1: `Je n’y crois pas… - $Quel combat amusant et palpitant !` - }, - "defeat": { - 1: `Eh beh, quel combat ! - $Il est temps pour toi de t’entrainer encore plus dur.`, - } - }, - "rival": { - "encounter": { - 1: `@c{smile}Ah, je te cherchais ! Je savais que t’étais pressé de partir, mais je m’attendais quand même à un au revoir… - $@c{smile_eclosed}T’as finalement décidé de réaliser ton rêve ?\nJ’ai peine à y croire. - $@c{serious_smile_fists}Vu que t’es là, ça te dis un petit combat ?\nJe voudrais quand même m’assurer que t’es prêt. - $@c{serious_mopen_fists}Surtout ne te retiens pas et donne-moi tout ce que t’as !` - }, - "victory": { - 1: `@c{shock}Wah… Tu m’as vraiment lavé.\nT’es vraiment un débutant ? - $@c{smile}T’as peut-être eu de la chance, mais…\nPeut-être que t’arriveras jusqu’au bout du chemin. - $D’ailleurs, le prof m’a demandé de te filer ces objets.\nIls ont l’air sympas. - $@c{serious_smile_fists}Bonne chance à toi ! - $@c{smile}Oh, et profite bien de l’évènement !` - }, - }, - "rival_female": { - "encounter": { - 1: `@c{smile_wave}Ah, je te cherchais ! Je t’ai cherché partout !\n@c{angry_mopen}On oublie de dire au revoir à sa meilleure amie ? - $@c{smile_ehalf}T’as décidé de réaliser ton rêve, hein ?\nCe jour est donc vraiment arrivé… - $@c{smile}Je veux bien te pardonner de m’avoir oubliée,\nà une conditon. @c{smile_wave_wink}Que tu m’affronte ! - $@c{angry_mopen}Donne tout ! Ce serait dommage que ton aventure finisse avant d’avoir commencé, hein ?` - }, - "victory": { - 1: `@c{shock}Tu viens de commencer et t’es déjà si fort ?!@d{96}\n@c{angry}T’as triché non ? Avoue ! - $@c{smile_wave_wink}J’déconne !@d{64} @c{smile_eclosed}J’ai perdu dans les règles…\nJ’ai le sentiment que tu vas très bien t’en sortir. - $@c{smile}D’ailleurs, le prof veut que je te donne ces quelques objets. Ils te seront utiles, pour sûr ! - $@c{smile_wave}Fais de ton mieux, comme toujours !\nJe crois fort en toi ! - $@c{smile}Oh, et profite bien de l’évènement !` - }, - }, - "rival_2": { - "encounter": { - 1: `@c{smile}Hé, toi aussi t’es là ?\n@c{smile_eclosed}Toujours invaincu, hein… ? - $@c{serious_mopen_fists}Je sais que j’ai l’air de t’avoir suivi ici, mais c’est pas complètement vrai. - $@c{serious_smile_fists}Pour être honnête, ça me démangeait d’avoir une revanche depuis que tu m’as battu. - $Je me suis beaucoup entrainé, alors sois sure que je vais pas retenir mes coups cette fois. - $@c{serious_mopen_fists}Et comme la dernière fois, ne te retiens pas !\nC’est parti !` - }, - "victory": { - 1: `@c{neutral_eclosed}Oh. Je crois que j’ai trop pris la confiance. - $@c{smile}Pas grave, c’est OK. Je me doutais que ça arriverait.\n@c{serious_mopen_fists}Je vais juste devoir encore plus m’entrainer !\n - $@c{smile}Ah, et pas que t’aies réellement besoin d’aide, mais j’ai ça en trop sur moi qui pourrait t’intéresser.\n - $@c{serious_smile_fists}Mais n’espère plus en avoir d’autres !\nJe peux pas passer mon temps à aider mon adversaire. - $@c{smile}Bref, prends soin de toi et profite bien de l’évènement !` - }, - }, - "rival_2_female": { - "encounter": { - 1: `@c{smile_wave}Hé, sympa de te croiser ici. T’as toujours l’air invaincu. @c{angry_mopen}Eh… Pas mal ! - $@c{angry_mopen}Je sais à quoi tu penses et non, je t’espionne pas.\n@c{smile_eclosed}C’est juste que j’étais aussi dans le coin. - $@c{smile_ehalf}Heureuse pour toi, mais je veux juste te rappeler que c’est pas grave de perdre parfois. - $@c{smile}On apprend de nos erreurs, souvent plus que si on ne connaissait que le succès. - $@c{angry_mopen}Dans tous les cas je me suis bien entrainée pour cette revanche, t’as intérêt à tout donner !` - }, - "victory": { - 1: `@c{neutral}Je… J’étais pas encore supposée perdre… - $@c{smile}Bon. Ça veut juste dire que je vais devoir encore plus m’entrainer ! - $@c{smile_wave}J’ai aussi ça en rab pour toi !\n@c{smile_wave_wink}Inutile de me remercier ~. - $@c{angry_mopen}C’étaient les derniers, terminé les cadeaux après ceux-là ! - $@c{smile_wave}Allez, tiens le coup et profite bien de l’évènement !` - }, - "defeat": { - 1: "Je suppose que c’est parfois normal de perdre…" - } - }, - "rival_3": { - "encounter": { - 1: `@c{smile}Hé, mais qui voilà ! Ça fait un bail.\n@c{neutral}T’es… toujours invaincu ? Incroyable. - $@c{neutral_eclosed}Tout est devenu un peu… étrange.\nC’est plus pareil sans toi au village. - $@c{serious}Je sais que c’est égoïste, mais j’ai besoin d’expier ça.\n@c{neutral_eclosed}Je crois que tout ça te dépasse. - $@c{serious}Ne jamais perdre, c’est juste irréaliste.\nGrandir, c’est parfois aussi savoir perdre. - $@c{neutral_eclosed}T’as un beau parcours, mais il y a encore tellement à venir et ça va pas s’arranger. @c{neutral}T’es prêt pour ça ? - $@c{serious_mopen_fists}Si tu l’es, alors prouve-le.` - }, - "victory": { - 1: "@c{angry_mhalf}C’est lunaire… J’ai presque fait que m’entrainer…\nAlors pourquoi il y a encore un tel écart entre nous ?" - }, - }, - "rival_3_female": { - "encounter": { - 1: `@c{smile_wave}Ça fait une éternité ! Toujours debout hein ?\n@c{angry}Tu commences à me pousser à bout là. @c{smile_wave_wink}T’inquiètes j’déconne ! - $@c{smile_ehalf}Mais en vrai, ta maison te manque pas ? Ou… Moi ?\nJ… Je veux dire… Tu me manques vraiment beaucoup. - $@c{smile_eclosed}Je te soutiendrai toujours dans tes ambitions, mais la vérité est que tu finiras par perdre un jour ou l’autre. - $@c{smile}Quand ça arrivera, je serai là pour toi, comme toujours.\n@c{angry_mopen}Maintenant, montre-moi à quel point t’es devenu fort !` - }, - "victory": { - 1: "@c{shock}Après tout ça… Ça te suffit toujours pas… ?\nTu reviendras jamais à ce rythme…" - - }, - "defeat": { - 1: "T’as fait de ton mieux.\nAllez, rentrons à la maison." - } - }, - "rival_4": { - "encounter": { - 1: `@c{neutral}Hé. - $Je vais pas y aller par quatre chemins avec toi.\n@c{neutral_eclosed}Je suis là pour gagner. Simple, basique. - $@c{serious_mhalf_fists}J’ai appris à maximiser tout mon potentiel en m’entrainant d’arrachepied. - $@c{smile}C’est fou tout le temps que tu peux te dégager si tu dors pas en sacrifiant ta vie sociale. - $@c{serious_mopen_fists}Plus rien n’a d’importance désormais, pas tant que j’aurai pas gagné. - $@c{neutral_eclosed}J’ai atteint un stade où je ne peux plus perdre.\n@c{smile_eclosed}Je présume que ta philosophie était pas si fausse finalement. - $@c{angry_mhalf}La défaite, c’est pour les faibles, et je ne suis plus un faible. - $@c{serious_mopen_fists}Tiens-toi prêt.` - }, - "victory": { - 1: "@c{neutral}Que…@d{64} Qui es-tu ?" - }, - }, - "rival_4_female": { - "encounter": { - 1: `@c{neutral}C’est moi ! Tu m’as pas encore oubliée… n’est-ce pas ? - $@c{smile}Tu devrais être fier d’être arrivé aussi loin. GG !\nMais c’est certainement pas la fin de ton aventure. - $@c{smile_eclosed}T’as éveillé en moi quelque chose que j’ignorais.\nTout mon temps passe dans l’entrainement. - $@c{smile_ehalf}Je dors et je mange à peine, je m’entraine juste tous les jours, et deviens de plus en plus forte. - $@c{neutral}En vrai, Je… J’ai de la peine à me reconnaitre. - $Mais maintenant, je suis au top de mes capacités.\nJe doute que tu sois de nouveau capable de me battre. - $Et tu sais quoi ? Tout ça, c’est de ta faute.\n@c{smile_ehalf}Et j’ignore si je dois te remercier ou te haïr. - $@c{angry_mopen}Tiens-toi prêt.` - }, - "victory": { - 1: "@c{neutral}Que…@d{64} Qui es-tu ?" - - }, - "defeat": { - 1: "$@c{smile}Tu devrais être fier d’être arrivé jusque là." - } - }, - "rival_5": { - "encounter": { - 1: "@c{neutral}…" - }, - "victory": { - 1: "@c{neutral}…" - }, - }, - "rival_5_female": { - "encounter": { - 1: "@c{neutral}…" - }, - "victory": { - 1: "@c{neutral}…" - - }, - "defeat": { - 1: "$@c{smile_ehalf}…" - } - }, - "rival_6": { - "encounter": { - 1: `@c{smile_eclosed}Nous y revoilà. - $@c{neutral}J’ai eu du temps pour réfléchir à tout ça.\nIl y a une raison à pourquoi tout semble étrange. - $@c{neutral_eclosed}Ton rêve, ma volonté de te battre…\nFont partie de quelque chose de plus grand. - $@c{serious}C’est même pas à propos de moi, ni de toi… Mais du monde, @c{serious_mhalf_fists}et te repousser dans tes limites est ma mission. - $@c{neutral_eclosed}J’ignore si je serai capable de l’accomplir, mais je ferai tout ce qui est en mon pouvoir. - $@c{neutral}Cet endroit est terrifiant… Et pourtant il m’a l’air familier, comme si j’y avais déjà mis les pieds. - $@c{serious_mhalf_fists}Tu ressens la même chose, pas vrai ? - $@c{serious}… et c’est comme si quelque chose ici me parlait. - $Comme si c’était tout ce que ce monde avait toujours connu. - $Ces précieux moments ensemble semblent si proches ne sont rien de plus qu’un lointain souvenir. - $@c{neutral_eclosed}D’ailleurs, qui peut dire aujourd’hui qu’ils ont pu être réels ? - $@c{serious_mopen_fists}Il faut que tu persévères. Si tu t’arrêtes, ça n’aura jamais de fin et t’es le seul à en être capable. - $@c{serious_smile_fists}Difficile de comprendre le sens de tout ça, je sais juste que c’est la réalité. - $@c{serious_mopen_fists}Si tu ne parviens pas à me battre ici et maintenant, tu n’as aucune chance.` - }, - "victory": { - 1: `@c{smile_eclosed}J’ai fait ce que j’avais à faire. - $Promets-moi juste une chose.\n@c{smile}Après avoir réparé ce monde… Rentre à la maison.` - }, - }, - "rival_6_female": { - "encounter": { - 1: `@c{smile_ehalf}C’est donc encore entre toi et moi. - $@c{smile_eclosed}Tu sais, j’ai beau retouner ça dans tous les sens… - $@c{smile_ehalf}Quelque chose peut expliquer tout ça, pourquoi tout semble si étrange… - $@c{smile}T’as tes rêves, j’ai mes ambitions… - $J’ai juste le sentiment qu’il y a un grand dessein derrière tout ça, derrière ce qu’on fait toi et moi. - $@c{smile_eclosed}Je crois que mon but est de… repousser tes limites. - $@c{smile_ehalf}Je suis pas certaine de bien être douée à cet exercice, mais je fais de mon mieux. - $Cet endroit épouvantable cache quelque chose d’étrange… Tout semble si limpide… - $Comme… si c’était tout ce que ce monde avait toujours connu. - $@c{smile_eclosed}J’ai le sentiment que nos précieux moments ensemble sont devenus si flous. - $@c{smile_ehalf}Ont-ils au moins été réels ? Tout semble si loin maintenant… - $@c{angry_mopen}Il faut que tu persévères. Si tu t’arrêtes, ça n’aura jamais de fin et t’es le seul à en être capable. - $@c{smile_ehalf}Je… j’ignore le sens de tout ça… Mais je sais que c’est la réalité. - $@c{neutral}Si tu ne parviens pas à me battre ici et maintenant, tu n’as aucune chance.` - }, - "victory": { - 1: `@c{smile_ehalf}Je… Je crois que j’ai rempli ma mission… - $@c{smile_eclosed}Promets-moi… Après avoir réparé ce monde… Reviens à la maison sain et sauf. - $@c{smile_ehalf}… Merci.` - - }, - }, -}; - - -// Dialogue of the NPCs in the game when the player character is female. For languages that do not have gendered pronouns, this can be set to PGMdialogue. -export const PGFdialogue: DialogueTranslationEntries = { - "youngster": { - "encounter": { - 1: "Hé ! Combat ?", - 2: "Toi aussi tu débutes ?", - 3: "Hé, j’me souviens pas de ta tête. Combat !", - 4: "J’ai perdu, alors j’essaye de capturer d’autres Pokémon.\nHé, t’as l’air faible toi ! Allez, combat !", - 5: "On s’connait ? J’ai comme un doute. Dans tous les cas, sympa de te rencontrer !", - 6: "Allez, c’est parti !", - 7: "Attention, me voilà !\nTu vas voir comment j’suis fort !", - 8: "Coucou… Tu veux voir mes bô Pokémon ?", - 9: "Trève de mondanités. Ramène-toi quand tu le sens !", - 10: "Baisse pas ta garde si tu veux pas pleurer d’avoir perdu face à un gamin.", - 11: "J’ai tout donné pour élever mes Pokémon. Attention à toi si tu leur fait du mal !", - 12: "Incroyable que t’y sois parvenue ! Mais la suite va pas être une partie de plaisir.", - 13: "Les combats sont éternels ! Bienvenue dans un monde sans fin !" - }, - "victory": { - 1: "Hé, mais t’es trop forte !", - 2: "En vrai j’avais aucune chance hein ?", - 3: "J’te retrouverai un jour, et là j’te battrai !", - 4: "Arg… J’ai plus aucun Pokémon.", - 5: "Non… IMPOSSIBLE ! Pourquoi j’ai encore perdu…", - 6: "Non ! J’ai perdu !", - 7: "Waah ! T’es trop incroyable ! J’suis bouche bée !", - 8: "Pourquoi… Comment… Pourtant on est les plus forts, mes Pokémon et moi…", - 9: "J’perdrai pas la prochaine fois ! Remettons ça un jour !", - 10: "Weeeesh ! Tu vois que j’suis qu’un gamin ? C’est pas juste de me bully comme ça !", - 11: "Tes Pokémon sont trop incroyables !\n… P’tit échange ?", - 12: "Je me suis fait un peu aider plus tôt, mais de quel taf je parlais ?", - 13: "Ahaha ! Et voilà, ça y est !\nT’es déjà comme chez toi dans ce monde !" - } - }, - "lass": { - "encounter": { - 1: "Affrontons-nous, d’accord ?", - 2: "T’as l’air d’une nouvelle Dresseuse. Battons nous !", - 3: "Je te connais pas. Ça te dis de te battre ?", - 4: "Prenons du bon temps avec ce combat Pokémon !", - 5: "Je vais t’apprendre à te battre avec tes Pokémon !", - 6: "Un combat doit être pris au sérieux. T’es prête à te battre ?", - 7: "Tu seras pas jeune éternellement. T’as qu’une chance pendant un combat. Bientôt, tu seras plus qu’un souvenir.", - 8: "Tu ferais mieux d’y aller doucement avec moi. Mais je vais me battre sérieusement !", - 9: "Je m’ennuie à l’école. Y’a rien à y faire. *Baille*\nJe me bats juste pour passer le temps." - }, - "victory": { - 1: "Wah, c’était impressionnant ! J’ai encore beaucoup à apprendre.", - 2: "Je pensais pas que je perdrais comme ça…", - 3: "J’espère que j’aurai ma revanche un jour.", - 4: "C’était super amusant ! Mais ce combat m’a épuisée…", - 5: "Tu m’as appris une belle leçon ! T’es vraiment incroyable !", - 6: "Vraiment ? J’ai perdu… ? C’est des choses qui arrivent, ça me déprime mais t’es vraiment très cool.", - 7: "J’ai pas besoin de ce genre de souvenirs.\n*Suppression de mémoire en cours…*", - 8: "Hé ! Je t’avais dit d’y aller doucement avec moi ! Mais t’es vraiment si cool quand tu te bats sérieusement…", - 9: "J’en ai marre des combats Pokémon…\nJe vais chercher d’autres trucs à faire…" - } - }, - "breeder": { - "encounter": { - 1: "Qu’ils soient obéissants ou égoïstes… Les Pokémon ont des caractéristiques uniques.", - 2: "Même si mes choix et ma personnalité ne sont pas fous, je pense quand même bien avoir élevé mes Pokémon.", - 3: "Hum, t’es pas trop laxiste avec tes Pokémon ?\nTrop les chouchouter n’est pas bon.", - }, - "victory": { - 1: "Il est primordial de nourir et développer toutes les caractéristiques de chaque Pokémon.", - 2: "Contrairement à moi, ces Pokémon ont un bon fond.", - 3: "Trop d’éloges peut ruiner les Pokémon et les gens.", - }, - "defeat": { - 1: "Tu ne devrais pas t’énerver sur tes Pokémon, même après une défaite.", - 2: "Alors ? Pas mal mes Pokémon, hein ? Je suis fait pour ça.", - 3: "Peut importe à quel point t’aimes tes Pokémon, il faut toujours de la discipline s’ils se comportent mal." - } - }, - "breeder_female": { - "encounter": { - 1: "Les Pokémon ne trahissent jamais. Ils te rendront toujours l’amour que tu leur donne.", - 2: "Puis-je te donner une astuce pour mieux élever tes Pokémon ?", - 3: "J’ai élevé mes Pokémon en utilisant une méthode très spéciale." - }, - "victory": { - 1: "Arg… C’était pas supposé se passer comme ça. Leur ai-je administré la mauvaise préparation ?", - 2: "Comment ça a pu arriver…\nAvec quoi nourris-tu tes Pokémon ?", - 3: "Si je perds, c’est juste pour te dire que je tuais le temps. Mon ego n’est absolument pas touché…" - }, - "defeat": { - 1: "C’est la preuve que mes Pokémon reconnaissent tout mon amour.", - 2: "Le seul secret derrière des Pokémon bien entrainés, c’est surtout d’en capturer des bons.", - 3: "La force des Pokémon dépend de ta capacité à savoir les élever correctement." - } - }, - "fisherman": { - "encounter": { - 1: "Aaah non ! J’avais une touche !\nTu comptes faire quoi pour arranger ça ?", - 2: "Bouge de là ! Tu fais peur aux Pokémon !", - 3: "Voyons si t’arrives à ferrer une victoire !", - }, - "victory": { - 1: "Vas-y là, oublie.", - 2: "La prochaine fois, je vais me repêcher !", - 3: "Je présume que j’ai sous-estimé les courants…", - }, - }, - "fisherman_female": { - "encounter": { - 1: "Oh la belle prise !", - 2: "Ma ligne est en place, prête à ferrer le succès !", - 3: "Prête à faire des vagues !" - }, - "victory": { - 1: "Je suppose que je vais avoir besoin d’un plus gros hameçon.", - 2: "La ligne s’est brisée, j’ai pas pu la ferrer…", - 3: "Attends que j’aiguise mes hameçons pour la revanche !" - }, - }, - "swimmer": { - "encounter": { - 1: "C’est l’heure de plonger dans le vif !", - 2: "C’est le moment de surfer sur les vagues de la victoire !", - 3: "Je vais t’éclabousser de mon talent !", - }, - "victory": { - 1: "Tu m’as complètement séché", - 2: "Il semblerait que ce soit celles de la défaite…", - 3: "Retour sur la terre ferme je suppose", - }, - }, - "backpacker": { - "encounter": { - 1: "Fais ton sac, on y va !", - 2: "Voyons si t’arrives à garder le rythme !", - 3: "Accélère le pas, camarade !", - 4: "J’ai passé 20 ans à la recherche de moi-même…\nMais où suis-je ?" - }, - "victory": { - 1: "J’ai trébuché !", - 2: "Ah, je crois que je me suis paumé.", - 3: "Ah, une impasse !", - 4: "Hé ! Attends une seconde…\nTu saurais pas qui je suis ?" - }, - }, - "ace_trainer": { - "encounter": { - 1: "T’as l’air plutôt confiante.", - 2: "Tes Pokémon… Montre-les-moi…", - 3: "Les gens pensent que je suis fort par que je suis un Topdresseur.", - 4: "T’es au courant de ce que ça signifie d’être un Topdresseur ?" - }, - "victory": { - 1: "Très bien… T’as de bons Pokémon…", - 2: "Quoi ?! Mais c'est moi le génie des combats !", - 3: "Évidemment que t’es le personnage principal !", - 4: "OK ! OK ! Tu pourrais être une Topdresseuse !" - }, - "defeat": { - 1: "Je me dévoue corps et âme aux combats Pokémon !", - 2: "Comme prévu… Vraiment aucune surprise…", - 3: "Et moi qui pensais qu’en grandissant, j’allais rester frêle et fragile, à me briser à la moindre étreinte.", - 4: "Évidemment que je suis fort et encore moins un perdant. C’est important de gagner avec grâce." - } - }, - "parasol_lady": { - "encounter": { - 1: "Honorons ce terrain de combat avec élégance et équilibre !", - }, - "victory": { - 2: "Mon élégance demeure inébranlable !", - } - }, - "twins": { - "encounter": { - 1: "Get ready, because when we team up, it's double the trouble!", - 2: "Two hearts, one strategy – let's see if you can keep up with our twin power!", - 3: "Hope you're ready for double trouble, because we're about to bring the heat!" - }, - "victory": { - 1: "We may have lost this round, but our bond remains unbreakable!", - 2: "Our twin spirit won't be dimmed for long.", - 3: "We'll come back stronger as a dynamic duo!" - }, - "defeat": { - 1: "Twin power reigns supreme!", - 2: "Two hearts, one triumph!", - 3: "Double the smiles, double the victory dance!" - } - }, - "cyclist": { - "encounter": { - 1: "Get ready to eat my dust!", - 2: "Gear up, challenger! I'm about to leave you in the dust!", - 3: "Pedal to the metal, let's see if you can keep pace!" - }, - "victory": { - 1: "Spokes may be still, but determination pedals on.", - 2: "Outpaced!", - 3: "The road to victory has many twists and turns yet to explore." - }, - }, - "black_belt": { - "encounter": { - 1: "I praise your courage in challenging me! For I am the one with the strongest kick!", - 2: "Oh, I see. Would you like to be cut to pieces? Or do you prefer the role of punching bag?" - }, - "victory": { - 1: "Oh. The Pokémon did the fighting. My strong kick didn't help a bit.", - 2: "Hmmm… If I was going to lose anyway, I was hoping to get totally messed up in the process." - }, - }, - "battle_girl": { - "encounter": { - 1: "You don't have to try to impress me. You can lose against me.", - }, - "victory": { - 1: "It's hard to say good-bye, but we are running out of time…", - }, - }, - "hiker": { - "encounter": { - 1: "My middle-age spread has given me as much gravitas as the mountains I hike!", - 2: "I inherited this big-boned body from my parents… I'm like a living mountain range…", - }, - "victory": { - 1: "At least I cannot lose when it comes to BMI!", - 2: "It's not enough… It's never enough. My bad cholesterol isn't high enough…" - }, - }, - "ranger": { - "encounter": { - 1: "When I am surrounded by nature, most other things cease to matter.", - 2: "When I'm living without nature in my life, sometimes I'll suddenly feel an anxiety attack coming on." - }, - "victory": { - 1: "It doesn't matter to the vastness of nature whether I win or lose…", - 2: "Something like this is pretty trivial compared to the stifling feelings of city life." - }, - "defeat": { - 1: "I won the battle. But victory is nothing compared to the vastness of nature…", - 2: "I'm sure how you feel is not so bad if you compare it to my anxiety attacks…" - } - }, - "scientist": { - "encounter": { - 1: "My research will lead this world to peace and joy.", - }, - "victory": { - 1: "I am a genius… I am not supposed to lose against someone like you…", - }, - }, - "school_kid": { - "encounter": { - 1: "…Heehee. I'm confident in my calculations and analysis.", - 2: "I'm gaining as much experience as I can because I want to be a Gym Leader someday." - }, - "victory": { - 1: "Ohhhh… Calculation and analysis are perhaps no match for chance…", - 2: "Even difficult, trying experiences have their purpose, I suppose." - } - }, - "artist": { - "encounter": { - 1: "I used to be popular, but now I am all washed up.", - }, - "victory": { - 1: "As times change, values also change. I realized that too late.", - }, - }, - "guitarist": { - "encounter": { - 1: "Get ready to feel the rhythm of defeat as I strum my way to victory!", - }, - "victory": { - 1: "Silenced for now, but my melody of resilience will play on.", - }, - }, - "worker": { - "encounter": { - 1: "It bothers me that people always misunderstand me. I'm a lot more pure than everyone thinks.", - }, - "victory": { - 1: "I really don't want my skin to burn, so I want to stay in the shade while I work.", - }, - }, - "worker_female": { - "encounter": { - 1: `It bothers me that people always misunderstand me. - $I'm a lot more pure than everyone thinks.` - }, - "victory": { - 1: "I really don't want my skin to burn, so I want to stay in the shade while I work." - }, - "defeat": { - 1: "My body and mind aren't necessarily always in sync." - } - }, - "worker_double": { - "encounter": { - 1: "I'll show you we can break you. We've been training in the field!", - }, - "victory": { - 1: "How strange… How could this be… I shouldn't have been outmuscled.", - }, - }, - "hex_maniac": { - "encounter": { - 1: "I normally only ever listen to classical music, but if I lose, I think I shall try a bit of new age!", - 2: "I grow stronger with each tear I cry." - }, - "victory": { - 1: "Is this the dawning of the age of Aquarius?", - 2: "Now I can get even stronger. I grow with every grudge." - }, - "defeat": { - 1: "New age simply refers to twentieth century classical composers, right?", - 2: "Don't get hung up on sadness or frustration. You can use your grudges to motivate yourself." - } - }, - "psychic": { - "encounter": { - 1: "Hi! Focus!", - }, - "victory": { - 1: "Eeeeek!", - }, - }, - "officer": { - "encounter": { - 1: "Brace yourself, because justice is about to be served!", - 2: "Ready to uphold the law and serve justice on the battlefield!" - }, - "victory": { - 1: "The weight of justice feels heavier than ever…", - 2: "The shadows of defeat linger in the precinct." - } - }, - "beauty": { - "encounter": { - 1: "My last ever battle… That's the way I'd like us to view this match…", - }, - "victory": { - 1: "It's been fun… Let's have another last battle again someday…", - }, - }, - "baker": { - "encounter": { - 1: "Hope you're ready to taste defeat!" - }, - "victory": { - 1: "I'll bake a comeback." - }, - }, - "biker": { - "encounter": { - 1: "Time to rev up and leave you in the dust!" - }, - "victory": { - 1: "I'll tune up for the next race." - }, - }, - "firebreather": { - "encounter": { - 1: "My flames shall devour you!", - 2: "My soul is on fire. I'll show you how hot it burns!", - 3: "Step right up and take a look!" - }, - "victory": { - 1: "I burned down to ashes...", - 2: "Yow! That's hot!", - 3: "Ow! I scorched the tip of my nose!" - }, - }, - "sailor": { - "encounter": { - 1: "Matey, you're walking the plank if you lose!", - 2: "Come on then! My sailor's pride is at stake!", - 3: "Ahoy there! Are you seasick?" - }, - "victory": { - 1: "Argh! Beaten by a kid!", - 2: "Your spirit sank me!", - 3: "I think it's me that's seasick..." - }, - }, - "archer": { - "encounter": { - 1: "Before you go any further, let's see how you far against us, Team Rocket!", - 2: "I have received reports that your skills are not insignificant. Let's see if they are true.", - 3: "I am Archer, an Admin of Team Rocket. And I do not go easy on enemies of our organization." - }, - "victory": { - 1: "What a blunder!", - 2: "With my current skills, I was not up to the task after all.", - 3: "F-forgive me, Giovanni... For me to be defeated by a mere trainer..." - }, - }, - "ariana": { - "encounter": { - 1: `Hold it right there! We can't someone on the loose." - $It's harmful to Team Rocket's pride, you see.`, - 2: `I don't know or care if what I'm doing is right or wrong... - $I just put my faith in Giovanni and do as I am told`, - 3: "Your trip ends here. I'm going to take you down!" - }, - "victory": { - 1: `Tch, you really are strong. It's too bad. - $If you were to join Team Rocket, you could become an Executive.`, - 2: "I... I'm shattered...", - 3: "Aaaieeeee! This can't be happening! I fought hard, but I still lost…" - }, - }, - "proton": { - "encounter": { - 1: "What do you want? If you interrupt our work, don't expect any mercy!", - 2: `What do we have here? I am often labeled as the scariest and cruelest guy in Team Rocket… - $I strongly urge you not to interfere with our business!`, - 3: "I am Proton, an Admin of Team Rocket. I am here to put an end to your meddling!" - }, - "victory": { - 1: "The fortress came down!", - 2: "You may have won this time… But all you did was make Team Rocket's wrath grow…", - 3: "I am defeated… But I will not forget this!" - }, - }, - - "petrel": { - "encounter": { - 1: `Muhahaha, we've been waiting for you. Me? You don't know who I am? It is me, Giovanni. - $The majestic Giovanni himself! Wahahaha! …Huh? I don't sound anything like Giovanni? - $I don't even look like Giovanni? How come? I've worked so hard to mimic him!`, - 2: "I am Petrel, an Admin of Team Rocket. I will not allow you to interfere with our plans!", - 3: "Rocket Executive Petrel will deal with this intruder!" - }, - "victory": { - 1: "OK, OK. I'll tell you where he is.", - 2: "I… I couldn't do a thing… Giovanni, please forgive me…", - 3: "No, I can't let this affect me. I have to inform the others…" - }, - }, - "tabitha": { - "encounter": { - 1: "Hehehe! So you've come all the way here! But you're too late!", - 2: `Hehehe... Got here already, did you? We underestimated you! But this is it! - $I'm a cut above the Grunts you've seen so far. I'm not stalling for time. - $I'm going to pulverize you!`, - 3: "I'm going to give you a little taste of pain! Resign yourself to it!" - }, - "victory": { - 1: `Hehehe! You might have beaten me, but you don't stand a chance against the Boss! - $If you get lost now, you won't have to face a sound whipping!`, - 2: "Hehehe... So, I lost, too...", - 3: "Ahya! How could this be? For an Admin like me to lose to some random trainer..." - }, - }, - "courtney": { - "encounter": { - 1: "The thing...The thing that you hold...That is what... That's what we of Team Magma seek...", - 2: "... Well then...Deleting...", - 3: "...Ha. ...Analyzing... ...Hah♪" - }, - "victory": { - 1: "... ...Change...the world.", - 2: `As anticipated. Unanticipated. You. Target lock...completed. - $Commencing...experiment. You. Forever. Aha... ♪`, - 3: "...Again? That's unanticipated. ...I knew it. You...are interesting! ...Haha. ♪" - }, - }, - "shelly": { - "encounter": { - 1: `Ahahahaha! You're going to meddle in Team Aqua's affairs? - $You're either absolutely fearless, simply ignorant, or both! - $You're so cute, you're disgusting! I'll put you down`, - 2: "What's this? Who's this spoiled brat?", - 3: "Cool your jets. Be patient. I'll crush you shortly." - }, - "victory": { - 1: `Ahahahaha! We got meddled with unexpectedly! We're out of options. - $We'll have to pull out. But this isn't the last you'll see of Team Aqua! - $We have other plans! Don't you forget it!`, - 2: "Ahhh?! Did I go too easy on you?!", - 3: `Uh. Are you telling me you've upped your game even more during the fight? - $You're a brat with a bright future… My Pokémon and I don't have any strength left to fight… - $Go on… Go and be destroyed by Archie.` - }, - }, - "matt": { - "encounter": { - 1: "Hoohahaha! What, you got a screw loose or something? Look at you, little Makuhita person!", - 2: "Oho! You! You're that funny kid!", - 3: "What are you doing here? Did you follow us?" - }, - "victory": { - 1: "All right then, until the Boss has time for you, I'll be your opponent!", - 2: `I can feel it! I can feel it, all right! The strength coming offa you! - $More! I still want more! But looks like we're outta time...`, - 3: "That was fun! I knew you'd show me a good time! I look forward to facing you again someday!" - }, - }, - "mars": { - "encounter": { - 1: "I'm Mars, one of Team Galactic's top Commanders.", - 2: "Team Galactic's vision for the future is unwavering. Opposition will be crushed without mercy!", - 3: "Feeling nervous? You should be!" - }, - "victory": { - 1: "This can't be happening! How did I lose?!", - 2: "You have some skill, I'll give you that.", - 3: "Defeated... This was a costly mistake." - } - }, - "jupiter": { - "encounter": { - 1: "Jupiter, Commander of Team Galactic, at your service.", - 2: "Resistance is futile. Team Galactic will prevail!", - 3: "You're trembling... scared already?" - }, - "victory": { - 1: "No way... I lost?!", - 2: "Impressive, you've got guts!", - 3: "Losing like this... How embarrassing." - } - }, - "saturn": { - "encounter": { - 1: "I am Saturn, Commander of Team Galactic.", - 2: "Our mission is absolute. Any hindrance will be obliterated!", - 3: "Is that fear I see in your eyes?" - }, - "victory": { - 1: "Impossible... Defeated by you?!", - 2: "You have proven yourself a worthy adversary.", - 3: "Bestowed in defeat... This is unacceptable." - }}, - "zinzolin": { - "encounter": { - 1: "You could become a threat to Team Plasma, so we will eliminate you here and now!", - 2: "Oh, for crying out loud... I didn't expect to have to battle in this freezing cold!", - 3: "You're an impressive Trainer to have made it this far. But it ends here." - }, - "victory": { - 1: "Ghetsis... I have failed you...", - 2: "It's bitter cold. I'm shivering. I'm suffering. Yet, I still stand victorious.", - 3: "Hmph. You're a smarter Trainer than I expected, but not smart enough." - } - }, - "rood": { - "encounter": { - 1: "You are a threat to Team Plasma. We cannot let you walk away from here and now!", - 2: "Oh, this icy wind... I never thought I'd have to fight here!", - 3: "You are a remarkable Trainer to have made it this far. But this is where it ends." - }, - "victory": { - 1: "Ghetsis... I have failed my mission...", - 2: "The cold is piercing. I'm shivering. I'm suffering. Yet, I have triumphed.", - 3: "Hm. You are a talented Trainer, but unfortunately not talented enough." - } - }, - "xerosic": { - "encounter": { - 1: "Ah ha ha! It would be my pleasure. Come on, little Trainer! Let's see what you've got!", - 2: "Hmm... You're more powerful than you look. I wonder how much energy there is inside you.", - 3: "I've been waiting for you! I need to do a little research on you! Come, let us begin!" - }, - "victory": { - 1: "Ah, you're quite strong. Oh yes—very strong, indeed.", - 2: "Ding-ding-ding! You did it! To the victor go the spoils!", - 3: "Wonderful! Amazing! You have tremendous skill and bravery!" - } - }, - "bryony": { - "encounter": { - 1: "I am Bryony, and it would be my pleasure to battle you. Show me what you've got.", - 2: "Impressive... You're more powerful than you appear. Let's see the true extent of your energy.", - 3: "I've anticipated your arrival. It's time for a little test. Shall we begin?" - }, - "victory": { - 1: "You're quite strong. Oh yes—very strong, indeed.", - 2: "Ding-ding-ding! You've done well. Victory is yours.", - 3: "Wonderful! Remarkable! Your skill and bravery are commendable." - } - }, - "rocket_grunt": { - "encounter": { - 1: "Nous sommes de retour !" - }, - "victory": { - 1: "Une fois de plus la Team Rocket s’envole vers d’autres cieux !" - }, - }, - "magma_grunt": { - "encounter": { - 1: "N’espère pas recevoir de la pitié si tu te mets sur le chemin de la Team Magma !" - }, - "victory": { - 1: "Je…?\nJ’ai perdu ?!" - }, - }, - "aqua_grunt": { - "encounter": { - 1: "Aucune pitié si tu te mets sur le chemin de la Team Aqua, même pour une gamine !" - }, - "victory": { - 1: "Comment ça ?" - }, - }, - "galactic_grunt": { - "encounter": { - 1: "Ne te mets pas en travers de la Team Galaxie !" - }, - "victory": { - 1: "Désactivation…" - }, - }, - "plasma_grunt": { - "encounter": { - 1: "Pas de quatiers à ceux qui ne suivent pas notre idéal !" - }, - "victory": { - 1: "Plasmaaaaaaaaa !" - }, - }, - "flare_grunt": { - "encounter": { - 1: "Le style et le bon gout, il n’y a que ça qui compte !" - }, - "victory": { - 1: "Mon futur me semble guère radieux." - }, - }, - "rocket_boss_giovanni_1": { - "encounter": { - 1: "Bien. Je dois admettre que je suis impressionné de te voir ici !" - }, - "victory": { - 1: "QUOI ? IMPOSSIBLE !" - }, - "defeat": { - 1: "Retiens bien. Ton incapacité à évaluer ta propre force est\nla démonstration claire que tu n'es encore qu’une gamine." - } - }, - "rocket_boss_giovanni_2": { - "encounter": { - 1: "Mes anciens collaborateurs m’attendent.\nComptes-tu m’en empêcher ?" - }, - "victory": { - 1: "Comment c’est possible… ? Le grand dessein de la Team Rocket n’est plus qu’une illusion…" - }, - "defeat": { - 1: "La Team Rocket renaitra, et je dominerai le monde !" - } - }, - "magma_boss_maxie_1": { - "encounter": { - 1: "Je vais t’enterrer de mes propres mains.\nJ’espère que t’apprécieras cet honneur !" - }, - "victory": { - 1: "Gnn… ! Tu… T’as du répondant…\nCe sentiment d’être à la traine, de si peu…" - }, - "defeat": { - 1: "La Team Magma vaincra !" - } - }, - "magma_boss_maxie_2": { - "encounter": { - 1: "T’es le dernier rempart entravant mes objectifs.\nPrépare-toi à mon ultime riposte ! Hahahaha !" - }, - "victory": { - 1: "Ce… Ce n’est pas… Gnn…" - }, - "defeat": { - 1: "L’heure est venue…\nJe vais transformer cette planète en paradis pour l’humanité." - } - }, - "aqua_boss_archie_1": { - "encounter": { - 1: "Je suis le Leader de la Team Aqua.\nJ’ai bien peur que pour toi, ce soit fin de parcours." - }, - "victory": { - 1: "Retrouvons-nous.\nJe me souviendrai de ton visage." - }, - "defeat": { - 1: "Magnifique !\nPlus rien ne peut nous retenir !" - } - }, - "aqua_boss_archie_2": { - "encounter": { - 1: "J’ai attendu ce moment depuis si longtemps.\nVoici la vraie puissance de la Team Aqua !" - }, - "victory": { - 1: "Comme si j’y avait cru…" - }, - "defeat": { - 1: "Je rendrai à ce monde sa pureté originelle !" - } - }, - "galactic_boss_cyrus_1": { - "encounter": { - 1: "Tu t’es sentie obligée de venir ici dans un acte vide de sens. Je vais te le faire regretter." - }, - "victory": { - 1: "Intéressant. Et plutôt curieux." - }, - "defeat": { - 1: "Je le créerai, mon nouveau monde…" - } - }, - "galactic_boss_cyrus_2": { - "encounter": { - 1: "Nous y revoilà. Il semblerait que nos destinées soient entremêlées. Il est l’heure d’y mettre un terme." - }, - "victory": { - 1: "Comment. Comment ?\nCOMMENT ?!" - }, - "defeat": { - 1: "Adieu." - } - }, - "plasma_boss_ghetsis_1": { - "encounter": { - 1: "Je n’accepterai pas qu’on me barre la route !\nPeu importe qui fait quoi !" - }, - "victory": { - 1: "Comment ? Je suis le leader de la Team Plasma !\nJe suis parfait !" - }, - "defeat": { - 1: "Je suis le parfait monarque d’un monde parfait !\nHahaha !" - } - }, - "plasma_boss_ghetsis_2": { - "encounter": { - 1: "Viens ! Je veux voir ton visage à l’instant même où l’espoir quittera ton corps !" - }, - "victory": { - 1: "Mes calculs… Non ! Mes plans étaient parfaits !\nCe monde devrait être mien !" - }, - "defeat": { - 1: "Kyurem ! Fusiorption !!!" - } - }, - "flare_boss_lysandre_1": { - "encounter": { - 1: "Comptes-tu m’arrêter ? Prouve-le." - }, - "victory": { - 1: "T’es venu m’arrêter. Mais je te demande d’attendre." - }, - "defeat": { - 1: "Les Pokémon… Ne devraient plus exister." - } - }, - "flare_boss_lysandre_2": { - "encounter": { - 1: "Ton futur ou le mien…\nVoyons lequel mérite plus d’aboutir." - }, - "victory": { - 1: "Ohhhh… !" - }, - "defeat": { - 1: "Les ignorants sans aucune vision n’auront donc de cesse de souiller ce monde." - } - }, - "brock": { - "encounter": { - 1: "My expertise on Rock-type Pokémon will take you down! Come on!", - 2: "My rock-hard willpower will overwhelm you!", - 3: "Allow me to show you the true strength of my Pokémon!" - }, - "victory": { - 1: "Your Pokémon's strength have overcome my rock-hard defenses!", - 2: "The world is huge! I'm glad to have had a chance to battle you.", - 3: "Perhaps I should go back to pursuing my dream as a Pokémon Breeder…" - }, - "defeat": { - 1: "The best offense is a good defense!\nThat's my way of doing things!", - 2: "Come study rocks with me next time to better learn how to fight them!", - 3: "Hah, all my traveling around the regions is paying off!" - } - }, - "misty": { - "encounter": { - 1: "My policy is an all out offensive with Water-type Pokémon!", - 2: "Hiya, I'll show you the strength of my aquatic Pokémon!", - 3: "My dream was to go on a journey and battle powerful trainers…\nWill you be a sufficient challenge?" - }, - "victory": { - 1: "You really are strong… I'll admit that you are skilled…", - 2: "Grrr… You know you just got lucky, right?!", - 3: "Wow, you're too much! I can't believe you beat me!" - }, - "defeat": { - 1: "Was the mighty Misty too much for you?", - 2: "I hope you saw my Pokémon's elegant swimming techniques!", - 3: "Your Pokémon were no match for my pride and joys!" - } - }, - "lt_surge": { - "encounter": { - 1: "My Electric Pokémon saved me during the war! I'll show you how!", - 2: "Ten-hut! I'll shock you into surrender!", - 3: "I'll zap you just like I do to all my enemies in battle!" - }, - "victory": { - 1: "Whoa! Your team's the real deal, kid!", - 2: "Aaargh, you're strong! Even my electric tricks lost against you.", - 3: "That was an absolutely shocking loss!" - }, - "defeat": { - 1: "Oh yeah! When it comes to Electric-type Pokémon, I'm number one in the world!", - 2: "Hahaha! That was an electrifying battle, kid!", - 3: "A Pokémon battle is war, and I have showed you first-hand combat!" - } - }, - "erika": { - "encounter": { - 1: "Ah, the weather is lovely here…\nOh, a battle? Very well then.", - 2: "My Pokémon battling skills rival that of my flower arranging skills.", - 3: "Oh, I hope the pleasant aroma of my Pokémon doesn't put me to sleep again…", - 4: "Seeing flowers in a garden is so soothing." - }, - "victory": { - 1: "Oh! I concede defeat.", - 2: "That match was most delightful.", - 3: "Ah, it appears it is my loss…", - 4: "Oh, my goodness." - }, - "defeat": { - 1: "I was afraid I would doze off…", - 2: "Oh my, it seems my Grass Pokémon overwhelmed you.", - 3: "That battle was such a soothing experience.", - 4: "Oh… Is that all?" - } - }, - "janine": { - "encounter": { - 1: "I am mastering the art of poisonous attacks.\nI shall spar with you today!", - 2: "Father trusts that I can hold my own.\nI will prove him right!", - 3: "My ninja techniques are only second to my Father's!\nCan you keep up?" - }, - "victory": { - 1: "Even now, I still need training… I understand.", - 2: "Your battle technique has outmatched mine.", - 3: "I'm going to really apply myself and improve my skills." - }, - "defeat": { - 1: "Fufufu… the poison has sapped all your strength to battle.", - 2: "Ha! You didn't stand a chance against my superior ninja skills!", - 3: "Father's faith in me has proven to not be misplaced." - } - }, - "sabrina": { - "encounter": { - 1: "Through my psychic ability, I had a vision of your arrival!", - 2: "I dislike fighting, but if you wish, I will show you my powers!", - 3: "I can sense great ambition in you. I shall see if it not unfounded." - }, - "victory": { - 1: "Your power… It far exceeds what I foresaw…", - 2: "I failed to accurately predict your power.", - 3: "Even with my immense psychic powers, I cannot sense another as strong as you." - }, - "defeat": { - 1: "This victory… It is exactly as I foresaw in my visions!", - 2: "Perhaps it was another I sensed a great desire in…", - 3: "Hone your abilities before recklessly charging into battle.\nYou never know what the future may hold if you do…" - } - }, - "blaine": { - "encounter": { - 1: "Hah! Hope you brought a Burn Heal!", - 2: "My fiery Pokémon will incinerate all challengers!", - 3: "Get ready to play with fire!" - }, - "victory": { - 1: "I have burned down to nothing! Not even ashes remain!", - 2: "Didn't I stoke the flames high enough?", - 3: "I'm all burned out… But this makes my motivation to improve burn even hotter!" - }, - "defeat": { - 1: "My raging inferno cannot be quelled!", - 2: "My Pokémon have been powered up with the heat from this victory!", - 3: "Hah! My passion burns brighter than yours!" - } - }, - "giovanni": { - "encounter": { - 1: "I, the leader of Team Rocket, will make you feel a world of pain!", - 2: "My training here will be vital before I am to face my old associates again.", - 3: "I do not think you are prepared for the level of failure you are about to experience!" - }, - "victory": { - 1: "WHAT! Me, lose?! There is nothing I wish to say to you!", - 2: "Hmph… You could never understand what I hope to achieve.", - 3: "This defeat is merely delaying the inevitable.\nI will rise Team Rocket from the ashes in due time." - }, - "defeat": { - 1: "Not being able to measure your own strength shows that you are still but a child.", - 2: "Do not try to interfere with me again.", - 3: "I hope you understand how foolish challenging me was." - } - }, - "roxanne": { - "encounter": { - 1: "Would you kindly demonstrate how you battle?", - 2: "You can learn many things by battling many trainers.", - 3: "Oh, you caught me strategizing.\nWould you like to battle?" - }, - "victory": { - 1: "Oh, I appear to have lost.\nI understand.", - 2: "It seems that I still have so much more to learn when it comes to battle.", - 3: "I'll take what I learned here today to heart." - }, - "defeat": { - 1: "I have learned many things from our battle.\nI hope you have too.", - 2: "I look forward to battling you again.\nI hope you'll use what you've learned here.", - 3: "I won due to everything I have learned." - } - }, - "brawly": { - "encounter": { - 1: "Oh man, a challenger!\nLet's see what you can do!", - 2: "You seem like a big splash.\nLet's battle!", - 3: "Time to create a storm!\nLet's go!" - }, - "victory": { - 1: "Oh woah, you've washed me out!", - 2: "You surfed my wave and crashed me down!", - 3: "I feel like I'm lost in Granite Cave!" - }, - "defeat": { - 1: "Haha, I surfed the big wave!\nChallenge me again sometime.", - 2: "Surf with me again some time!", - 3: "Just like the tides come in and out, I hope you return to challenge me again." - } - }, - "wattson": { - "encounter": { - 1: "Time to get shocked!\nWahahahaha!", - 2: "I'll make sparks fly!\nWahahahaha!", - 3: "I hope you brought Paralyz Heal!\nWahahahaha!" - }, - "victory": { - 1: "Seems like I'm out of charge!\nWahahahaha!", - 2: "You've completely grounded me!\nWahahahaha!", - 3: "Thanks for the thrill!\nWahahahaha!" - }, - "defeat": { - 1: "Recharge your batteries and challenge me again sometime!\nWahahahaha!", - 2: "I hope you found our battle electrifying!\nWahahahaha!", - 3: "Aren't you shocked I won?\nWahahahaha!" - } - }, - "flannery": { - "encounter": { - 1: "Nice to meet you! Wait, no…\nI will crush you!", - 2: "I've only been a leader for a little while, but I'll smoke you!", - 3: "It's time to demonstrate the moves my grandfather has taught me! Let's battle!" - }, - "victory": { - 1: "You remind me of my grandfather…\nNo wonder I lost.", - 2: "Am I trying too hard?\nI should relax, can't get too heated.", - 3: "Losing isn't going to smother me out.\nTime to reignite training!" - }, - "defeat": { - 1: "I hope I've made my grandfather proud…\nLet's battle again some time.", - 2: "I…I can't believe I won!\nDoing things my way worked!", - 3: "Let's exchange burning hot moves again soon!" - } - }, - "norman": { - "encounter": { - 1: "I'm surprised you managed to get here.\nLet's battle.", - 2: "I'll do everything in my power as a Gym Leader to win.\nLet's go!", - 3: "You better give this your all.\nIt's time to battle!" - }, - "victory": { - 1: "I lost to you…?\nRules are rules, though.", - 2: "Was moving from Olivine a mistake…?", - 3: "I can't believe it.\nThat was a great match." - }, - "defeat": { - 1: "We both tried our best.\nI hope we can battle again soon.", - 2: "You should try challenging my kid instead.\nYou might learn something!", - 3: "Thank you for the excellent battle.\nBetter luck next time." - } - }, - "winona": { - "encounter": { - 1: "I've been soaring the skies looking for prey…\nAnd you're my target!", - 2: "No matter how our battle is, my Flying Pokémon and I will triumph with grace. Let's battle!", - 3: "I hope you aren't scared of heights.\nLet's ascend!" - }, - "victory": { - 1: "You're the first Trainer I've seen with more grace than I.\nExcellently played.", - 2: "Oh, my Flying Pokémon have plummeted!\nVery well.", - 3: "Though I may have fallen, my Pokémon will continue to fly!" - }, - "defeat": { - 1: "My Flying Pokémon and I will forever dance elegantly!", - 2: "I hope you enjoyed our show.\nOur graceful dance is finished.", - 3: "Won't you come see our elegant choreography again?" - } - }, - "tate": { - "encounter": { - 1: "Hehehe…\nWere you surprised to see me without my sister?", - 2: "I can see what you're thinking…\nYou want to battle!", - 3: "How can you defeat someone…\nWho knows your every move?" - }, - "victory": { - 1: "It can't be helped…\nI miss Liza…", - 2: "Your bond with your Pokémon was stronger than mine.", - 3: "If I were with Liza, we would have won.\nWe can finish each other's thoughts!" - }, - "defeat": { - 1: "My Pokémon and I are superior!", - 2: "If you can't even defeat me, you'll never be able to defeat Liza either.", - 3: "It's all thanks to my strict training with Liza.\nI can make myself one with Pokémon." - } - }, - "liza": { - "encounter": { - 1: "Fufufu…\nWere you surprised to see me without my brother?", - 2: "I can determine what you desire…\nYou want to battle, don't you?", - 3: "How can you defeat someone…\nWho's one with their Pokémon?" - }, - "victory": { - 1: "It can't be helped…\nI miss Tate…", - 2: "Your bond with your Pokémon…\nIt's stronger than mine.", - 3: "If I were with Tate, we would have won.\nWe can finish each other's sentences!" - }, - "defeat": { - 1: "My Pokémon and I are victorious.", - 2: "If you can't even defeat me, you'll never be able to defeat Tate either.", - 3: "It's all thanks to my strict training with Tate.\nI can synchronize myself with my Pokémon." - } - }, - "juan": { - "encounter": { - 1: "Now's not the time to act coy.\nLet's battle!", - 2: "Ahahaha, You'll be witness to my artistry with Water Pokémon!", - 3: "A typhoon approaches!\nWill you be able to test me?", - 4: "Please, you shall bear witness to our artistry.\nA grand illusion of water sculpted by my Pokémon and myself!" - }, - "victory": { - 1: "You may be a genius who can take on Wallace!", - 2: "I focused on elegance while you trained.\nIt's only natural that you defeated me.", - 3: "Ahahaha!\nVery well, You have won this time.", - 4: "From you, I sense the brilliant shine of skill that will overcome all." - }, - "defeat": { - 1: "My Pokémon and I have sculpted an illusion of Water and come out victorious.", - 2: "Ahahaha, I have won, and you have lost.", - 3: "Shall I loan you my outfit? It may help you battle!\nAhahaha, I jest!", - 4: "I'm the winner! Which is to say, you lost." - } - }, - "crasher_wake": { - "encounter": { - 1: "Crash! Crash! Watch out!\nCrasher Wake…is…heeere!", - 2: "Crash! Crash! Crasher Wake!", - 3: "I'm the tidal wave of power to wash you away!" - }, - "victory": { - 1: "That puts a grin on my face!\nGuhahaha! That was a blast!", - 2: "Hunwah! It's gone and ended!\nHow will I say this…\nI want more! I wanted to battle a lot more!", - 3: "WHAAAAT!?" - }, - "defeat": { - 1: "Yeeeeah! That's right!", - 2: "I won, but I want more! I wanted to battle a lot more!", - 3: "So long!" - } - }, - "falkner": { - "encounter": { - 1: "I'll show you the real power of the magnificent bird Pokémon!", - 2: "Winds, stay with me!", - 3: "Dad! I hope you're watching me battle from above!" - }, - "victory": { - 1: "I understand… I'll bow out gracefully.", - 2: "A defeat is a defeat. You are strong indeed.", - 3: "…Shoot! Yeah, I lost." - }, - "defeat": { - 1: "Dad! I won with your cherished bird Pokémon…", - 2: "Bird Pokémon are the best after all!", - 3: "Feels like I'm catching up to my dad!" - } - }, - "nessa": { - "encounter": { - 1: "No matter what kind of plan your refined mind may be plotting, my partner and I will be sure to sink it.", - 2: "I'm not here to chat. I'm here to win!", - 3: "This is a little gift from my Pokémon… I hope you can take it!" - }, - "victory": { - 1: "You and your Pokémon are just too much…", - 2: "How…? How can this be?!", - 3: "I was totally washed away!" - }, - "defeat": { - 1: "The raging wave crashes again!", - 2: "Time to ride the wave of victory!", - 3: "Ehehe!" - } - }, - "melony": { - "encounter": { - 1: "I'm not going to hold back!", - 2: "All righty, I suppose we should get started.", - 3: "I'll freeze you solid!" - }, - "victory": { - 1: "You… You're pretty good, huh?", - 2: "If you find Gordie around, be sure to give him a right trashing, would you?", - 3: "I think you took breaking the ice a little too literally…" - }, - "defeat": { - 1: "Now do you see how severe battles can be?", - 2: "Hee! Looks like I went and won again!", - 3: "Are you holding back?" - } - }, - "marlon": { - "encounter": { - 1: "You look strong! Shoots! Let's start!", - 2: "I'm strong like the ocean's wide. You're gonna get swept away, fo' sho'.", - 3: "Oh ho, so I'm facing you! That's off the wall." - }, - "victory": { - 1: "You totally rocked that! You're raising some wicked Pokémon. You got this Trainer thing down!", - 2: "You don't just look strong, you're strong fo' reals! Eh, I was swept away, too!", - 3: "You're strong as a gnarly wave!" - }, - "defeat": { - 1: "You're tough, but it's not enough to sway the sea, 'K!", - 2: "Hee! Looks like I went and won again!", - 3: "Sweet, sweet victory!" - } - }, - "shauntal": { - "encounter": { - 1: "Excuse me. You're a challenger, right?\nI'm the Elite Four's Ghost-type Pokémon user, Shauntal, and I shall be your opponent.", - 2: "I absolutely love writing about Trainers who come here and the Pokémon they train.\nCould I use you and your Pokémon as a subject?", - 3: "Every person who works with Pokémon has a story to tell.\nWhat story is about to be told?" - }, - "victory": { - 1: "Wow. I'm dumbstruck!", - 2: "S-sorry! First, I must apologize to my Pokémon…\n\nI'm really sorry you had a bad experience because of me!", - 3: "Even in light of that, I'm still one of the Elite Four!" - }, - "defeat": { - 1: "Eheh.", - 2: "That gave me excellent material for my next novel!", - 3: "And so, another tale ends…" - } - }, - "marshal": { - "encounter": { - 1: "My mentor, Alder, sees your potential as a Trainer and is taking an interest in you.\nIt is my intention to test you--to take you to the limits of your strength. Kiai!", - 2: "Victory, decisive victory, is my intention! Challenger, here I come!", - 3: "In myself, I seek to develop the strength of a fighter and shatter any weakness in myself!\nPrevailing with the force of my convictions!" - }, - "victory": { - 1: "Whew! Well done!", - 2: "As your battles continue, aim for even greater heights!", - 3: "The strength shown by you and your Pokémon has deeply impressed me…" - }, - "defeat": { - 1: "Hmm.", - 2: "That was good battle.", - 3: "Haaah! Haaah! Haiyaaaah!" - } - }, - "cheren": { - "encounter": { - 1: "You remind me of an old friend. That makes me excited about this Pokémon battle!", - 2: `Pokémon battles have no meaning if you don't think why you battle. - $Or better said, it makes battling together with Pokémon meaningless.`, - 3: "My name's Cheren! I'm a Gym Leader and a teacher! Pleasure to meet you." - }, - "victory": { - 1: "Thank you! I saw what was missing in me.", - 2: "Thank you! I feel like I saw a little of the way toward my ideals.", - 3: "Hmm… This is problematic." - }, - "defeat": { - 1: "As a Gym Leader, I aim to be a wall for you to overcome.", - 2: "All right!", - 3: "I made it where I am because Pokémon were by my side.\nPerhaps we need to think about why Pokémon help us not in terms of Pokémon and Trainers but as a relationship between living beings." - } - }, - "chili": { - "encounter": { - 1: "Yeeeeooow! Time to play with FIRE!! I'm the strongest of us brothers!", - 2: "Ta-da! The Fire-type scorcher Chili--that's me--will be your opponent!", - 3: "I'm going to show you what me and my blazing Fire types can do!" - }, - "victory": { - 1: "You got me. I am… burned… out…", - 2: "Whoa ho! You're on fire!", - 3: "Augh! You got me!" - }, - "defeat": { - 1: "I'm on fire! Play with me, and you'll get burned!", - 2: "When you play with fire, you get burned!", - 3: "I mean, c'mon, your opponent was me! You didn't have a chance!" - } - }, - "cilan": { - "encounter": { - 1: `Nothing personal... No hard feelings... Me and my Grass-type Pokémon will... - $Um... We're gonna battle come what may.`, - 2: "So, um, if you're OK with me, I'll, um, put everything I've got into being, er, you know, your opponent.", - 3: "OK… So, um, I'm Cilan, I like Grass-type Pokémon." - }, - "victory": { - 1: "Er… Is it over now?", - 2: `…What a surprise. You are very strong, aren't you? - $I guess my brothers wouldn't have been able to defeat you either…`, - 3: "…Huh. Looks like my timing was, um, off?" - }, - "defeat": { - 1: "Huh? Did I win?", - 2: `I guess… - $I suppose I won, because I've been competing with my brothers Chili and Cress, and we all were able to get tougher.`, - 3: "It…it was quite a thrilling experience…" - } - }, - "roark": { - "encounter": { - 1: "I need to see your potential as a Trainer. And, I'll need to see the toughness of the Pokémon that battle with you!", - 2: "Here goes! These are my rocking Pokémon, my pride and joy!", - 3: "Rock-type Pokémon are simply the best!", - 4: "I need to see your potential as a Trainer. And, I'll need to see the toughness of the Pokémon that battle with you!" - }, - "victory": { - 1: "W-what? That can't be! My buffed-up Pokémon!", - 2: "…We lost control there. Next time I'd like to challenge you to a Fossil-digging race underground.", - 3: "With skill like yours, it's natural for you to win.", - 4: "Wh-what?! It can't be! Even that wasn't enough?", - 5: "I blew it." - }, - "defeat": { - 1: "See? I'm proud of my rocking battle style!", - 2: "Thanks! The battle gave me confidence that I may be able to beat my dad!", - 3: "I feel like I just smashed through a really stubborn boulder!" - } - }, - "morty": { - "encounter": { - 1: `With a little more, I could see a future in which I meet the legendary Pokémon. - $You're going to help me reach that level!`, - 2: `It's said that a rainbow-hued Pokémon will come down to appear before a truly powerful Trainer. - $I believed that tale, so I have secretly trained here all my life. As a result, I can now see what others cannot. - $I see a shadow of the person who will make the Pokémon appear. - $I believe that person is me! You're going to help me reach that level!`, - 3: "Whether you choose to believe or not, mystic power does exist.", - 4: "You can bear witness to the fruits of my training.", - 5: "You must make your soul one with that of Pokémon. Can you do this?", - 6: "Say, do you want to be part of my training?" - }, - "victory": { - 1: "I'm not good enough yet…", - 2: `I see… Your journey has taken you to far-away places and you have witnessed much more than I. - $I envy you for that…`, - 3: "How is this possible…", - 4: `I don't think our potentials are so different. - $But you seem to have something more than that… So be it.`, - 5: "Guess I need more training.", - 6: "That's a shame." - }, - "defeat": { - 1: "I moved… one step ahead again.", - 2: "Fufufu…", - 3: "Wh-what?! It can't be! Even that wasn't enough?", - 4: "I feel like I just smashed through a really stubborn boulder!", - 5: "Ahahahah!", - 6: "I knew I would win!" - } - }, - "crispin": { - "encounter": { - 1: "I wanna win, so that's exactly what I'll do!", - 2: "I battle because I wanna battle! And you know what? That's how it should be!" - }, - "victory": { - 1: "I wanted to win…but I lost!", - 2: "I lost…'cause I couldn't win!" - }, - "defeat": { - 1: "Hey, wait a sec. Did I just win? I think I just won! Talk about satisfying!", - 2: "Wooo! That was amazing!" - } - }, - "amarys": { - "encounter": { - 1: `I want to be the one to help a certain person. That being the case, I cannot afford to lose. - $… Our battle starts now.`, - }, - "victory": { - 1: "I am… not enough, I see." - }, - "defeat": { - 1: "Victory belongs to me. Well fought." - } - }, - "lacey": { - "encounter": { - 1: "I'll be facing you with my usual party as a member of the Elite Four." - }, - "victory": { - 1: "That was a great battle!" - }, - "defeat": { - 1: "Let's give your Pokémon a nice round of applause for their efforts!" - } - }, - "drayton": { - "encounter": { - 1: `Man, I love chairs. Don't you love chairs? What lifesavers. - $I don't get why everyone doesn't just sit all the time. Standing up's tiring work!`, - }, - "victory": { - 1: "Guess I should've expected that!" - }, - "defeat": { - 1: "Heh heh! Don't mind me, just scooping up a W over here. I get it if you're upset, but don't go full Kieran on me, OK?" - } - }, - "ramos": { - "encounter": { - 1: `Did yeh enjoy the garden playground I made with all these sturdy plants o' mine? - $Their strength is a sign o' my strength as a gardener and a Gym Leader! Yeh sure yer up to facing all that?`, - }, - "victory": { - 1: "Yeh believe in yer Pokémon… And they believe in yeh, too… It was a fine battle, sprout." - }, - "defeat": { - 1: "Hohoho… Indeed. Frail little blades o' grass'll break through even concrete." - } - }, - "viola": { - "encounter": { - 1: `Whether it's the tears of frustration that follow a loss or the blossoming of joy that comes with victory… - $They're both great subjects for my camera! Fantastic! This'll be just fantastic! - $Now come at me!`, - 2: "My lens is always focused on victory--I won't let anything ruin this shot!" - }, - "victory": { - 1: "You and your Pokémon have shown me a whole new depth of field! Fantastic! Just fantastic!", - 2: `The world you see through a lens, and the world you see with a Pokémon by your side… - $The same world can look entirely different depending on your view.` - }, - "defeat": { - 1: "The photo from the moment of my victory will be a real winner, all right!", - 2: "Yes! I took some great photos!" - } - }, - "candice": { - "encounter": { - 1: `You want to challenge Candice? Sure thing! I was waiting for someone tough! - $But I should tell you, I'm tough because I know how to focus.`, - 2: `Pokémon, fashion, romance… It's all about focus! - $I'll show you just what I mean. Get ready to lose!` - }, - "victory": { - 1: "I must say, I'm warmed up to you! I might even admire you a little.", - 2: `Wow! You're great! You've earned my respect! - $I think your focus and will bowled us over totally. ` - }, - "defeat": { - 1: "I sensed your will to win, but I don't lose!", - 2: "See? Candice's focus! My Pokémon's focus is great, too!" - } - }, - "gardenia": { - "encounter": { - 1: "You have a winning aura about you. So, anyway, this will be fun. Let's have our battle!" - }, - "victory": { - 1: "Amazing! You're very good, aren't you?" - }, - "defeat": { - 1: "Yes! My Pokémon and I are perfectly good!" - } - }, - "aaron": { - "encounter": { - 1: "Ok! Let me take you on!" - }, - "victory": { - 1: "Battling is a deep and complex affair…" - }, - "defeat": { - 1: "Victory over an Elite Four member doesn't come easily." - } - }, - "cress": { - "encounter": { - 1: "That is correct! It shall be I and my esteemed Water types that you must face in battle!" - }, - "victory": { - 1: "Lose? Me? I don't believe this." - }, - "defeat": { - 1: "This is the appropriate result when I'm your opponent." - } - }, - "allister": { - "encounter": { - 1: "'M Allister.\nH-here… I go…" - }, - "victory": { - 1: `I nearly lost my mask from the shock… That was… - $Wow. I can see your skill for what it is.`, - }, - "defeat": { - 1: "Th-that was ace!" - } - }, - "clay": { - "encounter": { - 1: "Harrumph! Kept me waitin', didn't ya, kid? All right, time to see what ya can do!" - }, - "victory": { - 1: "Man oh man… It feels good to go all out and still be defeated!" - }, - "defeat": { - 1: `What's important is how ya react to losin'. - $That's why folks who use losin' as fuel to get better are tough.`, - } - }, - "kofu": { - "encounter": { - 1: "I'mma serve you a full course o' Water-type Pokémon! Don't try to eat 'em, though!" - }, - "victory": { - 1: "Vaultin' Veluza! Yer a lively one, aren't ya! A little TOO lively, if I do say so myself!" - }, - "defeat": { - 1: "You come back to see me again now, ya hear?" - } - }, - "tulip": { - "encounter": { - 1: "Allow me to put my skills to use to make your cute little Pokémon even more beautiful!" - }, - "victory": { - 1: "Your strength has a magic to it that cannot be washed away." - }, - "defeat": { - 1: "You know, in my line of work, people who lack talent in one area or the other often fade away quickly—never to be heard of again." - } - }, - "sidney": { - "encounter": { - 1: `I like that look you're giving me. I guess you'll give me a good match. - $That's good! Looking real good! All right! - $You and me, let's enjoy a battle that can only be staged here!`, - }, - "victory": { - 1: "Well, how do you like that? I lost! Eh, it was fun, so it doesn't matter." - }, - "defeat": { - 1: "No hard feelings, alright?" - } - }, - "phoebe": { - "encounter": { - 1: `While I trained, I gained the ability to commune with Ghost-type Pokémon. - $Yes, the bond I developed with Pokémon is extremely tight. - $So, come on, just try and see if you can even inflict damage on my Pokémon!`, - }, - "victory": { - 1: "Oh, darn. I've gone and lost." - }, - "defeat": { - 1: "I look forward to battling you again sometime!" - } - }, - "glacia": { - "encounter": { - 1: `All I have seen are challenges by weak Trainers and their Pokémon. - $What about you? It would please me to no end if I could go all out against you!`, - }, - "victory": { - 1: `You and your Pokémon… How hot your spirits burn! - $The all-consuming heat overwhelms. - $It's no surprise that my icy skills failed to harm you.`, - }, - "defeat": { - 1: "A fiercely passionate battle, indeed." - } - }, - "drake": { - "encounter": { - 1: `For us to battle with Pokémon as partners, do you know what it takes? Do you know what is needed? - $If you don't, then you will never prevail over me!`, - }, - "victory": { - 1: "Superb, it should be said." - }, - "defeat": { - 1: "I gave my all for that battle!" - } - }, - "wallace": { - "encounter": { - 1: `There's something about you… A difference in your demeanor. - $I think I sense that in you. Now, show me. Show me the power you wield with your Pokémon. - $And I, in turn, shall present you with a performance of illusions in water by me and my Pokémon!`, - }, - "victory": { - 1: `Bravo. I realize now your authenticity and magnificence as a Pokémon Trainer. - $I find much joy in having met you and your Pokémon. You have proven yourself worthy.`, - }, - "defeat": { - 1: "A grand illusion!" - } - }, - "lorelei": { - "encounter": { - 1: `No one can best me when it comes to icy Pokémon! Freezing moves are powerful! - $Your Pokémon will be at my mercy when they are frozen solid! Hahaha! Are you ready?`, - }, - "victory": { - 1: "How dare you!" - }, - "defeat": { - 1: "There's nothing you can do once you're frozen." - } - }, - "will": { - "encounter": { - 1: `I have trained all around the world, making my psychic Pokémon powerful. - $I can only keep getting better! Losing is not an option!`, - }, - "victory": { - 1: "I… I can't… believe it…" - }, - "defeat": { - 1: "That was close. I wonder what it is that you lack." - } - }, - "malva": { - "encounter": { - 1: `I feel like my heart might just burst into flames. - $I'm burning up with my hatred for you, runt!`, - }, - "victory": { - 1: "What news… So a new challenger has defeated Malva!" - }, - "defeat": { - 1: "I am delighted! Yes, delighted that I could squash you beneath my heel." - } - }, - "hala": { - "encounter": { - 1: "Old Hala is here to make you holler!" - }, - "victory": { - 1: "I could feel the power you gained on your journey." - }, - "defeat": { - 1: "Haha! What a delightful battle!" - } - }, - "molayne": { - "encounter": { - 1: `I gave the captain position to my cousin Sophocles, but I'm confident in my ability. - $My strength is like that of a supernova!`, - }, - "victory": { - 1: "I certainly found an interesting Trainer to face!" - }, - "defeat": { - 1: "Ahaha. What an interesting battle." - } - }, - "rika": { - "encounter": { - 1: "I'd say I'll go easy on you, but… I'd be lying! Think fast!" - }, - "victory": { - 1: "Not bad, kiddo." - }, - "defeat": { - 1: "Nahahaha! You really are something else, kiddo!" - } - }, - "bruno": { - "encounter": { - 1: "We will grind you down with our superior power! Hoo hah!" - }, - "victory": { - 1: "Why? How could I lose?" - }, - "defeat": { - 1: "You can challenge me all you like, but the results will never change!" - } - }, - "bugsy": { - "encounter": { - 1: `Whoa, amazing! You're an expert on Pokémon! - $My research isn't complete yet. OK, you win.`, - }, - "victory": { - 1: "Whoa, amazing! You're an expert on Pokémon!\nMy research isn't complete yet. OK, you win." - }, - "defeat": { - 1: "Thanks! Thanks to our battle, I was also able to make progress in my research!" - } - }, - "koga": { - "encounter": { - 1: "Fwahahahaha! Pokémon are not merely about brute force--you shall see soon enough!" - }, - "victory": { - 1: "Ah! You've proven your worth!" - }, - "defeat": { - 1: "Have you learned to fear the techniques of the ninja?" - } - }, - "bertha": { - "encounter": { - 1: "Well, would you show this old lady how much you've learned?" - }, - "victory": { - 1: `Well! Dear child, I must say, that was most impressive. - $Your Pokémon believed in you and did their best to earn you the win. - $Even though I've lost, I find myself with this silly grin!`, - }, - "defeat": { - 1: "Hahahahah! Looks like this old lady won!" - } - }, - "lenora": { - "encounter": { - 1: "Well then, challenger, I'm going to research how you battle with the Pokémon you've so lovingly raised!" - }, - "victory": { - 1: "My theory about you was correct. You're more than just talented… You're motivated! I salute you!" - }, - "defeat": { - 1: "Ah ha ha! If you lose, make sure to analyze why, and use that knowledge in your next battle!" - } - }, - "siebold": { - "encounter": { - 1: "As long as I am alive, I shall strive onward to seek the ultimate cuisine... and the strongest opponents in battle!" - }, - "victory": { - 1: "I shall store my memory of you and your Pokémon forever away within my heart." - }, - "defeat": { - 1: `Our Pokémon battle was like food for my soul. It shall keep me going. - $That is how I will pay my respects to you for giving your all in battle!`, - } - }, - "roxie": { - "encounter": { - 1: "Get ready! I'm gonna knock some sense outta ya!" - }, - "victory": { - 1: "Wild! Your reason's already more toxic than mine!" - }, - "defeat": { - 1: "Hey, c'mon! Get serious! You gotta put more out there!" - } - }, - "olivia": { - "encounter": { - 1: "No introduction needed here. Time to battle me, Olivia!" - }, - "victory": { - 1: "Really lovely… Both you and your Pokémon…" - }, - "defeat": { - 1: "Mmm-hmm." - } - }, - "poppy": { - "encounter": { - 1: "Oooh! Do you wanna have a Pokémon battle with me?" - }, - "victory": { - 1: "Uagh?! Mmmuuuggghhh…" - }, - "defeat": { - 1: `Yaaay! I did it! I de-feet-ed you! You can come for… For… An avenge match? - $Come for an avenge match anytime you want!`, - } - }, - "agatha": { - "encounter": { - 1: "Pokémon are for battling! I'll show you how a real Trainer battles!" - }, - "victory": { - 1: "Oh my! You're something special, child!" - }, - "defeat": { - 1: "Bahaha. That's how a proper battle's done!" - } - }, - "flint": { - "encounter": { - 1: "Hope you're warmed up, cause here comes the Big Bang!" - }, - "victory": { - 1: "Incredible! Your moves are so hot, they make mine look lukewarm!" - }, - "defeat": { - 1: "Huh? Is that it? I think you need a bit more passion." - } - }, - "grimsley": { - "encounter": { - 1: "The winner takes everything, and there's nothing left for the loser." - }, - "victory": { - 1: "When one loses, they lose everything… The next thing I'll look for will be victory, too!" - }, - "defeat": { - 1: "If somebody wins, the person who fought against that person will lose." - } - }, - "caitlin": { - "encounter": { - 1: `It's me who appeared when the flower opened up. You who have been waiting… - $You look like a Pokémon Trainer with refined strength and deepened kindness. - $What I look for in my opponent is superb strength… - $Please unleash your power to the fullest!`, - }, - "victory": { - 1: "My Pokémon and I learned so much! I offer you my thanks." - }, - "defeat": { - 1: "I aspire to claim victory with elegance and grace." - } - }, - "diantha": { - "encounter": { - 1: `Battling against you and your Pokémon, all of you brimming with hope for the future… - $Honestly, it just fills me up with energy I need to keep facing each new day! It does!`, - }, - "victory": { - 1: "Witnessing the noble spirits of you and your Pokémon in battle has really touched my heart…" - }, - "defeat": { - 1: "Oh, fantastic! What did you think? My team was pretty cool, right?" - } - }, - "wikstrom": { - "encounter": { - 1: `Well met, young challenger! Verily am I the famed blade of hardened steel, Duke Wikstrom! - $Let the battle begin! En garde!`, - }, - "victory": { - 1: "Glorious! The trust that you share with your honorable Pokémon surpasses even mine!" - }, - "defeat": { - 1: `What manner of magic is this? My heart, it doth hammer ceaselessly in my breast! - $Winning against such a worthy opponent doth give my soul wings--thus do I soar!`, - } - }, - "acerola": { - "encounter": { - 1: "Battling is just plain fun! Come on, I can take you!" - }, - "victory": { - 1: "I'm… I'm speechless! How did you do it?!" - }, - "defeat": { - 1: "Ehaha! What an amazing victory!" - } - }, - "larry_elite": { - "encounter": { - 1: `Hello there… It's me, Larry. - $I serve as a member of the Elite Four too, yes… Unfortunately for me.`, - }, - "victory": { - 1: "Well, that took the wind from under our wings…" - }, - "defeat": { - 1: "It's time for a meeting with the boss." - } - }, - "lance": { - "encounter": { - 1: "I've been waiting for you. Allow me to test your skill.", - 2: "I thought that you would be able to get this far. Let's get this started." - }, - "victory": { - 1: "You got me. You are magnificent!", - 2: "I never expected another trainer to beat me… I'm surprised." - }, - "defeat": { - 1: "That was close. Want to try again?", - 2: "It's not that you are weak. Don't let it bother you." - } - }, - "karen": { - "encounter": { - 1: "I am Karen. Would you care for a showdown with my Dark-type Pokémon?", - 2: "I am unlike those you've already met.", - 3: "You've assembled a charming team. Our battle should be a good one." - }, - "victory": { - 1: "No! I can't win. How did you become so strong?", - 2: "I will not stray from my chosen path.", - 3: "The Champion is looking forward to meeting you." - }, - "defeat": { - 1: "That's about what I expected.", - 2: "Well, that was relatively entertaining.", - 3: "Come visit me anytime." - } - }, - "milo": { - "encounter": { - 1: `Sure seems like you understand Pokémon real well. - $This is gonna be a doozy of a battle! - $I'll have to Dynamax my Pokémon if I want to win!`, - }, - "victory": { - 1: "The power of Grass has wilted… What an incredible Challenger!" - }, - "defeat": { - 1: "This'll really leave you in shock and awe." - } - }, - "lucian": { - "encounter": { - 1: `Just a moment, please. The book I'm reading has nearly reached its thrilling climax… - $The hero has obtained a mystic sword and is about to face their final trial… Ah, never mind. - $Since you've made it this far, I'll put that aside and battle you. - $Let me see if you'll achieve as much glory as the hero of my book!,` - }, - "victory": { - 1: "I see… It appears you've put me in checkmate." - }, - "defeat": { - 1: "I have a reputation to uphold." - } - }, - "drasna": { - "encounter": { - 1: `You must be a strong Trainer. Yes, quite strong indeed… - $That's just wonderful news! Facing opponents like you and your team will make my Pokémon grow like weeds!` - }, - "victory": { - 1: "Oh, dear me. That sure was a quick battle… I do hope you'll come back again sometime!" - }, - "defeat": { - 1: "How can this be?" - } - }, - "kahili": { - "encounter": { - 1: "So, here you are… Why don't we see who the winds favor today, you… Or me?" - }, - "victory": { - 1: "It's frustrating to me as a member of the Elite Four, but it seems your strength is the real deal." - }, - "defeat": { - 1: "That was an ace!" - } - }, - "hassel": { - "encounter": { - 1: "Prepare to learn firsthand how the fiery breath of ferocious battle feels!" - }, - "victory": { - 1: `Fortune smiled on me this time, but… - $Judging from how the match went, who knows if I will be so lucky next time.`, - }, - "defeat": { - 1: "That was an ace!" - } - }, - "blue": { - "encounter": { - 1: "You must be pretty good to get this far." - }, - "victory": { - 1: "I've only lost to him and now to you… Him? Hee, hee…" - }, - "defeat": { - 1: "See? My power is what got me here." - } - }, - "piers": { - "encounter": { - 1: "Get ready for a mosh pit with me and my party! Spikemuth, it's time to rock!" - }, - "victory": { - 1: "Me an' my team gave it our best. Let's meet up again for a battle some time…" - }, - "defeat": { - 1: "My throat's ragged from shoutin'… But 'at was an excitin' battle!" - } - }, - "red": { - "encounter": { - 1: "…!" - }, - "victory": { - 1: "…?" - }, - "defeat": { - 1: "…!" - } - }, - "jasmine": { - "encounter": { - 1: "Oh… Your Pokémon are impressive. I think I will enjoy this." - }, - "victory": { - 1: "You are truly strong. I'll have to try much harder, too." - }, - "defeat": { - 1: "I never expected to win." - } - }, - "lance_champion": { - "encounter": { - 1: "I am still the Champion. I won't hold anything back." - }, - "victory": { - 1: "This is the emergence of a new Champion." - }, - "defeat": { - 1: "I successfully defended my Championship." - } - }, - "steven": { - "encounter": { - 1: `Tell me… What have you seen on your journey with your Pokémon? - $What have you felt, meeting so many other Trainers out there? - $Traveling this rich land… Has it awoken something inside you? - $I want you to come at me with all that you've learned. - $My Pokémon and I will respond in turn with all that we know!`, - }, - "victory": { - 1: "So I, the Champion, fall in defeat…" - }, - "defeat": { - 1: "That was time well spent! Thank you!" - } - }, - "cynthia": { - "encounter": { - 1: "I, Cynthia, accept your challenge! There won't be any letup from me!" - }, - "victory": { - 1: "No matter how fun the battle is, it will always end sometime…" - }, - "defeat": { - 1: "Even if you lose, never lose your love of Pokémon." - } - }, - "iris": { - "encounter": { - 1: `Know what? I really look forward to having serious battles with strong Trainers! - $I mean, come on! The Trainers who make it here are Trainers who desire victory with every fiber of their being! - #And they are battling alongside Pokémon that have been through countless difficult battles! - $If I battle with people like that, not only will I get stronger, my Pokémon will, too! - $And we'll get to know each other even better! OK! Brace yourself! - $I'm Iris, the Pokémon League Champion, and I'm going to defeat you!`, - }, - "victory": { - 1: "Aghhhh… I did my best, but we lost…" - }, - "defeat": { - 1: "Yay! We won!" - } - }, - "hau": { - "encounter": { - 1: `I wonder if a Trainer battles differently depending on whether they're from a warm region or a cold region. - $Let's test it out!`, - }, - "victory": { - 1: "That was awesome! I think I kinda understand your vibe a little better now!" - }, - "defeat": { - 1: "Ma-an, that was some kinda battle!" - } - }, - "geeta": { - "encounter": { - 1: `I decided to throw my hat in the ring once more. - $Come now… Show me the fruits of your training.`, - }, - "victory": { - 1: "I eagerly await news of all your achievements!" - }, - "defeat": { - 1: "What's the matter? This isn't all, is it?" - } - }, - "nemona": { - "encounter": { - 1: "Yesss! I'm so psyched! Time for us to let loose!" - }, - "victory": { - 1: "Well, that stinks, but I still had fun! I'll getcha next time!" - }, - "defeat": { - 1: "Well, that was a great battle! Fruitful for sure." - } - }, - "leon": { - "encounter": { - 1: "We're gonna have an absolutely champion time!" - }, - "victory": { - 1: `My time as Champion is over… - $But what a champion time it's been! - $Thank you for the greatest battle I've ever had!`, - }, - "defeat": { - 1: "An absolute champion time, that was!" - } - }, - "whitney": { - "encounter": { - 1: "Hey! Don't you think Pokémon are, like, super cute?" - }, - "victory": { - 1: "Waaah! Waaah! You're so mean!" - }, - "defeat": { - 1: "And that's that!" - } - }, - "chuck": { - "encounter": { - 1: "Hah! You want to challenge me? Are you brave or just ignorant?" - }, - "victory": { - 1: "You're strong! Would you please make me your apprentice?" - }, - "defeat": { - 1: "There. Do you realize how much more powerful I am than you?" - } - }, - "katy": { - "encounter": { - 1: "Don't let your guard down unless you would like to find yourself knocked off your feet!" - }, - "victory": { - 1: "All of my sweet little Pokémon dropped like flies!" - }, - "defeat": { - 1: "Eat up, my cute little Vivillon!" - } - }, - "pryce": { - "encounter": { - 1: "Youth alone does not ensure victory! Experience is what counts." - }, - "victory": { - 1: "Outstanding! That was perfect. Try not to forget what you feel now." - }, - "defeat": { - 1: "Just as I envisioned." - } - }, - "clair": { - "encounter": { - 1: "Do you know who I am? And you still dare to challenge me?" - }, - "victory": { - 1: "I wonder how far you can get with your skill level. This should be fascinating." - }, - "defeat": { - 1: "That's that." - } - }, - "maylene": { - "encounter": { - 1: `I've come to challenge you now, and I won't hold anything back. - $Please prepare yourself for battle!`, - }, - "victory": { - 1: "I admit defeat…" - }, - "defeat": { - 1: "That was awesome." - } - }, - "fantina": { - "encounter": { - 1: `You shall challenge me, yes? But I shall win. - $That is what the Gym Leader of Hearthome does, non?`, - }, - "victory": { - 1: "You are so fantastically strong. I know why I have lost." - }, - "defeat": { - 1: "I am so, so, very happy!" - } - }, - "byron": { - "encounter": { - 1: `Trainer! You're young, just like my son, Roark. - $With more young Trainers taking charge, the future of Pokémon is bright! - $So, as a wall for young people, I'll take your challenge!`, - }, - "victory": { - 1: "Hmm! My sturdy Pokémon--defeated!" - }, - "defeat": { - 1: "Gwahahaha! How were my sturdy Pokémon?!" - } - }, - "olympia": { - "encounter": { - 1: "An ancient custom deciding one's destiny. The battle begins!" - }, - "victory": { - 1: "Create your own path. Let nothing get in your way. Your fate, your future." - }, - "defeat": { - 1: "Our path is clear now." - } - }, - "volkner": { - "encounter": { - 1: `Since you've come this far, you must be quite strong… - $I hope you're the Trainer who'll make me remember how fun it is to battle!`, - }, - "victory": { - 1: `You've got me beat… - $Your desire and the noble way your Pokémon battled for you… - $I even felt thrilled during our match. That was a very good battle.`, - }, - "defeat": { - 1: `It was not shocking at all… - $That is not what I wanted!`, - } - }, - "burgh": { - "encounter": { - 1: `M'hm… If I win this battle, I feel like I can draw a picture unlike any before it. - $OK! I can hear my battle muse loud and clear. Let's get straight to it!`, - 2: `Of course, I'm really proud of all of my Pokémon! - $Well now… Let's get right to it!` - }, - "victory": { - 1: "Is it over? Has my muse abandoned me?", - 2: "Hmm… It's over! You're incredible!" - }, - "defeat": { - 1: "Wow… It's beautiful somehow, isn't it…", - 2: `Sometimes I hear people say something was an ugly win. - $I think if you're trying your best, any win is beautiful.` - } - }, - "elesa": { - "encounter": { - 1: `C'est fini! When I'm certain of that, I feel an electric jolt run through my body! - $I want to feel the sensation, so now my beloved Pokémon are going to make your head spin!`, - }, - "victory": { - 1: "I meant to make your head spin, but you shocked me instead." - }, - "defeat": { - 1: "That was unsatisfying somehow… Will you give it your all next time?" - } - }, - "skyla": { - "encounter": { - 1: `It's finally time for a showdown! That means the Pokémon battle that decides who's at the top, right? - $I love being on the summit! 'Cause you can see forever and ever from high places! - $So, how about you and I have some fun?`, - }, - "victory": { - 1: "Being your opponent in battle is a new source of strength to me. Thank you!" - }, - "defeat": { - 1: "Win or lose, you always gain something from a battle, right?" - } - }, - "brycen": { - "encounter": { - 1: `There is also strength in being with other people and Pokémon. - $Receiving their support makes you stronger. I'll show you this power!`, - }, - "victory": { - 1: "The wonderful combination of you and your Pokémon! What a beautiful friendship!" - }, - "defeat": { - 1: "Extreme conditions really test you and train you!" - } - }, - "drayden": { - "encounter": { - 1: `What I want to find is a young Trainer who can show me a bright future. - $Let's battle with everything we have: your skill, my experience, and the love we've raised our Pokémon with!`, - }, - "victory": { - 1: "This intense feeling that floods me after a defeat… I don't know how to describe it." - }, - "defeat": { - 1: "Harrumph! I know your ability is greater than that!" - } - }, - "grant": { - "encounter": { - 1: `There is only one thing I wish for. - $That by surpassing one another, we find a way to even greater heights.`, - }, - "victory": { - 1: "You are a wall that I am unable to surmount!" - }, - "defeat": { - 1: `Do not give up. - $That is all there really is to it. - $The most important lessons in life are simple.`, - } - }, - "korrina": { - "encounter": { - 1: "Time for Lady Korrina's big appearance!" - }, - "victory": { - 1: "It's your very being that allows your Pokémon to evolve!" - }, - "defeat": { - 1: "What an explosive battle!" - } - }, - "clemont": { - "encounter": { - 1: "Oh! I'm glad that we got to meet!" - }, - "victory": { - 1: "Your passion for battle inspires me!" - }, - "defeat": { - 1: "Looks like my Trainer-Grow-Stronger Machine, Mach 2 is really working!" - } - }, - "valerie": { - "encounter": { - 1: `Oh, if it isn't a young Trainer… It is lovely to get to meet you like this. - $Then I suppose you have earned yourself the right to a battle, as a reward for your efforts. - $The elusive Fairy may appear frail as the breeze and delicate as a bloom, but it is strong.`, - }, - "victory": { - 1: "I hope that you will find things worth smiling about tomorrow…" - }, - "defeat": { - 1: "Oh goodness, what a pity…" - } - }, - "wulfric": { - "encounter": { - 1: `You know what? We all talk big about what you learn from battling and bonds and all that… - $But really, I just do it 'cause it's fun. - $Who cares about the grandstanding? Let's get to battling!`, - }, - "victory": { - 1: "Outstanding! I'm tough as an iceberg, but you smashed me through and through!" - }, - "defeat": { - 1: "Tussle with me and this is what happens!" - } - }, - "kabu": { - "encounter": { - 1: `Every Trainer and Pokémon trains hard in pursuit of victory. - $But that means your opponent is also working hard to win. - $In the end, the match is decided by which side is able to unleash their true potential.`, - }, - "victory": { - 1: "I'm glad I could battle you today!" - }, - "defeat": { - 1: "That's a great way for me to feel my own growth!" - } - }, - "bea": { - "encounter": { - 1: `Do you have an unshakable spirit that won't be moved, no matter how you are attacked? - $I think I'll just test that out, shall I?`, - }, - "victory": { - 1: "I felt the fighting spirit of your Pokémon as you led them in battle." - }, - "defeat": { - 1: "That was the best sort of match anyone could ever hope for." - } - }, - "opal": { - "encounter": { - 1: "Let me have a look at how you and your partner Pokémon behave!" - }, - "victory": { - 1: "Your pink is still lacking, but you're an excellent Trainer with excellent Pokémon." - }, - "defeat": { - 1: "Too bad for you, I guess." - } - }, - "bede": { - "encounter": { - 1: "I suppose I should prove beyond doubt just how pathetic you are and how strong I am." - }, - "victory": { - 1: "I see… Well, that's fine. I wasn't really trying all that hard anyway." - }, - "defeat": { - 1: "Not a bad job, I suppose." - } - }, - "gordie": { - "encounter": { - 1: "So, let's get this over with." - }, - "victory": { - 1: "I just want to climb into a hole… Well, I guess it'd be more like falling from here." - }, - "defeat": { - 1: "Battle like you always do, victory will follow!" - } - }, - "marnie": { - "encounter": { - 1: `The truth is, when all's said and done… I really just wanna become Champion for myself! - $So don't take it personal when I kick your butt!`, - }, - "victory": { - 1: "OK, so I lost… But I got to see a lot of the good points of you and your Pokémon!" - }, - "defeat": { - 1: "Hope you enjoyed our battle tactics." - } - }, - "raihan": { - "encounter": { - 1: "I'm going to defeat the Champion, win the whole tournament, and prove to the world just how strong the great Raihan really is!" - }, - "victory": { - 1: `I look this good even when I lose. - $It's a real curse. - $Guess it's time for another selfie!`, - }, - "defeat": { - 1: "Let's take a selfie to remember this." - } - }, - "brassius": { - "encounter": { - 1: "I assume you are ready? Let our collaborative work of art begin!" - }, - "victory": { - 1: "Ahhh…vant-garde!" - }, - "defeat": { - 1: "I will begin on a new piece at once!" - } - }, - "iono": { - "encounter": { - 1: `How're ya feelin' about this battle? - $... - $Let's get this show on the road! How strong is our challenger? - $I 'unno! Let's find out together!`, - }, - "victory": { - 1: "You're as flashy and bright as a 10,000,000-volt Thunderbolt, friendo!" - }, - "defeat": { - 1: "Your eyeballs are MINE!" - } - }, - "larry": { - "encounter": { - 1: "When all's said and done, simplicity is strongest." - }, - "victory": { - 1: "A serving of defeat, huh?" - }, - "defeat": { - 1: "I'll call it a day." - } - }, - "ryme": { - "encounter": { - 1: "Come on, baby! Rattle me down to the bone!" - }, - "victory": { - 1: "You're cool, my friend—you move my SOUL!" - }, - "defeat": { - 1: "Later, baby!" - } - }, - "grusha": { - "encounter": { - 1: "All I need to do is make sure the power of my Pokémon chills you to the bone!" - }, - "victory": { - 1: "Your burning passion… I kinda like it, to be honest." - }, - "defeat": { - 1: "Things didn't heat up for you." - } - }, - "marnie_elite": { - "encounter": { - 1: "You've made it this far, huh? Let's see if you can handle my Pokémon!", - 2: "I'll give it my best shot, but don't think I'll go easy on you!" - }, - "victory": { - 1: "I can't believe I lost... But you deserved that win. Well done!", - 2: "Looks like I've still got a lot to learn. Great battle, though!" - }, - "defeat": { - 1: "You put up a good fight, but I've got the edge! Better luck next time!", - 2: "Seems like my training's paid off. Thanks for the battle!" - } - }, - "nessa_elite": { - "encounter": { - 1: "The tides are turning in my favor. Ready to get swept away?", - 2: "Let's make some waves with this battle! I hope you're prepared!" - }, - "victory": { - 1: "You navigated those waters perfectly... Well done!", - 2: "Looks like my currents were no match for you. Great job!" - }, - "defeat": { - 1: "Water always finds a way. That was a refreshing battle!", - 2: "You fought well, but the ocean's power is unstoppable!" - } - }, - "bea_elite": { - "encounter": { - 1: "Prepare yourself! My fighting spirit burns bright!", - 2: "Let's see if you can keep up with my relentless pace!" - }, - "victory": { - 1: "Your strength... It's impressive. You truly deserve this win.", - 2: "I've never felt this intensity before. Amazing job!" - }, - "defeat": { - 1: "Another victory for my intense training regimen! Well done!", - 2: "You've got strength, but I trained harder. Great battle!" - } - }, - "allister_elite": { - "encounter": { - 1: "Shadows fall... Are you ready to face your fears?", - 2: "Let's see if you can handle the darkness that I command." - }, - "victory": { - 1: "You've dispelled the shadows... For now. Well done.", - 2: "Your light pierced through my darkness. Great job." - }, - "defeat": { - 1: "The shadows have spoken... Your strength isn't enough.", - 2: "Darkness triumphs... Maybe next time you'll see the light." - } - }, - "raihan_elite": { - "encounter": { - 1: "Storm's brewing! Let's see if you can weather this fight!", - 2: "Get ready to face the eye of the storm!" - }, - "victory": { - 1: "You've bested the storm... Incredible job!", - 2: "You rode the winds perfectly... Great battle!" - }, - "defeat": { - 1: "Another storm weathered, another victory claimed! Well fought!", - 2: "You got caught in my storm! Better luck next time!" - } - }, - "rival": { - "encounter": { - 1: `@c{smile}Ah, je te cherchais ! Je savais que t’étais pressée de partir, mais je m’attendais quand même à un au revoir… - $@c{smile_eclosed}T’as finalement décidé de réaliser ton rêve ?\nJ’ai peine à y croire. - $@c{serious_smile_fists}Vu que t’es là, ça te dis un petit combat ?\nJe voudrais quand même m’assurer que t’es prête. - $@c{serious_mopen_fists}Surtout ne te retiens pas et donne-moi tout ce que t’as !` - }, - "victory": { - 1: `@c{shock}Wah… Tu m’as vraiment lavé.\nT’es vraiment une débutante ? - $@c{smile}T’as peut-être eu de la chance, mais…\nPeut-être que t’arriveras jusqu’au bout du chemin. - $D’ailleurs, le prof m’a demandé de te filer ces objets.\nIls ont l’air sympas. - $@c{serious_smile_fists}Bonne chance à toi ! - $@c{smile}Oh, et profite bien de l’évènement !` - }, - }, - "rival_female": { - "encounter": { - 1: `@c{smile_wave}Ah, je te cherchais ! Je t’ai cherchée partout !\n@c{angry_mopen}On oublie de dire au revoir à sa meilleure amie ? - $@c{smile_ehalf}T’as décidé de réaliser ton rêve, hein ?\nCe jour est donc vraiment arrivé… - $@c{smile}Je veux bien te pardonner de m’avoir oubliée,\nà une conditon. @c{smile_wave_wink}Que tu m’affronte ! - $@c{angry_mopen}Donne tout ! Ce serait dommage que ton aventure finisse avant d’avoir commencé, hein ?` - }, - "victory": { - 1: `@c{shock}Tu viens de commencer et t’es déjà si forte ?!@d{96}\n@c{angry}T’as triché non ? Avoue ! - $@c{smile_wave_wink}J’déconne !@d{64} @c{smile_eclosed}J’ai perdu dans les règles…\nJ’ai le sentiment que tu vas très bien t’en sortir. - $@c{smile}D’ailleurs, le prof veut que je te donne ces quelques objets. Ils te seront utiles, pour sûr ! - $@c{smile_wave}Fais de ton mieux, comme toujours !\nJe crois fort en toi ! - $@c{smile}Oh, et profite bien de l’évènement !` - }, - }, - "rival_2": { - "encounter": { - 1: `@c{smile}Hé, toi aussi t’es là ?\n@c{smile_eclosed}Toujours invaincue, hein… ? - $@c{serious_mopen_fists}Je sais que j’ai l’air de t’avoir suivie ici, mais c’est pas complètement vrai. - $@c{serious_smile_fists}Pour être honnête, ça me démangeait d’avoir une revanche depuis que tu m’as battu. - $Je me suis beaucoup entrainé, alors sois sure que je vais pas retenir mes coups cette fois. - $@c{serious_mopen_fists}Et comme la dernière fois, ne te retiens pas !\nC’est parti !` - }, - "victory": { - 1: `@c{neutral_eclosed}Oh. Je crois que j’ai trop pris la confiance. - $@c{smile}Pas grave, c’est OK. Je me doutais que ça arriverait.\n@c{serious_mopen_fists}Je vais juste devoir encore plus m’entrainer !\n - $@c{smile}Ah, et pas que t’aies réellement besoin d’aide, mais j’ai ça en trop sur moi qui pourrait t’intéresser.\n - $@c{serious_smile_fists}Mais n’espère plus en avoir d’autres !\nJe peux pas passer mon temps à aider mon adversaire. - $@c{smile}Bref, prends soin de toi et profite bien de l’évènement !` - }, - }, - "rival_2_female": { - "encounter": { - 1: `@c{smile_wave}Hé, sympa de te croiser ici. T’as toujours l’air invaincue. @c{angry_mopen}Eh… Pas mal ! - $@c{angry_mopen}Je sais à quoi tu penses et non, je t’espionne pas.\n@c{smile_eclosed}C’est juste que j’étais aussi dans le coin. - $@c{smile_ehalf}Heureuse pour toi, mais je veux juste te rappeler que c’est pas grave de perdre parfois. - $@c{smile}On apprend de nos erreurs, souvent plus que si on ne connaissait que le succès. - $@c{angry_mopen}Dans tous les cas je me suis bien entrainée pour cette revanche, t’as intérêt à tout donner !` - }, - "victory": { - 1: `@c{neutral}Je… J’étais pas encore supposée perdre… - $@c{smile}Bon. Ça veut juste dire que je vais devoir encore plus m’entrainer ! - $@c{smile_wave}J’ai aussi ça en rab pour toi !\n@c{smile_wave_wink}Inutile de me remercier ~. - $@c{angry_mopen}C’était le dernier, terminé les cadeaux après celui-là ! - $@c{smile_wave}Allez, tiens le coup et profite bien de l’évènement !` - }, - "defeat": { - 1: "Je suppose que c’est parfois normal de perdre…" - } - }, - "rival_3": { - "encounter": { - 1: `@c{smile}Hé, mais qui voilà ! Ça fait un bail.\n@c{neutral}T’es… toujours invaincue ? Incroyable. - $@c{neutral_eclosed}Tout est devenu un peu… étrange.\nC’est plus pareil sans toi au village. - $@c{serious}Je sais que c’est égoïste, mais j’ai besoin d’expier ça.\n@c{neutral_eclosed}Je crois que tout ça te dépasse. - $@c{serious}Ne jamais perdre, c’est juste irréaliste.\nGrandir, c’est parfois aussi savoir perdre. - $@c{neutral_eclosed}T’as un beau parcours, mais il y a encore tellement à venir et ça va pas s’arranger. @c{neutral}T’es prête pour ça ? - $@c{serious_mopen_fists}Si tu l’es, alors prouve-le.` - }, - "victory": { - 1: "@c{angry_mhalf}C’est lunaire… J’ai presque fait que m’entrainer…\nAlors pourquoi il y a encore un tel écart entre nous ?" - }, - }, - "rival_3_female": { - "encounter": { - 1: `@c{smile_wave}Ça fait une éternité ! Toujours debout hein ?\n@c{angry}Tu commences à me pousser à bout là. @c{smile_wave_wink}T’inquiètes j’déconne ! - $@c{smile_ehalf}Mais en vrai, ta maison te manque pas ? Ou… Moi ?\nJ… Je veux dire… Tu me manques vraiment beaucoup. - $@c{smile_eclosed}Je te soutiendrai toujours dans tes ambitions, mais la vérité est que tu finiras par perdre un jour ou l’autre. - $@c{smile}Quand ça arrivera, je serai là pour toi, comme toujours.\n@c{angry_mopen}Maintenant, montre-moi à quel point t’es devenue forte !` - }, - "victory": { - 1: "@c{shock}Après tout ça… Ça te suffit toujours pas… ?\nTu reviendras jamais à ce rythme…" - - }, - "defeat": { - 1: "T’as fait de ton mieux.\nAllez, rentrons à la maison." - } - }, - "rival_4": { - "encounter": { - 1: `@c{neutral}Hé. - $Je vais pas y aller par quatre chemins avec toi.\n@c{neutral_eclosed}Je suis là pour gagner. Simple, basique. - $@c{serious_mhalf_fists}J’ai appris à maximiser tout mon potentiel en m’entrainant d’arrachepied. - $@c{smile}C’est fou tout le temps que tu peux te dégager si tu dors pas en sacrifiant ta vie sociale. - $@c{serious_mopen_fists}Plus rien n’a d’importance désormais, pas tant que j’aurai pas gagné. - $@c{neutral_eclosed}J’ai atteint un stade où je ne peux plus perdre.\n@c{smile_eclosed}Je présume que ta philosophie était pas si fausse finalement. - $@c{angry_mhalf}La défaite, c’est pour les faibles, et je ne suis plus un faible. - $@c{serious_mopen_fists}Tiens-toi prête.` - }, - "victory": { - 1: "@c{neutral}Que…@d{64} Qui es-tu ?" - }, - }, - "rival_4_female": { - "encounter": { - 1: `@c{neutral}C’est moi ! Tu m’as pas encore oubliée… n’est-ce pas ? - $@c{smile}Tu devrais être fière d’être arrivée aussi loin. GG !\nMais c’est certainement pas la fin de ton aventure. - $@c{smile_eclosed}T’as éveillé en moi quelque chose que j’ignorais.\nTout mon temps passe dans l’entrainement. - $@c{smile_ehalf}Je dors et je mange à peine, je m’entraine juste tous les jours, et deviens de plus en plus forte. - $@c{neutral}En vrai, Je… J’ai de la peine à me reconnaitre. - $Mais maintenant, je suis au top de mes capacités.\nJe doute que tu sois de nouveau capable de me battre. - $Et tu sais quoi ? Tout ça, c’est de ta faute.\n@c{smile_ehalf}Et j’ignore si je dois te remercier ou te haïr. - $@c{angry_mopen}Tiens-toi prête.` - }, - "victory": { - 1: "@c{neutral}Que…@d{64} Qui es-tu ?" - - }, - "defeat": { - 1: "$@c{smile}Tu devrais être fière d’être arrivé jusque là." - } - }, - "rival_5": { - "encounter": { - 1: "@c{neutral}…" - }, - "victory": { - 1: "@c{neutral}…" - }, - }, - "rival_5_female": { - "encounter": { - 1: "@c{neutral}…" - }, - "victory": { - 1: "@c{neutral}…" - - }, - "defeat": { - 1: "$@c{smile_ehalf}…" - } - }, - "rival_6": { - "encounter": { - 1: `@c{smile_eclosed}Nous y revoilà. - $@c{neutral}J’ai eu du temps pour réfléchir à tout ça.\nIl y a une raison à pourquoi tout semble étrange. - $@c{neutral_eclosed}Ton rêve, ma volonté de te battre…\nFont partie de quelque chose de plus grand. - $@c{serious}C’est même pas à propos de moi, ni de toi… Mais du monde, @c{serious_mhalf_fists}et te repousser dans tes limites est ma mission. - $@c{neutral_eclosed}J’ignore si je serai capable de l’accomplir, mais je ferai tout ce qui est en mon pouvoir. - $@c{neutral}Cet endroit est terrifiant… Et pourtant il m’a l’air familier, comme si j’y avais déjà mis les pieds. - $@c{serious_mhalf_fists}Tu ressens la même chose, pas vrai ? - $@c{serious}… et c’est comme si quelque chose ici me parlait. - $Comme si c’était tout ce que ce monde avait toujours connu. - $Ces précieux moments ensemble semblent si proches ne sont rien de plus qu’un lointain souvenir. - $@c{neutral_eclosed}D’ailleurs, qui peut dire aujourd’hui qu’ils ont pu être réels ? - $@c{serious_mopen_fists}Il faut que tu persévères. Si tu t’arrêtes, ça n'aura jamais de fin et t’es la seule à en être capable. - $@c{serious_smile_fists}Difficile de comprendre le sens de tout ça, je sais juste que c’est la réalité. - $@c{serious_mopen_fists}Si tu ne parviens à pas me battre ici et maintenant, tu n’as aucune chance.` - }, - "victory": { - 1: `@c{smile_eclosed}J’ai fait ce que j’avais à faire. - $Promets-moi juste une chose.\n@c{smile}Après avoir réparé ce monde… Rentre à la maison.` - }, - }, - "rival_6_female": { - "encounter": { - 1: `@c{smile_ehalf}C’est donc encore entre toi et moi. - $@c{smile_eclosed}Tu sais, j’ai beau retouner ça dans tous les sens… - $@c{smile_ehalf}Quelque chose peut expliquer tout ça, pourquoi tout semble si étrange… - $@c{smile}T’as tes rêves, j’ai mes ambitions… - $J’ai juste le sentiment qu’il y a un grand dessein derrière tout ça, derrière ce qu’on fait toi et moi. - $@c{smile_eclosed}Je crois que mon but est de… repousser tes limites. - $@c{smile_ehalf}Je suis pas certaine de bien être douée à cet exercice, mais je fais de mon mieux. - $Cet endroit épouvantable cache quelque chose d’étrange… Tout semble si limpide… - $Comme… si c’était tout ce que ce monde avait toujours connu. - $@c{smile_eclosed}J’ai le sentiment que nos précieux moments ensemble sont devenus si flous. - $@c{smile_ehalf}Ont-ils au moins été réels ? Tout semble si loin maintenant… - $@c{angry_mopen}Il faut que tu persévères. Si tu t’arrêtes, ça n’aura jamais de fin et t’es le seul à en être capable. - $@c{smile_ehalf}Je… j’ignore le sens de tout ça… Mais je sais que c’est la réalité. - $@c{neutral}Si tu ne parviens pas à me battre ici et maintenant, tu n’as aucune chance.` - }, - "victory": { - 1: `@c{smile_ehalf}Je… Je crois que j’ai rempli ma mission… - $@c{smile_eclosed}Promets-moi… Après avoir réparé ce monde… Reviens à la maison saine et sauve. - $@c{smile_ehalf}… Merci.` - - }, - }, -}; - -// Dialogue of the endboss of the game when the player character is male (Or unset) -export const PGMbattleSpecDialogue: SimpleTranslationEntries = { - "encounter": `Une fois de plus, te revoilà.\nSais-tu que ce n’est point là ta première venue ? - $Tu as été appelé ici parce que t’y es déjà venu.\nUn nombre inimaginable de fois. - $Mais allons-y, faisons le décompte.\nTu en es très précisément à ton {{cycleCount}}e cycle. - $Chaque cycle réinitialise ton souvenir du précédent.\nMais étrangement, des bribes subsistent en toi. - $Jusqu’à maintenant, tu as toujours échoué. Mais je ressens quelque chose de différent cette fois-ci.\n - $Tu es la seule présence ici, bien que j’ai le sentiment d’en ressentir… une autre. - $Vas-tu enfin me livrer un affrontement digne de ce nom ?\nCe challenge dont je rêve depuis un millénaire ? - $Commençons.`, - "firstStageWin": `Je vois. Cette présence était bien réelle.\nJe n’ai donc plus besoin de retenir mes coups. - $Ne me déçoit pas.`, - "secondStageWin": "… Magnifique." -}; - -// Dialogue of the endboss of the game when the player character is female. For languages that do not have gendered pronouns, this can be set to PGMbattleSpecDialogue. -export const PGFbattleSpecDialogue: SimpleTranslationEntries = { - "encounter": `Une fois de plus, te revoilà.\nSais-tu que ce n’est point là ta première venue ? - $Tu as été appelée ici parce que t’y es déjà venue.\nUn nombre inimaginable de fois. - $Mais allons-y, faisons le décompte.\nTu en es très précisément à ton {{cycleCount}}e cycle. - $Chaque cycle réinitialise ton souvenir du précédent.\nMais étrangement, des bribes subsistent en toi. - $Jusqu’à maintenant, tu as toujours échoué. Mais je ressens quelque chose de différent cette fois-ci.\n - $Tu es la seule présence ici, bien que j’ai le sentiment d’en ressentir… une autre. - $Vas-tu enfin me livrer un affrontement digne de ce nom ?\nCe challenge dont je rêve depuis un millénaire ? - $Commençons.`, - "firstStageWin": `Je vois. Cette présence était bien réelle.\nJe n’ai donc plus besoin de retenir mes coups. - $Ne me déçoit pas.`, - "secondStageWin": "… Magnifique." -}; - -// Dialogue that does not fit into any other category (e.g. tutorial messages, or the end of the game). For when the player character is male -export const PGMmiscDialogue: SimpleTranslationEntries = { - "ending": - `@c{smile}Oh ? T’as gagné ?@d{96} @c{smile_eclosed}J’aurais dû le savoir.\nMais de voilà de retour. - $@c{smile}C’est terminé.@d{64} T’as brisé ce cycle infernal. - $@c{serious_smile_fists}T’as aussi accompli ton rêve non ?\nTu n’as pas connu la moindre défaite. - $@c{neutral}Je suis le seul à me souvenir de ce que t’as fait.@d{96}\nJe pense que ça ira, non ? - $@c{serious_smile_fists}Ta légende vivra à jamais dans nos cœurs. - $@c{smile_eclosed}Bref, j’en ai un peu marre de ce endroit, pas toi ? Rentrons à la maison. - $@c{serious_smile_fists}On se fera un p’tit combat une fois rentrés ?\nSi t’es d’accord.`, - "ending_female": - `@c{shock}T’es revenu ?@d{32} Ça veut dire…@d{96} que t’as gagné ?!\n@c{smile_ehalf}J’aurais dû le savoir. - $@c{smile_eclosed}Bien sûr… J’ai toujours eu ce sentiment.\n@c{smile}C’est fini maitenant hein ? T’as brisé ce cycle. - $@c{smile_ehalf}T’as aussi accompli ton rêve non ?\nTu n’as pas connu la moindre défaite. - $Je serai la seule à me souvenir de ce que t’as fait.\n@c{angry_mopen}Je tâcherai de ne pas oublier ! - $@c{smile_wave_wink}J’déconne !@d{64} @c{smile}Jamais j’oublierai.@d{32}\nTa légende vivra à jamais dans nos cœurs. - $@c{smile_wave}Bon,@d{64} il se fait tard…@d{96} je crois ?\nDifficile à dire ici. - $Rentrons, @c{smile_wave_wink}et demain on se fera un p’tit combat, comme au bon vieux temps ?`, -}; -// Dialogue that does not fit into any other category (e.g. tutorial messages, or the end of the game). For when the player character is female. For languages that do not have gendered pronouns, this can be set to PGMmiscDialogue. -export const PGFmiscDialogue: SimpleTranslationEntries = PGMmiscDialogue; - - -// Dialogue of the named double battles in the game. For when the player is male (or unset). -export const PGMdoubleBattleDialogue: DialogueTranslationEntries = { - "blue_red_double": { - "encounter": { - 1: `Blue : Hé Red, montrons-leur de quel bois on se chauffe ! - $Red : … - $Blue : Voilà la puissance du Bourg Palette !`, - }, - "victory": { - 1: `Blue : C’était un magnifique combat ! - $Red : …`, - }, - }, - "red_blue_double": { - "encounter": { - 1: `Red : … ! - $Blue : Il est pas très loquace. - $Blue : Mais ne te laisse pas avoir, ça reste un Maitre Pokémon !`, - }, - "victory": { - 1: `Red : … ! - $Blue : La prochaine fois, on va te battre !`, - }, - }, - "tate_liza_double": { - "encounter": { - 1: `Lévy : Héhéhé… Tu en fais une drôle de tête. - $Tatia : Tu ne t’attendais pas à rencontrer deux Champions, n’est-ce pas ? - $Lévy : Nous sommes des jumeaux ! - $Tatia : Nous n’avons pas besoin de parler entre nous ! - $Lévy : Tu crois pouvoir briser… - $Tatia : … Notre duo parfait ?`, - }, - "victory": { - 1: `Lévy : Quoi ? Notre combinaison était parfaite ! - $Tatia : Nous avons encore besoin d’entrainement…`, - }, - }, - "liza_tate_double": { - "encounter": { - 1: `Tatia : Hihih… Si tu voyais ta tête ! - $Lévy : Oui, nous sommes deux Champions en un ! - $Tatia : Voici mon frère, Lévy… - $Lévy : … Et ma sœur, Tatia ! - $Tatia : Tu ne penses pas que notre combinaison est parfaite ?` - }, - "victory": { - 1: `Tatia : Quoi ? Notre combinaison… - $Lévy : … a échoué !`, - }, - }, - "wallace_steven_double": { - "encounter": { - 1: `Pierre R. : Marc, montrons-lui la puissance des Maitres ! - $Marc : Tu vas gouter au pouvoir de Hoenn ! - $Pierre R. : C’est parti !`, - }, - "victory": { - 1: `Pierre R. : C’était un beau combat ! - $Marc : Ce sera notre tour la prochaine fois !`, - }, - }, - "steven_wallace_double": { - "encounter": { - 1: `Pierre R. : Excuse-moi, aurais-tu des Pokémon rares ? - $Marc : Pierre… Nous sommes là pour nous battre, pas pour frimer avec nos Pokémon. - $Pierre R. : Oh… Je vois… Commençons alors !`, - }, - "victory": { - 1: `Pierre R. : Bien, maintenant que ce combat est clos, montrons-nous nos Pokémon ! - $Marc : Pierre…`, - }, - }, - "alder_iris_double": { - "encounter": { - 1: `Goyah : Nous sommes l’élite des Dresseurs d’Unys ! - $Iris : Rien de mieux que des combats contre des prodiges !`, - }, - "victory": { - 1: `Goyah : INCROYABLE ! T’es trop doué ! - $Iris : On gagnera la prochaine fois !`, - }, - }, - "iris_alder_double": { - "encounter": { - 1: `Iris : Bienvenue, Dresseur ! Je suis LA Maitresse d’Unys ! - $Goyah : Iris, concentre-toi s’il te plait…`, - }, - "victory": { - 1: `Iris : On a tout donné et pourtant… - $Goyah : Cette défaite ne pourra que nous être bénéfique !`, - }, - }, - "piers_marnie_double": { - "encounter": { - 1: `Rosemary : Frérot, montrons-lui la puissance de Smashings ! - $Peterson : Nous sommes les ténèbres !`, - }, - "victory": { - 1: `Rosemary : T’as amené la lumière dans les ténèbres ! - $Peterson : P’têtre un peu trop…`, - }, - }, - "marnie_piers_double": { - "encounter": { - 1: `Peterson : Chauds pour un concert ? - $Rosemary : Frérot… Il est pas là pour chanter, mais se battre…`, - }, - "victory": { - 1: `Peterson : Ça c’est du rock ! - $Rosemary : Frérot…`, - }, - }, -}; - -// Dialogue of the named double battles in the game. For when the player is female. For languages that do not have gendered pronouns, this can be set to PGMdoubleBattleDialogue. -export const PGFdoubleBattleDialogue: DialogueTranslationEntries = { - "blue_red_double": { - "encounter": { - 1: `Blue : Hé Red, montrons-leur de quel bois on se chauffe ! - $Red : … - $Blue : Voilà la puissance du Bourg Palette !`, - }, - "victory": { - 1: `Blue : C’était un magnifique combat ! - $Red : …`, - }, - }, - "red_blue_double": { - "encounter": { - 1: `Red : … ! - $Blue : Il est pas très loquace. - $Blue : Mais ne te laisse pas avoir, ça reste un Maitre Pokémon !`, - }, - "victory": { - 1: `Red : … ! - $Blue : La prochaine fois, on va te battre !`, - }, - }, - "tate_liza_double": { - "encounter": { - 1: `Lévy : Héhéhé… Tu en fais une drôle de tête. - $Tatia : Tu ne t’attendais pas à rencontrer deux Champions, n’est-ce pas ? - $Lévy : Nous sommes des jumeaux ! - $Tatia : Nous n’avons pas besoin de parler entre nous ! - $Lévy : Tu crois pouvoir briser… - $Tatia : … Notre duo parfait ?`, - }, - "victory": { - 1: `Lévy : Quoi ? Notre combinaison était parfaite ! - $Tatia : Nous avons encore besoin d’entrainement…`, - }, - }, - "liza_tate_double": { - "encounter": { - 1: `Tatia : Hihih… Si tu voyais ta tête ! - $Lévy : Oui, nous sommes deux Champions en un ! - $Tatia : Voici mon frère, Lévy… - $Lévy : … Et ma sœur, Tatia ! - $Tatia : Tu ne penses pas que notre combinaison est parfaite ?` - }, - "victory": { - 1: `Tatia : Quoi ? Notre combinaison… - $Lévy : … a échoué !`, - }, - }, - "wallace_steven_double": { - "encounter": { - 1: `Pierre R. : Marc, montrons-lui la puissance des Maitres ! - $Marc : Tu vas gouter au pouvoir de Hoenn ! - $Pierre R. : C’est parti !`, - }, - "victory": { - 1: `Pierre R. : C’était un beau combat ! - $Marc : Ce sera notre tour la prochaine fois !`, - }, - }, - "steven_wallace_double": { - "encounter": { - 1: `Pierre R. : Excuse-moi, aurais-tu des Pokémon rares ? - $Marc : Pierre… Nous sommes là pour nous battre, pas pour frimer avec nos Pokémon. - $Pierre R. : Oh… Je vois… Commençons alors !`, - }, - "victory": { - 1: `Pierre R. : Bien, maintenant que ce combat est clos, montrons-nous nos Pokémon ! - $Marc : Pierre…`, - }, - }, - "alder_iris_double": { - "encounter": { - 1: `Goyah : Nous sommes l’élite des Dresseurs d’Unys ! - $Iris : Rien de mieux que des combats contre des prodiges !`, - }, - "victory": { - 1: `Goyah : INCROYABLE ! T’es trop doué ! - $Iris : On gagnera la prochaine fois !`, - }, - }, - "iris_alder_double": { - "encounter": { - 1: `Iris : Bienvenue, Dresseur ! Je suis LA Maitresse d’Unys ! - $Goyah : Iris, concentre-toi s’il te plait…`, - }, - "victory": { - 1: `Iris : On a tout donné et pourtant… - $Goyah : Cette défaite ne pourra que nous être bénéfique !`, - }, - }, - "piers_marnie_double": { - "encounter": { - 1: `Rosemary : Frérot, montrons-lui la puissance de Smashings ! - $Peterson : Nous sommes les ténèbres !`, - }, - "victory": { - 1: `Rosemary : T’as amené la lumière dans les ténèbres ! - $Peterson : P’têtre un peu trop…`, - }, - }, - "marnie_piers_double": { - "encounter": { - 1: `Peterson : Chauds pour un concert ? - $Rosemary : Frérot… Elle est pas là pour chanter, mais se battre…`, - }, - "victory": { - 1: `Peterson : Ça c’est du rock ! - $Rosemary : Frérot…`, - }, - }, -}; diff --git a/src/locales/fr/egg.ts b/src/locales/fr/egg.json similarity index 57% rename from src/locales/fr/egg.ts rename to src/locales/fr/egg.json index f63ac3abb0d..64f22aa330d 100644 --- a/src/locales/fr/egg.ts +++ b/src/locales/fr/egg.json @@ -1,28 +1,26 @@ -import { SimpleTranslationEntries } from "#app/interfaces/locales"; - -export const egg: SimpleTranslationEntries = { +{ "egg": "Œuf", "greatTier": "Rare", "ultraTier": "Épique", "masterTier": "Légendaire", "defaultTier": "Commun", - "hatchWavesMessageSoon": "Il fait du bruit. Il va éclore !", + "hatchWavesMessageSoon": "Il fait du bruit. Il va éclore !", "hatchWavesMessageClose": "Il bouge de temps en temps. Il devrait bientôt éclore.", "hatchWavesMessageNotClose": "Qu’est-ce qui va en sortir ? Ça va mettre du temps.", - "hatchWavesMessageLongTime": "Cet Œuf va sûrement mettre du temps à éclore.", + "hatchWavesMessageLongTime": "Cet Œuf va surement mettre du temps à éclore.", "gachaTypeLegendary": "Taux de Légendaires élevé", "gachaTypeMove": "Taux de Capacité Œuf Rare élevé", "gachaTypeShiny": "Taux de Chromatiques élevé", "selectMachine": "Sélectionnez une machine.", - "notEnoughVouchers": "Vous n’avez pas assez de coupons !", - "tooManyEggs": "Vous avez trop d’Œufs !", + "notEnoughVouchers": "Vous n’avez pas assez de coupons !", + "tooManyEggs": "Vous avez trop d’Œufs !", "pull": "Tirage", "pulls": "Tirages", "sameSpeciesEgg": "{{species}} sortira de cet Œuf !", - "hatchFromTheEgg": "{{pokemonName}} sort de l’Œuf !", + "hatchFromTheEgg": "{{pokemonName}} sort de l’Œuf !", "eggMoveUnlock": "Capacité Œuf débloquée :\n{{moveName}}", "rareEggMoveUnlock": "Capacité Œuf Rare débloquée :\n{{moveName}}", - "moveUPGacha": "Bonus Capacité\nŒuf Rare !", - "shinyUPGacha": "Bonus\nChromatique !", - "legendaryUPGacha": "Bonus !", -} as const; + "moveUPGacha": "Bonus Capacité\nŒuf Rare !", + "shinyUPGacha": "Bonus\nChromatique !", + "legendaryUPGacha": "Bonus !" +} diff --git a/src/locales/fr/fight-ui-handler.json b/src/locales/fr/fight-ui-handler.json new file mode 100644 index 00000000000..e8b41661995 --- /dev/null +++ b/src/locales/fr/fight-ui-handler.json @@ -0,0 +1,7 @@ +{ + "pp": "PP", + "power": "Puissance", + "accuracy": "Précision", + "abilityFlyInText": " {{passive}}{{abilityName}}\nde {{pokemonName}}", + "passive": "Passif " +} \ No newline at end of file diff --git a/src/locales/fr/fight-ui-handler.ts b/src/locales/fr/fight-ui-handler.ts deleted file mode 100644 index 8bcf7732626..00000000000 --- a/src/locales/fr/fight-ui-handler.ts +++ /dev/null @@ -1,9 +0,0 @@ -import { SimpleTranslationEntries } from "#app/interfaces/locales"; - -export const fightUiHandler: SimpleTranslationEntries = { - "pp": "PP", - "power": "Puissance", - "accuracy": "Précision", - "abilityFlyInText": " {{passive}}{{abilityName}}\nde {{pokemonName}}", - "passive": "Passif ", // The space at the end is important -} as const; diff --git a/src/locales/fr/filter-bar.ts b/src/locales/fr/filter-bar.json similarity index 88% rename from src/locales/fr/filter-bar.ts rename to src/locales/fr/filter-bar.json index b5e7ef3b333..9436933ad6d 100644 --- a/src/locales/fr/filter-bar.ts +++ b/src/locales/fr/filter-bar.json @@ -1,6 +1,4 @@ -import { SimpleTranslationEntries } from "#app/interfaces/locales"; - -export const filterBar: SimpleTranslationEntries = { +{ "genFilter": "Gen", "typeFilter": "Type", "caughtFilter": "Capturés", @@ -36,5 +34,5 @@ export const filterBar: SimpleTranslationEntries = { "sortByCost": "Par cout", "sortByCandies": "Par bonbons", "sortByIVs": "Par IV", - "sortByName": "Par nom", -}; + "sortByName": "Par nom" +} \ No newline at end of file diff --git a/src/locales/fr/game-mode.json b/src/locales/fr/game-mode.json new file mode 100644 index 00000000000..73a8d9c60f9 --- /dev/null +++ b/src/locales/fr/game-mode.json @@ -0,0 +1,8 @@ +{ + "classic": "Classique", + "endless": "Infini", + "endlessSpliced": "Infini (Fusions)", + "dailyRun": "Défi du jour", + "unknown": "Inconnu", + "challenge": "Challenge" +} diff --git a/src/locales/fr/game-mode.ts b/src/locales/fr/game-mode.ts deleted file mode 100644 index ad4481b4953..00000000000 --- a/src/locales/fr/game-mode.ts +++ /dev/null @@ -1,10 +0,0 @@ -import { SimpleTranslationEntries } from "#app/interfaces/locales"; - -export const gameMode: SimpleTranslationEntries = { - "classic": "Classique", - "endless": "Infini", - "endlessSpliced": "Infini (Fusions)", - "dailyRun": "Défi du jour", - "unknown": "Inconnu", - "challenge": "Challenge", -} as const; diff --git a/src/locales/fr/game-stats-ui-handler.ts b/src/locales/fr/game-stats-ui-handler.json similarity index 87% rename from src/locales/fr/game-stats-ui-handler.ts rename to src/locales/fr/game-stats-ui-handler.json index 6d6bcd370d2..16221ab7e08 100644 --- a/src/locales/fr/game-stats-ui-handler.ts +++ b/src/locales/fr/game-stats-ui-handler.json @@ -1,44 +1,42 @@ -import { SimpleTranslationEntries } from "#app/interfaces/locales"; - -export const gameStatsUiHandler: SimpleTranslationEntries = { - "stats": "Statistiques", - "playTime": "Temps de jeu", - "totalBattles": "Total combats", - "shinyStarters": "Starters chroma", - "starters": "Starters", - "speciesSeen": "Espèces vues", - "speciesCaught": "Espèces capt.", - "ribbonsOwned": "Rubans possédés", - "classicRuns": "Parties en Classique", - "classicWins": "Victoires en Classique", - "dailyRunAttempts": "Essais Défi du jour", - "dailyRunWins": "Victoires Défi du jour", - "endlessRuns": "Parties en Infini", - "highestWaveEndless": "Record vagues (Infini)", - "highestMoney": "Record d’argent", - "highestDamage": "Record de dégâts", - "highestHPHealed": "Record PV soignés", - "pokemonEncountered": "Pokémon rencontrés", - "pokemonDefeated": "Pokémon battus", - "pokemonCaught": "Pokémon capturés", - "eggsHatched": "Œufs éclos", - "subLegendsSeen": "Semi-légendaires vus", - "subLegendsCaught": "Semi-légendaires capt.", - "subLegendsHatched": "Semi-légendaires éclos", - "legendsSeen": "Legendaires vus", - "legendsCaught": "Légendaires capt.", - "legendsHatched": "Légendaires éclos", - "mythicalsSeen": "Fabuleux vus", - "mythicalsCaught": "Fabuleux capt.", - "mythicalsHatched": "Fabuleux éclos", - "shiniesSeen": "Chromatiques vus", - "shiniesCaught": "Chromatiques capt.", - "shiniesHatched": "Chromatiques éclos", - "pokemonFused": "Pokémon fusionnés", - "trainersDefeated": "Dresseurs battus", - "eggsPulled": "Œufs obtenus", - "rareEggsPulled": "Œufs Rares", - "epicEggsPulled": "Œufs Épiques", - "legendaryEggsPulled": "Œufs Légendaires", - "manaphyEggsPulled": "Œufs de Manaphy", -} as const; +{ + "stats": "Statistiques", + "playTime": "Temps de jeu", + "totalBattles": "Total combats", + "shinyStarters": "Starters chroma", + "starters": "Starters", + "speciesSeen": "Espèces vues", + "speciesCaught": "Espèces capt.", + "ribbonsOwned": "Rubans possédés", + "classicRuns": "Parties en Classique", + "classicWins": "Victoires en Classique", + "dailyRunAttempts": "Essais Défi du jour", + "dailyRunWins": "Victoires Défi du jour", + "endlessRuns": "Parties en Infini", + "highestWaveEndless": "Record vagues (Infini)", + "highestMoney": "Record d’argent", + "highestDamage": "Record de dégâts", + "highestHPHealed": "Record PV soignés", + "pokemonEncountered": "Pokémon rencontrés", + "pokemonDefeated": "Pokémon battus", + "pokemonCaught": "Pokémon capturés", + "eggsHatched": "Œufs éclos", + "subLegendsSeen": "Semi-légendaires vus", + "subLegendsCaught": "Semi-légendaires capt.", + "subLegendsHatched": "Semi-légendaires éclos", + "legendsSeen": "Legendaires vus", + "legendsCaught": "Légendaires capt.", + "legendsHatched": "Légendaires éclos", + "mythicalsSeen": "Fabuleux vus", + "mythicalsCaught": "Fabuleux capt.", + "mythicalsHatched": "Fabuleux éclos", + "shiniesSeen": "Chromatiques vus", + "shiniesCaught": "Chromatiques capt.", + "shiniesHatched": "Chromatiques éclos", + "pokemonFused": "Pokémon fusionnés", + "trainersDefeated": "Dresseurs battus", + "eggsPulled": "Œufs obtenus", + "rareEggsPulled": "Œufs Rares", + "epicEggsPulled": "Œufs Épiques", + "legendaryEggsPulled": "Œufs Légendaires", + "manaphyEggsPulled": "Œufs de Manaphy" +} \ No newline at end of file diff --git a/src/locales/fr/growth.ts b/src/locales/fr/growth.json similarity index 55% rename from src/locales/fr/growth.ts rename to src/locales/fr/growth.json index f44913b7d60..4688e625cf7 100644 --- a/src/locales/fr/growth.ts +++ b/src/locales/fr/growth.json @@ -1,10 +1,8 @@ -import { SimpleTranslationEntries } from "#app/interfaces/locales"; - -export const growth: SimpleTranslationEntries = { +{ "Erratic": "Erratique", "Fast": "Rapide", "Medium_Fast": "Moyenne-Rapide", "Medium_Slow": "Moyenne-Lente", "Slow": "Lente", "Fluctuating": "Fluctuante" -} as const; +} \ No newline at end of file diff --git a/src/locales/fr/menu-ui-handler.ts b/src/locales/fr/menu-ui-handler.json similarity index 86% rename from src/locales/fr/menu-ui-handler.ts rename to src/locales/fr/menu-ui-handler.json index 823001f9e94..807b34f1315 100644 --- a/src/locales/fr/menu-ui-handler.ts +++ b/src/locales/fr/menu-ui-handler.json @@ -1,10 +1,8 @@ -import { SimpleTranslationEntries } from "#app/interfaces/locales"; - -export const menuUiHandler: SimpleTranslationEntries = { +{ "GAME_SETTINGS": "Paramètres", "ACHIEVEMENTS": "Succès", "STATS": "Statistiques", - "VOUCHERS": "Coupons", + "RUN_HISTORY": "Historique", "EGG_LIST": "Liste des Œufs", "EGG_GACHA": "Gacha-Œufs", "MANAGE_DATA": "Mes données", @@ -18,6 +16,8 @@ export const menuUiHandler: SimpleTranslationEntries = { "exportSlotSelect": "Sélectionnez l’emplacement depuis lequel exporter les données.", "importData": "Importer données", "exportData": "Exporter données", + "importRunHistory":"Importer historique", + "exportRunHistory":"Exporter historique", "consentPreferences": "Gérer les cookies", "linkDiscord": "Lier à Discord", "unlinkDiscord": "Délier Discord", @@ -26,4 +26,4 @@ export const menuUiHandler: SimpleTranslationEntries = { "cancel": "Retour", "losingProgressionWarning": "Vous allez perdre votre progression depuis le début du combat. Continuer ?", "noEggs": "Vous ne faites actuellement\néclore aucun Œuf !" -} as const; +} \ No newline at end of file diff --git a/src/locales/fr/menu.ts b/src/locales/fr/menu.json similarity index 91% rename from src/locales/fr/menu.ts rename to src/locales/fr/menu.json index 41927f83b1c..83626a1f33f 100644 --- a/src/locales/fr/menu.ts +++ b/src/locales/fr/menu.json @@ -1,6 +1,4 @@ -import { SimpleTranslationEntries } from "#app/interfaces/locales"; - -export const menu: SimpleTranslationEntries = { +{ "cancel": "Annuler", "continue": "Continuer", "dailyRun": "Défi du jour (Bêta)", @@ -44,14 +42,14 @@ export const menu: SimpleTranslationEntries = { "wave": "Vague", "loading": "Chargement…", "loadingAsset": "Chargement de la ressource : {{assetName}}", - "playersOnline": "Joueurs Connectés", - "yes":"Oui", - "no":"Non", + "playersOnline": "Joueurs connectés", + "yes": "Oui", + "no": "Non", "disclaimer": "AVERTISSEMENT", "disclaimerDescription": "Ce jeu n’est pas un produit fini et peut contenir des problèmes de jouabilité, dont de possibles pertes de sauvegardes,\ndes modifications sans avertissement et pourrait ou non encore être mis à jour ou terminé.", "choosePokemon": "Sélectionnez un Pokémon.", - "renamePokemon": "Renommer Pokémon", + "renamePokemon": "Renommer le Pokémon", "rename": "Renommer", "nickname": "Surnom", - "errorServerDown": "Oupsi ! Un problème de connexion au serveur est survenu.\n\nVous pouvez garder cette fenêtre ouverte,\nle jeu se reconnectera automatiquement.", -} as const; + "errorServerDown": "Oupsi ! Un problème de connexion au serveur est survenu.\n\nVous pouvez garder cette fenêtre ouverte,\nle jeu se reconnectera automatiquement." +} diff --git a/src/locales/fr/modifier-select-ui-handler.ts b/src/locales/fr/modifier-select-ui-handler.json similarity index 78% rename from src/locales/fr/modifier-select-ui-handler.ts rename to src/locales/fr/modifier-select-ui-handler.json index 7e3d4837e54..d1de2d222a8 100644 --- a/src/locales/fr/modifier-select-ui-handler.ts +++ b/src/locales/fr/modifier-select-ui-handler.json @@ -1,14 +1,12 @@ -import { SimpleTranslationEntries } from "#app/interfaces/locales"; - -export const modifierSelectUiHandler: SimpleTranslationEntries = { - "transfer": "Transférer", - "reroll": "Relancer", - "lockRarities": "Bloquer la rareté", - "checkTeam": "Consulter Équipe", - "transferDesc": "Transférer un objet tenu par un Pokémon vers un autre.", - "rerollDesc": "Payer pour relancer les objets gratuits proposés.", - "lockRaritiesDesc": "Assure la relance de proposer des objets gratuits de rareté égale ou supérieure. Affecte le cout de relance.", - "checkTeamDesc": "Consulter votre équipe ou utiliser un objet\nde changement de forme.", - "rerollCost": "{{formattedMoney}} ₽", - "itemCost": "{{formattedMoney}} ₽" -} as const; +{ + "transfer": "Transférer", + "reroll": "Relancer", + "lockRarities": "Bloquer la rareté", + "checkTeam": "Consulter Équipe", + "transferDesc": "Transférer un objet tenu par un Pokémon vers un autre.", + "rerollDesc": "Payer pour relancer les objets gratuits proposés.", + "lockRaritiesDesc": "Assure la relance de proposer des objets gratuits de rareté égale ou supérieure. Affecte le cout de relance.", + "checkTeamDesc": "Consulter votre équipe ou utiliser un objet\nde changement de forme.", + "rerollCost": "{{formattedMoney}} ₽", + "itemCost": "{{formattedMoney}} ₽" +} \ No newline at end of file diff --git a/src/locales/fr/modifier-type.json b/src/locales/fr/modifier-type.json new file mode 100644 index 00000000000..6d5cfb098ef --- /dev/null +++ b/src/locales/fr/modifier-type.json @@ -0,0 +1,455 @@ +{ + "ModifierType": { + "AddPokeballModifierType": { + "name": "{{pokeballName}} x{{modifierCount}}", + "description": "Recevez {{modifierCount}} {{pokeballName}}·s. (Inventaire : {{pokeballAmount}})\nTaux de capture : {{catchRate}}" + }, + "AddVoucherModifierType": { + "name": "{{voucherTypeName}} x{{modifierCount}}", + "description": "Recevez {{modifierCount}} {{voucherTypeName}}." + }, + "PokemonHeldItemModifierType": { + "extra": { + "inoperable": "{{pokemonName}} ne peut pas\nporter cet objet !", + "tooMany": "{{pokemonName}} porte trop\nd’exemplaires de cet objet !" + } + }, + "PokemonHpRestoreModifierType": { + "description": "Restaure {{restorePoints}} PV ou {{restorePercent}}% des PV totaux d’un Pokémon, en fonction duquel des deux est le plus élevé.", + "extra": { + "fully": "Restaure tous les PV d’un Pokémon.", + "fullyWithStatus": "Restaure tous les PV d’un Pokémon et soigne tous ses problèmes de statut." + } + }, + "PokemonReviveModifierType": { + "description": "Ranime un Pokémon et restaure {{restorePercent}}% de ses PV." + }, + "PokemonStatusHealModifierType": { + "description": "Soigne tous les problèmes de statut d’un Pokémon." + }, + "PokemonPpRestoreModifierType": { + "description": "Restaure {{restorePoints}} PP à une capacité d’un Pokémon.", + "extra": { + "fully": "Restaure tous les PP à une capacité d’un Pokémon." + } + }, + "PokemonAllMovePpRestoreModifierType": { + "description": "Restaure {{restorePoints}} PP à toutes les capacités d’un Pokémon.", + "extra": { + "fully": "Restaure tous les PP à toutes les capacités d’un Pokémon." + } + }, + "PokemonPpUpModifierType": { + "description": "Augmente le max de PP de {{upPoints}} à une capacité d’un Pokémon pour chaque 5 PP max (max : 3)." + }, + "PokemonNatureChangeModifierType": { + "name": "Aromate {{natureName}}", + "description": "Donne la nature {{natureName}} à un Pokémon et la débloque pour le starter lui étant lié." + }, + "DoubleBattleChanceBoosterModifierType": { + "description": "Double les chances de tomber sur un combat double pendant {{battleCount}} combats." + }, + "TempBattleStatBoosterModifierType": { + "description": "Augmente d’un cran {{tempBattleStatName}} pour toute l’équipe pendant 5 combats." + }, + "AttackTypeBoosterModifierType": { + "description": "Augmente de 20% la puissance des capacités de type {{moveType}} d’un Pokémon." + }, + "PokemonLevelIncrementModifierType": { + "description": "Fait monter un Pokémon de {{levels}} niveau·x." + }, + "AllPokemonLevelIncrementModifierType": { + "description": "Fait monter toute l’équipe de {{levels}} niveau·x." + }, + "PokemonBaseStatBoosterModifierType": { + "description": "Augmente de 10% {{statName}} de base de son porteur. Plus les IV sont hauts, plus il peut en porter." + }, + "AllPokemonFullHpRestoreModifierType": { + "description": "Restaure tous les PV de toute l’équipe." + }, + "AllPokemonFullReviveModifierType": { + "description": "Ranime et restaure tous les PV de tous les Pokémon K.O. ." + }, + "MoneyRewardModifierType": { + "description": "Octroie une {{moneyMultiplier}} somme d’argent.\n({{moneyAmount}} ₽)", + "extra": { + "small": "petite", + "moderate": "moyenne", + "large": "grande" + } + }, + "ExpBoosterModifierType": { + "description": "Augmente de {{boostPercent}}% le gain de Points d’Exp." + }, + "PokemonExpBoosterModifierType": { + "description": "Augmente de {{boostPercent}}% le gain de Points d’Exp du porteur." + }, + "PokemonFriendshipBoosterModifierType": { + "description": "Augmente le gain d’amitié de 50% par victoire." + }, + "PokemonMoveAccuracyBoosterModifierType": { + "description": "Augmente de {{accuracyAmount}} la précision des capacités (maximum 100)." + }, + "PokemonMultiHitModifierType": { + "description": "Frappe une fois de plus en échange d’une baisse de puissance de respectivement 60/75/82,5% par cumul." + }, + "TmModifierType": { + "name": "CT{{moveId}} - {{moveName}}", + "description": "Apprend la capacité {{moveName}} à un Pokémon." + }, + "TmModifierTypeWithInfo": { + "name": "CT{{moveId}} - {{moveName}}", + "description": "Apprend la capacité {{moveName}} à un Pokémon.\n(Maintenez C ou Maj pour plus d’infos)" + }, + "EvolutionItemModifierType": { + "description": "Permet à certains Pokémon d’évoluer." + }, + "FormChangeItemModifierType": { + "description": "Permet à certains Pokémon de changer de forme." + }, + "FusePokemonModifierType": { + "description": "Fusionne deux Pokémon (transfère le talent, sépare les stats de base et les types, partage les capacités)." + }, + "TerastallizeModifierType": { + "name": "Téra-Éclat {{teraType}}", + "description": "{{teraType}} Téracristallise son porteur pendant 10 combats." + }, + "ContactHeldItemTransferChanceModifierType": { + "description": "{{chancePercent}}% de chances de voler un objet de l’adversaire en l’attaquant." + }, + "TurnHeldItemTransferModifierType": { + "description": "À chaque tour, son porteur obtient un objet de son adversaire." + }, + "EnemyAttackStatusEffectChanceModifierType": { + "description": "Ajoute {{chancePercent}}% de chances d’infliger le statut {{statusEffect}} avec des capacités offensives." + }, + "EnemyEndureChanceModifierType": { + "description": "Ajoute {{chancePercent}}% de chances d’encaisser un coup." + }, + + "RARE_CANDY": { "name": "Super Bonbon" }, + "RARER_CANDY": { "name": "Hyper Bonbon" }, + + "MEGA_BRACELET": { "name": "Méga-Bracelet", "description": "Débloque les Méga-Gemmes dans la boutique." }, + "DYNAMAX_BAND": { "name": "Poignet Dynamax", "description": "Débloque le Dynamax." }, + "TERA_ORB": { "name": "Orbe Téracristal", "description": "Débloque les Téra-Éclats dans la boutique." }, + + "MAP": { "name": "Carte", "description": "Vous permet de choisir votre destination à un croisement." }, + + "POTION": { "name": "Potion" }, + "SUPER_POTION": { "name": "Super Potion" }, + "HYPER_POTION": { "name": "Hyper Potion" }, + "MAX_POTION": { "name": "Potion Max" }, + "FULL_RESTORE": { "name": "Guérison" }, + + "REVIVE": { "name": "Rappel" }, + "MAX_REVIVE": { "name": "Rappel Max" }, + + "FULL_HEAL": { "name": "Total Soin" }, + + "SACRED_ASH": { "name": "Cendre Sacrée" }, + + "REVIVER_SEED": { "name": "Résugraine", "description": "Ranime et restaure la moitié des PV de son porteur s’il est mis K.O. par une capacité directe." }, + + "WHITE_HERB": { "name": "Herbe Blanche", "description": "Restaure toute stat ayant subi une baisse en combat." }, + + "ETHER": { "name": "Huile" }, + "MAX_ETHER": { "name": "Huile Max" }, + + "ELIXIR": { "name": "Élixir" }, + "MAX_ELIXIR": { "name": "Élixir Max" }, + + "PP_UP": { "name": "PP Plus" }, + "PP_MAX": { "name": "PP Max" }, + + "LURE": { "name": "Parfum" }, + "SUPER_LURE": { "name": "Super Parfum" }, + "MAX_LURE": { "name": "Parfum Max" }, + + "MEMORY_MUSHROOM": { "name": "Champi Mémoriel", "description": "Remémore une capacité à un Pokémon." }, + + "EXP_SHARE": { "name": "Multi Exp", "description": "Tous les non-participants reçoivent 20% des Points d’Exp d’un participant." }, + "EXP_BALANCE": { "name": "Équilibr’Exp", "description": "Équilibre les Points d’Exp à l’avantage des membres de l’équipe aux plus bas niveaux." }, + + "OVAL_CHARM": { "name": "Charme Ovale", "description": "Quand plusieurs Pokémon sont en combat, chacun gagne 10% supplémentaires du total d’Exp." }, + + "EXP_CHARM": { "name": "Charme Exp" }, + "SUPER_EXP_CHARM": { "name": "Super Charme Exp" }, + "GOLDEN_EXP_CHARM": { "name": "Charme Exp Doré" }, + + "LUCKY_EGG": { "name": "Œuf Chance" }, + "GOLDEN_EGG": { "name": "Œuf d’Or" }, + + "SOOTHE_BELL": { "name": "Grelot Zen" }, + + "SCOPE_LENS": { "name": "Lentilscope", "description": "Une lentille qui augmente d’un cran le taux de critiques du porteur." }, + "LEEK": { "name": "Poireau", "description": "À faire tenir à Canarticho ou Palarticho. Un poireau très long et solide qui augmente de 2 crans le taux de critiques." }, + + "EVIOLITE": { "name": "Évoluroc", "description": "Augmente de 50% la Défense et Déf. Spé. si le porteur peut évoluer, 25% aux fusions dont une moitié le peut encore." }, + + "SOUL_DEW": { "name": "Rosée Âme", "description": "Augmente de 10% l’influence de la nature d’un Pokémon sur ses statistiques. Effet cumulatif." }, + + "NUGGET": { "name": "Pépite" }, + "BIG_NUGGET": { "name": "Maxi Pépite" }, + "RELIC_GOLD": { "name": "Vieux Ducat" }, + + "AMULET_COIN": { "name": "Pièce Rune", "description": "Augmente de 20% les gains d’argent." }, + "GOLDEN_PUNCH": { "name": "Poing Doré", "description": "La moitié des dégâts infligés sont convertis en argent." }, + "COIN_CASE": { "name": "Boite Jetons", "description": "Tous les 10 combats, recevez 10% de votre argent en intérêts." }, + + "LOCK_CAPSULE": { "name": "Poké Écrin", "description": "Permet de conserver la rareté des objets si vous relancez les objets proposés." }, + + "GRIP_CLAW": { "name": "Accro Griffe" }, + "WIDE_LENS": { "name": "Loupe" }, + + "MULTI_LENS": { "name": "Lentille Multi" }, + + "HEALING_CHARM": { "name": "Charme Soin", "description": "Augmente de 10% l’efficacité des capacités et objets de soin de PV (hors Rappels)." }, + "CANDY_JAR": { "name": "Bonbonnière", "description": "Augmente de 1 le nombre de niveaux gagnés à l’utilisation d’un Super Bonbon ou d’un Hyper Bonbon." }, + + "BERRY_POUCH": { "name": "Sac à Baies", "description": "Ajoute 30% de chances qu’une Baie utilisée ne soit pas consommée." }, + + "FOCUS_BAND": { "name": "Bandeau", "description": "Ajoute 10% de chances de survivre avec 1 PV si les dégâts reçus pouvaient mettre K.O. ." }, + + "QUICK_CLAW": { "name": "Vive Griffe", "description": "Ajoute 10% de chances d’agir en premier, indépendamment de la Vitesse (après la priorité)." }, + + "KINGS_ROCK": { "name": "Roche Royale", "description": "Ajoute 10% de chances qu’une capacité offensive apeure l’adversaire." }, + + "LEFTOVERS": { "name": "Restes", "description": "Soigne à chaque tour 1/16 des PV max d’un Pokémon." }, + "SHELL_BELL": { "name": "Grelot Coque", "description": "Soigne son porteur avec 1/8 des dégâts qu’il inflige à un Pokémon." }, + + "TOXIC_ORB": { "name": "Orbe Toxique", "description": "Empoisonne gravement son porteur à la fin du tour s’il n’a pas déjà de problème de statut." }, + "FLAME_ORB": { "name": "Orbe Flamme", "description": "Brule son porteur à la fin du tour s’il n’a pas déjà de problème de statut." }, + + "BATON": { "name": "Bâton", "description": "Permet de transmettre les effets en cas de changement de Pokémon. Ignore les pièges." }, + + "SHINY_CHARM": { "name": "Charme Chroma", "description": "Augmente énormément les chances de rencontrer un Pokémon sauvage chromatique." }, + "ABILITY_CHARM": { "name": "Charme Talent", "description": "Augmente énormément les chances de rencontrer un Pokémon sauvage avec un talent caché." }, + + "IV_SCANNER": { "name": "Scanner d’IV", "description": "Révèle la qualité de deux IV d’un Pokémon sauvage par scanner possédé. Les meilleurs IV sont révélés en priorité." }, + + "DNA_SPLICERS": { "name": "Pointeau ADN" }, + + "MINI_BLACK_HOLE": { "name": "Mini Trou Noir" }, + + "GOLDEN_POKEBALL": { "name": "Poké Ball Dorée", "description": "Ajoute un choix d’objet à la fin de chaque combat" }, + + "ENEMY_DAMAGE_BOOSTER": { "name": "Jeton Dégâts", "description": "Augmente les dégâts de 5%." }, + "ENEMY_DAMAGE_REDUCTION": { "name": "Jeton Protection", "description": "Diminue les dégâts reçus de 2,5%." }, + "ENEMY_HEAL": { "name": "Jeton Soin", "description": "Soigne 2% des PV max à chaque tour." }, + "ENEMY_ATTACK_POISON_CHANCE": { "name": "Jeton Poison" }, + "ENEMY_ATTACK_PARALYZE_CHANCE": { "name": "Jeton Paralysie" }, + "ENEMY_ATTACK_BURN_CHANCE": { "name": "Jeton Brulure" }, + "ENEMY_STATUS_EFFECT_HEAL_CHANCE": { "name": "Jeton Total Soin", "description": "Ajoute 2,5% de chances à chaque tour de se soigner d’un problème de statut." }, + "ENEMY_ENDURE_CHANCE": { "name": "Jeton Ténacité" }, + "ENEMY_FUSED_CHANCE": { "name": "Jeton Fusion", "description": "Ajoute 1% de chances qu’un Pokémon sauvage soit une fusion." } + }, + "SpeciesBoosterItem": { + "LIGHT_BALL": { "name": "Balle Lumière", "description": "À faire tenir à Pikachu. Un orbe énigmatique qui double son Attaque et son Atq. Spé. ." }, + "THICK_CLUB": { "name": "Masse Os", "description": "À faire tenir à Osselait ou Ossatueur. Un os dur qui double leur Attaque." }, + "METAL_POWDER": { "name": "Poudre Métal", "description": "À faire tenir à Métamorph. Cette poudre étrange, très fine mais résistante, double sa Défense." }, + "QUICK_POWDER": { "name": "Poudre Vite", "description": "À faire tenir à Métamorph. Cette poudre étrange, très fine mais résistante, double sa Vitesse." } + }, + "TempBattleStatBoosterItem": { + "x_attack": "Attaque +", + "x_defense": "Défense +", + "x_sp_atk": "Atq. Spé. +", + "x_sp_def": "Déf. Spé. +", + "x_speed": "Vitesse +", + "x_accuracy": "Précision +", + "dire_hit": "Muscle +" + }, + + "TempBattleStatBoosterStatName": { + "ATK": "l’Attaque", + "DEF": "la Défense", + "SPATK": "l’Atq. Spé.", + "SPDEF": "la Déf. Spé.", + "SPD": "la Vitesse", + "ACC": "la précision", + "CRIT": "le taux de critique", + "EVA": "l’esquive", + "DEFAULT": "???" + }, + + "AttackTypeBoosterItem": { + "silk_scarf": "Mouchoir Soie", + "black_belt": "Ceinture Noire", + "sharp_beak": "Bec Pointu", + "poison_barb": "Pic Venin", + "soft_sand": "Sable Doux", + "hard_stone": "Pierre Dure", + "silver_powder": "Poudre Argentée", + "spell_tag": "Rune Sort", + "metal_coat": "Peau Métal", + "charcoal": "Charbon", + "mystic_water": "Eau Mystique", + "miracle_seed": "Graine Miracle", + "magnet": "Aimant", + "twisted_spoon": "Cuillère Tordue", + "never_melt_ice": "Glace Éternelle", + "dragon_fang": "Croc Dragon", + "black_glasses": "Lunettes Noires", + "fairy_feather": "Plume Enchantée" + }, + "BaseStatBoosterItem": { + "hp_up": "PV Plus", + "protein": "Protéine", + "iron": "Fer", + "calcium": "Calcium", + "zinc": "Zinc", + "carbos": "Carbone" + }, + "EvolutionItem": { + "NONE": "Aucun", + + "LINKING_CORD": "Fil de Liaison", + "SUN_STONE": "Pierre Soleil", + "MOON_STONE": "Pierre Lune", + "LEAF_STONE": "Pierre Plante", + "FIRE_STONE": "Pierre Feu", + "WATER_STONE": "Pierre Eau", + "THUNDER_STONE": "Pierre Foudre", + "ICE_STONE": "Pierre Glace", + "DUSK_STONE": "Pierre Nuit", + "DAWN_STONE": "Pierre Aube", + "SHINY_STONE": "Pierre Éclat", + "CRACKED_POT": "Théière Fêlée", + "SWEET_APPLE": "Pomme Sucrée", + "TART_APPLE": "Pomme Acidulée", + "STRAWBERRY_SWEET": "Fraise en Sucre", + "UNREMARKABLE_TEACUP": "Bol Médiocre", + + "CHIPPED_POT": "Théière Ébréchée", + "BLACK_AUGURITE": "Obsidienne", + "GALARICA_CUFF": "Bracelet Galanoa", + "GALARICA_WREATH": "Couronne Galanoa", + "PEAT_BLOCK": "Bloc de Tourbe", + "AUSPICIOUS_ARMOR": "Armure de la Fortune", + "MALICIOUS_ARMOR": "Armure de la Rancune", + "MASTERPIECE_TEACUP": "Bol Exceptionnel", + "METAL_ALLOY": "Métal Composite", + "SCROLL_OF_DARKNESS": "Rouleau des Ténèbres", + "SCROLL_OF_WATERS": "Rouleau de l’Eau", + "SYRUPY_APPLE": "Pomme Nectar" + }, + "FormChangeItem": { + "NONE": "Aucun", + + "ABOMASITE": "Blizzarite", + "ABSOLITE": "Absolite", + "AERODACTYLITE": "Ptéraïte", + "AGGRONITE": "Galekingite", + "ALAKAZITE": "Alakazamite", + "ALTARIANITE": "Altarite", + "AMPHAROSITE": "Pharampite", + "AUDINITE": "Nanméouïte", + "BANETTITE": "Branettite", + "BEEDRILLITE": "Dardargnite", + "BLASTOISINITE": "Tortankite", + "BLAZIKENITE": "Braségalite", + "CAMERUPTITE": "Caméruptite", + "CHARIZARDITE_X": "Dracaufite X", + "CHARIZARDITE_Y": "Dracaufite Y", + "DIANCITE": "Diancite", + "GALLADITE": "Gallamite", + "GARCHOMPITE": "Carchacrokite", + "GARDEVOIRITE": "Gardevoirite", + "GENGARITE": "Ectoplasmite", + "GLALITITE": "Oniglalite", + "GYARADOSITE": "Léviatorite", + "HERACRONITE": "Scarhinoïte", + "HOUNDOOMINITE": "Démolossite", + "KANGASKHANITE": "Kangourexite", + "LATIASITE": "Latiasite", + "LATIOSITE": "Latiosite", + "LOPUNNITE": "Lockpinite", + "LUCARIONITE": "Lucarite", + "MANECTITE": "Élecsprintite", + "MAWILITE": "Mysdibulite", + "MEDICHAMITE": "Charminite", + "METAGROSSITE": "Métalossite", + "MEWTWONITE_X": "Mewtwoïte X", + "MEWTWONITE_Y": "Mewtwoïte Y", + "PIDGEOTITE": "Roucarnagite", + "PINSIRITE": "Scarabruite", + "RAYQUAZITE": "Rayquazite", + "SABLENITE": "Ténéfixite", + "SALAMENCITE": "Drattakite", + "SCEPTILITE": "Jungkite", + "SCIZORITE": "Cizayoxite", + "SHARPEDONITE": "Sharpedite", + "SLOWBRONITE": "Flagadossite", + "STEELIXITE": "Steelixite", + "SWAMPERTITE": "Laggronite", + "TYRANITARITE": "Tyranocivite", + "VENUSAURITE": "Florizarrite", + + "BLUE_ORB": "Gemme Bleue", + "RED_ORB": "Gemme Rouge", + "SHARP_METEORITE": "Méteorite Aiguisée", + "HARD_METEORITE": "Méteorite Solide", + "SMOOTH_METEORITE": "Méteorite Lisse", + "ADAMANT_CRYSTAL": "Globe Adamant", + "LUSTROUS_GLOBE": "Globe Perlé", + "GRISEOUS_CORE": "Globe Platiné", + "REVEAL_GLASS": "Miroir Sacré", + "GRACIDEA": "Gracidée", + "MAX_MUSHROOMS": "Maxi Champis", + "DARK_STONE": "Galet Noir", + "LIGHT_STONE": "Galet Blanc", + "PRISON_BOTTLE": "Vase Scellé", + "N_LUNARIZER": "Necroluna", + "N_SOLARIZER": "Necrosol", + "RUSTED_SWORD": "Épée Rouillée", + "RUSTED_SHIELD": "Bouclier Rouillé", + "ICY_REINS_OF_UNITY": "Rênes de l’Unité du Froid", + "SHADOW_REINS_OF_UNITY": "Rênes de l’Unité d’Effroi", + "WELLSPRING_MASK": "Masque du Puits", + "HEARTHFLAME_MASK": "Masque du Fourneau", + "CORNERSTONE_MASK": "Masque de la Pierre", + "SHOCK_DRIVE": "Module Choc", + "BURN_DRIVE": "Module Pyro", + "CHILL_DRIVE": "Module Cryo", + "DOUSE_DRIVE": "Module Aqua", + "ULTRANECROZIUM_Z": "Ultranécrozélite", + + "FIST_PLATE": "Plaque Poing", + "SKY_PLATE": "Plaque Ciel", + "TOXIC_PLATE": "Plaque Toxicité", + "EARTH_PLATE": "Plaque Terre", + "STONE_PLATE": "Plaque Roc", + "INSECT_PLATE": "Plaque Insecte", + "SPOOKY_PLATE": "Plaque Fantôme", + "IRON_PLATE": "Plaque Fer", + "FLAME_PLATE": "Plaque Flamme", + "SPLASH_PLATE": "Plaque Hydro", + "MEADOW_PLATE": "Plaque Herbe", + "ZAP_PLATE": "Plaque Volt", + "MIND_PLATE": "Plaque Esprit", + "ICICLE_PLATE": "Plaque Glace", + "DRACO_PLATE": "Plaque Draco", + "DREAD_PLATE": "Plaque Ombre", + "PIXIE_PLATE": "Plaque Pixie", + "BLANK_PLATE": "Plaque Renouveau", + "LEGEND_PLATE": "Plaque Légende", + "FIGHTING_MEMORY": "ROM Combat", + "FLYING_MEMORY": "ROM Vol", + "POISON_MEMORY": "ROM Poison", + "GROUND_MEMORY": "ROM Sol", + "ROCK_MEMORY": "ROM Roche", + "BUG_MEMORY": "ROM Insecte", + "GHOST_MEMORY": "ROM Spectre", + "STEEL_MEMORY": "ROM Acier", + "FIRE_MEMORY": "ROM Feu", + "WATER_MEMORY": "ROM Eau", + "GRASS_MEMORY": "ROM Plante", + "ELECTRIC_MEMORY": "ROM Électrik", + "PSYCHIC_MEMORY": "ROM Psy", + "ICE_MEMORY": "ROM Glace", + "DRAGON_MEMORY": "ROM Dragon", + "DARK_MEMORY": "ROM Ténèbres", + "FAIRY_MEMORY": "ROM Fée", + "BLANK_MEMORY": "ROM Vierge" + } +} diff --git a/src/locales/fr/modifier-type.ts b/src/locales/fr/modifier-type.ts deleted file mode 100644 index 1c287991329..00000000000 --- a/src/locales/fr/modifier-type.ts +++ /dev/null @@ -1,457 +0,0 @@ -import { ModifierTypeTranslationEntries } from "#app/interfaces/locales"; - -export const modifierType: ModifierTypeTranslationEntries = { - ModifierType: { - "AddPokeballModifierType": { - name: "{{pokeballName}} x{{modifierCount}}", - description: "Recevez {{modifierCount}} {{pokeballName}}·s. (Inventaire : {{pokeballAmount}})\nTaux de capture : {{catchRate}}", - }, - "AddVoucherModifierType": { - name: "{{voucherTypeName}} x{{modifierCount}}", - description: "Recevez {{modifierCount}} {{voucherTypeName}}.", - }, - "PokemonHeldItemModifierType": { - extra: { - "inoperable": "{{pokemonName}} ne peut pas\nporter cet objet !", - "tooMany": "{{pokemonName}} possède trop\nd’exemplaires de cet objet !", - } - }, - "PokemonHpRestoreModifierType": { - description: "Restaure {{restorePoints}} PV ou {{restorePercent}}% des PV totaux d’un Pokémon, en fonction duquel des deux est le plus élevé.", - extra: { - "fully": "Restaure tous les PV d’un Pokémon.", - "fullyWithStatus": "Restaure tous les PV d’un Pokémon et soigne tous ses problèmes de statut.", - } - }, - "PokemonReviveModifierType": { - description: "Ranime un Pokémon et restaure {{restorePercent}}% de ses PV.", - }, - "PokemonStatusHealModifierType": { - description: "Soigne tous les problèmes de statut d’un Pokémon.", - }, - "PokemonPpRestoreModifierType": { - description: "Restaure {{restorePoints}} PP à une capacité d’un Pokémon.", - extra: { - "fully": "Restaure tous les PP à une capacité d’un Pokémon.", - } - }, - "PokemonAllMovePpRestoreModifierType": { - description: "Restaure {{restorePoints}} PP à toutes les capacités d’un Pokémon.", - extra: { - "fully": "Restaure tous les PP à toutes les capacités d’un Pokémon.", - } - }, - "PokemonPpUpModifierType": { - description: "Augmente le max de PP de {{upPoints}} à une capacité d’un Pokémon pour chaque 5 PP max (max : 3).", - }, - "PokemonNatureChangeModifierType": { - name: "Aromate {{natureName}}", - description: "Donne la nature {{natureName}} à un Pokémon et la débloque pour le starter lui étant lié.", - }, - "DoubleBattleChanceBoosterModifierType": { - description: "Double les chances de tomber sur un combat double pendant {{battleCount}} combats.", - }, - "TempBattleStatBoosterModifierType": { - description: "Augmente d’un cran {{tempBattleStatName}} pour toute l’équipe pendant 5 combats.", - }, - "AttackTypeBoosterModifierType": { - description: "Augmente de 20% la puissance des capacités de type {{moveType}} d’un Pokémon.", - }, - "PokemonLevelIncrementModifierType": { - description: "Fait monter un Pokémon de {{levels}} niveau·x.", - }, - "AllPokemonLevelIncrementModifierType": { - description: "Fait monter toute l’équipe de {{levels}} niveau·x.", - }, - "PokemonBaseStatBoosterModifierType": { - description: "Augmente de 10% {{statName}} de base de son porteur. Plus les IV sont hauts, plus il peut en porter.", - }, - "AllPokemonFullHpRestoreModifierType": { - description: "Restaure tous les PV de toute l’équipe.", - }, - "AllPokemonFullReviveModifierType": { - description: "Ranime et restaure tous les PV de tous les Pokémon K.O. .", - }, - "MoneyRewardModifierType": { - description: "Octroie une {{moneyMultiplier}} somme d’argent.\n({{moneyAmount}} ₽)", - extra: { - "small": "petite", - "moderate": "moyenne", - "large": "grande", - }, - }, - "ExpBoosterModifierType": { - description: "Augmente de {{boostPercent}}% le gain de Points d’Exp.", - }, - "PokemonExpBoosterModifierType": { - description: "Augmente de {{boostPercent}}% le gain de Points d’Exp du porteur.", - }, - "PokemonFriendshipBoosterModifierType": { - description: "Augmente le gain d’amitié de 50% par victoire.", - }, - "PokemonMoveAccuracyBoosterModifierType": { - description: "Augmente de {{accuracyAmount}} la précision des capacités (maximum 100).", - }, - "PokemonMultiHitModifierType": { - description: "Frappe une fois de plus en échange d’une baisse de puissance de respectivement 60/75/82,5% par cumul.", - }, - "TmModifierType": { - name: "CT{{moveId}} - {{moveName}}", - description: "Apprend la capacité {{moveName}} à un Pokémon.", - }, - "TmModifierTypeWithInfo": { - name: "CT{{moveId}} - {{moveName}}", - description: "Apprend la capacité {{moveName}} à un Pokémon.\n(Maintenez C ou Maj pour plus d’infos)", - }, - "EvolutionItemModifierType": { - description: "Permet à certains Pokémon d’évoluer.", - }, - "FormChangeItemModifierType": { - description: "Permet à certains Pokémon de changer de forme.", - }, - "FusePokemonModifierType": { - description: "Fusionne deux Pokémon (transfère le talent, sépare les stats de base et les types, partage le movepool).", - }, - "TerastallizeModifierType": { - name: "Téra-Éclat {{teraType}}", - description: "{{teraType}} Téracristallise son porteur pendant 10 combats.", - }, - "ContactHeldItemTransferChanceModifierType": { - description: "{{chancePercent}}% de chances de voler un objet de l’adversaire en l’attaquant.", - }, - "TurnHeldItemTransferModifierType": { - description: "À chaque tour, son porteur obtient un objet de son adversaire.", - }, - "EnemyAttackStatusEffectChanceModifierType": { - description: "Ajoute {{chancePercent}}% de chances d’infliger le statut {{statusEffect}} avec des capacités offensives.", - }, - "EnemyEndureChanceModifierType": { - description: "Ajoute {{chancePercent}}% de chances d’encaisser un coup.", - }, - - "RARE_CANDY": { name: "Super Bonbon" }, - "RARER_CANDY": { name: "Hyper Bonbon" }, - - "MEGA_BRACELET": { name: "Méga-Bracelet", description: "Débloque les Méga-Gemmes dans la boutique." }, - "DYNAMAX_BAND": { name: "Poignet Dynamax", description: "Débloque le Dynamax." }, - "TERA_ORB": { name: "Orbe Téracristal", description: "Débloque les Téra-Éclats dans la boutique." }, - - "MAP": { name: "Carte", description: "Vous permet de choisir votre destination à un croisement." }, - - "POTION": { name: "Potion" }, - "SUPER_POTION": { name: "Super Potion" }, - "HYPER_POTION": { name: "Hyper Potion" }, - "MAX_POTION": { name: "Potion Max" }, - "FULL_RESTORE": { name: "Guérison" }, - - "REVIVE": { name: "Rappel" }, - "MAX_REVIVE": { name: "Rappel Max" }, - - "FULL_HEAL": { name: "Total Soin" }, - - "SACRED_ASH": { name: "Cendre Sacrée" }, - - "REVIVER_SEED": { name: "Résugraine", description: "Ranime et restaure la moitié des PV de son porteur s’il est mis K.O. par une capacité directe." }, - - "WHITE_HERB": { name: "Herbe Blanche", description: "Restaure toute stat ayant subi une baisse en combat." }, - - "ETHER": { name: "Huile" }, - "MAX_ETHER": { name: "Huile Max" }, - - "ELIXIR": { name: "Élixir" }, - "MAX_ELIXIR": { name: "Élixir Max" }, - - "PP_UP": { name: "PP Plus" }, - "PP_MAX": { name: "PP Max" }, - - "LURE": { name: "Parfum" }, - "SUPER_LURE": { name: "Super Parfum" }, - "MAX_LURE": { name: "Parfum Max" }, - - "MEMORY_MUSHROOM": { name: "Champi Mémoriel", description: "Remémore une capacité à un Pokémon." }, - - "EXP_SHARE": { name: "Multi Exp", description: "Tous les non-participants reçoivent 20% des Points d’Exp d’un participant." }, - "EXP_BALANCE": { name: "Équilibr’Exp", description: "Équilibre les Points d’Exp à l’avantage des membres de l’équipe aux plus bas niveaux." }, - - "OVAL_CHARM": { name: "Charme Ovale", description: "Quand plusieurs Pokémon sont en combat, chacun gagne 10% supplémentaires du total d’Exp." }, - - "EXP_CHARM": { name: "Charme Exp" }, - "SUPER_EXP_CHARM": { name: "Super Charme Exp" }, - "GOLDEN_EXP_CHARM": { name: "Charme Exp Doré" }, - - "LUCKY_EGG": { name: "Œuf Chance" }, - "GOLDEN_EGG": { name: "Œuf d’Or" }, - - "SOOTHE_BELL": { name: "Grelot Zen" }, - - "SCOPE_LENS": { name: "Lentilscope", description: "Une lentille qui augmente d’un cran le taux de critiques du porteur." }, - "LEEK": { name: "Poireau", description: "À faire tenir à Canarticho ou Palarticho. Un poireau très long et solide qui augmente de 2 crans le taux de critiques." }, - - "EVIOLITE": { name: "Évoluroc", description: "Augmente de 50% la Défense et Déf. Spé. si le porteur peut évoluer, 25% aux fusions dont une moitié le peut encore." }, - - "SOUL_DEW": { name: "Rosée Âme", description: "Augmente de 10% l’influence de la nature d’un Pokémon sur ses statistiques. Effet cumulatif." }, - - "NUGGET": { name: "Pépite" }, - "BIG_NUGGET": { name: "Maxi Pépite" }, - "RELIC_GOLD": { name: "Vieux Ducat" }, - - "AMULET_COIN": { name: "Pièce Rune", description: "Augmente de 20% les gains d’argent." }, - "GOLDEN_PUNCH": { name: "Poing Doré", description: "50% des dégâts infligés sont convertis en argent." }, - "COIN_CASE": { name: "Boite Jetons", description: "Tous les 10 combats, recevez 10% de votre argent en intérêts." }, - - "LOCK_CAPSULE": { name: "Poké Écrin", description: "Permet de conserver la rareté des objets si vous relancez les objets proposés." }, - - "GRIP_CLAW": { name: "Accro Griffe" }, - "WIDE_LENS": { name: "Loupe" }, - - "MULTI_LENS": { name: "Lentille Multi" }, - - "HEALING_CHARM": { name: "Charme Soin", description: "Augmente de 10% l’efficacité des capacités et objets de soin de PV (hors Rappels)." }, - "CANDY_JAR": { name: "Bonbonnière", description: "Augmente de 1 le nombre de niveaux gagnés à l’utilisation d’un Super Bonbon." }, - - "BERRY_POUCH": { name: "Sac à Baies", description: "Ajoute 30% de chances qu’une Baie utilisée ne soit pas consommée." }, - - "FOCUS_BAND": { name: "Bandeau", description: "Ajoute 10% de chances de survivre avec 1 PV si les dégâts reçus pouvaient mettre K.O. ." }, - - "QUICK_CLAW": { name: "Vive Griffe", description: "Ajoute 10% de chances d’agir en premier, indépendamment de la vitesse (après la priorité)." }, - - "KINGS_ROCK": { name: "Roche Royale", description: "Ajoute 10% de chances qu’une capacité offensive apeure l’adversaire." }, - - "LEFTOVERS": { name: "Restes", description: "Soigne à chaque tour 1/16 des PV max d’un Pokémon." }, - "SHELL_BELL": { name: "Grelot Coque", description: "Soigne son porteur avec 1/8 des dégâts qu’il inflige à un Pokémon." }, - - "TOXIC_ORB": { name: "Orbe Toxique", description: "Empoisonne gravement son porteur à la fin du tour s’il n’a pas déjà de problème de statut." }, - "FLAME_ORB": { name: "Orbe Flamme", description: "Brule son porteur à la fin du tour s’il n’a pas déjà de problème de statut." }, - - "BATON": { name: "Bâton", description: "Permet de transmettre les effets en cas de changement de Pokémon. Ignore les pièges." }, - - "SHINY_CHARM": { name: "Charme Chroma", description: "Augmente énormément les chances de rencontrer un Pokémon sauvage chromatique." }, - "ABILITY_CHARM": { name: "Charme Talent", description: "Augmente énormément les chances de rencontrer un Pokémon sauvage avec un talent caché." }, - - "IV_SCANNER": { name: "Scanner d’IV", description: "Révèle la qualité de deux IV d’un Pokémon sauvage par scanner possédé. Les meilleurs IV sont révélés en priorité." }, - - "DNA_SPLICERS": { name: "Pointeau ADN" }, - - "MINI_BLACK_HOLE": { name: "Mini Trou Noir" }, - - "GOLDEN_POKEBALL": { name: "Poké Ball Dorée", description: "Ajoute un choix d’objet à la fin de chaque combat" }, - - "ENEMY_DAMAGE_BOOSTER": { name: "Jeton Dégâts", description: "Augmente les dégâts de 5%." }, - "ENEMY_DAMAGE_REDUCTION": { name: "Jeton Protection", description: "Diminue les dégâts reçus de 2,5%." }, - "ENEMY_HEAL": { name: "Jeton Soin", description: "Soigne 2% des PV max à chaque tour." }, - "ENEMY_ATTACK_POISON_CHANCE": { name: "Jeton Poison" }, - "ENEMY_ATTACK_PARALYZE_CHANCE": { name: "Jeton Paralysie" }, - "ENEMY_ATTACK_BURN_CHANCE": { name: "Jeton Brulure" }, - "ENEMY_STATUS_EFFECT_HEAL_CHANCE": { name: "Jeton Total Soin", description: "Ajoute 2,5% de chances à chaque tour de se soigner d’un problème de statut." }, - "ENEMY_ENDURE_CHANCE": { name: "Jeton Ténacité" }, - "ENEMY_FUSED_CHANCE": { name: "Jeton Fusion", description: "Ajoute 1% de chances qu’un Pokémon sauvage soit une fusion." }, - }, - SpeciesBoosterItem: { - "LIGHT_BALL": { name: "Balle Lumière", description: "À faire tenir à Pikachu. Un orbe énigmatique qui double son Attaque et son Atq. Spé. ." }, - "THICK_CLUB": { name: "Masse Os", description: "À faire tenir à Osselait ou Ossatueur. Un os dur qui double leur Attaque." }, - "METAL_POWDER": { name: "Poudre Métal", description: "À faire tenir à Métamorph. Cette poudre étrange, très fine mais résistante, double sa Défense." }, - "QUICK_POWDER": { name: "Poudre Vite", description: "À faire tenir à Métamorph. Cette poudre étrange, très fine mais résistante, double sa Vitesse." } - }, - TempBattleStatBoosterItem: { - "x_attack": "Attaque +", - "x_defense": "Défense +", - "x_sp_atk": "Atq. Spé. +", - "x_sp_def": "Déf. Spé. +", - "x_speed": "Vitesse +", - "x_accuracy": "Précision +", - "dire_hit": "Muscle +", - }, - - TempBattleStatBoosterStatName: { - "ATK": "Attaque", - "DEF": "Défense", - "SPATK": "Atq. Spé.", - "SPDEF": "Déf. Spé.", - "SPD": "Vitesse", - "ACC": "Précision", - "CRIT": "Taux de critique", - "EVA": "Esquive", - "DEFAULT": "???", - }, - - AttackTypeBoosterItem: { - "silk_scarf": "Mouchoir Soie", - "black_belt": "Ceinture Noire", - "sharp_beak": "Bec Pointu", - "poison_barb": "Pic Venin", - "soft_sand": "Sable Doux", - "hard_stone": "Pierre Dure", - "silver_powder": "Poudre Argentée", - "spell_tag": "Rune Sort", - "metal_coat": "Peau Métal", - "charcoal": "Charbon", - "mystic_water": "Eau Mystique", - "miracle_seed": "Graine Miracle", - "magnet": "Aimant", - "twisted_spoon": "Cuillère Tordue", - "never_melt_ice": "Glace Éternelle", - "dragon_fang": "Croc Dragon", - "black_glasses": "Lunettes Noires", - "fairy_feather": "Plume Enchantée", - }, - BaseStatBoosterItem: { - "hp_up": "PV Plus", - "protein": "Protéine", - "iron": "Fer", - "calcium": "Calcium", - "zinc": "Zinc", - "carbos": "Carbone", - }, - EvolutionItem: { - "NONE": "Aucun", - - "LINKING_CORD": "Fil de Liaison", - "SUN_STONE": "Pierre Soleil", - "MOON_STONE": "Pierre Lune", - "LEAF_STONE": "Pierre Plante", - "FIRE_STONE": "Pierre Feu", - "WATER_STONE": "Pierre Eau", - "THUNDER_STONE": "Pierre Foudre", - "ICE_STONE": "Pierre Glace", - "DUSK_STONE": "Pierre Nuit", - "DAWN_STONE": "Pierre Aube", - "SHINY_STONE": "Pierre Éclat", - "CRACKED_POT": "Théière Fêlée", - "SWEET_APPLE": "Pomme Sucrée", - "TART_APPLE": "Pomme Acidulée", - "STRAWBERRY_SWEET": "Fraise en Sucre", - "UNREMARKABLE_TEACUP": "Bol Médiocre", - - "CHIPPED_POT": "Théière Ébréchée", - "BLACK_AUGURITE": "Obsidienne", - "GALARICA_CUFF": "Bracelet Galanoa", - "GALARICA_WREATH": "Couronne Galanoa", - "PEAT_BLOCK": "Bloc de Tourbe", - "AUSPICIOUS_ARMOR": "Armure de la Fortune", - "MALICIOUS_ARMOR": "Armure de la Rancune", - "MASTERPIECE_TEACUP": "Bol Exceptionnel", - "METAL_ALLOY": "Métal Composite", - "SCROLL_OF_DARKNESS": "Rouleau des Ténèbres", - "SCROLL_OF_WATERS": "Rouleau de l’Eau", - "SYRUPY_APPLE": "Pomme Nectar", - }, - FormChangeItem: { - "NONE": "Aucun", - - "ABOMASITE": "Blizzarite", - "ABSOLITE": "Absolite", - "AERODACTYLITE": "Ptéraïte", - "AGGRONITE": "Galekingite", - "ALAKAZITE": "Alakazamite", - "ALTARIANITE": "Altarite", - "AMPHAROSITE": "Pharampite", - "AUDINITE": "Nanméouïte", - "BANETTITE": "Branettite", - "BEEDRILLITE": "Dardargnite", - "BLASTOISINITE": "Tortankite", - "BLAZIKENITE": "Braségalite", - "CAMERUPTITE": "Caméruptite", - "CHARIZARDITE_X": "Dracaufite X", - "CHARIZARDITE_Y": "Dracaufite Y", - "DIANCITE": "Diancite", - "GALLADITE": "Gallamite", - "GARCHOMPITE": "Carchacrokite", - "GARDEVOIRITE": "Gardevoirite", - "GENGARITE": "Ectoplasmite", - "GLALITITE": "Oniglalite", - "GYARADOSITE": "Léviatorite", - "HERACRONITE": "Scarhinoïte", - "HOUNDOOMINITE": "Démolossite", - "KANGASKHANITE": "Kangourexite", - "LATIASITE": "Latiasite", - "LATIOSITE": "Latiosite", - "LOPUNNITE": "Lockpinite", - "LUCARIONITE": "Lucarite", - "MANECTITE": "Élecsprintite", - "MAWILITE": "Mysdibulite", - "MEDICHAMITE": "Charminite", - "METAGROSSITE": "Métalossite", - "MEWTWONITE_X": "Mewtwoïte X", - "MEWTWONITE_Y": "Mewtwoïte Y", - "PIDGEOTITE": "Roucarnagite", - "PINSIRITE": "Scarabruite", - "RAYQUAZITE": "Rayquazite", - "SABLENITE": "Ténéfixite", - "SALAMENCITE": "Drattakite", - "SCEPTILITE": "Jungkite", - "SCIZORITE": "Cizayoxite", - "SHARPEDONITE": "Sharpedite", - "SLOWBRONITE": "Flagadossite", - "STEELIXITE": "Steelixite", - "SWAMPERTITE": "Laggronite", - "TYRANITARITE": "Tyranocivite", - "VENUSAURITE": "Florizarrite", - - "BLUE_ORB": "Gemme Bleue", - "RED_ORB": "Gemme Rouge", - "SHARP_METEORITE": "Méteorite Aiguisée", - "HARD_METEORITE": "Méteorite Solide", - "SMOOTH_METEORITE": "Méteorite Lisse", - "ADAMANT_CRYSTAL": "Globe Adamant", - "LUSTROUS_GLOBE": "Globe Perlé", - "GRISEOUS_CORE": "Globe Platiné", - "REVEAL_GLASS": "Miroir Sacré", - "GRACIDEA": "Gracidée", - "MAX_MUSHROOMS": "Maxi Champis", - "DARK_STONE": "Galet Noir", - "LIGHT_STONE": "Galet Blanc", - "PRISON_BOTTLE": "Vase Scellé", - "N_LUNARIZER": "Necroluna", - "N_SOLARIZER": "Necrosol", - "RUSTED_SWORD": "Épée Rouillée", - "RUSTED_SHIELD": "Bouclier Rouillé", - "ICY_REINS_OF_UNITY": "Rênes de l’Unité du Froid", - "SHADOW_REINS_OF_UNITY": "Rênes de l’Unité d’Effroi", - "WELLSPRING_MASK": "Masque du Puits", - "HEARTHFLAME_MASK": "Masque du Fourneau", - "CORNERSTONE_MASK": "Masque de la Pierre", - "SHOCK_DRIVE": "Module Choc", - "BURN_DRIVE": "Module Pyro", - "CHILL_DRIVE": "Module Cryo", - "DOUSE_DRIVE": "Module Aqua", - "ULTRANECROZIUM_Z": "Ultranécrozélite", - - "FIST_PLATE": "Plaque Poing", - "SKY_PLATE": "Plaque Ciel", - "TOXIC_PLATE": "Plaque Toxicité", - "EARTH_PLATE": "Plaque Terre", - "STONE_PLATE": "Plaque Roc", - "INSECT_PLATE": "Plaque Insecte", - "SPOOKY_PLATE": "Plaque Fantôme", - "IRON_PLATE": "Plaque Fer", - "FLAME_PLATE": "Plaque Flamme", - "SPLASH_PLATE": "Plaque Hydro", - "MEADOW_PLATE": "Plaque Herbe", - "ZAP_PLATE": "Plaque Volt", - "MIND_PLATE": "Plaque Esprit", - "ICICLE_PLATE": "Plaque Glace", - "DRACO_PLATE": "Plaque Draco", - "DREAD_PLATE": "Plaque Ombre", - "PIXIE_PLATE": "Plaque Pixie", - "BLANK_PLATE": "Plaque Renouveau", - "LEGEND_PLATE": "Plaque Légende", - "FIGHTING_MEMORY": "ROM Combat", - "FLYING_MEMORY": "ROM Vol", - "POISON_MEMORY": "ROM Poison", - "GROUND_MEMORY": "ROM Sol", - "ROCK_MEMORY": "ROM Roche", - "BUG_MEMORY": "ROM Insecte", - "GHOST_MEMORY": "ROM Spectre", - "STEEL_MEMORY": "ROM Acier", - "FIRE_MEMORY": "ROM Feu", - "WATER_MEMORY": "ROM Eau", - "GRASS_MEMORY": "ROM Plante", - "ELECTRIC_MEMORY": "ROM Électrik", - "PSYCHIC_MEMORY": "ROM Psy", - "ICE_MEMORY": "ROM Glace", - "DRAGON_MEMORY": "ROM Dragon", - "DARK_MEMORY": "ROM Ténèbres", - "FAIRY_MEMORY": "ROM Fée", - "BLANK_MEMORY": "ROM Vierge", - }, -} as const; diff --git a/src/locales/fr/modifier.ts b/src/locales/fr/modifier.json similarity index 75% rename from src/locales/fr/modifier.ts rename to src/locales/fr/modifier.json index 368b186a07b..8a15c9e5ddf 100644 --- a/src/locales/fr/modifier.ts +++ b/src/locales/fr/modifier.json @@ -1,14 +1,12 @@ -import { SimpleTranslationEntries } from "#app/interfaces/locales"; - -export const modifier: SimpleTranslationEntries = { +{ "surviveDamageApply": "{{pokemonNameWithAffix}} tient bon\ngrâce à son {{typeName}} !", "turnHealApply": "Les PV de {{pokemonNameWithAffix}}\nsont un peu restaurés par les {{typeName}} !", "hitHealApply": "Les PV de {{pokemonNameWithAffix}}\nsont un peu restaurés par le {{typeName}} !", "pokemonInstantReviveApply": "{{pokemonNameWithAffix}} a repris connaissance\navec sa {{typeName}} et est prêt à se battre de nouveau !", - "pokemonResetNegativeStatStageApply": "{{pokemonNameWithAffix}}'s lowered stats were restored\nby its {{typeName}}!", + "pokemonResetNegativeStatStageApply": "Les stats baissées de {{pokemonNameWithAffix}}\nsont restaurées par l’{{typeName}} !", "moneyInterestApply": "La {{typeName}} vous rapporte\n{{moneyAmount}} ₽ d’intérêts !", "turnHeldItemTransferApply": "{{itemName}} de {{pokemonNameWithAffix}} est absorbé·e\npar le {{typeName}} de {{pokemonName}} !", "contactHeldItemTransferApply": "{{itemName}} de {{pokemonNameWithAffix}} est volé·e\npar l’{{typeName}} de {{pokemonName}} !", "enemyTurnHealApply": "{{pokemonNameWithAffix}}\nrestaure un peu ses PV !", - "bypassSpeedChanceApply": "{{itemName}} de {{pokemonName}}\nlui permet d’agir plus vite que d’habitude !", -} as const; + "bypassSpeedChanceApply": "{{itemName}} de {{pokemonName}}\nlui permet d’agir plus vite que d’habitude !" +} diff --git a/src/locales/fr/move-trigger.ts b/src/locales/fr/move-trigger.json similarity index 95% rename from src/locales/fr/move-trigger.ts rename to src/locales/fr/move-trigger.json index 988db2e1959..43cf09d5bf6 100644 --- a/src/locales/fr/move-trigger.ts +++ b/src/locales/fr/move-trigger.json @@ -1,7 +1,5 @@ -import { SimpleTranslationEntries } from "#app/interfaces/locales"; - -export const moveTriggers: SimpleTranslationEntries = { - "hitWithRecoil" : "{{pokemonName}} est blessé par le contrecoup !", +{ + "hitWithRecoil": "{{pokemonName}} est blessé par le contrecoup !", "cutHpPowerUpMove": "{{pokemonName}} sacrifie des PV\net augmente la puissance ses capacités !", "absorbedElectricity": "{{pokemonName}} absorbe de l’électricité !", "switchedStatChanges": "{{pokemonName}} permute\nles changements de stats avec ceux de sa cible !", @@ -61,6 +59,7 @@ export const moveTriggers: SimpleTranslationEntries = { "faintCountdown": "{{pokemonName}}\nsera K.O. dans {{turnCount}} tours !", "copyType": "{{pokemonName}} prend le type\nde {{targetPokemonName}} !", "suppressAbilities": "Le talent de {{pokemonName}}\na été rendu inactif !", + "revivalBlessing": "{{pokemonName}} a repris connaissance\net est prêt à se battre de nouveau !", "swapArenaTags": "Les effets affectant chaque côté du terrain\nont été échangés par {{pokemonName}} !", - "exposedMove": "{{targetPokemonName}} est identifié\npar {{pokemonName}} !", -} as const; + "exposedMove": "{{targetPokemonName}} est identifié\npar {{pokemonName}} !" +} \ No newline at end of file diff --git a/src/locales/fr/move.json b/src/locales/fr/move.json new file mode 100644 index 00000000000..a48e17b3fd9 --- /dev/null +++ b/src/locales/fr/move.json @@ -0,0 +1,3810 @@ +{ + "pound": { + "name": "Écras’Face", + "effect": "Le lanceur écrase la cible avec l’un de ses membres, tels qu’une de ses pattes avant ou sa longue queue." + }, + "karateChop": { + "name": "Poing Karaté", + "effect": "L’ennemi est tranché violemment. Taux de critique élevé." + }, + "doubleSlap": { + "name": "Torgnoles", + "effect": "Gifle rapidement l’ennemi de deux à cinq fois d’affilée." + }, + "cometPunch": { + "name": "Poing Comète", + "effect": "Une tornade de coups de poing qui frappe de deux à cinq fois d’affilée." + }, + "megaPunch": { + "name": "Ultimapoing", + "effect": "La cible reçoit un coup de poing d’une grande puissance." + }, + "payDay": { + "name": "Jackpot", + "effect": "Des pièces sont lancées sur la cible. Permet d’obtenir de l’argent à la fin du combat." + }, + "firePunch": { + "name": "Poing Feu", + "effect": "Un coup de poing enflammé vient frapper la cible, ce qui peut la bruler (10% de chances)." + }, + "icePunch": { + "name": "Poing Glace", + "effect": "Un coup de poing glacé vient frapper la cible, ce qui peut la geler (10% de chances)." + }, + "thunderPunch": { + "name": "Poing Éclair", + "effect": "Un coup de poing électrique vient frapper la cible, ce qui peut la paralyser (10% de chances)." + }, + "scratch": { + "name": "Griffe", + "effect": "Lacère la cible avec des griffes acérées pour lui infliger des dégâts." + }, + "viseGrip": { + "name": "Force Poigne", + "effect": "La cible est attrapée et compressée par les côtés." + }, + "guillotine": { + "name": "Guillotine", + "effect": "Des pinces lacèrent violemment la cible, la mettant K.O. sur le coup si elle est touchée." + }, + "razorWind": { + "name": "Coupe-Vent", + "effect": "Attaque en deux tours. Des lames de vent frappent l’ennemi au second tour. Taux de critique élevé." + }, + "swordsDance": { + "name": "Danse Lames", + "effect": "Une danse frénétique qui exalte l’esprit combatif. Augmente beaucoup l’Attaque du lanceur." + }, + "cut": { + "name": "Coupe", + "effect": "Coupe la cible avec des lames ou des griffes." + }, + "gust": { + "name": "Tornade", + "effect": "Le lanceur bat des ailes pour générer une bourrasque qui blesse la cible." + }, + "wingAttack": { + "name": "Cru-Ailes", + "effect": "Le lanceur déploie largement ses ailes majestueuses pour attaquer la cible." + }, + "whirlwind": { + "name": "Cyclone", + "effect": "Éjecte le Pokémon ennemi et le remplace par un autre. Lors d’un combat contre un Pokémon sauvage seul, met fin au combat." + }, + "fly": { + "name": "Vol", + "effect": "Le lanceur s’envole au premier tour et frappe au second." + }, + "bind": { + "name": "Étreinte", + "effect": "Le lanceur ligote la cible avec son corps allongé ou ses tentacules pour la compresser durant quatre à cinq tours." + }, + "slam": { + "name": "Souplesse", + "effect": "Le lanceur utilise l’un de ses membres, tels qu’une queue ou une liane, pour infliger des dégâts à la cible." + }, + "vineWhip": { + "name": "Fouet Lianes", + "effect": "Fouette la cible avec de fines lianes pour infliger des dégâts." + }, + "stomp": { + "name": "Écrasement", + "effect": "Écrase la cible avec un énorme pied, ce qui peut aussi l’apeurer (30% de chances)." + }, + "doubleKick": { + "name": "Double Pied", + "effect": "Deux coups de pied qui frappent la cible deux fois d’affilée." + }, + "megaKick": { + "name": "Ultimawashi", + "effect": "Un coup de pied surpuissant qui frappe la cible." + }, + "jumpKick": { + "name": "Pied Sauté", + "effect": "Le lanceur s’envole pour décocher un coup de pied sauté. S’il échoue, le lanceur se blesse." + }, + "rollingKick": { + "name": "Mawashi Geri", + "effect": "Le lanceur effectue un coup de pied tournoyant et extrêmement rapide. Peut apeurer l’ennemi (30% de chances)." + }, + "sandAttack": { + "name": "Jet de Sable", + "effect": "Lance du sable au visage de la cible pour baisser sa Précision." + }, + "headbutt": { + "name": "Coup d’Boule", + "effect": "Le lanceur donne un coup de tête à la cible qui peut aussi l’apeurer (30% de chances)." + }, + "hornAttack": { + "name": "Koud’Korne", + "effect": "Frappe la cible d’un coup de corne pointue pour infliger des dégâts." + }, + "furyAttack": { + "name": "Furie", + "effect": "Frappe la cible deux à cinq fois d’affilée avec un membre pointu tel qu’un bec ou une corne." + }, + "hornDrill": { + "name": "Empal’Korne", + "effect": "Un coup de corne en vrille qui empale la cible, la mettant K.O. sur le coup si elle est touchée." + }, + "tackle": { + "name": "Charge", + "effect": "Le lanceur charge la cible et la percute de tout son poids." + }, + "bodySlam": { + "name": "Plaquage", + "effect": "Le lanceur se laisse tomber sur la cible de tout son poids, ce qui peut aussi la paralyser (30% de chances)." + }, + "wrap": { + "name": "Ligotage", + "effect": "Le lanceur ligote la cible avec son corps allongé ou ses tentacules pour la compresser durant quatre à cinq tours." + }, + "takeDown": { + "name": "Bélier", + "effect": "Une charge violente qui blesse aussi légèrement le lanceur." + }, + "thrash": { + "name": "Mania", + "effect": "Une attaque furieuse qui dure de deux à trois tours. Le lanceur devient confus." + }, + "doubleEdge": { + "name": "Damoclès", + "effect": "Une charge dangereuse et imprudente. Blesse aussi gravement le lanceur." + }, + "tailWhip": { + "name": "Mimi-Queue", + "effect": "Le lanceur remue son adorable queue pour tromper la vigilance de la cible et baisser sa Défense." + }, + "poisonSting": { + "name": "Dard-Venin", + "effect": "Un dard toxique transperce la cible et peut aussi l’empoisonner (30% de chances)." + }, + "twineedle": { + "name": "Double Dard", + "effect": "Un double coup de dard qui transperce l’ennemi deux fois d’affilée. Peut aussi l’empoisonner (36% de chances)." + }, + "pinMissile": { + "name": "Dard-Nuée", + "effect": "Envoie une rafale de dards. Peut toucher de deux à cinq fois." + }, + "leer": { + "name": "Groz’Yeux", + "effect": "Le lanceur fait les gros yeux à la cible pour l’intimider et baisser sa Défense." + }, + "bite": { + "name": "Morsure", + "effect": "Le lanceur utilise ses canines tranchantes pour mordre la cible, ce qui peut aussi l’apeurer (30% de chances)." + }, + "growl": { + "name": "Rugissement", + "effect": "Le lanceur pousse un cri tout mimi pour tromper la vigilance de la cible et baisser son Attaque." + }, + "roar": { + "name": "Hurlement", + "effect": "Effraie le Pokémon ennemi et le remplace par un autre. Lors d’un combat contre un Pokémon sauvage seul, met fin au combat." + }, + "sing": { + "name": "Berceuse", + "effect": "Une berceuse plonge la cible dans un profond sommeil." + }, + "supersonic": { + "name": "Ultrason", + "effect": "Le lanceur produit d’étranges ondes sonores qui rendent la cible confuse." + }, + "sonicBoom": { + "name": "Sonic Boom", + "effect": "Une onde de choc destructrice qui inflige toujours 20 PV de dégâts." + }, + "disable": { + "name": "Entrave", + "effect": "Empêche la cible de répéter sa dernière attaque. Dure quatre tours." + }, + "acid": { + "name": "Acide", + "effect": "Le lanceur attaque la cible avec un jet d’acide corrosif qui peut aussi baisser sa Défense Spéciale." + }, + "ember": { + "name": "Flammèche", + "effect": "La cible est attaquée par une faible flamme qui peut aussi la bruler." + }, + "flamethrower": { + "name": "Lance-Flammes", + "effect": "La cible reçoit un torrent de flammes qui peut aussi la bruler (10% de chances)." + }, + "mist": { + "name": "Brume", + "effect": "Une brume blanche enveloppe le lanceur et ses alliés et empêche la réduction des stats pour cinq tours." + }, + "waterGun": { + "name": "Pistolet à O", + "effect": "De l’eau est projetée avec force sur la cible." + }, + "hydroPump": { + "name": "Hydrocanon", + "effect": "Un puissant jet d’eau est dirigé sur la cible." + }, + "surf": { + "name": "Surf", + "effect": "Une énorme vague s’abat sur le champ de bataille et inflige des dégâts à tous les Pokémon autour du lanceur." + }, + "iceBeam": { + "name": "Laser Glace", + "effect": "Un rayon de glace frappe la cible, ce qui peut aussi la geler (10% de chances)." + }, + "blizzard": { + "name": "Blizzard", + "effect": "Une violente tempête de neige s’abat sur la cible, ce qui peut aussi la geler (10% de chances)." + }, + "psybeam": { + "name": "Rafale Psy", + "effect": "Un étrange rayon frappe la cible, ce qui peut aussi la rendre confuse." + }, + "bubbleBeam": { + "name": "Bulles d’O", + "effect": "Des bulles sont envoyées avec puissance sur la cible, ce qui peut aussi baisser sa Vitesse." + }, + "auroraBeam": { + "name": "Onde Boréale", + "effect": "Le lanceur envoie un rayon arc-en-ciel sur la cible, ce qui peut aussi baisser son Attaque." + }, + "hyperBeam": { + "name": "Ultralaser", + "effect": "Le lanceur projette un puissant rayon sur la cible, mais doit se reposer au tour suivant." + }, + "peck": { + "name": "Picpic", + "effect": "Le lanceur frappe la cible d’un bec acéré ou d’une corne pointue pour infliger des dégâts." + }, + "drillPeck": { + "name": "Bec Vrille", + "effect": "Une attaque utilisant le bec comme une perceuse." + }, + "submission": { + "name": "Sacrifice", + "effect": "Le lanceur agrippe l’ennemi et l’écrase au sol. Blesse aussi légèrement le lanceur." + }, + "lowKick": { + "name": "Balayage", + "effect": "Un grand coup de pied bas qui fauche la cible. Plus celle-ci est lourde, plus la puissance de cette capacité augmente." + }, + "counter": { + "name": "Riposte", + "effect": "Une riposte qui répond à toute attaque physique en infligeant le double de dégâts." + }, + "seismicToss": { + "name": "Frappe Atlas", + "effect": "La cible est projetée grâce au pouvoir de la gravité. Cette capacité inflige des dégâts égaux au niveau du lanceur." + }, + "strength": { + "name": "Force", + "effect": "Le lanceur cogne la cible de toutes ses forces." + }, + "absorb": { + "name": "Vole-Vie", + "effect": "Une attaque qui absorbe les nutriments et convertit la moitié des dégâts infligés en PV pour le lanceur." + }, + "megaDrain": { + "name": "Méga-Sangsue", + "effect": "Une attaque qui absorbe les nutriments et convertit la moitié des dégâts infligés en PV pour le lanceur." + }, + "leechSeed": { + "name": "Vampigraine", + "effect": "Une graine est semée sur la cible. À chaque tour, elle lui dérobe des PV que le lanceur récupère." + }, + "growth": { + "name": "Croissance", + "effect": "Le corps du lanceur se développe. Augmente l’Attaque et l’Attaque Spéciale." + }, + "razorLeaf": { + "name": "Tranch’Herbe", + "effect": "Des feuilles aiguisées comme des rasoirs entaillent la cible. Taux de critiques élevé." + }, + "solarBeam": { + "name": "Lance-Soleil", + "effect": "Le lanceur absorbe une grande quantité de lumière au premier tour et envoie un rayon puissant au tour suivant." + }, + "poisonPowder": { + "name": "Poudre Toxik", + "effect": "Une poudre toxique empoisonne la cible." + }, + "stunSpore": { + "name": "Para-Spore", + "effect": "Le lanceur répand sur la cible une poudre qui la paralyse." + }, + "sleepPowder": { + "name": "Poudre Dodo", + "effect": "Le lanceur répand une poudre soporifique qui endort la cible." + }, + "petalDance": { + "name": "Danse Fleurs", + "effect": "Le lanceur attaque en projetant des pétales pendant deux à trois tours avant de céder à la confusion." + }, + "stringShot": { + "name": "Sécrétion", + "effect": "Le lanceur crache de la soie pour ligoter la cible et beaucoup baisser sa Vitesse." + }, + "dragonRage": { + "name": "Draco-Rage", + "effect": "La colère du lanceur déclenche une onde de choc destructrice qui inflige toujours 40 PV de dégâts." + }, + "fireSpin": { + "name": "Danse Flammes", + "effect": "Un tourbillon de flammes emprisonne la cible pendant quatre à cinq tours." + }, + "thunderShock": { + "name": "Éclair", + "effect": "Une décharge électrique tombe sur la cible, ce qui peut aussi la paralyser (10% de chances)." + }, + "thunderbolt": { + "name": "Tonnerre", + "effect": "Une grosse décharge électrique tombe sur la cible, ce qui peut aussi la paralyser (10% de chances)." + }, + "thunderWave": { + "name": "Cage Éclair", + "effect": "Un faible choc électrique paralyse la cible." + }, + "thunder": { + "name": "Fatal-Foudre", + "effect": "La foudre tombe sur la cible pour lui infliger des dégâts, ce qui peut aussi la paralyser (30% de chances)." + }, + "rockThrow": { + "name": "Jet-Pierres", + "effect": "Le lanceur soulève une pierre et la lance sur la cible." + }, + "earthquake": { + "name": "Séisme", + "effect": "Le lanceur provoque un tremblement de terre touchant tous les Pokémon autour de lui." + }, + "fissure": { + "name": "Abime", + "effect": "Le lanceur fait tomber la cible dans une crevasse. Si cette attaque réussit, elle met K.O. sur le coup." + }, + "dig": { + "name": "Tunnel", + "effect": "Le lanceur creuse au premier tour et frappe au second." + }, + "toxic": { + "name": "Fil Toxique", + "effect": "Tisse un fil imprégné de venin. Empoisonne la cible et baisse sa Vitesse." + }, + "confusion": { + "name": "Choc Mental", + "effect": "Une faible vague télékinétique frappe la cible, ce qui peut aussi la plonger dans la confusion." + }, + "psychic": { + "name": "Psyko", + "effect": "Une puissante force télékinétique frappe la cible, ce qui peut aussi faire baisser sa Défense Spéciale." + }, + "hypnosis": { + "name": "Hypnose", + "effect": "Le lanceur hypnotise la cible pour la plonger dans un profond sommeil." + }, + "meditate": { + "name": "Yoga", + "effect": "Le lanceur médite pour éveiller son pouvoir latent et augmenter son Attaque." + }, + "agility": { + "name": "Hâte", + "effect": "Le lanceur se relaxe et allège son corps pour beaucoup augmenter sa Vitesse." + }, + "quickAttack": { + "name": "Vive-Attaque", + "effect": "Le lanceur fonce sur la cible si rapidement qu’on parvient à peine à le discerner. Frappe en priorité." + }, + "rage": { + "name": "Frénésie", + "effect": "Une fois activée, cette capacité augmente l’Attaque du lanceur à mesure que celui-ci subit des attaques." + }, + "teleport": { + "name": "Téléport", + "effect": "Permet de changer de place avec un autre Pokémon de l’équipe s’il y en a. Quand cette capacité est utilisée par un Pokémon sauvage, celui-ci fuit le combat." + }, + "nightShade": { + "name": "Ombre Nocturne", + "effect": "Le lanceur invoque un mirage et inflige des dégâts égaux au niveau du lanceur." + }, + "mimic": { + "name": "Copie", + "effect": "Le lanceur copie la dernière capacité utilisée par la cible et la conserve tant qu’il reste au combat." + }, + "screech": { + "name": "Grincement", + "effect": "Le lanceur émet un son strident qui donne envie de se boucher les oreilles. Baisse beaucoup la Défense de la cible." + }, + "doubleTeam": { + "name": "Reflet", + "effect": "Le lanceur se déplace si vite qu’il crée des copies illusoires de lui-même, augmentant son Esquive." + }, + "recover": { + "name": "Soin", + "effect": "Un soin qui permet au lanceur de récupérer jusqu’à la moitié de ses PV max." + }, + "harden": { + "name": "Armure", + "effect": "Le lanceur contracte tous ses muscles pour augmenter sa Défense." + }, + "minimize": { + "name": "Lilliput", + "effect": "Le lanceur comprime son corps pour se faire tout petit et beaucoup augmenter son Esquive." + }, + "smokescreen": { + "name": "Brouillard", + "effect": "Le lanceur disperse un nuage d’encre ou de fumée qui réduit la Précision de la cible." + }, + "confuseRay": { + "name": "Onde Folie", + "effect": "Une lumière étrange qui plonge la cible dans un état de confusion." + }, + "withdraw": { + "name": "Repli", + "effect": "Le lanceur se recroqueville dans sa carapace, ce qui augmente sa Défense." + }, + "defenseCurl": { + "name": "Boul’Armure", + "effect": "Le lanceur s’enroule pour cacher ses points faibles, ce qui augmente sa Défense." + }, + "barrier": { + "name": "Bouclier", + "effect": "Le lanceur érige un mur solide qui augmente beaucoup sa Défense." + }, + "lightScreen": { + "name": "Mur Lumière", + "effect": "Crée un fabuleux mur de lumière qui réduit les dégâts causés par les capacités spéciales pendant cinq tours." + }, + "haze": { + "name": "Buée Noire", + "effect": "Crée un brouillard qui annule les changements de stats de tous les Pokémon au combat." + }, + "reflect": { + "name": "Protection", + "effect": "Crée un fabuleux mur de lumière qui réduit les dégâts causés par les capacités physiques pendant cinq tours." + }, + "focusEnergy": { + "name": "Puissance", + "effect": "Le lanceur prend une profonde inspiration et se concentre pour augmenter son taux de critiques." + }, + "bide": { + "name": "Patience", + "effect": "Le lanceur encaisse les coups durant deux tours et réplique en infligeant le double des dégâts subis." + }, + "metronome": { + "name": "Métronome", + "effect": "Le lanceur agite un doigt et stimule son cerveau pour utiliser presque n’importe quelle capacité au hasard." + }, + "mirrorMove": { + "name": "Mimique", + "effect": "Le lanceur riposte à l’attaque de l’ennemi avec la même attaque." + }, + "selfDestruct": { + "name": "Destruction", + "effect": "Le lanceur explose en blessant tous les Pokémon autour de lui. Le lanceur tombe K.O." + }, + "eggBomb": { + "name": "Bombe Œuf", + "effect": "De toutes ses forces, le lanceur jette un gros œuf sur l’ennemi pour lui infliger des dégâts." + }, + "lick": { + "name": "Léchouille", + "effect": "Un grand coup de langue qui inflige des dégâts à la cible et peut aussi la paralyser (30% de chances)." + }, + "smog": { + "name": "Purédpois", + "effect": "Le lanceur attaque à l’aide d’une éruption de gaz répugnants qui peuvent aussi empoisonner la cible." + }, + "sludge": { + "name": "Détritus", + "effect": "Des détritus toxiques sont projetés sur la cible, ce qui peut aussi l’empoisonner (30% de chances)." + }, + "boneClub": { + "name": "Massd’Os", + "effect": "Le lanceur frappe l’ennemi à grands coups d’os. Peut aussi l’apeurer (10% de chances)." + }, + "fireBlast": { + "name": "Déflagration", + "effect": "Un déluge de flammes ardentes submerge la cible, ce qui peut aussi la bruler (10% de chances)." + }, + "waterfall": { + "name": "Cascade", + "effect": "Le lanceur charge la cible avec une intensité remarquable, ce qui peut l’apeurer (20% de chances)." + }, + "clamp": { + "name": "Claquoir", + "effect": "Le lanceur piège l’ennemi dans sa dure coquille et l’écrase pendant quatre à cinq tours." + }, + "swift": { + "name": "Météores", + "effect": "Le lanceur envoie des rayons d’étoiles qui touchent toujours la cible." + }, + "skullBash": { + "name": "Coud’Krâne", + "effect": "Le lanceur baisse la tête pour augmenter sa Défense au premier tour et percuter l’ennemi au second." + }, + "spikeCannon": { + "name": "Picanon", + "effect": "Envoie une rafale de dards. Peut toucher de deux à cinq fois." + }, + "constrict": { + "name": "Constriction", + "effect": "De longs tentacules ou lianes attaquent l’ennemi. Peut aussi baisser sa Vitesse." + }, + "amnesia": { + "name": "Amnésie", + "effect": "Le lanceur fait le vide dans son esprit pour oublier ses soucis. Augmente beaucoup sa Défense Spéciale." + }, + "kinesis": { + "name": "Télékinésie", + "effect": "Le lanceur distrait l’ennemi en pliant une cuiller, ce qui baisse sa Précision." + }, + "softBoiled": { + "name": "E-Coque", + "effect": "Le lanceur récupère jusqu’à la moitié de ses PV max." + }, + "highJumpKick": { + "name": "Pied Voltige", + "effect": "Le lanceur s’élance pour effectuer un coup de genou sauté. S’il échoue, le lanceur se blesse." + }, + "glare": { + "name": "Regard Médusant", + "effect": "Le lanceur intimide la cible grâce à son regard terrifiant pour la paralyser." + }, + "dreamEater": { + "name": "Dévorêve", + "effect": "Le lanceur mange le rêve de la cible endormie et récupère en PV la moitié des dégâts infligés." + }, + "poisonGas": { + "name": "Gaz Toxik", + "effect": "Le lanceur empoisonne la cible en lui projetant un nuage de gaz toxique au visage." + }, + "barrage": { + "name": "Pilonnage", + "effect": "Projette de deux à cinq grosses boules sur l’ennemi." + }, + "leechLife": { + "name": "Vampirisme", + "effect": "Une attaque qui aspire le sang de la cible. La moitié des dégâts sont convertis en PV pour le lanceur." + }, + "lovelyKiss": { + "name": "Grobisou", + "effect": "Le lanceur fait un bisou à l’ennemi en prenant une mine effrayante. Endort l’ennemi." + }, + "skyAttack": { + "name": "Piqué", + "effect": "Une attaque en deux tours au taux de critiques élevé, qui peut aussi apeurer la cible (30% de chances)." + }, + "transform": { + "name": "Morphing", + "effect": "Le lanceur devient une copie de sa cible et obtient la même palette de capacités." + }, + "bubble": { + "name": "Écume", + "effect": "Des bulles frappent l’ennemi. Peut réduire sa Vitesse." + }, + "dizzyPunch": { + "name": "Uppercut", + "effect": "Un enchainement de coups de poing cadencés frappe l’ennemi. Peut aussi le rendre confus." + }, + "spore": { + "name": "Spore", + "effect": "Le lanceur répand un nuage de spores qui endort." + }, + "flash": { + "name": "Flash", + "effect": "Explosion lumineuse qui fait baisser la Précision de l’ennemi." + }, + "psywave": { + "name": "Vague Psy", + "effect": "Une étrange onde d’énergie chaude frappe l’ennemi. Cette attaque est d’intensité variable." + }, + "splash": { + "name": "Trempette", + "effect": "Le lanceur barbote et éclabousse les environs. Cette capacité n’a aucun effet." + }, + "acidArmor": { + "name": "Acidarmure", + "effect": "Le lanceur modifie sa structure moléculaire pour se liquéfier et beaucoup augmenter sa Défense." + }, + "crabhammer": { + "name": "Pince-Masse", + "effect": "Une grande pince martèle la cible. Taux de critiques élevé." + }, + "explosion": { + "name": "Explosion", + "effect": "Le lanceur explose et inflige des dégâts à tous les Pokémon autour de lui. Met K.O. le lanceur." + }, + "furySwipes": { + "name": "Combo-Griffe", + "effect": "La cible est lacérée par des faux ou des griffes de deux à cinq fois d’affilée." + }, + "bonemerang": { + "name": "Osmerang", + "effect": "Le lanceur projette son os comme un boomerang. Cette attaque frappe à l’aller et au retour." + }, + "rest": { + "name": "Repos", + "effect": "Le lanceur regagne tous ses PV et ses altérations de statut sont soignées, puis il dort pendant deux tours." + }, + "rockSlide": { + "name": "Éboulement", + "effect": "Le lanceur envoie de gros rochers sur la cible pour lui infliger des dégâts, ce qui peut aussi l’apeurer (30% de chances)." + }, + "hyperFang": { + "name": "Croc de Mort", + "effect": "Le lanceur mord l’ennemi à l’aide de ses incisives aiguisées. Peut aussi l’apeurer (10% de chances)." + }, + "sharpen": { + "name": "Affutage", + "effect": "Le lanceur réduit son nombre de polygones pour accentuer ses angles et augmenter son Attaque." + }, + "conversion": { + "name": "Conversion", + "effect": "Le lanceur change de type pour prendre celui de la première capacité de sa liste." + }, + "triAttack": { + "name": "Triplattaque", + "effect": "Le lanceur envoie trois boules d’énergie simultanément qui peuvent aussi paralyser, bruler ou geler la cible (6.67% de chances)." + }, + "superFang": { + "name": "Croc Fatal", + "effect": "Une vilaine morsure d’incisives qui réduit de moitié les PV de la cible." + }, + "slash": { + "name": "Tranche", + "effect": "Le lanceur donne un coup de griffe ou de faux. Taux de critiques élevé." + }, + "substitute": { + "name": "Clonage", + "effect": "Le lanceur crée un clone en sacrifiant quelques PV. Ce clone sert de leurre." + }, + "struggle": { + "name": "Lutte", + "effect": "Une attaque désespérée, utilisée quand le lanceur n’a plus de PP. Le blesse aussi légèrement." + }, + "sketch": { + "name": "Gribouille", + "effect": "Le lanceur apprend la dernière capacité utilisée par la cible. Gribouille disparait après utilisation." + }, + "tripleKick": { + "name": "Triple Pied", + "effect": "Une salve de un à trois coups de pied dont la puissance augmente à chaque coup porté." + }, + "thief": { + "name": "Larcin", + "effect": "Le lanceur attaque la cible et vole son objet. Le lanceur ne peut rien voler s’il tient déjà un objet." + }, + "spiderWeb": { + "name": "Toile", + "effect": "Le lanceur enserre l’ennemi à l’aide d’une fine soie gluante pour l’empêcher de fuir le combat." + }, + "mindReader": { + "name": "Lire-Esprit", + "effect": "Le lanceur analyse les mouvements de l’ennemi pour être sûr de toucher au coup suivant." + }, + "nightmare": { + "name": "Cauchemar", + "effect": "Un cauchemar qui inflige des dégâts à chaque tour à un ennemi endormi." + }, + "flameWheel": { + "name": "Roue de Feu", + "effect": "Le lanceur s’entoure de feu et charge la cible, ce qui peut aussi la bruler (10% de chances)." + }, + "snore": { + "name": "Ronflement", + "effect": "Une attaque qui ne fonctionne que si le lanceur est endormi. Le boucan peut aussi apeurer la cible (30% de chances)." + }, + "curse": { + "name": "Malédiction", + "effect": "Une capacité à l’effet différent selon que le lanceur est un Pokémon Spectre ou non." + }, + "flail": { + "name": "Gigotage", + "effect": "Le lanceur attaque en gigotant dans tous les sens. Plus ses PV sont bas, plus l’attaque est puissante." + }, + "conversion2": { + "name": "Conversion 2", + "effect": "Le lanceur change de type pour être résistant au type de la dernière attaque lancée par sa cible." + }, + "aeroblast": { + "name": "Aéroblast", + "effect": "Le lanceur projette une tornade sur l’ennemi pour infliger des dégâts. Taux de critique élevé." + }, + "cottonSpore": { + "name": "Spore Coton", + "effect": "Le lanceur libère des spores cotonneuses qui collent à la cible et baissent beaucoup sa Vitesse." + }, + "reversal": { + "name": "Contre", + "effect": "Le lanceur ne retient plus ses coups. Plus ses PV sont bas, plus la puissance de cette capacité augmente." + }, + "spite": { + "name": "Dépit", + "effect": "Le lanceur exprime son ressentiment en retirant 4 PP à la dernière capacité utilisée par la cible." + }, + "powderSnow": { + "name": "Poudreuse", + "effect": "Le lanceur projette de la neige poudreuse qui peut aussi geler la cible (10% de chances)." + }, + "protect": { + "name": "Abri", + "effect": "Le lanceur se protège de toutes les attaques. Peut échouer si utilisée plusieurs fois de suite." + }, + "machPunch": { + "name": "Mach Punch", + "effect": "Coup de poing fulgurant. Frappe en priorité." + }, + "scaryFace": { + "name": "Grimace", + "effect": "Le lanceur fait une grimace qui effraie la cible et réduit beaucoup sa Vitesse." + }, + "feintAttack": { + "name": "Feinte", + "effect": "Le lanceur s’approche l’air de rien avant de frapper par surprise. N’échoue jamais." + }, + "sweetKiss": { + "name": "Doux Baiser", + "effect": "Le lanceur envoie un bisou si mignon et désarmant qu’il plonge la cible dans la confusion." + }, + "bellyDrum": { + "name": "Cognobidon", + "effect": "Améliore l’Attaque au maximum en sacrifiant la moitié des PV max." + }, + "sludgeBomb": { + "name": "Bombe Beurk", + "effect": "Des détritus toxiques sont projetés sur la cible, ce qui peut aussi l’empoisonner (30% de chances)." + }, + "mudSlap": { + "name": "Coud’Boue", + "effect": "Le lanceur envoie de la boue au visage de la cible pour infliger des dégâts et baisser sa Précision." + }, + "octazooka": { + "name": "Octazooka", + "effect": "Le lanceur attaque en projetant de l’encre au visage de l’ennemi. Peut aussi baisser sa Précision." + }, + "spikes": { + "name": "Picots", + "effect": "Le lanceur disperse des picots sur le sol pour blesser tout ennemi qui entre au combat." + }, + "zapCannon": { + "name": "Élecanon", + "effect": "Un boulet de canon électrifié qui inflige des dégâts à la cible et la paralyse." + }, + "foresight": { + "name": "Clairvoyance", + "effect": "Permet de toucher un Pokémon Spectre avec n’importe quelle capacité ou de toucher un ennemi insaisissable." + }, + "destinyBond": { + "name": "Lien du Destin", + "effect": "Si un assaillant porte un coup fatal au lanceur après qu’il a activé cette capacité, ils sont tous les deux mis K.O. La capacité échoue si elle est immédiatement réutilisée." + }, + "perishSong": { + "name": "Requiem", + "effect": "Tout Pokémon qui entend ce requiem est K.O. dans trois tours à moins qu’il ne soit remplacé." + }, + "icyWind": { + "name": "Vent Glace", + "effect": "Une bourrasque de vent froid blesse la cible et réduit sa Vitesse." + }, + "detect": { + "name": "Détection", + "effect": "Le lanceur se protège de toutes les attaques. Peut échouer si utilisée plusieurs fois de suite." + }, + "boneRush": { + "name": "Charge Os", + "effect": "Le lanceur frappe la cible avec un os de deux à cinq fois d’affilée." + }, + "lockOn": { + "name": "Verrouillage", + "effect": "Le lanceur verrouille la cible pour ne pas la rater au tour suivant." + }, + "outrage": { + "name": "Colère", + "effect": "Le lanceur enrage et attaque pendant deux ou trois tours avant de devenir confus." + }, + "sandstorm": { + "name": "Tempête de Sable", + "effect": "Une tempête de sable blesse tous les Pokémon pendant cinq tours, sauf ceux de type Roche, Sol ou Acier. Augmente la Défense Spéciale des Pokémon Roche." + }, + "gigaDrain": { + "name": "Giga-Sangsue", + "effect": "Une attaque qui absorbe les nutriments et convertit la moitié des dégâts infligés en PV pour le lanceur." + }, + "endure": { + "name": "Ténacité", + "effect": "Le lanceur résiste aux attaques avec 1 PV. Peut échouer si utilisée plusieurs fois de suite." + }, + "charm": { + "name": "Charme", + "effect": "Le lanceur fait les yeux doux pour berner la cible et beaucoup réduire son Attaque." + }, + "rollout": { + "name": "Roulade", + "effect": "Un rocher roule sur la cible pendant cinq tours. L’attaque gagne en puissance à chaque coup." + }, + "falseSwipe": { + "name": "Faux-Chage", + "effect": "Le lanceur retient ses coups pour que la cible garde au moins 1 PV et ne tombe pas K.O." + }, + "swagger": { + "name": "Vantardise", + "effect": "Fait enrager la cible et la plonge dans la confusion, mais augmente beaucoup son Attaque." + }, + "milkDrink": { + "name": "Lait à Boire", + "effect": "Le lanceur récupère jusqu’à la moitié de ses PV max." + }, + "spark": { + "name": "Étincelle", + "effect": "Le lanceur envoie une charge électrique sur la cible qui peut aussi la paralyser (30% de chances)." + }, + "furyCutter": { + "name": "Taillade", + "effect": "Un coup de faux ou de griffe dont la puissance augmente quand il touche plusieurs fois d’affilée." + }, + "steelWing": { + "name": "Ailes d’Acier", + "effect": "Le lanceur frappe la cible avec des ailes d’acier, ce qui peut aussi augmenter la Défense du lanceur." + }, + "meanLook": { + "name": "Regard Noir", + "effect": "Le lanceur pétrifie la cible en lui lançant un regard noir qui la rend incapable de quitter le terrain." + }, + "attract": { + "name": "Attraction", + "effect": "Si la cible est du sexe opposé, elle tombe amoureuse et rechigne alors à attaquer." + }, + "sleepTalk": { + "name": "Blabla Dodo", + "effect": "Le lanceur utilise une de ses capacités au hasard. Il ne peut utiliser cette capacité que quand il dort." + }, + "healBell": { + "name": "Glas de Soin", + "effect": "Carillon apaisant qui soigne les altérations de statut de tous les Pokémon de l’équipe." + }, + "return": { + "name": "Retour", + "effect": "Plus le Pokémon apprécie son Dresseur, plus la puissance de cette attaque furieuse augmente." + }, + "present": { + "name": "Cadeau", + "effect": "Le lanceur attaque en offrant un cadeau piégé à la cible, mais le cadeau peut parfois restaurer les PV de celle-ci à la place." + }, + "frustration": { + "name": "Frustration", + "effect": "Moins le Pokémon aime son Dresseur, plus cette attaque est puissante." + }, + "safeguard": { + "name": "Rune Protect", + "effect": "Crée un champ protecteur qui empêche toutes les altérations de statut pendant cinq tours." + }, + "painSplit": { + "name": "Balance", + "effect": "Le lanceur ajoute ses PV à ceux de sa cible et les répartit équitablement." + }, + "sacredFire": { + "name": "Feu Sacré", + "effect": "Le lanceur génère un feu mystique d’une intensité redoutable pour attaquer l’ennemi. Peut aussi le bruler (50% de chances)." + }, + "magnitude": { + "name": "Ampleur", + "effect": "Provoque un tremblement de terre d’intensité variable qui affecte tous les Pokémon alentour. L’efficacité varie." + }, + "dynamicPunch": { + "name": "Dynamo-Poing", + "effect": "Le lanceur rassemble ses forces et envoie un coup de poing à la cible, ce qui la rend confuse à coup sûr." + }, + "megahorn": { + "name": "Mégacorne", + "effect": "Le lanceur inflige un grand coup de corne à la cible." + }, + "dragonBreath": { + "name": "Draco-Souffle", + "effect": "Le lanceur souffle fort sur la cible pour lui infliger des dégâts, ce qui peut aussi la paralyser (30% de chances)." + }, + "batonPass": { + "name": "Relais", + "effect": "Le lanceur échange sa place et tout changement de stats avec un Pokémon de l’équipe." + }, + "encore": { + "name": "Encore", + "effect": "Le lanceur oblige la cible à répéter la dernière capacité utilisée durant trois tours." + }, + "pursuit": { + "name": "Poursuite", + "effect": "Une attaque qui inflige deux fois plus de dégâts à un ennemi qui s’apprête à être remplacé." + }, + "rapidSpin": { + "name": "Tour Rapide", + "effect": "Le lanceur attaque en tournant sur lui-même. Sa Vitesse augmente également. Il se libère également des effets de capacités comme Étreinte, Ligotage ou Vampigraine." + }, + "sweetScent": { + "name": "Doux Parfum", + "effect": "Un doux parfum qui réduit beaucoup l’Esquive de la cible." + }, + "ironTail": { + "name": "Queue de Fer", + "effect": "Le lanceur attaque la cible avec une queue de fer, ce qui peut aussi baisser la Défense de la cible." + }, + "metalClaw": { + "name": "Griffe Acier", + "effect": "Attaque avec des griffes d’acier. Peut aussi augmenter l’Attaque du lanceur." + }, + "vitalThrow": { + "name": "Corps Perdu", + "effect": "Le lanceur porte son coup en dernier. En échange, cette capacité n’échoue jamais." + }, + "morningSun": { + "name": "Aurore", + "effect": "Un soin qui restaure des PV au lanceur. Son efficacité varie en fonction de la météo." + }, + "synthesis": { + "name": "Synthèse", + "effect": "Un soin qui restaure des PV au lanceur. Son efficacité varie en fonction de la météo." + }, + "moonlight": { + "name": "Rayon Lune", + "effect": "Un soin qui restaure des PV au lanceur. Son efficacité varie en fonction de la météo." + }, + "hiddenPower": { + "name": "Puissance Cachée", + "effect": "Attaque dont le type dépend du Pokémon qui l’utilise." + }, + "crossChop": { + "name": "Coup Croix", + "effect": "Le lanceur délivre un coup double en croisant les avant-bras. Taux de critiques élevé." + }, + "twister": { + "name": "Ouragan", + "effect": "Le lanceur déclenche un terrible ouragan sur la cible, ce qui peut aussi apeurer celle-ci (20% de chances)." + }, + "rainDance": { + "name": "Danse Pluie", + "effect": "Invoque de fortes pluies qui durent cinq tours, augmentant la puissance des capacités de type Eau et baissant celle des capacités de type Feu." + }, + "sunnyDay": { + "name": "Zénith", + "effect": "Fait briller le soleil pendant cinq tours, augmentant la puissance des capacités de type Feu et baissant celle des capacités de type Eau." + }, + "crunch": { + "name": "Mâchouille", + "effect": "Le lanceur mord la cible de ses crocs pointus, ce qui peut aussi baisser sa Défense." + }, + "mirrorCoat": { + "name": "Voile Miroir", + "effect": "Une riposte qui contre n’importe quelle capacité spéciale en infligeant le double des dégâts subis." + }, + "psychUp": { + "name": "Boost", + "effect": "Une autohypnose qui permet au lanceur de copier les changements de stats de la cible." + }, + "extremeSpeed": { + "name": "Vitesse Extrême", + "effect": "Le lanceur charge à une vitesse renversante. Frappe en priorité." + }, + "ancientPower": { + "name": "Pouvoir Antique", + "effect": "Une attaque préhistorique qui peut augmenter toutes les stats du lanceur d’un seul coup." + }, + "shadowBall": { + "name": "Ball’Ombre", + "effect": "Le lanceur projette une grande ombre sur la cible qui peut aussi faire baisser la Défense Spéciale de celle-ci." + }, + "futureSight": { + "name": "Prescience", + "effect": "De l’énergie psychique vient frapper la cible deux tours après l’utilisation de cette capacité." + }, + "rockSmash": { + "name": "Éclate-Roc", + "effect": "Le lanceur porte un coup de poing à la cible, ce qui peut baisser la Défense de celle-ci." + }, + "whirlpool": { + "name": "Siphon", + "effect": "Le lanceur piège la cible dans une trombe d’eau pendant quatre à cinq tours." + }, + "beatUp": { + "name": "Baston", + "effect": "Le lanceur appelle tous les Pokémon de son équipe à attaquer. Plus ils sont nombreux, plus il y a d’attaques." + }, + "fakeOut": { + "name": "Bluff", + "effect": "Le lanceur frappe en priorité et apeure la cible. La capacité ne fonctionne que si elle est utilisée immédiatement en entrant au combat." + }, + "uproar": { + "name": "Brouhaha", + "effect": "Le lanceur attaque en rugissant durant trois tours. Pendant ce temps, aucun Pokémon ne peut s’endormir." + }, + "stockpile": { + "name": "Stockage", + "effect": "Le lanceur emmagasine de l’énergie et augmente sa Défense et sa Défense Spéciale. Peut être utilisée trois fois." + }, + "spitUp": { + "name": "Relâche", + "effect": "Libère dans une attaque l’énergie précédemment emmagasinée avec Stockage. La puissance augmente en fonction du nombre de fois où Stockage a été utilisée." + }, + "swallow": { + "name": "Avale", + "effect": "Le lanceur absorbe l’énergie emmagasinée avec Stockage pour restaurer ses PV. Le nombre de PV soignés augmente en fonction du nombre de fois où Stockage a été utilisée." + }, + "heatWave": { + "name": "Canicule", + "effect": "Le lanceur provoque une vague de chaleur qui peut aussi bruler la cible (10% de chances)." + }, + "hail": { + "name": "Grêle", + "effect": "Invoque une tempête de grêle qui dure cinq tours. Ne blesse pas les Pokémon de type Glace." + }, + "torment": { + "name": "Tourmente", + "effect": "Le lanceur irrite la cible pour l’empêcher d’utiliser la même capacité deux fois de suite." + }, + "flatter": { + "name": "Flatterie", + "effect": "Rend la cible confuse, mais augmente son Attaque Spéciale." + }, + "willOWisp": { + "name": "Feu Follet", + "effect": "Le lanceur projette des flammes maléfiques à la cible pour lui infliger une brulure." + }, + "memento": { + "name": "Souvenir", + "effect": "Le lanceur est mis K.O., mais l’Attaque et l’Attaque Spéciale de la cible baissent beaucoup." + }, + "facade": { + "name": "Façade", + "effect": "Une capacité dont la puissance double lorsque le lanceur est empoisonné, paralysé ou brulé." + }, + "focusPunch": { + "name": "Mitra-Poing", + "effect": "Le lanceur se concentre avant d’attaquer. Échoue s’il est touché avant d’avoir frappé." + }, + "smellingSalts": { + "name": "Stimulant", + "effect": "Cette attaque est doublement efficace sur les Pokémon paralysés, mais elle soigne leur paralysie." + }, + "followMe": { + "name": "Par Ici", + "effect": "Le lanceur attire l’attention des cibles présentes pour les forcer à n’attaquer que le lanceur." + }, + "naturePower": { + "name": "Force Nature", + "effect": "Une attaque qui tire sa force de la nature. Son type varie selon le terrain." + }, + "charge": { + "name": "Chargeur", + "effect": "Le lanceur se charge en électricité, ce qui augmente la puissance de la prochaine capacité Électrik qu’il utilisera. Sa Défense Spéciale augmente également." + }, + "taunt": { + "name": "Provoc", + "effect": "Le lanceur provoque la cible, ce qui oblige celle-ci à n’utiliser que des capacités qui infligent des dégâts pendant trois tours." + }, + "helpingHand": { + "name": "Coup d’Main", + "effect": "Le lanceur donne un coup de main à son allié, qui voit la puissance de ses capacités augmenter." + }, + "trick": { + "name": "Tour de Magie", + "effect": "Le lanceur prend la cible au dépourvu et l’oblige à échanger son objet contre le sien." + }, + "rolePlay": { + "name": "Imitation", + "effect": "Imite la cible et copie son talent." + }, + "wish": { + "name": "Vœu", + "effect": "Un vœu qui permet au lanceur ou au Pokémon entrant sur le terrain au tour suivant de récupérer la moitié des PV max du lanceur." + }, + "assist": { + "name": "Assistance", + "effect": "Le lanceur se dépêche d’utiliser une capacité au hasard parmi celles des Pokémon de l’équipe." + }, + "ingrain": { + "name": "Racines", + "effect": "Le lanceur plante ses racines et récupère des PV à chaque tour. Une fois enraciné, il ne peut plus fuir." + }, + "superpower": { + "name": "Surpuissance", + "effect": "Une attaque puissante, mais qui baisse l’Attaque et la Défense du lanceur." + }, + "magicCoat": { + "name": "Reflet Magik", + "effect": "Une barrière qui renvoie les capacités comme Vampigraine et celles affectant le statut et les stats." + }, + "recycle": { + "name": "Recyclage", + "effect": "Recycle un objet tenu à usage unique déjà utilisé lors du combat pour pouvoir l’utiliser à nouveau." + }, + "revenge": { + "name": "Vendetta", + "effect": "Une attaque deux fois plus puissante si le lanceur a été blessé par l’ennemi durant ce tour." + }, + "brickBreak": { + "name": "Casse-Brique", + "effect": "Le lanceur attaque avec le tranchant de la main. Permet aussi de briser les barrières comme Mur Lumière et Protection." + }, + "yawn": { + "name": "Bâillement", + "effect": "Le lanceur fait bâiller la cible, qui s’endort au tour suivant." + }, + "knockOff": { + "name": "Sabotage", + "effect": "Fait plus de dégâts aux cibles qui tiennent un objet. De plus, fait tomber cet objet et empêche la cible de l’utiliser jusqu’à la fin du combat." + }, + "endeavor": { + "name": "Effort", + "effect": "Une attaque qui réduit les PV de la cible au niveau des PV du lanceur." + }, + "eruption": { + "name": "Éruption", + "effect": "Le lanceur laisse exploser sa colère. Plus ses PV sont bas, moins l’attaque est puissante." + }, + "skillSwap": { + "name": "Échange", + "effect": "Le lanceur utilise ses pouvoirs psychiques pour échanger son talent avec la cible." + }, + "imprison": { + "name": "Possessif", + "effect": "Si la cible et le lanceur ont des capacités en commun, la cible ne pourra pas les utiliser." + }, + "refresh": { + "name": "Régénération", + "effect": "Le lanceur se repose pour guérir d’un empoisonnement, d’une brulure ou d’une paralysie." + }, + "grudge": { + "name": "Rancune", + "effect": "Si le lanceur est mis K.O., sa rancune épuise les PP de la capacité utilisée par l’ennemi pour le mettre K.O." + }, + "snatch": { + "name": "Saisie", + "effect": "Lorsqu’une capacité de soin ou de changement de stats est utilisée, le lanceur vole ses effets." + }, + "secretPower": { + "name": "Force Cachée", + "effect": "Les effets de cette attaque varient en fonction de l’environnement." + }, + "dive": { + "name": "Plongée", + "effect": "Le lanceur plonge sous l’eau au premier tour et frappe au second." + }, + "armThrust": { + "name": "Cogne", + "effect": "Un déluge de coups adressés avec la paume qui frappe de deux à cinq fois d’affilée." + }, + "camouflage": { + "name": "Camouflage", + "effect": "Modifie le type du lanceur en fonction du terrain, comme une berge, une grotte, l’herbe, etc." + }, + "tailGlow": { + "name": "Lumi-Queue", + "effect": "Le lanceur regarde un flash lumineux fixement. Augmente énormément son Attaque Spéciale." + }, + "lusterPurge": { + "name": "Lumi-Éclat", + "effect": "Le lanceur libère un éclair lumineux. Peut aussi baisser la Défense Spéciale de l’ennemi." + }, + "mistBall": { + "name": "Ball’Brume", + "effect": "Une bulle de brume inflige des dégâts à l’ennemi. Peut aussi réduire son Attaque Spéciale." + }, + "featherDance": { + "name": "Danse Plumes", + "effect": "Une montagne de plumes ensevelit la cible et réduit beaucoup son Attaque." + }, + "teeterDance": { + "name": "Danse Folle", + "effect": "Danse qui rend confus tous les Pokémon autour du lanceur." + }, + "blazeKick": { + "name": "Pied Bruleur", + "effect": "Le lanceur envoie un coup de pied au taux de critiques élevé. Peut aussi bruler la cible (10% de chances)." + }, + "mudSport": { + "name": "Lance-Boue", + "effect": "Asperge les alentours de boue. Affaiblit les capacités Électrik pendant cinq tours." + }, + "iceBall": { + "name": "Ball’Glace", + "effect": "Frappe l’ennemi pendant cinq tours. L’attaque gagne en puissance à chaque coup." + }, + "needleArm": { + "name": "Poing Dard", + "effect": "Le lanceur attaque en fouettant l’ennemi de ses bras épineux. Peut aussi l’apeurer (30% de chances)." + }, + "slackOff": { + "name": "Paresse", + "effect": "Le lanceur se tourne les pouces et récupère jusqu’à la moitié de ses PV max." + }, + "hyperVoice": { + "name": "Mégaphone", + "effect": "Le lanceur pousse un cri dont l’écho terrifiant a le pouvoir d’infliger des dégâts à la cible." + }, + "poisonFang": { + "name": "Crochet Venin", + "effect": "Le lanceur mord la cible avec ses crocs toxiques, ce qui peut aussi l’empoisonner gravement (50% de chances)." + }, + "crushClaw": { + "name": "Éclate Griffe", + "effect": "Le lanceur lacère la cible avec des griffes solides et aiguisées, ce qui peut aussi baisser la Défense de celle-ci." + }, + "blastBurn": { + "name": "Rafale Feu", + "effect": "Une explosion ardente consume la cible. Le lanceur doit se reposer au tour suivant." + }, + "hydroCannon": { + "name": "Hydroblast", + "effect": "Le lanceur projette un missile d’eau sur la cible, mais il doit se reposer au tour suivant." + }, + "meteorMash": { + "name": "Poing Météore", + "effect": "Un coup de poing lancé à la vitesse d’un météore. Peut aussi augmenter l’Attaque du lanceur." + }, + "astonish": { + "name": "Étonnement", + "effect": "Le lanceur attaque la cible en poussant un cri terrifiant qui peut aussi l’apeurer (30% de chances)." + }, + "weatherBall": { + "name": "Ball’Météo", + "effect": "Une capacité dont la puissance et le type varient en fonction du temps qu’il fait." + }, + "aromatherapy": { + "name": "Aromathérapie", + "effect": "Le lanceur libère un parfum apaisant qui guérit tous les problèmes de statut de l’équipe." + }, + "fakeTears": { + "name": "Croco Larme", + "effect": "Le lanceur fait semblant de pleurer pour troubler la cible et beaucoup baisser sa Défense Spéciale." + }, + "airCutter": { + "name": "Tranch’Air", + "effect": "Le lanceur appelle des vents tranchants qui lacèrent la cible. Taux de critiques élevé." + }, + "overheat": { + "name": "Surchauffe", + "effect": "Le lanceur attaque la cible à pleine puissance, mais le contrecoup baisse beaucoup l’Attaque Spéciale du lanceur." + }, + "odorSleuth": { + "name": "Flair", + "effect": "Permet de toucher un Pokémon Spectre avec n’importe quelle capacité ou de toucher un ennemi insaisissable." + }, + "rockTomb": { + "name": "Tomberoche", + "effect": "Des rochers frappent la cible et baissent sa Vitesse." + }, + "silverWind": { + "name": "Vent Argenté", + "effect": "Vent qui projette des écailles poudreuses sur l’ennemi. Peut aussi monter toutes les stats du lanceur." + }, + "metalSound": { + "name": "Strido-Son", + "effect": "Un cri horrible tel un crissement métallique qui réduit beaucoup la Défense Spéciale de la cible." + }, + "grassWhistle": { + "name": "Siffl’Herbe", + "effect": "Le lanceur joue une douce mélodie qui plonge l’ennemi dans un profond sommeil." + }, + "tickle": { + "name": "Chatouille", + "effect": "Le lanceur chatouille la cible, ce qui baisse son Attaque et sa Défense." + }, + "cosmicPower": { + "name": "Force Cosmique", + "effect": "Le lanceur absorbe un pouvoir mystique spatial qui augmente sa Défense et sa Défense Spéciale." + }, + "waterSpout": { + "name": "Giclédo", + "effect": "Le lanceur attaque avec un jet d’eau. Moins il a de PV et moins l’attaque est puissante." + }, + "signalBeam": { + "name": "Rayon Signal", + "effect": "Le lanceur projette un rayon de lumière sinistre. Peut aussi rendre l’ennemi confus." + }, + "shadowPunch": { + "name": "Poing Ombre", + "effect": "Le lanceur se fond dans les ombres pour porter un coup de poing. N’échoue jamais." + }, + "extrasensory": { + "name": "Extrasenseur", + "effect": "Le lanceur attaque avec un pouvoir étrange et invisible qui peut aussi apeurer la cible (10% de chances)." + }, + "skyUppercut": { + "name": "Stratopercut", + "effect": "Le lanceur attaque avec un uppercut. Il envoie son poing vers le ciel de toutes ses forces." + }, + "sandTomb": { + "name": "Tourbi-Sable", + "effect": "Le lanceur emprisonne la cible dans une tempête de sable terrifiante qui dure de quatre à cinq tours." + }, + "sheerCold": { + "name": "Glaciation", + "effect": "Une vague de froid glacial frappe la cible pour la mettre K.O. en un coup. Cela a peu de chances de réussir si le lanceur ne possède pas le type Glace." + }, + "muddyWater": { + "name": "Ocroupi", + "effect": "Le lanceur attaque en projetant de l’eau boueuse. Peut aussi réduire la Précision de la cible." + }, + "bulletSeed": { + "name": "Balle Graine", + "effect": "Le lanceur mitraille la cible avec une rafale de graines. De deux à cinq rafales sont lancées à la suite." + }, + "aerialAce": { + "name": "Aéropique", + "effect": "Le lanceur prend la cible de vitesse et la lacère. N’échoue jamais." + }, + "icicleSpear": { + "name": "Stalactite", + "effect": "Le lanceur jette des pics de glace sur la cible, de deux à cinq fois de suite." + }, + "ironDefense": { + "name": "Mur de Fer", + "effect": "L’épiderme du lanceur devient dur comme du fer, ce qui augmente beaucoup sa Défense." + }, + "block": { + "name": "Barrage", + "effect": "Le lanceur bloque la route de la cible pour empêcher sa fuite." + }, + "howl": { + "name": "Grondement", + "effect": "Le lanceur pousse un grand cri d’encouragement, ce qui augmente son Attaque et celle de ses alliés." + }, + "dragonClaw": { + "name": "Draco-Griffe", + "effect": "Le lanceur lacère la cible de ses grandes griffes aiguisées." + }, + "frenzyPlant": { + "name": "Végé-Attaque", + "effect": "Un violent coup de racines s’abat sur la cible. Le lanceur doit se reposer au tour suivant." + }, + "bulkUp": { + "name": "Gonflette", + "effect": "Le lanceur tend ses muscles pour se gonfler, ce qui booste son Attaque et sa Défense." + }, + "bounce": { + "name": "Rebond", + "effect": "Le lanceur bondit très haut et plonge sur la cible au second tour, ce qui peut aussi la paralyser (30% de chances)." + }, + "mudShot": { + "name": "Tir de Boue", + "effect": "Le lanceur attaque en projetant de la boue sur la cible, ce qui réduit aussi la Vitesse de celle-ci." + }, + "poisonTail": { + "name": "Queue-Poison", + "effect": "Le lanceur attaque la cible avec sa queue, ce qui peut aussi l’empoisonner (10% de chances). Taux de critiques élevés." + }, + "covet": { + "name": "Implore", + "effect": "Le lanceur s’approche de la cible avec un air angélique afin de dérober l’objet qu’elle tient." + }, + "voltTackle": { + "name": "Électacle", + "effect": "Le lanceur électrifie son corps avant de charger. Le choc blesse aussi gravement le lanceur et peut paralyser la cible (10% de chances)." + }, + "magicalLeaf": { + "name": "Feuille Magik", + "effect": "Le lanceur disperse d’étranges feuilles qui poursuivent la cible. N’échoue jamais." + }, + "waterSport": { + "name": "Tourniquet", + "effect": "Asperge d’eau les alentours. Affaiblit les capacités de type Feu pendant cinq tours." + }, + "calmMind": { + "name": "Plénitude", + "effect": "Le lanceur se concentre et fait le vide dans son esprit pour augmenter son Attaque Spéciale et sa Défense Spéciale." + }, + "leafBlade": { + "name": "Lame Feuille", + "effect": "Une feuille coupante comme une lame entaille la cible. Taux de critiques élevé." + }, + "dragonDance": { + "name": "Danse Draco", + "effect": "Une danse mystique dont le rythme effréné augmente l’Attaque et la Vitesse du lanceur." + }, + "rockBlast": { + "name": "Boule Roc", + "effect": "Le lanceur projette un rocher sur la cible de deux à cinq fois d’affilée." + }, + "shockWave": { + "name": "Onde de Choc", + "effect": "Le lanceur envoie un choc électrique rapide à la cible. N’échoue jamais." + }, + "waterPulse": { + "name": "Vibraqua", + "effect": "Le lanceur projette une aura aquatique sur la cible, et peut la rendre confuse." + }, + "doomDesire": { + "name": "Vœu Destructeur", + "effect": "Le lanceur génère une sphère lumineuse qu’il projette sur l’ennemi deux tours plus tard." + }, + "psychoBoost": { + "name": "Psycho-Boost", + "effect": "Attaque l’ennemi à pleine puissance. Le contrecoup baisse beaucoup l’Attaque Spéciale du lanceur." + }, + "roost": { + "name": "Atterrissage", + "effect": "Le lanceur atterrit et se repose. Restaure jusqu’à la moitié de ses PV max." + }, + "gravity": { + "name": "Gravité", + "effect": "Pendant cinq tours, les Pokémon Vol ou qui ont Lévitation deviennent sensibles aux capacités Sol, et les capacités volantes deviennent inutilisables." + }, + "miracleEye": { + "name": "Œil Miracle", + "effect": "Permet de toucher un Pokémon Ténèbres avec les capacités de type Psy ou de toucher un ennemi ayant beaucoup d’esquive." + }, + "wakeUpSlap": { + "name": "Réveil Forcé", + "effect": "Cette attaque inflige d’importants dégâts à un Pokémon endormi. Mais elle le réveille également." + }, + "hammerArm": { + "name": "Marto-Poing", + "effect": "Le lanceur donne un puissant coup de poing à la cible, ce qui réduit la Vitesse du lanceur." + }, + "gyroBall": { + "name": "Gyroballe", + "effect": "Le lanceur effectue une rotation rapide et frappe la cible. Plus la Vitesse du lanceur est basse par rapport à celle de la cible, plus il inflige de dégâts." + }, + "healingWish": { + "name": "Vœu Soin", + "effect": "Le lanceur tombe K.O. pour soigner les altérations de statut et les PV du Pokémon qui viendra le remplacer sur le terrain." + }, + "brine": { + "name": "Saumure", + "effect": "La puissance de cette capacité est doublée lorsque la cible a moins de la moitié de ses PV." + }, + "naturalGift": { + "name": "Don Naturel", + "effect": "Avant d’attaquer, le lanceur rassemble ses forces grâce à sa Baie. Elle détermine le type et la puissance de l’attaque." + }, + "feint": { + "name": "Ruse", + "effect": "Une attaque capable de toucher une cible qui utilise une capacité similaire à Détection ou Abri, et annule l’effet de cette capacité." + }, + "pluck": { + "name": "Picore", + "effect": "Le lanceur picore la cible. Si cette dernière tient une Baie, le lanceur la mange et profite de ses effets." + }, + "tailwind": { + "name": "Vent Arrière", + "effect": "Génère une rafale de vent qui augmente la Vitesse des Pokémon de l’équipe pendant quatre tours." + }, + "acupressure": { + "name": "Acupression", + "effect": "Le lanceur utilise sa connaissance des points de pression pour beaucoup augmenter une stat." + }, + "metalBurst": { + "name": "Fulmifer", + "effect": "Le lanceur contre-attaque avec un coup infligeant des dégâts supérieurs à ceux de la dernière capacité qui l’a blessé." + }, + "uTurn": { + "name": "Demi-Tour", + "effect": "Après son attaque, le lanceur revient à toute vitesse et change de place avec un Pokémon de l’équipe prêt à combattre." + }, + "closeCombat": { + "name": "Close Combat", + "effect": "Le lanceur ne pense plus à se protéger et frappe sa cible violemment au corps à corps. Cette capacité baisse la Défense et la Défense Spéciale du lanceur." + }, + "payback": { + "name": "Représailles", + "effect": "Le lanceur charge son énergie, puis attaque. La puissance de la capacité est doublée si le lanceur agit après la cible." + }, + "assurance": { + "name": "Assurance", + "effect": "La puissance de cette capacité est deux fois plus élevée si la cible a déjà été blessée durant ce tour." + }, + "embargo": { + "name": "Embargo", + "effect": "Empêche la cible d’utiliser un objet tenu et son Dresseur d’utiliser un objet sur lui pendant cinq tours." + }, + "fling": { + "name": "Dégommage", + "effect": "Le lanceur envoie l’objet qu’il tient sur la cible. La puissance et les effets dépendent de l’objet." + }, + "psychoShift": { + "name": "Échange Psy", + "effect": "Le lanceur transfère ses problèmes de statut à l’ennemi grâce à son pouvoir de suggestion." + }, + "trumpCard": { + "name": "Atout", + "effect": "Moins cette capacité possède de PP, plus elle est puissante." + }, + "healBlock": { + "name": "Anti-Soin", + "effect": "Le lanceur empêche l’ennemi de récupérer des PV à l’aide de capacités, talents ou objets tenus, pendant cinq tours." + }, + "wringOut": { + "name": "Essorage", + "effect": "Le lanceur essore l’ennemi. Plus l’ennemi a de PV, plus cette attaque est puissante." + }, + "powerTrick": { + "name": "Astuce Force", + "effect": "Le lanceur utilise ses pouvoirs psychiques pour échanger sa Défense et son Attaque." + }, + "gastroAcid": { + "name": "Suc Digestif", + "effect": "Le lanceur répand ses sucs digestifs sur la cible. Le fluide neutralise le talent de celle-ci." + }, + "luckyChant": { + "name": "Air Veinard", + "effect": "Le lanceur envoie une incantation vers le ciel et protège l’équipe des coups critiques pendant cinq tours." + }, + "meFirst": { + "name": "Moi d’Abord", + "effect": "Le lanceur vole la capacité prévue par l’ennemi et l’utilise en faisant plus de dégâts. Il doit frapper en premier." + }, + "copycat": { + "name": "Photocopie", + "effect": "Le lanceur imite la dernière capacité employée. Échoue si aucune capacité n’a été utilisée." + }, + "powerSwap": { + "name": "Permuforce", + "effect": "Le lanceur utilise un pouvoir psychique qui échange les changements de son Attaque et de son Attaque Spéciale avec celles de la cible." + }, + "guardSwap": { + "name": "Permugarde", + "effect": "Le lanceur utilise un pouvoir psychique qui échange les changements de sa Défense et de sa Défense Spéciale avec celles de la cible." + }, + "punishment": { + "name": "Punition", + "effect": "Plus l’ennemi a utilisé d’augmentations de stats et plus cette capacité est puissante." + }, + "lastResort": { + "name": "Dernier Recours", + "effect": "Cette capacité ne peut être utilisée qu’après que le lanceur a utilisé toutes les autres." + }, + "worrySeed": { + "name": "Soucigraine", + "effect": "Plante sur la cible une graine qui la rend soucieuse et remplace son talent par Insomnia, l’empêchant ainsi de dormir." + }, + "suckerPunch": { + "name": "Coup Bas", + "effect": "Permet au lanceur de frapper en priorité. Échoue si la cible ne prépare pas une attaque." + }, + "toxicSpikes": { + "name": "Pics Toxik", + "effect": "Le lanceur éparpille des pics autour de la cible, ce qui empoisonne les Pokémon entrant au combat de ce côté." + }, + "heartSwap": { + "name": "Permucœur", + "effect": "Le lanceur utilise un pouvoir psychique pour échanger ses changements de stats avec la cible." + }, + "aquaRing": { + "name": "Anneau Hydro", + "effect": "Un voile d’eau recouvre le lanceur et régénère ses PV à chaque tour." + }, + "magnetRise": { + "name": "Vol Magnétik", + "effect": "Le lanceur utilise l’électricité pour générer un champ magnétique et léviter durant cinq tours." + }, + "flareBlitz": { + "name": "Boutefeu", + "effect": "Le lanceur s’embrase avant de charger la cible, ce qui peut la bruler (10% de chances). Le choc blesse aussi gravement le lanceur." + }, + "forcePalm": { + "name": "Forte-Paume", + "effect": "Une onde de choc frappe la cible, ce qui peut aussi la paralyser (30% de chances)." + }, + "auraSphere": { + "name": "Aurasphère", + "effect": "Le lanceur puise au fond de lui-même pour dégager une aura et projeter de l’énergie sur la cible. N’échoue jamais." + }, + "rockPolish": { + "name": "Poliroche", + "effect": "Le lanceur polit son corps pour diminuer sa résistance au vent. Augmente beaucoup la Vitesse." + }, + "poisonJab": { + "name": "Direct Toxik", + "effect": "Le lanceur attaque la cible avec un tentacule, un bras, ou un autre membre imprégné de poison, ce qui peut aussi empoisonner la cible (30% de chances)." + }, + "darkPulse": { + "name": "Vibrobscur", + "effect": "Le lanceur projette une horrible aura chargée de pensées maléfiques, ce qui peut aussi apeurer la cible." + }, + "nightSlash": { + "name": "Tranche-Nuit", + "effect": "Le lanceur lacère la cible à la première occasion. Taux de critiques élevé." + }, + "aquaTail": { + "name": "Hydro-Queue", + "effect": "Le lanceur attaque en balançant sa queue comme une lame de fond en pleine tempête." + }, + "seedBomb": { + "name": "Canon Graine", + "effect": "Le lanceur déclenche un déluge de grosses graines à la coque solide sur la cible." + }, + "airSlash": { + "name": "Lame d’Air", + "effect": "Le lanceur attaque avec une lame d’air capable de fendre le ciel, ce qui peut aussi apeurer la cible (30% de chances)." + }, + "xScissor": { + "name": "Plaie Croix", + "effect": "Le lanceur taillade la cible en utilisant ses faux ou ses griffes comme une paire de ciseaux." + }, + "bugBuzz": { + "name": "Bourdon", + "effect": "Le lanceur fait vibrer son corps pour lancer une vague sonique, ce qui peut aussi baisser la Défense Spéciale de la cible." + }, + "dragonPulse": { + "name": "Draco-Choc", + "effect": "Le lanceur ouvre la bouche pour projeter une aura qui frappe la cible." + }, + "dragonRush": { + "name": "Draco-Charge", + "effect": "Le lanceur frappe la cible en prenant un air menaçant, ce qui peut aussi l’apeurer (20% de chances)." + }, + "powerGem": { + "name": "Rayon Gemme", + "effect": "Le lanceur attaque avec un rayon de lumière qui scintille comme s’il était composé de gemmes." + }, + "drainPunch": { + "name": "Vampi-Poing", + "effect": "Un coup de poing qui draine l’énergie. Convertit la moitié des dégâts infligés en PV pour le lanceur." + }, + "vacuumWave": { + "name": "Onde Vide", + "effect": "Le lanceur agite son poing pour projeter une onde de vide. Frappe en priorité." + }, + "focusBlast": { + "name": "Exploforce", + "effect": "Le lanceur rassemble ses forces et laisse éclater son pouvoir, ce qui peut aussi baisser la Défense Spéciale de la cible." + }, + "energyBall": { + "name": "Éco-Sphère", + "effect": "Le lanceur utilise les pouvoirs de la nature pour attaquer la cible, ce qui peut aussi baisser la Défense Spéciale de celle-ci." + }, + "braveBird": { + "name": "Rapace", + "effect": "Le lanceur replie ses ailes et charge en rase-mottes. Blesse gravement le lanceur." + }, + "earthPower": { + "name": "Telluriforce", + "effect": "De terribles séismes secouent la cible et peuvent aussi baisser sa Défense Spéciale." + }, + "switcheroo": { + "name": "Passe-Passe", + "effect": "Le lanceur échange son objet avec celui de la cible à une vitesse que l’œil a du mal à suivre." + }, + "gigaImpact": { + "name": "Giga Impact", + "effect": "Le lanceur charge la cible de toute ses forces et doit ensuite se reposer au tour suivant." + }, + "nastyPlot": { + "name": "Machination", + "effect": "Stimule l’esprit par de mauvaises pensées. Augmente beaucoup l’Attaque Spéciale du lanceur." + }, + "bulletPunch": { + "name": "Pisto-Poing", + "effect": "Le lanceur envoie des coups de poing aussi rapides que des balles de revolver. Frappe en priorité." + }, + "avalanche": { + "name": "Avalanche", + "effect": "Une capacité dont la puissance est doublée si le lanceur a été blessé par la cible durant ce tour." + }, + "iceShard": { + "name": "Éclats Glace", + "effect": "Le lanceur crée des éclats de glace qu’il envoie sur la cible. Frappe en priorité." + }, + "shadowClaw": { + "name": "Griffe Ombre", + "effect": "Attaque avec une griffe puissante faite d’ombres. Taux de critiques élevé." + }, + "thunderFang": { + "name": "Crocs Éclair", + "effect": "Le lanceur utilise une morsure électrifiée qui peut aussi paralyser (10% de chances) ou apeurer la cible (10% de chances)." + }, + "iceFang": { + "name": "Crocs Givre", + "effect": "Le lanceur utilise une morsure glaciale qui peut aussi geler (10% de chances) ou apeurer la cible (10% de chances)." + }, + "fireFang": { + "name": "Crocs Feu", + "effect": "Le lanceur utilise une morsure enflammée qui peut aussi bruler (10% de chances) ou apeurer (10% de chances) la cible." + }, + "shadowSneak": { + "name": "Ombre Portée", + "effect": "Le lanceur étend son ombre pour frapper par-derrière. Frappe en priorité." + }, + "mudBomb": { + "name": "Boue-Bombe", + "effect": "Le lanceur attaque à l’aide d’une boule de boue solidifiée. Peut aussi baisser la Précision de l’ennemi." + }, + "psychoCut": { + "name": "Coupe Psycho", + "effect": "Le lanceur entaille la cible grâce à des lames faites d’énergie psychique. Taux de critiques élevé." + }, + "zenHeadbutt": { + "name": "Psykoud’Boul", + "effect": "Le lanceur concentre sa volonté et donne un coup de tête à la cible, ce qui peut aussi apeurer celle-ci (20% de chances)." + }, + "mirrorShot": { + "name": "Miroi-Tir", + "effect": "Le corps poli du lanceur libère un éclair d’énergie. Peut aussi baisser la Précision de l’ennemi." + }, + "flashCannon": { + "name": "Luminocanon", + "effect": "Le lanceur concentre son énergie lumineuse et la fait exploser, ce qui peut aussi baisser la Défense Spéciale de la cible." + }, + "rockClimb": { + "name": "Escalade", + "effect": "Le lanceur se jette violemment sur l’ennemi. Peut aussi le rendre confus." + }, + "defog": { + "name": "Anti-Brume", + "effect": "Un grand coup de vent disperse Protection ou Mur Lumière de la cible et diminue également son Esquive." + }, + "trickRoom": { + "name": "Distorsion", + "effect": "Le lanceur crée une zone mystérieuse où les Pokémon les plus lents frappent en priorité pendant cinq tours." + }, + "dracoMeteor": { + "name": "Draco-Météore", + "effect": "Le lanceur invoque des comètes. Le contrecoup réduit beaucoup son Attaque Spéciale." + }, + "discharge": { + "name": "Coup d’Jus", + "effect": "Un flamboiement d’électricité frappe tous les Pokémon autour du lanceur. Peut aussi les paralyser (30% de chances)." + }, + "lavaPlume": { + "name": "Ébullilave", + "effect": "Des flammes s’abattent sur tous les Pokémon autour du lanceur, ce qui peut aussi les bruler (10% de chances)." + }, + "leafStorm": { + "name": "Tempête Verte", + "effect": "Invoque une tempête de feuilles acérées. Le contrecoup réduit beaucoup l’Attaque Spéciale du lanceur." + }, + "powerWhip": { + "name": "Mégafouet", + "effect": "Le lanceur fait virevolter violemment ses lianes ou ses tentacules pour fouetter la cible." + }, + "rockWrecker": { + "name": "Roc-Boulet", + "effect": "Le lanceur attaque en projetant un gros rocher sur l’ennemi. Il doit se reposer au tour suivant." + }, + "crossPoison": { + "name": "Poison Croix", + "effect": "Un coup tranchant qui peut empoisonner la cible (10% de chances). Taux de critiques élevé." + }, + "gunkShot": { + "name": "Détricanon", + "effect": "Le lanceur envoie des détritus sur la cible, ce qui peut aussi l’empoisonner (30% de chances)." + }, + "ironHead": { + "name": "Tête de Fer", + "effect": "Le lanceur heurte la cible avec sa tête dure comme de l’acier, ce qui peut aussi l’apeurer (30% de chances)." + }, + "magnetBomb": { + "name": "Bombe Aimant", + "effect": "Le lanceur projette des bombes d’acier qui collent à l’ennemi. N’échoue jamais." + }, + "stoneEdge": { + "name": "Lame de Roc", + "effect": "Le lanceur transperce la cible avec des rochers aiguisés. Taux de critiques élevé." + }, + "captivate": { + "name": "Séduction", + "effect": "Si l’ennemi est de sexe opposé au lanceur, il est séduit et son Attaque Spéciale baisse beaucoup." + }, + "stealthRock": { + "name": "Piège de Roc", + "effect": "Le lanceur fait flotter des pierres autour de la cible qui blessent tout adversaire entrant au combat." + }, + "grassKnot": { + "name": "Nœud Herbe", + "effect": "Le lanceur fait des nœuds dans l’herbe pour faire trébucher la cible. Plus la cible est lourde, plus la puissance de cette capacité augmente." + }, + "chatter": { + "name": "Babil", + "effect": "Attaque avec les ondes sonores assourdissantes qu’il émet en bavardant. Rend l’ennemi confus." + }, + "judgment": { + "name": "Jugement", + "effect": "Le lanceur libère une myriade de rayons de lumière. Le type varie selon la plaque que tient le lanceur." + }, + "bugBite": { + "name": "Piqure", + "effect": "Le lanceur pique la cible. Si celle-ci tient une Baie, le lanceur la dévore et obtient son effet." + }, + "chargeBeam": { + "name": "Rayon Chargé", + "effect": "Le lanceur tire un rayon chargé d’électricité. Peut aussi augmenter son Attaque Spéciale." + }, + "woodHammer": { + "name": "Martobois", + "effect": "Le lanceur heurte la cible de son corps robuste, ce qui blesse aussi gravement le lanceur." + }, + "aquaJet": { + "name": "Aqua-Jet", + "effect": "Le lanceur fonce sur la cible si rapidement qu’on parvient à peine à le discerner. Frappe en priorité." + }, + "attackOrder": { + "name": "Appel Attaque", + "effect": "Le lanceur appelle ses subalternes pour frapper la cible. Taux de critiques élevé." + }, + "defendOrder": { + "name": "Appel Défense", + "effect": "Le lanceur appelle ses subalternes pour former un bouclier qui augmente sa Défense et sa Défense Spéciale." + }, + "healOrder": { + "name": "Appel Soins", + "effect": "Le lanceur appelle ses sous-fifres pour le soigner. Il récupère jusqu’à la moitié de ses PV max." + }, + "headSmash": { + "name": "Fracass’Tête", + "effect": "Le lanceur assène un coup de tête désespéré, ce qui le blesse aussi très gravement." + }, + "doubleHit": { + "name": "Coup Double", + "effect": "Le lanceur frappe la cible deux fois d’affilée à l’aide de sa queue ou d’un autre membre." + }, + "roarOfTime": { + "name": "Hurle-Temps", + "effect": "Le lanceur frappe si fort qu’il affecte le cours du temps. Il se repose au tour suivant." + }, + "spacialRend": { + "name": "Spatio-Rift", + "effect": "Le lanceur déchire la cible et l’espace autour de lui. Taux de critiques élevé." + }, + "lunarDance": { + "name": "Danse Lune", + "effect": "Le lanceur tombe K.O. pour soigner totalement le Pokémon qui prendra sa place au combat." + }, + "crushGrip": { + "name": "Presse", + "effect": "Une force puissante écrase l’ennemi. Plus il lui reste de PV et plus l’attaque est puissante." + }, + "magmaStorm": { + "name": "Vortex Magma", + "effect": "La cible est prise dans un tourbillon de feu qui dure de quatre à cinq tours." + }, + "darkVoid": { + "name": "Trou Noir", + "effect": "L’ennemi est plongé dans les ténèbres. Il tombe dans un profond sommeil." + }, + "seedFlare": { + "name": "Fulmigraine", + "effect": "Le corps du lanceur émet une onde de choc. Peut aussi beaucoup baisser la Défense Spéciale de la cible." + }, + "ominousWind": { + "name": "Vent Mauvais", + "effect": "Le lanceur crée une violente bourrasque. Peut aussi augmenter toutes ses stats." + }, + "shadowForce": { + "name": "Revenant", + "effect": "Le lanceur disparait au premier tour et frappe la cible au deuxième. Cette capacité fonctionne même si la cible se protège." + }, + "honeClaws": { + "name": "Aiguisage", + "effect": "Le lanceur s’aiguise les griffes. Augmente l’Attaque et la Précision." + }, + "wideGuard": { + "name": "Garde Large", + "effect": "Bloque les attaques visant tous les alliés pendant un tour." + }, + "guardSplit": { + "name": "Partage Garde", + "effect": "Additionne la Défense et la Défense Spéciale du lanceur et de sa cible et les redistribue équitablement entre les deux." + }, + "powerSplit": { + "name": "Partage Force", + "effect": "Additionne l’Attaque Spéciale et l’Attaque du lanceur et de sa cible et les redistribue équitablement entre les deux." + }, + "wonderRoom": { + "name": "Zone Étrange", + "effect": "Le lanceur crée une zone mystérieuse où la Défense et la Défense Spéciale de tous les Pokémon sont inversées pendant cinq tours." + }, + "psyshock": { + "name": "Choc Psy", + "effect": "Le lanceur matérialise des ondes mystérieuses qu’il projette sur la cible, ce qui inflige des dégâts physiques à celle-ci." + }, + "venoshock": { + "name": "Choc Venin", + "effect": "Le lanceur asperge la cible d’un poison spécial. La puissance de la capacité est doublée si la cible est empoisonnée." + }, + "autotomize": { + "name": "Allègement", + "effect": "Le lanceur se débarrasse des parties inutiles de son corps. Son poids diminue et sa Vitesse augmente beaucoup." + }, + "ragePowder": { + "name": "Poudre Fureur", + "effect": "Le lanceur s’asperge d’une poudre irritante pour attirer l’attention et diriger toutes les attaques ennemies sur lui." + }, + "telekinesis": { + "name": "Lévikinésie", + "effect": "Un pouvoir qui fait flotter l’ennemi dans les airs. Pendant trois tours, il devient plus facile à atteindre." + }, + "magicRoom": { + "name": "Zone Magique", + "effect": "Le lanceur crée une zone mystérieuse où les objets tenus par tous les Pokémon n’ont plus aucun effet pendant cinq tours." + }, + "smackDown": { + "name": "Anti-Air", + "effect": "Le lanceur jette un projectile sur la cible. Si cette dernière vole, elle tombe au sol." + }, + "stormThrow": { + "name": "Yama Arashi", + "effect": "Un coup très puissant dont l’effet est toujours critique." + }, + "flameBurst": { + "name": "Rebondifeu", + "effect": "Quand l’attaque atteint sa cible, elle projette des flammes qui touchent tout ennemi situé à côté." + }, + "sludgeWave": { + "name": "Cradovague", + "effect": "Une vague de détritus attaque tous les Pokémon autour du lanceur. Peut aussi empoisonner (10% de chances)." + }, + "quiverDance": { + "name": "Papillodanse", + "effect": "Une danse mystique dont le rythme parfait augmente l’Attaque Spéciale, la Défense Spéciale et la Vitesse du lanceur." + }, + "heavySlam": { + "name": "Tacle Lourd", + "effect": "Le lanceur se jette sur la cible de tout son poids. Plus il est lourd par rapport à la cible, plus la puissance de cette capacité augmente." + }, + "synchronoise": { + "name": "Synchropeine", + "effect": "Des ondes mystérieuses blessent tous les Pokémon alentour qui sont du même type que le lanceur." + }, + "electroBall": { + "name": "Boule Élek", + "effect": "Le lanceur envoie une boule d’électricité. Plus la Vitesse du lanceur est élevée par rapport à celle de la cible, plus la puissance de la capacité augmente." + }, + "soak": { + "name": "Détrempage", + "effect": "Le lanceur projette beaucoup d’eau sur sa cible, qui devient de type Eau." + }, + "flameCharge": { + "name": "Nitrocharge", + "effect": "Le lanceur s’entoure de flammes pour attaquer la cible. Il se concentre et sa Vitesse augmente." + }, + "coil": { + "name": "Enroulement", + "effect": "Le lanceur s’enroule sur lui-même et se concentre. Son Attaque, sa Défense et sa Précision augmentent." + }, + "lowSweep": { + "name": "Balayette", + "effect": "Un coup rapide qui affecte la mobilité de la cible et diminue sa Vitesse." + }, + "acidSpray": { + "name": "Bombe Acide", + "effect": "Le lanceur projette un liquide acide qui fait fondre la cible, ce qui diminue beaucoup la Défense Spéciale de celle-ci." + }, + "foulPlay": { + "name": "Tricherie", + "effect": "Le lanceur utilise la force de la cible. Plus l’Attaque de celle-ci est élevée, plus le lanceur inflige de dégâts." + }, + "simpleBeam": { + "name": "Rayon Simple", + "effect": "Le lanceur envoie des ondes mystérieuses à la cible, dont le talent est remplacé par le talent Simple." + }, + "entrainment": { + "name": "Ten-Danse", + "effect": "Le lanceur danse sur un rythme étrange. Il force sa cible à l’imiter, ce qui lui fait adopter son talent." + }, + "afterYou": { + "name": "Après Vous", + "effect": "S’il est le premier à agir, le lanceur permet à sa cible d’utiliser une capacité juste après lui." + }, + "round": { + "name": "Chant Canon", + "effect": "Le lanceur attaque la cible en chantant. Si plusieurs Pokémon déclenchent cette attaque à la suite, la puissance augmente." + }, + "echoedVoice": { + "name": "Écho", + "effect": "Un cri retentissant blesse la cible. Si le lanceur ou d’autres Pokémon utilisent cette capacité à chaque tour, la puissance augmente." + }, + "chipAway": { + "name": "Attrition", + "effect": "Une attaque puissante quand l’ennemi baisse sa garde. Inflige des dégâts sans tenir compte des changements de stats." + }, + "clearSmog": { + "name": "Bain de Smog", + "effect": "Le lanceur projette de la boue bizarre sur la cible. Les changements de stats de la cible sont annulés." + }, + "storedPower": { + "name": "Force Ajoutée", + "effect": "Le lanceur attaque la cible avec une force cumulée. Plus les stats du lanceur sont augmentées, plus la puissance de cette capacité augmente." + }, + "quickGuard": { + "name": "Prévention", + "effect": "Protège le lanceur et ses alliés des attaques prioritaires." + }, + "allySwitch": { + "name": "Interversion", + "effect": "Le lanceur se téléporte à l’aide d’un pouvoir mystérieux. Il échange sa place avec celle d’un allié sur le terrain. Peut échouer si utilisée plusieurs fois de suite." + }, + "scald": { + "name": "Ébullition", + "effect": "Le lanceur projette un jet d’eau bouillante sur la cible, ce qui peut aussi la bruler (30% de chances)." + }, + "shellSmash": { + "name": "Exuviation", + "effect": "Le lanceur brise sa carapace. Il baisse sa Défense et sa Défense Spéciale, mais augmente beaucoup son Attaque, son Attaque Spéciale et sa Vitesse." + }, + "healPulse": { + "name": "Vibra Soin", + "effect": "Le lanceur projette une aura de bien-être qui fait récupérer la moitié de ses PV max à la cible." + }, + "hex": { + "name": "Châtiment", + "effect": "Une attaque acharnée qui cause davantage de dégâts à la cible si elle a une altération de statut." + }, + "skyDrop": { + "name": "Chute Libre", + "effect": "Le lanceur emmène l’ennemi dans les airs au premier tour et le lâche dans le vide au second. L’ennemi saisi ne peut pas attaquer." + }, + "shiftGear": { + "name": "Change-Vitesse", + "effect": "Le lanceur fait tourner ses engrenages. Cela augmente son Attaque et augmente beaucoup sa Vitesse." + }, + "circleThrow": { + "name": "Projection", + "effect": "Le lanceur fait une projection sur un Pokémon ennemi et le remplace par un autre. Lors d’un combat contre un Pokémon sauvage seul, cela met fin au combat." + }, + "incinerate": { + "name": "Calcination", + "effect": "Des flammes calcinent la cible. Si elle tient un objet, une Baie par exemple, celui-ci est brulé et devient inutilisable." + }, + "quash": { + "name": "À la Queue", + "effect": "Retient la cible de force, l’obligeant à agir en dernier." + }, + "acrobatics": { + "name": "Acrobatie", + "effect": "Le lanceur frappe la cible avec agilité. S’il ne tient pas d’objet, l’attaque inflige davantage de dégâts." + }, + "reflectType": { + "name": "Copie-Type", + "effect": "Le lanceur adopte le même type que la cible." + }, + "retaliate": { + "name": "Vengeance", + "effect": "Le lanceur venge un allié K.O. Si un Pokémon de l’équipe a été mis K.O. au tour d’avant, la puissance augmente." + }, + "finalGambit": { + "name": "Tout ou Rien", + "effect": "Une attaque très risquée. Le lanceur perd tous ses PV restants et inflige autant de dégâts à la cible." + }, + "bestow": { + "name": "Passe-Cadeau", + "effect": "Si la cible ne tient pas d’objet, le lanceur lui donne l’objet qu’il tient." + }, + "inferno": { + "name": "Feu d’Enfer", + "effect": "La cible est entourée d’un torrent de flammes ardentes qui la brulent." + }, + "waterPledge": { + "name": "Aire d’Eau", + "effect": "Une masse d’eau s’abat sur la cible. Si cette capacité est utilisée en même temps qu’Aire de Feu, la puissance augmente et un arc-en-ciel apparait." + }, + "firePledge": { + "name": "Aire de Feu", + "effect": "Une masse de feu s’abat sur la cible. Si cette capacité est utilisée en même temps qu’Aire d’Herbe, la puissance augmente et une mer de feu apparait." + }, + "grassPledge": { + "name": "Aire d’Herbe", + "effect": "Une masse végétale s’abat sur la cible. Si cette capacité est utilisée en même temps qu’Aire d’Eau, la puissance augmente et un marécage apparait." + }, + "voltSwitch": { + "name": "Change Éclair", + "effect": "Après son attaque, le lanceur revient à toute vitesse et change de place avec un Pokémon de l’équipe prêt au combat." + }, + "struggleBug": { + "name": "Survinsecte", + "effect": "Le lanceur frappe en se débattant de toutes ses forces, et baisse l’Attaque Spéciale de la cible." + }, + "bulldoze": { + "name": "Piétisol", + "effect": "Le lanceur piétine le sol et inflige des dégâts à tous les Pokémon autour de lui. Baisse aussi leur Vitesse." + }, + "frostBreath": { + "name": "Souffle Glacé", + "effect": "Un souffle froid blesse la cible. L’effet est toujours critique." + }, + "dragonTail": { + "name": "Draco-Queue", + "effect": "Un coup puissant qui blesse la cible et l’envoie au loin. Lors d’un combat contre un Pokémon sauvage seul, met fin au combat." + }, + "workUp": { + "name": "Rengorgement", + "effect": "Le lanceur se rengorge et augmente son Attaque et son Attaque Spéciale." + }, + "electroweb": { + "name": "Toile Élek", + "effect": "Le lanceur attaque la cible en l’attrapant dans un filet électrique. Baisse aussi la Vitesse de la cible." + }, + "wildCharge": { + "name": "Éclair Fou", + "effect": "Une charge électrique violente qui blesse aussi légèrement le lanceur." + }, + "drillRun": { + "name": "Tunnelier", + "effect": "Le lanceur tourne sur lui-même comme une perceuse et se jette sur la cible. Taux de critiques élevé." + }, + "dualChop": { + "name": "Double Baffe", + "effect": "Le lanceur frappe l’ennemi deux fois d’affilée avec les parties les plus robustes de son corps." + }, + "heartStamp": { + "name": "Crève-Cœur", + "effect": "Déconcentre l’ennemi avec des mouvements mignons avant de le frapper violemment. Peut aussi l’apeurer (30% de chances)." + }, + "hornLeech": { + "name": "Encornebois", + "effect": "Un coup de cornes qui draine l’énergie de la cible. La capacité convertit la moitié des dégâts infligés en PV pour le lanceur." + }, + "sacredSword": { + "name": "Lame Sainte", + "effect": "Un violent coup d’épée qui lacère la cible et lui inflige des dégâts en ignorant ses changements de stats." + }, + "razorShell": { + "name": "Coqui-Lame", + "effect": "Un coquillage aiguisé lacère la cible et peut aussi baisser sa Défense." + }, + "heatCrash": { + "name": "Tacle Feu", + "effect": "Le lanceur projette son corps enflammé contre la cible. Plus il est lourd par rapport à la cible, plus la puissance de cette capacité augmente." + }, + "leafTornado": { + "name": "Phytomixeur", + "effect": "L’ennemi est pris dans un tourbillon de feuilles acérées. Peut aussi baisser sa Précision." + }, + "steamroller": { + "name": "Bulldoboule", + "effect": "Le lanceur se roule en boule et écrase son ennemi. Peut aussi l’apeurer (30% de chances)." + }, + "cottonGuard": { + "name": "Cotogarde", + "effect": "Le lanceur se protège en s’emmitouflant dans du coton. Sa Défense augmente énormément." + }, + "nightDaze": { + "name": "Explonuit", + "effect": "Le lanceur attaque avec une onde de choc ténébreuse qui peut aussi baisser la Précision de la cible." + }, + "psystrike": { + "name": "Frappe Psy", + "effect": "Le lanceur matérialise des ondes mystérieuses qu’il projette sur la cible, ce qui inflige des dégâts physiques à celle-ci." + }, + "tailSlap": { + "name": "Plumo-Queue", + "effect": "Le lanceur frappe la cible de deux à cinq fois d’affilée avec sa queue robuste." + }, + "hurricane": { + "name": "Vent Violent", + "effect": "Le lanceur déclenche une tempête de vents violents qui s’abat sur la cible, et peut aussi la rendre confuse." + }, + "headCharge": { + "name": "Peignée", + "effect": "Le lanceur donne un coup avec sa tête couronnée d’une fière crinière. Blesse aussi légèrement le lanceur." + }, + "gearGrind": { + "name": "Lancécrou", + "effect": "Le lanceur jette deux écrous d’acier qui frappent l’ennemi deux fois d’affilée." + }, + "searingShot": { + "name": "Incendie", + "effect": "Des boules de feu s’abattent sur tous les Pokémon autour du lanceur. Peut aussi les bruler (30% de chances)." + }, + "technoBlast": { + "name": "Techno-Buster", + "effect": "Le lanceur projette un rayon lumineux sur l’ennemi. Le type varie selon le Module que tient le lanceur." + }, + "relicSong": { + "name": "Chant Antique", + "effect": "Le lanceur attaque la cible en lui chantant une chanson d’un autre temps qui peut aussi l’endormir." + }, + "secretSword": { + "name": "Lame Ointe", + "effect": "L’ennemi est lacéré par une longue corne. Son pouvoir mystérieux inflige des dégâts physiques." + }, + "glaciate": { + "name": "Ère Glaciaire", + "effect": "Un souffle de vent qui congèle tout sur son passage s’abat sur l’ennemi. Réduit aussi sa Vitesse." + }, + "boltStrike": { + "name": "Charge Foudre", + "effect": "Le lanceur s’enveloppe d’une charge électrique surpuissante et se jette sur l’ennemi. Peut aussi le paralyser (20% de chances)." + }, + "blueFlare": { + "name": "Flamme Bleue", + "effect": "De magnifiques et redoutables flammes bleues fondent sur l’ennemi. Peut aussi le bruler (20% de chances)." + }, + "fieryDance": { + "name": "Danse du Feu", + "effect": "Le lanceur s’enveloppe de flammes et attaque la cible, Cela peut aussi augmenter l’Attaque Spéciale du lanceur." + }, + "freezeShock": { + "name": "Éclair Gelé", + "effect": "Projette un bloc de glace électrifié sur l’ennemi au second tour. Peut aussi le paralyser (30% de chances)." + }, + "iceBurn": { + "name": "Feu Glacé", + "effect": "Au second tour, le lanceur projette un souffle de vent glacial dévastateur sur l’ennemi. Peut aussi le bruler (30% de chances)." + }, + "snarl": { + "name": "Aboiement", + "effect": "Le lanceur hurle sur la cible et baisse l’Attaque Spéciale de celle-ci." + }, + "icicleCrash": { + "name": "Chute Glace", + "effect": "Le lanceur envoie de gros blocs de glace sur la cible pour lui infliger des dégâts, ce qui peut aussi l’apeurer (30% de chances)." + }, + "vCreate": { + "name": "Coup Victoire", + "effect": "Le lanceur fait jaillir des flammes ardentes de son front et se jette sur la cible, ce qui baisse la Défense, la Défense Spéciale et la Vitesse du lanceur." + }, + "fusionFlare": { + "name": "Flamme Croix", + "effect": "Projette une boule de feu gigantesque. L’effet augmente sous l’influence d’Éclair Croix." + }, + "fusionBolt": { + "name": "Éclair Croix", + "effect": "Projette un orbe électrique gigantesque. L’effet augmente sous l’influence de Flamme Croix." + }, + "flyingPress": { + "name": "Flying Press", + "effect": "Une attaque en piqué depuis le ciel, à la fois de type Combat et de type Vol." + }, + "matBlock": { + "name": "Tatamigaeshi", + "effect": "Retourne un tatami pour bloquer, comme avec un bouclier, les capacités visant le lanceur ou ses alliés. N’a pas d’effet sur les attaques de statut." + }, + "belch": { + "name": "Éructation", + "effect": "Le lanceur se tourne vers la cible et lui éructe dessus, infligeant des dégâts. Ne fonctionne que si le lanceur consomme une Baie tenue." + }, + "rototiller": { + "name": "Fertilisation", + "effect": "Laboure le sol et le rend plus fertile. Augmente l’Attaque et l’Attaque Spéciale des Pokémon de type Plante." + }, + "stickyWeb": { + "name": "Toile Gluante", + "effect": "Le lanceur déploie une toile visqueuse autour de la cible qui ralentit la Vitesse de tout adversaire entrant au combat." + }, + "fellStinger": { + "name": "Dard Mortel", + "effect": "Le lanceur augmente énormément son Attaque si une cible est mise K.O. par cette capacité." + }, + "phantomForce": { + "name": "Hantise", + "effect": "Le lanceur disparait au premier tour et frappe au second. Cette attaque passe outre les protections." + }, + "trickOrTreat": { + "name": "Halloween", + "effect": "Insuffle à la cible l’esprit d’Halloween, et ajoute le type Spectre à ses types actuels." + }, + "nobleRoar": { + "name": "Râle Mâle", + "effect": "Le lanceur pousse un rugissement qui intimide la cible et diminue l’Attaque et l’Attaque Spéciale de celle-ci." + }, + "ionDeluge": { + "name": "Déluge Plasmique", + "effect": "Diffuse des particules saturées d’électricité qui transforment les capacités de type Normal en capacités de type Électrik." + }, + "parabolicCharge": { + "name": "Parabocharge", + "effect": "Inflige des dégâts à tous les Pokémon autour du lanceur. Il récupère en PV la moitié des dégâts infligés." + }, + "forestsCurse": { + "name": "Maléfice Sylvain", + "effect": "La cible est charmée par l’esprit de la forêt. Le type Plante est ajouté à ses types actuels." + }, + "petalBlizzard": { + "name": "Tempête Florale", + "effect": "Déclenche une violente tempête de fleurs qui inflige des dégâts à tous les Pokémon alentour." + }, + "freezeDry": { + "name": "Lyophilisation", + "effect": "Le lanceur refroidit violemment la cible et peut la geler (10% de chances). Super efficace sur les Pokémon de type Eau." + }, + "disarmingVoice": { + "name": "Voix Enjôleuse", + "effect": "Le lanceur laisse s’échapper une voix enchanteresse qui inflige des dégâts psychiques à la cible. N’échoue jamais." + }, + "partingShot": { + "name": "Dernier Mot", + "effect": "Le lanceur menace la cible dans une ultime tirade avant de changer de place avec un autre Pokémon. Réduit l’Attaque et l’Attaque Spéciale de la cible." + }, + "topsyTurvy": { + "name": "Renversement", + "effect": "Inverse tous les changements de stats de la cible." + }, + "drainingKiss": { + "name": "Vampibaiser", + "effect": "Le lanceur aspire la force vitale de la cible par un baiser qui rend au lanceur un nombre de PV supérieur ou égal à la moitié des dégâts infligés." + }, + "craftyShield": { + "name": "Vigilance", + "effect": "Utilise une force mystérieuse pour protéger l’équipe des capacités de statut. Ne protège pas des autres capacités." + }, + "flowerShield": { + "name": "Garde Florale", + "effect": "Grâce à une force mystérieuse, la Défense de tous les Pokémon Plante au combat augmente." + }, + "grassyTerrain": { + "name": "Champ Herbu", + "effect": "Pendant cinq tours, les Pokémon au sol récupèrent quelques PV à chaque tour et la puissance des capacités de type Plante augmente." + }, + "mistyTerrain": { + "name": "Champ Brumeux", + "effect": "Pendant cinq tours, les Pokémon au sol ne peuvent pas subir d’altération de statut et les dégâts infligés par les capacités de type Dragon sont divisés par deux." + }, + "electrify": { + "name": "Électrisation", + "effect": "Si le lanceur attaque avant la cible, les capacités de celle-ci seront de type Électrik jusqu’à la fin du tour." + }, + "playRough": { + "name": "Câlinerie", + "effect": "Le lanceur attaque la cible en lui faisant des câlineries, ce qui peut aussi diminuer l’Attaque de celle-ci." + }, + "fairyWind": { + "name": "Vent Féérique", + "effect": "Le lanceur déchaine un vent magique qui cingle la cible." + }, + "moonblast": { + "name": "Pouvoir Lunaire", + "effect": "Le lanceur attaque la cible grâce au pouvoir de la lune, ce qui peut diminuer l’Attaque Spéciale de celle-ci." + }, + "boomburst": { + "name": "Bang Sonique", + "effect": "Attaque les Pokémon alentour grâce à une onde sonore assourdissante qui détruit tout sur son passage." + }, + "fairyLock": { + "name": "Verrou Enchanté", + "effect": "Des chaines entourent la zone de combat, empêchant tous les Pokémon de quitter le terrain au tour suivant." + }, + "kingsShield": { + "name": "Bouclier Royal", + "effect": "Prend une posture défensive pour bloquer les dégâts. Diminue beaucoup l’Attaque de tout Pokémon qui entre en contact avec le lanceur." + }, + "playNice": { + "name": "Camaraderie", + "effect": "La cible se lie d’amitié avec le lanceur et perd sa combativité, ce qui diminue son Attaque." + }, + "confide": { + "name": "Confidence", + "effect": "Le lanceur dévoile des secrets à la cible, qui perd alors sa concentration et voit son Attaque Spéciale diminuer." + }, + "diamondStorm": { + "name": "Orage Adamantin", + "effect": "Provoque une tempête de diamants qui inflige des dégâts. Peut beaucoup augmenter la Défense du lanceur." + }, + "steamEruption": { + "name": "Jet de Vapeur", + "effect": "Le lanceur projette de la vapeur extrêmement chaude sur la cible, ce qui peut aussi la bruler (30% de chances)." + }, + "hyperspaceHole": { + "name": "TrouDimensionnel", + "effect": "Le lanceur crée une faille dimensionnelle pour attaquer soudainement la cible de côté. Ignore même les capacités comme Abri ou Détection." + }, + "waterShuriken": { + "name": "Sheauriken", + "effect": "Le lanceur attaque la cible avec des shuriken de mucus. Cette capacité frappe en priorité deux à cinq fois d’affilée en un tour." + }, + "mysticalFire": { + "name": "Feu Ensorcelé", + "effect": "Le lanceur attaque en soufflant des flammes brulantes par la bouche et diminue l’Attaque Spéciale de la cible." + }, + "spikyShield": { + "name": "Pico-Défense", + "effect": "Protège des attaques, et diminue les PV de tout assaillant qui entre en contact avec le lanceur." + }, + "aromaticMist": { + "name": "Brume Capiteuse", + "effect": "Grâce à un parfum mystérieux, augmente la Défense Spéciale d’un allié." + }, + "eerieImpulse": { + "name": "Ondes Étranges", + "effect": "Le corps du lanceur produit des ondes anormales qui enveloppent la cible et diminuent beaucoup son Attaque Spéciale." + }, + "venomDrench": { + "name": "Piège de Venin", + "effect": "Sécrète un liquide empoisonné. Diminue l’Attaque, l’Attaque Spéciale et la Vitesse de l’ennemi empoisonné." + }, + "powder": { + "name": "Nuée de Poudre", + "effect": "L’ennemi est pris dans un nuage de poudre. S’il utilise une capacité de type Feu lors du même tour, le nuage explose et lui inflige des dégâts." + }, + "geomancy": { + "name": "Géo-Contrôle", + "effect": "Le lanceur absorbe de l’énergie au premier tour et augmente beaucoup son Attaque Spéciale, sa Défense Spéciale et sa Vitesse au second." + }, + "magneticFlux": { + "name": "Magné-Contrôle", + "effect": "Manipule les champs magnétiques pour augmenter la Défense et la Défense Spéciale des Pokémon alliés dotés du talent Plus ou du talent Moins." + }, + "happyHour": { + "name": "Étrennes", + "effect": "Utilisée pendant un combat, multiplie par deux l’argent gagné à la fin." + }, + "electricTerrain": { + "name": "Champ Électrifié", + "effect": "Pendant cinq tours, le terrain se charge d’électricité. Les Pokémon au sol ne peuvent pas s’endormir et la puissance des capacités de type Électrik augmente." + }, + "dazzlingGleam": { + "name": "Éclat Magique", + "effect": "Le lanceur libère une puissante décharge lumineuse qui inflige des dégâts à l’ennemi." + }, + "celebrate": { + "name": "Célébration", + "effect": "Le Pokémon vous souhaite plein de bonnes choses pour cet évènement spécial." + }, + "holdHands": { + "name": "Mains Jointes", + "effect": "Le lanceur et un allié se prennent la main, ce qui les rend heureux." + }, + "babyDollEyes": { + "name": "Regard Touchant", + "effect": "Le lanceur fixe la cible d’un air très attendrissant qui la touche et diminue son Attaque. Agit en priorité." + }, + "nuzzle": { + "name": "Frotte-Frimousse", + "effect": "Le lanceur attaque en frottant ses bajoues chargées d’électricité, ce qui paralyse la cible." + }, + "holdBack": { + "name": "Retenue", + "effect": "Le lanceur attaque avec retenue, et laisse au moins 1 PV à la cible." + }, + "infestation": { + "name": "Harcèlement", + "effect": "Cette attaque perdure pendant quatre à cinq tours. La cible ne peut pas quitter le terrain pendant cette période." + }, + "powerUpPunch": { + "name": "Poing Boost", + "effect": "À force de frapper, les poings deviennent plus durs. Augmente l’Attaque du lanceur si l’ennemi est touché." + }, + "oblivionWing": { + "name": "Mort’Ailes", + "effect": "Vole l’énergie de la cible. Rend au lanceur un nombre de PV supérieur ou égal à la moitié des dégâts infligés." + }, + "thousandArrows": { + "name": "Myria-Flèches", + "effect": "Touche même les Pokémon dans les airs. Dans ce cas, la cible retombe au sol." + }, + "thousandWaves": { + "name": "Myria-Vagues", + "effect": "Attaque avec des vagues glissant au sol. L’ennemi pris dedans ne peut pas s’échapper." + }, + "landsWrath": { + "name": "Force Chtonienne", + "effect": "Utilise la puissance du sol et la concentre sur l’ennemi pour infliger des dégâts." + }, + "lightOfRuin": { + "name": "Lumière du Néant", + "effect": "Utilise la puissance de la fleur Éternelle pour lancer un formidable rayon d’énergie. Blesse aussi gravement le lanceur." + }, + "originPulse": { + "name": "Onde Originelle", + "effect": "Le lanceur projette une aura, et d’innombrables rayons lumineux d’un bleu étincelant s’abattent sur la cible." + }, + "precipiceBlades": { + "name": "Lame Pangéenne", + "effect": "Le Pokémon transforme la puissance de la terre et attaque la cible avec une lame acérée." + }, + "dragonAscent": { + "name": "Draco-Ascension", + "effect": "Le Pokémon s’abat à toute vitesse sur la cible depuis les hautes couches de l’atmosphère. Baisse la Défense et la Défense Spéciale du lanceur." + }, + "hyperspaceFury": { + "name": "Furie Dimension", + "effect": "Le Pokémon utilise sa multitude de bras pour infliger une nuée de coups qui ignorent les capacités telles qu’Abri ou Détection. Baisse la Défense du lanceur." + }, + "breakneckBlitzPhysical": { + "name": "Turbo-Charge Bulldozer", + "effect": "Le Pokémon utilise la Force Z pour s’élancer à toute vitesse sur l’adversaire. La puissance varie selon celle de la capacité originale." + }, + "breakneckBlitzSpecial": { + "name": "Turbo-Charge Bulldozer", + "effect": "Dummy Data" + }, + "allOutPummelingPhysical": { + "name": "Combo Hyper-Furie", + "effect": "Le Pokémon utilise la Force Z pour créer une boule d’énergie qu’il projette sur l’adversaire. La puissance varie selon celle de la capacité originale." + }, + "allOutPummelingSpecial": { + "name": "Combo Hyper-Furie", + "effect": "Dummy Data" + }, + "supersonicSkystrikePhysical": { + "name": "Piqué Supersonique", + "effect": "Le Pokémon utilise la Force Z pour s’envoler très haut dans le ciel avant de plonger sur l’adversaire. La puissance varie selon celle de la capacité originale." + }, + "supersonicSkystrikeSpecial": { + "name": "Piqué Supersonique", + "effect": "Dummy Data" + }, + "acidDownpourPhysical": { + "name": "Déluge Causti-Toxique", + "effect": "Le Pokémon utilise la Force Z pour répandre un marécage empoisonné où l’adversaire sombre. La puissance varie selon celle de la capacité originale." + }, + "acidDownpourSpecial": { + "name": "Déluge Causti-Toxique", + "effect": "Dummy Data" + }, + "tectonicRagePhysical": { + "name": "Éruption Géo-Sismique", + "effect": "Le Pokémon utilise la Force Z pour entrainer l’adversaire dans les profondeurs de la terre. La puissance varie selon celle de la capacité originale." + }, + "tectonicRageSpecial": { + "name": "Éruption Géo-Sismique", + "effect": "Dummy Data" + }, + "continentalCrushPhysical": { + "name": "Apocalypse Gigalithique", + "effect": "Le Pokémon utilise la Force Z pour créer un immense rocher et écraser l’adversaire avec. La puissance varie selon celle de la capacité originale." + }, + "continentalCrushSpecial": { + "name": "Apocalypse Gigalithique", + "effect": "Dummy Data" + }, + "savageSpinOutPhysical": { + "name": "Cocon Fatal", + "effect": "Le Pokémon utilise la Force Z pour cracher de longs fils de soie et enserrer l’adversaire. La puissance varie selon celle de la capacité originale." + }, + "savageSpinOutSpecial": { + "name": "Cocon Fatal", + "effect": "Dummy Data" + }, + "neverEndingNightmarePhysical": { + "name": "Appel des Ombres Éternelles", + "effect": "Le Pokémon utilise la Force Z pour invoquer des esprits rancuniers qui s’abattent sur l’adversaire. La puissance varie selon celle de la capacité originale." + }, + "neverEndingNightmareSpecial": { + "name": "Appel des Ombres Éternelles", + "effect": "Dummy Data" + }, + "corkscrewCrashPhysical": { + "name": "Vrille Maximum", + "effect": "Le Pokémon utilise la Force Z pour tourner à toute vitesse et écraser l’adversaire. La puissance varie selon celle de la capacité originale." + }, + "corkscrewCrashSpecial": { + "name": "Vrille Maximum", + "effect": "Dummy Data" + }, + "infernoOverdrivePhysical": { + "name": "Pyro-Explosion Cataclysmique", + "effect": "Le Pokémon utilise la Force Z pour cracher une boule de feu qui réduit l’adversaire en cendres. La puissance varie selon celle de la capacité originale." + }, + "infernoOverdriveSpecial": { + "name": "Pyro-Explosion Cataclysmique", + "effect": "Dummy Data" + }, + "hydroVortexPhysical": { + "name": "Super Tourbillon Abyssal", + "effect": "Le Pokémon utilise la Force Z pour créer un tourbillon gigantesque qui avale l’adversaire. La puissance varie selon celle de la capacité originale." + }, + "hydroVortexSpecial": { + "name": "Super Tourbillon Abyssal", + "effect": "Dummy Data" + }, + "bloomDoomPhysical": { + "name": "Pétalexplosion Éblouissante", + "effect": "Le Pokémon utilise la Force Z pour libérer l’énergie des plantes et attaquer l’adversaire. La puissance varie selon celle de la capacité originale." + }, + "bloomDoomSpecial": { + "name": "Pétalexplosion Éblouissante", + "effect": "Dummu Data" + }, + "gigavoltHavocPhysical": { + "name": "Fulguro-Lance Gigavolt", + "effect": "Le Pokémon utilise la Force Z pour générer un courant électrique puissant qu’il projette sur l’adversaire. La puissance varie selon celle de la capacité originale." + }, + "gigavoltHavocSpecial": { + "name": "Fulguro-Lance Gigavolt", + "effect": "Dummy Data" + }, + "shatteredPsychePhysical": { + "name": "Psycho-Pulvérisation EX", + "effect": "Le Pokémon utilise la Force Z pour manipuler l’adversaire et lui infliger de sérieux dégâts. La puissance varie selon celle de la capacité originale." + }, + "shatteredPsycheSpecial": { + "name": "Psycho-Pulvérisation EX", + "effect": "Dummy Data" + }, + "subzeroSlammerPhysical": { + "name": "Laser Cryogénique", + "effect": "Le Pokémon utilise la Force Z pour baisser la température brutalement et congeler l’adversaire. La puissance varie selon celle de la capacité originale." + }, + "subzeroSlammerSpecial": { + "name": "Laser Cryogénique", + "effect": "Dummy Data" + }, + "devastatingDrakePhysical": { + "name": "Chaos Draconique", + "effect": "Le Pokémon utilise la Force Z pour matérialiser son aura et assaillir l’adversaire. La puissance varie selon celle de la capacité originale." + }, + "devastatingDrakeSpecial": { + "name": "Chaos Draconique", + "effect": "Dummy Data" + }, + "blackHoleEclipsePhysical": { + "name": "Trou Noir des Ombres", + "effect": "Le Pokémon utilise la Force Z pour rassembler l’énergie négative et y aspirer l’adversaire. La puissance varie selon celle de la capacité originale." + }, + "blackHoleEclipseSpecial": { + "name": "Trou Noir des Ombres", + "effect": "Dummy Data" + }, + "twinkleTacklePhysical": { + "name": "Impact Choupinova", + "effect": "Le Pokémon utilise la Force Z pour créer une dimension irréelle où l’adversaire est à sa merci. La puissance varie selon celle de la capacité originale." + }, + "twinkleTackleSpecial": { + "name": "Impact Choupinova", + "effect": "Dummy Data" + }, + "catastropika": { + "name": "Pikachute Foudroyante", + "effect": "Pikachu utilise la Force Z pour concentrer toute son électricité avant de se jeter à toute vitesse sur l’adversaire." + }, + "shoreUp": { + "name": "Amass’Sable", + "effect": "Le lanceur récupère jusqu’à la moitié de ses PV max. Durant une tempête de sable, il en récupère encore plus." + }, + "firstImpression": { + "name": "Escarmouche", + "effect": "Une capacité très puissante, mais qui ne fonctionne que lorsque le lanceur entre au combat." + }, + "banefulBunker": { + "name": "Blockhaus", + "effect": "Le lanceur se protège contre les attaques, et si un assaillant utilise une attaque directe contre lui, il l’empoisonne." + }, + "spiritShackle": { + "name": "Tisse Ombre", + "effect": "Une attaque qui coud la cible à son ombre, ce qui l’empêche de s’enfuir." + }, + "darkestLariat": { + "name": "Dark Lariat", + "effect": "Le lanceur étend les bras et frappe l’adversaire en tournant violemment. Il inflige des dégâts et ignore les changements de stats de la cible." + }, + "sparklingAria": { + "name": "Aria de l’Écume", + "effect": "Le lanceur émet plusieurs bulles en chantant. Soigne les brulures des Pokémon touchés par ces bulles." + }, + "iceHammer": { + "name": "Marteau de Glace", + "effect": "Le lanceur donne un puissant coup de poing à la cible, ce qui réduit la Vitesse du lanceur." + }, + "floralHealing": { + "name": "Soin Floral", + "effect": "Rend la moitié de ses PV max à la cible. Plus efficace sur un Champ Herbu." + }, + "highHorsepower": { + "name": "Cavalerie Lourde", + "effect": "Le lanceur attaque violemment en utilisant tout son poids." + }, + "strengthSap": { + "name": "Vole-Force", + "effect": "Rend au lanceur une quantité de PV équivalente à la stat d’Attaque de la cible, puis baisse celle-ci." + }, + "solarBlade": { + "name": "Lame Solaire", + "effect": "Le lanceur absorbe une grande quantité de lumière au premier tour et attaque au second tour en libérant cette énergie sous la forme d’une lame." + }, + "leafage": { + "name": "Feuillage", + "effect": "Le lanceur attaque la cible avec des feuilles." + }, + "spotlight": { + "name": "Projecteur", + "effect": "Met un Pokémon sous le feu des projecteurs et force tout le monde à le viser." + }, + "toxicThread": { + "name": "Fil Toxique", + "effect": "Tisse un fil imprégné de venin. Empoisonne la cible et baisse sa Vitesse." + }, + "laserFocus": { + "name": "Affilage", + "effect": "Le lanceur se concentre pour être sûr de porter un coup critique au tour suivant." + }, + "gearUp": { + "name": "Engrenage", + "effect": "Change de réglage pour augmenter l’Attaque et l’Attaque Spéciale des alliés ayant les talents Plus ou Minus." + }, + "throatChop": { + "name": "Exécu-Son", + "effect": "Inflige une douleur tellement violente à la cible qu’elle ne peut plus émettre de sons pendant deux tours." + }, + "pollenPuff": { + "name": "Boule Pollen", + "effect": "Sur un ennemi, le lanceur envoie une boule explosive qui fait des dégâts. Sur un allié, il envoie du bon pollen nutritif qui fait récupérer des PV." + }, + "anchorShot": { + "name": "Ancrage", + "effect": "Le lanceur jette son ancre sur la cible pour l’attaquer. Une fois accrochée, elle l’empêche de s’enfuir." + }, + "psychicTerrain": { + "name": "Champ Psychique", + "effect": "Pendant cinq tours, les Pokémon au sol ne peuvent plus subir d’attaques prioritaires et la puissance des capacités de type Psy augmente." + }, + "lunge": { + "name": "Furie-Bond", + "effect": "Le lanceur se jette sur la cible de toutes ses forces pour lui infliger des dégâts et baisser son Attaque." + }, + "fireLash": { + "name": "Fouet de Feu", + "effect": "Frappe la cible avec un fouet incandescent et baisse sa Défense." + }, + "powerTrip": { + "name": "Arrogance", + "effect": "Ivre de puissance, le lanceur attaque de toutes ses forces. Plus ses stats ont été augmentées, plus la puissance de cette capacité augmente." + }, + "burnUp": { + "name": "Flamme Ultime", + "effect": "Le Pokémon se consume et les flammes de son corps infligent des dégâts élevés à la cible. Le lanceur perd le type Feu." + }, + "speedSwap": { + "name": "Permuvitesse", + "effect": "Intervertit la Vitesse du lanceur et celle de la cible." + }, + "smartStrike": { + "name": "Estocorne", + "effect": "Le lanceur transperce la cible avec sa corne effilée. N’échoue jamais." + }, + "purify": { + "name": "Purification", + "effect": "Le lanceur soigne les altérations de statut de la cible, ce qui lui permet de regagner des PV." + }, + "revelationDance": { + "name": "Danse Éveil", + "effect": "Le lanceur attaque en dansant avec enthousiasme. Le type de la capacité est le même que celui du lanceur." + }, + "coreEnforcer": { + "name": "Sanction Suprême", + "effect": "La cible subit des dégâts et, si elle a déjà agi à ce tour, elle perd aussi son talent." + }, + "tropKick": { + "name": "Botte Sucrette", + "effect": "Un coup de pied chaud comme les tropiques qui inflige des dégâts à la cible et baisse son Attaque." + }, + "instruct": { + "name": "Sommation", + "effect": "Force la cible à lancer immédiatement la dernière capacité qu’elle a utilisée." + }, + "beakBlast": { + "name": "Bec-Canon", + "effect": "Le lanceur fait chauffer son bec avant d’attaquer. S’il subit une attaque directe pendant la montée en température, l’attaquant sera brulé." + }, + "clangingScales": { + "name": "Vibrécaille", + "effect": "Le lanceur déclenche un vacarme en frottant ses écailles les unes contre les autres pour attaquer. Baisse la Défense du lanceur." + }, + "dragonHammer": { + "name": "Draco-Marteau", + "effect": "Le lanceur utilise son corps comme un véritable marteau pour écraser la cible." + }, + "brutalSwing": { + "name": "Centrifugifle", + "effect": "Le lanceur pivote pour prendre de l’élan et infliger des dégâts." + }, + "auroraVeil": { + "name": "Voile Aurore", + "effect": "Réduit les dégâts causés par les capacités physiques et spéciales durant cinq tours. Ne peut être utilisée que lorsqu’il neige." + }, + "sinisterArrowRaid": { + "name": "Fureur des Plumes Spectrales", + "effect": "Archéduc utilise la Force Z pour créer un nuage de flèches qui transpercent la cible." + }, + "maliciousMoonsault": { + "name": "Dark Body Press", + "effect": "Félinferno utilise la Force Z pour gonfler ses muscles et écraser la cible de toutes ses forces." + }, + "oceanicOperetta": { + "name": "Symphonie des Ondines", + "effect": "Oratoria utilise la Force Z pour rassembler une grande quantité d’eau et la projeter sur la cible à pleine puissance." + }, + "guardianOfAlola": { + "name": "Colère du Gardien d’Alola", + "effect": "Le Pokémon Tutélaire utilise la Force Z et déchaine toute la puissance d’Alola sur sa cible. Inflige des dégâts en fonction des PV restants de celle-ci." + }, + "soulStealing7StarStrike": { + "name": "Fauche-Âme des Sept Étoiles", + "effect": "Marshadow concentre toute la Force Z dans ses poings et ses pieds pour infliger un déluge de coups à la cible." + }, + "stokedSparksurfer": { + "name": "Électro-Surf Survolté", + "effect": "Le Raichu de la région d’Alola utilise la Force Z pour frapper la cible et la paralyser." + }, + "pulverizingPancake": { + "name": "Gare au Ronflex", + "effect": "Ronflex utilise la Force Z pour montrer ce qu’il a dans le ventre et écraser la cible de tout son poids." + }, + "extremeEvoboost": { + "name": "Neuf pour Un", + "effect": "Évoli utilise la Force Z pour emprunter la puissance de tous ses amis évolués et beaucoup augmenter toutes ses stats." + }, + "genesisSupernova": { + "name": "Supernova Originelle", + "effect": "Mew utilise la Force Z pour attaquer la cible. Le terrain devient un Champ Psychique." + }, + "shellTrap": { + "name": "Carapiège", + "effect": "Pose une carapace piégée. Si l’adversaire utilise une capacité physique, la carapace explose et lui inflige des dégâts." + }, + "fleurCannon": { + "name": "Canon Floral", + "effect": "Envoie un rayon laser dévastateur. Baisse beaucoup l’Attaque Spéciale du lanceur." + }, + "psychicFangs": { + "name": "Psycho-Croc", + "effect": "Le lanceur mord la cible avec ses pouvoirs psychiques. Brise aussi les barrières comme Mur Lumière et Protection." + }, + "stompingTantrum": { + "name": "Trépignement", + "effect": "Le lanceur attaque en utilisant sa frustration. S’il a utilisé une capacité qui a échoué au tour précédent, la puissance de Trépignement est doublée." + }, + "shadowBone": { + "name": "Os Ombre", + "effect": "Le lanceur frappe avec un os possédé par l’âme d’un défunt. Peut aussi baisser la Défense de la cible." + }, + "accelerock": { + "name": "Vif Roc", + "effect": "Le lanceur charge la cible à toute vitesse. Frappe en priorité." + }, + "liquidation": { + "name": "Aqua-Brèche", + "effect": "Le lanceur utilise la force de l’eau pour attaquer. Peut aussi baisser la Défense de la cible." + }, + "prismaticLaser": { + "name": "Laser Prisme", + "effect": "Le lanceur utilise la puissance d’un prisme pour envoyer un laser destructeur, mais il doit se reposer au tour suivant." + }, + "spectralThief": { + "name": "Clepto-Mânes", + "effect": "Le lanceur plonge dans l’ombre de la cible, vole ses augmentations de stats et l’attaque." + }, + "sunsteelStrike": { + "name": "Choc Météore", + "effect": "Le lanceur fonce sur la cible à la vitesse d’une météorite. Ignore le talent de l’ennemi." + }, + "moongeistBeam": { + "name": "Rayon Spectral", + "effect": "Le lanceur attaque avec un rayon de lumière mystérieux. Ignore le talent de la cible." + }, + "tearfulLook": { + "name": "Larme à l’Œil", + "effect": "Le lanceur regarde la cible avec des yeux remplis de larmes. Celle-ci perd toute combativité et voit son Attaque et son Attaque Spéciale baisser." + }, + "zingZap": { + "name": "Électrikipik", + "effect": "Le lanceur fonce sur la cible et lui envoie un puissant choc électrique, ce qui peut aussi l’effrayer." + }, + "naturesMadness": { + "name": "Ire de la Nature", + "effect": "Le lanceur déchaine toute la colère de la nature pour baisser les PV de la cible de moitié." + }, + "multiAttack": { + "name": "Coup Varia-Type", + "effect": "Le Pokémon s’entoure d’une puissante énergie avant de foncer sur sa cible. Le type de la capacité dépend de la ROM installée." + }, + "tenMillionVoltThunderbolt": { + "name": "Giga-Tonnerre", + "effect": "Le Pikachu à casquette utilise la Force Z pour augmenter sa puissance électrique avant de la déchainer sur la cible. Taux de critique élevé." + }, + "mindBlown": { + "name": "Caboche-Kaboum", + "effect": "Le lanceur fait exploser sa tête pour attaquer toutes les cibles autour de lui. Il subit aussi des dégâts." + }, + "plasmaFists": { + "name": "Plasma Punch", + "effect": "Le lanceur attaque en projetant de l’électricité avec ses poings. Convertit les capacités de type Normal en type Électrik." + }, + "photonGeyser": { + "name": "Photo-Geyser", + "effect": "Le lanceur fait jaillir un pilier de lumière. Compare l’Attaque et l’Attaque Spéciale, et utilise celle qui infligera le plus de dégâts." + }, + "lightThatBurnsTheSky": { + "name": "Apocalypsis Luminis", + "effect": "Compare l’Attaque et l’Attaque Spéciale, et utilise celle qui infligera le plus de dégâts. Ignore le talent de la cible." + }, + "searingSunrazeSmash": { + "name": "Hélio-Choc Dévastateur", + "effect": "Baigné dans la Force Z, Solgaleo attaque en déchainant toute sa puissance. Ignore le talent de la cible." + }, + "menacingMoonrazeMaelstrom": { + "name": "Rayons Séléno-Explosifs", + "effect": "Baigné dans la Force Z, Lunala attaque en déchainant toute sa puissance. Ignore le talent de la cible." + }, + "letsSnuggleForever": { + "name": "Patati-Patattrape", + "effect": "Mimiqui concentre toute la Force Z dans son corps, et attaque dans le plus grand fracas !" + }, + "splinteredStormshards": { + "name": "Hurlement des Roches-Lames", + "effect": "Lougaroc utilise la Force Z pour attaquer la cible de toutes ses forces. Efface aussi tout Champ existant." + }, + "clangorousSoulblaze": { + "name": "Dracacophonie Flamboyante", + "effect": "Ékaïser utilise la Force Z pour frapper l’ennemi de toutes ses forces. Augmente aussi ses stats." + }, + "zippyZap": { + "name": "Pika-Sprint", + "effect": "Une attaque électrique rapide comme l’éclair qui inflige un coup critique à coup sûr. Frappe en priorité." + }, + "splishySplash": { + "name": "Pika-Splash", + "effect": "Pikachu frappe l’adversaire avec une vague géante chargée d’électricité. Peut aussi paralyser l’ennemi." + }, + "floatyFall": { + "name": "Pika-Piqué", + "effect": "Pikachu prend de la hauteur avant de fondre sur son adversaire. Peut aussi apeurer l’ennemi." + }, + "pikaPapow": { + "name": "Pika-Fracas", + "effect": "Plus le lanceur est heureux, plus l’attaque est puissante." + }, + "bouncyBubble": { + "name": "Évo-Thalasso", + "effect": "L’adversaire est frappé par des bulles d’eau qui sont ensuite absorbées pour récupérer un nombre de PV égal aux dégâts infligés à l’ennemi." + }, + "buzzyBuzz": { + "name": "Évo-Dynamo", + "effect": "Une attaque qui foudroie et paralyse l’adversaire." + }, + "sizzlySlide": { + "name": "Évo-Flambo", + "effect": "Évoli s’embrase et percure violemment l’adversaire. Brule aussi l’ennemi." + }, + "glitzyGlow": { + "name": "Évo-Psycho", + "effect": "Évoli submerge l’adversaire sous un flot d’ondes psychiques et crée un mur fabuleux qui réduit les dégâts causés par les attaques spéciales de l’ennemi" + }, + "baddyBad": { + "name": "Évo-Ténébro", + "effect": "Évoli fait appel à son côté sombre pour attaquer l’adversaire et créer un mur fabuleux qui réduit les dégâts causés par les attaques physiques de l’ennemi." + }, + "sappySeed": { + "name": "Évo-Écolo", + "effect": "Une liane géante surgit du sol et bombarde l’adversaire de graines qui lui dérobent des PV à chaque tour. Ces PV sont ensuite absorbés par Évoli." + }, + "freezyFrost": { + "name": "Évo-Congélo", + "effect": "Évoli frappe l’adversaire avec un cristal de buée noire gelée. Annule les changements de stats de tous les Pokémon au combat." + }, + "sparklySwirl": { + "name": "Évo-Fabulo", + "effect": "Une attaque qui enserre l’adversaire dans un tourbillon de senteurs oppressantes. Guérit toutes les altérations de statut de l’équipe." + }, + "veeveeVolley": { + "name": "Évo-Chardasso", + "effect": "Le lanceur lance une attaque dès lors qu’un signe apparait sur le terrain. Les dégâts infligés sont proportionnels à l’affection de votre Pokémon" + }, + "doubleIronBash": { + "name": "Écrous d’Poing", + "effect": "Le lanceur fait pivoter l’écrou de sa poitrine deux fois d’affilée pour frapper l’adversaire avec ses bras. Peut apeurer l’ennemi (30% de chances)." + }, + "maxGuard": { + "name": "Gardomax", + "effect": "Le lanceur se protège de toutes les attaques. Peut échouer si utilisée plusieurs fois de suite." + }, + "dynamaxCannon": { + "name": "Canon Dynamax", + "effect": "Le lanceur attaque en libérant l’énergie concentrée dans son noyau. Inflige jusqu’à deux fois plus de dégâts si l’adversaire a un niveau très élevé." + }, + "snipeShot": { + "name": "Tir de Précision", + "effect": "Le lanceur parvient toujours à viser la cible voulue, en ignorant l’effet des talents et des capacités capables de détourner les attaques." + }, + "jawLock": { + "name": "Croque Fort", + "effect": "Le lanceur et sa cible ne peuvent plus être échangés jusqu’à ce que l’un d’entre eux tombe K.O. L’effet est annulé si l’un des deux Pokémon quitte le terrain." + }, + "stuffCheeks": { + "name": "Garde-à-Joues", + "effect": "Le lanceur mange la Baie qu’il tient, ce qui augmente beaucoup sa Défense." + }, + "noRetreat": { + "name": "Ultime Bastion", + "effect": "Le lanceur voit toutes ses stats augmenter, mais en contrepartie, il ne peut plus quitter le terrain." + }, + "tarShot": { + "name": "Goudronnage", + "effect": "Le lanceur recouvre sa cible de goudron liquide pour baisser sa Vitesse et la rendre vulnérable au feu." + }, + "magicPowder": { + "name": "Poudre Magique", + "effect": "Le lanceur recouvre sa cible d’une poudre magique qui change son type en Psy." + }, + "dragonDarts": { + "name": "Draco-Flèches", + "effect": "Le lanceur attaque en propulsant deux Fantyrm. S’il y a deux cibles, chacune d’entre elles est frappée par un Fantyrm." + }, + "teatime": { + "name": "Thérémonie", + "effect": "Le lanceur invite tous les Pokémon sur le terrain à prendre le gouter autour d’une tasse de thé. Ceux qui tiennent une Baie la mangent." + }, + "octolock": { + "name": "Octoprise", + "effect": "Empêche l’ennemi de fuir ou de quitter le terrain. Baisse la Défense et la Défense Spécial de l’ennemi chaque tour." + }, + "boltBeak": { + "name": "Prise de Bec", + "effect": "Inflige des dégâts et les double si le lanceur attaque avant l’ennemi." + }, + "fishiousRend": { + "name": "Branchicrok", + "effect": "Inflige des dégâts et les double si le lanceur attaque avant l’ennemi." + }, + "courtChange": { + "name": "Change-Côté", + "effect": "Une force mystérieuse intervertit les effets affectant chaque côté du terrain." + }, + "maxFlare": { + "name": "Pyromax", + "effect": "Une attaque de type Feu que seuls les Pokémon Dynamax peuvent utiliser. Fait briller le soleil pendant cinq tours." + }, + "maxFlutterby": { + "name": "Insectomax", + "effect": "Une attaque de type Insecte que seuls les Pokémon Dynamax peuvent utiliser. Baisse l’Attaque Spéciale de la cible." + }, + "maxLightning": { + "name": "Fulguromax", + "effect": "Une attaque de type Électrik que seuls les Pokémon Dynamax peuvent utiliser. Crée un Champ Électrifié qui dure cinq tours." + }, + "maxStrike": { + "name": "Normalomax", + "effect": "Une attaque de type Normal que seuls les Pokémon Dynamax peuvent utiliser. Baisse la Vitesse de la cible." + }, + "maxKnuckle": { + "name": "Pugilomax", + "effect": "Une attaque de type Combat que seuls les Pokémon dynamax peuvent utiliser. Augmente l’Attaque des Alliés." + }, + "maxPhantasm": { + "name": "Spectromax", + "effect": "Une attaque de type Spectre que seuls les Pokémon Dynamax peuvent utiliser. Baisse la Défense de la cible." + }, + "maxHailstorm": { + "name": "Cryomax", + "effect": "Une attaque de type Glace que seuls les Pokémon Dynamax peuvent utiliser. Invoque une tempête de grêle qui dure cinq tours." + }, + "maxOoze": { + "name": "Toxinomax", + "effect": "Une attaque de type Poison que seuls les Pokémon Dynamax peuvent utiliser. Augmente l’Attaque Spéciale des alliés." + }, + "maxGeyser": { + "name": "Hydromax", + "effect": "Une attaque de type Eau que seuls les Pokémon Dynamax peuvent utiliser. Invoque de fortes pluies qui durent cinq tours." + }, + "maxAirstream": { + "name": "Aéromax", + "effect": "Une attaque de type Vol que seuls les Pokémon Dynamax peuvent utiliser. Augmente la Vitesse des alliés." + }, + "maxStarfall": { + "name": "Enchantomax", + "effect": "Une attaque de type Fée que seuls les Pokémon Dynamax peuvent utiliser. Crée un Champ Brumeux qui dure cinq tours." + }, + "maxWyrmwind": { + "name": "Dracomax", + "effect": "Une attaque de type Dragon que seuls les Pokémon Dynamax peuvent utiliser. Baisse l’Attaque de la cible." + }, + "maxMindstorm": { + "name": "Psychomax", + "effect": "Une attaque de type Psy que seuls les Pokémon Dynamax peuvent utiliser. Crée un Champ Psychique qui dure cinq tours." + }, + "maxRockfall": { + "name": "Lithomax", + "effect": "Une attaque de type Roche que seuls les Pokémon Dynamax peuvent utiliser. Invoque une tempête de sable qui dure cinq tours." + }, + "maxQuake": { + "name": "Sismomax", + "effect": "Une attaque de type Sol que seuls les Pokémon Dynamax peuvent utiliser. Augmente la Défense Spéciale des alliés." + }, + "maxDarkness": { + "name": "Sinistromax", + "effect": "Une attaque de type Ténèbres que seuls les Pokémon Dynamax peuvent utiliser. Baisse la Défense Spéciale de la cible." + }, + "maxOvergrowth": { + "name": "Phytomax", + "effect": "Une attaque de type Plante que seuls les Pokémon Dynamax peuvent utiliser. Crée un Champ Herbu qui dure cinq tours." + }, + "maxSteelspike": { + "name": "Métallomax", + "effect": "Une attaque de type Acier que seuls les Pokémon Dynamax peuvent utiliser. Augmente la Défense des alliés." + }, + "clangorousSoul": { + "name": "Dracacophonie", + "effect": "Sacrifie une partie de ses PV pour augmenter toutes ses statistiques." + }, + "bodyPress": { + "name": "Big Splash", + "effect": "Le lanceur utilise son corps pour attaquer sa cible. Plus la Défense du lanceur est élevée, plus les dégâts infligés sont importants." + }, + "decorate": { + "name": "Nappage", + "effect": "Augmente fortement l’Attaque et l’Attaque Spéciale de la cible." + }, + "drumBeating": { + "name": "Tambour Battant", + "effect": "Le lanceur bat son tambour pour en diriger les racines sur la cible, l’attaquer, et baisser sa Vitesse." + }, + "snapTrap": { + "name": "Troquenard", + "effect": "Bloque l’ennemi pendant 4 à 5 tours." + }, + "pyroBall": { + "name": "Ballon Brulant", + "effect": "Le lanceur attaque avec un ballon fait à partir d’un caillou enflammé. Peut aussi bruler la cible (10% de chances)." + }, + "behemothBlade": { + "name": "Gladius Maximus", + "effect": "Le lanceur se transforme en une immense épée et pourfend sa cible. Cette capacité inflige le double de dégâts aux Pokémon Dynamax." + }, + "behemothBash": { + "name": "Aegis Maxima", + "effect": "Le lanceur se transforme en un immense bouclier et charge sa cible. Cette capacité inflige le double de dégâts aux Pokémon Dynamax." + }, + "auraWheel": { + "name": "Roue Libre", + "effect": "Inflige et change en type Ténèbres" + }, + "breakingSwipe": { + "name": "Abattage", + "effect": "Le lanceur balaie violemment le camp adverse avec son immense queue. Baisse l’Attaque de la cible." + }, + "branchPoke": { + "name": "Tapotige", + "effect": "Le lanceur attaque sa cible en la piquant avec une branche pointue." + }, + "overdrive": { + "name": "Overdrive", + "effect": "Le lanceur gratte ses cordes de guitare ou de basse pour créer de violentes vibrations sonores qui blessent la cible." + }, + "appleAcid": { + "name": "Acide Malique", + "effect": "Le lanceur projette un liquide corrosif créé à partir d’une pomme acide sur la cible, ce qui baisse la Défense Spéciale de celle-ci." + }, + "gravApple": { + "name": "Force G", + "effect": "Le lanceur fait tomber une pomme de très haut sur la cible, ce qui baisse la Défense de celle-ci." + }, + "spiritBreak": { + "name": "Choc Émotionnel", + "effect": "Le lanceur attaque la cible avec une telle force que celle-ci peut s’en retrouver profondément troublée et voir son Attaque Spéciale baisser." + }, + "strangeSteam": { + "name": "Vapeur Féérique", + "effect": "Inflige des dégâts et peut rendre confus l’ennemi." + }, + "lifeDew": { + "name": "Fontaine de Vie", + "effect": "Le lanceur projette une eau mystérieuse sur le terrain pour restaurer ses PV et ceux de ses alliés au combat." + }, + "obstruct": { + "name": "Blocage", + "effect": "Protège le lanceur des attaques de contact. Baisse la Défense de deux crans si l’ennemi a tenté une attaque de contact." + }, + "falseSurrender": { + "name": "Fourbette", + "effect": "Le lanceur fait semblant de se prosterner et utilise ses cheveux pour transpercer sa cible. N’échoue jamais." + }, + "meteorAssault": { + "name": "Joute Astrale", + "effect": "Inflige de gros dégâts mais oblige le lanceur à se reposer pendant un tour." + }, + "eternabeam": { + "name": "Laser Infinimax", + "effect": "Inflige de gros dégâts mais oblige le lanceur à se reposer pendant un tour." + }, + "steelBeam": { + "name": "Métalaser", + "effect": "Le lanceur concentre du métal issu de tout son corps en un rayon qu’il projette violemment sur sa cible. Il subit aussi des dégâts." + }, + "expandingForce": { + "name": "Vaste Pouvoir", + "effect": "Le lanceur attaque la cible avec ses pouvoirs psychiques. Si un champ psychique est actif, la puissance de cette capacité augmente et elle touche tous les ennemis." + }, + "steelRoller": { + "name": "Métalliroue", + "effect": "Une attaque qui inflige des dégâts et fait disparaitre le champ actif, mais qui échoue s’il n’y en a pas à ce moment." + }, + "scaleShot": { + "name": "Rafale Écailles", + "effect": "Le lanceur projette des écailles sur la cible de deux à cinq fois d’affilée. Augmente la Vitesse, mais diminue la Défense." + }, + "meteorBeam": { + "name": "Laser Météore", + "effect": "Le lanceur concentre l’énergie cosmique au premier tour, ce qui augmente son Attaque Spéciale, et frappe au second." + }, + "shellSideArm": { + "name": "Kokiyarme", + "effect": "Une attaque physique ou spéciale, en fonction de ce qui inflige le plus de dégâts à la cible. Peut aussi empoisonner." + }, + "mistyExplosion": { + "name": "Explo-Brume", + "effect": "Le lanceur frappe tous les Pokémon autour de lui en explosant, ce qui le met K.O. La puissance de cette attaque augmente si un champ brumeux est actif." + }, + "grassyGlide": { + "name": "Gliss’Herbe", + "effect": "Le lanceur attaque la cible en glissant sur le terrain. Frappe toujours en priorité si un champ herbu est actif." + }, + "risingVoltage": { + "name": "Monte-Tension", + "effect": "Des éclairs surgissent du sol et frappent la cible. La puissance de cette attaque est doublée si la cible est sur un champ électrifié." + }, + "terrainPulse": { + "name": "Champlification", + "effect": "Une attaque qui utilise la force des champs pour projeter une aura. Son type et sa puissance varient selon le champ actif." + }, + "skitterSmack": { + "name": "Ravage Rampant", + "effect": "Le lanceur rampe derrière la cible pour l’attaquer, ce qui baisse l’Attaque Spéciale de celle-ci." + }, + "burningJealousy": { + "name": "Feu Envieux", + "effect": "Le lanceur attaque sa cible avec toute sa jalousie. Cette capacité brule tout Pokémon dont les stats ont augmenté pendant ce tour." + }, + "lashOut": { + "name": "Cent Rancunes", + "effect": "Le lanceur frappe la cible avec toute sa rancune. Si les stats du lanceur ont diminué pendant ce tour, la puissance de cette attaque est doublée." + }, + "poltergeist": { + "name": "Esprit Frappeur", + "effect": "Le lanceur manipule l’objet tenu par la cible pour l’attaquer. Cette capacité échoue si celle-ci ne tient rien." + }, + "corrosiveGas": { + "name": "Gaz Corrosif", + "effect": "Un gaz corrosif qui enveloppe tous les Pokémon alentour et qui dissout les objets qu’ils tiennent." + }, + "coaching": { + "name": "Coaching", + "effect": "Le lanceur coache ses alliés, augmentant ainsi leur Attaque et leur Défense." + }, + "flipTurn": { + "name": "Eau Revoir", + "effect": "Après son attaque, le lanceur revient à toute vitesse et change de place avec un Pokémon de l’équipe prêt à combattre." + }, + "tripleAxel": { + "name": "Triple Axel", + "effect": "Une série d’un à trois coups de pied distincts dont la puissance augmente à chaque fois que la capacité touche sa cible." + }, + "dualWingbeat": { + "name": "Double Volée", + "effect": "Le lanceur frappe la cible avec ses ailes deux fois d’affilée." + }, + "scorchingSands": { + "name": "Sable Ardent", + "effect": "Le lanceur projette du sable chauffé à blanc sur la cible, ce qui peut aussi la bruler (30% de chances)." + }, + "jungleHealing": { + "name": "Selve Salvatrice", + "effect": "Le lanceur fait appel au pouvoir de la jungle pour restaurer les PV et soigner les altérations d’état de ses alliés et de lui-même." + }, + "wickedBlow": { + "name": "Poing Obscur", + "effect": "Le lanceur assène un coup puissant à la cible. Cette technique qui inflige toujours un coup critique est réservée à ceux qui maitrisent la puissance des Ténèbres." + }, + "surgingStrikes": { + "name": "Torrent de Coups", + "effect": "Le lanceur assène trois coups fluides à la cible. Cette technique qui inflige toujours un coup critique est réservée à ceux qui maitrisent la puissance de l’Eau." + }, + "thunderCage": { + "name": "Voltageôle", + "effect": "Le lanceur frappe la cible, et le piège dans une prison électrique qui dure de quatre à cinq tours." + }, + "dragonEnergy": { + "name": "Draco-Énergie", + "effect": "Le lanceur utilise son énergie vitale pour attaquer la cible. Moins il a de PV, moins l’attaque est puissante." + }, + "freezingGlare": { + "name": "Regard Glaçant", + "effect": "Les yeux du lanceur tirent des rayons psychiques qui attaquent la cible et peuvent aussi la geler (10% de chances)." + }, + "fieryWrath": { + "name": "Fureur Ardente", + "effect": "Le lanceur canalise sa colère et la transforme en émanation brulante, avec laquelle il attaque la cible, ce qui peut aussi apeurer celle-ci (20% de chances)." + }, + "thunderousKick": { + "name": "Coup Fulgurant", + "effect": "Le lanceur assène un coup de pied à la cible à la vitesse de l’éclair. Baisse aussi la Défense de la cible." + }, + "glacialLance": { + "name": "Lance de Glace", + "effect": "Le lanceur attaque la cible avec une lance de glace entourée d’un blizzard." + }, + "astralBarrage": { + "name": "Éclat Spectral", + "effect": "Le lanceur attaque la cible avec une multitude de petits spectres." + }, + "eerieSpell": { + "name": "Sort Sinistre", + "effect": "Le lanceur attaque avec de puissants pouvoirs psychiques et retire 3 PP de la dernière capacité utilisée par la cible." + }, + "direClaw": { + "name": "Griffes Funestes", + "effect": "Le lanceur attaque avec des griffes destructrices en visant les points faibles. La cible peut aussi être empoisonnée, paralysée, ou endormie." + }, + "psyshieldBash": { + "name": "Sprint Bouclier", + "effect": "Le lanceur s’enveloppe d’énergie psychique et frappe sa cible de plein fouet. Cela augmente également la Défense du lanceur." + }, + "powerShift": { + "name": "Échange Force", + "effect": "Le lanceur échange son Attaque avec sa Défense." + }, + "stoneAxe": { + "name": "Hache de Pierre", + "effect": "Le lanceur attaque le point faible de sa cible avec sa hache de pierre. Les débris de pierre se mettent alors à flotter autour de la cible." + }, + "springtideStorm": { + "name": "Typhon Passionné", + "effect": "Le lanceur déclenche un violent typhon de haine et d’amour qui s’abat sur la cible. Peut baisser l’Attaque de celle-ci." + }, + "mysticalPower": { + "name": "Force Mystique", + "effect": "Le lanceur attaque en libérant un pouvoir mystique. Cela augmente également son Attaque Spéciale." + }, + "ragingFury": { + "name": "Grand Courroux", + "effect": "Le lanceur se déchaine et attaque en projetant de violentes flammes pendant deux ou trois tours. Il devient ensuite confus." + }, + "waveCrash": { + "name": "Aquatacle", + "effect": "Le lanceur se recouvre entièrement d’eau avant de charger sa cible. Cela blesse aussi gravement le lanceur." + }, + "chloroblast": { + "name": "Herblast", + "effect": "Le lanceur tire un concentré de sa propre chlorophylle sur la cible, ce qui le blesse également." + }, + "mountainGale": { + "name": "Bise Glaciaire", + "effect": "Le lanceur envoie un bloc de glace de la taille d’un iceberg sur la cible, ce qui peut aussi l’apeurer (30% de chances)." + }, + "victoryDance": { + "name": "Danse Victoire", + "effect": "Le lanceur danse vigoureusement pour invoquer la victoire, ce qui augmente son Attaque, sa Défense et sa Vitesse." + }, + "headlongRush": { + "name": "Assaut Frontal", + "effect": "Le lanceur charge la cible de toutes ses forces, ce qui baisse la Défense et la Défense Spéciale du lanceur." + }, + "barbBarrage": { + "name": "Multitoxik", + "effect": "Une multitude de pointes toxiques frappent la cible et peuvent l’empoisonner. La puissance est doublée si celle-ci est déjà empoisonnée (30% de chances en Style Normal et 50% de chances en Style Puissant)." + }, + "esperWing": { + "name": "Ailes Psycho", + "effect": "Le lanceur entaille la cible avec ses ailes renforcées par une émanation psychique. Taux de critiques élevé. Cela augmente la Vitesse du lanceur." + }, + "bitterMalice": { + "name": "Cœur de Rancœur", + "effect": "Une rancœur glaciale frappe la cible et baisse son Attaque." + }, + "shelter": { + "name": "Mur Fumigène", + "effect": "Rend la peau du lanceur dure comme un mur de fer, ce qui augmente beaucoup sa Défense." + }, + "tripleArrows": { + "name": "Triple Flèche", + "effect": "Le lanceur donne un coup de pied et tire trois flèches simultanément, ce qui peut baisser la Défense de la cible ou l’apeurer (30% de chances). Taux de critiques élevé." + }, + "infernalParade": { + "name": "Cortège Funèbre", + "effect": "Une multitude de boules de feu frappent la cible, ce qui peut aussi la bruler (30% de chances et 50% en Style Puissant). La puissance est doublée si celle-ci souffre d’une altération de statut." + }, + "ceaselessEdge": { + "name": "Vagues à Lames", + "effect": "Des lames de coquillages entaillent la cible en visant ses points faibles. Les débris de coquillage se répandent sous la forme de picots aux pieds de la cible." + }, + "bleakwindStorm": { + "name": "Typhon Hivernal", + "effect": "Le lanceur déclenche un typhon froid et brutal qui fait trembler le cœur et le corps de la cible, ce qui peut aussi baisser sa Vitesse." + }, + "wildboltStorm": { + "name": "Typhon Fulgurant", + "effect": "Le lanceur déclenche un violent typhon orageux dont les rafales et la foudre frappent la cible, ce qui peut aussi la paralyser (30% de chances en Style Normal et 50% en Style Puissant)." + }, + "sandsearStorm": { + "name": "Typhon Pyrosable", + "effect": "Le lanceur déclenche un violent typhon mêlé à du sable ardent qui s’abat sur la cible, ce qui peut la bruler (30% de chances et 50% en Style Puissant)." + }, + "lunarBlessing": { + "name": "Prière Lunaire", + "effect": "Le lanceur adresse une prière à la lune pour restaurer les PV et soigner ses altérations de statut ainsi que celles de ses alliés." + }, + "takeHeart": { + "name": "Extravaillance", + "effect": "Le lanceur fait preuve de bravoure pour soigner ses altérations de statut et augmenter sa puissance offensive et défensive." + }, + "gMaxWildfire": { + "name": "Fournaise G-Max", + "effect": "Une attaque de type Feu que seul un Dracaufeu Gigamax peut utiliser. Pendant quatre tours, la cible continue de subir des dégâts." + }, + "gMaxBefuddle": { + "name": "Illusion G-Max", + "effect": "Une attaque de type Insecte que seul un Papilusion Gigamax peut utiliser. Empoisonne, paralyse ou endort la cible." + }, + "gMaxVoltCrash": { + "name": "Foudre G-Max", + "effect": "Une attaque de type Électrik que seul un Pikachu Gigamax peut utiliser. Paralyse la cible." + }, + "gMaxGoldRush": { + "name": "Pactole G-Max", + "effect": "Une attaque de type Normal que seul un Miaouss Gigamax peut utiliser. Rend la cible confuse et permet d’obtenir de l’argent à la fin du combat." + }, + "gMaxChiStrike": { + "name": "Frappe G-Max", + "effect": "Une attaque de type Combat que seul un Mackogneur Gigamax peut utiliser. Augmente le taux de critiques du lanceur et de ses alliés." + }, + "gMaxTerror": { + "name": "Hantise G-Max", + "effect": "Une attaque de type Spectre que seul un Ectoplasma Gigamax peut utiliser. Empêche les Pokémon ennemis de quitter le combat." + }, + "gMaxResonance": { + "name": "Résonance G-Max", + "effect": "Une attaque de type Glace que seul un Lokhlass Gigamax peut utiliser. Réduit les dégâts causés par des capacités pendant cinq tours." + }, + "gMaxCuddle": { + "name": "Câlin G-Max", + "effect": "Une attaque de type Normal que seul un Évoli Gigamax peut utiliser. Rend la cible amoureuse." + }, + "gMaxReplenish": { + "name": "Récolte G-Max", + "effect": "Une attaque de type Normal que seul un Ronflex Gigamax peut utiliser. Restaure une Baie tenue qui a déjà été mangée." + }, + "gMaxMalodor": { + "name": "Pestilence G-Max", + "effect": "Une attaque de type Poison que seul un Miasmax Gigamax peut utiliser. Empoisonne la cible." + }, + "gMaxStonesurge": { + "name": "Récif G-Max", + "effect": "Une attaque de type Eau que seul un Torgamord Gigamax peut utiliser. Disperse des pierres aiguisées sur le terrain." + }, + "gMaxWindRage": { + "name": "Rafale G-Max", + "effect": "Une attaque de type Vol que seul un Corvaillus Gigamax peut utiliser. Permet de briser les barrières comme Protection et Mur Lumière." + }, + "gMaxStunShock": { + "name": "Choc G-Max", + "effect": "Une attaque de type Électrik que seul un Salarsen Gigamax peut utiliser. Empoisonne ou paralyse la cible." + }, + "gMaxFinale": { + "name": "Cure G-Max", + "effect": "Une attaque de type Fée que seul un Charmilly Gigamax peut utiliser. Restaure des PV aux alliés." + }, + "gMaxDepletion": { + "name": "Usure G-Max", + "effect": "Une attaque de type Dragon que seul un Duralugon Gigamax peut utiliser. Baisse les PP de la dernière capacité utilisée par la cible." + }, + "gMaxGravitas": { + "name": "Ondes G-Max", + "effect": "Une attaque de type Psy que seul un Astronelle Gigamax peut utiliser. Intensifie la gravité pendant cinq tours." + }, + "gMaxVolcalith": { + "name": "Téphra G-Max", + "effect": "Une attaque de type Roche que seul un Monthracite Gigamax peut utiliser. Pendant quatre tours, la cible continue de subir des dégâts." + }, + "gMaxSandblast": { + "name": "Enlisement G-Max", + "effect": "Une attaque de type Sol que seul un Dunaconda Gigamax peut utiliser. Emprisonne la cible dans une tempête de sable qui dure de quatre à cinq tours." + }, + "gMaxSnooze": { + "name": "Torpeur G-Max", + "effect": "Une attaque de type Ténèbres que seul un Angoliath Gigamax peut utiliser. Fait bâiller la cible qui s’endort au tour suivant." + }, + "gMaxTartness": { + "name": "Corrosion G-Max", + "effect": "Une attaque de type Plante que seul un Pomdrapi Gigamax peut utiliser. Réduit l’Esquive de la cible." + }, + "gMaxSweetness": { + "name": "Nectar G-Max", + "effect": "Une attaque de type Plante que seul un Dratatin Gigamax peut utiliser. Soigne les altérations de statut des alliés." + }, + "gMaxSmite": { + "name": "Sentence G-Max", + "effect": "Une attaque de type Fée que seul un Sorcilence Gigamax peut utiliser. Rend la cible confuse." + }, + "gMaxSteelsurge": { + "name": "Percée G-Max", + "effect": "Une attaque de type Acier que seul un Pachyradjah Gigamax peut utiliser. Disperse des pics aiguisés sur le terrain." + }, + "gMaxMeltdown": { + "name": "Fonte G-Max", + "effect": "Une attaque de type Acier que seul un Melmetal Gigamax peut utiliser. Empêche la cible d’utiliser la même capacité deux fois de suite." + }, + "gMaxFoamBurst": { + "name": "Bulles G-Max", + "effect": "Une attaque de type Eau que seul un Krabboss Gigamax peut utiliser. Réduit beaucoup la Vitesse de la cible." + }, + "gMaxCentiferno": { + "name": "Combustion G-Max", + "effect": "Une attaque de type Feu que seul un Scolocendre Gigamax peut utiliser. Emprisonne la cible dans un tourbillon de flammes qui dure de quatre à cinq tours." + }, + "gMaxVineLash": { + "name": "Fouet G-Max", + "effect": "Une attaque de type Plante que seul un Florizarre Gigamax peut utiliser. Inflige des dégâts à la cible pendant quatre tours." + }, + "gMaxCannonade": { + "name": "Canonnade G-Max", + "effect": "Une attaque de type Eau que seul un Tortank Gigamax peut utiliser. Inflige des dégâts à la cible pendant quatre tours." + }, + "gMaxDrumSolo": { + "name": "Percussion G-Max", + "effect": "Une attaque de type Plante que seul un Gorythmic Gigamax peut utiliser. Ignore le talent de la cible." + }, + "gMaxFireball": { + "name": "Pyroball G-Max", + "effect": "Une attaque de type Feu que seul un Pyrobut Gigamax peut utiliser. Ignore le talent de la cible." + }, + "gMaxHydrosnipe": { + "name": "Gâchette G-Max", + "effect": "Une attaque de type Eau que seul un Lézargus Gigamax peut utiliser. Ignore le talent de la cible." + }, + "gMaxOneBlow": { + "name": "Coup Final G-Max", + "effect": "Une attaque de type Ténèbres que seul un Shifours Gigamax peut utiliser. Cette frappe unique permet d’ignorer la capacité Gardomax." + }, + "gMaxRapidFlow": { + "name": "Multicoup G-Max", + "effect": "Une attaque de type Eau que seul un Shifours Gigamax peut utiliser. Cet enchainement de coups permet d’ignorer la capacité Gardomax." + }, + "teraBlast": { + "name": "Téra Explosion", + "effect": "Si le lanceur est téracristallisé, il libère l’énergie de son type Téracristal. La capacité utilise l’Attaque ou l’Attaque Spéciale, selon ce qui infligera le plus de dégâts." + }, + "silkTrap": { + "name": "Piège de Fil", + "effect": "Le lanceur déploie un piège de fil pour se protéger contre les attaques, et si un assaillant utilise une attaque directe contre lui, la Vitesse de l’assaillant baisse." + }, + "axeKick": { + "name": "Talon-Marteau", + "effect": "Le lanceur donne un coup de talon descendant à la cible, ce qui peut aussi la rendre confuse. S’il échoue, le lanceur se blesse." + }, + "lastRespects": { + "name": "Hommage Posthume", + "effect": "Le lanceur attaque pour venger ses alliés. Plus le nombre de Pokémon alliés mis K.O. est élevé, plus la puissance de cette capacité augmente." + }, + "luminaCrash": { + "name": "Lumino-Impact", + "effect": "Le lanceur attaque en émettant une étrange lumière qui ébranle l’esprit de la cible. Cela baisse beaucoup la Défense Spéciale de la cible." + }, + "orderUp": { + "name": "Plat du Jour", + "effect": "Le lanceur attaque avec adresse et élégance. S’il a un Nigirigon dans la gueule, une de ses stats augmente en fonction de la forme de celui-ci." + }, + "jetPunch": { + "name": "Poing Sonique", + "effect": "Le lanceur enveloppe son poing d’un torrent furieux et attaque si rapidement qu’on peine à le discerner. Frappe en priorité." + }, + "spicyExtract": { + "name": "Habanerage", + "effect": "Le lanceur relâche un concentré extrêmement pimenté sur la cible, ce qui augmente beaucoup l’Attaque de celle-ci, mais baisse aussi beaucoup sa Défense." + }, + "spinOut": { + "name": "Dérapage", + "effect": "Le lanceur met tout son poids sur ses pattes et effectue de violentes rotations, ce qui inflige des dégâts à la cible, mais baisse beaucoup la Vitesse du lanceur." + }, + "populationBomb": { + "name": "Prolifération", + "effect": "Le lanceur et ses congénères prolifèrent en masse et attaquent ensemble d’une à dix fois d’affilée." + }, + "iceSpinner": { + "name": "Cryo-Pirouette", + "effect": "Le lanceur enveloppe ses jambes d’une fine couche de glace et heurte la cible en tournant sur lui-même. Ses rotations détruisent le champ actif sur le terrain." + }, + "glaiveRush": { + "name": "Charge Glaive", + "effect": "Le lanceur se jette dans une charge inconsciente sur la cible. Au tour suivant, l’attaque de la cible inflige le double de dégâts et n’échoue jamais." + }, + "revivalBlessing": { + "name": "Second Souffle", + "effect": "Dans un élan de compassion, le lanceur adresse une prière afin de ranimer un Pokémon de l’équipe K.O. en lui rendant la moitié de ses PV." + }, + "saltCure": { + "name": "Salaison", + "effect": "Le lanceur couvre la cible de sel, ce qui lui inflige des dégâts à chaque tour. Si la cible est de type Acier ou Eau, ces dégâts sont plus élevés." + }, + "tripleDive": { + "name": "Triple Plongeon", + "effect": "Le lanceur effectue des plongeons parfaitement cadencés pour éclabousser la cible et lui infliger des dégâts trois fois d’affilée." + }, + "mortalSpin": { + "name": "Toupie Éclat", + "effect": "Le lanceur attaque en tournant sur lui-même et empoisonne la cible. Il se libère également des effets de capacités comme Étreinte, Ligotage ou Vampigraine." + }, + "doodle": { + "name": "Décalquage", + "effect": "Le lanceur capture l’essence de la cible et la décalque. Le talent du lanceur et de ses alliés devient alors identique à celui de la cible." + }, + "filletAway": { + "name": "Décharnement", + "effect": "Le lanceur sacrifie des PV pour beaucoup augmenter son Attaque, son Attaque Spéciale, et sa Vitesse." + }, + "kowtowCleave": { + "name": "Génusection", + "effect": "Le lanceur se prosterne devant la cible et profite de cette distraction pour l’attaquer avec une lame. N’échoue jamais." + }, + "flowerTrick": { + "name": "Magie Florale", + "effect": "Le lanceur attaque en jetant un bouquet de fleurs piégé sur la cible. N’échoue jamais et inflige toujours un coup critique." + }, + "torchSong": { + "name": "Chant Flamboyant", + "effect": "Le lanceur carbonise la cible en projetant sur elle de vives flammes créées par un chant. Cette capacité augmente l’Attaque Spéciale du lanceur." + }, + "aquaStep": { + "name": "Danse Aquatique", + "effect": "Le lanceur se joue de la cible et lui inflige des dégâts avec ses pas de danse gracieux et légers. Cette capacité augmente la Vitesse du lanceur." + }, + "ragingBull": { + "name": "Taurogne", + "effect": "Le lanceur charge la cible comme un taureau enragé. Le type de cette capacité dépend de la race du lanceur, et brise les barrières comme Mur Lumière et Protection." + }, + "makeItRain": { + "name": "Ruée d’Or", + "effect": "Le lanceur attaque en lançant de nombreuses pièces, ce qui baisse son Attaque Spéciale. Permet d’obtenir plus d’argent à la fin du combat." + }, + "psyblade": { + "name": "Lame Psychique", + "effect": "Le lanceur lacère la cible à l’aide d’une lame intangible. S’il se trouve dans un champ électrifié, la puissance de cette capacité augmente de 50 %." + }, + "hydroSteam": { + "name": "Hydrovapeur", + "effect": "Le lanceur asperge la cible avec un puissant jet d’eau bouillante. Quand le soleil brille, la puissance de cette capacité augmente de 50 % au lieu de baisser." + }, + "ruination": { + "name": "Cataclysme", + "effect": "Le lanceur déclenche un cataclysme qui baisse les PV de la cible de moitié." + }, + "collisionCourse": { + "name": "Nitro Crash", + "effect": "Le lanceur change de forme et s’écrase sur la cible dans une explosion antique. Si la capacité est super efficace, elle inflige encore plus de dégâts que d’ordinaire." + }, + "electroDrift": { + "name": "Turbo Volt", + "effect": "Le lanceur change de forme et fonce sur la cible en la perforant d’électricité futuriste. Si la capacité est super efficace, sa puissance augmente encore plus." + }, + "shedTail": { + "name": "Queulonage", + "effect": "Le lanceur crée un clone en sacrifiant des PV, puis il revient et échange sa place avec un Pokémon de l’équipe prêt à combattre." + }, + "chillyReception": { + "name": "Neigeux de Mots", + "effect": "Le lanceur fait un si mauvais jeu de mots qu’il jette un froid et échange sa place avec un Pokémon de l’équipe prêt à combattre. La neige tombe pendant cinq tours." + }, + "tidyUp": { + "name": "Grand Nettoyage", + "effect": "Le lanceur fait le ménage sur le terrain, ce qui annule les effets de Picots, Piège de Roc, Toile Gluante, Pics Toxik, et Clonage. Augmente l’Attaque et la Vitesse du lanceur." + }, + "snowscape": { + "name": "Chute de Neige", + "effect": "Le lanceur invoque une tempête de neige qui dure cinq tours, ce qui augmente la Défense des Pokémon de type Glace." + }, + "pounce": { + "name": "Bond", + "effect": "Le lanceur attaque en bondissant sur la cible, ce qui baisse la Vitesse de celle-ci." + }, + "trailblaze": { + "name": "Désherbaffe", + "effect": "Le lanceur surgit des hautes herbes pour attaquer la cible. Les mouvements agiles du lanceur augmentent sa Vitesse." + }, + "chillingWater": { + "name": "Douche Froide", + "effect": "Le lanceur attaque la cible en l’arrosant d’une eau si froide qu’elle détériore son esprit combatif. Baisse l’Attaque de la cible." + }, + "hyperDrill": { + "name": "Hyperceuse", + "effect": "Le lanceur fait tourner à toute vitesse la partie pointue de son corps afin de transpercer la cible. Ignore même les capacités comme Abri ou Détection." + }, + "twinBeam": { + "name": "Double Laser", + "effect": "Le lanceur projette d’étranges rayons lumineux avec ses yeux et inflige des dégâts deux fois d’affilée." + }, + "rageFist": { + "name": "Poing de Colère", + "effect": "Le lanceur transforme sa colère en énergie pour attaquer. Plus il a subi d’attaques, plus la puissance de cette capacité augmente." + }, + "armorCannon": { + "name": "Canon Blindé", + "effect": "Le lanceur tire un boulet de canon ardent provenant de sa propre armure sur la cible. Cela baisse la Défense et la Défense Spéciale du lanceur." + }, + "bitterBlade": { + "name": "Lame en Peine", + "effect": "Le lanceur concentre son amertume du monde des vivants dans la pointe de ses épées et tranche la cible. La moitié des dégâts infligés sont convertis en PV pour le lanceur." + }, + "doubleShock": { + "name": "Double Décharge", + "effect": "Le lanceur libère toute l’électricité contenue dans son corps pour infliger des dégâts élevés à la cible. Le lanceur perd le type Électrik." + }, + "gigatonHammer": { + "name": "Marteau Mastoc", + "effect": "Le lanceur met tout son corps à contribution pour attaquer la cible avec un immense marteau. Cette capacité ne peut pas être utilisée deux fois d’affilée." + }, + "comeuppance": { + "name": "Vindicte", + "effect": "Le lanceur contre-attaque avec un coup infligeant des dégâts supérieurs à ceux de la dernière capacité qui l’a blessé." + }, + "aquaCutter": { + "name": "Tranch’Aqua", + "effect": "Le lanceur projette de l’eau pressurisée qui entaille la cible comme une lame. Taux de critiques élevé." + }, + "blazingTorque": { + "name": "Crash Brulant", + "effect": "Crash Brulant inflige des dégâts et possède 30 % de chances de bruler l’adversaire." + }, + "wickedTorque": { + "name": "Crash Obscur", + "effect": "Crash Obscur inflige des dégâts et possède 10 % de chances d’endormir l’adversaire." + }, + "noxiousTorque": { + "name": "Crash Toxique", + "effect": "Crash Toxique inflige des dégâts et possède 30 % de chances d’empoisonner l’adversaire." + }, + "combatTorque": { + "name": "Crash Musclé", + "effect": "Crash Musclé inflige des dégâts et possède 30 % de chances de paralyser l’adversaire." + }, + "magicalTorque": { + "name": "Crash Magique", + "effect": "Crash Magique inflige des dégâts et possède 30 % de chances de rendre l’adversaire confus." + }, + "bloodMoon": { + "name": "Lune Rouge", + "effect": "Le lanceur concentre toute son énergie dans la lune rouge sang sur son front et la projette sur la cible. Cette capacité ne peut pas être utilisée deux fois d’affilée." + }, + "matchaGotcha": { + "name": "Mortier Matcha", + "effect": "Le lanceur remue son thé et en bombarde la cible. La moitié des dégâts infligés sont convertis en PV pour le lanceur. Cette capacité peut aussi bruler la cible." + }, + "syrupBomb": { + "name": "Bombe au Sirop", + "effect": "Le lanceur jette une bombe qui recouvre la cible de sirop gluant et fait progressivement baisser la Vitesse de la cible pendant trois tours." + }, + "ivyCudgel": { + "name": "Massue Liane", + "effect": "Le lanceur frappe la cible à l’aide d’une massue entourée d’une liane. Le type de cette capacité varie en fonction du masque que porte le lanceur. Taux de critiques élevé." + }, + "electroShot": { + "name": "Fulgurayon", + "effect": "Le lanceur absorbe de l’électricité au premier tour, ce qui augmente son Attaque Spéciale, et envoie une puissante décharge au second. S’il pleut, il l’envoie au premier tour." + }, + "teraStarstorm": { + "name": "Pluie Térastrale", + "effect": "Le lanceur bombarde la cible afin de l’éliminer grâce au pouvoir des cristaux. Si le lanceur est Terapagos sous sa Forme Stellaire, la capacité touche tous les ennemis." + }, + "fickleBeam": { + "name": "Laser Hasard", + "effect": "Le lanceur attaque en tirant un rayon lumineux. Il arrive parfois que toutes les têtes agissent ensemble, ce qui double la puissance de la capacité." + }, + "burningBulwark": { + "name": "Rempart Brulant", + "effect": "Le lanceur se protège contre les attaques grâce à son pelage incandescent, et si un assaillant utilise une attaque directe contre lui, il le brule." + }, + "thunderclap": { + "name": "Vif Éclair", + "effect": "Permet au lanceur d’attaquer la cible en priorité avec une décharge électrique. Échoue si la cible ne prépare pas une attaque." + }, + "mightyCleave": { + "name": "Lame Puissante", + "effect": "Le lanceur pourfend la cible avec la lumière accumulée sur sa tête. Cette attaque passe outre les protections." + }, + "tachyonCutter": { + "name": "Lame Tachyonique", + "effect": "Le lanceur concentre des particules élémentaires pour créer une lame qui inflige des dégâts à la cible deux fois d’affilée. N’échoue jamais." + }, + "hardPress": { + "name": "Pression Extrême", + "effect": "Le lanceur écrase la cible avec ses bras ou ses pinces. Plus il reste de PV à la cible, plus la puissance de la capacité augmente." + }, + "dragonCheer": { + "name": "Cri Draconique", + "effect": "Le lanceur galvanise ses alliés avec un encouragement draconique qui augmente leur taux de critiques. L’effet est plus puissant si les alliés ont le type Dragon." + }, + "alluringVoice": { + "name": "Voix Envoutante", + "effect": "Le lanceur attaque la cible avec sa voix angélique. Cette capacité rend la cible confuse si ses stats ont augmenté pendant ce tour." + }, + "temperFlare": { + "name": "Indignition", + "effect": "Le lanceur utilise la force de son dépit pour attaquer. S’il a utilisé une capacité qui a échoué au tour précédent, la puissance d’Indignition est doublée." + }, + "supercellSlam": { + "name": "Volt Assaut", + "effect": "Le lanceur se charge en électricité et fond sur la cible. S’il échoue, le lanceur se blesse." + }, + "psychicNoise": { + "name": "Dissonance Psy", + "effect": "Le lanceur attaque avec des ondes sonores dissonantes. Cela empêche la cible de récupérer des PV à l’aide de capacités, talents ou objets tenus pendant 2 tours." + }, + "upperHand": { + "name": "Prio-Parade", + "effect": "Le lanceur réagit instinctivement au moindre mouvement et donne un coup de paume qui apeure la cible. Échoue si cette dernière n’a pas utilisé une attaque prioritaire." + }, + "malignantChain": { + "name": "Chaine Malsaine", + "effect": "Le lanceur ligote la cible avec une chaine faite de poison et lui injecte un venin corrosif, ce qui peut aussi gravement l’empoisonner." + } +} diff --git a/src/locales/fr/move.ts b/src/locales/fr/move.ts deleted file mode 100644 index 425d9226d57..00000000000 --- a/src/locales/fr/move.ts +++ /dev/null @@ -1,3812 +0,0 @@ -import { MoveTranslationEntries } from "#app/interfaces/locales"; - -export const move: MoveTranslationEntries = { - "pound": { - name: "Écras’Face", - effect: "Le lanceur écrase la cible avec l’un de ses membres, tels qu’une de ses pattes avant ou sa longue queue." - }, - "karateChop": { - name: "Poing Karaté", - effect: "L’ennemi est tranché violemment. Taux de critique élevé." - }, - "doubleSlap": { - name: "Torgnoles", - effect: "Gifle rapidement l’ennemi de deux à cinq fois d’affilée." - }, - "cometPunch": { - name: "Poing Comète", - effect: "Une tornade de coups de poing qui frappe de deux à cinq fois d’affilée." - }, - "megaPunch": { - name: "Ultimapoing", - effect: "La cible reçoit un coup de poing d’une grande puissance." - }, - "payDay": { - name: "Jackpot", - effect: "Des pièces sont lancées sur la cible. Permet d’obtenir de l’argent à la fin du combat." - }, - "firePunch": { - name: "Poing Feu", - effect: "Un coup de poing enflammé vient frapper la cible, ce qui peut la brûler (10% de chances)." - }, - "icePunch": { - name: "Poing Glace", - effect: "Un coup de poing glacé vient frapper la cible, ce qui peut la geler (10% de chances)." - }, - "thunderPunch": { - name: "Poing Éclair", - effect: "Un coup de poing électrique vient frapper la cible, ce qui peut la paralyser (10% de chances)." - }, - "scratch": { - name: "Griffe", - effect: "Lacère la cible avec des griffes acérées pour lui infliger des dégâts." - }, - "viseGrip": { - name: "Force Poigne", - effect: "La cible est attrapée et compressée par les côtés." - }, - "guillotine": { - name: "Guillotine", - effect: "Des pinces lacèrent violemment la cible, la mettant K.O. sur le coup si elle est touchée." - }, - "razorWind": { - name: "Coupe-Vent", - effect: "Attaque en deux tours. Des lames de vent frappent l’ennemi au second tour. Taux de critique élevé." - }, - "swordsDance": { - name: "Danse Lames", - effect: "Une danse frénétique qui exalte l’esprit combatif. Augmente beaucoup l’Attaque du lanceur." - }, - "cut": { - name: "Coupe", - effect: "Coupe la cible avec des lames ou des griffes." - }, - "gust": { - name: "Tornade", - effect: "Le lanceur bat des ailes pour générer une bourrasque qui blesse la cible." - }, - "wingAttack": { - name: "Cru-Ailes", - effect: "Le lanceur déploie largement ses ailes majestueuses pour attaquer la cible." - }, - "whirlwind": { - name: "Cyclone", - effect: "Éjecte le Pokémon ennemi et le remplace par un autre. Lors d’un combat contre un Pokémon sauvage seul, met fin au combat." - }, - "fly": { - name: "Vol", - effect: "Le lanceur s’envole au premier tour et frappe au second." - }, - "bind": { - name: "Étreinte", - effect: "Le lanceur ligote la cible avec son corps allongé ou ses tentacules pour la compresser durant quatre à cinq tours." - }, - "slam": { - name: "Souplesse", - effect: "Le lanceur utilise l’un de ses membres, tels qu’une queue ou une liane, pour infliger des dégâts à la cible." - }, - "vineWhip": { - name: "Fouet Lianes", - effect: "Fouette la cible avec de fines lianes pour infliger des dégâts." - }, - "stomp": { - name: "Écrasement", - effect: "Écrase la cible avec un énorme pied, ce qui peut aussi l’apeurer (30% de chances)." - }, - "doubleKick": { - name: "Double Pied", - effect: "Deux coups de pied qui frappent la cible deux fois d’affilée." - }, - "megaKick": { - name: "Ultimawashi", - effect: "Un coup de pied surpuissant qui frappe la cible." - }, - "jumpKick": { - name: "Pied Sauté", - effect: "Le lanceur s’envole pour décocher un coup de pied sauté. S’il échoue, le lanceur se blesse." - }, - "rollingKick": { - name: "Mawashi Geri", - effect: "Le lanceur effectue un coup de pied tournoyant et extrêmement rapide. Peut apeurer l’ennemi (30% de chances)." - }, - "sandAttack": { - name: "Jet de Sable", - effect: "Lance du sable au visage de la cible pour baisser sa Précision." - }, - "headbutt": { - name: "Coup d’Boule", - effect: "Le lanceur donne un coup de tête à la cible qui peut aussi l’apeurer (30% de chances)." - }, - "hornAttack": { - name: "Koud’Korne", - effect: "Frappe la cible d’un coup de corne pointue pour infliger des dégâts." - }, - "furyAttack": { - name: "Furie", - effect: "Frappe la cible deux à cinq fois d’affilée avec un membre pointu tel qu’un bec ou une corne." - }, - "hornDrill": { - name: "Empal’Korne", - effect: "Un coup de corne en vrille qui empale la cible, la mettant K.O. sur le coup si elle est touchée." - }, - "tackle": { - name: "Charge", - effect: "Le lanceur charge la cible et la percute de tout son poids." - }, - "bodySlam": { - name: "Plaquage", - effect: "Le lanceur se laisse tomber sur la cible de tout son poids, ce qui peut aussi la paralyser (30% de chances)." - }, - "wrap": { - name: "Ligotage", - effect: "Le lanceur ligote la cible avec son corps allongé ou ses tentacules pour la compresser durant quatre à cinq tours." - }, - "takeDown": { - name: "Bélier", - effect: "Une charge violente qui blesse aussi légèrement le lanceur." - }, - "thrash": { - name: "Mania", - effect: "Une attaque furieuse qui dure de deux à trois tours. Le lanceur devient confus." - }, - "doubleEdge": { - name: "Damoclès", - effect: "Une charge dangereuse et imprudente. Blesse aussi gravement le lanceur." - }, - "tailWhip": { - name: "Mimi-Queue", - effect: "Le lanceur remue son adorable queue pour tromper la vigilance de la cible et baisser sa Défense." - }, - "poisonSting": { - name: "Dard-Venin", - effect: "Un dard toxique transperce la cible et peut aussi l’empoisonner (30% de chances)." - }, - "twineedle": { - name: "Double Dard", - effect: "Un double coup de dard qui transperce l’ennemi deux fois d’affilée. Peut aussi l’empoisonner (36% de chances)." - }, - "pinMissile": { - name: "Dard-Nuée", - effect: "Envoie une rafale de dards. Peut toucher de deux à cinq fois." - }, - "leer": { - name: "Groz’Yeux", - effect: "Le lanceur fait les gros yeux à la cible pour l’intimider et baisser sa Défense." - }, - "bite": { - name: "Morsure", - effect: "Le lanceur utilise ses canines tranchantes pour mordre la cible, ce qui peut aussi l’apeurer (30% de chances)." - }, - "growl": { - name: "Rugissement", - effect: "Le lanceur pousse un cri tout mimi pour tromper la vigilance de la cible et baisser son Attaque." - }, - "roar": { - name: "Hurlement", - effect: "Effraie le Pokémon ennemi et le remplace par un autre. Lors d’un combat contre un Pokémon sauvage seul, met fin au combat." - }, - "sing": { - name: "Berceuse", - effect: "Une berceuse plonge la cible dans un profond sommeil." - }, - "supersonic": { - name: "Ultrason", - effect: "Le lanceur produit d’étranges ondes sonores qui rendent la cible confuse." - }, - "sonicBoom": { - name: "Sonic Boom", - effect: "Une onde de choc destructrice qui inflige toujours 20 PV de dégâts." - }, - "disable": { - name: "Entrave", - effect: "Empêche la cible de répéter sa dernière attaque. Dure quatre tours." - }, - "acid": { - name: "Acide", - effect: "Le lanceur attaque la cible avec un jet d’acide corrosif qui peut aussi baisser sa Défense Spéciale." - }, - "ember": { - name: "Flammèche", - effect: "La cible est attaquée par une faible flamme qui peut aussi la brûler." - }, - "flamethrower": { - name: "Lance-Flammes", - effect: "La cible reçoit un torrent de flammes qui peut aussi la brûler (10% de chances)." - }, - "mist": { - name: "Brume", - effect: "Une brume blanche enveloppe le lanceur et ses alliés et empêche la réduction des stats pour cinq tours." - }, - "waterGun": { - name: "Pistolet à O", - effect: "De l’eau est projetée avec force sur la cible." - }, - "hydroPump": { - name: "Hydrocanon", - effect: "Un puissant jet d’eau est dirigé sur la cible." - }, - "surf": { - name: "Surf", - effect: "Une énorme vague s’abat sur le champ de bataille et inflige des dégâts à tous les Pokémon autour du lanceur." - }, - "iceBeam": { - name: "Laser Glace", - effect: "Un rayon de glace frappe la cible, ce qui peut aussi la geler (10% de chances)." - }, - "blizzard": { - name: "Blizzard", - effect: "Une violente tempête de neige s’abat sur la cible, ce qui peut aussi la geler (10% de chances)." - }, - "psybeam": { - name: "Rafale Psy", - effect: "Un étrange rayon frappe la cible, ce qui peut aussi la rendre confuse." - }, - "bubbleBeam": { - name: "Bulles d’O", - effect: "Des bulles sont envoyées avec puissance sur la cible, ce qui peut aussi baisser sa Vitesse." - }, - "auroraBeam": { - name: "Onde Boréale", - effect: "Le lanceur envoie un rayon arc-en-ciel sur la cible, ce qui peut aussi baisser son Attaque." - }, - "hyperBeam": { - name: "Ultralaser", - effect: "Le lanceur projette un puissant rayon sur la cible, mais doit se reposer au tour suivant." - }, - "peck": { - name: "Picpic", - effect: "Le lanceur frappe la cible d’un bec acéré ou d’une corne pointue pour infliger des dégâts." - }, - "drillPeck": { - name: "Bec Vrille", - effect: "Une attaque utilisant le bec comme une perceuse." - }, - "submission": { - name: "Sacrifice", - effect: "Le lanceur agrippe l’ennemi et l’écrase au sol. Blesse aussi légèrement le lanceur." - }, - "lowKick": { - name: "Balayage", - effect: "Un grand coup de pied bas qui fauche la cible. Plus celle-ci est lourde, plus la puissance de cette capacité augmente." - }, - "counter": { - name: "Riposte", - effect: "Une riposte qui répond à toute attaque physique en infligeant le double de dégâts." - }, - "seismicToss": { - name: "Frappe Atlas", - effect: "La cible est projetée grâce au pouvoir de la gravité. Cette capacité inflige des dégâts égaux au niveau du lanceur." - }, - "strength": { - name: "Force", - effect: "Le lanceur cogne la cible de toutes ses forces." - }, - "absorb": { - name: "Vole-Vie", - effect: "Une attaque qui absorbe les nutriments et convertit la moitié des dégâts infligés en PV pour le lanceur." - }, - "megaDrain": { - name: "Méga-Sangsue", - effect: "Une attaque qui absorbe les nutriments et convertit la moitié des dégâts infligés en PV pour le lanceur." - }, - "leechSeed": { - name: "Vampigraine", - effect: "Une graine est semée sur la cible. À chaque tour, elle lui dérobe des PV que le lanceur récupère." - }, - "growth": { - name: "Croissance", - effect: "Le corps du lanceur se développe. Augmente l’Attaque et l’Attaque Spéciale." - }, - "razorLeaf": { - name: "Tranch’Herbe", - effect: "Des feuilles aiguisées comme des rasoirs entaillent la cible. Taux de critiques élevé." - }, - "solarBeam": { - name: "Lance-Soleil", - effect: "Le lanceur absorbe une grande quantité de lumière au premier tour et envoie un rayon puissant au tour suivant." - }, - "poisonPowder": { - name: "Poudre Toxik", - effect: "Une poudre toxique empoisonne la cible." - }, - "stunSpore": { - name: "Para-Spore", - effect: "Le lanceur répand sur la cible une poudre qui la paralyse." - }, - "sleepPowder": { - name: "Poudre Dodo", - effect: "Le lanceur répand une poudre soporifique qui endort la cible." - }, - "petalDance": { - name: "Danse Fleurs", - effect: "Le lanceur attaque en projetant des pétales pendant deux à trois tours avant de céder à la confusion." - }, - "stringShot": { - name: "Sécrétion", - effect: "Le lanceur crache de la soie pour ligoter la cible et beaucoup baisser sa Vitesse." - }, - "dragonRage": { - name: "Draco-Rage", - effect: "La colère du lanceur déclenche une onde de choc destructrice qui inflige toujours 40 PV de dégâts." - }, - "fireSpin": { - name: "Danse Flammes", - effect: "Un tourbillon de flammes emprisonne la cible pendant quatre à cinq tours." - }, - "thunderShock": { - name: "Éclair", - effect: "Une décharge électrique tombe sur la cible, ce qui peut aussi la paralyser (10% de chances)." - }, - "thunderbolt": { - name: "Tonnerre", - effect: "Une grosse décharge électrique tombe sur la cible, ce qui peut aussi la paralyser (10% de chances)." - }, - "thunderWave": { - name: "Cage Éclair", - effect: "Un faible choc électrique paralyse la cible." - }, - "thunder": { - name: "Fatal-Foudre", - effect: "La foudre tombe sur la cible pour lui infliger des dégâts, ce qui peut aussi la paralyser (30% de chances)." - }, - "rockThrow": { - name: "Jet-Pierres", - effect: "Le lanceur soulève une pierre et la lance sur la cible." - }, - "earthquake": { - name: "Séisme", - effect: "Le lanceur provoque un tremblement de terre touchant tous les Pokémon autour de lui." - }, - "fissure": { - name: "Abîme", - effect: "Le lanceur fait tomber la cible dans une crevasse. Si cette attaque réussit, elle met K.O. sur le coup." - }, - "dig": { - name: "Tunnel", - effect: "Le lanceur creuse au premier tour et frappe au second." - }, - "toxic": { - name: "Fil Toxique", - effect: "Tisse un fil imprégné de venin. Empoisonne la cible et baisse sa Vitesse." - }, - "confusion": { - name: "Choc Mental", - effect: "Une faible vague télékinétique frappe la cible, ce qui peut aussi la plonger dans la confusion." - }, - "psychic": { - name: "Psyko", - effect: "Une puissante force télékinétique frappe la cible, ce qui peut aussi faire baisser sa Défense Spéciale." - }, - "hypnosis": { - name: "Hypnose", - effect: "Le lanceur hypnotise la cible pour la plonger dans un profond sommeil." - }, - "meditate": { - name: "Yoga", - effect: "Le lanceur médite pour éveiller son pouvoir latent et augmenter son Attaque." - }, - "agility": { - name: "Hâte", - effect: "Le lanceur se relaxe et allège son corps pour beaucoup augmenter sa Vitesse." - }, - "quickAttack": { - name: "Vive-Attaque", - effect: "Le lanceur fonce sur la cible si rapidement qu’on parvient à peine à le discerner. Frappe en priorité." - }, - "rage": { - name: "Frénésie", - effect: "Une fois activée, cette capacité augmente l’Attaque du lanceur à mesure que celui-ci subit des attaques." - }, - "teleport": { - name: "Téléport", - effect: "Permet de changer de place avec un autre Pokémon de l’équipe s’il y en a. Quand cette capacité est utilisée par un Pokémon sauvage, celui-ci fuit le combat." - }, - "nightShade": { - name: "Ombre Nocturne", - effect: "Le lanceur invoque un mirage et inflige des dégâts égaux au niveau du lanceur." - }, - "mimic": { - name: "Copie", - effect: "Le lanceur copie la dernière capacité utilisée par la cible et la conserve tant qu’il reste au combat." - }, - "screech": { - name: "Grincement", - effect: "Le lanceur émet un son strident qui donne envie de se boucher les oreilles. Baisse beaucoup la Défense de la cible." - }, - "doubleTeam": { - name: "Reflet", - effect: "Le lanceur se déplace si vite qu’il crée des copies illusoires de lui-même, augmentant son Esquive." - }, - "recover": { - name: "Soin", - effect: "Un soin qui permet au lanceur de récupérer jusqu’à la moitié de ses PV max." - }, - "harden": { - name: "Armure", - effect: "Le lanceur contracte tous ses muscles pour augmenter sa Défense." - }, - "minimize": { - name: "Lilliput", - effect: "Le lanceur comprime son corps pour se faire tout petit et beaucoup augmenter son Esquive." - }, - "smokescreen": { - name: "Brouillard", - effect: "Le lanceur disperse un nuage d’encre ou de fumée qui réduit la Précision de la cible." - }, - "confuseRay": { - name: "Onde Folie", - effect: "Une lumière étrange qui plonge la cible dans un état de confusion." - }, - "withdraw": { - name: "Repli", - effect: "Le lanceur se recroqueville dans sa carapace, ce qui augmente sa Défense." - }, - "defenseCurl": { - name: "Boul’Armure", - effect: "Le lanceur s’enroule pour cacher ses points faibles, ce qui augmente sa Défense." - }, - "barrier": { - name: "Bouclier", - effect: "Le lanceur érige un mur solide qui augmente beaucoup sa Défense." - }, - "lightScreen": { - name: "Mur Lumière", - effect: "Crée un fabuleux mur de lumière qui réduit les dégâts causés par les capacités spéciales pendant cinq tours." - }, - "haze": { - name: "Buée Noire", - effect: "Crée un brouillard qui annule les changements de stats de tous les Pokémon au combat." - }, - "reflect": { - name: "Protection", - effect: "Crée un fabuleux mur de lumière qui réduit les dégâts causés par les capacités physiques pendant cinq tours." - }, - "focusEnergy": { - name: "Puissance", - effect: "Le lanceur prend une profonde inspiration et se concentre pour augmenter son taux de critiques." - }, - "bide": { - name: "Patience", - effect: "Le lanceur encaisse les coups durant deux tours et réplique en infligeant le double des dégâts subis." - }, - "metronome": { - name: "Métronome", - effect: "Le lanceur agite un doigt et stimule son cerveau pour utiliser presque n’importe quelle capacité au hasard." - }, - "mirrorMove": { - name: "Mimique", - effect: "Le lanceur riposte à l’attaque de l’ennemi avec la même attaque." - }, - "selfDestruct": { - name: "Destruction", - effect: "Le lanceur explose en blessant tous les Pokémon autour de lui. Le lanceur tombe K.O." - }, - "eggBomb": { - name: "Bombe Œuf", - effect: "De toutes ses forces, le lanceur jette un gros œuf sur l’ennemi pour lui infliger des dégâts." - }, - "lick": { - name: "Léchouille", - effect: "Un grand coup de langue qui inflige des dégâts à la cible et peut aussi la paralyser (30% de chances)." - }, - "smog": { - name: "Purédpois", - effect: "Le lanceur attaque à l'aide d'une éruption de gaz répugnants qui peuvent aussi empoisonner la cible." - }, - "sludge": { - name: "Détritus", - effect: "Des détritus toxiques sont projetés sur la cible, ce qui peut aussi l’empoisonner (30% de chances)." - }, - "boneClub": { - name: "Massd’Os", - effect: "Le lanceur frappe l’ennemi à grands coups d’os. Peut aussi l’apeurer (10% de chances)." - }, - "fireBlast": { - name: "Déflagration", - effect: "Un déluge de flammes ardentes submerge la cible, ce qui peut aussi la brûler (10% de chances)." - }, - "waterfall": { - name: "Cascade", - effect: "Le lanceur charge la cible avec une intensité remarquable, ce qui peut l’apeurer (20% de chances)." - }, - "clamp": { - name: "Claquoir", - effect: "Le lanceur piège l’ennemi dans sa dure coquille et l’écrase pendant quatre à cinq tours." - }, - "swift": { - name: "Météores", - effect: "Le lanceur envoie des rayons d’étoiles qui touchent toujours la cible." - }, - "skullBash": { - name: "Coud’Krâne", - effect: "Le lanceur baisse la tête pour augmenter sa Défense au premier tour et percuter l’ennemi au second." - }, - "spikeCannon": { - name: "Picanon", - effect: "Envoie une rafale de dards. Peut toucher de deux à cinq fois." - }, - "constrict": { - name: "Constriction", - effect: "De longs tentacules ou lianes attaquent l’ennemi. Peut aussi baisser sa Vitesse." - }, - "amnesia": { - name: "Amnésie", - effect: "Le lanceur fait le vide dans son esprit pour oublier ses soucis. Augmente beaucoup sa Défense Spéciale." - }, - "kinesis": { - name: "Télékinésie", - effect: "Le lanceur distrait l’ennemi en pliant une cuiller, ce qui baisse sa Précision." - }, - "softBoiled": { - name: "E-Coque", - effect: "Le lanceur récupère jusqu’à la moitié de ses PV max." - }, - "highJumpKick": { - name: "Pied Voltige", - effect: "Le lanceur s’élance pour effectuer un coup de genou sauté. S’il échoue, le lanceur se blesse." - }, - "glare": { - name: "Regard Médusant", - effect: "Le lanceur intimide la cible grâce à son regard terrifiant pour la paralyser." - }, - "dreamEater": { - name: "Dévorêve", - effect: "Le lanceur mange le rêve de la cible endormie et récupère en PV la moitié des dégâts infligés." - }, - "poisonGas": { - name: "Gaz Toxik", - effect: "Le lanceur empoisonne la cible en lui projetant un nuage de gaz toxique au visage." - }, - "barrage": { - name: "Pilonnage", - effect: "Projette de deux à cinq grosses boules sur l’ennemi." - }, - "leechLife": { - name: "Vampirisme", - effect: "Une attaque qui aspire le sang de la cible. La moitié des dégâts sont convertis en PV pour le lanceur." - }, - "lovelyKiss": { - name: "Grobisou", - effect: "Le lanceur fait un bisou à l’ennemi en prenant une mine effrayante. Endort l’ennemi." - }, - "skyAttack": { - name: "Piqué", - effect: "Une attaque en deux tours au taux de critiques élevé, qui peut aussi apeurer la cible (30% de chances)." - }, - "transform": { - name: "Morphing", - effect: "Le lanceur devient une copie de sa cible et obtient la même palette de capacités." - }, - "bubble": { - name: "Écume", - effect: "Des bulles frappent l’ennemi. Peut réduire sa Vitesse." - }, - "dizzyPunch": { - name: "Uppercut", - effect: "Un enchaînement de coups de poing cadencés frappe l’ennemi. Peut aussi le rendre confus." - }, - "spore": { - name: "Spore", - effect: "Le lanceur répand un nuage de spores qui endort." - }, - "flash": { - name: "Flash", - effect: "Explosion lumineuse qui fait baisser la Précision de l’ennemi." - }, - "psywave": { - name: "Vague Psy", - effect: "Une étrange onde d’énergie chaude frappe l’ennemi. Cette attaque est d’intensité variable." - }, - "splash": { - name: "Trempette", - effect: "Le lanceur barbote et éclabousse les environs. Cette capacité n’a aucun effet." - }, - "acidArmor": { - name: "Acidarmure", - effect: "Le lanceur modifie sa structure moléculaire pour se liquéfier et beaucoup augmenter sa Défense." - }, - "crabhammer": { - name: "Pince-Masse", - effect: "Une grande pince martèle la cible. Taux de critiques élevé." - }, - "explosion": { - name: "Explosion", - effect: "Le lanceur explose et inflige des dégâts à tous les Pokémon autour de lui. Met K.O. le lanceur." - }, - "furySwipes": { - name: "Combo-Griffe", - effect: "La cible est lacérée par des faux ou des griffes de deux à cinq fois d’affilée." - }, - "bonemerang": { - name: "Osmerang", - effect: "Le lanceur projette son os comme un boomerang. Cette attaque frappe à l’aller et au retour." - }, - "rest": { - name: "Repos", - effect: "Le lanceur regagne tous ses PV et ses altérations de statut sont soignées, puis il dort pendant deux tours." - }, - "rockSlide": { - name: "Éboulement", - effect: "Le lanceur envoie de gros rochers sur la cible pour lui infliger des dégâts, ce qui peut aussi l’apeurer (30% de chances)." - }, - "hyperFang": { - name: "Croc de Mort", - effect: "Le lanceur mord l’ennemi à l’aide de ses incisives aiguisées. Peut aussi l’apeurer (10% de chances)." - }, - "sharpen": { - name: "Affûtage", - effect: "Le lanceur réduit son nombre de polygones pour accentuer ses angles et augmenter son Attaque." - }, - "conversion": { - name: "Conversion", - effect: "Le lanceur change de type pour prendre celui de la première capacité de sa liste." - }, - "triAttack": { - name: "Triplattaque", - effect: "Le lanceur envoie trois boules d’énergie simultanément qui peuvent aussi paralyser, brûler ou geler la cible (6.67% de chances)." - }, - "superFang": { - name: "Croc Fatal", - effect: "Une vilaine morsure d’incisives qui réduit de moitié les PV de la cible." - }, - "slash": { - name: "Tranche", - effect: "Le lanceur donne un coup de griffe ou de faux. Taux de critiques élevé." - }, - "substitute": { - name: "Clonage", - effect: "Le lanceur crée un clone en sacrifiant quelques PV. Ce clone sert de leurre." - }, - "struggle": { - name: "Lutte", - effect: "Une attaque désespérée, utilisée quand le lanceur n’a plus de PP. Le blesse aussi légèrement." - }, - "sketch": { - name: "Gribouille", - effect: "Le lanceur apprend la dernière capacité utilisée par la cible. Gribouille disparaît après utilisation." - }, - "tripleKick": { - name: "Triple Pied", - effect: "Une salve de un à trois coups de pied dont la puissance augmente à chaque coup porté." - }, - "thief": { - name: "Larcin", - effect: "Le lanceur attaque la cible et vole son objet. Le lanceur ne peut rien voler s’il tient déjà un objet." - }, - "spiderWeb": { - name: "Toile", - effect: "Le lanceur enserre l’ennemi à l’aide d’une fine soie gluante pour l’empêcher de fuir le combat." - }, - "mindReader": { - name: "Lire-Esprit", - effect: "Le lanceur analyse les mouvements de l’ennemi pour être sûr de toucher au coup suivant." - }, - "nightmare": { - name: "Cauchemar", - effect: "Un cauchemar qui inflige des dégâts à chaque tour à un ennemi endormi." - }, - "flameWheel": { - name: "Roue de Feu", - effect: "Le lanceur s’entoure de feu et charge la cible, ce qui peut aussi la brûler (10% de chances)." - }, - "snore": { - name: "Ronflement", - effect: "Une attaque qui ne fonctionne que si le lanceur est endormi. Le boucan peut aussi apeurer la cible (30% de chances)." - }, - "curse": { - name: "Malédiction", - effect: "Une capacité à l’effet différent selon que le lanceur est un Pokémon Spectre ou non." - }, - "flail": { - name: "Gigotage", - effect: "Le lanceur attaque en gigotant dans tous les sens. Plus ses PV sont bas, plus l’attaque est puissante." - }, - "conversion2": { - name: "Conversion 2", - effect: "Le lanceur change de type pour être résistant au type de la dernière attaque lancée par sa cible." - }, - "aeroblast": { - name: "Aéroblast", - effect: "Le lanceur projette une tornade sur l’ennemi pour infliger des dégâts. Taux de critique élevé." - }, - "cottonSpore": { - name: "Spore Coton", - effect: "Le lanceur libère des spores cotonneuses qui collent à la cible et baissent beaucoup sa Vitesse." - }, - "reversal": { - name: "Contre", - effect: "Le lanceur ne retient plus ses coups. Plus ses PV sont bas, plus la puissance de cette capacité augmente." - }, - "spite": { - name: "Dépit", - effect: "Le lanceur exprime son ressentiment en retirant 4 PP à la dernière capacité utilisée par la cible." - }, - "powderSnow": { - name: "Poudreuse", - effect: "Le lanceur projette de la neige poudreuse qui peut aussi geler la cible (10% de chances)." - }, - "protect": { - name: "Abri", - effect: "Le lanceur se protège de toutes les attaques. Peut échouer si utilisée plusieurs fois de suite." - }, - "machPunch": { - name: "Mach Punch", - effect: "Coup de poing fulgurant. Frappe en priorité." - }, - "scaryFace": { - name: "Grimace", - effect: "Le lanceur fait une grimace qui effraie la cible et réduit beaucoup sa Vitesse." - }, - "feintAttack": { - name: "Feinte", - effect: "Le lanceur s’approche l’air de rien avant de frapper par surprise. N’échoue jamais." - }, - "sweetKiss": { - name: "Doux Baiser", - effect: "Le lanceur envoie un bisou si mignon et désarmant qu’il plonge la cible dans la confusion." - }, - "bellyDrum": { - name: "Cognobidon", - effect: "Améliore l’Attaque au maximum en sacrifiant la moitié des PV max." - }, - "sludgeBomb": { - name: "Bombe Beurk", - effect: "Des détritus toxiques sont projetés sur la cible, ce qui peut aussi l’empoisonner (30% de chances)." - }, - "mudSlap": { - name: "Coud’Boue", - effect: "Le lanceur envoie de la boue au visage de la cible pour infliger des dégâts et baisser sa Précision." - }, - "octazooka": { - name: "Octazooka", - effect: "Le lanceur attaque en projetant de l’encre au visage de l’ennemi. Peut aussi baisser sa Précision." - }, - "spikes": { - name: "Picots", - effect: "Le lanceur disperse des picots sur le sol pour blesser tout ennemi qui entre au combat." - }, - "zapCannon": { - name: "Élecanon", - effect: "Un boulet de canon électrifié qui inflige des dégâts à la cible et la paralyse." - }, - "foresight": { - name: "Clairvoyance", - effect: "Permet de toucher un Pokémon Spectre avec n’importe quelle capacité ou de toucher un ennemi insaisissable." - }, - "destinyBond": { - name: "Lien du Destin", - effect: "Si un assaillant porte un coup fatal au lanceur après qu’il a activé cette capacité, ils sont tous les deux mis K.O. La capacité échoue si elle est immédiatement réutilisée." - }, - "perishSong": { - name: "Requiem", - effect: "Tout Pokémon qui entend ce requiem est K.O. dans trois tours à moins qu’il ne soit remplacé." - }, - "icyWind": { - name: "Vent Glace", - effect: "Une bourrasque de vent froid blesse la cible et réduit sa Vitesse." - }, - "detect": { - name: "Détection", - effect: "Le lanceur se protège de toutes les attaques. Peut échouer si utilisée plusieurs fois de suite." - }, - "boneRush": { - name: "Charge Os", - effect: "Le lanceur frappe la cible avec un os de deux à cinq fois d’affilée." - }, - "lockOn": { - name: "Verrouillage", - effect: "Le lanceur verrouille la cible pour ne pas la rater au tour suivant." - }, - "outrage": { - name: "Colère", - effect: "Le lanceur enrage et attaque pendant deux ou trois tours avant de devenir confus." - }, - "sandstorm": { - name: "Tempête de Sable", - effect: "Une tempête de sable blesse tous les Pokémon pendant cinq tours, sauf ceux de type Roche, Sol ou Acier. Augmente la Défense Spéciale des Pokémon Roche." - }, - "gigaDrain": { - name: "Giga-Sangsue", - effect: "Une attaque qui absorbe les nutriments et convertit la moitié des dégâts infligés en PV pour le lanceur." - }, - "endure": { - name: "Ténacité", - effect: "Le lanceur résiste aux attaques avec 1 PV. Peut échouer si utilisée plusieurs fois de suite." - }, - "charm": { - name: "Charme", - effect: "Le lanceur fait les yeux doux pour berner la cible et beaucoup réduire son Attaque." - }, - "rollout": { - name: "Roulade", - effect: "Un rocher roule sur la cible pendant cinq tours. L’attaque gagne en puissance à chaque coup." - }, - "falseSwipe": { - name: "Faux-Chage", - effect: "Le lanceur retient ses coups pour que la cible garde au moins 1 PV et ne tombe pas K.O." - }, - "swagger": { - name: "Vantardise", - effect: "Fait enrager la cible et la plonge dans la confusion, mais augmente beaucoup son Attaque." - }, - "milkDrink": { - name: "Lait à Boire", - effect: "Le lanceur récupère jusqu’à la moitié de ses PV max." - }, - "spark": { - name: "Étincelle", - effect: "Le lanceur envoie une charge électrique sur la cible qui peut aussi la paralyser (30% de chances)." - }, - "furyCutter": { - name: "Taillade", - effect: "Un coup de faux ou de griffe dont la puissance augmente quand il touche plusieurs fois d’affilée." - }, - "steelWing": { - name: "Ailes d’Acier", - effect: "Le lanceur frappe la cible avec des ailes d’acier, ce qui peut aussi augmenter la Défense du lanceur." - }, - "meanLook": { - name: "Regard Noir", - effect: "Le lanceur pétrifie la cible en lui lançant un regard noir qui la rend incapable de quitter le terrain." - }, - "attract": { - name: "Attraction", - effect: "Si la cible est du sexe opposé, elle tombe amoureuse et rechigne alors à attaquer." - }, - "sleepTalk": { - name: "Blabla Dodo", - effect: "Le lanceur utilise une de ses capacités au hasard. Il ne peut utiliser cette capacité que quand il dort." - }, - "healBell": { - name: "Glas de Soin", - effect: "Carillon apaisant qui soigne les altérations de statut de tous les Pokémon de l’équipe." - }, - "return": { - name: "Retour", - effect: "Plus le Pokémon apprécie son Dresseur, plus la puissance de cette attaque furieuse augmente." - }, - "present": { - name: "Cadeau", - effect: "Le lanceur attaque en offrant un cadeau piégé à la cible, mais le cadeau peut parfois restaurer les PV de celle-ci à la place." - }, - "frustration": { - name: "Frustration", - effect: "Moins le Pokémon aime son Dresseur, plus cette attaque est puissante." - }, - "safeguard": { - name: "Rune Protect", - effect: "Crée un champ protecteur qui empêche toutes les altérations de statut pendant cinq tours." - }, - "painSplit": { - name: "Balance", - effect: "Le lanceur ajoute ses PV à ceux de sa cible et les répartit équitablement." - }, - "sacredFire": { - name: "Feu Sacré", - effect: "Le lanceur génère un feu mystique d’une intensité redoutable pour attaquer l’ennemi. Peut aussi le brûler (50% de chances)." - }, - "magnitude": { - name: "Ampleur", - effect: "Provoque un tremblement de terre d’intensité variable qui affecte tous les Pokémon alentour. L’efficacité varie." - }, - "dynamicPunch": { - name: "Dynamo-Poing", - effect: "Le lanceur rassemble ses forces et envoie un coup de poing à la cible, ce qui la rend confuse à coup sûr." - }, - "megahorn": { - name: "Mégacorne", - effect: "Le lanceur inflige un grand coup de corne à la cible." - }, - "dragonBreath": { - name: "Draco-Souffle", - effect: "Le lanceur souffle fort sur la cible pour lui infliger des dégâts, ce qui peut aussi la paralyser (30% de chances)." - }, - "batonPass": { - name: "Relais", - effect: "Le lanceur échange sa place et tout changement de stats avec un Pokémon de l’équipe." - }, - "encore": { - name: "Encore", - effect: "Le lanceur oblige la cible à répéter la dernière capacité utilisée durant trois tours." - }, - "pursuit": { - name: "Poursuite", - effect: "Une attaque qui inflige deux fois plus de dégâts à un ennemi qui s’apprête à être remplacé." - }, - "rapidSpin": { - name: "Tour Rapide", - effect: "Le lanceur attaque en tournant sur lui-même. Sa Vitesse augmente également. Il se libère également des effets de capacités comme Étreinte, Ligotage ou Vampigraine." - }, - "sweetScent": { - name: "Doux Parfum", - effect: "Un doux parfum qui réduit beaucoup l’Esquive de la cible." - }, - "ironTail": { - name: "Queue de Fer", - effect: "Le lanceur attaque la cible avec une queue de fer, ce qui peut aussi baisser la Défense de la cible." - }, - "metalClaw": { - name: "Griffe Acier", - effect: "Attaque avec des griffes d’acier. Peut aussi augmenter l’Attaque du lanceur." - }, - "vitalThrow": { - name: "Corps Perdu", - effect: "Le lanceur porte son coup en dernier. En échange, cette capacité n’échoue jamais." - }, - "morningSun": { - name: "Aurore", - effect: "Un soin qui restaure des PV au lanceur. Son efficacité varie en fonction de la météo." - }, - "synthesis": { - name: "Synthèse", - effect: "Un soin qui restaure des PV au lanceur. Son efficacité varie en fonction de la météo." - }, - "moonlight": { - name: "Rayon Lune", - effect: "Un soin qui restaure des PV au lanceur. Son efficacité varie en fonction de la météo." - }, - "hiddenPower": { - name: "Puissance Cachée", - effect: "Attaque dont le type dépend du Pokémon qui l’utilise." - }, - "crossChop": { - name: "Coup Croix", - effect: "Le lanceur délivre un coup double en croisant les avant-bras. Taux de critiques élevé." - }, - "twister": { - name: "Ouragan", - effect: "Le lanceur déclenche un terrible ouragan sur la cible, ce qui peut aussi apeurer celle-ci (20% de chances)." - }, - "rainDance": { - name: "Danse Pluie", - effect: "Invoque de fortes pluies qui durent cinq tours, augmentant la puissance des capacités de type Eau et baissant celle des capacités de type Feu." - }, - "sunnyDay": { - name: "Zénith", - effect: "Fait briller le soleil pendant cinq tours, augmentant la puissance des capacités de type Feu et baissant celle des capacités de type Eau." - }, - "crunch": { - name: "Mâchouille", - effect: "Le lanceur mord la cible de ses crocs pointus, ce qui peut aussi baisser sa Défense." - }, - "mirrorCoat": { - name: "Voile Miroir", - effect: "Une riposte qui contre n’importe quelle capacité spéciale en infligeant le double des dégâts subis." - }, - "psychUp": { - name: "Boost", - effect: "Une autohypnose qui permet au lanceur de copier les changements de stats de la cible." - }, - "extremeSpeed": { - name: "Vitesse Extrême", - effect: "Le lanceur charge à une vitesse renversante. Frappe en priorité." - }, - "ancientPower": { - name: "Pouvoir Antique", - effect: "Une attaque préhistorique qui peut augmenter toutes les stats du lanceur d’un seul coup." - }, - "shadowBall": { - name: "Ball’Ombre", - effect: "Le lanceur projette une grande ombre sur la cible qui peut aussi faire baisser la Défense Spéciale de celle-ci." - }, - "futureSight": { - name: "Prescience", - effect: "De l’énergie psychique vient frapper la cible deux tours après l’utilisation de cette capacité." - }, - "rockSmash": { - name: "Éclate-Roc", - effect: "Le lanceur porte un coup de poing à la cible, ce qui peut baisser la Défense de celle-ci." - }, - "whirlpool": { - name: "Siphon", - effect: "Le lanceur piège la cible dans une trombe d’eau pendant quatre à cinq tours." - }, - "beatUp": { - name: "Baston", - effect: "Le lanceur appelle tous les Pokémon de son équipe à attaquer. Plus ils sont nombreux, plus il y a d’attaques." - }, - "fakeOut": { - name: "Bluff", - effect: "Le lanceur frappe en priorité et apeure la cible. La capacité ne fonctionne que si elle est utilisée immédiatement en entrant au combat." - }, - "uproar": { - name: "Brouhaha", - effect: "Le lanceur attaque en rugissant durant trois tours. Pendant ce temps, aucun Pokémon ne peut s’endormir." - }, - "stockpile": { - name: "Stockage", - effect: "Le lanceur emmagasine de l’énergie et augmente sa Défense et sa Défense Spéciale. Peut être utilisée trois fois." - }, - "spitUp": { - name: "Relâche", - effect: "Libère dans une attaque l’énergie précédemment emmagasinée avec Stockage. La puissance augmente en fonction du nombre de fois où Stockage a été utilisée." - }, - "swallow": { - name: "Avale", - effect: "Le lanceur absorbe l’énergie emmagasinée avec Stockage pour restaurer ses PV. Le nombre de PV soignés augmente en fonction du nombre de fois où Stockage a été utilisée." - }, - "heatWave": { - name: "Canicule", - effect: "Le lanceur provoque une vague de chaleur qui peut aussi brûler la cible (10% de chances)." - }, - "hail": { - name: "Grêle", - effect: "Invoque une tempête de grêle qui dure cinq tours. Ne blesse pas les Pokémon de type Glace." - }, - "torment": { - name: "Tourmente", - effect: "Le lanceur irrite la cible pour l’empêcher d’utiliser la même capacité deux fois de suite." - }, - "flatter": { - name: "Flatterie", - effect: "Rend la cible confuse, mais augmente son Attaque Spéciale." - }, - "willOWisp": { - name: "Feu Follet", - effect: "Le lanceur projette des flammes maléfiques à la cible pour lui infliger une brûlure." - }, - "memento": { - name: "Souvenir", - effect: "Le lanceur est mis K.O., mais l’Attaque et l’Attaque Spéciale de la cible baissent beaucoup." - }, - "facade": { - name: "Façade", - effect: "Une capacité dont la puissance double lorsque le lanceur est empoisonné, paralysé ou brûlé." - }, - "focusPunch": { - name: "Mitra-Poing", - effect: "Le lanceur se concentre avant d’attaquer. Échoue s’il est touché avant d’avoir frappé." - }, - "smellingSalts": { - name: "Stimulant", - effect: "Cette attaque est doublement efficace sur les Pokémon paralysés, mais elle soigne leur paralysie." - }, - "followMe": { - name: "Par Ici", - effect: "Le lanceur attire l’attention des cibles présentes pour les forcer à n’attaquer que le lanceur." - }, - "naturePower": { - name: "Force Nature", - effect: "Une attaque qui tire sa force de la nature. Son type varie selon le terrain." - }, - "charge": { - name: "Chargeur", - effect: "Le lanceur se charge en électricité, ce qui augmente la puissance de la prochaine capacité Électrik qu’il utilisera. Sa Défense Spéciale augmente également." - }, - "taunt": { - name: "Provoc", - effect: "Le lanceur provoque la cible, ce qui oblige celle-ci à n’utiliser que des capacités qui infligent des dégâts pendant trois tours." - }, - "helpingHand": { - name: "Coup d’Main", - effect: "Le lanceur donne un coup de main à son allié, qui voit la puissance de ses capacités augmenter." - }, - "trick": { - name: "Tour de Magie", - effect: "Le lanceur prend la cible au dépourvu et l’oblige à échanger son objet contre le sien." - }, - "rolePlay": { - name: "Imitation", - effect: "Imite la cible et copie son talent." - }, - "wish": { - name: "Vœu", - effect: "Un vœu qui permet au lanceur ou au Pokémon entrant sur le terrain au tour suivant de récupérer la moitié des PV max du lanceur." - }, - "assist": { - name: "Assistance", - effect: "Le lanceur se dépêche d’utiliser une capacité au hasard parmi celles des Pokémon de l’équipe." - }, - "ingrain": { - name: "Racines", - effect: "Le lanceur plante ses racines et récupère des PV à chaque tour. Une fois enraciné, il ne peut plus fuir." - }, - "superpower": { - name: "Surpuissance", - effect: "Une attaque puissante, mais qui baisse l’Attaque et la Défense du lanceur." - }, - "magicCoat": { - name: "Reflet Magik", - effect: "Une barrière qui renvoie les capacités comme Vampigraine et celles affectant le statut et les stats." - }, - "recycle": { - name: "Recyclage", - effect: "Recycle un objet tenu à usage unique déjà utilisé lors du combat pour pouvoir l’utiliser à nouveau." - }, - "revenge": { - name: "Vendetta", - effect: "Une attaque deux fois plus puissante si le lanceur a été blessé par l’ennemi durant ce tour." - }, - "brickBreak": { - name: "Casse-Brique", - effect: "Le lanceur attaque avec le tranchant de la main. Permet aussi de briser les barrières comme Mur Lumière et Protection." - }, - "yawn": { - name: "Bâillement", - effect: "Le lanceur fait bâiller la cible, qui s’endort au tour suivant." - }, - "knockOff": { - name: "Sabotage", - effect: "Fait plus de dégâts aux cibles qui tiennent un objet. De plus, fait tomber cet objet et empêche la cible de l’utiliser jusqu’à la fin du combat." - }, - "endeavor": { - name: "Effort", - effect: "Une attaque qui réduit les PV de la cible au niveau des PV du lanceur." - }, - "eruption": { - name: "Éruption", - effect: "Le lanceur laisse exploser sa colère. Plus ses PV sont bas, moins l’attaque est puissante." - }, - "skillSwap": { - name: "Échange", - effect: "Le lanceur utilise ses pouvoirs psychiques pour échanger son talent avec la cible." - }, - "imprison": { - name: "Possessif", - effect: "Si la cible et le lanceur ont des capacités en commun, la cible ne pourra pas les utiliser." - }, - "refresh": { - name: "Régénération", - effect: "Le lanceur se repose pour guérir d’un empoisonnement, d’une brûlure ou d’une paralysie." - }, - "grudge": { - name: "Rancune", - effect: "Si le lanceur est mis K.O., sa rancune épuise les PP de la capacité utilisée par l’ennemi pour le mettre K.O." - }, - "snatch": { - name: "Saisie", - effect: "Lorsqu’une capacité de soin ou de changement de stats est utilisée, le lanceur vole ses effets." - }, - "secretPower": { - name: "Force Cachée", - effect: "Les effets de cette attaque varient en fonction de l’environnement." - }, - "dive": { - name: "Plongée", - effect: "Le lanceur plonge sous l’eau au premier tour et frappe au second." - }, - "armThrust": { - name: "Cogne", - effect: "Un déluge de coups adressés avec la paume qui frappe de deux à cinq fois d’affilée." - }, - "camouflage": { - name: "Camouflage", - effect: "Modifie le type du lanceur en fonction du terrain, comme une berge, une grotte, l’herbe, etc." - }, - "tailGlow": { - name: "Lumi-Queue", - effect: "Le lanceur regarde un flash lumineux fixement. Augmente énormément son Attaque Spéciale." - }, - "lusterPurge": { - name: "Lumi-Éclat", - effect: "Le lanceur libère un éclair lumineux. Peut aussi baisser la Défense Spéciale de l’ennemi." - }, - "mistBall": { - name: "Ball’Brume", - effect: "Une bulle de brume inflige des dégâts à l’ennemi. Peut aussi réduire son Attaque Spéciale." - }, - "featherDance": { - name: "Danse Plumes", - effect: "Une montagne de plumes ensevelit la cible et réduit beaucoup son Attaque." - }, - "teeterDance": { - name: "Danse Folle", - effect: "Danse qui rend confus tous les Pokémon autour du lanceur." - }, - "blazeKick": { - name: "Pied Brûleur", - effect: "Le lanceur envoie un coup de pied au taux de critiques élevé. Peut aussi brûler la cible (10% de chances)." - }, - "mudSport": { - name: "Lance-Boue", - effect: "Asperge les alentours de boue. Affaiblit les capacités Électrik pendant cinq tours." - }, - "iceBall": { - name: "Ball’Glace", - effect: "Frappe l’ennemi pendant cinq tours. L’attaque gagne en puissance à chaque coup." - }, - "needleArm": { - name: "Poing Dard", - effect: "Le lanceur attaque en fouettant l’ennemi de ses bras épineux. Peut aussi l’apeurer (30% de chances)." - }, - "slackOff": { - name: "Paresse", - effect: "Le lanceur se tourne les pouces et récupère jusqu’à la moitié de ses PV max." - }, - "hyperVoice": { - name: "Mégaphone", - effect: "Le lanceur pousse un cri dont l’écho terrifiant a le pouvoir d’infliger des dégâts à la cible." - }, - "poisonFang": { - name: "Crochet Venin", - effect: "Le lanceur mord la cible avec ses crocs toxiques, ce qui peut aussi l’empoisonner gravement (50% de chances)." - }, - "crushClaw": { - name: "Éclate Griffe", - effect: "Le lanceur lacère la cible avec des griffes solides et aiguisées, ce qui peut aussi baisser la Défense de celle-ci." - }, - "blastBurn": { - name: "Rafale Feu", - effect: "Une explosion ardente consume la cible. Le lanceur doit se reposer au tour suivant." - }, - "hydroCannon": { - name: "Hydroblast", - effect: "Le lanceur projette un missile d’eau sur la cible, mais il doit se reposer au tour suivant." - }, - "meteorMash": { - name: "Poing Météore", - effect: "Un coup de poing lancé à la vitesse d’un météore. Peut aussi augmenter l’Attaque du lanceur." - }, - "astonish": { - name: "Étonnement", - effect: "Le lanceur attaque la cible en poussant un cri terrifiant qui peut aussi l’apeurer (30% de chances)." - }, - "weatherBall": { - name: "Ball’Météo", - effect: "Une capacité dont la puissance et le type varient en fonction du temps qu’il fait." - }, - "aromatherapy": { - name: "Aromathérapie", - effect: "Le lanceur libère un parfum apaisant qui guérit tous les problèmes de statut de l’équipe." - }, - "fakeTears": { - name: "Croco Larme", - effect: "Le lanceur fait semblant de pleurer pour troubler la cible et beaucoup baisser sa Défense Spéciale." - }, - "airCutter": { - name: "Tranch’Air", - effect: "Le lanceur appelle des vents tranchants qui lacèrent la cible. Taux de critiques élevé." - }, - "overheat": { - name: "Surchauffe", - effect: "Le lanceur attaque la cible à pleine puissance, mais le contrecoup baisse beaucoup l’Attaque Spéciale du lanceur." - }, - "odorSleuth": { - name: "Flair", - effect: "Permet de toucher un Pokémon Spectre avec n’importe quelle capacité ou de toucher un ennemi insaisissable." - }, - "rockTomb": { - name: "Tomberoche", - effect: "Des rochers frappent la cible et baissent sa Vitesse." - }, - "silverWind": { - name: "Vent Argenté", - effect: "Vent qui projette des écailles poudreuses sur l’ennemi. Peut aussi monter toutes les stats du lanceur." - }, - "metalSound": { - name: "Strido-Son", - effect: "Un cri horrible tel un crissement métallique qui réduit beaucoup la Défense Spéciale de la cible." - }, - "grassWhistle": { - name: "Siffl’Herbe", - effect: "Le lanceur joue une douce mélodie qui plonge l’ennemi dans un profond sommeil." - }, - "tickle": { - name: "Chatouille", - effect: "Le lanceur chatouille la cible, ce qui baisse son Attaque et sa Défense." - }, - "cosmicPower": { - name: "Force Cosmique", - effect: "Le lanceur absorbe un pouvoir mystique spatial qui augmente sa Défense et sa Défense Spéciale." - }, - "waterSpout": { - name: "Giclédo", - effect: "Le lanceur attaque avec un jet d’eau. Moins il a de PV et moins l’attaque est puissante." - }, - "signalBeam": { - name: "Rayon Signal", - effect: "Le lanceur projette un rayon de lumière sinistre. Peut aussi rendre l’ennemi confus." - }, - "shadowPunch": { - name: "Poing Ombre", - effect: "Le lanceur se fond dans les ombres pour porter un coup de poing. N’échoue jamais." - }, - "extrasensory": { - name: "Extrasenseur", - effect: "Le lanceur attaque avec un pouvoir étrange et invisible qui peut aussi apeurer la cible (10% de chances)." - }, - "skyUppercut": { - name: "Stratopercut", - effect: "Le lanceur attaque avec un uppercut. Il envoie son poing vers le ciel de toutes ses forces." - }, - "sandTomb": { - name: "Tourbi-Sable", - effect: "Le lanceur emprisonne la cible dans une tempête de sable terrifiante qui dure de quatre à cinq tours." - }, - "sheerCold": { - name: "Glaciation", - effect: "Une vague de froid glacial frappe la cible pour la mettre K.O. en un coup. Cela a peu de chances de réussir si le lanceur ne possède pas le type Glace." - }, - "muddyWater": { - name: "Ocroupi", - effect: "Le lanceur attaque en projetant de l’eau boueuse. Peut aussi réduire la Précision de la cible." - }, - "bulletSeed": { - name: "Balle Graine", - effect: "Le lanceur mitraille la cible avec une rafale de graines. De deux à cinq rafales sont lancées à la suite." - }, - "aerialAce": { - name: "Aéropique", - effect: "Le lanceur prend la cible de vitesse et la lacère. N’échoue jamais." - }, - "icicleSpear": { - name: "Stalactite", - effect: "Le lanceur jette des pics de glace sur la cible, de deux à cinq fois de suite." - }, - "ironDefense": { - name: "Mur de Fer", - effect: "L’épiderme du lanceur devient dur comme du fer, ce qui augmente beaucoup sa Défense." - }, - "block": { - name: "Barrage", - effect: "Le lanceur bloque la route de la cible pour empêcher sa fuite." - }, - "howl": { - name: "Grondement", - effect: "Le lanceur pousse un grand cri d’encouragement, ce qui augmente son Attaque et celle de ses alliés." - }, - "dragonClaw": { - name: "Draco-Griffe", - effect: "Le lanceur lacère la cible de ses grandes griffes aiguisées." - }, - "frenzyPlant": { - name: "Végé-Attaque", - effect: "Un violent coup de racines s’abat sur la cible. Le lanceur doit se reposer au tour suivant." - }, - "bulkUp": { - name: "Gonflette", - effect: "Le lanceur tend ses muscles pour se gonfler, ce qui booste son Attaque et sa Défense." - }, - "bounce": { - name: "Rebond", - effect: "Le lanceur bondit très haut et plonge sur la cible au second tour, ce qui peut aussi la paralyser (30% de chances)." - }, - "mudShot": { - name: "Tir de Boue", - effect: "Le lanceur attaque en projetant de la boue sur la cible, ce qui réduit aussi la Vitesse de celle-ci." - }, - "poisonTail": { - name: "Queue-Poison", - effect: "Le lanceur attaque la cible avec sa queue, ce qui peut aussi l’empoisonner (10% de chances). Taux de critiques élevés." - }, - "covet": { - name: "Implore", - effect: "Le lanceur s’approche de la cible avec un air angélique afin de dérober l’objet qu’elle tient." - }, - "voltTackle": { - name: "Électacle", - effect: "Le lanceur électrifie son corps avant de charger. Le choc blesse aussi gravement le lanceur et peut paralyser la cible (10% de chances)." - }, - "magicalLeaf": { - name: "Feuille Magik", - effect: "Le lanceur disperse d’étranges feuilles qui poursuivent la cible. N’échoue jamais." - }, - "waterSport": { - name: "Tourniquet", - effect: "Asperge d’eau les alentours. Affaiblit les capacités de type Feu pendant cinq tours." - }, - "calmMind": { - name: "Plénitude", - effect: "Le lanceur se concentre et fait le vide dans son esprit pour augmenter son Attaque Spéciale et sa Défense Spéciale." - }, - "leafBlade": { - name: "Lame Feuille", - effect: "Une feuille coupante comme une lame entaille la cible. Taux de critiques élevé." - }, - "dragonDance": { - name: "Danse Draco", - effect: "Une danse mystique dont le rythme effréné augmente l’Attaque et la Vitesse du lanceur." - }, - "rockBlast": { - name: "Boule Roc", - effect: "Le lanceur projette un rocher sur la cible de deux à cinq fois d’affilée." - }, - "shockWave": { - name: "Onde de Choc", - effect: "Le lanceur envoie un choc électrique rapide à la cible. N’échoue jamais." - }, - "waterPulse": { - name: "Vibraqua", - effect: "Le lanceur projette une aura aquatique sur la cible, et peut la rendre confuse." - }, - "doomDesire": { - name: "Vœu Destructeur", - effect: "Le lanceur génère une sphère lumineuse qu’il projette sur l’ennemi deux tours plus tard." - }, - "psychoBoost": { - name: "Psycho-Boost", - effect: "Attaque l’ennemi à pleine puissance. Le contrecoup baisse beaucoup l’Attaque Spéciale du lanceur." - }, - "roost": { - name: "Atterrissage", - effect: "Le lanceur atterrit et se repose. Restaure jusqu’à la moitié de ses PV max." - }, - "gravity": { - name: "Gravité", - effect: "Pendant cinq tours, les Pokémon Vol ou qui ont Lévitation deviennent sensibles aux capacités Sol, et les capacités volantes deviennent inutilisables." - }, - "miracleEye": { - name: "Œil Miracle", - effect: "Permet de toucher un Pokémon Ténèbres avec les capacités de type Psy ou de toucher un ennemi ayant beaucoup d’esquive." - }, - "wakeUpSlap": { - name: "Réveil Forcé", - effect: "Cette attaque inflige d’importants dégâts à un Pokémon endormi. Mais elle le réveille également." - }, - "hammerArm": { - name: "Marto-Poing", - effect: "Le lanceur donne un puissant coup de poing à la cible, ce qui réduit la Vitesse du lanceur." - }, - "gyroBall": { - name: "Gyroballe", - effect: "Le lanceur effectue une rotation rapide et frappe la cible. Plus la Vitesse du lanceur est basse par rapport à celle de la cible, plus il inflige de dégâts." - }, - "healingWish": { - name: "Vœu Soin", - effect: "Le lanceur tombe K.O. pour soigner les altérations de statut et les PV du Pokémon qui viendra le remplacer sur le terrain." - }, - "brine": { - name: "Saumure", - effect: "La puissance de cette capacité est doublée lorsque la cible a moins de la moitié de ses PV." - }, - "naturalGift": { - name: "Don Naturel", - effect: "Avant d’attaquer, le lanceur rassemble ses forces grâce à sa Baie. Elle détermine le type et la puissance de l’attaque." - }, - "feint": { - name: "Ruse", - effect: "Une attaque capable de toucher une cible qui utilise une capacité similaire à Détection ou Abri, et annule l’effet de cette capacité." - }, - "pluck": { - name: "Picore", - effect: "Le lanceur picore la cible. Si cette dernière tient une Baie, le lanceur la mange et profite de ses effets." - }, - "tailwind": { - name: "Vent Arrière", - effect: "Génère une rafale de vent qui augmente la Vitesse des Pokémon de l’équipe pendant quatre tours." - }, - "acupressure": { - name: "Acupression", - effect: "Le lanceur utilise sa connaissance des points de pression pour beaucoup augmenter une stat." - }, - "metalBurst": { - name: "Fulmifer", - effect: "Le lanceur contre-attaque avec un coup infligeant des dégâts supérieurs à ceux de la dernière capacité qui l’a blessé." - }, - "uTurn": { - name: "Demi-Tour", - effect: "Après son attaque, le lanceur revient à toute vitesse et change de place avec un Pokémon de l’équipe prêt à combattre." - }, - "closeCombat": { - name: "Close Combat", - effect: "Le lanceur ne pense plus à se protéger et frappe sa cible violemment au corps à corps. Cette capacité baisse la Défense et la Défense Spéciale du lanceur." - }, - "payback": { - name: "Représailles", - effect: "Le lanceur charge son énergie, puis attaque. La puissance de la capacité est doublée si le lanceur agit après la cible." - }, - "assurance": { - name: "Assurance", - effect: "La puissance de cette capacité est deux fois plus élevée si la cible a déjà été blessée durant ce tour." - }, - "embargo": { - name: "Embargo", - effect: "Empêche la cible d’utiliser un objet tenu et son Dresseur d’utiliser un objet sur lui pendant cinq tours." - }, - "fling": { - name: "Dégommage", - effect: "Le lanceur envoie l’objet qu’il tient sur la cible. La puissance et les effets dépendent de l’objet." - }, - "psychoShift": { - name: "Échange Psy", - effect: "Le lanceur transfère ses problèmes de statut à l’ennemi grâce à son pouvoir de suggestion." - }, - "trumpCard": { - name: "Atout", - effect: "Moins cette capacité possède de PP, plus elle est puissante." - }, - "healBlock": { - name: "Anti-Soin", - effect: "Le lanceur empêche l’ennemi de récupérer des PV à l’aide de capacités, talents ou objets tenus, pendant cinq tours." - }, - "wringOut": { - name: "Essorage", - effect: "Le lanceur essore l’ennemi. Plus l’ennemi a de PV, plus cette attaque est puissante." - }, - "powerTrick": { - name: "Astuce Force", - effect: "Le lanceur utilise ses pouvoirs psychiques pour échanger sa Défense et son Attaque." - }, - "gastroAcid": { - name: "Suc Digestif", - effect: "Le lanceur répand ses sucs digestifs sur la cible. Le fluide neutralise le talent de celle-ci." - }, - "luckyChant": { - name: "Air Veinard", - effect: "Le lanceur envoie une incantation vers le ciel et protège l’équipe des coups critiques pendant cinq tours." - }, - "meFirst": { - name: "Moi d’Abord", - effect: "Le lanceur vole la capacité prévue par l’ennemi et l’utilise en faisant plus de dégâts. Il doit frapper en premier." - }, - "copycat": { - name: "Photocopie", - effect: "Le lanceur imite la dernière capacité employée. Échoue si aucune capacité n’a été utilisée." - }, - "powerSwap": { - name: "Permuforce", - effect: "Le lanceur utilise un pouvoir psychique qui échange les changements de son Attaque et de son Attaque Spéciale avec celles de la cible." - }, - "guardSwap": { - name: "Permugarde", - effect: "Le lanceur utilise un pouvoir psychique qui échange les changements de sa Défense et de sa Défense Spéciale avec celles de la cible." - }, - "punishment": { - name: "Punition", - effect: "Plus l’ennemi a utilisé d’augmentations de stats et plus cette capacité est puissante." - }, - "lastResort": { - name: "Dernier Recours", - effect: "Cette capacité ne peut être utilisée qu’après que le lanceur a utilisé toutes les autres." - }, - "worrySeed": { - name: "Soucigraine", - effect: "Plante sur la cible une graine qui la rend soucieuse et remplace son talent par Insomnia, l’empêchant ainsi de dormir." - }, - "suckerPunch": { - name: "Coup Bas", - effect: "Permet au lanceur de frapper en priorité. Échoue si la cible ne prépare pas une attaque." - }, - "toxicSpikes": { - name: "Pics Toxik", - effect: "Le lanceur éparpille des pics autour de la cible, ce qui empoisonne les Pokémon entrant au combat de ce côté." - }, - "heartSwap": { - name: "Permucœur", - effect: "Le lanceur utilise un pouvoir psychique pour échanger ses changements de stats avec la cible." - }, - "aquaRing": { - name: "Anneau Hydro", - effect: "Un voile d’eau recouvre le lanceur et régénère ses PV à chaque tour." - }, - "magnetRise": { - name: "Vol Magnétik", - effect: "Le lanceur utilise l’électricité pour générer un champ magnétique et léviter durant cinq tours." - }, - "flareBlitz": { - name: "Boutefeu", - effect: "Le lanceur s’embrase avant de charger la cible, ce qui peut la brûler (10% de chances). Le choc blesse aussi gravement le lanceur." - }, - "forcePalm": { - name: "Forte-Paume", - effect: "Une onde de choc frappe la cible, ce qui peut aussi la paralyser (30% de chances)." - }, - "auraSphere": { - name: "Aurasphère", - effect: "Le lanceur puise au fond de lui-même pour dégager une aura et projeter de l’énergie sur la cible. N’échoue jamais." - }, - "rockPolish": { - name: "Poliroche", - effect: "Le lanceur polit son corps pour diminuer sa résistance au vent. Augmente beaucoup la Vitesse." - }, - "poisonJab": { - name: "Direct Toxik", - effect: "Le lanceur attaque la cible avec un tentacule, un bras, ou un autre membre imprégné de poison, ce qui peut aussi empoisonner la cible (30% de chances)." - }, - "darkPulse": { - name: "Vibrobscur", - effect: "Le lanceur projette une horrible aura chargée de pensées maléfiques, ce qui peut aussi apeurer la cible." - }, - "nightSlash": { - name: "Tranche-Nuit", - effect: "Le lanceur lacère la cible à la première occasion. Taux de critiques élevé." - }, - "aquaTail": { - name: "Hydro-Queue", - effect: "Le lanceur attaque en balançant sa queue comme une lame de fond en pleine tempête." - }, - "seedBomb": { - name: "Canon Graine", - effect: "Le lanceur déclenche un déluge de grosses graines à la coque solide sur la cible." - }, - "airSlash": { - name: "Lame d’Air", - effect: "Le lanceur attaque avec une lame d’air capable de fendre le ciel, ce qui peut aussi apeurer la cible (30% de chances)." - }, - "xScissor": { - name: "Plaie Croix", - effect: "Le lanceur taillade la cible en utilisant ses faux ou ses griffes comme une paire de ciseaux." - }, - "bugBuzz": { - name: "Bourdon", - effect: "Le lanceur fait vibrer son corps pour lancer une vague sonique, ce qui peut aussi baisser la Défense Spéciale de la cible." - }, - "dragonPulse": { - name: "Draco-Choc", - effect: "Le lanceur ouvre la bouche pour projeter une aura qui frappe la cible." - }, - "dragonRush": { - name: "Draco-Charge", - effect: "Le lanceur frappe la cible en prenant un air menaçant, ce qui peut aussi l’apeurer (20% de chances)." - }, - "powerGem": { - name: "Rayon Gemme", - effect: "Le lanceur attaque avec un rayon de lumière qui scintille comme s’il était composé de gemmes." - }, - "drainPunch": { - name: "Vampi-Poing", - effect: "Un coup de poing qui draine l’énergie. Convertit la moitié des dégâts infligés en PV pour le lanceur." - }, - "vacuumWave": { - name: "Onde Vide", - effect: "Le lanceur agite son poing pour projeter une onde de vide. Frappe en priorité." - }, - "focusBlast": { - name: "Exploforce", - effect: "Le lanceur rassemble ses forces et laisse éclater son pouvoir, ce qui peut aussi baisser la Défense Spéciale de la cible." - }, - "energyBall": { - name: "Éco-Sphère", - effect: "Le lanceur utilise les pouvoirs de la nature pour attaquer la cible, ce qui peut aussi baisser la Défense Spéciale de celle-ci." - }, - "braveBird": { - name: "Rapace", - effect: "Le lanceur replie ses ailes et charge en rase-mottes. Blesse gravement le lanceur." - }, - "earthPower": { - name: "Telluriforce", - effect: "De terribles séismes secouent la cible et peuvent aussi baisser sa Défense Spéciale." - }, - "switcheroo": { - name: "Passe-Passe", - effect: "Le lanceur échange son objet avec celui de la cible à une vitesse que l’œil a du mal à suivre." - }, - "gigaImpact": { - name: "Giga Impact", - effect: "Le lanceur charge la cible de toute ses forces et doit ensuite se reposer au tour suivant." - }, - "nastyPlot": { - name: "Machination", - effect: "Stimule l’esprit par de mauvaises pensées. Augmente beaucoup l’Attaque Spéciale du lanceur." - }, - "bulletPunch": { - name: "Pisto-Poing", - effect: "Le lanceur envoie des coups de poing aussi rapides que des balles de revolver. Frappe en priorité." - }, - "avalanche": { - name: "Avalanche", - effect: "Une capacité dont la puissance est doublée si le lanceur a été blessé par la cible durant ce tour." - }, - "iceShard": { - name: "Éclats Glace", - effect: "Le lanceur crée des éclats de glace qu’il envoie sur la cible. Frappe en priorité." - }, - "shadowClaw": { - name: "Griffe Ombre", - effect: "Attaque avec une griffe puissante faite d’ombres. Taux de critiques élevé." - }, - "thunderFang": { - name: "Crocs Éclair", - effect: "Le lanceur utilise une morsure électrifiée qui peut aussi paralyser (10% de chances) ou apeurer la cible (10% de chances)." - }, - "iceFang": { - name: "Crocs Givre", - effect: "Le lanceur utilise une morsure glaciale qui peut aussi geler (10% de chances) ou apeurer la cible (10% de chances)." - }, - "fireFang": { - name: "Crocs Feu", - effect: "Le lanceur utilise une morsure enflammée qui peut aussi brûler (10% de chances) ou apeurer (10% de chances) la cible." - }, - "shadowSneak": { - name: "Ombre Portée", - effect: "Le lanceur étend son ombre pour frapper par-derrière. Frappe en priorité." - }, - "mudBomb": { - name: "Boue-Bombe", - effect: "Le lanceur attaque à l’aide d’une boule de boue solidifiée. Peut aussi baisser la Précision de l’ennemi." - }, - "psychoCut": { - name: "Coupe Psycho", - effect: "Le lanceur entaille la cible grâce à des lames faites d’énergie psychique. Taux de critiques élevé." - }, - "zenHeadbutt": { - name: "Psykoud’Boul", - effect: "Le lanceur concentre sa volonté et donne un coup de tête à la cible, ce qui peut aussi apeurer celle-ci (20% de chances)." - }, - "mirrorShot": { - name: "Miroi-Tir", - effect: "Le corps poli du lanceur libère un éclair d’énergie. Peut aussi baisser la Précision de l’ennemi." - }, - "flashCannon": { - name: "Luminocanon", - effect: "Le lanceur concentre son énergie lumineuse et la fait exploser, ce qui peut aussi baisser la Défense Spéciale de la cible." - }, - "rockClimb": { - name: "Escalade", - effect: "Le lanceur se jette violemment sur l’ennemi. Peut aussi le rendre confus." - }, - "defog": { - name: "Anti-Brume", - effect: "Un grand coup de vent disperse Protection ou Mur Lumière de la cible et diminue également son Esquive." - }, - "trickRoom": { - name: "Distorsion", - effect: "Le lanceur crée une zone mystérieuse où les Pokémon les plus lents frappent en priorité pendant cinq tours." - }, - "dracoMeteor": { - name: "Draco-Météore", - effect: "Le lanceur invoque des comètes. Le contrecoup réduit beaucoup son Attaque Spéciale." - }, - "discharge": { - name: "Coup d’Jus", - effect: "Un flamboiement d’électricité frappe tous les Pokémon autour du lanceur. Peut aussi les paralyser (30% de chances)." - }, - "lavaPlume": { - name: "Ébullilave", - effect: "Des flammes s’abattent sur tous les Pokémon autour du lanceur, ce qui peut aussi les brûler (10% de chances)." - }, - "leafStorm": { - name: "Tempête Verte", - effect: "Invoque une tempête de feuilles acérées. Le contrecoup réduit beaucoup l’Attaque Spéciale du lanceur." - }, - "powerWhip": { - name: "Mégafouet", - effect: "Le lanceur fait virevolter violemment ses lianes ou ses tentacules pour fouetter la cible." - }, - "rockWrecker": { - name: "Roc-Boulet", - effect: "Le lanceur attaque en projetant un gros rocher sur l’ennemi. Il doit se reposer au tour suivant." - }, - "crossPoison": { - name: "Poison Croix", - effect: "Un coup tranchant qui peut empoisonner la cible (10% de chances). Taux de critiques élevé." - }, - "gunkShot": { - name: "Détricanon", - effect: "Le lanceur envoie des détritus sur la cible, ce qui peut aussi l’empoisonner (30% de chances)." - }, - "ironHead": { - name: "Tête de Fer", - effect: "Le lanceur heurte la cible avec sa tête dure comme de l’acier, ce qui peut aussi l’apeurer (30% de chances)." - }, - "magnetBomb": { - name: "Bombe Aimant", - effect: "Le lanceur projette des bombes d’acier qui collent à l’ennemi. N’échoue jamais." - }, - "stoneEdge": { - name: "Lame de Roc", - effect: "Le lanceur transperce la cible avec des rochers aiguisés. Taux de critiques élevé." - }, - "captivate": { - name: "Séduction", - effect: "Si l’ennemi est de sexe opposé au lanceur, il est séduit et son Attaque Spéciale baisse beaucoup." - }, - "stealthRock": { - name: "Piège de Roc", - effect: "Le lanceur fait flotter des pierres autour de la cible qui blessent tout adversaire entrant au combat." - }, - "grassKnot": { - name: "Nœud Herbe", - effect: "Le lanceur fait des nœuds dans l’herbe pour faire trébucher la cible. Plus la cible est lourde, plus la puissance de cette capacité augmente." - }, - "chatter": { - name: "Babil", - effect: "Attaque avec les ondes sonores assourdissantes qu’il émet en bavardant. Rend l’ennemi confus." - }, - "judgment": { - name: "Jugement", - effect: "Le lanceur libère une myriade de rayons de lumière. Le type varie selon la plaque que tient le lanceur." - }, - "bugBite": { - name: "Piqûre", - effect: "Le lanceur pique la cible. Si celle-ci tient une Baie, le lanceur la dévore et obtient son effet." - }, - "chargeBeam": { - name: "Rayon Chargé", - effect: "Le lanceur tire un rayon chargé d’électricité. Peut aussi augmenter son Attaque Spéciale." - }, - "woodHammer": { - name: "Martobois", - effect: "Le lanceur heurte la cible de son corps robuste, ce qui blesse aussi gravement le lanceur." - }, - "aquaJet": { - name: "Aqua-Jet", - effect: "Le lanceur fonce sur la cible si rapidement qu’on parvient à peine à le discerner. Frappe en priorité." - }, - "attackOrder": { - name: "Appel Attaque", - effect: "Le lanceur appelle ses subalternes pour frapper la cible. Taux de critiques élevé." - }, - "defendOrder": { - name: "Appel Défense", - effect: "Le lanceur appelle ses subalternes pour former un bouclier qui augmente sa Défense et sa Défense Spéciale." - }, - "healOrder": { - name: "Appel Soins", - effect: "Le lanceur appelle ses sous-fifres pour le soigner. Il récupère jusqu’à la moitié de ses PV max." - }, - "headSmash": { - name: "Fracass’Tête", - effect: "Le lanceur assène un coup de tête désespéré, ce qui le blesse aussi très gravement." - }, - "doubleHit": { - name: "Coup Double", - effect: "Le lanceur frappe la cible deux fois d’affilée à l’aide de sa queue ou d’un autre membre." - }, - "roarOfTime": { - name: "Hurle-Temps", - effect: "Le lanceur frappe si fort qu’il affecte le cours du temps. Il se repose au tour suivant." - }, - "spacialRend": { - name: "Spatio-Rift", - effect: "Le lanceur déchire la cible et l’espace autour de lui. Taux de critiques élevé." - }, - "lunarDance": { - name: "Danse Lune", - effect: "Le lanceur tombe K.O. pour soigner totalement le Pokémon qui prendra sa place au combat." - }, - "crushGrip": { - name: "Presse", - effect: "Une force puissante écrase l’ennemi. Plus il lui reste de PV et plus l’attaque est puissante." - }, - "magmaStorm": { - name: "Vortex Magma", - effect: "La cible est prise dans un tourbillon de feu qui dure de quatre à cinq tours." - }, - "darkVoid": { - name: "Trou Noir", - effect: "L’ennemi est plongé dans les ténèbres. Il tombe dans un profond sommeil." - }, - "seedFlare": { - name: "Fulmigraine", - effect: "Le corps du lanceur émet une onde de choc. Peut aussi beaucoup baisser la Défense Spéciale de la cible." - }, - "ominousWind": { - name: "Vent Mauvais", - effect: "Le lanceur crée une violente bourrasque. Peut aussi augmenter toutes ses stats." - }, - "shadowForce": { - name: "Revenant", - effect: "Le lanceur disparaît au premier tour et frappe la cible au deuxième. Cette capacité fonctionne même si la cible se protège." - }, - "honeClaws": { - name: "Aiguisage", - effect: "Le lanceur s’aiguise les griffes. Augmente l’Attaque et la Précision." - }, - "wideGuard": { - name: "Garde Large", - effect: "Bloque les attaques visant tous les alliés pendant un tour." - }, - "guardSplit": { - name: "Partage Garde", - effect: "Additionne la Défense et la Défense Spéciale du lanceur et de sa cible et les redistribue équitablement entre les deux." - }, - "powerSplit": { - name: "Partage Force", - effect: "Additionne l’Attaque Spéciale et l’Attaque du lanceur et de sa cible et les redistribue équitablement entre les deux." - }, - "wonderRoom": { - name: "Zone Étrange", - effect: "Le lanceur crée une zone mystérieuse où la Défense et la Défense Spéciale de tous les Pokémon sont inversées pendant cinq tours." - }, - "psyshock": { - name: "Choc Psy", - effect: "Le lanceur matérialise des ondes mystérieuses qu’il projette sur la cible, ce qui inflige des dégâts physiques à celle-ci." - }, - "venoshock": { - name: "Choc Venin", - effect: "Le lanceur asperge la cible d’un poison spécial. La puissance de la capacité est doublée si la cible est empoisonnée." - }, - "autotomize": { - name: "Allègement", - effect: "Le lanceur se débarrasse des parties inutiles de son corps. Son poids diminue et sa Vitesse augmente beaucoup." - }, - "ragePowder": { - name: "Poudre Fureur", - effect: "Le lanceur s’asperge d’une poudre irritante pour attirer l’attention et diriger toutes les attaques ennemies sur lui." - }, - "telekinesis": { - name: "Lévikinésie", - effect: "Un pouvoir qui fait flotter l’ennemi dans les airs. Pendant trois tours, il devient plus facile à atteindre." - }, - "magicRoom": { - name: "Zone Magique", - effect: "Le lanceur crée une zone mystérieuse où les objets tenus par tous les Pokémon n’ont plus aucun effet pendant cinq tours." - }, - "smackDown": { - name: "Anti-Air", - effect: "Le lanceur jette un projectile sur la cible. Si cette dernière vole, elle tombe au sol." - }, - "stormThrow": { - name: "Yama Arashi", - effect: "Un coup très puissant dont l’effet est toujours critique." - }, - "flameBurst": { - name: "Rebondifeu", - effect: "Quand l’attaque atteint sa cible, elle projette des flammes qui touchent tout ennemi situé à côté." - }, - "sludgeWave": { - name: "Cradovague", - effect: "Une vague de détritus attaque tous les Pokémon autour du lanceur. Peut aussi empoisonner (10% de chances)." - }, - "quiverDance": { - name: "Papillodanse", - effect: "Une danse mystique dont le rythme parfait augmente l’Attaque Spéciale, la Défense Spéciale et la Vitesse du lanceur." - }, - "heavySlam": { - name: "Tacle Lourd", - effect: "Le lanceur se jette sur la cible de tout son poids. Plus il est lourd par rapport à la cible, plus la puissance de cette capacité augmente." - }, - "synchronoise": { - name: "Synchropeine", - effect: "Des ondes mystérieuses blessent tous les Pokémon alentour qui sont du même type que le lanceur." - }, - "electroBall": { - name: "Boule Élek", - effect: "Le lanceur envoie une boule d’électricité. Plus la Vitesse du lanceur est élevée par rapport à celle de la cible, plus la puissance de la capacité augmente." - }, - "soak": { - name: "Détrempage", - effect: "Le lanceur projette beaucoup d’eau sur sa cible, qui devient de type Eau." - }, - "flameCharge": { - name: "Nitrocharge", - effect: "Le lanceur s’entoure de flammes pour attaquer la cible. Il se concentre et sa Vitesse augmente." - }, - "coil": { - name: "Enroulement", - effect: "Le lanceur s’enroule sur lui-même et se concentre. Son Attaque, sa Défense et sa Précision augmentent." - }, - "lowSweep": { - name: "Balayette", - effect: "Un coup rapide qui affecte la mobilité de la cible et diminue sa Vitesse." - }, - "acidSpray": { - name: "Bombe Acide", - effect: "Le lanceur projette un liquide acide qui fait fondre la cible, ce qui diminue beaucoup la Défense Spéciale de celle-ci." - }, - "foulPlay": { - name: "Tricherie", - effect: "Le lanceur utilise la force de la cible. Plus l’Attaque de celle-ci est élevée, plus le lanceur inflige de dégâts." - }, - "simpleBeam": { - name: "Rayon Simple", - effect: "Le lanceur envoie des ondes mystérieuses à la cible, dont le talent est remplacé par le talent Simple." - }, - "entrainment": { - name: "Ten-Danse", - effect: "Le lanceur danse sur un rythme étrange. Il force sa cible à l’imiter, ce qui lui fait adopter son talent." - }, - "afterYou": { - name: "Après Vous", - effect: "S’il est le premier à agir, le lanceur permet à sa cible d’utiliser une capacité juste après lui." - }, - "round": { - name: "Chant Canon", - effect: "Le lanceur attaque la cible en chantant. Si plusieurs Pokémon déclenchent cette attaque à la suite, la puissance augmente." - }, - "echoedVoice": { - name: "Écho", - effect: "Un cri retentissant blesse la cible. Si le lanceur ou d’autres Pokémon utilisent cette capacité à chaque tour, la puissance augmente." - }, - "chipAway": { - name: "Attrition", - effect: "Une attaque puissante quand l’ennemi baisse sa garde. Inflige des dégâts sans tenir compte des changements de stats." - }, - "clearSmog": { - name: "Bain de Smog", - effect: "Le lanceur projette de la boue bizarre sur la cible. Les changements de stats de la cible sont annulés." - }, - "storedPower": { - name: "Force Ajoutée", - effect: "Le lanceur attaque la cible avec une force cumulée. Plus les stats du lanceur sont augmentées, plus la puissance de cette capacité augmente." - }, - "quickGuard": { - name: "Prévention", - effect: "Protège le lanceur et ses alliés des attaques prioritaires." - }, - "allySwitch": { - name: "Interversion", - effect: "Le lanceur se téléporte à l’aide d’un pouvoir mystérieux. Il échange sa place avec celle d’un allié sur le terrain. Peut échouer si utilisée plusieurs fois de suite." - }, - "scald": { - name: "Ébullition", - effect: "Le lanceur projette un jet d’eau bouillante sur la cible, ce qui peut aussi la brûler (30% de chances)." - }, - "shellSmash": { - name: "Exuviation", - effect: "Le lanceur brise sa carapace. Il baisse sa Défense et sa Défense Spéciale, mais augmente beaucoup son Attaque, son Attaque Spéciale et sa Vitesse." - }, - "healPulse": { - name: "Vibra Soin", - effect: "Le lanceur projette une aura de bien-être qui fait récupérer la moitié de ses PV max à la cible." - }, - "hex": { - name: "Châtiment", - effect: "Une attaque acharnée qui cause davantage de dégâts à la cible si elle a une altération de statut." - }, - "skyDrop": { - name: "Chute Libre", - effect: "Le lanceur emmène l’ennemi dans les airs au premier tour et le lâche dans le vide au second. L’ennemi saisi ne peut pas attaquer." - }, - "shiftGear": { - name: "Change-Vitesse", - effect: "Le lanceur fait tourner ses engrenages. Cela augmente son Attaque et augmente beaucoup sa Vitesse." - }, - "circleThrow": { - name: "Projection", - effect: "Le lanceur fait une projection sur un Pokémon ennemi et le remplace par un autre. Lors d’un combat contre un Pokémon sauvage seul, cela met fin au combat." - }, - "incinerate": { - name: "Calcination", - effect: "Des flammes calcinent la cible. Si elle tient un objet, une Baie par exemple, celui-ci est brûlé et devient inutilisable." - }, - "quash": { - name: "À la Queue", - effect: "Retient la cible de force, l’obligeant à agir en dernier." - }, - "acrobatics": { - name: "Acrobatie", - effect: "Le lanceur frappe la cible avec agilité. S’il ne tient pas d’objet, l’attaque inflige davantage de dégâts." - }, - "reflectType": { - name: "Copie-Type", - effect: "Le lanceur adopte le même type que la cible." - }, - "retaliate": { - name: "Vengeance", - effect: "Le lanceur venge un allié K.O. Si un Pokémon de l’équipe a été mis K.O. au tour d’avant, la puissance augmente." - }, - "finalGambit": { - name: "Tout ou Rien", - effect: "Une attaque très risquée. Le lanceur perd tous ses PV restants et inflige autant de dégâts à la cible." - }, - "bestow": { - name: "Passe-Cadeau", - effect: "Si la cible ne tient pas d’objet, le lanceur lui donne l’objet qu’il tient." - }, - "inferno": { - name: "Feu d’Enfer", - effect: "La cible est entourée d’un torrent de flammes ardentes qui la brûlent." - }, - "waterPledge": { - name: "Aire d’Eau", - effect: "Une masse d’eau s’abat sur la cible. Si cette capacité est utilisée en même temps qu’Aire de Feu, la puissance augmente et un arc-en-ciel apparaît." - }, - "firePledge": { - name: "Aire de Feu", - effect: "Une masse de feu s’abat sur la cible. Si cette capacité est utilisée en même temps qu’Aire d’Herbe, la puissance augmente et une mer de feu apparaît." - }, - "grassPledge": { - name: "Aire d’Herbe", - effect: "Une masse végétale s’abat sur la cible. Si cette capacité est utilisée en même temps qu’Aire d’Eau, la puissance augmente et un marécage apparaît." - }, - "voltSwitch": { - name: "Change Éclair", - effect: "Après son attaque, le lanceur revient à toute vitesse et change de place avec un Pokémon de l’équipe prêt au combat." - }, - "struggleBug": { - name: "Survinsecte", - effect: "Le lanceur frappe en se débattant de toutes ses forces, et baisse l’Attaque Spéciale de la cible." - }, - "bulldoze": { - name: "Piétisol", - effect: "Le lanceur piétine le sol et inflige des dégâts à tous les Pokémon autour de lui. Baisse aussi leur Vitesse." - }, - "frostBreath": { - name: "Souffle Glacé", - effect: "Un souffle froid blesse la cible. L’effet est toujours critique." - }, - "dragonTail": { - name: "Draco-Queue", - effect: "Un coup puissant qui blesse la cible et l’envoie au loin. Lors d’un combat contre un Pokémon sauvage seul, met fin au combat." - }, - "workUp": { - name: "Rengorgement", - effect: "Le lanceur se rengorge et augmente son Attaque et son Attaque Spéciale." - }, - "electroweb": { - name: "Toile Élek", - effect: "Le lanceur attaque la cible en l’attrapant dans un filet électrique. Baisse aussi la Vitesse de la cible." - }, - "wildCharge": { - name: "Éclair Fou", - effect: "Une charge électrique violente qui blesse aussi légèrement le lanceur." - }, - "drillRun": { - name: "Tunnelier", - effect: "Le lanceur tourne sur lui-même comme une perceuse et se jette sur la cible. Taux de critiques élevé." - }, - "dualChop": { - name: "Double Baffe", - effect: "Le lanceur frappe l’ennemi deux fois d’affilée avec les parties les plus robustes de son corps." - }, - "heartStamp": { - name: "Crève-Cœur", - effect: "Déconcentre l’ennemi avec des mouvements mignons avant de le frapper violemment. Peut aussi l’apeurer (30% de chances)." - }, - "hornLeech": { - name: "Encornebois", - effect: "Un coup de cornes qui draine l’énergie de la cible. La capacité convertit la moitié des dégâts infligés en PV pour le lanceur." - }, - "sacredSword": { - name: "Lame Sainte", - effect: "Un violent coup d’épée qui lacère la cible et lui inflige des dégâts en ignorant ses changements de stats." - }, - "razorShell": { - name: "Coqui-Lame", - effect: "Un coquillage aiguisé lacère la cible et peut aussi baisser sa Défense." - }, - "heatCrash": { - name: "Tacle Feu", - effect: "Le lanceur projette son corps enflammé contre la cible. Plus il est lourd par rapport à la cible, plus la puissance de cette capacité augmente." - }, - "leafTornado": { - name: "Phytomixeur", - effect: "L’ennemi est pris dans un tourbillon de feuilles acérées. Peut aussi baisser sa Précision." - }, - "steamroller": { - name: "Bulldoboule", - effect: "Le lanceur se roule en boule et écrase son ennemi. Peut aussi l’apeurer (30% de chances)." - }, - "cottonGuard": { - name: "Cotogarde", - effect: "Le lanceur se protège en s’emmitouflant dans du coton. Sa Défense augmente énormément." - }, - "nightDaze": { - name: "Explonuit", - effect: "Le lanceur attaque avec une onde de choc ténébreuse qui peut aussi baisser la Précision de la cible." - }, - "psystrike": { - name: "Frappe Psy", - effect: "Le lanceur matérialise des ondes mystérieuses qu’il projette sur la cible, ce qui inflige des dégâts physiques à celle-ci." - }, - "tailSlap": { - name: "Plumo-Queue", - effect: "Le lanceur frappe la cible de deux à cinq fois d’affilée avec sa queue robuste." - }, - "hurricane": { - name: "Vent Violent", - effect: "Le lanceur déclenche une tempête de vents violents qui s’abat sur la cible, et peut aussi la rendre confuse." - }, - "headCharge": { - name: "Peignée", - effect: "Le lanceur donne un coup avec sa tête couronnée d’une fière crinière. Blesse aussi légèrement le lanceur." - }, - "gearGrind": { - name: "Lancécrou", - effect: "Le lanceur jette deux écrous d’acier qui frappent l’ennemi deux fois d’affilée." - }, - "searingShot": { - name: "Incendie", - effect: "Des boules de feu s’abattent sur tous les Pokémon autour du lanceur. Peut aussi les brûler (30% de chances)." - }, - "technoBlast": { - name: "Techno-Buster", - effect: "Le lanceur projette un rayon lumineux sur l’ennemi. Le type varie selon le Module que tient le lanceur." - }, - "relicSong": { - name: "Chant Antique", - effect: "Le lanceur attaque la cible en lui chantant une chanson d’un autre temps qui peut aussi l’endormir." - }, - "secretSword": { - name: "Lame Ointe", - effect: "L’ennemi est lacéré par une longue corne. Son pouvoir mystérieux inflige des dégâts physiques." - }, - "glaciate": { - name: "Ère Glaciaire", - effect: "Un souffle de vent qui congèle tout sur son passage s’abat sur l’ennemi. Réduit aussi sa Vitesse." - }, - "boltStrike": { - name: "Charge Foudre", - effect: "Le lanceur s’enveloppe d’une charge électrique surpuissante et se jette sur l’ennemi. Peut aussi le paralyser (20% de chances)." - }, - "blueFlare": { - name: "Flamme Bleue", - effect: "De magnifiques et redoutables flammes bleues fondent sur l’ennemi. Peut aussi le brûler (20% de chances)." - }, - "fieryDance": { - name: "Danse du Feu", - effect: "Le lanceur s’enveloppe de flammes et attaque la cible, Cela peut aussi augmenter l’Attaque Spéciale du lanceur." - }, - "freezeShock": { - name: "Éclair Gelé", - effect: "Projette un bloc de glace électrifié sur l’ennemi au second tour. Peut aussi le paralyser (30% de chances)." - }, - "iceBurn": { - name: "Feu Glacé", - effect: "Au second tour, le lanceur projette un souffle de vent glacial dévastateur sur l’ennemi. Peut aussi le brûler (30% de chances)." - }, - "snarl": { - name: "Aboiement", - effect: "Le lanceur hurle sur la cible et baisse l’Attaque Spéciale de celle-ci." - }, - "icicleCrash": { - name: "Chute Glace", - effect: "Le lanceur envoie de gros blocs de glace sur la cible pour lui infliger des dégâts, ce qui peut aussi l’apeurer (30% de chances)." - }, - "vCreate": { - name: "Coup Victoire", - effect: "Le lanceur fait jaillir des flammes ardentes de son front et se jette sur la cible, ce qui baisse la Défense, la Défense Spéciale et la Vitesse du lanceur." - }, - "fusionFlare": { - name: "Flamme Croix", - effect: "Projette une boule de feu gigantesque. L’effet augmente sous l’influence d’Éclair Croix." - }, - "fusionBolt": { - name: "Éclair Croix", - effect: "Projette un orbe électrique gigantesque. L’effet augmente sous l’influence de Flamme Croix." - }, - "flyingPress": { - name: "Flying Press", - effect: "Une attaque en piqué depuis le ciel, à la fois de type Combat et de type Vol." - }, - "matBlock": { - name: "Tatamigaeshi", - effect: "Retourne un tatami pour bloquer, comme avec un bouclier, les capacités visant le lanceur ou ses alliés. N’a pas d’effet sur les attaques de statut." - }, - "belch": { - name: "Éructation", - effect: "Le lanceur se tourne vers la cible et lui éructe dessus, infligeant des dégâts. Ne fonctionne que si le lanceur consomme une Baie tenue." - }, - "rototiller": { - name: "Fertilisation", - effect: "Laboure le sol et le rend plus fertile. Augmente l’Attaque et l’Attaque Spéciale des Pokémon de type Plante." - }, - "stickyWeb": { - name: "Toile Gluante", - effect: "Le lanceur déploie une toile visqueuse autour de la cible qui ralentit la Vitesse de tout adversaire entrant au combat." - }, - "fellStinger": { - name: "Dard Mortel", - effect: "Le lanceur augmente énormément son Attaque si une cible est mise K.O. par cette capacité." - }, - "phantomForce": { - name: "Hantise", - effect: "Le lanceur disparaît au premier tour et frappe au second. Cette attaque passe outre les protections." - }, - "trickOrTreat": { - name: "Halloween", - effect: "Insuffle à la cible l’esprit d’Halloween, et ajoute le type Spectre à ses types actuels." - }, - "nobleRoar": { - name: "Râle Mâle", - effect: "Le lanceur pousse un rugissement qui intimide la cible et diminue l’Attaque et l’Attaque Spéciale de celle-ci." - }, - "ionDeluge": { - name: "Déluge Plasmique", - effect: "Diffuse des particules saturées d’électricité qui transforment les capacités de type Normal en capacités de type Électrik." - }, - "parabolicCharge": { - name: "Parabocharge", - effect: "Inflige des dégâts à tous les Pokémon autour du lanceur. Il récupère en PV la moitié des dégâts infligés." - }, - "forestsCurse": { - name: "Maléfice Sylvain", - effect: "La cible est charmée par l’esprit de la forêt. Le type Plante est ajouté à ses types actuels." - }, - "petalBlizzard": { - name: "Tempête Florale", - effect: "Déclenche une violente tempête de fleurs qui inflige des dégâts à tous les Pokémon alentour." - }, - "freezeDry": { - name: "Lyophilisation", - effect: "Le lanceur refroidit violemment la cible et peut la geler (10% de chances). Super efficace sur les Pokémon de type Eau." - }, - "disarmingVoice": { - name: "Voix Enjôleuse", - effect: "Le lanceur laisse s’échapper une voix enchanteresse qui inflige des dégâts psychiques à la cible. N’échoue jamais." - }, - "partingShot": { - name: "Dernier Mot", - effect: "Le lanceur menace la cible dans une ultime tirade avant de changer de place avec un autre Pokémon. Réduit l’Attaque et l’Attaque Spéciale de la cible." - }, - "topsyTurvy": { - name: "Renversement", - effect: "Inverse tous les changements de stats de la cible." - }, - "drainingKiss": { - name: "Vampibaiser", - effect: "Le lanceur aspire la force vitale de la cible par un baiser qui rend au lanceur un nombre de PV supérieur ou égal à la moitié des dégâts infligés." - }, - "craftyShield": { - name: "Vigilance", - effect: "Utilise une force mystérieuse pour protéger l’équipe des capacités de statut. Ne protège pas des autres capacités." - }, - "flowerShield": { - name: "Garde Florale", - effect: "Grâce à une force mystérieuse, la Défense de tous les Pokémon Plante au combat augmente." - }, - "grassyTerrain": { - name: "Champ Herbu", - effect: "Pendant cinq tours, les Pokémon au sol récupèrent quelques PV à chaque tour et la puissance des capacités de type Plante augmente." - }, - "mistyTerrain": { - name: "Champ Brumeux", - effect: "Pendant cinq tours, les Pokémon au sol ne peuvent pas subir d’altération de statut et les dégâts infligés par les capacités de type Dragon sont divisés par deux." - }, - "electrify": { - name: "Électrisation", - effect: "Si le lanceur attaque avant la cible, les capacités de celle-ci seront de type Électrik jusqu’à la fin du tour." - }, - "playRough": { - name: "Câlinerie", - effect: "Le lanceur attaque la cible en lui faisant des câlineries, ce qui peut aussi diminuer l’Attaque de celle-ci." - }, - "fairyWind": { - name: "Vent Féérique", - effect: "Le lanceur déchaîne un vent magique qui cingle la cible." - }, - "moonblast": { - name: "Pouvoir Lunaire", - effect: "Le lanceur attaque la cible grâce au pouvoir de la lune, ce qui peut diminuer l’Attaque Spéciale de celle-ci." - }, - "boomburst": { - name: "Bang Sonique", - effect: "Attaque les Pokémon alentour grâce à une onde sonore assourdissante qui détruit tout sur son passage." - }, - "fairyLock": { - name: "Verrou Enchanté", - effect: "Des chaînes entourent la zone de combat, empêchant tous les Pokémon de quitter le terrain au tour suivant." - }, - "kingsShield": { - name: "Bouclier Royal", - effect: "Prend une posture défensive pour bloquer les dégâts. Diminue beaucoup l’Attaque de tout Pokémon qui entre en contact avec le lanceur." - }, - "playNice": { - name: "Camaraderie", - effect: "La cible se lie d’amitié avec le lanceur et perd sa combativité, ce qui diminue son Attaque." - }, - "confide": { - name: "Confidence", - effect: "Le lanceur dévoile des secrets à la cible, qui perd alors sa concentration et voit son Attaque Spéciale diminuer." - }, - "diamondStorm": { - name: "Orage Adamantin", - effect: "Provoque une tempête de diamants qui inflige des dégâts. Peut beaucoup augmenter la Défense du lanceur." - }, - "steamEruption": { - name: "Jet de Vapeur", - effect: "Le lanceur projette de la vapeur extrêmement chaude sur la cible, ce qui peut aussi la brûler (30% de chances)." - }, - "hyperspaceHole": { - name: "TrouDimensionnel", - effect: "Le lanceur crée une faille dimensionnelle pour attaquer soudainement la cible de côté. Ignore même les capacités comme Abri ou Détection." - }, - "waterShuriken": { - name: "Sheauriken", - effect: "Le lanceur attaque la cible avec des shuriken de mucus. Cette capacité frappe en priorité deux à cinq fois d’affilée en un tour." - }, - "mysticalFire": { - name: "Feu Ensorcelé", - effect: "Le lanceur attaque en soufflant des flammes brûlantes par la bouche et diminue l’Attaque Spéciale de la cible." - }, - "spikyShield": { - name: "Pico-Défense", - effect: "Protège des attaques, et diminue les PV de tout assaillant qui entre en contact avec le lanceur." - }, - "aromaticMist": { - name: "Brume Capiteuse", - effect: "Grâce à un parfum mystérieux, augmente la Défense Spéciale d’un allié." - }, - "eerieImpulse": { - name: "Ondes Étranges", - effect: "Le corps du lanceur produit des ondes anormales qui enveloppent la cible et diminuent beaucoup son Attaque Spéciale." - }, - "venomDrench": { - name: "Piège de Venin", - effect: "Sécrète un liquide empoisonné. Diminue l’Attaque, l’Attaque Spéciale et la Vitesse de l’ennemi empoisonné." - }, - "powder": { - name: "Nuée de Poudre", - effect: "L’ennemi est pris dans un nuage de poudre. S’il utilise une capacité de type Feu lors du même tour, le nuage explose et lui inflige des dégâts." - }, - "geomancy": { - name: "Géo-Contrôle", - effect: "Le lanceur absorbe de l’énergie au premier tour et augmente beaucoup son Attaque Spéciale, sa Défense Spéciale et sa Vitesse au second." - }, - "magneticFlux": { - name: "Magné-Contrôle", - effect: "Manipule les champs magnétiques pour augmenter la Défense et la Défense Spéciale des Pokémon alliés dotés du talent Plus ou du talent Moins." - }, - "happyHour": { - name: "Étrennes", - effect: "Utilisée pendant un combat, multiplie par deux l’argent gagné à la fin." - }, - "electricTerrain": { - name: "Champ Électrifié", - effect: "Pendant cinq tours, le terrain se charge d’électricité. Les Pokémon au sol ne peuvent pas s’endormir et la puissance des capacités de type Électrik augmente." - }, - "dazzlingGleam": { - name: "Éclat Magique", - effect: "Le lanceur libère une puissante décharge lumineuse qui inflige des dégâts à l’ennemi." - }, - "celebrate": { - name: "Célébration", - effect: "Le Pokémon vous souhaite plein de bonnes choses pour cet évènement spécial." - }, - "holdHands": { - name: "Mains Jointes", - effect: "Le lanceur et un allié se prennent la main, ce qui les rend heureux." - }, - "babyDollEyes": { - name: "Regard Touchant", - effect: "Le lanceur fixe la cible d’un air très attendrissant qui la touche et diminue son Attaque. Agit en priorité." - }, - "nuzzle": { - name: "Frotte-Frimousse", - effect: "Le lanceur attaque en frottant ses bajoues chargées d’électricité, ce qui paralyse la cible." - }, - "holdBack": { - name: "Retenue", - effect: "Le lanceur attaque avec retenue, et laisse au moins 1 PV à la cible." - }, - "infestation": { - name: "Harcèlement", - effect: "Cette attaque perdure pendant quatre à cinq tours. La cible ne peut pas quitter le terrain pendant cette période." - }, - "powerUpPunch": { - name: "Poing Boost", - effect: "À force de frapper, les poings deviennent plus durs. Augmente l’Attaque du lanceur si l’ennemi est touché." - }, - "oblivionWing": { - name: "Mort’Ailes", - effect: "Vole l’énergie de la cible. Rend au lanceur un nombre de PV supérieur ou égal à la moitié des dégâts infligés." - }, - "thousandArrows": { - name: "Myria-Flèches", - effect: "Touche même les Pokémon dans les airs. Dans ce cas, la cible retombe au sol." - }, - "thousandWaves": { - name: "Myria-Vagues", - effect: "Attaque avec des vagues glissant au sol. L’ennemi pris dedans ne peut pas s’échapper." - }, - "landsWrath": { - name: "Force Chtonienne", - effect: "Utilise la puissance du sol et la concentre sur l’ennemi pour infliger des dégâts." - }, - "lightOfRuin": { - name: "Lumière du Néant", - effect: "Utilise la puissance de la fleur Éternelle pour lancer un formidable rayon d’énergie. Blesse aussi gravement le lanceur." - }, - "originPulse": { - name: "Onde Originelle", - effect: "Le lanceur projette une aura, et d’innombrables rayons lumineux d’un bleu étincelant s’abattent sur la cible." - }, - "precipiceBlades": { - name: "Lame Pangéenne", - effect: "Le Pokémon transforme la puissance de la terre et attaque la cible avec une lame acérée." - }, - "dragonAscent": { - name: "Draco-Ascension", - effect: "Le Pokémon s’abat à toute vitesse sur la cible depuis les hautes couches de l’atmosphère. Baisse la Défense et la Défense Spéciale du lanceur." - }, - "hyperspaceFury": { - name: "Furie Dimension", - effect: "Le Pokémon utilise sa multitude de bras pour infliger une nuée de coups qui ignorent les capacités telles qu’Abri ou Détection. Baisse la Défense du lanceur." - }, - "breakneckBlitzPhysical": { - name: "Turbo-Charge Bulldozer", - effect: "Le Pokémon utilise la Force Z pour s’élancer à toute vitesse sur l’adversaire. La puissance varie selon celle de la capacité originale." - }, - "breakneckBlitzSpecial": { - name: "Turbo-Charge Bulldozer", - effect: "Dummy Data" - }, - "allOutPummelingPhysical": { - name: "Combo Hyper-Furie", - effect: "Le Pokémon utilise la Force Z pour créer une boule d’énergie qu’il projette sur l’adversaire. La puissance varie selon celle de la capacité originale." - }, - "allOutPummelingSpecial": { - name: "Combo Hyper-Furie", - effect: "Dummy Data" - }, - "supersonicSkystrikePhysical": { - name: "Piqué Supersonique", - effect: "Le Pokémon utilise la Force Z pour s’envoler très haut dans le ciel avant de plonger sur l’adversaire. La puissance varie selon celle de la capacité originale." - }, - "supersonicSkystrikeSpecial": { - name: "Piqué Supersonique", - effect: "Dummy Data" - }, - "acidDownpourPhysical": { - name: "Déluge Causti-Toxique", - effect: "Le Pokémon utilise la Force Z pour répandre un marécage empoisonné où l’adversaire sombre. La puissance varie selon celle de la capacité originale." - }, - "acidDownpourSpecial": { - name: "Déluge Causti-Toxique", - effect: "Dummy Data" - }, - "tectonicRagePhysical": { - name: "Éruption Géo-Sismique", - effect: "Le Pokémon utilise la Force Z pour entraîner l’adversaire dans les profondeurs de la terre. La puissance varie selon celle de la capacité originale." - }, - "tectonicRageSpecial": { - name: "Éruption Géo-Sismique", - effect: "Dummy Data" - }, - "continentalCrushPhysical": { - name: "Apocalypse Gigalithique", - effect: "Le Pokémon utilise la Force Z pour créer un immense rocher et écraser l’adversaire avec. La puissance varie selon celle de la capacité originale." - }, - "continentalCrushSpecial": { - name: "Apocalypse Gigalithique", - effect: "Dummy Data" - }, - "savageSpinOutPhysical": { - name: "Cocon Fatal", - effect: "Le Pokémon utilise la Force Z pour cracher de longs fils de soie et enserrer l’adversaire. La puissance varie selon celle de la capacité originale." - }, - "savageSpinOutSpecial": { - name: "Cocon Fatal", - effect: "Dummy Data" - }, - "neverEndingNightmarePhysical": { - name: "Appel des Ombres Éternelles", - effect: "Le Pokémon utilise la Force Z pour invoquer des esprits rancuniers qui s’abattent sur l’adversaire. La puissance varie selon celle de la capacité originale." - }, - "neverEndingNightmareSpecial": { - name: "Appel des Ombres Éternelles", - effect: "Dummy Data" - }, - "corkscrewCrashPhysical": { - name: "Vrille Maximum", - effect: "Le Pokémon utilise la Force Z pour tourner à toute vitesse et écraser l’adversaire. La puissance varie selon celle de la capacité originale." - }, - "corkscrewCrashSpecial": { - name: "Vrille Maximum", - effect: "Dummy Data" - }, - "infernoOverdrivePhysical": { - name: "Pyro-Explosion Cataclysmique", - effect: "Le Pokémon utilise la Force Z pour cracher une boule de feu qui réduit l’adversaire en cendres. La puissance varie selon celle de la capacité originale." - }, - "infernoOverdriveSpecial": { - name: "Pyro-Explosion Cataclysmique", - effect: "Dummy Data" - }, - "hydroVortexPhysical": { - name: "Super Tourbillon Abyssal", - effect: "Le Pokémon utilise la Force Z pour créer un tourbillon gigantesque qui avale l’adversaire. La puissance varie selon celle de la capacité originale." - }, - "hydroVortexSpecial": { - name: "Super Tourbillon Abyssal", - effect: "Dummy Data" - }, - "bloomDoomPhysical": { - name: "Pétalexplosion Éblouissante", - effect: "Le Pokémon utilise la Force Z pour libérer l’énergie des plantes et attaquer l’adversaire. La puissance varie selon celle de la capacité originale." - }, - "bloomDoomSpecial": { - name: "Pétalexplosion Éblouissante", - effect: "Dummu Data" - }, - "gigavoltHavocPhysical": { - name: "Fulguro-Lance Gigavolt", - effect: "Le Pokémon utilise la Force Z pour générer un courant électrique puissant qu’il projette sur l’adversaire. La puissance varie selon celle de la capacité originale." - }, - "gigavoltHavocSpecial": { - name: "Fulguro-Lance Gigavolt", - effect: "Dummy Data" - }, - "shatteredPsychePhysical": { - name: "Psycho-Pulvérisation EX", - effect: "Le Pokémon utilise la Force Z pour manipuler l’adversaire et lui infliger de sérieux dégâts. La puissance varie selon celle de la capacité originale." - }, - "shatteredPsycheSpecial": { - name: "Psycho-Pulvérisation EX", - effect: "Dummy Data" - }, - "subzeroSlammerPhysical": { - name: "Laser Cryogénique", - effect: "Le Pokémon utilise la Force Z pour baisser la température brutalement et congeler l’adversaire. La puissance varie selon celle de la capacité originale." - }, - "subzeroSlammerSpecial": { - name: "Laser Cryogénique", - effect: "Dummy Data" - }, - "devastatingDrakePhysical": { - name: "Chaos Draconique", - effect: "Le Pokémon utilise la Force Z pour matérialiser son aura et assaillir l’adversaire. La puissance varie selon celle de la capacité originale." - }, - "devastatingDrakeSpecial": { - name: "Chaos Draconique", - effect: "Dummy Data" - }, - "blackHoleEclipsePhysical": { - name: "Trou Noir des Ombres", - effect: "Le Pokémon utilise la Force Z pour rassembler l’énergie négative et y aspirer l’adversaire. La puissance varie selon celle de la capacité originale." - }, - "blackHoleEclipseSpecial": { - name: "Trou Noir des Ombres", - effect: "Dummy Data" - }, - "twinkleTacklePhysical": { - name: "Impact Choupinova", - effect: "Le Pokémon utilise la Force Z pour créer une dimension irréelle où l’adversaire est à sa merci. La puissance varie selon celle de la capacité originale." - }, - "twinkleTackleSpecial": { - name: "Impact Choupinova", - effect: "Dummy Data" - }, - "catastropika": { - name: "Pikachute Foudroyante", - effect: "Pikachu utilise la Force Z pour concentrer toute son électricité avant de se jeter à toute vitesse sur l’adversaire." - }, - "shoreUp": { - name: "Amass’Sable", - effect: "Le lanceur récupère jusqu’à la moitié de ses PV max. Durant une tempête de sable, il en récupère encore plus." - }, - "firstImpression": { - name: "Escarmouche", - effect: "Une capacité très puissante, mais qui ne fonctionne que lorsque le lanceur entre au combat." - }, - "banefulBunker": { - name: "Blockhaus", - effect: "Le lanceur se protège contre les attaques, et si un assaillant utilise une attaque directe contre lui, il l’empoisonne." - }, - "spiritShackle": { - name: "Tisse Ombre", - effect: "Une attaque qui coud la cible à son ombre, ce qui l’empêche de s’enfuir." - }, - "darkestLariat": { - name: "Dark Lariat", - effect: "Le lanceur étend les bras et frappe l’adversaire en tournant violemment. Il inflige des dégâts et ignore les changements de stats de la cible." - }, - "sparklingAria": { - name: "Aria de l’Écume", - effect: "Le lanceur émet plusieurs bulles en chantant. Soigne les brûlures des Pokémon touchés par ces bulles." - }, - "iceHammer": { - name: "Marteau de Glace", - effect: "Le lanceur donne un puissant coup de poing à la cible, ce qui réduit la Vitesse du lanceur." - }, - "floralHealing": { - name: "Soin Floral", - effect: "Rend la moitié de ses PV max à la cible. Plus efficace sur un Champ Herbu." - }, - "highHorsepower": { - name: "Cavalerie Lourde", - effect: "Le lanceur attaque violemment en utilisant tout son poids." - }, - "strengthSap": { - name: "Vole-Force", - effect: "Rend au lanceur une quantité de PV équivalente à la stat d’Attaque de la cible, puis baisse celle-ci." - }, - "solarBlade": { - name: "Lame Solaire", - effect: "Le lanceur absorbe une grande quantité de lumière au premier tour et attaque au second tour en libérant cette énergie sous la forme d’une lame." - }, - "leafage": { - name: "Feuillage", - effect: "Le lanceur attaque la cible avec des feuilles." - }, - "spotlight": { - name: "Projecteur", - effect: "Met un Pokémon sous le feu des projecteurs et force tout le monde à le viser." - }, - "toxicThread": { - name: "Fil Toxique", - effect: "Tisse un fil imprégné de venin. Empoisonne la cible et baisse sa Vitesse." - }, - "laserFocus": { - name: "Affilage", - effect: "Le lanceur se concentre pour être sûr de porter un coup critique au tour suivant." - }, - "gearUp": { - name: "Engrenage", - effect: "Change de réglage pour augmenter l’Attaque et l’Attaque Spéciale des alliés ayant les talents Plus ou Minus." - }, - "throatChop": { - name: "Exécu-Son", - effect: "Inflige une douleur tellement violente à la cible qu’elle ne peut plus émettre de sons pendant deux tours." - }, - "pollenPuff": { - name: "Boule Pollen", - effect: "Sur un ennemi, le lanceur envoie une boule explosive qui fait des dégâts. Sur un allié, il envoie du bon pollen nutritif qui fait récupérer des PV." - }, - "anchorShot": { - name: "Ancrage", - effect: "Le lanceur jette son ancre sur la cible pour l’attaquer. Une fois accrochée, elle l’empêche de s’enfuir." - }, - "psychicTerrain": { - name: "Champ Psychique", - effect: "Pendant cinq tours, les Pokémon au sol ne peuvent plus subir d’attaques prioritaires et la puissance des capacités de type Psy augmente." - }, - "lunge": { - name: "Furie-Bond", - effect: "Le lanceur se jette sur la cible de toutes ses forces pour lui infliger des dégâts et baisser son Attaque." - }, - "fireLash": { - name: "Fouet de Feu", - effect: "Frappe la cible avec un fouet incandescent et baisse sa Défense." - }, - "powerTrip": { - name: "Arrogance", - effect: "Ivre de puissance, le lanceur attaque de toutes ses forces. Plus ses stats ont été augmentées, plus la puissance de cette capacité augmente." - }, - "burnUp": { - name: "Flamme Ultime", - effect: "Le Pokémon se consume et les flammes de son corps infligent des dégâts élevés à la cible. Le lanceur perd le type Feu." - }, - "speedSwap": { - name: "Permuvitesse", - effect: "Intervertit la Vitesse du lanceur et celle de la cible." - }, - "smartStrike": { - name: "Estocorne", - effect: "Le lanceur transperce la cible avec sa corne effilée. N’échoue jamais." - }, - "purify": { - name: "Purification", - effect: "Le lanceur soigne les altérations de statut de la cible, ce qui lui permet de regagner des PV." - }, - "revelationDance": { - name: "Danse Éveil", - effect: "Le lanceur attaque en dansant avec enthousiasme. Le type de la capacité est le même que celui du lanceur." - }, - "coreEnforcer": { - name: "Sanction Suprême", - effect: "La cible subit des dégâts et, si elle a déjà agi à ce tour, elle perd aussi son talent." - }, - "tropKick": { - name: "Botte Sucrette", - effect: "Un coup de pied chaud comme les tropiques qui inflige des dégâts à la cible et baisse son Attaque." - }, - "instruct": { - name: "Sommation", - effect: "Force la cible à lancer immédiatement la dernière capacité qu’elle a utilisée." - }, - "beakBlast": { - name: "Bec-Canon", - effect: "Le lanceur fait chauffer son bec avant d’attaquer. S’il subit une attaque directe pendant la montée en température, l’attaquant sera brûlé." - }, - "clangingScales": { - name: "Vibrécaille", - effect: "Le lanceur déclenche un vacarme en frottant ses écailles les unes contre les autres pour attaquer. Baisse la Défense du lanceur." - }, - "dragonHammer": { - name: "Draco-Marteau", - effect: "Le lanceur utilise son corps comme un véritable marteau pour écraser la cible." - }, - "brutalSwing": { - name: "Centrifugifle", - effect: "Le lanceur pivote pour prendre de l’élan et infliger des dégâts." - }, - "auroraVeil": { - name: "Voile Aurore", - effect: "Réduit les dégâts causés par les capacités physiques et spéciales durant cinq tours. Ne peut être utilisée que lorsqu’il neige." - }, - "sinisterArrowRaid": { - name: "Fureur des Plumes Spectrales", - effect: "Archéduc utilise la Force Z pour créer un nuage de flèches qui transpercent la cible." - }, - "maliciousMoonsault": { - name: "Dark Body Press", - effect: "Félinferno utilise la Force Z pour gonfler ses muscles et écraser la cible de toutes ses forces." - }, - "oceanicOperetta": { - name: "Symphonie des Ondines", - effect: "Oratoria utilise la Force Z pour rassembler une grande quantité d’eau et la projeter sur la cible à pleine puissance." - }, - "guardianOfAlola": { - name: "Colère du Gardien d’Alola", - effect: "Le Pokémon Tutélaire utilise la Force Z et déchaîne toute la puissance d’Alola sur sa cible. Inflige des dégâts en fonction des PV restants de celle-ci." - }, - "soulStealing7StarStrike": { - name: "Fauche-Âme des Sept Étoiles", - effect: "Marshadow concentre toute la Force Z dans ses poings et ses pieds pour infliger un déluge de coups à la cible." - }, - "stokedSparksurfer": { - name: "Électro-Surf Survolté", - effect: "Le Raichu de la région d’Alola utilise la Force Z pour frapper la cible et la paralyser." - }, - "pulverizingPancake": { - name: "Gare au Ronflex", - effect: "Ronflex utilise la Force Z pour montrer ce qu’il a dans le ventre et écraser la cible de tout son poids." - }, - "extremeEvoboost": { - name: "Neuf pour Un", - effect: "Évoli utilise la Force Z pour emprunter la puissance de tous ses amis évolués et beaucoup augmenter toutes ses stats." - }, - "genesisSupernova": { - name: "Supernova Originelle", - effect: "Mew utilise la Force Z pour attaquer la cible. Le terrain devient un Champ Psychique." - }, - "shellTrap": { - name: "Carapiège", - effect: "Pose une carapace piégée. Si l’adversaire utilise une capacité physique, la carapace explose et lui inflige des dégâts." - }, - "fleurCannon": { - name: "Canon Floral", - effect: "Envoie un rayon laser dévastateur. Baisse beaucoup l’Attaque Spéciale du lanceur." - }, - "psychicFangs": { - name: "Psycho-Croc", - effect: "Le lanceur mord la cible avec ses pouvoirs psychiques. Brise aussi les barrières comme Mur Lumière et Protection." - }, - "stompingTantrum": { - name: "Trépignement", - effect: "Le lanceur attaque en utilisant sa frustration. S’il a utilisé une capacité qui a échoué au tour précédent, la puissance de Trépignement est doublée." - }, - "shadowBone": { - name: "Os Ombre", - effect: "Le lanceur frappe avec un os possédé par l’âme d’un défunt. Peut aussi baisser la Défense de la cible." - }, - "accelerock": { - name: "Vif Roc", - effect: "Le lanceur charge la cible à toute vitesse. Frappe en priorité." - }, - "liquidation": { - name: "Aqua-Brèche", - effect: "Le lanceur utilise la force de l’eau pour attaquer. Peut aussi baisser la Défense de la cible." - }, - "prismaticLaser": { - name: "Laser Prisme", - effect: "Le lanceur utilise la puissance d’un prisme pour envoyer un laser destructeur, mais il doit se reposer au tour suivant." - }, - "spectralThief": { - name: "Clepto-Mânes", - effect: "Le lanceur plonge dans l’ombre de la cible, vole ses augmentations de stats et l’attaque." - }, - "sunsteelStrike": { - name: "Choc Météore", - effect: "Le lanceur fonce sur la cible à la vitesse d’une météorite. Ignore le talent de l’ennemi." - }, - "moongeistBeam": { - name: "Rayon Spectral", - effect: "Le lanceur attaque avec un rayon de lumière mystérieux. Ignore le talent de la cible." - }, - "tearfulLook": { - name: "Larme à l’Œil", - effect: "Le lanceur regarde la cible avec des yeux remplis de larmes. Celle-ci perd toute combativité et voit son Attaque et son Attaque Spéciale baisser." - }, - "zingZap": { - name: "Électrikipik", - effect: "Le lanceur fonce sur la cible et lui envoie un puissant choc électrique, ce qui peut aussi l’effrayer." - }, - "naturesMadness": { - name: "Ire de la Nature", - effect: "Le lanceur déchaîne toute la colère de la nature pour baisser les PV de la cible de moitié." - }, - "multiAttack": { - name: "Coup Varia-Type", - effect: "Le Pokémon s’entoure d’une puissante énergie avant de foncer sur sa cible. Le type de la capacité dépend de la ROM installée." - }, - "tenMillionVoltThunderbolt": { - name: "Giga-Tonnerre", - effect: "Le Pikachu à casquette utilise la Force Z pour augmenter sa puissance électrique avant de la déchaîner sur la cible. Taux de critique élevé." - }, - "mindBlown": { - name: "Caboche-Kaboum", - effect: "Le lanceur fait exploser sa tête pour attaquer toutes les cibles autour de lui. Il subit aussi des dégâts." - }, - "plasmaFists": { - name: "Plasma Punch", - effect: "Le lanceur attaque en projetant de l’électricité avec ses poings. Convertit les capacités de type Normal en type Électrik." - }, - "photonGeyser": { - name: "Photo-Geyser", - effect: "Le lanceur fait jaillir un pilier de lumière. Compare l’Attaque et l’Attaque Spéciale, et utilise celle qui infligera le plus de dégâts." - }, - "lightThatBurnsTheSky": { - name: "Apocalypsis Luminis", - effect: "Compare l’Attaque et l’Attaque Spéciale, et utilise celle qui infligera le plus de dégâts. Ignore le talent de la cible." - }, - "searingSunrazeSmash": { - name: "Hélio-Choc Dévastateur", - effect: "Baigné dans la Force Z, Solgaleo attaque en déchaînant toute sa puissance. Ignore le talent de la cible." - }, - "menacingMoonrazeMaelstrom": { - name: "Rayons Séléno-Explosifs", - effect: "Baigné dans la Force Z, Lunala attaque en déchaînant toute sa puissance. Ignore le talent de la cible." - }, - "letsSnuggleForever": { - name: "Patati-Patattrape", - effect: "Mimiqui concentre toute la Force Z dans son corps, et attaque dans le plus grand fracas !" - }, - "splinteredStormshards": { - name: "Hurlement des Roches-Lames", - effect: "Lougaroc utilise la Force Z pour attaquer la cible de toutes ses forces. Efface aussi tout Champ existant." - }, - "clangorousSoulblaze": { - name: "Dracacophonie Flamboyante", - effect: "Ékaïser utilise la Force Z pour frapper l’ennemi de toutes ses forces. Augmente aussi ses stats." - }, - "zippyZap": { - name: "Pika-Sprint", - effect: "Une attaque électrique rapide comme l’éclair qui augmente l’esquive. Frappe en priorité." - }, - "splishySplash": { - name: "Pika-Splash", - effect: "Pikachu frappe l’adversaire avec une vague géante chargée d’électricité. Peut aussi paralyser l’ennemi." - }, - "floatyFall": { - name: "Pika-Piqué", - effect: "Pikachu prend de la hauteur avant de fondre sur son adversaire. Peut aussi apeurer l’ennemi." - }, - "pikaPapow": { - name: "Pika-Fracas", - effect: "Plus le lanceur est heureux, plus l’attaque est puissante." - }, - "bouncyBubble": { - name: "Évo-Thalasso", - effect: "L’adversaire est frappé par des bulles d’eau qui sont ensuite absorbées pour récupérer un nombre de PV égal aux dégâts infligés à l’ennemi." - }, - "buzzyBuzz": { - name: "Évo-Dynamo", - effect: "Une attaque qui foudroie et paralyse l’adversaire." - }, - "sizzlySlide": { - name: "Évo-Flambo", - effect: "Évoli s’embrase et percure violemment l’adversaire. Brûle aussi l’ennemi." - }, - "glitzyGlow": { - name: "Évo-Psycho", - effect: "Évoli submerge l’adversaire sous un flot d’ondes psychiques et crée un mur fabuleux qui réduit les dégâts causés par les attaques spéciales de l’ennemi" - }, - "baddyBad": { - name: "Évo-Ténébro", - effect: "Évoli fait appel à son côté sombre pour attaquer l’adversaire et créer un mur fabuleux qui réduit les dégâts causés par les attaques physiques de l’ennemi." - }, - "sappySeed": { - name: "Évo-Écolo", - effect: "Une liane géante surgit du sol et bombarde l’adversaire de graines qui lui dérobent des PV à chaque tour. Ces PV sont ensuite absorbés par Évoli." - }, - "freezyFrost": { - name: "Évo-Congélo", - effect: "Évoli frappe l’adversaire avec un cristal de buée noire gelée. Annule les changements de stats de tous les Pokémon au combat." - }, - "sparklySwirl": { - name: "Évo-Fabulo", - effect: "Une attaque qui enserre l’adversaire dans un tourbillon de senteurs oppressantes. Guérit toutes les altérations de statut de l’équipe." - }, - "veeveeVolley": { - name: "Évo-Chardasso", - effect: "Le lanceur lance une attaque dès lors qu’un signe apparaît sur le terrain. Les dégâts infligés sont proportionnels à l’affection de votre Pokémon" - }, - "doubleIronBash": { - name: "Écrous d’Poing", - effect: "Le lanceur fait pivoter l’écrou de sa poitrine deux fois d’affilée pour frapper l’adversaire avec ses bras. Peut apeurer l’ennemi (30% de chances)." - }, - "maxGuard": { - name: "Gardomax", - effect: "Le lanceur se protège de toutes les attaques. Peut échouer si utilisée plusieurs fois de suite." - }, - "dynamaxCannon": { - name: "Canon Dynamax", - effect: "Le lanceur attaque en libérant l’énergie concentrée dans son noyau. Inflige jusqu’à deux fois plus de dégâts si l’adversaire a un niveau très élevé." - }, - "snipeShot": { - name: "Tir de Précision", - effect: "Le lanceur parvient toujours à viser la cible voulue, en ignorant l’effet des talents et des capacités capables de détourner les attaques." - }, - "jawLock": { - name: "Croque Fort", - effect: "Le lanceur et sa cible ne peuvent plus être échangés jusqu’à ce que l’un d’entre eux tombe K.O. L’effet est annulé si l’un des deux Pokémon quitte le terrain." - }, - "stuffCheeks": { - name: "Garde-à-Joues", - effect: "Le lanceur mange la Baie qu’il tient, ce qui augmente beaucoup sa Défense." - }, - "noRetreat": { - name: "Ultime Bastion", - effect: "Le lanceur voit toutes ses stats augmenter, mais en contrepartie, il ne peut plus quitter le terrain." - }, - "tarShot": { - name: "Goudronnage", - effect: "Le lanceur recouvre sa cible de goudron liquide pour baisser sa Vitesse et la rendre vulnérable au feu." - }, - "magicPowder": { - name: "Poudre Magique", - effect: "Le lanceur recouvre sa cible d’une poudre magique qui change son type en Psy." - }, - "dragonDarts": { - name: "Draco-Flèches", - effect: "Le lanceur attaque en propulsant deux Fantyrm. S’il y a deux cibles, chacune d’entre elles est frappée par un Fantyrm." - }, - "teatime": { - name: "Thérémonie", - effect: "Le lanceur invite tous les Pokémon sur le terrain à prendre le goûter autour d’une tasse de thé. Ceux qui tiennent une Baie la mangent." - }, - "octolock": { - name: "Octoprise", - effect: "Empêche l’ennemi de fuir ou de quitter le terrain. Baisse la Défense et la Défense Spécial de l’ennemi chaque tour." - }, - "boltBeak": { - name: "Prise de Bec", - effect: "Inflige des dégâts et les double si le lanceur attaque avant l’ennemi." - }, - "fishiousRend": { - name: "Branchicrok", - effect: "Inflige des dégâts et les double si le lanceur attaque avant l’ennemi." - }, - "courtChange": { - name: "Change-Côté", - effect: "Une force mystérieuse intervertit les effets affectant chaque côté du terrain." - }, - "maxFlare": { - name: "Pyromax", - effect: "Une attaque de type Feu que seuls les Pokémon Dynamax peuvent utiliser. Fait briller le soleil pendant cinq tours." - }, - "maxFlutterby": { - name: "Insectomax", - effect: "Une attaque de type Insecte que seuls les Pokémon Dynamax peuvent utiliser. Baisse l’Attaque Spéciale de la cible." - }, - "maxLightning": { - name: "Fulguromax", - effect: "Une attaque de type Électrik que seuls les Pokémon Dynamax peuvent utiliser. Crée un Champ Électrifié qui dure cinq tours." - }, - "maxStrike": { - name: "Normalomax", - effect: "Une attaque de type Normal que seuls les Pokémon Dynamax peuvent utiliser. Baisse la Vitesse de la cible." - }, - "maxKnuckle": { - name: "Pugilomax", - effect: "Une attaque de type Combat que seuls les Pokémon dynamax peuvent utiliser. Augmente l’Attaque des Alliés." - }, - "maxPhantasm": { - name: "Spectromax", - effect: "Une attaque de type Spectre que seuls les Pokémon Dynamax peuvent utiliser. Baisse la Défense de la cible." - }, - "maxHailstorm": { - name: "Cryomax", - effect: "Une attaque de type Glace que seuls les Pokémon Dynamax peuvent utiliser. Invoque une tempête de grêle qui dure cinq tours." - }, - "maxOoze": { - name: "Toxinomax", - effect: "Une attaque de type Poison que seuls les Pokémon Dynamax peuvent utiliser. Augmente l’Attaque Spéciale des alliés." - }, - "maxGeyser": { - name: "Hydromax", - effect: "Une attaque de type Eau que seuls les Pokémon Dynamax peuvent utiliser. Invoque de fortes pluies qui durent cinq tours." - }, - "maxAirstream": { - name: "Aéromax", - effect: "Une attaque de type Vol que seuls les Pokémon Dynamax peuvent utiliser. Augmente la Vitesse des alliés." - }, - "maxStarfall": { - name: "Enchantomax", - effect: "Une attaque de type Fée que seuls les Pokémon Dynamax peuvent utiliser. Crée un Champ Brumeux qui dure cinq tours." - }, - "maxWyrmwind": { - name: "Dracomax", - effect: "Une attaque de type Dragon que seuls les Pokémon Dynamax peuvent utiliser. Baisse l’Attaque de la cible." - }, - "maxMindstorm": { - name: "Psychomax", - effect: "Une attaque de type Psy que seuls les Pokémon Dynamax peuvent utiliser. Crée un Champ Psychique qui dure cinq tours." - }, - "maxRockfall": { - name: "Lithomax", - effect: "Une attaque de type Roche que seuls les Pokémon Dynamax peuvent utiliser. Invoque une tempête de sable qui dure cinq tours." - }, - "maxQuake": { - name: "Sismomax", - effect: "Une attaque de type Sol que seuls les Pokémon Dynamax peuvent utiliser. Augmente la Défense Spéciale des alliés." - }, - "maxDarkness": { - name: "Sinistromax", - effect: "Une attaque de type Ténèbres que seuls les Pokémon Dynamax peuvent utiliser. Baisse la Défense Spéciale de la cible." - }, - "maxOvergrowth": { - name: "Phytomax", - effect: "Une attaque de type Plante que seuls les Pokémon Dynamax peuvent utiliser. Crée un Champ Herbu qui dure cinq tours." - }, - "maxSteelspike": { - name: "Métallomax", - effect: "Une attaque de type Acier que seuls les Pokémon Dynamax peuvent utiliser. Augmente la Défense des alliés." - }, - "clangorousSoul": { - name: "Dracacophonie", - effect: "Sacrifie une partie de ses PV pour augmenter toutes ses statistiques." - }, - "bodyPress": { - name: "Big Splash", - effect: "Le lanceur utilise son corps pour attaquer sa cible. Plus la Défense du lanceur est élevée, plus les dégâts infligés sont importants." - }, - "decorate": { - name: "Nappage", - effect: "Augmente fortement l’Attaque et l’Attaque Spéciale du lanceur." - }, - "drumBeating": { - name: "Tambour Battant", - effect: "Le lanceur bat son tambour pour en diriger les racines sur la cible, l’attaquer, et baisser sa Vitesse." - }, - "snapTrap": { - name: "Troquenard", - effect: "Bloque l’ennemi pendant 4 à 5 tours." - }, - "pyroBall": { - name: "Ballon Brûlant", - effect: "Le lanceur attaque avec un ballon fait à partir d’un caillou enflammé. Peut aussi brûler la cible (10% de chances)." - }, - "behemothBlade": { - name: "Gladius Maximus", - effect: "Le lanceur se transforme en une immense épée et pourfend sa cible. Cette capacité inflige le double de dégâts aux Pokémon Dynamax." - }, - "behemothBash": { - name: "Aegis Maxima", - effect: "Le lanceur se transforme en un immense bouclier et charge sa cible. Cette capacité inflige le double de dégâts aux Pokémon Dynamax." - }, - "auraWheel": { - name: "Roue Libre", - effect: "Inflige et change en type Ténèbres" - }, - "breakingSwipe": { - name: "Abattage", - effect: "Le lanceur balaie violemment le camp adverse avec son immense queue. Baisse l’Attaque de la cible." - }, - "branchPoke": { - name: "Tapotige", - effect: "Le lanceur attaque sa cible en la piquant avec une branche pointue." - }, - "overdrive": { - name: "Overdrive", - effect: "Le lanceur gratte ses cordes de guitare ou de basse pour créer de violentes vibrations sonores qui blessent la cible." - }, - "appleAcid": { - name: "Acide Malique", - effect: "Le lanceur projette un liquide corrosif créé à partir d’une pomme acide sur la cible, ce qui baisse la Défense Spéciale de celle-ci." - }, - "gravApple": { - name: "Force G", - effect: "Le lanceur fait tomber une pomme de très haut sur la cible, ce qui baisse la Défense de celle-ci." - }, - "spiritBreak": { - name: "Choc Émotionnel", - effect: "Le lanceur attaque la cible avec une telle force que celle-ci peut s’en retrouver profondément troublée et voir son Attaque Spéciale baisser." - }, - "strangeSteam": { - name: "Vapeur Féérique", - effect: "Inflige des dégâts et peut rendre confus l’ennemi." - }, - "lifeDew": { - name: "Fontaine de Vie", - effect: "Le lanceur projette une eau mystérieuse sur le terrain pour restaurer ses PV et ceux de ses alliés au combat." - }, - "obstruct": { - name: "Blocage", - effect: "Protège le lanceur des attaques de contact. Baisse la Défense de deux crans si l’ennemi a tenté une attaque de contact." - }, - "falseSurrender": { - name: "Fourbette", - effect: "Le lanceur fait semblant de se prosterner et utilise ses cheveux pour transpercer sa cible. N’échoue jamais." - }, - "meteorAssault": { - name: "Joute Astrale", - effect: "Inflige de gros dégâts mais oblige le lanceur à se reposer pendant un tour." - }, - "eternabeam": { - name: "Laser Infinimax", - effect: "Inflige de gros dégâts mais oblige le lanceur à se reposer pendant un tour." - }, - "steelBeam": { - name: "Métalaser", - effect: "Le lanceur concentre du métal issu de tout son corps en un rayon qu’il projette violemment sur sa cible. Il subit aussi des dégâts." - }, - "expandingForce": { - name: "Vaste Pouvoir", - effect: "Le lanceur attaque la cible avec ses pouvoirs psychiques. Si un champ psychique est actif, la puissance de cette capacité augmente et elle touche tous les ennemis." - }, - "steelRoller": { - name: "Métalliroue", - effect: "Une attaque qui inflige des dégâts et fait disparaître le champ actif, mais qui échoue s’il n’y en a pas à ce moment." - }, - "scaleShot": { - name: "Rafale Écailles", - effect: "Le lanceur projette des écailles sur la cible de deux à cinq fois d’affilée. Augmente la Vitesse, mais diminue la Défense." - }, - "meteorBeam": { - name: "Laser Météore", - effect: "Le lanceur concentre l’énergie cosmique au premier tour, ce qui augmente son Attaque Spéciale, et frappe au second." - }, - "shellSideArm": { - name: "Kokiyarme", - effect: "Une attaque physique ou spéciale, en fonction de ce qui inflige le plus de dégâts à la cible. Peut aussi empoisonner." - }, - "mistyExplosion": { - name: "Explo-Brume", - effect: "Le lanceur frappe tous les Pokémon autour de lui en explosant, ce qui le met K.O. La puissance de cette attaque augmente si un champ brumeux est actif." - }, - "grassyGlide": { - name: "Gliss’Herbe", - effect: "Le lanceur attaque la cible en glissant sur le terrain. Frappe toujours en priorité si un champ herbu est actif." - }, - "risingVoltage": { - name: "Monte-Tension", - effect: "Des éclairs surgissent du sol et frappent la cible. La puissance de cette attaque est doublée si la cible est sur un champ électrifié." - }, - "terrainPulse": { - name: "Champlification", - effect: "Une attaque qui utilise la force des champs pour projeter une aura. Son type et sa puissance varient selon le champ actif." - }, - "skitterSmack": { - name: "Ravage Rampant", - effect: "Le lanceur rampe derrière la cible pour l’attaquer, ce qui baisse l’Attaque Spéciale de celle-ci." - }, - "burningJealousy": { - name: "Feu Envieux", - effect: "Le lanceur attaque sa cible avec toute sa jalousie. Cette capacité brûle tout Pokémon dont les stats ont augmenté pendant ce tour." - }, - "lashOut": { - name: "Cent Rancunes", - effect: "Le lanceur frappe la cible avec toute sa rancune. Si les stats du lanceur ont diminué pendant ce tour, la puissance de cette attaque est doublée." - }, - "poltergeist": { - name: "Esprit Frappeur", - effect: "Le lanceur manipule l’objet tenu par la cible pour l’attaquer. Cette capacité échoue si celle-ci ne tient rien." - }, - "corrosiveGas": { - name: "Gaz Corrosif", - effect: "Un gaz corrosif qui enveloppe tous les Pokémon alentour et qui dissout les objets qu’ils tiennent." - }, - "coaching": { - name: "Coaching", - effect: "Le lanceur coache ses alliés, augmentant ainsi leur Attaque et leur Défense." - }, - "flipTurn": { - name: "Eau Revoir", - effect: "Après son attaque, le lanceur revient à toute vitesse et change de place avec un Pokémon de l’équipe prêt à combattre." - }, - "tripleAxel": { - name: "Triple Axel", - effect: "Une série d’un à trois coups de pied distincts dont la puissance augmente à chaque fois que la capacité touche sa cible." - }, - "dualWingbeat": { - name: "Double Volée", - effect: "Le lanceur frappe la cible avec ses ailes deux fois d’affilée." - }, - "scorchingSands": { - name: "Sable Ardent", - effect: "Le lanceur projette du sable chauffé à blanc sur la cible, ce qui peut aussi la brûler (30% de chances)." - }, - "jungleHealing": { - name: "Selve Salvatrice", - effect: "Le lanceur fait appel au pouvoir de la jungle pour restaurer les PV et soigner les altérations d’état de ses alliés et de lui-même." - }, - "wickedBlow": { - name: "Poing Obscur", - effect: "Le lanceur assène un coup puissant à la cible. Cette technique qui inflige toujours un coup critique est réservée à ceux qui maîtrisent la puissance des Ténèbres." - }, - "surgingStrikes": { - name: "Torrent de Coups", - effect: "Le lanceur assène trois coups fluides à la cible. Cette technique qui inflige toujours un coup critique est réservée à ceux qui maîtrisent la puissance de l’Eau." - }, - "thunderCage": { - name: "Voltageôle", - effect: "Le lanceur frappe la cible, et le piège dans une prison électrique qui dure de quatre à cinq tours." - }, - "dragonEnergy": { - name: "Draco-Énergie", - effect: "Le lanceur utilise son énergie vitale pour attaquer la cible. Moins il a de PV, moins l’attaque est puissante." - }, - "freezingGlare": { - name: "Regard Glaçant", - effect: "Les yeux du lanceur tirent des rayons psychiques qui attaquent la cible et peuvent aussi la geler (10% de chances)." - }, - "fieryWrath": { - name: "Fureur Ardente", - effect: "Le lanceur canalise sa colère et la transforme en émanation brûlante, avec laquelle il attaque la cible, ce qui peut aussi apeurer celle-ci (20% de chances)." - }, - "thunderousKick": { - name: "Coup Fulgurant", - effect: "Le lanceur assène un coup de pied à la cible à la vitesse de l’éclair. Baisse aussi la Défense de la cible." - }, - "glacialLance": { - name: "Lance de Glace", - effect: "Le lanceur attaque la cible avec une lance de glace entourée d’un blizzard." - }, - "astralBarrage": { - name: "Éclat Spectral", - effect: "Le lanceur attaque la cible avec une multitude de petits spectres." - }, - "eerieSpell": { - name: "Sort Sinistre", - effect: "Le lanceur attaque avec de puissants pouvoirs psychiques et retire 3 PP de la dernière capacité utilisée par la cible." - }, - "direClaw": { - name: "Griffes Funestes", - effect: "Le lanceur attaque avec des griffes destructrices en visant les points faibles. La cible peut aussi être empoisonnée, paralysée, ou endormie." - }, - "psyshieldBash": { - name: "Sprint Bouclier", - effect: "Le lanceur s’enveloppe d’énergie psychique et frappe sa cible de plein fouet. Cela augmente également la Défense du lanceur." - }, - "powerShift": { - name: "Échange Force", - effect: "Le lanceur échange son Attaque avec sa Défense." - }, - "stoneAxe": { - name: "Hache de Pierre", - effect: "Le lanceur attaque le point faible de sa cible avec sa hache de pierre. Les débris de pierre se mettent alors à flotter autour de la cible." - }, - "springtideStorm": { - name: "Typhon Passionné", - effect: "Le lanceur déclenche un violent typhon de haine et d’amour qui s’abat sur la cible. Peut baisser l’Attaque de celle-ci." - }, - "mysticalPower": { - name: "Force Mystique", - effect: "Le lanceur attaque en libérant un pouvoir mystique. Cela augmente également son Attaque Spéciale." - }, - "ragingFury": { - name: "Grand Courroux", - effect: "Le lanceur se déchaîne et attaque en projetant de violentes flammes pendant deux ou trois tours. Il devient ensuite confus." - }, - "waveCrash": { - name: "Aquatacle", - effect: "Le lanceur se recouvre entièrement d’eau avant de charger sa cible. Cela blesse aussi gravement le lanceur." - }, - "chloroblast": { - name: "Herblast", - effect: "Le lanceur tire un concentré de sa propre chlorophylle sur la cible, ce qui le blesse également." - }, - "mountainGale": { - name: "Bise Glaciaire", - effect: "Le lanceur envoie un bloc de glace de la taille d’un iceberg sur la cible, ce qui peut aussi l’apeurer (30% de chances)." - }, - "victoryDance": { - name: "Danse Victoire", - effect: "Le lanceur danse vigoureusement pour invoquer la victoire, ce qui augmente son Attaque, sa Défense et sa Vitesse." - }, - "headlongRush": { - name: "Assaut Frontal", - effect: "Le lanceur charge la cible de toutes ses forces, ce qui baisse la Défense et la Défense Spéciale du lanceur." - }, - "barbBarrage": { - name: "Multitoxik", - effect: "Une multitude de pointes toxiques frappent la cible et peuvent l’empoisonner. La puissance est doublée si celle-ci est déjà empoisonnée (30% de chances en Style Normal et 50% de chances en Style Puissant)." - }, - "esperWing": { - name: "Ailes Psycho", - effect: "Le lanceur entaille la cible avec ses ailes renforcées par une émanation psychique. Taux de critiques élevé. Cela augmente la Vitesse du lanceur." - }, - "bitterMalice": { - name: "Cœur de Rancœur", - effect: "Une rancœur glaciale frappe la cible et baisse son Attaque." - }, - "shelter": { - name: "Mur Fumigène", - effect: "Rend la peau du lanceur dure comme un mur de fer, ce qui augmente beaucoup sa Défense." - }, - "tripleArrows": { - name: "Triple Flèche", - effect: "Le lanceur donne un coup de pied et tire trois flèches simultanément, ce qui peut baisser la Défense de la cible ou l’apeurer (30% de chances). Taux de critiques élevé." - }, - "infernalParade": { - name: "Cortège Funèbre", - effect: "Une multitude de boules de feu frappent la cible, ce qui peut aussi la brûler (30% de chances et 50% en Style Puissant). La puissance est doublée si celle-ci souffre d’une altération de statut." - }, - "ceaselessEdge": { - name: "Vagues à Lames", - effect: "Des lames de coquillages entaillent la cible en visant ses points faibles. Les débris de coquillage se répandent sous la forme de picots aux pieds de la cible." - }, - "bleakwindStorm": { - name: "Typhon Hivernal", - effect: "Le lanceur déclenche un typhon froid et brutal qui fait trembler le cœur et le corps de la cible, ce qui peut aussi baisser sa Vitesse." - }, - "wildboltStorm": { - name: "Typhon Fulgurant", - effect: "Le lanceur déclenche un violent typhon orageux dont les rafales et la foudre frappent la cible, ce qui peut aussi la paralyser (30% de chances en Style Normal et 50% en Style Puissant)." - }, - "sandsearStorm": { - name: "Typhon Pyrosable", - effect: "Le lanceur déclenche un violent typhon mêlé à du sable ardent qui s’abat sur la cible, ce qui peut la brûler (30% de chances et 50% en Style Puissant)." - }, - "lunarBlessing": { - name: "Prière Lunaire", - effect: "Le lanceur adresse une prière à la lune pour restaurer les PV et soigner ses altérations de statut ainsi que celles de ses alliés." - }, - "takeHeart": { - name: "Extravaillance", - effect: "Le lanceur fait preuve de bravoure pour soigner ses altérations de statut et augmenter sa puissance offensive et défensive." - }, - "gMaxWildfire": { - name: "Fournaise G-Max", - effect: "Une attaque de type Feu que seul un Dracaufeu Gigamax peut utiliser. Pendant quatre tours, la cible continue de subir des dégâts." - }, - "gMaxBefuddle": { - name: "Illusion G-Max", - effect: "Une attaque de type Insecte que seul un Papilusion Gigamax peut utiliser. Empoisonne, paralyse ou endort la cible." - }, - "gMaxVoltCrash": { - name: "Foudre G-Max", - effect: "Une attaque de type Électrik que seul un Pikachu Gigamax peut utiliser. Paralyse la cible." - }, - "gMaxGoldRush": { - name: "Pactole G-Max", - effect: "Une attaque de type Normal que seul un Miaouss Gigamax peut utiliser. Rend la cible confuse et permet d’obtenir de l’argent à la fin du combat." - }, - "gMaxChiStrike": { - name: "Frappe G-Max", - effect: "Une attaque de type Combat que seul un Mackogneur Gigamax peut utiliser. Augmente le taux de critiques du lanceur et de ses alliés." - }, - "gMaxTerror": { - name: "Hantise G-Max", - effect: "Une attaque de type Spectre que seul un Ectoplasma Gigamax peut utiliser. Empêche les Pokémon ennemis de quitter le combat." - }, - "gMaxResonance": { - name: "Résonance G-Max", - effect: "Une attaque de type Glace que seul un Lokhlass Gigamax peut utiliser. Réduit les dégâts causés par des capacités pendant cinq tours." - }, - "gMaxCuddle": { - name: "Câlin G-Max", - effect: "Une attaque de type Normal que seul un Évoli Gigamax peut utiliser. Rend la cible amoureuse." - }, - "gMaxReplenish": { - name: "Récolte G-Max", - effect: "Une attaque de type Normal que seul un Ronflex Gigamax peut utiliser. Restaure une Baie tenue qui a déjà été mangée." - }, - "gMaxMalodor": { - name: "Pestilence G-Max", - effect: "Une attaque de type Poison que seul un Miasmax Gigamax peut utiliser. Empoisonne la cible." - }, - "gMaxStonesurge": { - name: "Récif G-Max", - effect: "Une attaque de type Eau que seul un Torgamord Gigamax peut utiliser. Disperse des pierres aiguisées sur le terrain." - }, - "gMaxWindRage": { - name: "Rafale G-Max", - effect: "Une attaque de type Vol que seul un Corvaillus Gigamax peut utiliser. Permet de briser les barrières comme Protection et Mur Lumière." - }, - "gMaxStunShock": { - name: "Choc G-Max", - effect: "Une attaque de type Électrik que seul un Salarsen Gigamax peut utiliser. Empoisonne ou paralyse la cible." - }, - "gMaxFinale": { - name: "Cure G-Max", - effect: "Une attaque de type Fée que seul un Charmilly Gigamax peut utiliser. Restaure des PV aux alliés." - }, - "gMaxDepletion": { - name: "Usure G-Max", - effect: "Une attaque de type Dragon que seul un Duralugon Gigamax peut utiliser. Baisse les PP de la dernière capacité utilisée par la cible." - }, - "gMaxGravitas": { - name: "Ondes G-Max", - effect: "Une attaque de type Psy que seul un Astronelle Gigamax peut utiliser. Intensifie la gravité pendant cinq tours." - }, - "gMaxVolcalith": { - name: "Téphra G-Max", - effect: "Une attaque de type Roche que seul un Monthracite Gigamax peut utiliser. Pendant quatre tours, la cible continue de subir des dégâts." - }, - "gMaxSandblast": { - name: "Enlisement G-Max", - effect: "Une attaque de type Sol que seul un Dunaconda Gigamax peut utiliser. Emprisonne la cible dans une tempête de sable qui dure de quatre à cinq tours." - }, - "gMaxSnooze": { - name: "Torpeur G-Max", - effect: "Une attaque de type Ténèbres que seul un Angoliath Gigamax peut utiliser. Fait bâiller la cible qui s’endort au tour suivant." - }, - "gMaxTartness": { - name: "Corrosion G-Max", - effect: "Une attaque de type Plante que seul un Pomdrapi Gigamax peut utiliser. Réduit l’Esquive de la cible." - }, - "gMaxSweetness": { - name: "Nectar G-Max", - effect: "Une attaque de type Plante que seul un Dratatin Gigamax peut utiliser. Soigne les altérations de statut des alliés." - }, - "gMaxSmite": { - name: "Sentence G-Max", - effect: "Une attaque de type Fée que seul un Sorcilence Gigamax peut utiliser. Rend la cible confuse." - }, - "gMaxSteelsurge": { - name: "Percée G-Max", - effect: "Une attaque de type Acier que seul un Pachyradjah Gigamax peut utiliser. Disperse des pics aiguisés sur le terrain." - }, - "gMaxMeltdown": { - name: "Fonte G-Max", - effect: "Une attaque de type Acier que seul un Melmetal Gigamax peut utiliser. Empêche la cible d’utiliser la même capacité deux fois de suite." - }, - "gMaxFoamBurst": { - name: "Bulles G-Max", - effect: "Une attaque de type Eau que seul un Krabboss Gigamax peut utiliser. Réduit beaucoup la Vitesse de la cible." - }, - "gMaxCentiferno": { - name: "Combustion G-Max", - effect: "Une attaque de type Feu que seul un Scolocendre Gigamax peut utiliser. Emprisonne la cible dans un tourbillon de flammes qui dure de quatre à cinq tours." - }, - "gMaxVineLash": { - name: "Fouet G-Max", - effect: "Une attaque de type Plante que seul un Florizarre Gigamax peut utiliser. Inflige des dégâts à la cible pendant quatre tours." - }, - "gMaxCannonade": { - name: "Canonnade G-Max", - effect: "Une attaque de type Eau que seul un Tortank Gigamax peut utiliser. Inflige des dégâts à la cible pendant quatre tours." - }, - "gMaxDrumSolo": { - name: "Percussion G-Max", - effect: "Une attaque de type Plante que seul un Gorythmic Gigamax peut utiliser. Ignore le talent de la cible." - }, - "gMaxFireball": { - name: "Pyroball G-Max", - effect: "Une attaque de type Feu que seul un Pyrobut Gigamax peut utiliser. Ignore le talent de la cible." - }, - "gMaxHydrosnipe": { - name: "Gâchette G-Max", - effect: "Une attaque de type Eau que seul un Lézargus Gigamax peut utiliser. Ignore le talent de la cible." - }, - "gMaxOneBlow": { - name: "Coup Final G-Max", - effect: "Une attaque de type Ténèbres que seul un Shifours Gigamax peut utiliser. Cette frappe unique permet d’ignorer la capacité Gardomax." - }, - "gMaxRapidFlow": { - name: "Multicoup G-Max", - effect: "Une attaque de type Eau que seul un Shifours Gigamax peut utiliser. Cet enchaînement de coups permet d’ignorer la capacité Gardomax." - }, - "teraBlast": { - name: "Téra Explosion", - effect: "Si le lanceur est téracristallisé, il libère l’énergie de son type Téracristal. La capacité utilise l’Attaque ou l’Attaque Spéciale, selon ce qui infligera le plus de dégâts." - }, - "silkTrap": { - name: "Piège de Fil", - effect: "Le lanceur déploie un piège de fil pour se protéger contre les attaques, et si un assaillant utilise une attaque directe contre lui, la Vitesse de l’assaillant baisse." - }, - "axeKick": { - name: "Talon-Marteau", - effect: "Le lanceur donne un coup de talon descendant à la cible, ce qui peut aussi la rendre confuse. S’il échoue, le lanceur se blesse." - }, - "lastRespects": { - name: "Hommage Posthume", - effect: "Le lanceur attaque pour venger ses alliés. Plus le nombre de Pokémon alliés mis K.O. est élevé, plus la puissance de cette capacité augmente." - }, - "luminaCrash": { - name: "Lumino-Impact", - effect: "Le lanceur attaque en émettant une étrange lumière qui ébranle l’esprit de la cible. Cela baisse beaucoup la Défense Spéciale de la cible." - }, - "orderUp": { - name: "Plat du Jour", - effect: "Le lanceur attaque avec adresse et élégance. S’il a un Nigirigon dans la gueule, une de ses stats augmente en fonction de la forme de celui-ci." - }, - "jetPunch": { - name: "Poing Sonique", - effect: "Le lanceur enveloppe son poing d’un torrent furieux et attaque si rapidement qu’on peine à le discerner. Frappe en priorité." - }, - "spicyExtract": { - name: "Habanerage", - effect: "Le lanceur relâche un concentré extrêmement pimenté sur la cible, ce qui augmente beaucoup l’Attaque de celle-ci, mais baisse aussi beaucoup sa Défense." - }, - "spinOut": { - name: "Dérapage", - effect: "Le lanceur met tout son poids sur ses pattes et effectue de violentes rotations, ce qui inflige des dégâts à la cible, mais baisse beaucoup la Vitesse du lanceur." - }, - "populationBomb": { - name: "Prolifération", - effect: "Le lanceur et ses congénères prolifèrent en masse et attaquent ensemble d’une à dix fois d’affilée." - }, - "iceSpinner": { - name: "Cryo-Pirouette", - effect: "Le lanceur enveloppe ses jambes d’une fine couche de glace et heurte la cible en tournant sur lui-même. Ses rotations détruisent le champ actif sur le terrain." - }, - "glaiveRush": { - name: "Charge Glaive", - effect: "Le lanceur se jette dans une charge inconsciente sur la cible. Au tour suivant, l’attaque de la cible inflige le double de dégâts et n’échoue jamais." - }, - "revivalBlessing": { - name: "Second Souffle", - effect: "Dans un élan de compassion, le lanceur adresse une prière afin de ranimer un Pokémon de l’équipe K.O. en lui rendant la moitié de ses PV." - }, - "saltCure": { - name: "Salaison", - effect: "Le lanceur couvre la cible de sel, ce qui lui inflige des dégâts à chaque tour. Si la cible est de type Acier ou Eau, ces dégâts sont plus élevés." - }, - "tripleDive": { - name: "Triple Plongeon", - effect: "Le lanceur effectue des plongeons parfaitement cadencés pour éclabousser la cible et lui infliger des dégâts trois fois d’affilée." - }, - "mortalSpin": { - name: "Toupie Éclat", - effect: "Le lanceur attaque en tournant sur lui-même et empoisonne la cible. Il se libère également des effets de capacités comme Étreinte, Ligotage ou Vampigraine." - }, - "doodle": { - name: "Décalquage", - effect: "Le lanceur capture l’essence de la cible et la décalque. Le talent du lanceur et de ses alliés devient alors identique à celui de la cible." - }, - "filletAway": { - name: "Décharnement", - effect: "Le lanceur sacrifie des PV pour beaucoup augmenter son Attaque, son Attaque Spéciale, et sa Vitesse." - }, - "kowtowCleave": { - name: "Génusection", - effect: "Le lanceur se prosterne devant la cible et profite de cette distraction pour l’attaquer avec une lame. N’échoue jamais." - }, - "flowerTrick": { - name: "Magie Florale", - effect: "Le lanceur attaque en jetant un bouquet de fleurs piégé sur la cible. N’échoue jamais et inflige toujours un coup critique." - }, - "torchSong": { - name: "Chant Flamboyant", - effect: "Le lanceur carbonise la cible en projetant sur elle de vives flammes créées par un chant. Cette capacité augmente l’Attaque Spéciale du lanceur." - }, - "aquaStep": { - name: "Danse Aquatique", - effect: "Le lanceur se joue de la cible et lui inflige des dégâts avec ses pas de danse gracieux et légers. Cette capacité augmente la Vitesse du lanceur." - }, - "ragingBull": { - name: "Taurogne", - effect: "Le lanceur charge la cible comme un taureau enragé. Le type de cette capacité dépend de la race du lanceur, et brise les barrières comme Mur Lumière et Protection." - }, - "makeItRain": { - name: "Ruée d’Or", - effect: "Le lanceur attaque en lançant de nombreuses pièces, ce qui baisse son Attaque Spéciale. Permet d’obtenir plus d’argent à la fin du combat." - }, - "psyblade": { - name: "Lame Psychique", - effect: "Le lanceur lacère la cible à l’aide d’une lame intangible. S’il se trouve dans un champ électrifié, la puissance de cette capacité augmente de 50 %." - }, - "hydroSteam": { - name: "Hydrovapeur", - effect: "Le lanceur asperge la cible avec un puissant jet d’eau bouillante. Quand le soleil brille, la puissance de cette capacité augmente de 50 % au lieu de baisser." - }, - "ruination": { - name: "Cataclysme", - effect: "Le lanceur déclenche un cataclysme qui baisse les PV de la cible de moitié." - }, - "collisionCourse": { - name: "Nitro Crash", - effect: "Le lanceur change de forme et s’écrase sur la cible dans une explosion antique. Si la capacité est super efficace, elle inflige encore plus de dégâts que d’ordinaire." - }, - "electroDrift": { - name: "Turbo Volt", - effect: "Le lanceur change de forme et fonce sur la cible en la perforant d’électricité futuriste. Si la capacité est super efficace, sa puissance augmente encore plus." - }, - "shedTail": { - name: "Queulonage", - effect: "Le lanceur crée un clone en sacrifiant des PV, puis il revient et échange sa place avec un Pokémon de l’équipe prêt à combattre." - }, - "chillyReception": { - name: "Neigeux de Mots", - effect: "Le lanceur fait un si mauvais jeu de mots qu’il jette un froid et échange sa place avec un Pokémon de l’équipe prêt à combattre. La neige tombe pendant cinq tours." - }, - "tidyUp": { - name: "Grand Nettoyage", - effect: "Le lanceur fait le ménage sur le terrain, ce qui annule les effets de Picots, Piège de Roc, Toile Gluante, Pics Toxik, et Clonage. Augmente l’Attaque et la Vitesse du lanceur." - }, - "snowscape": { - name: "Chute de Neige", - effect: "Le lanceur invoque une tempête de neige qui dure cinq tours, ce qui augmente la Défense des Pokémon de type Glace." - }, - "pounce": { - name: "Bond", - effect: "Le lanceur attaque en bondissant sur la cible, ce qui baisse la Vitesse de celle-ci." - }, - "trailblaze": { - name: "Désherbaffe", - effect: "Le lanceur surgit des hautes herbes pour attaquer la cible. Les mouvements agiles du lanceur augmentent sa Vitesse." - }, - "chillingWater": { - name: "Douche Froide", - effect: "Le lanceur attaque la cible en l’arrosant d’une eau si froide qu’elle détériore son esprit combatif. Baisse l’Attaque de la cible." - }, - "hyperDrill": { - name: "Hyperceuse", - effect: "Le lanceur fait tourner à toute vitesse la partie pointue de son corps afin de transpercer la cible. Ignore même les capacités comme Abri ou Détection." - }, - "twinBeam": { - name: "Double Laser", - effect: "Le lanceur projette d’étranges rayons lumineux avec ses yeux et inflige des dégâts deux fois d’affilée." - }, - "rageFist": { - name: "Poing de Colère", - effect: "Le lanceur transforme sa colère en énergie pour attaquer. Plus il a subi d’attaques, plus la puissance de cette capacité augmente." - }, - "armorCannon": { - name: "Canon Blindé", - effect: "Le lanceur tire un boulet de canon ardent provenant de sa propre armure sur la cible. Cela baisse la Défense et la Défense Spéciale du lanceur." - }, - "bitterBlade": { - name: "Lame en Peine", - effect: "Le lanceur concentre son amertume du monde des vivants dans la pointe de ses épées et tranche la cible. La moitié des dégâts infligés sont convertis en PV pour le lanceur." - }, - "doubleShock": { - name: "Double Décharge", - effect: "Le lanceur libère toute l’électricité contenue dans son corps pour infliger des dégâts élevés à la cible. Le lanceur perd le type Électrik." - }, - "gigatonHammer": { - name: "Marteau Mastoc", - effect: "Le lanceur met tout son corps à contribution pour attaquer la cible avec un immense marteau. Cette capacité ne peut pas être utilisée deux fois d’affilée." - }, - "comeuppance": { - name: "Vindicte", - effect: "Le lanceur contre-attaque avec un coup infligeant des dégâts supérieurs à ceux de la dernière capacité qui l’a blessé." - }, - "aquaCutter": { - name: "Tranch’Aqua", - effect: "Le lanceur projette de l’eau pressurisée qui entaille la cible comme une lame. Taux de critiques élevé." - }, - "blazingTorque": { - name: "Crash Brûlant", - effect: "Crash Brûlant inflige des dégâts et possède 30 % de chances de brûler l’adversaire." - }, - "wickedTorque": { - name: "Crash Obscur", - effect: "Crash Obscur inflige des dégâts et possède 10 % de chances d’endormir l’adversaire." - }, - "noxiousTorque": { - name: "Crash Toxique", - effect: "Crash Toxique inflige des dégâts et possède 30 % de chances d’empoisonner l’adversaire." - }, - "combatTorque": { - name: "Crash Musclé", - effect: "Crash Musclé inflige des dégâts et possède 30 % de chances de paralyser l’adversaire." - }, - "magicalTorque": { - name: "Crash Magique", - effect: "Crash Magique inflige des dégâts et possède 30 % de chances de rendre l’adversaire confus." - }, - "bloodMoon": { - name: "Lune Rouge", - effect: "Le lanceur concentre toute son énergie dans la lune rouge sang sur son front et la projette sur la cible. Cette capacité ne peut pas être utilisée deux fois d’affilée." - }, - "matchaGotcha": { - name: "Mortier Matcha", - effect: "Le lanceur remue son thé et en bombarde la cible. La moitié des dégâts infligés sont convertis en PV pour le lanceur. Cette capacité peut aussi brûler la cible." - }, - "syrupBomb": { - name: "Bombe au Sirop", - effect: "Le lanceur jette une bombe qui recouvre la cible de sirop gluant et fait progressivement baisser la Vitesse de la cible pendant trois tours." - }, - "ivyCudgel": { - name: "Massue Liane", - effect: "Le lanceur frappe la cible à l’aide d’une massue entourée d’une liane. Le type de cette capacité varie en fonction du masque que porte le lanceur. Taux de critiques élevé." - }, - "electroShot": { - name: "Fulgurayon", - effect: "Le lanceur absorbe de l’électricité au premier tour, ce qui augmente son Attaque Spéciale, et envoie une puissante décharge au second. S’il pleut, il l’envoie au premier tour." - }, - "teraStarstorm": { - name: "Pluie Térastrale", - effect: "Le lanceur bombarde la cible afin de l’éliminer grâce au pouvoir des cristaux. Si le lanceur est Terapagos sous sa Forme Stellaire, la capacité touche tous les ennemis." - }, - "fickleBeam": { - name: "Laser Hasard", - effect: "Le lanceur attaque en tirant un rayon lumineux. Il arrive parfois que toutes les têtes agissent ensemble, ce qui double la puissance de la capacité." - }, - "burningBulwark": { - name: "Rempart Brûlant", - effect: "Le lanceur se protège contre les attaques grâce à son pelage incandescent, et si un assaillant utilise une attaque directe contre lui, il le brûle." - }, - "thunderclap": { - name: "Vif Éclair", - effect: "Permet au lanceur d’attaquer la cible en priorité avec une décharge électrique. Échoue si la cible ne prépare pas une attaque." - }, - "mightyCleave": { - name: "Lame Puissante", - effect: "Le lanceur pourfend la cible avec la lumière accumulée sur sa tête. Cette attaque passe outre les protections." - }, - "tachyonCutter": { - name: "Lame Tachyonique", - effect: "Le lanceur concentre des particules élémentaires pour créer une lame qui inflige des dégâts à la cible deux fois d’affilée. N’échoue jamais." - }, - "hardPress": { - name: "Pression Extrême", - effect: "Le lanceur écrase la cible avec ses bras ou ses pinces. Plus il reste de PV à la cible, plus la puissance de la capacité augmente." - }, - "dragonCheer": { - name: "Cri Draconique", - effect: "Le lanceur galvanise ses alliés avec un encouragement draconique qui augmente leur taux de critiques. L’effet est plus puissant si les alliés ont le type Dragon." - }, - "alluringVoice": { - name: "Voix Envoûtante", - effect: "Le lanceur attaque la cible avec sa voix angélique. Cette capacité rend la cible confuse si ses stats ont augmenté pendant ce tour." - }, - "temperFlare": { - name: "Indignition", - effect: "Le lanceur utilise la force de son dépit pour attaquer. S’il a utilisé une capacité qui a échoué au tour précédent, la puissance d’Indignition est doublée." - }, - "supercellSlam": { - name: "Volt Assaut", - effect: "Le lanceur se charge en électricité et fond sur la cible. S’il échoue, le lanceur se blesse." - }, - "psychicNoise": { - name: "Dissonance Psy", - effect: "Le lanceur attaque avec des ondes sonores dissonantes. Cela empêche la cible de récupérer des PV à l’aide de capacités, talents ou objets tenus pendant 2 tours." - }, - "upperHand": { - name: "Prio-Parade", - effect: "Le lanceur réagit instinctivement au moindre mouvement et donne un coup de paume qui apeure la cible. Échoue si cette dernière n’a pas utilisé une attaque prioritaire." - }, - "malignantChain": { - name: "Chaîne Malsaine", - effect: "Le lanceur ligote la cible avec une chaîne faite de poison et lui injecte un venin corrosif, ce qui peut aussi gravement l’empoisonner." - } -} as const; diff --git a/src/locales/fr/nature.ts b/src/locales/fr/nature.json similarity index 80% rename from src/locales/fr/nature.ts rename to src/locales/fr/nature.json index 6f2e3985d8f..95f2ef64142 100644 --- a/src/locales/fr/nature.ts +++ b/src/locales/fr/nature.json @@ -1,6 +1,4 @@ -import { SimpleTranslationEntries } from "#app/interfaces/locales"; - -export const nature: SimpleTranslationEntries = { +{ "Hardy": "Hardi", "Lonely": "Solo", "Brave": "Brave", @@ -26,4 +24,4 @@ export const nature: SimpleTranslationEntries = { "Sassy": "Malpoli", "Careful": "Prudent", "Quirky": "Bizarre" -} as const; +} \ No newline at end of file diff --git a/src/locales/fr/party-ui-handler.ts b/src/locales/fr/party-ui-handler.json similarity index 89% rename from src/locales/fr/party-ui-handler.ts rename to src/locales/fr/party-ui-handler.json index 158a6e8416a..6adba2c8309 100644 --- a/src/locales/fr/party-ui-handler.ts +++ b/src/locales/fr/party-ui-handler.json @@ -1,6 +1,4 @@ -import { SimpleTranslationEntries } from "#app/interfaces/locales"; - -export const partyUiHandler: SimpleTranslationEntries = { +{ "SEND_OUT": "Envoyer", "SUMMARY": "Résumé", "CANCEL": "Annuler", @@ -17,7 +15,6 @@ export const partyUiHandler: SimpleTranslationEntries = { "UNPAUSE_EVOLUTION": "Réactiver Évolution", "REVIVE": "Ranimer", "RENAME": "Renommer", - "choosePokemon": "Sélectionnez un Pokémon.", "doWhatWithThisPokemon": "Que faire avec ce Pokémon ?", "noEnergy": "{{pokemonName}} n’a plus l’énergie\nde se battre !", @@ -34,13 +31,9 @@ export const partyUiHandler: SimpleTranslationEntries = { "changeQuantity": "Sélect. un objet à transférer.\nChangez la quantité avec < et >.", "selectAnotherPokemonToSplice": "Sélectionnez un autre Pokémon à séparer.", "cancel": "Sortir", - - // Slot TM text "able": "Apte", "notAble": "Pas Apte", "learned": "Appris", - - // Releasing messages "goodbye": "Au revoir, {{pokemonName}} !", "byebye": "Bye-bye, {{pokemonName}} !", "farewell": "Adieu, {{pokemonName}} !", @@ -50,5 +43,5 @@ export const partyUiHandler: SimpleTranslationEntries = { "illNeverForgetYou": "Je ne t’oublierai pas, {{pokemonName}} !", "untilWeMeetAgain": "À la prochaine, {{pokemonName}} !", "sayonara": "Sayonara, {{pokemonName}} !", - "smellYaLater": "À la revoyure, {{pokemonName}} !", -} as const; + "smellYaLater": "À la revoyure, {{pokemonName}} !" +} \ No newline at end of file diff --git a/src/locales/fr/pokeball.json b/src/locales/fr/pokeball.json new file mode 100644 index 00000000000..a2589141907 --- /dev/null +++ b/src/locales/fr/pokeball.json @@ -0,0 +1,8 @@ +{ + "pokeBall": "Poké Ball", + "greatBall": "Super Ball", + "ultraBall": "Hyper Ball", + "rogueBall": "Rogue Ball", + "masterBall": "Master Ball", + "luxuryBall": "Luxe Ball" +} \ No newline at end of file diff --git a/src/locales/fr/pokeball.ts b/src/locales/fr/pokeball.ts deleted file mode 100644 index 910002e41e1..00000000000 --- a/src/locales/fr/pokeball.ts +++ /dev/null @@ -1,10 +0,0 @@ -import { SimpleTranslationEntries } from "#app/interfaces/locales"; - -export const pokeball: SimpleTranslationEntries = { - "pokeBall": "Poké Ball", - "greatBall": "Super Ball", - "ultraBall": "Hyper Ball", - "rogueBall": "Rogue Ball", - "masterBall": "Master Ball", - "luxuryBall": "Luxe Ball", -} as const; diff --git a/src/locales/fr/pokemon-form-battle.json b/src/locales/fr/pokemon-form-battle.json new file mode 100644 index 00000000000..b100622f03f --- /dev/null +++ b/src/locales/fr/pokemon-form-battle.json @@ -0,0 +1,14 @@ +{ + "mega": "Méga-{{pokemonName}}", + "mega-x": "Méga-{{pokemonName}} X", + "mega-y": "Méga-{{pokemonName}} Y", + "primal": "Primo-{{pokemonName}}", + "gigantamax": "{{pokemonName}} Gigamax", + "eternamax": "{{pokemonName}} Infinimax", + "megaChange": "{{preName}} méga-évolue\nen {{pokemonName}} !", + "gigantamaxChange": "{{preName}} se gigamaxe\nen {{pokemonName}} !", + "eternamaxChange": "{{preName}} devient\n{{pokemonName}} !", + "revertChange": "{{pokemonName}} retourne\nà sa forme initiale !", + "formChange": "{{preName}} change de forme !", + "disguiseChange": "Le déguisement absorbe l’attaque !" +} \ No newline at end of file diff --git a/src/locales/fr/pokemon-form.ts b/src/locales/fr/pokemon-form.json similarity index 78% rename from src/locales/fr/pokemon-form.ts rename to src/locales/fr/pokemon-form.json index 51158356ef3..44f2bcecf2c 100644 --- a/src/locales/fr/pokemon-form.ts +++ b/src/locales/fr/pokemon-form.json @@ -1,24 +1,4 @@ -import { SimpleTranslationEntries } from "#app/interfaces/locales"; - -export const battlePokemonForm: SimpleTranslationEntries = { - "mega": "Méga-{{pokemonName}}", - "mega-x": "Méga-{{pokemonName}} X", - "mega-y": "Méga-{{pokemonName}} Y", - "primal": "Primo-{{pokemonName}}", - "gigantamax": "{{pokemonName}} Gigamax", - "eternamax": "{{pokemonName}} Infinimax", - - "megaChange": "{{preName}} méga-évolue\nen {{pokemonName}} !", - "gigantamaxChange": "{{preName}} se gigamaxe\nen {{pokemonName}} !", - "eternamaxChange": "{{preName}} devient\n{{pokemonName}} !", - "revertChange": "{{pokemonName}} retourne\nà sa forme initiale !", - "formChange": "{{preName}} change de forme !", - "disguiseChange": "Le déguisement absorbe l’attaque !", -} as const; - -export const pokemonForm: SimpleTranslationEntries = { - // Starters forms - // 1G +{ "pikachuCosplay": "Cosplayeur", "pikachuCoolCosplay": "Cosplay Rockeur", "pikachuBeautyCosplay": "Cosplay Lady", @@ -27,7 +7,6 @@ export const pokemonForm: SimpleTranslationEntries = { "pikachuToughCosplay": "Cosplay Catcheur", "pikachuPartner": "Partenaire", "eeveePartner": "Partenaire", - // 2G "pichuSpiky": "Troizépi", "unownA": "A", "unownB": "B", @@ -57,12 +36,10 @@ export const pokemonForm: SimpleTranslationEntries = { "unownZ": "Z", "unownExclamation": "!", "unownQuestion": "?", - // 3G "castformSunny": "Solaire", "castformRainy": "Eau de Pluie", "castformSnowy": "Blizzard", "deoxysNormal": "Normal", - // 4G "burmyPlant": "Plante", "burmySandy": "Sable", "burmyTrash": "Déchet", @@ -75,7 +52,6 @@ export const pokemonForm: SimpleTranslationEntries = { "rotomMow": "Tonte", "giratinaAltered": "Alternatif", "shayminLand": "Terrestre", - // 5G "basculinRedStriped": "Motif Rouge", "basculinBlueStriped": "Motif Bleu", "basculinWhiteStriped": "Motif Blanc", @@ -88,7 +64,7 @@ export const pokemonForm: SimpleTranslationEntries = { "landorusIncarnate": "Avatar", "keldeoOrdinary": "Normal", "meloettaAria": "Chant", - // 6G + "meloettaPirouette": "Danse", "froakieBattleBond": "Synergie", "scatterbugMeadow": "Floraison", "scatterbugIcySnow": "Blizzard", @@ -134,7 +110,6 @@ export const pokemonForm: SimpleTranslationEntries = { "zygarde50Pc": "Rassemblement Forme 50%", "zygarde10Pc": "Rassemblement Forme 10%", "zygardeComplete": "Parfait", - // 7G "oricorioBaile": "Flamenco", "oricorioPompom": "Pom-Pom", "oricorioPau": "Hula", @@ -158,7 +133,6 @@ export const pokemonForm: SimpleTranslationEntries = { "mimikyuBusted": "Démasqué", "magearnaOriginal": "Couleur du Passé", "marshadowZenith": "Zénith", - // 8G "sinisteaPhony": "Contrefaçon", "sinisteaAntique": "Authentique", "eiscueNoIce": "Tête Dégel", @@ -169,7 +143,6 @@ export const pokemonForm: SimpleTranslationEntries = { "zamazentaHeroOfManyBattles": "Héros Aguerri", "zarudeDada": "Papa", "enamorusIncarnate": "Avatar", - // 9G "squawkabillyGreenPlumage": "Plumage Vert", "squawkabillyBluePlumage": "Plumage Bleu", "squawkabillyYellowPlumage": "Plumage Jaune", @@ -180,19 +153,18 @@ export const pokemonForm: SimpleTranslationEntries = { "gimmighoulChest": "Coffre", "gimmighoulRoaming": "Marche", "koraidonApexBuild": "Final", - "koraidonLimitedBuild":"Limité", - "koraidonSprintingBuild":"Course", - "koraidonSwimmingBuild":"Nage", - "koraidonGlidingBuild":"Vol", - "miraidonUltimateMode":"Ultime", - "miraidonLowPowerMode":"Bridé", - "miraidonDriveMode":"Terrestre", - "miraidonAquaticMode":"Aquatique", - "miraidonGlideMode":"Aérien", + "koraidonLimitedBuild": "Limité", + "koraidonSprintingBuild": "Course", + "koraidonSwimmingBuild": "Nage", + "koraidonGlidingBuild": "Vol", + "miraidonUltimateMode": "Ultime", + "miraidonLowPowerMode": "Bridé", + "miraidonDriveMode": "Terrestre", + "miraidonAquaticMode": "Aquatique", + "miraidonGlideMode": "Aérien", "poltchageistCounterfeit": "Imitation", "poltchageistArtisan": "Onéreux", "paldeaTaurosCombat": "Combatif", "paldeaTaurosBlaze": "Flamboyant", - "paldeaTaurosAqua": "Aquatique", - -} as const; + "paldeaTaurosAqua": "Aquatique" +} \ No newline at end of file diff --git a/src/locales/fr/pokemon-info-container.json b/src/locales/fr/pokemon-info-container.json new file mode 100644 index 00000000000..46b5b80bab0 --- /dev/null +++ b/src/locales/fr/pokemon-info-container.json @@ -0,0 +1,7 @@ +{ + "moveset": "Capacités", + "gender": "Sexe :", + "ability": "Talent :", + "nature": "Nature :", + "form": "Forme :" +} \ No newline at end of file diff --git a/src/locales/fr/pokemon-info-container.ts b/src/locales/fr/pokemon-info-container.ts deleted file mode 100644 index 4e09e8915ad..00000000000 --- a/src/locales/fr/pokemon-info-container.ts +++ /dev/null @@ -1,9 +0,0 @@ -import { SimpleTranslationEntries } from "#app/interfaces/locales"; - -export const pokemonInfoContainer: SimpleTranslationEntries = { - "moveset": "Capacités", - "gender": "Sexe :", - "ability": "Talent :", - "nature": "Nature :", - "form": "Forme :" -} as const; diff --git a/src/locales/fr/pokemon-info.ts b/src/locales/fr/pokemon-info.json similarity index 79% rename from src/locales/fr/pokemon-info.ts rename to src/locales/fr/pokemon-info.json index a10944173e5..1e55f332432 100644 --- a/src/locales/fr/pokemon-info.ts +++ b/src/locales/fr/pokemon-info.json @@ -1,7 +1,5 @@ -import { PokemonInfoTranslationEntries } from "#app/interfaces/locales"; - -export const pokemonInfo: PokemonInfoTranslationEntries = { - Stat: { +{ + "Stat": { "HP": "PV", "HPshortened": "PV", "ATK": "Attaque", @@ -17,8 +15,7 @@ export const pokemonInfo: PokemonInfoTranslationEntries = { "ACC": "Précison", "EVA": "Esquive" }, - - Type: { + "Type": { "UNKNOWN": "Inconnu", "NORMAL": "Normal", "FIGHTING": "Combat", @@ -38,6 +35,6 @@ export const pokemonInfo: PokemonInfoTranslationEntries = { "DRAGON": "Dragon", "DARK": "Ténèbres", "FAIRY": "Fée", - "STELLAR": "Stellaire", - }, -} as const; + "STELLAR": "Stellaire" + } +} \ No newline at end of file diff --git a/src/locales/fr/pokemon-summary.ts b/src/locales/fr/pokemon-summary.json similarity index 77% rename from src/locales/fr/pokemon-summary.ts rename to src/locales/fr/pokemon-summary.json index 8f21a942c36..f0b4f5a474f 100644 --- a/src/locales/fr/pokemon-summary.ts +++ b/src/locales/fr/pokemon-summary.json @@ -1,6 +1,4 @@ -import { TranslationEntries } from "#app/interfaces/locales"; - -export const pokemonSummary: TranslationEntries = { +{ "pokemonInfo": "Info Pokémon", "status": "Statut", "powerAccuracyCategory": "Puissance\nPrécision\nCatégorie", @@ -11,10 +9,9 @@ export const pokemonSummary: TranslationEntries = { "expPoints": "Points Exp.", "nextLv": "N. suivant", "cancel": "Annuler", - "memoString": "{{natureFragment}} de nature,\n{{metFragment}}", "metFragment": { "normal": "rencontré au N.{{level}},\n{{biome}}.", - "apparently": "apparemment rencontré au N.{{level}},\n{{biome}}.", - }, -} as const; + "apparently": "apparemment rencontré au N.{{level}},\n{{biome}}." + } +} \ No newline at end of file diff --git a/src/locales/fr/pokemon.ts b/src/locales/fr/pokemon.json similarity index 99% rename from src/locales/fr/pokemon.ts rename to src/locales/fr/pokemon.json index d731fd148ad..3d6636c538a 100644 --- a/src/locales/fr/pokemon.ts +++ b/src/locales/fr/pokemon.json @@ -1,6 +1,4 @@ -import { SimpleTranslationEntries } from "#app/interfaces/locales"; - -export const pokemon: SimpleTranslationEntries = { +{ "bulbasaur": "Bulbizarre", "ivysaur": "Herbizarre", "venusaur": "Florizarre", @@ -1082,5 +1080,5 @@ export const pokemon: SimpleTranslationEntries = { "hisui_decidueye": "Archéduc", "paldea_tauros": "Tauros", "paldea_wooper": "Axoloto", - "bloodmoon_ursaluna": "Ursaking", -} as const; + "bloodmoon_ursaluna": "Ursaking" +} \ No newline at end of file diff --git a/src/locales/fr/run-history.json b/src/locales/fr/run-history.json new file mode 100644 index 00000000000..1def265acf1 --- /dev/null +++ b/src/locales/fr/run-history.json @@ -0,0 +1,37 @@ +{ + "victory": "Victoire !", + "defeatedWild": "Battu par ", + "defeatedTrainer": "Battu par ", + "defeatedTrainerDouble": "Battu par Duo", + "defeatedRival": "Battu par Rivale", + "defeated": "Vaincu", + "defeatedWild_female": "Battue par ", + "defeatedTrainer_female": "Battue par ", + "defeatedTrainerDouble_female": "Battue par Duo", + "defeatedRival_female": "Battue par Rival", + "defeated_female": "Vaincue", + "luck": "Chance ", + "score": "Score", + "mode": "Mode ", + "challengeRules": "Règles ", + "challengeMonoGen1": "1G", + "challengeMonoGen2": "2G", + "challengeMonoGen3": "3G", + "challengeMonoGen4": "4G", + "challengeMonoGen5": "5G", + "challengeMonoGen6": "6G", + "challengeMonoGen7": "7G", + "challengeMonoGen8": "8G", + "challengeMonoGen9": "9G", + "playerItems": "Objets Dresseur", + "personalBest": "Record personnel !", + "SPDshortened": "Vit.", + "runInfo": "Infos session", + "money": "Argent", + "runLength": "Durée session ", + "viewHeldItems": "Objets tenus", + "hallofFameText": "Bienvenue au Panthéon !", + "hallofFameText_female": "Bienvenue au Panthéon !", + "viewHallOfFame": "Voir le Panthéon", + "viewEndingSplash": "Voir l’illustration\nde fin" +} \ No newline at end of file diff --git a/src/locales/fr/save-slot-select-ui-handler.json b/src/locales/fr/save-slot-select-ui-handler.json new file mode 100644 index 00000000000..4fe6b791a49 --- /dev/null +++ b/src/locales/fr/save-slot-select-ui-handler.json @@ -0,0 +1,7 @@ +{ + "overwriteData": "Effacer les données de l’emplacement sélectionné ?", + "loading": "Chargement…", + "wave": "Vague", + "lv": "N.", + "empty": "Vide" +} \ No newline at end of file diff --git a/src/locales/fr/save-slot-select-ui-handler.ts b/src/locales/fr/save-slot-select-ui-handler.ts deleted file mode 100644 index 64f6da7017c..00000000000 --- a/src/locales/fr/save-slot-select-ui-handler.ts +++ /dev/null @@ -1,9 +0,0 @@ -import { SimpleTranslationEntries } from "#app/interfaces/locales"; - -export const saveSlotSelectUiHandler: SimpleTranslationEntries = { - "overwriteData": "Effacer les données de l’emplacement sélectionné ?", - "loading": "Chargement…", - "wave": "Vague", - "lv": "N.", - "empty": "Vide", -} as const; diff --git a/src/locales/fr/settings.ts b/src/locales/fr/settings.json similarity index 92% rename from src/locales/fr/settings.ts rename to src/locales/fr/settings.json index 95246ccb7d0..181a593cc99 100644 --- a/src/locales/fr/settings.ts +++ b/src/locales/fr/settings.json @@ -1,6 +1,4 @@ -import { SimpleTranslationEntries } from "#app/interfaces/locales.js"; - -export const settings: SimpleTranslationEntries = { +{ "boy": "Garçon", "girl": "Fille", "general": "Général", @@ -63,7 +61,9 @@ export const settings: SimpleTranslationEntries = { "typeHints": "Indications de type", "masterVolume": "Vol. principal", "bgmVolume": "Vol. musique", + "fieldVolume": "Vol. combats", "seVolume": "Vol. effets", + "uiVolume": "Vol. menus", "musicPreference": "Préf. musicale", "mixed": "Mixte", "gamepadPleasePlug": "Veuillez brancher une manette ou appuyer sur un bouton.", @@ -98,5 +98,10 @@ export const settings: SimpleTranslationEntries = { "gamepadSupport": "Gamepad Support", "showBgmBar": "Titre de la musique", "moveTouchControls": "Déplacer les contrôles tactiles", - "shopOverlayOpacity": "Opacité boutique" -} as const; + "shopOverlayOpacity": "Opacité boutique", + "shopCursorTarget": "Choix après relance", + "items": "Obj. gratuits", + "reroll": "Relance", + "shop": "Boutique", + "checkTeam": "Équipe" +} diff --git a/src/locales/fr/splash-messages.ts b/src/locales/fr/splash-messages.json similarity index 89% rename from src/locales/fr/splash-messages.ts rename to src/locales/fr/splash-messages.json index 1ee76ab9a13..499a32d2cbd 100644 --- a/src/locales/fr/splash-messages.ts +++ b/src/locales/fr/splash-messages.json @@ -1,6 +1,4 @@ -import { SimpleTranslationEntries } from "#app/interfaces/locales"; - -export const splashMessages: SimpleTranslationEntries = { +{ "battlesWon": "combats gagnés !", "joinTheDiscord": "Rejoins le Discord !", "infiniteLevels": "Niveaux infinis !", @@ -34,5 +32,5 @@ export const splashMessages: SimpleTranslationEntries = { "alsoTryRadicalRed": "Essaye aussi Radical Red !", "eeveeExpo": "Eevee Expo !", "ynoproject": "YNOproject !", - "breedersInSpace": "Des Éleveurs dans l’espace !", -} as const; + "breedersInSpace": "Des Éleveurs dans l’espace !" +} \ No newline at end of file diff --git a/src/locales/fr/starter-select-ui-handler.ts b/src/locales/fr/starter-select-ui-handler.json similarity index 79% rename from src/locales/fr/starter-select-ui-handler.ts rename to src/locales/fr/starter-select-ui-handler.json index e46d0ac953c..518329607bb 100644 --- a/src/locales/fr/starter-select-ui-handler.ts +++ b/src/locales/fr/starter-select-ui-handler.json @@ -1,11 +1,4 @@ -import { SimpleTranslationEntries } from "#app/interfaces/locales"; - -/** - * The menu namespace holds most miscellaneous text that isn't directly part of the game's - * contents or directly related to Pokemon data. This includes menu navigation, settings, - * account interactions, descriptive text, etc. - */ -export const starterSelectUiHandler: SimpleTranslationEntries = { +{ "confirmStartTeam": "Commencer avec ces Pokémon ?", "confirmExit": "Êtes-vous sûr·e de vouloir quitter ?", "invalidParty": "Cette équipe de départ est invalide !", @@ -49,4 +42,4 @@ export const starterSelectUiHandler: SimpleTranslationEntries = { "locked": "Verrouillé", "disabled": "Désactivé", "uncaught": "Non-capturé" -}; +} \ No newline at end of file diff --git a/src/locales/fr/status-effect.json b/src/locales/fr/status-effect.json new file mode 100644 index 00000000000..4a58f804906 --- /dev/null +++ b/src/locales/fr/status-effect.json @@ -0,0 +1,65 @@ +{ + "none": { + "name": "Aucun", + "description": "", + "obtain": "", + "obtainSource": "", + "activation": "", + "overlap": "", + "heal": "" + }, + "poison": { + "name": "Empoisonnement", + "description": "empoisonné", + "obtain": "{{pokemonNameWithAffix}} est\nempoisonné !", + "obtainSource": "{{pokemonNameWithAffix}} est\nempoisonné par {{sourceText}} !", + "activation": "{{pokemonNameWithAffix}}\nsouffre du poison !", + "overlap": "{{pokemonNameWithAffix}} est\ndéjà empoisonné.", + "heal": "{{pokemonNameWithAffix}} n’est\nplus empoisonné !" + }, + "toxic": { + "name": "Empoisonnement grave", + "description": "gravement empoisonné", + "obtain": "{{pokemonNameWithAffix}} est\ngravement empoisonné !", + "obtainSource": "{{pokemonNameWithAffix}} est\ngravement empoisonné par {{sourceText}} !", + "activation": "{{pokemonNameWithAffix}}\nsouffre du poison !", + "overlap": "{{pokemonNameWithAffix}} est\ndéjà empoisonné.", + "heal": "{{pokemonNameWithAffix}} n’est\nplus empoisonné !" + }, + "paralysis": { + "name": "Paralysie", + "description": "paralysé", + "obtain": "{{pokemonNameWithAffix}} est paralysé !\nIl aura du mal à attaquer !", + "obtainSource": "{{pokemonNameWithAffix}} est paralysé\npar {{sourceText}} ! Il aura du mal à attaquer !", + "activation": "{{pokemonNameWithAffix}} est paralysé !\nIl n’a pas pu attaquer !", + "overlap": "{{pokemonNameWithAffix}} est\ndéjà paralysé.", + "heal": "{{pokemonNameWithAffix}} n’est\nplus paralysé !" + }, + "sleep": { + "name": "Sommeil", + "description": "endormi", + "obtain": "{{pokemonNameWithAffix}}\ns’est endormi !", + "obtainSource": "{{pokemonNameWithAffix}} est\nendormi par {{sourceText}} !", + "activation": "{{pokemonNameWithAffix}}\ndort profondément.", + "overlap": "{{pokemonNameWithAffix}}\ndort déjà.", + "heal": "{{pokemonNameWithAffix}}\nse réveille !" + }, + "freeze": { + "name": "Gelé", + "description": "gelé", + "obtain": "{{pokemonNameWithAffix}} est\ngelé !", + "obtainSource": "{{pokemonNameWithAffix}} est\ngelé par {{sourceText}} !", + "activation": "{{pokemonNameWithAffix}} est gelé !\nIl ne peut plus attaquer !", + "overlap": "{{pokemonNameWithAffix}} est\ndéjà gelé.", + "heal": "{{pokemonNameWithAffix}} n’est\nplus gelé !" + }, + "burn": { + "name": "Brulure", + "description": "brulé", + "obtain": "{{pokemonNameWithAffix}} est\nbrulé !", + "obtainSource": "{{pokemonNameWithAffix}} est\nbrulé par {{sourceText}} !", + "activation": "{{pokemonNameWithAffix}}\nsouffre de sa brulure !", + "overlap": "{{pokemonNameWithAffix}} est\ndéjà brulé.", + "heal": "{{pokemonNameWithAffix}} n’est\nplus brulé !" + } +} \ No newline at end of file diff --git a/src/locales/fr/status-effect.ts b/src/locales/fr/status-effect.ts deleted file mode 100644 index ca8c46043e7..00000000000 --- a/src/locales/fr/status-effect.ts +++ /dev/null @@ -1,67 +0,0 @@ -import { StatusEffectTranslationEntries } from "#app/interfaces/locales.js"; - -export const statusEffect: StatusEffectTranslationEntries = { - none: { - name: "Aucun", - description: "", - obtain: "", - obtainSource: "", - activation: "", - overlap: "", - heal: "" - }, - poison: { - name: "Empoisonnement", - description: "empoisonné", - obtain: "{{pokemonNameWithAffix}} est\nempoisonné !", - obtainSource: "{{pokemonNameWithAffix}} est\nempoisonné par {{sourceText}} !", - activation: "{{pokemonNameWithAffix}}\nsouffre du poison !", - overlap: "{{pokemonNameWithAffix}} est\ndéjà empoisonné.", - heal: "{{pokemonNameWithAffix}} n’est\nplus empoisonné !" - }, - toxic: { - name: "Empoisonnement grave", - description: "gravement empoisonné", - obtain: "{{pokemonNameWithAffix}} est\ngravement empoisonné !", - obtainSource: "{{pokemonNameWithAffix}} est\ngravement empoisonné par {{sourceText}} !", - activation: "{{pokemonNameWithAffix}}\nsouffre du poison !", - overlap: "{{pokemonNameWithAffix}} est\ndéjà empoisonné.", - heal: "{{pokemonNameWithAffix}} n’est\nplus empoisonné !" - }, - paralysis: { - name: "Paralysie", - description: "paralysé", - obtain: "{{pokemonNameWithAffix}} est paralysé !\nIl aura du mal à attaquer !", - obtainSource: "{{pokemonNameWithAffix}} est paralysé\npar {{sourceText}} ! Il aura du mal à attaquer !", - activation: "{{pokemonNameWithAffix}} est paralysé !\nIl n’a pas pu attaquer !", - overlap: "{{pokemonNameWithAffix}} est\ndéjà paralysé.", - heal: "{{pokemonNameWithAffix}} n’est\nplus paralysé !" - }, - sleep: { - name: "Sommeil", - description: "endormi", - obtain: "{{pokemonNameWithAffix}}\ns’est endormi !", - obtainSource: "{{pokemonNameWithAffix}} est\nendormi par {{sourceText}} !", - activation: "{{pokemonNameWithAffix}}\ndort profondément.", - overlap: "{{pokemonNameWithAffix}}\ndort déjà.", - heal: "{{pokemonNameWithAffix}}\nse réveille !" - }, - freeze: { - name: "Gelé", - description: "gelé", - obtain: "{{pokemonNameWithAffix}} est\ngelé !", - obtainSource: "{{pokemonNameWithAffix}} est\ngelé par {{sourceText}} !", - activation: "{{pokemonNameWithAffix}} est gelé !\nIl ne peut plus attaquer !", - overlap: "{{pokemonNameWithAffix}} est\ndéjà gelé.", - heal: "{{pokemonNameWithAffix}} n’est\nplus gelé !" - }, - burn: { - name: "Brulure", - description: "brulé", - obtain: "{{pokemonNameWithAffix}} est\nbrulé !", - obtainSource: "{{pokemonNameWithAffix}} est\nbrulé par {{sourceText}} !", - activation: "{{pokemonNameWithAffix}}\nsouffre de sa brulure !", - overlap: "{{pokemonNameWithAffix}} est\ndéjà brulé.", - heal: "{{pokemonNameWithAffix}} n’est\nplus brulé !" - }, -} as const; diff --git a/src/locales/fr/terrain.json b/src/locales/fr/terrain.json new file mode 100644 index 00000000000..217db57075c --- /dev/null +++ b/src/locales/fr/terrain.json @@ -0,0 +1,16 @@ +{ + "misty": "Brumeux", + "mistyStartMessage": "La brume recouvre le terrain !", + "mistyClearMessage": "La brume qui recouvrait le terrain se dissipe…", + "mistyBlockMessage": "La brume enveloppe {{pokemonNameWithAffix}} !", + "electric": "Électrifié", + "electricStartMessage": "De l’électricité parcourt le terrain !", + "electricClearMessage": "L’électricité parcourant le terrain s’est dissipée…", + "grassy": "Herbu", + "grassyStartMessage": "Un beau gazon pousse sur le terrain !", + "grassyClearMessage": "Le gazon disparait…", + "psychic": "Psychique", + "psychicStartMessage": "Le sol se met à réagir de façon bizarre…", + "psychicClearMessage": "Le sol redevient normal !", + "defaultBlockMessage": "{{pokemonNameWithAffix}} est protégé\npar le Champ {{terrainName}} !" +} \ No newline at end of file diff --git a/src/locales/fr/trainer-classes.json b/src/locales/fr/trainer-classes.json new file mode 100644 index 00000000000..cebdadf09e9 --- /dev/null +++ b/src/locales/fr/trainer-classes.json @@ -0,0 +1,129 @@ +{ + "ace_trainer": "Topdresseur", + "ace_trainer_female": "Topdresseuse", + "ace_duo": "Topdresseurs", + "artist": "Artiste", + "artist_female": "Artiste", + "backers": "Pompom Girls", + "backpacker": "Randonneur", + "backpacker_female": "Randonneuse", + "backpackers": "Randonneurs", + "baker": "Boulangère", + "battle_girl": "Combattante", + "beauty": "Canon", + "beginners": "Débutants", + "biker": "Motard", + "black_belt": "Karatéka", + "breeder": "Éleveur", + "breeder_female": "Éleveuse", + "breeders": "Éleveurs", + "clerk": "Employé", + "clerk_female": "Employée", + "colleagues": "Collègues de Bureau", + "crush_kin": "Duo Baston", + "cyclist": "Cycliste", + "cyclist_female": "Cycliste", + "cyclists": "Cyclistes", + "dancer": "Danseur", + "dancer_female": "Danseuse", + "depot_agent": "Cheminot", + "doctor": "Docteur", + "doctor_female": "Docteure", + "firebreather": "Crache-Feu", + "fisherman": "Pêcheur", + "fisherman_female": "Pêcheuse", + "gentleman": "Gentleman", + "guitarist": "Guitariste", + "guitarist_female": "Guitariste", + "harlequin": "Clown", + "hiker": "Montagnard", + "hooligans": "Loubards", + "hoopster": "Basketteur", + "infielder": "Baseballeur", + "janitor": "Nettoyeur", + "lady": "Mademoiselle", + "lass": "Fillette", + "linebacker": "Quaterback", + "maid": "Gouvernante", + "madame": "Mondaine", + "medical_team": "Médecins", + "musician": "Musicien", + "hex_maniac": "Mystimaniac", + "nurse": "Infirmière", + "nursery_aide": "Institutrice", + "officer": "Policier", + "parasol_lady": "Sœur Parasol", + "pilot": "Pilote", + "pokéfan": "Poké Fan", + "pokéfan_female": "Poké Fan", + "pokéfan_family": "Couple de Pokéfans", + "preschooler": "Petit", + "preschooler_female": "Petite", + "preschoolers": "Petits", + "psychic": "Kinésiste", + "psychic_female": "Kinésiste", + "psychics": "Kinésistes", + "pokémon_ranger": "Pokémon Ranger", + "pokémon_ranger_female": "Pokémon Ranger", + "pokémon_rangers": "Pokémon Rangers", + "ranger": "Ranger", + "restaurant_staff": "Serveurs", + "rich": "Gentleman", + "rich_female": "Mondaine", + "rich_boy": "Gentleman", + "rich_couple": "Couple de Bourgeois", + "rich_kid": "Richard", + "rich_kid_female": "Mademoiselle", + "rich_kids": "Richards", + "roughneck": "Loubard", + "sailor": "Marin", + "scientist": "Scientifique", + "scientist_female": "Scientifique", + "scientists": "Scientifiques", + "smasher": "Tenniswoman", + "snow_worker": "Ouvrier Alpin", + "snow_worker_female": "Ouvrière Alpine", + "striker": "Footballeur", + "school_kid": "Élève", + "school_kid_female": "Élève", + "school_kids": "Élèves", + "swimmer": "Nageur", + "swimmer_female": "Nageuse", + "swimmers": "Nageurs", + "twins": "Jumelles", + "veteran": "Vénérable", + "veteran_female": "Vénérable", + "veteran_duo": "Vénérables", + "waiter": "Serveur", + "waitress": "Serveuse", + "worker": "Ouvrier", + "worker_female": "Ouvrière", + "workers": "Ouvriers", + "youngster": "Gamin", + "rocket_grunt": "Sbire de la Team Rocket", + "rocket_grunt_female": "Sbire de la Team Rocket", + "rocket_grunts": "Sbires de la Team Rocket", + "magma_grunt": "Sbire de la Team Magma", + "magma_grunt_female": "Sbire de la Team Magma", + "magma_grunts": "Sbires de la Team Magma", + "aqua_grunt": "Sbire de la Team Aqua", + "aqua_grunt_female": "Sbire de la Team Aqua", + "aqua_grunts": "Sbires de la Team Aqua", + "galactic_grunt": "Sbire de la Team Galaxie", + "galactic_grunt_female": "Sbire de la Team Galaxie", + "galactic_grunts": "Sbires de la Team Galaxie", + "plasma_grunt": "Sbire de la Team Plasma", + "plasma_grunt_female": "Sbire de la Team Plasma", + "plasma_grunts": "Sbires de la Team Plasma", + "flare_grunt": "Sbire de la Team Flare", + "flare_grunt_female": "Sbire de la Team Flare", + "flare_grunts": "Sbires de la Team Flare", + "aether_grunt": "Employé de la Fondation Æther", + "aether_grunt_female": "Employée de la Fondation Æther", + "aether_grunts": "Employés de la Fondation Æther", + "skull_grunt": "Sbire de la Team Skull", + "skull_grunt_female": "Sbire de la Team Skull", + "macro_grunt": "Employé de Macro Cosmos", + "macro_grunt_female": "Employée de Macro Cosmos", + "macro_grunts": "Employés de Macro Cosmos" +} diff --git a/src/locales/fr/trainer-names.json b/src/locales/fr/trainer-names.json new file mode 100644 index 00000000000..5864976cc34 --- /dev/null +++ b/src/locales/fr/trainer-names.json @@ -0,0 +1,164 @@ +{ + "brock": "Pierre", + "misty": "Ondine", + "lt_surge": "Major Bob", + "erika": "Erika", + "janine": "Jeannine", + "sabrina": "Morgane", + "blaine": "Auguste", + "giovanni": "Giovanni", + "falkner": "Albert", + "bugsy": "Hector", + "whitney": "Blanche", + "morty": "Mortimer", + "chuck": "Chuck", + "jasmine": "Jasmine", + "pryce": "Frédo", + "clair": "Sandra", + "roxanne": "Roxanne", + "brawly": "Bastien", + "wattson": "Voltère", + "flannery": "Adriane", + "norman": "Norman", + "winona": "Alizée", + "tate": "Lévy", + "liza": "Tatia", + "juan": "Juan", + "roark": "Pierrick", + "gardenia": "Flo", + "maylene": "Mélina", + "crasher_wake": "Lovis", + "fantina": "Kiméra", + "byron": "Charles", + "candice": "Gladys", + "volkner": "Tanguy", + "cilan": "Rachid", + "chili": "Armando", + "cress": "Noa", + "cheren": "Tcheren", + "lenora": "Aloé", + "roxie": "Strykna", + "burgh": "Artie", + "elesa": "Inezia", + "clay": "Bardane", + "skyla": "Carolina", + "brycen": "Zhu", + "drayden": "Watson", + "marlon": "Amana", + "viola": "Violette", + "grant": "Lino", + "korrina": "Cornélia", + "ramos": "Amaro", + "clemont": "Lem", + "valerie": "Valériane", + "olympia": "Astera", + "wulfric": "Urup", + "milo": "Percy", + "nessa": "Donna", + "kabu": "Kabu", + "bea": "Faïza", + "allister": "Alistair", + "opal": "Sally", + "bede": "Travis", + "gordie": "Chaz", + "melony": "Lona", + "piers": "Peterson", + "marnie": "Rosemary", + "raihan": "Roy", + "katy": "Éra", + "brassius": "Colza", + "iono": "Mashynn", + "kofu": "Kombu", + "larry": "Okuba", + "ryme": "Laïm", + "tulip": "Tully", + "grusha": "Grusha", + "lorelei": "Olga", + "bruno": "Aldo", + "agatha": "Agatha", + "lance": "Peter", + "will": "Clément", + "koga": "Koga", + "karen": "Marion", + "sidney": "Damien", + "phoebe": "Spectra", + "glacia": "Glacia", + "drake": "Aragon", + "aaron": "Aaron", + "bertha": "Terry", + "flint": "Adrien", + "lucian": "Lucio", + "shauntal": "Anis", + "marshal": "Kunz", + "grimsley": "Pieris", + "caitlin": "Percila", + "malva": "Malva", + "siebold": "Narcisse", + "wikstrom": "Tileo", + "drasna": "Dracéna", + "hala": "Pectorius", + "molayne": "Molène", + "olivia": "Alyxia", + "acerola": "Margie", + "kahili": "Kahili", + "rika": "Cayenn", + "poppy": "Popi", + "hassel": "Hassa", + "crispin": "Rubépin", + "amarys": "Nérine", + "lacey": "Taro", + "drayton": "Irido", + "blue": "Blue", + "red": "Red", + "steven": "Pierre Rochard", + "wallace": "Marc", + "cynthia": "Cynthia", + "alder": "Goyah", + "iris": "Iris", + "diantha": "Dianthéa", + "hau": "Tili", + "geeta": "Alisma", + "nemona": "Menzi", + "kieran": "Kass", + "leon": "Tarak", + "rival": "Gwenaël", + "rival_female": "Papina", + "archer": "Amos", + "ariana": "Ariane", + "proton": "Lance", + "petrel": "Lambda", + "tabitha": "Kelvin", + "courtney": "Courtney", + "shelly": "Sarah", + "matt": "Matthieu", + "mars": "Mars", + "jupiter": "Jupiter", + "saturn": "Saturne", + "zinzolin": "Lilien", + "rood": "Carmine", + "xerosic": "Xanthin", + "bryony": "Brasénie", + "faba": "Saubohne", + "plumeria": "Apocyne", + "oleana": "Liv", + + "maxie": "Max", + "archie": "Arthur", + "cyrus": "Hélio", + "ghetsis": "Ghetis", + "lysandre": "Lysandre", + "lusamine": "Elsa-Mina", + "guzma": "Guzma", + "rose": "Shehroz", + + "blue_red_double": "Blue & Red", + "red_blue_double": "Red & Blue", + "tate_liza_double": "Lévy & Tatia", + "liza_tate_double": "Tatia & Lévy", + "steven_wallace_double": "Pierre R. & Marc", + "wallace_steven_double": "Marc & Pierre R.", + "alder_iris_double": "Goyah & Iris", + "iris_alder_double": "Iris & Goyah", + "marnie_piers_double": "Rosemary & Peterson", + "piers_marnie_double": "Peterson & Rosemary" +} diff --git a/src/locales/fr/trainer-titles.json b/src/locales/fr/trainer-titles.json new file mode 100644 index 00000000000..6d966bbd9ec --- /dev/null +++ b/src/locales/fr/trainer-titles.json @@ -0,0 +1,38 @@ +{ + "elite_four": "Conseil 4", + "elite_four_female": "Conseil 4", + "gym_leader": "Champion d’Arène", + "gym_leader_female": "Championne d’Arène", + "gym_leader_double": "Duo de Champions", + "champion": "Maitre", + "champion_female": "Maitresse", + "champion_double": "Duo de Maitres", + "rival": "Rival·e", + "professor": "Professeur·e", + "frontier_brain": "Meneur·euse de Zone", + "rocket_boss": "Leader de la Team Rocket", + "magma_boss": "Leader de la Team Magma", + "aqua_boss": "Leader de la Team Aqua", + "galactic_boss": "Leader de la Team Galaxie", + "plasma_boss": "Leader de la Team Plasma", + "flare_boss": "Leader de la Team Flare", + "aether_boss": "Présidente d’Æther", + "skull_boss": "Boss de la Team Skull", + "macro_boss": "Président de Macro Cosmos", + + "rocket_admin": "Admin Team Rocket", + "rocket_admin_female": "Admin Team Rocket", + "magma_admin": "Admin Team Magma", + "magma_admin_female": "Admin Team Magma", + "aqua_admin": "Admin Team Aqua", + "aqua_admin_female": "Admin Team Aqua", + "galactic_commander": "Admin Team Galaxie", + "galactic_commander_female": "Admin Team Galaxie", + "plasma_sage": "Sage Plasma", + "plasma_admin": "Admin Team Plasma", + "flare_admin": "Manager de la Team Flare", + "flare_admin_female": "Manageuse de la Team Flare", + "aether_admin": "Directeur d’Æther", + "skull_admin": "Admin Team Skull", + "macro_admin": "Macro Cosmos" +} diff --git a/src/locales/fr/trainers.ts b/src/locales/fr/trainers.ts deleted file mode 100644 index e52921a5546..00000000000 --- a/src/locales/fr/trainers.ts +++ /dev/null @@ -1,323 +0,0 @@ -import {SimpleTranslationEntries} from "#app/interfaces/locales"; - -// Titles of special trainers like gym leaders, elite four, and the champion -export const titles: SimpleTranslationEntries = { - "elite_four": "Conseil 4", - "elite_four_female": "Conseil 4", - "gym_leader": "Champion d’Arène", - "gym_leader_female": "Championne d’Arène", - "gym_leader_double": "Duo de Champions", - "champion": "Maitre", - "champion_female": "Maitresse", - "champion_double": "Duo de Maitres", - "rival": "Rival·e", //Written in gender-inclusive language in wait of a potential split of the entry - "professor": "Professeur·e", //Written in gender-inclusive language in wait of a potential split of the entry - "frontier_brain": "Meneur·euse de Zone", //Written in gender-inclusive language in wait of a potential split of the entry - "rocket_boss": "Leader de la Team Rocket", - "magma_boss": "Leader de la Team Magma", - "aqua_boss": "Leader de la Team Aqua", - "galactic_boss": "Leader de la Team Galaxie", - "plasma_boss": "Leader de la Team Plasma", - "flare_boss": "Leader de la Team Flare", - - "rocket_admin": "Admin Team Rocket", - "rocket_admin_female": "Admin Team Rocket", - "magma_admin": "Admin Team Magma", - "magma_admin_female": "Admin Team Magma", - "aqua_admin": "Admin Team Aqua", - "aqua_admin_female": "Admin Team Aqua", - "galactic_commander": "Admin Team Galaxie", - "galactic_commander_female": "Admin Team Galaxie", - "plasma_sage": "Sage Plasma", - "plasma_admin": "Admin Team Plasma", - "flare_admin": "Manager de la Team Flare", - "flare_admin_female": "Manageuse de la Team Flare", - // Maybe if we add the evil teams we can add "Team Rocket" and "Team Aqua" etc. here as well as "Team Rocket Boss" and "Team Aqua Admin" etc. -} as const; - -// Titles of trainers like "Youngster" or "Lass" -export const trainerClasses: SimpleTranslationEntries = { - "ace_trainer": "Topdresseur", - "ace_trainer_female": "Topdresseuse", - "ace_duo": "Topdresseurs", - "artist": "Artiste", - "artist_female": "Artiste", - "backers": "Pompom Girls", - "backpacker": "Randonneur", - "backpacker_female": "Randonneuse", - "backpackers": "Randonneurs", - "baker": "Boulangère", - "battle_girl": "Combattante", - "beauty": "Canon", - "beginners": "Beginners", - "biker": "Motard", - "black_belt": "Karatéka", - "breeder": "Éleveur", - "breeder_female": "Éleveuse", - "breeders": "Éleveurs", - "clerk": "Employé", - "clerk_female": "Employée", - "colleagues": "Collègues de Bureau", - "crush_kin": "Duo Baston", - "cyclist": "Cycliste", - "cyclist_female": "Cycliste", - "cyclists": "Cyclistes", - "dancer": "Danseur", - "dancer_female": "Danseuse", - "depot_agent": "Cheminot", - "doctor": "Docteur", - "doctor_female": "Docteure", - "firebreather": "Firebreather", - "fisherman": "Pêcheur", - "fisherman_female": "Pêcheuse", - "gentleman": "Gentleman", - "guitarist": "Guitariste", - "guitarist_female": "Guitariste", - "harlequin": "Clown", - "hiker": "Montagnard", - "hooligans": "Loubards", - "hoopster": "Basketteur", - "infielder": "Baseballeur", - "janitor": "Nettoyeur", - "lady": "Mademoiselle", - "lass": "Fillette", - "linebacker": "Quaterback", - "maid": "Gouvernante", - "madame": "Mondaine", - "medical_team": "Médecins", - "musician": "Musicien", - "hex_maniac": "Mystimaniac", - "nurse": "Infirmière", - "nursery_aide": "Institutrice", - "officer": "Policier", - "parasol_lady": "Sœur Parasol", - "pilot": "Pilote", - "pokéfan": "Poké Fan", - "pokéfan_female": "Poké Fan", - "pokéfan_family": "Couple de Pokéfans", - "preschooler": "Petit", - "preschooler_female": "Petite", - "preschoolers": "Petits", - "psychic": "Kinésiste", - "psychic_female": "Kinésiste", - "psychics": "Kinésistes", - "pokémon_ranger": "Pokémon Ranger", - "pokémon_ranger_female": "Pokémon Ranger", - "pokémon_rangers": "Pokémon Rangers", - "ranger": "Ranger", - "restaurant_staff": "Serveurs", - "rich": "Rich", - "rich_female": "Mondaine", - "rich_boy": "Gentleman", - "rich_couple": "Couple de Bourgeois", - "rich_kid": "Richard", - "rich_kid_female": "Mademoiselle", - "rich_kids": "Richards", - "roughneck": "Loubard", - "sailor": "Marin", - "scientist": "Scientifique", - "scientist_female": "Scientifique", - "scientists": "Scientifiques", - "smasher": "Tenniswoman", - "snow_worker": "Ouvrier Alpin", - "snow_worker_female": "Ouvrière Alpine", - "striker": "Footballeur", - "school_kid": "Élève", - "school_kid_female": "Élève", - "school_kids": "Élèves", - "swimmer": "Nageur", - "swimmer_female": "Nageuse", - "swimmers": "Nageurs", - "twins": "Jumelles", - "veteran": "Vénérable", - "veteran_female": "Vénérable", - "veteran_duo": "Vénérables", - "waiter": "Serveur", - "waitress": "Serveuse", - "worker": "Ouvrier", - "worker_female": "Ouvrière", - "workers": "Ouvriers", - "youngster": "Gamin", - "rocket_grunt": "Sbire de la Team Rocket", - "rocket_grunt_female": "Sbire de la Team Rocket", - "rocket_grunts": "Sbires de la Team Rocket", - "magma_grunt": "Sbire de la Team Magma", - "magma_grunt_female": "Sbire de la Team Magma", - "magma_grunts": "Sbires de la Team Magma", - "aqua_grunt": "Sbire de la Team Aqua", - "aqua_grunt_female": "Sbire de la Team Aqua", - "aqua_grunts": "Sbires de la Team Aqua", - "galactic_grunt": "Sbire de la Team Galaxie", - "galactic_grunt_female": "Sbire de la Team Galaxie", - "galactic_grunts": "Sbires de la Team Galaxie", - "plasma_grunt": "Sbire de la Team Plasma", - "plasma_grunt_female": "Sbire de la Team Plasma", - "plasma_grunts": "Sbires de la Team Plasma", - "flare_grunt": "Sbire de la Team Flare", - "flare_grunt_female": "Sbire de la Team Flare", - "flare_grunts": "Sbires de la Team Flare", -} as const; - -// Names of special trainers like gym leaders, elite four, and the champion -export const trainerNames: SimpleTranslationEntries = { - "brock": "Pierre", - "misty": "Ondine", - "lt_surge": "Major Bob", - "erika": "Erika", - "janine": "Jeannine", - "sabrina": "Morgane", - "blaine": "Auguste", - "giovanni": "Giovanni", - "falkner": "Albert", - "bugsy": "Hector", - "whitney": "Blanche", - "morty": "Mortimer", - "chuck": "Chuck", - "jasmine": "Jasmine", - "pryce": "Frédo", - "clair": "Sandra", - "roxanne": "Roxanne", - "brawly": "Bastien", - "wattson": "Voltère", - "flannery": "Adriane", - "norman": "Norman", - "winona": "Alizée", - "tate": "Lévy", - "liza": "Tatia", - "juan": "Juan", - "roark": "Pierrick", - "gardenia": "Flo", - "maylene": "Mélina", - "crasher_wake": "Lovis", - "fantina": "Kiméra", - "byron": "Charles", - "candice": "Gladys", - "volkner": "Tanguy", - "cilan": "Rachid", - "chili": "Armando", - "cress": "Noa", - "cheren": "Tcheren", - "lenora": "Aloé", - "roxie": "Strykna", - "burgh": "Artie", - "elesa": "Inezia", - "clay": "Bardane", - "skyla": "Carolina", - "brycen": "Zhu", - "drayden": "Watson", - "marlon": "Amana", - "viola": "Violette", - "grant": "Lino", - "korrina": "Cornélia", - "ramos": "Amaro", - "clemont": "Lem", - "valerie": "Valériane", - "olympia": "Astera", - "wulfric": "Urup", - "milo": "Percy", - "nessa": "Donna", - "kabu": "Kabu", - "bea": "Faïza", - "allister": "Alistair", - "opal": "Sally", - "bede": "Travis", - "gordie": "Chaz", - "melony": "Lona", - "piers": "Peterson", - "marnie": "Rosemary", - "raihan": "Roy", - "katy": "Éra", - "brassius": "Colza", - "iono": "Mashynn", - "kofu": "Kombu", - "larry": "Okuba", - "ryme": "Laïm", - "tulip": "Tully", - "grusha": "Grusha", - "lorelei": "Olga", - "bruno": "Aldo", - "agatha": "Agatha", - "lance": "Peter", - "will": "Clément", - "koga": "Koga", - "karen": "Marion", - "sidney": "Damien", - "phoebe": "Spectra", - "glacia": "Glacia", - "drake": "Aragon", - "aaron": "Aaron", - "bertha": "Terry", - "flint": "Adrien", - "lucian": "Lucio", - "shauntal": "Anis", - "marshal": "Kunz", - "grimsley": "Pieris", - "caitlin": "Percila", - "malva": "Malva", - "siebold": "Narcisse", - "wikstrom": "Tileo", - "drasna": "Dracéna", - "hala": "Pectorius", - "molayne": "Molène", - "olivia": "Alyxia", - "acerola": "Margie", - "kahili": "Kahili", - "rika": "Cayenn", - "poppy": "Popi", - "hassel": "Hassa", - "crispin": "Rubépin", - "amarys": "Nérine", - "lacey": "Taro", - "drayton": "Irido", - "blue": "Blue", - "red": "Red", - "steven": "Pierre Rochard", - "wallace": "Marc", - "cynthia": "Cynthia", - "alder": "Goyah", - "iris": "Iris", - "diantha": "Dianthéa", - "hau": "Tili", - "geeta": "Alisma", - "nemona": "Menzi", - "kieran": "Kass", - "leon": "Tarak", - "rival": "Gwenaël", //Male breton name, a celtic language spoken in Brittany (France) and related to the word for "white" (gwenn). Finn meaning is also "white" in irish/goidelic which are also celtic languages. - "rival_female": "Papina", //Litteral translation of ivy, also used as Female name in a North-American indigenous language - "maxie": "Max", - "archie": "Arthur", - "cyrus": "Hélio", - "ghetsis": "Ghetis", - "lysandre": "Lysandre", - - // Evil Team Admins - "archer": "Amos", - "ariana": "Ariane", - "proton": "Lance", - "petrel": "Lambda", - "tabitha": "Kelvin", - "courtney": "Courtney", - "shelly": "Sarah", - "matt": "Matthieu", - "mars": "Mars", - "jupiter": "Jupiter", - "saturn": "Saturne", - "zinzolin": "Lilien", - "rood": "Carmine", - "xerosic": "Xanthin", - "bryony": "Brasénie", - - - - // Double Names - "blue_red_double": "Blue & Red", - "red_blue_double": "Red & Blue", - "tate_liza_double": "Lévy & Tatia", - "liza_tate_double": "Tatia & Lévy", - "steven_wallace_double": "Pierre R. & Marc", - "wallace_steven_double": "Marc & Pierre R.", - "alder_iris_double": "Goyah & Iris", - "iris_alder_double": "Iris & Goyah", - "marnie_piers_double": "Rosemary & Peterson", - "piers_marnie_double": "Peterson & Rosemary", -} as const; diff --git a/src/locales/fr/tutorial.json b/src/locales/fr/tutorial.json new file mode 100644 index 00000000000..53ec05c7d81 --- /dev/null +++ b/src/locales/fr/tutorial.json @@ -0,0 +1,10 @@ +{ + "intro": "Bienvenue dans PokéRogue, un fangame axé sur les combats Pokémon avec des éléments roguelite !\n$Ce jeu n’est pas monétisé et nous ne prétendons pas à la propriété de Pokémon, ni des éléments sous copyright\n$utilisés.\n$Ce jeu est toujours en développement, mais entièrement jouable.\n$Tout signalement de bugs passe par le serveur Discord.\n$Si le jeu est lent, vérifiez que l’Accélération Matérielle est activée dans les paramètres du navigateur.", + "accessMenu": "Accédez au menu avec M ou Échap lors de l’attente d’une\naction.\n$Il contient les paramètres et diverses fonctionnalités", + "menu": "Vous pouvez accéder aux paramètres depuis ce menu.\n$Vous pouvez entre autres y changer la vitesse du jeu ou le style de fenêtre.\n$Il y a également toute une variété d’autres fonctionnalités,\n$jetez-y un œil !", + "starterSelect": "Choisissez vos starters depuis cet écran avec Z ou Espace.\nIls formeront votre équipe de départ.\n$Chacun possède une valeur. Votre équipe peut avoir jusqu’à\n6 membres, tant que vous ne dépassez pas un cout de 10.\n$Vous pouvez aussi choisir le sexe, le talent et la forme en\nfonction des variants déjà capturés ou éclos.\n$Les IVs d’un starter sont les meilleurs de tous ceux de son\nespèce déjà obtenus. Essayez donc d’en obtenir plusieurs !", + "pokerus": "Chaque jour, 3 starters tirés aléatoirement ont un contour\n$violet. Si un starter que vous possédez l’a, essayez de\n$l’ajouter à votre équipe. Vérifiez bien son résumé !", + "statChange": "Les changements de stats restent à travers les combats tant que le Pokémon n’est pas rappelé.\n$Vos Pokémon sont rappelés avant un combat de Dresseur et avant d’entrer dans un nouveau biome.\n$Vous pouvez voir en combat les changements de stats d’un Pokémon en maintenant C ou Maj.\n$Vous pouvez également voir les capacités de l’adversaire en maintenant V.\n$Seules les capacités que le Pokémon a utilisées dans ce combat sont consultables.", + "selectItem": "Après chaque combat, vous avez le choix entre 3 objets\ntirés au sort. Vous ne pouvez en prendre qu’un.\n$Cela peut être des objets consommables, des objets à\nfaire tenir, ou des objets passifs aux effets permanents.\n$La plupart des effets des objets non-consommables se cumuleront de diverses manières.\n$Certains objets apparaitront s’ils peuvent être utilisés, comme les objets d’évolution.\n$Vous pouvez aussi transférer des objets tenus entre Pokémon en utilisant l’option de transfert.\n$L’option de transfert apparait en bas à droite dès que vous avez obtenu un objet à faire tenir.\n$Vous pouvez acheter des consommables avec de l’argent.\nPlus vous progressez, plus le choix sera varié.\n$Choisir un des objets gratuits déclenchera le prochain combat, donc faites bien tous vos achats avant.", + "eggGacha": "Depuis cet écran, vous pouvez échanger vos coupons\ncontre des Œufs de Pokémon.\n$Les Œufs éclosent après avoir remporté un certain nombre\nde combats. Les plus rares mettent plus de temps.\n$Les Pokémon éclos ne rejoindront pas votre équipe,\nmais seront ajoutés à vos starters.\n$Les Pokémon issus d’Œufs ont généralement de\nmeilleurs IVs que les Pokémon sauvages.\n$Certains Pokémon ne peuvent être obtenus\nque dans des Œufs.\n$Il y a 3 différentes machines à actionner avec différents\nbonus, prenez celle qui vous convient le mieux !" +} \ No newline at end of file diff --git a/src/locales/fr/tutorial.ts b/src/locales/fr/tutorial.ts deleted file mode 100644 index f44c05f7d5c..00000000000 --- a/src/locales/fr/tutorial.ts +++ /dev/null @@ -1,49 +0,0 @@ -import { SimpleTranslationEntries } from "#app/interfaces/locales"; - -export const tutorial: SimpleTranslationEntries = { - "intro": `Bienvenue dans PokéRogue, un fangame axé sur les combats Pokémon avec des éléments roguelite ! - $Ce jeu n’est pas monétisé et nous ne prétendons pas à la propriété de Pokémon, ni des éléments sous copyright - $utilisés. - $Ce jeu est toujours en développement, mais entièrement jouable. - $Tout signalement de bugs passe par le serveur Discord. - $Si le jeu est lent, vérifiez que l’Accélération Matérielle est activée dans les paramètres du navigateur.`, - - "accessMenu": `Accédez au menu avec M ou Échap lors de l’attente d’une\naction. - $Il contient les paramètres et diverses fonctionnalités`, - - "menu": `Vous pouvez accéder aux paramètres depuis ce menu. - $Vous pouvez entre autres y changer la vitesse du jeu ou le style de fenêtre. - $Il y a également toute une variété d’autres fonctionnalités, - $jetez-y un œil !`, - - "starterSelect": `Choisissez vos starters depuis cet écran avec Z ou Espace.\nIls formeront votre équipe de départ. - $Chacun possède une valeur. Votre équipe peut avoir jusqu’à\n6 membres, tant que vous ne dépassez pas un cout de 10. - $Vous pouvez aussi choisir le sexe, le talent et la forme en\nfonction des variants déjà capturés ou éclos. - $Les IVs d’un starter sont les meilleurs de tous ceux de son\nespèce déjà obtenus. Essayez donc d’en obtenir plusieurs !`, - - "pokerus": `Chaque jour, 3 starters tirés aléatoirement ont un contour - $violet. Si un starter que vous possédez l’a, essayez de - $l’ajouter à votre équipe. Vérifiez bien son résumé !`, - - "statChange": `Les changements de stats restent à travers les combats tant que le Pokémon n’est pas rappelé. - $Vos Pokémon sont rappelés avant un combat de Dresseur et avant d’entrer dans un nouveau biome. - $Vous pouvez voir en combat les changements de stats d’un Pokémon en maintenant C ou Maj. - $Vous pouvez également voir les capacités de l’adversaire en maintenant V. - $Seules les capacités que le Pokémon a utilisées dans ce combat sont consultables.`, - - "selectItem": `Après chaque combat, vous avez le choix entre 3 objets\ntirés au sort. Vous ne pouvez en prendre qu’un. - $Cela peut être des objets consommables, des objets à\nfaire tenir, ou des objets passifs aux effets permanents. - $La plupart des effets des objets non-consommables se cumuleront de diverses manières. - $Certains objets apparaitront s’ils peuvent être utilisés, comme les objets d’évolution. - $Vous pouvez aussi transférer des objets tenus entre Pokémon en utilisant l’option de transfert. - $L’option de transfert apparait en bas à droite dès que vous avez obtenu un objet à faire tenir. - $Vous pouvez acheter des consommables avec de l’argent.\nPlus vous progressez, plus le choix sera varié. - $Choisir un des objets gratuits déclenchera le prochain combat, donc faites bien tous vos achats avant.`, - - "eggGacha": `Depuis cet écran, vous pouvez échanger vos coupons\ncontre des Œufs de Pokémon. - $Les Œufs éclosent après avoir remporté un certain nombre\nde combats. Les plus rares mettent plus de temps. - $Les Pokémon éclos ne rejoindront pas votre équipe,\nmais seront ajoutés à vos starters. - $Les Pokémon issus d’Œufs ont généralement de\nmeilleurs IVs que les Pokémon sauvages. - $Certains Pokémon ne peuvent être obtenus\nque dans des Œufs. - $Il y a 3 différentes machines à actionner avec différents\nbonus, prenez celle qui vous convient le mieux !`, -} as const; diff --git a/src/locales/fr/voucher.ts b/src/locales/fr/voucher.json similarity index 63% rename from src/locales/fr/voucher.ts rename to src/locales/fr/voucher.json index 7cab3f90878..5e26adfcc49 100644 --- a/src/locales/fr/voucher.ts +++ b/src/locales/fr/voucher.json @@ -1,11 +1,9 @@ -import { SimpleTranslationEntries } from "#app/interfaces/locales"; - -export const voucher: SimpleTranslationEntries = { - "vouchers": "Coupons", - "eggVoucher": "Coupon Œuf", - "eggVoucherPlus": "Coupon Œuf +", - "eggVoucherPremium": "Coupon Œuf Premium", - "eggVoucherGold": "Coupon Œuf Or", - "locked": "Verrouillé", - "defeatTrainer": "Vaincre {{trainerName}}" -} as const; +{ + "vouchers": "Coupons", + "eggVoucher": "Coupon Œuf", + "eggVoucherPlus": "Coupon Œuf +", + "eggVoucherPremium": "Coupon Œuf Premium", + "eggVoucherGold": "Coupon Œuf Or", + "locked": "Verrouillé", + "defeatTrainer": "Vaincre {{trainerName}}" +} \ No newline at end of file diff --git a/src/locales/fr/weather.ts b/src/locales/fr/weather.json similarity index 63% rename from src/locales/fr/weather.ts rename to src/locales/fr/weather.json index 3427748480e..7cd8a83fd09 100644 --- a/src/locales/fr/weather.ts +++ b/src/locales/fr/weather.json @@ -1,66 +1,32 @@ -import { SimpleTranslationEntries } from "#app/interfaces/locales"; - -/** - * The weather namespace holds text displayed when weather is active during a battle - */ -export const weather: SimpleTranslationEntries = { +{ "sunnyStartMessage": "Les rayons du soleil brillent !", "sunnyLapseMessage": "Les rayons du soleil brillent fort !", "sunnyClearMessage": "Les rayons du soleil s’affaiblissent !", - "rainStartMessage": "Il commence à pleuvoir !", "rainLapseMessage": "La pluie continue de tomber !", "rainClearMessage": "La pluie s’est arrêtée !", - "sandstormStartMessage": "Une tempête de sable se prépare !", "sandstormLapseMessage": "La tempête de sable fait rage !", "sandstormClearMessage": "La tempête de sable se calme !", "sandstormDamageMessage": "La tempête de sable inflige des dégâts\nà {{pokemonNameWithAffix}} !", - "hailStartMessage": "Il commence à grêler !", "hailLapseMessage": "La grêle continue de tomber !", "hailClearMessage": "La grêle s’est arrêtée !", "hailDamageMessage": "La grêle inflige des dégâts\nà {{pokemonNameWithAffix}} !", - "snowStartMessage": "Il commence à neiger !", "snowLapseMessage": "Il y a une tempête de neige !", "snowClearMessage": "La neige s’est arrêtée !", - "fogStartMessage": "Le brouillard devient épais…", "fogLapseMessage": "Le brouillard continue !", "fogClearMessage": "Le brouillard s’est dissipé !", - "heavyRainStartMessage": "Une pluie battante s’abat soudainement !", "heavyRainLapseMessage": "La pluie battante continue.", "heavyRainClearMessage": "La pluie battante s’est arrêtée…", - "harshSunStartMessage": "Les rayons du soleil s’intensifient !", "harshSunLapseMessage": "Les rayons du soleil sont brulants !", "harshSunClearMessage": "Les rayons du soleil s’affaiblissent !", - "strongWindsStartMessage": "Un vent mystérieux se lève !", "strongWindsLapseMessage": "Le vent mystérieux souffle violemment !", "strongWindsEffectMessage": "Le courant aérien mystérieux affaiblit l’attaque !", "strongWindsClearMessage": "Le vent mystérieux s’est dissipé…" -}; - -export const terrain: SimpleTranslationEntries = { - "misty": "Brumeux", - "mistyStartMessage": "La brume recouvre le terrain !", - "mistyClearMessage": "La brume qui recouvrait le terrain se dissipe…", - "mistyBlockMessage": "La brume enveloppe {{pokemonNameWithAffix}} !", - - "electric": "Électrifié", - "electricStartMessage": "De l’électricité parcourt le terrain !", - "electricClearMessage": "L’électricité parcourant le terrain s’est dissipée…", - - "grassy": "Herbu", - "grassyStartMessage": "Un beau gazon pousse sur le terrain !", - "grassyClearMessage": "Le gazon disparait…", - - "psychic": "Psychique", - "psychicStartMessage": "Le sol se met à réagir de façon bizarre…", - "psychicClearMessage": "Le sol redevient normal !", - - "defaultBlockMessage": "{{pokemonNameWithAffix}} est protégé\npar le Champ {{terrainName}} !" -}; +} \ No newline at end of file diff --git a/src/locales/it/ability-trigger.json b/src/locales/it/ability-trigger.json new file mode 100644 index 00000000000..7f55b289c0b --- /dev/null +++ b/src/locales/it/ability-trigger.json @@ -0,0 +1,62 @@ +{ + "blockRecoilDamage": "{{abilityName}} di {{pokemonName}}\nl'ha protetto dal contraccolpo!", + "badDreams": "{{pokemonName}} è tormentato dagli incubi!", + "costar": "{{pokemonName}} ha copiato le modifiche alle statistiche\ndel suo alleato {{allyName}}!", + "iceFaceAvoidedDamage": "{{pokemonNameWithAffix}} ha evitato\ni danni grazie a {{abilityName}}!", + "perishBody": "{{abilityName}} di {{pokemonName}}\nmanderà KO entrambi i Pokémon dopo 3 turni!", + "poisonHeal": "{{pokemonName}} recupera alcuni PS\ncon {{abilityName}}!", + "trace": "L'abilità {{abilityName}} di {{targetName}}\nviene copiata da {{pokemonName}} con Traccia!", + "windPowerCharged": "Venire colpito da {{moveName}} ha caricato {{pokemonName}}!", + "quickDraw": "{{pokemonName}} agisce più rapidamente del normale grazie a Colpolesto!", + "blockItemTheft": "{{abilityName}} di {{pokemonNameWithAffix}}\nlo rende immune ai furti!", + "typeImmunityHeal": "{{pokemonName}} recupera alcuni PS\ncon {{abilityName}}!", + "nonSuperEffectiveImmunity": "{{pokemonNameWithAffix}} evita il colpo\ncon {{abilityName}}!", + "disguiseAvoidedDamage": "{{pokemonNameWithAffix}} è stato smascherato!", + "moveImmunity": "Non ha effetto su {{pokemonNameWithAffix}}!", + "reverseDrain": "{{pokemonNameWithAffix}} ha assorbito la melma!", + "postDefendTypeChange": "{{abilityName}} di {{pokemonNameWithAffix}}\nlo ha reso di tipo {{typeName}}!", + "postDefendContactDamage": "{{abilityName}} di {{pokemonNameWithAffix}} ha\ndanneggiato il Pokémon che l'ha attaccato!", + "postDefendAbilitySwap": "{{pokemonNameWithAffix}} scambia\nla sua abilità con il bersaglio", + "postDefendAbilityGive": "{{abilityName}} di {{pokemonNameWithAffix}}\nviene ceduta al bersaglio!", + "postDefendMoveDisable": "La mossa {{moveName}} di {{pokemonNameWithAffix}}\nè stata bloccata!", + "pokemonTypeChange": "{{pokemonNameWithAffix}} è diventato di tipo {{moveType}}!", + "postAttackStealHeldItem": "{{pokemonNameWithAffix}} ruba\n{{stolenItemType}} di {{defenderName}}!", + "postDefendStealHeldItem": "{{pokemonNameWithAffix}} ruba\n{{stolenItemType}} di {{attackerName}}!", + "copyFaintedAllyAbility": "L'abilità {{abilityName}} di {{pokemonNameWithAffix}} è passata all'alleato!", + "intimidateImmunity": "{{abilityName}} impedisce a {{pokemonNameWithAffix}} di\nessere intimidito!", + "postSummonAllyHeal": "{{pokemonNameWithAffix}} beve il\ntè che {{pokemonName}} gli ha preparato!", + "postSummonClearAllyStats": "Le statistiche di {{pokemonNameWithAffix}}\ntornano alla normalità!", + "postSummonTransform": "{{pokemonNameWithAffix}} assume le sembianze\ndi {{targetName}}!", + "protectStat": "{{abilityName}} di {{pokemonNameWithAffix}}\npreviene la riduzione del/della suo/a {{statName}}!", + "statusEffectImmunityWithName": "{{abilityName}} di {{pokemonNameWithAffix}}\nnon gli fa subire il/lo/la {{statusEffectName}}!", + "statusEffectImmunity": "{{abilityName}} di {{pokemonNameWithAffix}}\npreviene i problemi di stato!", + "battlerTagImmunity": "{{abilityName}} di {{pokemonNameWithAffix}}\npreviene {{battlerTagName}}!", + "forewarn": "{{pokemonNameWithAffix}} è stato messo in guardia da {{moveName}}!", + "frisk": "{{pokemonNameWithAffix}} perquisice {{opponentName}}\ne trova la sua abilità, {{opponentAbilityName}}!", + "postWeatherLapseHeal": "{{pokemonNameWithAffix}} recupera alcuni PS\ncon {{abilityName}}!", + "postWeatherLapseDamage": "{{pokemonNameWithAffix}} subisce danni\na causa della sua abilità, {{abilityName}}!", + "postTurnLootCreateEatenBerry": "{{pokemonNameWithAffix}} raccoglie una {{berryName}}!", + "postTurnHeal": "{{pokemonNameWithAffix}} recupera alcuni PS\ncon {{abilityName}}!", + "fetchBall": "{{pokemonNameWithAffix}} ha trovato una\n{{pokeballName}}!", + "healFromBerryUse": "{{abilityName}} di {{pokemonNameWithAffix}}\nristabilisce parte dei PS!", + "arenaTrap": "L’abilità {{abilityName}} di {{pokemonNameWithAffix}}\nimpedisce la sostituzione!", + "postBattleLoot": "{{pokemonNameWithAffix}} ha raccolto\nil/l'/lo/la {{itemName}}!", + "postFaintContactDamage": "{{abilityName}} di {{pokemonNameWithAffix}}\nferisce il Pokémon che lo ha attaccato!", + "postFaintHpDamage": "{{abilityName}} di {{pokemonNameWithAffix}}\nferisce il Pokémon che lo ha attaccato!", + "postSummonPressure": "{{pokemonNameWithAffix}} fa pressione!", + "weatherEffectDisappeared": "Le condizioni atmosferiche non hanno alcun effetto.", + "postSummonMoldBreaker": "{{pokemonNameWithAffix}} ha l’abilità Rompiforma!", + "postSummonAnticipation": "{{pokemonNameWithAffix}} rabbrividisce!", + "postSummonTurboblaze": "{{pokemonNameWithAffix}} emana un’aura infuocata!", + "postSummonTeravolt": "{{pokemonNameWithAffix}} emana un’aura repulsiva!", + "postSummonDarkAura": "L’abilità Auratetra di {{pokemonNameWithAffix}} è attiva.", + "postSummonFairyAura": "L’abilità Aurafolletto di {{pokemonNameWithAffix}} è attiva.", + "postSummonNeutralizingGas": "Il Gas Reagente di {{pokemonNameWithAffix}}\nsi diffonde tutt’intorno!", + "postSummonAsOneGlastrier": "{{pokemonNameWithAffix}} ha due abilità!", + "postSummonAsOneSpectrier": "{{pokemonNameWithAffix}} ha due abilità!", + "postSummonVesselOfRuin": "La/l'{{statName}} dei Pokémon intorno si indebolisce a causa\ndell'abilità Vaso Nefasto di {{pokemonNameWithAffix}}!", + "postSummonSwordOfRuin": "La/l'{{statName}} dei Pokémon intorno si indebolisce a causa\ndell'abilità Spada Nefasta di {{pokemonNameWithAffix}}!", + "postSummonTabletsOfRuin": "La/l'{{statName}} dei Pokémon intorno si indebolisce a causa\ndell'abilità Amuleto Nefasto di {{pokemonNameWithAffix}}!", + "postSummonBeadsOfRuin": "La/l'{{statName}} dei Pokémon intorno si indebolisce a causa\ndell'abilità Monile Nefasto di {{pokemonNameWithAffix}}!", + "preventBerryUse": "{{pokemonNameWithAffix}} non riesce a\nmangiare le bacche per l'agitazione!" +} \ No newline at end of file diff --git a/src/locales/it/ability-trigger.ts b/src/locales/it/ability-trigger.ts deleted file mode 100644 index 95db5cbf26c..00000000000 --- a/src/locales/it/ability-trigger.ts +++ /dev/null @@ -1,63 +0,0 @@ -import { SimpleTranslationEntries } from "#app/interfaces/locales"; - -export const abilityTriggers: SimpleTranslationEntries = { - "blockRecoilDamage" : "{{abilityName}} di {{pokemonName}}\nl'ha protetto dal contraccolpo!", - "badDreams": "{{pokemonName}} è tormentato dagli incubi!", - "costar": "{{pokemonName}} ha copiato le modifiche alle statistiche\ndel suo alleato {{allyName}}!", - "iceFaceAvoidedDamage": "{{pokemonNameWithAffix}} ha evitato\ni danni grazie a {{abilityName}}!", - "perishBody": "{{abilityName}} di {{pokemonName}}\nmanderà KO entrambi i Pokémon dopo 3 turni!", - "poisonHeal": "{{pokemonName}} recupera alcuni PS\ncon {{abilityName}}!", - "trace": "L'abilità {{abilityName}} di {{targetName}}\nviene copiata da {{pokemonName}} con Traccia!", - "windPowerCharged": "Venire colpito da {{moveName}} ha caricato {{pokemonName}}!", - "quickDraw":"{{pokemonName}} agisce più rapidamente del normale grazie a Colpolesto!", - "blockItemTheft": "{{abilityName}} di {{pokemonNameWithAffix}}\nlo rende immune ai furti!", - "typeImmunityHeal": "{{pokemonName}} recupera alcuni PS\ncon {{abilityName}}!", - "nonSuperEffectiveImmunity": "{{pokemonNameWithAffix}} evita il colpo\ncon {{abilityName}}!", - "disguiseAvoidedDamage": "{{pokemonNameWithAffix}} è stato smascherato!", - "moveImmunity": "Non ha effetto su {{pokemonNameWithAffix}}!", - "reverseDrain": "{{pokemonNameWithAffix}} ha assorbito la melma!", - "postDefendTypeChange": "{{abilityName}} di {{pokemonNameWithAffix}}\nlo ha reso di tipo {{typeName}}!", - "postDefendContactDamage": "{{abilityName}} di {{pokemonNameWithAffix}} ha\ndanneggiato il Pokémon che l'ha attaccato!", - "postDefendAbilitySwap": "{{pokemonNameWithAffix}} scambia\nla sua abilità con il bersaglio", - "postDefendAbilityGive": "{{abilityName}} di {{pokemonNameWithAffix}}\nviene ceduta al bersaglio!", - "postDefendMoveDisable": "La mossa {{moveName}} di {{pokemonNameWithAffix}}\nè stata bloccata!", - "pokemonTypeChange": "{{pokemonNameWithAffix}} è diventato di tipo {{moveType}}!", - "postAttackStealHeldItem": "{{pokemonNameWithAffix}} ruba\n{{stolenItemType}} di {{defenderName}}!", - "postDefendStealHeldItem": "{{pokemonNameWithAffix}} ruba\n{{stolenItemType}} di {{attackerName}}!", - "copyFaintedAllyAbility": "L'abilità {{abilityName}} di {{pokemonNameWithAffix}} è passata all'alleato!", - "intimidateImmunity": "{{pokemonNameWithAffix}}'s {{abilityName}} prevented it from being Intimidated!", - "postSummonAllyHeal": "{{pokemonNameWithAffix}} drank down all the\nmatcha that {{pokemonName}} made!", - "postSummonClearAllyStats": "{{pokemonNameWithAffix}}'s stat changes\nwere removed!", - "postSummonTransform": "{{pokemonNameWithAffix}} transformed\ninto {{targetName}}!", - "protectStat": "{{pokemonNameWithAffix}}'s {{abilityName}}\nprevents lowering its {{statName}}!", - "statusEffectImmunityWithName": "{{pokemonNameWithAffix}}'s {{abilityName}}\nprevents {{statusEffectName}}!", - "statusEffectImmunity": "{{pokemonNameWithAffix}}'s {{abilityName}}\nprevents status problems!", - "battlerTagImmunity": "{{pokemonNameWithAffix}}'s {{abilityName}}\nprevents {{battlerTagName}}!", - "forewarn": "{{pokemonNameWithAffix}} was forewarned about {{moveName}}!", - "frisk": "{{pokemonNameWithAffix}} frisked {{opponentName}}'s {{opponentAbilityName}}!", - "postWeatherLapseHeal": "{{pokemonNameWithAffix}}'s {{abilityName}}\nrestored its HP a little!", - "postWeatherLapseDamage": "{{pokemonNameWithAffix}} is hurt\nby its {{abilityName}}!", - "postTurnLootCreateEatenBerry": "{{pokemonNameWithAffix}} harvested one {{berryName}}!", - "postTurnHeal": "{{pokemonNameWithAffix}}'s {{abilityName}}\nrestored its HP a little!", - "fetchBall": "{{pokemonNameWithAffix}} found a\n{{pokeballName}}!", - "healFromBerryUse": "{{pokemonNameWithAffix}}'s {{abilityName}}\nrestored its HP!", - "arenaTrap": "{{pokemonNameWithAffix}}'s {{abilityName}}\nprevents switching!", - "postBattleLoot": "{{pokemonNameWithAffix}} picked up\n{{itemName}}!", - "postFaintContactDamage": "{{pokemonNameWithAffix}}'s {{abilityName}}\nhurt its attacker!", - "postFaintHpDamage": "{{pokemonNameWithAffix}}'s {{abilityName}}\nhurt its attacker!", - "postSummonPressure": "{{pokemonNameWithAffix}} is exerting its Pressure!", - "postSummonMoldBreaker": "{{pokemonNameWithAffix}} breaks the mold!", - "postSummonAnticipation": "{{pokemonNameWithAffix}} shuddered!", - "postSummonTurboblaze": "{{pokemonNameWithAffix}} is radiating a blazing aura!", - "postSummonTeravolt": "{{pokemonNameWithAffix}} is radiating a bursting aura!", - "postSummonDarkAura": "{{pokemonNameWithAffix}} is radiating a Dark Aura!", - "postSummonFairyAura": "{{pokemonNameWithAffix}} is radiating a Fairy Aura!", - "postSummonNeutralizingGas": "{{pokemonNameWithAffix}}'s Neutralizing Gas filled the area!", - "postSummonAsOneGlastrier": "{{pokemonNameWithAffix}} has two Abilities!", - "postSummonAsOneSpectrier": "{{pokemonNameWithAffix}} has two Abilities!", - "postSummonVesselOfRuin": "{{pokemonNameWithAffix}}'s Vessel of Ruin lowered the {{statName}}\nof all surrounding Pokémon!", - "postSummonSwordOfRuin": "{{pokemonNameWithAffix}}'s Sword of Ruin lowered the {{statName}}\nof all surrounding Pokémon!", - "postSummonTabletsOfRuin": "{{pokemonNameWithAffix}}'s Tablets of Ruin lowered the {{statName}}\nof all surrounding Pokémon!", - "postSummonBeadsOfRuin": "{{pokemonNameWithAffix}}'s Beads of Ruin lowered the {{statName}}\nof all surrounding Pokémon!", - "preventBerryUse": "{{pokemonNameWithAffix}} non riesce a\nmangiare le bacche per l'agitazione!", -} as const; diff --git a/src/locales/it/ability.json b/src/locales/it/ability.json new file mode 100644 index 00000000000..18eb133d824 --- /dev/null +++ b/src/locales/it/ability.json @@ -0,0 +1,1242 @@ +{ + "stench": { + "name": "Tanfo", + "description": "Quando il Pokémon attacca il bersaglio, può farlo tentennare grazie al cattivo odore che emana." + }, + "drizzle": { + "name": "Piovischio", + "description": "Quando il Pokémon entra in campo, attira la pioggia." + }, + "speedBoost": { + "name": "Acceleratore", + "description": "La Velocità aumenta a ogni turno." + }, + "battleArmor": { + "name": "Lottascudo", + "description": "Il Pokémon è protetto da una dura corazza che gli evita di subire brutti colpi." + }, + "sturdy": { + "name": "Vigore", + "description": "Evita che il Pokémon vada KO in un sol colpo se ha tutti i PS, e lo rende immune alle mosse che causano KO immediato." + }, + "damp": { + "name": "Umidità", + "description": "Aumenta l'umidità circostante, impedendo l'uso di Autodistruzione e di altre mosse esplosive." + }, + "limber": { + "name": "Scioltezza", + "description": "Il corpo flessibile del Pokémon gli impedisce di subire gli effetti della paralisi." + }, + "sandVeil": { + "name": "Sabbiavelo", + "description": "L'elusione aumenta durante le tempeste di sabbia." + }, + "static": { + "name": "Statico", + "description": "Il Pokémon si ricopre di elettricità statica e può causare paralisi a chi è entrato in contatto con lui." + }, + "voltAbsorb": { + "name": "Assorbivolt", + "description": "Se il Pokémon viene colpito da una mossa di tipo Elettro, recupera PS anziché subire danni." + }, + "waterAbsorb": { + "name": "Assorbacqua", + "description": "Se il Pokémon viene colpito da una mossa di tipo Acqua, recupera PS anziché subire danni." + }, + "oblivious": { + "name": "Indifferenza", + "description": "L'imperturbabilità del Pokémon lo protegge da infatuazioni, provocazioni e dall'effetto di Prepotenza." + }, + "cloudNine": { + "name": "Antimeteo", + "description": "Neutralizza gli effetti di tutte le condizioni atmosferiche." + }, + "compoundEyes": { + "name": "Insettocchi", + "description": "La precisione del Pokémon aumenta grazie ai suoi occhi composti." + }, + "insomnia": { + "name": "Insonnia", + "description": "Il Pokémon soffre d'insonnia e non può addormentarsi." + }, + "colorChange": { + "name": "Cambiacolore", + "description": "Il Pokémon acquisisce il tipo della mossa subita." + }, + "immunity": { + "name": "Immunità", + "description": "L'immunità naturale del Pokémon gli impedisce di essere avvelenato." + }, + "flashFire": { + "name": "Fuocardore", + "description": "Se il Pokémon subisce una mossa di tipo Fuoco, ne sfrutta il calore per potenziare le proprie mosse di tipo Fuoco." + }, + "shieldDust": { + "name": "Polvoscudo", + "description": "Il Pokémon è protetto da uno strato di scaglie che annulla gli effetti aggiuntivi delle mosse subite." + }, + "ownTempo": { + "name": "Mente Locale", + "description": "Il Pokémon affronta la vita al proprio ritmo e per questo non può essere confuso o subire l'effetto di Prepotenza." + }, + "suctionCups": { + "name": "Ventose", + "description": "Il Pokémon resiste a strumenti e mosse che causano la sostituzione appiccicandosi al terreno con le ventose." + }, + "intimidate": { + "name": "Prepotenza", + "description": "Quando il Pokémon entra in campo, la sua prepotenza crea soggezione, riducendo l'Attacco degli avversari intimiditi." + }, + "shadowTag": { + "name": "Pedinombra", + "description": "Il Pokémon impedisce la fuga o la sostituzione degli avversari di cui calpesta l'ombra." + }, + "roughSkin": { + "name": "Cartavetro", + "description": "Quando il Pokémon subisce un attacco, grazie alla sua pelle ruvida infligge a sua volta danni al Pokémon con cui è entrato in contatto." + }, + "wonderGuard": { + "name": "Magidifesa", + "description": "Un potere misterioso protegge il Pokémon e lo rende vulnerabile solo alle mosse superefficaci." + }, + "levitate": { + "name": "Levitazione", + "description": "La capacità di levitare conferisce al Pokémon immunità agli attacchi di tipo Terra." + }, + "effectSpore": { + "name": "Spargispora", + "description": "Può causare avvelenamento, paralisi o sonno a chi attacca il Pokémon entrando in contatto con lui." + }, + "synchronize": { + "name": "Sincronismo", + "description": "Se un Pokémon con questa abilità viene avvelenato, paralizzato o scottato, contagia con lo stesso problema di stato chi lo ha causato." + }, + "clearBody": { + "name": "Corpochiaro", + "description": "Impedisce la diminuzione delle statistiche causata da abilità o mosse di altri Pokémon." + }, + "naturalCure": { + "name": "Alternacura", + "description": "Quando il Pokémon lascia il campo, guarisce dai problemi di stato." + }, + "lightningRod": { + "name": "Parafulmine", + "description": "Il Pokémon attira e neutralizza le mosse di tipo Elettro, facendo aumentare il suo Attacco Speciale." + }, + "sereneGrace": { + "name": "Leggiadro", + "description": "Rende più probabili gli effetti aggiuntivi delle mosse." + }, + "swiftSwim": { + "name": "Nuotovelox", + "description": "Se piove, la Velocità aumenta." + }, + "chlorophyll": { + "name": "Clorofilla", + "description": "Se la luce del sole è intensa, la Velocità aumenta." + }, + "illuminate": { + "name": "Risplendi", + "description": "Illuminando l'ambiente circostante, impedisce che la precisione del pokémon sia diminuita." + }, + "trace": { + "name": "Traccia", + "description": "Quando il Pokémon entra in campo, copia l'abilità di un avversario." + }, + "hugePower": { + "name": "Macroforza", + "description": "Raddoppia la potenza degli attacchi fisici del Pokémon." + }, + "poisonPoint": { + "name": "Velenopunto", + "description": "Può avvelenare chi entra in contatto con il Pokémon." + }, + "innerFocus": { + "name": "Forza Interiore", + "description": "La capacità di concentrazione del Pokémon evita che tentenni per gli attacchi subiti e lo protegge dall'effetto di Prepotenza." + }, + "magmaArmor": { + "name": "Magmascudo", + "description": "Il magma riveste il corpo del Pokémon impedendogli di venire congelato." + }, + "waterVeil": { + "name": "Idrovelo", + "description": "Un velo d'acqua riveste il corpo del Pokémon impedendogli di venire scottato." + }, + "magnetPull": { + "name": "Magnetismo", + "description": "La carica magnetica attrae i Pokémon di tipo Acciaio impedendogli la fuga o la sostituzione." + }, + "soundproof": { + "name": "Antisuono", + "description": "Il Pokémon è dotato di una sorta di isolamento acustico che lo rende immune alle mosse basate sul suono." + }, + "rainDish": { + "name": "Copripioggia", + "description": "Il Pokémon recupera PS quando piove." + }, + "sandStream": { + "name": "Sabbiafiume", + "description": "Quando il Pokémon entra in campo, scatena una tempesta di sabbia." + }, + "pressure": { + "name": "Pressione", + "description": "Il Pokémon mette pressione agli avversari, facendogli consumare più PP." + }, + "thickFat": { + "name": "Grassospesso", + "description": "Il Pokémon è protetto da uno spesso strato di grasso che dimezza il danno causato da mosse di tipo Fuoco e Ghiaccio." + }, + "earlyBird": { + "name": "Sveglialampo", + "description": "Anche se il Pokémon si addormenta, può risvegliarsi due volte più velocemente." + }, + "flameBody": { + "name": "Corpodifuoco", + "description": "Può scottare chi entra in contatto con il Pokémon." + }, + "runAway": { + "name": "Fugafacile", + "description": "Garantisce la fuga dai Pokémon selvatici." + }, + "keenEye": { + "name": "Sguardofermo", + "description": "La vista acuta del Pokémon impedisce che la sua precisione diminuisca." + }, + "hyperCutter": { + "name": "Ipertaglio", + "description": "Le possenti chele o tenaglie di cui è dotato il Pokémon fanno sì che il suo Attacco non possa essere diminuito da altri." + }, + "pickup": { + "name": "Raccolta", + "description": "Il Pokémon può raccogliere strumenti usati da altri durante la lotta. Potrebbe raccogliere strumenti anche fuori dalla lotta." + }, + "truant": { + "name": "Pigrone", + "description": "Quando il Pokémon usa una mossa, nel turno successivo si riposerà." + }, + "hustle": { + "name": "Tuttafretta", + "description": "L'Attacco aumenta, ma la precisione diminuisce." + }, + "cuteCharm": { + "name": "Incantevole", + "description": "Può causare infatuazione a chi entra in contatto con il Pokémon." + }, + "plus": { + "name": "Più", + "description": "L'Attacco Speciale aumenta se ci sono alleati con l'abilità Meno o Più." + }, + "minus": { + "name": "Meno", + "description": "L'Attacco Speciale aumenta se ci sono alleati con l'abilità Meno o Più." + }, + "forecast": { + "name": "Previsioni", + "description": "Cambia il tipo del Pokémon in Acqua, Fuoco o Ghiaccio in base alle condizioni atmosferiche." + }, + "stickyHold": { + "name": "Antifurto", + "description": "Gli strumenti restano appiccicati al corpo adesivo del Pokémon e non possono essere rubati." + }, + "shedSkin": { + "name": "Muta", + "description": "Il Pokémon può guarire dai problemi di stato facendo la muta completa della pelle." + }, + "guts": { + "name": "Dentistretti", + "description": "Se il Pokémon è affetto da un problema di stato, tira fuori la grinta e aumenta il proprio Attacco." + }, + "marvelScale": { + "name": "Pelledura", + "description": "Se il Pokémon è affetto da un problema di stato, le squame sulla sua pelle si induriscono aumentando la sua Difesa." + }, + "liquidOoze": { + "name": "Melma", + "description": "La melma del Pokémon infligge danni a chi la assorbe, facendogli perdere PS a causa del fortissimo tanfo." + }, + "overgrow": { + "name": "Erbaiuto", + "description": "Quando al Pokémon rimangono pochi PS, la potenza delle sue mosse di tipo Erba aumenta." + }, + "blaze": { + "name": "Aiutofuoco", + "description": "Quando al Pokémon rimangono pochi PS, la potenza delle sue mosse di tipo Fuoco aumenta." + }, + "torrent": { + "name": "Acquaiuto", + "description": "Quando al Pokémon rimangono pochi PS, la potenza delle sue mosse di tipo Acqua aumenta." + }, + "swarm": { + "name": "Aiutinsetto", + "description": "Quando al Pokémon rimangono pochi PS, la potenza delle sue mosse di tipo Coleottero aumenta." + }, + "rockHead": { + "name": "Testadura", + "description": "Anche se il Pokémon usa delle mosse che causano un contraccolpo, non perde PS." + }, + "drought": { + "name": "Siccità", + "description": "Quando il Pokémon entra in campo, la luce solare diventa intensa." + }, + "arenaTrap": { + "name": "Trappoarena", + "description": "Impedisce la fuga agli avversari." + }, + "vitalSpirit": { + "name": "Spiritovivo", + "description": "Il Pokémon è talmente vivace che non può addormentarsi." + }, + "whiteSmoke": { + "name": "Fumochiaro", + "description": "Il Pokémon è protetto da un fumo chiaro che impedisce ai nemici di diminuire le sue statistiche." + }, + "purePower": { + "name": "Forzapura", + "description": "L'Attacco del Pokémon raddoppia grazie alla sua padronanza delle tecniche yoga." + }, + "shellArmor": { + "name": "Guscioscudo", + "description": "Il Pokémon è protetto da un guscio robusto che gli evita di subire brutti colpi." + }, + "airLock": { + "name": "Riparo", + "description": "Neutralizza gli effetti di tutte le condizioni atmosferiche." + }, + "tangledFeet": { + "name": "Intricopiedi", + "description": "Se il Pokémon è confuso, la sua elusione aumenta." + }, + "motorDrive": { + "name": "Elettrorapid", + "description": "Se il Pokémon viene colpito da una mossa di tipo Elettro, la neutralizza e sfrutta la carica elettrica per aumentare la propria Velocità." + }, + "rivalry": { + "name": "Antagonismo", + "description": "Rende più forti contro nemici dello stesso sesso, ma più deboli contro nemici di sesso opposto." + }, + "steadfast": { + "name": "Cuordeciso", + "description": "Se il Pokémon tentenna, il suo animo indomito si risveglia e la sua Velocità aumenta." + }, + "snowCloak": { + "name": "Mantelneve", + "description": "Se grandina, l'elusione aumenta." + }, + "gluttony": { + "name": "Voracità", + "description": "Il Pokémon non attende di aver perso molti PS per mangiare certe bacche, ma lo fa non appena i suoi PS scendono a metà o meno." + }, + "angerPoint": { + "name": "Grancollera", + "description": "Se il Pokémon subisce un brutto colpo, monta su tutte le furie e il suo Attacco aumenta al massimo." + }, + "unburden": { + "name": "Agiltecnica", + "description": "Se il Pokémon usa o perde uno strumento, la sua Velocità aumenta." + }, + "heatproof": { + "name": "Antifuoco", + "description": "Il corpo termoresistente del Pokémon dimezza i danni che subisce dalle mosse di tipo Fuoco." + }, + "simple": { + "name": "Disinvoltura", + "description": "Raddoppia le modifiche alle statistiche." + }, + "drySkin": { + "name": "Pellearsa", + "description": "Il Pokémon recupera PS se piove o se subisce mosse di tipo Acqua, ma perde PS con la luce solare intensa. Subisce più danni da mosse di tipo Fuoco." + }, + "download": { + "name": "Download", + "description": "Il Pokémon analizza Difesa e Difesa Speciale del nemico e, a seconda di qual è più bassa, aumenta il proprio Attacco o Attacco Speciale." + }, + "ironFist": { + "name": "Ferropugno", + "description": "Potenzia le mosse che utilizzano pugni." + }, + "poisonHeal": { + "name": "Velencura", + "description": "Se il Pokémon è avvelenato, recupera PS anziché perderli." + }, + "adaptability": { + "name": "Adattabilità", + "description": "Potenzia di molto le mosse dello stesso tipo del Pokémon." + }, + "skillLink": { + "name": "Abillegame", + "description": "Le mosse multicolpo mandano a segno sempre il massimo dei colpi possibili." + }, + "hydration": { + "name": "Idratazione", + "description": "Se piove, il Pokémon guarisce dai problemi di stato." + }, + "solarPower": { + "name": "Solarpotere", + "description": "Se la luce del sole è intensa, l'Attacco Speciale aumenta, ma il Pokémon perde PS a ogni turno." + }, + "quickFeet": { + "name": "Piedisvelti", + "description": "Se il Pokémon è affetto da un problema di stato, la Velocità aumenta." + }, + "normalize": { + "name": "Normalità", + "description": "Tutte le mosse del Pokémon diventano di tipo Normale e la loro potenza aumenta un po'." + }, + "sniper": { + "name": "Cecchino", + "description": "Aumenta ulteriormente i danni inflitti dai brutti colpi." + }, + "magicGuard": { + "name": "Magicscudo", + "description": "Il Pokémon subisce danni solo dagli attacchi." + }, + "noGuard": { + "name": "Nullodifesa", + "description": "Il Pokémon e chiunque lo attacchi abbassano la guardia e le loro mosse vanno sempre a segno." + }, + "stall": { + "name": "Rallentatore", + "description": "Il Pokémon agisce sempre per ultimo." + }, + "technician": { + "name": "Tecnico", + "description": "Potenzia le mosse più deboli del Pokémon." + }, + "leafGuard": { + "name": "Fogliamanto", + "description": "Se la luce del sole è intensa, evita i problemi di stato." + }, + "klutz": { + "name": "Impaccio", + "description": "Il Pokémon non può usare lo strumento che ha con sé." + }, + "moldBreaker": { + "name": "Rompiforma", + "description": "Quando il Pokémon attacca, ignora l'abilità del bersaglio se questa ha effetto sulle mosse." + }, + "superLuck": { + "name": "Supersorte", + "description": "L'incredibile fortuna del Pokémon aumenta la sua probabilità di infliggere brutti colpi." + }, + "aftermath": { + "name": "Scoppio", + "description": "Chi manda KO questo Pokémon con un attacco diretto subisce dei danni." + }, + "anticipation": { + "name": "Presagio", + "description": "Rivela se il nemico ha mosse pericolose." + }, + "forewarn": { + "name": "Premonizione", + "description": "Quando il Pokémon entra in campo, rivela una delle mosse del nemico." + }, + "unaware": { + "name": "Imprudenza", + "description": "Quando il Pokémon attacca, ignora le modifiche alle statistiche del nemico." + }, + "tintedLens": { + "name": "Lentifumé", + "description": "Permette alle mosse non molto efficaci di infliggere danni normalmente." + }, + "filter": { + "name": "Filtro", + "description": "Riduce i danni subiti dalle mosse superefficaci." + }, + "slowStart": { + "name": "Lentoinizio", + "description": "Dimezza per cinque turni l'Attacco e la Velocità." + }, + "scrappy": { + "name": "Nervisaldi", + "description": "Permette di colpire Pokémon di tipo Spettro con mosse di tipo Normale e Lotta." + }, + "stormDrain": { + "name": "Acquascolo", + "description": "Il Pokémon attira e neutralizza le mosse di tipo Acqua e fa aumentare il proprio Attacco Speciale." + }, + "iceBody": { + "name": "Corpogelo", + "description": "Se grandina, il Pokémon recupera PS." + }, + "solidRock": { + "name": "Solidroccia", + "description": "Riduce i danni subiti dalle mosse superefficaci." + }, + "snowWarning": { + "name": "Scendineve", + "description": "Quando il Pokémon entra in campo, causa l'inizio di una nevicata." + }, + "honeyGather": { + "name": "Mielincetta", + "description": "Il Pokémon raccoglie del miele dopo ogni battaglia. Esso viene poi venduto." + }, + "frisk": { + "name": "Indagine", + "description": "Quando entra in battaglia, il Pokémon può controllare il Potere di un Pokémon avversario." + }, + "reckless": { + "name": "Temerarietà", + "description": "Potenzia le mosse che causano contraccolpo." + }, + "multitype": { + "name": "Multitipo", + "description": "Cambia il tipo del Pokémon a seconda della lastra o del Cristallo Z che ha con sé." + }, + "flowerGift": { + "name": "Regalfiore", + "description": "Se la luce del sole è intensa, aumenta l'Attacco e la Difesa Speciale del Pokémon e dei suoi alleati." + }, + "badDreams": { + "name": "Sogniamari", + "description": "Infligge danni ai nemici addormentati." + }, + "pickpocket": { + "name": "Arraffalesto", + "description": "Se il Pokémon viene colpito da un attacco diretto, ruba lo strumento di chi lo ha attaccato." + }, + "sheerForce": { + "name": "Forzabruta", + "description": "Aumenta la potenza delle mosse, ma ne annulla gli effetti aggiuntivi." + }, + "contrary": { + "name": "Inversione", + "description": "Le modifiche alle statistiche hanno effetto inverso: le statistiche aumentano quando dovrebbero diminuire e viceversa." + }, + "unnerve": { + "name": "Agitazione", + "description": "Il nemico viene intimidito e non può mangiare bacche." + }, + "defiant": { + "name": "Agonismo", + "description": "L'Attacco aumenta di molto quando le statistiche diminuiscono a causa di un nemico." + }, + "defeatist": { + "name": "Sconforto", + "description": "Quando i PS scendono a metà o meno, il Pokémon si scoraggia e l'Attacco e l'Attacco Speciale vengono dimezzati." + }, + "cursedBody": { + "name": "Corpofunesto", + "description": "Può bloccare la mossa subita dal Pokémon." + }, + "healer": { + "name": "Curacuore", + "description": "A volte cura i problemi di stato degli alleati." + }, + "friendGuard": { + "name": "Amicoscudo", + "description": "I danni inflitti agli alleati del Pokémon vengono ridotti." + }, + "weakArmor": { + "name": "Sottilguscio", + "description": "Se il Pokémon subisce danni da mosse fisiche, la Difesa diminuisce e la Velocità aumenta di molto." + }, + "heavyMetal": { + "name": "Metalpesante", + "description": "Raddoppia il peso del Pokémon." + }, + "lightMetal": { + "name": "Metalleggero", + "description": "Dimezza il peso del Pokémon." + }, + "multiscale": { + "name": "Multisquame", + "description": "Se i PS sono al massimo, riduce il danno subito." + }, + "toxicBoost": { + "name": "Velenimpeto", + "description": "Se il Pokémon è avvelenato, la potenza delle sue mosse fisiche aumenta." + }, + "flareBoost": { + "name": "Bruciaimpeto", + "description": "Se il Pokémon è scottato, la potenza delle sue mosse speciali aumenta." + }, + "harvest": { + "name": "Coglibacche", + "description": "Può ricreare una bacca utilizzata." + }, + "telepathy": { + "name": "Telepatia", + "description": "Il Pokémon prevede ed evita gli attacchi degli alleati." + }, + "moody": { + "name": "Altalena", + "description": "A ogni turno, aumenta di molto una statistica e ne riduce un'altra." + }, + "overcoat": { + "name": "Copricapo", + "description": "Rende immuni ai danni da grandine e tempesta di sabbia, alle mosse Spora, Cottonspora, Sonnifero, Paralizzante e alle mosse “polvere”." + }, + "poisonTouch": { + "name": "Velentocco", + "description": "Il Pokémon può avvelenare il nemico al solo contatto." + }, + "regenerator": { + "name": "Rigenergia", + "description": "Il Pokémon recupera un po' di PS quando lascia il campo." + }, + "bigPecks": { + "name": "Pettinfuori", + "description": "Evita che la Difesa diminuisca." + }, + "sandRush": { + "name": "Remasabbia", + "description": "Se c'è una tempesta di sabbia, la Velocità aumenta." + }, + "wonderSkin": { + "name": "Splendicute", + "description": "Il Pokémon resiste più facilmente alle mosse di stato." + }, + "analytic": { + "name": "Ponderazione", + "description": "Se il Pokémon agisce per ultimo, la potenza della mossa aumenta." + }, + "illusion": { + "name": "Illusione", + "description": "Il Pokémon entra in campo con le sembianze dell'ultimo Pokémon della squadra." + }, + "imposter": { + "name": "Sosia", + "description": "Il Pokémon si trasforma nel nemico che ha davanti." + }, + "infiltrator": { + "name": "Intrapasso", + "description": "Il Pokémon attacca evitando le barriere e il sostituto del nemico." + }, + "mummy": { + "name": "Mummia", + "description": "Al contatto con il Pokémon, l'abilità del nemico diventa Mummia." + }, + "moxie": { + "name": "Arroganza", + "description": "Quando manda un nemico KO, il Pokémon si fa sicuro di sé e aumenta il proprio Attacco." + }, + "justified": { + "name": "Giustizia", + "description": "Quando il Pokémon viene colpito da una mossa di tipo Buio, il suo forte senso di giustizia fa sì che l'Attacco aumenti." + }, + "rattled": { + "name": "Paura", + "description": "Le mosse di tipo Buio, Spettro e Coleottero spaventano il Pokémon aumentandone la Velocità." + }, + "magicBounce": { + "name": "Magispecchio", + "description": "Il Pokémon respinge al mittente le mosse di stato senza subirne gli effetti." + }, + "sapSipper": { + "name": "Mangiaerba", + "description": "Se il Pokémon viene colpito da una mossa di tipo Erba, la neutralizza e aumenta il proprio Attacco." + }, + "prankster": { + "name": "Burla", + "description": "Le mosse di stato del Pokémon acquistano priorità alta." + }, + "sandForce": { + "name": "Silicoforza", + "description": "Potenzia le mosse di tipo Roccia, Terra e Acciaio durante le tempeste di sabbia." + }, + "ironBarbs": { + "name": "Spineferrate", + "description": "Se il Pokémon viene colpito da un attacco diretto, infligge danni a sua volta con le sue spine di ferro." + }, + "zenMode": { + "name": "Stato Zen", + "description": "Cambia la forma del Pokémon se i PS scendono a metà o meno." + }, + "victoryStar": { + "name": "Vittorstella", + "description": "Aumenta la precisione di tutta la squadra." + }, + "turboblaze": { + "name": "Piroturbina", + "description": "Quando il Pokémon attacca, ignora l'abilità del bersaglio se questa ha effetto sulle mosse." + }, + "teravolt": { + "name": "Teravolt", + "description": "Quando il Pokémon attacca, ignora l'abilità del bersaglio se questa ha effetto sulle mosse." + }, + "aromaVeil": { + "name": "Aromavelo", + "description": "Protegge tutta la squadra da effetti che ne limitano la libertà di scelta delle mosse." + }, + "flowerVeil": { + "name": "Fiorvelo", + "description": "Rende gli alleati di tipo Erba immuni alla diminuzione delle statistiche e ai problemi di stato." + }, + "cheekPouch": { + "name": "Guancegonfie", + "description": "Quando il Pokémon mangia una bacca, recupera anche dei PS." + }, + "protean": { + "name": "Mutatipo", + "description": "Cambia il tipo del Pokémon in quello della mossa che usa." + }, + "furCoat": { + "name": "Foltopelo", + "description": "Dimezza il danno subito dalle mosse fisiche." + }, + "magician": { + "name": "Prestigiatore", + "description": "Quando chi la usa colpisce un Pokémon con una mossa, gli ruba lo strumento." + }, + "bulletproof": { + "name": "Antiproiettile", + "description": "Protegge da alcune mosse a base di proiettili e bombe." + }, + "competitive": { + "name": "Tenacia", + "description": "L'Attacco Speciale aumenta di molto quando le statistiche diminuiscono a causa di un nemico." + }, + "strongJaw": { + "name": "Ferromascella", + "description": "La robusta mascella del Pokémon permette morsi molto potenti." + }, + "refrigerate": { + "name": "Pellegelo", + "description": "Le mosse di tipo Normale diventano di tipo Ghiaccio e la loro potenza aumenta un po'." + }, + "sweetVeil": { + "name": "Dolcevelo", + "description": "Rende il Pokémon e i suoi alleati immuni al sonno." + }, + "stanceChange": { + "name": "Accendilotta", + "description": "Assume la Forma Spada se usa una mossa d'attacco e la Forma Scudo se usa Scudo Reale." + }, + "galeWings": { + "name": "Aliraffica", + "description": "Se il Pokémon ha tutti i PS, le sue mosse di tipo Volante acquistano priorità alta." + }, + "megaLauncher": { + "name": "Megalancio", + "description": "Potenzia le mosse \"pulsar\", Forzasfera e Ondasana." + }, + "grassPelt": { + "name": "Peloderba", + "description": "In presenza di un Campo Erboso, la Difesa aumenta." + }, + "symbiosis": { + "name": "Simbiosi", + "description": "Se un alleato usa uno strumento, il Pokémon gli passa il proprio." + }, + "toughClaws": { + "name": "Unghiedure", + "description": "Potenzia le mosse che causano un contatto fisico." + }, + "pixilate": { + "name": "Pellefolletto", + "description": "Le mosse di tipo Normale diventano di tipo Folletto e la loro potenza aumenta un po'." + }, + "gooey": { + "name": "Viscosità", + "description": "Se il Pokémon viene colpito da un attacco diretto, la Velocità di chi l'ha colpito diminuisce." + }, + "aerilate": { + "name": "Pellecielo", + "description": "Le mosse di tipo Normale diventano di tipo Volante e la loro potenza aumenta un po'." + }, + "parentalBond": { + "name": "Amorefiliale", + "description": "Il Pokémon e il suo piccolo attaccano insieme." + }, + "darkAura": { + "name": "Auratetra", + "description": "Potenzia le mosse di tipo Buio di tutti i Pokémon." + }, + "fairyAura": { + "name": "Aurafolletto", + "description": "Potenzia le mosse di tipo Folletto di tutti i Pokémon." + }, + "auraBreak": { + "name": "Frangiaura", + "description": "Inverte gli effetti di tutte le aure riducendone la potenza." + }, + "primordialSea": { + "name": "Mare Primordiale", + "description": "Crea un clima che rende inefficaci gli attacchi di tipo Fuoco." + }, + "desolateLand": { + "name": "Terra Estrema", + "description": "Crea un clima che rende inefficaci gli attacchi di tipo Acqua." + }, + "deltaStream": { + "name": "Flusso Delta", + "description": "Crea un clima che annulla i punti deboli del tipo Volante." + }, + "stamina": { + "name": "Sopportazione", + "description": "Se il Pokémon subisce un attacco, la sua Difesa aumenta." + }, + "wimpOut": { + "name": "Fuggifuggi", + "description": "Se i PS scendono a metà o meno, il Pokémon si fa prendere dalla paura e abbandona la lotta in tutta fretta." + }, + "emergencyExit": { + "name": "Passoindietro", + "description": "Se i PS scendono a metà o meno, il Pokémon abbandona la lotta per sfuggire al pericolo." + }, + "waterCompaction": { + "name": "Idrorinforzo", + "description": "Se il Pokémon subisce una mossa di tipo Acqua, la sua Difesa aumenta di molto." + }, + "merciless": { + "name": "Spietatezza", + "description": "Gli attacchi sferrati su un bersaglio avvelenato producono sempre brutti colpi." + }, + "shieldsDown": { + "name": "Scudosoglia", + "description": "Se i PS scendono a metà o meno, il guscio si rompe e il Pokémon si prepara all'offensiva." + }, + "stakeout": { + "name": "Sorveglianza", + "description": "Raddoppia i danni inflitti a un bersaglio che è appena entrato in campo per sostituire un altro Pokémon." + }, + "waterBubble": { + "name": "Bolladacqua", + "description": "Riduce i danni subiti dalle mosse di tipo Fuoco e rende immuni alle scottature." + }, + "steelworker": { + "name": "Tempracciaio", + "description": "Aumenta la potenza delle mosse di tipo Acciaio." + }, + "berserk": { + "name": "Furore", + "description": "Se i PS scendono a metà o meno a causa di un attacco, l'Attacco Speciale aumenta." + }, + "slushRush": { + "name": "Spalaneve", + "description": "Se grandina, la Velocità aumenta." + }, + "longReach": { + "name": "Distacco", + "description": "Il Pokémon è in grado di usare tutte le sue mosse senza entrare in contatto diretto con il bersaglio." + }, + "liquidVoice": { + "name": "Idrovoce", + "description": "Le mosse del Pokémon basate sul suono diventano di tipo Acqua." + }, + "triage": { + "name": "Primacura", + "description": "Le mosse che ripristinano direttamente i PS del Pokémon acquistano priorità alta." + }, + "galvanize": { + "name": "Pellelettro", + "description": "Le mosse di tipo Normale diventano di tipo Elettro e la loro potenza aumenta un po'." + }, + "surgeSurfer": { + "name": "Codasurf", + "description": "In presenza di un Campo Elettrico, la Velocità raddoppia." + }, + "schooling": { + "name": "Banco", + "description": "Quando ha molti PS, il Pokémon forma un banco con i propri simili e si rafforza. Quando ne ha pochi, il banco si disperde." + }, + "disguise": { + "name": "Fantasmanto", + "description": "Il panno che ricopre il Pokémon lo protegge da un singolo attacco." + }, + "battleBond": { + "name": "Morfosintonia", + "description": "Se il Pokémon manda KO un nemico, il legame con l'Allenatore si rafforza, attivando la trasformazione in Greninja Forma Ash. Acqualame si potenzia." + }, + "powerConstruct": { + "name": "Sciamefusione", + "description": "Se i PS del Pokémon scendono a metà o meno, le cellule si raggruppano e gli permettono di assumere la Forma Perfetta." + }, + "corrosion": { + "name": "Corrosione", + "description": "Il Pokémon è in grado di avvelenare il bersaglio anche se questo è di tipo Acciaio o Veleno." + }, + "comatose": { + "name": "Sonno Assoluto", + "description": "Il Pokémon si trova in un costante stato di dormiveglia che gli impedisce di svegliarsi. Può attaccare anche da addormentato." + }, + "queenlyMajesty": { + "name": "Regalità", + "description": "L'aura di regalità del Pokémon impedisce al nemico di attaccarlo con mosse che hanno priorità alta." + }, + "innardsOut": { + "name": "Espellinterno", + "description": "Se il Pokémon viene mandato KO da un attacco, infligge a chi lo ha sferrato tanti danni quanti erano i suoi PS prima di ricevere il colpo." + }, + "dancer": { + "name": "Sincrodanza", + "description": "Permette al Pokémon di copiare immediatamente qualsiasi mossa basata sulla danza usata da un altro Pokémon in campo." + }, + "battery": { + "name": "Batteria", + "description": "Aumenta la potenza delle mosse speciali degli alleati." + }, + "fluffy": { + "name": "Morbidone", + "description": "Dimezza il danno causato dagli attacchi diretti di un nemico, ma raddoppia quello subito dalle mosse di tipo Fuoco." + }, + "dazzling": { + "name": "Corposgargiante", + "description": "Il Pokémon sbalordisce il nemico e non gli permette di attaccarlo con mosse che hanno priorità alta." + }, + "soulHeart": { + "name": "Cuoreanima", + "description": "Aumenta l'Attacco Speciale ogni volta che un Pokémon va KO." + }, + "tanglingHair": { + "name": "Boccolidoro", + "description": "Se il Pokémon viene colpito da un attacco diretto, la Velocità di chi l'ha colpito diminuisce." + }, + "receiver": { + "name": "Ricezione", + "description": "Il Pokémon acquisisce l'abilità di un alleato andato KO." + }, + "powerOfAlchemy": { + "name": "Forza Chimica", + "description": "Il Pokémon trasforma la propria abilità in quella di un alleato andato KO." + }, + "beastBoost": { + "name": "Ultraboost", + "description": "Quando il Pokémon manda KO un altro Pokémon, aumenta la propria statistica di punta." + }, + "rksSystem": { + "name": "Sistema Primevo", + "description": "Il tipo del Pokémon cambia in base alla ROM installata." + }, + "electricSurge": { + "name": "Elettrogenesi", + "description": "Quando il Pokémon entra in campo, lo trasforma in un Campo Elettrico." + }, + "psychicSurge": { + "name": "Psicogenesi", + "description": "Quando il Pokémon entra in campo, lo trasforma in un Campo Psichico." + }, + "mistySurge": { + "name": "Nebbiogenesi", + "description": "Quando il Pokémon entra in campo, lo trasforma in un Campo Nebbioso." + }, + "grassySurge": { + "name": "Erbogenesi", + "description": "Quando il Pokémon entra in campo, lo trasforma in un Campo Erboso." + }, + "fullMetalBody": { + "name": "Metalprotezione", + "description": "Impedisce la diminuzione delle statistiche causata da abilità o mosse di altri Pokémon." + }, + "shadowShield": { + "name": "Spettroguardia", + "description": "Se i PS sono al massimo, riduce il danno subito." + }, + "prismArmor": { + "name": "Scudoprisma", + "description": "Riduce i danni subiti dalle mosse superefficaci." + }, + "neuroforce": { + "name": "Cerebroforza", + "description": "Potenzia le mosse superefficaci." + }, + "intrepidSword": { + "name": "Spada Indomita", + "description": "Quando il Pokémon entra in campo, il suo Attacco aumenta." + }, + "dauntlessShield": { + "name": "Scudo Saldo", + "description": "Quando il Pokémon entra in campo, la sua Difesa aumenta." + }, + "libero": { + "name": "Libero", + "description": "Cambia il tipo del Pokémon in quello della mossa che usa." + }, + "ballFetch": { + "name": "Raccattapalle", + "description": "Se il Pokémon non ha uno strumento con sé, raccoglie la Poké Ball del primo tentativo di cattura fallito." + }, + "cottonDown": { + "name": "Lanugine", + "description": "Se il Pokémon subisce un attacco, sparge della lanugine che diminuisce la Velocità di tutti i Pokémon in campo tranne la sua." + }, + "propellerTail": { + "name": "Elicopinna", + "description": "Permette di ignorare gli effetti di mosse e abilità che attirano altre mosse." + }, + "mirrorArmor": { + "name": "Blindospecchio", + "description": "Rimanda al mittente le diminuzioni alle statistiche subite." + }, + "gulpMissile": { + "name": "Inghiottimissile", + "description": "Quando usa Surf o Sub, il Pokémon cattura una preda. Se subisce dei danni, la sputa fuori per attaccare." + }, + "stalwart": { + "name": "Volontà di Ferro", + "description": "Permette di ignorare gli effetti di mosse e abilità che attirano altre mosse." + }, + "steamEngine": { + "name": "Vapormacchina", + "description": "Se il Pokémon viene colpito da una mossa di tipo Acqua o Fuoco, la sua Velocità aumenta moltissimo." + }, + "punkRock": { + "name": "Punk Rock", + "description": "Aumenta la potenza delle mosse basate sul suono. Inoltre, dimezza i danni subiti dal Pokémon se viene colpito da tali mosse." + }, + "sandSpit": { + "name": "Sputasabbia", + "description": "Quando il Pokémon viene colpito da un attacco, scatena una tempesta di sabbia." + }, + "iceScales": { + "name": "Geloscaglie", + "description": "Scaglie di ghiaccio proteggono il Pokémon dalle mosse speciali, dimezzandone i danni subiti." + }, + "ripen": { + "name": "Maturazione", + "description": "Fa maturare le bacche raddoppiandone gli effetti." + }, + "iceFace": { + "name": "Gelofaccia", + "description": "Grazie al ghiaccio sulla testa, il Pokémon può incassare i danni causati da mosse fisiche, ma cambia forma. Torna al suo stato originale quando grandina." + }, + "powerSpot": { + "name": "Fonte Energetica", + "description": "Potenzia le mosse di chi si trova nelle immediate vicinanze." + }, + "mimicry": { + "name": "Mimetismo", + "description": "Il tipo del Pokémon cambia a seconda dello stato del campo." + }, + "screenCleaner": { + "name": "Annullabarriere", + "description": "Quando il Pokémon entra in campo, annulla l'effetto di Schermoluce, Riflesso e Velaurora sia per i nemici che per gli alleati." + }, + "steelySpirit": { + "name": "Spiritoferreo", + "description": "Potenzia gli attacchi di tipo Acciaio degli alleati." + }, + "perishBody": { + "name": "Ultimotocco", + "description": "Se il Pokémon viene colpito da un attacco diretto, dopo tre turni va KO assieme a chi lo ha attaccato. Se uno dei due viene sostituito, non va KO." + }, + "wanderingSpirit": { + "name": "Anima Errante", + "description": "Se il Pokémon subisce un attacco diretto, scambia la sua abilità con quella di chi lo ha colpito." + }, + "gorillaTactics": { + "name": "Vigorilla", + "description": "Aumenta l'Attacco ma costringe il Pokémon a usare solo la prima mossa selezionata." + }, + "neutralizingGas": { + "name": "Gas Reagente", + "description": "Se in campo c'è un Pokémon con Gas Reagente, gli effetti delle abilità di tutti gli altri Pokémon vengono annullati o non si attivano." + }, + "pastelVeil": { + "name": "Pastelvelo", + "description": "Protegge il Pokémon e gli alleati dai problemi di stato causati dal veleno." + }, + "hungerSwitch": { + "name": "Pancialterna", + "description": "Alla fine di ogni turno cambia forma, alternando tra Motivo Panciapiena e Motivo Panciavuota." + }, + "quickDraw": { + "name": "Pugni Invisibili", + "description": "Quando il Pokémon utilizza un attacco diretto, gli effetti di mosse protettive vengono ignorati." + }, + "unseenFist": { + "name": "Colpolesto", + "description": "A volte permette al Pokémon di agire per primo." + }, + "curiousMedicine": { + "name": "Stranofarmaco", + "description": "Quando il Pokémon entra in campo, sparge un farmaco dalla conchiglia che annulla le modifiche alle statistiche degli alleati." + }, + "transistor": { + "name": "Transistor", + "description": "Potenzia le mosse di tipo Elettro." + }, + "dragonsMaw": { + "name": "Dragomascelle", + "description": "Potenzia le mosse di tipo Drago." + }, + "chillingNeigh": { + "name": "Nitrito Bianco", + "description": "Quando manda KO il nemico, emette un nitrito agghiacciante, aumentando il proprio Attacco." + }, + "grimNeigh": { + "name": "Nitrito Nero", + "description": "Quando manda KO il nemico, emette un nitrito spettrale, aumentando il proprio Attacco Speciale." + }, + "asOneGlastrier": { + "name": "Sintonia Equina", + "description": "Il Pokémon ha una doppia abilità: Agitazione di Calyrex e Nitrito Bianco di Glastrier" + }, + "asOneSpectrier": { + "name": "Sintonia Equina", + "description": "Il Pokémon ha una doppia abilità: Agitazione di Calyrex e Nitrito Nero di Spectrier." + }, + "lingeringAroma": { + "name": "Odore Tenace", + "description": "L'abilità di chi entra in contatto con il Pokémon diventa Odore Tenace." + }, + "seedSower": { + "name": "Spargisemi", + "description": "Se il Pokémon subisce un attacco, il terreno entra nello stato di Campo Erboso." + }, + "thermalExchange": { + "name": "Termoscambio", + "description": "Impedisce al Pokémon di venire scottato e aumenta il suo Attacco se subisce una mossa di tipo Fuoco." + }, + "angerShell": { + "name": "Iraguscio", + "description": "Se un attacco subìto porta i PS a metà o meno, la rabbia del Pokémon ne riduce la Difesa e la Difesa Speciale ma ne aumenta l'Attacco, l'Attacco Speciale e la Velocità." + }, + "purifyingSalt": { + "name": "Sale Purificante", + "description": "Protegge il Pokémon dai problemi di stato e dimezza il danno causato dalle mosse di tipo Spettro." + }, + "wellBakedBody": { + "name": "Bentostato", + "description": "Se il Pokémon viene colpito da una mossa di tipo Fuoco, la neutralizza e aumenta di molto la propria Difesa." + }, + "windRider": { + "name": "Vento Propizio", + "description": "L'Attacco aumenta se vengono usate mosse come Ventoincoda o se il Pokémon è colpito da una mossa basata sul vento, che viene inoltre neutralizzata." + }, + "guardDog": { + "name": "Cane da Guardia", + "description": "Il Pokémon resiste a strumenti e mosse che causano la sostituzione. Se subisce l'effetto di Prepotenza, il suo Attacco aumenta." + }, + "rockyPayload": { + "name": "Portamassi", + "description": "Aumenta la potenza delle mosse di tipo Roccia." + }, + "windPower": { + "name": "Energia Eolica", + "description": "Se il Pokémon è esposto a una mossa basata sul vento, si carica di elettricità." + }, + "zeroToHero": { + "name": "Supercambio", + "description": "Se il Pokémon lascia il campo, assume la Forma Possente." + }, + "commander": { + "name": "Torre di Comando", + "description": "Quando il Pokémon entra in campo ed è presente un Dondozo alleato, si ficca nella bocca di quest'ultimo e da lì impartisce ordini." + }, + "electromorphosis": { + "name": "Convertivolt", + "description": "Se il Pokémon subisce danni, si carica di elettricità." + }, + "protosynthesis": { + "name": "Paleoattivazione", + "description": "Quando il Pokémon ha con sé una Capsula energetica o la luce solare è intensa, la sua statistica più alta aumenta." + }, + "quarkDrive": { + "name": "Carica Quark", + "description": "Quando il Pokémon ha con sé una Capsula energetica o è in presenza di un Campo Elettrico, la sua statistica più alta aumenta." + }, + "goodAsGold": { + "name": "Corpo Aureo", + "description": "Grazie al robusto e inossidabile corpo d'oro, il Pokémon è immune alle mosse di stato sferrate da altri." + }, + "vesselOfRuin": { + "name": "Vaso Nefasto", + "description": "L'Attacco Speciale degli altri Pokémon viene indebolito dal potere del vaso che richiama le disgrazie." + }, + "swordOfRuin": { + "name": "Spada Nefasta", + "description": "La Difesa degli altri Pokémon viene indebolita dal potere della spada che richiama le disgrazie." + }, + "tabletsOfRuin": { + "name": "Amuleto Nefasto", + "description": "L'Attacco degli altri Pokémon viene indebolito dal potere delle tavolette che richiamano le disgrazie." + }, + "beadsOfRuin": { + "name": "Monile Nefasto", + "description": "La Difesa Speciale degli altri Pokémon viene indebolita dal potere dei gioielli che richiamano le disgrazie." + }, + "orichalcumPulse": { + "name": "Ritmo d'Oricalco", + "description": "Quando il Pokémon entra in campo, la luce solare diventa intensa. Con la luce solare intensa l'Attacco del Pokémon aumenta grazie al battito dell'antichità." + }, + "hadronEngine": { + "name": "Motore Adronico", + "description": "Quando il Pokémon entra in campo, il terreno entra nello stato di Campo Elettrico. In presenza di Campo Elettrico l'Attacco Speciale aumenta grazie al motore del futuro." + }, + "opportunist": { + "name": "Scrocco", + "description": "Quando la statistica di un avversario viene aumentata, il Pokémon se ne approfitta e aumenta anche la propria." + }, + "cudChew": { + "name": "Ruminante", + "description": "Se il Pokémon mangia una bacca, alla fine del turno successivo questa risale dal suo stomaco per essere mangiata una seconda volta." + }, + "sharpness": { + "name": "Affilama", + "description": "Aumenta la potenza delle mosse che tagliano il bersaglio." + }, + "supremeOverlord": { + "name": "Generale Supremo", + "description": "Quando il Pokémon entra in campo, il suo Attacco e il suo Attacco Speciale aumentano un po' per ciascuno dei suoi compagni di squadra andati KO." + }, + "costar": { + "name": "Coprotagonismo", + "description": "Quando il Pokémon entra in campo, copia le modifiche alle statistiche dell'alleato." + }, + "toxicDebris": { + "name": "Mantossina", + "description": "Se il Pokémon subisce danni da mosse fisiche, piazza ai piedi degli avversari una trappola di punte velenose." + }, + "armorTail": { + "name": "Codarmatura", + "description": "La misteriosa coda che avvolge la testa del Pokémon impedisce agli avversari di usare mosse che hanno priorità alta contro di lui o i suoi alleati." + }, + "earthEater": { + "name": "Mangiaterra", + "description": "Se il Pokémon viene colpito da una mossa di tipo Terra, recupera PS anziché subire danni." + }, + "myceliumMight": { + "name": "Micoforza", + "description": "Quando usa mosse di stato, il Pokémon agisce più lentamente, ma ignora l'abilità del bersaglio se questa ha effetto su tali mosse." + }, + "mindsEye": { + "name": "Occhio Interiore", + "description": "Permette di colpire bersagli di tipo Spettro con mosse di tipo Normale e Lotta, di ignorare modifiche alla loro elusione e di non veder ridotta la propria precisione." + }, + "supersweetSyrup": { + "name": "Sciroppo Sublime", + "description": "La prima volta che il Pokémon entra in campo, spande un odore dolciastro che diminuisce l'elusione degli avversari." + }, + "hospitality": { + "name": "Ospitalità", + "description": "Quando un Pokémon con questa abilità entra in campo ricopre di attenzioni l'alleato, restituendogli un po' dei suoi PS." + }, + "toxicChain": { + "name": "Catena Tossica", + "description": "Quando il Pokémon colpisce il bersaglio con una mossa, può iperavvelenarlo grazie al potere della catena intrisa di tossine." + }, + "embodyAspectTeal": { + "name": "Albergamemorie", + "description": "Il Pokémon riporta alla mente vecchi ricordi, facendo risplendere la Maschera Focolare e aumentando il proprio Velocità." + }, + "embodyAspectWellspring": { + "name": "Albergamemorie", + "description": "Il Pokémon riporta alla mente vecchi ricordi, facendo risplendere la Maschera Fondamenta e aumentando la propria Difesa Speciale." + }, + "embodyAspectHearthflame": { + "name": "Albergamemorie", + "description": "Il Pokémon riporta alla mente vecchi ricordi, facendo risplendere la Maschera Fondamenta e aumentando la propria Attacco." + }, + "embodyAspectCornerstone": { + "name": "Albergamemorie", + "description": "Il Pokémon riporta alla mente vecchi ricordi, facendo risplendere la Maschera Fondamenta e aumentando la propria Difesa." + }, + "teraShift": { + "name": "Teramorfosi", + "description": "Quando il Pokémon entra in campo, assorbe l'energia circostante e assume la Forma Teracristal." + }, + "teraShell": { + "name": "Teraguscio", + "description": "Grazie al suo guscio che racchiude il potere di tutti i tipi, se il Pokémon ha tutti i PS, le mosse che subisce non saranno molto efficaci." + }, + "teraformZero": { + "name": "Zeroformazione", + "description": "Quando assume la Forma Astrale, Terapagos azzera tutti gli effetti delle condizioni atmosferiche e lo stato del terreno di lotta grazie al suo potere occulto." + }, + "poisonPuppeteer": { + "name": "\tMalia Tossica", + "description": "I Pokémon avvelenati dalle mosse di Pecharunt entreranno anche in stato di confusione." + } +} \ No newline at end of file diff --git a/src/locales/it/ability.ts b/src/locales/it/ability.ts deleted file mode 100644 index 3b98f1b389d..00000000000 --- a/src/locales/it/ability.ts +++ /dev/null @@ -1,1244 +0,0 @@ -import { AbilityTranslationEntries } from "#app/interfaces/locales.js"; - -export const ability: AbilityTranslationEntries = { - stench: { - name: "Tanfo", - description: "Quando il Pokémon attacca il bersaglio, può farlo tentennare grazie al cattivo odore che emana.", - }, - drizzle: { - name: "Piovischio", - description: "Quando il Pokémon entra in campo, attira la pioggia.", - }, - speedBoost: { - name: "Acceleratore", - description: "La Velocità aumenta a ogni turno.", - }, - battleArmor: { - name: "Lottascudo", - description: "Il Pokémon è protetto da una dura corazza che gli evita di subire brutti colpi.", - }, - sturdy: { - name: "Vigore", - description: "Evita che il Pokémon vada KO in un sol colpo se ha tutti i PS, e lo rende immune alle mosse che causano KO immediato.", - }, - damp: { - name: "Umidità", - description: "Aumenta l'umidità circostante, impedendo l'uso di Autodistruzione e di altre mosse esplosive.", - }, - limber: { - name: "Scioltezza", - description: "Il corpo flessibile del Pokémon gli impedisce di subire gli effetti della paralisi.", - }, - sandVeil: { - name: "Sabbiavelo", - description: "L'elusione aumenta durante le tempeste di sabbia.", - }, - static: { - name: "Statico", - description: "Il Pokémon si ricopre di elettricità statica e può causare paralisi a chi è entrato in contatto con lui.", - }, - voltAbsorb: { - name: "Assorbivolt", - description: "Se il Pokémon viene colpito da una mossa di tipo Elettro, recupera PS anziché subire danni.", - }, - waterAbsorb: { - name: "Assorbacqua", - description: "Se il Pokémon viene colpito da una mossa di tipo Acqua, recupera PS anziché subire danni.", - }, - oblivious: { - name: "Indifferenza", - description: "L'imperturbabilità del Pokémon lo protegge da infatuazioni, provocazioni e dall'effetto di Prepotenza.", - }, - cloudNine: { - name: "Antimeteo", - description: "Neutralizza gli effetti di tutte le condizioni atmosferiche.", - }, - compoundEyes: { - name: "Insettocchi", - description: "La precisione del Pokémon aumenta grazie ai suoi occhi composti.", - }, - insomnia: { - name: "Insonnia", - description: "Il Pokémon soffre d'insonnia e non può addormentarsi.", - }, - colorChange: { - name: "Cambiacolore", - description: "Il Pokémon acquisisce il tipo della mossa subita.", - }, - immunity: { - name: "Immunità", - description: "L'immunità naturale del Pokémon gli impedisce di essere avvelenato.", - }, - flashFire: { - name: "Fuocardore", - description: "Se il Pokémon subisce una mossa di tipo Fuoco, ne sfrutta il calore per potenziare le proprie mosse di tipo Fuoco.", - }, - shieldDust: { - name: "Polvoscudo", - description: "Il Pokémon è protetto da uno strato di scaglie che annulla gli effetti aggiuntivi delle mosse subite.", - }, - ownTempo: { - name: "Mente Locale", - description: "Il Pokémon affronta la vita al proprio ritmo e per questo non può essere confuso o subire l'effetto di Prepotenza.", - }, - suctionCups: { - name: "Ventose", - description: "Il Pokémon resiste a strumenti e mosse che causano la sostituzione appiccicandosi al terreno con le ventose.", - }, - intimidate: { - name: "Prepotenza", - description: "Quando il Pokémon entra in campo, la sua prepotenza crea soggezione, riducendo l'Attacco degli avversari intimiditi.", - }, - shadowTag: { - name: "Pedinombra", - description: "Il Pokémon impedisce la fuga o la sostituzione degli avversari di cui calpesta l'ombra.", - }, - roughSkin: { - name: "Cartavetro", - description: "Quando il Pokémon subisce un attacco, grazie alla sua pelle ruvida infligge a sua volta danni al Pokémon con cui è entrato in contatto.", - }, - wonderGuard: { - name: "Magidifesa", - description: "Un potere misterioso protegge il Pokémon e lo rende vulnerabile solo alle mosse superefficaci.", - }, - levitate: { - name: "Levitazione", - description: "La capacità di levitare conferisce al Pokémon immunità agli attacchi di tipo Terra.", - }, - effectSpore: { - name: "Spargispora", - description: "Può causare avvelenamento, paralisi o sonno a chi attacca il Pokémon entrando in contatto con lui.", - }, - synchronize: { - name: "Sincronismo", - description: "Se un Pokémon con questa abilità viene avvelenato, paralizzato o scottato, contagia con lo stesso problema di stato chi lo ha causato.", - }, - clearBody: { - name: "Corpochiaro", - description: "Impedisce la diminuzione delle statistiche causata da abilità o mosse di altri Pokémon.", - }, - naturalCure: { - name: "Alternacura", - description: "Quando il Pokémon lascia il campo, guarisce dai problemi di stato.", - }, - lightningRod: { - name: "Parafulmine", - description: "Il Pokémon attira e neutralizza le mosse di tipo Elettro, facendo aumentare il suo Attacco Speciale.", - }, - sereneGrace: { - name: "Leggiadro", - description: "Rende più probabili gli effetti aggiuntivi delle mosse.", - }, - swiftSwim: { - name: "Nuotovelox", - description: "Se piove, la Velocità aumenta.", - }, - chlorophyll: { - name: "Clorofilla", - description: "Se la luce del sole è intensa, la Velocità aumenta.", - }, - illuminate: { - name: "Risplendi", - description: "Illuminando l'ambiente circostante, impedisce che la precisione del pokémon sia diminuita.", - }, - trace: { - name: "Traccia", - description: "Quando il Pokémon entra in campo, copia l'abilità di un avversario.", - }, - hugePower: { - name: "Macroforza", - description: "Raddoppia la potenza degli attacchi fisici del Pokémon.", - }, - poisonPoint: { - name: "Velenopunto", - description: "Può avvelenare chi entra in contatto con il Pokémon.", - }, - innerFocus: { - name: "Forza Interiore", - description: "La capacità di concentrazione del Pokémon evita che tentenni per gli attacchi subiti e lo protegge dall'effetto di Prepotenza.", - }, - magmaArmor: { - name: "Magmascudo", - description: "Il magma riveste il corpo del Pokémon impedendogli di venire congelato.", - }, - waterVeil: { - name: "Idrovelo", - description: "Un velo d'acqua riveste il corpo del Pokémon impedendogli di venire scottato.", - }, - magnetPull: { - name: "Magnetismo", - description: "La carica magnetica attrae i Pokémon di tipo Acciaio impedendogli la fuga o la sostituzione.", - }, - soundproof: { - name: "Antisuono", - description: "Il Pokémon è dotato di una sorta di isolamento acustico che lo rende immune alle mosse basate sul suono.", - }, - rainDish: { - name: "Copripioggia", - description: "Il Pokémon recupera PS quando piove.", - }, - sandStream: { - name: "Sabbiafiume", - description: "Quando il Pokémon entra in campo, scatena una tempesta di sabbia.", - }, - pressure: { - name: "Pressione", - description: "Il Pokémon mette pressione agli avversari, facendogli consumare più PP.", - }, - thickFat: { - name: "Grassospesso", - description: "Il Pokémon è protetto da uno spesso strato di grasso che dimezza il danno causato da mosse di tipo Fuoco e Ghiaccio.", - }, - earlyBird: { - name: "Sveglialampo", - description: "Anche se il Pokémon si addormenta, può risvegliarsi due volte più velocemente.", - }, - flameBody: { - name: "Corpodifuoco", - description: "Può scottare chi entra in contatto con il Pokémon.", - }, - runAway: { - name: "Fugafacile", - description: "Garantisce la fuga dai Pokémon selvatici.", - }, - keenEye: { - name: "Sguardofermo", - description: "La vista acuta del Pokémon impedisce che la sua precisione diminuisca.", - }, - hyperCutter: { - name: "Ipertaglio", - description: "Le possenti chele o tenaglie di cui è dotato il Pokémon fanno sì che il suo Attacco non possa essere diminuito da altri.", - }, - pickup: { - name: "Raccolta", - description: "Il Pokémon può raccogliere strumenti usati da altri durante la lotta. Potrebbe raccogliere strumenti anche fuori dalla lotta.", - }, - truant: { - name: "Pigrone", - description: "Quando il Pokémon usa una mossa, nel turno successivo si riposerà.", - }, - hustle: { - name: "Tuttafretta", - description: "L'Attacco aumenta, ma la precisione diminuisce.", - }, - cuteCharm: { - name: "Incantevole", - description: "Può causare infatuazione a chi entra in contatto con il Pokémon.", - }, - plus: { - name: "Più", - description: "L'Attacco Speciale aumenta se ci sono alleati con l'abilità Meno o Più.", - }, - minus: { - name: "Meno", - description: "L'Attacco Speciale aumenta se ci sono alleati con l'abilità Meno o Più.", - }, - forecast: { - name: "Previsioni", - description: "Cambia il tipo del Pokémon in Acqua, Fuoco o Ghiaccio in base alle condizioni atmosferiche.", - }, - stickyHold: { - name: "Antifurto", - description: "Gli strumenti restano appiccicati al corpo adesivo del Pokémon e non possono essere rubati.", - }, - shedSkin: { - name: "Muta", - description: "Il Pokémon può guarire dai problemi di stato facendo la muta completa della pelle.", - }, - guts: { - name: "Dentistretti", - description: "Se il Pokémon è affetto da un problema di stato, tira fuori la grinta e aumenta il proprio Attacco.", - }, - marvelScale: { - name: "Pelledura", - description: "Se il Pokémon è affetto da un problema di stato, le squame sulla sua pelle si induriscono aumentando la sua Difesa.", - }, - liquidOoze: { - name: "Melma", - description: "La melma del Pokémon infligge danni a chi la assorbe, facendogli perdere PS a causa del fortissimo tanfo.", - }, - overgrow: { - name: "Erbaiuto", - description: "Quando al Pokémon rimangono pochi PS, la potenza delle sue mosse di tipo Erba aumenta.", - }, - blaze: { - name: "Aiutofuoco", - description: "Quando al Pokémon rimangono pochi PS, la potenza delle sue mosse di tipo Fuoco aumenta.", - }, - torrent: { - name: "Acquaiuto", - description: "Quando al Pokémon rimangono pochi PS, la potenza delle sue mosse di tipo Acqua aumenta.", - }, - swarm: { - name: "Aiutinsetto", - description: "Quando al Pokémon rimangono pochi PS, la potenza delle sue mosse di tipo Coleottero aumenta.", - }, - rockHead: { - name: "Testadura", - description: "Anche se il Pokémon usa delle mosse che causano un contraccolpo, non perde PS.", - }, - drought: { - name: "Siccità", - description: "Quando il Pokémon entra in campo, la luce solare diventa intensa.", - }, - arenaTrap: { - name: "Trappoarena", - description: "Impedisce la fuga agli avversari.", - }, - vitalSpirit: { - name: "Spiritovivo", - description: "Il Pokémon è talmente vivace che non può addormentarsi.", - }, - whiteSmoke: { - name: "Fumochiaro", - description: "Il Pokémon è protetto da un fumo chiaro che impedisce ai nemici di diminuire le sue statistiche.", - }, - purePower: { - name: "Forzapura", - description: "L'Attacco del Pokémon raddoppia grazie alla sua padronanza delle tecniche yoga.", - }, - shellArmor: { - name: "Guscioscudo", - description: "Il Pokémon è protetto da un guscio robusto che gli evita di subire brutti colpi.", - }, - airLock: { - name: "Riparo", - description: "Neutralizza gli effetti di tutte le condizioni atmosferiche.", - }, - tangledFeet: { - name: "Intricopiedi", - description: "Se il Pokémon è confuso, la sua elusione aumenta.", - }, - motorDrive: { - name: "Elettrorapid", - description: "Se il Pokémon viene colpito da una mossa di tipo Elettro, la neutralizza e sfrutta la carica elettrica per aumentare la propria Velocità.", - }, - rivalry: { - name: "Antagonismo", - description: "Rende più forti contro nemici dello stesso sesso, ma più deboli contro nemici di sesso opposto.", - }, - steadfast: { - name: "Cuordeciso", - description: "Se il Pokémon tentenna, il suo animo indomito si risveglia e la sua Velocità aumenta.", - }, - snowCloak: { - name: "Mantelneve", - description: "Se grandina, l'elusione aumenta.", - }, - gluttony: { - name: "Voracità", - description: "Il Pokémon non attende di aver perso molti PS per mangiare certe bacche, ma lo fa non appena i suoi PS scendono a metà o meno.", - }, - angerPoint: { - name: "Grancollera", - description: "Se il Pokémon subisce un brutto colpo, monta su tutte le furie e il suo Attacco aumenta al massimo.", - }, - unburden: { - name: "Agiltecnica", - description: "Se il Pokémon usa o perde uno strumento, la sua Velocità aumenta.", - }, - heatproof: { - name: "Antifuoco", - description: "Il corpo termoresistente del Pokémon dimezza i danni che subisce dalle mosse di tipo Fuoco.", - }, - simple: { - name: "Disinvoltura", - description: "Raddoppia le modifiche alle statistiche.", - }, - drySkin: { - name: "Pellearsa", - description: "Il Pokémon recupera PS se piove o se subisce mosse di tipo Acqua, ma perde PS con la luce solare intensa. Subisce più danni da mosse di tipo Fuoco.", - }, - download: { - name: "Download", - description: "Il Pokémon analizza Difesa e Difesa Speciale del nemico e, a seconda di qual è più bassa, aumenta il proprio Attacco o Attacco Speciale.", - }, - ironFist: { - name: "Ferropugno", - description: "Potenzia le mosse che utilizzano pugni.", - }, - poisonHeal: { - name: "Velencura", - description: "Se il Pokémon è avvelenato, recupera PS anziché perderli.", - }, - adaptability: { - name: "Adattabilità", - description: "Potenzia di molto le mosse dello stesso tipo del Pokémon.", - }, - skillLink: { - name: "Abillegame", - description: "Le mosse multicolpo mandano a segno sempre il massimo dei colpi possibili.", - }, - hydration: { - name: "Idratazione", - description: "Se piove, il Pokémon guarisce dai problemi di stato.", - }, - solarPower: { - name: "Solarpotere", - description: "Se la luce del sole è intensa, l'Attacco Speciale aumenta, ma il Pokémon perde PS a ogni turno.", - }, - quickFeet: { - name: "Piedisvelti", - description: "Se il Pokémon è affetto da un problema di stato, la Velocità aumenta.", - }, - normalize: { - name: "Normalità", - description: "Tutte le mosse del Pokémon diventano di tipo Normale e la loro potenza aumenta un po'.", - }, - sniper: { - name: "Cecchino", - description: "Aumenta ulteriormente i danni inflitti dai brutti colpi.", - }, - magicGuard: { - name: "Magicscudo", - description: "Il Pokémon subisce danni solo dagli attacchi.", - }, - noGuard: { - name: "Nullodifesa", - description: "Il Pokémon e chiunque lo attacchi abbassano la guardia e le loro mosse vanno sempre a segno.", - }, - stall: { - name: "Rallentatore", - description: "Il Pokémon agisce sempre per ultimo.", - }, - technician: { - name: "Tecnico", - description: "Potenzia le mosse più deboli del Pokémon.", - }, - leafGuard: { - name: "Fogliamanto", - description: "Se la luce del sole è intensa, evita i problemi di stato.", - }, - klutz: { - name: "Impaccio", - description: "Il Pokémon non può usare lo strumento che ha con sé.", - }, - moldBreaker: { - name: "Rompiforma", - description: "Quando il Pokémon attacca, ignora l'abilità del bersaglio se questa ha effetto sulle mosse.", - }, - superLuck: { - name: "Supersorte", - description: "L'incredibile fortuna del Pokémon aumenta la sua probabilità di infliggere brutti colpi.", - }, - aftermath: { - name: "Scoppio", - description: "Chi manda KO questo Pokémon con un attacco diretto subisce dei danni.", - }, - anticipation: { - name: "Presagio", - description: "Rivela se il nemico ha mosse pericolose.", - }, - forewarn: { - name: "Premonizione", - description: "Quando il Pokémon entra in campo, rivela una delle mosse del nemico.", - }, - unaware: { - name: "Imprudenza", - description: "Quando il Pokémon attacca, ignora le modifiche alle statistiche del nemico.", - }, - tintedLens: { - name: "Lentifumé", - description: "Permette alle mosse non molto efficaci di infliggere danni normalmente.", - }, - filter: { - name: "Filtro", - description: "Riduce i danni subiti dalle mosse superefficaci.", - }, - slowStart: { - name: "Lentoinizio", - description: "Dimezza per cinque turni l'Attacco e la Velocità.", - }, - scrappy: { - name: "Nervisaldi", - description: "Permette di colpire Pokémon di tipo Spettro con mosse di tipo Normale e Lotta.", - }, - stormDrain: { - name: "Acquascolo", - description: "Il Pokémon attira e neutralizza le mosse di tipo Acqua e fa aumentare il proprio Attacco Speciale.", - }, - iceBody: { - name: "Corpogelo", - description: "Se grandina, il Pokémon recupera PS.", - }, - solidRock: { - name: "Solidroccia", - description: "Riduce i danni subiti dalle mosse superefficaci.", - }, - snowWarning: { - name: "Scendineve", - description: "Quando il Pokémon entra in campo, causa l'inizio di una nevicata.", - }, - honeyGather: { - name: "Mielincetta", - description: "Il Pokémon raccoglie del miele dopo ogni battaglia. Esso viene poi venduto.", - }, - frisk: { - name: "Indagine", - description: "Quando entra in battaglia, il Pokémon può controllare il Potere di un Pokémon avversario.", - }, - reckless: { - name: "Temerarietà", - description: "Potenzia le mosse che causano contraccolpo.", - }, - multitype: { - name: "Multitipo", - description: "Cambia il tipo del Pokémon a seconda della lastra o del Cristallo Z che ha con sé.", - }, - flowerGift: { - name: "Regalfiore", - description: "Se la luce del sole è intensa, aumenta l'Attacco e la Difesa Speciale del Pokémon e dei suoi alleati.", - }, - badDreams: { - name: "Sogniamari", - description: "Infligge danni ai nemici addormentati.", - }, - pickpocket: { - name: "Arraffalesto", - description: "Se il Pokémon viene colpito da un attacco diretto, ruba lo strumento di chi lo ha attaccato.", - }, - sheerForce: { - name: "Forzabruta", - description: "Aumenta la potenza delle mosse, ma ne annulla gli effetti aggiuntivi.", - }, - contrary: { - name: "Inversione", - description: "Le modifiche alle statistiche hanno effetto inverso: le statistiche aumentano quando dovrebbero diminuire e viceversa.", - }, - unnerve: { - name: "Agitazione", - description: "Il nemico viene intimidito e non può mangiare bacche.", - }, - defiant: { - name: "Agonismo", - description: "L'Attacco aumenta di molto quando le statistiche diminuiscono a causa di un nemico.", - }, - defeatist: { - name: "Sconforto", - description: "Quando i PS scendono a metà o meno, il Pokémon si scoraggia e l'Attacco e l'Attacco Speciale vengono dimezzati.", - }, - cursedBody: { - name: "Corpofunesto", - description: "Può bloccare la mossa subita dal Pokémon.", - }, - healer: { - name: "Curacuore", - description: "A volte cura i problemi di stato degli alleati.", - }, - friendGuard: { - name: "Amicoscudo", - description: "I danni inflitti agli alleati del Pokémon vengono ridotti.", - }, - weakArmor: { - name: "Sottilguscio", - description: "Se il Pokémon subisce danni da mosse fisiche, la Difesa diminuisce e la Velocità aumenta di molto.", - }, - heavyMetal: { - name: "Metalpesante", - description: "Raddoppia il peso del Pokémon.", - }, - lightMetal: { - name: "Metalleggero", - description: "Dimezza il peso del Pokémon.", - }, - multiscale: { - name: "Multisquame", - description: "Se i PS sono al massimo, riduce il danno subito.", - }, - toxicBoost: { - name: "Velenimpeto", - description: "Se il Pokémon è avvelenato, la potenza delle sue mosse fisiche aumenta.", - }, - flareBoost: { - name: "Bruciaimpeto", - description: "Se il Pokémon è scottato, la potenza delle sue mosse speciali aumenta.", - }, - harvest: { - name: "Coglibacche", - description: "Può ricreare una bacca utilizzata.", - }, - telepathy: { - name: "Telepatia", - description: "Il Pokémon prevede ed evita gli attacchi degli alleati.", - }, - moody: { - name: "Altalena", - description: "A ogni turno, aumenta di molto una statistica e ne riduce un'altra.", - }, - overcoat: { - name: "Copricapo", - description: "Rende immuni ai danni da grandine e tempesta di sabbia, alle mosse Spora, Cottonspora, Sonnifero, Paralizzante e alle mosse “polvere”.", - }, - poisonTouch: { - name: "Velentocco", - description: "Il Pokémon può avvelenare il nemico al solo contatto.", - }, - regenerator: { - name: "Rigenergia", - description: "Il Pokémon recupera un po' di PS quando lascia il campo.", - }, - bigPecks: { - name: "Pettinfuori", - description: "Evita che la Difesa diminuisca.", - }, - sandRush: { - name: "Remasabbia", - description: "Se c'è una tempesta di sabbia, la Velocità aumenta.", - }, - wonderSkin: { - name: "Splendicute", - description: "Il Pokémon resiste più facilmente alle mosse di stato.", - }, - analytic: { - name: "Ponderazione", - description: "Se il Pokémon agisce per ultimo, la potenza della mossa aumenta.", - }, - illusion: { - name: "Illusione", - description: "Il Pokémon entra in campo con le sembianze dell'ultimo Pokémon della squadra.", - }, - imposter: { - name: "Sosia", - description: "Il Pokémon si trasforma nel nemico che ha davanti.", - }, - infiltrator: { - name: "Intrapasso", - description: "Il Pokémon attacca evitando le barriere e il sostituto del nemico.", - }, - mummy: { - name: "Mummia", - description: "Al contatto con il Pokémon, l'abilità del nemico diventa Mummia.", - }, - moxie: { - name: "Arroganza", - description: "Quando manda un nemico KO, il Pokémon si fa sicuro di sé e aumenta il proprio Attacco.", - }, - justified: { - name: "Giustizia", - description: "Quando il Pokémon viene colpito da una mossa di tipo Buio, il suo forte senso di giustizia fa sì che l'Attacco aumenti.", - }, - rattled: { - name: "Paura", - description: "Le mosse di tipo Buio, Spettro e Coleottero spaventano il Pokémon aumentandone la Velocità.", - }, - magicBounce: { - name: "Magispecchio", - description: "Il Pokémon respinge al mittente le mosse di stato senza subirne gli effetti.", - }, - sapSipper: { - name: "Mangiaerba", - description: "Se il Pokémon viene colpito da una mossa di tipo Erba, la neutralizza e aumenta il proprio Attacco.", - }, - prankster: { - name: "Burla", - description: "Le mosse di stato del Pokémon acquistano priorità alta.", - }, - sandForce: { - name: "Silicoforza", - description: "Potenzia le mosse di tipo Roccia, Terra e Acciaio durante le tempeste di sabbia.", - }, - ironBarbs: { - name: "Spineferrate", - description: "Se il Pokémon viene colpito da un attacco diretto, infligge danni a sua volta con le sue spine di ferro.", - }, - zenMode: { - name: "Stato Zen", - description: "Cambia la forma del Pokémon se i PS scendono a metà o meno.", - }, - victoryStar: { - name: "Vittorstella", - description: "Aumenta la precisione di tutta la squadra.", - }, - turboblaze: { - name: "Piroturbina", - description: "Quando il Pokémon attacca, ignora l'abilità del bersaglio se questa ha effetto sulle mosse.", - }, - teravolt: { - name: "Teravolt", - description: "Quando il Pokémon attacca, ignora l'abilità del bersaglio se questa ha effetto sulle mosse.", - }, - aromaVeil: { - name: "Aromavelo", - description: "Protegge tutta la squadra da effetti che ne limitano la libertà di scelta delle mosse.", - }, - flowerVeil: { - name: "Fiorvelo", - description: "Rende gli alleati di tipo Erba immuni alla diminuzione delle statistiche e ai problemi di stato.", - }, - cheekPouch: { - name: "Guancegonfie", - description: "Quando il Pokémon mangia una bacca, recupera anche dei PS.", - }, - protean: { - name: "Mutatipo", - description: "Cambia il tipo del Pokémon in quello della mossa che usa.", - }, - furCoat: { - name: "Foltopelo", - description: "Dimezza il danno subito dalle mosse fisiche.", - }, - magician: { - name: "Prestigiatore", - description: "Quando chi la usa colpisce un Pokémon con una mossa, gli ruba lo strumento.", - }, - bulletproof: { - name: "Antiproiettile", - description: "Protegge da alcune mosse a base di proiettili e bombe.", - }, - competitive: { - name: "Tenacia", - description: "L'Attacco Speciale aumenta di molto quando le statistiche diminuiscono a causa di un nemico.", - }, - strongJaw: { - name: "Ferromascella", - description: "La robusta mascella del Pokémon permette morsi molto potenti.", - }, - refrigerate: { - name: "Pellegelo", - description: "Le mosse di tipo Normale diventano di tipo Ghiaccio e la loro potenza aumenta un po'.", - }, - sweetVeil: { - name: "Dolcevelo", - description: "Rende il Pokémon e i suoi alleati immuni al sonno.", - }, - stanceChange: { - name: "Accendilotta", - description: "Assume la Forma Spada se usa una mossa d'attacco e la Forma Scudo se usa Scudo Reale.", - }, - galeWings: { - name: "Aliraffica", - description: "Se il Pokémon ha tutti i PS, le sue mosse di tipo Volante acquistano priorità alta.", - }, - megaLauncher: { - name: "Megalancio", - description: "Potenzia le mosse \"pulsar\", Forzasfera e Ondasana.", - }, - grassPelt: { - name: "Peloderba", - description: "In presenza di un Campo Erboso, la Difesa aumenta.", - }, - symbiosis: { - name: "Simbiosi", - description: "Se un alleato usa uno strumento, il Pokémon gli passa il proprio.", - }, - toughClaws: { - name: "Unghiedure", - description: "Potenzia le mosse che causano un contatto fisico.", - }, - pixilate: { - name: "Pellefolletto", - description: "Le mosse di tipo Normale diventano di tipo Folletto e la loro potenza aumenta un po'.", - }, - gooey: { - name: "Viscosità", - description: "Se il Pokémon viene colpito da un attacco diretto, la Velocità di chi l'ha colpito diminuisce.", - }, - aerilate: { - name: "Pellecielo", - description: "Le mosse di tipo Normale diventano di tipo Volante e la loro potenza aumenta un po'.", - }, - parentalBond: { - name: "Amorefiliale", - description: "Il Pokémon e il suo piccolo attaccano insieme.", - }, - darkAura: { - name: "Auratetra", - description: "Potenzia le mosse di tipo Buio di tutti i Pokémon.", - }, - fairyAura: { - name: "Aurafolletto", - description: "Potenzia le mosse di tipo Folletto di tutti i Pokémon.", - }, - auraBreak: { - name: "Frangiaura", - description: "Inverte gli effetti di tutte le aure riducendone la potenza.", - }, - primordialSea: { - name: "Mare Primordiale", - description: "Crea un clima che rende inefficaci gli attacchi di tipo Fuoco.", - }, - desolateLand: { - name: "Terra Estrema", - description: "Crea un clima che rende inefficaci gli attacchi di tipo Acqua.", - }, - deltaStream: { - name: "Flusso Delta", - description: "Crea un clima che annulla i punti deboli del tipo Volante.", - }, - stamina: { - name: "Sopportazione", - description: "Se il Pokémon subisce un attacco, la sua Difesa aumenta.", - }, - wimpOut: { - name: "Fuggifuggi", - description: "Se i PS scendono a metà o meno, il Pokémon si fa prendere dalla paura e abbandona la lotta in tutta fretta.", - }, - emergencyExit: { - name: "Passoindietro", - description: "Se i PS scendono a metà o meno, il Pokémon abbandona la lotta per sfuggire al pericolo.", - }, - waterCompaction: { - name: "Idrorinforzo", - description: "Se il Pokémon subisce una mossa di tipo Acqua, la sua Difesa aumenta di molto.", - }, - merciless: { - name: "Spietatezza", - description: "Gli attacchi sferrati su un bersaglio avvelenato producono sempre brutti colpi.", - }, - shieldsDown: { - name: "Scudosoglia", - description: "Se i PS scendono a metà o meno, il guscio si rompe e il Pokémon si prepara all'offensiva.", - }, - stakeout: { - name: "Sorveglianza", - description: "Raddoppia i danni inflitti a un bersaglio che è appena entrato in campo per sostituire un altro Pokémon.", - }, - waterBubble: { - name: "Bolladacqua", - description: "Riduce i danni subiti dalle mosse di tipo Fuoco e rende immuni alle scottature.", - }, - steelworker: { - name: "Tempracciaio", - description: "Aumenta la potenza delle mosse di tipo Acciaio.", - }, - berserk: { - name: "Furore", - description: "Se i PS scendono a metà o meno a causa di un attacco, l'Attacco Speciale aumenta.", - }, - slushRush: { - name: "Spalaneve", - description: "Se grandina, la Velocità aumenta.", - }, - longReach: { - name: "Distacco", - description: "Il Pokémon è in grado di usare tutte le sue mosse senza entrare in contatto diretto con il bersaglio.", - }, - liquidVoice: { - name: "Idrovoce", - description: "Le mosse del Pokémon basate sul suono diventano di tipo Acqua.", - }, - triage: { - name: "Primacura", - description: "Le mosse che ripristinano direttamente i PS del Pokémon acquistano priorità alta.", - }, - galvanize: { - name: "Pellelettro", - description: "Le mosse di tipo Normale diventano di tipo Elettro e la loro potenza aumenta un po'.", - }, - surgeSurfer: { - name: "Codasurf", - description: "In presenza di un Campo Elettrico, la Velocità raddoppia.", - }, - schooling: { - name: "Banco", - description: "Quando ha molti PS, il Pokémon forma un banco con i propri simili e si rafforza. Quando ne ha pochi, il banco si disperde.", - }, - disguise: { - name: "Fantasmanto", - description: "Il panno che ricopre il Pokémon lo protegge da un singolo attacco.", - }, - battleBond: { - name: "Morfosintonia", - description: "Se il Pokémon manda KO un nemico, il legame con l'Allenatore si rafforza, attivando la trasformazione in Greninja Forma Ash. Acqualame si potenzia.", - }, - powerConstruct: { - name: "Sciamefusione", - description: "Se i PS del Pokémon scendono a metà o meno, le cellule si raggruppano e gli permettono di assumere la Forma Perfetta.", - }, - corrosion: { - name: "Corrosione", - description: "Il Pokémon è in grado di avvelenare il bersaglio anche se questo è di tipo Acciaio o Veleno.", - }, - comatose: { - name: "Sonno Assoluto", - description: "Il Pokémon si trova in un costante stato di dormiveglia che gli impedisce di svegliarsi. Può attaccare anche da addormentato.", - }, - queenlyMajesty: { - name: "Regalità", - description: "L'aura di regalità del Pokémon impedisce al nemico di attaccarlo con mosse che hanno priorità alta.", - }, - innardsOut: { - name: "Espellinterno", - description: "Se il Pokémon viene mandato KO da un attacco, infligge a chi lo ha sferrato tanti danni quanti erano i suoi PS prima di ricevere il colpo.", - }, - dancer: { - name: "Sincrodanza", - description: "Permette al Pokémon di copiare immediatamente qualsiasi mossa basata sulla danza usata da un altro Pokémon in campo.", - }, - battery: { - name: "Batteria", - description: "Aumenta la potenza delle mosse speciali degli alleati.", - }, - fluffy: { - name: "Morbidone", - description: "Dimezza il danno causato dagli attacchi diretti di un nemico, ma raddoppia quello subito dalle mosse di tipo Fuoco.", - }, - dazzling: { - name: "Corposgargiante", - description: "Il Pokémon sbalordisce il nemico e non gli permette di attaccarlo con mosse che hanno priorità alta.", - }, - soulHeart: { - name: "Cuoreanima", - description: "Aumenta l'Attacco Speciale ogni volta che un Pokémon va KO.", - }, - tanglingHair: { - name: "Boccolidoro", - description: "Se il Pokémon viene colpito da un attacco diretto, la Velocità di chi l'ha colpito diminuisce.", - }, - receiver: { - name: "Ricezione", - description: "Il Pokémon acquisisce l'abilità di un alleato andato KO.", - }, - powerOfAlchemy: { - name: "Forza Chimica", - description: "Il Pokémon trasforma la propria abilità in quella di un alleato andato KO.", - }, - beastBoost: { - name: "Ultraboost", - description: "Quando il Pokémon manda KO un altro Pokémon, aumenta la propria statistica di punta.", - }, - rksSystem: { - name: "Sistema Primevo", - description: "Il tipo del Pokémon cambia in base alla ROM installata.", - }, - electricSurge: { - name: "Elettrogenesi", - description: "Quando il Pokémon entra in campo, lo trasforma in un Campo Elettrico.", - }, - psychicSurge: { - name: "Psicogenesi", - description: "Quando il Pokémon entra in campo, lo trasforma in un Campo Psichico.", - }, - mistySurge: { - name: "Nebbiogenesi", - description: "Quando il Pokémon entra in campo, lo trasforma in un Campo Nebbioso.", - }, - grassySurge: { - name: "Erbogenesi", - description: "Quando il Pokémon entra in campo, lo trasforma in un Campo Erboso.", - }, - fullMetalBody: { - name: "Metalprotezione", - description: "Impedisce la diminuzione delle statistiche causata da abilità o mosse di altri Pokémon.", - }, - shadowShield: { - name: "Spettroguardia", - description: "Se i PS sono al massimo, riduce il danno subito.", - }, - prismArmor: { - name: "Scudoprisma", - description: "Riduce i danni subiti dalle mosse superefficaci.", - }, - neuroforce: { - name: "Cerebroforza", - description: "Potenzia le mosse superefficaci.", - }, - intrepidSword: { - name: "Spada Indomita", - description: "Quando il Pokémon entra in campo, il suo Attacco aumenta.", - }, - dauntlessShield: { - name: "Scudo Saldo", - description: "Quando il Pokémon entra in campo, la sua Difesa aumenta.", - }, - libero: { - name: "Libero", - description: "Cambia il tipo del Pokémon in quello della mossa che usa.", - }, - ballFetch: { - name: "Raccattapalle", - description: "Se il Pokémon non ha uno strumento con sé, raccoglie la Poké Ball del primo tentativo di cattura fallito.", - }, - cottonDown: { - name: "Lanugine", - description: "Se il Pokémon subisce un attacco, sparge della lanugine che diminuisce la Velocità di tutti i Pokémon in campo tranne la sua.", - }, - propellerTail: { - name: "Elicopinna", - description: "Permette di ignorare gli effetti di mosse e abilità che attirano altre mosse.", - }, - mirrorArmor: { - name: "Blindospecchio", - description: "Rimanda al mittente le diminuzioni alle statistiche subite.", - }, - gulpMissile: { - name: "Inghiottimissile", - description: "Quando usa Surf o Sub, il Pokémon cattura una preda. Se subisce dei danni, la sputa fuori per attaccare.", - }, - stalwart: { - name: "Volontà di Ferro", - description: "Permette di ignorare gli effetti di mosse e abilità che attirano altre mosse.", - }, - steamEngine: { - name: "Vapormacchina", - description: "Se il Pokémon viene colpito da una mossa di tipo Acqua o Fuoco, la sua Velocità aumenta moltissimo.", - }, - punkRock: { - name: "Punk Rock", - description: "Aumenta la potenza delle mosse basate sul suono. Inoltre, dimezza i danni subiti dal Pokémon se viene colpito da tali mosse.", - }, - sandSpit: { - name: "Sputasabbia", - description: "Quando il Pokémon viene colpito da un attacco, scatena una tempesta di sabbia.", - }, - iceScales: { - name: "Geloscaglie", - description: "Scaglie di ghiaccio proteggono il Pokémon dalle mosse speciali, dimezzandone i danni subiti.", - }, - ripen: { - name: "Maturazione", - description: "Fa maturare le bacche raddoppiandone gli effetti.", - }, - iceFace: { - name: "Gelofaccia", - description: "Grazie al ghiaccio sulla testa, il Pokémon può incassare i danni causati da mosse fisiche, ma cambia forma. Torna al suo stato originale quando grandina.", - }, - powerSpot: { - name: "Fonte Energetica", - description: "Potenzia le mosse di chi si trova nelle immediate vicinanze.", - }, - mimicry: { - name: "Mimetismo", - description: "Il tipo del Pokémon cambia a seconda dello stato del campo.", - }, - screenCleaner: { - name: "Annullabarriere", - description: "Quando il Pokémon entra in campo, annulla l'effetto di Schermoluce, Riflesso e Velaurora sia per i nemici che per gli alleati.", - }, - steelySpirit: { - name: "Spiritoferreo", - description: "Potenzia gli attacchi di tipo Acciaio degli alleati.", - }, - perishBody: { - name: "Ultimotocco", - description: "Se il Pokémon viene colpito da un attacco diretto, dopo tre turni va KO assieme a chi lo ha attaccato. Se uno dei due viene sostituito, non va KO.", - }, - wanderingSpirit: { - name: "Anima Errante", - description: "Se il Pokémon subisce un attacco diretto, scambia la sua abilità con quella di chi lo ha colpito.", - }, - gorillaTactics: { - name: "Vigorilla", - description: "Aumenta l'Attacco ma costringe il Pokémon a usare solo la prima mossa selezionata.", - }, - neutralizingGas: { - name: "Gas Reagente", - description: "Se in campo c'è un Pokémon con Gas Reagente, gli effetti delle abilità di tutti gli altri Pokémon vengono annullati o non si attivano.", - }, - pastelVeil: { - name: "Pastelvelo", - description: "Protegge il Pokémon e gli alleati dai problemi di stato causati dal veleno.", - }, - hungerSwitch: { - name: "Pancialterna", - description: "Alla fine di ogni turno cambia forma, alternando tra Motivo Panciapiena e Motivo Panciavuota.", - }, - quickDraw: { - name: "Pugni Invisibili", - description: "Quando il Pokémon utilizza un attacco diretto, gli effetti di mosse protettive vengono ignorati.", - }, - unseenFist: { - name: "Colpolesto", - description: "A volte permette al Pokémon di agire per primo.", - }, - curiousMedicine: { - name: "Stranofarmaco", - description: "Quando il Pokémon entra in campo, sparge un farmaco dalla conchiglia che annulla le modifiche alle statistiche degli alleati.", - }, - transistor: { - name: "Transistor", - description: "Potenzia le mosse di tipo Elettro.", - }, - dragonsMaw: { - name: "Dragomascelle", - description: "Potenzia le mosse di tipo Drago.", - }, - chillingNeigh: { - name: "Nitrito Bianco", - description: "Quando manda KO il nemico, emette un nitrito agghiacciante, aumentando il proprio Attacco.", - }, - grimNeigh: { - name: "Nitrito Nero", - description: "Quando manda KO il nemico, emette un nitrito spettrale, aumentando il proprio Attacco Speciale.", - }, - asOneGlastrier: { - name: "Sintonia Equina", - description: "Il Pokémon ha una doppia abilità: Agitazione di Calyrex e Nitrito Bianco di Glastrier", - }, - asOneSpectrier: { - name: "Sintonia Equina", - description: "Il Pokémon ha una doppia abilità: Agitazione di Calyrex e Nitrito Nero di Spectrier.", - }, - lingeringAroma: { - name: "Odore Tenace", - description: "L'abilità di chi entra in contatto con il Pokémon diventa Odore Tenace.", - }, - seedSower: { - name: "Spargisemi", - description: "Se il Pokémon subisce un attacco, il terreno entra nello stato di Campo Erboso.", - }, - thermalExchange: { - name: "Termoscambio", - description: "Impedisce al Pokémon di venire scottato e aumenta il suo Attacco se subisce una mossa di tipo Fuoco.", - }, - angerShell: { - name: "Iraguscio", - description: "Se un attacco subìto porta i PS a metà o meno, la rabbia del Pokémon ne riduce la Difesa e la Difesa Speciale ma ne aumenta l'Attacco, l'Attacco Speciale e la Velocità.", - }, - purifyingSalt: { - name: "Sale Purificante", - description: "Protegge il Pokémon dai problemi di stato e dimezza il danno causato dalle mosse di tipo Spettro.", - }, - wellBakedBody: { - name: "Bentostato", - description: "Se il Pokémon viene colpito da una mossa di tipo Fuoco, la neutralizza e aumenta di molto la propria Difesa.", - }, - windRider: { - name: "Vento Propizio", - description: "L'Attacco aumenta se vengono usate mosse come Ventoincoda o se il Pokémon è colpito da una mossa basata sul vento, che viene inoltre neutralizzata.", - }, - guardDog: { - name: "Cane da Guardia", - description: "Il Pokémon resiste a strumenti e mosse che causano la sostituzione. Se subisce l'effetto di Prepotenza, il suo Attacco aumenta.", - }, - rockyPayload: { - name: "Portamassi", - description: "Aumenta la potenza delle mosse di tipo Roccia.", - }, - windPower: { - name: "Energia Eolica", - description: "Se il Pokémon è esposto a una mossa basata sul vento, si carica di elettricità.", - }, - zeroToHero: { - name: "Supercambio", - description: "Se il Pokémon lascia il campo, assume la Forma Possente.", - }, - commander: { - name: "Torre di Comando", - description: "Quando il Pokémon entra in campo ed è presente un Dondozo alleato, si ficca nella bocca di quest'ultimo e da lì impartisce ordini.", - }, - electromorphosis: { - name: "Convertivolt", - description: "Se il Pokémon subisce danni, si carica di elettricità.", - }, - protosynthesis: { - name: "Paleoattivazione", - description: "Quando il Pokémon ha con sé una Capsula energetica o la luce solare è intensa, la sua statistica più alta aumenta.", - }, - quarkDrive: { - name: "Carica Quark", - description: "Quando il Pokémon ha con sé una Capsula energetica o è in presenza di un Campo Elettrico, la sua statistica più alta aumenta.", - }, - goodAsGold: { - name: "Corpo Aureo", - description: "Grazie al robusto e inossidabile corpo d'oro, il Pokémon è immune alle mosse di stato sferrate da altri.", - }, - vesselOfRuin: { - name: "Vaso Nefasto", - description: "L'Attacco Speciale degli altri Pokémon viene indebolito dal potere del vaso che richiama le disgrazie.", - }, - swordOfRuin: { - name: "Spada Nefasta", - description: "La Difesa degli altri Pokémon viene indebolita dal potere della spada che richiama le disgrazie.", - }, - tabletsOfRuin: { - name: "Amuleto Nefasto", - description: "L'Attacco degli altri Pokémon viene indebolito dal potere delle tavolette che richiamano le disgrazie.", - }, - beadsOfRuin: { - name: "Monile Nefasto", - description: "La Difesa Speciale degli altri Pokémon viene indebolita dal potere dei gioielli che richiamano le disgrazie.", - }, - orichalcumPulse: { - name: "Ritmo d'Oricalco", - description: "Quando il Pokémon entra in campo, la luce solare diventa intensa. Con la luce solare intensa l'Attacco del Pokémon aumenta grazie al battito dell'antichità.", - }, - hadronEngine: { - name: "Motore Adronico", - description: "Quando il Pokémon entra in campo, il terreno entra nello stato di Campo Elettrico. In presenza di Campo Elettrico l'Attacco Speciale aumenta grazie al motore del futuro.", - }, - opportunist: { - name: "Scrocco", - description: "Quando la statistica di un avversario viene aumentata, il Pokémon se ne approfitta e aumenta anche la propria.", - }, - cudChew: { - name: "Ruminante", - description: "Se il Pokémon mangia una bacca, alla fine del turno successivo questa risale dal suo stomaco per essere mangiata una seconda volta.", - }, - sharpness: { - name: "Affilama", - description: "Aumenta la potenza delle mosse che tagliano il bersaglio.", - }, - supremeOverlord: { - name: "Generale Supremo", - description: "Quando il Pokémon entra in campo, il suo Attacco e il suo Attacco Speciale aumentano un po' per ciascuno dei suoi compagni di squadra andati KO.", - }, - costar: { - name: "Coprotagonismo", - description: "Quando il Pokémon entra in campo, copia le modifiche alle statistiche dell'alleato.", - }, - toxicDebris: { - name: "Mantossina", - description: "Se il Pokémon subisce danni da mosse fisiche, piazza ai piedi degli avversari una trappola di punte velenose.", - }, - armorTail: { - name: "Codarmatura", - description: "La misteriosa coda che avvolge la testa del Pokémon impedisce agli avversari di usare mosse che hanno priorità alta contro di lui o i suoi alleati.", - }, - earthEater: { - name: "Mangiaterra", - description: "Se il Pokémon viene colpito da una mossa di tipo Terra, recupera PS anziché subire danni.", - }, - myceliumMight: { - name: "Micoforza", - description: "Quando usa mosse di stato, il Pokémon agisce più lentamente, ma ignora l'abilità del bersaglio se questa ha effetto su tali mosse.", - }, - mindsEye: { - name: "Occhio Interiore", - description: "Permette di colpire bersagli di tipo Spettro con mosse di tipo Normale e Lotta, di ignorare modifiche alla loro elusione e di non veder ridotta la propria precisione.", - }, - supersweetSyrup: { - name: "Sciroppo Sublime", - description: "La prima volta che il Pokémon entra in campo, spande un odore dolciastro che diminuisce l'elusione degli avversari.", - }, - hospitality: { - name: "Ospitalità", - description: "Quando un Pokémon con questa abilità entra in campo ricopre di attenzioni l'alleato, restituendogli un po' dei suoi PS.", - }, - toxicChain: { - name: "Catena Tossica", - description: "Quando il Pokémon colpisce il bersaglio con una mossa, può iperavvelenarlo grazie al potere della catena intrisa di tossine.", - }, - embodyAspectTeal: { - name: "Albergamemorie", - description: "Il Pokémon riporta alla mente vecchi ricordi, facendo risplendere la Maschera Focolare e aumentando il proprio Velocità.", - }, - embodyAspectWellspring: { - name: "Albergamemorie", - description: "Il Pokémon riporta alla mente vecchi ricordi, facendo risplendere la Maschera Fondamenta e aumentando la propria Difesa Speciale.", - }, - embodyAspectHearthflame: { - name: "Albergamemorie", - description: "Il Pokémon riporta alla mente vecchi ricordi, facendo risplendere la Maschera Fondamenta e aumentando la propria Attacco.", - }, - embodyAspectCornerstone: { - name: "Albergamemorie", - description: "Il Pokémon riporta alla mente vecchi ricordi, facendo risplendere la Maschera Fondamenta e aumentando la propria Difesa.", - }, - teraShift: { - name: "Teramorfosi", - description: "Quando il Pokémon entra in campo, assorbe l'energia circostante e assume la Forma Teracristal.", - }, - teraShell: { - name: "Teraguscio", - description: "Grazie al suo guscio che racchiude il potere di tutti i tipi, se il Pokémon ha tutti i PS, le mosse che subisce non saranno molto efficaci.", - }, - teraformZero: { - name: "Zeroformazione", - description: "Quando assume la Forma Astrale, Terapagos azzera tutti gli effetti delle condizioni atmosferiche e lo stato del terreno di lotta grazie al suo potere occulto.", - }, - poisonPuppeteer: { - name: " Malia Tossica", - description: "I Pokémon avvelenati dalle mosse di Pecharunt entreranno anche in stato di confusione.", - }, -} as const; diff --git a/src/locales/it/achv.json b/src/locales/it/achv.json new file mode 100644 index 00000000000..98e41005c46 --- /dev/null +++ b/src/locales/it/achv.json @@ -0,0 +1,264 @@ +{ + "Achievements": { + "name": "Obiettivi" + }, + "Locked": { + "name": "Bloccato" + }, + "MoneyAchv": { + "description": "Accumula {{moneyAmount}} PokéDollari" + }, + "10K_MONEY": { + "name": "Benestante" + }, + "100K_MONEY": { + "name": "Ricco" + }, + "1M_MONEY": { + "name": "Milionario" + }, + "10M_MONEY": { + "name": "La numero uno" + }, + "DamageAchv": { + "description": "Infliggi {{damageAmount}} danni in un colpo" + }, + "250_DMG": { + "name": "Grandi danni!" + }, + "1000_DMG": { + "name": "Incredibili danni" + }, + "2500_DMG": { + "name": "Danni a palate!" + }, + "10000_DMG": { + "name": "One Punch Man" + }, + "HealAchv": { + "description": "Cura {{healAmount}} {{HP}} tramite mossa, abilità, o oggetto" + }, + "250_HEAL": { + "name": "Paramedico" + }, + "1000_HEAL": { + "name": "Dottore" + }, + "2500_HEAL": { + "name": "Chierico" + }, + "10000_HEAL": { + "name": "Mastro Curatore" + }, + "LevelAchv": { + "description": "Porta un pokémon a Lv{{level}}" + }, + "LV_100": { + "name": "E Non Finisce Qui!" + }, + "LV_250": { + "name": "Elite" + }, + "LV_1000": { + "name": "Verso l'Infinito ed Oltre!" + }, + "RibbonAchv": { + "description": "Accumula un Totale di {{ribbonAmount}} Nastri" + }, + "10_RIBBONS": { + "name": "Campione Lega Pokémon" + }, + "25_RIBBONS": { + "name": "Campione Lega Estesa" + }, + "50_RIBBONS": { + "name": "Campione Lega Ultra" + }, + "75_RIBBONS": { + "name": "Campione Lega Rogue" + }, + "100_RIBBONS": { + "name": "Campione Lega Assoluta" + }, + "TRANSFER_MAX_BATTLE_STAT": { + "name": "Lavoro di Squadra", + "description": "Trasferisci almeno sei bonus statistiche tramite staffetta" + }, + "MAX_FRIENDSHIP": { + "name": "Amiconi", + "description": "Raggiungi amicizia massima con un Pokémon" + }, + "MEGA_EVOLVE": { + "name": "Megamorfosi", + "description": "Megaevolvi un Pokémon" + }, + "GIGANTAMAX": { + "name": "Grosso e Cattivo", + "description": "Ottieni una gigamax" + }, + "TERASTALLIZE": { + "name": "STAB Per Tutti", + "description": "Teracristallizza un Pokémon" + }, + "STELLAR_TERASTALLIZE": { + "name": "Tipo Segreto", + "description": "Teracristallizza un Pokémon stellare" + }, + "SPLICE": { + "name": "Fusione Infinita", + "description": "Fondi due Pokémon insieme tramite cuneo DNA" + }, + "MINI_BLACK_HOLE": { + "name": "Universo di Oggetti", + "description": "Ottieni un Mini Buco Nero" + }, + "CATCH_MYTHICAL": { + "name": "Mitico", + "description": "Cattura un Pokémon mitico" + }, + "CATCH_SUB_LEGENDARY": { + "name": "(Semi)Leggendario", + "description": "Cattura un Pokémon semileggendario" + }, + "CATCH_LEGENDARY": { + "name": "Leggendario", + "description": "Cattura un Pokémon leggendario" + }, + "SEE_SHINY": { + "name": "Cromatico", + "description": "Trova un Pokémon shiny in natura" + }, + "SHINY_PARTY": { + "name": "Dedizione Totale", + "description": "Riempi la squadra di Pokémon shiny" + }, + "HATCH_MYTHICAL": { + "name": "Uovo Mitico", + "description": "Schiudi l'uovo di un Pokémon mitico" + }, + "HATCH_SUB_LEGENDARY": { + "name": "Uovo (Semi)Leggendario", + "description": "Schiudi l'uovo di un Pokémon semileggendario" + }, + "HATCH_LEGENDARY": { + "name": "Uovo Leggendario", + "description": "Schiudi l'uovo di un Pokémon leggendario" + }, + "HATCH_SHINY": { + "name": "Uovo Cromatico", + "description": "Schiudi l'uovo di un Pokémon shiny" + }, + "HIDDEN_ABILITY": { + "name": "Potenziale Nascosto", + "description": "Cattura un Pokémon con abilità nascosta" + }, + "PERFECT_IVS": { + "name": "Certificato di Autenticità", + "description": "Ottieni un Pokémon con IV perfetti" + }, + "CLASSIC_VICTORY": { + "name": "Imbattuto", + "description": "Vinci in modalità classica" + }, + "UNEVOLVED_CLASSIC_VICTORY": { + "name": "Alternanza scuola-lavoro", + "description": "Completa la modalità classica con almeno un membro della squadra non evoluto completamente." + }, + "MONO_GEN_ONE": { + "name": "Rivale Originale", + "description": "Completa la modalità sfida di prima generazione." + }, + "MONO_GEN_TWO": { + "name": "Generazione 1.5", + "description": "Completa la modalità sfida di seconda generazione." + }, + "MONO_GEN_THREE": { + "name": "Troppa Acqua?", + "description": "Completa la modalità sfida di terza generazione." + }, + "MONO_GEN_FOUR": { + "name": "È Davvero La Più Forte?", + "description": "Completa la modalità sfida di quarta generazione." + }, + "MONO_GEN_FIVE": { + "name": "Tutti Originali", + "description": "Completa la modalità sfida di quinta generazione." + }, + "MONO_GEN_SIX": { + "name": "Vita e Morte", + "description": "Completa la modalità sfida di sesta generazione." + }, + "MONO_GEN_SEVEN": { + "name": "Troppo amichevoli?", + "description": "Completa la modalità sfida di settima generazione." + }, + "MONO_GEN_EIGHT": { + "name": "It's champion time!", + "description": "Completa la modalità sfida di ottava generazione." + }, + "MONO_GEN_NINE": { + "name": "Paradossalmente sbalorditivi", + "description": "Completa la modalità sfida di nona generazione." + }, + "MonoType": { + "description": "Completa la modalità sfida monotipo {{type}}" + }, + "MONO_NORMAL": { + "name": "Un tipo semplice" + }, + "MONO_FIGHTING": { + "name": "Conosco il Kung-fu" + }, + "MONO_FLYING": { + "name": "È un uccello? È un aereo?" + }, + "MONO_POISON": { + "name": "I migliori di Kanto" + }, + "MONO_GROUND": { + "name": "Con i piedi per terra" + }, + "MONO_ROCK": { + "name": "Forte come una roccia!" + }, + "MONO_BUG": { + "name": "Metodo Guzma" + }, + "MONO_GHOST": { + "name": "Sono fantasmi, caro Watson" + }, + "MONO_STEEL": { + "name": "Pugno di ferro" + }, + "MONO_FIRE": { + "name": "Giocare col fuoco" + }, + "MONO_WATER": { + "name": "Piove sul bagnato" + }, + "MONO_GRASS": { + "name": "L'erba del vicino è sempre più verde" + }, + "MONO_ELECTRIC": { + "name": "Elettrizzante" + }, + "MONO_PSYCHIC": { + "name": "Mentalista" + }, + "MONO_ICE": { + "name": "Rompere il ghiaccio" + }, + "MONO_DRAGON": { + "name": "Sangue di drago" + }, + "MONO_DARK": { + "name": "Solo una fase" + }, + "MONO_FAIRY": { + "name": "Follettini e follettine" + }, + "FRESH_START": { + "name": "Buona la prima!", + "description": "Completa la modalità sfida 'Un nuovo inizio'." + } +} \ No newline at end of file diff --git a/src/locales/it/achv.ts b/src/locales/it/achv.ts deleted file mode 100644 index 91222b81579..00000000000 --- a/src/locales/it/achv.ts +++ /dev/null @@ -1,278 +0,0 @@ -import { AchievementTranslationEntries } from "#app/interfaces/locales.js"; - -// Achievement translations for the when the player character is male -export const PGMachv: AchievementTranslationEntries = { - "Achievements": { - name: "Obiettivi", - }, - "Locked": { - name: "Bloccato", - }, - - "MoneyAchv": { - description: "Accumula {{moneyAmount}} PokéDollari", - }, - "10K_MONEY": { - name: "Benestante", - }, - "100K_MONEY": { - name: "Ricco", - }, - "1M_MONEY": { - name: "Milionario", - }, - "10M_MONEY": { - name: "La numero uno", - }, - - "DamageAchv": { - description: "Infliggi {{damageAmount}} danni in un colpo", - }, - "250_DMG": { - name: "Grandi danni!", - }, - "1000_DMG": { - name: "Incredibili danni", - }, - "2500_DMG": { - name: "Danni a palate!", - }, - "10000_DMG": { - name: "One Punch Man", - }, - - "HealAchv": { - description: "Cura {{healAmount}} {{HP}} tramite mossa, abilità, o oggetto", - }, - "250_HEAL": { - name: "Paramedico", - }, - "1000_HEAL": { - name: "Dottore", - }, - "2500_HEAL": { - name: "Chierico", - }, - "10000_HEAL": { - name: "Mastro Curatore", - }, - - "LevelAchv": { - description: "Porta un pokémon a Lv{{level}}", - }, - "LV_100": { - name: "E Non Finisce Qui!", - }, - "LV_250": { - name: "Elite", - }, - "LV_1000": { - name: "Verso l'Infinito ed Oltre!", - }, - - "RibbonAchv": { - description: "Accumula un Totale di {{ribbonAmount}} Nastri", - }, - "10_RIBBONS": { - name: "Campione Lega Pokémon", - }, - "25_RIBBONS": { - name: "Campione Lega Estesa", - }, - "50_RIBBONS": { - name: "Campione Lega Ultra", - }, - "75_RIBBONS": { - name: "Campione Lega Rogue", - }, - "100_RIBBONS": { - name: "Campione Lega Assoluta", - }, - - "TRANSFER_MAX_BATTLE_STAT": { - name: "Lavoro di Squadra", - description: "Trasferisci almeno sei bonus statistiche tramite staffetta", - }, - "MAX_FRIENDSHIP": { - name: "Amiconi", - description: "Raggiungi amicizia massima con un Pokémon", - }, - "MEGA_EVOLVE": { - name: "Megamorfosi", - description: "Megaevolvi un Pokémon", - }, - "GIGANTAMAX": { - name: "Grosso e Cattivo", - description: "Ottieni una gigamax", - }, - "TERASTALLIZE": { - name: "STAB Per Tutti", - description: "Teracristallizza un Pokémon", - }, - "STELLAR_TERASTALLIZE": { - name: "Tipo Segreto", - description: "Teracristallizza un Pokémon stellare", - }, - "SPLICE": { - name: "Fusione Infinita", - description: "Fondi due Pokémon insieme tramite cuneo DNA", - }, - "MINI_BLACK_HOLE": { - name: "Universo di Oggetti", - description: "Ottieni un Mini Buco Nero", - }, - "CATCH_MYTHICAL": { - name: "Mitico", - description: "Cattura un Pokémon mitico", - }, - "CATCH_SUB_LEGENDARY": { - name: "(Semi)Leggendario", - description: "Cattura un Pokémon semileggendario", - }, - "CATCH_LEGENDARY": { - name: "Leggendario", - description: "Cattura un Pokémon leggendario", - }, - "SEE_SHINY": { - name: "Cromatico", - description: "Trova un Pokémon shiny in natura", - }, - "SHINY_PARTY": { - name: "Dedizione Totale", - description: "Riempi la squadra di Pokémon shiny", - }, - "HATCH_MYTHICAL": { - name: "Uovo Mitico", - description: "Schiudi l'uovo di un Pokémon mitico", - }, - "HATCH_SUB_LEGENDARY": { - name: "Uovo (Semi)Leggendario", - description: "Schiudi l'uovo di un Pokémon semileggendario", - }, - "HATCH_LEGENDARY": { - name: "Uovo Leggendario", - description: "Schiudi l'uovo di un Pokémon leggendario", - }, - "HATCH_SHINY": { - name: "Uovo Cromatico", - description: "Schiudi l'uovo di un Pokémon shiny", - }, - "HIDDEN_ABILITY": { - name: "Potenziale Nascosto", - description: "Cattura un Pokémon con abilità nascosta", - }, - "PERFECT_IVS": { - name: "Certificato di Autenticità", - description: "Ottieni un Pokémon con IV perfetti", - }, - "CLASSIC_VICTORY": { - name: "Imbattuto", - description: "Vinci in modalità classica", - }, - "UNEVOLVED_CLASSIC_VICTORY": { - name: "Bring Your Child To Work Day", - description: "Beat the game in Classic Mode with at least one unevolved party member." - }, - - "MONO_GEN_ONE": { - name: "Rivale Originale", - description: "Completa la modalità sfida di prima generazione.", - }, - "MONO_GEN_TWO": { - name: "Generazione 1.5", - description: "Completa la modalità sfida di seconda generazione.", - }, - "MONO_GEN_THREE": { - name: "Troppa Acqua?", - description: "Completa la modalità sfida di terza generazione.", - }, - "MONO_GEN_FOUR": { - name: "È Davvero La Più Forte?", - description: "Completa la modalità sfida di quarta generazione.", - }, - "MONO_GEN_FIVE": { - name: "Tutti Originali", - description: "Completa la modalità sfida di quinta generazione.", - }, - "MONO_GEN_SIX": { - name: "Vita e Morte", - description: "Completa la modalità sfida di sesta generazione.", - }, - "MONO_GEN_SEVEN": { - name: "Troppo amichevoli?", - description: "Completa la modalità sfida di settima generazione.", - }, - "MONO_GEN_EIGHT": { - name: "It's champion time!", - description: "Completa la modalità sfida di ottava generazione.", - }, - "MONO_GEN_NINE": { - name: "Paradossalmente sbalorditivi", - description: "Completa la modalità sfida di nona generazione.", - }, - - "MonoType": { - description: "Completa la modalità sfida monotipo {{type}}", - }, - "MONO_NORMAL": { - name: "Un tipo semplice", - }, - "MONO_FIGHTING": { - name: "Conosco il Kung-fu", - }, - "MONO_FLYING": { - name: "È un uccello? È un aereo?", - }, - "MONO_POISON": { - name: "I migliori di Kanto", - }, - "MONO_GROUND": { - name: "Con i piedi per terra", - }, - "MONO_ROCK": { - name: "Forte come una roccia!", - }, - "MONO_BUG": { - name: "Metodo Guzma", - }, - "MONO_GHOST": { - name: "Sono fantasmi, caro Watson", - }, - "MONO_STEEL": { - name: "Pugno di ferro", - }, - "MONO_FIRE": { - name: "Giocare col fuoco", - }, - "MONO_WATER": { - name: "Piove sul bagnato", - }, - "MONO_GRASS": { - name: "L'erba del vicino è sempre più verde", - }, - "MONO_ELECTRIC": { - name: "Elettrizzante", - }, - "MONO_PSYCHIC": { - name: "Mentalista", - }, - "MONO_ICE": { - name: "Rompere il ghiaccio", - }, - "MONO_DRAGON": { - name: "Sangue di drago", - }, - "MONO_DARK": { - name: "Solo una fase", - }, - "MONO_FAIRY": { - name: "Follettini e follettine", - }, - "FRESH_START": { - name: "First Try!", - description: "Complete the Fresh Start challenge." - } -} as const; - -// Achievement translations for the when the player character is female (it for now uses the same translations as the male version) -export const PGFachv: AchievementTranslationEntries = PGMachv; diff --git a/src/locales/it/arena-flyout.ts b/src/locales/it/arena-flyout.json similarity index 82% rename from src/locales/it/arena-flyout.ts rename to src/locales/it/arena-flyout.json index 9e1e55226ea..ac6dd4225cc 100644 --- a/src/locales/it/arena-flyout.ts +++ b/src/locales/it/arena-flyout.json @@ -1,13 +1,8 @@ -import { SimpleTranslationEntries } from "#app/interfaces/locales"; - -export const arenaFlyout: SimpleTranslationEntries = { - // Title +{ "activeBattleEffects": "Effetti attivi in campo", "player": "Giocatore", "neutral": "Neutrali", "enemy": "Nemico", - - // WeatherType "sunny": "Sole", "rain": "Pioggia", "sandstorm": "Tempesta di sabbia", @@ -17,14 +12,10 @@ export const arenaFlyout: SimpleTranslationEntries = { "heavyRain": "Acquazzone", "harshSun": "Luce accecante", "strongWinds": "Corrente d'aria misteriosa", - - // TerrainType "misty": "Campo Nebbioso", "electric": "Campo Elettrico", "grassy": "Campo Erboso", "psychic": "Campo Psichico", - - // ArenaTagType "mudSport": "Fangata", "waterSport": "Docciascudo", "spikes": "Punte", @@ -45,5 +36,5 @@ export const arenaFlyout: SimpleTranslationEntries = { "matBlock": "Ribaltappeto", "craftyShield": "Truccodifesa", "tailwind": "Ventoincoda", - "happyHour": "Cuccagna", -}; + "happyHour": "Cuccagna" +} \ No newline at end of file diff --git a/src/locales/it/arena-tag.json b/src/locales/it/arena-tag.json new file mode 100644 index 00000000000..9e26dfeeb6e --- /dev/null +++ b/src/locales/it/arena-tag.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/src/locales/it/arena-tag.ts b/src/locales/it/arena-tag.ts deleted file mode 100644 index 22612795308..00000000000 --- a/src/locales/it/arena-tag.ts +++ /dev/null @@ -1,53 +0,0 @@ -import { SimpleTranslationEntries } from "#app/interfaces/locales"; - -export const arenaTag: SimpleTranslationEntries = { - "yourTeam": "your team", - "opposingTeam": "the opposing team", - "arenaOnRemove": "{{moveName}}'s effect wore off.", - "arenaOnRemovePlayer": "{{moveName}}'s effect wore off\non your side.", - "arenaOnRemoveEnemy": "{{moveName}}'s effect wore off\non the foe's side.", - "mistOnAdd": "{{pokemonNameWithAffix}}'s team became\nshrouded in mist!", - "mistApply": "The mist prevented\nthe lowering of stats!", - "reflectOnAdd": "Reflect reduced the damage of physical moves.", - "reflectOnAddPlayer": "Reflect reduced the damage of physical moves on your side.", - "reflectOnAddEnemy": "Reflect reduced the damage of physical moves on the foe's side.", - "lightScreenOnAdd": "Light Screen reduced the damage of special moves.", - "lightScreenOnAddPlayer": "Light Screen reduced the damage of special moves on your side.", - "lightScreenOnAddEnemy": "Light Screen reduced the damage of special moves on the foe's side.", - "auroraVeilOnAdd": "Aurora Veil reduced the damage of moves.", - "auroraVeilOnAddPlayer": "Aurora Veil reduced the damage of moves on your side.", - "auroraVeilOnAddEnemy": "Aurora Veil reduced the damage of moves on the foe's side.", - "conditionalProtectOnAdd": "{{moveName}} protected team!", - "conditionalProtectOnAddPlayer": "{{moveName}} protected your team!", - "conditionalProtectOnAddEnemy": "{{moveName}} protected the\nopposing team!", - "conditionalProtectApply": "{{moveName}} protected {{pokemonNameWithAffix}}!", - "matBlockOnAdd": "{{pokemonNameWithAffix}} intends to flip up a mat\nand block incoming attacks!", - "noCritOnAddPlayer": "The {{moveName}} shielded your\nteam from critical hits!", - "noCritOnAddEnemy": "The {{moveName}} shielded the opposing\nteam from critical hits!", - "noCritOnRemove": "{{pokemonNameWithAffix}}'s {{moveName}}\nwore off!", - "wishTagOnAdd": "{{pokemonNameWithAffix}}'s wish\ncame true!", - "mudSportOnAdd": "Electricity's power was weakened!", - "mudSportOnRemove": "The effects of Mud Sport\nhave faded.", - "waterSportOnAdd": "Fire's power was weakened!", - "waterSportOnRemove": "The effects of Water Sport\nhave faded.", - "spikesOnAdd": "{{moveName}} were scattered\nall around {{opponentDesc}}'s feet!", - "spikesActivateTrap": "{{pokemonNameWithAffix}} is hurt\nby the spikes!", - "toxicSpikesOnAdd": "{{moveName}} were scattered\nall around {{opponentDesc}}'s feet!", - "toxicSpikesActivateTrapPoison": "{{pokemonNameWithAffix}} absorbed the {{moveName}}!", - "stealthRockOnAdd": "Pointed stones float in the air\naround {{opponentDesc}}!", - "stealthRockActivateTrap": "Pointed stones dug into\n{{pokemonNameWithAffix}}!", - "stickyWebOnAdd": "A {{moveName}} has been laid out on the ground around the opposing team!", - "stickyWebActivateTrap": "The opposing {{pokemonName}} was caught in a sticky web!", - "trickRoomOnAdd": "{{pokemonNameWithAffix}} twisted\nthe dimensions!", - "trickRoomOnRemove": "The twisted dimensions\nreturned to normal!", - "gravityOnAdd": "Gravity intensified!", - "gravityOnRemove": "Gravity returned to normal!", - "tailwindOnAdd": "The Tailwind blew from behind team!", - "tailwindOnAddPlayer": "The Tailwind blew from behind\nyour team!", - "tailwindOnAddEnemy": "The Tailwind blew from behind\nthe opposing team!", - "tailwindOnRemove": "Team's Tailwind petered out!", - "tailwindOnRemovePlayer": "Your team's Tailwind petered out!", - "tailwindOnRemoveEnemy": "The opposing team's Tailwind petered out!", - "happyHourOnAdd": "Everyone is caught up in the happy atmosphere!", - "happyHourOnRemove": "The atmosphere returned to normal.", -} as const; diff --git a/src/locales/it/battle-info.json b/src/locales/it/battle-info.json new file mode 100644 index 00000000000..57bfa03f2f3 --- /dev/null +++ b/src/locales/it/battle-info.json @@ -0,0 +1,3 @@ +{ + "generation": "{{generation}} generazione" +} \ No newline at end of file diff --git a/src/locales/it/battle-info.ts b/src/locales/it/battle-info.ts deleted file mode 100644 index 00f72e60f6c..00000000000 --- a/src/locales/it/battle-info.ts +++ /dev/null @@ -1,5 +0,0 @@ -import { SimpleTranslationEntries } from "#app/interfaces/locales"; - -export const battleInfo: SimpleTranslationEntries = { - "generation": "{{generation}} generazione", -} as const; diff --git a/src/locales/it/battle-message-ui-handler.json b/src/locales/it/battle-message-ui-handler.json new file mode 100644 index 00000000000..06449cb3029 --- /dev/null +++ b/src/locales/it/battle-message-ui-handler.json @@ -0,0 +1,8 @@ +{ + "ivBest": "Stellare", + "ivFantastic": "Eccellente", + "ivVeryGood": "Notevole", + "ivPrettyGood": "Normale", + "ivDecent": "Sufficiente", + "ivNoGood": "Mediocre" +} \ No newline at end of file diff --git a/src/locales/it/battle-message-ui-handler.ts b/src/locales/it/battle-message-ui-handler.ts deleted file mode 100644 index d70ab400e39..00000000000 --- a/src/locales/it/battle-message-ui-handler.ts +++ /dev/null @@ -1,10 +0,0 @@ -import { SimpleTranslationEntries } from "#app/interfaces/locales"; - -export const battleMessageUiHandler: SimpleTranslationEntries = { - "ivBest": "Stellare", - "ivFantastic": "Eccellente", - "ivVeryGood": "Notevole", - "ivPrettyGood": "Normale", - "ivDecent": "Sufficiente", - "ivNoGood": "Mediocre", -} as const; diff --git a/src/locales/it/battle-scene.json b/src/locales/it/battle-scene.json new file mode 100644 index 00000000000..ef916edbf08 --- /dev/null +++ b/src/locales/it/battle-scene.json @@ -0,0 +1,3 @@ +{ + "moneyOwned": "{{formattedMoney}} ₽" +} \ No newline at end of file diff --git a/src/locales/it/battle.ts b/src/locales/it/battle.json similarity index 73% rename from src/locales/it/battle.ts rename to src/locales/it/battle.json index bd7227eacb6..f0339f761c7 100644 --- a/src/locales/it/battle.ts +++ b/src/locales/it/battle.json @@ -1,6 +1,4 @@ -import { SimpleTranslationEntries } from "#app/interfaces/locales"; - -export const battle: SimpleTranslationEntries = { +{ "bossAppeared": "{{bossName}} è apparso.", "trainerAppeared": "{{trainerName}}\nvuole combattere!", "trainerAppearedDouble": "{{trainerName}}\nvogliono combattere!", @@ -24,6 +22,7 @@ export const battle: SimpleTranslationEntries = { "hitResultSuperEffective": "È superefficace!", "hitResultNotVeryEffective": "Non è molto efficace…", "hitResultNoEffect": "Non ha effetto su {{pokemonName}}!", + "hitResultImmune": "{{pokemonName}} è incolume!", "hitResultOneHitKO": "KO con un colpo!", "attackFailed": "Ma ha fallito!", "attackMissed": "{{pokemonNameWithAffix}}\nevita l’attacco!", @@ -39,7 +38,7 @@ export const battle: SimpleTranslationEntries = { "learnMoveNotLearned": "{{pokemonName}} non ha imparato\n{{moveName}}.", "learnMoveForgetQuestion": "Quale mossa deve dimenticare?", "learnMoveForgetSuccess": "{{pokemonName}} ha dimenticato la mossa\n{{moveName}}.", - "countdownPoof": "@d{32}1, @d{15}2, @d{15}e@d{15}… @d{15}… @d{15}… @d{15}@s{pb_bounce_1}ta-daaaa!", + "countdownPoof": "@d{32}1, @d{15}2, @d{15}e@d{15}… @d{15}… @d{15}… @d{15}@s{se/pb_bounce_1}ta-daaaa!", "learnMoveAnd": "E…", "levelCapUp": "Il livello massimo\nè aumentato a {{levelCap}}!", "moveNotImplemented": "{{moveName}} non è ancora implementata e non può essere selezionata.", @@ -74,26 +73,26 @@ export const battle: SimpleTranslationEntries = { "fainted": "{{pokemonNameWithAffix}} non è più in\ngrado di combattere!", "statsAnd": "e", "stats": "statistiche", - "statRose_one": "{{pokemonNameWithAffix}}'s {{stats}} è aumentato/a!", - "statRose_other": "{{pokemonNameWithAffix}}'s {{stats}} rose!", - "statSharplyRose_one": "{{pokemonNameWithAffix}}'s {{stats}} è aumentato/a molto!", - "statSharplyRose_other": "{{pokemonNameWithAffix}}'s {{stats}} sharply rose!", - "statRoseDrastically_one": "{{pokemonNameWithAffix}}'s {{stats}} è aumentato/a drasticamente!", - "statRoseDrastically_other": "{{pokemonNameWithAffix}}'s {{stats}} rose drastically!", - "statWontGoAnyHigher_one": "{{pokemonNameWithAffix}}'s {{stats}} non può aumentare più di così!", - "statWontGoAnyHigher_other": "{{pokemonNameWithAffix}}'s {{stats}} won't go any higher!", - "statFell_one": "{{pokemonNameWithAffix}}'s {{stats}} è diminuito/a!", - "statFell_other": "{{pokemonNameWithAffix}}'s {{stats}} fell!", - "statHarshlyFell_one": "{{pokemonNameWithAffix}}'s {{stats}} è diminuito/a molto!", - "statHarshlyFell_other": "{{pokemonNameWithAffix}}'s {{stats}} harshly fell!", - "statSeverelyFell_one": "{{pokemonNameWithAffix}}'s {{stats}} è diminuito/a drasticamente!", - "statSeverelyFell_other": "{{pokemonNameWithAffix}}'s {{stats}} severely fell!", - "statWontGoAnyLower_one": "{{pokemonNameWithAffix}}'s {{stats}} non può diminuire più di così!", - "statWontGoAnyLower_other": "{{pokemonNameWithAffix}}'s {{stats}} won't go any lower!", + "statRose_one": "La statistica {{stats}} di {{pokemonNameWithAffix}} è aumentata!", + "statRose_other": "Le statistiche {{stats}} di {{pokemonNameWithAffix}} sono aumentate!", + "statSharplyRose_one": "La statistica {{stats}} di {{pokemonNameWithAffix}} è aumentata molto!", + "statSharplyRose_other": "Le statistiche {{stats}} di {{pokemonNameWithAffix}} sono aumentate molto!", + "statRoseDrastically_one": "La statistica {{stats}} di {{pokemonNameWithAffix}} è aumentata drasticamente!", + "statRoseDrastically_other": "Le statistiche {{stats}} di {{pokemonNameWithAffix}} sono aumentate drasticamente!", + "statWontGoAnyHigher_one": "La statistica {{stats}} di {{pokemonNameWithAffix}} non può aumentare di più!", + "statWontGoAnyHigher_other": "Le statistiche {{stats}} di {{pokemonNameWithAffix}} non possono aumentare di più!", + "statFell_one": "La statistica {{stats}} di {{pokemonNameWithAffix}} è diminuita!", + "statFell_other": "Le statistiche {{stats}} di {{pokemonNameWithAffix}} sono diminuite!", + "statHarshlyFell_one": "La statistica {{stats}} di {{pokemonNameWithAffix}} è diminuita molto!", + "statHarshlyFell_other": "Le statistiche {{stats}} di {{pokemonNameWithAffix}} sono diminuite molto!", + "statSeverelyFell_one": "La statistica {{stats}} di {{pokemonNameWithAffix}} è diminuita drasticamente!", + "statSeverelyFell_other": "Le statistiche {{stats}} di {{pokemonNameWithAffix}} sono diminuite drasticamente!", + "statWontGoAnyLower_one": "La statistica {{stats}} di {{pokemonNameWithAffix}} non può diminuire di più!", + "statWontGoAnyLower_other": "Le statistiche {{stats}} di {{pokemonNameWithAffix}} non possono diminuire di più!", "transformedIntoType": "{{pokemonName}} diventa\ndi tipo {{type}} type!", "retryBattle": "Vuoi riprovare dall'inizio della lotta?", "unlockedSomething": "{{unlockedThing}}\nè stato/a sbloccato/a.", "congratulations": "Congratulazioni!", "beatModeFirstTime": "{{speciesName}} ha completato la modalità {{gameMode}} per la prima volta!\nHai ricevuto {{newModifier}}!", - "ppReduced": "I PP della mossa {{moveName}} di\n{{targetName}} sono stati ridotti di {{reduction}}!", -} as const; + "ppReduced": "I PP della mossa {{moveName}} di\n{{targetName}} sono stati ridotti di {{reduction}}!" +} \ No newline at end of file diff --git a/src/locales/it/battler-tags.ts b/src/locales/it/battler-tags.json similarity index 92% rename from src/locales/it/battler-tags.ts rename to src/locales/it/battler-tags.json index 7dd3ebc6fb1..a0f852141f9 100644 --- a/src/locales/it/battler-tags.ts +++ b/src/locales/it/battler-tags.json @@ -1,14 +1,12 @@ -import { SimpleTranslationEntries } from "#app/interfaces/locales"; - -export const battlerTags: SimpleTranslationEntries = { - "trappedDesc": "trapping", - "flinchedDesc": "flinching", - "confusedDesc": "confusion", - "infatuatedDesc": "infatuation", - "seedDesc": "seeding", - "nightmareDesc": "nightmares", - "ingrainDesc": "roots", - "drowsyDesc": "drowsiness", +{ + "trappedDesc": "intrappolando", + "flinchedDesc": "tentennando", + "confusedDesc": "confuso", + "infatuatedDesc": "infatuato", + "seedDesc": "pieno di semi", + "nightmareDesc": "incubi", + "ingrainDesc": "radici", + "drowsyDesc": "assonnato", "rechargingLapse": "{{pokemonNameWithAffix}} deve\nricaricarsi!", "trappedOnAdd": "{{pokemonNameWithAffix}} non può\npiù fuggire!", "trappedOnRemove": "{{pokemonNameWithAffix}} è stato liberato\nda {{moveName}}", @@ -69,5 +67,5 @@ export const battlerTags: SimpleTranslationEntries = { "saltCuredLapse": "{{pokemonNameWithAffix}} viene colpito da {{moveName}}!", "cursedOnAdd": "{{pokemonNameWithAffix}} ha sacrificato metà dei suoi PS per\nlanciare una maledizione su {{pokemonName}}!", "cursedLapse": "{{pokemonNameWithAffix}} subisce la maledizione!", - "stockpilingOnAdd": "{{pokemonNameWithAffix}} ha usato Accumulo per la\n{{stockpiledCount}}ª volta!", -} as const; + "stockpilingOnAdd": "{{pokemonNameWithAffix}} ha usato Accumulo per la\n{{stockpiledCount}}ª volta!" +} \ No newline at end of file diff --git a/src/locales/it/berry.json b/src/locales/it/berry.json new file mode 100644 index 00000000000..bb0ea99affd --- /dev/null +++ b/src/locales/it/berry.json @@ -0,0 +1,46 @@ +{ + "SITRUS": { + "name": "Baccacedro", + "effect": "Restituisce il 25% dei PS se i PS sono sotto il 50%" + }, + "LUM": { + "name": "Baccaprugna", + "effect": "Se tenuta da un Pokémon risolve qualsiasi problema di stato" + }, + "ENIGMA": { + "name": "Baccaenigma", + "effect": "Restituisce il 25% dei PS se viene colpito da una mossa superefficace" + }, + "LIECHI": { + "name": "Baccalici", + "effect": "Aumenta l'Attacco se i PS sono sotto il 25%" + }, + "GANLON": { + "name": "Baccalongan", + "effect": "Aumenta la Difesa se i PS sono sotto il 25%" + }, + "PETAYA": { + "name": "Baccapitaya", + "effect": "Aumenta l'Attacco Speciale se i PS sono sotto il 25%" + }, + "APICOT": { + "name": "Baccacocca", + "effect": "Aumenta la Difesa Speciale se i PS sono sotto il 25%" + }, + "SALAC": { + "name": "Baccasalak", + "effect": "Aumenta la Velocità se i PS sono sotto il 25%" + }, + "LANSAT": { + "name": "Baccalangsa", + "effect": "Aumenta la probabilità di Colpo Critico se i PS sono sotto il 25%" + }, + "STARF": { + "name": "Baccambola", + "effect": "Aumenta drasticamente una statistica casuale se i PS sono sotto il 25%" + }, + "LEPPA": { + "name": "Baccamela", + "effect": "Ripristina 10 PP a una mossa se i suoi PP raggiungono lo 0" + } +} \ No newline at end of file diff --git a/src/locales/it/berry.ts b/src/locales/it/berry.ts deleted file mode 100644 index 7be40b43c32..00000000000 --- a/src/locales/it/berry.ts +++ /dev/null @@ -1,48 +0,0 @@ -import { BerryTranslationEntries } from "#app/interfaces/locales"; - -export const berry: BerryTranslationEntries = { - "SITRUS": { - name: "Baccacedro", - effect: "Restituisce il 25% dei PS se i PS sono sotto il 50%", - }, - "LUM": { - name: "Baccaprugna", - effect: "Se tenuta da un Pokémon risolve qualsiasi problema di stato", - }, - "ENIGMA": { - name: "Baccaenigma", - effect: "Restituisce il 25% dei PS se viene colpito da una mossa superefficace", - }, - "LIECHI": { - name: "Baccalici", - effect: "Aumenta l'Attacco se i PS sono sotto il 25%", - }, - "GANLON": { - name: "Baccalongan", - effect: "Aumenta la Difesa se i PS sono sotto il 25%", - }, - "PETAYA": { - name: "Baccapitaya", - effect: "Aumenta l'Attacco Speciale se i PS sono sotto il 25%", - }, - "APICOT": { - name: "Baccacocca", - effect: "Aumenta la Difesa Speciale se i PS sono sotto il 25%", - }, - "SALAC": { - name: "Baccasalak", - effect: "Aumenta la Velocità se i PS sono sotto il 25%", - }, - "LANSAT": { - name: "Baccalangsa", - effect: "Aumenta la probabilità di Colpo Critico se i PS sono sotto il 25%", - }, - "STARF": { - name: "Baccambola", - effect: "Aumenta drasticamente una statistica casuale se i PS sono sotto il 25%", - }, - "LEPPA": { - name: "Baccamela", - effect: "Ripristina 10 PP a una mossa se i suoi PP raggiungono lo 0", - }, -} as const; diff --git a/src/locales/it/bgm-name.json b/src/locales/it/bgm-name.json new file mode 100644 index 00000000000..9e26dfeeb6e --- /dev/null +++ b/src/locales/it/bgm-name.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/src/locales/it/bgm-name.ts b/src/locales/it/bgm-name.ts deleted file mode 100644 index be9a8f621c7..00000000000 --- a/src/locales/it/bgm-name.ts +++ /dev/null @@ -1,146 +0,0 @@ -import { SimpleTranslationEntries } from "#app/interfaces/locales"; - -export const bgmName: SimpleTranslationEntries = { - "music": "Music: ", - "missing_entries" : "{{name}}", - "battle_kanto_champion": "B2W2 Kanto Champion Battle", - "battle_johto_champion": "B2W2 Johto Champion Battle", - "battle_hoenn_champion_g5": "B2W2 Hoenn Champion Battle", - "battle_hoenn_champion_g6": "ORAS Hoenn Champion Battle", - "battle_sinnoh_champion": "B2W2 Sinnoh Champion Battle", - "battle_champion_alder": "BW Unova Champion Battle", - "battle_champion_iris": "B2W2 Unova Champion Battle", - "battle_kalos_champion": "XY Kalos Champion Battle", - "battle_alola_champion": "USUM Alola Champion Battle", - "battle_galar_champion": "SWSH Galar Champion Battle", - "battle_champion_geeta": "SV Champion Geeta Battle", - "battle_champion_nemona": "SV Champion Nemona Battle", - "battle_champion_kieran": "SV Champion Kieran Battle", - "battle_hoenn_elite": "ORAS Elite Four Battle", - "battle_unova_elite": "BW Elite Four Battle", - "battle_kalos_elite": "XY Elite Four Battle", - "battle_alola_elite": "SM Elite Four Battle", - "battle_galar_elite": "SWSH League Tournament Battle", - "battle_paldea_elite": "SV Elite Four Battle", - "battle_bb_elite": "SV BB League Elite Four Battle", - "battle_final_encounter": "PMD RTDX Rayquaza's Domain", - "battle_final": "BW Ghetsis Battle", - "battle_kanto_gym": "B2W2 Kanto Gym Battle", - "battle_johto_gym": "B2W2 Johto Gym Battle", - "battle_hoenn_gym": "B2W2 Hoenn Gym Battle", - "battle_sinnoh_gym": "B2W2 Sinnoh Gym Battle", - "battle_unova_gym": "BW Unova Gym Battle", - "battle_kalos_gym": "XY Kalos Gym Battle", - "battle_galar_gym": "SWSH Galar Gym Battle", - "battle_paldea_gym": "SV Paldea Gym Battle", - "battle_legendary_kanto": "XY Kanto Legendary Battle", - "battle_legendary_raikou": "HGSS Raikou Battle", - "battle_legendary_entei": "HGSS Entei Battle", - "battle_legendary_suicune": "HGSS Suicune Battle", - "battle_legendary_lugia": "HGSS Lugia Battle", - "battle_legendary_ho_oh": "HGSS Ho-oh Battle", - "battle_legendary_regis_g5": "B2W2 Legendary Titan Battle", - "battle_legendary_regis_g6": "ORAS Legendary Titan Battle", - "battle_legendary_gro_kyo": "ORAS Groudon & Kyogre Battle", - "battle_legendary_rayquaza": "ORAS Rayquaza Battle", - "battle_legendary_deoxys": "ORAS Deoxys Battle", - "battle_legendary_lake_trio": "ORAS Lake Guardians Battle", - "battle_legendary_sinnoh": "ORAS Sinnoh Legendary Battle", - "battle_legendary_dia_pal": "ORAS Dialga & Palkia Battle", - "battle_legendary_giratina": "ORAS Giratina Battle", - "battle_legendary_arceus": "HGSS Arceus Battle", - "battle_legendary_unova": "BW Unova Legendary Battle", - "battle_legendary_kyurem": "BW Kyurem Battle", - "battle_legendary_res_zek": "BW Reshiram & Zekrom Battle", - "battle_legendary_xern_yvel": "XY Xerneas & Yveltal Battle", - "battle_legendary_tapu": "SM Tapu Battle", - "battle_legendary_sol_lun": "SM Solgaleo & Lunala Battle", - "battle_legendary_ub": "SM Ultra Beast Battle", - "battle_legendary_dusk_dawn": "USUM Dusk Mane & Dawn Wings Necrozma Battle", - "battle_legendary_ultra_nec": "USUM Ultra Necrozma Battle", - "battle_legendary_zac_zam": "SWSH Zacian & Zamazenta Battle", - "battle_legendary_glas_spec": "SWSH Glastrier & Spectrier Battle", - "battle_legendary_calyrex": "SWSH Calyrex Battle", - "battle_legendary_birds_galar": "SWSH Galarian Legendary Birds Battle", - "battle_legendary_ruinous": "SV Treasures of Ruin Battle", - "battle_legendary_kor_mir": "SV Depths of Area Zero Battle", - "battle_legendary_loyal_three": "SV Loyal Three Battle", - "battle_legendary_ogerpon": "SV Ogerpon Battle", - "battle_legendary_terapagos": "SV Terapagos Battle", - "battle_legendary_pecharunt": "SV Pecharunt Battle", - "battle_rival": "BW Rival Battle", - "battle_rival_2": "BW N Battle", - "battle_rival_3": "BW Final N Battle", - "battle_trainer": "BW Trainer Battle", - "battle_wild": "BW Wild Battle", - "battle_wild_strong": "BW Strong Wild Battle", - "end_summit": "PMD RTDX Sky Tower Summit", - "battle_rocket_grunt": "HGSS Team Rocket Battle", - "battle_aqua_magma_grunt": "ORAS Team Aqua & Magma Battle", - "battle_galactic_grunt": "BDSP Team Galactic Battle", - "battle_plasma_grunt": "BW Team Plasma Battle", - "battle_flare_grunt": "XY Team Flare Battle", - "battle_rocket_boss": "USUM Giovanni Battle", - "battle_aqua_magma_boss": "ORAS Archie & Maxie Battle", - "battle_galactic_boss": "BDSP Cyrus Battle", - "battle_plasma_boss": "B2W2 Ghetsis Battle", - "battle_flare_boss": "XY Lysandre Battle", - - // Biome Music - "abyss": "PMD EoS Dark Crater", - "badlands": "PMD EoS Barren Valley", - "beach": "PMD EoS Drenched Bluff", - "cave": "PMD EoS Sky Peak Cave", - "construction_site": "PMD EoS Boulder Quarry", - "desert": "PMD EoS Northern Desert", - "dojo": "PMD EoS Marowak Dojo", - "end": "PMD RTDX Sky Tower", - "factory": "PMD EoS Concealed Ruins", - "fairy_cave": "PMD EoS Star Cave", - "forest": "PMD EoS Dusk Forest", - "grass": "PMD EoS Apple Woods", - "graveyard": "PMD EoS Mystifying Forest", - "ice_cave": "PMD EoS Vast Ice Mountain", - "island": "PMD EoS Craggy Coast", - "jungle": "Lmz - Jungle", // The composer thinks about a more creative name - "laboratory": "Firel - Laboratory", // The composer thinks about a more creative name - "lake": "PMD EoS Crystal Cave", - "meadow": "PMD EoS Sky Peak Forest", - "metropolis": "Firel - Metropolis", // The composer thinks about a more creative name - "mountain": "PMD EoS Mt. Horn", - "plains": "PMD EoS Sky Peak Prairie", - "power_plant": "PMD EoS Far Amp Plains", - "ruins": "PMD EoS Deep Sealed Ruin", - "sea": "Andr06 - Marine Mystique", // Name defined by the composer - "seabed": "Firel - Seabed", // The composer thinks about a more creative name - "slum": "Andr06 - Sneaky Snom", // Name defined by the composer - "snowy_forest": "PMD EoS Sky Peak Snowfield", - "space": "Firel - Aether", - "swamp": "PMD EoS Surrounded Sea", - "tall_grass": "PMD EoS Foggy Forest", - "temple": "PMD EoS Aegis Cave", - "town": "PMD EoS Random Dungeon Theme 3", - "volcano": "PMD EoS Steam Cave", - "wasteland": "PMD EoS Hidden Highland", - - // Encounter - "encounter_ace_trainer": "BW Trainers' Eyes Meet (Ace Trainer)", - "encounter_backpacker": "BW Trainers' Eyes Meet (Backpacker)", - "encounter_clerk": "BW Trainers' Eyes Meet (Clerk)", - "encounter_cyclist": "BW Trainers' Eyes Meet (Cyclist)", - "encounter_lass": "BW Trainers' Eyes Meet (Lass)", - "encounter_parasol_lady": "BW Trainers' Eyes Meet (Parasol Lady)", - "encounter_pokefan": "BW Trainers' Eyes Meet (Poke Fan)", - "encounter_psychic": "BW Trainers' Eyes Meet (Psychic)", - "encounter_rich": "BW Trainers' Eyes Meet (Gentleman)", - "encounter_rival": "BW Cheren", - "encounter_roughneck": "BW Trainers' Eyes Meet (Roughneck)", - "encounter_scientist": "BW Trainers' Eyes Meet (Scientist)", - "encounter_twins": "BW Trainers' Eyes Meet (Twins)", - "encounter_youngster": "BW Trainers' Eyes Meet (Youngster)", - - // Other - "heal": "BW Pokémon Heal", - "menu": "PMD EoS Welcome to the World of Pokémon!", - "title": "PMD EoS Top Menu Theme", -} as const; diff --git a/src/locales/it/biome.ts b/src/locales/it/biome.json similarity index 86% rename from src/locales/it/biome.ts rename to src/locales/it/biome.json index 602218fa852..e2613e29b25 100644 --- a/src/locales/it/biome.ts +++ b/src/locales/it/biome.json @@ -1,6 +1,4 @@ -import { SimpleTranslationEntries } from "#app/interfaces/locales"; - -export const biome: SimpleTranslationEntries = { +{ "unknownLocation": "Da qualche parte che non ricordi", "TOWN": "Città", "PLAINS": "Pianure", @@ -36,5 +34,5 @@ export const biome: SimpleTranslationEntries = { "SNOWY_FOREST": "Foresta innevata", "ISLAND": "Isola", "LABORATORY": "Laboratorio", - "END": "???", -} as const; + "END": "???" +} \ No newline at end of file diff --git a/src/locales/it/challenges.ts b/src/locales/it/challenges.json similarity index 61% rename from src/locales/it/challenges.ts rename to src/locales/it/challenges.json index 784791f5425..6e7701ef7d0 100644 --- a/src/locales/it/challenges.ts +++ b/src/locales/it/challenges.json @@ -1,8 +1,6 @@ -import { TranslationEntries } from "#app/interfaces/locales"; - -export const challenges: TranslationEntries = { +{ "title": "Modificatori delle sfide", - "illegalEvolution": "{{pokemon}} changed into an ineligble pokémon\nfor this challenge!", + "illegalEvolution": "{{pokemon}} non è più utilizzabile\nsecondo le regole della sfida!", "singleGeneration": { "name": "Mono gen", "desc": "Puoi usare solo Pokémon di {{gen}} generazione.", @@ -15,7 +13,7 @@ export const challenges: TranslationEntries = { "gen_6": "6ª", "gen_7": "7ª", "gen_8": "8ª", - "gen_9": "9ª", + "gen_9": "9ª" }, "singleType": { "name": "Mono tipo", @@ -23,9 +21,9 @@ export const challenges: TranslationEntries = { "desc_default": "Puoi usare solo Pokémon del tipo selezionato." }, "freshStart": { - "name": "Fresh Start", - "desc": "You can only use the original starters, and only as if you had just started PokéRogue.", + "name": "Un nuovo inizio", + "desc": "Puoi usare solo gli starter originali, e come se avessi appena cominciato Pokérogue.", "value.0": "Off", - "value.1": "On", + "value.1": "On" } -} as const; +} \ No newline at end of file diff --git a/src/locales/it/command-ui-handler.json b/src/locales/it/command-ui-handler.json new file mode 100644 index 00000000000..9446f3304b1 --- /dev/null +++ b/src/locales/it/command-ui-handler.json @@ -0,0 +1,7 @@ +{ + "fight": "Lotta", + "ball": "Borsa", + "pokemon": "Pokémon", + "run": "Fuga", + "actionMessage": "Cosa deve fare {{pokemonName}}?" +} \ No newline at end of file diff --git a/src/locales/it/command-ui-handler.ts b/src/locales/it/command-ui-handler.ts deleted file mode 100644 index acd0370ba05..00000000000 --- a/src/locales/it/command-ui-handler.ts +++ /dev/null @@ -1,9 +0,0 @@ -import { SimpleTranslationEntries } from "#app/interfaces/locales"; - -export const commandUiHandler: SimpleTranslationEntries = { - "fight": "Lotta", - "ball": "Borsa", - "pokemon": "Pokémon", - "run": "Fuga", - "actionMessage": "Cosa deve fare {{pokemonName}}?", -} as const; diff --git a/src/locales/it/common.json b/src/locales/it/common.json new file mode 100644 index 00000000000..1b89d057a94 --- /dev/null +++ b/src/locales/it/common.json @@ -0,0 +1,8 @@ +{ + "start": "Inizia", + "luckIndicator": "Fortuna:", + "shinyOnHover": "Shiny", + "commonShiny": "Comune", + "rareShiny": "Raro", + "epicShiny": "Epico" +} \ No newline at end of file diff --git a/src/locales/it/common.ts b/src/locales/it/common.ts deleted file mode 100644 index 2a84e982350..00000000000 --- a/src/locales/it/common.ts +++ /dev/null @@ -1,10 +0,0 @@ -import { SimpleTranslationEntries } from "#app/interfaces/locales"; - -export const common: SimpleTranslationEntries = { - "start": "Inizia", - "luckIndicator": "Fortuna:", - "shinyOnHover": "Shiny", - "commonShiny": "Comune", - "rareShiny": "Raro", - "epicShiny": "Epico", -} as const; diff --git a/src/locales/it/config.ts b/src/locales/it/config.ts index ceb52665796..a8cd1e4e0bd 100644 --- a/src/locales/it/config.ts +++ b/src/locales/it/config.ts @@ -1,116 +1,113 @@ -import { ability } from "./ability"; -import { abilityTriggers } from "./ability-trigger"; -import { arenaFlyout } from "./arena-flyout"; -import { arenaTag } from "./arena-tag"; -import { PGFachv, PGMachv } from "./achv"; -import { battle } from "./battle"; -import { battleInfo } from "./battle-info"; -import { battleMessageUiHandler } from "./battle-message-ui-handler"; -import { battlerTags } from "./battler-tags"; -import { berry } from "./berry"; -import { bgmName } from "./bgm-name"; -import { biome } from "./biome"; -import { challenges } from "./challenges"; -import { commandUiHandler } from "./command-ui-handler"; -import { - PGFbattleSpecDialogue, - PGFdialogue, - PGFdoubleBattleDialogue, - PGFmiscDialogue, - PGMbattleSpecDialogue, - PGMdialogue, - PGMdoubleBattleDialogue, - PGMmiscDialogue -} from "./dialogue"; -import { egg } from "./egg"; -import { fightUiHandler } from "./fight-ui-handler"; -import { filterBar } from "./filter-bar"; -import { gameMode } from "./game-mode"; -import { gameStatsUiHandler } from "./game-stats-ui-handler"; -import { growth } from "./growth"; -import { menu } from "./menu"; -import { menuUiHandler } from "./menu-ui-handler"; -import { modifier } from "./modifier"; -import { modifierType } from "./modifier-type"; -import { move } from "./move"; -import { nature } from "./nature"; -import { pokeball } from "./pokeball"; -import { pokemon } from "./pokemon"; -import { pokemonForm, battlePokemonForm } from "./pokemon-form"; -import { pokemonInfo } from "./pokemon-info"; -import { pokemonInfoContainer } from "./pokemon-info-container"; -import { pokemonSummary } from "./pokemon-summary"; -import { saveSlotSelectUiHandler } from "./save-slot-select-ui-handler"; -import { splashMessages } from "./splash-messages"; -import { starterSelectUiHandler } from "./starter-select-ui-handler"; -import { statusEffect } from "./status-effect"; -import { titles, trainerClasses, trainerNames } from "./trainers"; -import { tutorial } from "./tutorial"; -import { voucher } from "./voucher"; -import { terrain, weather } from "./weather"; -import { partyUiHandler } from "./party-ui-handler"; -import { settings } from "./settings.js"; -import { common } from "./common.js"; -import { modifierSelectUiHandler } from "./modifier-select-ui-handler"; -import { moveTriggers } from "./move-trigger"; +import common from "./common.json"; +import settings from "./settings.json"; +import ability from "./ability.json"; +import abilityTriggers from "./ability-trigger.json"; +import arenaFlyout from "./arena-flyout.json"; +import arenaTag from "./arena-tag.json"; +import achv from "./achv.json"; +import battle from "./battle.json"; +import battleScene from "./battle-scene.json"; +import battleInfo from "./battle-info.json"; +import battleMessageUiHandler from "./battle-message-ui-handler.json"; +import battlerTags from "./battler-tags.json"; +import berry from "./berry.json"; +import bgmName from "./bgm-name.json"; +import biome from "./biome.json"; +import challenges from "./challenges.json"; +import commandUiHandler from "./command-ui-handler.json"; +import dialogue from "./dialogue.json"; +import battleSpecDialogue from "./dialogue-final-boss.json"; +import miscDialogue from "./dialogue-misc.json"; +import doubleBattleDialogue from "./dialogue-double-battle.json"; +import egg from "./egg.json"; +import fightUiHandler from "./fight-ui-handler.json"; +import filterBar from "./filter-bar.json"; +import gameMode from "./game-mode.json"; +import gameStatsUiHandler from "./game-stats-ui-handler.json"; +import growth from "./growth.json"; +import menu from "./menu.json"; +import menuUiHandler from "./menu-ui-handler.json"; +import modifier from "./modifier.json"; +import modifierType from "./modifier-type.json"; +import move from "./move.json"; +import nature from "./nature.json"; +import partyUiHandler from "./party-ui-handler.json"; +import pokeball from "./pokeball.json"; +import pokemon from "./pokemon.json"; +import pokemonForm from "./pokemon-form.json"; +import battlePokemonForm from "./pokemon-form-battle.json"; +import pokemonInfo from "./pokemon-info.json"; +import pokemonInfoContainer from "./pokemon-info-container.json"; +import pokemonSummary from "./pokemon-summary.json"; +import saveSlotSelectUiHandler from "./save-slot-select-ui-handler.json"; +import splashMessages from "./splash-messages.json"; +import starterSelectUiHandler from "./starter-select-ui-handler.json"; +import statusEffect from "./status-effect.json"; +import trainerTitles from "./trainer-titles.json"; +import trainerClasses from "./trainer-classes.json"; +import trainerNames from "./trainer-names.json"; +import tutorial from "./tutorial.json"; +import voucher from "./voucher.json"; +import weather from "./weather.json"; +import terrain from "./terrain.json"; +import modifierSelectUiHandler from "./modifier-select-ui-handler.json"; +import moveTriggers from "./move-trigger.json"; +import runHistory from "./run-history.json"; export const itConfig = { - ability: ability, - abilityTriggers: abilityTriggers, - arenaFlyout: arenaFlyout, - arenaTag: arenaTag, - battle: battle, - battleInfo: battleInfo, - battleMessageUiHandler: battleMessageUiHandler, - battlePokemonForm: battlePokemonForm, - battlerTags: battlerTags, - berry: berry, - bgmName: bgmName, - biome: biome, - challenges: challenges, - commandUiHandler: commandUiHandler, - common: common, - PGMachv: PGMachv, - PGFachv: PGFachv, - PGMdialogue: PGMdialogue, - PGFdialogue: PGFdialogue, - PGMbattleSpecDialogue: PGMbattleSpecDialogue, - PGFbattleSpecDialogue: PGFbattleSpecDialogue, - PGMmiscDialogue: PGMmiscDialogue, - PGFmiscDialogue: PGFmiscDialogue, - PGMdoubleBattleDialogue: PGMdoubleBattleDialogue, - PGFdoubleBattleDialogue: PGFdoubleBattleDialogue, - egg: egg, - fightUiHandler: fightUiHandler, - filterBar: filterBar, - gameMode: gameMode, - gameStatsUiHandler: gameStatsUiHandler, - growth: growth, - menu: menu, - menuUiHandler: menuUiHandler, - modifier: modifier, - modifierType: modifierType, - move: move, - nature: nature, - pokeball: pokeball, - pokemon: pokemon, - pokemonForm: pokemonForm, - pokemonInfo: pokemonInfo, - pokemonInfoContainer: pokemonInfoContainer, - pokemonSummary: pokemonSummary, - saveSlotSelectUiHandler: saveSlotSelectUiHandler, - settings: settings, - splashMessages: splashMessages, - starterSelectUiHandler: starterSelectUiHandler, - statusEffect: statusEffect, - terrain: terrain, - titles: titles, - trainerClasses: trainerClasses, - trainerNames: trainerNames, - tutorial: tutorial, - voucher: voucher, - weather: weather, - partyUiHandler: partyUiHandler, - modifierSelectUiHandler: modifierSelectUiHandler, - moveTriggers: moveTriggers + ability, + abilityTriggers, + arenaFlyout, + arenaTag, + battle, + battleScene, + battleInfo, + battleMessageUiHandler, + battlePokemonForm, + battlerTags, + berry, + bgmName, + biome, + challenges, + commandUiHandler, + common, + achv, + dialogue, + battleSpecDialogue, + miscDialogue, + doubleBattleDialogue, + egg, + fightUiHandler, + filterBar, + gameMode, + gameStatsUiHandler, + growth, + menu, + menuUiHandler, + modifier, + modifierType, + move, + nature, + pokeball, + pokemon, + pokemonForm, + pokemonInfo, + pokemonInfoContainer, + pokemonSummary, + saveSlotSelectUiHandler, + settings, + splashMessages, + starterSelectUiHandler, + statusEffect, + terrain, + titles: trainerTitles, + trainerClasses, + trainerNames, + tutorial, + voucher, + weather, + partyUiHandler, + modifierSelectUiHandler, + moveTriggers, + runHistory, }; diff --git a/src/locales/it/dialogue-double-battle.json b/src/locales/it/dialogue-double-battle.json new file mode 100644 index 00000000000..9e26dfeeb6e --- /dev/null +++ b/src/locales/it/dialogue-double-battle.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/src/locales/it/dialogue-final-boss.json b/src/locales/it/dialogue-final-boss.json new file mode 100644 index 00000000000..9e26dfeeb6e --- /dev/null +++ b/src/locales/it/dialogue-final-boss.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/src/locales/it/dialogue-misc.json b/src/locales/it/dialogue-misc.json new file mode 100644 index 00000000000..9e26dfeeb6e --- /dev/null +++ b/src/locales/it/dialogue-misc.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/src/locales/it/dialogue.json b/src/locales/it/dialogue.json new file mode 100644 index 00000000000..9e26dfeeb6e --- /dev/null +++ b/src/locales/it/dialogue.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/src/locales/it/dialogue.ts b/src/locales/it/dialogue.ts deleted file mode 100644 index f692b9b848a..00000000000 --- a/src/locales/it/dialogue.ts +++ /dev/null @@ -1,2916 +0,0 @@ -import {DialogueTranslationEntries, SimpleTranslationEntries} from "#app/interfaces/locales"; - -// Dialogue of the NPCs in the game when the player character is male (or unset) -export const PGMdialogue: DialogueTranslationEntries = { - "youngster": { - "encounter": { - 1: "Hey, wanna battle?", - 2: "Are you a new trainer too?", - 3: "Hey, I haven't seen you before. Let's battle!", - 4: "I just lost, so I'm trying to find more Pokémon.\nWait! You look weak! Come on, let's battle!", - 5: "Have we met or not? I don't really remember. Well, I guess it's nice to meet you anyway!", - 6: "All right! Let's go!", - 7: "All right! Here I come! I'll show you my power!", - 8: "Haw haw haw... I'll show you how hawesome my Pokémon are!", - 9: "No need to waste time saying hello. Bring it on whenever you're ready!", - 10: "Don't let your guard down, or you may be crying when a kid beats you.", - 11: "I've raised my Pokémon with great care. You're not allowed to hurt them!", - 12: "Glad you made it! It won't be an easy job from here.", - 13: "The battles continue forever! Welcome to the world with no end!" - }, - "victory": { - 1: "Wow! You're strong!", - 2: "I didn't stand a chance, huh?", - 3: "I'll find you again when I'm older and beat you!", - 4: "Ugh. I don't have any more Pokémon.", - 5: "No way… NO WAY! How could I lose again…", - 6: "No! I lost!", - 7: "Whoa! You are incredible! I'm amazed and surprised!", - 8: "Could it be… How… My Pokémon and I are the strongest, though…", - 9: "I won't lose next time! Let's battle again sometime!", - 10: "Sheesh! Can't you see that I'm just a kid! It wasn't fair of you to go all out like that!", - 11: "Your Pokémon are more amazing! Trade with me!", - 12: "I got a little carried away earlier, but what job was I talking about?", - 13: "Ahaha! There it is! That's right! You're already right at home in this world!" - } - }, - "lass": { - "encounter": { - 1: "Let's have a battle, shall we?", - 2: "You look like a new trainer. Let's have a battle!", - 3: "I don't recognize you. How about a battle?", - 4: "Let's have a fun Pokémon battle!", - 5: "I'll show you the ropes of how to really use Pokémon!", - 6: "A serious battle starts from a serious beginning! Are you sure you're ready?", - 7: "You're only young once. And you only get one shot at a given battle. Soon, you'll be nothing but a memory.", - 8: "You'd better go easy on me, OK? Though I'll be seriously fighting!", - 9: "School is boring. I've got nothing to do. Yawn. I'm only battling to kill the time." - }, - "victory": { - 1: "That was impressive! I've got a lot to learn.", - 2: "I didn't think you'd beat me that bad…", - 3: "I hope we get to have a rematch some day.", - 4: "That was pretty amazingly fun! You've totally exhausted me…", - 5: "You actually taught me a lesson! You're pretty amazing!", - 6: "Seriously, I lost. That is, like, seriously depressing, but you were seriously cool.", - 7: "I don't need memories like this. Deleting memory…", - 8: "Hey! I told you to go easy on me! Still, you're pretty cool when you're serious.", - 9: "I'm actually getting tired of battling… There's gotta be something new to do…" - } - }, - "breeder": { - "encounter": { - 1: "Obedient Pokémon, selfish Pokémon… Pokémon have unique characteristics.", - 2: "Even though my upbringing and behavior are poor, I've raised my Pokémon well.", - 3: "Hmm, do you discipline your Pokémon? Pampering them too much is no good.", - }, - "victory": { - 1: "It is important to nurture and train each Pokémon's characteristics.", - 2: "Unlike my diabolical self, these are some good Pokémon.", - 3: "Too much praise can spoil both Pokémon and people.", - }, - "defeat": { - 1: "You should not get angry at your Pokémon, even if you lose a battle.", - 2: "Right? Pretty good Pokémon, huh? I'm suited to raising things.", - 3: "No matter how much you love your Pokémon, you still have to discipline them when they misbehave." - } - }, - "breeder_female": { - "encounter": { - 1: "Pokémon never betray you. They return all the love you give them.", - 2: "Shall I give you a tip for training good Pokémon?", - 3: "I have raised these very special Pokémon using a special method." - }, - "victory": { - 1: "Ugh… It wasn't supposed to be like this. Did I administer the wrong blend?", - 2: "How could that happen to my Pokémon… What are you feeding your Pokémon?", - 3: "If I lose, that tells you I was just killing time. It doesn't damage my ego at all." - }, - "defeat": { - 1: "This proves my Pokémon have accepted my love.", - 2: "The real trick behind training good Pokémon is catching good Pokémon.", - 3: "Pokémon will be strong or weak depending on how you raise them." - } - }, - "fisherman": { - "encounter": { - 1: "Aack! You made me lose a bite!\nWhat are you going to do about it?", - 2: "Go away! You're scaring the Pokémon!", - 3: "Let's see if you can reel in a victory!", - }, - "victory": { - 1: "Just forget about it.", - 2: "Next time, I'll be reelin' in the triumph!", - 3: "Guess I underestimated the currents this time.", - }, - }, - "fisherman_female": { - "encounter": { - 1: "Woah! I've hooked a big one!", - 2: "Line's in, ready to reel in success!", - 3: "Ready to make waves!" - }, - "victory": { - 1: "I'll be back with a stronger hook.", - 2: "I'll reel in victory next time.", - 3: "I'm just sharpening my hooks for the comeback!" - }, - }, - "swimmer": { - "encounter": { - 1: "Time to dive in!", - 2: "Let's ride the waves of victory!", - 3: "Ready to make a splash!", - }, - "victory": { - 1: "Drenched in defeat!", - 2: "A wave of defeat!", - 3: "Back to shore, I guess.", - }, - }, - "backpacker": { - "encounter": { - 1: "Pack up, game on!", - 2: "Let's see if you can keep pace!", - 3: "Gear up, challenger!", - 4: "I've spent 20 years trying to find myself… But where am I?" - }, - "victory": { - 1: "Tripped up this time!", - 2: "Oh, I think I'm lost.", - 3: "Dead end!", - 4: "Wait up a second! Hey! Don't you know who I am?" - }, - }, - "ace_trainer": { - "encounter": { - 1: "You seem quite confident.", - 2: "Your Pokémon… Show them to me…", - 3: "Because I'm an Ace Trainer, people think I'm strong.", - 4: "Are you aware of what it takes to be an Ace Trainer?" - }, - "victory": { - 1: "Yes… You have good Pokémon…", - 2: "What?! But I'm a battling genius!", - 3: "Of course, you are the main character!", - 4: "OK! OK! You could be an Ace Trainer!" - }, - "defeat": { - 1: "I am devoting my body and soul to Pokémon battles!", - 2: "All within my expectations… Nothing to be surprised about…", - 3: "I thought I'd grow up to be a frail person who looked like they would break if you squeezed them too hard.", - 4: "Of course I'm strong and don't lose. It's important that I win gracefully." - } - }, - "parasol_lady": { - "encounter": { - 1: "Time to grace the battlefield with elegance and poise!", - }, - "victory": { - 1: "My elegance remains unbroken!", - } - }, - "twins": { - "encounter": { - 1: "Get ready, because when we team up, it's double the trouble!", - 2: "Two hearts, one strategy – let's see if you can keep up with our twin power!", - 3: "Hope you're ready for double trouble, because we're about to bring the heat!" - }, - "victory": { - 1: "We may have lost this round, but our bond remains unbreakable!", - 2: "Our twin spirit won't be dimmed for long.", - 3: "We'll come back stronger as a dynamic duo!" - }, - "defeat": { - 1: "Twin power reigns supreme!", - 2: "Two hearts, one triumph!", - 3: "Double the smiles, double the victory dance!" - } - }, - "cyclist": { - "encounter": { - 1: "Get ready to eat my dust!", - 2: "Gear up, challenger! I'm about to leave you in the dust!", - 3: "Pedal to the metal, let's see if you can keep pace!" - }, - "victory": { - 1: "Spokes may be still, but determination pedals on.", - 2: "Outpaced!", - 3: "The road to victory has many twists and turns yet to explore." - }, - }, - "black_belt": { - "encounter": { - 1: "I praise your courage in challenging me! For I am the one with the strongest kick!", - 2: "Oh, I see. Would you like to be cut to pieces? Or do you prefer the role of punching bag?" - }, - "victory": { - 1: "Oh. The Pokémon did the fighting. My strong kick didn't help a bit.", - 2: "Hmmm… If I was going to lose anyway, I was hoping to get totally messed up in the process." - }, - }, - "battle_girl": { - "encounter": { - 1: "You don't have to try to impress me. You can lose against me.", - }, - "victory": { - 1: "It's hard to say good-bye, but we are running out of time…", - }, - }, - "hiker": { - "encounter": { - 1: "My middle-age spread has given me as much gravitas as the mountains I hike!", - 2: "I inherited this big-boned body from my parents… I'm like a living mountain range…", - }, - "victory": { - 1: "At least I cannot lose when it comes to BMI!", - 2: "It's not enough… It's never enough. My bad cholesterol isn't high enough…" - }, - }, - "ranger": { - "encounter": { - 1: "When I am surrounded by nature, most other things cease to matter.", - 2: "When I'm living without nature in my life, sometimes I'll suddenly feel an anxiety attack coming on." - }, - "victory": { - 1: "It doesn't matter to the vastness of nature whether I win or lose…", - 2: "Something like this is pretty trivial compared to the stifling feelings of city life." - }, - "defeat": { - 1: "I won the battle. But victory is nothing compared to the vastness of nature…", - 2: "I'm sure how you feel is not so bad if you compare it to my anxiety attacks…" - } - }, - "scientist": { - "encounter": { - 1: "My research will lead this world to peace and joy.", - }, - "victory": { - 1: "I am a genius… I am not supposed to lose against someone like you…", - }, - }, - "school_kid": { - "encounter": { - 1: "…Heehee. I'm confident in my calculations and analysis.", - 2: "I'm gaining as much experience as I can because I want to be a Gym Leader someday." - }, - "victory": { - 1: "Ohhhh… Calculation and analysis are perhaps no match for chance…", - 2: "Even difficult, trying experiences have their purpose, I suppose." - } - }, - "artist": { - "encounter": { - 1: "I used to be popular, but now I am all washed up.", - }, - "victory": { - 1: "As times change, values also change. I realized that too late.", - }, - }, - "guitarist": { - "encounter": { - 1: "Get ready to feel the rhythm of defeat as I strum my way to victory!", - }, - "victory": { - 1: "Silenced for now, but my melody of resilience will play on.", - }, - }, - "worker": { - "encounter": { - 1: "It bothers me that people always misunderstand me. I'm a lot more pure than everyone thinks.", - }, - "victory": { - 1: "I really don't want my skin to burn, so I want to stay in the shade while I work.", - }, - }, - "worker_female": { - "encounter": { - 1: `It bothers me that people always misunderstand me. - $I'm a lot more pure than everyone thinks.` - }, - "victory": { - 1: "I really don't want my skin to burn, so I want to stay in the shade while I work." - }, - "defeat": { - 1: "My body and mind aren't necessarily always in sync." - } - }, - "worker_double": { - "encounter": { - 1: "I'll show you we can break you. We've been training in the field!", - }, - "victory": { - 1: "How strange… How could this be… I shouldn't have been outmuscled.", - }, - }, - "hex_maniac": { - "encounter": { - 1: "I normally only ever listen to classical music, but if I lose, I think I shall try a bit of new age!", - 2: "I grow stronger with each tear I cry." - }, - "victory": { - 1: "Is this the dawning of the age of Aquarius?", - 2: "Now I can get even stronger. I grow with every grudge." - }, - "defeat": { - 1: "New age simply refers to twentieth century classical composers, right?", - 2: "Don't get hung up on sadness or frustration. You can use your grudges to motivate yourself." - } - }, - "psychic": { - "encounter": { - 1: "Hi! Focus!", - }, - "victory": { - 1: "Eeeeek!", - }, - }, - "officer": { - "encounter": { - 1: "Brace yourself, because justice is about to be served!", - 2: "Ready to uphold the law and serve justice on the battlefield!" - }, - "victory": { - 1: "The weight of justice feels heavier than ever…", - 2: "The shadows of defeat linger in the precinct." - } - }, - "beauty": { - "encounter": { - 1: "My last ever battle… That's the way I'd like us to view this match…", - }, - "victory": { - 1: "It's been fun… Let's have another last battle again someday…", - }, - }, - "baker": { - "encounter": { - 1: "Hope you're ready to taste defeat!" - }, - "victory": { - 1: "I'll bake a comeback." - }, - }, - "biker": { - "encounter": { - 1: "Time to rev up and leave you in the dust!" - }, - "victory": { - 1: "I'll tune up for the next race." - }, - }, - "firebreather": { - "encounter": { - 1: "My flames shall devour you!", - 2: "My soul is on fire. I'll show you how hot it burns!", - 3: "Step right up and take a look!" - }, - "victory": { - 1: "I burned down to ashes...", - 2: "Yow! That's hot!", - 3: "Ow! I scorched the tip of my nose!" - }, - }, - "sailor": { - "encounter": { - 1: "Matey, you're walking the plank if you lose!", - 2: "Come on then! My sailor's pride is at stake!", - 3: "Ahoy there! Are you seasick?" - }, - "victory": { - 1: "Argh! Beaten by a kid!", - 2: "Your spirit sank me!", - 3: "I think it's me that's seasick..." - }, - }, - "archer": { - "encounter": { - 1: "Before you go any further, let's see how you far against us, Team Rocket!", - 2: "I have received reports that your skills are not insignificant. Let's see if they are true.", - 3: "I am Archer, an Admin of Team Rocket. And I do not go easy on enemies of our organization." - }, - "victory": { - 1: "What a blunder!", - 2: "With my current skills, I was not up to the task after all.", - 3: "F-forgive me, Giovanni... For me to be defeated by a mere trainer..." - }, - }, - "ariana": { - "encounter": { - 1: `Hold it right there! We can't someone on the loose." - $It's harmful to Team Rocket's pride, you see.`, - 2: `I don't know or care if what I'm doing is right or wrong... - $I just put my faith in Giovanni and do as I am told`, - 3: "Your trip ends here. I'm going to take you down!" - }, - "victory": { - 1: `Tch, you really are strong. It's too bad. - $If you were to join Team Rocket, you could become an Executive.`, - 2: "I... I'm shattered...", - 3: "Aaaieeeee! This can't be happening! I fought hard, but I still lost…" - }, - }, - "proton": { - "encounter": { - 1: "What do you want? If you interrupt our work, don't expect any mercy!", - 2: `What do we have here? I am often labeled as the scariest and cruelest guy in Team Rocket… - $I strongly urge you not to interfere with our business!`, - 3: "I am Proton, an Admin of Team Rocket. I am here to put an end to your meddling!" - }, - "victory": { - 1: "The fortress came down!", - 2: "You may have won this time… But all you did was make Team Rocket's wrath grow…", - 3: "I am defeated… But I will not forget this!" - }, - }, - - "petrel": { - "encounter": { - 1: `Muhahaha, we've been waiting for you. Me? You don't know who I am? It is me, Giovanni. - $The majestic Giovanni himself! Wahahaha! …Huh? I don't sound anything like Giovanni? - $I don't even look like Giovanni? How come? I've worked so hard to mimic him!`, - 2: "I am Petrel, an Admin of Team Rocket. I will not allow you to interfere with our plans!", - 3: "Rocket Executive Petrel will deal with this intruder!" - }, - "victory": { - 1: "OK, OK. I'll tell you where he is.", - 2: "I… I couldn't do a thing… Giovanni, please forgive me…", - 3: "No, I can't let this affect me. I have to inform the others…" - }, - }, - "tabitha": { - "encounter": { - 1: "Hehehe! So you've come all the way here! But you're too late!", - 2: `Hehehe... Got here already, did you? We underestimated you! But this is it! - $I'm a cut above the Grunts you've seen so far. I'm not stalling for time. - $I'm going to pulverize you!`, - 3: "I'm going to give you a little taste of pain! Resign yourself to it!" - }, - "victory": { - 1: `Hehehe! You might have beaten me, but you don't stand a chance against the Boss! - $If you get lost now, you won't have to face a sound whipping!`, - 2: "Hehehe... So, I lost, too...", - 3: "Ahya! How could this be? For an Admin like me to lose to some random trainer..." - }, - }, - "courtney": { - "encounter": { - 1: "The thing...The thing that you hold...That is what... That's what we of Team Magma seek...", - 2: "... Well then...Deleting...", - 3: "...Ha. ...Analyzing... ...Hah♪" - }, - "victory": { - 1: "... ...Change...the world.", - 2: `As anticipated. Unanticipated. You. Target lock...completed. - $Commencing...experiment. You. Forever. Aha... ♪`, - 3: "...Again? That's unanticipated. ...I knew it. You...are interesting! ...Haha. ♪" - }, - }, - "shelly": { - "encounter": { - 1: `Ahahahaha! You're going to meddle in Team Aqua's affairs? - $You're either absolutely fearless, simply ignorant, or both! - $You're so cute, you're disgusting! I'll put you down`, - 2: "What's this? Who's this spoiled brat?", - 3: "Cool your jets. Be patient. I'll crush you shortly." - }, - "victory": { - 1: `Ahahahaha! We got meddled with unexpectedly! We're out of options. - $We'll have to pull out. But this isn't the last you'll see of Team Aqua! - $We have other plans! Don't you forget it!`, - 2: "Ahhh?! Did I go too easy on you?!", - 3: `Uh. Are you telling me you've upped your game even more during the fight? - $You're a brat with a bright future… My Pokémon and I don't have any strength left to fight… - $Go on… Go and be destroyed by Archie.` - }, - }, - "matt": { - "encounter": { - 1: "Hoohahaha! What, you got a screw loose or something? Look at you, little Makuhita person!", - 2: "Oho! You! You're that funny kid!", - 3: "What are you doing here? Did you follow us?" - }, - "victory": { - 1: "All right then, until the Boss has time for you, I'll be your opponent!", - 2: `I can feel it! I can feel it, all right! The strength coming offa you! - $More! I still want more! But looks like we're outta time...`, - 3: "That was fun! I knew you'd show me a good time! I look forward to facing you again someday!" - }, - }, - "mars": { - "encounter": { - 1: "I'm Mars, one of Team Galactic's top Commanders.", - 2: "Team Galactic's vision for the future is unwavering. Opposition will be crushed without mercy!", - 3: "Feeling nervous? You should be!" - }, - "victory": { - 1: "This can't be happening! How did I lose?!", - 2: "You have some skill, I'll give you that.", - 3: "Defeated... This was a costly mistake." - } - }, - "jupiter": { - "encounter": { - 1: "Jupiter, Commander of Team Galactic, at your service.", - 2: "Resistance is futile. Team Galactic will prevail!", - 3: "You're trembling... scared already?" - }, - "victory": { - 1: "No way... I lost?!", - 2: "Impressive, you've got guts!", - 3: "Losing like this... How embarrassing." - } - }, - "saturn": { - "encounter": { - 1: "I am Saturn, Commander of Team Galactic.", - 2: "Our mission is absolute. Any hindrance will be obliterated!", - 3: "Is that fear I see in your eyes?" - }, - "victory": { - 1: "Impossible... Defeated by you?!", - 2: "You have proven yourself a worthy adversary.", - 3: "Bestowed in defeat... This is unacceptable." - }}, - "zinzolin": { - "encounter": { - 1: "You could become a threat to Team Plasma, so we will eliminate you here and now!", - 2: "Oh, for crying out loud... I didn't expect to have to battle in this freezing cold!", - 3: "You're an impressive Trainer to have made it this far. But it ends here." - }, - "victory": { - 1: "Ghetsis... I have failed you...", - 2: "It's bitter cold. I'm shivering. I'm suffering. Yet, I still stand victorious.", - 3: "Hmph. You're a smarter Trainer than I expected, but not smart enough." - } - }, - "rood": { - "encounter": { - 1: "You are a threat to Team Plasma. We cannot let you walk away from here and now!", - 2: "Oh, this icy wind... I never thought I'd have to fight here!", - 3: "You are a remarkable Trainer to have made it this far. But this is where it ends." - }, - "victory": { - 1: "Ghetsis... I have failed my mission...", - 2: "The cold is piercing. I'm shivering. I'm suffering. Yet, I have triumphed.", - 3: "Hm. You are a talented Trainer, but unfortunately not talented enough." - } - }, - "xerosic": { - "encounter": { - 1: "Ah ha ha! It would be my pleasure. Come on, little Trainer! Let's see what you've got!", - 2: "Hmm... You're more powerful than you look. I wonder how much energy there is inside you.", - 3: "I've been waiting for you! I need to do a little research on you! Come, let us begin!" - }, - "victory": { - 1: "Ah, you're quite strong. Oh yes—very strong, indeed.", - 2: "Ding-ding-ding! You did it! To the victor go the spoils!", - 3: "Wonderful! Amazing! You have tremendous skill and bravery!" - } - }, - "bryony": { - "encounter": { - 1: "I am Bryony, and it would be my pleasure to battle you. Show me what you've got.", - 2: "Impressive... You're more powerful than you appear. Let's see the true extent of your energy.", - 3: "I've anticipated your arrival. It's time for a little test. Shall we begin?" - }, - "victory": { - 1: "You're quite strong. Oh yes—very strong, indeed.", - 2: "Ding-ding-ding! You've done well. Victory is yours.", - 3: "Wonderful! Remarkable! Your skill and bravery are commendable." - } - }, - "rocket_grunt": { - "encounter": { - 1: "Prepare for trouble!", - 2: "We're pulling a big job here! Get lost, kid!", - 3: "Hand over your Pokémon, or face the wrath of Team Rocket!", - 4: "You're about to experience the true terror of Team Rocket!", - 5: "Hey, kid! Me am a Team Rocket member kind of guy!" //Use of wrong grammar is deliberate - }, - "victory": { - 1: "Team Rocket blasting off again!", - 2: "Oh no! I dropped the Lift Key!", - 3: "I blew it!", - 4: "My associates won't stand for this!", - 5: "You say what? Team Rocket bye-bye a go-go? Broken it is says you?" //Use of wrong grammar is deliberate. - }, - }, - "magma_grunt": { - "encounter": { - 1: "If you get in the way of Team Magma, don’t expect any mercy!", - 2: "You'd better not interfere with our plans! We're making the world a better place!", - 3: "You're in the way! Team Magma has no time for kids like you!", - 4: "I hope you brought marshmallows because things are about to heat up!", - 5: "We're going to use the power of a volcano! It's gonna be... explosive! Get it? Heh heh!" - }, - "victory": { - 1: "Huh? I lost?!", - 2: "I can't believe I lost! I even skipped lunch for this", - 3: "No way! You're just a kid!", - 4: "Urrrgh... I should've ducked into our hideout right away...", - 5: "You beat me... Do you think the boss will dock my pay for this?" - }, - }, - "aqua_grunt": { - "encounter": { - 1: "No one who crosses Team Aqua gets any mercy, not even kids!", - 2: "Grrr... You've got some nerve meddling with Team Aqua!", - 3: "You're about to get soaked! And not just from my water Pokémon!", - 4: "We, Team Aqua, exist for the good of all!", - 5: "Prepare to be washed away by the tides of my... uh, Pokémon! Yeah, my Pokémon!" - }, - "victory": { - 1: "You're kidding me!", - 2: "Arrgh, I didn't count on being meddled with by some meddling kid!", - 3: "I lost?! Guess I'll have to swim back to the hideout now...", - 4: "Oh, man, what a disaster... The boss is going to be furious...", - 5: "You beat me... Do you think the boss will make me walk the plank for this?" - }, - }, - "galactic_grunt": { - "encounter": { - 1: "Don't mess with Team Galactic!", - 2: "Witness the power of our technology and the future we envision!", - 3: "In the name of Team Galactic, I'll eliminate anyone who stands in our way!", - 4: "Get ready to lose!", - 5: "Hope you're ready for a cosmic beatdown!" - }, - "victory": { - 1: "Shut down...", - 2: "This setback means nothing in the grand scheme.", - 3: "Our plans are bigger than this defeat.", - 4: "How?!", - 5: "Note to self: practice Pokémon battling, ASAP." - }, - }, - "plasma_grunt": { - "encounter": { - 1: "We won't tolerate people who have different ideas!", - 2: "If I win against you, release your Pokémon!", - 3: "If you get in the way of Team Plasma, I'll take care of you!", - 4: "Team Plasma will liberate Pokémon from selfish humans like you!", - 5: "Our hairstyles are out of this world... but our battling skills? You'll find out soon enough." - }, - "victory": { - 1: "Plasmaaaaaaaaa!", - 2: "How could I lose...", - 3: "...What a weak Pokémon, I'll just have to go steal some better ones!", - 4: "Great plans are always interrupted.", - 5: "This is bad... Badbadbadbadbadbadbad! Bad for Team Plasma! Or Plasbad, for short!" - }, - }, - "flare_grunt": { - "encounter": { - 1: "Your Pokémon are no match for the elegance of Team Flare.", - 2: "Hope you brought your sunglasses, because things are about to get bright!", - 3: "Team Flare will cleanse the world of imperfection!", - 4: "Prepare to face the brilliance of Team Flare!", - 5: "Fashion is most important to us!" - }, - "victory": { - 1: "The future doesn't look bright for me.", - 2: "Perhaps there's more to battling than I thought. Back to the drawing board.", - 3: "Gahh?! I lost?!", - 4: "Even in defeat, Team Flare's elegance shines through.", - 5: "You may have beaten me, but when I lose, I go out in style!" - }, - }, - "rocket_boss_giovanni_1": { - "encounter": { - 1: "So! I must say, I am impressed you got here!" - }, - "victory": { - 1: "WHAT! This cannot be!" - }, - "defeat": { - 1: "Mark my words. Not being able to measure your own strength shows that you are still a child." - } - }, - "rocket_boss_giovanni_2": { - "encounter": { - 1: "My old associates need me... Are you going to get in my way?" - }, - "victory": { - 1: "How is this possible...?\nThe precious dream of Team Rocket has become little more than an illusion..." - }, - "defeat": { - 1: "Team Rocket will be reborn again, and I will rule the world!" - } - }, - "magma_boss_maxie_1": { - "encounter": { - 1: "I will bury you by my own hand. I hope you appreciate this honor!" - }, - "victory": { - 1: "Ugh! You are... quite capable...\nI fell behind, but only by an inch..." - }, - "defeat": { - 1: "Team Magma will prevail!" - } - }, - "magma_boss_maxie_2": { - "encounter": { - 1: "You are the final obstacle remaining between me and my goals.\nBrace yourself for my ultimate attack! Fuhahaha!" - }, - "victory": { - 1: "This... This is not.. Ngh..." - }, - "defeat": { - 1: "And now... I will transform this planet to a land ideal for humanity." - } - }, - "aqua_boss_archie_1": { - "encounter": { - 1: "I'm leader of Team Aqua, so I'm afraid it's the rope's end for you." - }, - "victory": { - 1: "Let's meet again somewhere. I'll be sure to remember that face." - }, - "defeat": { - 1: "Brilliant! My team won't hold back now!" - } - }, - "aqua_boss_archie_2": { - "encounter": { - 1: "I've been waiting so long for this day to come.\nThis is the true power of my team!" - }, - "victory": { - 1: "Like I figured..." - }, - "defeat": { - 1: "I'll return everything in this world to its original, pure state!!" - } - }, - "galactic_boss_cyrus_1": { - "encounter": { - 1: "You were compelled to come here by such vacuous sentimentality\nI will make you regret paying heed to your heart!" - }, - "victory": { - 1: "Interesting. And quite curious." - }, - "defeat": { - 1: "I will create my new world..." - } - }, - "galactic_boss_cyrus_2": { - "encounter": { - 1: "So we meet again. It seems our fates have become intertwined.\nBut here and now, I will finally break that bond!" - }, - "victory": { - 1: "How? How? HOW?!" - }, - "defeat": { - 1: "Farewell." - } - }, - "plasma_boss_ghetsis_1": { - "encounter": { - 1: "I won't allow anyone to stop me! No matter who does what!" - }, - "victory": { - 1: "How can this be? I'm the creator of Team Plasma! I'm perfect!" - }, - "defeat": { - 1: "I am the perfect ruler of a perfect new world! Mwa ha ha!" - } - }, - "plasma_boss_ghetsis_2": { - "encounter": { - 1: "Come now! I want to see your face at the moment you lose all hope!" - }, - "victory": { - 1: "My calculations... No! My careful schemes! The world should be mine!" - }, - "defeat": { - 1: "Kyurem! Use Absofusion!" - } - }, - "flare_boss_lysandre_1": { - "encounter": { - 1: "Do you want to stop me? Show me in battle." - }, - "victory": { - 1: "You are here to stop me. But I ask you to wait. " - }, - "defeat": { - 1: "Pokemon...Shall no longer exist." - } - }, - "flare_boss_lysandre_2": { - "encounter": { - 1: "The future you want, or the future I want... Let us see which one is more deserving, shall we?" - }, - "victory": { - 1: "Whaugh!" - }, - "defeat": { - 1: "Fools with no vision will continue to befoul this beautiful world." - } - }, - "brock": { - "encounter": { - 1: "My expertise on Rock-type Pokémon will take you down! Come on!", - 2: "My rock-hard willpower will overwhelm you!", - 3: "Allow me to show you the true strength of my Pokémon!" - }, - "victory": { - 1: "Your Pokémon's strength have overcome my rock-hard defenses!", - 2: "The world is huge! I'm glad to have had a chance to battle you.", - 3: "Perhaps I should go back to pursuing my dream as a Pokémon Breeder…" - }, - "defeat": { - 1: "The best offense is a good defense!\nThat's my way of doing things!", - 2: "Come study rocks with me next time to better learn how to fight them!", - 3: "Hah, all my traveling around the regions is paying off!" - } - }, - "misty": { - "encounter": { - 1: "My policy is an all out offensive with Water-type Pokémon!", - 2: "Hiya, I'll show you the strength of my aquatic Pokémon!", - 3: "My dream was to go on a journey and battle powerful trainers…\nWill you be a sufficient challenge?" - }, - "victory": { - 1: "You really are strong… I'll admit that you are skilled…", - 2: "Grrr… You know you just got lucky, right?!", - 3: "Wow, you're too much! I can't believe you beat me!" - }, - "defeat": { - 1: "Was the mighty Misty too much for you?", - 2: "I hope you saw my Pokémon's elegant swimming techniques!", - 3: "Your Pokémon were no match for my pride and joys!" - } - }, - "lt_surge": { - "encounter": { - 1: "My Electric Pokémon saved me during the war! I'll show you how!", - 2: "Ten-hut! I'll shock you into surrender!", - 3: "I'll zap you just like I do to all my enemies in battle!" - }, - "victory": { - 1: "Whoa! Your team's the real deal, kid!", - 2: "Aaargh, you're strong! Even my electric tricks lost against you.", - 3: "That was an absolutely shocking loss!" - }, - "defeat": { - 1: "Oh yeah! When it comes to Electric-type Pokémon, I'm number one in the world!", - 2: "Hahaha! That was an electrifying battle, kid!", - 3: "A Pokémon battle is war, and I have showed you first-hand combat!" - } - }, - "erika": { - "encounter": { - 1: "Ah, the weather is lovely here…\nOh, a battle? Very well then.", - 2: "My Pokémon battling skills rival that of my flower arranging skills.", - 3: "Oh, I hope the pleasant aroma of my Pokémon doesn't put me to sleep again…", - 4: "Seeing flowers in a garden is so soothing." - }, - "victory": { - 1: "Oh! I concede defeat.", - 2: "That match was most delightful.", - 3: "Ah, it appears it is my loss…", - 4: "Oh, my goodness." - }, - "defeat": { - 1: "I was afraid I would doze off…", - 2: "Oh my, it seems my Grass Pokémon overwhelmed you.", - 3: "That battle was such a soothing experience.", - 4: "Oh… Is that all?" - } - }, - "janine": { - "encounter": { - 1: "I am mastering the art of poisonous attacks.\nI shall spar with you today!", - 2: "Father trusts that I can hold my own.\nI will prove him right!", - 3: "My ninja techniques are only second to my Father's!\nCan you keep up?" - }, - "victory": { - 1: "Even now, I still need training… I understand.", - 2: "Your battle technique has outmatched mine.", - 3: "I'm going to really apply myself and improve my skills." - }, - "defeat": { - 1: "Fufufu… the poison has sapped all your strength to battle.", - 2: "Ha! You didn't stand a chance against my superior ninja skills!", - 3: "Father's faith in me has proven to not be misplaced." - } - }, - "sabrina": { - "encounter": { - 1: "Through my psychic ability, I had a vision of your arrival!", - 2: "I dislike fighting, but if you wish, I will show you my powers!", - 3: "I can sense great ambition in you. I shall see if it not unfounded." - }, - "victory": { - 1: "Your power… It far exceeds what I foresaw…", - 2: "I failed to accurately predict your power.", - 3: "Even with my immense psychic powers, I cannot sense another as strong as you." - }, - "defeat": { - 1: "This victory… It is exactly as I foresaw in my visions!", - 2: "Perhaps it was another I sensed a great desire in…", - 3: "Hone your abilities before recklessly charging into battle.\nYou never know what the future may hold if you do…" - } - }, - "blaine": { - "encounter": { - 1: "Hah! Hope you brought a Burn Heal!", - 2: "My fiery Pokémon will incinerate all challengers!", - 3: "Get ready to play with fire!" - }, - "victory": { - 1: "I have burned down to nothing! Not even ashes remain!", - 2: "Didn't I stoke the flames high enough?", - 3: "I'm all burned out… But this makes my motivation to improve burn even hotter!" - }, - "defeat": { - 1: "My raging inferno cannot be quelled!", - 2: "My Pokémon have been powered up with the heat from this victory!", - 3: "Hah! My passion burns brighter than yours!" - } - }, - "giovanni": { - "encounter": { - 1: "I, the leader of Team Rocket, will make you feel a world of pain!", - 2: "My training here will be vital before I am to face my old associates again.", - 3: "I do not think you are prepared for the level of failure you are about to experience!" - }, - "victory": { - 1: "WHAT! Me, lose?! There is nothing I wish to say to you!", - 2: "Hmph… You could never understand what I hope to achieve.", - 3: "This defeat is merely delaying the inevitable.\nI will rise Team Rocket from the ashes in due time." - }, - "defeat": { - 1: "Not being able to measure your own strength shows that you are still but a child.", - 2: "Do not try to interfere with me again.", - 3: "I hope you understand how foolish challenging me was." - } - }, - "roxanne": { - "encounter": { - 1: "Would you kindly demonstrate how you battle?", - 2: "You can learn many things by battling many trainers.", - 3: "Oh, you caught me strategizing.\nWould you like to battle?" - }, - "victory": { - 1: "Oh, I appear to have lost.\nI understand.", - 2: "It seems that I still have so much more to learn when it comes to battle.", - 3: "I'll take what I learned here today to heart." - }, - "defeat": { - 1: "I have learned many things from our battle.\nI hope you have too.", - 2: "I look forward to battling you again.\nI hope you'll use what you've learned here.", - 3: "I won due to everything I have learned." - } - }, - "brawly": { - "encounter": { - 1: "Oh man, a challenger!\nLet's see what you can do!", - 2: "You seem like a big splash.\nLet's battle!", - 3: "Time to create a storm!\nLet's go!" - }, - "victory": { - 1: "Oh woah, you've washed me out!", - 2: "You surfed my wave and crashed me down!", - 3: "I feel like I'm lost in Granite Cave!" - }, - "defeat": { - 1: "Haha, I surfed the big wave!\nChallenge me again sometime.", - 2: "Surf with me again some time!", - 3: "Just like the tides come in and out, I hope you return to challenge me again." - } - }, - "wattson": { - "encounter": { - 1: "Time to get shocked!\nWahahahaha!", - 2: "I'll make sparks fly!\nWahahahaha!", - 3: "I hope you brought Paralyz Heal!\nWahahahaha!" - }, - "victory": { - 1: "Seems like I'm out of charge!\nWahahahaha!", - 2: "You've completely grounded me!\nWahahahaha!", - 3: "Thanks for the thrill!\nWahahahaha!" - }, - "defeat": { - 1: "Recharge your batteries and challenge me again sometime!\nWahahahaha!", - 2: "I hope you found our battle electrifying!\nWahahahaha!", - 3: "Aren't you shocked I won?\nWahahahaha!" - } - }, - "flannery": { - "encounter": { - 1: "Nice to meet you! Wait, no…\nI will crush you!", - 2: "I've only been a leader for a little while, but I'll smoke you!", - 3: "It's time to demonstrate the moves my grandfather has taught me! Let's battle!" - }, - "victory": { - 1: "You remind me of my grandfather…\nNo wonder I lost.", - 2: "Am I trying too hard?\nI should relax, can't get too heated.", - 3: "Losing isn't going to smother me out.\nTime to reignite training!" - }, - "defeat": { - 1: "I hope I've made my grandfather proud…\nLet's battle again some time.", - 2: "I…I can't believe I won!\nDoing things my way worked!", - 3: "Let's exchange burning hot moves again soon!" - } - }, - "norman": { - "encounter": { - 1: "I'm surprised you managed to get here.\nLet's battle.", - 2: "I'll do everything in my power as a Gym Leader to win.\nLet's go!", - 3: "You better give this your all.\nIt's time to battle!" - }, - "victory": { - 1: "I lost to you…?\nRules are rules, though.", - 2: "Was moving from Olivine a mistake…?", - 3: "I can't believe it.\nThat was a great match." - }, - "defeat": { - 1: "We both tried our best.\nI hope we can battle again soon.", - 2: "You should try challenging my kid instead.\nYou might learn something!", - 3: "Thank you for the excellent battle.\nBetter luck next time." - } - }, - "winona": { - "encounter": { - 1: "I've been soaring the skies looking for prey…\nAnd you're my target!", - 2: "No matter how our battle is, my Flying Pokémon and I will triumph with grace. Let's battle!", - 3: "I hope you aren't scared of heights.\nLet's ascend!" - }, - "victory": { - 1: "You're the first Trainer I've seen with more grace than I.\nExcellently played.", - 2: "Oh, my Flying Pokémon have plummeted!\nVery well.", - 3: "Though I may have fallen, my Pokémon will continue to fly!" - }, - "defeat": { - 1: "My Flying Pokémon and I will forever dance elegantly!", - 2: "I hope you enjoyed our show.\nOur graceful dance is finished.", - 3: "Won't you come see our elegant choreography again?" - } - }, - "tate": { - "encounter": { - 1: "Hehehe…\nWere you surprised to see me without my sister?", - 2: "I can see what you're thinking…\nYou want to battle!", - 3: "How can you defeat someone…\nWho knows your every move?" - }, - "victory": { - 1: "It can't be helped…\nI miss Liza…", - 2: "Your bond with your Pokémon was stronger than mine.", - 3: "If I were with Liza, we would have won.\nWe can finish each other's thoughts!" - }, - "defeat": { - 1: "My Pokémon and I are superior!", - 2: "If you can't even defeat me, you'll never be able to defeat Liza either.", - 3: "It's all thanks to my strict training with Liza.\nI can make myself one with Pokémon." - } - }, - "liza": { - "encounter": { - 1: "Fufufu…\nWere you surprised to see me without my brother?", - 2: "I can determine what you desire…\nYou want to battle, don't you?", - 3: "How can you defeat someone…\nWho's one with their Pokémon?" - }, - "victory": { - 1: "It can't be helped…\nI miss Tate…", - 2: "Your bond with your Pokémon…\nIt's stronger than mine.", - 3: "If I were with Tate, we would have won.\nWe can finish each other's sentences!" - }, - "defeat": { - 1: "My Pokémon and I are victorious.", - 2: "If you can't even defeat me, you'll never be able to defeat Tate either.", - 3: "It's all thanks to my strict training with Tate.\nI can synchronize myself with my Pokémon." - } - }, - "juan": { - "encounter": { - 1: "Now's not the time to act coy.\nLet's battle!", - 2: "Ahahaha, You'll be witness to my artistry with Water Pokémon!", - 3: "A typhoon approaches!\nWill you be able to test me?", - 4: "Please, you shall bear witness to our artistry.\nA grand illusion of water sculpted by my Pokémon and myself!" - }, - "victory": { - 1: "You may be a genius who can take on Wallace!", - 2: "I focused on elegance while you trained.\nIt's only natural that you defeated me.", - 3: "Ahahaha!\nVery well, You have won this time.", - 4: "From you, I sense the brilliant shine of skill that will overcome all." - }, - "defeat": { - 1: "My Pokémon and I have sculpted an illusion of Water and come out victorious.", - 2: "Ahahaha, I have won, and you have lost.", - 3: "Shall I loan you my outfit? It may help you battle!\nAhahaha, I jest!", - 4: "I'm the winner! Which is to say, you lost." - } - }, - "crasher_wake": { - "encounter": { - 1: "Crash! Crash! Watch out!\nCrasher Wake…is…heeere!", - 2: "Crash! Crash! Crasher Wake!", - 3: "I'm the tidal wave of power to wash you away!" - }, - "victory": { - 1: "That puts a grin on my face!\nGuhahaha! That was a blast!", - 2: "Hunwah! It's gone and ended!\nHow will I say this…\nI want more! I wanted to battle a lot more!", - 3: "WHAAAAT!?" - }, - "defeat": { - 1: "Yeeeeah! That's right!", - 2: "I won, but I want more! I wanted to battle a lot more!", - 3: "So long!" - } - }, - "falkner": { - "encounter": { - 1: "I'll show you the real power of the magnificent bird Pokémon!", - 2: "Winds, stay with me!", - 3: "Dad! I hope you're watching me battle from above!" - }, - "victory": { - 1: "I understand… I'll bow out gracefully.", - 2: "A defeat is a defeat. You are strong indeed.", - 3: "…Shoot! Yeah, I lost." - }, - "defeat": { - 1: "Dad! I won with your cherished bird Pokémon…", - 2: "Bird Pokémon are the best after all!", - 3: "Feels like I'm catching up to my dad!" - } - }, - "nessa": { - "encounter": { - 1: "No matter what kind of plan your refined mind may be plotting, my partner and I will be sure to sink it.", - 2: "I'm not here to chat. I'm here to win!", - 3: "This is a little gift from my Pokémon… I hope you can take it!" - }, - "victory": { - 1: "You and your Pokémon are just too much…", - 2: "How…? How can this be?!", - 3: "I was totally washed away!" - }, - "defeat": { - 1: "The raging wave crashes again!", - 2: "Time to ride the wave of victory!", - 3: "Ehehe!" - } - }, - "melony": { - "encounter": { - 1: "I'm not going to hold back!", - 2: "All righty, I suppose we should get started.", - 3: "I'll freeze you solid!" - }, - "victory": { - 1: "You… You're pretty good, huh?", - 2: "If you find Gordie around, be sure to give him a right trashing, would you?", - 3: "I think you took breaking the ice a little too literally…" - }, - "defeat": { - 1: "Now do you see how severe battles can be?", - 2: "Hee! Looks like I went and won again!", - 3: "Are you holding back?" - } - }, - "marlon": { - "encounter": { - 1: "You look strong! Shoots! Let's start!", - 2: "I'm strong like the ocean's wide. You're gonna get swept away, fo' sho'.", - 3: "Oh ho, so I'm facing you! That's off the wall." - }, - "victory": { - 1: "You totally rocked that! You're raising some wicked Pokémon. You got this Trainer thing down!", - 2: "You don't just look strong, you're strong fo' reals! Eh, I was swept away, too!", - 3: "You're strong as a gnarly wave!" - }, - "defeat": { - 1: "You're tough, but it's not enough to sway the sea, 'K!", - 2: "Hee! Looks like I went and won again!", - 3: "Sweet, sweet victory!" - } - }, - "shauntal": { - "encounter": { - 1: "Excuse me. You're a challenger, right?\nI'm the Elite Four's Ghost-type Pokémon user, Shauntal, and I shall be your opponent.", - 2: "I absolutely love writing about Trainers who come here and the Pokémon they train.\nCould I use you and your Pokémon as a subject?", - 3: "Every person who works with Pokémon has a story to tell.\nWhat story is about to be told?" - }, - "victory": { - 1: "Wow. I'm dumbstruck!", - 2: "S-sorry! First, I must apologize to my Pokémon…\n\nI'm really sorry you had a bad experience because of me!", - 3: "Even in light of that, I'm still one of the Elite Four!" - }, - "defeat": { - 1: "Eheh.", - 2: "That gave me excellent material for my next novel!", - 3: "And so, another tale ends…" - } - }, - "marshal": { - "encounter": { - 1: "My mentor, Alder, sees your potential as a Trainer and is taking an interest in you.\nIt is my intention to test you--to take you to the limits of your strength. Kiai!", - 2: "Victory, decisive victory, is my intention! Challenger, here I come!", - 3: "In myself, I seek to develop the strength of a fighter and shatter any weakness in myself!\nPrevailing with the force of my convictions!" - }, - "victory": { - 1: "Whew! Well done!", - 2: "As your battles continue, aim for even greater heights!", - 3: "The strength shown by you and your Pokémon has deeply impressed me…" - }, - "defeat": { - 1: "Hmm.", - 2: "That was good battle.", - 3: "Haaah! Haaah! Haiyaaaah!" - } - }, - "cheren": { - "encounter": { - 1: "You remind me of an old friend. That makes me excited about this Pokémon battle!", - 2: `Pokémon battles have no meaning if you don't think why you battle. - $Or better said, it makes battling together with Pokémon meaningless.`, - 3: "My name's Cheren! I'm a Gym Leader and a teacher! Pleasure to meet you." - }, - "victory": { - 1: "Thank you! I saw what was missing in me.", - 2: "Thank you! I feel like I saw a little of the way toward my ideals.", - 3: "Hmm… This is problematic." - }, - "defeat": { - 1: "As a Gym Leader, I aim to be a wall for you to overcome.", - 2: "All right!", - 3: "I made it where I am because Pokémon were by my side.\nPerhaps we need to think about why Pokémon help us not in terms of Pokémon and Trainers but as a relationship between living beings." - } - }, - "chili": { - "encounter": { - 1: "Yeeeeooow! Time to play with FIRE!! I'm the strongest of us brothers!", - 2: "Ta-da! The Fire-type scorcher Chili--that's me--will be your opponent!", - 3: "I'm going to show you what me and my blazing Fire types can do!" - }, - "victory": { - 1: "You got me. I am… burned… out…", - 2: "Whoa ho! You're on fire!", - 3: "Augh! You got me!" - }, - "defeat": { - 1: "I'm on fire! Play with me, and you'll get burned!", - 2: "When you play with fire, you get burned!", - 3: "I mean, c'mon, your opponent was me! You didn't have a chance!" - } - }, - "cilan": { - "encounter": { - 1: `Nothing personal... No hard feelings... Me and my Grass-type Pokémon will... - $Um... We're gonna battle come what may.`, - 2: "So, um, if you're OK with me, I'll, um, put everything I've got into being, er, you know, your opponent.", - 3: "OK… So, um, I'm Cilan, I like Grass-type Pokémon." - }, - "victory": { - 1: "Er… Is it over now?", - 2: `…What a surprise. You are very strong, aren't you? - $I guess my brothers wouldn't have been able to defeat you either…`, - 3: "…Huh. Looks like my timing was, um, off?" - }, - "defeat": { - 1: "Huh? Did I win?", - 2: `I guess… - $I suppose I won, because I've been competing with my brothers Chili and Cress, and we all were able to get tougher.`, - 3: "It…it was quite a thrilling experience…" - } - }, - "roark": { - "encounter": { - 1: "I need to see your potential as a Trainer. And, I'll need to see the toughness of the Pokémon that battle with you!", - 2: "Here goes! These are my rocking Pokémon, my pride and joy!", - 3: "Rock-type Pokémon are simply the best!", - 4: "I need to see your potential as a Trainer. And, I'll need to see the toughness of the Pokémon that battle with you!" - }, - "victory": { - 1: "W-what? That can't be! My buffed-up Pokémon!", - 2: "…We lost control there. Next time I'd like to challenge you to a Fossil-digging race underground.", - 3: "With skill like yours, it's natural for you to win.", - 4: "Wh-what?! It can't be! Even that wasn't enough?", - 5: "I blew it." - }, - "defeat": { - 1: "See? I'm proud of my rocking battle style!", - 2: "Thanks! The battle gave me confidence that I may be able to beat my dad!", - 3: "I feel like I just smashed through a really stubborn boulder!" - } - }, - "morty": { - "encounter": { - 1: `With a little more, I could see a future in which I meet the legendary Pokémon. - $You're going to help me reach that level!`, - 2: `It's said that a rainbow-hued Pokémon will come down to appear before a truly powerful Trainer. - $I believed that tale, so I have secretly trained here all my life. As a result, I can now see what others cannot. - $I see a shadow of the person who will make the Pokémon appear. - $I believe that person is me! You're going to help me reach that level!`, - 3: "Whether you choose to believe or not, mystic power does exist.", - 4: "You can bear witness to the fruits of my training.", - 5: "You must make your soul one with that of Pokémon. Can you do this?", - 6: "Say, do you want to be part of my training?" - }, - "victory": { - 1: "I'm not good enough yet…", - 2: `I see… Your journey has taken you to far-away places and you have witnessed much more than I. - $I envy you for that…`, - 3: "How is this possible…", - 4: `I don't think our potentials are so different. - $But you seem to have something more than that… So be it.`, - 5: "Guess I need more training.", - 6: "That's a shame." - }, - "defeat": { - 1: "I moved… one step ahead again.", - 2: "Fufufu…", - 3: "Wh-what?! It can't be! Even that wasn't enough?", - 4: "I feel like I just smashed through a really stubborn boulder!", - 5: "Ahahahah!", - 6: "I knew I would win!" - } - }, - "crispin": { - "encounter": { - 1: "I wanna win, so that's exactly what I'll do!", - 2: "I battle because I wanna battle! And you know what? That's how it should be!" - }, - "victory": { - 1: "I wanted to win…but I lost!", - 2: "I lost…'cause I couldn't win!" - }, - "defeat": { - 1: "Hey, wait a sec. Did I just win? I think I just won! Talk about satisfying!", - 2: "Wooo! That was amazing!" - } - }, - "amarys": { - "encounter": { - 1: `I want to be the one to help a certain person. That being the case, I cannot afford to lose. - $… Our battle starts now.`, - }, - "victory": { - 1: "I am… not enough, I see." - }, - "defeat": { - 1: "Victory belongs to me. Well fought." - } - }, - "lacey": { - "encounter": { - 1: "I'll be facing you with my usual party as a member of the Elite Four." - }, - "victory": { - 1: "That was a great battle!" - }, - "defeat": { - 1: "Let's give your Pokémon a nice round of applause for their efforts!" - } - }, - "drayton": { - "encounter": { - 1: `Man, I love chairs. Don't you love chairs? What lifesavers. - $I don't get why everyone doesn't just sit all the time. Standing up's tiring work!`, - }, - "victory": { - 1: "Guess I should've expected that!" - }, - "defeat": { - 1: "Heh heh! Don't mind me, just scooping up a W over here. I get it if you're upset, but don't go full Kieran on me, OK?" - } - }, - "ramos": { - "encounter": { - 1: `Did yeh enjoy the garden playground I made with all these sturdy plants o' mine? - $Their strength is a sign o' my strength as a gardener and a Gym Leader! Yeh sure yer up to facing all that?`, - }, - "victory": { - 1: "Yeh believe in yer Pokémon… And they believe in yeh, too… It was a fine battle, sprout." - }, - "defeat": { - 1: "Hohoho… Indeed. Frail little blades o' grass'll break through even concrete." - } - }, - "viola": { - "encounter": { - 1: `Whether it's the tears of frustration that follow a loss or the blossoming of joy that comes with victory… - $They're both great subjects for my camera! Fantastic! This'll be just fantastic! - $Now come at me!`, - 2: "My lens is always focused on victory--I won't let anything ruin this shot!" - }, - "victory": { - 1: "You and your Pokémon have shown me a whole new depth of field! Fantastic! Just fantastic!", - 2: `The world you see through a lens, and the world you see with a Pokémon by your side… - $The same world can look entirely different depending on your view.` - }, - "defeat": { - 1: "The photo from the moment of my victory will be a real winner, all right!", - 2: "Yes! I took some great photos!" - } - }, - "candice": { - "encounter": { - 1: `You want to challenge Candice? Sure thing! I was waiting for someone tough! - $But I should tell you, I'm tough because I know how to focus.`, - 2: `Pokémon, fashion, romance… It's all about focus! - $I'll show you just what I mean. Get ready to lose!` - }, - "victory": { - 1: "I must say, I'm warmed up to you! I might even admire you a little.", - 2: `Wow! You're great! You've earned my respect! - $I think your focus and will bowled us over totally. ` - }, - "defeat": { - 1: "I sensed your will to win, but I don't lose!", - 2: "See? Candice's focus! My Pokémon's focus is great, too!" - } - }, - "gardenia": { - "encounter": { - 1: "You have a winning aura about you. So, anyway, this will be fun. Let's have our battle!" - }, - "victory": { - 1: "Amazing! You're very good, aren't you?" - }, - "defeat": { - 1: "Yes! My Pokémon and I are perfectly good!" - } - }, - "aaron": { - "encounter": { - 1: "Ok! Let me take you on!" - }, - "victory": { - 1: "Battling is a deep and complex affair…" - }, - "defeat": { - 1: "Victory over an Elite Four member doesn't come easily." - } - }, - "cress": { - "encounter": { - 1: "That is correct! It shall be I and my esteemed Water types that you must face in battle!" - }, - "victory": { - 1: "Lose? Me? I don't believe this." - }, - "defeat": { - 1: "This is the appropriate result when I'm your opponent." - } - }, - "allister": { - "encounter": { - 1: "'M Allister.\nH-here… I go…" - }, - "victory": { - 1: `I nearly lost my mask from the shock… That was… - $Wow. I can see your skill for what it is.`, - }, - "defeat": { - 1: "Th-that was ace!" - } - }, - "clay": { - "encounter": { - 1: "Harrumph! Kept me waitin', didn't ya, kid? All right, time to see what ya can do!" - }, - "victory": { - 1: "Man oh man… It feels good to go all out and still be defeated!" - }, - "defeat": { - 1: `What's important is how ya react to losin'. - $That's why folks who use losin' as fuel to get better are tough.`, - } - }, - "kofu": { - "encounter": { - 1: "I'mma serve you a full course o' Water-type Pokémon! Don't try to eat 'em, though!" - }, - "victory": { - 1: "Vaultin' Veluza! Yer a lively one, aren't ya! A little TOO lively, if I do say so myself!" - }, - "defeat": { - 1: "You come back to see me again now, ya hear?" - } - }, - "tulip": { - "encounter": { - 1: "Allow me to put my skills to use to make your cute little Pokémon even more beautiful!" - }, - "victory": { - 1: "Your strength has a magic to it that cannot be washed away." - }, - "defeat": { - 1: "You know, in my line of work, people who lack talent in one area or the other often fade away quickly—never to be heard of again." - } - }, - "sidney": { - "encounter": { - 1: `I like that look you're giving me. I guess you'll give me a good match. - $That's good! Looking real good! All right! - $You and me, let's enjoy a battle that can only be staged here!`, - }, - "victory": { - 1: "Well, how do you like that? I lost! Eh, it was fun, so it doesn't matter." - }, - "defeat": { - 1: "No hard feelings, alright?" - } - }, - "phoebe": { - "encounter": { - 1: `While I trained, I gained the ability to commune with Ghost-type Pokémon. - $Yes, the bond I developed with Pokémon is extremely tight. - $So, come on, just try and see if you can even inflict damage on my Pokémon!`, - }, - "victory": { - 1: "Oh, darn. I've gone and lost." - }, - "defeat": { - 1: "I look forward to battling you again sometime!" - } - }, - "glacia": { - "encounter": { - 1: `All I have seen are challenges by weak Trainers and their Pokémon. - $What about you? It would please me to no end if I could go all out against you!`, - }, - "victory": { - 1: `You and your Pokémon… How hot your spirits burn! - $The all-consuming heat overwhelms. - $It's no surprise that my icy skills failed to harm you.`, - }, - "defeat": { - 1: "A fiercely passionate battle, indeed." - } - }, - "drake": { - "encounter": { - 1: `For us to battle with Pokémon as partners, do you know what it takes? Do you know what is needed? - $If you don't, then you will never prevail over me!`, - }, - "victory": { - 1: "Superb, it should be said." - }, - "defeat": { - 1: "I gave my all for that battle!" - } - }, - "wallace": { - "encounter": { - 1: `There's something about you… A difference in your demeanor. - $I think I sense that in you. Now, show me. Show me the power you wield with your Pokémon. - $And I, in turn, shall present you with a performance of illusions in water by me and my Pokémon!`, - }, - "victory": { - 1: `Bravo. I realize now your authenticity and magnificence as a Pokémon Trainer. - $I find much joy in having met you and your Pokémon. You have proven yourself worthy.`, - }, - "defeat": { - 1: "A grand illusion!" - } - }, - "lorelei": { - "encounter": { - 1: `No one can best me when it comes to icy Pokémon! Freezing moves are powerful! - $Your Pokémon will be at my mercy when they are frozen solid! Hahaha! Are you ready?`, - }, - "victory": { - 1: "How dare you!" - }, - "defeat": { - 1: "There's nothing you can do once you're frozen." - } - }, - "will": { - "encounter": { - 1: `I have trained all around the world, making my psychic Pokémon powerful. - $I can only keep getting better! Losing is not an option!`, - }, - "victory": { - 1: "I… I can't… believe it…" - }, - "defeat": { - 1: "That was close. I wonder what it is that you lack." - } - }, - "malva": { - "encounter": { - 1: `I feel like my heart might just burst into flames. - $I'm burning up with my hatred for you, runt!`, - }, - "victory": { - 1: "What news… So a new challenger has defeated Malva!" - }, - "defeat": { - 1: "I am delighted! Yes, delighted that I could squash you beneath my heel." - } - }, - "hala": { - "encounter": { - 1: "Old Hala is here to make you holler!" - }, - "victory": { - 1: "I could feel the power you gained on your journey." - }, - "defeat": { - 1: "Haha! What a delightful battle!" - } - }, - "molayne": { - "encounter": { - 1: `I gave the captain position to my cousin Sophocles, but I'm confident in my ability. - $My strength is like that of a supernova!`, - }, - "victory": { - 1: "I certainly found an interesting Trainer to face!" - }, - "defeat": { - 1: "Ahaha. What an interesting battle." - } - }, - "rika": { - "encounter": { - 1: "I'd say I'll go easy on you, but… I'd be lying! Think fast!" - }, - "victory": { - 1: "Not bad, kiddo." - }, - "defeat": { - 1: "Nahahaha! You really are something else, kiddo!" - } - }, - "bruno": { - "encounter": { - 1: "We will grind you down with our superior power! Hoo hah!" - }, - "victory": { - 1: "Why? How could I lose?" - }, - "defeat": { - 1: "You can challenge me all you like, but the results will never change!" - } - }, - "bugsy": { - "encounter": { - 1: "I'm Bugsy! I never lose when it comes to bug Pokémon!" - }, - "victory": { - 1: "Whoa, amazing! You're an expert on Pokémon!\nMy research isn't complete yet. OK, you win." - }, - "defeat": { - 1: "Thanks! Thanks to our battle, I was also able to make progress in my research!" - } - }, - "koga": { - "encounter": { - 1: "Fwahahahaha! Pokémon are not merely about brute force--you shall see soon enough!" - }, - "victory": { - 1: "Ah! You've proven your worth!" - }, - "defeat": { - 1: "Have you learned to fear the techniques of the ninja?" - } - }, - "bertha": { - "encounter": { - 1: "Well, would you show this old lady how much you've learned?" - }, - "victory": { - 1: `Well! Dear child, I must say, that was most impressive. - $Your Pokémon believed in you and did their best to earn you the win. - $Even though I've lost, I find myself with this silly grin!`, - }, - "defeat": { - 1: "Hahahahah! Looks like this old lady won!" - } - }, - "lenora": { - "encounter": { - 1: "Well then, challenger, I'm going to research how you battle with the Pokémon you've so lovingly raised!" - }, - "victory": { - 1: "My theory about you was correct. You're more than just talented… You're motivated! I salute you!" - }, - "defeat": { - 1: "Ah ha ha! If you lose, make sure to analyze why, and use that knowledge in your next battle!" - } - }, - "siebold": { - "encounter": { - 1: "As long as I am alive, I shall strive onward to seek the ultimate cuisine... and the strongest opponents in battle!" - }, - "victory": { - 1: "I shall store my memory of you and your Pokémon forever away within my heart." - }, - "defeat": { - 1: `Our Pokémon battle was like food for my soul. It shall keep me going. - $That is how I will pay my respects to you for giving your all in battle!`, - } - }, - "roxie": { - "encounter": { - 1: "Get ready! I'm gonna knock some sense outta ya!" - }, - "victory": { - 1: "Wild! Your reason's already more toxic than mine!" - }, - "defeat": { - 1: "Hey, c'mon! Get serious! You gotta put more out there!" - } - }, - "olivia": { - "encounter": { - 1: "No introduction needed here. Time to battle me, Olivia!" - }, - "victory": { - 1: "Really lovely… Both you and your Pokémon…" - }, - "defeat": { - 1: "Mmm-hmm." - } - }, - "poppy": { - "encounter": { - 1: "Oooh! Do you wanna have a Pokémon battle with me?" - }, - "victory": { - 1: "Uagh?! Mmmuuuggghhh…" - }, - "defeat": { - 1: `Yaaay! I did it! I de-feet-ed you! You can come for… For… An avenge match? - $Come for an avenge match anytime you want!`, - } - }, - "agatha": { - "encounter": { - 1: "Pokémon are for battling! I'll show you how a real Trainer battles!" - }, - "victory": { - 1: "Oh my! You're something special, child!" - }, - "defeat": { - 1: "Bahaha. That's how a proper battle's done!" - } - }, - "flint": { - "encounter": { - 1: "Hope you're warmed up, cause here comes the Big Bang!" - }, - "victory": { - 1: "Incredible! Your moves are so hot, they make mine look lukewarm!" - }, - "defeat": { - 1: "Huh? Is that it? I think you need a bit more passion." - } - }, - "grimsley": { - "encounter": { - 1: "The winner takes everything, and there's nothing left for the loser." - }, - "victory": { - 1: "When one loses, they lose everything… The next thing I'll look for will be victory, too!" - }, - "defeat": { - 1: "If somebody wins, the person who fought against that person will lose." - } - }, - "caitlin": { - "encounter": { - 1: `It's me who appeared when the flower opened up. You who have been waiting… - $You look like a Pokémon Trainer with refined strength and deepened kindness. - $What I look for in my opponent is superb strength… - $Please unleash your power to the fullest!`, - }, - "victory": { - 1: "My Pokémon and I learned so much! I offer you my thanks." - }, - "defeat": { - 1: "I aspire to claim victory with elegance and grace." - } - }, - "diantha": { - "encounter": { - 1: `Battling against you and your Pokémon, all of you brimming with hope for the future… - $Honestly, it just fills me up with energy I need to keep facing each new day! It does!`, - }, - "victory": { - 1: "Witnessing the noble spirits of you and your Pokémon in battle has really touched my heart…" - }, - "defeat": { - 1: "Oh, fantastic! What did you think? My team was pretty cool, right?" - } - }, - "wikstrom": { - "encounter": { - 1: `Well met, young challenger! Verily am I the famed blade of hardened steel, Duke Wikstrom! - $Let the battle begin! En garde!`, - }, - "victory": { - 1: "Glorious! The trust that you share with your honorable Pokémon surpasses even mine!" - }, - "defeat": { - 1: `What manner of magic is this? My heart, it doth hammer ceaselessly in my breast! - $Winning against such a worthy opponent doth give my soul wings--thus do I soar!`, - } - }, - "acerola": { - "encounter": { - 1: "Battling is just plain fun! Come on, I can take you!" - }, - "victory": { - 1: "I'm… I'm speechless! How did you do it?!" - }, - "defeat": { - 1: "Ehaha! What an amazing victory!" - } - }, - "larry_elite": { - "encounter": { - 1: `Hello there… It's me, Larry. - $I serve as a member of the Elite Four too, yes… Unfortunately for me.`, - }, - "victory": { - 1: "Well, that took the wind from under our wings…" - }, - "defeat": { - 1: "It's time for a meeting with the boss." - } - }, - "lance": { - "encounter": { - 1: "I've been waiting for you. Allow me to test your skill.", - 2: "I thought that you would be able to get this far. Let's get this started." - }, - "victory": { - 1: "You got me. You are magnificent!", - 2: "I never expected another trainer to beat me… I'm surprised." - }, - "defeat": { - 1: "That was close. Want to try again?", - 2: "It's not that you are weak. Don't let it bother you." - } - }, - "karen": { - "encounter": { - 1: "I am Karen. Would you care for a showdown with my Dark-type Pokémon?", - 2: "I am unlike those you've already met.", - 3: "You've assembled a charming team. Our battle should be a good one." - }, - "victory": { - 1: "No! I can't win. How did you become so strong?", - 2: "I will not stray from my chosen path.", - 3: "The Champion is looking forward to meeting you." - }, - "defeat": { - 1: "That's about what I expected.", - 2: "Well, that was relatively entertaining.", - 3: "Come visit me anytime." - } - }, - "milo": { - "encounter": { - 1: `Sure seems like you understand Pokémon real well. - $This is gonna be a doozy of a battle! - $I'll have to Dynamax my Pokémon if I want to win!`, - }, - "victory": { - 1: "The power of Grass has wilted… What an incredible Challenger!" - }, - "defeat": { - 1: "This'll really leave you in shock and awe." - } - }, - "lucian": { - "encounter": { - 1: `Just a moment, please. The book I'm reading has nearly reached its thrilling climax… - $The hero has obtained a mystic sword and is about to face their final trial… Ah, never mind. - $Since you've made it this far, I'll put that aside and battle you. - $Let me see if you'll achieve as much glory as the hero of my book!,` - }, - "victory": { - 1: "I see… It appears you've put me in checkmate." - }, - "defeat": { - 1: "I have a reputation to uphold." - } - }, - "drasna": { - "encounter": { - 1: `You must be a strong Trainer. Yes, quite strong indeed… - $That's just wonderful news! Facing opponents like you and your team will make my Pokémon grow like weeds!` - }, - "victory": { - 1: "Oh, dear me. That sure was a quick battle… I do hope you'll come back again sometime!" - }, - "defeat": { - 1: "How can this be?" - } - }, - "kahili": { - "encounter": { - 1: "So, here you are… Why don't we see who the winds favor today, you… Or me?" - }, - "victory": { - 1: "It's frustrating to me as a member of the Elite Four, but it seems your strength is the real deal." - }, - "defeat": { - 1: "That was an ace!" - } - }, - "hassel": { - "encounter": { - 1: "Prepare to learn firsthand how the fiery breath of ferocious battle feels!" - }, - "victory": { - 1: `Fortune smiled on me this time, but… - $Judging from how the match went, who knows if I will be so lucky next time.`, - }, - "defeat": { - 1: "That was an ace!" - } - }, - "blue": { - "encounter": { - 1: "You must be pretty good to get this far." - }, - "victory": { - 1: "I've only lost to him and now to you… Him? Hee, hee…" - }, - "defeat": { - 1: "See? My power is what got me here." - } - }, - "piers": { - "encounter": { - 1: "Get ready for a mosh pit with me and my party! Spikemuth, it's time to rock!" - }, - "victory": { - 1: "Me an' my team gave it our best. Let's meet up again for a battle some time…" - }, - "defeat": { - 1: "My throat's ragged from shoutin'… But 'at was an excitin' battle!" - } - }, - "red": { - "encounter": { - 1: "…!" - }, - "victory": { - 1: "…?" - }, - "defeat": { - 1: "…!" - } - }, - "jasmine": { - "encounter": { - 1: "Oh… Your Pokémon are impressive. I think I will enjoy this." - }, - "victory": { - 1: "You are truly strong. I'll have to try much harder, too." - }, - "defeat": { - 1: "I never expected to win." - } - }, - "lance_champion": { - "encounter": { - 1: "I am still the Champion. I won't hold anything back." - }, - "victory": { - 1: "This is the emergence of a new Champion." - }, - "defeat": { - 1: "I successfully defended my Championship." - } - }, - "steven": { - "encounter": { - 1: `Tell me… What have you seen on your journey with your Pokémon? - $What have you felt, meeting so many other Trainers out there? - $Traveling this rich land… Has it awoken something inside you? - $I want you to come at me with all that you've learned. - $My Pokémon and I will respond in turn with all that we know!`, - }, - "victory": { - 1: "So I, the Champion, fall in defeat…" - }, - "defeat": { - 1: "That was time well spent! Thank you!" - } - }, - "cynthia": { - "encounter": { - 1: "I, Cynthia, accept your challenge! There won't be any letup from me!" - }, - "victory": { - 1: "No matter how fun the battle is, it will always end sometime…" - }, - "defeat": { - 1: "Even if you lose, never lose your love of Pokémon." - } - }, - "iris": { - "encounter": { - 1: `Know what? I really look forward to having serious battles with strong Trainers! - $I mean, come on! The Trainers who make it here are Trainers who desire victory with every fiber of their being! - #And they are battling alongside Pokémon that have been through countless difficult battles! - $If I battle with people like that, not only will I get stronger, my Pokémon will, too! - $And we'll get to know each other even better! OK! Brace yourself! - $I'm Iris, the Pokémon League Champion, and I'm going to defeat you!`, - }, - "victory": { - 1: "Aghhhh… I did my best, but we lost…" - }, - "defeat": { - 1: "Yay! We won!" - } - }, - "hau": { - "encounter": { - 1: `I wonder if a Trainer battles differently depending on whether they're from a warm region or a cold region. - $Let's test it out!`, - }, - "victory": { - 1: "That was awesome! I think I kinda understand your vibe a little better now!" - }, - "defeat": { - 1: "Ma-an, that was some kinda battle!" - } - }, - "geeta": { - "encounter": { - 1: `I decided to throw my hat in the ring once more. - $Come now… Show me the fruits of your training.`, - }, - "victory": { - 1: "I eagerly await news of all your achievements!" - }, - "defeat": { - 1: "What's the matter? This isn't all, is it?" - } - }, - "nemona": { - "encounter": { - 1: "Yesss! I'm so psyched! Time for us to let loose!" - }, - "victory": { - 1: "Well, that stinks, but I still had fun! I'll getcha next time!" - }, - "defeat": { - 1: "Well, that was a great battle! Fruitful for sure." - } - }, - "leon": { - "encounter": { - 1: "We're gonna have an absolutely champion time!" - }, - "victory": { - 1: `My time as Champion is over… - $But what a champion time it's been! - $Thank you for the greatest battle I've ever had!`, - }, - "defeat": { - 1: "An absolute champion time, that was!" - } - }, - "whitney": { - "encounter": { - 1: "Hey! Don't you think Pokémon are, like, super cute?" - }, - "victory": { - 1: "Waaah! Waaah! You're so mean!" - }, - "defeat": { - 1: "And that's that!" - } - }, - "chuck": { - "encounter": { - 1: "Hah! You want to challenge me? Are you brave or just ignorant?" - }, - "victory": { - 1: "You're strong! Would you please make me your apprentice?" - }, - "defeat": { - 1: "There. Do you realize how much more powerful I am than you?" - } - }, - "katy": { - "encounter": { - 1: "Don't let your guard down unless you would like to find yourself knocked off your feet!" - }, - "victory": { - 1: "All of my sweet little Pokémon dropped like flies!" - }, - "defeat": { - 1: "Eat up, my cute little Vivillon!" - } - }, - "pryce": { - "encounter": { - 1: "Youth alone does not ensure victory! Experience is what counts." - }, - "victory": { - 1: "Outstanding! That was perfect. Try not to forget what you feel now." - }, - "defeat": { - 1: "Just as I envisioned." - } - }, - "clair": { - "encounter": { - 1: "Do you know who I am? And you still dare to challenge me?" - }, - "victory": { - 1: "I wonder how far you can get with your skill level. This should be fascinating." - }, - "defeat": { - 1: "That's that." - } - }, - "maylene": { - "encounter": { - 1: `I've come to challenge you now, and I won't hold anything back. - $Please prepare yourself for battle!`, - }, - "victory": { - 1: "I admit defeat…" - }, - "defeat": { - 1: "That was awesome." - } - }, - "fantina": { - "encounter": { - 1: `You shall challenge me, yes? But I shall win. - $That is what the Gym Leader of Hearthome does, non?`, - }, - "victory": { - 1: "You are so fantastically strong. I know why I have lost." - }, - "defeat": { - 1: "I am so, so, very happy!" - } - }, - "byron": { - "encounter": { - 1: `Trainer! You're young, just like my son, Roark. - $With more young Trainers taking charge, the future of Pokémon is bright! - $So, as a wall for young people, I'll take your challenge!`, - }, - "victory": { - 1: "Hmm! My sturdy Pokémon--defeated!" - }, - "defeat": { - 1: "Gwahahaha! How were my sturdy Pokémon?!" - } - }, - "olympia": { - "encounter": { - 1: "An ancient custom deciding one's destiny. The battle begins!" - }, - "victory": { - 1: "Create your own path. Let nothing get in your way. Your fate, your future." - }, - "defeat": { - 1: "Our path is clear now." - } - }, - "volkner": { - "encounter": { - 1: `Since you've come this far, you must be quite strong… - $I hope you're the Trainer who'll make me remember how fun it is to battle!`, - }, - "victory": { - 1: `You've got me beat… - $Your desire and the noble way your Pokémon battled for you… - $I even felt thrilled during our match. That was a very good battle.`, - }, - "defeat": { - 1: `It was not shocking at all… - $That is not what I wanted!`, - } - }, - "burgh": { - "encounter": { - 1: `M'hm… If I win this battle, I feel like I can draw a picture unlike any before it. - $OK! I can hear my battle muse loud and clear. Let's get straight to it!`, - 2: `Of course, I'm really proud of all of my Pokémon! - $Well now… Let's get right to it!` - }, - "victory": { - 1: "Is it over? Has my muse abandoned me?", - 2: "Hmm… It's over! You're incredible!" - }, - "defeat": { - 1: "Wow… It's beautiful somehow, isn't it…", - 2: `Sometimes I hear people say something was an ugly win. - $I think if you're trying your best, any win is beautiful.` - } - }, - "elesa": { - "encounter": { - 1: `C'est fini! When I'm certain of that, I feel an electric jolt run through my body! - $I want to feel the sensation, so now my beloved Pokémon are going to make your head spin!`, - }, - "victory": { - 1: "I meant to make your head spin, but you shocked me instead." - }, - "defeat": { - 1: "That was unsatisfying somehow… Will you give it your all next time?" - } - }, - "skyla": { - "encounter": { - 1: `It's finally time for a showdown! That means the Pokémon battle that decides who's at the top, right? - $I love being on the summit! 'Cause you can see forever and ever from high places! - $So, how about you and I have some fun?`, - }, - "victory": { - 1: "Being your opponent in battle is a new source of strength to me. Thank you!" - }, - "defeat": { - 1: "Win or lose, you always gain something from a battle, right?" - } - }, - "brycen": { - "encounter": { - 1: `There is also strength in being with other people and Pokémon. - $Receiving their support makes you stronger. I'll show you this power!`, - }, - "victory": { - 1: "The wonderful combination of you and your Pokémon! What a beautiful friendship!" - }, - "defeat": { - 1: "Extreme conditions really test you and train you!" - } - }, - "drayden": { - "encounter": { - 1: `What I want to find is a young Trainer who can show me a bright future. - $Let's battle with everything we have: your skill, my experience, and the love we've raised our Pokémon with!`, - }, - "victory": { - 1: "This intense feeling that floods me after a defeat… I don't know how to describe it." - }, - "defeat": { - 1: "Harrumph! I know your ability is greater than that!" - } - }, - "grant": { - "encounter": { - 1: `There is only one thing I wish for. - $That by surpassing one another, we find a way to even greater heights.`, - }, - "victory": { - 1: "You are a wall that I am unable to surmount!" - }, - "defeat": { - 1: `Do not give up. - $That is all there really is to it. - $The most important lessons in life are simple.`, - } - }, - "korrina": { - "encounter": { - 1: "Time for Lady Korrina's big appearance!" - }, - "victory": { - 1: "It's your very being that allows your Pokémon to evolve!" - }, - "defeat": { - 1: "What an explosive battle!" - } - }, - "clemont": { - "encounter": { - 1: "Oh! I'm glad that we got to meet!" - }, - "victory": { - 1: "Your passion for battle inspires me!" - }, - "defeat": { - 1: "Looks like my Trainer-Grow-Stronger Machine, Mach 2 is really working!" - } - }, - "valerie": { - "encounter": { - 1: `Oh, if it isn't a young Trainer… It is lovely to get to meet you like this. - $Then I suppose you have earned yourself the right to a battle, as a reward for your efforts. - $The elusive Fairy may appear frail as the breeze and delicate as a bloom, but it is strong.`, - }, - "victory": { - 1: "I hope that you will find things worth smiling about tomorrow…" - }, - "defeat": { - 1: "Oh goodness, what a pity…" - } - }, - "wulfric": { - "encounter": { - 1: `You know what? We all talk big about what you learn from battling and bonds and all that… - $But really, I just do it 'cause it's fun. - $Who cares about the grandstanding? Let's get to battling!`, - }, - "victory": { - 1: "Outstanding! I'm tough as an iceberg, but you smashed me through and through!" - }, - "defeat": { - 1: "Tussle with me and this is what happens!" - } - }, - "kabu": { - "encounter": { - 1: `Every Trainer and Pokémon trains hard in pursuit of victory. - $But that means your opponent is also working hard to win. - $In the end, the match is decided by which side is able to unleash their true potential.`, - }, - "victory": { - 1: "I'm glad I could battle you today!" - }, - "defeat": { - 1: "That's a great way for me to feel my own growth!" - } - }, - "bea": { - "encounter": { - 1: `Do you have an unshakable spirit that won't be moved, no matter how you are attacked? - $I think I'll just test that out, shall I?`, - }, - "victory": { - 1: "I felt the fighting spirit of your Pokémon as you led them in battle." - }, - "defeat": { - 1: "That was the best sort of match anyone could ever hope for." - } - }, - "opal": { - "encounter": { - 1: "Let me have a look at how you and your partner Pokémon behave!" - }, - "victory": { - 1: "Your pink is still lacking, but you're an excellent Trainer with excellent Pokémon." - }, - "defeat": { - 1: "Too bad for you, I guess." - } - }, - "bede": { - "encounter": { - 1: "I suppose I should prove beyond doubt just how pathetic you are and how strong I am." - }, - "victory": { - 1: "I see… Well, that's fine. I wasn't really trying all that hard anyway." - }, - "defeat": { - 1: "Not a bad job, I suppose." - } - }, - "gordie": { - "encounter": { - 1: "So, let's get this over with." - }, - "victory": { - 1: "I just want to climb into a hole… Well, I guess it'd be more like falling from here." - }, - "defeat": { - 1: "Battle like you always do, victory will follow!" - } - }, - "marnie": { - "encounter": { - 1: `The truth is, when all's said and done… I really just wanna become Champion for myself! - $So don't take it personal when I kick your butt!`, - }, - "victory": { - 1: "OK, so I lost… But I got to see a lot of the good points of you and your Pokémon!" - }, - "defeat": { - 1: "Hope you enjoyed our battle tactics." - } - }, - "raihan": { - "encounter": { - 1: "I'm going to defeat the Champion, win the whole tournament, and prove to the world just how strong the great Raihan really is!" - }, - "victory": { - 1: `I look this good even when I lose. - $It's a real curse. - $Guess it's time for another selfie!`, - }, - "defeat": { - 1: "Let's take a selfie to remember this." - } - }, - "brassius": { - "encounter": { - 1: "I assume you are ready? Let our collaborative work of art begin!" - }, - "victory": { - 1: "Ahhh…vant-garde!" - }, - "defeat": { - 1: "I will begin on a new piece at once!" - } - }, - "iono": { - "encounter": { - 1: `How're ya feelin' about this battle? - $... - $Let's get this show on the road! How strong is our challenger? - $I 'unno! Let's find out together!`, - }, - "victory": { - 1: "You're as flashy and bright as a 10,000,000-volt Thunderbolt, friendo!" - }, - "defeat": { - 1: "Your eyeballs are MINE!" - } - }, - "larry": { - "encounter": { - 1: "When all's said and done, simplicity is strongest." - }, - "victory": { - 1: "A serving of defeat, huh?" - }, - "defeat": { - 1: "I'll call it a day." - } - }, - "ryme": { - "encounter": { - 1: "Come on, baby! Rattle me down to the bone!" - }, - "victory": { - 1: "You're cool, my friend—you move my SOUL!" - }, - "defeat": { - 1: "Later, baby!" - } - }, - "grusha": { - "encounter": { - 1: "All I need to do is make sure the power of my Pokémon chills you to the bone!" - }, - "victory": { - 1: "Your burning passion… I kinda like it, to be honest." - }, - "defeat": { - 1: "Things didn't heat up for you." - } - }, - "marnie_elite": { - "encounter": { - 1: "You've made it this far, huh? Let's see if you can handle my Pokémon!", - 2: "I'll give it my best shot, but don't think I'll go easy on you!" - }, - "victory": { - 1: "I can't believe I lost... But you deserved that win. Well done!", - 2: "Looks like I've still got a lot to learn. Great battle, though!" - }, - "defeat": { - 1: "You put up a good fight, but I've got the edge! Better luck next time!", - 2: "Seems like my training's paid off. Thanks for the battle!" - } - }, - "nessa_elite": { - "encounter": { - 1: "The tides are turning in my favor. Ready to get swept away?", - 2: "Let's make some waves with this battle! I hope you're prepared!" - }, - "victory": { - 1: "You navigated those waters perfectly... Well done!", - 2: "Looks like my currents were no match for you. Great job!" - }, - "defeat": { - 1: "Water always finds a way. That was a refreshing battle!", - 2: "You fought well, but the ocean's power is unstoppable!" - } - }, - "bea_elite": { - "encounter": { - 1: "Prepare yourself! My fighting spirit burns bright!", - 2: "Let's see if you can keep up with my relentless pace!" - }, - "victory": { - 1: "Your strength... It's impressive. You truly deserve this win.", - 2: "I've never felt this intensity before. Amazing job!" - }, - "defeat": { - 1: "Another victory for my intense training regimen! Well done!", - 2: "You've got strength, but I trained harder. Great battle!" - } - }, - "allister_elite": { - "encounter": { - 1: "Shadows fall... Are you ready to face your fears?", - 2: "Let's see if you can handle the darkness that I command." - }, - "victory": { - 1: "You've dispelled the shadows... For now. Well done.", - 2: "Your light pierced through my darkness. Great job." - }, - "defeat": { - 1: "The shadows have spoken... Your strength isn't enough.", - 2: "Darkness triumphs... Maybe next time you'll see the light." - } - }, - "raihan_elite": { - "encounter": { - 1: "Storm's brewing! Let's see if you can weather this fight!", - 2: "Get ready to face the eye of the storm!" - }, - "victory": { - 1: "You've bested the storm... Incredible job!", - 2: "You rode the winds perfectly... Great battle!" - }, - "defeat": { - 1: "Another storm weathered, another victory claimed! Well fought!", - 2: "You got caught in my storm! Better luck next time!" - } - }, - "alder": { - "encounter": { - 1: "Preparati ad affrontare l’allenatore più in gamba di Unima!" - }, - "victory": { - 1: "Ben fatto! Hai un talento invidiabile." - }, - "defeat": { - 1: `Un freddo vento attraversa il mio cuore... - $Che battaglia!` - } - }, - "kieran": { - "encounter": { - 1: `Attraverso il duro lavoro, divento sempre più forte! - $Non perdo mai.` - }, - "victory": { - 1: `Non posso crederci… - $Che battaglia mozzafiato!` - }, - "defeat": { - 1: `Cavoli, che scontro! - $È ora che tu ti alleni ancora più duramente.` - } - }, - "rival": { - "encounter": { - 1: `@c{smile}Hey, I was looking for you! I knew you were eager to get going but I expected at least a goodbye… - $@c{smile_eclosed}So you're really pursuing your dream after all?\n I almost can't believe it. - $@c{serious_smile_fists}Since we're here, how about a battle?\nAfter all, I want to make sure you're ready. - $@c{serious_mopen_fists}Don't hold back, I want you to give me everything you've got!` - }, - "victory": { - 1: `@c{shock}Wow… You cleaned me out.\nAre you actually a beginner? - $@c{smile}Maybe it was a bit of luck but…\nWho knows you might just be able to go all the way. - $By the way, the professor asked me to give you these items. They look pretty cool. - $@c{serious_smile_fists}Good luck out there! - $@c{smile}Oh- and I hope you enjoy the event!` - }, - }, - "rival_female": { - "encounter": { - 1: `@c{smile_wave}There you are! I've been looking everywhere for you!\n@c{angry_mopen}Did you forget to say goodbye to your best friend? - $@c{smile_ehalf}You're going after your dream, huh?\nThat day is really today isn't it… - $@c{smile}Anyway, I'll forgive you for forgetting me, but on one condition. @c{smile_wave_wink}You have to battle me! - $@c{angry_mopen}Give it your all! Wouldn't want your adventure to be over before it started, right?` - }, - "victory": { - 1: `@c{shock}You just started and you're already this strong?!@d{96}\n@c{angry}You totally cheated, didn't you? - $@c{smile_wave_wink}Just kidding!@d{64} @c{smile_eclosed}I lost fair and square… I have a feeling you're going to do really well out there. - $@c{smile}By the way, the professor wanted me to give you some items. Hopefully they're helpful! - $@c{smile_wave}Do your best like always! I believe in you! - $@c{smile}Oh- and I hope you enjoy the event!` - }, - }, - "rival_2": { - "encounter": { - 1: `@c{smile}Hey, you're here too?\n@c{smile_eclosed}Still a perfect record, huh…? - $@c{serious_mopen_fists}I know it kind of looks like I followed you here, but that's mostly not true. - $@c{serious_smile_fists}Honestly though, I've been itching for a rematch since you beat me back at home. - $I've been doing a lot of my own training so I'll definitely put up a fight this time. - $@c{serious_mopen_fists}Don't hold back, just like before!\nLet's go!` - }, - "victory": { - 1: `@c{neutral_eclosed}Oh. I guess I was overconfident. - $@c{smile}That's alright, though. I figured this might happen.\n@c{serious_mopen_fists}It just means I need to try harder for next time!\n - $@c{smile}Oh, not that you really need the help, but I had an extra one of these lying around and figured you might want it.\n - $@c{serious_smile_fists}Don't expect another one after this, though!\nI can't keep giving my opponent an advantage after all. - $@c{smile}Anyway, take care, and enjoy the event!` - }, - }, - "rival_2_female": { - "encounter": { - 1: `@c{smile_wave}Oh, fancy meeting you here. Looks like you're still undefeated. @c{angry_mopen}Huh… Not bad! - $@c{angry_mopen}I know what you're thinking, and no, I wasn't creeping on you. @c{smile_eclosed}I just happened to be in the area. - $@c{smile_ehalf}I'm happy for you but I just want to let you know that it's OK to lose sometimes. - $@c{smile}We learn from our mistakes, often more than we would if we kept succeeding. - $@c{angry_mopen}In any case, I've been training hard for our rematch, so you'd better give it your all!` - }, - "victory": { - 1: `@c{neutral}I… wasn't supposed to lose that time… - $@c{smile}Aw well. That just means I'll have to train even harder for next time! - $@c{smile_wave}I also got you another one of these!\n@c{smile_wave_wink}No need to thank me~. - $@c{angry_mopen}This is the last one, though! You won't be getting anymore freebies from me after this! - $@c{smile_wave}Keep at it, and enjoy the event!` - }, - "defeat": { - 1: "It's OK to lose sometimes…" - } - }, - "rival_3": { - "encounter": { - 1: `@c{smile}Hey, look who it is! It's been a while.\n@c{neutral}You're… still undefeated? Huh. - $@c{neutral_eclosed}Things have been kind of… strange.\nIt's not the same back home without you. - $@c{serious}I know it's selfish, but I need to get this off my chest.\n@c{neutral_eclosed}I think you're in over your head here. - $@c{serious}Never losing once is just unrealistic.\nWe need to lose sometimes in order to grow. - $@c{neutral_eclosed}You've had a great run but there's still so much ahead, and it only gets harder. @c{neutral}Are you prepared for that? - $@c{serious_mopen_fists}If so, prove it to me.` - }, - "victory": { - 1: "@c{angry_mhalf}This is ridiculous… I've hardly stopped training…\nHow are we still so far apart?" - }, - }, - "rival_3_female": { - "encounter": { - 1: `@c{smile_wave}Long time no see! Still haven't lost, huh.\n@c{angry}You're starting to get on my nerves. @c{smile_wave_wink}Just kidding! - $@c{smile_ehalf}But really, don't you miss home by now? Or… me?\nI… I mean, we've really missed you. - $@c{smile_eclosed}I support you in your dream and everything, but the reality is you're going to lose sooner or later. - $@c{smile}And when you do, I'll be there for you like always.\n@c{angry_mopen}Now, let me show you how strong I've become!` - }, - "victory": { - 1: "@c{shock}After all that… it wasn't enough…?\nYou'll never come back at this rate…" - - }, - "defeat": { - 1: "You gave it your best, now let's go home." - } - }, - "rival_4": { - "encounter": { - 1: `@c{neutral}Hey. - $I won't mince words or pleasantries with you.\n@c{neutral_eclosed}I'm here to win, plain and simple. - $@c{serious_mhalf_fists}I've learned to maximize my potential by putting all my time into training. - $@c{smile}You get a lot of extra time when you cut out the unnecessary sleep and social interaction. - $@c{serious_mopen_fists}None of that matters anymore, not until I win. - $@c{neutral_eclosed}I've even reached the point where I don't lose anymore.\n@c{smile_eclosed}I suppose your philosophy wasn't so wrong after all. - $@c{angry_mhalf}Losing is for the weak, and I'm not weak anymore. - $@c{serious_mopen_fists}Prepare yourself.` - }, - "victory": { - 1: "@c{neutral}What…@d{64} What are you?" - }, - }, - "rival_4_female": { - "encounter": { - 1: `@c{neutral}It's me! You didn't forget about me again… did you? - $@c{smile}You should be proud of how far you made it. Congrats!\nBut it looks like it's the end of your journey. - $@c{smile_eclosed}You've awoken something in me I never knew was there.\nIt seems like all I do now is train. - $@c{smile_ehalf}I hardly even eat or sleep now, I just train my Pokémon all day, getting stronger every time. - $@c{neutral}In fact, I… hardly recognize myself. - $And now, I've finally reached peak performance.\nI don't think anyone could beat me now. - $And you know what? It's all because of you.\n@c{smile_ehalf}I don't know whether to thank you or hate you. - $@c{angry_mopen}Prepare yourself.` - }, - "victory": { - 1: "@c{neutral}What…@d{64} What are you?" - - }, - "defeat": { - 1: "$@c{smile}You should be proud of how far you made it." - } - }, - "rival_5": { - "encounter": { - 1: "@c{neutral}…" - }, - "victory": { - 1: "@c{neutral}…" - }, - }, - "rival_5_female": { - "encounter": { - 1: "@c{neutral}…" - }, - "victory": { - 1: "@c{neutral}…" - - }, - "defeat": { - 1: "$@c{smile_ehalf}…" - } - }, - "rival_6": { - "encounter": { - 1: `@c{smile_eclosed}We meet again. - $@c{neutral}I've had some time to reflect on all this.\nThere's a reason this all seems so strange. - $@c{neutral_eclosed}Your dream, my drive to beat you…\nIt's all a part of something greater. - $@c{serious}This isn't about me, or about you… This is about the world, @c{serious_mhalf_fists}and it's my purpose to push you to your limits. - $@c{neutral_eclosed}Whether I've fulfilled that purpose I can't say, but I've done everything in my power. - $@c{neutral}This place we ended up in is terrifying… Yet somehow I feel unphased, like I've been here before. - $@c{serious_mhalf_fists}You feel the same, don't you? - $@c{serious}…and it's like something here is speaking to me.\nThis is all the world's known for a long time now. - $Those times we cherished together that seem so recent are nothing but a distant memory. - $@c{neutral_eclosed}Who can say whether they were ever even real in the first place. - $@c{serious_mopen_fists}You need to keep pushing, because if you don't, it will never end. You're the only one who can do this. - $@c{serious_smile_fists}I hardly know what any of this means, I just know that it's true. - $@c{serious_mopen_fists}If you can't defeat me here and now, you won't stand a chance.` - }, - "victory": { - 1: `@c{smile_eclosed}It looks like my work is done here. - $I want you to promise me one thing.\n@c{smile}After you heal the world, please come home.` - }, - }, - "rival_6_female": { - "encounter": { - 1: `@c{smile_ehalf}So it's just us again. - $@c{smile_eclosed}You know, I keep going around and around in my head… - $@c{smile_ehalf}There's something to all this, why everything seems so strange now… - $@c{smile}You have your dream, and I have this ambition in me… - $I just can't help but feel there's a greater purpose to all this, to what we're doing, you and I. - $@c{smile_eclosed}I think I'm supposed to push you… to your limits. - $@c{smile_ehalf}I'm not sure if I've been doing a good job at that, but I've tried my best up to now. - $It's something about this strange and dreadful place… Everything seems so clear… - $This… is all the world's known for a long time now. - $@c{smile_eclosed}It's like I can barely remember the memories we cherished together. - $@c{smile_ehalf}Were they even real? They seem so far away now… - $@c{angry_mopen}You need to keep pushing, because if you don't, it will never end. You're the only one who can do this. - $@c{smile_ehalf}I… don't know what all this means… but I feel it's true. - $@c{neutral}If you can't defeat me here and now, you won't stand a chance.` - }, - "victory": { - 1: `@c{smile_ehalf}I… I think I fulfilled my purpose… - $@c{smile_eclosed}Promise me… After you heal the world… Please… come home safe. - $@c{smile_ehalf}…Thank you.` - - }, - }, -}; - - -// Dialogue of the NPCs in the game when the player character is female. For languages that do not have gendered pronouns, this can be set to PGMdialogue. -export const PGFdialogue: DialogueTranslationEntries = PGMdialogue; - -// Dialogue of the endboss of the game when the player character is male (Or unset) -export const PGMbattleSpecDialogue: SimpleTranslationEntries = { - "encounter": `It appears the time has finally come once again.\nYou know why you have come here, do you not? - $You were drawn here, because you have been here before.\nCountless times. - $Though, perhaps it can be counted.\nTo be precise, this is in fact your {{cycleCount}} cycle. - $Each cycle your mind reverts to its former state.\nEven so, somehow, remnants of your former selves remain. - $Until now you have yet to succeed, but I sense a different presence in you this time.\n - $You are the only one here, though it is as if there is… another. - $Will you finally prove a formidable challenge to me?\nThe challenge I have longed after for millennia? - $We begin.`, - "firstStageWin": `I see. The presence I felt was indeed real.\nIt appears I no longer need to hold back. - $Do not disappoint me.`, - "secondStageWin": "…Magnificent." -}; - -// Dialogue of the endboss of the game when the player character is female. For languages that do not have gendered pronouns, this can be set to PGMbattleSpecDialogue. -export const PGFbattleSpecDialogue: SimpleTranslationEntries = PGMbattleSpecDialogue; - -// Dialogue that does not fit into any other category (e.g. tutorial messages, or the end of the game). For when the player character is male -export const PGMmiscDialogue: SimpleTranslationEntries = { - "ending": - `@c{smile}Oh? You won?@d{96} @c{smile_eclosed}I guess I should've known.\nBut, you're back now. - $@c{smile}It's over.@d{64} You ended the loop. - $@c{serious_smile_fists}You fulfilled your dream too, didn't you?\nYou didn't lose even once. - $@c{neutral}I'm the only one who'll remember what you did.@d{96}\nI guess that's okay, isn't it? - $@c{serious_smile_fists}Your legend will always live on in our hearts. - $@c{smile_eclosed}Anyway, I've had about enough of this place, haven't you? Let's head home. - $@c{serious_smile_fists}Maybe when we get back, we can have another battle?\nIf you're up to it.`, - "ending_female": - `@c{shock}You're back?@d{32} Does that mean…@d{96} you won?!\n@c{smile_ehalf}I should have known you had it in you. - $@c{smile_eclosed}Of course… I always had that feeling.\n@c{smile}It's over now, right? You ended the loop. - $@c{smile_ehalf}You fulfilled your dream too, didn't you?\nYou didn't lose even once. - $I'll be the only one to remember what you did.\n@c{angry_mopen}I'll try not to forget! - $@c{smile_wave_wink}Just kidding!@d{64} @c{smile}I'd never forget.@d{32}\nYour legend will live on in our hearts. - $@c{smile_wave}Anyway,@d{64} it's getting late…@d{96} I think?\nIt's hard to tell in this place. - $Let's go home. @c{smile_wave_wink}Maybe tomorrow, we can have another battle, for old time's sake?`, -}; -// Dialogue that does not fit into any other category (e.g. tutorial messages, or the end of the game). For when the player character is female. For languages that do not have gendered pronouns, this can be set to PGMmiscDialogue. -export const PGFmiscDialogue: SimpleTranslationEntries = PGMmiscDialogue; - - -// Dialogue of the named double battles in the game. For when the player is male (or unset). -export const PGMdoubleBattleDialogue: DialogueTranslationEntries = { - "blue_red_double": { - "encounter": { - 1: `Blue: Hey Red, let's show them what we're made of! - $Red: ... - $Blue: This is Pallet Town Power!`, - }, - "victory": { - 1: `Blue: That was a great battle! - $Red: ...`, - }, - }, - "red_blue_double": { - "encounter": { - 1: `Red: ...! - $Blue: He never talks much. - $Blue: But dont let that fool you! He is a champ after all!`, - }, - "victory": { - 1: `Red: ...! - $Blue: Next time we will beat you!`, - }, - }, - "tate_liza_double": { - "encounter": { - 1: `Tate: Are you suprised? - $Liza: We are two gym leaders at once! - $Tate: We are twins! - $Liza: We dont need to talk to understand each other! - $Tate: Twice the power... - $Liza: Can you handle it?`, - }, - "victory": { - 1: `Tate: What? Our combination was perfect! - $Liza: Looks like we need to train more...`, - }, - }, - "liza_tate_double": { - "encounter": { - 1: `Liza: Hihihi... Are you suprised? - $Tate: Yes, we are really two gym leaders at once! - $Liza: This is my twin brother Tate! - $Tate: And this is my twin sister Liza! - $Liza: Don't you think we are a perfect combination?` - }, - "victory": { - 1: `Liza: Are we... - $Tate: ...not as strong as we thought?`, - }, - }, - "wallace_steven_double": { - "encounter": { - 1: `Steven: Wallace, let's show them the power of the champions! - $Wallace: We will show you the power of Hoenn! - $Steven: Let's go!`, - }, - "victory": { - 1: `Steven: That was a great battle! - $Wallace: We will win next time!`, - }, - }, - "steven_wallace_double": { - "encounter": { - 1: `Steven: Do you have any rare pokémon? - $Wallace: Steven... We are here for a battle, not to show off our pokémon. - $Steven: Oh... I see... Let's go then!`, - }, - "victory": { - 1: `Steven: Now that we are done with the battle, let's show off our pokémon! - $Wallace: Steven...`, - }, - }, - "alder_iris_double": { - "encounter": { - 1: `Alder: We are the strongest trainers in Unova! - $Iris: Fights against strong trainers are the best!`, - }, - "victory": { - 1: `Alder: Wow! You are super strong! - $Iris: We will win next time!`, - }, - }, - "iris_alder_double": { - "encounter": { - 1: `Iris: Welcome Challenger! I am THE Unova Champion! - $Alder: Iris, aren't you a bit too excited?`, - }, - "victory": { - 1: `Iris: A loss like this is not easy to take... - $Alder: But we will only get stronger with every loss!`, - }, - }, - "piers_marnie_double": { - "encounter": { - 1: `Marnie: Brother, let's show them the power of Spikemuth! - $Piers: We bring darkness!`, - }, - "victory": { - 1: `Marnie: You brought light to our darkness! - $Piers: Its too bright...`, - }, - }, - "marnie_piers_double": { - "encounter": { - 1: `Piers: Ready for a concert? - $Marnie: Brother... They are here to fight, not to sing...`, - }, - "victory": { - 1: `Piers: Now that was a great concert! - $Marnie: Brother...`, - }, - }, -}; - -// Dialogue of the named double battles in the game. For when the player is female. For languages that do not have gendered pronouns, this can be set to PGMdoubleBattleDialogue. -export const PGFdoubleBattleDialogue: DialogueTranslationEntries = PGMdoubleBattleDialogue; diff --git a/src/locales/it/egg.ts b/src/locales/it/egg.json similarity index 88% rename from src/locales/it/egg.ts rename to src/locales/it/egg.json index 5e5ddee2e2f..9f3baddf975 100644 --- a/src/locales/it/egg.ts +++ b/src/locales/it/egg.json @@ -1,6 +1,4 @@ -import { SimpleTranslationEntries } from "#app/interfaces/locales"; - -export const egg: SimpleTranslationEntries = { +{ "egg": "Uovo", "defaultTier": "Comune", "greatTier": "Raro", @@ -24,5 +22,5 @@ export const egg: SimpleTranslationEntries = { "rareEggMoveUnlock": "Mossa da uovo rara sbloccata: {{moveName}}", "moveUPGacha": "Mossa +", "shinyUPGacha": "Shiny +", - "legendaryUPGacha": "+", -} as const; + "legendaryUPGacha": "+" +} \ No newline at end of file diff --git a/src/locales/it/fight-ui-handler.json b/src/locales/it/fight-ui-handler.json new file mode 100644 index 00000000000..969d8dad370 --- /dev/null +++ b/src/locales/it/fight-ui-handler.json @@ -0,0 +1,7 @@ +{ + "pp": "PP", + "power": "Potenza", + "accuracy": "Precisione", + "abilityFlyInText": "{{passive}} {{pokemonName}} {{abilityName}}", + "passive": "Passiva di " +} \ No newline at end of file diff --git a/src/locales/it/fight-ui-handler.ts b/src/locales/it/fight-ui-handler.ts deleted file mode 100644 index 91f1c3c19f4..00000000000 --- a/src/locales/it/fight-ui-handler.ts +++ /dev/null @@ -1,9 +0,0 @@ -import { SimpleTranslationEntries } from "#app/interfaces/locales"; - -export const fightUiHandler: SimpleTranslationEntries = { - "pp": "PP", - "power": "Potenza", - "accuracy": "Precisione", - "abilityFlyInText": "{{passive}} {{pokemonName}} {{abilityName}}", - "passive": "Passiva di ", // The space at the end is important -} as const; diff --git a/src/locales/it/filter-bar.ts b/src/locales/it/filter-bar.json similarity index 88% rename from src/locales/it/filter-bar.ts rename to src/locales/it/filter-bar.json index 84ff98f381d..d2346d8d3b1 100644 --- a/src/locales/it/filter-bar.ts +++ b/src/locales/it/filter-bar.json @@ -1,6 +1,4 @@ -import { SimpleTranslationEntries } from "#app/interfaces/locales"; - -export const filterBar: SimpleTranslationEntries = { +{ "genFilter": "Gen", "typeFilter": "Tipo", "caughtFilter": "Catturati", @@ -36,5 +34,5 @@ export const filterBar: SimpleTranslationEntries = { "sortByCost": "Costo", "sortByCandies": "Caramelle", "sortByIVs": "IVs", - "sortByName": "Nome", -}; + "sortByName": "Nome" +} \ No newline at end of file diff --git a/src/locales/it/game-mode.json b/src/locales/it/game-mode.json new file mode 100644 index 00000000000..4b0f0448bef --- /dev/null +++ b/src/locales/it/game-mode.json @@ -0,0 +1,8 @@ +{ + "classic": "Classica", + "endless": "Infinita", + "endlessSpliced": "Infinita (fusioni)", + "dailyRun": "Run giornaliera", + "unknown": "Sconosciuta", + "challenge": "Sfida" +} \ No newline at end of file diff --git a/src/locales/it/game-mode.ts b/src/locales/it/game-mode.ts deleted file mode 100644 index 88bc39e4a76..00000000000 --- a/src/locales/it/game-mode.ts +++ /dev/null @@ -1,10 +0,0 @@ -import { SimpleTranslationEntries } from "#app/interfaces/locales"; - -export const gameMode: SimpleTranslationEntries = { - "classic": "Classica", - "endless": "Infinita", - "endlessSpliced": "Infinita (fusioni)", - "dailyRun": "Run giornaliera", - "unknown": "Sconosciuta", - "challenge": "Sfida", -} as const; diff --git a/src/locales/it/game-stats-ui-handler.ts b/src/locales/it/game-stats-ui-handler.json similarity index 87% rename from src/locales/it/game-stats-ui-handler.ts rename to src/locales/it/game-stats-ui-handler.json index 904acbf610d..605b759b69e 100644 --- a/src/locales/it/game-stats-ui-handler.ts +++ b/src/locales/it/game-stats-ui-handler.json @@ -1,44 +1,42 @@ -import { SimpleTranslationEntries } from "#app/interfaces/locales"; - -export const gameStatsUiHandler: SimpleTranslationEntries = { - "stats": "Statistiche", - "playTime": "Tempo di gioco", - "totalBattles": "Battaglie totali", - "starters": "Starters", - "shinyStarters": "Starters shiny", - "speciesSeen": "Specie viste", - "speciesCaught": "Specie catturate", - "ribbonsOwned": "Fiocchi ottenuti", - "classicRuns": "Totale run (classica)", - "classicWins": "Totale Vittorie (classica)", - "dailyRunAttempts": "Tentativi di run giornaliere", - "dailyRunWins": "Run giornaliere vinte", - "endlessRuns": "Run in modalità infinita", - "highestWaveEndless": "Orda più alta (Infinita)", - "highestMoney": "Miglior patrimonio", - "highestDamage": "Danni maggiori inflitti", - "highestHPHealed": "PS maggiori rigenerati", - "pokemonEncountered": "Pokémon incontrati", - "pokemonDefeated": "Pokémon sconfitti", - "pokemonCaught": "Pokémon catturati", - "eggsHatched": "Uova schiuse", - "subLegendsSeen": "Semi-leggendari visti", - "subLegendsCaught": "Semi-leggendari catturati", - "subLegendsHatched": "Semi-leggendari schiusi", - "legendsSeen": "Leggendari visti", - "legendsCaught": "Leggendari catturati", - "legendsHatched": "Leggendari schiusi", - "mythicalsSeen": "Mitici visti", - "mythicalsCaught": "Mitici catturati", - "mythicalsHatched": "Mitici schiusi", - "shiniesSeen": "Shiny visti", - "shiniesCaught": "Shiny catturati", - "shiniesHatched": "Shiny schiusi", - "pokemonFused": "Pokémon fusi", - "trainersDefeated": "Allenatori sconfitti", - "eggsPulled": "Uova ottenute", - "rareEggsPulled": "Uova rare ottenute", - "epicEggsPulled": "Uova epiche ottenute", - "legendaryEggsPulled": "Uova leggendarie ottenute", - "manaphyEggsPulled": "Uova di Manaphy ottenute", -} as const; +{ + "stats": "Statistiche", + "playTime": "Tempo di gioco", + "totalBattles": "Battaglie totali", + "starters": "Starters", + "shinyStarters": "Starters shiny", + "speciesSeen": "Specie viste", + "speciesCaught": "Specie catturate", + "ribbonsOwned": "Fiocchi ottenuti", + "classicRuns": "Totale run (classica)", + "classicWins": "Totale Vittorie (classica)", + "dailyRunAttempts": "Tentativi di run giornaliere", + "dailyRunWins": "Run giornaliere vinte", + "endlessRuns": "Run in modalità infinita", + "highestWaveEndless": "Orda più alta (Infinita)", + "highestMoney": "Miglior patrimonio", + "highestDamage": "Danni maggiori inflitti", + "highestHPHealed": "PS maggiori rigenerati", + "pokemonEncountered": "Pokémon incontrati", + "pokemonDefeated": "Pokémon sconfitti", + "pokemonCaught": "Pokémon catturati", + "eggsHatched": "Uova schiuse", + "subLegendsSeen": "Semi-leggendari visti", + "subLegendsCaught": "Semi-leggendari catturati", + "subLegendsHatched": "Semi-leggendari schiusi", + "legendsSeen": "Leggendari visti", + "legendsCaught": "Leggendari catturati", + "legendsHatched": "Leggendari schiusi", + "mythicalsSeen": "Mitici visti", + "mythicalsCaught": "Mitici catturati", + "mythicalsHatched": "Mitici schiusi", + "shiniesSeen": "Shiny visti", + "shiniesCaught": "Shiny catturati", + "shiniesHatched": "Shiny schiusi", + "pokemonFused": "Pokémon fusi", + "trainersDefeated": "Allenatori sconfitti", + "eggsPulled": "Uova ottenute", + "rareEggsPulled": "Uova rare ottenute", + "epicEggsPulled": "Uova epiche ottenute", + "legendaryEggsPulled": "Uova leggendarie ottenute", + "manaphyEggsPulled": "Uova di Manaphy ottenute" +} \ No newline at end of file diff --git a/src/locales/it/growth.ts b/src/locales/it/growth.json similarity index 55% rename from src/locales/it/growth.ts rename to src/locales/it/growth.json index 8132137d9fe..c7dd0507eeb 100644 --- a/src/locales/it/growth.ts +++ b/src/locales/it/growth.json @@ -1,10 +1,8 @@ -import { SimpleTranslationEntries } from "#app/interfaces/locales"; - -export const growth: SimpleTranslationEntries = { +{ "Erratic": "Irregolare", "Fast": "Veloce", "Medium_Fast": "Medio-Veloce", "Medium_Slow": "Medio-Lenta", "Slow": "Lenta", "Fluctuating": "Fluttuante" -} as const; +} \ No newline at end of file diff --git a/src/locales/it/menu-ui-handler.ts b/src/locales/it/menu-ui-handler.json similarity index 79% rename from src/locales/it/menu-ui-handler.ts rename to src/locales/it/menu-ui-handler.json index 0cfea8d67b7..7776825f1fe 100644 --- a/src/locales/it/menu-ui-handler.ts +++ b/src/locales/it/menu-ui-handler.json @@ -1,10 +1,8 @@ -import { SimpleTranslationEntries } from "#app/interfaces/locales"; - -export const menuUiHandler: SimpleTranslationEntries = { +{ "GAME_SETTINGS": "Impostazioni", "ACHIEVEMENTS": "Obiettivi", "STATS": "Statistiche", - "VOUCHERS": "Biglietti", + "RUN_HISTORY": "Run precedenti", "EGG_LIST": "Lista uova", "EGG_GACHA": "Macchine uova", "MANAGE_DATA": "Gestisci dati", @@ -16,6 +14,8 @@ export const menuUiHandler: SimpleTranslationEntries = { "importSlotSelect": "Seleziona uno slot in cui importare.", "exportSession": "Esporta sessione", "exportSlotSelect": "Seleziona uno slot da cui esportare.", + "importRunHistory":"Importa run precedenti", + "exportRunHistory":"Esporta run precedenti", "importData": "Importa dati", "exportData": "Esporta dati", "consentPreferences": "Consenti preferenze", @@ -25,5 +25,5 @@ export const menuUiHandler: SimpleTranslationEntries = { "unlinkGoogle": "Scollega Google", "cancel": "Annulla", "losingProgressionWarning": "Perderai tutti i progressi dall'inizio della battaglia. Confermi?", - "noEggs": "You are not hatching\nany eggs at the moment!" -} as const; + "noEggs": "Non stai schiudendo\nuova al momento!" +} \ No newline at end of file diff --git a/src/locales/it/menu.ts b/src/locales/it/menu.json similarity index 84% rename from src/locales/it/menu.ts rename to src/locales/it/menu.json index 9766708f7ae..2d37f9db912 100644 --- a/src/locales/it/menu.ts +++ b/src/locales/it/menu.json @@ -1,11 +1,4 @@ -import { SimpleTranslationEntries } from "#app/interfaces/locales"; - -/** - * The menu namespace holds most miscellaneous text that isn't directly part of the game's - * contents or directly related to Pokemon data. This includes menu navigation, settings, - * account interactions, descriptive text, etc. - */ -export const menu: SimpleTranslationEntries = { +{ "cancel": "Annulla", "continue": "Continua", "newGame": "Nuova partita", @@ -17,7 +10,7 @@ export const menu: SimpleTranslationEntries = { "username": "Nome utente", "password": "Password", "login": "Accedi", - "orUse": "Or use", + "orUse": "O usa", "register": "Registrati", "emptyUsername": "Nome utente mancante!", "invalidLoginUsername": "Nome utente non valido!", @@ -39,9 +32,9 @@ export const menu: SimpleTranslationEntries = { "weeklyRankings": "Classifica settimanale", "noRankings": "Nessuna classifica", "positionIcon": "#", - "usernameScoreboard": "Username", - "score": "Score", - "wave": "Wave", + "usernameScoreboard": "Nome utente", + "score": "Punteggio", + "wave": "Onda", "loading": "Caricamento…", "loadingAsset": "Caricamento asset: {{assetName}}", "playersOnline": "Giocatori online", @@ -50,13 +43,13 @@ export const menu: SimpleTranslationEntries = { "pauseEvolutionsQuestion": "Vuoi sospendere le evoluzioni per {{pokemonName}}?\nPossono essere riattivate dalla schermata del party.", "evolutionsPaused": "Le evoluzioni sono state sospese per {{pokemonName}}.", "evolutionDone": "Congratulazioni!\n{{pokemonName}} si è evoluto in {{evolvedPokemonName}}!", - "yes":"Si", - "no":"No", + "yes": "Si", + "no": "No", "disclaimer": "DISCLAIMER", "disclaimerDescription": "Questo gioco è un prodotto incompleto; si potrebbero riscontrare errori (inclusa la perdita dei dati di salvataggio),\ncambiamenti impercettibili, e non è detto che venga aggiornato nel tempo o mai completato del tutto.", "choosePokemon": "Scegli un Pokémon.", "renamePokemon": "Rinomina un Pokémon", "rename": "Rinomina", "nickname": "Nickname", - "errorServerDown": "Poffarbacco! C'è stato un errore nella comunicazione col server.\n\nPuoi lasciare questa finestra aperta,\nil gioco si riconnetterà automaticamente.", -} as const; + "errorServerDown": "Poffarbacco! C'è stato un errore nella comunicazione col server.\n\nPuoi lasciare questa finestra aperta,\nil gioco si riconnetterà automaticamente." +} \ No newline at end of file diff --git a/src/locales/it/modifier-select-ui-handler.ts b/src/locales/it/modifier-select-ui-handler.json similarity index 74% rename from src/locales/it/modifier-select-ui-handler.ts rename to src/locales/it/modifier-select-ui-handler.json index f0852a7d87c..f07d8dd2680 100644 --- a/src/locales/it/modifier-select-ui-handler.ts +++ b/src/locales/it/modifier-select-ui-handler.json @@ -1,14 +1,12 @@ -import { SimpleTranslationEntries } from "#app/interfaces/locales"; - -export const modifierSelectUiHandler: SimpleTranslationEntries = { - "transfer": "Trasferisci", - "reroll": "Rerolla", - "lockRarities": "Blocca le rarità", - "checkTeam": "Stato squadra", - "transferDesc": "Trasferisci un oggetto da un Pokémon ad un altro.", - "rerollDesc": "Spendi soldi per rerollare le ricompense.", - "lockRaritiesDesc": "Blocca le rarità al reroll (influisce sui costi).", - "checkTeamDesc": "Controlla la squadra Pokémon.", - "rerollCost": "{{formattedMoney}}₽", - "itemCost": "{{formattedMoney}}₽" -} as const; +{ + "transfer": "Trasferisci", + "reroll": "Rerolla", + "lockRarities": "Blocca le rarità", + "checkTeam": "Stato squadra", + "transferDesc": "Trasferisci un oggetto da un Pokémon ad un altro.", + "rerollDesc": "Spendi soldi per rerollare le ricompense.", + "lockRaritiesDesc": "Blocca le rarità al reroll (influisce sui costi).", + "checkTeamDesc": "Controlla la squadra Pokémon.", + "rerollCost": "{{formattedMoney}}₽", + "itemCost": "{{formattedMoney}}₽" +} \ No newline at end of file diff --git a/src/locales/it/modifier-type.json b/src/locales/it/modifier-type.json new file mode 100644 index 00000000000..f5cee70bbc9 --- /dev/null +++ b/src/locales/it/modifier-type.json @@ -0,0 +1,609 @@ +{ + "ModifierType": { + "AddPokeballModifierType": { + "name": "{{modifierCount}}x {{pokeballName}}", + "description": "Ricevi {{pokeballName}} x{{modifierCount}} (Inventario: {{pokeballAmount}}) \nTasso di cattura: {{catchRate}}." + }, + "AddVoucherModifierType": { + "name": "{{modifierCount}}x {{voucherTypeName}}.", + "description": "Ricevi {{voucherTypeName}} x{{modifierCount}}." + }, + "PokemonHeldItemModifierType": { + "extra": { + "inoperable": "{{pokemonName}} non può prendere\nquesto oggetto!", + "tooMany": "{{pokemonName}} possiede già\nquesto oggetto in abbondanza." + } + }, + "PokemonHpRestoreModifierType": { + "description": "Restituisce {{restorePoints}} PS o {{restorePercent}}% PS ad un Pokémon, a seconda del valore più alto.", + "extra": { + "fully": "Restituisce tutti i PS ad un Pokémon.", + "fullyWithStatus": "Restituisce tutti i PS ad un Pokémon e lo cura da ogni problema di stato." + } + }, + "PokemonReviveModifierType": { + "description": "Rianima un Pokémon esausto e gli restituisce il {{restorePercent}}% dei PS totali." + }, + "PokemonStatusHealModifierType": { + "description": "Cura tutti i problemi di stato di un Pokémon." + }, + "PokemonPpRestoreModifierType": { + "description": "Restituisce {{restorePoints}} PP per una mossa di un Pokémon.", + "extra": { + "fully": "Restituisce tutti i PP di una mossa." + } + }, + "PokemonAllMovePpRestoreModifierType": { + "description": "Restituisce {{restorePoints}} PP a tutte le mosse di un Pokémon.", + "extra": { + "fully": "Restituisce tutti i PP a tutte le mosse di un Pokémon." + } + }, + "PokemonPpUpModifierType": { + "description": "Aumenta i PP di una mossa di {{upPoints}} per ogni 5 PP (massimo 3)." + }, + "PokemonNatureChangeModifierType": { + "name": "Menta {{natureName}}.", + "description": "Cambia la natura del Pokémon in {{natureName}} e sblocca la natura nel menu degli starter." + }, + "DoubleBattleChanceBoosterModifierType": { + "description": "Raddoppia la possibilità di imbattersi in doppie battaglie per {{battleCount}} battaglie." + }, + "TempBattleStatBoosterModifierType": { + "description": "Aumenta {{tempBattleStatName}} di un livello a tutti i Pokémon nel gruppo per 5 battaglie." + }, + "AttackTypeBoosterModifierType": { + "description": "Aumenta la potenza delle mosse di tipo {{moveType}} del 20% per un Pokémon." + }, + "PokemonLevelIncrementModifierType": { + "description": "Aumenta il livello di un Pokémon di {{levels}}." + }, + "AllPokemonLevelIncrementModifierType": { + "description": "Aumenta i livell di tutti i Pokémon della squadra di {{levels}}." + }, + "PokemonBaseStatBoosterModifierType": { + "description": "Aumenta {{statName}} di base del possessore del 10%." + }, + "AllPokemonFullHpRestoreModifierType": { + "description": "Restituisce il 100% dei PS a tutti i Pokémon." + }, + "AllPokemonFullReviveModifierType": { + "description": "Rianima tutti i Pokémon esausti restituendogli tutti i PS." + }, + "MoneyRewardModifierType": { + "description": "Garantisce una {{moneyMultiplier}} quantità di soldi (₽{{moneyAmount}}).", + "extra": { + "small": "contenuta", + "moderate": "moderata", + "large": "grande" + } + }, + "ExpBoosterModifierType": { + "description": "Aumenta il guadagno di Punti Esperienza del {{boostPercent}}%." + }, + "PokemonExpBoosterModifierType": { + "description": "Aumenta il guadagno di Punti Esperienza del possessore del {{boostPercent}}%." + }, + "PokemonFriendshipBoosterModifierType": { + "description": "Aumenta del 50% il guadagno di amicizia per vittoria." + }, + "PokemonMoveAccuracyBoosterModifierType": { + "description": "Aumenta la precisione delle mosse di {{accuracyAmount}} (massimo 100)." + }, + "PokemonMultiHitModifierType": { + "description": "Gli attacchi colpiscono una volta in più al costo di una riduzione di potenza del 60/75/82,5% per mossa." + }, + "TmModifierType": { + "name": "MT{{moveId}} - {{moveName}}.", + "description": "Insegna {{moveName}} a un Pokémon." + }, + "TmModifierTypeWithInfo": { + "name": "MT{{moveId}} - {{moveName}}", + "description": "Insegna {{moveName}} a un Pokémon\n(Tieni premuto C o Shift per maggiori informazioni)." + }, + "EvolutionItemModifierType": { + "description": "Fa evolvere determinate specie di Pokémon." + }, + "FormChangeItemModifierType": { + "description": "Fa cambiare forma a determinati Pokémon." + }, + "FusePokemonModifierType": { + "description": "Combina due Pokémon (trasferisce i poteri, divide le statistiche e i tipi base, condivide il pool di mosse)." + }, + "TerastallizeModifierType": { + "name": "Teralite {{teraType}}", + "description": "Teracristallizza in {{teraType}} il possessore per massimo 10 battaglie." + }, + "ContactHeldItemTransferChanceModifierType": { + "description": "Quando il possessore attacca, c'è una probabilità del {{chancePercent}}% che l'oggetto in possesso del nemico gli venga rubato." + }, + "TurnHeldItemTransferModifierType": { + "description": "Ogni turno, il possessore acquisisce un oggetto posseduto dal nemico." + }, + "EnemyAttackStatusEffectChanceModifierType": { + "description": "Aggiunge una probabilità del {{chancePercent}}% di infliggere {{statusEffect}} con le mosse d'attacco." + }, + "EnemyEndureChanceModifierType": { + "description": "Aggiunge una probabilità del {{probabilitàPercent}}% di resistere ad un colpo." + }, + "RARE_CANDY": { + "name": "Caramella rara" + }, + "RARER_CANDY": { + "name": "Caramella molto rara" + }, + "MEGA_BRACELET": { + "name": "Megapolsiera", + "description": "Le megapietre diventano disponibili." + }, + "DYNAMAX_BAND": { + "name": "Polsino Dynamax", + "description": "I fungomax diventano disponibili." + }, + "TERA_ORB": { + "name": "Terasfera", + "description": "I teraliti diventano disponibili." + }, + "MAP": { + "name": "Mappa", + "description": "Permette di scegliere la propria strada a un bivio." + }, + "POTION": { + "name": "Pozione" + }, + "SUPER_POTION": { + "name": "Superpozione" + }, + "HYPER_POTION": { + "name": "Iperpozione" + }, + "MAX_POTION": { + "name": "Pozione max" + }, + "FULL_RESTORE": { + "name": "Ricarica totale" + }, + "REVIVE": { + "name": "Revitalizzante" + }, + "MAX_REVIVE": { + "name": "Revitalizzante max" + }, + "FULL_HEAL": { + "name": "Cura totale" + }, + "SACRED_ASH": { + "name": "Cenere magica" + }, + "REVIVER_SEED": { + "name": "Revitalseme", + "description": "Il possessore recupera 1/2 di PS in caso di KO causato da un colpo diretto." + }, + "WHITE_HERB": { + "name": "Erbachiara", + "description": "Strumento da dare a un Pokémon. Ripristina le statistiche ridotte in lotta." + }, + "ETHER": { + "name": "Etere" + }, + "MAX_ETHER": { + "name": "Etere max" + }, + "ELIXIR": { + "name": "Elisir" + }, + "MAX_ELIXIR": { + "name": "Elisir max" + }, + "PP_UP": { + "name": "PP-su" + }, + "PP_MAX": { + "name": "PP-max" + }, + "LURE": { + "name": "Esca" + }, + "SUPER_LURE": { + "name": "Super esca" + }, + "MAX_LURE": { + "name": "Esca max" + }, + "MEMORY_MUSHROOM": { + "name": "Fungo della memoria", + "description": "Permette di insegnare nuovamente una mossa dimenticata ad un Pokémon." + }, + "EXP_SHARE": { + "name": "Condividi esperienza", + "description": "Tutti i Pokémon della squadra ricevono il 20% dei Punti Esperienza dalla lotta, anche se non vi hanno partecipato." + }, + "EXP_BALANCE": { + "name": "Bilancia esperienza", + "description": "Bilancia i Punti Esperienza ricevuti verso i Pokémon della squadra di livello inferiore." + }, + "OVAL_CHARM": { + "name": "Ovamuleto", + "description": "Quando più Pokémon partecipano a una battaglia, ognuno di essi riceve il 10% in più dell'esperienza totale." + }, + "EXP_CHARM": { + "name": "Esperienzamuleto" + }, + "SUPER_EXP_CHARM": { + "name": "Esperienzamuleto super" + }, + "GOLDEN_EXP_CHARM": { + "name": "Esperienzamuleto dorato" + }, + "LUCKY_EGG": { + "name": "Fortunuovo" + }, + "GOLDEN_EGG": { + "name": "Uovo dorato" + }, + "SOOTHE_BELL": { + "name": "Calmanella" + }, + "SCOPE_LENS": { + "name": "Mirino", + "description": "Lente che aumenta la probabilità di sferrare brutti colpi." + }, + "LEEK": { + "name": "Porro", + "description": "Strumento da dare a Farfetch'd. Lungo gambo di porro che aumenta la probabilità di sferrare brutti colpi." + }, + "EVIOLITE": { + "name": "Evolcondensa", + "description": "Misteriosa materia evolutiva. Aumenta la Difesa e la Difesa Speciale di un Pokémon che può ancora evolversi." + }, + "SOUL_DEW": { + "name": "Cuorugiada", + "description": "Aumenta del 10% l'influenza della natura di un Pokémon sulle sue statistiche (cumulativo)." + }, + "NUGGET": { + "name": "Pepita" + }, + "BIG_NUGGET": { + "name": "Granpepita" + }, + "RELIC_GOLD": { + "name": "Dobloantico" + }, + "AMULET_COIN": { + "name": "Monetamuleto", + "description": "Aumenta le ricompense in denaro del 20%." + }, + "GOLDEN_PUNCH": { + "name": "Pugno dorato", + "description": "Fornisce il 50% dei danni inflitti sottoforma di denaro." + }, + "COIN_CASE": { + "name": "Salvadanaio", + "description": "Dopo ogni 10° battaglia, fornisce il 10% del proprio denaro in interessi." + }, + "LOCK_CAPSULE": { + "name": "Capsula scrigno", + "description": "Permette di bloccare le rarità degli oggetti quando si fa un reroll (i costi variano in base alle rarità)." + }, + "GRIP_CLAW": { + "name": "Presartigli" + }, + "WIDE_LENS": { + "name": "Grandelente" + }, + "MULTI_LENS": { + "name": "Multilente" + }, + "HEALING_CHARM": { + "name": "Curamuleto", + "description": "Aumenta del 10% l'efficacia delle mosse e degli oggetti che ripristinano i PS (escluse le rianimazioni)." + }, + "CANDY_JAR": { + "name": "Barattolo di caramelle", + "description": "Aumenta di 1 il numero di livelli aggiunti dalle caramelle rare." + }, + "BERRY_POUCH": { + "name": "Porta bacche", + "description": "Aggiunge il 30% di possibilità che una bacca usata non venga consumata." + }, + "FOCUS_BAND": { + "name": "Bandana", + "description": "Il possessore ottiene il 10% di possibilità aggiuntivo di evitare un potenziale KO e rimanere con un solo PS." + }, + "QUICK_CLAW": { + "name": "Rapidartigli", + "description": "Aggiunge una probabilità del 10% di muoversi per primi, indipendentemente dalla velocità (priorità escluse)." + }, + "KINGS_ROCK": { + "name": "Roccia di re", + "description": "Aggiunge il 10% di possibilità che una mossa d'attacco faccia tentennare l'avversario." + }, + "LEFTOVERS": { + "name": "Avanzi", + "description": "Ripristina 1/16 dei PS massimi di un Pokémon ogni turno." + }, + "SHELL_BELL": { + "name": "Conchinella", + "description": "Cura il possessore di 1/8 del danno inflitto ad un Pokémon." + }, + "TOXIC_ORB": { + "name": "Tossicsfera", + "description": "Sfera bizzarra che iperavvelena chi l’ha con sé in una lotta." + }, + "FLAME_ORB": { + "name": "Fiammosfera", + "description": "Sfera bizzarra che procura una scottatura a chi l’ha con sé in una lotta." + }, + "BATON": { + "name": "Staffetta", + "description": "Permette di trasmettere gli effetti quando si cambia Pokémon, aggirando anche le trappole." + }, + "SHINY_CHARM": { + "name": "Cromamuleto", + "description": "Misterioso amuleto luminoso che aumenta la probabilità di incontrare Pokémon cromatici." + }, + "ABILITY_CHARM": { + "name": "Abilitamuleto", + "description": "Aumenta drasticamente la possibilità che un Pokémon selvatico abbia un'abilità nascosta." + }, + "IV_SCANNER": { + "name": "Scanner IV", + "description": "Permette di scansionare gli IV dei Pokémon selvatici. Vengono rivelati 2 IV per ogni scanner. I migliori IV vengono mostrati per primi." + }, + "DNA_SPLICERS": { + "name": "Cuneo DNA" + }, + "MINI_BLACK_HOLE": { + "name": "Piccolo buco nero" + }, + "GOLDEN_POKEBALL": { + "name": "Poké Ball dorata", + "description": "Aggiunge 1 opzione di oggetto extra alla fine di ogni battaglia." + }, + "ENEMY_DAMAGE_BOOSTER": { + "name": "Gettone del danno", + "description": "Aumenta i danni inflitti del 5%." + }, + "ENEMY_DAMAGE_REDUCTION": { + "name": "Gettone della protezione", + "description": "Riduce i danni ricevuti del 2.5%." + }, + "ENEMY_HEAL": { + "name": "Gettone del recupero", + "description": "Cura il 2% dei PS massimi ogni turno." + }, + "ENEMY_ATTACK_POISON_CHANCE": { + "name": "Gettone del veleno" + }, + "ENEMY_ATTACK_PARALYZE_CHANCE": { + "name": "Gettone della paralisi" + }, + "ENEMY_ATTACK_BURN_CHANCE": { + "name": "Gettone della bruciatura" + }, + "ENEMY_STATUS_EFFECT_HEAL_CHANCE": { + "name": "Gettone guarigione completa", + "description": "Aggiunge una probabilità del 2.5% a ogni turno di guarire da un problema di stato." + }, + "ENEMY_ENDURE_CHANCE": { + "name": "Gettone di resistenza" + }, + "ENEMY_FUSED_CHANCE": { + "name": "Gettone della fusione", + "description": "Aggiunge l'1% di possibilità che un Pokémon selvatico sia una fusione." + } + }, + "SpeciesBoosterItem": { + "LIGHT_BALL": { + "name": "Elettropalla", + "description": "Strumento da dare a Pikachu. Sfera insolita che aumenta l’Attacco e l’Attacco Speciale." + }, + "THICK_CLUB": { + "name": "Osso spesso", + "description": "Strumento da dare a Cubone o Marowak. Osso duro che aumenta l’Attacco." + }, + "METAL_POWDER": { + "name": "Metalpolvere", + "description": "Strumento da dare a Ditto. Strana polvere finissima e al tempo stesso dura che migliora la Difesa." + }, + "QUICK_POWDER": { + "name": "Velopolvere", + "description": "Strumento da dare a Ditto. Questa strana polvere, fine e al contempo dura, aumenta la Velocità." + } + }, + "TempBattleStatBoosterItem": { + "x_attack": "Attacco X", + "x_defense": "Difesa X", + "x_sp_atk": "Att. Speciale X", + "x_sp_def": "Dif. Speciale X", + "x_speed": "Velocità X", + "x_accuracy": "Precisione X", + "dire_hit": "Supercolpo" + }, + "TempBattleStatBoosterStatName": { + "ATK": "Attacco", + "DEF": "Difesa", + "SPATK": "Att. Speciale", + "SPDEF": "Dif. Speciale", + "SPD": "Velocità", + "ACC": "Precisione", + "CRIT": "Tasso di brutti colpi", + "EVA": "Elusione", + "DEFAULT": "???" + }, + "AttackTypeBoosterItem": { + "silk_scarf": "Sciarpa seta", + "black_belt": "Cinturanera", + "sharp_beak": "Beccaffilato", + "poison_barb": "Velenaculeo", + "soft_sand": "Sabbia soffice", + "hard_stone": "Pietradura", + "silver_powder": "Argenpolvere", + "spell_tag": "Spettrotarga", + "metal_coat": "Metalcopertura", + "charcoal": "Carbonella", + "mystic_water": "Acqua magica", + "miracle_seed": "Miracolseme", + "magnet": "Magnete", + "twisted_spoon": "Cucchiaio torto", + "never_melt_ice": "Gelomai", + "dragon_fang": "Dente di drago", + "black_glasses": "Occhialineri", + "fairy_feather": "Piuma fatata" + }, + "BaseStatBoosterItem": { + "hp_up": "PS-su", + "protein": "Proteina", + "iron": "Ferro", + "calcium": "Calcio", + "zinc": "Zinco", + "carbos": "Carburante" + }, + "EvolutionItem": { + "NONE": "Nessuno", + "LINKING_CORD": "Filo dell'unione", + "SUN_STONE": "Pietrasolare", + "MOON_STONE": "Pietralunare", + "LEAF_STONE": "Pietrafoglia", + "FIRE_STONE": "Pietrafocaia", + "WATER_STONE": "Pietraidrica", + "THUNDER_STONE": "Pietratuono", + "ICE_STONE": "Pietragelo", + "DUSK_STONE": "Neropietra", + "DAWN_STONE": "Pietralbore", + "SHINY_STONE": "Pietrabrillo", + "CRACKED_POT": "Teiera rotta", + "SWEET_APPLE": "Dolcepomo", + "TART_APPLE": "Aspropomo", + "STRAWBERRY_SWEET": "Bonbonfragola", + "UNREMARKABLE_TEACUP": "Tazza dozzinale", + "CHIPPED_POT": "Teiera crepata", + "BLACK_AUGURITE": "Augite nera", + "GALARICA_CUFF": "Fascia Galarnoce", + "GALARICA_WREATH": "Corona Galarnoce", + "PEAT_BLOCK": "Blocco di torba", + "AUSPICIOUS_ARMOR": "Armatura fausta", + "MALICIOUS_ARMOR": "Armatura infausta", + "MASTERPIECE_TEACUP": "Tazza eccezionale", + "METAL_ALLOY": "Metallo composito", + "SCROLL_OF_DARKNESS": "Rotolo del Buio", + "SCROLL_OF_WATERS": "Rotolo dell'Acqua", + "SYRUPY_APPLE": "Sciroppomo" + }, + "FormChangeItem": { + "NONE": "Nessuno", + "ABOMASITE": "Abomasnowite", + "ABSOLITE": "Absolite", + "AERODACTYLITE": "Aerodactylite", + "AGGRONITE": "Aggronite", + "ALAKAZITE": "Alakazamite", + "ALTARIANITE": "Altarite", + "AMPHAROSITE": "Ampharosite", + "AUDINITE": "Audinite", + "BANETTITE": "Banettite", + "BEEDRILLITE": "Beedrillite", + "BLASTOISINITE": "Blastoisite", + "BLAZIKENITE": "Blazikenite", + "CAMERUPTITE": "Cameruptite", + "CHARIZARDITE_X": "Charizardite X", + "CHARIZARDITE_Y": "Charizardite Y", + "DIANCITE": "Diancite", + "GALLADITE": "Galladite", + "GARCHOMPITE": "Garchompite", + "GARDEVOIRITE": "Gardevoirite", + "GENGARITE": "Gengarite", + "GLALITITE": "Glalite", + "GYARADOSITE": "Gyaradosite", + "HERACRONITE": "Heracronite", + "HOUNDOOMINITE": "Houndoomite", + "KANGASKHANITE": "Kangaskhanite", + "LATIASITE": "Latiasite", + "LATIOSITE": "Latiosite", + "LOPUNNITE": "Lopunnite", + "LUCARIONITE": "Lucarite", + "MANECTITE": "Manectricite", + "MAWILITE": "Mawilite", + "MEDICHAMITE": "Medichamite", + "METAGROSSITE": "Metagrossite", + "MEWTWONITE_X": "Mewtwoite X", + "MEWTWONITE_Y": "Mewtwoite Y", + "PIDGEOTITE": "Pidgeotite", + "PINSIRITE": "Pinsirite", + "RAYQUAZITE": "Rayquazite", + "SABLENITE": "Sableyite", + "SALAMENCITE": "Salamencite", + "SCEPTILITE": "Sceptilite", + "SCIZORITE": "Scizorite", + "SHARPEDONITE": "Sharpedite", + "SLOWBRONITE": "Slowbroite", + "STEELIXITE": "Steelixite", + "SWAMPERTITE": "Swampertite", + "TYRANITARITE": "Tyranitarite", + "VENUSAURITE": "Venusaurite", + "BLUE_ORB": "Gemma Blu", + "RED_ORB": "Gemma Rossa", + "SHARP_METEORITE": "Meteorite Tagliente", + "HARD_METEORITE": "Meteorite Dura", + "SMOOTH_METEORITE": "Meteorite Liscia", + "ADAMANT_CRYSTAL": "Adamasferoide", + "LUSTROUS_GLOBE": "Splendisferoide", + "GRISEOUS_CORE": "Grigiosferoide", + "REVEAL_GLASS": "Verispecchio", + "GRACIDEA": "Gracidea", + "MAX_MUSHROOMS": "Fungomax", + "DARK_STONE": "Scurolite", + "LIGHT_STONE": "Chiarolite", + "PRISON_BOTTLE": "Vaso del Vincolo", + "N_LUNARIZER": "Necrolunix", + "N_SOLARIZER": "Necrosolix", + "RUSTED_SWORD": "Spada Rovinata", + "RUSTED_SHIELD": "Scudo Rovinato", + "ICY_REINS_OF_UNITY": "Briglie Legame Giaccio", + "SHADOW_REINS_OF_UNITY": "Briglie legame Ombra", + "WELLSPRING_MASK": "Maschera Pozzo", + "HEARTHFLAME_MASK": "Maschera Focolare", + "CORNERSTONE_MASK": "Maschera Fondamenta", + "SHOCK_DRIVE": "Voltmodulo", + "BURN_DRIVE": "Piromodulo", + "CHILL_DRIVE": "Gelomodulo", + "DOUSE_DRIVE": "Idromodulo", + "ULTRANECROZIUM_Z": "Ultranecrozium Z", + "FIST_PLATE": "Lastrapugno", + "SKY_PLATE": "Lastracielo", + "TOXIC_PLATE": "Lastrafiele", + "EARTH_PLATE": "Lastrageo", + "STONE_PLATE": "Lastrapietra", + "INSECT_PLATE": "Lastrabaco", + "SPOOKY_PLATE": "Lastratetra", + "IRON_PLATE": "Lastraferro", + "FLAME_PLATE": "Lastrarogo", + "SPLASH_PLATE": "Lastraidro", + "MEADOW_PLATE": "Lastraprato", + "ZAP_PLATE": "Lastrasaetta", + "MIND_PLATE": "Lastramente", + "ICICLE_PLATE": "Lastragelo", + "DRACO_PLATE": "Lastradrakon", + "DREAD_PLATE": "Lastratimore", + "PIXIE_PLATE": "Lastraspiritello", + "BLANK_PLATE": "Lastraripristino", + "LEGEND_PLATE": "Lastraleggenda", + "FIGHTING_MEMORY": "ROM Lotta", + "FLYING_MEMORY": "ROM Volante", + "POISON_MEMORY": "ROM Veleno", + "GROUND_MEMORY": "ROM Terra", + "ROCK_MEMORY": "ROM Roccia", + "BUG_MEMORY": "ROM Coleottero", + "GHOST_MEMORY": "ROM Spettro", + "STEEL_MEMORY": "ROM Acciaio", + "FIRE_MEMORY": "ROM Fuoco", + "WATER_MEMORY": "ROM Acqua", + "GRASS_MEMORY": "ROM Erba", + "ELECTRIC_MEMORY": "ROM Elettro", + "PSYCHIC_MEMORY": "ROM Psico", + "ICE_MEMORY": "ROM Ghiaccio", + "DRAGON_MEMORY": "ROM Drago", + "DARK_MEMORY": "ROM Buio", + "FAIRY_MEMORY": "ROM Folletto", + "BLANK_MEMORY": "ROM Vuota" + } +} \ No newline at end of file diff --git a/src/locales/it/modifier-type.ts b/src/locales/it/modifier-type.ts deleted file mode 100644 index 6f054e4e566..00000000000 --- a/src/locales/it/modifier-type.ts +++ /dev/null @@ -1,457 +0,0 @@ -import { ModifierTypeTranslationEntries } from "#app/interfaces/locales"; - -export const modifierType: ModifierTypeTranslationEntries = { - ModifierType: { - "AddPokeballModifierType": { - name: "{{modifierCount}}x {{pokeballName}}", - description: "Ricevi {{pokeballName}} x{{modifierCount}} (Inventario: {{pokeballAmount}}) \nTasso di cattura: {{catchRate}}.", - }, - "AddVoucherModifierType": { - name: "{{modifierCount}}x {{voucherTypeName}}.", - description: "Ricevi {{voucherTypeName}} x{{modifierCount}}.", - }, - "PokemonHeldItemModifierType": { - extra: { - "inoperable": "{{pokemonName}} non può prendere\nquesto oggetto!", - "tooMany": "{{pokemonName}} possiede già\nquesto oggetto in abbondanza.", - } - }, - "PokemonHpRestoreModifierType": { - description: "Restituisce {{restorePoints}} PS o {{restorePercent}}% PS ad un Pokémon, a seconda del valore più alto.", - extra: { - "fully": "Restituisce tutti i PS ad un Pokémon.", - "fullyWithStatus": "Restituisce tutti i PS ad un Pokémon e lo cura da ogni problema di stato.", - } - }, - "PokemonReviveModifierType": { - description: "Rianima un Pokémon esausto e gli restituisce il {{restorePercent}}% dei PS totali.", - }, - "PokemonStatusHealModifierType": { - description: "Cura tutti i problemi di stato di un Pokémon.", - }, - "PokemonPpRestoreModifierType": { - description: "Restituisce {{restorePoints}} PP per una mossa di un Pokémon.", - extra: { - "fully": "Restituisce tutti i PP di una mossa.", - } - }, - "PokemonAllMovePpRestoreModifierType": { - description: "Restituisce {{restorePoints}} PP a tutte le mosse di un Pokémon.", - extra: { - "fully": "Restituisce tutti i PP a tutte le mosse di un Pokémon.", - } - }, - "PokemonPpUpModifierType": { - description: "Aumenta i PP di una mossa di {{upPoints}} per ogni 5 PP (massimo 3).", - }, - "PokemonNatureChangeModifierType": { - name: "Menta {{natureName}}.", - description: "Cambia la natura del Pokémon in {{natureName}} e sblocca la natura nel menu degli starter.", - }, - "DoubleBattleChanceBoosterModifierType": { - description: "Raddoppia la possibilità di imbattersi in doppie battaglie per {{battleCount}} battaglie.", - }, - "TempBattleStatBoosterModifierType": { - description: "Aumenta {{tempBattleStatName}} di un livello a tutti i Pokémon nel gruppo per 5 battaglie.", - }, - "AttackTypeBoosterModifierType": { - description: "Aumenta la potenza delle mosse di tipo {{moveType}} del 20% per un Pokémon.", - }, - "PokemonLevelIncrementModifierType": { - description: "Aumenta il livello di un Pokémon di {{levels}}.", - }, - "AllPokemonLevelIncrementModifierType": { - description: "Aumenta i livell di tutti i Pokémon della squadra di {{levels}}.", - }, - "PokemonBaseStatBoosterModifierType": { - description: "Aumenta {{statName}} di base del possessore del 10%.", - }, - "AllPokemonFullHpRestoreModifierType": { - description: "Restituisce il 100% dei PS a tutti i Pokémon.", - }, - "AllPokemonFullReviveModifierType": { - description: "Rianima tutti i Pokémon esausti restituendogli tutti i PS.", - }, - "MoneyRewardModifierType": { - description: "Garantisce una {{moneyMultiplier}} quantità di soldi (₽{{moneyAmount}}).", - extra: { - "small": "contenuta", - "moderate": "moderata", - "large": "grande", - }, - }, - "ExpBoosterModifierType": { - description: "Aumenta il guadagno di Punti Esperienza del {{boostPercent}}%.", - }, - "PokemonExpBoosterModifierType": { - description: "Aumenta il guadagno di Punti Esperienza del possessore del {{boostPercent}}%.", - }, - "PokemonFriendshipBoosterModifierType": { - description: "Aumenta del 50% il guadagno di amicizia per vittoria.", - }, - "PokemonMoveAccuracyBoosterModifierType": { - description: "Aumenta la precisione delle mosse di {{accuracyAmount}} (massimo 100).", - }, - "PokemonMultiHitModifierType": { - description: "Gli attacchi colpiscono una volta in più al costo di una riduzione di potenza del 60/75/82,5% per mossa.", - }, - "TmModifierType": { - name: "MT{{moveId}} - {{moveName}}.", - description: "Insegna {{moveName}} a un Pokémon.", - }, - "TmModifierTypeWithInfo": { - name: "MT{{moveId}} - {{moveName}}", - description: "Insegna {{moveName}} a un Pokémon\n(Hold C or Shift for more info).", - }, - "EvolutionItemModifierType": { - description: "Fa evolvere determinate specie di Pokémon.", - }, - "FormChangeItemModifierType": { - description: "Fa cambiare forma a determinati Pokémon.", - }, - "FusePokemonModifierType": { - description: "Combina due Pokémon (trasferisce i poteri, divide le statistiche e i tipi base, condivide il pool di mosse).", - }, - "TerastallizeModifierType": { - name: "Teralite {{teraType}}", - description: "Teracristallizza in {{teraType}} il possessore per massimo 10 battaglie.", - }, - "ContactHeldItemTransferChanceModifierType": { - description: "Quando il possessore attacca, c'è una probabilità del {{chancePercent}}% che l'oggetto in possesso del nemico gli venga rubato.", - }, - "TurnHeldItemTransferModifierType": { - description: "Ogni turno, il possessore acquisisce un oggetto posseduto dal nemico.", - }, - "EnemyAttackStatusEffectChanceModifierType": { - description: "Aggiunge una probabilità del {{chancePercent}}% di infliggere {{statusEffect}} con le mosse d'attacco.", - }, - "EnemyEndureChanceModifierType": { - description: "Aggiunge una probabilità del {{probabilitàPercent}}% di resistere ad un colpo.", - }, - - "RARE_CANDY": { name: "Caramella rara" }, - "RARER_CANDY": { name: "Caramella molto rara" }, - - "MEGA_BRACELET": { name: "Megapolsiera", description: "Le megapietre diventano disponibili." }, - "DYNAMAX_BAND": { name: "Polsino Dynamax", description: "I fungomax diventano disponibili." }, - "TERA_ORB": { name: "Terasfera", description: "I teraliti diventano disponibili." }, - - "MAP": { name: "Mappa", description: "Permette di scegliere la propria strada a un bivio." }, - - "POTION": { name: "Pozione" }, - "SUPER_POTION": { name: "Superpozione" }, - "HYPER_POTION": { name: "Iperpozione" }, - "MAX_POTION": { name: "Pozione max" }, - "FULL_RESTORE": { name: "Ricarica totale" }, - - "REVIVE": { name: "Revitalizzante" }, - "MAX_REVIVE": { name: "Revitalizzante max" }, - - "FULL_HEAL": { name: "Cura totale" }, - - "SACRED_ASH": { name: "Cenere magica" }, - - "REVIVER_SEED": { name: "Revitalseme", description: "Il possessore recupera 1/2 di PS in caso di KO causato da un colpo diretto." }, - - "WHITE_HERB": { name: "Erbachiara", description: "An item to be held by a Pokémon. It will restore any lowered stat in battle." }, - - "ETHER": { name: "Etere" }, - "MAX_ETHER": { name: "Etere max" }, - - "ELIXIR": { name: "Elisir" }, - "MAX_ELIXIR": { name: "Elisir max" }, - - "PP_UP": { name: "PP-su" }, - "PP_MAX": { name: "PP-max" }, - - "LURE": { name: "Esca" }, - "SUPER_LURE": { name: "Super esca" }, - "MAX_LURE": { name: "Esca max" }, - - "MEMORY_MUSHROOM": { name: "Fungo della memoria", description: "Permette di insegnare nuovamente una mossa dimenticata ad un Pokémon." }, - - "EXP_SHARE": { name: "Condividi esperienza", description: "Tutti i Pokémon della squadra ricevono il 20% dei Punti Esperienza dalla lotta, anche se non vi hanno partecipato." }, - "EXP_BALANCE": { name: "Bilancia esperienza", description: "Bilancia i Punti Esperienza ricevuti verso i Pokémon della squadra di livello inferiore." }, - - "OVAL_CHARM": { name: "Ovamuleto", description: "Quando più Pokémon partecipano a una battaglia, ognuno di essi riceve il 10% in più dell'esperienza totale." }, - - "EXP_CHARM": { name: "Esperienzamuleto" }, - "SUPER_EXP_CHARM": { name: "Esperienzamuleto super" }, - "GOLDEN_EXP_CHARM": { name: "Esperienzamuleto dorato" }, - - "LUCKY_EGG": { name: "Fortunuovo" }, - "GOLDEN_EGG": { name: "Uovo dorato" }, - - "SOOTHE_BELL": { name: "Calmanella" }, - - "SCOPE_LENS": { name: "Mirino", description: "Lente che aumenta la probabilità di sferrare brutti colpi." }, - "LEEK": { name: "Porro", description: "Strumento da dare a Farfetch'd. Lungo gambo di porro che aumenta la probabilità di sferrare brutti colpi." }, - - "EVIOLITE": { name: "Evolcondensa", description: "Misteriosa materia evolutiva. Aumenta la Difesa e la Difesa Speciale di un Pokémon che può ancora evolversi." }, - - "SOUL_DEW": { name: "Cuorugiada", description: "Aumenta del 10% l'influenza della natura di un Pokémon sulle sue statistiche (cumulativo)." }, - - "NUGGET": { name: "Pepita" }, - "BIG_NUGGET": { name: "Granpepita" }, - "RELIC_GOLD": { name: "Dobloantico" }, - - "AMULET_COIN": { name: "Monetamuleto", description: "Aumenta le ricompense in denaro del 20%." }, - "GOLDEN_PUNCH": { name: "Pugno dorato", description: "Fornisce il 50% dei danni inflitti sottoforma di denaro." }, - "COIN_CASE": { name: "Salvadanaio", description: "Dopo ogni 10° battaglia, fornisce il 10% del proprio denaro in interessi." }, - - "LOCK_CAPSULE": { name: "Capsula scrigno", description: "Permette di bloccare le rarità degli oggetti quando si fa un reroll (i costi variano in base alle rarità)." }, - - "GRIP_CLAW": { name: "Presartigli" }, - "WIDE_LENS": { name: "Grandelente" }, - - "MULTI_LENS": { name: "Multilente" }, - - "HEALING_CHARM": { name: "Curamuleto", description: "Aumenta del 10% l'efficacia delle mosse e degli oggetti che ripristinano i PS (escluse le rianimazioni)." }, - "CANDY_JAR": { name: "Barattolo di caramelle", description: "Aumenta di 1 il numero di livelli aggiunti dalle caramelle rare." }, - - "BERRY_POUCH": { name: "Porta bacche", description: "Aggiunge il 30% di possibilità che una bacca usata non venga consumata." }, - - "FOCUS_BAND": { name: "Bandana", description: "Il possessore ottiene il 10% di possibilità aggiuntivo di evitare un potenziale KO e rimanere con un solo PS." }, - - "QUICK_CLAW": { name: "Rapidartigli", description: "Aggiunge una probabilità del 10% di muoversi per primi, indipendentemente dalla velocità (priorità escluse)." }, - - "KINGS_ROCK": { name: "Roccia di re", description: "Aggiunge il 10% di possibilità che una mossa d'attacco faccia tentennare l'avversario." }, - - "LEFTOVERS": { name: "Avanzi", description: "Ripristina 1/16 dei PS massimi di un Pokémon ogni turno." }, - "SHELL_BELL": { name: "Conchinella", description: "Cura il possessore di 1/8 del danno inflitto ad un Pokémon." }, - - "TOXIC_ORB": { name: "Tossicsfera", description: "Sfera bizzarra che iperavvelena chi l’ha con sé in una lotta." }, - "FLAME_ORB": { name: "Fiammosfera", description: "Sfera bizzarra che procura una scottatura a chi l’ha con sé in una lotta." }, - - "BATON": { name: "Staffetta", description: "Permette di trasmettere gli effetti quando si cambia Pokémon, aggirando anche le trappole." }, - - "SHINY_CHARM": { name: "Cromamuleto", description: "Misterioso amuleto luminoso che aumenta la probabilità di incontrare Pokémon cromatici." }, - "ABILITY_CHARM": { name: "Abilitamuleto", description: "Aumenta drasticamente la possibilità che un Pokémon selvatico abbia un'abilità nascosta." }, - - "IV_SCANNER": { name: "Scanner IV", description: "Permette di scansionare gli IV dei Pokémon selvatici. Vengono rivelati 2 IV per ogni scanner. I migliori IV vengono mostrati per primi." }, - - "DNA_SPLICERS": { name: "Cuneo DNA" }, - - "MINI_BLACK_HOLE": { name: "Piccolo buco nero" }, - - "GOLDEN_POKEBALL": { name: "Poké Ball dorata", description: "Aggiunge 1 opzione di oggetto extra alla fine di ogni battaglia." }, - - "ENEMY_DAMAGE_BOOSTER": { name: "Gettone del danno", description: "Aumenta i danni inflitti del 5%." }, - "ENEMY_DAMAGE_REDUCTION": { name: "Gettone della protezione", description: "Riduce i danni ricevuti del 2.5%." }, - "ENEMY_HEAL": { name: "Gettone del recupero", description: "Cura il 2% dei PS massimi ogni turno." }, - "ENEMY_ATTACK_POISON_CHANCE": { name: "Gettone del veleno" }, - "ENEMY_ATTACK_PARALYZE_CHANCE": { name: "Gettone della paralisi" }, - "ENEMY_ATTACK_BURN_CHANCE": { name: "Gettone della bruciatura" }, - "ENEMY_STATUS_EFFECT_HEAL_CHANCE": { name: "Gettone guarigione completa", description: "Aggiunge una probabilità del 2.5% a ogni turno di guarire da un problema di stato." }, - "ENEMY_ENDURE_CHANCE": { name: "Gettone di resistenza" }, - "ENEMY_FUSED_CHANCE": { name: "Gettone della fusione", description: "Aggiunge l'1% di possibilità che un Pokémon selvatico sia una fusione." }, - }, - SpeciesBoosterItem: { - "LIGHT_BALL": { name: "Elettropalla", description: "Strumento da dare a Pikachu. Sfera insolita che aumenta l’Attacco e l’Attacco Speciale." }, - "THICK_CLUB": { name: "Osso spesso", description: "Strumento da dare a Cubone o Marowak. Osso duro che aumenta l’Attacco." }, - "METAL_POWDER": { name: "Metalpolvere", description: "Strumento da dare a Ditto. Strana polvere finissima e al tempo stesso dura che migliora la Difesa." }, - "QUICK_POWDER": { name: "Velopolvere", description: "Strumento da dare a Ditto. Questa strana polvere, fine e al contempo dura, aumenta la Velocità." } - }, - TempBattleStatBoosterItem: { - "x_attack": "Attacco X", - "x_defense": "Difesa X", - "x_sp_atk": "Att. Speciale X", - "x_sp_def": "Dif. Speciale X", - "x_speed": "Velocità X", - "x_accuracy": "Precisione X", - "dire_hit": "Supercolpo", - }, - - TempBattleStatBoosterStatName: { - "ATK": "Attacco", - "DEF": "Difesa", - "SPATK": "Att. Speciale", - "SPDEF": "Dif. Speciale", - "SPD": "Velocità", - "ACC": "Precisione", - "CRIT": "Tasso di brutti colpi", - "EVA": "Elusione", - "DEFAULT": "???", - }, - - AttackTypeBoosterItem: { - "silk_scarf": "Sciarpa seta", - "black_belt": "Cinturanera", - "sharp_beak": "Beccaffilato", - "poison_barb": "Velenaculeo", - "soft_sand": "Sabbia soffice", - "hard_stone": "Pietradura", - "silver_powder": "Argenpolvere", - "spell_tag": "Spettrotarga", - "metal_coat": "Metalcopertura", - "charcoal": "Carbonella", - "mystic_water": "Acqua magica", - "miracle_seed": "Miracolseme", - "magnet": "Magnete", - "twisted_spoon": "Cucchiaio torto", - "never_melt_ice": "Gelomai", - "dragon_fang": "Dente di drago", - "black_glasses": "Occhialineri", - "fairy_feather": "Piuma fatata", - }, - BaseStatBoosterItem: { - "hp_up": "PS-su", - "protein": "Proteina", - "iron": "Ferro", - "calcium": "Calcio", - "zinc": "Zinco", - "carbos": "Carburante", - }, - EvolutionItem: { - "NONE": "Nessuno", - - "LINKING_CORD": "Filo dell'unione", - "SUN_STONE": "Pietrasolare", - "MOON_STONE": "Pietralunare", - "LEAF_STONE": "Pietrafoglia", - "FIRE_STONE": "Pietrafocaia", - "WATER_STONE": "Pietraidrica", - "THUNDER_STONE": "Pietratuono", - "ICE_STONE": "Pietragelo", - "DUSK_STONE": "Neropietra", - "DAWN_STONE": "Pietralbore", - "SHINY_STONE": "Pietrabrillo", - "CRACKED_POT": "Teiera rotta", - "SWEET_APPLE": "Dolcepomo", - "TART_APPLE": "Aspropomo", - "STRAWBERRY_SWEET": "Bonbonfragola", - "UNREMARKABLE_TEACUP": "Tazza dozzinale", - - "CHIPPED_POT": "Teiera crepata", - "BLACK_AUGURITE": "Augite nera", - "GALARICA_CUFF": "Fascia Galarnoce", - "GALARICA_WREATH": "Corona Galarnoce", - "PEAT_BLOCK": "Blocco di torba", - "AUSPICIOUS_ARMOR": "Armatura fausta", - "MALICIOUS_ARMOR": "Armatura infausta", - "MASTERPIECE_TEACUP": "Tazza eccezionale", - "METAL_ALLOY": "Metallo composito", - "SCROLL_OF_DARKNESS": "Rotolo del Buio", - "SCROLL_OF_WATERS": "Rotolo dell'Acqua", - "SYRUPY_APPLE": "Sciroppomo", - }, - FormChangeItem: { - "NONE": "Nessuno", - - "ABOMASITE": "Abomasnowite", - "ABSOLITE": "Absolite", - "AERODACTYLITE": "Aerodactylite", - "AGGRONITE": "Aggronite", - "ALAKAZITE": "Alakazamite", - "ALTARIANITE": "Altarite", - "AMPHAROSITE": "Ampharosite", - "AUDINITE": "Audinite", - "BANETTITE": "Banettite", - "BEEDRILLITE": "Beedrillite", - "BLASTOISINITE": "Blastoisite", - "BLAZIKENITE": "Blazikenite", - "CAMERUPTITE": "Cameruptite", - "CHARIZARDITE_X": "Charizardite X", - "CHARIZARDITE_Y": "Charizardite Y", - "DIANCITE": "Diancite", - "GALLADITE": "Galladite", - "GARCHOMPITE": "Garchompite", - "GARDEVOIRITE": "Gardevoirite", - "GENGARITE": "Gengarite", - "GLALITITE": "Glalite", - "GYARADOSITE": "Gyaradosite", - "HERACRONITE": "Heracronite", - "HOUNDOOMINITE": "Houndoomite", - "KANGASKHANITE": "Kangaskhanite", - "LATIASITE": "Latiasite", - "LATIOSITE": "Latiosite", - "LOPUNNITE": "Lopunnite", - "LUCARIONITE": "Lucarite", - "MANECTITE": "Manectricite", - "MAWILITE": "Mawilite", - "MEDICHAMITE": "Medichamite", - "METAGROSSITE": "Metagrossite", - "MEWTWONITE_X": "Mewtwoite X", - "MEWTWONITE_Y": "Mewtwoite Y", - "PIDGEOTITE": "Pidgeotite", - "PINSIRITE": "Pinsirite", - "RAYQUAZITE": "Rayquazite", - "SABLENITE": "Sableyite", - "SALAMENCITE": "Salamencite", - "SCEPTILITE": "Sceptilite", - "SCIZORITE": "Scizorite", - "SHARPEDONITE": "Sharpedite", - "SLOWBRONITE": "Slowbroite", - "STEELIXITE": "Steelixite", - "SWAMPERTITE": "Swampertite", - "TYRANITARITE": "Tyranitarite", - "VENUSAURITE": "Venusaurite", - - "BLUE_ORB": "Gemma Blu", - "RED_ORB": "Gemma Rossa", - "SHARP_METEORITE": "Meteorite Tagliente", - "HARD_METEORITE": "Meteorite Dura", - "SMOOTH_METEORITE": "Meteorite Liscia", - "ADAMANT_CRYSTAL": "Adamasferoide", - "LUSTROUS_GLOBE": "Splendisferoide", - "GRISEOUS_CORE": "Grigiosferoide", - "REVEAL_GLASS": "Verispecchio", - "GRACIDEA": "Gracidea", - "MAX_MUSHROOMS": "Fungomax", - "DARK_STONE": "Scurolite", - "LIGHT_STONE": "Chiarolite", - "PRISON_BOTTLE": "Vaso del Vincolo", - "N_LUNARIZER": "Necrolunix", - "N_SOLARIZER": "Necrosolix", - "RUSTED_SWORD": "Spada Rovinata", - "RUSTED_SHIELD": "Scudo Rovinato", - "ICY_REINS_OF_UNITY": "Briglie Legame Giaccio", - "SHADOW_REINS_OF_UNITY": "Briglie legame Ombra", - "WELLSPRING_MASK": "Maschera Pozzo", - "HEARTHFLAME_MASK": "Maschera Focolare", - "CORNERSTONE_MASK": "Maschera Fondamenta", - "SHOCK_DRIVE": "Voltmodulo", - "BURN_DRIVE": "Piromodulo", - "CHILL_DRIVE": "Gelomodulo", - "DOUSE_DRIVE": "Idromodulo", - "ULTRANECROZIUM_Z": "Ultranecrozium Z", - - "FIST_PLATE": "Lastrapugno", - "SKY_PLATE": "Lastracielo", - "TOXIC_PLATE": "Lastrafiele", - "EARTH_PLATE": "Lastrageo", - "STONE_PLATE": "Lastrapietra", - "INSECT_PLATE": "Lastrabaco", - "SPOOKY_PLATE": "Lastratetra", - "IRON_PLATE": "Lastraferro", - "FLAME_PLATE": "Lastrarogo", - "SPLASH_PLATE": "Lastraidro", - "MEADOW_PLATE": "Lastraprato", - "ZAP_PLATE": "Lastrasaetta", - "MIND_PLATE": "Lastramente", - "ICICLE_PLATE": "Lastragelo", - "DRACO_PLATE": "Lastradrakon", - "DREAD_PLATE": "Lastratimore", - "PIXIE_PLATE": "Lastraspiritello", - "BLANK_PLATE": "Lastraripristino", - "LEGEND_PLATE": "Lastraleggenda", - "FIGHTING_MEMORY": "ROM Lotta", - "FLYING_MEMORY": "ROM Volante", - "POISON_MEMORY": "ROM Veleno", - "GROUND_MEMORY": "ROM Terra", - "ROCK_MEMORY": "ROM Roccia", - "BUG_MEMORY": "ROM Coleottero", - "GHOST_MEMORY": "ROM Spettro", - "STEEL_MEMORY": "ROM Acciaio", - "FIRE_MEMORY": "ROM Fuoco", - "WATER_MEMORY": "ROM Acqua", - "GRASS_MEMORY": "ROM Erba", - "ELECTRIC_MEMORY": "ROM Elettro", - "PSYCHIC_MEMORY": "ROM Psico", - "ICE_MEMORY": "ROM Ghiaccio", - "DRAGON_MEMORY": "ROM Drago", - "DARK_MEMORY": "ROM Buio", - "FAIRY_MEMORY": "ROM Folletto", - "BLANK_MEMORY": "ROM Vuota", - }, -} as const; diff --git a/src/locales/it/modifier.json b/src/locales/it/modifier.json new file mode 100644 index 00000000000..397a1f21f9a --- /dev/null +++ b/src/locales/it/modifier.json @@ -0,0 +1,12 @@ +{ + "surviveDamageApply": "{{pokemonNameWithAffix}} resiste\ngrazie al/alla suo/a {{typeName}}!", + "turnHealApply": "{{pokemonNameWithAffix}} recupera alcuni PS con\nil/la suo/a {{typeName}}!", + "hitHealApply": "{{pokemonNameWithAffix}} recupera alcuni PS con\nil/la suo/a {{typeName}}!", + "pokemonInstantReviveApply": "{{pokemonNameWithAffix}} torna in forze\ngrazie al/alla suo/a {{typeName}}!", + "pokemonResetNegativeStatStageApply": "La riduzione alle statistiche di {{pokemonNameWithAffix}}\nviene annullata grazie al/alla suo/a {{typeName}}!", + "moneyInterestApply": "Ricevi un interesse pari a {{moneyAmount}}₽\ngrazie al/allo/a {{typeName}}!", + "turnHeldItemTransferApply": "Il/l'/lo/la {{itemName}} di {{pokemonNameWithAffix}} è stato assorbito\ndal {{typeName}} di {{pokemonName}}!", + "contactHeldItemTransferApply": "Il/l'/lo/la {{itemName}} di {{pokemonNameWithAffix}} è stato rubato\nda {{pokemonName}} con {{typeName}}!", + "enemyTurnHealApply": "{{pokemonNameWithAffix}}\nristabilisce parte dei PS!", + "bypassSpeedChanceApply": "{{pokemonName}} agisce più rapidamente del normale grazie al suo {{itemName}}!" +} \ No newline at end of file diff --git a/src/locales/it/modifier.ts b/src/locales/it/modifier.ts deleted file mode 100644 index 810524a9e5e..00000000000 --- a/src/locales/it/modifier.ts +++ /dev/null @@ -1,14 +0,0 @@ -import { SimpleTranslationEntries } from "#app/interfaces/locales"; - -export const modifier: SimpleTranslationEntries = { - "surviveDamageApply": "{{pokemonNameWithAffix}} hung on\nusing its {{typeName}}!", - "turnHealApply": "{{pokemonNameWithAffix}} restored a little HP using\nits {{typeName}}!", - "hitHealApply": "{{pokemonNameWithAffix}} restored a little HP using\nits {{typeName}}!", - "pokemonInstantReviveApply": "{{pokemonNameWithAffix}} was revived\nby its {{typeName}}!", - "pokemonResetNegativeStatStageApply": "{{pokemonNameWithAffix}}'s lowered stats were restored\nby its {{typeName}}!", - "moneyInterestApply": "You received interest of ₽{{moneyAmount}}\nfrom the {{typeName}}!", - "turnHeldItemTransferApply": "{{pokemonNameWithAffix}}'s {{itemName}} was absorbed\nby {{pokemonName}}'s {{typeName}}!", - "contactHeldItemTransferApply": "{{pokemonNameWithAffix}}'s {{itemName}} was snatched\nby {{pokemonName}}'s {{typeName}}!", - "enemyTurnHealApply": "{{pokemonNameWithAffix}}\nrestored some HP!", - "bypassSpeedChanceApply": "{{pokemonName}} agisce più rapidamente del normale grazie al suo {{itemName}}!", -} as const; diff --git a/src/locales/it/move-trigger.ts b/src/locales/it/move-trigger.json similarity index 91% rename from src/locales/it/move-trigger.ts rename to src/locales/it/move-trigger.json index 198fc269785..e852c2fb52a 100644 --- a/src/locales/it/move-trigger.ts +++ b/src/locales/it/move-trigger.json @@ -1,7 +1,5 @@ -import { SimpleTranslationEntries } from "#app/interfaces/locales"; - -export const moveTriggers: SimpleTranslationEntries = { - "hitWithRecoil" : "{{pokemonName}} ha subito il contraccolpo!", +{ + "hitWithRecoil": "{{pokemonName}} ha subito il contraccolpo!", "cutHpPowerUpMove": "{{pokemonName}} riduce i suoi PS per potenziare la sua mossa!", "absorbedElectricity": "{{pokemonName}} assorbe elettricità!", "switchedStatChanges": "{{pokemonName}} scambia con il bersaglio le modifiche alle statistiche!", @@ -19,7 +17,7 @@ export const moveTriggers: SimpleTranslationEntries = { "dugAHole": "{{pokemonName}} si nasconde sottoterra!", "loweredItsHead": "{{pokemonName}} abbassa la testa!", "isGlowing": "{{pokemonName}} è avvolto da una luce intensa!", - "bellChimed": " Si sente suonare una campanella!", + "bellChimed": "\tSi sente suonare una campanella!", "foresawAnAttack": "{{pokemonName}} presagisce\nl’attacco imminente!", "isTighteningFocus": "{{pokemonName}} si concentra al massimo!", "hidUnderwater": "{{pokemonName}} sparisce\nsott’acqua!", @@ -57,10 +55,11 @@ export const moveTriggers: SimpleTranslationEntries = { "sacrificialFullRestore": "{{pokemonName}} riceve i benefici\neffetti di Curardore!", "invertStats": "Le modifiche alle statistiche di {{pokemonName}}\nvengono invertite!", "resetStats": "Tutte le modifiche alle statistiche sono state annullate!", - "statEliminated": "All stat changes were eliminated!", + "statEliminated": "Tutte le modifiche alle statistiche sono state annullate!", "faintCountdown": "{{pokemonName}}\nandrà KO dopo {{turnCount}} turni.", "copyType": "{{pokemonName}} assume il tipo\ndi {{targetPokemonName}}!", "suppressAbilities": "L’abilità di {{pokemonName}}\nperde ogni efficacia!", + "revivalBlessing": "{{pokemonName}} torna in forze!", "swapArenaTags": "{{pokemonName}} ha invertito gli effetti attivi\nnelle due metà del campo!", - "exposedMove": "{{pokemonName}} identified\n{{targetPokemonName}}!", -} as const; + "exposedMove": "{{pokemonName}} ha identificato\n{{targetPokemonName}}!" +} \ No newline at end of file diff --git a/src/locales/it/move.json b/src/locales/it/move.json new file mode 100644 index 00000000000..f5bb1954278 --- /dev/null +++ b/src/locales/it/move.json @@ -0,0 +1,3810 @@ +{ + "pound": { + "name": "Botta", + "effect": "Colpisce il nemico con la coda o le zampe anteriori." + }, + "karateChop": { + "name": "Colpokarate", + "effect": "Colpisce il nemico con un colpo netto. Probabile brutto colpo." + }, + "doubleSlap": { + "name": "Doppiasberla", + "effect": "Schiaffeggia il nemico da due a cinque volte di fila." + }, + "cometPunch": { + "name": "Cometapugno", + "effect": "Colpisce il nemico con una scarica di pugni da due a cinque volte di fila." + }, + "megaPunch": { + "name": "Megapugno", + "effect": "Colpisce il nemico con un pugno poderoso." + }, + "payDay": { + "name": "Giornopaga", + "effect": "Colpisce il nemico con una gran quantità di monete recuperabili dopo la lotta." + }, + "firePunch": { + "name": "Fuocopugno", + "effect": "Colpisce il nemico con un pugno ardente che può scottarlo." + }, + "icePunch": { + "name": "Gelopugno", + "effect": "Colpisce il nemico con un pugno di ghiaccio che può congelarlo." + }, + "thunderPunch": { + "name": "Tuonopugno", + "effect": "Colpisce il nemico con un pugno elettrico che può paralizzarlo." + }, + "scratch": { + "name": "Graffio", + "effect": "Infligge danni al nemico con artigli acuminati, duri e affilati." + }, + "viseGrip": { + "name": "Presa", + "effect": "Stringe il nemico in una morsa usando enormi e possenti tenaglie." + }, + "guillotine": { + "name": "Ghigliottina", + "effect": "Attacca il nemico con pericolose tenaglie. Se l'attacco va a segno, il nemico va subito KO." + }, + "razorWind": { + "name": "Ventagliente", + "effect": "Chi la usa genera un turbine al primo turno e attacca al secondo. Probabile brutto colpo." + }, + "swordsDance": { + "name": "Danzaspada", + "effect": "Danza frenetica che incrementa lo spirito combattivo. Chi la usa aumenta di molto il suo Attacco." + }, + "cut": { + "name": "Taglio", + "effect": "Attacca il nemico con artigli o falci affilate. Fuori dalla lotta si usa per tagliare piccoli alberi." + }, + "gust": { + "name": "Raffica", + "effect": "Infligge danni al nemico con una folata di vento sollevata dalle ali." + }, + "wingAttack": { + "name": "Attacco d'Ala", + "effect": "Infligge danni al nemico spiegando delle grandi ali possenti." + }, + "whirlwind": { + "name": "Turbine", + "effect": "Il bersaglio è spazzato via ed è costretto a lasciare il posto ad un altro. Se è selvatico, la lotta finisce." + }, + "fly": { + "name": "Volo", + "effect": "Chi la usa si alza in volo per attaccare al turno seguente. Fuori dalla lotta permette di volare in città già visitate." + }, + "bind": { + "name": "Legatutto", + "effect": "Lega e stritola il nemico per quattro o cinque turni con tentacoli o con un corpo lungo." + }, + "slam": { + "name": "Schianto", + "effect": "Infligge danni al nemico con una coda, una liana o simili." + }, + "vineWhip": { + "name": "Frustata", + "effect": "Infligge danni al nemico con liane sottili simili a fruste." + }, + "stomp": { + "name": "Pestone", + "effect": "Colpisce il nemico con un grosso piede e può anche farlo tentennare." + }, + "doubleKick": { + "name": "Doppiocalcio", + "effect": "Colpisce il nemico due volte con un paio di rapidi calci inferti con entrambi i piedi." + }, + "megaKick": { + "name": "Megacalcio", + "effect": "Colpisce il nemico con un calcio sferrato con la forza di muscoli poderosi." + }, + "jumpKick": { + "name": "Calciosalto", + "effect": "Permette di saltare in alto per attaccare con un calcio. Se non va a buon fine, chi la usa si ferisce." + }, + "rollingKick": { + "name": "Calciorullo", + "effect": "Chi la usa infierisce sul nemico con un calcio rotante. Può anche farlo tentennare." + }, + "sandAttack": { + "name": "Turbosabbia", + "effect": "Getta sabbia in faccia al nemico e ne riduce la precisione." + }, + "headbutt": { + "name": "Bottintesta", + "effect": "Chi la usa si lancia diritto di testa contro il nemico. Può anche far tentennare." + }, + "hornAttack": { + "name": "Incornata", + "effect": "Danneggia il nemico infilzandolo con un corno affilato." + }, + "furyAttack": { + "name": "Furia", + "effect": "Infilza il nemico con corna affilate o un becco da due a cinque volte di fila." + }, + "hornDrill": { + "name": "Perforcorno", + "effect": "Colpisce il nemico con un corno perforante come un trapano. Se il colpo va a segno, il nemico va KO." + }, + "tackle": { + "name": "Azione", + "effect": "Attacco fisico che colpisce il nemico investendolo con tutto il corpo." + }, + "bodySlam": { + "name": "Corposcontro", + "effect": "Chi la usa carica il nemico con tutto il corpo. Può causarne anche la paralisi." + }, + "wrap": { + "name": "Avvolgibotta", + "effect": "Avvolge e stritola il nemico con un corpo lungo o con piante rampicanti per quattro o cinque turni." + }, + "takeDown": { + "name": "Riduttore", + "effect": "Carica spericolata con tutto il corpo contro il nemico. Danneggia un po' anche chi la usa." + }, + "thrash": { + "name": "Colpo", + "effect": "Assale e attacca il nemico per due o tre turni, ma confonde chi la usa." + }, + "doubleEdge": { + "name": "Sdoppiatore", + "effect": "Carica spietata e pericolosa che danneggia molto anche chi la usa." + }, + "tailWhip": { + "name": "Colpocoda", + "effect": "Chi la usa agita la coda per distrarre i nemici, riducendone la Difesa." + }, + "poisonSting": { + "name": "Velenospina", + "effect": "Colpisce il nemico con un aculeo tossico che può anche avvelenarlo." + }, + "twineedle": { + "name": "Doppio Ago", + "effect": "Colpisce il nemico due volte di seguito con un paio di aghi. Può anche avvelenarlo." + }, + "pinMissile": { + "name": "Missilspillo", + "effect": "Il nemico viene colpito da due a cinque volte con spilli appuntiti in rapida successione." + }, + "leer": { + "name": "Fulmisguardo", + "effect": "Il nemico viene guardato con sguardo intimidatorio da occhi acuti. Viene ridotta la difesa dell'avversario." + }, + "bite": { + "name": "Morso", + "effect": "Il nemico viene morso da denti affilatissimi che possono farlo tentennare." + }, + "growl": { + "name": "Ruggito", + "effect": "Il Pokémon ruggisce con cattiveria. Viene ridotto l'attacco dell'avversario." + }, + "roar": { + "name": "Boato", + "effect": "Il bersaglio è costretto a lasciare il campo e viene sostituito. Mette fine alle lotte contro Pokémon selvatici." + }, + "sing": { + "name": "Canto", + "effect": "Una ninna nanna è cantata con voce calma per far addormentare il nemico." + }, + "supersonic": { + "name": "Supersuono", + "effect": "Chi la usa genera dal proprio corpo strane onde acustiche che possono confondere il nemico." + }, + "sonicBoom": { + "name": "Sonicboom", + "effect": "Il nemico viene colpito con un suono distruttivo che infligge un danno sempre 20 PS." + }, + "disable": { + "name": "Inibitore", + "effect": "Per quattro turni impedisce al bersaglio di riutilizzare l'ultima mossa usata." + }, + "acid": { + "name": "Acido", + "effect": "Colpisce i nemici intorno spruzzando un acido corrosivo. Può anche ridurne la Difesa Speciale." + }, + "ember": { + "name": "Braciere", + "effect": "Il Pokémon attacca con piccole fiamme. Possono scottare il nemico." + }, + "flamethrower": { + "name": "Lanciafiamme", + "effect": "Il nemico viene colpito da intense fiammate che possono anche scottarlo." + }, + "mist": { + "name": "Nebbia", + "effect": "Chi la usa attira una nebbia che blocca la riduzione alle statistiche della sua squadra per cinque turni." + }, + "waterGun": { + "name": "Pistolacqua", + "effect": "Il nemico è colpito da un potente getto d'acqua." + }, + "hydroPump": { + "name": "Idropompa", + "effect": "Il nemico è travolto da un potente getto d'acqua spruzzato ad altissima pressione." + }, + "surf": { + "name": "Surf", + "effect": "Un'onda enorme sommerge il campo di lotta. Fuori dalla lotta si usa per spostarsi sull'acqua." + }, + "iceBeam": { + "name": "Geloraggio", + "effect": "Il nemico è colpito da un raggio di energia gelida che può anche congelarlo." + }, + "blizzard": { + "name": "Bora", + "effect": "Colpisce i bersagli con una tremenda tempesta di ghiaccio che può anche congelarli." + }, + "psybeam": { + "name": "Psicoraggio", + "effect": "Il nemico è attaccato con un raggio psichico. Può anche lasciare il nemico confuso." + }, + "bubbleBeam": { + "name": "Bollaraggio", + "effect": "Colpisce il nemico con una forte scarica di bolle. Può anche ridurne la Velocità." + }, + "auroraBeam": { + "name": "Raggiaurora", + "effect": "Il nemico viene colpito da un fascio color arcobaleno. Può ridurre l'attacco dell'avversario." + }, + "hyperBeam": { + "name": "Iper Raggio", + "effect": "Colpisce il nemico con un potente raggio. Chi la usa salta il turno successivo per recuperare energia." + }, + "peck": { + "name": "Beccata", + "effect": "Colpisce il nemico con un becco appuntito o un corno." + }, + "drillPeck": { + "name": "Perforbecco", + "effect": "Attacco a spirale con un becco aguzzo che fa da trapano." + }, + "submission": { + "name": "Sottomissione", + "effect": "Chi la usa carica il nemico in modo spericolato, ma danneggia anche se stesso." + }, + "lowKick": { + "name": "Colpo Basso", + "effect": "Un calcio basso e potente che fa cadere il nemico. Danneggia maggiormente i nemici più pesanti." + }, + "counter": { + "name": "Contrattacco", + "effect": "Una mossa di ritorsione che contrasta qualsiasi attacco fisico, infliggendo il doppio dei danni subiti." + }, + "seismicToss": { + "name": "Movimento Sismico", + "effect": "Colpisce il bersaglio con la forza di gravità. Infligge un danno pari al livello di chi la usa." + }, + "strength": { + "name": "Forza", + "effect": "Colpisce il nemico con un'enorme energia. Fuori dalla lotta si usa per spostare i massi." + }, + "absorb": { + "name": "Assorbimento", + "effect": "Mossa che assorbe PS. Chi la usa recupera una quantità di PS pari alla metà del danno inferto." + }, + "megaDrain": { + "name": "Megassorbimento", + "effect": "Mossa che assorbe PS. Chi la usa recupera un quantità di PS pari alla metà del danno inferto." + }, + "leechSeed": { + "name": "Parassiseme", + "effect": "Vengono piantati semi sul bersaglio. Questi sottraggono PS a ogni turno permettendo a chi la usa di curarsi." + }, + "growth": { + "name": "Crescita", + "effect": "Provoca la crescita immediata del corpo e l'aumento dell'Attacco e dell'Attacco Speciale di chi la usa." + }, + "razorLeaf": { + "name": "Foglielama", + "effect": "Foglie taglienti sferzano i nemici intorno. Probabile brutto colpo." + }, + "solarBeam": { + "name": "Solarraggio", + "effect": "Chi la usa assorbe luce al primo turno per proiettare un raggio intenso al turno successivo." + }, + "poisonPowder": { + "name": "Velenpolvere", + "effect": "Una nube di polvere velenosa è sparsa sul nemico. Può avvelenare il bersaglio." + }, + "stunSpore": { + "name": "Paralizzante", + "effect": "Investe il bersaglio con una nuvola di polvere che paralizza." + }, + "sleepPowder": { + "name": "Sonnifero", + "effect": "Investe il bersaglio con una grande nuvola di polvere soporifera che lo fa addormentare." + }, + "petalDance": { + "name": "Petalodanza", + "effect": "Attacca il nemico cospargendolo di petali per due o tre turni, ma chi la usa rimane confuso." + }, + "stringShot": { + "name": "Millebave", + "effect": "Chi la usa produce della seta che avvolge i nemici e ne riduce la Velocità." + }, + "dragonRage": { + "name": "Ira di Drago", + "effect": "Colpisce il nemico con un'onda d'urto generata dall'ira. Questo attacco provoca sempre un danno di 40 PS." + }, + "fireSpin": { + "name": "Turbofuoco", + "effect": "Intrappola il bersaglio in un turbine di fuoco che dura per quattro o cinque turni." + }, + "thunderShock": { + "name": "Tuonoshock", + "effect": "Danneggia il bersaglio con una scarica elettrica che può anche paralizzarlo." + }, + "thunderbolt": { + "name": "Fulmine", + "effect": "Il bersaglio viene colpito da una potente scarica elettrica che può anche paralizzarlo." + }, + "thunderWave": { + "name": "Tuononda", + "effect": "Il nemico viene colpito da una debole scarica elettrica che, se va a segno, ne causa la paralisi." + }, + "thunder": { + "name": "Tuono", + "effect": "Il nemico è colpito da un lampo molto violento che può anche paralizzarlo." + }, + "rockThrow": { + "name": "Sassata", + "effect": "Chi la usa solleva una roccia e la lancia contro il nemico." + }, + "earthquake": { + "name": "Terremoto", + "effect": "Chi la usa provoca un potente sisma che colpisce gli altri Pokémon in campo." + }, + "fissure": { + "name": "Abisso", + "effect": "Chi la usa crea una spaccatura nel terreno e cerca di gettarvici dentro il nemico. Se va a segno, il nemico va KO." + }, + "dig": { + "name": "Fossa", + "effect": "Chi la usa scava al primo turno e attacca al successivo. Fuori dalla lotta fa uscire da alcuni luoghi." + }, + "toxic": { + "name": "Tossina", + "effect": "Una mossa che lascia l'obiettivo gravemente avvelenato. Il danno da veleno peggiora ad ogni turno." + }, + "confusion": { + "name": "Confusione", + "effect": "Colpisce il nemico con una leggera forza telecinetica e può anche confonderlo." + }, + "psychic": { + "name": "Psichico", + "effect": "Il nemico viene colpito da una potente forza telecinetica che può anche ridurne la Difesa Speciale." + }, + "hypnosis": { + "name": "Ipnosi", + "effect": "Chi la usa si avvale della suggestione ipnotica per far addormentare il nemico." + }, + "meditate": { + "name": "Meditazione", + "effect": "Il Pokémon medita risvegliando il potere nel profondo del suo corpo ed aumentando il suo Attacco." + }, + "agility": { + "name": "Agilità", + "effect": "Chi la usa rilassa e alleggerisce il proprio corpo per far salire di molto la Velocità." + }, + "quickAttack": { + "name": "Attacco Rapido", + "effect": "Chi la usa colpisce sempre per primo e ad una tale velocità da rendersi quasi invisibile." + }, + "rage": { + "name": "Ira", + "effect": "Questa mossa ha il potere di aumentare la statistica Attacco ogni volta che chi la usa viene colpito durante una lotta." + }, + "teleport": { + "name": "Teletrasporto", + "effect": "Fa fuggire dai Pokémon selvatici. Fuori dalla lotta porta all'ultimo Centro Pokémon visitato." + }, + "nightShade": { + "name": "Ombra Notturna", + "effect": "Fa apparire un orribile miraggio al nemico e infligge un danno pari al livello di chi la usa." + }, + "mimic": { + "name": "Mimica", + "effect": "Copia l'ultima mossa usata dal bersaglio. La mossa copiata si può utilizzare fino alla sostituzione del Pokémon." + }, + "screech": { + "name": "Stridio", + "effect": "Stridio assordante che riduce di molto la Difesa del nemico." + }, + "doubleTeam": { + "name": "Doppioteam", + "effect": "Chi la usa si muove in fretta e crea copie illusorie di se stesso che aumentano la capacità di elusione." + }, + "recover": { + "name": "Ripresa", + "effect": "Una mossa di auto-guarigione. Il Pokémon ripristina i suoi PS fino a metà dei suoi PS massimi." + }, + "harden": { + "name": "Rafforzatore", + "effect": "Tutti i muscoli del corpo si tonificano per aumentare la Difesa." + }, + "minimize": { + "name": "Minimizzato", + "effect": "Il corpo di chi la usa si comprime e diventa più piccolo. La sua capacità di elusione aumenta di molto." + }, + "smokescreen": { + "name": "Muro di Fumo", + "effect": "Il Pokémon rilascia un'oscura cortina di fumo che riduce la precisione del nemico." + }, + "confuseRay": { + "name": "Stordiraggio", + "effect": "Il nemico è colpito da un raggio sinistro che lo confonde." + }, + "withdraw": { + "name": "Ritirata", + "effect": "Il corpo si ritira nel suo duro guscio per aumentare la Difesa." + }, + "defenseCurl": { + "name": "Ricciolscudo", + "effect": "Chi la usa si raggomitola per nascondere i punti deboli e aumentare la propria Difesa." + }, + "barrier": { + "name": "Barriera", + "effect": "Innalza una barriera resistente che aumenta molto la Difesa." + }, + "lightScreen": { + "name": "Schermoluce", + "effect": "Innalza una barriera di luce fantastica per ridurre i danni degli attacchi speciali alla squadra per cinque turni." + }, + "haze": { + "name": "Nube", + "effect": "Chi la usa crea una nube nera che annulla ogni modifica delle statistiche di tutti i Pokémon in campo." + }, + "reflect": { + "name": "Riflesso", + "effect": "Innalza una barriera di luce fantastica per ridurre i danni degli attacchi fisici alla squadra per cinque turni." + }, + "focusEnergy": { + "name": "Focalenergia", + "effect": "Chi la usa fa un profondo respiro e si concentra per rendere più probabili i brutti colpi." + }, + "bide": { + "name": "Pazienza", + "effect": "Chi la usa subisce attacchi per due turni e poi restituisce il danno moltiplicato per due." + }, + "metronome": { + "name": "Metronomo", + "effect": "Il Pokémon fa di no con il dito e stimola il cervello a usare a caso una delle tante mosse esistenti." + }, + "mirrorMove": { + "name": "Speculmossa", + "effect": "Chi la usa colpisce il bersaglio copiandone l'ultima mossa usata." + }, + "selfDestruct": { + "name": "Autodistruzione", + "effect": "Chi la usa esplode e infligge danni agli altri Pokémon in campo, ma poi va KO." + }, + "eggBomb": { + "name": "Uovobomba", + "effect": "Colpisce il nemico con un grande uovo scaraventato con enorme forza." + }, + "lick": { + "name": "Leccata", + "effect": "Una lingua lunga infligge danni al nemico e può anche paralizzarlo." + }, + "smog": { + "name": "Smog", + "effect": "Colpisce il nemico con una scarica di gas maleodoranti. Può anche avvelenarlo." + }, + "sludge": { + "name": "Fango", + "effect": "Lancio di fango malsano che arreca danno al nemico. Può anche avvelenarlo." + }, + "boneClub": { + "name": "Ossoclava", + "effect": "Il Pokémon colpisce il nemico con un bastone d'osso. Può anche fare tentennare l'obiettivo." + }, + "fireBlast": { + "name": "Fuocobomba", + "effect": "Investe il nemico con un'intensa fiammata che fa terra bruciata. Può anche scottarlo." + }, + "waterfall": { + "name": "Cascata", + "effect": "Carica il nemico a grande velocità e può farlo tentennare. Fuori dalla lotta fa risalire le cascate." + }, + "clamp": { + "name": "Tenaglia", + "effect": "Chi la usa intrappola e stritola il nemico con la sua corazza spessa e forte per quattro o cinque turni." + }, + "swift": { + "name": "Comete", + "effect": "Colpisce i nemici con raggi a forma di stella. Questo attacco è infallibile." + }, + "skullBash": { + "name": "Capocciata", + "effect": "Chi la usa ritira la testa per aumentare la Difesa e poi attacca al turno successivo." + }, + "spikeCannon": { + "name": "Sparalance", + "effect": "Il nemico viene colpito da due a cinque volte in rapida successione da spilli appuntiti." + }, + "constrict": { + "name": "Limitazione", + "effect": "Colpisce il nemico con lunghi tentacoli o piante rampicanti. Può anche ridurne la Velocità." + }, + "amnesia": { + "name": "Amnesia", + "effect": "Vuoto di memoria che aumenta esponenzialmente la difesa speciale." + }, + "kinesis": { + "name": "Cinèsi", + "effect": "Chi la usa distrae il bersaglio piegando un cucchiaio e ne riduce la precisione." + }, + "softBoiled": { + "name": "Covauova", + "effect": "Chi la usa recupera metà dei propri PS massimi. Fuori dalla lotta può anche far trasferire PS ai propri compagni." + }, + "highJumpKick": { + "name": "Calcinvolo", + "effect": "Chi la usa colpisce il nemico con una ginocchiata in volo: se fallisce, subisce danni." + }, + "glare": { + "name": "Sguardo Feroce", + "effect": "Chi la usa spaventa il nemico con uno sguardo terrificante e ne causa la paralisi." + }, + "dreamEater": { + "name": "Mangiasogni", + "effect": "Attacco che funziona solo su un nemico che dorme. Chi lo usa riceve metà dei PS persi dal nemico." + }, + "poisonGas": { + "name": "Velenogas", + "effect": "Spruzza in faccia al nemico una nuvola di gas tossico che avvelena." + }, + "barrage": { + "name": "Attacco Pioggia", + "effect": "Piovono enormi sfere sulla testa del nemico da due a cinque volte di fila." + }, + "leechLife": { + "name": "Sanguisuga", + "effect": "Mossa succhiasangue. Chi la usa recupera una quantità di PS pari alla metà del danno inferto." + }, + "lovelyKiss": { + "name": "Demonbacio", + "effect": "Chi la usa intimidisce il bersaglio con una faccia paurosa e gli schiocca un bacio che lo fa addormentare." + }, + "skyAttack": { + "name": "Aeroattacco", + "effect": "Un attacco in due turni e probabile brutto colpo. Può anche far tentennare il nemico." + }, + "transform": { + "name": "Trasformazione", + "effect": "Chi la usa si trasforma in una copia esatta del bersaglio per sfruttarne le caratteristiche." + }, + "bubble": { + "name": "Bolla", + "effect": "Uno spruzzo di bolle viene lanciato sul nemico. Può ridurne la velocità." + }, + "dizzyPunch": { + "name": "Stordipugno", + "effect": "Colpisce il bersaglio con una sequenza di pugni che può anche confonderlo." + }, + "spore": { + "name": "Spora", + "effect": "Nube di spore che fa sempre addormentare il bersaglio." + }, + "flash": { + "name": "Flash", + "effect": "Il Pokémon usa un lampo di luce contro il nemico riducendone la precisione. Può essere usata per illuminare luoghi oscuri." + }, + "psywave": { + "name": "Psiconda", + "effect": "Il nemico è attaccato con una strana onda di energia. L'intensità dell'attacco è variabile." + }, + "splash": { + "name": "Splash", + "effect": "Chi la usa sguazza nell'acqua, senza ottenere alcun effetto." + }, + "acidArmor": { + "name": "Scudo Acido", + "effect": "Il Pokémon modifica la sua struttura cellulare liquefandosi, per aumentare esponenzialmente la sua difesa." + }, + "crabhammer": { + "name": "Martellata", + "effect": "Colpisce il nemico con una grande tenaglia. Probabile brutto colpo." + }, + "explosion": { + "name": "Esplosione", + "effect": "Chi la usa esplode per infliggere danni agli altri Pokémon attorno, ma va KO." + }, + "furySwipes": { + "name": "Sfuriate", + "effect": "Colpisce il nemico con artigli o falci affilate da due a cinque volte in rapida successione." + }, + "bonemerang": { + "name": "Ossomerang", + "effect": "Chi la usa lancia l'osso che tiene. L'osso colpisce due volte e ritorna come un vero e proprio boomerang." + }, + "rest": { + "name": "Riposo", + "effect": "Il Pokémon si addormenta per due turni per curare tutti i PS e qualsiasi problema di stato." + }, + "rockSlide": { + "name": "Frana", + "effect": "I nemici vengono colpiti da grandi massi che possono anche farli tentennare." + }, + "hyperFang": { + "name": "Iperzanna", + "effect": "Il Pokémon morde il nemico con zanne taglienti. Può anche farlo tentennare." + }, + "sharpen": { + "name": "Affilatore", + "effect": "Chi la usa riduce il numero di poligoni sul proprio corpo per accentuarne gli spigoli e aumentare l'Attacco." + }, + "conversion": { + "name": "Conversione", + "effect": "Il tipo di chi la usa muta in quello di una sua mossa a caso." + }, + "triAttack": { + "name": "Tripletta", + "effect": "Colpisce il nemico con tre sfere simultanee che possono anche paralizzarlo, scottarlo o congelarlo." + }, + "superFang": { + "name": "Superzanna", + "effect": "Chi la usa salta sul nemico azzannandolo con i suoi incisivi affilati e facendogli perdere metà dei PS." + }, + "slash": { + "name": "Lacerazione", + "effect": "Attacca il nemico con artigli, falci o altro. Probabile brutto colpo." + }, + "substitute": { + "name": "Sostituto", + "effect": "Chi la usa crea una copia di se stesso usando alcuni PS. La copia serve come esca per il nemico." + }, + "struggle": { + "name": "Scontro", + "effect": "Mossa da usare solo in caso estremo, quando non si hanno più PP. Danneggia anche chi la usa." + }, + "sketch": { + "name": "Schizzo", + "effect": "Permette a chi la usa di imparare l'ultima mossa usata dal bersaglio. La nuova mossa appresa sostituisce Schizzo." + }, + "tripleKick": { + "name": "Triplocalcio", + "effect": "Chi la usa esegue fino a tre calci consecutivi la cui potenza aumenta ad ogni colpo." + }, + "thief": { + "name": "Furto", + "effect": "Il Pokémon attacca e contemporaneamente ruba lo strumento tenuto dal nemico. Non ruberà nulla, se si possiede già uno strumento." + }, + "spiderWeb": { + "name": "Ragnatela", + "effect": "Copre il nemico con un filo di seta sottile e appiccicoso. Il nemico non può fuggire." + }, + "mindReader": { + "name": "Leggimente", + "effect": "Il Pokémon percepisce i movimenti del nemico con la mente per garantire il successo della mossa successiva." + }, + "nightmare": { + "name": "Incubo", + "effect": "Il nemico addormentato ha un incubo e perde PS ad ogni turno." + }, + "flameWheel": { + "name": "Ruotafuoco", + "effect": "Il Pokémon si avvolge nel fuoco e carica il nemico. Può scottare." + }, + "snore": { + "name": "Russare", + "effect": "Mossa da usare solo mentre si dorme. Il chiasso assordante può anche far tentennare il nemico." + }, + "curse": { + "name": "Maledizione", + "effect": "Una mossa che agisce in modo diverso se chi la usa è di tipo Spettro." + }, + "flail": { + "name": "Flagello", + "effect": "Chi la usa si dimena per attaccare. È più efficace se i suoi PS sono bassi." + }, + "conversion2": { + "name": "Conversione2", + "effect": "Chi la usa cambia tipo per rendersi resistente al tipo dell'ultima mossa usata dal bersaglio." + }, + "aeroblast": { + "name": "Aerocolpo", + "effect": "Colpisce il nemico con un vortice d'aria per danneggiarlo. Probabile brutto colpo." + }, + "cottonSpore": { + "name": "Cottonspora", + "effect": "Rilascia spore simili al cotone che si attaccano ai nemici nei paraggi e ne riducono di molto la Velocità." + }, + "reversal": { + "name": "Contropiede", + "effect": "Chi la usa attacca con tutte le sue forze. Più i PS sono bassi, maggiore è la potenza di questa mossa." + }, + "spite": { + "name": "Dispetto", + "effect": "Chi la usa sfoga la propria rabbia sull'ultima mossa usata dal bersaglio e le sottrae quattro PP." + }, + "powderSnow": { + "name": "Polneve", + "effect": "Attacca il nemico con una raffica di neve farinosa e può anche congelarlo." + }, + "protect": { + "name": "Protezione", + "effect": "Permette di eludere tutti gli attacchi. Se usata in successione può fallire." + }, + "machPunch": { + "name": "Pugnorapido", + "effect": "Chi la usa tira un pugno a velocità impressionante e colpisce di sicuro per primo." + }, + "scaryFace": { + "name": "Visotruce", + "effect": "Chi la usa spaventa il nemico con una faccia terribile e ne riduce di molto la Velocità." + }, + "feintAttack": { + "name": "Finta", + "effect": "Chi la usa si avvicina al nemico facendo finta di niente, per poi scagliare un pugno infallibile a tradimento." + }, + "sweetKiss": { + "name": "Dolcebacio", + "effect": "Chi la usa bacia il nemico con una dolcezza angelica, confondendolo." + }, + "bellyDrum": { + "name": "Panciamburo", + "effect": "Chi la usa massimizza l'Attacco in cambio di metà dei PS massimi." + }, + "sludgeBomb": { + "name": "Fangobomba", + "effect": "Chi la usa attacca lanciando fango sul bersaglio. Può anche avvelenarlo." + }, + "mudSlap": { + "name": "Fangosberla", + "effect": "Chi la usa butta fango in faccia al nemico per arrecargli danni e ridurne la precisione." + }, + "octazooka": { + "name": "Octazooka", + "effect": "Chi la usa spruzza del'inchiostro in faccia al nemico. Può anche ridurne la precisione." + }, + "spikes": { + "name": "Punte", + "effect": "Chi la usa piazza sul terreno una trappola di punte che danneggia i nemici quando scendono in campo." + }, + "zapCannon": { + "name": "Falcecannone", + "effect": "Chi la usa provoca un'esplosione elettrica che infligge danni e paralizza il nemico." + }, + "foresight": { + "name": "Preveggenza", + "effect": "Chi la usa rende i Pokémon di tipo Spettro vulnerabili a qualsiasi tipo di mossa e può, inoltre, colpire i nemici sfuggenti." + }, + "destinyBond": { + "name": "Destinobbligato", + "effect": "Se chi la usa va KO prima del proprio turno, chi ha sferrato il colpo da KO fa la stessa fine." + }, + "perishSong": { + "name": "Ultimocanto", + "effect": "Ogni Pokémon che sente questo canto va KO in tre turni, se non lo si sostituisce." + }, + "icyWind": { + "name": "Ventogelato", + "effect": "Chi la usa attacca i nemici con una folata di aria gelida e ne riduce anche la Velocità." + }, + "detect": { + "name": "Individua", + "effect": "Consente al Pokémon di evitare tutti gli attacchi. Può fallire se usato in successione." + }, + "boneRush": { + "name": "Ossoraffica", + "effect": "Chi la usa colpisce il nemico con un osso duro, da 2 a 5 volte di fila." + }, + "lockOn": { + "name": "Localizza", + "effect": "Chi la usa punta il nemico con precisione. La mossa successiva andrà a segno." + }, + "outrage": { + "name": "Oltraggio", + "effect": "Chi la usa sfoga la sua ira e attacca il nemico per due o tre turni prima di essere lasciato in preda alla confusione." + }, + "sandstorm": { + "name": "Terrempesta", + "effect": "Causa una tempesta di sabbia per cinque turni che danneggia tutti i tipi in campo esclusi Terra, Roccia e Acciaio." + }, + "gigaDrain": { + "name": "Gigassorbimento", + "effect": "Mossa che assorbe PS. Chi la usa recupera un quantità di PS pari alla metà del danno inferto." + }, + "endure": { + "name": "Resistenza", + "effect": "Chi la usa resta con un PS anche se subisce un colpo da KO in quel turno. Usata in successione può fallire." + }, + "charm": { + "name": "Fascino", + "effect": "Ammalia il nemico con lo sguardo per renderlo meno cauto. Riduce molto l'Attacco del nemico." + }, + "rollout": { + "name": "Rotolamento", + "effect": "Chi la usa colpisce il nemico rotolando per cinque turni, con aumento progressivo della potenza ogni volta che va a segno." + }, + "falseSwipe": { + "name": "Falsofinale", + "effect": "Chi la usa trattiene il colpo per impedire al nemico di andare KO, lasciandolo con almeno un PS." + }, + "swagger": { + "name": "Bullo", + "effect": "Chi la usa provoca il bersaglio e lo confonde, facendo aumentare però di molto il suo Attacco." + }, + "milkDrink": { + "name": "Buonlatte", + "effect": "Chi la usa recupera metà dei propri PS massimi. Fuori dalla lotta può anche far trasferire PS ai propri compagni." + }, + "spark": { + "name": "Scintilla", + "effect": "Colpisce il nemico con una carica elettrica e può anche paralizzarlo." + }, + "furyCutter": { + "name": "Tagliofuria", + "effect": "Colpisce il nemico con falci o artigli. Se usata in successione aumenta di potenza ogni volta che va a segno." + }, + "steelWing": { + "name": "Alacciaio", + "effect": "Colpisce il nemico con ali d'acciaio. Può anche aumentare la Difesa di chi la usa." + }, + "meanLook": { + "name": "Malosguardo", + "effect": "Chi la usa blocca il nemico con uno sguardo oscuro e ammaliante, impedendogli la fuga." + }, + "attract": { + "name": "Attrazione", + "effect": "Se il nemico è del sesso opposto, s'infatua e attacca con meno probabilità." + }, + "sleepTalk": { + "name": "Sonnolalia", + "effect": "Chi la usa sfodera a caso una delle proprie mosse mentre sta dormendo." + }, + "healBell": { + "name": "Rintoccasana", + "effect": "Chi la usa fa suonare le campane per curare completamente tutta la squadra." + }, + "return": { + "name": "Ritorno", + "effect": "Mossa che diventa tanto più potente quanto maggiore è il grado di affezione del Pokémon per il proprio Allenatore." + }, + "present": { + "name": "Regalino", + "effect": "Chi la usa dà un regalo bomba al bersaglio. A volte, però, può fargli recuperare PS." + }, + "frustration": { + "name": "Frustrazione", + "effect": "Mossa che diventa tanto più potente quanto minore è il grado di affezione del Pokémon per il proprio Allenatore." + }, + "safeguard": { + "name": "Salvaguardia", + "effect": "Chi la usa crea un campo protettivo che difende tutta la squadra dai problemi di stato per cinque turni." + }, + "painSplit": { + "name": "Malcomune", + "effect": "Chi la usa somma i propri PS a quelli di un altro Pokémon per poi dividerli in parti uguali." + }, + "sacredFire": { + "name": "Magifuoco", + "effect": "Colpisce il nemico con un fuoco mistico di enorme intensità che può anche causargli una scottatura." + }, + "magnitude": { + "name": "Magnitudo", + "effect": "Chi la usa scatena un terremoto d'intensità variabile che danneggia gli altri Pokémon in campo." + }, + "dynamicPunch": { + "name": "Dinamipugno", + "effect": "Colpisce il nemico con un pugno davvero forte. Se va a segno, lo confonde." + }, + "megahorn": { + "name": "Megacorno", + "effect": "Chi la usa utilizza il suo corno per montare con grande forza il nemico." + }, + "dragonBreath": { + "name": "Dragospiro", + "effect": "Investe il nemico con una raffica potentissima che arreca danni. Può anche paralizzarlo." + }, + "batonPass": { + "name": "Staffetta", + "effect": "Chi la usa è sostituito da un Pokémon della squadra, che eredita anche ogni modifica alle statistiche." + }, + "encore": { + "name": "Ripeti", + "effect": "Chi la usa costringe il nemico a continuare ad utilizzare solo l'ultima mossa utilizzata da 2 a 6 turni." + }, + "pursuit": { + "name": "Inseguimento", + "effect": "Una mossa d'attacco che infligge un danno doppio se il nemico è in fase di sostituzione." + }, + "rapidSpin": { + "name": "Rapigiro", + "effect": "Un attacco roteante che elimina gli effetti delle mosse Legatutto, Avvolgibotta, Parassiseme e Punte." + }, + "sweetScent": { + "name": "Profumino", + "effect": "Un dolce profumo che alletta il nemico per ridurne l'elusione. Attira anche Pokémon selvatici." + }, + "ironTail": { + "name": "Codacciaio", + "effect": "Il nemico viene colpito da una robusta coda d'acciaio. Può anche ridurne la Difesa." + }, + "metalClaw": { + "name": "Ferrartigli", + "effect": "Colpisce il nemico con artigli d'acciaio. Può anche aumentare l'Attacco di chi la usa." + }, + "vitalThrow": { + "name": "Vitaltiro", + "effect": "Chi la usa attacca per ultimo, ma il colpo è sempre infallibile." + }, + "morningSun": { + "name": "Mattindoro", + "effect": "Chi la usa recupera PS. Il numero di PS recuperati dipende dalle condizioni atmosferiche." + }, + "synthesis": { + "name": "Sintesi", + "effect": "Chi la usa recupera PS. Il numero di PS recuperati dipende dalle condizioni atmosferiche." + }, + "moonlight": { + "name": "Lucelunare", + "effect": "Chi la usa recupera PS. Il numero di PS recuperati dipende dalle condizioni atmosferiche." + }, + "hiddenPower": { + "name": "Introforza", + "effect": "Mossa singolare che cambia tipo e potenza a seconda del Pokémon che la usa." + }, + "crossChop": { + "name": "Incrocolpo", + "effect": "Investe il nemico con un colpo sferrato con entrambe le braccia incrociate. Probabile brutto colpo." + }, + "twister": { + "name": "Tornado", + "effect": "Un potente tornado si abbatte sul nemico. Può anche far tentennare." + }, + "rainDance": { + "name": "Pioggiadanza", + "effect": "Chi la usa provoca una forte pioggia per cinque turni, potenziando le mosse di tipo Acqua." + }, + "sunnyDay": { + "name": "Giornodisole", + "effect": "Chi la usa intensifica i raggi solari per cinque turni, potenziando le mosse di tipo Fuoco." + }, + "crunch": { + "name": "Sgranocchio", + "effect": "Il nemico viene morso con denti affilati. Può anche ridurne la Difesa." + }, + "mirrorCoat": { + "name": "Specchiovelo", + "effect": "Mossa che replica ogni attacco speciale, arrecando il doppio del danno ricevuto." + }, + "psychUp": { + "name": "Psicamisù", + "effect": "Chi la usa s'ipnotizza per copiare ogni modifica alle statistiche del bersaglio." + }, + "extremeSpeed": { + "name": "Extrarapido", + "effect": "Chi la usa carica il nemico a velocità impressionante ed attacca sempre per primo." + }, + "ancientPower": { + "name": "Forzantica", + "effect": "Colpisce il nemico con una forza primordiale. Può aumentare tutte le statistiche." + }, + "shadowBall": { + "name": "Palla Ombra", + "effect": "Lancia sul nemico una sfera nera. Può anche ridurne la Difesa Speciale." + }, + "futureSight": { + "name": "Divinazione", + "effect": "Due turni dopo l'utilizzo di questa mossa, il nemico viene attaccato con energia psichica." + }, + "rockSmash": { + "name": "Spaccaroccia", + "effect": "Il nemico viene colpito da un pugno in grado di frantumare anche la roccia. Può anche ridurne la Difesa." + }, + "whirlpool": { + "name": "Mulinello", + "effect": "Intrappola il nemico in un turbine d'acqua che dura per quattro o cinque turni infliggendogli dei danni ogni turno." + }, + "beatUp": { + "name": "Picchiaduro", + "effect": "Chi la usa chiama in aiuto i Pokémon della squadra: più ce ne sono, maggiore è il numero di attacchi." + }, + "fakeOut": { + "name": "Bruciapelo", + "effect": "Mossa che fa agire per primo e fa tentennare il nemico. Funziona solo appena sceso in campo." + }, + "uproar": { + "name": "Baraonda", + "effect": "Chi la usa attacca per tre turni con un frastuono che non fa dormire nessuno." + }, + "stockpile": { + "name": "Accumulo", + "effect": "Chi la usa accumula energia aumentando la Difesa e la Difesa Speciale. Si può utilizzare tre volte." + }, + "spitUp": { + "name": "Sfoghenergia", + "effect": "Tutta l'energia accumulata in precedenza con Accumulo è rilasciata nell'attacco. Maggiore è l'energia, più danni si arrecano." + }, + "swallow": { + "name": "Introenergia", + "effect": "Chi la usa assorbe l'energia raccolta con la mossa Accumulo e recupera PS. Maggiore è l'energia, più PS si recuperano." + }, + "heatWave": { + "name": "Ondacalda", + "effect": "Chi la usa investe i nemici con una folata di vento caldo. Può anche scottare." + }, + "hail": { + "name": "Grandine", + "effect": "Chi la usa causa una grandinata che dura cinque turni. Danneggia tutti i Pokémon tranne quelli di tipo Ghiaccio." + }, + "torment": { + "name": "Attaccalite", + "effect": "Chi la usa tormenta e fa infuriare il nemico, impedendogli di usare la stessa mossa due volte di seguito." + }, + "flatter": { + "name": "Adulazione", + "effect": "Adula il bersaglio e lo confonde, ma ne aumenta l'Attacco Speciale." + }, + "willOWisp": { + "name": "Fuocofatuo", + "effect": "Fiamme intense di colore viola causano una scottatura al nemico." + }, + "memento": { + "name": "Memento", + "effect": "Chi la usa va KO. Tuttavia, riduce di molto l'Attacco e l'Attacco Speciale del nemico." + }, + "facade": { + "name": "Facciata", + "effect": "Mossa d'attacco che raddoppia la potenza se chi la usa è scottato, avvelenato o paralizzato." + }, + "focusPunch": { + "name": "Centripugno", + "effect": "Chi la usa prende la mira prima di sferrare un pugno. Fallirà se verrà colpito prima di eseguire la mossa." + }, + "smellingSalts": { + "name": "Maniereforti", + "effect": "Infligge un danno doppio ad un bersaglio paralizzato, ma ne cura anche la paralisi." + }, + "followMe": { + "name": "Sonoqui", + "effect": "Chi la usa attrae l'attenzione su di sé, costringendo i nemici a sceglierlo sempre come bersaglio." + }, + "naturePower": { + "name": "Naturforza", + "effect": "Mossa che fa uso della forza della natura. Il suo effetto varia in base all'ambiente." + }, + "charge": { + "name": "Sottocarica", + "effect": "Potenzia la mossa di tipo Elettro usata subito dopo. Aumenta anche la Difesa Speciale di chi la usa." + }, + "taunt": { + "name": "Provocazione", + "effect": "Provoca il nemico, inducendolo ad usare solo mosse d'attacco per tre turni." + }, + "helpingHand": { + "name": "Altruismo", + "effect": "Mossa che aumenta la potenza dell'attacco di un alleato." + }, + "trick": { + "name": "Raggiro", + "effect": "Chi la usa coglie il bersaglio in contropiede e l'obbliga a cambiare il suo strumento con il proprio." + }, + "rolePlay": { + "name": "Giocodiruolo", + "effect": "Chi la usa mima in tutto il bersaglio, copiandone l'abilità." + }, + "wish": { + "name": "Desiderio", + "effect": "Permette di recuperare metà dei PS massimi al turno successivo." + }, + "assist": { + "name": "Assistente", + "effect": "Chi la usa utilizza in fretta e a caso una delle mosse degli altri Pokémon della squadra." + }, + "ingrain": { + "name": "Radicamento", + "effect": "Chi la usa mette delle radici che gli fanno recuperare PS a ogni turno. Non può essere sostituito." + }, + "superpower": { + "name": "Troppoforte", + "effect": "Chi la usa attacca il nemico con grande forza, ma il suo Attacco e la sua Difesa diminuiscono." + }, + "magicCoat": { + "name": "Magivelo", + "effect": "Una barriera rimanda al mittente l'effetto di mosse come Parassiseme e di mosse che influenzano lo stato." + }, + "recycle": { + "name": "Riciclo", + "effect": "Chi la usa ricicla uno strumento tenuto, già usato nella lotta, e lo può riutilizzare." + }, + "revenge": { + "name": "Vendetta", + "effect": "Mossa d'attacco che infligge un danno doppio se si è stati colpiti dal nemico nello stesso turno." + }, + "brickBreak": { + "name": "Breccia", + "effect": "Colpisce il nemico con una mano e rompe barriere come Riflesso e Schermoluce." + }, + "yawn": { + "name": "Sbadiglio", + "effect": "Chi la usa fa un grande sbadiglio che addormenta il nemico al turno seguente." + }, + "knockOff": { + "name": "Privazione", + "effect": "Attacco che blocca anche lo strumento tenuto dal nemico, impedendone l'uso nella lotta." + }, + "endeavor": { + "name": "Rimonta", + "effect": "Attacco che riduce i PS del nemico a una quantità pari ai PS di chi la usa." + }, + "eruption": { + "name": "Eruzione", + "effect": "Attacco impetuoso ed esplosivo la cui potenza è proporzionale ai PS di chi lo usa." + }, + "skillSwap": { + "name": "Baratto", + "effect": "Chi la usa sfrutta le sue facoltà mentali per scambiare l'abilità con il bersaglio." + }, + "imprison": { + "name": "Esclusiva", + "effect": "Chi la usa impedisce al nemico di usare mosse che conoscono entrambi." + }, + "refresh": { + "name": "Rinfrescata", + "effect": "Chi la usa riposa per curarsi da avvelenamento, paralisi e scottatura." + }, + "grudge": { + "name": "Rancore", + "effect": "Se chi la usa va KO, i PP della mossa nemica che lo ha messo fuori gioco si azzerano." + }, + "snatch": { + "name": "Scippo", + "effect": "Chi la usa ruba e utilizza la mossa curativa o modifica-statistiche che il bersaglio stava per usare." + }, + "secretPower": { + "name": "Forzasegreta", + "effect": "Attacco che può avere un effetto aggiuntivo a seconda del luogo in cui si trova chi lo usa." + }, + "dive": { + "name": "Sub", + "effect": "Chi la usa si tuffa in acqua per emergere e attaccare al turno seguente. Fuori dalla lotta permette di immergersi sott'acqua." + }, + "armThrust": { + "name": "Sberletese", + "effect": "Raffica di ceffoni che colpisce da due a cinque volte di fila." + }, + "camouflage": { + "name": "Camuffamento", + "effect": "Modifica il tipo di chi la usa a seconda del luogo, ad esempio sull'acqua, nell'erba o in una grotta." + }, + "tailGlow": { + "name": "Codadiluce", + "effect": "Chi la usa fissa una luce forte per concentrarsi e aumentare moltissimo l'Attacco Speciale." + }, + "lusterPurge": { + "name": "Abbagliante", + "effect": "Chi la usa scatena un'esplosione abbagliante che può anche ridurre la Difesa Speciale del Pokémon colpito." + }, + "mistBall": { + "name": "Foschisfera", + "effect": "Una sfera coperta di nebbia danneggia il nemico. Può anche ridurre l'Attacco Speciale." + }, + "featherDance": { + "name": "Danzadipiume", + "effect": "Chi la usa copre il nemico con un manto di piume che riduce di molto il suo Attacco." + }, + "teeterDance": { + "name": "Strampadanza", + "effect": "Chi la usa esegue una danza goffa che confonde tutti i Pokémon attorno." + }, + "blazeKick": { + "name": "Calciardente", + "effect": "Chi la usa tira un calcio. Probabile brutto colpo. Può anche causare una scottatura." + }, + "mudSport": { + "name": "Fangata", + "effect": "Chi la usa si ricopre di fango indebolendo le mosse di tipo Elettro finché resta in campo." + }, + "iceBall": { + "name": "Palla Gelo", + "effect": "Chi la usa attacca il nemico rotolando per cinque turni, con aumento progressivo della potenza ogni volta che va a segno." + }, + "needleArm": { + "name": "Pugnospine", + "effect": "Chi la usa attacca colpendo il bersaglio con i suoi arti pieni di spine. Può far tentennare il Pokémon colpito." + }, + "slackOff": { + "name": "Pigro", + "effect": "Chi la usa si rilassa recuperando metà dei propri PS massimi." + }, + "hyperVoice": { + "name": "Granvoce", + "effect": "Chi la usa lancia un urlo straziante che danneggia i nemici." + }, + "poisonFang": { + "name": "Velenodenti", + "effect": "Chi la usa morde il nemico con denti avvelenati che possono anche iperavvelenarlo." + }, + "crushClaw": { + "name": "Tritartigli", + "effect": "Colpisce il nemico con artigli robusti e affilati che possono ridurne la Difesa." + }, + "blastBurn": { + "name": "Incendio", + "effect": "Potente esplosione che danneggia il nemico, ma fa saltare il turno successivo a chi la provoca." + }, + "hydroCannon": { + "name": "Idrocannone", + "effect": "Colpisce il nemico con un potente getto d'acqua. Chi la usa salta il turno successivo." + }, + "meteorMash": { + "name": "Meteorpugno", + "effect": "Colpisce il nemico con un pugno veloce come una meteora. Può far pure salire l'Attacco di chi la usa." + }, + "astonish": { + "name": "Sgomento", + "effect": "Chi la usa attacca il bersaglio emettendo un verso terrificante. Può anche farlo tentennare." + }, + "weatherBall": { + "name": "Palla Clima", + "effect": "Mossa d'attacco che varia tipo e forza in base alle condizioni atmosferiche." + }, + "aromatherapy": { + "name": "Aromaterapia", + "effect": "Chi la usa rilascia un dolce profumo che cura tutti problemi di stato propri e degli alleati." + }, + "fakeTears": { + "name": "Falselacrime", + "effect": "Chi la usa inscena un pianto teatrale per commuovere il nemico. Ne riduce di molto la Difesa Speciale." + }, + "airCutter": { + "name": "Aerasoio", + "effect": "Chi la usa provoca un vento tagliente che sferza i nemici. Probabile brutto colpo." + }, + "overheat": { + "name": "Vampata", + "effect": "Chi la usa sferra un potente attacco, ma il contraccolpo riduce di molto il suo Attacco Speciale." + }, + "odorSleuth": { + "name": "Segugio", + "effect": "Chi la usa rende i Pokémon di tipo Spettro vulnerabili a qualsiasi tipo di mossa e può, inoltre, colpire i nemici sfuggenti." + }, + "rockTomb": { + "name": "Rocciotomba", + "effect": "Colpisce il nemico con rocce. Inoltre, lo rallenta riducendone la Velocità." + }, + "silverWind": { + "name": "Ventargenteo", + "effect": "Attacca con un forte vento di polvere di squame. Tutte le statistiche di chi la usa possono salire." + }, + "metalSound": { + "name": "Ferrostrido", + "effect": "Orribile stridio, simile a quello prodotto dal metallo, che riduce di molto la Difesa Speciale del nemico." + }, + "grassWhistle": { + "name": "Meloderba", + "effect": "Una dolce melodia culla il bersaglio e lo costringe ad addormentarsi." + }, + "tickle": { + "name": "Solletico", + "effect": "Chi la usa solletica il nemico e lo fa ridere, riducendo il suo Attacco e la sua Difesa." + }, + "cosmicPower": { + "name": "Cosmoforza", + "effect": "Chi la usa assorbe una forza mistica dallo spazio che aumenta la Difesa e la Difesa Speciale." + }, + "waterSpout": { + "name": "Zampillo", + "effect": "Lancia un getto d'acqua contro il nemico che ha davanti e quelli adiacenti. La potenza è proporzionale al numero di PS di chi la usa." + }, + "signalBeam": { + "name": "Segnoraggio", + "effect": "Chi la usa attacca con uno strano raggio di luce che può anche confondere il Pokémon colpito." + }, + "shadowPunch": { + "name": "Pugnodombra", + "effect": "Il nemico riceve un pugno proveniente dalle tenebre. Questa mossa è infallibile." + }, + "extrasensory": { + "name": "Extrasenso", + "effect": "Chi la usa attacca con una misteriosa forza invisibile. Può far tentennare il nemico." + }, + "skyUppercut": { + "name": "Stramontante", + "effect": "Chi la usa attacca il nemico con un montante che può arrivare fino in cielo." + }, + "sandTomb": { + "name": "Sabbiotomba", + "effect": "Chi la usa intrappola il nemico in un turbine di sabbia per quattro o cinque turni." + }, + "sheerCold": { + "name": "Purogelo", + "effect": "Ondata di freddo penetrante che, se va a segno, fa andare KO il nemico." + }, + "muddyWater": { + "name": "Fanghiglia", + "effect": "Chi la usa attacca con un getto di fango che può anche ridurre la precisione dei nemici." + }, + "bulletSeed": { + "name": "Semitraglia", + "effect": "Chi la usa spara da due a cinque raffiche di semi contro il bersaglio in successione." + }, + "aerialAce": { + "name": "Aeroassalto", + "effect": "Chi la usa attacca il nemico a grande velocità. Questa mossa è infallibile." + }, + "icicleSpear": { + "name": "Gelolancia", + "effect": "Chi la usa spara ghiaccioli affilati contro il nemico da due a cinque volte di fila." + }, + "ironDefense": { + "name": "Ferroscudo", + "effect": "Il corpo di chi la usa si indurisce come il ferro, facendone salire di molto la Difesa." + }, + "block": { + "name": "Blocco", + "effect": "Chi la usa sbarra la strada al nemico impedendone la fuga o la sostituzione." + }, + "howl": { + "name": "Gridodilotta", + "effect": "Chi la usa emette un verso molto forte per darsi coraggio e aumentare l'Attacco." + }, + "dragonClaw": { + "name": "Dragartigli", + "effect": "Chi la usa attacca con artigli affilati che graffiano il nemico rapidamente e con grande forza." + }, + "frenzyPlant": { + "name": "Radicalbero", + "effect": "Un groviglio di radici colpisce il nemico. Chi la usa salta il turno successivo." + }, + "bulkUp": { + "name": "Granfisico", + "effect": "Chi la usa tende i muscoli per gonfiare il corpo, aumentando Difesa e Attacco." + }, + "bounce": { + "name": "Rimbalzo", + "effect": "Chi la usa balza in alto e ricade sul nemico dopo un turno. Può anche paralizzare." + }, + "mudShot": { + "name": "Colpodifango", + "effect": "Chi la usa attacca lanciando fango sul nemico. Riduce anche la Velocità." + }, + "poisonTail": { + "name": "Velenocoda", + "effect": "Chi la usa colpisce con la coda e può avvelenare il nemico. Probabile brutto colpo." + }, + "covet": { + "name": "Supplica", + "effect": "Chi la usa attacca il bersaglio sorridendo e gli ruba lo strumento che tiene." + }, + "voltTackle": { + "name": "Locomovolt", + "effect": "Chi la usa si carica di elettricità e poi attacca. Può paralizzare il nemico. Il contraccolpo causa seri danni." + }, + "magicalLeaf": { + "name": "Fogliamagica", + "effect": "Chi la usa sparpaglia strane foglie che inseguono il bersaglio. Questa mossa è infallibile." + }, + "waterSport": { + "name": "Docciascudo", + "effect": "Chi la usa s'impregna d'acqua indebolendo le mosse di tipo Fuoco finché resta in campo." + }, + "calmMind": { + "name": "Calmamente", + "effect": "Chi la usa, meditando, placa il proprio spirito per aumentare l'Attacco Speciale e la Difesa Speciale." + }, + "leafBlade": { + "name": "Fendifoglia", + "effect": "Colpisce il nemico usando una foglia affilata come una spada. Probabile brutto colpo." + }, + "dragonDance": { + "name": "Dragodanza", + "effect": "Danza mistica e vigorosa che aumenta l'Attacco e la Velocità di chi la usa." + }, + "rockBlast": { + "name": "Cadutamassi", + "effect": "Colpisce il nemico con dei massi pesanti lanciati in rapida successione. Il numero di massi varia da due a cinque." + }, + "shockWave": { + "name": "Ondashock", + "effect": "Chi la usa colpisce il nemico con una scossa di elettricità. È impossibile eludere questa mossa." + }, + "waterPulse": { + "name": "Idropulsar", + "effect": "Il nemico viene colpito da un getto d'acqua potentissimo che può anche confonderlo." + }, + "doomDesire": { + "name": "Desiderio Fatale", + "effect": "Intensa luce solare che colpisce il nemico dopo due turni dall'uso della mossa." + }, + "psychoBoost": { + "name": "Psicoslancio", + "effect": "Chi la usa sferra un potente attacco, ma il contraccolpo riduce di molto il suo Attacco Speciale." + }, + "roost": { + "name": "Trespolo", + "effect": "Chi la usa sta fermo e riposa, recuperando metà dei propri PS massimi." + }, + "gravity": { + "name": "Gravità", + "effect": "Intensifica la gravità per cinque turni. Le mosse che fanno volare e Levitazione sono inutilizzabili." + }, + "miracleEye": { + "name": "Miracolvista", + "effect": "Chi la usa rende i Pokémon di tipo Buio vulnerabili a qualsiasi tipo di mossa e può, inoltre, colpire i nemici sfuggenti." + }, + "wakeUpSlap": { + "name": "Svegliopacca", + "effect": "Un attacco che infligge doppi danni se il nemico è Addormentato. Inoltre, lo sveglierà dal sonno." + }, + "hammerArm": { + "name": "Martelpugno", + "effect": "Chi la usa colpisce il nemico con il suo pugno forte e pesante, ma perde Velocità." + }, + "gyroBall": { + "name": "Vortexpalla", + "effect": "Chi la usa colpisce il nemico con un vortice rapidissimo. Più lento è chi la usa, maggiore è il danno." + }, + "healingWish": { + "name": "Curardore", + "effect": "Chi la usa va KO, ma il Pokémon che lo sostituisce recupera tutti i PS e risolve i problemi di stato." + }, + "brine": { + "name": "Acquadisale", + "effect": "Se i PS del nemico sono scesi a metà o meno, questa mossa colpirà con il doppio della potenza." + }, + "naturalGift": { + "name": "Dononaturale", + "effect": "Chi la usa trae forza dalla Bacca che tiene. Da questa dipendono il tipo e la forza dell'attacco." + }, + "feint": { + "name": "Fintoattacco", + "effect": "Un attacco che colpisce un nemico che ha usato Protezione od Individua. Ne rimuoverà inoltre gli effetti." + }, + "pluck": { + "name": "Spennata", + "effect": "Chi la usa becca il bersaglio. Inoltre, se questi tiene una Bacca, gliela ruba e ne sfrutta gli effetti." + }, + "tailwind": { + "name": "Ventoincoda", + "effect": "Chi la usa crea turbolente raffiche di vento che aumentano la sua Velocità e quella di tutti i Pokémon della squadra." + }, + "acupressure": { + "name": "Acupressione", + "effect": "Chi la usa esercita pressione su alcuni punti nevralgici e aumenta di molto una statistica a caso." + }, + "metalBurst": { + "name": "Metalscoppio", + "effect": "Chi la usa si vendica sul nemico che l'ha appena ferito con una mossa anche più potente." + }, + "uTurn": { + "name": "Retromarcia", + "effect": "Dopo aver selezionato questo attacco, chi la usa colpisce il nemico per poi essere sostituito con un altro Pokémon della squadra." + }, + "closeCombat": { + "name": "Zuffa", + "effect": "Chi la usa attacca abbassando la guardia. La propria Difesa e la Difesa Speciale si riducono." + }, + "payback": { + "name": "Rivincita", + "effect": "Chi la usa accumula forza, poi attacca. La potenza raddoppia se agisce dopo il Pokémon nemico." + }, + "assurance": { + "name": "Garanzia", + "effect": "Se il nemico ha già subito dei danni nello stesso turno, la potenza di questa mossa raddoppia." + }, + "embargo": { + "name": "Divieto", + "effect": "Impedisce al nemico di usare lo strumento che tiene e al suo Allenatore di usarne altri sul Pokémon." + }, + "fling": { + "name": "Lancio", + "effect": "Chi la usa lancia sul nemico lo strumento che tiene. La forza e l'effetto dipendono dallo strumento." + }, + "psychoShift": { + "name": "Psicotrasfer", + "effect": "Con la forza psichica e la suggestione, chi la usa può trasferire i suoi problemi di stato al Pokémon colpito." + }, + "trumpCard": { + "name": "Asso", + "effect": "Minori PP rimangono a questa mossa, e maggiori danni apporterà al nemico." + }, + "healBlock": { + "name": "Anticura", + "effect": "Chi la usa impedisce al nemico di utilizzare mosse o abilità recupera-PS per cinque turni." + }, + "wringOut": { + "name": "Strizzata", + "effect": "Chi la usa stritola con forza il nemico. Più PS ha il nemico, maggiore è la potenza della mossa." + }, + "powerTrick": { + "name": "Ingannoforza", + "effect": "Mossa psichica che permette a chi la usa di scambiare i valori delle sue statistiche di Attacco e Difesa." + }, + "gastroAcid": { + "name": "Gastroacido", + "effect": "Chi la usa lancia acidi gastrici sul nemico. Il fluido annulla l'abilità del nemico." + }, + "luckyChant": { + "name": "Fortuncanto", + "effect": "Chi la usa rivolge un incantesimo al cielo, impedendo al nemico di sferrare brutti colpi alla squadra." + }, + "meFirst": { + "name": "Precedenza", + "effect": "Se chi la usa è più veloce del nemico, gli ruba la mossa e gliela ritorce contro con potenza persino maggiore." + }, + "copycat": { + "name": "Copione", + "effect": "Chi la usa imita l'ultima mossa usata dal nemico. La mossa fallisce se questo non ha selezionato alcuna mossa." + }, + "powerSwap": { + "name": "Barattoforza", + "effect": "Chi la usa sfrutta la sua forza psichica per scambiare le modifiche ad Attacco e Attacco Speciale con il bersaglio." + }, + "guardSwap": { + "name": "Barattoscudo", + "effect": "Chi la usa sfrutta la sua forza psichica per scambiare le modifiche a Difesa e a Difesa Speciale con il bersaglio." + }, + "punishment": { + "name": "Punizione", + "effect": "Questa mossa diventa più potente ogni volta che il nemico aumenta le proprie statistiche." + }, + "lastResort": { + "name": "Ultimascelta", + "effect": "Per usare questa mossa, bisogna prima avvalersi in lotta di tutte le altre mosse conosciute." + }, + "worrySeed": { + "name": "Affannoseme", + "effect": "Un seme che causa ansia viene piantato sul bersaglio. Ne muta l'abilità in Insonnia e ne previene o rimuove il sonno." + }, + "suckerPunch": { + "name": "Sbigoattacco", + "effect": "Chi la usa può attaccare per primo. Fallisce se il nemico non sta preparando un attacco." + }, + "toxicSpikes": { + "name": "Fielepunte", + "effect": "Chi la usa piazza ai piedi del nemico delle punte avvelenate. Avvelena ogni nemico che entra in lotta." + }, + "heartSwap": { + "name": "Cuorbaratto", + "effect": "Chi la usa sfrutta la sua forza psichica per scambiare le modifiche alle statistiche con il bersaglio." + }, + "aquaRing": { + "name": "Acquanello", + "effect": "Chi la usa si avvolge in un velo d'acqua. Recupera alcuni PS ad ogni turno." + }, + "magnetRise": { + "name": "Magnetascesa", + "effect": "Chi la usa si solleva in aria per cinque turni grazie a un campo elettromagnetico." + }, + "flareBlitz": { + "name": "Fuococarica", + "effect": "Chi la usa si ricopre di fuoco e carica il bersaglio, ma subisce il contraccolpo. Può anche scottare." + }, + "forcePalm": { + "name": "Palmoforza", + "effect": "Chi la usa attacca con un'onda d'urto che può anche paralizzare il bersaglio." + }, + "auraSphere": { + "name": "Sferapulsar", + "effect": "Chi la usa rilascia una forza eterea dal profondo del corpo. La mossa è infallibile." + }, + "rockPolish": { + "name": "Lucidatura", + "effect": "Chi la usa leviga il proprio corpo per ridurne l'attrito. Aumenta di molto la Velocità." + }, + "poisonJab": { + "name": "Velenpuntura", + "effect": "Il nemico viene colpito con un tentacolo od un braccio intriso di veleno. Può anche avvelenarlo." + }, + "darkPulse": { + "name": "Neropulsar", + "effect": "Chi la usa emana un'aura impregnata di oscuri pensieri. Può anche far tentennare il Pokémon colpito." + }, + "nightSlash": { + "name": "Nottesferza", + "effect": "Chi la usa colpisce il nemico appena si presenta l'occasione. Probabile brutto colpo." + }, + "aquaTail": { + "name": "Idrondata", + "effect": "Chi la usa attacca agitando la coda come se fosse una violenta ondata in una tempesta furiosa." + }, + "seedBomb": { + "name": "Semebomba", + "effect": "Chi la usa emette una raffica di semi dal guscio duro che colpiscono il bersaglio dall'alto." + }, + "airSlash": { + "name": "Eterelama", + "effect": "Chi la usa attacca con un vento tagliente che squarcia il cielo. Può anche far tentennare il Pokémon colpito." + }, + "xScissor": { + "name": "Forbice X", + "effect": "Chi la usa colpisce il nemico usando le sue falci o artigli come se fossero un paio di forbici." + }, + "bugBuzz": { + "name": "Ronzio", + "effect": "Chi la usa muove le ali per creare un suono che danneggia il nemico. Può anche ridurne la Difesa Speciale." + }, + "dragonPulse": { + "name": "Dragopulsar", + "effect": "Chi la usa attacca un'onda d'urto generata spalancando la bocca." + }, + "dragonRush": { + "name": "Dragofuria", + "effect": "Chi la usa attacca con fare minaccioso e in questo modo può anche far tentennare il nemico." + }, + "powerGem": { + "name": "Gemmoforza", + "effect": "Chi la usa attacca con un raggio di luce che brilla come se fosse fatto di pietre preziose." + }, + "drainPunch": { + "name": "Assorbipugno", + "effect": "Pugno che assorbe energia. Fa recuperare una quantità di PS pari alla metà del danno inferto." + }, + "vacuumWave": { + "name": "Vuotonda", + "effect": "Chi la usa rotea i pugni per lanciare un'onda di vuoto assoluto verso il nemico. Attacca per primo." + }, + "focusBlast": { + "name": "Focalcolpo", + "effect": "Chi la usa incrementa la sua concentrazione mentale per scatenare il suo potere. Può ridurre la Difesa Speciale del nemico." + }, + "energyBall": { + "name": "Energipalla", + "effect": "Chi la usa attinge energia dalla natura e la scaglia contro il bersaglio. Può anche ridurne la Difesa Speciale." + }, + "braveBird": { + "name": "Baldeali", + "effect": "Chi la usa si nasconde sotto le ali e carica da bassa quota. Tuttavia, subisce considerevoli danni." + }, + "earthPower": { + "name": "Geoforza", + "effect": "Dal terreno sotto il nemico si sprigiona una forza devastante. Può anche ridurne la Difesa Speciale." + }, + "switcheroo": { + "name": "Rapidscambio", + "effect": "Chi la usa scambia in maniera fulminea il proprio oggetto con quello del nemico." + }, + "gigaImpact": { + "name": "Gigaimpatto", + "effect": "Chi la usa carica il nemico usando tutta la sua forza, ma al turno successivo deve riposare." + }, + "nastyPlot": { + "name": "Congiura", + "effect": "Chi la usa stimola il cervello pensando a cose cattive. Aumenta di molto l'Attacco Speciale." + }, + "bulletPunch": { + "name": "Pugnoscarica", + "effect": "Chi la usa attacca con una scarica di pugni veloci come proiettili. Con questa mossa si colpisce per primi." + }, + "avalanche": { + "name": "Slavina", + "effect": "Un attacco che infligge doppi danni se l'utilizzatore ha subito un attacco nello stesso turno." + }, + "iceShard": { + "name": "Geloscheggia", + "effect": "Chi la usa crea dei pezzi di ghiaccio e li lancia. Con questa mossa si colpisce per primi." + }, + "shadowClaw": { + "name": "Ombrartigli", + "effect": "Chi la usa attacca con artigli d'ombra che colpiscono con gran forza. Probabile brutto colpo." + }, + "thunderFang": { + "name": "Fulmindenti", + "effect": "Chi la usa morde con denti elettrificati che possono anche paralizzare o far tentennare il nemico." + }, + "iceFang": { + "name": "Gelodenti", + "effect": "Chi la usa morde il nemico con denti di ghiaccio. Può causare congelamento e tentennamento." + }, + "fireFang": { + "name": "Rogodenti", + "effect": "Chi la usa morde il nemico con denti infuocati. Può causare scottatura e tentennamento." + }, + "shadowSneak": { + "name": "Furtivombra", + "effect": "Chi la usa estende la sua ombra e attacca il nemico alle spalle. Con questa mossa si colpisce per primi." + }, + "mudBomb": { + "name": "Pantanobomba", + "effect": "Chi la usa lancia dure palle di fango sul nemico. Può anche ridurne la Precisione." + }, + "psychoCut": { + "name": "Psicotaglio", + "effect": "Chi la usa colpisce il nemico con lame fatte di forza psichica. Probabile brutto colpo." + }, + "zenHeadbutt": { + "name": "Cozzata Zen", + "effect": "Chi la usa concentra la forza nella testa e si lancia contro il nemico. Può anche farlo tentennare." + }, + "mirrorShot": { + "name": "Cristalcolpo", + "effect": "Chi la usa colpisce il nemico lanciando fasci d'energia dal suo corpo. Può ridurne la precisione." + }, + "flashCannon": { + "name": "Cannonflash", + "effect": "Chi la usa attacca raccogliendo e rilasciando energia luminosa. Può ridurre la Difesa Speciale del nemico." + }, + "rockClimb": { + "name": "Scalaroccia", + "effect": "Chi la usa carica con impeto incredibile. Il colpo può confondere il nemico." + }, + "defog": { + "name": "Scacciabruma", + "effect": "Chi la usa spazza via barriere come Riflesso e Schermoluce con un forte vento e riduce la capacità d'elusione del nemico." + }, + "trickRoom": { + "name": "Distortozona", + "effect": "Chi la usa crea una dimensione in cui i Pokémon più lenti si muovono per primi per cinque turni." + }, + "dracoMeteor": { + "name": "Dragobolide", + "effect": "Attacca con meteore che cadono dal cielo. Il contraccolpo fa calare di molto l'Attacco Speciale di chi la usa." + }, + "discharge": { + "name": "Scarica", + "effect": "Chi la usa colpisce i Pokémon che ha intorno con un bagliore elettrico. Può anche causare paralisi." + }, + "lavaPlume": { + "name": "Lavasbuffo", + "effect": "Chi la usa lancia fiamme scarlatte sugli altri Pokémon in campo. Può anche scottare." + }, + "leafStorm": { + "name": "Verdebufera", + "effect": "Si forma una tempesta di foglie affilate. Il contraccolpo riduce di molto l'Attacco Speciale di chi la usa." + }, + "powerWhip": { + "name": "Vigorcolpo", + "effect": "Chi la usa agita violentemente liane o tentacoli per sferzare il bersaglio." + }, + "rockWrecker": { + "name": "Devastomasso", + "effect": "Chi la usa attacca il nemico con un enorme masso, ma si deve riposare al turno successivo." + }, + "crossPoison": { + "name": "Velenocroce", + "effect": "Attacco con zanne avvelenate che può anche avvelenare il Pokémon colpito. Probabile brutto colpo." + }, + "gunkShot": { + "name": "Sporcolancio", + "effect": "Chi la usa attacca il nemico con rifiuti sudici che possono anche avvelenarlo." + }, + "ironHead": { + "name": "Metaltestata", + "effect": "Chi la usa colpisce il nemico con la sua testa dura come l'acciaio. Può anche farlo tentennare." + }, + "magnetBomb": { + "name": "Bombagnete", + "effect": "Chi la usa lancia bombe d'acciaio che si attaccano al nemico. Una mossa infallibile." + }, + "stoneEdge": { + "name": "Pietrataglio", + "effect": "Chi la usa colpisce il nemico dal basso con pietre affilate. Probabile brutto colpo." + }, + "captivate": { + "name": "Incanto", + "effect": "Se il nemico è del sesso opposto di chi la usa, sarà ammaliato e il suo Attacco Speciale diminuirà di molto." + }, + "stealthRock": { + "name": "Levitoroccia", + "effect": "Chi la usa piazza una trappola di rocce sospese che danneggia i nemici che entrano in lotta." + }, + "grassKnot": { + "name": "Laccioerboso", + "effect": "Chi la usa intrappola il bersaglio con l'erba e lo fa cadere. Danneggia maggiormente i Pokémon più pesanti." + }, + "chatter": { + "name": "Schiamazzo", + "effect": "Chi la usa attacca creando un'onda sonora con le parole imparate. Può anche confondere il nemico." + }, + "judgment": { + "name": "Giudizio", + "effect": "Chi la usa rilascia numerosi colpi di luce. Il tipo varia a seconda della Lastra tenuta." + }, + "bugBite": { + "name": "Coleomorso", + "effect": "Chi la usa morde il nemico. Inoltre, se questi tiene una Bacca, gliela ruba e ne sfrutta gli effetti." + }, + "chargeBeam": { + "name": "Raggioscossa", + "effect": "Chi la usa lancia un fascio di elettricità molto intensa. Può anche aumentare il suo Attacco Speciale." + }, + "woodHammer": { + "name": "Mazzuolegno", + "effect": "Chi la usa si lancia con tutto il corpo contro il bersaglio, ma subisce anche considerevoli danni." + }, + "aquaJet": { + "name": "Acquagetto", + "effect": "Chi la usa colpisce sempre per primo e a una tale velocità da rendersi quasi invisibile." + }, + "attackOrder": { + "name": "Comandourto", + "effect": "Chi la usa raduna i suoi sgherri per colpire il nemico. Probabile brutto colpo." + }, + "defendOrder": { + "name": "Comandoscudo", + "effect": "Chi la usa raduna i suoi sgherri per creare uno scudo, aumentando Difesa e Difesa Speciale." + }, + "healOrder": { + "name": "Comandocura", + "effect": "Chi la usa raduna i propri sgherri per farsi curare. Recupera metà dei PS massimi." + }, + "headSmash": { + "name": "Zuccata", + "effect": "Chi la usa attacca con tutta la potenza di cui dispone, ma subisce danni considerevoli." + }, + "doubleHit": { + "name": "Doppiosmash", + "effect": "Chi la usa colpisce il nemico con la coda due volte di fila." + }, + "roarOfTime": { + "name": "Fragortempo", + "effect": "Chi la usa colpisce il nemico con una forza capace di alterare il tempo, ma deve stare fermo il turno dopo." + }, + "spacialRend": { + "name": "Fendispazio", + "effect": "Chi la usa lacera il nemico e lo spazio che lo circonda. Probabile brutto colpo." + }, + "lunarDance": { + "name": "Lunardanza", + "effect": "Chi la usa va KO. Il Pokémon che lo sostituisce risolve i propri problemi di stato e recupera PS e PP." + }, + "crushGrip": { + "name": "Sbriciolmano", + "effect": "Colpisce il nemico con grande forza. Più PS ha il nemico, maggiore è la potenza della mossa." + }, + "magmaStorm": { + "name": "Magmaclisma", + "effect": "Intrappola il nemico in un turbine di fuoco che dura per quattro o cinque turni." + }, + "darkVoid": { + "name": "Vuototetro", + "effect": "Trascina i nemici in un mondo di totale oscurità e li fa addormentare." + }, + "seedFlare": { + "name": "Infuriaseme", + "effect": "Chi la usa genera un'onda d'urto dal suo corpo. Può anche ridurre di molto la Difesa Speciale del bersaglio." + }, + "ominousWind": { + "name": "Funestovento", + "effect": "Chi la usa crea una raffica di vento ripugnante. Può aumentare tutte le statistiche di chi la usa." + }, + "shadowForce": { + "name": "Oscurotuffo", + "effect": "Chi la usa sparisce e poi colpisce il nemico al turno successivo. Evita pure Protezione o Individua." + }, + "honeClaws": { + "name": "Unghiaguzze", + "effect": "Chi la usa affila i propri artigli, aumentando Attacco e precisione." + }, + "wideGuard": { + "name": "Bodyguard", + "effect": "Chi la usa para tutti i colpi diretti alla intera squadra per un turno. Se usata in successione può fallire." + }, + "guardSplit": { + "name": "Paridifesa", + "effect": "Chi la usa sfrutta la sua forza psichica per sommare Difesa e Difesa Speciale a quelle del bersaglio e dividerle equamente." + }, + "powerSplit": { + "name": "Pariattacco", + "effect": "Chi la usa sfrutta la sua forza psichica per sommare Attacco e Attacco Speciale a quelli del bersaglio e dividerli equamente." + }, + "wonderRoom": { + "name": "Mirabilzona", + "effect": "Chi la usa crea una dimensione in cui Difesa e Difesa Speciale di tutti i Pokémon vengono scambiate per cinque turni." + }, + "psyshock": { + "name": "Psicoshock", + "effect": "Chi la usa attacca il bersaglio facendo materializzare un misterioso raggio psichico che provoca danni fisici." + }, + "venoshock": { + "name": "Velenoshock", + "effect": "Lancia uno speciale liquido tossico sul bersaglio. Se questi è avvelenato, il danno provocato raddoppia." + }, + "autotomize": { + "name": "Sganciapesi", + "effect": "Chi la usa si libera di tutti i pesi in eccesso, alleggerendosi e aumentando di molto la propria Velocità." + }, + "ragePowder": { + "name": "Polverabbia", + "effect": "Chi la usa attira l'attenzione dei nemici cospargendosi di una polvere irritante e diventando bersaglio di tutti gli attacchi." + }, + "telekinesis": { + "name": "Telecinesi", + "effect": "Chi la usa fa fluttuare in aria il bersaglio, rendendolo facile da colpire per tre turni." + }, + "magicRoom": { + "name": "Magicozona", + "effect": "Chi la usa crea una dimensione in cui l'effetto degli strumenti tenuti da tutti i Pokémon è annullato per cinque turni." + }, + "smackDown": { + "name": "Abbattimento", + "effect": "Chi la usa lancia una pietra o un proiettile. Può colpire anche un bersaglio in volo e farlo cadere." + }, + "stormThrow": { + "name": "Tempestretta", + "effect": "Chi la usa sferra un colpo micidiale al bersaglio, stritolandolo. Brutto colpo assicurato." + }, + "flameBurst": { + "name": "Pirolancio", + "effect": "Chi la usa emana una fiammata che colpisce il bersaglio e si propaga fino a raggiungere i Pokémon accanto." + }, + "sludgeWave": { + "name": "Fangonda", + "effect": "Lancia un'onda di fango che attacca tutti i Pokémon nelle vicinanze. Può anche avvelenare." + }, + "quiverDance": { + "name": "Eledanza", + "effect": "Danza leggiadra ed elegante che aumenta l'Attacco Speciale, la Difesa Speciale e la Velocità di chi la usa." + }, + "heavySlam": { + "name": "Pesobomba", + "effect": "Chi la usa si lancia contro il bersaglio con tutto il proprio peso. Più è pesante rispetto ad esso e più danni causa." + }, + "synchronoise": { + "name": "Sincrumore", + "effect": "Chi la usa infligge danni a tutti i Pokémon del suo stesso tipo che ha vicino usando misteriose onde elettromagnetiche." + }, + "electroBall": { + "name": "Energisfera", + "effect": "Chi la usa attacca con una sfera d'energia elettrica. Più è rapido rispetto al bersaglio e più danni arreca." + }, + "soak": { + "name": "Inondazione", + "effect": "Chi la usa proietta un lungo getto d'acqua contro il bersaglio e lo rende un Pokémon di tipo Acqua." + }, + "flameCharge": { + "name": "Nitrocarica", + "effect": "Chi la usa si copre di fuoco e attacca il bersaglio. Concentrandosi aumenta, inoltre, la propria Velocità." + }, + "coil": { + "name": "Arrotola", + "effect": "Chi la usa si concentra, aumentando Attacco, Difesa e precisione." + }, + "lowSweep": { + "name": "Calciobasso", + "effect": "Chi la usa colpisce con un attacco fulmineo la parte inferiore del corpo del bersaglio, riducendone la Velocità." + }, + "acidSpray": { + "name": "Acidobomba", + "effect": "Chi la usa attacca il bersaglio con un acido altamente corrosivo. Il fluido riduce di molto la Difesa Speciale del bersaglio." + }, + "foulPlay": { + "name": "Ripicca", + "effect": "Chi la usa sfrutta la forza del bersaglio. Il danno inflitto è proporzionale all'Attacco dell'avversario." + }, + "simpleBeam": { + "name": "Ondisinvolta", + "effect": "Chi la usa emette un misterioso raggio psichico che trasforma l'abilità del Pokémon colpito in Disinvoltura." + }, + "entrainment": { + "name": "Saltamicizia", + "effect": "Chi la usa saltella con un buffo ritmo, invitando il bersaglio a imitarlo e rendendo la sua abilità identica alla propria." + }, + "afterYou": { + "name": "Cortesia", + "effect": "Chi la usa aiuta un bersaglio più lento permettendogli di agire subito dopo." + }, + "round": { + "name": "Coro", + "effect": "Attacca il bersaglio con una melodia. Se usata ripetutamente da uno o più Pokémon i danni inflitti aumentano." + }, + "echoedVoice": { + "name": "Echeggiavoce", + "effect": "Attacca il bersaglio con la propria voce echeggiante. Se usata a ripetizione da uno o più Pokémon il danno aumenta." + }, + "chipAway": { + "name": "Insidia", + "effect": "Chi la usa attacca non appena il bersaglio abbassa la guardia. Il danno inflitto prescinde dalle modifiche alle statistiche." + }, + "clearSmog": { + "name": "Pulifumo", + "effect": "Attacca il bersaglio lanciandogli contro una nuvola di fumo speciale, che annulla ogni modifica alle statistiche." + }, + "storedPower": { + "name": "Veicolaforza", + "effect": "Attacca il bersaglio con l'energia accumulata. Più sono state aumentate le statistiche, maggiore è il danno inflitto." + }, + "quickGuard": { + "name": "Anticipo", + "effect": "Chi la usa protegge tutta la squadra dalle mosse dei nemici che fanno colpire per primi. Se usata in successione può fallire." + }, + "allySwitch": { + "name": "Cambiaposto", + "effect": "Chi la usa si teletrasporta al posto di un compagno in campo, grazie ad un misterioso potere." + }, + "scald": { + "name": "Idrovampata", + "effect": "Chi la usa attacca il bersaglio con un getto d'acqua bollente che può anche scottarlo." + }, + "shellSmash": { + "name": "Gettaguscio", + "effect": "Chi la usa si disfa del guscio. Difesa e Dif. Sp. calano, ma aumentano di molto Attacco, Att. Sp. e Velocità." + }, + "healPulse": { + "name": "Curapulsar", + "effect": "Chi la usa lancia un'onda rilassante che fa recuperare al bersaglio metà dei suoi PS massimi." + }, + "hex": { + "name": "Sciagura", + "effect": "Attacco che causa un danno enorme se il bersaglio ha problemi di stato." + }, + "skyDrop": { + "name": "Cadutalibera", + "effect": "Porta il bersaglio in cielo e lo scaglia a terra al turno successivo. Il bersaglio catturato non può muoversi." + }, + "shiftGear": { + "name": "Cambiomarcia", + "effect": "Facendo ruotare gli ingranaggi, chi la usa aumenta non solo il proprio Attacco, ma anche di molto la propria Velocità." + }, + "circleThrow": { + "name": "Ribaltiro", + "effect": "Il bersaglio è scaraventato via ed è costretto a lasciare il posto a un altro. Se è selvatico, la lotta finisce." + }, + "incinerate": { + "name": "Bruciatutto", + "effect": "Attacca il nemico con una fiammata. Se il nemico ha una Bacca, viene divorata dalle fiamme." + }, + "quash": { + "name": "Spintone", + "effect": "Chi la usa trattiene il bersaglio, costringendolo ad agire per ultimo." + }, + "acrobatics": { + "name": "Acrobazia", + "effect": "Attacca rapidamente il bersaglio. Se chi la usa non ha uno strumento, infligge al nemico grossi danni." + }, + "reflectType": { + "name": "Riflettipo", + "effect": "Chi la usa cambia il proprio tipo in quello del bersaglio." + }, + "retaliate": { + "name": "Nemesi", + "effect": "Vendica un compagno messo KO. Se ciò è accaduto al turno precedente, il danno è maggiore." + }, + "finalGambit": { + "name": "Azzardo", + "effect": "Chi la usa attacca con tutta la potenza di cui dispone e va KO, ma infligge al bersaglio un danno pari ai PS che ha perso." + }, + "bestow": { + "name": "Cediregalo", + "effect": "Chi la usa consegna il proprio strumento al bersaglio se ne è sprovvisto." + }, + "inferno": { + "name": "Marchiatura", + "effect": "Il bersaglio viene avvolto da intense fiammate che causano scottature." + }, + "waterPledge": { + "name": "Acquapatto", + "effect": "Attacca il nemico con una colonna d'acqua. Se usata con Fiammapatto, aumentano gli effetti e un arcobaleno appare in cielo." + }, + "firePledge": { + "name": "Fiammapatto", + "effect": "Attacca il nemico con una colonna di fuoco. Se usata con Erbapatto, aumentano gli effetti e il campo diventa un mare di fuoco." + }, + "grassPledge": { + "name": "Erbapatto", + "effect": "Attacca il bersaglio con una colonna d'erba. Se usata con Acquapatto, gli effetti aumentano e il campo diventa una palude." + }, + "voltSwitch": { + "name": "Invertivolt", + "effect": "Chi usa questa mossa fa marcia indietro per farsi sostituire dopo aver sferrato l'attacco." + }, + "struggleBug": { + "name": "Entomoblocco", + "effect": "Colpisce i nemici opponendo resistenza e riducendo il loro Attacco Speciale." + }, + "bulldoze": { + "name": "Battiterra", + "effect": "Chi la usa calpesta il terreno e scatena un terremoto che danneggia tutti i Pokémon nei paraggi e ne riduce anche la Velocità." + }, + "frostBreath": { + "name": "Alitogelido", + "effect": "Chi la usa attacca il bersaglio con un soffio d'aria gelida. Brutto colpo assicurato." + }, + "dragonTail": { + "name": "Codadrago", + "effect": "Chi la usa fa volar via il bersaglio in modo che venga sostituito. Se il bersaglio è un Pokémon selvatico, la lotta finisce." + }, + "workUp": { + "name": "Cuordileone", + "effect": "Chi la usa si tira su di morale, aumentando il proprio Attacco e l'Attacco Speciale." + }, + "electroweb": { + "name": "Elettrotela", + "effect": "Chi la usa attacca i nemici catturandoli con una ragnatela elettrica e riducendone la Velocità." + }, + "wildCharge": { + "name": "Sprizzalampo", + "effect": "Chi la usa si carica di elettricità per poi scagliarsi sul bersaglio, ma subisce dei danni per il contraccolpo." + }, + "drillRun": { + "name": "Giravvita", + "effect": "Chi la usa si scaglia sul bersaglio ruotando su se stesso come un trapano perforante. Probabile brutto colpo." + }, + "dualChop": { + "name": "Doppiocolpo", + "effect": "Chi la usa attacca due volte il bersaglio con dei colpi estremamente forti." + }, + "heartStamp": { + "name": "Cuorestampo", + "effect": "Chi la usa distrae il nemico con un faccino innocente per poi sferrargli un colpo devastante che può farlo tentennare." + }, + "hornLeech": { + "name": "Legnicorno", + "effect": "Chi la usa infilza il bersaglio con le corna e assorbe una quantità di PS pari a metà del danno inferto." + }, + "sacredSword": { + "name": "Spadasolenne", + "effect": "Chi la usa taglia il nemico con una spada magica. Il danno inflitto ignora le modifiche alle statistiche del bersaglio." + }, + "razorShell": { + "name": "Conchilama", + "effect": "Chi la usa colpisce il bersaglio con il suo guscio affilato. Il colpo può anche ridurre la Difesa del bersaglio." + }, + "heatCrash": { + "name": "Marchiafuoco", + "effect": "Chi la usa carica con il suo corpo rovente. Più è pesante rispetto al bersaglio e più danni causa." + }, + "leafTornado": { + "name": "Vorticerba", + "effect": "Chi la usa avvolge e attacca il bersaglio con foglie affilate che possono anche ridurne la precisione." + }, + "steamroller": { + "name": "Rulloduro", + "effect": "Chi la usa ruota su se stesso ad alta velocità e schiaccia il bersaglio. Può anche farlo tentennare." + }, + "cottonGuard": { + "name": "Cotonscudo", + "effect": "Chi la usa avvolge il proprio corpo con del cotone molto morbido, proteggendosi e aumentando moltissimo la propria Difesa." + }, + "nightDaze": { + "name": "Urtoscuro", + "effect": "Chi la usa attacca il bersaglio con un'onda d'urto oscura che può ridurne la precisione." + }, + "psystrike": { + "name": "Psicobotta", + "effect": "Chi la usa attacca il bersaglio facendo materializzare un misterioso raggio psichico che provoca danni fisici." + }, + "tailSlap": { + "name": "Spazzasberla", + "effect": "Chi la usa colpisce il bersaglio con la sua coda dura da due a cinque volte di fila." + }, + "hurricane": { + "name": "Tifone", + "effect": "Chi la usa attacca il bersaglio avvolgendolo con un vento fortissimo. Può anche confonderlo." + }, + "headCharge": { + "name": "Ricciolata", + "effect": "Chi la usa carica il bersaglio con la sua testa in stile afro, ma subisce un po' di danni per il contraccolpo." + }, + "gearGrind": { + "name": "Ingracolpo", + "effect": "Chi la usa colpisce il bersaglio due volte di fila lanciandogli contro dei dischi d'acciaio." + }, + "searingShot": { + "name": "Sparafuoco", + "effect": "Chi la usa lancia fiamme scarlatte sui Pokémon intorno a sé. Può anche scottare." + }, + "technoBlast": { + "name": "Tecnobotto", + "effect": "Chi la usa rilascia un colpo di luce contro il bersaglio. Il tipo varia a seconda del modulo che ha." + }, + "relicSong": { + "name": "Cantoantico", + "effect": "Chi la usa attacca i nemici intonando un'antica melodia che colpisce il loro spirito. Può anche farli addormentare." + }, + "secretSword": { + "name": "Spadamistica", + "effect": "Chi la usa attacca il bersaglio tagliandolo con una spada mistica. La misteriosa energia sprigionata provoca danni fisici." + }, + "glaciate": { + "name": "Gelamondo", + "effect": "Chi la usa attacca i nemici con una folata d'aria gelida e ne riduce anche la Velocità." + }, + "boltStrike": { + "name": "Lucesiluro", + "effect": "Colpisce il bersaglio con una possente carica elettrica e può anche paralizzarlo." + }, + "blueFlare": { + "name": "Fuocoblu", + "effect": "Chi la usa attacca il bersaglio avvolgendolo con magnifiche e intense fiamme blu che possono anche scottarlo." + }, + "fieryDance": { + "name": "Voldifuoco", + "effect": "Chi la usa avvolge il bersaglio tra le fiamme. Può anche aumentare l'Attacco Speciale." + }, + "freezeShock": { + "name": "Elettrogelo", + "effect": "Chi la usa lancia contro il nemico al turno successivo una sfera di ghiaccio ricoperta di elettricità. Può anche paralizzarlo." + }, + "iceBurn": { + "name": "Vampagelida", + "effect": "Chi la usa attacca il bersaglio al turno successivo e lo avvolge in un soffio d'aria congelata. Può anche scottarlo." + }, + "snarl": { + "name": "Urlorabbia", + "effect": "Chi la usa si mette a urlare per un po', riducendo l'Attacco Speciale dei nemici." + }, + "icicleCrash": { + "name": "Scagliagelo", + "effect": "Chi la usa attacca violentemente il nemico con grosse stalattiti di ghiaccio che possono anche farlo tentennare." + }, + "vCreate": { + "name": "Generatore V", + "effect": "Chi la usa carica emettendo fiamme ardenti dalla fronte, a costo di una riduzione di Difesa, Difesa Speciale e Velocità." + }, + "fusionFlare": { + "name": "Incrofiamma", + "effect": "Chi la usa lancia una fiammata enorme. Se usata in combinazione con Incrotuono, il danno provocato dalla mossa aumenta." + }, + "fusionBolt": { + "name": "Incrotuono", + "effect": "Chi la usa lancia un fulmine enorme. Se usata in combinazione con Incrofiamma, il danno provocato dalla mossa aumenta." + }, + "flyingPress": { + "name": "Schiacciatuffo", + "effect": "Chi la usa si tuffa sul bersaglio dall'alto. È una mossa di tipo Lotta e Volante allo stesso tempo." + }, + "matBlock": { + "name": "Ribaltappeto", + "effect": "Chi la usa protegge se stesso e i propri alleati dai danni di mosse nemiche, adoperando un tappetino come scudo. Non è efficace contro mosse di stato." + }, + "belch": { + "name": "Rutto", + "effect": "Chi la usa attacca il bersaglio con un rutto potente. Per utilizzare questa mossa, il Pokémon deve mangiare la bacca che possiede." + }, + "rototiller": { + "name": "Aracampo", + "effect": "Chi la usa dissoda la terra per far crescere meglio l'erba. Questa mossa aumenta l'attacco e l'attacco speciale dei Pokémon di tipo Erba." + }, + "stickyWeb": { + "name": "Rete Vischiosa", + "effect": "Chi la usa intreccia una rete appiccicosa attorno alla squadra avversaria, diminuendo la Velocità dei Pokémon nemici che entreranno in campo." + }, + "fellStinger": { + "name": "Pungiglione", + "effect": "L'Attacco di chi la usa aumenta notevolmente se grazie alla mossa il bersaglio va KO." + }, + "phantomForce": { + "name": "Spettrotuffo", + "effect": "Chi la usa scompare improvvisamente per attaccare poi nel turno seguente. Questa mossa neutralizza le difese del bersaglio." + }, + "trickOrTreat": { + "name": "Halloween", + "effect": "Il bersaglio viene invitato a festeggiare Halloween e aggiunge così al proprio tipo anche il tipo Spettro." + }, + "nobleRoar": { + "name": "Urlo", + "effect": "Chi la usa emette un urlo potente che intimidisce il bersaglio, riducendone l'Attacco e l'Attacco Speciale." + }, + "ionDeluge": { + "name": "Pioggiaplasma", + "effect": "Chi la usa disperde delle particelle elettrizzate che trasformano le mosse di tipo Normale in mosse di tipo Elettro." + }, + "parabolicCharge": { + "name": "Caricaparabola", + "effect": "Chi la usa attacca tutto ciò che lo circonda e recupera PS pari alla metà del danno inflitto." + }, + "forestsCurse": { + "name": "Boscomalocchio", + "effect": "Il Pokémon invoca la maledizione del bosco sul bersaglio, che acquisisce così anche il tipo Erba." + }, + "petalBlizzard": { + "name": "Fiortempesta", + "effect": "Infligge danni ai Pokémon che ha intorno attaccandoli con una tempesta di fiori." + }, + "freezeDry": { + "name": "Liofilizzazione", + "effect": "Chi la usa raffredda rapidamente il bersaglio. Può anche congelarlo. Questa mossa è superefficace contro i Pokémon Acqua." + }, + "disarmingVoice": { + "name": "Incantavoce", + "effect": "Chi la usa infligge un danno spirituale ai nemici nei paraggi con una voce suadente. L'attacco andrà immancabilmente a segno." + }, + "partingShot": { + "name": "Monito", + "effect": "Nessuna descrizione disponibile." + }, + "topsyTurvy": { + "name": "Sottosopra", + "effect": "Inverte tutte le modifiche alle statistiche del Pokémon bersaglio." + }, + "drainingKiss": { + "name": "Assorbibacio", + "effect": "Un bacio fatato che assorbe le energie al nemico." + }, + "craftyShield": { + "name": "Truccodifesa", + "effect": "Chi la usa protegge se stesso e i suoi alleati usando un potere misterioso. Non blocca le mosse che infliggono danno." + }, + "flowerShield": { + "name": "Fiordifesa", + "effect": "Grazie a un misterioso potere, aumenta la Difesa di tutti i Pokémon di tipo Erba presenti in campo." + }, + "grassyTerrain": { + "name": "Campo Erboso", + "effect": "Per cinque turni trasforma il terreno di lotta in un campo erboso, facendo recuperare PS ai Pokémon a terra in ogni turno." + }, + "mistyTerrain": { + "name": "Campo Nebbioso", + "effect": "Per cinque turni trasforma il terreno di lotta in un campo nebbioso, impedendo ai Pokémon a terra di essere colpiti da problemi di stato." + }, + "electrify": { + "name": "Elettrocontagio", + "effect": "Se si contagia il bersaglio prima che usi la sua mossa, per quel turno le sue mosse saranno di tipo Elettro." + }, + "playRough": { + "name": "Carineria", + "effect": "Chi la usa attacca il bersaglio con delle carinerie. Può anche ridurne l'attacco." + }, + "fairyWind": { + "name": "Vento di Fata", + "effect": "Attacca con un forte vento fatato." + }, + "moonblast": { + "name": "Forza Lunare", + "effect": "Accumula la forza proveniente dalla luna e la libera sul nemico. Può ridurre l'Attacco Speciale." + }, + "boomburst": { + "name": "Ondaboato", + "effect": "Colpisce i Pokémon che ha intorno con la forza di un boato distruttivo." + }, + "fairyLock": { + "name": "Blocco Fatato", + "effect": "Bloccando il campo di battaglia, chi la usa impedisce a tutti i Pokémon di fuggire durante il prossimo turno." + }, + "kingsShield": { + "name": "Scudo Reale", + "effect": "L'utilizzatore assume una posizione difensiva mentre si difende. Riduce inoltre l'Attacco di ogni utilizzatore di mosse da contatto." + }, + "playNice": { + "name": "Simpatia", + "effect": "Chi la usa diventa amico del bersaglio, rabbonendolo e riducendone così l'Attacco." + }, + "confide": { + "name": "Confidenza", + "effect": "Chi la usa svela dei segreti al bersaglio, distraendolo e riducendone l'Attacco Speciale." + }, + "diamondStorm": { + "name": "Diamantempesta", + "effect": "Colpisce i nemici che ha intorno con una tempesta di diamanti. Può anche aumentare la Difesa di chi la usa." + }, + "steamEruption": { + "name": "Vaporscoppio", + "effect": "Travolge il bersaglio con un'ondata di vapore rovente che può anche scottarlo." + }, + "hyperspaceHole": { + "name": "Forodimensionale", + "effect": "Chi la usa, sfrutta un passaggio interdimensionale per comparire a fianco del bersaglio e colpirlo, eludendo mosse come Protezione e Individua." + }, + "waterShuriken": { + "name": "Acqualame", + "effect": "Chi la usa attacca sempre per primo, colpendo il bersaglio con uno shuriken di muco da due a cinque volte di fila." + }, + "mysticalFire": { + "name": "Magifiamma", + "effect": "Colpisce il bersaglio soffiandogli contro delle fiammate incredibilmente roventi, riducendone l'Attacco Speciale." + }, + "spikyShield": { + "name": "Agodifesa", + "effect": "Protegge dagli attacchi, riducendo inoltre i PS dei Pokémon che entrano in contatto con chi la usa." + }, + "aromaticMist": { + "name": "Nebularoma", + "effect": "Aumenta la Difesa Speciale di un alleato tramite un misterioso aroma." + }, + "eerieImpulse": { + "name": "Elettromistero", + "effect": "Il corpo dell'utilizzatore genera un impulso misterioso. Esponendovi il bersaglio, ne riduce di molto l'Attacco Speciale." + }, + "venomDrench": { + "name": "Velenotrappola", + "effect": "Emette un liquido particolare che riduce l'Attacco, l'Attacco Speciale e la Velocità dei nemici avvelenati intorno a chi la usa." + }, + "powder": { + "name": "Pulviscoppio", + "effect": "Il bersaglio viene coperto da un pulviscolo che esplode danneggiandolo se questi utilizza una mossa di tipo Fuoco nello stesso turno." + }, + "geomancy": { + "name": "Geocontrollo", + "effect": "Un'energia pura forza della natura si sprigiona per tutto il campo." + }, + "magneticFlux": { + "name": "Controllo Polare", + "effect": "Tramite il controllo dei campi magnetici, aumenta la Difesa e la Difesa Speciale dei Pokémon alleati dotati dell'abilità Più o Meno." + }, + "happyHour": { + "name": "Cuccagna", + "effect": "Questa mossa raddoppia la ricompensa ricevuta dopo aver vinto una lotta." + }, + "electricTerrain": { + "name": "Campo Elettrico", + "effect": "Per cinque turni trasforma il terreno di lotta in un campo elettrico, impedendo ai Pokémon a terra di addormentarsi." + }, + "dazzlingGleam": { + "name": "Magibrillio", + "effect": "Emette una luce potentissima che infligge danni al bersaglio." + }, + "celebrate": { + "name": "Auguri", + "effect": "Il Pokémon ti fa gli auguri nel tuo giorno speciale" + }, + "holdHands": { + "name": "Mano nella mano", + "effect": "Il Pokémon che la usa e un alleato si prendono per mano e fanno salti di gioia." + }, + "babyDollEyes": { + "name": "Occhioni Teneri", + "effect": "Chi la usa rivolge i propri occhioni languidi al bersaglio, riducendone l'Attacco. Colpisce sempre per primo." + }, + "nuzzle": { + "name": "Elettrococcola", + "effect": "Nonostante il tenero nome è una mossa piuttosto pericolosa." + }, + "holdBack": { + "name": "Riguardo", + "effect": "Chi la usa attacca il bersaglio, modulando il colpo in modo da lasciargli almeno un PS." + }, + "infestation": { + "name": "Assillo", + "effect": "Chi la usa lancia un attacco che tormenta il bersaglio per quattro o cinque turni, durante i quali gli impedisce di fuggire." + }, + "powerUpPunch": { + "name": "Crescipugno", + "effect": "Rende i pugni più duri a ogni colpo inferto. Se i pugni vanno a segno, aumenta l'Attacco." + }, + "oblivionWing": { + "name": "Ali del Fato", + "effect": "Chi la usa assorbe energia dal bersaglio recuperando una quantità di PS pari a più della metà del danno inferto." + }, + "thousandArrows": { + "name": "Mille Frecce", + "effect": "Colpisce anche i Pokémon che fluttuano in aria. I nemici nei paraggi vengono scaraventati a terra." + }, + "thousandWaves": { + "name": "Mille Onde", + "effect": "Un’onda strisciante investe i nemici intorno impedendo loro di fuggire." + }, + "landsWrath": { + "name": "Forza Tellurica", + "effect": "Chi la usa raccoglie energia tellurica e ne concentra il potere sui nemici che ha intorno danneggiandoli." + }, + "lightOfRuin": { + "name": "Luce Nefasta", + "effect": "Traendo potere dal Fiore Eterno, chi lo utilizza spara un potente raggio di luce. Ciò danneggia parecchio anche chi la usa." + }, + "originPulse": { + "name": "Primopulsar", + "effect": "Attacca i nemici intorno colpendoli con miriadi di raggi di luce blu." + }, + "precipiceBlades": { + "name": "Spade Telluriche", + "effect": "Attacca i nemici intorno trasformando la potenza della terra in lame affilate." + }, + "dragonAscent": { + "name": "Ascesa del Drago", + "effect": "Permette di proiettarsi in aria e fiondarsi sul bersaglio attaccando ad altissima velocità. Riduce la Difesa e la Difesa Speciale di chi la usa." + }, + "hyperspaceFury": { + "name": "Urtodimensionale", + "effect": "Permette di attaccare ripetutamente grazie ai molti arti, ignorando mosse come Protezione o Individua. Riduce la Difesa di chi la usa." + }, + "breakneckBlitzPhysical": { + "name": "Carica Travolgente", + "effect": "Grazie al Potere Z, chi la usa accumula energia e si lancia a tutta forza contro il bersaglio. La potenza varia a seconda della mossa su cui si basa." + }, + "breakneckBlitzSpecial": { + "name": "Carica Travolgente", + "effect": "Dati Mancanti" + }, + "allOutPummelingPhysical": { + "name": "Iperscarica Furiosa", + "effect": "Chi la usa scaglia sul bersaglio una scarica di colpi carichi di Potere Z. La potenza varia a seconda della mossa su cui si basa." + }, + "allOutPummelingSpecial": { + "name": "Iperscarica Furiosa", + "effect": "Dati Mancanti" + }, + "supersonicSkystrikePhysical": { + "name": "Picchiata Devastante", + "effect": "Chi la usa si serve del Potere Z per alzarsi in volo e attaccare il bersaglio piombandogli addosso. La potenza varia a seconda della mossa su cui si basa." + }, + "supersonicSkystrikeSpecial": { + "name": "Picchiata Devastante", + "effect": "Dati Mancanti" + }, + "acidDownpourPhysical": { + "name": "Acidiluvio Corrosivo", + "effect": "Chi la usa sfrutta il Potere Z per creare una palude velenosa che sommerge il bersaglio. La potenza varia a seconda della mossa su cui si basa." + }, + "acidDownpourSpecial": { + "name": "Acidiluvio Corrosivo", + "effect": "Dati Mancanti" + }, + "tectonicRagePhysical": { + "name": "Furore della Terra", + "effect": "Grazie al Potere Z, chi la usa si tuffa nelle viscere della terra e colpisce con violenza il bersaglio. La potenza varia a seconda della mossa su cui si basa." + }, + "tectonicRageSpecial": { + "name": "Furore della Terra", + "effect": "Dati Mancanti" + }, + "continentalCrushPhysical": { + "name": "Gigamacigno Polverizzante", + "effect": "Grazie al Potere Z, chi la usa crea un masso enorme e lo lancia sul bersaglio schiacciandolo. La potenza varia a seconda della mossa su cui si basa." + }, + "continentalCrushSpecial": { + "name": "Gigamacigno Polverizzante", + "effect": "Dati Mancanti" + }, + "savageSpinOutPhysical": { + "name": "Bozzolo Fatale", + "effect": "Chi la usa sfrutta il potere Z per creare dei filamenti che intrappolano il bersaglio. La potenza varia a seconda della mossa su cui si basa." + }, + "savageSpinOutSpecial": { + "name": "Bozzolo Fatale", + "effect": "Dati Mancanti" + }, + "neverEndingNightmarePhysical": { + "name": "Abbraccio Spettrale", + "effect": "Grazie al Potere Z, chi la usa intrappola il bersaglio in una morsa generata dal proprio rancore. La potenza varia a seconda della mossa su cui si basa." + }, + "neverEndingNightmareSpecial": { + "name": "Abbraccio Spettrale", + "effect": "Dati Mancanti" + }, + "corkscrewCrashPhysical": { + "name": "Spirale Perforante", + "effect": "Grazie al Potere Z, chi la usa vortica su se stesso e si scaglia sul bersaglio con tutte le sue forze. La potenza varia a seconda della mossa su cui si basa" + }, + "corkscrewCrashSpecial": { + "name": "Spirale Perforante", + "effect": "Dati Mancanti" + }, + "infernoOverdrivePhysical": { + "name": "Fiammobomba Detonante", + "effect": "Chi la usa sfrutta il Potere Z per emettere fiamme incandescenti che inceneriscono il bersaglio. La potenza varia a seconda della mossa su cui si basa." + }, + "infernoOverdriveSpecial": { + "name": "Fiammobomba Detonante", + "effect": "Dati Mancanti" + }, + "hydroVortexPhysical": { + "name": "Idrovortice Abissale", + "effect": "Grazie al Potere Z, chi la usa crea un enorme vortice che inghiotte il bersaglio. La potenza varia a seconda della mossa su cui si basa." + }, + "hydroVortexSpecial": { + "name": "Idrovortice Abissale", + "effect": "Dati Mancanti" + }, + "bloomDoomPhysical": { + "name": "Floriscoppio Sfolgorante", + "effect": "Grazie al Potere Z, chi la usa concentra l'energia delle piante per scatenare un potente attacco. La potenza varia a seconda della mossa su cui si basa." + }, + "bloomDoomSpecial": { + "name": "Floriscoppio Sfolgorante", + "effect": "Dati Mancanti" + }, + "gigavoltHavocPhysical": { + "name": "Gigascarica Folgorante", + "effect": "Grazie al Potere Z, chi la usa genera una fortissima scarica elettrica che colpisce il bersaglio. La potenza varia a seconda della mossa su cui si basa." + }, + "gigavoltHavocSpecial": { + "name": "Gigascarica Folgorante", + "effect": "Dati Mancanti" + }, + "shatteredPsychePhysical": { + "name": "Impatto Psicocinetico", + "effect": "Chi la usa si serve del Potere Z per manipolare la mente del bersaglio causando ingenti danni. La potenza varia a seconda della mossa su cui si basa." + }, + "shatteredPsycheSpecial": { + "name": "Impatto Psicocinetico", + "effect": "Dati Mancanti" + }, + "subzeroSlammerPhysical": { + "name": "Criodistruzione Polare", + "effect": "Chi la usa sfrutta il Potere Z per far calare di colpo la temperatura e congelare il bersaglio. La potenza varia a seconda della mossa su cui si basa." + }, + "subzeroSlammerSpecial": { + "name": "Criodistruzione Polare", + "effect": "Dati Mancanti" + }, + "devastatingDrakePhysical": { + "name": "Dragoschianto Finale", + "effect": "Grazie al Potere Z, chi la usa materializza la propria aura per colpire con forza il nemico. La potenza varia a seconda della mossa su cui si basa." + }, + "devastatingDrakeSpecial": { + "name": "Dragoschianto Finale", + "effect": "Dati Mancanti" + }, + "blackHoleEclipsePhysical": { + "name": "Buco Nero del Non Ritorno", + "effect": "Chi la usa si serve del Potere Z per concentrare energia negativa con cui inghiotte il bersaglio. La potenza varia a seconda della mossa su cui si basa." + }, + "blackHoleEclipseSpecial": { + "name": "Buco Nero del Non Ritorno", + "effect": "Dati Mancanti" + }, + "twinkleTacklePhysical": { + "name": "Astroimpatto Fatato", + "effect": "Grazie al Potere Z, chi la usa crea una dimensione fatata in cui fa ciò che vuole del proprio bersaglio. La potenza varia a seconda della mossa su cui si basa." + }, + "twinkleTackleSpecial": { + "name": "Astroimpatto Fatato", + "effect": "Dati Mancanti" + }, + "catastropika": { + "name": "Super Pikaboom", + "effect": "Grazie al Potere Z, Pikachu accumula un'enorme quantità di energia elettrica e si lancia contro il bersaglio a tutta forza." + }, + "shoreUp": { + "name": "Sabbiaccumulo", + "effect": "Chi la usa recupera metà dei propri PS massimi. Durante le tempeste di sabbia ne recupera di più." + }, + "firstImpression": { + "name": "Schermaglia", + "effect": "È una mossa molto potente, ma funziona solo appena scesi in campo." + }, + "banefulBunker": { + "name": "Fortino", + "effect": "L'utilizzatore si protegge e se l'avversario attacca con una mossa da contatto viene avvelenato." + }, + "spiritShackle": { + "name": "Cucitura d'Ombra", + "effect": "Chi la usa attacca il bersaglio e fissa la sua ombra a terra impedendogli di fuggire." + }, + "darkestLariat": { + "name": "Braccioteso", + "effect": "Chi la usa attacca il bersaglio mulinando gli arti. Il danno inflitto ignora le modifiche alle statistiche del bersaglio." + }, + "sparklingAria": { + "name": "Canto Effimero", + "effect": "Chi la usa si mette a cantare emettendo tanti palloncini d’acqua. I Pokémon che subiscono danni da questa mossa guariscono dalle scottature." + }, + "iceHammer": { + "name": "Martelgelo", + "effect": "Infligge danni al bersaglio colpendolo con un pugno molto potente. Riduce la velocità di chi la usa." + }, + "floralHealing": { + "name": "Cura Floreale", + "effect": "Fa recuperare metà dei PS massimi al bersaglio. È più efficace quando il terreno di lotta è nello stato di Campo Erboso." + }, + "highHorsepower": { + "name": "Forza Equina", + "effect": "Il Pokémon travolge il bersaglio con un attacco possente." + }, + "strengthSap": { + "name": "Assorbiforza", + "effect": "Fa recuperare una quantità di PS pari all'Attacco del bersaglio, che vedrà diminuire questa statistica." + }, + "solarBlade": { + "name": "Lama Solare", + "effect": "Il Pokémon assorbe la luce al primo turno per poi condensarla in una lama e attaccare al turno successivo." + }, + "leafage": { + "name": "Fogliame", + "effect": "Attacca il bersaglio con delle foglie." + }, + "spotlight": { + "name": "Riflettore", + "effect": "Nessuna descrizione disponibile." + }, + "toxicThread": { + "name": "Velenotela", + "effect": "Avvelena il bersaglio avvolgendolo con filamenti tossici e ne riduce la Velocità." + }, + "laserFocus": { + "name": "Concentrazione", + "effect": "Chi la usa si concentra e nel turno successivo metterà sicuramente a segno un brutto colpo." + }, + "gearUp": { + "name": "Marciainpiù", + "effect": "Dà una marcia in più agli alleati con le abilità Meno o Più aumentandone l’Attacco e l’Attacco Speciale." + }, + "throatChop": { + "name": "Colpo Infernale", + "effect": "Chi viene colpito da questa mossa prova un dolore lancinante e non può più usare mosse basate sul suono per due turni." + }, + "pollenPuff": { + "name": "Sferapolline", + "effect": "Chi la usa attacca il nemico con una sfera esplosiva. Se colpisce degli alleati, fa recuperare loro dei PS." + }, + "anchorShot": { + "name": "Colpo d'Ancora", + "effect": "Chi la usa colpisce il nemico con un'ancora e lo intrappola nella catena impedendogli di fuggire." + }, + "psychicTerrain": { + "name": "Campo Psichico", + "effect": "Per cinque turni il terreno entra nello stato di Campo Psichico: i Pokémon a terra non subiscono mosse ad alta priorità e la potenza delle mosse di tipo Psico aumenta." + }, + "lunge": { + "name": "Assalto", + "effect": "Chi la usa si lancia con tutte le sue forze sul bersaglio e ne riduce l'Attacco." + }, + "fireLash": { + "name": "Frusta di Fuoco", + "effect": "Colpisce il bersaglio con una frusta infuocata e ne riduce la Difesa." + }, + "powerTrip": { + "name": "Tracotanza", + "effect": "Chi la usa attacca il bersaglio sfoggiando la propria forza. Più le sue statistiche sono state aumentate, più la mossa è potente." + }, + "burnUp": { + "name": "Ultima Fiamma", + "effect": "Chi la usa attacca sfruttando tutta la sua potenza incendiaria per infliggere gravi danni al bersaglio, ma come conseguenza perde il tipo Fuoco." + }, + "speedSwap": { + "name": "Velociscambio", + "effect": "Chi la usa scambia la propria Velocità con quella del bersaglio." + }, + "smartStrike": { + "name": "Sottilcorno", + "effect": "Chi la usa colpisce il bersaglio con un corno appuntito. Questa mossa va sempre a segno." + }, + "purify": { + "name": "Purificazione", + "effect": "Il bersaglio della mossa viene curato dalle alterazioni di stato inoltre l'utilizzatore ripristina i propri PS se la mossa va a segno." + }, + "revelationDance": { + "name": "Mutadanza", + "effect": "Chi la usa si lancia in una danza e attacca il nemico con tutte le sue forze. Il tipo della mossa corrisponde al tipo del Pokémon che la usa." + }, + "coreEnforcer": { + "name": "Nucleocastigo", + "effect": "Il bersaglio subisce dei danni e, se ha già agito nel turno, perde la sua abilità." + }, + "tropKick": { + "name": "Tropicalcio", + "effect": "Chi la usa colpisce il bersaglio con un potente calcio sfruttando una tecnica originaria dei paesi tropicali e ne riduce l'Attacco." + }, + "instruct": { + "name": "Imposizione", + "effect": "Nessuna descrizione disponibile." + }, + "beakBlast": { + "name": "Cannonbecco", + "effect": "Chi la usa arroventa il proprio becco e poi attacca. Se un Pokémon lo colpisce con un attacco diretto mentre sta accumulando calore, resta scottato." + }, + "clangingScales": { + "name": "Clamorsquame", + "effect": "Chi la usa attacca il bersaglio con un suono fortissimo che genera sfregando le scaglie del corpo. Dopo aver attaccato, la sua Difesa diminuisce." + }, + "dragonHammer": { + "name": "Marteldrago", + "effect": "Chi la usa infligge danni al bersaglio usando il proprio corpo come se fosse un martello." + }, + "brutalSwing": { + "name": "Vorticolpo", + "effect": "Chi la usa infligge danni intorno a sé facendo ruotare una parte del suo corpo." + }, + "auroraVeil": { + "name": "Velaurora", + "effect": "Questa mossa riduce i danni provocati dalle mosse fisiche e speciali per 5 turni. Può essere usata solo mentre grandina." + }, + "sinisterArrowRaid": { + "name": "Dardoassalto Spettrale", + "effect": "Grazie al Potere Z, Decidueye crea una formazione di frecce che colpisce il bersaglio a gran velocità." + }, + "maliciousMoonsault": { + "name": "Iperschianto delle Tenebre", + "effect": "Grazie al Potere Z, Incineroar richiama tutta la sua forza e si lancia impetuosamente sul bersaglio." + }, + "oceanicOperetta": { + "name": "Sinfonia del Mare", + "effect": "Grazie al Potere Z, Primarina concentra un’enorme quantità d’acqua e attacca il bersaglio con una potenza smisurata." + }, + "guardianOfAlola": { + "name": "Collera del Guardiano", + "effect": "Grazie al Potere Z, il Nume Locale evoca l’energia di Alola e attacca con grande potenza, facendo perdere al bersaglio la maggior parte dei suoi PS." + }, + "soulStealing7StarStrike": { + "name": "Colpo Eptastellare Rubanima", + "effect": "Grazie al Potere Z, Marshadow fa appello a tutte le sue forze e colpisce il bersaglio con una scarica di calci e pugni potentissimi." + }, + "stokedSparksurfer": { + "name": "Elettrosurf Folgorante", + "effect": "Grazie al Potere Z, il Raichu di Alola attacca con tutta la sua potenza e paralizza il bersaglio." + }, + "pulverizingPancake": { + "name": "Adesso Faccio sul Serio", + "effect": "Grazie al Potere Z, Snorlax tira fuori la grinta e, muovendo energicamente il suo enorme corpo, attacca il bersaglio con tutta la sua forza." + }, + "extremeEvoboost": { + "name": "Potenziamento Eevolutivo", + "effect": "Grazie al Potere Z, Eevee evoca a sé tutta l’energia delle sue possibili evoluzioni e aumenta di molto le sue statistiche" + }, + "genesisSupernova": { + "name": "Supernova delle Origini", + "effect": "Grazie al Potere Z, Mew attacca il bersaglio con tutta la sua forza e genera un Campo Psichico a terra." + }, + "shellTrap": { + "name": "Gusciotrappola", + "effect": "Il guscio del Pokémon diventa una trappola. Se un nemico lo colpisce con una mossa fisica, innesca un'esplosione e subisce dei danni." + }, + "fleurCannon": { + "name": "Cannonfiore", + "effect": "Colpisce il bersaglio con un potente raggio, ma riduce di molto l'Attacco Speciale di chi la usa." + }, + "psychicFangs": { + "name": "Psicozanna", + "effect": "L'utilizzatore morde il bersaglio, rompendo barriere come Schermoluce e Riflesso." + }, + "stompingTantrum": { + "name": "Battipiedi", + "effect": "Chi la usa attacca battendo i piedi per la rabbia. Se la mossa usata al turno precedente non è andata a segno, la potenza raddoppia." + }, + "shadowBone": { + "name": "Ossotetro", + "effect": "Chi la usa colpisce il bersaglio con un osso in cui alberga uno spirito. Può anche ridurne la Difesa." + }, + "accelerock": { + "name": "Rocciarapida", + "effect": "Chi la usa attacca il bersaglio colpendolo a tutta velocità. Questa mossa ha priorità alta." + }, + "liquidation": { + "name": "Idrobreccia", + "effect": "Chi la usa colpisce il bersaglio con la forza dell'acqua. Può anche ridurne la Difesa." + }, + "prismaticLaser": { + "name": "Prismalaser", + "effect": "Chi la usa proietta dei potenti raggi di luce grazie alla potenza del suo prisma, ma non può agire nel turno successivo." + }, + "spectralThief": { + "name": "Ombrafurto", + "effect": "Chi la usa ruba gli aumenti delle statistiche del bersaglio, poi si nasconde nella sua ombra e lo attacca." + }, + "sunsteelStrike": { + "name": "Astrocarica", + "effect": "Chi la usa travolge il bersaglio con la potenza di una meteora. Questo attacco ignora l'abilità del bersaglio." + }, + "moongeistBeam": { + "name": "Raggio d'Ombra", + "effect": "Chi la usa proietta sul bersaglio un misterioso raggio di luce. Questo attacco ignora l'abilità del bersaglio." + }, + "tearfulLook": { + "name": "Occhionilucidi", + "effect": "Chi la usa guarda il bersaglio con gli occhi pieni di lacrime e gli fa perdere lo spirito combattivo, riducendone l'Attacco e l'Attacco Speciale" + }, + "zingZap": { + "name": "Elettropizzico", + "effect": "Chi la usa colpisce il bersaglio investendolo con una potente scarica elettrica che può anche farlo tentennare." + }, + "naturesMadness": { + "name": "Ira della Natura", + "effect": "Scatena l’ira della natura sul bersaglio e ne dimezza i PS." + }, + "multiAttack": { + "name": "Multiattacco", + "effect": "Chi la usa si avvolge in un potente campo energetico e colpisce il bersaglio. Il tipo della mossa varia in base alla ROM installata." + }, + "tenMillionVoltThunderbolt": { + "name": "Iperfulmine", + "effect": "Grazie al Potere Z, Pikachu con il berretto scatena una potentissima scarica elettrica. Probabile brutto colpo." + }, + "mindBlown": { + "name": "Sbalorditesta", + "effect": "Chi la usa fa esplodere la propria testa per attaccare tutti i Pokémon che ha intorno, ma subisce danni." + }, + "plasmaFists": { + "name": "Pugni Plasma", + "effect": "Chi la usa attacca con pugni carichi di elettricità. Trasforma le mosse di tipo Normale in mosse di tipo Elettro." + }, + "photonGeyser": { + "name": "Geyser Fotonico", + "effect": "Infligge danni in base all’Attacco o all’Attacco Speciale scegliendo il più alto tra i due. Questo attacco ignora l’abilità del bersaglio." + }, + "lightThatBurnsTheSky": { + "name": "Fotodistruzione Apocalittica", + "effect": "Infligge danni in base all’Attacco o all’Attacco Speciale scegliendo il più alto tra i due. Questo attacco ignora l’abilità del bersaglio." + }, + "searingSunrazeSmash": { + "name": "Supercollisione Solare", + "effect": "Grazie al Potere Z, Solgaleo attacca il bersaglio con tutta la sua forza. Questo attacco ignora l’abilità del bersaglio se questa ha effetto sulle mosse." + }, + "menacingMoonrazeMaelstrom": { + "name": "Deflagrazione Lunare", + "effect": "Grazie al Potere Z, Lunala attacca il bersaglio con tutta la sua forza. Questo attacco ignora l’abilità del bersaglio se questa ha effetto sulle mosse." + }, + "letsSnuggleForever": { + "name": "Dolcesacco di Botte", + "effect": "Grazie al Potere Z, Mimikyu fa appello a tutte le sue forze e attacca il bersaglio tempestandolo di colpi." + }, + "splinteredStormshards": { + "name": "Litotempesta Radiale", + "effect": "Grazie al Potere Z, Lycanroc attacca il bersaglio con tutta la sua forza. Questa mossa annulla anche gli eventuali campi attivi." + }, + "clangorousSoulblaze": { + "name": "Dracofonia Divampante", + "effect": "Grazie al Potere Z, Kommo-o attacca i nemici con tutta la sua forza. Inoltre, aumenta le proprie statistiche." + }, + "zippyZap": { + "name": "Sprintaboom", + "effect": "Un attacco elettrico ad altissima velocità. Questa mossa ha priorità alta e infligge sicuramente un brutto colpo." + }, + "splishySplash": { + "name": "Surfasplash", + "effect": "Colpisce il bersaglio con un'enorme onda caricata di elettricità che può anche paralizzarlo." + }, + "floatyFall": { + "name": "Piombaflap", + "effect": "Chi la usa si libra in aria per poi piombare addosso al bersaglio. Può anche far tentennare il Pokémon colpito." + }, + "pikaPapow": { + "name": "Pikasaetta", + "effect": "Questa mossa infallibile diventa più potente con il rafforzarsi del rapporto tra Pikachu e l'Allenatore." + }, + "bouncyBubble": { + "name": "Bollaslurp", + "effect": "Chi la usa colpisce il bersaglio con una raffica di bolle, per poi assorbirle e recuperare una quantità di PS pari alla del danno inferto." + }, + "buzzyBuzz": { + "name": "Elettrozap", + "effect": "Colpisce il bersaglio con una scarica elettrica che lo paralizza." + }, + "sizzlySlide": { + "name": "Fiammabam", + "effect": "Chi la usa viene avvolto dalle fiamme e colpisce il bersaglio con forza, scottandolo." + }, + "glitzyGlow": { + "name": "Auraswoosh", + "effect": "Colpisce il bersaglio ripetutamente con onde di forza psicocinetica e innalza una barriera fantastica che riduce i danni degli attacchi speciali nemici." + }, + "baddyBad": { + "name": "Zona Buiabuia", + "effect": "Chi la usa scatena l’oscurità che ha dentro, colpendo il bersaglio e innalzando una barriera fantastica che riduce i danni degli attacchi fisici nemici." + }, + "sappySeed": { + "name": "Bombafrush", + "effect": "Fa crescere un'enorme pianta che colpisce il bersaglio con una pioggia di semi. Questi sottraggono PS a ogni turno permettendo a chi la usa di curarsi." + }, + "freezyFrost": { + "name": "Scricchiagelo", + "effect": "Chi la usa attacca il bersaglio con un cristallo formato da una nube nera congelata, che annulla ogni modifica alle statistiche di tutti i Pokémon." + }, + "sparklySwirl": { + "name": "Sbrilluccibufera", + "effect": "Chi la usa attacca il bersaglio avvolgendolo in un turbine di profumi soffocanti e cura i problemi di stato propri e degli alleati." + }, + "veeveeVolley": { + "name": "Eeveempatto", + "effect": "Questa mossa infallibile diventa più potente con il rafforzarsi del rapporto tra Eevee e l'Allenatore." + }, + "doubleIronBash": { + "name": "Pugni Corazzati", + "effect": "L'utilizzatore ruota, centrando il dado esagonale nel petto, quindi colpisce con le braccia due volte di seguito. Ciò potrebbe anche far tentennare il bersaglio." + }, + "maxGuard": { + "name": "Dynabarriera", + "effect": "Questa mossa permette di eludere tutti gli attacchi. Se usata in successione può fallire." + }, + "dynamaxCannon": { + "name": "Cannone Dynamax", + "effect": "Il Pokémon attacca emettendo dal suo nucleo l'energia concentrata nel corpo. Se il bersaglio è overlivellato, i danni inflitti aumentano." + }, + "snipeShot": { + "name": "Tiromirato", + "effect": "Permette di attaccare il bersaglio ignorando gli effetti di mosse e abilità che alterano le mosse" + }, + "jawLock": { + "name": "Morsostretto", + "effect": "Impedisce a chi la usa e al bersaglio di essere sostituiti finché non vanno KO. L'effetto svanisce se uno dei due lascia il campo." + }, + "stuffCheeks": { + "name": "Riempiguance", + "effect": "Se chi la usa ha con sé una bacca, la mangia e la sua Difesa aumenta di molto." + }, + "noRetreat": { + "name": "Spalle al Muro", + "effect": "Il Pokémon aumenta tutte le sue statistiche ma non può più fuggire o essere sostituito." + }, + "tarShot": { + "name": "Colpocatrame", + "effect": "Chi la usa getta catrame appiccicoso sul bersaglio abbassandone la Velocità e rendendolo vulnerabile al tipo Fuoco." + }, + "magicPowder": { + "name": "Magipolvere", + "effect": "Chi la usa getta addosso al bersaglio una polvere magica che lo rende di tipo Psico." + }, + "dragonDarts": { + "name": "Dragofrecce", + "effect": "L'utilizzatore attacca due volte usando Dreepy. Se ci sono due obiettivi, questa mossa colpisce una volta ogni obiettivo." + }, + "teatime": { + "name": "Ora del Tè", + "effect": "Chi la usa invita tutti i Pokémon in campo a prendere il tè. Quelli che hanno con sé una bacca la mangiano." + }, + "octolock": { + "name": "Tentacolock", + "effect": "Chi la usa immobilizza il bersaglio impedendogli di fuggire e ne diminuisce la Difesa e la Difesa Speciale a ogni turno." + }, + "boltBeak": { + "name": "Beccoshock", + "effect": "Chi la usa attacca il bersaglio con il becco appuntito carico d'elettricità. Se attacca per primo, la potenza della mossa raddoppia." + }, + "fishiousRend": { + "name": "Branchiomorso", + "effect": "Chi la usa morde il bersaglio con le dure branchie. Se attacca per primo, la potenza della mossa raddoppia." + }, + "courtChange": { + "name": "Cambiocampo", + "effect": "Una forza misteriosa inverte gli effetti attivi sul campo alleato e sul campo avversario." + }, + "maxFlare": { + "name": "Dynafiammata", + "effect": "Un attacco di tipo Fuoco che può essere eseguito dai Pokémon dynamaxizzati. Intensifica i raggi solari per cinque turni." + }, + "maxFlutterby": { + "name": "Dynainsetto", + "effect": "Un attacco di tipo Coleottero che può essere eseguito dai Pokémon dynamaxizzati. Riduce l'Attacco Speciale degli avversari." + }, + "maxLightning": { + "name": "Dynasaetta", + "effect": "Un attacco di tipo Elettro che può essere eseguito dai Pokémon dynamaxizzati. Per cinque turni il terreno entra nello stato di Campo Elettrico." + }, + "maxStrike": { + "name": "Dynattacco", + "effect": "Un attacco di tipo Normale che può essere eseguito dai Pokémon dynamaxizzati. Riduce la Velocità degli avversari." + }, + "maxKnuckle": { + "name": "Dynapugno", + "effect": "Un attacco di tipo Lotta che può essere eseguito dai Pokémon dynamaxizzati. Aumenta l'Attacco degli alleati." + }, + "maxPhantasm": { + "name": "Dynavuoto", + "effect": "Un attacco di tipo Spettro che può essere eseguito dai Pokémon dynamaxizzati. Riduce la Difesa degli avversari." + }, + "maxHailstorm": { + "name": "Dynagelo", + "effect": "Un attacco di tipo Ghiaccio che può essere eseguito dai Pokémon dynamaxizzati. Causa una nevicata che dura per cinque turni." + }, + "maxOoze": { + "name": "Dynacorrosione", + "effect": "Un attacco di tipo Veleno che può essere eseguito dai Pokémon dynamaxizzati. Aumenta l'Attacco Speciale degli alleati." + }, + "maxGeyser": { + "name": "Dynaflusso", + "effect": "Un attacco di tipo Acqua che può essere eseguito dai Pokémon dynamaxizzati. Provoca una forte pioggia per cinque turni." + }, + "maxAirstream": { + "name": "Dynajet", + "effect": "Un attacco di tipo Volante che può essere eseguito dai Pokémon dynamaxizzati. Aumenta la Velocità degli alleati." + }, + "maxStarfall": { + "name": "Dynafata", + "effect": "Un attacco di tipo Folletto che può essere eseguito dai Pokémon dynamaxizzati. Per cinque turni il terreno entra nello stato di Campo Nebbioso." + }, + "maxWyrmwind": { + "name": "Dynadragone", + "effect": "Un attacco di tipo Drago che può essere eseguito dai Pokémon dynamaxizzati. Riduce l'Attacco degli avversari." + }, + "maxMindstorm": { + "name": "Dynapsiche", + "effect": "Un attacco di tipo Psico che può essere eseguito dai Pokémon dynamaxizzati. Per cinque turni il terreno entra nello stato di Campo Psichico." + }, + "maxRockfall": { + "name": "Dynamacigno", + "effect": "Un attacco di tipo Roccia che può essere eseguito dai Pokémon dynamaxizzati. Causa una tempesta di sabbia per cinque turni." + }, + "maxQuake": { + "name": "Dynasisma", + "effect": "Un attacco di tipo Terra che può essere eseguito dai Pokémon dynamaxizzati. Aumenta la Difesa Speciale degli alleati." + }, + "maxDarkness": { + "name": "Dynatenebre", + "effect": "Un attacco di tipo Buio che può essere eseguito dai Pokémon dynamaxizzati. Riduce la Difesa Speciale degli avversari." + }, + "maxOvergrowth": { + "name": "Dynaflora", + "effect": "Un attacco di tipo Erba che può essere eseguito dai Pokémon dynamaxizzati. Per cinque turni il terreno entra nello stato di Campo Erboso." + }, + "maxSteelspike": { + "name": "Dynametallo", + "effect": "Un attacco di tipo Acciaio che può essere eseguito dai Pokémon dynamaxizzati. Aumenta la Difesa degli alleati." + }, + "clangorousSoul": { + "name": "Dracofonia", + "effect": "Chi la usa sacrifica un po' dei suoi PS per aumentare tutte le sue statistiche." + }, + "bodyPress": { + "name": "Schiacciacorpo", + "effect": "Chi la usa schiaccia il bersaglio con il suo corpo. Più la sua Difesa è alta, maggiori sono i danni inflitti." + }, + "decorate": { + "name": "Decorazione", + "effect": "Chi la usa agghinda il bersaglio con delle decorazioni aumentandone di molto l'Attacco e l'Attacco Speciale." + }, + "drumBeating": { + "name": "Tamburattacco", + "effect": "Chi la usa percuote il proprio tamburo per controllarne le radici e attaccare il bersaglio, riducendone la Velocità." + }, + "snapTrap": { + "name": "Tagliola", + "effect": "Chi la usa intrappola il bersaglio in una tagliola e lo attacca per quattro o cinque turni." + }, + "pyroBall": { + "name": "Palla Infuocata", + "effect": "l Pokémon attacca con una palla creata incendiando una piccola pietra. Può anche scottare il bersaglio." + }, + "behemothBlade": { + "name": "Taglio Maestoso", + "effect": "Il Pokémon brandisce un'enorme spada e attacca vibrando un poderoso fendente." + }, + "behemothBash": { + "name": "Colpo Maestoso", + "effect": "Il Pokémon trasforma il suo corpo in un robusto scudo e attacca caricando con forza." + }, + "auraWheel": { + "name": "Ruota d'Aura", + "effect": "Il Pokémon emette l'energia accumulata nelle guance per attaccare e aumentare la Velocità. Il tipo della mossa cambia in base alla forma assunta da Morpeko." + }, + "breakingSwipe": { + "name": "Vastoimpatto", + "effect": "Chi la usa attacca i nemici intorno con la sua robusta coda riducendone l'Attacco." + }, + "branchPoke": { + "name": "Ramostoccata", + "effect": "Chi la usa attacca il bersaglio con un ramo incredibilmente appuntito." + }, + "overdrive": { + "name": "Overdrive", + "effect": "Chi la usa suona la chitarra o il basso creando un'onda sonora potentissima con cui attacca il bersaglio." + }, + "appleAcid": { + "name": "Acido Malico", + "effect": "Il Pokémon attacca il bersaglio con un liquido acido ricavato da mele aspre riducendone la Difesa Speciale." + }, + "gravApple": { + "name": "Forza G", + "effect": "Il Pokémon fa cadere una mela sul bersaglio da una grande altezza, infliggendogli danni e riducendone la Difesa." + }, + "spiritBreak": { + "name": "Frantumanima", + "effect": "Chi la usa attacca il bersaglio con un tale impeto da fargli perdere la voglia di lottare e ne riduce l'Attacco Speciale" + }, + "strangeSteam": { + "name": "Vapore Incantato", + "effect": "Il Pokémon attacca il bersaglio con getti di vapore che possono anche confonderlo." + }, + "lifeDew": { + "name": "Goccia Vitale", + "effect": "Il Pokémon sparge tutt'intorno dell'acqua misteriosa che fa recuperare PS a sé e agli alleati in campo." + }, + "obstruct": { + "name": "Sbarramento", + "effect": "Permette di eludere tutti gli attacchi. Se usata in successione può fallire. Se un Pokémon tocca chi la usa, la sua Difesa diminuisce di molto." + }, + "falseSurrender": { + "name": "Supplicolpo", + "effect": "Chi la usa finge di abbassare la testa a mo' di supplica e attacca il bersaglio con i suoi capelli scarmigliati. Questa mossa va sempre a segno." + }, + "meteorAssault": { + "name": "Sfolgorassalto", + "effect": "Chi la usa attacca il bersaglio brandendo un grosso gambo, ma perde l'equilibrio e nel turno successivo non può agire." + }, + "eternabeam": { + "name": "Raggio Infinito", + "effect": "È l'attacco più potente di Eternatus quando assume la sua forma originale. Nel turno successivo non può agire." + }, + "steelBeam": { + "name": "Raggio d'Acciaio", + "effect": "Il Pokémon utilizza l'acciaio del proprio corpo per sparare un violento raggio, ma subisce danni." + }, + "expandingForce": { + "name": "Vastenergia", + "effect": "Chi la usa attacca il bersaglio con energia psichica. Se utilizzata quando è attivo un Campo Psichico, la mossa aumenta di potenza e danneggia tutti i nemici." + }, + "steelRoller": { + "name": "Ferrorullo", + "effect": "Chi la usa attacca eliminando lo stato del terreno di lotta. La mossa fallisce se nel terreno non è attivo alcuno stato." + }, + "scaleShot": { + "name": "Squamacolpo", + "effect": "Il Pokémon attacca lanciando delle squame da due a cinque volte di fila. Aumenta la Velocità di chi la usa, ma ne riduce la Difesa." + }, + "meteorBeam": { + "name": "Raggiometeora", + "effect": "Chi la usa accumula l'energia dello spazio nel primo turno per aumentare l'Attacco Speciale, quindi attacca nel turno successivo." + }, + "shellSideArm": { + "name": "Armaguscio", + "effect": "Il Pokémon esegue un attacco fisico o speciale, in base a quale causa danni maggiori. Può anche avvelenare il bersaglio." + }, + "mistyExplosion": { + "name": "Nebbioscoppio", + "effect": "Chi la usa attacca tutti i Pokémon che ha intorno, ma poi va KO. La potenza delle mosse aumenta quando è attivo un Campo Nebbioso." + }, + "grassyGlide": { + "name": "Erboscivolata", + "effect": "Chi la usa attacca il bersaglio scivolando sul terreno. Se utilizzata quando è attivo un Campo Erboso, ha priorità alta." + }, + "risingVoltage": { + "name": "Elettroimpennata", + "effect": "Chi la usa attacca con dell'elettricità che si alza dal suolo. La potenza della mossa raddoppia quando l'avversario si trova in un Campo Elettrico." + }, + "terrainPulse": { + "name": "Campopulsar", + "effect": "Chi la usa attacca sfruttando l'energia del terreno di lotta. Il tipo e la potenza della mossa variano a seconda dello stato del terreno stesso." + }, + "skitterSmack": { + "name": "Strisciacolpo", + "effect": "Chi la usa attacca il bersaglio strisciandogli alle spalle e riducendo il suo Attacco Speciale." + }, + "burningJealousy": { + "name": "Fiamminvidia", + "effect": "Chi la usa attacca con la forza dell'invidia, causando una scottatura a tutti i Pokémon le cui statistiche sono aumentate durante quel turno." + }, + "lashOut": { + "name": "Sfogarabbia", + "effect": "Chi la usa attacca il bersaglio con tutta la propria ira. Se ha subito riduzioni delle statistiche durante quel turno, la potenza della mossa raddoppia." + }, + "poltergeist": { + "name": "Poltergeist", + "effect": "Chi la usa attacca utilizzando lo strumento del bersaglio. La mossa fallisce se quest'ultimo non ha uno strumento." + }, + "corrosiveGas": { + "name": "Gas Corrosivo", + "effect": "Chi la usa avvolge gli altri Pokémon attorno in un gas altamente acido, dissolvendo i loro strumenti." + }, + "coaching": { + "name": "Coaching", + "effect": "Chi la usa aumenta l'Attacco e la Difesa di tutti gli alleati dando loro indicazioni precise." + }, + "flipTurn": { + "name": "Virata", + "effect": "Chi usa questa mossa fa marcia indietro per farsi sostituire dopo aver sferrato l'attacco." + }, + "tripleAxel": { + "name": "Triplo Axel", + "effect": "Il Pokémon attacca sferrando fino a tre calci consecutivi. Ogni volta che la mossa va a segno, la sua potenza aumenta." + }, + "dualWingbeat": { + "name": "Doppia Ala", + "effect": "Il Pokémon attacca il bersaglio urtandolo con le ali e infliggendogli danni due volte di fila." + }, + "scorchingSands": { + "name": "Sabbiardente", + "effect": "Chi la usa attacca il bersaglio scagliandogli addosso della sabbia incandescente. Può anche scottarlo." + }, + "jungleHealing": { + "name": "Giunglacura", + "effect": "Il Pokémon diventa tutt'uno con la giungla, ripristinando i PS e curando i problemi di stato per sé e per gli alleati in campo." + }, + "wickedBlow": { + "name": "Pugnotenebra", + "effect": "Il Pokémon sferra un singolo colpo potentissimo, massima espressione dello stile di tipo Buio. Brutto colpo assicurato." + }, + "surgingStrikes": { + "name": "Idroraffica", + "effect": "Il Pokémon sferra una fluida serie di tre attacchi, massima espressione dello stile di tipo Acqua. Brutto colpo assicurato." + }, + "thunderCage": { + "name": "Elettrogabbia", + "effect": "Il Pokémon attacca il bersaglio imprigionandolo in una gabbia di elettricità, che sprigiona corrente per quattro o cinque turni." + }, + "dragonEnergy": { + "name": "Dragoenergia", + "effect": "\tIl Pokémon attacca il bersaglio convertendo la propria forza vitale in energia. Più i suoi PS sono bassi, più la potenza della mossa diminuisce." + }, + "freezingGlare": { + "name": "Sguardo Gelido", + "effect": "Il Pokémon attacca rilasciando energia psichica dagli occhi. Può congelare il bersaglio." + }, + "fieryWrath": { + "name": "Furia Ardente", + "effect": "ERR\tIl Pokémon attacca trasformando la sua rabbia in un'aura simile a fiamme. Può anche far tentennare il bersaglio.ORE" + }, + "thunderousKick": { + "name": "Calcio Tonante", + "effect": "Il Pokémon sferra calci al bersaglio dopo averlo distratto con movimenti fulminei, riducendone la Difesa." + }, + "glacialLance": { + "name": "Lancia Glaciale", + "effect": "Il Pokémon attacca il bersaglio scagliando una lancia di ghiaccio accompagnata da una tormenta di neve." + }, + "astralBarrage": { + "name": "Schegge Astrali", + "effect": "Il Pokémon attacca il bersaglio scatenandogli contro una miriade di piccoli spettri." + }, + "eerieSpell": { + "name": "Inquietantesimo", + "effect": "Il Pokémon attacca con i suoi potenti poteri psichici. Sottrae 3 PP all'ultima mossa usata dall'avversario." + }, + "direClaw": { + "name": "Artigli Fatali", + "effect": "Il Pokémon attacca il bersaglio con artigli distruttori. Può anche causargli avvelenamento, paralisi o sonno." + }, + "psyshieldBash": { + "name": "Barrierassalto", + "effect": "Il Pokémon si carica di energia psichica per poi schiantarsi sul bersaglio. Inoltre, aumenta la propria Difesa." + }, + "powerShift": { + "name": "Scambioforza", + "effect": "Il Pokémon scambia il suo Attacco con la Difesa." + }, + "stoneAxe": { + "name": "Rocciascure", + "effect": "Il Pokémon attacca il bersaglio con delle scuri di roccia. I frammenti rocciosi dispersi dall'attacco restano sospesi intorno al bersaglio." + }, + "springtideStorm": { + "name": "Tempesta Zefirea", + "effect": "Il Pokémon attacca il bersaglio avvolgendolo con un vento fortissimo di odio e amore. Può anche ridurne l'Attacco." + }, + "mysticalPower": { + "name": "Forza Mistica", + "effect": "Il Pokémon attacca emettendo un misterioso potere. Inoltre, aumenta il proprio Attacco Speciale." + }, + "ragingFury": { + "name": "Ira Furente", + "effect": "Il Pokémon s'infuria e sputa fiammate per due o tre turni, ma rimane confuso." + }, + "waveCrash": { + "name": "Ondaschianto", + "effect": "Il Pokémon si avvolge in uno strato d'acqua e si lancia sul bersaglio, ma subisce seri danni." + }, + "chloroblast": { + "name": "Clorofillaser", + "effect": "Il Pokémon attacca concentrando la clorofilla nel proprio corpo per poi lanciarla, ma subisce danni." + }, + "mountainGale": { + "name": "Soffio d'Iceberg", + "effect": "\tIl Pokémon attacca colpendo il bersaglio con un blocco di ghiaccio grande come un iceberg. Può anche far tentennare il bersaglio." + }, + "victoryDance": { + "name": "Danzavittoria", + "effect": "Il Pokémon si lancia in una danza sfrenata per invocare la vittoria e aumenta l'Attacco, la Difesa e la Velocità." + }, + "headlongRush": { + "name": "Scontro Frontale", + "effect": "Il Pokémon si schianta sul bersaglio con tutte le forze. La sua Difesa e la sua Difesa Speciale diminuiscono." + }, + "barbBarrage": { + "name": "Mille Fielespine", + "effect": "Il bersaglio viene colpito da una miriade di spine tossiche che possono anche avvelenarlo. Se il bersaglio è già avvelenato, la potenza della mossa raddoppia." + }, + "esperWing": { + "name": "Ali d'Aura", + "effect": "Il Pokémon falcia il bersaglio con ali rafforzate da un'aura. Probabile brutto colpo. Inoltre, la Velocità aumenta." + }, + "bitterMalice": { + "name": "Livore", + "effect": "Il Pokémon attacca con una furia che fa raggelare il sangue nelle vene del bersaglio, riducendone l'Attacco." + }, + "shelter": { + "name": "Barricata", + "effect": "Il Pokémon indurisce la propria pelle come uno scudo di ferro, aumentando di molto la Difesa." + }, + "tripleArrows": { + "name": "Triplodardo", + "effect": "Il Pokémon sferra un calcio per poi scoccare tre dardi insieme. Può ridurre la Difesa del bersaglio o farlo tentennare. Probabile brutto colpo." + }, + "infernalParade": { + "name": "Corteo Spettrale", + "effect": "Il Pokémon attacca con innumerevoli sfere di fuoco che possono anche scottare il bersaglio. Se questo è affetto da problemi di stato, la potenza della mossa raddoppia." + }, + "ceaselessEdge": { + "name": "Lama Milleflutti", + "effect": "Il Pokémon attacca il bersaglio con la spada conchiglia. I frammenti di conchiglie formano una trappola di punte ai piedi del bersaglio." + }, + "bleakwindStorm": { + "name": "Tempesta Boreale", + "effect": "Il Pokémon attacca il bersaglio con venti gelidi e sferzanti che lo fanno tremare anima e corpo. Può anche ridurne la Velocità." + }, + "wildboltStorm": { + "name": "Tempesta Tonante", + "effect": "Il Pokémon chiama a sé una tempesta di fulmini e raffiche di vento con cui attacca violentemente il bersaglio. Può anche paralizzarlo." + }, + "sandsearStorm": { + "name": "Tempesta Ardente", + "effect": "Il Pokémon attacca il bersaglio avvolgendolo con sabbia ardente e un vento fortissimo che possono scottarlo." + }, + "lunarBlessing": { + "name": "Invocaluna", + "effect": "\tIl Pokémon rivolge una preghiera alla luna crescente, ripristinando i PS e curando i problemi di stato per sé e per gli alleati in campo." + }, + "takeHeart": { + "name": "Baldimpulso", + "effect": "Il Pokémon prende coraggio e guarisce dai problemi di stato. Inoltre, aumenta l'Attacco Speciale e la Difesa Speciale." + }, + "gMaxWildfire": { + "name": "Gigavampa", + "effect": "Attacco di tipo Fuoco eseguito da Charizard Gigamax. Infligge danni per quattro turni." + }, + "gMaxBefuddle": { + "name": "Gigastupore", + "effect": "Attacco di tipo Coleottero eseguito da Butterfree Gigamax. Avvelena, paralizza o addormenta i nemici." + }, + "gMaxVoltCrash": { + "name": "Gigapikafolgori", + "effect": "Attacco di tipo Elettro eseguito da Pikachu Gigamax. Paralizza i nemici." + }, + "gMaxGoldRush": { + "name": "Gigamonete", + "effect": "Attacco di tipo Normale eseguito da Meowth Gigamax. Confonde i nemici e permette anche di ricevere una ricompensa maggiore." + }, + "gMaxChiStrike": { + "name": "Gigapugnointuito", + "effect": "Attacco di tipo Lotta eseguito da Machamp Gigamax. Aumenta la probabilità di sferrare brutti colpi." + }, + "gMaxTerror": { + "name": "Gigaillusione", + "effect": "Attacco di tipo Spettro eseguito da Gengar Gigamax. Il Pokémon calpesta l'ombra del nemico impedendogli la fuga o la sostituzione." + }, + "gMaxResonance": { + "name": "Gigamelodia", + "effect": "Attacco di tipo Ghiaccio eseguito da Lapras Gigamax. Riduce i danni subiti per cinque turni." + }, + "gMaxCuddle": { + "name": "Gigabbraccio", + "effect": "Attacco di tipo Normale eseguito da Eevee Gigamax. Fa infatuare i nemici." + }, + "gMaxReplenish": { + "name": "Gigarinnovamento", + "effect": "Attacco di tipo Normale eseguito da Snorlax Gigamax. Rigenera le bacche mangiate." + }, + "gMaxMalodor": { + "name": "Gigafetore", + "effect": "Attacco di tipo Veleno eseguito da Garbodor Gigamax. Avvelena i nemici." + }, + "gMaxStonesurge": { + "name": "Gigarocciagetto", + "effect": "Attacco di tipo Acqua eseguito da Drednaw Gigamax. Sparge rocce aguzze sul campo di lotta." + }, + "gMaxWindRage": { + "name": "Gigaciclone", + "effect": "Attacco di tipo Volante eseguito da Corviknight Gigamax. Annulla l'effetto di mosse come Riflesso e Schermoluce." + }, + "gMaxStunShock": { + "name": "Gigatoxiscossa", + "effect": "Attacco di tipo Elettro eseguito da Toxtricity Gigamax. Avvelena o paralizza i nemici." + }, + "gMaxFinale": { + "name": "Gigagranfinale", + "effect": "Attacco di tipo Folletto eseguito da Alcremie Gigamax. Fa recuperare PS agli alleati." + }, + "gMaxDepletion": { + "name": "Gigalogoramento", + "effect": "Attacco di tipo Drago eseguito da Duraludon Gigamax. Toglie PP all'ultima mossa usata dai nemici." + }, + "gMaxGravitas": { + "name": "Gigagravitoforza", + "effect": "Attacco di tipo Psico eseguito da Orbeetle Gigamax. Cambia la gravità per cinque turni." + }, + "gMaxVolcalith": { + "name": "Gigalapilli", + "effect": "Attacco di tipo Roccia eseguito da Coalossal Gigamax. Infligge danni per quattro turni." + }, + "gMaxSandblast": { + "name": "Gigavortisabbia", + "effect": "Attacco di tipo Terra eseguito da Sandaconda Gigamax. Scatena un turbine di sabbia per quattro o cinque turni." + }, + "gMaxSnooze": { + "name": "Gigatorpore", + "effect": "Attacco di tipo Buio eseguito da Grimmsnarl Gigamax. Chi la usa fa un grande sbadiglio che fa addormentare il nemico al turno successivo." + }, + "gMaxTartness": { + "name": "Gigattaccoacido", + "effect": "Attacco di tipo Erba eseguito da Flapple Gigamax. Riduce l’elusione dei nemici." + }, + "gMaxSweetness": { + "name": "Gigambrosia", + "effect": "Attacco di tipo Erba eseguito da Appletun Gigamax. Cura i problemi di stato degli alleati." + }, + "gMaxSmite": { + "name": "Gigacastigo", + "effect": "Attacco di tipo Folletto eseguito da Hatterene Gigamax. Confonde i nemici." + }, + "gMaxSteelsurge": { + "name": "Gigaferroaculei", + "effect": "Attacco di tipo Acciaio eseguito da Copperajah Gigamax. Sparge pezzi di metallo acuminati sul campo di lotta." + }, + "gMaxMeltdown": { + "name": "Gigaliquefazione", + "effect": "ERAttacco di tipo Acciaio eseguito da Melmetal Gigamax. Impedisce ai nemici di usare la stessa mossa due volte di seguito.RORE" + }, + "gMaxFoamBurst": { + "name": "Gigaschiuma", + "effect": "Attacco di tipo Acqua eseguito da Kingler Gigamax. Riduce di molto la Velocità dei nemici." + }, + "gMaxCentiferno": { + "name": "Gigamillefiamme", + "effect": "Attacco di tipo Fuoco eseguito da Centiskorch Gigamax. Intrappola i nemici nelle fiamme per quattro o cinque turni." + }, + "gMaxVineLash": { + "name": "Gigasferzata", + "effect": "Attacco di tipo Erba eseguito da Venusaur Gigamax. Infligge danni per quattro turni." + }, + "gMaxCannonade": { + "name": "Gigacannonata", + "effect": "Attacco di tipo Acqua eseguito da Blastoise Gigamax. Infligge danni per quattro turni." + }, + "gMaxDrumSolo": { + "name": "Gigarullio", + "effect": "Attacco di tipo Erba eseguito da Rillaboom Gigamax. Ignora le abilità dei nemici." + }, + "gMaxFireball": { + "name": "Gigafiammopalla", + "effect": "Attacco di tipo Fuoco eseguito da Cinderace Gigamax. Ignora le abilità dei nemici." + }, + "gMaxHydrosnipe": { + "name": "Gigasparomirato", + "effect": "Attacco di tipo Acqua eseguito da Inteleon Gigamax. Ignora le abilità dei nemici." + }, + "gMaxOneBlow": { + "name": "Gigasingolcolpo", + "effect": "Attacco di tipo Buio eseguito da Urshifu Gigamax che ignora gli effetti della Dynabarriera." + }, + "gMaxRapidFlow": { + "name": "Gigapluricolpo", + "effect": "\tAttacco di tipo Acqua eseguito da Urshifu Gigamax che ignora gli effetti della Dynabarriera." + }, + "teraBlast": { + "name": "Terascoppio", + "effect": "Se il Pokémon è teracristallizzato, attacca con l'energia del suo teratipo. Infligge danni in base all'Attacco o all'Attacco Speciale scegliendo il più alto tra i due." + }, + "silkTrap": { + "name": "Telatrappola", + "effect": "Il Pokémon tesse una trappola di tela che lo protegge dagli attacchi e riduce la Velocità di chi entra in contatto con lui." + }, + "axeKick": { + "name": "Calcio ad Ascia", + "effect": "Il Pokémon attacca sferrando un calcio dall'alto verso il basso che può confondere il bersaglio. Se la mossa fallisce, il Pokémon subisce dei danni." + }, + "lastRespects": { + "name": "Omaggio ai KO", + "effect": "Il Pokémon attacca per placare il risentimento dei suoi compagni di squadra. Più sono quelli andati KO, più la potenza della mossa aumenta." + }, + "luminaCrash": { + "name": "Fotocollisione", + "effect": "Il Pokémon attacca sparando una luce bizzarra che agisce anche sulla psiche. Riduce di molto la Difesa Speciale del bersaglio." + }, + "orderUp": { + "name": "Alta Cucina", + "effect": "Il Pokémon attacca con deliziose movenze. Se ha in bocca un Tatsugiri, una sua statistica aumenta in base alla forma di quest'ultimo." + }, + "jetPunch": { + "name": "Pugnojet", + "effect": "Il Pokémon avvolge il pugno in una corrente impetuosa e sferra un colpo a una tale velocità da rendersi quasi invisibile. Questo attacco ha priorità alta." + }, + "spicyExtract": { + "name": "Essenza Piccante", + "effect": "Il Pokémon secerne un'essenza straordinariamente piccante. Aumenta di molto l'Attacco del bersaglio ma ne diminuisce di molto la Difesa." + }, + "spinOut": { + "name": "Slittaruote", + "effect": "Il Pokémon infligge danni caricando le estremità e ruotandole vorticosamente. La sua Velocità diminuisce di molto." + }, + "populationBomb": { + "name": "Infestazione", + "effect": "Il Pokémon si riunisce con i suoi simili in un gruppo brulicante che collabora per attaccare e colpisce da una a dieci volte di fila." + }, + "iceSpinner": { + "name": "Vortighiaccio", + "effect": "Il Pokémon avvolge gli arti inferiori in un sottile strato di ghiaccio e si scontra con il bersaglio piroettando. Il movimento rotatorio distrugge il terreno di lotta." + }, + "glaiveRush": { + "name": "Spadoncarica", + "effect": "Il Pokémon si lancia in una carica avventata. Fino al suo prossimo turno, il Pokémon riceverà il doppio dei danni dagli attacchi altrui, che andranno sempre a segno." + }, + "revivalBlessing": { + "name": "Preghiera Vitale", + "effect": "Il Pokémon intona una preghiera compassionevole, rianimando un Pokémon della squadra esausto e restituendogli metà dei suoi PS." + }, + "saltCure": { + "name": "Sotto Sale", + "effect": "Il Pokémon mette sotto sale il bersaglio, infliggendogli danni a ogni turno. I Pokémon di tipo Acciaio e di tipo Acqua sono particolarmente vulnerabili a questa mossa." + }, + "tripleDive": { + "name": "Triplo Tuffo", + "effect": "Il Pokémon si lancia in un triplo tuffo perfettamente coordinato, colpendo il bersaglio con degli schizzi d'acqua e infliggendogli danni tre volte di fila." + }, + "mortalSpin": { + "name": "Glitturbine", + "effect": "Attacco rotante che elimina gli effetti di mosse come Legatutto, Avvolgibotta e Parassiseme. Aumenta anche la Velocità di chi la usa." + }, + "doodle": { + "name": "Ricalco", + "effect": "Il Pokémon cattura l'essenza del bersaglio con un ricalco, copiandone l'abilità e applicandola a se stesso e ai suoi alleati." + }, + "filletAway": { + "name": "Alleggerimento", + "effect": "Il Pokémon sacrifica dei PS per far aumentare di molto l'Attacco, l'Attacco Speciale e la Velocità." + }, + "kowtowCleave": { + "name": "Genufendente", + "effect": "Il Pokémon si genuflette per far abbassare la guardia al bersaglio e poi fenderlo. Questo attacco va sempre a segno." + }, + "flowerTrick": { + "name": "Prestigiafiore", + "effect": "\tIl Pokémon attacca il bersaglio lanciandogli addosso un mazzo di fiori truccato. Questo attacco va sempre a segno, infliggendo anche un brutto colpo." + }, + "torchSong": { + "name": "Canzone Ardente", + "effect": "Il Pokémon abbrustolisce il bersaglio soffiandogli addosso fiamme ardenti come se intonasse una canzone. Inoltre, il suo Attacco Speciale aumenta." + }, + "aquaStep": { + "name": "Idroballetto", + "effect": "Il Pokémon si prende gioco del bersaglio con passi di danza leggiadri e fluidi come l’acqua, infliggendogli danni. Inoltre, la sua Velocità aumenta." + }, + "ragingBull": { + "name": "Scatenatoro", + "effect": "Il Pokémon carica il bersaglio con furia cieca, rompendo barriere come Schermoluce e Riflesso. Il tipo di questa mossa dipende dalla forma di chi la usa." + }, + "makeItRain": { + "name": "Corsa all'Oro", + "effect": "Il Pokémon attacca lanciando una gran quantità di monete recuperabili dopo la lotta, ma riduce il proprio Attacco Speciale." + }, + "psyblade": { + "name": "Psicolama", + "effect": "Il Pokémon falcia il bersaglio con una lama eterea. La potenza della mossa aumenta del 50% quando è attivo un Campo Elettrico." + }, + "hydroSteam": { + "name": "Idrovapore", + "effect": "Il Pokémon ricopre con forza il bersaglio di acqua bollente. Con la luce solare intensa, la potenza di questa mossa aumenta del 50% anziché diminuire." + }, + "ruination": { + "name": "Catastrofe", + "effect": "Il Pokémon invoca una terribile disgrazia, dimezzando i PS del bersaglio." + }, + "collisionCourse": { + "name": "Turboschianto", + "effect": "Il Pokémon si schianta al suolo mentre si trasforma, causando un'esplosione primordiale. La potenza della mossa aumenta se questa è superefficace sul bersaglio." + }, + "electroDrift": { + "name": "Fulmiscatto", + "effect": "Il Pokémon saetta mentre si trasforma, trafiggendo il bersaglio con una scossa futuristica. La potenza della mossa aumenta se questa è superefficace sul bersaglio." + }, + "shedTail": { + "name": "Tagliacoda", + "effect": "Chi la usa crea una copia di se stesso usando parte dei suoi PS e si fa sostituire da un altro Pokémon della squadra." + }, + "chillyReception": { + "name": "Freddura", + "effect": "Chi la usa dice una freddura che fa raggelare i presenti per poi farsi sostituire da un altro Pokémon della squadra. Causa una nevicata che dura per cinque turni." + }, + "tidyUp": { + "name": "Pulizie", + "effect": "Il Pokémon fa le pulizie, annullando gli effetti di Punte, Levitoroccia, Rete Vischiosa, Fielepunte e Sostituto. Inoltre, aumenta il suo Attacco e la sua Velocità." + }, + "snowscape": { + "name": "Vista Innevata", + "effect": "Il Pokémon causa una nevicata che dura per cinque turni e aumenta la Difesa dei Pokémon di tipo Ghiaccio." + }, + "pounce": { + "name": "Balzo", + "effect": "Il Pokémon fa un balzo e attacca il bersaglio, riducendone inoltre la Velocità." + }, + "trailblaze": { + "name": "Apripista", + "effect": "Il Pokémon attacca come se saltasse fuori dall'erba alta e si muove con passo leggiadro, aumentando la propria Velocità." + }, + "chillingWater": { + "name": "Doccia Fredda", + "effect": "Il Pokémon attacca il bersaglio con una doccia d'acqua talmente fredda da farlo demoralizzare, riducendone l'Attacco." + }, + "hyperDrill": { + "name": "Ipertrapano", + "effect": "Il Pokémon fa roteare rapidamente la parte appuntita del suo corpo, perforando il bersaglio ed eludendo mosse come Protezione e Individua." + }, + "twinBeam": { + "name": "Doppioraggio", + "effect": "Il Pokémon attacca il bersaglio con misteriosi raggi di luce emessi dagli occhi che infliggono danni due volte di fila." + }, + "rageFist": { + "name": "Pugno Furibondo", + "effect": "Il Pokémon trasforma la sua furia in energia e la utilizza per attaccare. Più attacchi ha subito il Pokémon, più la potenza della mossa aumenta." + }, + "armorCannon": { + "name": "Corazza Cannone", + "effect": "Il Pokémon si libera della sua corazza, scagliandola sul bersaglio come una raffica di proiettili incandescenti. La sua Difesa e la sua Difesa Speciale diminuiscono." + }, + "bitterBlade": { + "name": "Lama del Rimorso", + "effect": "Il Pokémon concentra nelle lame tutti i rimorsi accumulati nel mondo dei vivi e assale il bersaglio, recuperando una quantità di PS pari a metà del danno inflitto." + }, + "doubleShock": { + "name": "Doppiolampo", + "effect": "Il Pokémon libera tutta la sua potenza elettrica per infliggere gravi danni al bersaglio, ma come conseguenza perde il tipo Elettro." + }, + "gigatonHammer": { + "name": "Granmartello", + "effect": "Chi la usa attacca il bersaglio brandendo un enorme martello. La mossa non può essere usata per due volte di fila." + }, + "comeuppance": { + "name": "Ritorsione", + "effect": "Il Pokémon restituisce con gli interessi i danni subiti all'ultimo avversario che l'ha colpito." + }, + "aquaCutter": { + "name": "Idrotaglio", + "effect": "\tIl Pokémon espelle acqua ad alta pressione e falcia il bersaglio con un fendente tagliente quanto una lama. Probabile brutto colpo." + }, + "blazingTorque": { + "name": "Turboustione", + "effect": "L'utilizzatore accende il suo motore ardente verso il bersaglio. Ciò potrebbe anche lasciare il bersaglio con una bruciatura." + }, + "wickedTorque": { + "name": "Turbotenebra", + "effect": "L'utente accende il proprio motore nel bersaglio con intenti dannosi. Ciò potrebbe addormentare il bersaglio." + }, + "noxiousTorque": { + "name": "Turbotossina", + "effect": "L'utilizzatore fa girare il suo motore velenoso verso il bersaglio. Ciò potrebbe anche avvelenare il bersaglio." + }, + "combatTorque": { + "name": "Turborissa", + "effect": "L'utente accelera con forza il proprio motore verso il bersaglio. Ciò potrebbe anche lasciare il bersaglio paralizzato." + }, + "magicalTorque": { + "name": "Turboincanto", + "effect": "L'utilizzatore fa girare il proprio motore fatato verso il bersaglio. Ciò potrebbe anche confondere l'obiettivo." + }, + "bloodMoon": { + "name": "Luna Rossa", + "effect": "Il Pokémon attacca rilasciando tutta la sua energia, confluita in una luna piena rossa come il sangue. Questa mossa non può essere usata due volte di fila." + }, + "matchaGotcha": { + "name": "Spruzzatè", + "effect": "Il Pokémon attacca mescolando del tè e spruzzandolo, recuperando una quantità di PS pari alla metà del danno inflitto. Può anche scottare il bersaglio." + }, + "syrupBomb": { + "name": "Bomba Sciroppata", + "effect": "\tIl Pokémon fa esplodere dello sciroppo viscoso sul bersaglio, ricoprendolo e facendogli diminuire la Velocità per tre turni." + }, + "ivyCudgel": { + "name": "Clava di Liane", + "effect": "Il Pokémon colpisce con una clava avvolta da liane. Il tipo della mossa varia in base alla maschera indossata. Probabile brutto colpo." + }, + "electroShot": { + "name": "Elettroraggio", + "effect": "Il Pokémon accumula elettricità e aumenta l'Attacco Speciale al primo turno, per poi rilasciare una potente scarica al turno successivo o, se piove, immediatamente." + }, + "teraStarstorm": { + "name": "Teracluster", + "effect": "Il Pokémon elimina il bersaglio irradiando il potere dei cristalli. Se Terapagos assume la Forma Astrale, la mossa infligge danni a tutti gli avversari." + }, + "fickleBeam": { + "name": "Irregolaser", + "effect": "Il Pokémon attacca rilasciando raggi di luce. Talvolta i laser vengono emessi da tutte le teste, contribuendo a raddoppiare la potenza della mossa." + }, + "burningBulwark": { + "name": "Egida Ignea", + "effect": "Il Pokémon blocca gli attacchi avversari con la pelliccia incandescente che scotta chi entra in contatto con lui." + }, + "thunderclap": { + "name": "Saetta", + "effect": "Il Pokémon abbatte una scarica elettrica sul bersaglio prima che questi possa attaccare. La mossa fallisce se il bersaglio sferra una mossa che non è di attacco." + }, + "mightyCleave": { + "name": "Taglio Poderoso", + "effect": "Il Pokémon fende il bersaglio con la luce immagazzinata nella testa, ignorando gli effetti delle mosse protettive." + }, + "tachyonCutter": { + "name": "Tachiontaglio", + "effect": "Il Pokémon emette delle lame particellari in successione, infliggendo danni due volte di fila. Questo attacco va sempre a segno." + }, + "hardPress": { + "name": "Pressa d'Acciaio", + "effect": "Il Pokémon schiaccia il bersaglio usando i propri arti. Più PS rimangono al bersaglio, maggiore è la potenza della mossa." + }, + "dragonCheer": { + "name": "Grido del Drago", + "effect": "Il Pokémon incita gli alleati con un inno ai draghi, aumentando la probabilità che sferrino brutti colpi. Particolarmente efficace con alleati di tipo Drago." + }, + "alluringVoice": { + "name": "Ammaliavoce", + "effect": "Il Pokémon attacca sfruttando il suo canto angelico, confondendo il bersaglio se le sue statistiche sono aumentate nello stesso turno." + }, + "temperFlare": { + "name": "Rabbia Bruciante", + "effect": "Il Pokémon attacca con l'impeto di chi è pronto a tutto. Se la mossa usata al turno precedente non è andata a segno, la potenza raddoppia." + }, + "supercellSlam": { + "name": "Elettrotuffo", + "effect": "Il Pokémon si schianta sul bersaglio dopo essersi elettrificato. Se la mossa fallisce, il Pokémon subisce dei danni." + }, + "psychicNoise": { + "name": "Psicorumore", + "effect": "\tl Pokémon investe il bersaglio con insopportabili onde sonore che gli impediscono di recuperare PS con mosse, abilità o strumenti che ha con sé per due turni." + }, + "upperHand": { + "name": "Colpo di Mano", + "effect": "Il Pokémon reagisce al movimento del bersaglio e, colpendo con il palmo, lo fa tentennare. Se il bersaglio non sferra un attacco ad alta priorità, la mossa fallisce." + }, + "malignantChain": { + "name": "Intossicatena", + "effect": "Il Pokémon logora il bersaglio avvolgendolo con le sue catene fatte di veleno e iniettandogli delle tossine che possono anche iperavvelenarlo." + } +} diff --git a/src/locales/it/move.ts b/src/locales/it/move.ts deleted file mode 100644 index a2c99218cec..00000000000 --- a/src/locales/it/move.ts +++ /dev/null @@ -1,3812 +0,0 @@ -import { MoveTranslationEntries } from "#app/interfaces/locales"; - -export const move: MoveTranslationEntries = { - pound: { - name: "Botta", - effect: "Colpisce il nemico con la coda o le zampe anteriori.", - }, - karateChop: { - name: "Colpokarate", - effect: "Colpisce il nemico con un colpo netto. Probabile brutto colpo.", - }, - doubleSlap: { - name: "Doppiasberla", - effect: "Schiaffeggia il nemico da due a cinque volte di fila.", - }, - cometPunch: { - name: "Cometapugno", - effect: "Colpisce il nemico con una scarica di pugni da due a cinque volte di fila.", - }, - megaPunch: { - name: "Megapugno", - effect: "Colpisce il nemico con un pugno poderoso.", - }, - payDay: { - name: "Giornopaga", - effect: "Colpisce il nemico con una gran quantità di monete recuperabili dopo la lotta.", - }, - firePunch: { - name: "Fuocopugno", - effect: "Colpisce il nemico con un pugno ardente che può scottarlo.", - }, - icePunch: { - name: "Gelopugno", - effect: "Colpisce il nemico con un pugno di ghiaccio che può congelarlo.", - }, - thunderPunch: { - name: "Tuonopugno", - effect: "Colpisce il nemico con un pugno elettrico che può paralizzarlo.", - }, - scratch: { - name: "Graffio", - effect: "Infligge danni al nemico con artigli acuminati, duri e affilati.", - }, - viseGrip: { - name: "Presa", - effect: "Stringe il nemico in una morsa usando enormi e possenti tenaglie.", - }, - guillotine: { - name: "Ghigliottina", - effect: "Attacca il nemico con pericolose tenaglie. Se l'attacco va a segno, il nemico va subito KO.", - }, - razorWind: { - name: "Ventagliente", - effect: "Chi la usa genera un turbine al primo turno e attacca al secondo. Probabile brutto colpo.", - }, - swordsDance: { - name: "Danzaspada", - effect: "Danza frenetica che incrementa lo spirito combattivo. Chi la usa aumenta di molto il suo Attacco.", - }, - cut: { - name: "Taglio", - effect: "Attacca il nemico con artigli o falci affilate. Fuori dalla lotta si usa per tagliare piccoli alberi.", - }, - gust: { - name: "Raffica", - effect: "Infligge danni al nemico con una folata di vento sollevata dalle ali.", - }, - wingAttack: { - name: "Attacco d'Ala", - effect: "Infligge danni al nemico spiegando delle grandi ali possenti.", - }, - whirlwind: { - name: "Turbine", - effect: "Il bersaglio è spazzato via ed è costretto a lasciare il posto ad un altro. Se è selvatico, la lotta finisce.", - }, - fly: { - name: "Volo", - effect: "Chi la usa si alza in volo per attaccare al turno seguente. Fuori dalla lotta permette di volare in città già visitate.", - }, - bind: { - name: "Legatutto", - effect: "Lega e stritola il nemico per quattro o cinque turni con tentacoli o con un corpo lungo.", - }, - slam: { - name: "Schianto", - effect: "Infligge danni al nemico con una coda, una liana o simili.", - }, - vineWhip: { - name: "Frustata", - effect: "Infligge danni al nemico con liane sottili simili a fruste.", - }, - stomp: { - name: "Pestone", - effect: "Colpisce il nemico con un grosso piede e può anche farlo tentennare.", - }, - doubleKick: { - name: "Doppiocalcio", - effect: "Colpisce il nemico due volte con un paio di rapidi calci inferti con entrambi i piedi.", - }, - megaKick: { - name: "Megacalcio", - effect: "Colpisce il nemico con un calcio sferrato con la forza di muscoli poderosi.", - }, - jumpKick: { - name: "Calciosalto", - effect: "Permette di saltare in alto per attaccare con un calcio. Se non va a buon fine, chi la usa si ferisce.", - }, - rollingKick: { - name: "Calciorullo", - effect: "Chi la usa infierisce sul nemico con un calcio rotante. Può anche farlo tentennare.", - }, - sandAttack: { - name: "Turbosabbia", - effect: "Getta sabbia in faccia al nemico e ne riduce la precisione.", - }, - headbutt: { - name: "Bottintesta", - effect: "Chi la usa si lancia diritto di testa contro il nemico. Può anche far tentennare.", - }, - hornAttack: { - name: "Incornata", - effect: "Danneggia il nemico infilzandolo con un corno affilato.", - }, - furyAttack: { - name: "Furia", - effect: "Infilza il nemico con corna affilate o un becco da due a cinque volte di fila.", - }, - hornDrill: { - name: "Perforcorno", - effect: "Colpisce il nemico con un corno perforante come un trapano. Se il colpo va a segno, il nemico va KO.", - }, - tackle: { - name: "Azione", - effect: "Attacco fisico che colpisce il nemico investendolo con tutto il corpo.", - }, - bodySlam: { - name: "Corposcontro", - effect: "Chi la usa carica il nemico con tutto il corpo. Può causarne anche la paralisi.", - }, - wrap: { - name: "Avvolgibotta", - effect: "Avvolge e stritola il nemico con un corpo lungo o con piante rampicanti per quattro o cinque turni.", - }, - takeDown: { - name: "Riduttore", - effect: "Carica spericolata con tutto il corpo contro il nemico. Danneggia un po' anche chi la usa.", - }, - thrash: { - name: "Colpo", - effect: "Assale e attacca il nemico per due o tre turni, ma confonde chi la usa.", - }, - doubleEdge: { - name: "Sdoppiatore", - effect: "Carica spietata e pericolosa che danneggia molto anche chi la usa.", - }, - tailWhip: { - name: "Colpocoda", - effect: "Chi la usa agita la coda per distrarre i nemici, riducendone la Difesa.", - }, - poisonSting: { - name: "Velenospina", - effect: "Colpisce il nemico con un aculeo tossico che può anche avvelenarlo.", - }, - twineedle: { - name: "Doppio Ago", - effect: "Colpisce il nemico due volte di seguito con un paio di aghi. Può anche avvelenarlo.", - }, - pinMissile: { - name: "Missilspillo", - effect: "Il nemico viene colpito da due a cinque volte con spilli appuntiti in rapida successione.", - }, - leer: { - name: "Fulmisguardo", - effect: "Il nemico viene guardato con sguardo intimidatorio da occhi acuti. Viene ridotta la difesa dell'avversario.", - }, - bite: { - name: "Morso", - effect: "Il nemico viene morso da denti affilatissimi che possono farlo tentennare.", - }, - growl: { - name: "Ruggito", - effect: "Il Pokémon ruggisce con cattiveria. Viene ridotto l'attacco dell'avversario.", - }, - roar: { - name: "Boato", - effect: "Il bersaglio è costretto a lasciare il campo e viene sostituito. Mette fine alle lotte contro Pokémon selvatici.", - }, - sing: { - name: "Canto", - effect: "Una ninna nanna è cantata con voce calma per far addormentare il nemico.", - }, - supersonic: { - name: "Supersuono", - effect: "Chi la usa genera dal proprio corpo strane onde acustiche che possono confondere il nemico.", - }, - sonicBoom: { - name: "Sonicboom", - effect: "Il nemico viene colpito con un suono distruttivo che infligge un danno sempre 20 PS.", - }, - disable: { - name: "Inibitore", - effect: "Per quattro turni impedisce al bersaglio di riutilizzare l'ultima mossa usata.", - }, - acid: { - name: "Acido", - effect: "Colpisce i nemici intorno spruzzando un acido corrosivo. Può anche ridurne la Difesa Speciale.", - }, - ember: { - name: "Braciere", - effect: "Il Pokémon attacca con piccole fiamme. Possono scottare il nemico.", - }, - flamethrower: { - name: "Lanciafiamme", - effect: "Il nemico viene colpito da intense fiammate che possono anche scottarlo.", - }, - mist: { - name: "Nebbia", - effect: "Chi la usa attira una nebbia che blocca la riduzione alle statistiche della sua squadra per cinque turni.", - }, - waterGun: { - name: "Pistolacqua", - effect: "Il nemico è colpito da un potente getto d'acqua.", - }, - hydroPump: { - name: "Idropompa", - effect: "Il nemico è travolto da un potente getto d'acqua spruzzato ad altissima pressione.", - }, - surf: { - name: "Surf", - effect: "Un'onda enorme sommerge il campo di lotta. Fuori dalla lotta si usa per spostarsi sull'acqua.", - }, - iceBeam: { - name: "Geloraggio", - effect: "Il nemico è colpito da un raggio di energia gelida che può anche congelarlo.", - }, - blizzard: { - name: "Bora", - effect: "Colpisce i bersagli con una tremenda tempesta di ghiaccio che può anche congelarli.", - }, - psybeam: { - name: "Psicoraggio", - effect: "Il nemico è attaccato con un raggio psichico. Può anche lasciare il nemico confuso.", - }, - bubbleBeam: { - name: "Bollaraggio", - effect: "Colpisce il nemico con una forte scarica di bolle. Può anche ridurne la Velocità.", - }, - auroraBeam: { - name: "Raggiaurora", - effect: "Il nemico viene colpito da un fascio color arcobaleno. Può ridurre l'attacco dell'avversario.", - }, - hyperBeam: { - name: "Iper Raggio", - effect: "Colpisce il nemico con un potente raggio. Chi la usa salta il turno successivo per recuperare energia.", - }, - peck: { - name: "Beccata", - effect: "Colpisce il nemico con un becco appuntito o un corno.", - }, - drillPeck: { - name: "Perforbecco", - effect: "Attacco a spirale con un becco aguzzo che fa da trapano.", - }, - submission: { - name: "Sottomissione", - effect: "Chi la usa carica il nemico in modo spericolato, ma danneggia anche se stesso.", - }, - lowKick: { - name: "Colpo Basso", - effect: "Un calcio basso e potente che fa cadere il nemico. Danneggia maggiormente i nemici più pesanti.", - }, - counter: { - name: "Contrattacco", - effect: "Una mossa di ritorsione che contrasta qualsiasi attacco fisico, infliggendo il doppio dei danni subiti.", - }, - seismicToss: { - name: "Movimento Sismico", - effect: "Colpisce il bersaglio con la forza di gravità. Infligge un danno pari al livello di chi la usa.", - }, - strength: { - name: "Forza", - effect: "Colpisce il nemico con un'enorme energia. Fuori dalla lotta si usa per spostare i massi.", - }, - absorb: { - name: "Assorbimento", - effect: "Mossa che assorbe PS. Chi la usa recupera una quantità di PS pari alla metà del danno inferto.", - }, - megaDrain: { - name: "Megassorbimento", - effect: "Mossa che assorbe PS. Chi la usa recupera un quantità di PS pari alla metà del danno inferto.", - }, - leechSeed: { - name: "Parassiseme", - effect: "Vengono piantati semi sul bersaglio. Questi sottraggono PS a ogni turno permettendo a chi la usa di curarsi.", - }, - growth: { - name: "Crescita", - effect: "Provoca la crescita immediata del corpo e l'aumento dell'Attacco e dell'Attacco Speciale di chi la usa.", - }, - razorLeaf: { - name: "Foglielama", - effect: "Foglie taglienti sferzano i nemici intorno. Probabile brutto colpo.", - }, - solarBeam: { - name: "Solarraggio", - effect: "Chi la usa assorbe luce al primo turno per proiettare un raggio intenso al turno successivo.", - }, - poisonPowder: { - name: "Velenpolvere", - effect: "Una nube di polvere velenosa è sparsa sul nemico. Può avvelenare il bersaglio.", - }, - stunSpore: { - name: "Paralizzante", - effect: "Investe il bersaglio con una nuvola di polvere che paralizza.", - }, - sleepPowder: { - name: "Sonnifero", - effect: "Investe il bersaglio con una grande nuvola di polvere soporifera che lo fa addormentare.", - }, - petalDance: { - name: "Petalodanza", - effect: "Attacca il nemico cospargendolo di petali per due o tre turni, ma chi la usa rimane confuso.", - }, - stringShot: { - name: "Millebave", - effect: "Chi la usa produce della seta che avvolge i nemici e ne riduce la Velocità.", - }, - dragonRage: { - name: "Ira di Drago", - effect: "Colpisce il nemico con un'onda d'urto generata dall'ira. Questo attacco provoca sempre un danno di 40 PS.", - }, - fireSpin: { - name: "Turbofuoco", - effect: "Intrappola il bersaglio in un turbine di fuoco che dura per quattro o cinque turni.", - }, - thunderShock: { - name: "Tuonoshock", - effect: "Danneggia il bersaglio con una scarica elettrica che può anche paralizzarlo.", - }, - thunderbolt: { - name: "Fulmine", - effect: "Il bersaglio viene colpito da una potente scarica elettrica che può anche paralizzarlo.", - }, - thunderWave: { - name: "Tuononda", - effect: "Il nemico viene colpito da una debole scarica elettrica che, se va a segno, ne causa la paralisi.", - }, - thunder: { - name: "Tuono", - effect: "Il nemico è colpito da un lampo molto violento che può anche paralizzarlo.", - }, - rockThrow: { - name: "Sassata", - effect: "Chi la usa solleva una roccia e la lancia contro il nemico.", - }, - earthquake: { - name: "Terremoto", - effect: "Chi la usa provoca un potente sisma che colpisce gli altri Pokémon in campo.", - }, - fissure: { - name: "Abisso", - effect: "Chi la usa crea una spaccatura nel terreno e cerca di gettarvici dentro il nemico. Se va a segno, il nemico va KO.", - }, - dig: { - name: "Fossa", - effect: "Chi la usa scava al primo turno e attacca al successivo. Fuori dalla lotta fa uscire da alcuni luoghi.", - }, - toxic: { - name: "Tossina", - effect: "Una mossa che lascia l'obiettivo gravemente avvelenato. Il danno da veleno peggiora ad ogni turno.", - }, - confusion: { - name: "Confusione", - effect: "Colpisce il nemico con una leggera forza telecinetica e può anche confonderlo.", - }, - psychic: { - name: "Psichico", - effect: "Il nemico viene colpito da una potente forza telecinetica che può anche ridurne la Difesa Speciale.", - }, - hypnosis: { - name: "Ipnosi", - effect: "Chi la usa si avvale della suggestione ipnotica per far addormentare il nemico.", - }, - meditate: { - name: "Meditazione", - effect: "Il Pokémon medita risvegliando il potere nel profondo del suo corpo ed aumentando il suo Attacco.", - }, - agility: { - name: "Agilità", - effect: "Chi la usa rilassa e alleggerisce il proprio corpo per far salire di molto la Velocità.", - }, - quickAttack: { - name: "Attacco Rapido", - effect: "Chi la usa colpisce sempre per primo e ad una tale velocità da rendersi quasi invisibile.", - }, - rage: { - name: "Ira", - effect: "Questa mossa ha il potere di aumentare la statistica Attacco ogni volta che chi la usa viene colpito durante una lotta.", - }, - teleport: { - name: "Teletrasporto", - effect: "Fa fuggire dai Pokémon selvatici. Fuori dalla lotta porta all'ultimo Centro Pokémon visitato.", - }, - nightShade: { - name: "Ombra Notturna", - effect: "Fa apparire un orribile miraggio al nemico e infligge un danno pari al livello di chi la usa.", - }, - mimic: { - name: "Mimica", - effect: "Copia l'ultima mossa usata dal bersaglio. La mossa copiata si può utilizzare fino alla sostituzione del Pokémon.", - }, - screech: { - name: "Stridio", - effect: "Stridio assordante che riduce di molto la Difesa del nemico.", - }, - doubleTeam: { - name: "Doppioteam", - effect: "Chi la usa si muove in fretta e crea copie illusorie di se stesso che aumentano la capacità di elusione.", - }, - recover: { - name: "Ripresa", - effect: "Una mossa di auto-guarigione. Il Pokémon ripristina i suoi PS fino a metà dei suoi PS massimi.", - }, - harden: { - name: "Rafforzatore", - effect: "Tutti i muscoli del corpo si tonificano per aumentare la Difesa.", - }, - minimize: { - name: "Minimizzato", - effect: "Il corpo di chi la usa si comprime e diventa più piccolo. La sua capacità di elusione aumenta di molto.", - }, - smokescreen: { - name: "Muro di Fumo", - effect: "Il Pokémon rilascia un'oscura cortina di fumo che riduce la precisione del nemico.", - }, - confuseRay: { - name: "Stordiraggio", - effect: "Il nemico è colpito da un raggio sinistro che lo confonde.", - }, - withdraw: { - name: "Ritirata", - effect: "Il corpo si ritira nel suo duro guscio per aumentare la Difesa.", - }, - defenseCurl: { - name: "Ricciolscudo", - effect: "Chi la usa si raggomitola per nascondere i punti deboli e aumentare la propria Difesa.", - }, - barrier: { - name: "Barriera", - effect: "Innalza una barriera resistente che aumenta molto la Difesa.", - }, - lightScreen: { - name: "Schermoluce", - effect: "Innalza una barriera di luce fantastica per ridurre i danni degli attacchi speciali alla squadra per cinque turni.", - }, - haze: { - name: "Nube", - effect: "Chi la usa crea una nube nera che annulla ogni modifica delle statistiche di tutti i Pokémon in campo.", - }, - reflect: { - name: "Riflesso", - effect: "Innalza una barriera di luce fantastica per ridurre i danni degli attacchi fisici alla squadra per cinque turni.", - }, - focusEnergy: { - name: "Focalenergia", - effect: "Chi la usa fa un profondo respiro e si concentra per rendere più probabili i brutti colpi.", - }, - bide: { - name: "Pazienza", - effect: "Chi la usa subisce attacchi per due turni e poi restituisce il danno moltiplicato per due.", - }, - metronome: { - name: "Metronomo", - effect: "Il Pokémon fa di no con il dito e stimola il cervello a usare a caso una delle tante mosse esistenti.", - }, - mirrorMove: { - name: "Speculmossa", - effect: "Chi la usa colpisce il bersaglio copiandone l'ultima mossa usata.", - }, - selfDestruct: { - name: "Autodistruzione", - effect: "Chi la usa esplode e infligge danni agli altri Pokémon in campo, ma poi va KO.", - }, - eggBomb: { - name: "Uovobomba", - effect: "Colpisce il nemico con un grande uovo scaraventato con enorme forza.", - }, - lick: { - name: "Leccata", - effect: "Una lingua lunga infligge danni al nemico e può anche paralizzarlo.", - }, - smog: { - name: "Smog", - effect: "Colpisce il nemico con una scarica di gas maleodoranti. Può anche avvelenarlo.", - }, - sludge: { - name: "Fango", - effect: "Lancio di fango malsano che arreca danno al nemico. Può anche avvelenarlo.", - }, - boneClub: { - name: "Ossoclava", - effect: "Il Pokémon colpisce il nemico con un bastone d'osso. Può anche fare tentennare l'obiettivo.", - }, - fireBlast: { - name: "Fuocobomba", - effect: "Investe il nemico con un'intensa fiammata che fa terra bruciata. Può anche scottarlo.", - }, - waterfall: { - name: "Cascata", - effect: "Carica il nemico a grande velocità e può farlo tentennare. Fuori dalla lotta fa risalire le cascate.", - }, - clamp: { - name: "Tenaglia", - effect: "Chi la usa intrappola e stritola il nemico con la sua corazza spessa e forte per quattro o cinque turni.", - }, - swift: { - name: "Comete", - effect: "Colpisce i nemici con raggi a forma di stella. Questo attacco è infallibile.", - }, - skullBash: { - name: "Capocciata", - effect: "Chi la usa ritira la testa per aumentare la Difesa e poi attacca al turno successivo.", - }, - spikeCannon: { - name: "Sparalance", - effect: "Il nemico viene colpito da due a cinque volte in rapida successione da spilli appuntiti.", - }, - constrict: { - name: "Limitazione", - effect: "Colpisce il nemico con lunghi tentacoli o piante rampicanti. Può anche ridurne la Velocità.", - }, - amnesia: { - name: "Amnesia", - effect: "Vuoto di memoria che aumenta esponenzialmente la difesa speciale.", - }, - kinesis: { - name: "Cinèsi", - effect: "Chi la usa distrae il bersaglio piegando un cucchiaio e ne riduce la precisione.", - }, - softBoiled: { - name: "Covauova", - effect: "Chi la usa recupera metà dei propri PS massimi. Fuori dalla lotta può anche far trasferire PS ai propri compagni.", - }, - highJumpKick: { - name: "Calcinvolo", - effect: "Chi la usa colpisce il nemico con una ginocchiata in volo: se fallisce, subisce danni.", - }, - glare: { - name: "Sguardo Feroce", - effect: "Chi la usa spaventa il nemico con uno sguardo terrificante e ne causa la paralisi.", - }, - dreamEater: { - name: "Mangiasogni", - effect: "Attacco che funziona solo su un nemico che dorme. Chi lo usa riceve metà dei PS persi dal nemico.", - }, - poisonGas: { - name: "Velenogas", - effect: "Spruzza in faccia al nemico una nuvola di gas tossico che avvelena.", - }, - barrage: { - name: "Attacco Pioggia", - effect: "Piovono enormi sfere sulla testa del nemico da due a cinque volte di fila.", - }, - leechLife: { - name: "Sanguisuga", - effect: "Mossa succhiasangue. Chi la usa recupera una quantità di PS pari alla metà del danno inferto.", - }, - lovelyKiss: { - name: "Demonbacio", - effect: "Chi la usa intimidisce il bersaglio con una faccia paurosa e gli schiocca un bacio che lo fa addormentare.", - }, - skyAttack: { - name: "Aeroattacco", - effect: "Un attacco in due turni e probabile brutto colpo. Può anche far tentennare il nemico.", - }, - transform: { - name: "Trasformazione", - effect: "Chi la usa si trasforma in una copia esatta del bersaglio per sfruttarne le caratteristiche.", - }, - bubble: { - name: "Bolla", - effect: "Uno spruzzo di bolle viene lanciato sul nemico. Può ridurne la velocità.", - }, - dizzyPunch: { - name: "Stordipugno", - effect: "Colpisce il bersaglio con una sequenza di pugni che può anche confonderlo.", - }, - spore: { - name: "Spora", - effect: "Nube di spore che fa sempre addormentare il bersaglio.", - }, - flash: { - name: "Flash", - effect: "Il Pokémon usa un lampo di luce contro il nemico riducendone la precisione. Può essere usata per illuminare luoghi oscuri.", - }, - psywave: { - name: "Psiconda", - effect: "Il nemico è attaccato con una strana onda di energia. L'intensità dell'attacco è variabile.", - }, - splash: { - name: "Splash", - effect: "Chi la usa sguazza nell'acqua, senza ottenere alcun effetto.", - }, - acidArmor: { - name: "Scudo Acido", - effect: "Il Pokémon modifica la sua struttura cellulare liquefandosi, per aumentare esponenzialmente la sua difesa.", - }, - crabhammer: { - name: "Martellata", - effect: "Colpisce il nemico con una grande tenaglia. Probabile brutto colpo.", - }, - explosion: { - name: "Esplosione", - effect: "Chi la usa esplode per infliggere danni agli altri Pokémon attorno, ma va KO.", - }, - furySwipes: { - name: "Sfuriate", - effect: "Colpisce il nemico con artigli o falci affilate da due a cinque volte in rapida successione.", - }, - bonemerang: { - name: "Ossomerang", - effect: "Chi la usa lancia l'osso che tiene. L'osso colpisce due volte e ritorna come un vero e proprio boomerang.", - }, - rest: { - name: "Riposo", - effect: "Il Pokémon si addormenta per due turni per curare tutti i PS e qualsiasi problema di stato.", - }, - rockSlide: { - name: "Frana", - effect: "I nemici vengono colpiti da grandi massi che possono anche farli tentennare.", - }, - hyperFang: { - name: "Iperzanna", - effect: "Il Pokémon morde il nemico con zanne taglienti. Può anche farlo tentennare.", - }, - sharpen: { - name: "Affilatore", - effect: "Chi la usa riduce il numero di poligoni sul proprio corpo per accentuarne gli spigoli e aumentare l'Attacco.", - }, - conversion: { - name: "Conversione", - effect: "Il tipo di chi la usa muta in quello di una sua mossa a caso.", - }, - triAttack: { - name: "Tripletta", - effect: "Colpisce il nemico con tre sfere simultanee che possono anche paralizzarlo, scottarlo o congelarlo.", - }, - superFang: { - name: "Superzanna", - effect: "Chi la usa salta sul nemico azzannandolo con i suoi incisivi affilati e facendogli perdere metà dei PS.", - }, - slash: { - name: "Lacerazione", - effect: "Attacca il nemico con artigli, falci o altro. Probabile brutto colpo.", - }, - substitute: { - name: "Sostituto", - effect: "Chi la usa crea una copia di se stesso usando alcuni PS. La copia serve come esca per il nemico.", - }, - struggle: { - name: "Scontro", - effect: "Mossa da usare solo in caso estremo, quando non si hanno più PP. Danneggia anche chi la usa.", - }, - sketch: { - name: "Schizzo", - effect: "Permette a chi la usa di imparare l'ultima mossa usata dal bersaglio. La nuova mossa appresa sostituisce Schizzo.", - }, - tripleKick: { - name: "Triplocalcio", - effect: "Chi la usa esegue fino a tre calci consecutivi la cui potenza aumenta ad ogni colpo.", - }, - thief: { - name: "Furto", - effect: "Il Pokémon attacca e contemporaneamente ruba lo strumento tenuto dal nemico. Non ruberà nulla, se si possiede già uno strumento.", - }, - spiderWeb: { - name: "Ragnatela", - effect: "Copre il nemico con un filo di seta sottile e appiccicoso. Il nemico non può fuggire.", - }, - mindReader: { - name: "Leggimente", - effect: "Il Pokémon percepisce i movimenti del nemico con la mente per garantire il successo della mossa successiva.", - }, - nightmare: { - name: "Incubo", - effect: "Il nemico addormentato ha un incubo e perde PS ad ogni turno.", - }, - flameWheel: { - name: "Ruotafuoco", - effect: "Il Pokémon si avvolge nel fuoco e carica il nemico. Può scottare.", - }, - snore: { - name: "Russare", - effect: "Mossa da usare solo mentre si dorme. Il chiasso assordante può anche far tentennare il nemico.", - }, - curse: { - name: "Maledizione", - effect: "Una mossa che agisce in modo diverso se chi la usa è di tipo Spettro.", - }, - flail: { - name: "Flagello", - effect: "Chi la usa si dimena per attaccare. È più efficace se i suoi PS sono bassi.", - }, - conversion2: { - name: "Conversione2", - effect: "Chi la usa cambia tipo per rendersi resistente al tipo dell'ultima mossa usata dal bersaglio.", - }, - aeroblast: { - name: "Aerocolpo", - effect: "Colpisce il nemico con un vortice d'aria per danneggiarlo. Probabile brutto colpo.", - }, - cottonSpore: { - name: "Cottonspora", - effect: "Rilascia spore simili al cotone che si attaccano ai nemici nei paraggi e ne riducono di molto la Velocità.", - }, - reversal: { - name: "Contropiede", - effect: "Chi la usa attacca con tutte le sue forze. Più i PS sono bassi, maggiore è la potenza di questa mossa.", - }, - spite: { - name: "Dispetto", - effect: "Chi la usa sfoga la propria rabbia sull'ultima mossa usata dal bersaglio e le sottrae quattro PP.", - }, - powderSnow: { - name: "Polneve", - effect: "Attacca il nemico con una raffica di neve farinosa e può anche congelarlo.", - }, - protect: { - name: "Protezione", - effect: "Permette di eludere tutti gli attacchi. Se usata in successione può fallire.", - }, - machPunch: { - name: "Pugnorapido", - effect: "Chi la usa tira un pugno a velocità impressionante e colpisce di sicuro per primo.", - }, - scaryFace: { - name: "Visotruce", - effect: "Chi la usa spaventa il nemico con una faccia terribile e ne riduce di molto la Velocità.", - }, - feintAttack: { - name: "Finta", - effect: "Chi la usa si avvicina al nemico facendo finta di niente, per poi scagliare un pugno infallibile a tradimento.", - }, - sweetKiss: { - name: "Dolcebacio", - effect: "Chi la usa bacia il nemico con una dolcezza angelica, confondendolo.", - }, - bellyDrum: { - name: "Panciamburo", - effect: "Chi la usa massimizza l'Attacco in cambio di metà dei PS massimi.", - }, - sludgeBomb: { - name: "Fangobomba", - effect: "Chi la usa attacca lanciando fango sul bersaglio. Può anche avvelenarlo.", - }, - mudSlap: { - name: "Fangosberla", - effect: "Chi la usa butta fango in faccia al nemico per arrecargli danni e ridurne la precisione.", - }, - octazooka: { - name: "Octazooka", - effect: "Chi la usa spruzza del'inchiostro in faccia al nemico. Può anche ridurne la precisione.", - }, - spikes: { - name: "Punte", - effect: "Chi la usa piazza sul terreno una trappola di punte che danneggia i nemici quando scendono in campo.", - }, - zapCannon: { - name: "Falcecannone", - effect: "Chi la usa provoca un'esplosione elettrica che infligge danni e paralizza il nemico.", - }, - foresight: { - name: "Preveggenza", - effect: "Chi la usa rende i Pokémon di tipo Spettro vulnerabili a qualsiasi tipo di mossa e può, inoltre, colpire i nemici sfuggenti.", - }, - destinyBond: { - name: "Destinobbligato", - effect: "Se chi la usa va KO prima del proprio turno, chi ha sferrato il colpo da KO fa la stessa fine.", - }, - perishSong: { - name: "Ultimocanto", - effect: "Ogni Pokémon che sente questo canto va KO in tre turni, se non lo si sostituisce.", - }, - icyWind: { - name: "Ventogelato", - effect: "Chi la usa attacca i nemici con una folata di aria gelida e ne riduce anche la Velocità.", - }, - detect: { - name: "Individua", - effect: "Consente al Pokémon di evitare tutti gli attacchi. Può fallire se usato in successione.", - }, - boneRush: { - name: "Ossoraffica", - effect: "Chi la usa colpisce il nemico con un osso duro, da 2 a 5 volte di fila.", - }, - lockOn: { - name: "Localizza", - effect: "Chi la usa punta il nemico con precisione. La mossa successiva andrà a segno.", - }, - outrage: { - name: "Oltraggio", - effect: "Chi la usa sfoga la sua ira e attacca il nemico per due o tre turni prima di essere lasciato in preda alla confusione.", - }, - sandstorm: { - name: "Terrempesta", - effect: "Causa una tempesta di sabbia per cinque turni che danneggia tutti i tipi in campo esclusi Terra, Roccia e Acciaio.", - }, - gigaDrain: { - name: "Gigassorbimento", - effect: "Mossa che assorbe PS. Chi la usa recupera un quantità di PS pari alla metà del danno inferto.", - }, - endure: { - name: "Resistenza", - effect: "Chi la usa resta con un PS anche se subisce un colpo da KO in quel turno. Usata in successione può fallire.", - }, - charm: { - name: "Fascino", - effect: "Ammalia il nemico con lo sguardo per renderlo meno cauto. Riduce molto l'Attacco del nemico.", - }, - rollout: { - name: "Rotolamento", - effect: "Chi la usa colpisce il nemico rotolando per cinque turni, con aumento progressivo della potenza ogni volta che va a segno.", - }, - falseSwipe: { - name: "Falsofinale", - effect: "Chi la usa trattiene il colpo per impedire al nemico di andare KO, lasciandolo con almeno un PS.", - }, - swagger: { - name: "Bullo", - effect: "Chi la usa provoca il bersaglio e lo confonde, facendo aumentare però di molto il suo Attacco.", - }, - milkDrink: { - name: "Buonlatte", - effect: "Chi la usa recupera metà dei propri PS massimi. Fuori dalla lotta può anche far trasferire PS ai propri compagni.", - }, - spark: { - name: "Scintilla", - effect: "Colpisce il nemico con una carica elettrica e può anche paralizzarlo.", - }, - furyCutter: { - name: "Tagliofuria", - effect: "Colpisce il nemico con falci o artigli. Se usata in successione aumenta di potenza ogni volta che va a segno.", - }, - steelWing: { - name: "Alacciaio", - effect: "Colpisce il nemico con ali d'acciaio. Può anche aumentare la Difesa di chi la usa.", - }, - meanLook: { - name: "Malosguardo", - effect: "Chi la usa blocca il nemico con uno sguardo oscuro e ammaliante, impedendogli la fuga.", - }, - attract: { - name: "Attrazione", - effect: "Se il nemico è del sesso opposto, s'infatua e attacca con meno probabilità.", - }, - sleepTalk: { - name: "Sonnolalia", - effect: "Chi la usa sfodera a caso una delle proprie mosse mentre sta dormendo.", - }, - healBell: { - name: "Rintoccasana", - effect: "Chi la usa fa suonare le campane per curare completamente tutta la squadra.", - }, - return: { - name: "Ritorno", - effect: "Mossa che diventa tanto più potente quanto maggiore è il grado di affezione del Pokémon per il proprio Allenatore.", - }, - present: { - name: "Regalino", - effect: "Chi la usa dà un regalo bomba al bersaglio. A volte, però, può fargli recuperare PS.", - }, - frustration: { - name: "Frustrazione", - effect: "Mossa che diventa tanto più potente quanto minore è il grado di affezione del Pokémon per il proprio Allenatore.", - }, - safeguard: { - name: "Salvaguardia", - effect: "Chi la usa crea un campo protettivo che difende tutta la squadra dai problemi di stato per cinque turni.", - }, - painSplit: { - name: "Malcomune", - effect: "Chi la usa somma i propri PS a quelli di un altro Pokémon per poi dividerli in parti uguali.", - }, - sacredFire: { - name: "Magifuoco", - effect: "Colpisce il nemico con un fuoco mistico di enorme intensità che può anche causargli una scottatura.", - }, - magnitude: { - name: "Magnitudo", - effect: "Chi la usa scatena un terremoto d'intensità variabile che danneggia gli altri Pokémon in campo.", - }, - dynamicPunch: { - name: "Dinamipugno", - effect: "Colpisce il nemico con un pugno davvero forte. Se va a segno, lo confonde.", - }, - megahorn: { - name: "Megacorno", - effect: "Chi la usa utilizza il suo corno per montare con grande forza il nemico.", - }, - dragonBreath: { - name: "Dragospiro", - effect: "Investe il nemico con una raffica potentissima che arreca danni. Può anche paralizzarlo.", - }, - batonPass: { - name: "Staffetta", - effect: "Chi la usa è sostituito da un Pokémon della squadra, che eredita anche ogni modifica alle statistiche.", - }, - encore: { - name: "Ripeti", - effect: "Chi la usa costringe il nemico a continuare ad utilizzare solo l'ultima mossa utilizzata da 2 a 6 turni.", - }, - pursuit: { - name: "Inseguimento", - effect: "Una mossa d'attacco che infligge un danno doppio se il nemico è in fase di sostituzione.", - }, - rapidSpin: { - name: "Rapigiro", - effect: "Un attacco roteante che elimina gli effetti delle mosse Legatutto, Avvolgibotta, Parassiseme e Punte.", - }, - sweetScent: { - name: "Profumino", - effect: "Un dolce profumo che alletta il nemico per ridurne l'elusione. Attira anche Pokémon selvatici.", - }, - ironTail: { - name: "Codacciaio", - effect: "Il nemico viene colpito da una robusta coda d'acciaio. Può anche ridurne la Difesa.", - }, - metalClaw: { - name: "Ferrartigli", - effect: "Colpisce il nemico con artigli d'acciaio. Può anche aumentare l'Attacco di chi la usa.", - }, - vitalThrow: { - name: "Vitaltiro", - effect: "Chi la usa attacca per ultimo, ma il colpo è sempre infallibile.", - }, - morningSun: { - name: "Mattindoro", - effect: "Chi la usa recupera PS. Il numero di PS recuperati dipende dalle condizioni atmosferiche.", - }, - synthesis: { - name: "Sintesi", - effect: "Chi la usa recupera PS. Il numero di PS recuperati dipende dalle condizioni atmosferiche.", - }, - moonlight: { - name: "Lucelunare", - effect: "Chi la usa recupera PS. Il numero di PS recuperati dipende dalle condizioni atmosferiche.", - }, - hiddenPower: { - name: "Introforza", - effect: "Mossa singolare che cambia tipo e potenza a seconda del Pokémon che la usa.", - }, - crossChop: { - name: "Incrocolpo", - effect: "Investe il nemico con un colpo sferrato con entrambe le braccia incrociate. Probabile brutto colpo.", - }, - twister: { - name: "Tornado", - effect: "Un potente tornado si abbatte sul nemico. Può anche far tentennare.", - }, - rainDance: { - name: "Pioggiadanza", - effect: "Chi la usa provoca una forte pioggia per cinque turni, potenziando le mosse di tipo Acqua.", - }, - sunnyDay: { - name: "Giornodisole", - effect: "Chi la usa intensifica i raggi solari per cinque turni, potenziando le mosse di tipo Fuoco.", - }, - crunch: { - name: "Sgranocchio", - effect: "Il nemico viene morso con denti affilati. Può anche ridurne la Difesa.", - }, - mirrorCoat: { - name: "Specchiovelo", - effect: "Mossa che replica ogni attacco speciale, arrecando il doppio del danno ricevuto.", - }, - psychUp: { - name: "Psicamisù", - effect: "Chi la usa s'ipnotizza per copiare ogni modifica alle statistiche del bersaglio.", - }, - extremeSpeed: { - name: "Extrarapido", - effect: "Chi la usa carica il nemico a velocità impressionante ed attacca sempre per primo.", - }, - ancientPower: { - name: "Forzantica", - effect: "Colpisce il nemico con una forza primordiale. Può aumentare tutte le statistiche.", - }, - shadowBall: { - name: "Palla Ombra", - effect: "Lancia sul nemico una sfera nera. Può anche ridurne la Difesa Speciale.", - }, - futureSight: { - name: "Divinazione", - effect: "Due turni dopo l'utilizzo di questa mossa, il nemico viene attaccato con energia psichica.", - }, - rockSmash: { - name: "Spaccaroccia", - effect: "Il nemico viene colpito da un pugno in grado di frantumare anche la roccia. Può anche ridurne la Difesa.", - }, - whirlpool: { - name: "Mulinello", - effect: "Intrappola il nemico in un turbine d'acqua che dura per quattro o cinque turni infliggendogli dei danni ogni turno.", - }, - beatUp: { - name: "Picchiaduro", - effect: "Chi la usa chiama in aiuto i Pokémon della squadra: più ce ne sono, maggiore è il numero di attacchi.", - }, - fakeOut: { - name: "Bruciapelo", - effect: "Mossa che fa agire per primo e fa tentennare il nemico. Funziona solo appena sceso in campo.", - }, - uproar: { - name: "Baraonda", - effect: "Chi la usa attacca per tre turni con un frastuono che non fa dormire nessuno.", - }, - stockpile: { - name: "Accumulo", - effect: "Chi la usa accumula energia aumentando la Difesa e la Difesa Speciale. Si può utilizzare tre volte.", - }, - spitUp: { - name: "Sfoghenergia", - effect: "Tutta l'energia accumulata in precedenza con Accumulo è rilasciata nell'attacco. Maggiore è l'energia, più danni si arrecano.", - }, - swallow: { - name: "Introenergia", - effect: "Chi la usa assorbe l'energia raccolta con la mossa Accumulo e recupera PS. Maggiore è l'energia, più PS si recuperano.", - }, - heatWave: { - name: "Ondacalda", - effect: "Chi la usa investe i nemici con una folata di vento caldo. Può anche scottare.", - }, - hail: { - name: "Grandine", - effect: "Chi la usa causa una grandinata che dura cinque turni. Danneggia tutti i Pokémon tranne quelli di tipo Ghiaccio.", - }, - torment: { - name: "Attaccalite", - effect: "Chi la usa tormenta e fa infuriare il nemico, impedendogli di usare la stessa mossa due volte di seguito.", - }, - flatter: { - name: "Adulazione", - effect: "Adula il bersaglio e lo confonde, ma ne aumenta l'Attacco Speciale.", - }, - willOWisp: { - name: "Fuocofatuo", - effect: "Fiamme intense di colore viola causano una scottatura al nemico.", - }, - memento: { - name: "Memento", - effect: "Chi la usa va KO. Tuttavia, riduce di molto l'Attacco e l'Attacco Speciale del nemico.", - }, - facade: { - name: "Facciata", - effect: "Mossa d'attacco che raddoppia la potenza se chi la usa è scottato, avvelenato o paralizzato.", - }, - focusPunch: { - name: "Centripugno", - effect: "Chi la usa prende la mira prima di sferrare un pugno. Fallirà se verrà colpito prima di eseguire la mossa.", - }, - smellingSalts: { - name: "Maniereforti", - effect: "Infligge un danno doppio ad un bersaglio paralizzato, ma ne cura anche la paralisi.", - }, - followMe: { - name: "Sonoqui", - effect: "Chi la usa attrae l'attenzione su di sé, costringendo i nemici a sceglierlo sempre come bersaglio.", - }, - naturePower: { - name: "Naturforza", - effect: "Mossa che fa uso della forza della natura. Il suo effetto varia in base all'ambiente.", - }, - charge: { - name: "Sottocarica", - effect: "Potenzia la mossa di tipo Elettro usata subito dopo. Aumenta anche la Difesa Speciale di chi la usa.", - }, - taunt: { - name: "Provocazione", - effect: "Provoca il nemico, inducendolo ad usare solo mosse d'attacco per tre turni.", - }, - helpingHand: { - name: "Altruismo", - effect: "Mossa che aumenta la potenza dell'attacco di un alleato.", - }, - trick: { - name: "Raggiro", - effect: "Chi la usa coglie il bersaglio in contropiede e l'obbliga a cambiare il suo strumento con il proprio.", - }, - rolePlay: { - name: "Giocodiruolo", - effect: "Chi la usa mima in tutto il bersaglio, copiandone l'abilità.", - }, - wish: { - name: "Desiderio", - effect: "Permette di recuperare metà dei PS massimi al turno successivo.", - }, - assist: { - name: "Assistente", - effect: "Chi la usa utilizza in fretta e a caso una delle mosse degli altri Pokémon della squadra.", - }, - ingrain: { - name: "Radicamento", - effect: "Chi la usa mette delle radici che gli fanno recuperare PS a ogni turno. Non può essere sostituito.", - }, - superpower: { - name: "Troppoforte", - effect: "Chi la usa attacca il nemico con grande forza, ma il suo Attacco e la sua Difesa diminuiscono.", - }, - magicCoat: { - name: "Magivelo", - effect: "Una barriera rimanda al mittente l'effetto di mosse come Parassiseme e di mosse che influenzano lo stato.", - }, - recycle: { - name: "Riciclo", - effect: "Chi la usa ricicla uno strumento tenuto, già usato nella lotta, e lo può riutilizzare.", - }, - revenge: { - name: "Vendetta", - effect: "Mossa d'attacco che infligge un danno doppio se si è stati colpiti dal nemico nello stesso turno.", - }, - brickBreak: { - name: "Breccia", - effect: "Colpisce il nemico con una mano e rompe barriere come Riflesso e Schermoluce.", - }, - yawn: { - name: "Sbadiglio", - effect: "Chi la usa fa un grande sbadiglio che addormenta il nemico al turno seguente.", - }, - knockOff: { - name: "Privazione", - effect: "Attacco che blocca anche lo strumento tenuto dal nemico, impedendone l'uso nella lotta.", - }, - endeavor: { - name: "Rimonta", - effect: "Attacco che riduce i PS del nemico a una quantità pari ai PS di chi la usa.", - }, - eruption: { - name: "Eruzione", - effect: "Attacco impetuoso ed esplosivo la cui potenza è proporzionale ai PS di chi lo usa.", - }, - skillSwap: { - name: "Baratto", - effect: "Chi la usa sfrutta le sue facoltà mentali per scambiare l'abilità con il bersaglio.", - }, - imprison: { - name: "Esclusiva", - effect: "Chi la usa impedisce al nemico di usare mosse che conoscono entrambi.", - }, - refresh: { - name: "Rinfrescata", - effect: "Chi la usa riposa per curarsi da avvelenamento, paralisi e scottatura.", - }, - grudge: { - name: "Rancore", - effect: "Se chi la usa va KO, i PP della mossa nemica che lo ha messo fuori gioco si azzerano.", - }, - snatch: { - name: "Scippo", - effect: "Chi la usa ruba e utilizza la mossa curativa o modifica-statistiche che il bersaglio stava per usare.", - }, - secretPower: { - name: "Forzasegreta", - effect: "Attacco che può avere un effetto aggiuntivo a seconda del luogo in cui si trova chi lo usa.", - }, - dive: { - name: "Sub", - effect: "Chi la usa si tuffa in acqua per emergere e attaccare al turno seguente. Fuori dalla lotta permette di immergersi sott'acqua.", - }, - armThrust: { - name: "Sberletese", - effect: "Raffica di ceffoni che colpisce da due a cinque volte di fila.", - }, - camouflage: { - name: "Camuffamento", - effect: "Modifica il tipo di chi la usa a seconda del luogo, ad esempio sull'acqua, nell'erba o in una grotta.", - }, - tailGlow: { - name: "Codadiluce", - effect: "Chi la usa fissa una luce forte per concentrarsi e aumentare moltissimo l'Attacco Speciale.", - }, - lusterPurge: { - name: "Abbagliante", - effect: "Chi la usa scatena un'esplosione abbagliante che può anche ridurre la Difesa Speciale del Pokémon colpito.", - }, - mistBall: { - name: "Foschisfera", - effect: "Una sfera coperta di nebbia danneggia il nemico. Può anche ridurre l'Attacco Speciale.", - }, - featherDance: { - name: "Danzadipiume", - effect: "Chi la usa copre il nemico con un manto di piume che riduce di molto il suo Attacco.", - }, - teeterDance: { - name: "Strampadanza", - effect: "Chi la usa esegue una danza goffa che confonde tutti i Pokémon attorno.", - }, - blazeKick: { - name: "Calciardente", - effect: "Chi la usa tira un calcio. Probabile brutto colpo. Può anche causare una scottatura.", - }, - mudSport: { - name: "Fangata", - effect: "Chi la usa si ricopre di fango indebolendo le mosse di tipo Elettro finché resta in campo.", - }, - iceBall: { - name: "Palla Gelo", - effect: "Chi la usa attacca il nemico rotolando per cinque turni, con aumento progressivo della potenza ogni volta che va a segno.", - }, - needleArm: { - name: "Pugnospine", - effect: "Chi la usa attacca colpendo il bersaglio con i suoi arti pieni di spine. Può far tentennare il Pokémon colpito.", - }, - slackOff: { - name: "Pigro", - effect: "Chi la usa si rilassa recuperando metà dei propri PS massimi.", - }, - hyperVoice: { - name: "Granvoce", - effect: "Chi la usa lancia un urlo straziante che danneggia i nemici.", - }, - poisonFang: { - name: "Velenodenti", - effect: "Chi la usa morde il nemico con denti avvelenati che possono anche iperavvelenarlo.", - }, - crushClaw: { - name: "Tritartigli", - effect: "Colpisce il nemico con artigli robusti e affilati che possono ridurne la Difesa.", - }, - blastBurn: { - name: "Incendio", - effect: "Potente esplosione che danneggia il nemico, ma fa saltare il turno successivo a chi la provoca.", - }, - hydroCannon: { - name: "Idrocannone", - effect: "Colpisce il nemico con un potente getto d'acqua. Chi la usa salta il turno successivo.", - }, - meteorMash: { - name: "Meteorpugno", - effect: "Colpisce il nemico con un pugno veloce come una meteora. Può far pure salire l'Attacco di chi la usa.", - }, - astonish: { - name: "Sgomento", - effect: "Chi la usa attacca il bersaglio emettendo un verso terrificante. Può anche farlo tentennare.", - }, - weatherBall: { - name: "Palla Clima", - effect: "Mossa d'attacco che varia tipo e forza in base alle condizioni atmosferiche.", - }, - aromatherapy: { - name: "Aromaterapia", - effect: "Chi la usa rilascia un dolce profumo che cura tutti problemi di stato propri e degli alleati.", - }, - fakeTears: { - name: "Falselacrime", - effect: "Chi la usa inscena un pianto teatrale per commuovere il nemico. Ne riduce di molto la Difesa Speciale.", - }, - airCutter: { - name: "Aerasoio", - effect: "Chi la usa provoca un vento tagliente che sferza i nemici. Probabile brutto colpo.", - }, - overheat: { - name: "Vampata", - effect: "Chi la usa sferra un potente attacco, ma il contraccolpo riduce di molto il suo Attacco Speciale.", - }, - odorSleuth: { - name: "Segugio", - effect: "Chi la usa rende i Pokémon di tipo Spettro vulnerabili a qualsiasi tipo di mossa e può, inoltre, colpire i nemici sfuggenti.", - }, - rockTomb: { - name: "Rocciotomba", - effect: "Colpisce il nemico con rocce. Inoltre, lo rallenta riducendone la Velocità.", - }, - silverWind: { - name: "Ventargenteo", - effect: "Attacca con un forte vento di polvere di squame. Tutte le statistiche di chi la usa possono salire.", - }, - metalSound: { - name: "Ferrostrido", - effect: "Orribile stridio, simile a quello prodotto dal metallo, che riduce di molto la Difesa Speciale del nemico.", - }, - grassWhistle: { - name: "Meloderba", - effect: "Una dolce melodia culla il bersaglio e lo costringe ad addormentarsi.", - }, - tickle: { - name: "Solletico", - effect: "Chi la usa solletica il nemico e lo fa ridere, riducendo il suo Attacco e la sua Difesa.", - }, - cosmicPower: { - name: "Cosmoforza", - effect: "Chi la usa assorbe una forza mistica dallo spazio che aumenta la Difesa e la Difesa Speciale.", - }, - waterSpout: { - name: "Zampillo", - effect: "Lancia un getto d'acqua contro il nemico che ha davanti e quelli adiacenti. La potenza è proporzionale al numero di PS di chi la usa.", - }, - signalBeam: { - name: "Segnoraggio", - effect: "Chi la usa attacca con uno strano raggio di luce che può anche confondere il Pokémon colpito.", - }, - shadowPunch: { - name: "Pugnodombra", - effect: "Il nemico riceve un pugno proveniente dalle tenebre. Questa mossa è infallibile.", - }, - extrasensory: { - name: "Extrasenso", - effect: "Chi la usa attacca con una misteriosa forza invisibile. Può far tentennare il nemico.", - }, - skyUppercut: { - name: "Stramontante", - effect: "Chi la usa attacca il nemico con un montante che può arrivare fino in cielo.", - }, - sandTomb: { - name: "Sabbiotomba", - effect: "Chi la usa intrappola il nemico in un turbine di sabbia per quattro o cinque turni.", - }, - sheerCold: { - name: "Purogelo", - effect: "Ondata di freddo penetrante che, se va a segno, fa andare KO il nemico.", - }, - muddyWater: { - name: "Fanghiglia", - effect: "Chi la usa attacca con un getto di fango che può anche ridurre la precisione dei nemici.", - }, - bulletSeed: { - name: "Semitraglia", - effect: "Chi la usa spara da due a cinque raffiche di semi contro il bersaglio in successione.", - }, - aerialAce: { - name: "Aeroassalto", - effect: "Chi la usa attacca il nemico a grande velocità. Questa mossa è infallibile.", - }, - icicleSpear: { - name: "Gelolancia", - effect: "Chi la usa spara ghiaccioli affilati contro il nemico da due a cinque volte di fila.", - }, - ironDefense: { - name: "Ferroscudo", - effect: "Il corpo di chi la usa si indurisce come il ferro, facendone salire di molto la Difesa.", - }, - block: { - name: "Blocco", - effect: "Chi la usa sbarra la strada al nemico impedendone la fuga o la sostituzione.", - }, - howl: { - name: "Gridodilotta", - effect: "Chi la usa emette un verso molto forte per darsi coraggio e aumentare l'Attacco.", - }, - dragonClaw: { - name: "Dragartigli", - effect: "Chi la usa attacca con artigli affilati che graffiano il nemico rapidamente e con grande forza.", - }, - frenzyPlant: { - name: "Radicalbero", - effect: "Un groviglio di radici colpisce il nemico. Chi la usa salta il turno successivo.", - }, - bulkUp: { - name: "Granfisico", - effect: "Chi la usa tende i muscoli per gonfiare il corpo, aumentando Difesa e Attacco.", - }, - bounce: { - name: "Rimbalzo", - effect: "Chi la usa balza in alto e ricade sul nemico dopo un turno. Può anche paralizzare.", - }, - mudShot: { - name: "Colpodifango", - effect: "Chi la usa attacca lanciando fango sul nemico. Riduce anche la Velocità.", - }, - poisonTail: { - name: "Velenocoda", - effect: "Chi la usa colpisce con la coda e può avvelenare il nemico. Probabile brutto colpo.", - }, - covet: { - name: "Supplica", - effect: "Chi la usa attacca il bersaglio sorridendo e gli ruba lo strumento che tiene.", - }, - voltTackle: { - name: "Locomovolt", - effect: "Chi la usa si carica di elettricità e poi attacca. Può paralizzare il nemico. Il contraccolpo causa seri danni.", - }, - magicalLeaf: { - name: "Fogliamagica", - effect: "Chi la usa sparpaglia strane foglie che inseguono il bersaglio. Questa mossa è infallibile.", - }, - waterSport: { - name: "Docciascudo", - effect: "Chi la usa s'impregna d'acqua indebolendo le mosse di tipo Fuoco finché resta in campo.", - }, - calmMind: { - name: "Calmamente", - effect: "Chi la usa, meditando, placa il proprio spirito per aumentare l'Attacco Speciale e la Difesa Speciale.", - }, - leafBlade: { - name: "Fendifoglia", - effect: "Colpisce il nemico usando una foglia affilata come una spada. Probabile brutto colpo.", - }, - dragonDance: { - name: "Dragodanza", - effect: "Danza mistica e vigorosa che aumenta l'Attacco e la Velocità di chi la usa.", - }, - rockBlast: { - name: "Cadutamassi", - effect: "Colpisce il nemico con dei massi pesanti lanciati in rapida successione. Il numero di massi varia da due a cinque.", - }, - shockWave: { - name: "Ondashock", - effect: "Chi la usa colpisce il nemico con una scossa di elettricità. È impossibile eludere questa mossa.", - }, - waterPulse: { - name: "Idropulsar", - effect: "Il nemico viene colpito da un getto d'acqua potentissimo che può anche confonderlo.", - }, - doomDesire: { - name: "Desiderio Fatale", - effect: "Intensa luce solare che colpisce il nemico dopo due turni dall'uso della mossa.", - }, - psychoBoost: { - name: "Psicoslancio", - effect: "Chi la usa sferra un potente attacco, ma il contraccolpo riduce di molto il suo Attacco Speciale.", - }, - roost: { - name: "Trespolo", - effect: "Chi la usa sta fermo e riposa, recuperando metà dei propri PS massimi.", - }, - gravity: { - name: "Gravità", - effect: "Intensifica la gravità per cinque turni. Le mosse che fanno volare e Levitazione sono inutilizzabili.", - }, - miracleEye: { - name: "Miracolvista", - effect: "Chi la usa rende i Pokémon di tipo Buio vulnerabili a qualsiasi tipo di mossa e può, inoltre, colpire i nemici sfuggenti.", - }, - wakeUpSlap: { - name: "Svegliopacca", - effect: "Un attacco che infligge doppi danni se il nemico è Addormentato. Inoltre, lo sveglierà dal sonno.", - }, - hammerArm: { - name: "Martelpugno", - effect: "Chi la usa colpisce il nemico con il suo pugno forte e pesante, ma perde Velocità.", - }, - gyroBall: { - name: "Vortexpalla", - effect: "Chi la usa colpisce il nemico con un vortice rapidissimo. Più lento è chi la usa, maggiore è il danno.", - }, - healingWish: { - name: "Curardore", - effect: "Chi la usa va KO, ma il Pokémon che lo sostituisce recupera tutti i PS e risolve i problemi di stato.", - }, - brine: { - name: "Acquadisale", - effect: "Se i PS del nemico sono scesi a metà o meno, questa mossa colpirà con il doppio della potenza.", - }, - naturalGift: { - name: "Dononaturale", - effect: "Chi la usa trae forza dalla Bacca che tiene. Da questa dipendono il tipo e la forza dell'attacco.", - }, - feint: { - name: "Fintoattacco", - effect: "Un attacco che colpisce un nemico che ha usato Protezione od Individua. Ne rimuoverà inoltre gli effetti.", - }, - pluck: { - name: "Spennata", - effect: "Chi la usa becca il bersaglio. Inoltre, se questi tiene una Bacca, gliela ruba e ne sfrutta gli effetti.", - }, - tailwind: { - name: "Ventoincoda", - effect: "Chi la usa crea turbolente raffiche di vento che aumentano la sua Velocità e quella di tutti i Pokémon della squadra.", - }, - acupressure: { - name: "Acupressione", - effect: "Chi la usa esercita pressione su alcuni punti nevralgici e aumenta di molto una statistica a caso.", - }, - metalBurst: { - name: "Metalscoppio", - effect: "Chi la usa si vendica sul nemico che l'ha appena ferito con una mossa anche più potente.", - }, - uTurn: { - name: "Retromarcia", - effect: "Dopo aver selezionato questo attacco, chi la usa colpisce il nemico per poi essere sostituito con un altro Pokémon della squadra.", - }, - closeCombat: { - name: "Zuffa", - effect: "Chi la usa attacca abbassando la guardia. La propria Difesa e la Difesa Speciale si riducono.", - }, - payback: { - name: "Rivincita", - effect: "Chi la usa accumula forza, poi attacca. La potenza raddoppia se agisce dopo il Pokémon nemico.", - }, - assurance: { - name: "Garanzia", - effect: "Se il nemico ha già subito dei danni nello stesso turno, la potenza di questa mossa raddoppia.", - }, - embargo: { - name: "Divieto", - effect: "Impedisce al nemico di usare lo strumento che tiene e al suo Allenatore di usarne altri sul Pokémon.", - }, - fling: { - name: "Lancio", - effect: "Chi la usa lancia sul nemico lo strumento che tiene. La forza e l'effetto dipendono dallo strumento.", - }, - psychoShift: { - name: "Psicotrasfer", - effect: "Con la forza psichica e la suggestione, chi la usa può trasferire i suoi problemi di stato al Pokémon colpito.", - }, - trumpCard: { - name: "Asso", - effect: "Minori PP rimangono a questa mossa, e maggiori danni apporterà al nemico.", - }, - healBlock: { - name: "Anticura", - effect: "Chi la usa impedisce al nemico di utilizzare mosse o abilità recupera-PS per cinque turni.", - }, - wringOut: { - name: "Strizzata", - effect: "Chi la usa stritola con forza il nemico. Più PS ha il nemico, maggiore è la potenza della mossa.", - }, - powerTrick: { - name: "Ingannoforza", - effect: "Mossa psichica che permette a chi la usa di scambiare i valori delle sue statistiche di Attacco e Difesa.", - }, - gastroAcid: { - name: "Gastroacido", - effect: "Chi la usa lancia acidi gastrici sul nemico. Il fluido annulla l'abilità del nemico.", - }, - luckyChant: { - name: "Fortuncanto", - effect: "Chi la usa rivolge un incantesimo al cielo, impedendo al nemico di sferrare brutti colpi alla squadra.", - }, - meFirst: { - name: "Precedenza", - effect: "Se chi la usa è più veloce del nemico, gli ruba la mossa e gliela ritorce contro con potenza persino maggiore.", - }, - copycat: { - name: "Copione", - effect: "Chi la usa imita l'ultima mossa usata dal nemico. La mossa fallisce se questo non ha selezionato alcuna mossa.", - }, - powerSwap: { - name: "Barattoforza", - effect: "Chi la usa sfrutta la sua forza psichica per scambiare le modifiche ad Attacco e Attacco Speciale con il bersaglio.", - }, - guardSwap: { - name: "Barattoscudo", - effect: "Chi la usa sfrutta la sua forza psichica per scambiare le modifiche a Difesa e a Difesa Speciale con il bersaglio.", - }, - punishment: { - name: "Punizione", - effect: "Questa mossa diventa più potente ogni volta che il nemico aumenta le proprie statistiche.", - }, - lastResort: { - name: "Ultimascelta", - effect: "Per usare questa mossa, bisogna prima avvalersi in lotta di tutte le altre mosse conosciute.", - }, - worrySeed: { - name: "Affannoseme", - effect: "Un seme che causa ansia viene piantato sul bersaglio. Ne muta l'abilità in Insonnia e ne previene o rimuove il sonno.", - }, - suckerPunch: { - name: "Sbigoattacco", - effect: "Chi la usa può attaccare per primo. Fallisce se il nemico non sta preparando un attacco.", - }, - toxicSpikes: { - name: "Fielepunte", - effect: "Chi la usa piazza ai piedi del nemico delle punte avvelenate. Avvelena ogni nemico che entra in lotta.", - }, - heartSwap: { - name: "Cuorbaratto", - effect: "Chi la usa sfrutta la sua forza psichica per scambiare le modifiche alle statistiche con il bersaglio.", - }, - aquaRing: { - name: "Acquanello", - effect: "Chi la usa si avvolge in un velo d'acqua. Recupera alcuni PS ad ogni turno.", - }, - magnetRise: { - name: "Magnetascesa", - effect: "Chi la usa si solleva in aria per cinque turni grazie a un campo elettromagnetico.", - }, - flareBlitz: { - name: "Fuococarica", - effect: "Chi la usa si ricopre di fuoco e carica il bersaglio, ma subisce il contraccolpo. Può anche scottare.", - }, - forcePalm: { - name: "Palmoforza", - effect: "Chi la usa attacca con un'onda d'urto che può anche paralizzare il bersaglio.", - }, - auraSphere: { - name: "Sferapulsar", - effect: "Chi la usa rilascia una forza eterea dal profondo del corpo. La mossa è infallibile.", - }, - rockPolish: { - name: "Lucidatura", - effect: "Chi la usa leviga il proprio corpo per ridurne l'attrito. Aumenta di molto la Velocità.", - }, - poisonJab: { - name: "Velenpuntura", - effect: "Il nemico viene colpito con un tentacolo od un braccio intriso di veleno. Può anche avvelenarlo.", - }, - darkPulse: { - name: "Neropulsar", - effect: "Chi la usa emana un'aura impregnata di oscuri pensieri. Può anche far tentennare il Pokémon colpito.", - }, - nightSlash: { - name: "Nottesferza", - effect: "Chi la usa colpisce il nemico appena si presenta l'occasione. Probabile brutto colpo.", - }, - aquaTail: { - name: "Idrondata", - effect: "Chi la usa attacca agitando la coda come se fosse una violenta ondata in una tempesta furiosa.", - }, - seedBomb: { - name: "Semebomba", - effect: "Chi la usa emette una raffica di semi dal guscio duro che colpiscono il bersaglio dall'alto.", - }, - airSlash: { - name: "Eterelama", - effect: "Chi la usa attacca con un vento tagliente che squarcia il cielo. Può anche far tentennare il Pokémon colpito.", - }, - xScissor: { - name: "Forbice X", - effect: "Chi la usa colpisce il nemico usando le sue falci o artigli come se fossero un paio di forbici.", - }, - bugBuzz: { - name: "Ronzio", - effect: "Chi la usa muove le ali per creare un suono che danneggia il nemico. Può anche ridurne la Difesa Speciale.", - }, - dragonPulse: { - name: "Dragopulsar", - effect: "Chi la usa attacca un'onda d'urto generata spalancando la bocca.", - }, - dragonRush: { - name: "Dragofuria", - effect: "Chi la usa attacca con fare minaccioso e in questo modo può anche far tentennare il nemico.", - }, - powerGem: { - name: "Gemmoforza", - effect: "Chi la usa attacca con un raggio di luce che brilla come se fosse fatto di pietre preziose.", - }, - drainPunch: { - name: "Assorbipugno", - effect: "Pugno che assorbe energia. Fa recuperare una quantità di PS pari alla metà del danno inferto.", - }, - vacuumWave: { - name: "Vuotonda", - effect: "Chi la usa rotea i pugni per lanciare un'onda di vuoto assoluto verso il nemico. Attacca per primo.", - }, - focusBlast: { - name: "Focalcolpo", - effect: "Chi la usa incrementa la sua concentrazione mentale per scatenare il suo potere. Può ridurre la Difesa Speciale del nemico.", - }, - energyBall: { - name: "Energipalla", - effect: "Chi la usa attinge energia dalla natura e la scaglia contro il bersaglio. Può anche ridurne la Difesa Speciale.", - }, - braveBird: { - name: "Baldeali", - effect: "Chi la usa si nasconde sotto le ali e carica da bassa quota. Tuttavia, subisce considerevoli danni.", - }, - earthPower: { - name: "Geoforza", - effect: "Dal terreno sotto il nemico si sprigiona una forza devastante. Può anche ridurne la Difesa Speciale.", - }, - switcheroo: { - name: "Rapidscambio", - effect: "Chi la usa scambia in maniera fulminea il proprio oggetto con quello del nemico.", - }, - gigaImpact: { - name: "Gigaimpatto", - effect: "Chi la usa carica il nemico usando tutta la sua forza, ma al turno successivo deve riposare.", - }, - nastyPlot: { - name: "Congiura", - effect: "Chi la usa stimola il cervello pensando a cose cattive. Aumenta di molto l'Attacco Speciale.", - }, - bulletPunch: { - name: "Pugnoscarica", - effect: "Chi la usa attacca con una scarica di pugni veloci come proiettili. Con questa mossa si colpisce per primi.", - }, - avalanche: { - name: "Slavina", - effect: "Un attacco che infligge doppi danni se l'utilizzatore ha subito un attacco nello stesso turno.", - }, - iceShard: { - name: "Geloscheggia", - effect: "Chi la usa crea dei pezzi di ghiaccio e li lancia. Con questa mossa si colpisce per primi.", - }, - shadowClaw: { - name: "Ombrartigli", - effect: "Chi la usa attacca con artigli d'ombra che colpiscono con gran forza. Probabile brutto colpo.", - }, - thunderFang: { - name: "Fulmindenti", - effect: "Chi la usa morde con denti elettrificati che possono anche paralizzare o far tentennare il nemico.", - }, - iceFang: { - name: "Gelodenti", - effect: "Chi la usa morde il nemico con denti di ghiaccio. Può causare congelamento e tentennamento.", - }, - fireFang: { - name: "Rogodenti", - effect: "Chi la usa morde il nemico con denti infuocati. Può causare scottatura e tentennamento.", - }, - shadowSneak: { - name: "Furtivombra", - effect: "Chi la usa estende la sua ombra e attacca il nemico alle spalle. Con questa mossa si colpisce per primi.", - }, - mudBomb: { - name: "Pantanobomba", - effect: "Chi la usa lancia dure palle di fango sul nemico. Può anche ridurne la Precisione.", - }, - psychoCut: { - name: "Psicotaglio", - effect: "Chi la usa colpisce il nemico con lame fatte di forza psichica. Probabile brutto colpo.", - }, - zenHeadbutt: { - name: "Cozzata Zen", - effect: "Chi la usa concentra la forza nella testa e si lancia contro il nemico. Può anche farlo tentennare.", - }, - mirrorShot: { - name: "Cristalcolpo", - effect: "Chi la usa colpisce il nemico lanciando fasci d'energia dal suo corpo. Può ridurne la precisione.", - }, - flashCannon: { - name: "Cannonflash", - effect: "Chi la usa attacca raccogliendo e rilasciando energia luminosa. Può ridurre la Difesa Speciale del nemico.", - }, - rockClimb: { - name: "Scalaroccia", - effect: "Chi la usa carica con impeto incredibile. Il colpo può confondere il nemico.", - }, - defog: { - name: "Scacciabruma", - effect: "Chi la usa spazza via barriere come Riflesso e Schermoluce con un forte vento e riduce la capacità d'elusione del nemico.", - }, - trickRoom: { - name: "Distortozona", - effect: "Chi la usa crea una dimensione in cui i Pokémon più lenti si muovono per primi per cinque turni.", - }, - dracoMeteor: { - name: "Dragobolide", - effect: "Attacca con meteore che cadono dal cielo. Il contraccolpo fa calare di molto l'Attacco Speciale di chi la usa.", - }, - discharge: { - name: "Scarica", - effect: "Chi la usa colpisce i Pokémon che ha intorno con un bagliore elettrico. Può anche causare paralisi.", - }, - lavaPlume: { - name: "Lavasbuffo", - effect: "Chi la usa lancia fiamme scarlatte sugli altri Pokémon in campo. Può anche scottare.", - }, - leafStorm: { - name: "Verdebufera", - effect: "Si forma una tempesta di foglie affilate. Il contraccolpo riduce di molto l'Attacco Speciale di chi la usa.", - }, - powerWhip: { - name: "Vigorcolpo", - effect: "Chi la usa agita violentemente liane o tentacoli per sferzare il bersaglio.", - }, - rockWrecker: { - name: "Devastomasso", - effect: "Chi la usa attacca il nemico con un enorme masso, ma si deve riposare al turno successivo.", - }, - crossPoison: { - name: "Velenocroce", - effect: "Attacco con zanne avvelenate che può anche avvelenare il Pokémon colpito. Probabile brutto colpo.", - }, - gunkShot: { - name: "Sporcolancio", - effect: "Chi la usa attacca il nemico con rifiuti sudici che possono anche avvelenarlo.", - }, - ironHead: { - name: "Metaltestata", - effect: "Chi la usa colpisce il nemico con la sua testa dura come l'acciaio. Può anche farlo tentennare.", - }, - magnetBomb: { - name: "Bombagnete", - effect: "Chi la usa lancia bombe d'acciaio che si attaccano al nemico. Una mossa infallibile.", - }, - stoneEdge: { - name: "Pietrataglio", - effect: "Chi la usa colpisce il nemico dal basso con pietre affilate. Probabile brutto colpo.", - }, - captivate: { - name: "Incanto", - effect: "Se il nemico è del sesso opposto di chi la usa, sarà ammaliato e il suo Attacco Speciale diminuirà di molto.", - }, - stealthRock: { - name: "Levitoroccia", - effect: "Chi la usa piazza una trappola di rocce sospese che danneggia i nemici che entrano in lotta.", - }, - grassKnot: { - name: "Laccioerboso", - effect: "Chi la usa intrappola il bersaglio con l'erba e lo fa cadere. Danneggia maggiormente i Pokémon più pesanti.", - }, - chatter: { - name: "Schiamazzo", - effect: "Chi la usa attacca creando un'onda sonora con le parole imparate. Può anche confondere il nemico.", - }, - judgment: { - name: "Giudizio", - effect: "Chi la usa rilascia numerosi colpi di luce. Il tipo varia a seconda della Lastra tenuta.", - }, - bugBite: { - name: "Coleomorso", - effect: "Chi la usa morde il nemico. Inoltre, se questi tiene una Bacca, gliela ruba e ne sfrutta gli effetti.", - }, - chargeBeam: { - name: "Raggioscossa", - effect: "Chi la usa lancia un fascio di elettricità molto intensa. Può anche aumentare il suo Attacco Speciale.", - }, - woodHammer: { - name: "Mazzuolegno", - effect: "Chi la usa si lancia con tutto il corpo contro il bersaglio, ma subisce anche considerevoli danni.", - }, - aquaJet: { - name: "Acquagetto", - effect: "Chi la usa colpisce sempre per primo e a una tale velocità da rendersi quasi invisibile.", - }, - attackOrder: { - name: "Comandourto", - effect: "Chi la usa raduna i suoi sgherri per colpire il nemico. Probabile brutto colpo.", - }, - defendOrder: { - name: "Comandoscudo", - effect: "Chi la usa raduna i suoi sgherri per creare uno scudo, aumentando Difesa e Difesa Speciale.", - }, - healOrder: { - name: "Comandocura", - effect: "Chi la usa raduna i propri sgherri per farsi curare. Recupera metà dei PS massimi.", - }, - headSmash: { - name: "Zuccata", - effect: "Chi la usa attacca con tutta la potenza di cui dispone, ma subisce danni considerevoli.", - }, - doubleHit: { - name: "Doppiosmash", - effect: "Chi la usa colpisce il nemico con la coda due volte di fila.", - }, - roarOfTime: { - name: "Fragortempo", - effect: "Chi la usa colpisce il nemico con una forza capace di alterare il tempo, ma deve stare fermo il turno dopo.", - }, - spacialRend: { - name: "Fendispazio", - effect: "Chi la usa lacera il nemico e lo spazio che lo circonda. Probabile brutto colpo.", - }, - lunarDance: { - name: "Lunardanza", - effect: "Chi la usa va KO. Il Pokémon che lo sostituisce risolve i propri problemi di stato e recupera PS e PP.", - }, - crushGrip: { - name: "Sbriciolmano", - effect: "Colpisce il nemico con grande forza. Più PS ha il nemico, maggiore è la potenza della mossa.", - }, - magmaStorm: { - name: "Magmaclisma", - effect: "Intrappola il nemico in un turbine di fuoco che dura per quattro o cinque turni.", - }, - darkVoid: { - name: "Vuototetro", - effect: "Trascina i nemici in un mondo di totale oscurità e li fa addormentare.", - }, - seedFlare: { - name: "Infuriaseme", - effect: "Chi la usa genera un'onda d'urto dal suo corpo. Può anche ridurre di molto la Difesa Speciale del bersaglio.", - }, - ominousWind: { - name: "Funestovento", - effect: "Chi la usa crea una raffica di vento ripugnante. Può aumentare tutte le statistiche di chi la usa.", - }, - shadowForce: { - name: "Oscurotuffo", - effect: "Chi la usa sparisce e poi colpisce il nemico al turno successivo. Evita pure Protezione o Individua.", - }, - honeClaws: { - name: "Unghiaguzze", - effect: "Chi la usa affila i propri artigli, aumentando Attacco e precisione.", - }, - wideGuard: { - name: "Bodyguard", - effect: "Chi la usa para tutti i colpi diretti alla intera squadra per un turno. Se usata in successione può fallire.", - }, - guardSplit: { - name: "Paridifesa", - effect: "Chi la usa sfrutta la sua forza psichica per sommare Difesa e Difesa Speciale a quelle del bersaglio e dividerle equamente.", - }, - powerSplit: { - name: "Pariattacco", - effect: "Chi la usa sfrutta la sua forza psichica per sommare Attacco e Attacco Speciale a quelli del bersaglio e dividerli equamente.", - }, - wonderRoom: { - name: "Mirabilzona", - effect: "Chi la usa crea una dimensione in cui Difesa e Difesa Speciale di tutti i Pokémon vengono scambiate per cinque turni.", - }, - psyshock: { - name: "Psicoshock", - effect: "Chi la usa attacca il bersaglio facendo materializzare un misterioso raggio psichico che provoca danni fisici.", - }, - venoshock: { - name: "Velenoshock", - effect: "Lancia uno speciale liquido tossico sul bersaglio. Se questi è avvelenato, il danno provocato raddoppia.", - }, - autotomize: { - name: "Sganciapesi", - effect: "Chi la usa si libera di tutti i pesi in eccesso, alleggerendosi e aumentando di molto la propria Velocità.", - }, - ragePowder: { - name: "Polverabbia", - effect: "Chi la usa attira l'attenzione dei nemici cospargendosi di una polvere irritante e diventando bersaglio di tutti gli attacchi.", - }, - telekinesis: { - name: "Telecinesi", - effect: "Chi la usa fa fluttuare in aria il bersaglio, rendendolo facile da colpire per tre turni.", - }, - magicRoom: { - name: "Magicozona", - effect: "Chi la usa crea una dimensione in cui l'effetto degli strumenti tenuti da tutti i Pokémon è annullato per cinque turni.", - }, - smackDown: { - name: "Abbattimento", - effect: "Chi la usa lancia una pietra o un proiettile. Può colpire anche un bersaglio in volo e farlo cadere.", - }, - stormThrow: { - name: "Tempestretta", - effect: "Chi la usa sferra un colpo micidiale al bersaglio, stritolandolo. Brutto colpo assicurato.", - }, - flameBurst: { - name: "Pirolancio", - effect: "Chi la usa emana una fiammata che colpisce il bersaglio e si propaga fino a raggiungere i Pokémon accanto.", - }, - sludgeWave: { - name: "Fangonda", - effect: "Lancia un'onda di fango che attacca tutti i Pokémon nelle vicinanze. Può anche avvelenare.", - }, - quiverDance: { - name: "Eledanza", - effect: "Danza leggiadra ed elegante che aumenta l'Attacco Speciale, la Difesa Speciale e la Velocità di chi la usa.", - }, - heavySlam: { - name: "Pesobomba", - effect: "Chi la usa si lancia contro il bersaglio con tutto il proprio peso. Più è pesante rispetto ad esso e più danni causa.", - }, - synchronoise: { - name: "Sincrumore", - effect: "Chi la usa infligge danni a tutti i Pokémon del suo stesso tipo che ha vicino usando misteriose onde elettromagnetiche.", - }, - electroBall: { - name: "Energisfera", - effect: "Chi la usa attacca con una sfera d'energia elettrica. Più è rapido rispetto al bersaglio e più danni arreca.", - }, - soak: { - name: "Inondazione", - effect: "Chi la usa proietta un lungo getto d'acqua contro il bersaglio e lo rende un Pokémon di tipo Acqua.", - }, - flameCharge: { - name: "Nitrocarica", - effect: "Chi la usa si copre di fuoco e attacca il bersaglio. Concentrandosi aumenta, inoltre, la propria Velocità.", - }, - coil: { - name: "Arrotola", - effect: "Chi la usa si concentra, aumentando Attacco, Difesa e precisione.", - }, - lowSweep: { - name: "Calciobasso", - effect: "Chi la usa colpisce con un attacco fulmineo la parte inferiore del corpo del bersaglio, riducendone la Velocità.", - }, - acidSpray: { - name: "Acidobomba", - effect: "Chi la usa attacca il bersaglio con un acido altamente corrosivo. Il fluido riduce di molto la Difesa Speciale del bersaglio.", - }, - foulPlay: { - name: "Ripicca", - effect: "Chi la usa sfrutta la forza del bersaglio. Il danno inflitto è proporzionale all'Attacco dell'avversario.", - }, - simpleBeam: { - name: "Ondisinvolta", - effect: "Chi la usa emette un misterioso raggio psichico che trasforma l'abilità del Pokémon colpito in Disinvoltura.", - }, - entrainment: { - name: "Saltamicizia", - effect: "Chi la usa saltella con un buffo ritmo, invitando il bersaglio a imitarlo e rendendo la sua abilità identica alla propria.", - }, - afterYou: { - name: "Cortesia", - effect: "Chi la usa aiuta un bersaglio più lento permettendogli di agire subito dopo.", - }, - round: { - name: "Coro", - effect: "Attacca il bersaglio con una melodia. Se usata ripetutamente da uno o più Pokémon i danni inflitti aumentano.", - }, - echoedVoice: { - name: "Echeggiavoce", - effect: "Attacca il bersaglio con la propria voce echeggiante. Se usata a ripetizione da uno o più Pokémon il danno aumenta.", - }, - chipAway: { - name: "Insidia", - effect: "Chi la usa attacca non appena il bersaglio abbassa la guardia. Il danno inflitto prescinde dalle modifiche alle statistiche.", - }, - clearSmog: { - name: "Pulifumo", - effect: "Attacca il bersaglio lanciandogli contro una nuvola di fumo speciale, che annulla ogni modifica alle statistiche.", - }, - storedPower: { - name: "Veicolaforza", - effect: "Attacca il bersaglio con l'energia accumulata. Più sono state aumentate le statistiche, maggiore è il danno inflitto.", - }, - quickGuard: { - name: "Anticipo", - effect: "Chi la usa protegge tutta la squadra dalle mosse dei nemici che fanno colpire per primi. Se usata in successione può fallire.", - }, - allySwitch: { - name: "Cambiaposto", - effect: "Chi la usa si teletrasporta al posto di un compagno in campo, grazie ad un misterioso potere.", - }, - scald: { - name: "Idrovampata", - effect: "Chi la usa attacca il bersaglio con un getto d'acqua bollente che può anche scottarlo.", - }, - shellSmash: { - name: "Gettaguscio", - effect: "Chi la usa si disfa del guscio. Difesa e Dif. Sp. calano, ma aumentano di molto Attacco, Att. Sp. e Velocità.", - }, - healPulse: { - name: "Curapulsar", - effect: "Chi la usa lancia un'onda rilassante che fa recuperare al bersaglio metà dei suoi PS massimi.", - }, - hex: { - name: "Sciagura", - effect: "Attacco che causa un danno enorme se il bersaglio ha problemi di stato.", - }, - skyDrop: { - name: "Cadutalibera", - effect: "Porta il bersaglio in cielo e lo scaglia a terra al turno successivo. Il bersaglio catturato non può muoversi.", - }, - shiftGear: { - name: "Cambiomarcia", - effect: "Facendo ruotare gli ingranaggi, chi la usa aumenta non solo il proprio Attacco, ma anche di molto la propria Velocità.", - }, - circleThrow: { - name: "Ribaltiro", - effect: "Il bersaglio è scaraventato via ed è costretto a lasciare il posto a un altro. Se è selvatico, la lotta finisce.", - }, - incinerate: { - name: "Bruciatutto", - effect: "Attacca il nemico con una fiammata. Se il nemico ha una Bacca, viene divorata dalle fiamme.", - }, - quash: { - name: "Spintone", - effect: "Chi la usa trattiene il bersaglio, costringendolo ad agire per ultimo.", - }, - acrobatics: { - name: "Acrobazia", - effect: "Attacca rapidamente il bersaglio. Se chi la usa non ha uno strumento, infligge al nemico grossi danni.", - }, - reflectType: { - name: "Riflettipo", - effect: "Chi la usa cambia il proprio tipo in quello del bersaglio.", - }, - retaliate: { - name: "Nemesi", - effect: "Vendica un compagno messo KO. Se ciò è accaduto al turno precedente, il danno è maggiore.", - }, - finalGambit: { - name: "Azzardo", - effect: "Chi la usa attacca con tutta la potenza di cui dispone e va KO, ma infligge al bersaglio un danno pari ai PS che ha perso.", - }, - bestow: { - name: "Cediregalo", - effect: "Chi la usa consegna il proprio strumento al bersaglio se ne è sprovvisto.", - }, - inferno: { - name: "Marchiatura", - effect: "Il bersaglio viene avvolto da intense fiammate che causano scottature.", - }, - waterPledge: { - name: "Acquapatto", - effect: "Attacca il nemico con una colonna d'acqua. Se usata con Fiammapatto, aumentano gli effetti e un arcobaleno appare in cielo.", - }, - firePledge: { - name: "Fiammapatto", - effect: "Attacca il nemico con una colonna di fuoco. Se usata con Erbapatto, aumentano gli effetti e il campo diventa un mare di fuoco.", - }, - grassPledge: { - name: "Erbapatto", - effect: "Attacca il bersaglio con una colonna d'erba. Se usata con Acquapatto, gli effetti aumentano e il campo diventa una palude.", - }, - voltSwitch: { - name: "Invertivolt", - effect: "Chi usa questa mossa fa marcia indietro per farsi sostituire dopo aver sferrato l'attacco.", - }, - struggleBug: { - name: "Entomoblocco", - effect: "Colpisce i nemici opponendo resistenza e riducendo il loro Attacco Speciale.", - }, - bulldoze: { - name: "Battiterra", - effect: "Chi la usa calpesta il terreno e scatena un terremoto che danneggia tutti i Pokémon nei paraggi e ne riduce anche la Velocità.", - }, - frostBreath: { - name: "Alitogelido", - effect: "Chi la usa attacca il bersaglio con un soffio d'aria gelida. Brutto colpo assicurato.", - }, - dragonTail: { - name: "Codadrago", - effect: "Chi la usa fa volar via il bersaglio in modo che venga sostituito. Se il bersaglio è un Pokémon selvatico, la lotta finisce.", - }, - workUp: { - name: "Cuordileone", - effect: "Chi la usa si tira su di morale, aumentando il proprio Attacco e l'Attacco Speciale.", - }, - electroweb: { - name: "Elettrotela", - effect: "Chi la usa attacca i nemici catturandoli con una ragnatela elettrica e riducendone la Velocità.", - }, - wildCharge: { - name: "Sprizzalampo", - effect: "Chi la usa si carica di elettricità per poi scagliarsi sul bersaglio, ma subisce dei danni per il contraccolpo.", - }, - drillRun: { - name: "Giravvita", - effect: "Chi la usa si scaglia sul bersaglio ruotando su se stesso come un trapano perforante. Probabile brutto colpo.", - }, - dualChop: { - name: "Doppiocolpo", - effect: "Chi la usa attacca due volte il bersaglio con dei colpi estremamente forti.", - }, - heartStamp: { - name: "Cuorestampo", - effect: "Chi la usa distrae il nemico con un faccino innocente per poi sferrargli un colpo devastante che può farlo tentennare.", - }, - hornLeech: { - name: "Legnicorno", - effect: "Chi la usa infilza il bersaglio con le corna e assorbe una quantità di PS pari a metà del danno inferto.", - }, - sacredSword: { - name: "Spadasolenne", - effect: "Chi la usa taglia il nemico con una spada magica. Il danno inflitto ignora le modifiche alle statistiche del bersaglio.", - }, - razorShell: { - name: "Conchilama", - effect: "Chi la usa colpisce il bersaglio con il suo guscio affilato. Il colpo può anche ridurre la Difesa del bersaglio.", - }, - heatCrash: { - name: "Marchiafuoco", - effect: "Chi la usa carica con il suo corpo rovente. Più è pesante rispetto al bersaglio e più danni causa.", - }, - leafTornado: { - name: "Vorticerba", - effect: "Chi la usa avvolge e attacca il bersaglio con foglie affilate che possono anche ridurne la precisione.", - }, - steamroller: { - name: "Rulloduro", - effect: "Chi la usa ruota su se stesso ad alta velocità e schiaccia il bersaglio. Può anche farlo tentennare.", - }, - cottonGuard: { - name: "Cotonscudo", - effect: "Chi la usa avvolge il proprio corpo con del cotone molto morbido, proteggendosi e aumentando moltissimo la propria Difesa.", - }, - nightDaze: { - name: "Urtoscuro", - effect: "Chi la usa attacca il bersaglio con un'onda d'urto oscura che può ridurne la precisione.", - }, - psystrike: { - name: "Psicobotta", - effect: "Chi la usa attacca il bersaglio facendo materializzare un misterioso raggio psichico che provoca danni fisici.", - }, - tailSlap: { - name: "Spazzasberla", - effect: "Chi la usa colpisce il bersaglio con la sua coda dura da due a cinque volte di fila.", - }, - hurricane: { - name: "Tifone", - effect: "Chi la usa attacca il bersaglio avvolgendolo con un vento fortissimo. Può anche confonderlo.", - }, - headCharge: { - name: "Ricciolata", - effect: "Chi la usa carica il bersaglio con la sua testa in stile afro, ma subisce un po' di danni per il contraccolpo.", - }, - gearGrind: { - name: "Ingracolpo", - effect: "Chi la usa colpisce il bersaglio due volte di fila lanciandogli contro dei dischi d'acciaio.", - }, - searingShot: { - name: "Sparafuoco", - effect: "Chi la usa lancia fiamme scarlatte sui Pokémon intorno a sé. Può anche scottare.", - }, - technoBlast: { - name: "Tecnobotto", - effect: "Chi la usa rilascia un colpo di luce contro il bersaglio. Il tipo varia a seconda del modulo che ha.", - }, - relicSong: { - name: "Cantoantico", - effect: "Chi la usa attacca i nemici intonando un'antica melodia che colpisce il loro spirito. Può anche farli addormentare.", - }, - secretSword: { - name: "Spadamistica", - effect: "Chi la usa attacca il bersaglio tagliandolo con una spada mistica. La misteriosa energia sprigionata provoca danni fisici.", - }, - glaciate: { - name: "Gelamondo", - effect: "Chi la usa attacca i nemici con una folata d'aria gelida e ne riduce anche la Velocità.", - }, - boltStrike: { - name: "Lucesiluro", - effect: "Colpisce il bersaglio con una possente carica elettrica e può anche paralizzarlo.", - }, - blueFlare: { - name: "Fuocoblu", - effect: "Chi la usa attacca il bersaglio avvolgendolo con magnifiche e intense fiamme blu che possono anche scottarlo.", - }, - fieryDance: { - name: "Voldifuoco", - effect: "Chi la usa avvolge il bersaglio tra le fiamme. Può anche aumentare l'Attacco Speciale.", - }, - freezeShock: { - name: "Elettrogelo", - effect: "Chi la usa lancia contro il nemico al turno successivo una sfera di ghiaccio ricoperta di elettricità. Può anche paralizzarlo.", - }, - iceBurn: { - name: "Vampagelida", - effect: "Chi la usa attacca il bersaglio al turno successivo e lo avvolge in un soffio d'aria congelata. Può anche scottarlo.", - }, - snarl: { - name: "Urlorabbia", - effect: "Chi la usa si mette a urlare per un po', riducendo l'Attacco Speciale dei nemici.", - }, - icicleCrash: { - name: "Scagliagelo", - effect: "Chi la usa attacca violentemente il nemico con grosse stalattiti di ghiaccio che possono anche farlo tentennare.", - }, - vCreate: { - name: "Generatore V", - effect: "Chi la usa carica emettendo fiamme ardenti dalla fronte, a costo di una riduzione di Difesa, Difesa Speciale e Velocità.", - }, - fusionFlare: { - name: "Incrofiamma", - effect: "Chi la usa lancia una fiammata enorme. Se usata in combinazione con Incrotuono, il danno provocato dalla mossa aumenta.", - }, - fusionBolt: { - name: "Incrotuono", - effect: "Chi la usa lancia un fulmine enorme. Se usata in combinazione con Incrofiamma, il danno provocato dalla mossa aumenta.", - }, - flyingPress: { - name: "Schiacciatuffo", - effect: "Chi la usa si tuffa sul bersaglio dall'alto. È una mossa di tipo Lotta e Volante allo stesso tempo.", - }, - matBlock: { - name: "Ribaltappeto", - effect: "Chi la usa protegge se stesso e i propri alleati dai danni di mosse nemiche, adoperando un tappetino come scudo. Non è efficace contro mosse di stato.", - }, - belch: { - name: "Rutto", - effect: "Chi la usa attacca il bersaglio con un rutto potente. Per utilizzare questa mossa, il Pokémon deve mangiare la bacca che possiede.", - }, - rototiller: { - name: "Aracampo", - effect: "Chi la usa dissoda la terra per far crescere meglio l'erba. Questa mossa aumenta l'attacco e l'attacco speciale dei Pokémon di tipo Erba.", - }, - stickyWeb: { - name: "Rete Vischiosa", - effect: "Chi la usa intreccia una rete appiccicosa attorno alla squadra avversaria, diminuendo la Velocità dei Pokémon nemici che entreranno in campo.", - }, - fellStinger: { - name: "Pungiglione", - effect: "L'Attacco di chi la usa aumenta notevolmente se grazie alla mossa il bersaglio va KO.", - }, - phantomForce: { - name: "Spettrotuffo", - effect: "Chi la usa scompare improvvisamente per attaccare poi nel turno seguente. Questa mossa neutralizza le difese del bersaglio.", - }, - trickOrTreat: { - name: "Halloween", - effect: "Il bersaglio viene invitato a festeggiare Halloween e aggiunge così al proprio tipo anche il tipo Spettro.", - }, - nobleRoar: { - name: "Urlo", - effect: "Chi la usa emette un urlo potente che intimidisce il bersaglio, riducendone l'Attacco e l'Attacco Speciale.", - }, - ionDeluge: { - name: "Pioggiaplasma", - effect: "Chi la usa disperde delle particelle elettrizzate che trasformano le mosse di tipo Normale in mosse di tipo Elettro.", - }, - parabolicCharge: { - name: "Caricaparabola", - effect: "Chi la usa attacca tutto ciò che lo circonda e recupera PS pari alla metà del danno inflitto.", - }, - forestsCurse: { - name: "Boscomalocchio", - effect: "Il Pokémon invoca la maledizione del bosco sul bersaglio, che acquisisce così anche il tipo Erba.", - }, - petalBlizzard: { - name: "Fiortempesta", - effect: "Infligge danni ai Pokémon che ha intorno attaccandoli con una tempesta di fiori.", - }, - freezeDry: { - name: "Liofilizzazione", - effect: "Chi la usa raffredda rapidamente il bersaglio. Può anche congelarlo. Questa mossa è superefficace contro i Pokémon Acqua.", - }, - disarmingVoice: { - name: "Incantavoce", - effect: "Chi la usa infligge un danno spirituale ai nemici nei paraggi con una voce suadente. L'attacco andrà immancabilmente a segno.", - }, - partingShot: { - name: "Monito", - effect: "Nessuna descrizione disponibile.", - }, - topsyTurvy: { - name: "Sottosopra", - effect: "Inverte tutte le modifiche alle statistiche del Pokémon bersaglio.", - }, - drainingKiss: { - name: "Assorbibacio", - effect: "Un bacio fatato che assorbe le energie al nemico.", - }, - craftyShield: { - name: "Truccodifesa", - effect: "Chi la usa protegge se stesso e i suoi alleati usando un potere misterioso. Non blocca le mosse che infliggono danno.", - }, - flowerShield: { - name: "Fiordifesa", - effect: "Grazie a un misterioso potere, aumenta la Difesa di tutti i Pokémon di tipo Erba presenti in campo.", - }, - grassyTerrain: { - name: "Campo Erboso", - effect: "Per cinque turni trasforma il terreno di lotta in un campo erboso, facendo recuperare PS ai Pokémon a terra in ogni turno.", - }, - mistyTerrain: { - name: "Campo Nebbioso", - effect: "Per cinque turni trasforma il terreno di lotta in un campo nebbioso, impedendo ai Pokémon a terra di essere colpiti da problemi di stato.", - }, - electrify: { - name: "Elettrocontagio", - effect: "Se si contagia il bersaglio prima che usi la sua mossa, per quel turno le sue mosse saranno di tipo Elettro.", - }, - playRough: { - name: "Carineria", - effect: "Chi la usa attacca il bersaglio con delle carinerie. Può anche ridurne l'attacco.", - }, - fairyWind: { - name: "Vento di Fata", - effect: "Attacca con un forte vento fatato.", - }, - moonblast: { - name: "Forza Lunare", - effect: "Accumula la forza proveniente dalla luna e la libera sul nemico. Può ridurre l'Attacco Speciale.", - }, - boomburst: { - name: "Ondaboato", - effect: "Colpisce i Pokémon che ha intorno con la forza di un boato distruttivo.", - }, - fairyLock: { - name: "Blocco Fatato", - effect: "Bloccando il campo di battaglia, chi la usa impedisce a tutti i Pokémon di fuggire durante il prossimo turno.", - }, - kingsShield: { - name: "Scudo Reale", - effect: "L'utilizzatore assume una posizione difensiva mentre si difende. Riduce inoltre l'Attacco di ogni utilizzatore di mosse da contatto.", - }, - playNice: { - name: "Simpatia", - effect: "Chi la usa diventa amico del bersaglio, rabbonendolo e riducendone così l'Attacco.", - }, - confide: { - name: "Confidenza", - effect: "Chi la usa svela dei segreti al bersaglio, distraendolo e riducendone l'Attacco Speciale.", - }, - diamondStorm: { - name: "Diamantempesta", - effect: "Colpisce i nemici che ha intorno con una tempesta di diamanti. Può anche aumentare la Difesa di chi la usa.", - }, - steamEruption: { - name: "Vaporscoppio", - effect: "Travolge il bersaglio con un'ondata di vapore rovente che può anche scottarlo.", - }, - hyperspaceHole: { - name: "Forodimensionale", - effect: "Chi la usa, sfrutta un passaggio interdimensionale per comparire a fianco del bersaglio e colpirlo, eludendo mosse come Protezione e Individua.", - }, - waterShuriken: { - name: "Acqualame", - effect: "Chi la usa attacca sempre per primo, colpendo il bersaglio con uno shuriken di muco da due a cinque volte di fila.", - }, - mysticalFire: { - name: "Magifiamma", - effect: "Colpisce il bersaglio soffiandogli contro delle fiammate incredibilmente roventi, riducendone l'Attacco Speciale.", - }, - spikyShield: { - name: "Agodifesa", - effect: "Protegge dagli attacchi, riducendo inoltre i PS dei Pokémon che entrano in contatto con chi la usa.", - }, - aromaticMist: { - name: "Nebularoma", - effect: "Aumenta la Difesa Speciale di un alleato tramite un misterioso aroma.", - }, - eerieImpulse: { - name: "Elettromistero", - effect: "Il corpo dell'utilizzatore genera un impulso misterioso. Esponendovi il bersaglio, ne riduce di molto l'Attacco Speciale.", - }, - venomDrench: { - name: "Velenotrappola", - effect: "Emette un liquido particolare che riduce l'Attacco, l'Attacco Speciale e la Velocità dei nemici avvelenati intorno a chi la usa.", - }, - powder: { - name: "Pulviscoppio", - effect: "Il bersaglio viene coperto da un pulviscolo che esplode danneggiandolo se questi utilizza una mossa di tipo Fuoco nello stesso turno.", - }, - geomancy: { - name: "Geocontrollo", - effect: "Un'energia pura forza della natura si sprigiona per tutto il campo.", - }, - magneticFlux: { - name: "Controllo Polare", - effect: "Tramite il controllo dei campi magnetici, aumenta la Difesa e la Difesa Speciale dei Pokémon alleati dotati dell'abilità Più o Meno.", - }, - happyHour: { - name: "Cuccagna", - effect: "Questa mossa raddoppia la ricompensa ricevuta dopo aver vinto una lotta.", - }, - electricTerrain: { - name: "Campo Elettrico", - effect: "Per cinque turni trasforma il terreno di lotta in un campo elettrico, impedendo ai Pokémon a terra di addormentarsi.", - }, - dazzlingGleam: { - name: "Magibrillio", - effect: "Emette una luce potentissima che infligge danni al bersaglio.", - }, - celebrate: { - name: "Auguri", - effect: "Il Pokémon ti fa gli auguri nel tuo giorno speciale", - }, - holdHands: { - name: "Mano nella mano", - effect: "Il Pokémon che la usa e un alleato si prendono per mano e fanno salti di gioia.", - }, - babyDollEyes: { - name: "Occhioni Teneri", - effect: "Chi la usa rivolge i propri occhioni languidi al bersaglio, riducendone l'Attacco. Colpisce sempre per primo.", - }, - nuzzle: { - name: "Elettrococcola", - effect: "Nonostante il tenero nome è una mossa piuttosto pericolosa.", - }, - holdBack: { - name: "Riguardo", - effect: "Chi la usa attacca il bersaglio, modulando il colpo in modo da lasciargli almeno un PS.", - }, - infestation: { - name: "Assillo", - effect: "Chi la usa lancia un attacco che tormenta il bersaglio per quattro o cinque turni, durante i quali gli impedisce di fuggire.", - }, - powerUpPunch: { - name: "Crescipugno", - effect: "Rende i pugni più duri a ogni colpo inferto. Se i pugni vanno a segno, aumenta l'Attacco.", - }, - oblivionWing: { - name: "Ali del Fato", - effect: "Chi la usa assorbe energia dal bersaglio recuperando una quantità di PS pari a più della metà del danno inferto.", - }, - thousandArrows: { - name: "Mille Frecce", - effect: "Colpisce anche i Pokémon che fluttuano in aria. I nemici nei paraggi vengono scaraventati a terra.", - }, - thousandWaves: { - name: "Mille Onde", - effect: "Un’onda strisciante investe i nemici intorno impedendo loro di fuggire.", - }, - landsWrath: { - name: "Forza Tellurica", - effect: "Chi la usa raccoglie energia tellurica e ne concentra il potere sui nemici che ha intorno danneggiandoli.", - }, - lightOfRuin: { - name: "Luce Nefasta", - effect: "Traendo potere dal Fiore Eterno, chi lo utilizza spara un potente raggio di luce. Ciò danneggia parecchio anche chi la usa.", - }, - originPulse: { - name: "Primopulsar", - effect: "Attacca i nemici intorno colpendoli con miriadi di raggi di luce blu.", - }, - precipiceBlades: { - name: "Spade Telluriche", - effect: "Attacca i nemici intorno trasformando la potenza della terra in lame affilate.", - }, - dragonAscent: { - name: "Ascesa del Drago", - effect: "Permette di proiettarsi in aria e fiondarsi sul bersaglio attaccando ad altissima velocità. Riduce la Difesa e la Difesa Speciale di chi la usa.", - }, - hyperspaceFury: { - name: "Urtodimensionale", - effect: "Permette di attaccare ripetutamente grazie ai molti arti, ignorando mosse come Protezione o Individua. Riduce la Difesa di chi la usa.", - }, - breakneckBlitzPhysical: { - name: "Carica Travolgente", - effect: "Grazie al Potere Z, chi la usa accumula energia e si lancia a tutta forza contro il bersaglio. La potenza varia a seconda della mossa su cui si basa.", - }, - breakneckBlitzSpecial: { - name: "Carica Travolgente", - effect: "Dati Mancanti", - }, - allOutPummelingPhysical: { - name: "Iperscarica Furiosa", - effect: "Chi la usa scaglia sul bersaglio una scarica di colpi carichi di Potere Z. La potenza varia a seconda della mossa su cui si basa.", - }, - allOutPummelingSpecial: { - name: "Iperscarica Furiosa", - effect: "Dati Mancanti", - }, - supersonicSkystrikePhysical: { - name: "Picchiata Devastante", - effect: "Chi la usa si serve del Potere Z per alzarsi in volo e attaccare il bersaglio piombandogli addosso. La potenza varia a seconda della mossa su cui si basa.", - }, - supersonicSkystrikeSpecial: { - name: "Picchiata Devastante", - effect: "Dati Mancanti", - }, - acidDownpourPhysical: { - name: "Acidiluvio Corrosivo", - effect: "Chi la usa sfrutta il Potere Z per creare una palude velenosa che sommerge il bersaglio. La potenza varia a seconda della mossa su cui si basa.", - }, - acidDownpourSpecial: { - name: "Acidiluvio Corrosivo", - effect: "Dati Mancanti", - }, - tectonicRagePhysical: { - name: "Furore della Terra", - effect: "Grazie al Potere Z, chi la usa si tuffa nelle viscere della terra e colpisce con violenza il bersaglio. La potenza varia a seconda della mossa su cui si basa.", - }, - tectonicRageSpecial: { - name: "Furore della Terra", - effect: "Dati Mancanti", - }, - continentalCrushPhysical: { - name: "Gigamacigno Polverizzante", - effect: "Grazie al Potere Z, chi la usa crea un masso enorme e lo lancia sul bersaglio schiacciandolo. La potenza varia a seconda della mossa su cui si basa.", - }, - continentalCrushSpecial: { - name: "Gigamacigno Polverizzante", - effect: "Dati Mancanti", - }, - savageSpinOutPhysical: { - name: "Bozzolo Fatale", - effect: "Chi la usa sfrutta il potere Z per creare dei filamenti che intrappolano il bersaglio. La potenza varia a seconda della mossa su cui si basa.", - }, - savageSpinOutSpecial: { - name: "Bozzolo Fatale", - effect: "Dati Mancanti", - }, - neverEndingNightmarePhysical: { - name: "Abbraccio Spettrale", - effect: "Grazie al Potere Z, chi la usa intrappola il bersaglio in una morsa generata dal proprio rancore. La potenza varia a seconda della mossa su cui si basa.", - }, - neverEndingNightmareSpecial: { - name: "Abbraccio Spettrale", - effect: "Dati Mancanti", - }, - corkscrewCrashPhysical: { - name: "Spirale Perforante", - effect: "Grazie al Potere Z, chi la usa vortica su se stesso e si scaglia sul bersaglio con tutte le sue forze. La potenza varia a seconda della mossa su cui si basa", - }, - corkscrewCrashSpecial: { - name: "Spirale Perforante", - effect: "Dati Mancanti", - }, - infernoOverdrivePhysical: { - name: "Fiammobomba Detonante", - effect: "Chi la usa sfrutta il Potere Z per emettere fiamme incandescenti che inceneriscono il bersaglio. La potenza varia a seconda della mossa su cui si basa.", - }, - infernoOverdriveSpecial: { - name: "Fiammobomba Detonante", - effect: "Dati Mancanti", - }, - hydroVortexPhysical: { - name: "Idrovortice Abissale", - effect: "Grazie al Potere Z, chi la usa crea un enorme vortice che inghiotte il bersaglio. La potenza varia a seconda della mossa su cui si basa.", - }, - hydroVortexSpecial: { - name: "Idrovortice Abissale", - effect: "Dati Mancanti", - }, - bloomDoomPhysical: { - name: "Floriscoppio Sfolgorante", - effect: "Grazie al Potere Z, chi la usa concentra l'energia delle piante per scatenare un potente attacco. La potenza varia a seconda della mossa su cui si basa.", - }, - bloomDoomSpecial: { - name: "Floriscoppio Sfolgorante", - effect: "Dati Mancanti", - }, - gigavoltHavocPhysical: { - name: "Gigascarica Folgorante", - effect: "Grazie al Potere Z, chi la usa genera una fortissima scarica elettrica che colpisce il bersaglio. La potenza varia a seconda della mossa su cui si basa.", - }, - gigavoltHavocSpecial: { - name: "Gigascarica Folgorante", - effect: "Dati Mancanti", - }, - shatteredPsychePhysical: { - name: "Impatto Psicocinetico", - effect: "Chi la usa si serve del Potere Z per manipolare la mente del bersaglio causando ingenti danni. La potenza varia a seconda della mossa su cui si basa.", - }, - shatteredPsycheSpecial: { - name: "Impatto Psicocinetico", - effect: "Dati Mancanti", - }, - subzeroSlammerPhysical: { - name: "Criodistruzione Polare", - effect: "Chi la usa sfrutta il Potere Z per far calare di colpo la temperatura e congelare il bersaglio. La potenza varia a seconda della mossa su cui si basa.", - }, - subzeroSlammerSpecial: { - name: "Criodistruzione Polare", - effect: "Dati Mancanti", - }, - devastatingDrakePhysical: { - name: "Dragoschianto Finale", - effect: "Grazie al Potere Z, chi la usa materializza la propria aura per colpire con forza il nemico. La potenza varia a seconda della mossa su cui si basa.", - }, - devastatingDrakeSpecial: { - name: "Dragoschianto Finale", - effect: "Dati Mancanti", - }, - blackHoleEclipsePhysical: { - name: "Buco Nero del Non Ritorno", - effect: "Chi la usa si serve del Potere Z per concentrare energia negativa con cui inghiotte il bersaglio. La potenza varia a seconda della mossa su cui si basa.", - }, - blackHoleEclipseSpecial: { - name: "Buco Nero del Non Ritorno", - effect: "Dati Mancanti", - }, - twinkleTacklePhysical: { - name: "Astroimpatto Fatato", - effect: "Grazie al Potere Z, chi la usa crea una dimensione fatata in cui fa ciò che vuole del proprio bersaglio. La potenza varia a seconda della mossa su cui si basa.", - }, - twinkleTackleSpecial: { - name: "Astroimpatto Fatato", - effect: "Dati Mancanti", - }, - catastropika: { - name: "Super Pikaboom", - effect: "Grazie al Potere Z, Pikachu accumula un'enorme quantità di energia elettrica e si lancia contro il bersaglio a tutta forza.", - }, - shoreUp: { - name: "Sabbiaccumulo", - effect: "Chi la usa recupera metà dei propri PS massimi. Durante le tempeste di sabbia ne recupera di più.", - }, - firstImpression: { - name: "Schermaglia", - effect: "È una mossa molto potente, ma funziona solo appena scesi in campo.", - }, - banefulBunker: { - name: "Fortino", - effect: "L'utilizzatore si protegge e se l'avversario attacca con una mossa da contatto viene avvelenato.", - }, - spiritShackle: { - name: "Cucitura d'Ombra", - effect: "Chi la usa attacca il bersaglio e fissa la sua ombra a terra impedendogli di fuggire.", - }, - darkestLariat: { - name: "Braccioteso", - effect: "Chi la usa attacca il bersaglio mulinando gli arti. Il danno inflitto ignora le modifiche alle statistiche del bersaglio.", - }, - sparklingAria: { - name: "Canto Effimero", - effect: "Chi la usa si mette a cantare emettendo tanti palloncini d’acqua. I Pokémon che subiscono danni da questa mossa guariscono dalle scottature.", - }, - iceHammer: { - name: "Martelgelo", - effect: "Infligge danni al bersaglio colpendolo con un pugno molto potente. Riduce la velocità di chi la usa.", - }, - floralHealing: { - name: "Cura Floreale", - effect: "Fa recuperare metà dei PS massimi al bersaglio. È più efficace quando il terreno di lotta è nello stato di Campo Erboso.", - }, - highHorsepower: { - name: "Forza Equina", - effect: "Il Pokémon travolge il bersaglio con un attacco possente.", - }, - strengthSap: { - name: "Assorbiforza", - effect: "Fa recuperare una quantità di PS pari all'Attacco del bersaglio, che vedrà diminuire questa statistica.", - }, - solarBlade: { - name: "Lama Solare", - effect: "Il Pokémon assorbe la luce al primo turno per poi condensarla in una lama e attaccare al turno successivo.", - }, - leafage: { - name: "Fogliame", - effect: "Attacca il bersaglio con delle foglie.", - }, - spotlight: { - name: "Riflettore", - effect: "Nessuna descrizione disponibile.", - }, - toxicThread: { - name: "Velenotela", - effect: "Avvelena il bersaglio avvolgendolo con filamenti tossici e ne riduce la Velocità.", - }, - laserFocus: { - name: "Concentrazione", - effect: "Chi la usa si concentra e nel turno successivo metterà sicuramente a segno un brutto colpo.", - }, - gearUp: { - name: "Marciainpiù", - effect: "Dà una marcia in più agli alleati con le abilità Meno o Più aumentandone l’Attacco e l’Attacco Speciale.", - }, - throatChop: { - name: "Colpo Infernale", - effect: "Chi viene colpito da questa mossa prova un dolore lancinante e non può più usare mosse basate sul suono per due turni.", - }, - pollenPuff: { - name: "Sferapolline", - effect: "Chi la usa attacca il nemico con una sfera esplosiva. Se colpisce degli alleati, fa recuperare loro dei PS.", - }, - anchorShot: { - name: "Colpo d'Ancora", - effect: "Chi la usa colpisce il nemico con un'ancora e lo intrappola nella catena impedendogli di fuggire.", - }, - psychicTerrain: { - name: "Campo Psichico", - effect: "Per cinque turni il terreno entra nello stato di Campo Psichico: i Pokémon a terra non subiscono mosse ad alta priorità e la potenza delle mosse di tipo Psico aumenta.", - }, - lunge: { - name: "Assalto", - effect: "Chi la usa si lancia con tutte le sue forze sul bersaglio e ne riduce l'Attacco.", - }, - fireLash: { - name: "Frusta di Fuoco", - effect: "Colpisce il bersaglio con una frusta infuocata e ne riduce la Difesa.", - }, - powerTrip: { - name: "Tracotanza", - effect: "Chi la usa attacca il bersaglio sfoggiando la propria forza. Più le sue statistiche sono state aumentate, più la mossa è potente.", - }, - burnUp: { - name: "Ultima Fiamma", - effect: "Chi la usa attacca sfruttando tutta la sua potenza incendiaria per infliggere gravi danni al bersaglio, ma come conseguenza perde il tipo Fuoco.", - }, - speedSwap: { - name: "Velociscambio", - effect: "Chi la usa scambia la propria Velocità con quella del bersaglio.", - }, - smartStrike: { - name: "Sottilcorno", - effect: "Chi la usa colpisce il bersaglio con un corno appuntito. Questa mossa va sempre a segno.", - }, - purify: { - name: "Purificazione", - effect: "Il bersaglio della mossa viene curato dalle alterazioni di stato inoltre l'utilizzatore ripristina i propri PS se la mossa va a segno.", - }, - revelationDance: { - name: "Mutadanza", - effect: "Chi la usa si lancia in una danza e attacca il nemico con tutte le sue forze. Il tipo della mossa corrisponde al tipo del Pokémon che la usa.", - }, - coreEnforcer: { - name: "Nucleocastigo", - effect: "Il bersaglio subisce dei danni e, se ha già agito nel turno, perde la sua abilità.", - }, - tropKick: { - name: "Tropicalcio", - effect: "Chi la usa colpisce il bersaglio con un potente calcio sfruttando una tecnica originaria dei paesi tropicali e ne riduce l'Attacco.", - }, - instruct: { - name: "Imposizione", - effect: "Nessuna descrizione disponibile.", - }, - beakBlast: { - name: "Cannonbecco", - effect: "Chi la usa arroventa il proprio becco e poi attacca. Se un Pokémon lo colpisce con un attacco diretto mentre sta accumulando calore, resta scottato.", - }, - clangingScales: { - name: "Clamorsquame", - effect: "Chi la usa attacca il bersaglio con un suono fortissimo che genera sfregando le scaglie del corpo. Dopo aver attaccato, la sua Difesa diminuisce.", - }, - dragonHammer: { - name: "Marteldrago", - effect: "Chi la usa infligge danni al bersaglio usando il proprio corpo come se fosse un martello.", - }, - brutalSwing: { - name: "Vorticolpo", - effect: "Chi la usa infligge danni intorno a sé facendo ruotare una parte del suo corpo.", - }, - auroraVeil: { - name: "Velaurora", - effect: "Questa mossa riduce i danni provocati dalle mosse fisiche e speciali per 5 turni. Può essere usata solo mentre grandina.", - }, - sinisterArrowRaid: { - name: "Dardoassalto Spettrale", - effect: "Grazie al Potere Z, Decidueye crea una formazione di frecce che colpisce il bersaglio a gran velocità.", - }, - maliciousMoonsault: { - name: "Iperschianto delle Tenebre", - effect: "Grazie al Potere Z, Incineroar richiama tutta la sua forza e si lancia impetuosamente sul bersaglio.", - }, - oceanicOperetta: { - name: "Sinfonia del Mare", - effect: "Grazie al Potere Z, Primarina concentra un’enorme quantità d’acqua e attacca il bersaglio con una potenza smisurata.", - }, - guardianOfAlola: { - name: "Collera del Guardiano", - effect: "Grazie al Potere Z, il Nume Locale evoca l’energia di Alola e attacca con grande potenza, facendo perdere al bersaglio la maggior parte dei suoi PS.", - }, - soulStealing7StarStrike: { - name: "Colpo Eptastellare Rubanima", - effect: "Grazie al Potere Z, Marshadow fa appello a tutte le sue forze e colpisce il bersaglio con una scarica di calci e pugni potentissimi.", - }, - stokedSparksurfer: { - name: "Elettrosurf Folgorante", - effect: "Grazie al Potere Z, il Raichu di Alola attacca con tutta la sua potenza e paralizza il bersaglio.", - }, - pulverizingPancake: { - name: "Adesso Faccio sul Serio", - effect: "Grazie al Potere Z, Snorlax tira fuori la grinta e, muovendo energicamente il suo enorme corpo, attacca il bersaglio con tutta la sua forza.", - }, - extremeEvoboost: { - name: "Potenziamento Eevolutivo", - effect: "Grazie al Potere Z, Eevee evoca a sé tutta l’energia delle sue possibili evoluzioni e aumenta di molto le sue statistiche", - }, - genesisSupernova: { - name: "Supernova delle Origini", - effect: "Grazie al Potere Z, Mew attacca il bersaglio con tutta la sua forza e genera un Campo Psichico a terra.", - }, - shellTrap: { - name: "Gusciotrappola", - effect: "Il guscio del Pokémon diventa una trappola. Se un nemico lo colpisce con una mossa fisica, innesca un'esplosione e subisce dei danni.", - }, - fleurCannon: { - name: "Cannonfiore", - effect: "Colpisce il bersaglio con un potente raggio, ma riduce di molto l'Attacco Speciale di chi la usa.", - }, - psychicFangs: { - name: "Psicozanna", - effect: "L'utilizzatore morde il bersaglio, rompendo barriere come Schermoluce e Riflesso.", - }, - stompingTantrum: { - name: "Battipiedi", - effect: "Chi la usa attacca battendo i piedi per la rabbia. Se la mossa usata al turno precedente non è andata a segno, la potenza raddoppia.", - }, - shadowBone: { - name: "Ossotetro", - effect: "Chi la usa colpisce il bersaglio con un osso in cui alberga uno spirito. Può anche ridurne la Difesa.", - }, - accelerock: { - name: "Rocciarapida", - effect: "Chi la usa attacca il bersaglio colpendolo a tutta velocità. Questa mossa ha priorità alta.", - }, - liquidation: { - name: "Idrobreccia", - effect: "Chi la usa colpisce il bersaglio con la forza dell'acqua. Può anche ridurne la Difesa.", - }, - prismaticLaser: { - name: "Prismalaser", - effect: "Chi la usa proietta dei potenti raggi di luce grazie alla potenza del suo prisma, ma non può agire nel turno successivo.", - }, - spectralThief: { - name: "Ombrafurto", - effect: "Chi la usa ruba gli aumenti delle statistiche del bersaglio, poi si nasconde nella sua ombra e lo attacca.", - }, - sunsteelStrike: { - name: "Astrocarica", - effect: "Chi la usa travolge il bersaglio con la potenza di una meteora. Questo attacco ignora l'abilità del bersaglio.", - }, - moongeistBeam: { - name: "Raggio d'Ombra", - effect: "Chi la usa proietta sul bersaglio un misterioso raggio di luce. Questo attacco ignora l'abilità del bersaglio.", - }, - tearfulLook: { - name: "Occhionilucidi", - effect: "Chi la usa guarda il bersaglio con gli occhi pieni di lacrime e gli fa perdere lo spirito combattivo, riducendone l'Attacco e l'Attacco Speciale", - }, - zingZap: { - name: "Elettropizzico", - effect: "Chi la usa colpisce il bersaglio investendolo con una potente scarica elettrica che può anche farlo tentennare.", - }, - naturesMadness: { - name: "Ira della Natura", - effect: "Scatena l’ira della natura sul bersaglio e ne dimezza i PS.", - }, - multiAttack: { - name: "Multiattacco", - effect: "Chi la usa si avvolge in un potente campo energetico e colpisce il bersaglio. Il tipo della mossa varia in base alla ROM installata.", - }, - tenMillionVoltThunderbolt: { - name: "Iperfulmine", - effect: "Grazie al Potere Z, Pikachu con il berretto scatena una potentissima scarica elettrica. Probabile brutto colpo.", - }, - mindBlown: { - name: "Sbalorditesta", - effect: "Chi la usa fa esplodere la propria testa per attaccare tutti i Pokémon che ha intorno, ma subisce danni.", - }, - plasmaFists: { - name: "Pugni Plasma", - effect: "Chi la usa attacca con pugni carichi di elettricità. Trasforma le mosse di tipo Normale in mosse di tipo Elettro.", - }, - photonGeyser: { - name: "Geyser Fotonico", - effect: "Infligge danni in base all’Attacco o all’Attacco Speciale scegliendo il più alto tra i due. Questo attacco ignora l’abilità del bersaglio.", - }, - lightThatBurnsTheSky: { - name: "Fotodistruzione Apocalittica", - effect: "Infligge danni in base all’Attacco o all’Attacco Speciale scegliendo il più alto tra i due. Questo attacco ignora l’abilità del bersaglio.", - }, - searingSunrazeSmash: { - name: "Supercollisione Solare", - effect: "Grazie al Potere Z, Solgaleo attacca il bersaglio con tutta la sua forza. Questo attacco ignora l’abilità del bersaglio se questa ha effetto sulle mosse.", - }, - menacingMoonrazeMaelstrom: { - name: "Deflagrazione Lunare", - effect: "Grazie al Potere Z, Lunala attacca il bersaglio con tutta la sua forza. Questo attacco ignora l’abilità del bersaglio se questa ha effetto sulle mosse.", - }, - letsSnuggleForever: { - name: "Dolcesacco di Botte", - effect: "Grazie al Potere Z, Mimikyu fa appello a tutte le sue forze e attacca il bersaglio tempestandolo di colpi.", - }, - splinteredStormshards: { - name: "Litotempesta Radiale", - effect: "Grazie al Potere Z, Lycanroc attacca il bersaglio con tutta la sua forza. Questa mossa annulla anche gli eventuali campi attivi.", - }, - clangorousSoulblaze: { - name: "Dracofonia Divampante", - effect: "Grazie al Potere Z, Kommo-o attacca i nemici con tutta la sua forza. Inoltre, aumenta le proprie statistiche.", - }, - zippyZap: { - name: "Sprintaboom", - effect: "The user attacks the target with bursts of electricity at high speed. This move always goes first and raises the user's evasiveness.", - }, - splishySplash: { - name: "Surfasplash", - effect: "Colpisce il bersaglio con un'enorme onda caricata di elettricità che può anche paralizzarlo.", - }, - floatyFall: { - name: "Piombaflap", - effect: "Chi la usa si libra in aria per poi piombare addosso al bersaglio. Può anche far tentennare il Pokémon colpito.", - }, - pikaPapow: { - name: "Pikasaetta", - effect: "Questa mossa infallibile diventa più potente con il rafforzarsi del rapporto tra Pikachu e l'Allenatore.", - }, - bouncyBubble: { - name: "Bollaslurp", - effect: "Chi la usa colpisce il bersaglio con una raffica di bolle, per poi assorbirle e recuperare una quantità di PS pari alla del danno inferto.", - }, - buzzyBuzz: { - name: "Elettrozap", - effect: "Colpisce il bersaglio con una scarica elettrica che lo paralizza.", - }, - sizzlySlide: { - name: "Fiammabam", - effect: "Chi la usa viene avvolto dalle fiamme e colpisce il bersaglio con forza, scottandolo.", - }, - glitzyGlow: { - name: "Auraswoosh", - effect: "Colpisce il bersaglio ripetutamente con onde di forza psicocinetica e innalza una barriera fantastica che riduce i danni degli attacchi speciali nemici.", - }, - baddyBad: { - name: "Zona Buiabuia", - effect: "Chi la usa scatena l’oscurità che ha dentro, colpendo il bersaglio e innalzando una barriera fantastica che riduce i danni degli attacchi fisici nemici.", - }, - sappySeed: { - name: "Bombafrush", - effect: "Fa crescere un'enorme pianta che colpisce il bersaglio con una pioggia di semi. Questi sottraggono PS a ogni turno permettendo a chi la usa di curarsi.", - }, - freezyFrost: { - name: "Scricchiagelo", - effect: "Chi la usa attacca il bersaglio con un cristallo formato da una nube nera congelata, che annulla ogni modifica alle statistiche di tutti i Pokémon.", - }, - sparklySwirl: { - name: "Sbrilluccibufera", - effect: "Chi la usa attacca il bersaglio avvolgendolo in un turbine di profumi soffocanti e cura i problemi di stato propri e degli alleati.", - }, - veeveeVolley: { - name: "Eeveempatto", - effect: "Questa mossa infallibile diventa più potente con il rafforzarsi del rapporto tra Eevee e l'Allenatore.", - }, - doubleIronBash: { - name: "Pugni Corazzati", - effect: "L'utilizzatore ruota, centrando il dado esagonale nel petto, quindi colpisce con le braccia due volte di seguito. Ciò potrebbe anche far tentennare il bersaglio.", - }, - maxGuard: { - name: "Dynabarriera", - effect: "Questa mossa permette di eludere tutti gli attacchi. Se usata in successione può fallire.", - }, - dynamaxCannon: { - name: "Cannone Dynamax", - effect: "Il Pokémon attacca emettendo dal suo nucleo l'energia concentrata nel corpo. Se il bersaglio è overlivellato, i danni inflitti aumentano.", - }, - snipeShot: { - name: "Tiromirato", - effect: "Permette di attaccare il bersaglio ignorando gli effetti di mosse e abilità che alterano le mosse", - }, - jawLock: { - name: "Morsostretto", - effect: "Impedisce a chi la usa e al bersaglio di essere sostituiti finché non vanno KO. L'effetto svanisce se uno dei due lascia il campo.", - }, - stuffCheeks: { - name: "Riempiguance", - effect: "Se chi la usa ha con sé una bacca, la mangia e la sua Difesa aumenta di molto.", - }, - noRetreat: { - name: "Spalle al Muro", - effect: "Il Pokémon aumenta tutte le sue statistiche ma non può più fuggire o essere sostituito.", - }, - tarShot: { - name: "Colpocatrame", - effect: "Chi la usa getta catrame appiccicoso sul bersaglio abbassandone la Velocità e rendendolo vulnerabile al tipo Fuoco.", - }, - magicPowder: { - name: "Magipolvere", - effect: "Chi la usa getta addosso al bersaglio una polvere magica che lo rende di tipo Psico.", - }, - dragonDarts: { - name: "Dragofrecce", - effect: "L'utilizzatore attacca due volte usando Dreepy. Se ci sono due obiettivi, questa mossa colpisce una volta ogni obiettivo.", - }, - teatime: { - name: "Ora del Tè", - effect: "Chi la usa invita tutti i Pokémon in campo a prendere il tè. Quelli che hanno con sé una bacca la mangiano.", - }, - octolock: { - name: "Tentacolock", - effect: "Chi la usa immobilizza il bersaglio impedendogli di fuggire e ne diminuisce la Difesa e la Difesa Speciale a ogni turno.", - }, - boltBeak: { - name: "Beccoshock", - effect: "Chi la usa attacca il bersaglio con il becco appuntito carico d'elettricità. Se attacca per primo, la potenza della mossa raddoppia.", - }, - fishiousRend: { - name: "Branchiomorso", - effect: "Chi la usa morde il bersaglio con le dure branchie. Se attacca per primo, la potenza della mossa raddoppia.", - }, - courtChange: { - name: "Cambiocampo", - effect: "Una forza misteriosa inverte gli effetti attivi sul campo alleato e sul campo avversario.", - }, - maxFlare: { - name: "Dynafiammata", - effect: "Un attacco di tipo Fuoco che può essere eseguito dai Pokémon dynamaxizzati. Intensifica i raggi solari per cinque turni.", - }, - maxFlutterby: { - name: "Dynainsetto", - effect: "Un attacco di tipo Coleottero che può essere eseguito dai Pokémon dynamaxizzati. Riduce l'Attacco Speciale degli avversari.", - }, - maxLightning: { - name: "Dynasaetta", - effect: "Un attacco di tipo Elettro che può essere eseguito dai Pokémon dynamaxizzati. Per cinque turni il terreno entra nello stato di Campo Elettrico.", - }, - maxStrike: { - name: "Dynattacco", - effect: "Un attacco di tipo Normale che può essere eseguito dai Pokémon dynamaxizzati. Riduce la Velocità degli avversari.", - }, - maxKnuckle: { - name: "Dynapugno", - effect: "Un attacco di tipo Lotta che può essere eseguito dai Pokémon dynamaxizzati. Aumenta l'Attacco degli alleati.", - }, - maxPhantasm: { - name: "Dynavuoto", - effect: "Un attacco di tipo Spettro che può essere eseguito dai Pokémon dynamaxizzati. Riduce la Difesa degli avversari.", - }, - maxHailstorm: { - name: "Dynagelo", - effect: "Un attacco di tipo Ghiaccio che può essere eseguito dai Pokémon dynamaxizzati. Causa una nevicata che dura per cinque turni.", - }, - maxOoze: { - name: "Dynacorrosione", - effect: "Un attacco di tipo Veleno che può essere eseguito dai Pokémon dynamaxizzati. Aumenta l'Attacco Speciale degli alleati.", - }, - maxGeyser: { - name: "Dynaflusso", - effect: "Un attacco di tipo Acqua che può essere eseguito dai Pokémon dynamaxizzati. Provoca una forte pioggia per cinque turni.", - }, - maxAirstream: { - name: "Dynajet", - effect: "Un attacco di tipo Volante che può essere eseguito dai Pokémon dynamaxizzati. Aumenta la Velocità degli alleati.", - }, - maxStarfall: { - name: "Dynafata", - effect: "Un attacco di tipo Folletto che può essere eseguito dai Pokémon dynamaxizzati. Per cinque turni il terreno entra nello stato di Campo Nebbioso.", - }, - maxWyrmwind: { - name: "Dynadragone", - effect: "Un attacco di tipo Drago che può essere eseguito dai Pokémon dynamaxizzati. Riduce l'Attacco degli avversari.", - }, - maxMindstorm: { - name: "Dynapsiche", - effect: "Un attacco di tipo Psico che può essere eseguito dai Pokémon dynamaxizzati. Per cinque turni il terreno entra nello stato di Campo Psichico.", - }, - maxRockfall: { - name: "Dynamacigno", - effect: "Un attacco di tipo Roccia che può essere eseguito dai Pokémon dynamaxizzati. Causa una tempesta di sabbia per cinque turni.", - }, - maxQuake: { - name: "Dynasisma", - effect: "Un attacco di tipo Terra che può essere eseguito dai Pokémon dynamaxizzati. Aumenta la Difesa Speciale degli alleati.", - }, - maxDarkness: { - name: "Dynatenebre", - effect: "Un attacco di tipo Buio che può essere eseguito dai Pokémon dynamaxizzati. Riduce la Difesa Speciale degli avversari.", - }, - maxOvergrowth: { - name: "Dynaflora", - effect: "Un attacco di tipo Erba che può essere eseguito dai Pokémon dynamaxizzati. Per cinque turni il terreno entra nello stato di Campo Erboso.", - }, - maxSteelspike: { - name: "Dynametallo", - effect: "Un attacco di tipo Acciaio che può essere eseguito dai Pokémon dynamaxizzati. Aumenta la Difesa degli alleati.", - }, - clangorousSoul: { - name: "Dracofonia", - effect: "Chi la usa sacrifica un po' dei suoi PS per aumentare tutte le sue statistiche.", - }, - bodyPress: { - name: "Schiacciacorpo", - effect: "Chi la usa schiaccia il bersaglio con il suo corpo. Più la sua Difesa è alta, maggiori sono i danni inflitti.", - }, - decorate: { - name: "Decorazione", - effect: "Chi la usa agghinda il bersaglio con delle decorazioni aumentandone di molto l'Attacco e l'Attacco Speciale.", - }, - drumBeating: { - name: "Tamburattacco", - effect: "Chi la usa percuote il proprio tamburo per controllarne le radici e attaccare il bersaglio, riducendone la Velocità.", - }, - snapTrap: { - name: "Tagliola", - effect: "Chi la usa intrappola il bersaglio in una tagliola e lo attacca per quattro o cinque turni.", - }, - pyroBall: { - name: "Palla Infuocata", - effect: "l Pokémon attacca con una palla creata incendiando una piccola pietra. Può anche scottare il bersaglio.", - }, - behemothBlade: { - name: "Taglio Maestoso", - effect: "Il Pokémon brandisce un'enorme spada e attacca vibrando un poderoso fendente.", - }, - behemothBash: { - name: "Colpo Maestoso", - effect: "Il Pokémon trasforma il suo corpo in un robusto scudo e attacca caricando con forza.", - }, - auraWheel: { - name: "Ruota d'Aura", - effect: "Il Pokémon emette l'energia accumulata nelle guance per attaccare e aumentare la Velocità. Il tipo della mossa cambia in base alla forma assunta da Morpeko.", - }, - breakingSwipe: { - name: "Vastoimpatto", - effect: "Chi la usa attacca i nemici intorno con la sua robusta coda riducendone l'Attacco.", - }, - branchPoke: { - name: "Ramostoccata", - effect: "Chi la usa attacca il bersaglio con un ramo incredibilmente appuntito.", - }, - overdrive: { - name: "Overdrive", - effect: "Chi la usa suona la chitarra o il basso creando un'onda sonora potentissima con cui attacca il bersaglio.", - }, - appleAcid: { - name: "Acido Malico", - effect: "Il Pokémon attacca il bersaglio con un liquido acido ricavato da mele aspre riducendone la Difesa Speciale.", - }, - gravApple: { - name: "Forza G", - effect: "Il Pokémon fa cadere una mela sul bersaglio da una grande altezza, infliggendogli danni e riducendone la Difesa.", - }, - spiritBreak: { - name: "Frantumanima", - effect: "Chi la usa attacca il bersaglio con un tale impeto da fargli perdere la voglia di lottare e ne riduce l'Attacco Speciale", - }, - strangeSteam: { - name: "Vapore Incantato", - effect: "Il Pokémon attacca il bersaglio con getti di vapore che possono anche confonderlo.", - }, - lifeDew: { - name: "Goccia Vitale", - effect: "Il Pokémon sparge tutt'intorno dell'acqua misteriosa che fa recuperare PS a sé e agli alleati in campo.", - }, - obstruct: { - name: "Sbarramento", - effect: "Permette di eludere tutti gli attacchi. Se usata in successione può fallire. Se un Pokémon tocca chi la usa, la sua Difesa diminuisce di molto.", - }, - falseSurrender: { - name: "Supplicolpo", - effect: "Chi la usa finge di abbassare la testa a mo' di supplica e attacca il bersaglio con i suoi capelli scarmigliati. Questa mossa va sempre a segno.", - }, - meteorAssault: { - name: "Sfolgorassalto", - effect: "Chi la usa attacca il bersaglio brandendo un grosso gambo, ma perde l'equilibrio e nel turno successivo non può agire.", - }, - eternabeam: { - name: "Raggio Infinito", - effect: "È l'attacco più potente di Eternatus quando assume la sua forma originale. Nel turno successivo non può agire.", - }, - steelBeam: { - name: "Raggio d'Acciaio", - effect: "Il Pokémon utilizza l'acciaio del proprio corpo per sparare un violento raggio, ma subisce danni.", - }, - expandingForce: { - name: "Vastenergia", - effect: "Chi la usa attacca il bersaglio con energia psichica. Se utilizzata quando è attivo un Campo Psichico, la mossa aumenta di potenza e danneggia tutti i nemici.", - }, - steelRoller: { - name: "Ferrorullo", - effect: "Chi la usa attacca eliminando lo stato del terreno di lotta. La mossa fallisce se nel terreno non è attivo alcuno stato.", - }, - scaleShot: { - name: "Squamacolpo", - effect: "Il Pokémon attacca lanciando delle squame da due a cinque volte di fila. Aumenta la Velocità di chi la usa, ma ne riduce la Difesa.", - }, - meteorBeam: { - name: "Raggiometeora", - effect: "Chi la usa accumula l'energia dello spazio nel primo turno per aumentare l'Attacco Speciale, quindi attacca nel turno successivo.", - }, - shellSideArm: { - name: "Armaguscio", - effect: "Il Pokémon esegue un attacco fisico o speciale, in base a quale causa danni maggiori. Può anche avvelenare il bersaglio.", - }, - mistyExplosion: { - name: "Nebbioscoppio", - effect: "Chi la usa attacca tutti i Pokémon che ha intorno, ma poi va KO. La potenza delle mosse aumenta quando è attivo un Campo Nebbioso.", - }, - grassyGlide: { - name: "Erboscivolata", - effect: "Chi la usa attacca il bersaglio scivolando sul terreno. Se utilizzata quando è attivo un Campo Erboso, ha priorità alta.", - }, - risingVoltage: { - name: "Elettroimpennata", - effect: "Chi la usa attacca con dell'elettricità che si alza dal suolo. La potenza della mossa raddoppia quando l'avversario si trova in un Campo Elettrico.", - }, - terrainPulse: { - name: "Campopulsar", - effect: "Chi la usa attacca sfruttando l'energia del terreno di lotta. Il tipo e la potenza della mossa variano a seconda dello stato del terreno stesso.", - }, - skitterSmack: { - name: "Strisciacolpo", - effect: "Chi la usa attacca il bersaglio strisciandogli alle spalle e riducendo il suo Attacco Speciale.", - }, - burningJealousy: { - name: "Fiamminvidia", - effect: "Chi la usa attacca con la forza dell'invidia, causando una scottatura a tutti i Pokémon le cui statistiche sono aumentate durante quel turno.", - }, - lashOut: { - name: "Sfogarabbia", - effect: "Chi la usa attacca il bersaglio con tutta la propria ira. Se ha subito riduzioni delle statistiche durante quel turno, la potenza della mossa raddoppia.", - }, - poltergeist: { - name: "Poltergeist", - effect: "Chi la usa attacca utilizzando lo strumento del bersaglio. La mossa fallisce se quest'ultimo non ha uno strumento.", - }, - corrosiveGas: { - name: "Gas Corrosivo", - effect: "Chi la usa avvolge gli altri Pokémon attorno in un gas altamente acido, dissolvendo i loro strumenti.", - }, - coaching: { - name: "Coaching", - effect: "Chi la usa aumenta l'Attacco e la Difesa di tutti gli alleati dando loro indicazioni precise.", - }, - flipTurn: { - name: "Virata", - effect: "Chi usa questa mossa fa marcia indietro per farsi sostituire dopo aver sferrato l'attacco.", - }, - tripleAxel: { - name: "Triplo Axel", - effect: "Il Pokémon attacca sferrando fino a tre calci consecutivi. Ogni volta che la mossa va a segno, la sua potenza aumenta.", - }, - dualWingbeat: { - name: "Doppia Ala", - effect: "Il Pokémon attacca il bersaglio urtandolo con le ali e infliggendogli danni due volte di fila.", - }, - scorchingSands: { - name: "Sabbiardente", - effect: "Chi la usa attacca il bersaglio scagliandogli addosso della sabbia incandescente. Può anche scottarlo.", - }, - jungleHealing: { - name: "Giunglacura", - effect: "Il Pokémon diventa tutt'uno con la giungla, ripristinando i PS e curando i problemi di stato per sé e per gli alleati in campo.", - }, - wickedBlow: { - name: "Pugnotenebra", - effect: "Il Pokémon sferra un singolo colpo potentissimo, massima espressione dello stile di tipo Buio. Brutto colpo assicurato.", - }, - surgingStrikes: { - name: "Idroraffica", - effect: "Il Pokémon sferra una fluida serie di tre attacchi, massima espressione dello stile di tipo Acqua. Brutto colpo assicurato.", - }, - thunderCage: { - name: "Elettrogabbia", - effect: "Il Pokémon attacca il bersaglio imprigionandolo in una gabbia di elettricità, che sprigiona corrente per quattro o cinque turni.", - }, - dragonEnergy: { - name: "Dragoenergia", - effect: " Il Pokémon attacca il bersaglio convertendo la propria forza vitale in energia. Più i suoi PS sono bassi, più la potenza della mossa diminuisce.", - }, - freezingGlare: { - name: "Sguardo Gelido", - effect: "Il Pokémon attacca rilasciando energia psichica dagli occhi. Può congelare il bersaglio.", - }, - fieryWrath: { - name: "Furia Ardente", - effect: "ERR Il Pokémon attacca trasformando la sua rabbia in un'aura simile a fiamme. Può anche far tentennare il bersaglio.ORE", - }, - thunderousKick: { - name: "Calcio Tonante", - effect: "Il Pokémon sferra calci al bersaglio dopo averlo distratto con movimenti fulminei, riducendone la Difesa.", - }, - glacialLance: { - name: "Lancia Glaciale", - effect: "Il Pokémon attacca il bersaglio scagliando una lancia di ghiaccio accompagnata da una tormenta di neve.", - }, - astralBarrage: { - name: "Schegge Astrali", - effect: "Il Pokémon attacca il bersaglio scatenandogli contro una miriade di piccoli spettri.", - }, - eerieSpell: { - name: "Inquietantesimo", - effect: "Il Pokémon attacca con i suoi potenti poteri psichici. Sottrae 3 PP all'ultima mossa usata dall'avversario.", - }, - direClaw: { - name: "Artigli Fatali", - effect: "Il Pokémon attacca il bersaglio con artigli distruttori. Può anche causargli avvelenamento, paralisi o sonno.", - }, - psyshieldBash: { - name: "Barrierassalto", - effect: "Il Pokémon si carica di energia psichica per poi schiantarsi sul bersaglio. Inoltre, aumenta la propria Difesa.", - }, - powerShift: { - name: "Scambioforza", - effect: "Il Pokémon scambia il suo Attacco con la Difesa.", - }, - stoneAxe: { - name: "Rocciascure", - effect: "Il Pokémon attacca il bersaglio con delle scuri di roccia. I frammenti rocciosi dispersi dall'attacco restano sospesi intorno al bersaglio.", - }, - springtideStorm: { - name: "Tempesta Zefirea", - effect: "Il Pokémon attacca il bersaglio avvolgendolo con un vento fortissimo di odio e amore. Può anche ridurne l'Attacco.", - }, - mysticalPower: { - name: "Forza Mistica", - effect: "Il Pokémon attacca emettendo un misterioso potere. Inoltre, aumenta il proprio Attacco Speciale.", - }, - ragingFury: { - name: "Ira Furente", - effect: "Il Pokémon s'infuria e sputa fiammate per due o tre turni, ma rimane confuso.", - }, - waveCrash: { - name: "Ondaschianto", - effect: "Il Pokémon si avvolge in uno strato d'acqua e si lancia sul bersaglio, ma subisce seri danni.", - }, - chloroblast: { - name: "Clorofillaser", - effect: "Il Pokémon attacca concentrando la clorofilla nel proprio corpo per poi lanciarla, ma subisce danni.", - }, - mountainGale: { - name: "Soffio d'Iceberg", - effect: " Il Pokémon attacca colpendo il bersaglio con un blocco di ghiaccio grande come un iceberg. Può anche far tentennare il bersaglio.", - }, - victoryDance: { - name: "Danzavittoria", - effect: "Il Pokémon si lancia in una danza sfrenata per invocare la vittoria e aumenta l'Attacco, la Difesa e la Velocità.", - }, - headlongRush: { - name: "Scontro Frontale", - effect: "Il Pokémon si schianta sul bersaglio con tutte le forze. La sua Difesa e la sua Difesa Speciale diminuiscono.", - }, - barbBarrage: { - name: "Mille Fielespine", - effect: "Il bersaglio viene colpito da una miriade di spine tossiche che possono anche avvelenarlo. Se il bersaglio è già avvelenato, la potenza della mossa raddoppia.", - }, - esperWing: { - name: "Ali d'Aura", - effect: "Il Pokémon falcia il bersaglio con ali rafforzate da un'aura. Probabile brutto colpo. Inoltre, la Velocità aumenta.", - }, - bitterMalice: { - name: "Livore", - effect: "Il Pokémon attacca con una furia che fa raggelare il sangue nelle vene del bersaglio, riducendone l'Attacco.", - }, - shelter: { - name: "Barricata", - effect: "Il Pokémon indurisce la propria pelle come uno scudo di ferro, aumentando di molto la Difesa.", - }, - tripleArrows: { - name: "Triplodardo", - effect: "Il Pokémon sferra un calcio per poi scoccare tre dardi insieme. Può ridurre la Difesa del bersaglio o farlo tentennare. Probabile brutto colpo.", - }, - infernalParade: { - name: "Corteo Spettrale", - effect: "Il Pokémon attacca con innumerevoli sfere di fuoco che possono anche scottare il bersaglio. Se questo è affetto da problemi di stato, la potenza della mossa raddoppia.", - }, - ceaselessEdge: { - name: "Lama Milleflutti", - effect: "Il Pokémon attacca il bersaglio con la spada conchiglia. I frammenti di conchiglie formano una trappola di punte ai piedi del bersaglio.", - }, - bleakwindStorm: { - name: "Tempesta Boreale", - effect: "Il Pokémon attacca il bersaglio con venti gelidi e sferzanti che lo fanno tremare anima e corpo. Può anche ridurne la Velocità.", - }, - wildboltStorm: { - name: "Tempesta Tonante", - effect: "Il Pokémon chiama a sé una tempesta di fulmini e raffiche di vento con cui attacca violentemente il bersaglio. Può anche paralizzarlo.", - }, - sandsearStorm: { - name: "Tempesta Ardente", - effect: "Il Pokémon attacca il bersaglio avvolgendolo con sabbia ardente e un vento fortissimo che possono scottarlo.", - }, - lunarBlessing: { - name: "Invocaluna", - effect: " Il Pokémon rivolge una preghiera alla luna crescente, ripristinando i PS e curando i problemi di stato per sé e per gli alleati in campo.", - }, - takeHeart: { - name: "Baldimpulso", - effect: "Il Pokémon prende coraggio e guarisce dai problemi di stato. Inoltre, aumenta l'Attacco Speciale e la Difesa Speciale.", - }, - gMaxWildfire: { - name: "Gigavampa", - effect: "Attacco di tipo Fuoco eseguito da Charizard Gigamax. Infligge danni per quattro turni.", - }, - gMaxBefuddle: { - name: "Gigastupore", - effect: "Attacco di tipo Coleottero eseguito da Butterfree Gigamax. Avvelena, paralizza o addormenta i nemici.", - }, - gMaxVoltCrash: { - name: "Gigapikafolgori", - effect: "Attacco di tipo Elettro eseguito da Pikachu Gigamax. Paralizza i nemici.", - }, - gMaxGoldRush: { - name: "Gigamonete", - effect: "Attacco di tipo Normale eseguito da Meowth Gigamax. Confonde i nemici e permette anche di ricevere una ricompensa maggiore.", - }, - gMaxChiStrike: { - name: "Gigapugnointuito", - effect: "Attacco di tipo Lotta eseguito da Machamp Gigamax. Aumenta la probabilità di sferrare brutti colpi.", - }, - gMaxTerror: { - name: "Gigaillusione", - effect: "Attacco di tipo Spettro eseguito da Gengar Gigamax. Il Pokémon calpesta l'ombra del nemico impedendogli la fuga o la sostituzione.", - }, - gMaxResonance: { - name: "Gigamelodia", - effect: "Attacco di tipo Ghiaccio eseguito da Lapras Gigamax. Riduce i danni subiti per cinque turni.", - }, - gMaxCuddle: { - name: "Gigabbraccio", - effect: "Attacco di tipo Normale eseguito da Eevee Gigamax. Fa infatuare i nemici.", - }, - gMaxReplenish: { - name: "Gigarinnovamento", - effect: "Attacco di tipo Normale eseguito da Snorlax Gigamax. Rigenera le bacche mangiate.", - }, - gMaxMalodor: { - name: "Gigafetore", - effect: "Attacco di tipo Veleno eseguito da Garbodor Gigamax. Avvelena i nemici.", - }, - gMaxStonesurge: { - name: "Gigarocciagetto", - effect: "Attacco di tipo Acqua eseguito da Drednaw Gigamax. Sparge rocce aguzze sul campo di lotta.", - }, - gMaxWindRage: { - name: "Gigaciclone", - effect: "Attacco di tipo Volante eseguito da Corviknight Gigamax. Annulla l'effetto di mosse come Riflesso e Schermoluce.", - }, - gMaxStunShock: { - name: "Gigatoxiscossa", - effect: "Attacco di tipo Elettro eseguito da Toxtricity Gigamax. Avvelena o paralizza i nemici.", - }, - gMaxFinale: { - name: "Gigagranfinale", - effect: "Attacco di tipo Folletto eseguito da Alcremie Gigamax. Fa recuperare PS agli alleati.", - }, - gMaxDepletion: { - name: "Gigalogoramento", - effect: "Attacco di tipo Drago eseguito da Duraludon Gigamax. Toglie PP all'ultima mossa usata dai nemici.", - }, - gMaxGravitas: { - name: "Gigagravitoforza", - effect: "Attacco di tipo Psico eseguito da Orbeetle Gigamax. Cambia la gravità per cinque turni.", - }, - gMaxVolcalith: { - name: "Gigalapilli", - effect: "Attacco di tipo Roccia eseguito da Coalossal Gigamax. Infligge danni per quattro turni.", - }, - gMaxSandblast: { - name: "Gigavortisabbia", - effect: "Attacco di tipo Terra eseguito da Sandaconda Gigamax. Scatena un turbine di sabbia per quattro o cinque turni.", - }, - gMaxSnooze: { - name: "Gigatorpore", - effect: "Attacco di tipo Buio eseguito da Grimmsnarl Gigamax. Chi la usa fa un grande sbadiglio che fa addormentare il nemico al turno successivo.", - }, - gMaxTartness: { - name: "Gigattaccoacido", - effect: "Attacco di tipo Erba eseguito da Flapple Gigamax. Riduce l’elusione dei nemici.", - }, - gMaxSweetness: { - name: "Gigambrosia", - effect: "Attacco di tipo Erba eseguito da Appletun Gigamax. Cura i problemi di stato degli alleati.", - }, - gMaxSmite: { - name: "Gigacastigo", - effect: "Attacco di tipo Folletto eseguito da Hatterene Gigamax. Confonde i nemici.", - }, - gMaxSteelsurge: { - name: "Gigaferroaculei", - effect: "Attacco di tipo Acciaio eseguito da Copperajah Gigamax. Sparge pezzi di metallo acuminati sul campo di lotta.", - }, - gMaxMeltdown: { - name: "Gigaliquefazione", - effect: "ERAttacco di tipo Acciaio eseguito da Melmetal Gigamax. Impedisce ai nemici di usare la stessa mossa due volte di seguito.RORE", - }, - gMaxFoamBurst: { - name: "Gigaschiuma", - effect: "Attacco di tipo Acqua eseguito da Kingler Gigamax. Riduce di molto la Velocità dei nemici.", - }, - gMaxCentiferno: { - name: "Gigamillefiamme", - effect: "Attacco di tipo Fuoco eseguito da Centiskorch Gigamax. Intrappola i nemici nelle fiamme per quattro o cinque turni.", - }, - gMaxVineLash: { - name: "Gigasferzata", - effect: "Attacco di tipo Erba eseguito da Venusaur Gigamax. Infligge danni per quattro turni.", - }, - gMaxCannonade: { - name: "Gigacannonata", - effect: "Attacco di tipo Acqua eseguito da Blastoise Gigamax. Infligge danni per quattro turni.", - }, - gMaxDrumSolo: { - name: "Gigarullio", - effect: "Attacco di tipo Erba eseguito da Rillaboom Gigamax. Ignora le abilità dei nemici.", - }, - gMaxFireball: { - name: "Gigafiammopalla", - effect: "Attacco di tipo Fuoco eseguito da Cinderace Gigamax. Ignora le abilità dei nemici.", - }, - gMaxHydrosnipe: { - name: "Gigasparomirato", - effect: "Attacco di tipo Acqua eseguito da Inteleon Gigamax. Ignora le abilità dei nemici.", - }, - gMaxOneBlow: { - name: "Gigasingolcolpo", - effect: "Attacco di tipo Buio eseguito da Urshifu Gigamax che ignora gli effetti della Dynabarriera.", - }, - gMaxRapidFlow: { - name: "Gigapluricolpo", - effect: " Attacco di tipo Acqua eseguito da Urshifu Gigamax che ignora gli effetti della Dynabarriera.", - }, - teraBlast: { - name: "Terascoppio", - effect: "Se il Pokémon è teracristallizzato, attacca con l'energia del suo teratipo. Infligge danni in base all'Attacco o all'Attacco Speciale scegliendo il più alto tra i due.", - }, - silkTrap: { - name: "Telatrappola", - effect: "Il Pokémon tesse una trappola di tela che lo protegge dagli attacchi e riduce la Velocità di chi entra in contatto con lui.", - }, - axeKick: { - name: "Calcio ad Ascia", - effect: "Il Pokémon attacca sferrando un calcio dall'alto verso il basso che può confondere il bersaglio. Se la mossa fallisce, il Pokémon subisce dei danni.", - }, - lastRespects: { - name: "Omaggio ai KO", - effect: "Il Pokémon attacca per placare il risentimento dei suoi compagni di squadra. Più sono quelli andati KO, più la potenza della mossa aumenta.", - }, - luminaCrash: { - name: "Fotocollisione", - effect: "Il Pokémon attacca sparando una luce bizzarra che agisce anche sulla psiche. Riduce di molto la Difesa Speciale del bersaglio.", - }, - orderUp: { - name: "Alta Cucina", - effect: "Il Pokémon attacca con deliziose movenze. Se ha in bocca un Tatsugiri, una sua statistica aumenta in base alla forma di quest'ultimo.", - }, - jetPunch: { - name: "Pugnojet", - effect: "Il Pokémon avvolge il pugno in una corrente impetuosa e sferra un colpo a una tale velocità da rendersi quasi invisibile. Questo attacco ha priorità alta.", - }, - spicyExtract: { - name: "Essenza Piccante", - effect: "Il Pokémon secerne un'essenza straordinariamente piccante. Aumenta di molto l'Attacco del bersaglio ma ne diminuisce di molto la Difesa.", - }, - spinOut: { - name: "Slittaruote", - effect: "Il Pokémon infligge danni caricando le estremità e ruotandole vorticosamente. La sua Velocità diminuisce di molto.", - }, - populationBomb: { - name: "Infestazione", - effect: "Il Pokémon si riunisce con i suoi simili in un gruppo brulicante che collabora per attaccare e colpisce da una a dieci volte di fila.", - }, - iceSpinner: { - name: "Vortighiaccio", - effect: "Il Pokémon avvolge gli arti inferiori in un sottile strato di ghiaccio e si scontra con il bersaglio piroettando. Il movimento rotatorio distrugge il terreno di lotta.", - }, - glaiveRush: { - name: "Spadoncarica", - effect: "Il Pokémon si lancia in una carica avventata. Fino al suo prossimo turno, il Pokémon riceverà il doppio dei danni dagli attacchi altrui, che andranno sempre a segno.", - }, - revivalBlessing: { - name: "Preghiera Vitale", - effect: "Il Pokémon intona una preghiera compassionevole, rianimando un Pokémon della squadra esausto e restituendogli metà dei suoi PS.", - }, - saltCure: { - name: "Sotto Sale", - effect: "Il Pokémon mette sotto sale il bersaglio, infliggendogli danni a ogni turno. I Pokémon di tipo Acciaio e di tipo Acqua sono particolarmente vulnerabili a questa mossa.", - }, - tripleDive: { - name: "Triplo Tuffo", - effect: "Il Pokémon si lancia in un triplo tuffo perfettamente coordinato, colpendo il bersaglio con degli schizzi d'acqua e infliggendogli danni tre volte di fila.", - }, - mortalSpin: { - name: "Glitturbine", - effect: "Attacco rotante che elimina gli effetti di mosse come Legatutto, Avvolgibotta e Parassiseme. Aumenta anche la Velocità di chi la usa.", - }, - doodle: { - name: "Ricalco", - effect: "Il Pokémon cattura l'essenza del bersaglio con un ricalco, copiandone l'abilità e applicandola a se stesso e ai suoi alleati.", - }, - filletAway: { - name: "Alleggerimento", - effect: "Il Pokémon sacrifica dei PS per far aumentare di molto l'Attacco, l'Attacco Speciale e la Velocità.", - }, - kowtowCleave: { - name: "Genufendente", - effect: "Il Pokémon si genuflette per far abbassare la guardia al bersaglio e poi fenderlo. Questo attacco va sempre a segno.", - }, - flowerTrick: { - name: "Prestigiafiore", - effect: " Il Pokémon attacca il bersaglio lanciandogli addosso un mazzo di fiori truccato. Questo attacco va sempre a segno, infliggendo anche un brutto colpo.", - }, - torchSong: { - name: "Canzone Ardente", - effect: "Il Pokémon abbrustolisce il bersaglio soffiandogli addosso fiamme ardenti come se intonasse una canzone. Inoltre, il suo Attacco Speciale aumenta.", - }, - aquaStep: { - name: "Idroballetto", - effect: "Il Pokémon si prende gioco del bersaglio con passi di danza leggiadri e fluidi come l’acqua, infliggendogli danni. Inoltre, la sua Velocità aumenta.", - }, - ragingBull: { - name: "Scatenatoro", - effect: "Il Pokémon carica il bersaglio con furia cieca, rompendo barriere come Schermoluce e Riflesso. Il tipo di questa mossa dipende dalla forma di chi la usa.", - }, - makeItRain: { - name: "Corsa all'Oro", - effect: "Il Pokémon attacca lanciando una gran quantità di monete recuperabili dopo la lotta, ma riduce il proprio Attacco Speciale.", - }, - psyblade: { - name: "Psicolama", - effect: "Il Pokémon falcia il bersaglio con una lama eterea. La potenza della mossa aumenta del 50% quando è attivo un Campo Elettrico.", - }, - hydroSteam: { - name: "Idrovapore", - effect: "Il Pokémon ricopre con forza il bersaglio di acqua bollente. Con la luce solare intensa, la potenza di questa mossa aumenta del 50% anziché diminuire.", - }, - ruination: { - name: "Catastrofe", - effect: "Il Pokémon invoca una terribile disgrazia, dimezzando i PS del bersaglio.", - }, - collisionCourse: { - name: "Turboschianto", - effect: "Il Pokémon si schianta al suolo mentre si trasforma, causando un'esplosione primordiale. La potenza della mossa aumenta se questa è superefficace sul bersaglio.", - }, - electroDrift: { - name: "Fulmiscatto", - effect: "Il Pokémon saetta mentre si trasforma, trafiggendo il bersaglio con una scossa futuristica. La potenza della mossa aumenta se questa è superefficace sul bersaglio.", - }, - shedTail: { - name: "Tagliacoda", - effect: "Chi la usa crea una copia di se stesso usando parte dei suoi PS e si fa sostituire da un altro Pokémon della squadra.", - }, - chillyReception: { - name: "Freddura", - effect: "Chi la usa dice una freddura che fa raggelare i presenti per poi farsi sostituire da un altro Pokémon della squadra. Causa una nevicata che dura per cinque turni.", - }, - tidyUp: { - name: "Pulizie", - effect: "Il Pokémon fa le pulizie, annullando gli effetti di Punte, Levitoroccia, Rete Vischiosa, Fielepunte e Sostituto. Inoltre, aumenta il suo Attacco e la sua Velocità.", - }, - snowscape: { - name: "Vista Innevata", - effect: "Il Pokémon causa una nevicata che dura per cinque turni e aumenta la Difesa dei Pokémon di tipo Ghiaccio.", - }, - pounce: { - name: "Balzo", - effect: "Il Pokémon fa un balzo e attacca il bersaglio, riducendone inoltre la Velocità.", - }, - trailblaze: { - name: "Apripista", - effect: "Il Pokémon attacca come se saltasse fuori dall'erba alta e si muove con passo leggiadro, aumentando la propria Velocità.", - }, - chillingWater: { - name: "Doccia Fredda", - effect: "Il Pokémon attacca il bersaglio con una doccia d'acqua talmente fredda da farlo demoralizzare, riducendone l'Attacco.", - }, - hyperDrill: { - name: "Ipertrapano", - effect: "Il Pokémon fa roteare rapidamente la parte appuntita del suo corpo, perforando il bersaglio ed eludendo mosse come Protezione e Individua.", - }, - twinBeam: { - name: "Doppioraggio", - effect: "Il Pokémon attacca il bersaglio con misteriosi raggi di luce emessi dagli occhi che infliggono danni due volte di fila.", - }, - rageFist: { - name: "Pugno Furibondo", - effect: "Il Pokémon trasforma la sua furia in energia e la utilizza per attaccare. Più attacchi ha subito il Pokémon, più la potenza della mossa aumenta.", - }, - armorCannon: { - name: "Corazza Cannone", - effect: "Il Pokémon si libera della sua corazza, scagliandola sul bersaglio come una raffica di proiettili incandescenti. La sua Difesa e la sua Difesa Speciale diminuiscono.", - }, - bitterBlade: { - name: "Lama del Rimorso", - effect: "Il Pokémon concentra nelle lame tutti i rimorsi accumulati nel mondo dei vivi e assale il bersaglio, recuperando una quantità di PS pari a metà del danno inflitto.", - }, - doubleShock: { - name: "Doppiolampo", - effect: "Il Pokémon libera tutta la sua potenza elettrica per infliggere gravi danni al bersaglio, ma come conseguenza perde il tipo Elettro.", - }, - gigatonHammer: { - name: "Granmartello", - effect: "Chi la usa attacca il bersaglio brandendo un enorme martello. La mossa non può essere usata per due volte di fila.", - }, - comeuppance: { - name: "Ritorsione", - effect: "Il Pokémon restituisce con gli interessi i danni subiti all'ultimo avversario che l'ha colpito.", - }, - aquaCutter: { - name: "Idrotaglio", - effect: " Il Pokémon espelle acqua ad alta pressione e falcia il bersaglio con un fendente tagliente quanto una lama. Probabile brutto colpo.", - }, - blazingTorque: { - name: "Turboustione", - effect: "L'utilizzatore accende il suo motore ardente verso il bersaglio. Ciò potrebbe anche lasciare il bersaglio con una bruciatura.", - }, - wickedTorque: { - name: "Turbotenebra", - effect: "L'utente accende il proprio motore nel bersaglio con intenti dannosi. Ciò potrebbe addormentare il bersaglio.", - }, - noxiousTorque: { - name: "Turbotossina", - effect: "L'utilizzatore fa girare il suo motore velenoso verso il bersaglio. Ciò potrebbe anche avvelenare il bersaglio.", - }, - combatTorque: { - name: "Turborissa", - effect: "L'utente accelera con forza il proprio motore verso il bersaglio. Ciò potrebbe anche lasciare il bersaglio paralizzato.", - }, - magicalTorque: { - name: "Turboincanto", - effect: "L'utilizzatore fa girare il proprio motore fatato verso il bersaglio. Ciò potrebbe anche confondere l'obiettivo.", - }, - bloodMoon: { - name: "Luna Rossa", - effect: "Il Pokémon attacca rilasciando tutta la sua energia, confluita in una luna piena rossa come il sangue. Questa mossa non può essere usata due volte di fila.", - }, - matchaGotcha: { - name: "Spruzzatè", - effect: "Il Pokémon attacca mescolando del tè e spruzzandolo, recuperando una quantità di PS pari alla metà del danno inflitto. Può anche scottare il bersaglio.", - }, - syrupBomb: { - name: "Bomba Sciroppata", - effect: " Il Pokémon fa esplodere dello sciroppo viscoso sul bersaglio, ricoprendolo e facendogli diminuire la Velocità per tre turni.", - }, - ivyCudgel: { - name: "Clava di Liane", - effect: "Il Pokémon colpisce con una clava avvolta da liane. Il tipo della mossa varia in base alla maschera indossata. Probabile brutto colpo.", - }, - electroShot: { - name: "Elettroraggio", - effect: "Il Pokémon accumula elettricità e aumenta l'Attacco Speciale al primo turno, per poi rilasciare una potente scarica al turno successivo o, se piove, immediatamente.", - }, - teraStarstorm: { - name: "Teracluster", - effect: "Il Pokémon elimina il bersaglio irradiando il potere dei cristalli. Se Terapagos assume la Forma Astrale, la mossa infligge danni a tutti gli avversari.", - }, - fickleBeam: { - name: "Irregolaser", - effect: "Il Pokémon attacca rilasciando raggi di luce. Talvolta i laser vengono emessi da tutte le teste, contribuendo a raddoppiare la potenza della mossa.", - }, - burningBulwark: { - name: "Egida Ignea", - effect: "Il Pokémon blocca gli attacchi avversari con la pelliccia incandescente che scotta chi entra in contatto con lui.", - }, - thunderclap: { - name: "Saetta", - effect: "Il Pokémon abbatte una scarica elettrica sul bersaglio prima che questi possa attaccare. La mossa fallisce se il bersaglio sferra una mossa che non è di attacco.", - }, - mightyCleave: { - name: "Taglio Poderoso", - effect: "Il Pokémon fende il bersaglio con la luce immagazzinata nella testa, ignorando gli effetti delle mosse protettive.", - }, - tachyonCutter: { - name: "Tachiontaglio", - effect: "Il Pokémon emette delle lame particellari in successione, infliggendo danni due volte di fila. Questo attacco va sempre a segno.", - }, - hardPress: { - name: "Pressa d'Acciaio", - effect: "Il Pokémon schiaccia il bersaglio usando i propri arti. Più PS rimangono al bersaglio, maggiore è la potenza della mossa.", - }, - dragonCheer: { - name: "Grido del Drago", - effect: "Il Pokémon incita gli alleati con un inno ai draghi, aumentando la probabilità che sferrino brutti colpi. Particolarmente efficace con alleati di tipo Drago.", - }, - alluringVoice: { - name: "Ammaliavoce", - effect: "Il Pokémon attacca sfruttando il suo canto angelico, confondendo il bersaglio se le sue statistiche sono aumentate nello stesso turno.", - }, - temperFlare: { - name: "Rabbia Bruciante", - effect: "Il Pokémon attacca con l'impeto di chi è pronto a tutto. Se la mossa usata al turno precedente non è andata a segno, la potenza raddoppia.", - }, - supercellSlam: { - name: "Elettrotuffo", - effect: "Il Pokémon si schianta sul bersaglio dopo essersi elettrificato. Se la mossa fallisce, il Pokémon subisce dei danni.", - }, - psychicNoise: { - name: "Psicorumore", - effect: " l Pokémon investe il bersaglio con insopportabili onde sonore che gli impediscono di recuperare PS con mosse, abilità o strumenti che ha con sé per due turni.", - }, - upperHand: { - name: "Colpo di Mano", - effect: "Il Pokémon reagisce al movimento del bersaglio e, colpendo con il palmo, lo fa tentennare. Se il bersaglio non sferra un attacco ad alta priorità, la mossa fallisce.", - }, - malignantChain: { - name: "Intossicatena", - effect: "Il Pokémon logora il bersaglio avvolgendolo con le sue catene fatte di veleno e iniettandogli delle tossine che possono anche iperavvelenarlo.", - }, -} as const; diff --git a/src/locales/it/nature.ts b/src/locales/it/nature.json similarity index 80% rename from src/locales/it/nature.ts rename to src/locales/it/nature.json index 3c6e8b4d29f..92b64acb3ab 100644 --- a/src/locales/it/nature.ts +++ b/src/locales/it/nature.json @@ -1,6 +1,4 @@ -import { SimpleTranslationEntries } from "#app/interfaces/locales"; - -export const nature: SimpleTranslationEntries = { +{ "Hardy": "Ardita", "Lonely": "Schiva", "Brave": "Audace", @@ -26,4 +24,4 @@ export const nature: SimpleTranslationEntries = { "Sassy": "Vivace", "Careful": "Cauta", "Quirky": "Furba" -} as const; +} \ No newline at end of file diff --git a/src/locales/it/party-ui-handler.json b/src/locales/it/party-ui-handler.json new file mode 100644 index 00000000000..f5582e5b630 --- /dev/null +++ b/src/locales/it/party-ui-handler.json @@ -0,0 +1,42 @@ +{ + "SEND_OUT": "Manda in campo", + "SUMMARY": "Sommario", + "CANCEL": "Annulla", + "RELEASE": "Rilascia", + "APPLY": "Applica", + "TEACH": "Insegna", + "SPLICE": "Unisci", + "UNSPLICE": "Dividi", + "ACTIVATE": "Attiva", + "DEACTIVATE": "Disattiva", + "TRANSFER": "Trasferisci", + "ALL": "Tutto", + "PASS_BATON": "Staffetta", + "UNPAUSE_EVOLUTION": "Consenti evoluzione", + "REVIVE": "Revitalizza", + "RENAME": "Rinomina", + "choosePokemon": "Scegli un Pokémon.", + "doWhatWithThisPokemon": "Hai selezionato questo Pokémon.", + "noEnergy": "{{pokemonName}} non ha più energie\nper lottare!", + "hasEnergy": "{{pokemonName}} ha ancora energie\nper lottare!", + "cantBeUsed": "{{pokemonName}} non può essere usato\nin questa sfida!", + "tooManyItems": "{{pokemonName}} possiede già\nquest'oggetto in abbondanza!", + "anyEffect": "Non avrebbe alcun effetto.", + "unpausedEvolutions": "{{pokemonName}} può di nuovo evolversi.", + "unspliceConfirmation": "Vuoi davvero dividere {{fusionName}}\nda {{pokemonName}}? {{fusionName}} andrà perduto.", + "wasReverted": "{{fusionName}} è tornato ad essere {{pokemonName}}.", + "releaseConfirmation": "Vuoi davvero liberare {{pokemonName}}?", + "releaseInBattle": "Non puoi liberare un Pokémon che sta combattendo!", + "selectAMove": "Scegli una mossa.", + "changeQuantity": "Scegli un oggetto da trasferire.\nUsa < e > per cambiarne la quantità.", + "selectAnotherPokemonToSplice": "Scegli un altro Pokémon da unire.", + "cancel": "Annulla", + "goodbye": "Addio, {{pokemonName}}!", + "byebye": "Ciao ciao, {{pokemonName}}!", + "farewell": "Arrivederci, {{pokemonName}}!", + "soLong": "È stato bello, {{pokemonName}}!", + "thisIsWhereWePart": "Le nostre strade si dividono, {{pokemonName}}!", + "illMissYou": "Mi mancherai, {{pokemonName}}!", + "illNeverForgetYou": "Non ti dimenticherò, {{pokemonName}}!", + "untilWeMeetAgain": "Alla prossima, {{pokemonName}}!" + } \ No newline at end of file diff --git a/src/locales/it/party-ui-handler.ts b/src/locales/it/party-ui-handler.ts deleted file mode 100644 index 979e04f3ea1..00000000000 --- a/src/locales/it/party-ui-handler.ts +++ /dev/null @@ -1,54 +0,0 @@ -import { SimpleTranslationEntries } from "#app/interfaces/locales"; - -export const partyUiHandler: SimpleTranslationEntries = { - "SEND_OUT": "Manda in campo", - "SUMMARY": "Sommario", - "CANCEL": "Annulla", - "RELEASE": "Rilascia", - "APPLY": "Applica", - "TEACH": "Insegna", - "SPLICE": "Splice", - "UNSPLICE": "Unsplice", - "ACTIVATE": "Activate", - "DEACTIVATE": "Deactivate", - "TRANSFER": "Transfer", - "ALL": "All", - "PASS_BATON": "Pass Baton", - "UNPAUSE_EVOLUTION": "Unpause Evolution", - "REVIVE": "Revive", - "RENAME": "Rinomina", - - "choosePokemon": "Choose a Pokémon.", - "doWhatWithThisPokemon": "Do what with this Pokémon?", - "noEnergy": "{{pokemonName}} has no energy\nleft to battle!", - "hasEnergy": "{{pokemonName}} still has energy\nto battle!", - "cantBeUsed": "{{pokemonName}} can't be used in\nthis challenge!", - "tooManyItems": "{{pokemonName}} has too many\nof this item!", - "anyEffect": "It won't have any effect.", - "unpausedEvolutions": "Evolutions have been unpaused for {{pokemonName}}.", - "unspliceConfirmation": "Do you really want to unsplice {{fusionName}}\nfrom {{pokemonName}}? {{fusionName}} will be lost.", - "wasReverted": "{{fusionName}} was reverted to {{pokemonName}}.", - "releaseConfirmation": "Do you really want to release {{pokemonName}}?", - "releaseInBattle": "You can't release a Pokémon that's in battle!", - "selectAMove": "Select a move.", - "changeQuantity": "Select a held item to transfer.\nUse < and > to change the quantity.", - "selectAnotherPokemonToSplice": "Select another Pokémon to splice.", - "cancel": "Cancel", - - // Slot TM text - "able": "Able", - "notAble": "Not able", - "learned": "Learned", - - // Releasing messages - "goodbye": "Goodbye, {{pokemonName}}!", - "byebye": "Byebye, {{pokemonName}}!", - "farewell": "Farewell, {{pokemonName}}!", - "soLong": "So long, {{pokemonName}}!", - "thisIsWhereWePart": "This is where we part, {{pokemonName}}!", - "illMissYou": "I'll miss you, {{pokemonName}}!", - "illNeverForgetYou": "I'll never forget you, {{pokemonName}}!", - "untilWeMeetAgain": "Until we meet again, {{pokemonName}}!", - "sayonara": "Sayonara, {{pokemonName}}!", - "smellYaLater": "Smell ya later, {{pokemonName}}!", -} as const; diff --git a/src/locales/it/pokeball.json b/src/locales/it/pokeball.json new file mode 100644 index 00000000000..d63f0671906 --- /dev/null +++ b/src/locales/it/pokeball.json @@ -0,0 +1,8 @@ +{ + "pokeBall": "Poké Ball", + "greatBall": "Mega Ball", + "ultraBall": "Ultra Ball", + "rogueBall": "Rogue Ball", + "masterBall": "Master Ball", + "luxuryBall": "Chic Ball" +} \ No newline at end of file diff --git a/src/locales/it/pokeball.ts b/src/locales/it/pokeball.ts deleted file mode 100644 index df556415670..00000000000 --- a/src/locales/it/pokeball.ts +++ /dev/null @@ -1,10 +0,0 @@ -import { SimpleTranslationEntries } from "#app/interfaces/locales"; - -export const pokeball: SimpleTranslationEntries = { - "pokeBall": "Poké Ball", - "greatBall": "Mega Ball", - "ultraBall": "Ultra Ball", - "rogueBall": "Rogue Ball", - "masterBall": "Master Ball", - "luxuryBall": "Chic Ball", -} as const; diff --git a/src/locales/it/pokemon-form-battle.json b/src/locales/it/pokemon-form-battle.json new file mode 100644 index 00000000000..3c9b36f8150 --- /dev/null +++ b/src/locales/it/pokemon-form-battle.json @@ -0,0 +1,14 @@ +{ + "mega": "Mega {{pokemonName}}", + "mega-x": "Mega {{pokemonName}} X", + "mega-y": "Mega {{pokemonName}} Y", + "primal": "Archeo {{pokemonName}}", + "gigantamax": "GigaMax {{pokemonName}}", + "eternamax": "EternaMax {{pokemonName}}", + "megaChange": "{{preName}} si evolve\nin {{pokemonName}}!", + "gigantamaxChange": "{{preName}} si Gigamaxxizza\nin {{pokemonName}}!", + "eternamaxChange": "{{preName}} si Dynamaxxa infinitamente\nin {{pokemonName}}!", + "revertChange": "{{pokemonName}} è tornato\nalla sua forma originaria!", + "formChange": "{{preName}} ha cambiato forma!", + "disguiseChange": "Il costume ha assorbito l’attacco!" +} \ No newline at end of file diff --git a/src/locales/it/pokemon-form.ts b/src/locales/it/pokemon-form.json similarity index 78% rename from src/locales/it/pokemon-form.ts rename to src/locales/it/pokemon-form.json index d8bf9eeaab2..505173e4c8a 100644 --- a/src/locales/it/pokemon-form.ts +++ b/src/locales/it/pokemon-form.json @@ -1,24 +1,4 @@ -import { SimpleTranslationEntries } from "#app/interfaces/locales"; - -export const battlePokemonForm: SimpleTranslationEntries = { - "mega": "Mega {{pokemonName}}", - "mega-x": "Mega {{pokemonName}} X", - "mega-y": "Mega {{pokemonName}} Y", - "primal": "Archeo {{pokemonName}}", - "gigantamax": "GigaMax {{pokemonName}}", - "eternamax": "EternaMax {{pokemonName}}", - - "megaChange": "{{preName}} si evolve\nin {{pokemonName}}!", - "gigantamaxChange": "{{preName}} si Gigamaxxizza\nin {{pokemonName}}!", - "eternamaxChange": "{{preName}} si Dynamaxxa infinitamente\nin {{pokemonName}}!", - "revertChange": "{{pokemonName}} è tornato\nalla sua forma originaria!", - "formChange": "{{preName}} ha cambiato forma!", - "disguiseChange": "Its disguise served it as a decoy!", -} as const; - -export const pokemonForm: SimpleTranslationEntries = { - // Starters forms - // 1G +{ "pikachuCosplay": "Cosplay", "pikachuCoolCosplay": "Cosplay classe", "pikachuBeautyCosplay": "Cosplay bellezza", @@ -27,7 +7,6 @@ export const pokemonForm: SimpleTranslationEntries = { "pikachuToughCosplay": "Cosplay grinta", "pikachuPartner": "Compagno", "eeveePartner": "Compagno", - // 2G "pichuSpiky": "Spunzorek", "unownA": "A", "unownB": "B", @@ -57,12 +36,10 @@ export const pokemonForm: SimpleTranslationEntries = { "unownZ": "Z", "unownExclamation": "!", "unownQuestion": "?", - // 3G "castformSunny": "Sole", "castformRainy": "Pioggia", "castformSnowy": "Nuvola di neve", "deoxysNormal": "Normale", - // 4G "burmyPlant": "Pianta", "burmySandy": "Sabbia", "burmyTrash": "Scarti", @@ -75,7 +52,6 @@ export const pokemonForm: SimpleTranslationEntries = { "rotomMow": "Taglio", "giratinaAltered": "Alterata", "shayminLand": "Terra", - // 5G "basculinRedStriped": "Linearossa", "basculinBlueStriped": "Lineablu", "basculinWhiteStriped": "Lineabianca", @@ -88,7 +64,7 @@ export const pokemonForm: SimpleTranslationEntries = { "landorusIncarnate": "Incarnazione", "keldeoOrdinary": "Normale", "meloettaAria": "Canto", - // 6G + "meloettaPirouette": "Danza", "froakieBattleBond": "Morfosintonia", "scatterbugMeadow": "Giardinfiore", "scatterbugIcySnow": "Nevi perenni", @@ -134,7 +110,6 @@ export const pokemonForm: SimpleTranslationEntries = { "zygarde50Pc": "Forma 50% Sciamefusione", "zygarde10Pc": "Forma 10% Sciamefusione", "zygardeComplete": "Forma perfetta", - // 7G "oricorioBaile": "Flamenco", "oricorioPompom": "Cheerdance", "oricorioPau": "Hula", @@ -158,7 +133,6 @@ export const pokemonForm: SimpleTranslationEntries = { "mimikyuBusted": "Smascherata", "magearnaOriginal": "Colore Antico", "marshadowZenith": "Zenith", - // 8G "sinisteaPhony": "Contraffatta", "sinisteaAntique": "Autentica", "eiscueNoIce": "Liquefaccia", @@ -169,7 +143,6 @@ export const pokemonForm: SimpleTranslationEntries = { "zamazentaHeroOfManyBattles": "Eroe di Mille Lotte", "zarudeDada": "Papà", "enamorusIncarnate": "Incarnazione", - // 9G "squawkabillyGreenPlumage": "Piume Verdi", "squawkabillyBluePlumage": "Piume Azzurre", "squawkabillyYellowPlumage": "Piume Gialle", @@ -180,19 +153,18 @@ export const pokemonForm: SimpleTranslationEntries = { "gimmighoulChest": "Scrigno", "gimmighoulRoaming": "Ambulante", "koraidonApexBuild": "Foggia Integrale", - "koraidonLimitedBuild":"Foggia Parziale", - "koraidonSprintingBuild":"Foggia Scattante", - "koraidonSwimmingBuild":"Foggia Nautica", - "koraidonGlidingBuild":"Foggia Librata", - "miraidonUltimateMode":"Assetto Completo", - "miraidonLowPowerMode":"Assetto Limitato", - "miraidonDriveMode":"Assetto Sprint", - "miraidonAquaticMode":"Assetto Nuoto", - "miraidonGlideMode":"Assetto Planata", + "koraidonLimitedBuild": "Foggia Parziale", + "koraidonSprintingBuild": "Foggia Scattante", + "koraidonSwimmingBuild": "Foggia Nautica", + "koraidonGlidingBuild": "Foggia Librata", + "miraidonUltimateMode": "Assetto Completo", + "miraidonLowPowerMode": "Assetto Limitato", + "miraidonDriveMode": "Assetto Sprint", + "miraidonAquaticMode": "Assetto Nuoto", + "miraidonGlideMode": "Assetto Planata", "poltchageistCounterfeit": "Taroccata", "poltchageistArtisan": "Pregiata", "paldeaTaurosCombat": "Combattiva", "paldeaTaurosBlaze": "Infuocata", - "paldeaTaurosAqua": "Acquatica", - -} as const; + "paldeaTaurosAqua": "Acquatica" +} \ No newline at end of file diff --git a/src/locales/it/pokemon-info-container.json b/src/locales/it/pokemon-info-container.json new file mode 100644 index 00000000000..c3cc8d49ce1 --- /dev/null +++ b/src/locales/it/pokemon-info-container.json @@ -0,0 +1,6 @@ +{ + "moveset": "Set di mosse", + "gender": "Genere:", + "ability": "Abilità:", + "nature": "Natura:" +} \ No newline at end of file diff --git a/src/locales/it/pokemon-info-container.ts b/src/locales/it/pokemon-info-container.ts deleted file mode 100644 index 03d83a1e6d7..00000000000 --- a/src/locales/it/pokemon-info-container.ts +++ /dev/null @@ -1,8 +0,0 @@ -import { SimpleTranslationEntries } from "#app/interfaces/locales"; - -export const pokemonInfoContainer: SimpleTranslationEntries = { - "moveset": "Set di mosse", - "gender": "Genere:", - "ability": "Abilità:", - "nature": "Natura:", -} as const; diff --git a/src/locales/it/pokemon-info.ts b/src/locales/it/pokemon-info.json similarity index 78% rename from src/locales/it/pokemon-info.ts rename to src/locales/it/pokemon-info.json index 9d8780e656b..4b655dbe1ce 100644 --- a/src/locales/it/pokemon-info.ts +++ b/src/locales/it/pokemon-info.json @@ -1,7 +1,5 @@ -import { PokemonInfoTranslationEntries } from "#app/interfaces/locales"; - -export const pokemonInfo: PokemonInfoTranslationEntries = { - Stat: { +{ + "Stat": { "HP": "PS Max", "HPshortened": "PS", "ATK": "Attacco", @@ -15,10 +13,10 @@ export const pokemonInfo: PokemonInfoTranslationEntries = { "SPD": "Velocità", "SPDshortened": "Vel", "ACC": "Precisione", - "EVA": "Elusione" + "EVA": "Elusione", + "HPStat": "PS" }, - - Type: { + "Type": { "UNKNOWN": "Sconosciuto", "NORMAL": "Normale", "FIGHTING": "Lotta", @@ -38,6 +36,6 @@ export const pokemonInfo: PokemonInfoTranslationEntries = { "DRAGON": "Drago", "DARK": "Buio", "FAIRY": "Folletto", - "STELLAR": "Astrale", - }, -} as const; + "STELLAR": "Astrale" + } +} diff --git a/src/locales/it/pokemon-summary.ts b/src/locales/it/pokemon-summary.json similarity index 77% rename from src/locales/it/pokemon-summary.ts rename to src/locales/it/pokemon-summary.json index 7f17440b16c..f6c9290f783 100644 --- a/src/locales/it/pokemon-summary.ts +++ b/src/locales/it/pokemon-summary.json @@ -1,6 +1,4 @@ -import { TranslationEntries } from "#app/interfaces/locales"; - -export const pokemonSummary: TranslationEntries = { +{ "pokemonInfo": "Info Pokémon", "status": "Stato", "powerAccuracyCategory": "Potenza\nPrecisione\nCategoria", @@ -11,10 +9,9 @@ export const pokemonSummary: TranslationEntries = { "expPoints": "Punti Esp.", "nextLv": "Prossimo Lv.", "cancel": "Annulla", - "memoString": "Natura {{natureFragment}},\n{{metFragment}}", "metFragment": { "normal": "incontrato al Lv.{{level}},\n{{biome}}.", - "apparently": "apparentemente incontrato al Lv.{{level}},\n{{biome}}.", - }, -} as const; + "apparently": "apparentemente incontrato al Lv.{{level}},\n{{biome}}." + } +} \ No newline at end of file diff --git a/src/locales/it/pokemon.json b/src/locales/it/pokemon.json new file mode 100644 index 00000000000..9e26dfeeb6e --- /dev/null +++ b/src/locales/it/pokemon.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/src/locales/it/pokemon.ts b/src/locales/it/pokemon.ts deleted file mode 100644 index 8d0830aeb79..00000000000 --- a/src/locales/it/pokemon.ts +++ /dev/null @@ -1,1086 +0,0 @@ -import { SimpleTranslationEntries } from "#app/interfaces/locales"; - -export const pokemon: SimpleTranslationEntries = { - "bulbasaur": "Bulbasaur", - "ivysaur": "Ivysaur", - "venusaur": "Venusaur", - "charmander": "Charmander", - "charmeleon": "Charmeleon", - "charizard": "Charizard", - "squirtle": "Squirtle", - "wartortle": "Wartortle", - "blastoise": "Blastoise", - "caterpie": "Caterpie", - "metapod": "Metapod", - "butterfree": "Butterfree", - "weedle": "Weedle", - "kakuna": "Kakuna", - "beedrill": "Beedrill", - "pidgey": "Pidgey", - "pidgeotto": "Pidgeotto", - "pidgeot": "Pidgeot", - "rattata": "Rattata", - "raticate": "Raticate", - "spearow": "Spearow", - "fearow": "Fearow", - "ekans": "Ekans", - "arbok": "Arbok", - "pikachu": "Pikachu", - "raichu": "Raichu", - "sandshrew": "Sandshrew", - "sandslash": "Sandslash", - "nidoran_f": "Nidoran♀", - "nidorina": "Nidorina", - "nidoqueen": "Nidoqueen", - "nidoran_m": "Nidoran♂", - "nidorino": "Nidorino", - "nidoking": "Nidoking", - "clefairy": "Clefairy", - "clefable": "Clefable", - "vulpix": "Vulpix", - "ninetales": "Ninetales", - "jigglypuff": "Jigglypuff", - "wigglytuff": "Wigglytuff", - "zubat": "Zubat", - "golbat": "Golbat", - "oddish": "Oddish", - "gloom": "Gloom", - "vileplume": "Vileplume", - "paras": "Paras", - "parasect": "Parasect", - "venonat": "Venonat", - "venomoth": "Venomoth", - "diglett": "Diglett", - "dugtrio": "Dugtrio", - "meowth": "Meowth", - "persian": "Persian", - "psyduck": "Psyduck", - "golduck": "Golduck", - "mankey": "Mankey", - "primeape": "Primeape", - "growlithe": "Growlithe", - "arcanine": "Arcanine", - "poliwag": "Poliwag", - "poliwhirl": "Poliwhirl", - "poliwrath": "Poliwrath", - "abra": "Abra", - "kadabra": "Kadabra", - "alakazam": "Alakazam", - "machop": "Machop", - "machoke": "Machoke", - "machamp": "Machamp", - "bellsprout": "Bellsprout", - "weepinbell": "Weepinbell", - "victreebel": "Victreebel", - "tentacool": "Tentacool", - "tentacruel": "Tentacruel", - "geodude": "Geodude", - "graveler": "Graveler", - "golem": "Golem", - "ponyta": "Ponyta", - "rapidash": "Rapidash", - "slowpoke": "Slowpoke", - "slowbro": "Slowbro", - "magnemite": "Magnemite", - "magneton": "Magneton", - "farfetchd": "Farfetch'd", - "doduo": "Doduo", - "dodrio": "Dodrio", - "seel": "Seel", - "dewgong": "Dewgong", - "grimer": "Grimer", - "muk": "Muk", - "shellder": "Shellder", - "cloyster": "Cloyster", - "gastly": "Gastly", - "haunter": "Haunter", - "gengar": "Gengar", - "onix": "Onix", - "drowzee": "Drowzee", - "hypno": "Hypno", - "krabby": "Krabby", - "kingler": "Kingler", - "voltorb": "Voltorb", - "electrode": "Electrode", - "exeggcute": "Exeggcute", - "exeggutor": "Exeggutor", - "cubone": "Cubone", - "marowak": "Marowak", - "hitmonlee": "Hitmonlee", - "hitmonchan": "Hitmonchan", - "lickitung": "Lickitung", - "koffing": "Koffing", - "weezing": "Weezing", - "rhyhorn": "Rhyhorn", - "rhydon": "Rhydon", - "chansey": "Chansey", - "tangela": "Tangela", - "kangaskhan": "Kangaskhan", - "horsea": "Horsea", - "seadra": "Seadra", - "goldeen": "Goldeen", - "seaking": "Seaking", - "staryu": "Staryu", - "starmie": "Starmie", - "mr_mime": "Mr. Mime", - "scyther": "Scyther", - "jynx": "Jynx", - "electabuzz": "Electabuzz", - "magmar": "Magmar", - "pinsir": "Pinsir", - "tauros": "Tauros", - "magikarp": "Magikarp", - "gyarados": "Gyarados", - "lapras": "Lapras", - "ditto": "Ditto", - "eevee": "Eevee", - "vaporeon": "Vaporeon", - "jolteon": "Jolteon", - "flareon": "Flareon", - "porygon": "Porygon", - "omanyte": "Omanyte", - "omastar": "Omastar", - "kabuto": "Kabuto", - "kabutops": "Kabutops", - "aerodactyl": "Aerodactyl", - "snorlax": "Snorlax", - "articuno": "Articuno", - "zapdos": "Zapdos", - "moltres": "Moltres", - "dratini": "Dratini", - "dragonair": "Dragonair", - "dragonite": "Dragonite", - "mewtwo": "Mewtwo", - "mew": "Mew", - "chikorita": "Chikorita", - "bayleef": "Bayleef", - "meganium": "Meganium", - "cyndaquil": "Cyndaquil", - "quilava": "Quilava", - "typhlosion": "Typhlosion", - "totodile": "Totodile", - "croconaw": "Croconaw", - "feraligatr": "Feraligatr", - "sentret": "Sentret", - "furret": "Furret", - "hoothoot": "Hoothoot", - "noctowl": "Noctowl", - "ledyba": "Ledyba", - "ledian": "Ledian", - "spinarak": "Spinarak", - "ariados": "Ariados", - "crobat": "Crobat", - "chinchou": "Chinchou", - "lanturn": "Lanturn", - "pichu": "Pichu", - "cleffa": "Cleffa", - "igglybuff": "Igglybuff", - "togepi": "Togepi", - "togetic": "Togetic", - "natu": "Natu", - "xatu": "Xatu", - "mareep": "Mareep", - "flaaffy": "Flaaffy", - "ampharos": "Ampharos", - "bellossom": "Bellossom", - "marill": "Marill", - "azumarill": "Azumarill", - "sudowoodo": "Sudowoodo", - "politoed": "Politoed", - "hoppip": "Hoppip", - "skiploom": "Skiploom", - "jumpluff": "Jumpluff", - "aipom": "Aipom", - "sunkern": "Sunkern", - "sunflora": "Sunflora", - "yanma": "Yanma", - "wooper": "Wooper", - "quagsire": "Quagsire", - "espeon": "Espeon", - "umbreon": "Umbreon", - "murkrow": "Murkrow", - "slowking": "Slowking", - "misdreavus": "Misdreavus", - "unown": "Unown", - "wobbuffet": "Wobbuffet", - "girafarig": "Girafarig", - "pineco": "Pineco", - "forretress": "Forretress", - "dunsparce": "Dunsparce", - "gligar": "Gligar", - "steelix": "Steelix", - "snubbull": "Snubbull", - "granbull": "Granbull", - "qwilfish": "Qwilfish", - "scizor": "Scizor", - "shuckle": "Shuckle", - "heracross": "Heracross", - "sneasel": "Sneasel", - "teddiursa": "Teddiursa", - "ursaring": "Ursaring", - "slugma": "Slugma", - "magcargo": "Magcargo", - "swinub": "Swinub", - "piloswine": "Piloswine", - "corsola": "Corsola", - "remoraid": "Remoraid", - "octillery": "Octillery", - "delibird": "Delibird", - "mantine": "Mantine", - "skarmory": "Skarmory", - "houndour": "Houndour", - "houndoom": "Houndoom", - "kingdra": "Kingdra", - "phanpy": "Phanpy", - "donphan": "Donphan", - "porygon2": "Porygon2", - "stantler": "Stantler", - "smeargle": "Smeargle", - "tyrogue": "Tyrogue", - "hitmontop": "Hitmontop", - "smoochum": "Smoochum", - "elekid": "Elekid", - "magby": "Magby", - "miltank": "Miltank", - "blissey": "Blissey", - "raikou": "Raikou", - "entei": "Entei", - "suicune": "Suicune", - "larvitar": "Larvitar", - "pupitar": "Pupitar", - "tyranitar": "Tyranitar", - "lugia": "Lugia", - "ho_oh": "Ho-Oh", - "celebi": "Celebi", - "treecko": "Treecko", - "grovyle": "Grovyle", - "sceptile": "Sceptile", - "torchic": "Torchic", - "combusken": "Combusken", - "blaziken": "Blaziken", - "mudkip": "Mudkip", - "marshtomp": "Marshtomp", - "swampert": "Swampert", - "poochyena": "Poochyena", - "mightyena": "Mightyena", - "zigzagoon": "Zigzagoon", - "linoone": "Linoone", - "wurmple": "Wurmple", - "silcoon": "Silcoon", - "beautifly": "Beautifly", - "cascoon": "Cascoon", - "dustox": "Dustox", - "lotad": "Lotad", - "lombre": "Lombre", - "ludicolo": "Ludicolo", - "seedot": "Seedot", - "nuzleaf": "Nuzleaf", - "shiftry": "Shiftry", - "taillow": "Taillow", - "swellow": "Swellow", - "wingull": "Wingull", - "pelipper": "Pelipper", - "ralts": "Ralts", - "kirlia": "Kirlia", - "gardevoir": "Gardevoir", - "surskit": "Surskit", - "masquerain": "Masquerain", - "shroomish": "Shroomish", - "breloom": "Breloom", - "slakoth": "Slakoth", - "vigoroth": "Vigoroth", - "slaking": "Slaking", - "nincada": "Nincada", - "ninjask": "Ninjask", - "shedinja": "Shedinja", - "whismur": "Whismur", - "loudred": "Loudred", - "exploud": "Exploud", - "makuhita": "Makuhita", - "hariyama": "Hariyama", - "azurill": "Azurill", - "nosepass": "Nosepass", - "skitty": "Skitty", - "delcatty": "Delcatty", - "sableye": "Sableye", - "mawile": "Mawile", - "aron": "Aron", - "lairon": "Lairon", - "aggron": "Aggron", - "meditite": "Meditite", - "medicham": "Medicham", - "electrike": "Electrike", - "manectric": "Manectric", - "plusle": "Plusle", - "minun": "Minun", - "volbeat": "Volbeat", - "illumise": "Illumise", - "roselia": "Roselia", - "gulpin": "Gulpin", - "swalot": "Swalot", - "carvanha": "Carvanha", - "sharpedo": "Sharpedo", - "wailmer": "Wailmer", - "wailord": "Wailord", - "numel": "Numel", - "camerupt": "Camerupt", - "torkoal": "Torkoal", - "spoink": "Spoink", - "grumpig": "Grumpig", - "spinda": "Spinda", - "trapinch": "Trapinch", - "vibrava": "Vibrava", - "flygon": "Flygon", - "cacnea": "Cacnea", - "cacturne": "Cacturne", - "swablu": "Swablu", - "altaria": "Altaria", - "zangoose": "Zangoose", - "seviper": "Seviper", - "lunatone": "Lunatone", - "solrock": "Solrock", - "barboach": "Barboach", - "whiscash": "Whiscash", - "corphish": "Corphish", - "crawdaunt": "Crawdaunt", - "baltoy": "Baltoy", - "claydol": "Claydol", - "lileep": "Lileep", - "cradily": "Cradily", - "anorith": "Anorith", - "armaldo": "Armaldo", - "feebas": "Feebas", - "milotic": "Milotic", - "castform": "Castform", - "kecleon": "Kecleon", - "shuppet": "Shuppet", - "banette": "Banette", - "duskull": "Duskull", - "dusclops": "Dusclops", - "tropius": "Tropius", - "chimecho": "Chimecho", - "absol": "Absol", - "wynaut": "Wynaut", - "snorunt": "Snorunt", - "glalie": "Glalie", - "spheal": "Spheal", - "sealeo": "Sealeo", - "walrein": "Walrein", - "clamperl": "Clamperl", - "huntail": "Huntail", - "gorebyss": "Gorebyss", - "relicanth": "Relicanth", - "luvdisc": "Luvdisc", - "bagon": "Bagon", - "shelgon": "Shelgon", - "salamence": "Salamence", - "beldum": "Beldum", - "metang": "Metang", - "metagross": "Metagross", - "regirock": "Regirock", - "regice": "Regice", - "registeel": "Registeel", - "latias": "Latias", - "latios": "Latios", - "kyogre": "Kyogre", - "groudon": "Groudon", - "rayquaza": "Rayquaza", - "jirachi": "Jirachi", - "deoxys": "Deoxys", - "turtwig": "Turtwig", - "grotle": "Grotle", - "torterra": "Torterra", - "chimchar": "Chimchar", - "monferno": "Monferno", - "infernape": "Infernape", - "piplup": "Piplup", - "prinplup": "Prinplup", - "empoleon": "Empoleon", - "starly": "Starly", - "staravia": "Staravia", - "staraptor": "Staraptor", - "bidoof": "Bidoof", - "bibarel": "Bibarel", - "kricketot": "Kricketot", - "kricketune": "Kricketune", - "shinx": "Shinx", - "luxio": "Luxio", - "luxray": "Luxray", - "budew": "Budew", - "roserade": "Roserade", - "cranidos": "Cranidos", - "rampardos": "Rampardos", - "shieldon": "Shieldon", - "bastiodon": "Bastiodon", - "burmy": "Burmy", - "wormadam": "Wormadam", - "mothim": "Mothim", - "combee": "Combee", - "vespiquen": "Vespiquen", - "pachirisu": "Pachirisu", - "buizel": "Buizel", - "floatzel": "Floatzel", - "cherubi": "Cherubi", - "cherrim": "Cherrim", - "shellos": "Shellos", - "gastrodon": "Gastrodon", - "ambipom": "Ambipom", - "drifloon": "Drifloon", - "drifblim": "Drifblim", - "buneary": "Buneary", - "lopunny": "Lopunny", - "mismagius": "Mismagius", - "honchkrow": "Honchkrow", - "glameow": "Glameow", - "purugly": "Purugly", - "chingling": "Chingling", - "stunky": "Stunky", - "skuntank": "Skuntank", - "bronzor": "Bronzor", - "bronzong": "Bronzong", - "bonsly": "Bonsly", - "mime_jr": "Mime Jr.", - "happiny": "Happiny", - "chatot": "Chatot", - "spiritomb": "Spiritomb", - "gible": "Gible", - "gabite": "Gabite", - "garchomp": "Garchomp", - "munchlax": "Munchlax", - "riolu": "Riolu", - "lucario": "Lucario", - "hippopotas": "Hippopotas", - "hippowdon": "Hippowdon", - "skorupi": "Skorupi", - "drapion": "Drapion", - "croagunk": "Croagunk", - "toxicroak": "Toxicroak", - "carnivine": "Carnivine", - "finneon": "Finneon", - "lumineon": "Lumineon", - "mantyke": "Mantyke", - "snover": "Snover", - "abomasnow": "Abomasnow", - "weavile": "Weavile", - "magnezone": "Magnezone", - "lickilicky": "Lickilicky", - "rhyperior": "Rhyperior", - "tangrowth": "Tangrowth", - "electivire": "Electivire", - "magmortar": "Magmortar", - "togekiss": "Togekiss", - "yanmega": "Yanmega", - "leafeon": "Leafeon", - "glaceon": "Glaceon", - "gliscor": "Gliscor", - "mamoswine": "Mamoswine", - "porygon_z": "Porygon-Z", - "gallade": "Gallade", - "probopass": "Probopass", - "dusknoir": "Dusknoir", - "froslass": "Froslass", - "rotom": "Rotom", - "uxie": "Uxie", - "mesprit": "Mesprit", - "azelf": "Azelf", - "dialga": "Dialga", - "palkia": "Palkia", - "heatran": "Heatran", - "regigigas": "Regigigas", - "giratina": "Giratina", - "cresselia": "Cresselia", - "phione": "Phione", - "manaphy": "Manaphy", - "darkrai": "Darkrai", - "shaymin": "Shaymin", - "arceus": "Arceus", - "victini": "Victini", - "snivy": "Snivy", - "servine": "Servine", - "serperior": "Serperior", - "tepig": "Tepig", - "pignite": "Pignite", - "emboar": "Emboar", - "oshawott": "Oshawott", - "dewott": "Dewott", - "samurott": "Samurott", - "patrat": "Patrat", - "watchog": "Watchog", - "lillipup": "Lillipup", - "herdier": "Herdier", - "stoutland": "Stoutland", - "purrloin": "Purrloin", - "liepard": "Liepard", - "pansage": "Pansage", - "simisage": "Simisage", - "pansear": "Pansear", - "simisear": "Simisear", - "panpour": "Panpour", - "simipour": "Simipour", - "munna": "Munna", - "musharna": "Musharna", - "pidove": "Pidove", - "tranquill": "Tranquill", - "unfezant": "Unfezant", - "blitzle": "Blitzle", - "zebstrika": "Zebstrika", - "roggenrola": "Roggenrola", - "boldore": "Boldore", - "gigalith": "Gigalith", - "woobat": "Woobat", - "swoobat": "Swoobat", - "drilbur": "Drilbur", - "excadrill": "Excadrill", - "audino": "Audino", - "timburr": "Timburr", - "gurdurr": "Gurdurr", - "conkeldurr": "Conkeldurr", - "tympole": "Tympole", - "palpitoad": "Palpitoad", - "seismitoad": "Seismitoad", - "throh": "Throh", - "sawk": "Sawk", - "sewaddle": "Sewaddle", - "swadloon": "Swadloon", - "leavanny": "Leavanny", - "venipede": "Venipede", - "whirlipede": "Whirlipede", - "scolipede": "Scolipede", - "cottonee": "Cottonee", - "whimsicott": "Whimsicott", - "petilil": "Petilil", - "lilligant": "Lilligant", - "basculin": "Basculin", - "sandile": "Sandile", - "krokorok": "Krokorok", - "krookodile": "Krookodile", - "darumaka": "Darumaka", - "darmanitan": "Darmanitan", - "maractus": "Maractus", - "dwebble": "Dwebble", - "crustle": "Crustle", - "scraggy": "Scraggy", - "scrafty": "Scrafty", - "sigilyph": "Sigilyph", - "yamask": "Yamask", - "cofagrigus": "Cofagrigus", - "tirtouga": "Tirtouga", - "carracosta": "Carracosta", - "archen": "Archen", - "archeops": "Archeops", - "trubbish": "Trubbish", - "garbodor": "Garbodor", - "zorua": "Zorua", - "zoroark": "Zoroark", - "minccino": "Minccino", - "cinccino": "Cinccino", - "gothita": "Gothita", - "gothorita": "Gothorita", - "gothitelle": "Gothitelle", - "solosis": "Solosis", - "duosion": "Duosion", - "reuniclus": "Reuniclus", - "ducklett": "Ducklett", - "swanna": "Swanna", - "vanillite": "Vanillite", - "vanillish": "Vanillish", - "vanilluxe": "Vanilluxe", - "deerling": "Deerling", - "sawsbuck": "Sawsbuck", - "emolga": "Emolga", - "karrablast": "Karrablast", - "escavalier": "Escavalier", - "foongus": "Foongus", - "amoonguss": "Amoonguss", - "frillish": "Frillish", - "jellicent": "Jellicent", - "alomomola": "Alomomola", - "joltik": "Joltik", - "galvantula": "Galvantula", - "ferroseed": "Ferroseed", - "ferrothorn": "Ferrothorn", - "klink": "Klink", - "klang": "Klang", - "klinklang": "Klinklang", - "tynamo": "Tynamo", - "eelektrik": "Eelektrik", - "eelektross": "Eelektross", - "elgyem": "Elgyem", - "beheeyem": "Beheeyem", - "litwick": "Litwick", - "lampent": "Lampent", - "chandelure": "Chandelure", - "axew": "Axew", - "fraxure": "Fraxure", - "haxorus": "Haxorus", - "cubchoo": "Cubchoo", - "beartic": "Beartic", - "cryogonal": "Cryogonal", - "shelmet": "Shelmet", - "accelgor": "Accelgor", - "stunfisk": "Stunfisk", - "mienfoo": "Mienfoo", - "mienshao": "Mienshao", - "druddigon": "Druddigon", - "golett": "Golett", - "golurk": "Golurk", - "pawniard": "Pawniard", - "bisharp": "Bisharp", - "bouffalant": "Bouffalant", - "rufflet": "Rufflet", - "braviary": "Braviary", - "vullaby": "Vullaby", - "mandibuzz": "Mandibuzz", - "heatmor": "Heatmor", - "durant": "Durant", - "deino": "Deino", - "zweilous": "Zweilous", - "hydreigon": "Hydreigon", - "larvesta": "Larvesta", - "volcarona": "Volcarona", - "cobalion": "Cobalion", - "terrakion": "Terrakion", - "virizion": "Virizion", - "tornadus": "Tornadus", - "thundurus": "Thundurus", - "reshiram": "Reshiram", - "zekrom": "Zekrom", - "landorus": "Landorus", - "kyurem": "Kyurem", - "keldeo": "Keldeo", - "meloetta": "Meloetta", - "genesect": "Genesect", - "chespin": "Chespin", - "quilladin": "Quilladin", - "chesnaught": "Chesnaught", - "fennekin": "Fennekin", - "braixen": "Braixen", - "delphox": "Delphox", - "froakie": "Froakie", - "frogadier": "Frogadier", - "greninja": "Greninja", - "bunnelby": "Bunnelby", - "diggersby": "Diggersby", - "fletchling": "Fletchling", - "fletchinder": "Fletchinder", - "talonflame": "Talonflame", - "scatterbug": "Scatterbug", - "spewpa": "Spewpa", - "vivillon": "Vivillon", - "litleo": "Litleo", - "pyroar": "Pyroar", - "flabebe": "Flabébé", - "floette": "Floette", - "florges": "Florges", - "skiddo": "Skiddo", - "gogoat": "Gogoat", - "pancham": "Pancham", - "pangoro": "Pangoro", - "furfrou": "Furfrou", - "espurr": "Espurr", - "meowstic": "Meowstic", - "honedge": "Honedge", - "doublade": "Doublade", - "aegislash": "Aegislash", - "spritzee": "Spritzee", - "aromatisse": "Aromatisse", - "swirlix": "Swirlix", - "slurpuff": "Slurpuff", - "inkay": "Inkay", - "malamar": "Malamar", - "binacle": "Binacle", - "barbaracle": "Barbaracle", - "skrelp": "Skrelp", - "dragalge": "Dragalge", - "clauncher": "Clauncher", - "clawitzer": "Clawitzer", - "helioptile": "Helioptile", - "heliolisk": "Heliolisk", - "tyrunt": "Tyrunt", - "tyrantrum": "Tyrantrum", - "amaura": "Amaura", - "aurorus": "Aurorus", - "sylveon": "Sylveon", - "hawlucha": "Hawlucha", - "dedenne": "Dedenne", - "carbink": "Carbink", - "goomy": "Goomy", - "sliggoo": "Sliggoo", - "goodra": "Goodra", - "klefki": "Klefki", - "phantump": "Phantump", - "trevenant": "Trevenant", - "pumpkaboo": "Pumpkaboo", - "gourgeist": "Gourgeist", - "bergmite": "Bergmite", - "avalugg": "Avalugg", - "noibat": "Noibat", - "noivern": "Noivern", - "xerneas": "Xerneas", - "yveltal": "Yveltal", - "zygarde": "Zygarde", - "diancie": "Diancie", - "hoopa": "Hoopa", - "volcanion": "Volcanion", - "rowlet": "Rowlet", - "dartrix": "Dartrix", - "decidueye": "Decidueye", - "litten": "Litten", - "torracat": "Torracat", - "incineroar": "Incineroar", - "popplio": "Popplio", - "brionne": "Brionne", - "primarina": "Primarina", - "pikipek": "Pikipek", - "trumbeak": "Trumbeak", - "toucannon": "Toucannon", - "yungoos": "Yungoos", - "gumshoos": "Gumshoos", - "grubbin": "Grubbin", - "charjabug": "Charjabug", - "vikavolt": "Vikavolt", - "crabrawler": "Crabrawler", - "crabominable": "Crabominable", - "oricorio": "Oricorio", - "cutiefly": "Cutiefly", - "ribombee": "Ribombee", - "rockruff": "Rockruff", - "lycanroc": "Lycanroc", - "wishiwashi": "Wishiwashi", - "mareanie": "Mareanie", - "toxapex": "Toxapex", - "mudbray": "Mudbray", - "mudsdale": "Mudsdale", - "dewpider": "Dewpider", - "araquanid": "Araquanid", - "fomantis": "Fomantis", - "lurantis": "Lurantis", - "morelull": "Morelull", - "shiinotic": "Shiinotic", - "salandit": "Salandit", - "salazzle": "Salazzle", - "stufful": "Stufful", - "bewear": "Bewear", - "bounsweet": "Bounsweet", - "steenee": "Steenee", - "tsareena": "Tsareena", - "comfey": "Comfey", - "oranguru": "Oranguru", - "passimian": "Passimian", - "wimpod": "Wimpod", - "golisopod": "Golisopod", - "sandygast": "Sandygast", - "palossand": "Palossand", - "pyukumuku": "Pyukumuku", - "type_null": "Tipo Zero", - "silvally": "Silvally", - "minior": "Minior", - "komala": "Komala", - "turtonator": "Turtonator", - "togedemaru": "Togedemaru", - "mimikyu": "Mimikyu", - "bruxish": "Bruxish", - "drampa": "Drampa", - "dhelmise": "Dhelmise", - "jangmo_o": "Jangmo-o", - "hakamo_o": "Hakamo-o", - "kommo_o": "Kommo-o", - "tapu_koko": "Tapu Koko", - "tapu_lele": "Tapu Lele", - "tapu_bulu": "Tapu Bulu", - "tapu_fini": "Tapu Fini", - "cosmog": "Cosmog", - "cosmoem": "Cosmoem", - "solgaleo": "Solgaleo", - "lunala": "Lunala", - "nihilego": "Nihilego", - "buzzwole": "Buzzwole", - "pheromosa": "Pheromosa", - "xurkitree": "Xurkitree", - "celesteela": "Celesteela", - "kartana": "Kartana", - "guzzlord": "Guzzlord", - "necrozma": "Necrozma", - "magearna": "Magearna", - "marshadow": "Marshadow", - "poipole": "Poipole", - "naganadel": "Naganadel", - "stakataka": "Stakataka", - "blacephalon": "Blacephalon", - "zeraora": "Zeraora", - "meltan": "Meltan", - "melmetal": "Melmetal", - "grookey": "Grookey", - "thwackey": "Thwackey", - "rillaboom": "Rillaboom", - "scorbunny": "Scorbunny", - "raboot": "Raboot", - "cinderace": "Cinderace", - "sobble": "Sobble", - "drizzile": "Drizzile", - "inteleon": "Inteleon", - "skwovet": "Skwovet", - "greedent": "Greedent", - "rookidee": "Rookidee", - "corvisquire": "Corvisquire", - "corviknight": "Corviknight", - "blipbug": "Blipbug", - "dottler": "Dottler", - "orbeetle": "Orbeetle", - "nickit": "Nickit", - "thievul": "Thievul", - "gossifleur": "Gossifleur", - "eldegoss": "Eldegoss", - "wooloo": "Wooloo", - "dubwool": "Dubwool", - "chewtle": "Chewtle", - "drednaw": "Drednaw", - "yamper": "Yamper", - "boltund": "Boltund", - "rolycoly": "Rolycoly", - "carkol": "Carkol", - "coalossal": "Coalossal", - "applin": "Applin", - "flapple": "Flapple", - "appletun": "Appletun", - "silicobra": "Silicobra", - "sandaconda": "Sandaconda", - "cramorant": "Cramorant", - "arrokuda": "Arrokuda", - "barraskewda": "Barraskewda", - "toxel": "Toxel", - "toxtricity": "Toxtricity", - "sizzlipede": "Sizzlipede", - "centiskorch": "Centiskorch", - "clobbopus": "Clobbopus", - "grapploct": "Grapploct", - "sinistea": "Sinistea", - "polteageist": "Polteageist", - "hatenna": "Hatenna", - "hattrem": "Hattrem", - "hatterene": "Hatterene", - "impidimp": "Impidimp", - "morgrem": "Morgrem", - "grimmsnarl": "Grimmsnarl", - "obstagoon": "Obstagoon", - "perrserker": "Perrserker", - "cursola": "Cursola", - "sirfetchd": "Sirfetch'd", - "mr_rime": "Mr. Rime", - "runerigus": "Runerigus", - "milcery": "Milcery", - "alcremie": "Alcremie", - "falinks": "Falinks", - "pincurchin": "Pincurchin", - "snom": "Snom", - "frosmoth": "Frosmoth", - "stonjourner": "Stonjourner", - "eiscue": "Eiscue", - "indeedee": "Indeedee", - "morpeko": "Morpeko", - "cufant": "Cufant", - "copperajah": "Copperajah", - "dracozolt": "Dracozolt", - "arctozolt": "Arctozolt", - "dracovish": "Dracovish", - "arctovish": "Arctovish", - "duraludon": "Duraludon", - "dreepy": "Dreepy", - "drakloak": "Drakloak", - "dragapult": "Dragapult", - "zacian": "Zacian", - "zamazenta": "Zamazenta", - "eternatus": "Eternatus", - "kubfu": "Kubfu", - "urshifu": "Urshifu", - "zarude": "Zarude", - "regieleki": "Regieleki", - "regidrago": "Regidrago", - "glastrier": "Glastrier", - "spectrier": "Spectrier", - "calyrex": "Calyrex", - "wyrdeer": "Wyrdeer", - "kleavor": "Kleavor", - "ursaluna": "Ursaluna", - "basculegion": "Basculegion", - "sneasler": "Sneasler", - "overqwil": "Overqwil", - "enamorus": "Enamorus", - "sprigatito": "Sprigatito", - "floragato": "Floragato", - "meowscarada": "Meowscarada", - "fuecoco": "Fuecoco", - "crocalor": "Crocalor", - "skeledirge": "Skeledirge", - "quaxly": "Quaxly", - "quaxwell": "Quaxwell", - "quaquaval": "Quaquaval", - "lechonk": "Lechonk", - "oinkologne": "Oinkologne", - "tarountula": "Tarountula", - "spidops": "Spidops", - "nymble": "Nymble", - "lokix": "Lokix", - "pawmi": "Pawmi", - "pawmo": "Pawmo", - "pawmot": "Pawmot", - "tandemaus": "Tandemaus", - "maushold": "Maushold", - "fidough": "Fidough", - "dachsbun": "Dachsbun", - "smoliv": "Smoliv", - "dolliv": "Dolliv", - "arboliva": "Arboliva", - "squawkabilly": "Squawkabilly", - "nacli": "Nacli", - "naclstack": "Naclstack", - "garganacl": "Garganacl", - "charcadet": "Charcadet", - "armarouge": "Armarouge", - "ceruledge": "Ceruledge", - "tadbulb": "Tadbulb", - "bellibolt": "Bellibolt", - "wattrel": "Wattrel", - "kilowattrel": "Kilowattrel", - "maschiff": "Maschiff", - "mabosstiff": "Mabosstiff", - "shroodle": "Shroodle", - "grafaiai": "Grafaiai", - "bramblin": "Bramblin", - "brambleghast": "Brambleghast", - "toedscool": "Toedscool", - "toedscruel": "Toedscruel", - "klawf": "Klawf", - "capsakid": "Capsakid", - "scovillain": "Scovillain", - "rellor": "Rellor", - "rabsca": "Rabsca", - "flittle": "Flittle", - "espathra": "Espathra", - "tinkatink": "Tinkatink", - "tinkatuff": "Tinkatuff", - "tinkaton": "Tinkaton", - "wiglett": "Wiglett", - "wugtrio": "Wugtrio", - "bombirdier": "Bombirdier", - "finizen": "Finizen", - "palafin": "Palafin", - "varoom": "Varoom", - "revavroom": "Revavroom", - "cyclizar": "Cyclizar", - "orthworm": "Orthworm", - "glimmet": "Glimmet", - "glimmora": "Glimmora", - "greavard": "Greavard", - "houndstone": "Houndstone", - "flamigo": "Flamigo", - "cetoddle": "Cetoddle", - "cetitan": "Cetitan", - "veluza": "Veluza", - "dondozo": "Dondozo", - "tatsugiri": "Tatsugiri", - "annihilape": "Annihilape", - "clodsire": "Clodsire", - "farigiraf": "Farigiraf", - "dudunsparce": "Dudunsparce", - "kingambit": "Kingambit", - "great_tusk": "Grandizanne", - "scream_tail": "Codaurlante", - "brute_bonnet": "Fungofurioso", - "flutter_mane": "Crinealato", - "slither_wing": "Alirasenti", - "sandy_shocks": "Peldisabbia", - "iron_treads": "Solcoferreo", - "iron_bundle": "Saccoferreo", - "iron_hands": "Manoferrea", - "iron_jugulis": "Colloferreo", - "iron_moth": "Falenaferrea", - "iron_thorns": "Spineferree", - "frigibax": "Frigibax", - "arctibax": "Arctibax", - "baxcalibur": "Baxcalibur", - "gimmighoul": "Gimmighoul", - "gholdengo": "Gholdengo", - "wo_chien": "Wo-Chien", - "chien_pao": "Chien-Pao", - "ting_lu": "Ting-Lu", - "chi_yu": "Chi-Yu", - "roaring_moon": "Lunaruggente", - "iron_valiant": "Eroeferreo", - "koraidon": "Koraidon", - "miraidon": "Miraidon", - "walking_wake": "Acquecrespe", - "iron_leaves": "Fogliaferrea", - "dipplin": "Dipplin", - "poltchageist": "Poltchageist", - "sinistcha": "Sinistcha", - "okidogi": "Okidogi", - "munkidori": "Munkidori", - "fezandipiti": "Fezandipiti", - "ogerpon": "Ogerpon", - "archaludon": "Archaludon", - "hydrapple": "Hydrapple", - "gouging_fire": "Vampeaguzze", - "raging_bolt": "Furiatonante", - "iron_boulder": "Massoferreo", - "iron_crown": "Capoferreo", - "terapagos": "Terapagos", - "pecharunt": "Pecharunt", - "alola_rattata": "Rattata", - "alola_raticate": "Raticate", - "alola_raichu": "Raichu", - "alola_sandshrew": "Sandshrew", - "alola_sandslash": "Sandslash", - "alola_vulpix": "Vulpix", - "alola_ninetales": "Ninetales", - "alola_diglett": "Diglett", - "alola_dugtrio": "Dugtrio", - "alola_meowth": "Meowth", - "alola_persian": "Persian", - "alola_geodude": "Geodude", - "alola_graveler": "Graveler", - "alola_golem": "Golem", - "alola_grimer": "Grimer", - "alola_muk": "Muk", - "alola_exeggutor": "Exeggutor", - "alola_marowak": "Marowak", - "eternal_floette": "Floette", - "galar_meowth": "Meowth", - "galar_ponyta": "Ponyta", - "galar_rapidash": "Rapidash", - "galar_slowpoke": "Slowpoke", - "galar_slowbro": "Slowbro", - "galar_farfetchd": "Farfetch'd", - "galar_weezing": "Weezing", - "galar_mr_mime": "Mr. Mime", - "galar_articuno": "Articuno", - "galar_zapdos": "Zapdos", - "galar_moltres": "Moltres", - "galar_slowking": "Slowking", - "galar_corsola": "Corsola", - "galar_zigzagoon": "Zigzagoon", - "galar_linoone": "Linoone", - "galar_darumaka": "Darumaka", - "galar_darmanitan": "Darmanitan", - "galar_yamask": "Yamask", - "galar_stunfisk": "Stunfisk", - "hisui_growlithe": "Growlithe", - "hisui_arcanine": "Arcanine", - "hisui_voltorb": "Voltorb", - "hisui_electrode": "Electrode", - "hisui_typhlosion": "Typhlosion", - "hisui_qwilfish": "Qwilfish", - "hisui_sneasel": "Sneasel", - "hisui_samurott": "Samurott", - "hisui_lilligant": "Lilligant", - "hisui_zorua": "Zorua", - "hisui_zoroark": "Zoroark", - "hisui_braviary": "Braviary", - "hisui_sliggoo": "Sliggoo", - "hisui_goodra": "Goodra", - "hisui_avalugg": "Avalugg", - "hisui_decidueye": "Decidueye", - "paldea_tauros": "Tauros", - "paldea_wooper": "Wooper", - "bloodmoon_ursaluna": "Ursaluna", -} as const; diff --git a/src/locales/it/run-history.json b/src/locales/it/run-history.json new file mode 100644 index 00000000000..87f5a746303 --- /dev/null +++ b/src/locales/it/run-history.json @@ -0,0 +1,37 @@ +{ + "victory": "Vittoria!", + "defeatedWild": "Sconfitto da ", + "defeatedTrainer": "Sconfitto da ", + "defeatedTrainerDouble": "Sconfitto dalla coppia ", + "defeatedRival": "Sconfitto dalla rivale", + "defeated": "Sconfitto", + "defeatedWild_female": "Sconfitta da ", + "defeatedTrainer_female": "Sconfitta da ", + "defeatedTrainerDouble_female": "Sconfitta dalla coppia ", + "defeatedRival_female": "Sconfitta dal rivale", + "defeated_female": "Sconfitta", + "luck": "Fortuna", + "score": "Punteggio", + "mode": "Modalità", + "challengeRules": "Regola/e", + "challengeMonoGen1": "1ª gen", + "challengeMonoGen2": "2ª gen", + "challengeMonoGen3": "3ª gen", + "challengeMonoGen4": "4ª gen", + "challengeMonoGen5": "5ª gen", + "challengeMonoGen6": "6ª gen", + "challengeMonoGen7": "7ª gen", + "challengeMonoGen8": "8ª gen", + "challengeMonoGen9": "9ª gen", + "playerItems": "Oggetti giocatore", + "personalBest": "Record personale!", + "SPDshortened": "Vel.", + "runInfo": "Info Run", + "money": "Patrimonio", + "runLength": "Durata Run", + "viewHeldItems": "Oggetti equip.", + "hallofFameText": "Benvenuto alla Sala d'Onore!", + "hallofFameText_female": "Benvenuto alla Sala d'Onore!", + "viewHallOfFame": "Vai alla Sala d'Onore!", + "viewEndingSplash": "Vai all'arte finale!" +} \ No newline at end of file diff --git a/src/locales/it/save-slot-select-ui-handler.json b/src/locales/it/save-slot-select-ui-handler.json new file mode 100644 index 00000000000..bd2f12003de --- /dev/null +++ b/src/locales/it/save-slot-select-ui-handler.json @@ -0,0 +1,7 @@ +{ + "overwriteData": "Sovrascrivere i dati nello slot selezionato?", + "loading": "Caricamento...", + "wave": "Onda", + "lv": "Lv", + "empty": "Vuoto" +} \ No newline at end of file diff --git a/src/locales/it/save-slot-select-ui-handler.ts b/src/locales/it/save-slot-select-ui-handler.ts deleted file mode 100644 index d1825daeb1f..00000000000 --- a/src/locales/it/save-slot-select-ui-handler.ts +++ /dev/null @@ -1,9 +0,0 @@ -import { SimpleTranslationEntries } from "#app/interfaces/locales"; - -export const saveSlotSelectUiHandler: SimpleTranslationEntries = { - "overwriteData": "Sovrascrivere i dati nello slot selezionato?", - "loading": "Caricamento...", - "wave": "Onda", - "lv": "Lv", - "empty": "Vuoto", -} as const; diff --git a/src/locales/it/settings.json b/src/locales/it/settings.json new file mode 100644 index 00000000000..381503f21bd --- /dev/null +++ b/src/locales/it/settings.json @@ -0,0 +1,15 @@ +{ + "boy": "Ragazzo", + "girl": "Ragazza", + "general": "Generale", + "uiVolume": "Volume UI ", + "gamepadSupport": "Supporto Gamepad", + "showBgmBar": "Mostra Nomi Musica", + "moveTouchControls": "Move Touch Controls", + "shopOverlayOpacity": "Opacità Finestra Negozio", + "shopCursorTarget": "Target Cursore Negozio", + "items": "Oggetti", + "reroll": "Rerolla", + "shop": "Negozio", + "checkTeam": "Squadra" +} diff --git a/src/locales/it/settings.ts b/src/locales/it/settings.ts deleted file mode 100644 index 0d05d01ba1c..00000000000 --- a/src/locales/it/settings.ts +++ /dev/null @@ -1,102 +0,0 @@ -import { SimpleTranslationEntries } from "#app/interfaces/locales.js"; - -export const settings: SimpleTranslationEntries = { - "boy": "Ragazzo", - "girl": "Ragazza", - "general": "Generale", - "display": "Display", - "audio": "Audio", - "gamepad": "Gamepad", - "keyboard": "Keyboard", - "gameSpeed": "Game Speed", - "hpBarSpeed": "HP Bar Speed", - "expGainsSpeed": "EXP Gains Speed", - "expPartyDisplay": "Show EXP Party", - "skipSeenDialogues": "Skip Seen Dialogues", - "battleStyle": "Battle Style", - "enableRetries": "Enable Retries", - "hideIvs": "Hide IV scanner", - "tutorials": "Tutorials", - "touchControls": "Touch Controls", - "vibrations": "Vibrations", - "normal": "Normal", - "fast": "Fast", - "faster": "Faster", - "skip": "Skip", - "levelUpNotifications": "Level Up Notifications", - "on": "On", - "off": "Off", - "switch": "Switch", - "set": "Set", - "auto": "Auto", - "disabled": "Disabled", - "language": "Language", - "change": "Change", - "uiTheme": "UI Theme", - "default": "Default", - "legacy": "Legacy", - "windowType": "Window Type", - "moneyFormat": "Money Format", - "damageNumbers": "Damage Numbers", - "simple": "Simple", - "fancy": "Fancy", - "abbreviated": "Abbreviated", - "moveAnimations": "Move Animations", - "showStatsOnLevelUp": "Show Stats on Level Up", - "candyUpgradeNotification": "Candy Upgrade Notification", - "passivesOnly": "Passives Only", - "candyUpgradeDisplay": "Candy Upgrade Display", - "icon": "Icon", - "animation": "Animation", - "moveInfo": "Move Info", - "showMovesetFlyout": "Show Moveset Flyout", - "showArenaFlyout": "Show Arena Flyout", - "showTimeOfDayWidget": "Show Time of Day Widget", - "timeOfDayAnimation": "Time of Day Animation", - "bounce": "Bounce", - "timeOfDay_back": "Back", - "spriteSet": "Sprite Set", - "consistent": "Consistent", - "mixedAnimated": "Mixed Animated", - "fusionPaletteSwaps": "Fusion Palette Swaps", - "playerGender": "Player Gender", - "typeHints": "Type Hints", - "masterVolume": "Master Volume", - "bgmVolume": "BGM Volume", - "seVolume": "SE Volume", - "musicPreference": "Music Preference", - "mixed": "Mixed", - "gamepadPleasePlug": "Please Plug in a Gamepad or Press a Button", - "delete": "Delete", - "keyboardPleasePress": "Please Press a Key on Your Keyboard", - "reset": "Reset", - "requireReload": "Reload Required", - "action": "Action", - "back": "Back", - "pressToBind": "Press to Bind", - "pressButton": "Press a Button...", - "buttonUp": "Up", - "buttonDown": "Down", - "buttonLeft": "Left", - "buttonRight": "Right", - "buttonAction": "Action", - "buttonMenu": "Menu", - "buttonSubmit": "Submit", - "buttonCancel": "Cancel", - "buttonStats": "Stats", - "buttonCycleForm": "Cycle Form", - "buttonCycleShiny": "Cycle Shiny", - "buttonCycleGender": "Cycle Gender", - "buttonCycleAbility": "Cycle Ability", - "buttonCycleNature": "Cycle Nature", - "buttonCycleVariant": "Cycle Variant", - "buttonSpeedUp": "Speed Up", - "buttonSlowDown": "Slow Down", - "alt": " (Alt)", - "mute": "Mute", - "controller": "Controller", - "gamepadSupport": "Supporto Gamepad", - "showBgmBar": "Mostra Nomi Musica", - "moveTouchControls": "Move Touch Controls", - "shopOverlayOpacity": "Opacità Finestra Negozio" -} as const; diff --git a/src/locales/it/splash-messages.ts b/src/locales/it/splash-messages.json similarity index 89% rename from src/locales/it/splash-messages.ts rename to src/locales/it/splash-messages.json index dbbb0a5bcea..55018d0ada0 100644 --- a/src/locales/it/splash-messages.ts +++ b/src/locales/it/splash-messages.json @@ -1,6 +1,4 @@ -import { SimpleTranslationEntries } from "#app/interfaces/locales"; - -export const splashMessages: SimpleTranslationEntries = { +{ "battlesWon": "Battaglie Vinte!", "joinTheDiscord": "Entra nel Discord!", "infiniteLevels": "Livelli Infiniti!", @@ -34,5 +32,5 @@ export const splashMessages: SimpleTranslationEntries = { "alsoTryRadicalRed": "Prova anche Radical Red!", "eeveeExpo": "Eevee Expo!", "ynoproject": "YNOproject!", - "breedersInSpace": "Allevapokémon nello spazio!", -} as const; + "breedersInSpace": "Allevapokémon nello spazio!" +} \ No newline at end of file diff --git a/src/locales/it/starter-select-ui-handler.ts b/src/locales/it/starter-select-ui-handler.json similarity index 67% rename from src/locales/it/starter-select-ui-handler.ts rename to src/locales/it/starter-select-ui-handler.json index f92fb5b9f67..04137993d33 100644 --- a/src/locales/it/starter-select-ui-handler.ts +++ b/src/locales/it/starter-select-ui-handler.json @@ -1,13 +1,6 @@ -import { SimpleTranslationEntries } from "#app/interfaces/locales"; - -/** - * The menu namespace holds most miscellaneous text that isn't directly part of the game's - * contents or directly related to Pokemon data. This includes menu navigation, settings, - * account interactions, descriptive text, etc. - */ -export const starterSelectUiHandler: SimpleTranslationEntries = { +{ "confirmStartTeam": "Vuoi iniziare con questi Pokémon?", - "confirmExit": "Do you want to exit?", + "confirmExit": "Vuoi tornare alla schermata principale?", "invalidParty": "Questo squadra iniziale non è valida!", "gen1": "1ª", "gen2": "2ª", @@ -28,13 +21,13 @@ export const starterSelectUiHandler: SimpleTranslationEntries = { "toggleIVs": "Vedi/Nascondi IV", "manageMoves": "Gestisci mosse", "manageNature": "Gestisci natura", - "addToFavorites": "Add to Favorites", - "removeFromFavorites": "Remove from Favorites", + "addToFavorites": "Aggiungi ai preferiti", + "removeFromFavorites": "Rimuovi dai preferiti", "useCandies": "Usa caramelle", "selectNature": "Seleziona natura.", "selectMoveSwapOut": "Seleziona una mossa da scambiare.", "selectMoveSwapWith": "Seleziona una mossa da scambiare con", - "sameSpeciesEgg": "Buy an Egg", + "sameSpeciesEgg": "Compra un uovo", "unlockPassive": "Sblocca passiva", "reduceCost": "Riduci costo", "cycleShiny": ": Shiny", @@ -43,10 +36,10 @@ export const starterSelectUiHandler: SimpleTranslationEntries = { "cycleAbility": ": Abilità", "cycleNature": ": Natura", "cycleVariant": ": Variante", - "goFilter": ": Go to filters", + "goFilter": ": Vai ai filtri", "enablePassive": "Attiva passiva", "disablePassive": "Disattiva passiva", "locked": "Bloccato", "disabled": "Disabilitato", "uncaught": "Non catturato" -}; +} \ No newline at end of file diff --git a/src/locales/it/status-effect.json b/src/locales/it/status-effect.json new file mode 100644 index 00000000000..6270bbb10a5 --- /dev/null +++ b/src/locales/it/status-effect.json @@ -0,0 +1,11 @@ +{ + "none": { + "name": "None", + "description": "", + "obtain": "", + "obtainSource": "", + "activation": "", + "overlap": "", + "heal": "" + } +} \ No newline at end of file diff --git a/src/locales/it/status-effect.ts b/src/locales/it/status-effect.ts deleted file mode 100644 index eb676c08c84..00000000000 --- a/src/locales/it/status-effect.ts +++ /dev/null @@ -1,67 +0,0 @@ -import { StatusEffectTranslationEntries } from "#app/interfaces/locales.js"; - -export const statusEffect: StatusEffectTranslationEntries = { - none: { - name: "None", - description: "", - obtain: "", - obtainSource: "", - activation: "", - overlap: "", - heal: "" - }, - poison: { - name: "Poison", - description: "poisoning", - obtain: "{{pokemonNameWithAffix}}\nwas poisoned!", - obtainSource: "{{pokemonNameWithAffix}}\nwas poisoned by the {{sourceText}}!", - activation: "{{pokemonNameWithAffix}} is hurt\nby poison!", - overlap: "{{pokemonNameWithAffix}} is\nalready poisoned!", - heal: "{{pokemonNameWithAffix}} was\ncured of its poison!" - }, - toxic: { - name: "Toxic", - description: "poisoning", - obtain: "{{pokemonNameWithAffix}}\nwas badly poisoned!", - obtainSource: "{{pokemonNameWithAffix}}\nwas badly poisoned by the {{sourceText}}!", - activation: "{{pokemonNameWithAffix}} is hurt\nby poison!", - overlap: "{{pokemonNameWithAffix}} is\nalready poisoned!", - heal: "{{pokemonNameWithAffix}} was\ncured of its poison!" - }, - paralysis: { - name: "Paralysis", - description: "paralysis", - obtain: "{{pokemonNameWithAffix}} was paralyzed,\nIt may be unable to move!", - obtainSource: "{{pokemonNameWithAffix}} was paralyzed by the {{sourceText}},\nIt may be unable to move!", - activation: "{{pokemonNameWithAffix}} is paralyzed!\nIt can't move!", - overlap: "{{pokemonNameWithAffix}} is\nalready paralyzed!", - heal: "{{pokemonNameWithAffix}} was\nhealed of paralysis!" - }, - sleep: { - name: "Sleep", - description: "sleep", - obtain: "{{pokemonNameWithAffix}}\nfell asleep!", - obtainSource: "{{pokemonNameWithAffix}}\nfell asleep from the {{sourceText}}!", - activation: "{{pokemonNameWithAffix}} is fast asleep.", - overlap: "{{pokemonNameWithAffix}} is\nalready asleep!", - heal: "{{pokemonNameWithAffix}} woke up!" - }, - freeze: { - name: "Freeze", - description: "freezing", - obtain: "{{pokemonNameWithAffix}}\nwas frozen solid!", - obtainSource: "{{pokemonNameWithAffix}}\nwas frozen solid by the {{sourceText}}!", - activation: "{{pokemonNameWithAffix}} is\nfrozen solid!", - overlap: "{{pokemonNameWithAffix}} is\nalready frozen!", - heal: "{{pokemonNameWithAffix}} was\ndefrosted!" - }, - burn: { - name: "Burn", - description: "burn", - obtain: "{{pokemonNameWithAffix}}\nwas burned!", - obtainSource: "{{pokemonNameWithAffix}}\nwas burned by the {{sourceText}}!", - activation: "{{pokemonNameWithAffix}} is hurt\nby its burn!", - overlap: "{{pokemonNameWithAffix}} is\nalready burned!", - heal: "{{pokemonNameWithAffix}} was\nhealed of its burn!" - }, -} as const; diff --git a/src/locales/it/terrain.json b/src/locales/it/terrain.json new file mode 100644 index 00000000000..d0a584d74ab --- /dev/null +++ b/src/locales/it/terrain.json @@ -0,0 +1,16 @@ +{ + "misty": "Nebbioso", + "mistyStartMessage": "Ai piedi dei Pokémon si addensa la nebbia.", + "mistyClearMessage": "La nebbia si dissolve.", + "mistyBlockMessage": "Il Campo Nebbioso protegge {{pokemonNameWithAffix}}!", + "electric": "Elettrico", + "electricStartMessage": "Ai piedi dei Pokémon si accumula dell’elettricità.", + "electricClearMessage": "L’elettricità svanisce.", + "grassy": "Erboso", + "grassyStartMessage": "Ai piedi dei Pokémon cresce rigogliosa l’erba.", + "grassyClearMessage": "L’erba sparisce.", + "psychic": "Psichico", + "psychicStartMessage": "Nel campo si avverte una strana sensazione...", + "psychicClearMessage": "La strana sensazione nel campo è svanita!", + "defaultBlockMessage": "Il Campo {{terrainName}} protegge {{pokemonNameWithAffix}}!" +} diff --git a/src/locales/it/trainer-classes.json b/src/locales/it/trainer-classes.json new file mode 100644 index 00000000000..205a7c59d42 --- /dev/null +++ b/src/locales/it/trainer-classes.json @@ -0,0 +1,130 @@ +{ + "ace_trainer": "Fantallenatore", + "ace_trainer_female": "Fantallenatrice", + "ace_duo": "Fantallenatori", + "artist": "Artista", + "artist_female": "Artista", + "backers": "Fan", + "backpacker": "Giramondo", + "backpacker_female": "Giramondo", + "backpackers": "Giramondo", + "baker": "Panettiera", + "battle_girl": "Combat Girl", + "beauty": "Bellezza", + "beginners": "Novellini", + "biker": "Centauro", + "black_belt": "Cinturanera", + "breeder": "Allevapokémon", + "breeder_female": "Allevapokémon", + "breeders": "Allevapokémon", + "clerk": "Affarista", + "clerk_female": "Donna in carriera", + "colleagues": "Soci in affari", + "crush_kin": "Duo Lotta", + "cyclist": "Ciclista", + "cyclist_female": "Ciclista", + "cyclists": "Ciclisti", + "dancer": "Ballerino", + "dancer_female": "Ballerina", + "depot_agent": "Ferroviario", + "doctor": "Medico", + "doctor_female": "Medica", + "firebreather": "Mangiafuoco", + "fisherman": "Pescatore", + "fisherman_female": "Pescatrice", + "gentleman": "Gentiluomo", + "guitarist": "Chitarrista", + "guitarist_female": "Chitarrista", + "harlequin": "Buffone", + "hiker": "Montanaro", + "hooligans": "Teppisti", + "hoopster": "Cestista", + "infielder": "Battitore", + "janitor": "Netturbino", + "lady": "Lady", + "lass": "Pupa", + "linebacker": "Quarterback", + "maid": "Domestica", + "madame": "Madame", + "medical_team": "Équipe medica", + "musician": "Musicista", + "hex_maniac": "Streghetta", + "nurse": "Infermiera", + "nursery_aide": "Maestrina", + "officer": "Guardia", + "parasol_lady": "Ombrellina", + "pilot": "Pilota", + "pokéfan": "PokéFan", + "pokéfan_female": "PokéFan", + "pokéfan_family": "Famiglia PokéFan", + "preschooler": "Bimbo", + "preschooler_female": "Bimba", + "preschoolers": "Bimbi", + "psychic": "Sensitivo", + "psychic_female": "Sensitiva", + "psychics": "Sensitivi", + "pokémon_ranger": "Pokémon Ranger", + "pokémon_ranger_female": "Pokémon Ranger", + "pokémon_rangers": "Duo Ranger", + "ranger": "Ranger", + "restaurant_staff": "Personale del ristorante", + "rich": "Ricco", + "rich_female": "Ricca", + "rich_boy": "Elegantone", + "rich_couple": "Ricchi", + "rich_kid": "Bimbo ricco", + "rich_kid_female": "Bimba ricca", + "rich_kids": "Bimbi ricchi", + "roughneck": "Zuccapelata", + "sailor": "Marinaio", + "scientist": "Scienziato", + "scientist_female": "Scienziata", + "scientists": "Scienziati", + "smasher": "Tennista", + "snow_worker": "Lavoratore", + "snow_worker_female": "Lavoratrice", + "striker": "Calciatore", + "school_kid": "Alunno", + "school_kid_female": "Alunna", + "school_kids": "Alunni", + "swimmer": "Nuotatore", + "swimmer_female": "Nuotatrice", + "swimmers": "Nuotatori", + "twins": "Gemelli", + "veteran": "Veterano", + "veteran_female": "Veterana", + "veteran_duo": "Veterani", + "waiter": "Cameriere", + "waitress": "Cameriera", + "worker": "Operaio", + "worker_female": "Lavoratrice", + "workers": "Lavoratori", + "youngster": "Bullo", + "rocket_grunt": "Recluta Team Rocket", + "rocket_grunt_female": "Recluta Team Rocket", + "rocket_grunts": "Reclute Team Rocket", + "magma_grunt": "Recluta Team Magma", + "magma_grunt_female": "Recluta Team Magma", + "magma_grunts": "Reclute Team Magma", + "aqua_grunt": "Recluta Team Idro", + "aqua_grunt_female": "Recluta Team Idro", + "aqua_grunts": "Recluta Team Idro", + "galactic_grunt": "Recluta Team Galassia", + "galactic_grunt_female": "Recluta Team Galassia", + "galactic_grunts": "Reclute Team Galassia", + "plasma_grunt": "Seguace Plasma", + "plasma_grunt_female": "Seguace Plasma", + "plasma_grunts": "Seguaci Plasma", + "flare_grunt": "Recluta Team Flare", + "flare_grunt_female": "Recluta Team Flare", + "flare_grunts": "Reclute Team Flare", + "aether_grunt": "Dipendente (Fondazione Æther)", + "aether_grunt_female": "Dipendente (Fondazione Æther)", + "aether_grunts": "Dipendenti (Fondazione Æther)", + "skull_grunt": "Recluta Team Skull", + "skull_grunt_female": "Recluta Team Skull", + "skull_grunts": "Reclute Team Skull", + "macro_grunt": "Impiegato Macro Cosmos", + "macro_grunt_female": "Impiegata Macro Cosmos", + "macro_grunts": "Impiegati Macro Cosmos" +} diff --git a/src/locales/it/trainer-names.json b/src/locales/it/trainer-names.json new file mode 100644 index 00000000000..6d1373c0bb3 --- /dev/null +++ b/src/locales/it/trainer-names.json @@ -0,0 +1,160 @@ +{ + "brock": "Brock", + "misty": "Misty", + "lt_surge": "Lt. Surge", + "erika": "Erika", + "janine": "Nina", + "sabrina": "Sabrina", + "blaine": "Blaine", + "giovanni": "Giovanni", + "falkner": "Valerio", + "bugsy": "Raffaello", + "whitney": "Chiara", + "morty": "Angelo", + "chuck": "Furio", + "jasmine": "Jasmine", + "pryce": "Alfredo", + "clair": "Sandra", + "roxanne": "Petra", + "brawly": "Rudi", + "wattson": "Walter", + "flannery": "Fiammetta", + "norman": "Norman", + "winona": "Alice", + "tate": "Tell", + "liza": "Pat", + "juan": "Rodolfo", + "roark": "Pedro", + "gardenia": "Gardenia", + "maylene": "Marzia", + "crasher_wake": "Omar", + "fantina": "Fannie", + "byron": "Ferruccio", + "candice": "Bianca", + "volkner": "Corrado", + "cilan": "Spighetto", + "chili": "Chicco", + "cress": "Maisello", + "cheren": "Komor", + "lenora": "Aloé", + "roxie": "Velia", + "burgh": "Artemisio", + "elesa": "Camelia", + "clay": "Rafan", + "skyla": "Anemone", + "brycen": "Silvestro", + "drayden": "Aristide", + "marlon": "Ciprian", + "viola": "Violetta", + "grant": "Lino", + "korrina": "Ornella", + "ramos": "Amur", + "clemont": "Lem", + "valerie": "Valérie", + "olympia": "Astra", + "wulfric": "Edel", + "milo": "Yarrow", + "nessa": "Azzurra", + "kabu": "Kabu", + "bea": "Fabia", + "allister": "Onion", + "opal": "Poppy", + "bede": "Beet", + "gordie": "Milo", + "melony": "Melania", + "piers": "Ginepro", + "marnie": "Mary", + "raihan": "Raihan", + "katy": "Aceria", + "brassius": "Brassius", + "iono": "Kissara", + "kofu": "Algaro", + "larry": "Ubaldo", + "ryme": "Ryme", + "tulip": "Tulipa", + "grusha": "Grusha", + "lorelei": "Lorelei", + "bruno": "Bruno", + "agatha": "Agatha", + "lance": "Lance", + "will": "Pino", + "koga": "Koga", + "karen": "Karen", + "sidney": "Fosco", + "phoebe": "Ester", + "glacia": "Frida", + "drake": "Drake", + "aaron": "Aaron", + "bertha": "Terrie", + "flint": "Vulcano", + "lucian": "Luciano", + "shauntal": "Antemia", + "marshal": "Marzio", + "grimsley": "Mirton", + "caitlin": "Catlina", + "malva": "Malva", + "siebold": "Narciso", + "wikstrom": "Timeos", + "drasna": "Lila", + "hala": "Hala", + "molayne": "Tapso", + "olivia": "Olive", + "acerola": "Mapli", + "kahili": "Kahili", + "rika": "Rika", + "poppy": "Poppy", + "hassel": "Oranzio", + "crispin": "Piros", + "amarys": "Erin", + "lacey": "Rupi", + "drayton": "Aris", + "blue": "Blu", + "red": "Rosso", + "steven": "Rocco", + "wallace": "Adriano", + "cynthia": "Camilla", + "alder": "Nardo", + "iris": "Iris", + "diantha": "Diantha", + "hau": "Hau", + "geeta": "Alisma", + "nemona": "Nemi", + "kieran": "Riben", + "leon": "Dandel", + "rival": "Finn", + "rival_female": "Ivy", + "archer": "Archer", + "ariana": "Atena", + "proton": "Milas", + "petrel": "Maxus", + "tabitha": "Ottavio", + "courtney": "Rossella", + "shelly": "Ada", + "matt": "Alan", + "mars": "Martes", + "jupiter": "Giovia", + "saturn": "Saturno", + "zinzolin": "Violante", + "rood": "Ross", + "xerosic": "Xante", + "bryony": "Bromelia", + "faba": "Vicio", + + "maxie": "Max", + "archie": "Ivan", + "cyrus": "Cyrus", + "ghetsis": "Ghecis", + "lysandre": "Elisio", + "lusamine": "Samina", + "guzma": "Guzman", + "blue_red_double": "Blu & Rosso", + "red_blue_double": "Rosso & Blu", + "tate_liza_double": "Tell & Pat", + "liza_tate_double": "Pat & Tell", + "steven_wallace_double": "Rocco & Adriano", + "wallace_steven_double": "Adriano & Rocco", + "alder_iris_double": "Nardo & Iris", + "iris_alder_double": "Iris & Nardo", + "marnie_piers_double": "Mary & Ginepro", + "piers_marnie_double": "Ginepro & Mary" +} diff --git a/src/locales/it/trainer-titles.json b/src/locales/it/trainer-titles.json new file mode 100644 index 00000000000..eff152795cd --- /dev/null +++ b/src/locales/it/trainer-titles.json @@ -0,0 +1,39 @@ +{ + "elite_four": "Superquattro", + "elite_four_female": "Superquattro", + "gym_leader": "Capopalestra", + "gym_leader_female": "Capopalestra", + "gym_leader_double": "Duo Capopalestra", + "champion": "Campione", + "champion_female": "Campionessa", + "champion_double": "Duo Campioni", + "rival": "Rivale", + "professor": "Professore", + "frontier_brain": "Asso lotta", + "rocket_boss": "Capo Rocket", + "magma_boss": "Capo Magma", + "aqua_boss": "Capo Idro", + "galactic_boss": "Capo Galassia", + "plasma_boss": "Capo Plasma", + "flare_boss": "Capo Flare", + "aether_boss": "Direttrice Æther", + "skull_boss": "Capo Team Skull", + "macro_boss": "Presidente Macro Cosmos", + + "rocket_admin": "Tenente Team Rocket", + "rocket_admin_female": "Tenente Team Rocket", + "magma_admin": "Magmatenente", + "magma_admin_female": "Magmatenente", + "aqua_admin": "Idrotenente", + "aqua_admin_female": "Idrotenente", + "galactic_commander": "Comandante Galassia", + "galactic_commander_female": "Comandante Galassia", + "plasma_sage": "Saggio Team Plasma", + "plasma_admin": "Tenente Team Plasma", + "flare_admin": "Ufficiale Team Flare", + "flare_admin_female": "Ufficiale Team Flare", + "aether_admin": "Capo Filiale Æther", + "skull_admin": "Ufficiale Team Skull", + "macro_admin": "Vicepresidente Macro Cosmos" +} + diff --git a/src/locales/it/trainers.ts b/src/locales/it/trainers.ts deleted file mode 100644 index 931d11ae216..00000000000 --- a/src/locales/it/trainers.ts +++ /dev/null @@ -1,323 +0,0 @@ -import {SimpleTranslationEntries} from "#app/interfaces/locales"; - -// Titles of special trainers like gym leaders, elite four, and the champion -export const titles: SimpleTranslationEntries = { - "elite_four": "Superquattro", - "elite_four_female": "Superquattro", - "gym_leader": "Capopalestra", - "gym_leader_female": "Capopalestra", - "gym_leader_double": "Duo Capopalestra", - "champion": "Campione", - "champion_female": "Campionessa", - "champion_double": "Duo Campioni", - "rival": "Rivale", - "professor": "Professore", - "frontier_brain": "Asso lotta", - "rocket_boss": "Team Rocket Boss", - "magma_boss": "Team Magma Boss", - "aqua_boss": "Team Aqua Boss", - "galactic_boss": "Team Galactic Boss", - "plasma_boss": "Team Plasma Boss", - "flare_boss": "Team Flare Boss", - - "rocket_admin": "Team Rocket Admin", - "rocket_admin_female": "Team Rocket Admin", - "magma_admin": "Team Magma Admin", - "magma_admin_female": "Team Magma Admin", - "aqua_admin": "Team Aqua Admin", - "aqua_admin_female": "Team Aqua Admin", - "galactic_commander": "Team Galactic Commander", - "galactic_commander_female": "Team Galactic Commander", - "plasma_sage": "Team Plasma Sage", - "plasma_admin": "Team Plasma Admin", - "flare_admin": "Team Flare Admin", - "flare_admin_female": "Team Flare Admin", - // Maybe if we add the evil teams we can add "Team Rocket" and "Team Aqua" etc. here as well as "Team Rocket Boss" and "Team Aqua Admin" etc. -} as const; - -// Titles of trainers like "Youngster" or "Lass" -export const trainerClasses: SimpleTranslationEntries = { - "ace_trainer": "Fantallenatore", - "ace_trainer_female": "Fantallenatrice", - "ace_duo": "Fantallenatori", - "artist": "Artista", - "artist_female": "Artista", - "backers": "Fan", - "backpacker": "Giramondo", - "backpacker_female": "Giramondo", - "backpackers": "Giramondo", - "baker": "Panettiera", - "battle_girl": "Combat Girl", - "beauty": "Bellezza", - "beginners": "Novellini", - "biker": "Centauro", - "black_belt": "Cinturanera", - "breeder": "Allevapokémon", - "breeder_female": "Allevapokémon", - "breeders": "Allevapokémon", - "clerk": "Affarista", - "clerk_female": "Donna in carriera", - "colleagues": "Soci in affari", - "crush_kin": "Duo Lotta", - "cyclist": "Ciclista", - "cyclist_female": "Ciclista", - "cyclists": "Ciclisti", - "dancer": "Ballerino", - "dancer_female": "Ballerina", - "depot_agent": "Ferroviario", - "doctor": "Medico", - "doctor_female": "Medica", - "firebreather": "Mangiafuoco", - "fisherman": "Pescatore", - "fisherman_female": "Pescatrice", - "gentleman": "Gentiluomo", - "guitarist": "Chitarrista", - "guitarist_female": "Chitarrista", - "harlequin": "Buffone", - "hiker": "Montanaro", - "hooligans": "Teppisti", - "hoopster": "Cestista", - "infielder": "Battitore", - "janitor": "Netturbino", - "lady": "Lady", - "lass": "Pupa", - "linebacker": "Quarterback", - "maid": "Domestica", - "madame": "Madame", - "medical_team": "Équipe medica", - "musician": "Musicista", - "hex_maniac": "Streghetta", - "nurse": "Infermiera", - "nursery_aide": "Maestrina", - "officer": "Guardia", - "parasol_lady": "Ombrellina", - "pilot": "Pilota", - "pokéfan": "PokéFan", - "pokéfan_female": "PokéFan", - "pokéfan_family": "Famiglia PokéFan", - "preschooler": "Bimbo", - "preschooler_female": "Bimba", - "preschoolers": "Bimbi", - "psychic": "Sensitivo", - "psychic_female": "Sensitiva", - "psychics": "Sensitivi", - "pokémon_ranger": "Pokémon Ranger", - "pokémon_ranger_female": "Pokémon Ranger", - "pokémon_rangers": "Duo Ranger", - "ranger": "Ranger", - "restaurant_staff": "Personale del ristorante", - "rich": "Ricco", - "rich_female": "Ricca", - "rich_boy": "Elegantone", - "rich_couple": "Ricchi", - "rich_kid": "Bimbo ricco", - "rich_kid_female": "Bimba ricca", - "rich_kids": "Bimbi ricchi", - "roughneck": "Zuccapelata", - "sailor": "Marinaio", - "scientist": "Scienziato", - "scientist_female": "Scienziata", - "scientists": "Scienziati", - "smasher": "Tennista", - "snow_worker": "Lavoratore", - "snow_worker_female": "Lavoratrice", - "striker": "Calciatore", - "school_kid": "Alunno", - "school_kid_female": "Alunna", - "school_kids": "Alunni", - "swimmer": "Nuotatore", - "swimmer_female": "Nuotatrice", - "swimmers": "Nuotatori", - "twins": "Gemelli", - "veteran": "Veterano", - "veteran_female": "Veterana", - "veteran_duo": "Veterani", - "waiter": "Cameriere", - "waitress": "Cameriera", - "worker": "Operaio", - "worker_female": "Lavoratrice", - "workers": "Lavoratori", - "youngster": "Bullo", - "rocket_grunt": "Recluta Team Rocket", - "rocket_grunt_female": "Recluta Team Rocket", - "rocket_grunts": "Reclute Team Rocket", - "magma_grunt": "Recluta Team Magma", - "magma_grunt_female": "Recluta Team Magma", - "magma_grunts": "Reclute Team Magma", - "aqua_grunt": "Recluta Team Idro", - "aqua_grunt_female": "Recluta Team Idro", - "aqua_grunts": "Recluta Team Idro", - "galactic_grunt": "Recluta Team Galassia", - "galactic_grunt_female": "Recluta Team Galassia", - "galactic_grunts": "Reclute Team Galassia", - "plasma_grunt": "Seguace Plasma", - "plasma_grunt_female": "Seguace Plasma", - "plasma_grunts": "Seguaci Plasma", - "flare_grunt": "Recluta Team Flare", - "flare_grunt_female": "Recluta Team Flare", - "flare_grunts": "Reclute Team Flare", - -} as const; - -// Names of special trainers like gym leaders, elite four, and the champion -export const trainerNames: SimpleTranslationEntries = { - "brock": "Brock", - "misty": "Misty", - "lt_surge": "Lt. Surge", - "erika": "Erika", - "janine": "Nina", - "sabrina": "Sabrina", - "blaine": "Blaine", - "giovanni": "Giovanni", - "falkner": "Valerio", - "bugsy": "Raffaello", - "whitney": "Chiara", - "morty": "Angelo", - "chuck": "Furio", - "jasmine": "Jasmine", - "pryce": "Alfredo", - "clair": "Sandra", - "roxanne": "Petra", - "brawly": "Rudi", - "wattson": "Walter", - "flannery": "Fiammetta", - "norman": "Norman", - "winona": "Alice", - "tate": "Tell", - "liza": "Pat", - "juan": "Rodolfo", - "roark": "Pedro", - "gardenia": "Gardenia", - "maylene": "Marzia", - "crasher_wake": "Omar", - "fantina": "Fannie", - "byron": "Ferruccio", - "candice": "Bianca", - "volkner": "Corrado", - "cilan": "Spighetto", - "chili": "Chicco", - "cress": "Maisello", - "cheren": "Komor", - "lenora": "Aloé", - "roxie": "Velia", - "burgh": "Artemisio", - "elesa": "Camelia", - "clay": "Rafan", - "skyla": "Anemone", - "brycen": "Silvestro", - "drayden": "Aristide", - "marlon": "Ciprian", - "viola": "Violetta", - "grant": "Lino", - "korrina": "Ornella", - "ramos": "Amur", - "clemont": "Lem", - "valerie": "Valérie", - "olympia": "Astra", - "wulfric": "Edel", - "milo": "Yarrow", - "nessa": "Azzurra", - "kabu": "Kabu", - "bea": "Fabia", - "allister": "Onion", - "opal": "Poppy", - "bede": "Beet", - "gordie": "Milo", - "melony": "Melania", - "piers": "Ginepro", - "marnie": "Mary", - "raihan": "Raihan", - "katy": "Aceria", - "brassius": "Brassius", - "iono": "Kissara", - "kofu": "Algaro", - "larry": "Ubaldo", - "ryme": "Ryme", - "tulip": "Tulipa", - "grusha": "Grusha", - "lorelei": "Lorelei", - "bruno": "Bruno", - "agatha": "Agatha", - "lance": "Lance", - "will": "Pino", - "koga": "Koga", - "karen": "Karen", - "sidney": "Fosco", - "phoebe": "Ester", - "glacia": "Frida", - "drake": "Drake", - "aaron": "Aaron", - "bertha": "Terrie", - "flint": "Vulcano", - "lucian": "Luciano", - "shauntal": "Antemia", - "marshal": "Marzio", - "grimsley": "Mirton", - "caitlin": "Catlina", - "malva": "Malva", - "siebold": "Narciso", - "wikstrom": "Timeos", - "drasna": "Lila", - "hala": "Hala", - "molayne": "Tapso", - "olivia": "Olive", - "acerola": "Mapli", - "kahili": "Kahili", - "rika": "Rika", - "poppy": "Poppy", - "hassel": "Oranzio", - "crispin": "Piros", - "amarys": "Erin", - "lacey": "Rupi", - "drayton": "Aris", - "blue": "Blu", - "red": "Rosso", - "steven": "Rocco", - "wallace": "Adriano", - "cynthia": "Camilla", - "alder": "Nardo", - "iris": "Iris", - "diantha": "Diantha", - "hau": "Hau", - "geeta": "Alisma", - "nemona": "Nemi", - "kieran": "Riben", - "leon": "Dandel", - "rival": "Finn", - "rival_female": "Ivy", - - // Evil Team Admins - "archer": "Archer", - "ariana": "Ariana", - "proton": "Proton", - "petrel": "Petrel", - "tabitha": "Tabitha", - "courtney": "Courtney", - "shelly": "Shelly", - "matt": "Matt", - "mars": "Mars", - "jupiter": "Jupiter", - "saturn": "Saturn", - "zinzolin": "Zinzolin", - "rood": "Rood", - "xerosic": "Xerosic", - "bryony": "Bryony", - - "maxie": "Maxie", - "archie": "Archie", - "cyrus": "Cyrus", - "ghetsis": "Ghetsis", - "lysandre": "Lysandre", - - // Double Names - "blue_red_double": "Blu & Rosso", - "red_blue_double": "Rosso & Blu", - "tate_liza_double": "Tell & Pat", - "liza_tate_double": "Pat & Tell", - "steven_wallace_double": "Rocco & Adriano", - "wallace_steven_double": "Adriano & Rocco", - "alder_iris_double": "Nardo & Iris", - "iris_alder_double": "Iris & Nardo", - "marnie_piers_double": "Mary & Ginepro", - "piers_marnie_double": "Ginepro & Mary", -} as const; diff --git a/src/locales/it/tutorial.json b/src/locales/it/tutorial.json new file mode 100644 index 00000000000..6937d59408e --- /dev/null +++ b/src/locales/it/tutorial.json @@ -0,0 +1,10 @@ +{ + "intro": "Benvenuto in PokéRogue! Questo gioco si concentra sulle battaglie, con elementi roguelite.\n$Questo gioco non è monetizzato e non siamo proprietari di Pokémon ed assets presenti nel gioco.\n$Il progetto è work-in-progress, ma giocabile al 100%.\nPer segnalare eventuali bug è possibile contattarci al nostro apposito Discord.\n$Se il gioco risulta 'lento', assicurati di aver abilitato l'accelerazione hardware nelle impostazioni del tuo browser", + "accessMenu": "Per accedere al menu, premi M o esc.\nDal menu puoi modificare le impostazioni, controllare la wiki ed accedere a varie features.", + "menu": "Da questo menu puoi accedere alle impostazioni.\n$Esse ti permettono di cambiare velocità di gioco, stile delle finestre ed altre opzioni.\n$Ci sono varie funzionalità: controlla bene e non perderti nulla!", + "starterSelect": "Da questa schermata puoi selezionare il tuo starter.\nQuesti sono i membri iniziali della tua squadra.\n$Ogni starter ha un valore. Puoi avere fino a \n6 Pokèmon, avendo a disposizione un massimo di 10 punti.\n$Puoi anche selezionare genere, abilità, e forma a seconda delle\nvarianti che hai catturato o schiuso.\n$Le IVs di una specie sono le migliori rispetto a tutte quelle che hai\ncatturato o schiuso, quindi prova a catturarne il piu possibile!", + "pokerus": "Giornalmente 3 starter casuali disponibili avranno il bordo viola.\n$Se possiedi uno di questi starter,\nprova ad aggiungerlo alla squadra. Ricorda di controllarne le info!", + "statChange": "I cambiamenti alle statistiche persistono fintanto che i tuoi pokèmon restano in campo.\n$I tuoi pokemon verranno richiamati quando incontrerai un allenatore o al cambiamento di bioma.\n$Puoi anche vedere i cambiamenti alle statistiche in corso tenendo premuto C o Shift", + "selectItem": "Dopo ogni battaglia potrai scegliere tra 3 oggetti.\nPotrai prenderne solo uno.\n$Questi spaziano tra consumabili, oggetti tenuti da Pokèmon o con un effetto passivo permanente.\n$La maggior parte degli oggetti non consumabili possono accumulare i loro effetti in diversi modi.\n$Alcuni risulteranno inoltre disponibili solo se possono essere usati, come ad esempio gli oggetti evolutivi.\n$Puoi anche passare un oggetto tenuto da un Pokèmon a un altro attraverso l'opzione 'trasferisci strumento'.\n$Quest'ultima sarà disponibile solo dopo aver assegnato uno strumento ad un Pokèmon.\n$Puoi acquistare consumabili con le monete; progredendo saranno poi disponibili ulteriori oggetti.\n$Assicurati di fare un acquisto prima di selezionare un item casuale, poichè dopo aver fatto ciò passerai subito alla lotta successiva.", + "eggGacha": "Da questa schermata puoi riscattare i tuoi vouchers in cambio di\nuova Pokèmon.\n$Le uova vanno schiuse, e saranno sempre più vicine alla schiusura dopo\nogni battaglia. Le uova più rare impiegheranno più battaglie per la schiusura.\n$I Pokémon schiusi non verranno aggiunti alla tua squadra, ma saranno\ninvece aggiunti ai tuoi starters.\n$I Pokémon schiusi hanno (generalmente) IVs migliori rispetto ai\n Pokémon selvatici.\n$Inoltre, alcuni Pokémon possono essere ottenuti solo tramite uova.\n$Ci sono 3 diversi macchinari con differenti\nbonus, scegli quello che preferisci!" +} \ No newline at end of file diff --git a/src/locales/it/tutorial.ts b/src/locales/it/tutorial.ts deleted file mode 100644 index 1a746cf0db7..00000000000 --- a/src/locales/it/tutorial.ts +++ /dev/null @@ -1,42 +0,0 @@ -import { SimpleTranslationEntries } from "#app/interfaces/locales"; - -export const tutorial: SimpleTranslationEntries = { - "intro": `Benvenuto in PokéRogue! Questo gioco si concentra sulle battaglie, con elementi roguelite. - $Questo gioco non è monetizzato e non siamo proprietari di Pokémon ed assets presenti nel gioco. - $Il progetto è work-in-progress, ma giocabile al 100%.\nPer segnalare eventuali bug è possibile contattarci al nostro apposito Discord. - $Se il gioco risulta 'lento', assicurati di aver abilitato l'accelerazione hardware nelle impostazioni del tuo browser`, - - "accessMenu": "Per accedere al menu, premi M o esc.\nDal menu puoi modificare le impostazioni, controllare la wiki ed accedere a varie features.", - - "menu": `Da questo menu puoi accedere alle impostazioni. - $Esse ti permettono di cambiare velocità di gioco, stile delle finestre ed altre opzioni. - $Ci sono varie funzionalità: controlla bene e non perderti nulla!`, - - "starterSelect": `Da questa schermata puoi selezionare il tuo starter.\nQuesti sono i membri iniziali della tua squadra. - $Ogni starter ha un valore. Puoi avere fino a \n6 Pokèmon, avendo a disposizione un massimo di 10 punti. - $Puoi anche selezionare genere, abilità, e forma a seconda delle\nvarianti che hai catturato o schiuso. - $Le IVs di una specie sono le migliori rispetto a tutte quelle che hai\ncatturato o schiuso, quindi prova a catturarne il piu possibile!`, - - "pokerus": `Giornalmente 3 starter casuali disponibili avranno il bordo viola. - $Se possiedi uno di questi starter,\nprova ad aggiungerlo alla squadra. Ricorda di controllarne le info!`, - - "statChange": `I cambiamenti alle statistiche persistono fintanto che i tuoi pokèmon restano in campo. - $I tuoi pokemon verranno richiamati quando incontrerai un allenatore o al cambiamento di bioma. - $Puoi anche vedere i cambiamenti alle statistiche in corso tenendo premuto C o Shift`, - - "selectItem": `Dopo ogni battaglia potrai scegliere tra 3 oggetti.\nPotrai prenderne solo uno. - $Questi spaziano tra consumabili, oggetti tenuti da Pokèmon o con un effetto passivo permanente. - $La maggior parte degli oggetti non consumabili possono accumulare i loro effetti in diversi modi. - $Alcuni risulteranno inoltre disponibili solo se possono essere usati, come ad esempio gli oggetti evolutivi. - $Puoi anche passare un oggetto tenuto da un Pokèmon a un altro attraverso l'opzione 'trasferisci strumento'. - $Quest'ultima sarà disponibile solo dopo aver assegnato uno strumento ad un Pokèmon. - $Puoi acquistare consumabili con le monete; progredendo saranno poi disponibili ulteriori oggetti. - $Assicurati di fare un acquisto prima di selezionare un item casuale, poichè dopo aver fatto ciò passerai subito alla lotta successiva.`, - - "eggGacha": `Da questa schermata puoi riscattare i tuoi vouchers in cambio di\nuova Pokèmon. - $Le uova vanno schiuse, e saranno sempre più vicine alla schiusura dopo\nogni battaglia. Le uova più rare impiegheranno più battaglie per la schiusura. - $I Pokémon schiusi non verranno aggiunti alla tua squadra, ma saranno\ninvece aggiunti ai tuoi starters. - $I Pokémon schiusi hanno (generalmente) IVs migliori rispetto ai\n Pokémon selvatici. - $Inoltre, alcuni Pokémon possono essere ottenuti solo tramite uova. - $Ci sono 3 diversi macchinari con differenti\nbonus, scegli quello che preferisci!`, -} as const; diff --git a/src/locales/it/voucher.ts b/src/locales/it/voucher.json similarity index 64% rename from src/locales/it/voucher.ts rename to src/locales/it/voucher.json index 54e81dbc9d4..296be55d223 100644 --- a/src/locales/it/voucher.ts +++ b/src/locales/it/voucher.json @@ -1,11 +1,9 @@ -import { SimpleTranslationEntries } from "#app/interfaces/locales"; - -export const voucher: SimpleTranslationEntries = { - "vouchers": "Vouchers", - "eggVoucher": "Voucher uovo", - "eggVoucherPlus": "Voucher uovo plus", - "eggVoucherPremium": "Voucher uovo premium", - "eggVoucherGold": "Voucher uovo dorato", - "locked": "Bloccato", - "defeatTrainer": "Sconfiggi {{trainerName}}" -} as const; +{ + "vouchers": "Vouchers", + "eggVoucher": "Voucher uovo", + "eggVoucherPlus": "Voucher uovo plus", + "eggVoucherPremium": "Voucher uovo premium", + "eggVoucherGold": "Voucher uovo dorato", + "locked": "Bloccato", + "defeatTrainer": "Sconfiggi {{trainerName}}" +} \ No newline at end of file diff --git a/src/locales/it/weather.ts b/src/locales/it/weather.json similarity index 61% rename from src/locales/it/weather.ts rename to src/locales/it/weather.json index 604108435c3..63e3c420917 100644 --- a/src/locales/it/weather.ts +++ b/src/locales/it/weather.json @@ -1,66 +1,32 @@ -import { SimpleTranslationEntries } from "#app/interfaces/locales"; - -/** - * The weather namespace holds text displayed when weather is active during a battle - */ -export const weather: SimpleTranslationEntries = { +{ "sunnyStartMessage": "La luce solare è intensa!", "sunnyLapseMessage": "La luce solare è forte.", "sunnyClearMessage": "La luce solare si sta attenuando.", - "rainStartMessage": "Ha iniziato a piovere!", "rainLapseMessage": "La pioggia continua.", "rainClearMessage": "Ha smesso di piovere.", - "sandstormStartMessage": "Si è scatenata una tempesta di sabbia!", "sandstormLapseMessage": "La tempesta di sabbia infuria.", "sandstormClearMessage": "La tempesta di sabbia si è placata.", "sandstormDamageMessage": "{{pokemonNameWithAffix}} è stato colpito\ndalla tempesta di sabbia!", - "hailStartMessage": "Ha iniziato a grandinare!", "hailLapseMessage": "La grandine continua a cadere.", "hailClearMessage": "Ha smesso di grandinare.", "hailDamageMessage": "{{pokemonNameWithAffix}} è stato colpito\ndalla grandine!", - "snowStartMessage": "Ha iniziato a nevicare!", "snowLapseMessage": "La neve sta continuando a cadere.", "snowClearMessage": "Ha smesso di nevicare!.", - "fogStartMessage": "È emersa una fitta nebbia!", "fogLapseMessage": "La nebbia continua.", "fogClearMessage": "La nebbia è scomparsa.", - "heavyRainStartMessage": "Ha iniziato a piovere forte!", "heavyRainLapseMessage": "La pioggia battente continua.", "heavyRainClearMessage": "La pioggia battente è cessata.", - "harshSunStartMessage": "La luce solare è molto intensa!", "harshSunLapseMessage": "La luce solare è estremamente calda.", "harshSunClearMessage": "La luce solare si sta attenuando.", - "strongWindsStartMessage": "È apparsa una corrente d'aria misteriosa!", "strongWindsLapseMessage": "La corrente d'aria soffia intensamente.", "strongWindsEffectMessage": "La corrente misteriosa indebolisce l’attacco!", "strongWindsClearMessage": "La corrente d'aria è cessata." -}; - -export const terrain: SimpleTranslationEntries = { - "misty": "Misty", - "mistyStartMessage": "Mist swirled around the battlefield!", - "mistyClearMessage": "The mist disappeared from the battlefield.", - "mistyBlockMessage": "{{pokemonNameWithAffix}} surrounds itself with a protective mist!", - - "electric": "Electric", - "electricStartMessage": "An electric current ran across the battlefield!", - "electricClearMessage": "The electricity disappeared from the battlefield.", - - "grassy": "Grassy", - "grassyStartMessage": "Grass grew to cover the battlefield!", - "grassyClearMessage": "The grass disappeared from the battlefield.", - - "psychic": "Psychic", - "psychicStartMessage": "The battlefield got weird!", - "psychicClearMessage": "The weirdness disappeared from the battlefield!", - - "defaultBlockMessage": "{{pokemonNameWithAffix}} is protected by the {{terrainName}} Terrain!" -}; +} \ No newline at end of file diff --git a/src/locales/ja/ability-trigger.ts b/src/locales/ja/ability-trigger.json similarity index 93% rename from src/locales/ja/ability-trigger.ts rename to src/locales/ja/ability-trigger.json index 7c7d081f645..f9d1cc60e4c 100644 --- a/src/locales/ja/ability-trigger.ts +++ b/src/locales/ja/ability-trigger.json @@ -1,7 +1,5 @@ -import { SimpleTranslationEntries } from "#app/interfaces/locales"; - -export const abilityTriggers: SimpleTranslationEntries = { - "blockRecoilDamage" : "{{pokemonName}}は {{abilityName}}で 反動ダメージを 受けない!", +{ + "blockRecoilDamage": "{{pokemonName}}は {{abilityName}}で 反動ダメージを 受けない!", "badDreams": "{{pokemonName}}は ナイトメアに うなされている!", "costar": "{{pokemonName}}は {{allyName}}の\n能力変化を コピーした!", "iceFaceAvoidedDamage": "{{pokemonName}}は\n{{abilityName}}で ダメージを 受けない!", @@ -10,7 +8,7 @@ export const abilityTriggers: SimpleTranslationEntries = { "trace": "{{pokemonName}}は 相手の {{targetName}}の\n{{abilityName}}を トレースした!", "windPowerCharged": "{{pokemonName}}は\n{{moveName}}を 受けて じゅうでんした!", "quickDraw": "{{pokemonName}}は クイックドロウで\n行動が はやくなった!", - "disguiseAvoidedDamage" : "{{pokemonNameWithAffix}}'s disguise was busted!", + "disguiseAvoidedDamage": "{{pokemonNameWithAffix}}'s disguise was busted!", "blockItemTheft": "{{pokemonNameWithAffix}}の {{abilityName}}で\n道具を うばわれない!", "typeImmunityHeal": "{{pokemonNameWithAffix}}は {{abilityName}}で\n体力を 回復した!", "nonSuperEffectiveImmunity": "{{pokemonNameWithAffix}}は {{abilityName}}で\nダメージを 受けない。", @@ -31,7 +29,7 @@ export const abilityTriggers: SimpleTranslationEntries = { "postSummonClearAllyStats": "{{pokemonNameWithAffix}}の\n能力変化が 元に戻った!", "postSummonTransform": "{{pokemonNameWithAffix}}は\n{{targetName}}に 変身した!", "protectStat": "{{pokemonNameWithAffix}}は {{abilityName}}の 効果で\n{{statName}}が 下がらない!", - "statusEffectImmunityWithName": "{{pokemonNameWithAffix}}は {{abilityName}}で\{{statusEffectName}}に ならない!", + "statusEffectImmunityWithName": "{{pokemonNameWithAffix}}は {{abilityName}}で\n{{statusEffectName}}に ならない!", "statusEffectImmunity": "{{pokemonNameWithAffix}}は {{abilityName}}で\n状態異常に ならない!", "battlerTagImmunity": "{{pokemonNameWithAffix}}は {{abilityName}}で]\n{{battlerTagName}}を 無視した!", "forewarn": "{{pokemonNameWithAffix}}の\n{{moveName}}を 読み取った!", @@ -47,6 +45,7 @@ export const abilityTriggers: SimpleTranslationEntries = { "postFaintContactDamage": "{{pokemonNameWithAffix}}は {{abilityName}}で\n相手に ダメージを 与えた!", "postFaintHpDamage": "{{pokemonNameWithAffix}}は {{abilityName}}で\n相手に ダメージを 与えた!", "postSummonPressure": "{{pokemonNameWithAffix}}は\nプレッシャーを 放っている!", + "weatherEffectDisappeared": "天候の影響が なくなった!", "postSummonMoldBreaker": "{{pokemonNameWithAffix}}は\nかたやぶりだ!", "postSummonAnticipation": "{{pokemonNameWithAffix}}は\nみぶるいした!", "postSummonTurboblaze": "{{pokemonNameWithAffix}}は\n燃え盛(もえさか)る オーラを 放っている!", @@ -60,5 +59,5 @@ export const abilityTriggers: SimpleTranslationEntries = { "postSummonSwordOfRuin": "{{pokemonNameWithAffix}}の わざわいのつるぎで\nまわりの {{statName}}が 弱まった!", "postSummonTabletsOfRuin": "{{pokemonNameWithAffix}}の わざわいのおふだ\nまわりの {{statName}}が 弱まった!", "postSummonBeadsOfRuin": "{{pokemonNameWithAffix}}の わざわいのたまで\nまわりの {{statName}}が 弱まった!", - "preventBerryUse": "{{pokemonNameWithAffix}}は 緊張して\nきのみが 食べられなくなった!", -} as const; + "preventBerryUse": "{{pokemonNameWithAffix}}は 緊張して\nきのみが 食べられなくなった!" +} \ No newline at end of file diff --git a/src/locales/ja/ability.json b/src/locales/ja/ability.json new file mode 100644 index 00000000000..bfbf5d3a3c8 --- /dev/null +++ b/src/locales/ja/ability.json @@ -0,0 +1,1242 @@ +{ + "stench": { + "name": "あくしゅう", + "description": "臭い においを 放つことによって 攻撃した ときに 相手を ひるませることが ある。" + }, + "drizzle": { + "name": "あめふらし", + "description": "登場 したときに 天気を 雨に する。" + }, + "speedBoost": { + "name": "かそく", + "description": "毎ターン 素早さが 上がる。" + }, + "battleArmor": { + "name": "カブトアーマー", + "description": "硬い 甲羅に 守られて 相手の 攻撃が 急所に 当たらない。" + }, + "sturdy": { + "name": "がんじょう", + "description": "相手の 技を 受けても 一撃で 倒されることが ない。 一撃必殺技も 効かない。" + }, + "damp": { + "name": "しめりけ", + "description": "あたりを 湿らせることに よって じばく などの 爆発する 技を だれも 使えなくなる。" + }, + "limber": { + "name": "じゅうなん", + "description": "柔軟な 体によって まひ状態に ならない。" + }, + "sandVeil": { + "name": "すながくれ", + "description": "砂あらしの とき 回避率が 上がる。" + }, + "static": { + "name": "せいでんき", + "description": "静電気を 体に まとい 触った 相手を まひさせる ことがある。" + }, + "voltAbsorb": { + "name": "ちくでん", + "description": "でんきタイプの 技を 受けると ダメージを 受けずに 回復する。" + }, + "waterAbsorb": { + "name": "ちょすい", + "description": "みずタイプの 技を 受けると ダメージを 受けずに 回復する。" + }, + "oblivious": { + "name": "どんかん", + "description": "鈍感なので メロメロや ちょうはつ状態に ならない。" + }, + "cloudNine": { + "name": "ノーてんき", + "description": "あらゆる 天気の 影響が なくなって しまう。" + }, + "compoundEyes": { + "name": "ふくがん", + "description": "複眼を 持っているため 技の 命中率が 上がる。" + }, + "insomnia": { + "name": "ふみん", + "description": "眠れない 体質 なので ねむり状態に ならない。" + }, + "colorChange": { + "name": "へんしょく", + "description": "相手から 受けた 技の タイプに 自分の タイプが 変化 する。" + }, + "immunity": { + "name": "めんえき", + "description": "体内に 免疫を 持っているため どく状態に ならない。" + }, + "flashFire": { + "name": "もらいび", + "description": "ほのおタイプの 技を 受けると 炎を もらい 自分が 出す ほのおタイプの 技が 強くなる。" + }, + "shieldDust": { + "name": "りんぷん", + "description": "りんぷんに 守られて 技の 追加効果を 受けなくなる。" + }, + "ownTempo": { + "name": "マイペース", + "description": "マイペースなので こんらん状態に ならない。" + }, + "suctionCups": { + "name": "きゅうばん", + "description": "吸盤で 地面に 張り付き ポケモンを 入れ替えさせる 技や 道具が 効かなくなる。" + }, + "intimidate": { + "name": "いかく", + "description": "登場 したとき 威嚇して 相手を 萎縮させ 相手の 攻撃を 下げて しまう。" + }, + "shadowTag": { + "name": "かげふみ", + "description": "相手の 影を 踏み 逃げたり 交代 できなくする。" + }, + "roughSkin": { + "name": "さめはだ", + "description": "攻撃を 受けたとき 自分に 触れた 相手を ざらざらの 肌で キズつける。" + }, + "wonderGuard": { + "name": "ふしぎなまもり", + "description": "効果バツグンの 技しか 当たらない 不思議な 力。" + }, + "levitate": { + "name": "ふゆう", + "description": "地面から 浮くことによって じめんタイプの 技を 受けない。" + }, + "effectSpore": { + "name": "ほうし", + "description": "攻撃で 自分に 触れた 相手を どくや まひや ねむり状態に する ことがある。" + }, + "synchronize": { + "name": "シンクロ", + "description": "自分が なってしまった どくや まひや やけどを 相手に うつす。" + }, + "clearBody": { + "name": "クリアボディ", + "description": "相手の 技や 特性で 能力を 下げられない。" + }, + "naturalCure": { + "name": "しぜんかいふく", + "description": "手持ちに ひっこむと 状態異常が 治る。" + }, + "lightningRod": { + "name": "ひらいしん", + "description": "でんきタイプの 技を 自分に 寄せつけ ダメージを 受けずに 特攻が 上がる。" + }, + "sereneGrace": { + "name": "てんのめぐみ", + "description": "天の恵みの おかげで 技の 追加効果が でやすい。" + }, + "swiftSwim": { + "name": "すいすい", + "description": "天気が 雨のとき 素早さが 上がる。" + }, + "chlorophyll": { + "name": "ようりょくそ", + "description": "天気が 晴れのとき 素早さが 上がる。" + }, + "illuminate": { + "name": "はっこう", + "description": "あたりを 明るくすることで 命中率を 下げられない。" + }, + "trace": { + "name": "トレース", + "description": "登場 したとき 相手の 特性を トレースして 同じ 特性に なる。" + }, + "hugePower": { + "name": "ちからもち", + "description": "物理攻撃の 威力が 2倍になる。" + }, + "poisonPoint": { + "name": "どくのトゲ", + "description": "自分に 触った 相手を どく状態に することがある。" + }, + "innerFocus": { + "name": "せいしんりょく", + "description": "鍛えられた 精神に よって 相手の 攻撃に ひるまない。" + }, + "magmaArmor": { + "name": "マグマのよろい", + "description": "熱い マグマを 身にまとい こおり状態に ならない。" + }, + "waterVeil": { + "name": "みずのベール", + "description": "水のベールを 身にまとい やけど状態に ならない。" + }, + "magnetPull": { + "name": "じりょく", + "description": "はがねタイプの ポケモンを 磁力で 引きつけて 逃げられなくする。" + }, + "soundproof": { + "name": "ぼうおん", + "description": "音を 遮断 することに よって 音の 攻撃を 受けない。" + }, + "rainDish": { + "name": "あめうけざら", + "description": "天気が 雨のとき 少しずつ HPを 回復する。" + }, + "sandStream": { + "name": "すなおこし", + "description": "登場 したとき 天気を 砂あらしにする。" + }, + "pressure": { + "name": "プレッシャー", + "description": "プレッシャーを あたえて 相手の 使う 技の PPを 多く 減らす。" + }, + "thickFat": { + "name": "あついしぼう", + "description": "厚い 脂肪で 守られているので ほのおタイプと こおりタイプの 技の ダメージを 半減させる。" + }, + "earlyBird": { + "name": "はやおき", + "description": "ねむり状態に なっても 2倍の 早さで 目覚める ことが できる。" + }, + "flameBody": { + "name": "ほのおのからだ", + "description": "自分に 触った 相手を やけど状態に する ことがある。" + }, + "runAway": { + "name": "にげあし", + "description": "野生の ポケモンから 必ず 逃げられる。" + }, + "keenEye": { + "name": "するどいめ", + "description": "鋭い 目の おかげで 命中率を 下げられない。" + }, + "hyperCutter": { + "name": "かいりきバサミ", + "description": "力自慢の ハサミを 持っているので 相手に 攻撃を 下げられない。" + }, + "pickup": { + "name": "ものひろい", + "description": "戦闘が 終わったとき 相手の 持った 道具を 一つ 拾ってくることが ある。" + }, + "truant": { + "name": "なまけ", + "description": "技を 出すと 次の ターンは 休んでしまう。" + }, + "hustle": { + "name": "はりきり", + "description": "自分の 攻撃が 高くなるが 命中率が 下がる。" + }, + "cuteCharm": { + "name": "メロメロボディ", + "description": "自分に 触った 相手を メロメロに することが ある。" + }, + "plus": { + "name": "プラス", + "description": "プラスか マイナスの 特性を 持つ ポケモンが 仲間に いると 自分の 特攻が 上がる。" + }, + "minus": { + "name": "マイナス", + "description": "プラスか マイナスの 特性を 持つ ポケモンが 仲間に いると 自分の 特攻が 上がる。" + }, + "forecast": { + "name": "てんきや", + "description": "天気の 影響を 受けて みずタイプ ほのおタイプ こおりタイプの どれかに 変化する。" + }, + "stickyHold": { + "name": "ねんちゃく", + "description": "粘着質の 体に 道具が くっついているため 相手に 道具を 奪われない。" + }, + "shedSkin": { + "name": "だっぴ", + "description": "体の 皮を 脱ぎ捨てることで 状態異常を 治すことが ある。" + }, + "guts": { + "name": "こんじょう", + "description": "状態異常に なると 根性を だして 攻撃が 上がる。" + }, + "marvelScale": { + "name": "ふしぎなうろこ", + "description": "状態異常に なると 不思議なウロコが 反応して 防御が 上がる。" + }, + "liquidOoze": { + "name": "ヘドロえき", + "description": "ヘドロ液を 吸い取った 相手は 強烈な 悪臭で ダメージを 受けて HPを 減らす。" + }, + "overgrow": { + "name": "しんりょく", + "description": "HPが 減ったとき くさタイプの 技の 威力が 上がる。" + }, + "blaze": { + "name": "もうか", + "description": "HPが 減ったとき ほのおタイプの 技の 威力が 上がる。" + }, + "torrent": { + "name": "げきりゅう", + "description": "HPが 減ったとき みずタイプの 技の 威力が 上がる。" + }, + "swarm": { + "name": "むしのしらせ", + "description": "HPが 減ったとき むしタイプの 技の 威力が 上がる。" + }, + "rockHead": { + "name": "いしあたま", + "description": "反動を 受ける 技を 出しても HPが 減らない。" + }, + "drought": { + "name": "ひでり", + "description": "登場 したときに 天気を 晴れに する。" + }, + "arenaTrap": { + "name": "ありじごく", + "description": "戦闘で 相手を 逃げられなくする。" + }, + "vitalSpirit": { + "name": "やるき", + "description": "やる気を だすことに よって ねむり状態に ならない。" + }, + "whiteSmoke": { + "name": "しろいけむり", + "description": "白い煙に 守られて 相手に 能力を 下げられない。" + }, + "purePower": { + "name": "ヨガパワー", + "description": "ヨガの 力で 物理攻撃の 威力が 2倍に なる。" + }, + "shellArmor": { + "name": "シェルアーマー", + "description": "硬い 殻に 守られ 相手の 攻撃が 急所に 当たらない。" + }, + "airLock": { + "name": "エアロック", + "description": "あらゆる 天気の 影響が なくなって しまう。" + }, + "tangledFeet": { + "name": "ちどりあし", + "description": "こんらん状態の ときは 回避率が アップする。" + }, + "motorDrive": { + "name": "でんきエンジン", + "description": "でんきタイプの 技を 受けると ダメージを 受けずに 素早さが 上がる。" + }, + "rivalry": { + "name": "とうそうしん", + "description": "性別が 同じだと 闘争心を 燃やして 強くなる。 性別が 違うと 弱くなる。" + }, + "steadfast": { + "name": "ふくつのこころ", + "description": "ひるむ たびに 不屈の心を 燃やして 素早さが 上がる。" + }, + "snowCloak": { + "name": "ゆきがくれ", + "description": "天気が ゆきのとき 回避率が 上がる。" + }, + "gluttony": { + "name": "くいしんぼう", + "description": "HPが 少なくなったら 食べる きのみを HP 半分の 時に 食べてしまう。" + }, + "angerPoint": { + "name": "いかりのつぼ", + "description": "急所に 攻撃が 当たると 怒りくるって 攻撃力が 最大に なる。" + }, + "unburden": { + "name": "かるわざ", + "description": "持っていた 道具が なくなると 素早さが 上がる。" + }, + "heatproof": { + "name": "たいねつ", + "description": "耐熱の 体に よって ほのおタイプの 技の 威力を 半減させる。" + }, + "simple": { + "name": "たんじゅん", + "description": "能力 変化が いつもの 2倍に なる。" + }, + "drySkin": { + "name": "かんそうはだ", + "description": "天気が 雨の時や みずタイプの 技で HPが 回復し はれの時や ほのおタイプの 技で 減ってしまう。" + }, + "download": { + "name": "ダウンロード", + "description": "相手の 防御と 特防を くらべて 低い ほうの 能力に あわせて 自分の 攻撃か 特攻を 上げる。" + }, + "ironFist": { + "name": "てつのこぶし", + "description": "パンチを 使う 技の 威力が 上がる。" + }, + "poisonHeal": { + "name": "ポイズンヒール", + "description": "どく状態に なると HPが 減らずに 増えていく。" + }, + "adaptability": { + "name": "てきおうりょく", + "description": "自分と おなじ タイプの 技の 威力が 上がる。" + }, + "skillLink": { + "name": "スキルリンク", + "description": "連続技を 使うと いつも 最高回数 出すことが できる。" + }, + "hydration": { + "name": "うるおいボディ", + "description": "天気が 雨のとき 状態異常が 治る。" + }, + "solarPower": { + "name": "サンパワー", + "description": "天気が 晴れると 特攻が 上がるが 毎ターン HPが 減る。" + }, + "quickFeet": { + "name": "はやあし", + "description": "状態異常に なると 素早さが 上がる。" + }, + "normalize": { + "name": "ノーマルスキン", + "description": "どんな タイプの 技でも すべて ノーマルタイプに なる。 威力が 少し 上がる。" + }, + "sniper": { + "name": "スナイパー", + "description": "攻撃を 急所に 当てると 威力が さらに 上がる。" + }, + "magicGuard": { + "name": "マジックガード", + "description": "攻撃 以外では ダメージを 受けない。" + }, + "noGuard": { + "name": "ノーガード", + "description": "ノーガード戦法に よって お互いの 出す 技が かならず 当たる ようになる。" + }, + "stall": { + "name": "あとだし", + "description": "技を 出す 順番が かならず 最後に なる。" + }, + "technician": { + "name": "テクニシャン", + "description": "威力が 低い 技の 威力を 高くして 攻撃できる。" + }, + "leafGuard": { + "name": "リーフガード", + "description": "天気が 晴れのときは 状態異常に ならない。" + }, + "klutz": { + "name": "ぶきよう", + "description": "持っている 道具を 使うことが できない。" + }, + "moldBreaker": { + "name": "かたやぶり", + "description": "相手の 特性に ジャマされる ことなく 相手に 技を 出すことが できる。" + }, + "superLuck": { + "name": "きょううん", + "description": "強運を 持っているため 相手の 急所に 攻撃が 当たりやすい。" + }, + "aftermath": { + "name": "ゆうばく", + "description": "ひんしに なったとき 触った 相手に ダメージを あたえる。" + }, + "anticipation": { + "name": "きけんよち", + "description": "相手の 持つ 危険な 技を 察知する ことができる。" + }, + "forewarn": { + "name": "よちむ", + "description": "登場 したとき 相手の 持つ 技を ひとつだけ 読み取る。" + }, + "unaware": { + "name": "てんねん", + "description": "相手の 能力の 変化を 無視して 攻撃が できる。" + }, + "tintedLens": { + "name": "いろめがね", + "description": "効果が いまひとつの 技を 通常の 威力で 出すことが できる。" + }, + "filter": { + "name": "フィルター", + "description": "効果バツグンに なってしまう 攻撃の 威力を 弱める ことが できる。" + }, + "slowStart": { + "name": "スロースタート", + "description": "5ターンの あいだ 攻撃と 素早さが 半分に なる。" + }, + "scrappy": { + "name": "きもったま", + "description": "ゴーストタイプの ポケモンに ノーマルタイプと かくとうタイプの 技を 当てることが できる。" + }, + "stormDrain": { + "name": "よびみず", + "description": "みずタイプの 技を 自分に よせつけ ダメージは 受けずに 特攻が 上がる。" + }, + "iceBody": { + "name": "アイスボディ", + "description": "天気が ゆきのとき HPを 少しずつ 回復 する。" + }, + "solidRock": { + "name": "ハードロック", + "description": "効果バツグンに なってしまう 攻撃の 威力を 弱める ことが できる。" + }, + "snowWarning": { + "name": "ゆきふらし", + "description": "登場 したときに 天気を ゆきに する。" + }, + "honeyGather": { + "name": "みつあつめ", + "description": "戦闘が 終わったとき あまいミツを 拾う。そのあまいミツが 売られて お金を もらう。" + }, + "frisk": { + "name": "おみとおし", + "description": "登場 したとき 相手の 持ち物を 見通すことが できる。" + }, + "reckless": { + "name": "すてみ", + "description": "反動で ダメージを 受ける 技の 威力が 上がる。" + }, + "multitype": { + "name": "マルチタイプ", + "description": "持っている プレートや Zクリスタルの タイプによって 自分の タイプが 変わる。" + }, + "flowerGift": { + "name": "フラワーギフト", + "description": "天気が 晴れのとき 自分と 味方の 攻撃と 特防の 能力が 上がる。" + }, + "badDreams": { + "name": "ナイトメア", + "description": "ねむり状態の 相手に ダメージを あたえる。" + }, + "pickpocket": { + "name": "わるいてぐせ", + "description": "触られた 相手の 道具を 盗んで しまう。" + }, + "sheerForce": { + "name": "ちからずく", + "description": "技の 追加効果は なくなるが そのぶん 高い 威力で 技を 出すことが できる。" + }, + "contrary": { + "name": "あまのじゃく", + "description": "能力の 変化が 逆転して 上がるときに 下がり 下がるときに 上がる。" + }, + "unnerve": { + "name": "きんちょうかん", + "description": "相手を 緊張させて きのみを 食べられなく させる。" + }, + "defiant": { + "name": "まけんき", + "description": "能力を 下げられると 攻撃が ぐーんと 上がる。" + }, + "defeatist": { + "name": "よわき", + "description": "HPが 半分に なると 弱気に なって 攻撃と 特攻が 半減する。" + }, + "cursedBody": { + "name": "のろわれボディ", + "description": "攻撃を 受けると 相手の 技を かなしばり状態に することが ある。" + }, + "healer": { + "name": "いやしのこころ", + "description": "状態異常の 味方を たまに 治してあげる。" + }, + "friendGuard": { + "name": "フレンドガード", + "description": "味方の ダメージを 減らすことが できる。" + }, + "weakArmor": { + "name": "くだけるよろい", + "description": "物理技で ダメージを 受けると 防御が 下がり 素早さが ぐーんと 上がる。" + }, + "heavyMetal": { + "name": "ヘヴィメタル", + "description": "自分の 重さが 2倍に なる。" + }, + "lightMetal": { + "name": "ライトメタル", + "description": "自分の 重さが 半分に なる。" + }, + "multiscale": { + "name": "マルチスケイル", + "description": "HPが 満タンの ときに 受ける ダメージが 少なくなる。" + }, + "toxicBoost": { + "name": "どくぼうそう", + "description": "どく状態に なったとき 物理技の 威力が 上がる。" + }, + "flareBoost": { + "name": "ねつぼうそう", + "description": "やけど状態に なったとき 特殊技の 威力が 上がる。" + }, + "harvest": { + "name": "しゅうかく", + "description": "使った きのみを 何回も 作りだす。" + }, + "telepathy": { + "name": "テレパシー", + "description": "味方の 攻撃を 読み取って 技を 回避する。" + }, + "moody": { + "name": "ムラっけ", + "description": "毎ターン 能力の どれかが ぐーんと 上がって どれかが 下がる。" + }, + "overcoat": { + "name": "ぼうじん", + "description": "すなあらしや あられなどの ダメージを 受けない。 粉の 技を 受けない。" + }, + "poisonTouch": { + "name": "どくしゅ", + "description": "触る だけで 相手を どく 状態に することがある。" + }, + "regenerator": { + "name": "さいせいりょく", + "description": "手持ちに 引っ込むと HPが 少し 回復する。" + }, + "bigPecks": { + "name": "はとむね", + "description": "防御を 下げる 効果を 受けない。" + }, + "sandRush": { + "name": "すなかき", + "description": "天気が すなあらし のとき 素早さが 上がる。" + }, + "wonderSkin": { + "name": "ミラクルスキン", + "description": "変化技を 受けにくい 体に なっている。" + }, + "analytic": { + "name": "アナライズ", + "description": "いちばん 最後に 技を 出すと 技の 威力が 上がる。" + }, + "illusion": { + "name": "イリュージョン", + "description": "手持ちの いちばん うしろに いる ポケモンに なりきって 登場して 相手を 化かす。" + }, + "imposter": { + "name": "かわりもの", + "description": "目の前の ポケモンに 変身 してしまう。" + }, + "infiltrator": { + "name": "すりぬけ", + "description": "相手の 壁や 身代わりを すりぬけて 攻撃 できる" + }, + "mummy": { + "name": "ミイラ", + "description": "相手に 触られると 相手を ミイラに してしまう。" + }, + "moxie": { + "name": "じしんかじょう", + "description": "相手を 倒すと 自信が ついて 攻撃が 上がる。" + }, + "justified": { + "name": "せいぎのこころ", + "description": "あくタイプの 攻撃を 受けると 正義感で 攻撃が 上がる。" + }, + "rattled": { + "name": "びびり", + "description": "あく ゴースト むしタイプの 攻撃を 受けたり いかくを されると びびって 素早さが 上がる。" + }, + "magicBounce": { + "name": "マジックミラー", + "description": "相手に だされた 変化技を 受けずに そのまま 返す ことが できる。" + }, + "sapSipper": { + "name": "そうしょく", + "description": "くさタイプの 技を 受けると ダメージを 受けずに 攻撃が 上がる。" + }, + "prankster": { + "name": "いたずらごころ", + "description": "変化技を 先制で 出すことが できる。" + }, + "sandForce": { + "name": "すなのちから", + "description": "天気が すなあらしの とき いわタイプと じめんタイプと はがねタイプの 威力が 上がる。" + }, + "ironBarbs": { + "name": "てつのトゲ", + "description": "自分に 触った 相手に 鉄のトゲで ダメージを あたえる。" + }, + "zenMode": { + "name": "ダルマモード", + "description": "HPが 半分 以下に なると 姿が 変化する。" + }, + "victoryStar": { + "name": "しょうりのほし", + "description": "自分や 味方の 命中率が 上がる。" + }, + "turboblaze": { + "name": "ターボブレイズ", + "description": "相手の 特性に ジャマされる ことなく 相手に 技を 出すことが できる。" + }, + "teravolt": { + "name": "テラボルテージ", + "description": "相手の 特性に ジャマされる ことなく 相手に 技を 出すことが できる。" + }, + "aromaVeil": { + "name": "アロマベール", + "description": "自分と 味方への メンタル 攻撃を 防ぐことが できる。" + }, + "flowerVeil": { + "name": "フラワーベール", + "description": "味方の 草ポケモンは 能力が 下がらず 状態異常にも ならない。" + }, + "cheekPouch": { + "name": "ほおぶくろ", + "description": "どんな きのみでも 食べると HPも 回復する。" + }, + "protean": { + "name": "へんげんじざい", + "description": "自分が 出す 技と 同じ タイプに 変化する。" + }, + "furCoat": { + "name": "ファーコート", + "description": "相手から 受ける 物理技の ダメージが 半分に なる。" + }, + "magician": { + "name": "マジシャン", + "description": "技を 当てた 相手の 道具を 奪ってしまう。" + }, + "bulletproof": { + "name": "ぼうだん", + "description": "相手の 弾や 爆弾などの 技を 防ぐことが できる。" + }, + "competitive": { + "name": "かちき", + "description": "能力を 下げられると 特攻が ぐーんと 上がる。" + }, + "strongJaw": { + "name": "がんじょうあご", + "description": "あごが 頑丈で 噛む 技の 威力が 高くなる。" + }, + "refrigerate": { + "name": "フリーズスキン", + "description": "ノーマルタイプの 技が こおりタイプに なる。 威力が 少し 上がる。" + }, + "sweetVeil": { + "name": "スイートベール", + "description": "味方の ポケモンは 眠らなくなる。" + }, + "stanceChange": { + "name": "バトルスイッチ", + "description": "攻撃技を 出すと ブレードフォルムに 技 キングシールドを 出すと シールドフォルムに 変化する。" + }, + "galeWings": { + "name": "はやてのつばさ", + "description": "HPが 満タン だと ひこうタイプの 技を 先制で 出すことが できる。" + }, + "megaLauncher": { + "name": "メガランチャー", + "description": "波動の 技の 威力が 高くなる。" + }, + "grassPelt": { + "name": "くさのけがわ", + "description": "グラスフィールドのとき 防御が 上がる。" + }, + "symbiosis": { + "name": "きょうせい", + "description": "味方が 道具を 使うと 自分の 持っている 道具を 味方に 渡す。" + }, + "toughClaws": { + "name": "かたいツメ", + "description": "相手に 接触する 技の 威力が 高くなる。" + }, + "pixilate": { + "name": "フェアリースキン", + "description": "ノーマルタイプの 技が フェアリータイプになる。 威力が 少し 上がる。" + }, + "gooey": { + "name": "ぬめぬめ", + "description": "攻撃で 自分に 触れた 相手の 素早さを 下げる。" + }, + "aerilate": { + "name": "スカイスキン", + "description": "ノーマルタイプの 技が ひこうタイプになる。 威力が 少し 上がる。" + }, + "parentalBond": { + "name": "おやこあい", + "description": "親子 2匹で 2回 攻撃することが できる。" + }, + "darkAura": { + "name": "ダークオーラ", + "description": "全員の あくタイプの 技が 強くなる。" + }, + "fairyAura": { + "name": "フェアリーオーラ", + "description": "全員の フェアリータイプの 技が 強くなる。" + }, + "auraBreak": { + "name": "オーラブレイク", + "description": "オーラの 効果を 逆転させて 威力を 下げる。" + }, + "primordialSea": { + "name": "はじまりのうみ", + "description": "ほのおタイプの 攻撃を 受けない 天気にする。" + }, + "desolateLand": { + "name": "おわりのだいち", + "description": "みずタイプの 攻撃を 受けない 天気にする。" + }, + "deltaStream": { + "name": "デルタストリーム", + "description": "ひこうタイプの 弱点が なくなる 天気にする。" + }, + "stamina": { + "name": "じきゅうりょく", + "description": "攻撃を 受けると 防御が 上がる。" + }, + "wimpOut": { + "name": "にげごし", + "description": "HPが 半分に なると あわてて 逃げ出して 手持ちに 引っ込んで しまう。" + }, + "emergencyExit": { + "name": "ききかいひ", + "description": "HPが 半分に なると 危険を 回避するため 手持ちに 引っ込んで しまう。" + }, + "waterCompaction": { + "name": "みずがため", + "description": "みずタイプの 技を 受けると 防御が ぐーんと 上がる。" + }, + "merciless": { + "name": "ひとでなし", + "description": "どく状態の 相手を 攻撃すると かならず 急所に 当たる。" + }, + "shieldsDown": { + "name": "リミットシールド", + "description": "HPが 半分に なると 殻が 壊れて 攻撃的に なる。" + }, + "stakeout": { + "name": "はりこみ", + "description": "交代で 出てきた 相手に 2倍の ダメージで 攻撃 できる。" + }, + "waterBubble": { + "name": "すいほう", + "description": "自分に 対する ほのおタイプの 技の 威力を 下げる。 やけど しない。" + }, + "steelworker": { + "name": "はがねつかい", + "description": "はがねタイプの 技の 威力が 上がる。" + }, + "berserk": { + "name": "ぎゃくじょう", + "description": "相手の 攻撃で HPが 半分に なると 特攻が 上がる。" + }, + "slushRush": { + "name": "ゆきかき", + "description": "天気が ゆき のとき 素早さが 上がる。" + }, + "longReach": { + "name": "えんかく", + "description": "すべての 技を 相手に 接触 しないで 出すことが できる。" + }, + "liquidVoice": { + "name": "うるおいボイス", + "description": "すべての 音技が みずタイプに なる。" + }, + "triage": { + "name": "ヒーリングシフト", + "description": "回復技を 先制で 出すことが できる。" + }, + "galvanize": { + "name": "エレキスキン", + "description": "ノーマルタイプの 技が でんきタイプになる。 威力が 少し 上がる。" + }, + "surgeSurfer": { + "name": "サーフテール", + "description": "エレキフィールド のとき 素早さが 2倍に なる。" + }, + "schooling": { + "name": "ぎょぐん", + "description": "HPが 多いときは 群れて 強くなる。 HPの 残りが 少なくなると 群れは 散り散りに なってしまう。" + }, + "disguise": { + "name": "ばけのかわ", + "description": "体を 被う 化けの皮で 1回 攻撃を 防ぐことが できる。" + }, + "battleBond": { + "name": "きずなへんげ", + "description": "相手を 倒すと トレーナーとの キズナが 深まり サトシゲッコウガに 変化する。みずしゅりけんが 強くなる。" + }, + "powerConstruct": { + "name": "スワームチェンジ", + "description": "HPが 半分に なると セルたちが 応援に 駆けつけ パーフェクトフォルムに 姿を 変える。" + }, + "corrosion": { + "name": "ふしょく", + "description": "はがねタイプや どくタイプも どく状態に することが できる。" + }, + "comatose": { + "name": "ぜったいねむり", + "description": "つねに 夢うつつの 状態で 絶対に 目覚めない。 眠ったまま 攻撃が できる。" + }, + "queenlyMajesty": { + "name": "じょおうのいげん", + "description": "相手に 威圧感を あたえ こちらに むかって 先制技を 出せない ようにする。" + }, + "innardsOut": { + "name": "とびだすなかみ", + "description": "相手に 倒されたとき HPの 残りの ぶんだけ 相手に ダメージを あたえる。" + }, + "dancer": { + "name": "おどりこ", + "description": "だれかが 踊り技を 使うと 自分も それに 続いて 踊り技を 出すことが できる。" + }, + "battery": { + "name": "バッテリー", + "description": "味方の 特殊技の 威力を 上げる。" + }, + "fluffy": { + "name": "もふもふ", + "description": "相手から 受けた 接触する 技の ダメージを 半減するが ほのおタイプの 技の ダメージは 2倍になる。" + }, + "dazzling": { + "name": "ビビッドボディ", + "description": "相手を びっくり させて こちらに むかって 先制技を 出せない ようにする。" + }, + "soulHeart": { + "name": "ソウルハート", + "description": "ポケモンが ひんしに なるたびに 特攻が 上がる。" + }, + "tanglingHair": { + "name": "カーリーヘアー", + "description": "攻撃で 自分に 触れた 相手の 素早さを 下げる。" + }, + "receiver": { + "name": "レシーバー", + "description": "倒された 味方の 特性を 受け継いで 同じ 特性に なる。" + }, + "powerOfAlchemy": { + "name": "かがくのちから", + "description": "倒された 味方の 特性を 受け継いで 同じ 特性に なる。" + }, + "beastBoost": { + "name": "ビーストブースト", + "description": "相手を 倒したとき 自分の いちばん 高い 能力が 上がる。" + }, + "rksSystem": { + "name": "ARシステム", + "description": "持っている メモリで 自分の タイプが 変わる。" + }, + "electricSurge": { + "name": "エレキメイカー", + "description": "登場 したときに エレキフィールドを はりめぐらせる。" + }, + "psychicSurge": { + "name": "サイコメイカー", + "description": "登場 したときに サイコフィールドを はりめぐらせる。" + }, + "mistySurge": { + "name": "ミストメイカー", + "description": "登場 したときに ミストフィールドを はりめぐらせる。" + }, + "grassySurge": { + "name": "グラスメイカー", + "description": "登場 したときに グラスフィールドを はりめぐらせる。" + }, + "fullMetalBody": { + "name": "メタルプロテクト", + "description": "相手の 技や 特性で 能力を 下げられない。" + }, + "shadowShield": { + "name": "ファントムガード", + "description": "HPが 満タンの ときに 受ける ダメージが 少なくなる。" + }, + "prismArmor": { + "name": "プリズムアーマー", + "description": "効果バツグンに なってしまう 攻撃の 威力を 弱める ことが できる。" + }, + "neuroforce": { + "name": "ブレインフォース", + "description": "効果バツグンの 攻撃で 威力が さらに 上がる。" + }, + "intrepidSword": { + "name": "ふとうのけん", + "description": "登場 したときに 攻撃が 上がる。" + }, + "dauntlessShield": { + "name": "ふくつのたて", + "description": "登場 したときに 防御が 上がる。" + }, + "libero": { + "name": "リベロ", + "description": "自分が 出す 技と 同じ タイプに 変化する。" + }, + "ballFetch": { + "name": "たまひろい", + "description": "1回目に 投げて 失敗 した モンスターボールを 拾ってくる。" + }, + "cottonDown": { + "name": "わたげ", + "description": "攻撃を 受けると わたげを ばらまいて 自分以外の ポケモン すべての 素早さを 下げる。" + }, + "propellerTail": { + "name": "スクリューおびれ", + "description": "相手の 技を 引き受ける 特性や 技の 影響を 無視 できる。" + }, + "mirrorArmor": { + "name": "ミラーアーマー", + "description": "自分が 受けた 能力 ダウンの 効果 だけを 跳ね返す。" + }, + "gulpMissile": { + "name": "うのミサイル", + "description": "なみのりか ダイビングを すると 獲物を くわえてくる。 ダメージを 受けると 獲物を 吐きだして 攻撃。" + }, + "stalwart": { + "name": "すじがねいり", + "description": "相手の 技を 引き受ける 特性や 技の 影響を 無視 できる。" + }, + "steamEngine": { + "name": "じょうききかん", + "description": "みずタイプ ほのおタイプの 技を 受けると 素早さが ぐぐーんと 上がる。" + }, + "punkRock": { + "name": "パンクロック", + "description": "音技の 威力が 上がる。 受けた 音技の ダメージは 半分に なる。" + }, + "sandSpit": { + "name": "すなはき", + "description": "攻撃を 受けると 砂あらしを 起こす。" + }, + "iceScales": { + "name": "こおりのりんぷん", + "description": "こおりのりんぷんに 守られて 特殊攻撃で 受ける ダメージが 半減 する。" + }, + "ripen": { + "name": "じゅくせい", + "description": "熟成 させることで きのみの 効果が 倍に なる。" + }, + "iceFace": { + "name": "アイスフェイス", + "description": "物理攻撃は 頭の 氷が みがわりに なるが 姿も 変わる。 氷は あられが 降ると 元に戻る。" + }, + "powerSpot": { + "name": "パワースポット", + "description": "隣に いるだけで 技の 威力が 上がる。" + }, + "mimicry": { + "name": "ぎたい", + "description": "フィールドの 状態に あわせて ポケモンの タイプが 変わる。" + }, + "screenCleaner": { + "name": "バリアフリー", + "description": "登場 したときに 敵と 味方の ひかりのかべ リフレクター オーロラベールの 効果が 消える。" + }, + "steelySpirit": { + "name": "はがねのせいしん", + "description": "味方の はがねタイプの 攻撃の 威力が 上がる。" + }, + "perishBody": { + "name": "ほろびのボディ", + "description": "接触する 技を 受けると お互い 3ターン たつと ひんしになる。 交代すると 効果は なくなる。" + }, + "wanderingSpirit": { + "name": "さまようたましい", + "description": "接触する 技で 攻撃 してきた ポケモンと 特性を 入れ替える。" + }, + "gorillaTactics": { + "name": "ごりむちゅう", + "description": "攻撃は 上がるが 最初に 選んだ 技しか 出せなくなる。" + }, + "neutralizingGas": { + "name": "かがくへんかガス", + "description": "かがくへんかガスの ポケモンが 場にいると すべての ポケモンの 特性の 効果が 消えたり 発動 しなくなる。" + }, + "pastelVeil": { + "name": "パステルベール", + "description": "自分も 味方も どくの 状態異常を 受けなくなる。" + }, + "hungerSwitch": { + "name": "はらぺこスイッチ", + "description": "ターンの 終わりに まんぷくもよう はらぺこもよう まんぷくもよう……と 交互に 姿を 変える。" + }, + "quickDraw": { + "name": "クイックドロウ", + "description": "相手より 先に 行動できることが ある。" + }, + "unseenFist": { + "name": "ふかしのこぶし", + "description": "相手に 接触する 技なら 守りの 効果を 無視して 攻撃することが できる。" + }, + "curiousMedicine": { + "name": "きみょうなくすり", + "description": "登場 したときに 貝がらから 薬を 振りまいて 味方の 能力変化を 元に戻す。" + }, + "transistor": { + "name": "トランジスタ", + "description": "でんきタイプの 技の 威力が 上がる。" + }, + "dragonsMaw": { + "name": "りゅうのあぎと", + "description": "ドラゴンタイプの 技の 威力が 上がる。" + }, + "chillingNeigh": { + "name": "しろのいななき", + "description": "相手を 倒すと 冷たい 声で いなないて 攻撃が 上がる。" + }, + "grimNeigh": { + "name": "くろのいななき", + "description": "相手を 倒すと 恐ろしい 声で いなないて 特攻が 上がる。" + }, + "asOneGlastrier": { + "name": "じんばいったい", + "description": "バドレックスの きんちょうかんと ブリザポスの しろのいななきの 二つの 特性を あわせ持つ。" + }, + "asOneSpectrier": { + "name": "じんばいったい", + "description": "バドレックスの きんちょうかんと レイスポスの くろのいななきの 二つの 特性を あわせ持つ。" + }, + "lingeringAroma": { + "name": "とれないにおい", + "description": "直接攻撃を受けたとき、相手の特性もとれないにおいにする。" + }, + "seedSower": { + "name": "こぼれダネ", + "description": "攻撃を 受けると グラスフィールドに する。" + }, + "thermalExchange": { + "name": "ねつこうかん", + "description": "ほのおタイプの 技を 受けると 攻撃が 上がる。 やけど状態に ならない。" + }, + "angerShell": { + "name": "いかりのこうら", + "description": "相手の攻撃で HPが 半分に なると 怒りで 防御と 特防が 下がるが 攻撃 特攻 素早さが 上がる。" + }, + "purifyingSalt": { + "name": "きよめのしお", + "description": "清らかな塩で 状態異常に ならない。 ゴーストタイプの 技の ダメージを 半減させる。" + }, + "wellBakedBody": { + "name": "こんがりボディ", + "description": "ほのおタイプの 技を 受けると ダメージを 受けずに 防御が ぐーんと 上がる。" + }, + "windRider": { + "name": "かぜのり", + "description": "おいかぜが 吹いたり 風技を 受けると ダメージを 受けずに 攻撃が 上がる。" + }, + "guardDog": { + "name": "ばんけん", + "description": "いかく されると 攻撃が 上がる。 ポケモンを 入れ替えさせる 技や 道具が 効かない。" + }, + "rockyPayload": { + "name": "いわはこび", + "description": "いわタイプの 技の 威力が 上がる。" + }, + "windPower": { + "name": "ふうりょくでんき", + "description": "風技を 受けると じゅうでん 状態に なる。" + }, + "zeroToHero": { + "name": "マイティチェンジ", + "description": "手持ちに ひっこむと マイティフォルムに 変化する。" + }, + "commander": { + "name": "しれいとう", + "description": "登場したとき 味方に ヘイラッシャが いると 口の中に 入って そこから 指令を だす。" + }, + "electromorphosis": { + "name": "でんきにかえる", + "description": "ダメージを 受けると じゅうでん 状態に なる。" + }, + "protosynthesis": { + "name": "こだいかっせい", + "description": "ブーストエナジーを 持たせるか 天気が 晴れのとき いちばん 高い能力が 上がる。" + }, + "quarkDrive": { + "name": "クォークチャージ", + "description": "ブーストエナジーを 持たせるか エレキフィールドのとき いちばん 高い能力が 上がる。" + }, + "goodAsGold": { + "name": "おうごんのからだ", + "description": "酸化せず 丈夫な 黄金の体は 相手からの 変化技を 受けない。" + }, + "vesselOfRuin": { + "name": "わざわいのうつわ", + "description": "災厄を 呼ぶ 器の力で 自分以外の 特攻が 弱くなる。" + }, + "swordOfRuin": { + "name": "わざわいのつるぎ", + "description": "災厄を 呼ぶ 剣の力で 自分以外の 防御が 弱くなる。" + }, + "tabletsOfRuin": { + "name": "わざわいのおふだ", + "description": "災厄を 呼ぶ 木札の力で 自分以外の 攻撃が 弱くなる。" + }, + "beadsOfRuin": { + "name": "わざわいのたま", + "description": "災厄を 呼ぶ 勾玉の力で 自分以外の 特防が 弱くなる。" + }, + "orichalcumPulse": { + "name": "ひひいろのこどう", + "description": "登場したとき 天気を 晴れにする。 日差しが 強いと 古代の 鼓動により 攻撃が 高まる。" + }, + "hadronEngine": { + "name": "ハドロンエンジン", + "description": "登場したとき エレキフィールドを はる。 エレキフィールドだと 未来の 機関により 特攻が 高まる。" + }, + "opportunist": { + "name": "びんじょう", + "description": "相手の 能力が 上がったとき 自分も 便乗して 同じように 能力を 上げる。" + }, + "cudChew": { + "name": "はんすう", + "description": "きのみを 食べると 次のターンの 終わりに 胃から 出して もう1回だけ 食べる。" + }, + "sharpness": { + "name": "きれあじ", + "description": "相手を 切る技の 威力が 上がる。" + }, + "supremeOverlord": { + "name": "そうだいしょう", + "description": "登場したとき 今まで 倒された 味方の 数が 多いほど 少しずつ 攻撃と 特攻が 上がる。" + }, + "costar": { + "name": "きょうえん", + "description": "登場 したときに 味方の 能力変化を コピーする。" + }, + "toxicDebris": { + "name": "どくげしょう", + "description": "物理技で ダメージを 受けると 相手の 足下に どくびしが ちらばる。" + }, + "armorTail": { + "name": "テイルアーマー", + "description": "頭を包む 謎のしっぽが こちらに むかって 先制技を 出せない ようにする。" + }, + "earthEater": { + "name": "どしょく", + "description": "じめんタイプの 技を 受けると ダメージを 受けずに 回復する。" + }, + "myceliumMight": { + "name": "きんしのちから", + "description": "変化技を 出すとき 必ず 行動が 遅くなるが 相手の 特性に ジャマされない。" + }, + "mindsEye": { + "name": "しんがん", + "description": "ノーマル かくとうタイプの技を ゴーストタイプに 当てることが できる。 相手の 回避率の 変化を 無視し 命中率も 下げられない。" + }, + "supersweetSyrup": { + "name": "かんろなミツ", + "description": "最初に 登場 したとき 甘ったるい 蜜の香りを ふりまいて 相手の 回避率を 下げる。" + }, + "hospitality": { + "name": "おもてなし", + "description": "登場したとき 味方を もてなして HPを 少しだけ 回復してあげる。" + }, + "toxicChain": { + "name": "どくのくさり", + "description": "毒素を ふくんだ 鎖の力で 技を 当てた 相手を 猛毒の状態に することが ある。" + }, + "embodyAspectTeal": { + "name": "おもかげやどし", + "description": "思い出を 心に 宿すことで みどりのめんを かがやかせ 自分の 素早さを 上げる。" + }, + "embodyAspectWellspring": { + "name": "おもかげやどし", + "description": "思い出を 心に 宿すことで いどのめんを かがやかせ 自分の 特防を 上げる。" + }, + "embodyAspectHearthflame": { + "name": "おもかげやどし", + "description": "思い出を 心に 宿すことで かまどのめんを かがやかせ 自分の 攻撃を 上げる。" + }, + "embodyAspectCornerstone": { + "name": "おもかげやどし", + "description": "思い出を 心に 宿すことで いしずえのめんを かがやかせ 自分の 防御を 上げる。" + }, + "teraShift": { + "name": "テラスチェンジ", + "description": "登場したとき 周囲の エネルギーを 吸収し テラスタルフォルムに 変化する。" + }, + "teraShell": { + "name": "テラスシェル", + "description": "全タイプの力を 秘めた甲羅は HPが 満タンの ときに 受ける ダメージを すべて 今ひとつに する。" + }, + "teraformZero": { + "name": "ゼロフォーミング", + "description": "テラパゴスが ステラフォルムに なったとき 秘められた力で 天気と フィールドの 影響を すべて ゼロにする。" + }, + "poisonPuppeteer": { + "name": "どくくぐつ", + "description": "モモワロウの 技によって どく状態に なった 相手は こんらん状態にも なってしまう。" + } +} \ No newline at end of file diff --git a/src/locales/ja/ability.ts b/src/locales/ja/ability.ts deleted file mode 100644 index 043ca6a53ac..00000000000 --- a/src/locales/ja/ability.ts +++ /dev/null @@ -1,1244 +0,0 @@ -import { AbilityTranslationEntries } from "#app/interfaces/locales"; - -export const ability: AbilityTranslationEntries = { - stench: { - name: "あくしゅう", - description: "臭い においを 放つことによって 攻撃した ときに 相手を ひるませることが ある。", - }, - drizzle: { - name: "あめふらし", - description: "登場 したときに 天気を 雨に する。", - }, - speedBoost: { - name: "かそく", - description: "毎ターン 素早さが 上がる。", - }, - battleArmor: { - name: "カブトアーマー", - description: "硬い 甲羅に 守られて 相手の 攻撃が 急所に 当たらない。", - }, - sturdy: { - name: "がんじょう", - description: "相手の 技を 受けても 一撃で 倒されることが ない。 一撃必殺技も 効かない。", - }, - damp: { - name: "しめりけ", - description: "あたりを 湿らせることに よって じばく などの 爆発する 技を だれも 使えなくなる。", - }, - limber: { - name: "じゅうなん", - description: "柔軟な 体によって まひ状態に ならない。", - }, - sandVeil: { - name: "すながくれ", - description: "砂あらしの とき 回避率が 上がる。", - }, - static: { - name: "せいでんき", - description: "静電気を 体に まとい 触った 相手を まひさせる ことがある。", - }, - voltAbsorb: { - name: "ちくでん", - description: "でんきタイプの 技を 受けると ダメージを 受けずに 回復する。", - }, - waterAbsorb: { - name: "ちょすい", - description: "みずタイプの 技を 受けると ダメージを 受けずに 回復する。", - }, - oblivious: { - name: "どんかん", - description: "鈍感なので メロメロや ちょうはつ状態に ならない。", - }, - cloudNine: { - name: "ノーてんき", - description: "あらゆる 天気の 影響が なくなって しまう。", - }, - compoundEyes: { - name: "ふくがん", - description: "複眼を 持っているため 技の 命中率が 上がる。", - }, - insomnia: { - name: "ふみん", - description: "眠れない 体質 なので ねむり状態に ならない。", - }, - colorChange: { - name: "へんしょく", - description: "相手から 受けた 技の タイプに 自分の タイプが 変化 する。", - }, - immunity: { - name: "めんえき", - description: "体内に 免疫を 持っているため どく状態に ならない。", - }, - flashFire: { - name: "もらいび", - description: "ほのおタイプの 技を 受けると 炎を もらい 自分が 出す ほのおタイプの 技が 強くなる。", - }, - shieldDust: { - name: "りんぷん", - description: "りんぷんに 守られて 技の 追加効果を 受けなくなる。", - }, - ownTempo: { - name: "マイペース", - description: "マイペースなので こんらん状態に ならない。", - }, - suctionCups: { - name: "きゅうばん", - description: "吸盤で 地面に 張り付き ポケモンを 入れ替えさせる 技や 道具が 効かなくなる。", - }, - intimidate: { - name: "いかく", - description: "登場 したとき 威嚇して 相手を 萎縮させ 相手の 攻撃を 下げて しまう。", - }, - shadowTag: { - name: "かげふみ", - description: "相手の 影を 踏み 逃げたり 交代 できなくする。", - }, - roughSkin: { - name: "さめはだ", - description: "攻撃を 受けたとき 自分に 触れた 相手を ざらざらの 肌で キズつける。", - }, - wonderGuard: { - name: "ふしぎなまもり", - description: "効果バツグンの 技しか 当たらない 不思議な 力。", - }, - levitate: { - name: "ふゆう", - description: "地面から 浮くことによって じめんタイプの 技を 受けない。", - }, - effectSpore: { - name: "ほうし", - description: "攻撃で 自分に 触れた 相手を どくや まひや ねむり状態に する ことがある。", - }, - synchronize: { - name: "シンクロ", - description: "自分が なってしまった どくや まひや やけどを 相手に うつす。", - }, - clearBody: { - name: "クリアボディ", - description: "相手の 技や 特性で 能力を 下げられない。", - }, - naturalCure: { - name: "しぜんかいふく", - description: "手持ちに ひっこむと 状態異常が 治る。", - }, - lightningRod: { - name: "ひらいしん", - description: "でんきタイプの 技を 自分に 寄せつけ ダメージを 受けずに 特攻が 上がる。", - }, - sereneGrace: { - name: "てんのめぐみ", - description: "天の恵みの おかげで 技の 追加効果が でやすい。", - }, - swiftSwim: { - name: "すいすい", - description: "天気が 雨のとき 素早さが 上がる。", - }, - chlorophyll: { - name: "ようりょくそ", - description: "天気が 晴れのとき 素早さが 上がる。", - }, - illuminate: { - name: "はっこう", - description: "あたりを 明るくすることで 命中率を 下げられない。", - }, - trace: { - name: "トレース", - description: "登場 したとき 相手の 特性を トレースして 同じ 特性に なる。", - }, - hugePower: { - name: "ちからもち", - description: "物理攻撃の 威力が 2倍になる。", - }, - poisonPoint: { - name: "どくのトゲ", - description: "自分に 触った 相手を どく状態に することがある。", - }, - innerFocus: { - name: "せいしんりょく", - description: "鍛えられた 精神に よって 相手の 攻撃に ひるまない。", - }, - magmaArmor: { - name: "マグマのよろい", - description: "熱い マグマを 身にまとい こおり状態に ならない。", - }, - waterVeil: { - name: "みずのベール", - description: "水のベールを 身にまとい やけど状態に ならない。", - }, - magnetPull: { - name: "じりょく", - description: "はがねタイプの ポケモンを 磁力で 引きつけて 逃げられなくする。", - }, - soundproof: { - name: "ぼうおん", - description: "音を 遮断 することに よって 音の 攻撃を 受けない。", - }, - rainDish: { - name: "あめうけざら", - description: "天気が 雨のとき 少しずつ HPを 回復する。", - }, - sandStream: { - name: "すなおこし", - description: "登場 したとき 天気を 砂あらしにする。", - }, - pressure: { - name: "プレッシャー", - description: "プレッシャーを あたえて 相手の 使う 技の PPを 多く 減らす。", - }, - thickFat: { - name: "あついしぼう", - description: "厚い 脂肪で 守られているので ほのおタイプと こおりタイプの 技の ダメージを 半減させる。", - }, - earlyBird: { - name: "はやおき", - description: "ねむり状態に なっても 2倍の 早さで 目覚める ことが できる。", - }, - flameBody: { - name: "ほのおのからだ", - description: "自分に 触った 相手を やけど状態に する ことがある。", - }, - runAway: { - name: "にげあし", - description: "野生の ポケモンから 必ず 逃げられる。", - }, - keenEye: { - name: "するどいめ", - description: "鋭い 目の おかげで 命中率を 下げられない。", - }, - hyperCutter: { - name: "かいりきバサミ", - description: "力自慢の ハサミを 持っているので 相手に 攻撃を 下げられない。", - }, - pickup: { - name: "ものひろい", - description: "戦闘が 終わったとき 相手の 持った 道具を 一つ 拾ってくることが ある。", - }, - truant: { - name: "なまけ", - description: "技を 出すと 次の ターンは 休んでしまう。", - }, - hustle: { - name: "はりきり", - description: "自分の 攻撃が 高くなるが 命中率が 下がる。", - }, - cuteCharm: { - name: "メロメロボディ", - description: "自分に 触った 相手を メロメロに することが ある。", - }, - plus: { - name: "プラス", - description: "プラスか マイナスの 特性を 持つ ポケモンが 仲間に いると 自分の 特攻が 上がる。", - }, - minus: { - name: "マイナス", - description: "プラスか マイナスの 特性を 持つ ポケモンが 仲間に いると 自分の 特攻が 上がる。", - }, - forecast: { - name: "てんきや", - description: "天気の 影響を 受けて みずタイプ ほのおタイプ こおりタイプの どれかに 変化する。", - }, - stickyHold: { - name: "ねんちゃく", - description: "粘着質の 体に 道具が くっついているため 相手に 道具を 奪われない。", - }, - shedSkin: { - name: "だっぴ", - description: "体の 皮を 脱ぎ捨てることで 状態異常を 治すことが ある。", - }, - guts: { - name: "こんじょう", - description: "状態異常に なると 根性を だして 攻撃が 上がる。", - }, - marvelScale: { - name: "ふしぎなうろこ", - description: "状態異常に なると 不思議なウロコが 反応して 防御が 上がる。", - }, - liquidOoze: { - name: "ヘドロえき", - description: "ヘドロ液を 吸い取った 相手は 強烈な 悪臭で ダメージを 受けて HPを 減らす。", - }, - overgrow: { - name: "しんりょく", - description: "HPが 減ったとき くさタイプの 技の 威力が 上がる。", - }, - blaze: { - name: "もうか", - description: "HPが 減ったとき ほのおタイプの 技の 威力が 上がる。", - }, - torrent: { - name: "げきりゅう", - description: "HPが 減ったとき みずタイプの 技の 威力が 上がる。", - }, - swarm: { - name: "むしのしらせ", - description: "HPが 減ったとき むしタイプの 技の 威力が 上がる。", - }, - rockHead: { - name: "いしあたま", - description: "反動を 受ける 技を 出しても HPが 減らない。", - }, - drought: { - name: "ひでり", - description: "登場 したときに 天気を 晴れに する。", - }, - arenaTrap: { - name: "ありじごく", - description: "戦闘で 相手を 逃げられなくする。", - }, - vitalSpirit: { - name: "やるき", - description: "やる気を だすことに よって ねむり状態に ならない。", - }, - whiteSmoke: { - name: "しろいけむり", - description: "白い煙に 守られて 相手に 能力を 下げられない。", - }, - purePower: { - name: "ヨガパワー", - description: "ヨガの 力で 物理攻撃の 威力が 2倍に なる。", - }, - shellArmor: { - name: "シェルアーマー", - description: "硬い 殻に 守られ 相手の 攻撃が 急所に 当たらない。", - }, - airLock: { - name: "エアロック", - description: "あらゆる 天気の 影響が なくなって しまう。", - }, - tangledFeet: { - name: "ちどりあし", - description: "こんらん状態の ときは 回避率が アップする。", - }, - motorDrive: { - name: "でんきエンジン", - description: "でんきタイプの 技を 受けると ダメージを 受けずに 素早さが 上がる。", - }, - rivalry: { - name: "とうそうしん", - description: "性別が 同じだと 闘争心を 燃やして 強くなる。 性別が 違うと 弱くなる。", - }, - steadfast: { - name: "ふくつのこころ", - description: "ひるむ たびに 不屈の心を 燃やして 素早さが 上がる。", - }, - snowCloak: { - name: "ゆきがくれ", - description: "天気が ゆきのとき 回避率が 上がる。", - }, - gluttony: { - name: "くいしんぼう", - description: "HPが 少なくなったら 食べる きのみを HP 半分の 時に 食べてしまう。", - }, - angerPoint: { - name: "いかりのつぼ", - description: "急所に 攻撃が 当たると 怒りくるって 攻撃力が 最大に なる。", - }, - unburden: { - name: "かるわざ", - description: "持っていた 道具が なくなると 素早さが 上がる。", - }, - heatproof: { - name: "たいねつ", - description: "耐熱の 体に よって ほのおタイプの 技の 威力を 半減させる。", - }, - simple: { - name: "たんじゅん", - description: "能力 変化が いつもの 2倍に なる。", - }, - drySkin: { - name: "かんそうはだ", - description: "天気が 雨の時や みずタイプの 技で HPが 回復し はれの時や ほのおタイプの 技で 減ってしまう。", - }, - download: { - name: "ダウンロード", - description: "相手の 防御と 特防を くらべて 低い ほうの 能力に あわせて 自分の 攻撃か 特攻を 上げる。", - }, - ironFist: { - name: "てつのこぶし", - description: "パンチを 使う 技の 威力が 上がる。", - }, - poisonHeal: { - name: "ポイズンヒール", - description: "どく状態に なると HPが 減らずに 増えていく。", - }, - adaptability: { - name: "てきおうりょく", - description: "自分と おなじ タイプの 技の 威力が 上がる。", - }, - skillLink: { - name: "スキルリンク", - description: "連続技を 使うと いつも 最高回数 出すことが できる。", - }, - hydration: { - name: "うるおいボディ", - description: "天気が 雨のとき 状態異常が 治る。", - }, - solarPower: { - name: "サンパワー", - description: "天気が 晴れると 特攻が 上がるが 毎ターン HPが 減る。", - }, - quickFeet: { - name: "はやあし", - description: "状態異常に なると 素早さが 上がる。", - }, - normalize: { - name: "ノーマルスキン", - description: "どんな タイプの 技でも すべて ノーマルタイプに なる。 威力が 少し 上がる。", - }, - sniper: { - name: "スナイパー", - description: "攻撃を 急所に 当てると 威力が さらに 上がる。", - }, - magicGuard: { - name: "マジックガード", - description: "攻撃 以外では ダメージを 受けない。", - }, - noGuard: { - name: "ノーガード", - description: "ノーガード戦法に よって お互いの 出す 技が かならず 当たる ようになる。", - }, - stall: { - name: "あとだし", - description: "技を 出す 順番が かならず 最後に なる。", - }, - technician: { - name: "テクニシャン", - description: "威力が 低い 技の 威力を 高くして 攻撃できる。", - }, - leafGuard: { - name: "リーフガード", - description: "天気が 晴れのときは 状態異常に ならない。", - }, - klutz: { - name: "ぶきよう", - description: "持っている 道具を 使うことが できない。", - }, - moldBreaker: { - name: "かたやぶり", - description: "相手の 特性に ジャマされる ことなく 相手に 技を 出すことが できる。", - }, - superLuck: { - name: "きょううん", - description: "強運を 持っているため 相手の 急所に 攻撃が 当たりやすい。", - }, - aftermath: { - name: "ゆうばく", - description: "ひんしに なったとき 触った 相手に ダメージを あたえる。", - }, - anticipation: { - name: "きけんよち", - description: "相手の 持つ 危険な 技を 察知する ことができる。", - }, - forewarn: { - name: "よちむ", - description: "登場 したとき 相手の 持つ 技を ひとつだけ 読み取る。", - }, - unaware: { - name: "てんねん", - description: "相手の 能力の 変化を 無視して 攻撃が できる。", - }, - tintedLens: { - name: "いろめがね", - description: "効果が いまひとつの 技を 通常の 威力で 出すことが できる。", - }, - filter: { - name: "フィルター", - description: "効果バツグンに なってしまう 攻撃の 威力を 弱める ことが できる。", - }, - slowStart: { - name: "スロースタート", - description: "5ターンの あいだ 攻撃と 素早さが 半分に なる。", - }, - scrappy: { - name: "きもったま", - description: "ゴーストタイプの ポケモンに ノーマルタイプと かくとうタイプの 技を 当てることが できる。", - }, - stormDrain: { - name: "よびみず", - description: "みずタイプの 技を 自分に よせつけ ダメージは 受けずに 特攻が 上がる。", - }, - iceBody: { - name: "アイスボディ", - description: "天気が ゆきのとき HPを 少しずつ 回復 する。", - }, - solidRock: { - name: "ハードロック", - description: "効果バツグンに なってしまう 攻撃の 威力を 弱める ことが できる。", - }, - snowWarning: { - name: "ゆきふらし", - description: "登場 したときに 天気を ゆきに する。", - }, - honeyGather: { - name: "みつあつめ", - description: "戦闘が 終わったとき あまいミツを 拾う。そのあまいミツが 売られて お金を もらう。", - }, - frisk: { - name: "おみとおし", - description: "登場 したとき 相手の 持ち物を 見通すことが できる。", - }, - reckless: { - name: "すてみ", - description: "反動で ダメージを 受ける 技の 威力が 上がる。", - }, - multitype: { - name: "マルチタイプ", - description: "持っている プレートや Zクリスタルの タイプによって 自分の タイプが 変わる。", - }, - flowerGift: { - name: "フラワーギフト", - description: "天気が 晴れのとき 自分と 味方の 攻撃と 特防の 能力が 上がる。", - }, - badDreams: { - name: "ナイトメア", - description: "ねむり状態の 相手に ダメージを あたえる。", - }, - pickpocket: { - name: "わるいてぐせ", - description: "触られた 相手の 道具を 盗んで しまう。", - }, - sheerForce: { - name: "ちからずく", - description: "技の 追加効果は なくなるが そのぶん 高い 威力で 技を 出すことが できる。", - }, - contrary: { - name: "あまのじゃく", - description: "能力の 変化が 逆転して 上がるときに 下がり 下がるときに 上がる。", - }, - unnerve: { - name: "きんちょうかん", - description: "相手を 緊張させて きのみを 食べられなく させる。", - }, - defiant: { - name: "まけんき", - description: "能力を 下げられると 攻撃が ぐーんと 上がる。", - }, - defeatist: { - name: "よわき", - description: "HPが 半分に なると 弱気に なって 攻撃と 特攻が 半減する。", - }, - cursedBody: { - name: "のろわれボディ", - description: "攻撃を 受けると 相手の 技を かなしばり状態に することが ある。", - }, - healer: { - name: "いやしのこころ", - description: "状態異常の 味方を たまに 治してあげる。", - }, - friendGuard: { - name: "フレンドガード", - description: "味方の ダメージを 減らすことが できる。", - }, - weakArmor: { - name: "くだけるよろい", - description: "物理技で ダメージを 受けると 防御が 下がり 素早さが ぐーんと 上がる。", - }, - heavyMetal: { - name: "ヘヴィメタル", - description: "自分の 重さが 2倍に なる。", - }, - lightMetal: { - name: "ライトメタル", - description: "自分の 重さが 半分に なる。", - }, - multiscale: { - name: "マルチスケイル", - description: "HPが 満タンの ときに 受ける ダメージが 少なくなる。", - }, - toxicBoost: { - name: "どくぼうそう", - description: "どく状態に なったとき 物理技の 威力が 上がる。", - }, - flareBoost: { - name: "ねつぼうそう", - description: "やけど状態に なったとき 特殊技の 威力が 上がる。", - }, - harvest: { - name: "しゅうかく", - description: "使った きのみを 何回も 作りだす。", - }, - telepathy: { - name: "テレパシー", - description: "味方の 攻撃を 読み取って 技を 回避する。", - }, - moody: { - name: "ムラっけ", - description: "毎ターン 能力の どれかが ぐーんと 上がって どれかが 下がる。", - }, - overcoat: { - name: "ぼうじん", - description: "すなあらしや あられなどの ダメージを 受けない。 粉の 技を 受けない。", - }, - poisonTouch: { - name: "どくしゅ", - description: "触る だけで 相手を どく 状態に することがある。", - }, - regenerator: { - name: "さいせいりょく", - description: "手持ちに 引っ込むと HPが 少し 回復する。", - }, - bigPecks: { - name: "はとむね", - description: "防御を 下げる 効果を 受けない。", - }, - sandRush: { - name: "すなかき", - description: "天気が すなあらし のとき 素早さが 上がる。", - }, - wonderSkin: { - name: "ミラクルスキン", - description: "変化技を 受けにくい 体に なっている。", - }, - analytic: { - name: "アナライズ", - description: "いちばん 最後に 技を 出すと 技の 威力が 上がる。", - }, - illusion: { - name: "イリュージョン", - description: "手持ちの いちばん うしろに いる ポケモンに なりきって 登場して 相手を 化かす。", - }, - imposter: { - name: "かわりもの", - description: "目の前の ポケモンに 変身 してしまう。", - }, - infiltrator: { - name: "すりぬけ", - description: "相手の 壁や 身代わりを すりぬけて 攻撃 できる", - }, - mummy: { - name: "ミイラ", - description: "相手に 触られると 相手を ミイラに してしまう。", - }, - moxie: { - name: "じしんかじょう", - description: "相手を 倒すと 自信が ついて 攻撃が 上がる。", - }, - justified: { - name: "せいぎのこころ", - description: "あくタイプの 攻撃を 受けると 正義感で 攻撃が 上がる。", - }, - rattled: { - name: "びびり", - description: "あく ゴースト むしタイプの 攻撃を 受けたり いかくを されると びびって 素早さが 上がる。", - }, - magicBounce: { - name: "マジックミラー", - description: "相手に だされた 変化技を 受けずに そのまま 返す ことが できる。", - }, - sapSipper: { - name: "そうしょく", - description: "くさタイプの 技を 受けると ダメージを 受けずに 攻撃が 上がる。", - }, - prankster: { - name: "いたずらごころ", - description: "変化技を 先制で 出すことが できる。", - }, - sandForce: { - name: "すなのちから", - description: "天気が すなあらしの とき いわタイプと じめんタイプと はがねタイプの 威力が 上がる。", - }, - ironBarbs: { - name: "てつのトゲ", - description: "自分に 触った 相手に 鉄のトゲで ダメージを あたえる。", - }, - zenMode: { - name: "ダルマモード", - description: "HPが 半分 以下に なると 姿が 変化する。", - }, - victoryStar: { - name: "しょうりのほし", - description: "自分や 味方の 命中率が 上がる。", - }, - turboblaze: { - name: "ターボブレイズ", - description: "相手の 特性に ジャマされる ことなく 相手に 技を 出すことが できる。", - }, - teravolt: { - name: "テラボルテージ", - description: "相手の 特性に ジャマされる ことなく 相手に 技を 出すことが できる。", - }, - aromaVeil: { - name: "アロマベール", - description: "自分と 味方への メンタル 攻撃を 防ぐことが できる。", - }, - flowerVeil: { - name: "フラワーベール", - description: "味方の 草ポケモンは 能力が 下がらず 状態異常にも ならない。", - }, - cheekPouch: { - name: "ほおぶくろ", - description: "どんな きのみでも 食べると HPも 回復する。", - }, - protean: { - name: "へんげんじざい", - description: "自分が 出す 技と 同じ タイプに 変化する。", - }, - furCoat: { - name: "ファーコート", - description: "相手から 受ける 物理技の ダメージが 半分に なる。", - }, - magician: { - name: "マジシャン", - description: "技を 当てた 相手の 道具を 奪ってしまう。", - }, - bulletproof: { - name: "ぼうだん", - description: "相手の 弾や 爆弾などの 技を 防ぐことが できる。", - }, - competitive: { - name: "かちき", - description: "能力を 下げられると 特攻が ぐーんと 上がる。", - }, - strongJaw: { - name: "がんじょうあご", - description: "あごが 頑丈で 噛む 技の 威力が 高くなる。", - }, - refrigerate: { - name: "フリーズスキン", - description: "ノーマルタイプの 技が こおりタイプに なる。 威力が 少し 上がる。", - }, - sweetVeil: { - name: "スイートベール", - description: "味方の ポケモンは 眠らなくなる。", - }, - stanceChange: { - name: "バトルスイッチ", - description: "攻撃技を 出すと ブレードフォルムに 技 キングシールドを 出すと シールドフォルムに 変化する。", - }, - galeWings: { - name: "はやてのつばさ", - description: "HPが 満タン だと ひこうタイプの 技を 先制で 出すことが できる。", - }, - megaLauncher: { - name: "メガランチャー", - description: "波動の 技の 威力が 高くなる。", - }, - grassPelt: { - name: "くさのけがわ", - description: "グラスフィールドのとき 防御が 上がる。", - }, - symbiosis: { - name: "きょうせい", - description: "味方が 道具を 使うと 自分の 持っている 道具を 味方に 渡す。", - }, - toughClaws: { - name: "かたいツメ", - description: "相手に 接触する 技の 威力が 高くなる。", - }, - pixilate: { - name: "フェアリースキン", - description: "ノーマルタイプの 技が フェアリータイプになる。 威力が 少し 上がる。", - }, - gooey: { - name: "ぬめぬめ", - description: "攻撃で 自分に 触れた 相手の 素早さを 下げる。", - }, - aerilate: { - name: "スカイスキン", - description: "ノーマルタイプの 技が ひこうタイプになる。 威力が 少し 上がる。", - }, - parentalBond: { - name: "おやこあい", - description: "親子 2匹で 2回 攻撃することが できる。", - }, - darkAura: { - name: "ダークオーラ", - description: "全員の あくタイプの 技が 強くなる。", - }, - fairyAura: { - name: "フェアリーオーラ", - description: "全員の フェアリータイプの 技が 強くなる。", - }, - auraBreak: { - name: "オーラブレイク", - description: "オーラの 効果を 逆転させて 威力を 下げる。", - }, - primordialSea: { - name: "はじまりのうみ", - description: "ほのおタイプの 攻撃を 受けない 天気にする。", - }, - desolateLand: { - name: "おわりのだいち", - description: "みずタイプの 攻撃を 受けない 天気にする。", - }, - deltaStream: { - name: "デルタストリーム", - description: "ひこうタイプの 弱点が なくなる 天気にする。", - }, - stamina: { - name: "じきゅうりょく", - description: "攻撃を 受けると 防御が 上がる。", - }, - wimpOut: { - name: "にげごし", - description: "HPが 半分に なると あわてて 逃げ出して 手持ちに 引っ込んで しまう。", - }, - emergencyExit: { - name: "ききかいひ", - description: "HPが 半分に なると 危険を 回避するため 手持ちに 引っ込んで しまう。", - }, - waterCompaction: { - name: "みずがため", - description: "みずタイプの 技を 受けると 防御が ぐーんと 上がる。", - }, - merciless: { - name: "ひとでなし", - description: "どく状態の 相手を 攻撃すると かならず 急所に 当たる。", - }, - shieldsDown: { - name: "リミットシールド", - description: "HPが 半分に なると 殻が 壊れて 攻撃的に なる。", - }, - stakeout: { - name: "はりこみ", - description: "交代で 出てきた 相手に 2倍の ダメージで 攻撃 できる。", - }, - waterBubble: { - name: "すいほう", - description: "自分に 対する ほのおタイプの 技の 威力を 下げる。 やけど しない。", - }, - steelworker: { - name: "はがねつかい", - description: "はがねタイプの 技の 威力が 上がる。", - }, - berserk: { - name: "ぎゃくじょう", - description: "相手の 攻撃で HPが 半分に なると 特攻が 上がる。", - }, - slushRush: { - name: "ゆきかき", - description: "天気が ゆき のとき 素早さが 上がる。", - }, - longReach: { - name: "えんかく", - description: "すべての 技を 相手に 接触 しないで 出すことが できる。", - }, - liquidVoice: { - name: "うるおいボイス", - description: "すべての 音技が みずタイプに なる。", - }, - triage: { - name: "ヒーリングシフト", - description: "回復技を 先制で 出すことが できる。", - }, - galvanize: { - name: "エレキスキン", - description: "ノーマルタイプの 技が でんきタイプになる。 威力が 少し 上がる。", - }, - surgeSurfer: { - name: "サーフテール", - description: "エレキフィールド のとき 素早さが 2倍に なる。", - }, - schooling: { - name: "ぎょぐん", - description: "HPが 多いときは 群れて 強くなる。 HPの 残りが 少なくなると 群れは 散り散りに なってしまう。", - }, - disguise: { - name: "ばけのかわ", - description: "体を 被う 化けの皮で 1回 攻撃を 防ぐことが できる。", - }, - battleBond: { - name: "きずなへんげ", - description: "相手を 倒すと トレーナーとの キズナが 深まり サトシゲッコウガに 変化する。みずしゅりけんが 強くなる。", - }, - powerConstruct: { - name: "スワームチェンジ", - description: "HPが 半分に なると セルたちが 応援に 駆けつけ パーフェクトフォルムに 姿を 変える。", - }, - corrosion: { - name: "ふしょく", - description: "はがねタイプや どくタイプも どく状態に することが できる。", - }, - comatose: { - name: "ぜったいねむり", - description: "つねに 夢うつつの 状態で 絶対に 目覚めない。 眠ったまま 攻撃が できる。", - }, - queenlyMajesty: { - name: "じょおうのいげん", - description: "相手に 威圧感を あたえ こちらに むかって 先制技を 出せない ようにする。", - }, - innardsOut: { - name: "とびだすなかみ", - description: "相手に 倒されたとき HPの 残りの ぶんだけ 相手に ダメージを あたえる。", - }, - dancer: { - name: "おどりこ", - description: "だれかが 踊り技を 使うと 自分も それに 続いて 踊り技を 出すことが できる。", - }, - battery: { - name: "バッテリー", - description: "味方の 特殊技の 威力を 上げる。", - }, - fluffy: { - name: "もふもふ", - description: "相手から 受けた 接触する 技の ダメージを 半減するが ほのおタイプの 技の ダメージは 2倍になる。", - }, - dazzling: { - name: "ビビッドボディ", - description: "相手を びっくり させて こちらに むかって 先制技を 出せない ようにする。", - }, - soulHeart: { - name: "ソウルハート", - description: "ポケモンが ひんしに なるたびに 特攻が 上がる。", - }, - tanglingHair: { - name: "カーリーヘアー", - description: "攻撃で 自分に 触れた 相手の 素早さを 下げる。", - }, - receiver: { - name: "レシーバー", - description: "倒された 味方の 特性を 受け継いで 同じ 特性に なる。", - }, - powerOfAlchemy: { - name: "かがくのちから", - description: "倒された 味方の 特性を 受け継いで 同じ 特性に なる。", - }, - beastBoost: { - name: "ビーストブースト", - description: "相手を 倒したとき 自分の いちばん 高い 能力が 上がる。", - }, - rksSystem: { - name: "ARシステム", - description: "持っている メモリで 自分の タイプが 変わる。", - }, - electricSurge: { - name: "エレキメイカー", - description: "登場 したときに エレキフィールドを はりめぐらせる。", - }, - psychicSurge: { - name: "サイコメイカー", - description: "登場 したときに サイコフィールドを はりめぐらせる。", - }, - mistySurge: { - name: "ミストメイカー", - description: "登場 したときに ミストフィールドを はりめぐらせる。", - }, - grassySurge: { - name: "グラスメイカー", - description: "登場 したときに グラスフィールドを はりめぐらせる。", - }, - fullMetalBody: { - name: "メタルプロテクト", - description: "相手の 技や 特性で 能力を 下げられない。", - }, - shadowShield: { - name: "ファントムガード", - description: "HPが 満タンの ときに 受ける ダメージが 少なくなる。", - }, - prismArmor: { - name: "プリズムアーマー", - description: "効果バツグンに なってしまう 攻撃の 威力を 弱める ことが できる。", - }, - neuroforce: { - name: "ブレインフォース", - description: "効果バツグンの 攻撃で 威力が さらに 上がる。", - }, - intrepidSword: { - name: "ふとうのけん", - description: "登場 したときに 攻撃が 上がる。", - }, - dauntlessShield: { - name: "ふくつのたて", - description: "登場 したときに 防御が 上がる。", - }, - libero: { - name: "リベロ", - description: "自分が 出す 技と 同じ タイプに 変化する。", - }, - ballFetch: { - name: "たまひろい", - description: "1回目に 投げて 失敗 した モンスターボールを 拾ってくる。", - }, - cottonDown: { - name: "わたげ", - description: "攻撃を 受けると わたげを ばらまいて 自分以外の ポケモン すべての 素早さを 下げる。", - }, - propellerTail: { - name: "スクリューおびれ", - description: "相手の 技を 引き受ける 特性や 技の 影響を 無視 できる。", - }, - mirrorArmor: { - name: "ミラーアーマー", - description: "自分が 受けた 能力 ダウンの 効果 だけを 跳ね返す。", - }, - gulpMissile: { - name: "うのミサイル", - description: "なみのりか ダイビングを すると 獲物を くわえてくる。 ダメージを 受けると 獲物を 吐きだして 攻撃。", - }, - stalwart: { - name: "すじがねいり", - description: "相手の 技を 引き受ける 特性や 技の 影響を 無視 できる。", - }, - steamEngine: { - name: "じょうききかん", - description: "みずタイプ ほのおタイプの 技を 受けると 素早さが ぐぐーんと 上がる。", - }, - punkRock: { - name: "パンクロック", - description: "音技の 威力が 上がる。 受けた 音技の ダメージは 半分に なる。", - }, - sandSpit: { - name: "すなはき", - description: "攻撃を 受けると 砂あらしを 起こす。", - }, - iceScales: { - name: "こおりのりんぷん", - description: "こおりのりんぷんに 守られて 特殊攻撃で 受ける ダメージが 半減 する。", - }, - ripen: { - name: "じゅくせい", - description: "熟成 させることで きのみの 効果が 倍に なる。", - }, - iceFace: { - name: "アイスフェイス", - description: "物理攻撃は 頭の 氷が みがわりに なるが 姿も 変わる。 氷は あられが 降ると 元に戻る。", - }, - powerSpot: { - name: "パワースポット", - description: "隣に いるだけで 技の 威力が 上がる。", - }, - mimicry: { - name: "ぎたい", - description: "フィールドの 状態に あわせて ポケモンの タイプが 変わる。", - }, - screenCleaner: { - name: "バリアフリー", - description: "登場 したときに 敵と 味方の ひかりのかべ リフレクター オーロラベールの 効果が 消える。", - }, - steelySpirit: { - name: "はがねのせいしん", - description: "味方の はがねタイプの 攻撃の 威力が 上がる。", - }, - perishBody: { - name: "ほろびのボディ", - description: "接触する 技を 受けると お互い 3ターン たつと ひんしになる。 交代すると 効果は なくなる。", - }, - wanderingSpirit: { - name: "さまようたましい", - description: "接触する 技で 攻撃 してきた ポケモンと 特性を 入れ替える。", - }, - gorillaTactics: { - name: "ごりむちゅう", - description: "攻撃は 上がるが 最初に 選んだ 技しか 出せなくなる。", - }, - neutralizingGas: { - name: "かがくへんかガス", - description: "かがくへんかガスの ポケモンが 場にいると すべての ポケモンの 特性の 効果が 消えたり 発動 しなくなる。", - }, - pastelVeil: { - name: "パステルベール", - description: "自分も 味方も どくの 状態異常を 受けなくなる。", - }, - hungerSwitch: { - name: "はらぺこスイッチ", - description: "ターンの 終わりに まんぷくもよう はらぺこもよう まんぷくもよう……と 交互に 姿を 変える。", - }, - quickDraw: { - name: "クイックドロウ", - description: "相手より 先に 行動できることが ある。", - }, - unseenFist: { - name: "ふかしのこぶし", - description: "相手に 接触する 技なら 守りの 効果を 無視して 攻撃することが できる。", - }, - curiousMedicine: { - name: "きみょうなくすり", - description: "登場 したときに 貝がらから 薬を 振りまいて 味方の 能力変化を 元に戻す。", - }, - transistor: { - name: "トランジスタ", - description: "でんきタイプの 技の 威力が 上がる。", - }, - dragonsMaw: { - name: "りゅうのあぎと", - description: "ドラゴンタイプの 技の 威力が 上がる。", - }, - chillingNeigh: { - name: "しろのいななき", - description: "相手を 倒すと 冷たい 声で いなないて 攻撃が 上がる。", - }, - grimNeigh: { - name: "くろのいななき", - description: "相手を 倒すと 恐ろしい 声で いなないて 特攻が 上がる。", - }, - asOneGlastrier: { - name: "じんばいったい", - description: "バドレックスの きんちょうかんと ブリザポスの しろのいななきの 二つの 特性を あわせ持つ。", - }, - asOneSpectrier: { - name: "じんばいったい", - description: "バドレックスの きんちょうかんと レイスポスの くろのいななきの 二つの 特性を あわせ持つ。", - }, - lingeringAroma: { - name: "とれないにおい", - description: "直接攻撃を受けたとき、相手の特性もとれないにおいにする。", - }, - seedSower: { - name: "こぼれダネ", - description: "攻撃を 受けると グラスフィールドに する。", - }, - thermalExchange: { - name: "ねつこうかん", - description: "ほのおタイプの 技を 受けると 攻撃が 上がる。 やけど状態に ならない。", - }, - angerShell: { - name: "いかりのこうら", - description: "相手の攻撃で HPが 半分に なると 怒りで 防御と 特防が 下がるが 攻撃 特攻 素早さが 上がる。", - }, - purifyingSalt: { - name: "きよめのしお", - description: "清らかな塩で 状態異常に ならない。 ゴーストタイプの 技の ダメージを 半減させる。", - }, - wellBakedBody: { - name: "こんがりボディ", - description: "ほのおタイプの 技を 受けると ダメージを 受けずに 防御が ぐーんと 上がる。", - }, - windRider: { - name: "かぜのり", - description: "おいかぜが 吹いたり 風技を 受けると ダメージを 受けずに 攻撃が 上がる。", - }, - guardDog: { - name: "ばんけん", - description: "いかく されると 攻撃が 上がる。 ポケモンを 入れ替えさせる 技や 道具が 効かない。", - }, - rockyPayload: { - name: "いわはこび", - description: "いわタイプの 技の 威力が 上がる。", - }, - windPower: { - name: "ふうりょくでんき", - description: "風技を 受けると じゅうでん 状態に なる。", - }, - zeroToHero: { - name: "マイティチェンジ", - description: "手持ちに ひっこむと マイティフォルムに 変化する。", - }, - commander: { - name: "しれいとう", - description: "登場したとき 味方に ヘイラッシャが いると 口の中に 入って そこから 指令を だす。", - }, - electromorphosis: { - name: "でんきにかえる", - description: "ダメージを 受けると じゅうでん 状態に なる。", - }, - protosynthesis: { - name: "こだいかっせい", - description: "ブーストエナジーを 持たせるか 天気が 晴れのとき いちばん 高い能力が 上がる。", - }, - quarkDrive: { - name: "クォークチャージ", - description: "ブーストエナジーを 持たせるか エレキフィールドのとき いちばん 高い能力が 上がる。", - }, - goodAsGold: { - name: "おうごんのからだ", - description: "酸化せず 丈夫な 黄金の体は 相手からの 変化技を 受けない。", - }, - vesselOfRuin: { - name: "わざわいのうつわ", - description: "災厄を 呼ぶ 器の力で 自分以外の 特攻が 弱くなる。", - }, - swordOfRuin: { - name: "わざわいのつるぎ", - description: "災厄を 呼ぶ 剣の力で 自分以外の 防御が 弱くなる。", - }, - tabletsOfRuin: { - name: "わざわいのおふだ", - description: "災厄を 呼ぶ 木札の力で 自分以外の 攻撃が 弱くなる。", - }, - beadsOfRuin: { - name: "わざわいのたま", - description: "災厄を 呼ぶ 勾玉の力で 自分以外の 特防が 弱くなる。", - }, - orichalcumPulse: { - name: "ひひいろのこどう", - description: "登場したとき 天気を 晴れにする。 日差しが 強いと 古代の 鼓動により 攻撃が 高まる。", - }, - hadronEngine: { - name: "ハドロンエンジン", - description: "登場したとき エレキフィールドを はる。 エレキフィールドだと 未来の 機関により 特攻が 高まる。", - }, - opportunist: { - name: "びんじょう", - description: "相手の 能力が 上がったとき 自分も 便乗して 同じように 能力を 上げる。", - }, - cudChew: { - name: "はんすう", - description: "きのみを 食べると 次のターンの 終わりに 胃から 出して もう1回だけ 食べる。", - }, - sharpness: { - name: "きれあじ", - description: "相手を 切る技の 威力が 上がる。", - }, - supremeOverlord: { - name: "そうだいしょう", - description: "登場したとき 今まで 倒された 味方の 数が 多いほど 少しずつ 攻撃と 特攻が 上がる。", - }, - costar: { - name: "きょうえん", - description: "登場 したときに 味方の 能力変化を コピーする。", - }, - toxicDebris: { - name: "どくげしょう", - description: "物理技で ダメージを 受けると 相手の 足下に どくびしが ちらばる。", - }, - armorTail: { - name: "テイルアーマー", - description: "頭を包む 謎のしっぽが こちらに むかって 先制技を 出せない ようにする。", - }, - earthEater: { - name: "どしょく", - description: "じめんタイプの 技を 受けると ダメージを 受けずに 回復する。", - }, - myceliumMight: { - name: "きんしのちから", - description: "変化技を 出すとき 必ず 行動が 遅くなるが 相手の 特性に ジャマされない。", - }, - mindsEye: { - name: "しんがん", - description: "ノーマル かくとうタイプの技を ゴーストタイプに 当てることが できる。 相手の 回避率の 変化を 無視し 命中率も 下げられない。", - }, - supersweetSyrup: { - name: "かんろなミツ", - description: "最初に 登場 したとき 甘ったるい 蜜の香りを ふりまいて 相手の 回避率を 下げる。", - }, - hospitality: { - name: "おもてなし", - description: "登場したとき 味方を もてなして HPを 少しだけ 回復してあげる。", - }, - toxicChain: { - name: "どくのくさり", - description: "毒素を ふくんだ 鎖の力で 技を 当てた 相手を 猛毒の状態に することが ある。", - }, - embodyAspectTeal: { - name: "おもかげやどし", - description: "思い出を 心に 宿すことで みどりのめんを かがやかせ 自分の 素早さを 上げる。", - }, - embodyAspectWellspring: { - name: "おもかげやどし", - description: "思い出を 心に 宿すことで いどのめんを かがやかせ 自分の 特防を 上げる。", - }, - embodyAspectHearthflame: { - name: "おもかげやどし", - description: "思い出を 心に 宿すことで かまどのめんを かがやかせ 自分の 攻撃を 上げる。", - }, - embodyAspectCornerstone: { - name: "おもかげやどし", - description: "思い出を 心に 宿すことで いしずえのめんを かがやかせ 自分の 防御を 上げる。", - }, - teraShift: { - name: "テラスチェンジ", - description: "登場したとき 周囲の エネルギーを 吸収し テラスタルフォルムに 変化する。", - }, - teraShell: { - name: "テラスシェル", - description: "全タイプの力を 秘めた甲羅は HPが 満タンの ときに 受ける ダメージを すべて 今ひとつに する。", - }, - teraformZero: { - name: "ゼロフォーミング", - description: "テラパゴスが ステラフォルムに なったとき 秘められた力で 天気と フィールドの 影響を すべて ゼロにする。", - }, - poisonPuppeteer: { - name: "どくくぐつ", - description: "モモワロウの 技によって どく状態に なった 相手は こんらん状態にも なってしまう。", - }, -} as const; diff --git a/src/locales/ja/achv.json b/src/locales/ja/achv.json new file mode 100644 index 00000000000..0dc5dc8185a --- /dev/null +++ b/src/locales/ja/achv.json @@ -0,0 +1,264 @@ +{ + "Achievements": { + "name": "実績" + }, + "Locked": { + "name": "なし" + }, + "MoneyAchv": { + "description": "一回の ランで ₽{{moneyAmount}}を 稼ぐ" + }, + "10K_MONEY": { + "name": "お金を持つ人" + }, + "100K_MONEY": { + "name": "富豪" + }, + "1M_MONEY": { + "name": "百万長者" + }, + "10M_MONEY": { + "name": "超富裕層" + }, + "DamageAchv": { + "description": "一撃で {{damageAmount}}ダメージを 与える" + }, + "250_DMG": { + "name": "力持ち" + }, + "1000_DMG": { + "name": "強者" + }, + "2500_DMG": { + "name": "カカロット" + }, + "10000_DMG": { + "name": "ワンパンマン" + }, + "HealAchv": { + "description": "一つの 技や 特性や 持っているアイテムで {{healAmount}}{{HP}}を 一気に 回復する" + }, + "250_HEAL": { + "name": "回復発見者" + }, + "1000_HEAL": { + "name": "大いなる治療者" + }, + "2500_HEAL": { + "name": "回復達人" + }, + "10000_HEAL": { + "name": "ジョーイさん" + }, + "LevelAchv": { + "description": "一つの ポケモンを Lv{{level}}まで レベルアップする" + }, + "LV_100": { + "name": "まだまだだよ" + }, + "LV_250": { + "name": "天王" + }, + "LV_1000": { + "name": "向こうの向こうを超え" + }, + "RibbonAchv": { + "description": "{{ribbonAmount}}巻の リボンを 積もる" + }, + "10_RIBBONS": { + "name": "ポケモンリーグチャンピオン" + }, + "25_RIBBONS": { + "name": "スーパーリーグチャンピオン" + }, + "50_RIBBONS": { + "name": "ハイパーリーグチャンピオン" + }, + "75_RIBBONS": { + "name": "ローグリーグチャンピオン" + }, + "100_RIBBONS": { + "name": "マスターリーグチャンピオン" + }, + "TRANSFER_MAX_BATTLE_STAT": { + "name": "同力", + "description": "少なくとも 一つの 能力を 最大まで あげて 他の 手持ちポケモンに バトンタッチする" + }, + "MAX_FRIENDSHIP": { + "name": "マブ達", + "description": "一つの 手持ちポケモンの 仲良し度を 最大に 上げる" + }, + "MEGA_EVOLVE": { + "name": "ザ・アブソリュート", + "description": "一つの 手持ちポケモンを メガシンカさせる" + }, + "GIGANTAMAX": { + "name": "太―くて 堪らない", + "description": "一つの 手持ちポケモンを キョダイマックスさせる" + }, + "TERASTALLIZE": { + "name": "一致好き", + "description": "一つの 手持ちポケモンを テラスタルさせる" + }, + "STELLAR_TERASTALLIZE": { + "name": "隠れたタイプ", + "description": "一つの 手持ちポケモンを ステラ・テラスタルさせる" + }, + "SPLICE": { + "name": "インフィニット・フュジョン", + "description": "いでんしのくさびで 二つの ポケモンを 吸収合体させる" + }, + "MINI_BLACK_HOLE": { + "name": "アイテムホーリック", + "description": "ミニブラックホールを 手に入れる" + }, + "CATCH_MYTHICAL": { + "name": "幻", + "description": "幻の ポケモンを 捕まえる" + }, + "CATCH_SUB_LEGENDARY": { + "name": "準・伝説", + "description": "準伝説の ポケモンを 捕まえる" + }, + "CATCH_LEGENDARY": { + "name": "ザ・伝説", + "description": "伝説の ポケモンを 捕まえる" + }, + "SEE_SHINY": { + "name": "色とりどりに光る", + "description": "野生の 色違いポケモンを みつける" + }, + "SHINY_PARTY": { + "name": "きらきら努力家", + "description": "手持ちポケモンは 全員 色違いポケモンに する" + }, + "HATCH_MYTHICAL": { + "name": "幻のタマゴ", + "description": "幻の ポケモンを タマゴから 生まれる" + }, + "HATCH_SUB_LEGENDARY": { + "name": "準伝説のタマゴ", + "description": "準伝説の ポケモンを タマゴから 生まれる" + }, + "HATCH_LEGENDARY": { + "name": "伝説のタマゴ", + "description": "伝説の ポケモンを タマゴから 生まれる" + }, + "HATCH_SHINY": { + "name": "色違いタマゴ", + "description": "色違いポケモンを タマゴから 生まれる" + }, + "HIDDEN_ABILITY": { + "name": "底力", + "description": "隠れ特性がある ポケモンを 捕まえる" + }, + "PERFECT_IVS": { + "name": "個体値の賞状", + "description": "一つの ポケモンの 個体値を すべて 最大に する" + }, + "CLASSIC_VICTORY": { + "name": "無双", + "description": "クラシックモードを クリアする" + }, + "UNEVOLVED_CLASSIC_VICTORY": { + "name": "Bring Your Child To Work Day", + "description": "Beat the game in Classic Mode with at least one unevolved party member." + }, + "MONO_GEN_ONE": { + "name": "原始", + "description": "1世代の 単一世代チャレンジを クリアする" + }, + "MONO_GEN_TWO": { + "name": "懐かしいカンジョウ", + "description": "2世代の 単一世代チャレンジを クリアする" + }, + "MONO_GEN_THREE": { + "name": "水浸し", + "description": "3世代の 単一世代チャレンジを クリアする" + }, + "MONO_GEN_FOUR": { + "name": "神々の地", + "description": "4世代の 単一世代チャレンジを クリアする" + }, + "MONO_GEN_FIVE": { + "name": "ニューヨーカー", + "description": "5世代の 単一世代チャレンジを クリアする" + }, + "MONO_GEN_SIX": { + "name": "サヴァ・サヴァ", + "description": "6世代の 単一世代チャレンジを クリアする" + }, + "MONO_GEN_SEVEN": { + "name": "アローラ・オエ", + "description": "7世代の 単一世代チャレンジを クリアする" + }, + "MONO_GEN_EIGHT": { + "name": "チャンピオン タイムを 楽しめ!", + "description": "8世代の 単一世代チャレンジを クリアする" + }, + "MONO_GEN_NINE": { + "name": "ネモに甘えたでしょう", + "description": "9世代の 単一世代チャレンジを クリアする" + }, + "MonoType": { + "description": "{{type}}タイプの 単一タイプチャレンジを クリアする" + }, + "MONO_NORMAL": { + "name": "凡人" + }, + "MONO_FIGHTING": { + "name": "八千以上だ!!" + }, + "MONO_FLYING": { + "name": "翼をください" + }, + "MONO_POISON": { + "name": "カントーの名物" + }, + "MONO_GROUND": { + "name": "自信でユラユラ" + }, + "MONO_ROCK": { + "name": "タケシの挑戦状" + }, + "MONO_BUG": { + "name": "チョウチョウせん者" + }, + "MONO_GHOST": { + "name": "貞子ちゃん" + }, + "MONO_STEEL": { + "name": "ハガネーター" + }, + "MONO_FIRE": { + "name": "NIGHT OF FIRE" + }, + "MONO_WATER": { + "name": "土砂降リスト" + }, + "MONO_GRASS": { + "name": "www" + }, + "MONO_ELECTRIC": { + "name": "パチピカペコ" + }, + "MONO_PSYCHIC": { + "name": "陽キャ" + }, + "MONO_ICE": { + "name": "ありのまま" + }, + "MONO_DRAGON": { + "name": "龍が如く" + }, + "MONO_DARK": { + "name": "陰キャ" + }, + "MONO_FAIRY": { + "name": "あらハート満タンになった" + }, + "FRESH_START": { + "name": "一発で!", + "description": "出直しチャレンジを クリアする" + } +} \ No newline at end of file diff --git a/src/locales/ja/achv.ts b/src/locales/ja/achv.ts deleted file mode 100644 index 9693a16cdc0..00000000000 --- a/src/locales/ja/achv.ts +++ /dev/null @@ -1,278 +0,0 @@ -import { AchievementTranslationEntries } from "#app/interfaces/locales.js"; - -// Achievement translations for the when the player character is male -export const PGMachv: AchievementTranslationEntries = { - "Achievements": { - name: "実績", - }, - "Locked": { - name: "なし", - }, - - "MoneyAchv": { - description: "一回の ランで ₽{{moneyAmount}}を 稼ぐ", - }, - "10K_MONEY": { - name: "お金を持つ人", - }, - "100K_MONEY": { - name: "富豪", - }, - "1M_MONEY": { - name: "百万長者", - }, - "10M_MONEY": { - name: "超富裕層", - }, - - "DamageAchv": { - description: "一撃で {{damageAmount}}ダメージを 与える", - }, - "250_DMG": { - name: "力持ち", - }, - "1000_DMG": { - name: "強者", - }, - "2500_DMG": { - name: "カカロット", - }, - "10000_DMG": { - name: "ワンパンマン", - }, - - "HealAchv": { - description: "一つの 技や 特性や 持っているアイテムで {{healAmount}}{{HP}}を 一気に 回復する", - }, - "250_HEAL": { - name: "回復発見者", - }, - "1000_HEAL": { - name: "大いなる治療者", - }, - "2500_HEAL": { - name: "回復達人", - }, - "10000_HEAL": { - name: "ジョーイさん", - }, - - "LevelAchv": { - description: "一つの ポケモンを Lv{{level}}まで レベルアップする", - }, - "LV_100": { - name: "まだまだだよ", - }, - "LV_250": { - name: "天王", - }, - "LV_1000": { - name: "向こうの向こうを超え", - }, - - "RibbonAchv": { - description: "{{ribbonAmount}}巻の リボンを 積もる", - }, - "10_RIBBONS": { - name: "ポケモンリーグチャンピオン", - }, - "25_RIBBONS": { - name: "スーパーリーグチャンピオン", - }, - "50_RIBBONS": { - name: "ハイパーリーグチャンピオン", - }, - "75_RIBBONS": { - name: "ローグリーグチャンピオン", - }, - "100_RIBBONS": { - name: "マスターリーグチャンピオン", - }, - - "TRANSFER_MAX_BATTLE_STAT": { - name: "同力", - description: "少なくとも 一つの 能力を 最大まで あげて 他の 手持ちポケモンに バトンタッチする", - }, - "MAX_FRIENDSHIP": { - name: "マブ達", - description: "一つの 手持ちポケモンの 仲良し度を 最大に 上げる", - }, - "MEGA_EVOLVE": { - name: "ザ・アブソリュート", - description: "一つの 手持ちポケモンを メガシンカさせる", - }, - "GIGANTAMAX": { - name: "太―くて 堪らない", - description: "一つの 手持ちポケモンを キョダイマックスさせる", - }, - "TERASTALLIZE": { - name: "一致好き", - description: "一つの 手持ちポケモンを テラスタルさせる", - }, - "STELLAR_TERASTALLIZE": { - name: "隠れたタイプ", - description: "一つの 手持ちポケモンを ステラ・テラスタルさせる", - }, - "SPLICE": { - name: "インフィニット・フュジョン", - description: "いでんしのくさびで 二つの ポケモンを 吸収合体させる", - }, - "MINI_BLACK_HOLE": { - name: "アイテムホーリック", - description: "ミニブラックホールを 手に入れる", - }, - "CATCH_MYTHICAL": { - name: "幻", - description: "幻の ポケモンを 捕まえる", - }, - "CATCH_SUB_LEGENDARY": { - name: "準・伝説", - description: "準伝説の ポケモンを 捕まえる", - }, - "CATCH_LEGENDARY": { - name: "ザ・伝説", - description: "伝説の ポケモンを 捕まえる", - }, - "SEE_SHINY": { - name: "色とりどりに光る", - description: "野生の 色違いポケモンを みつける", - }, - "SHINY_PARTY": { - name: "きらきら努力家", - description: "手持ちポケモンは 全員 色違いポケモンに する", - }, - "HATCH_MYTHICAL": { - name: "幻のタマゴ", - description: "幻の ポケモンを タマゴから 生まれる", - }, - "HATCH_SUB_LEGENDARY": { - name: "準伝説のタマゴ", - description: "準伝説の ポケモンを タマゴから 生まれる", - }, - "HATCH_LEGENDARY": { - name: "伝説のタマゴ", - description: "伝説の ポケモンを タマゴから 生まれる", - }, - "HATCH_SHINY": { - name: "色違いタマゴ", - description: "色違いポケモンを タマゴから 生まれる", - }, - "HIDDEN_ABILITY": { - name: "底力", - description: "隠れ特性がある ポケモンを 捕まえる", - }, - "PERFECT_IVS": { - name: "個体値の賞状", - description: "一つの ポケモンの 個体値を すべて 最大に する", - }, - "CLASSIC_VICTORY": { - name: "無双", - description: "クラシックモードを クリアする", - }, - "UNEVOLVED_CLASSIC_VICTORY": { - name: "Bring Your Child To Work Day", - description: "Beat the game in Classic Mode with at least one unevolved party member." - }, - - "MONO_GEN_ONE": { - name: "原始", - description: "1世代の 単一世代チャレンジを クリアする", - }, - "MONO_GEN_TWO": { - name: "懐かしいカンジョウ", - description: "2世代の 単一世代チャレンジを クリアする", - }, - "MONO_GEN_THREE": { - name: "水浸し", - description: "3世代の 単一世代チャレンジを クリアする", - }, - "MONO_GEN_FOUR": { - name: "神々の地", - description: "4世代の 単一世代チャレンジを クリアする", - }, - "MONO_GEN_FIVE": { - name: "ニューヨーカー", - description: "5世代の 単一世代チャレンジを クリアする", - }, - "MONO_GEN_SIX": { - name: "サヴァ・サヴァ", - description: "6世代の 単一世代チャレンジを クリアする", - }, - "MONO_GEN_SEVEN": { - name: "アローラ・オエ", - description: "7世代の 単一世代チャレンジを クリアする", - }, - "MONO_GEN_EIGHT": { - name: "チャンピオン タイムを 楽しめ!", - description: "8世代の 単一世代チャレンジを クリアする", - }, - "MONO_GEN_NINE": { - name: "ネモに甘えたでしょう", - description: "9世代の 単一世代チャレンジを クリアする", - }, - - "MonoType": { - description: "{{type}}タイプの 単一タイプチャレンジを クリアする", - }, - "MONO_NORMAL": { - name: "凡人", - }, - "MONO_FIGHTING": { - name: "八千以上だ!!", - }, - "MONO_FLYING": { - name: "翼をください", - }, - "MONO_POISON": { - name: "カントーの名物", - }, - "MONO_GROUND": { - name: "自信でユラユラ", - }, - "MONO_ROCK": { - name: "タケシの挑戦状", - }, - "MONO_BUG": { - name: "チョウチョウせん者", - }, - "MONO_GHOST": { - name: "貞子ちゃん", - }, - "MONO_STEEL": { - name: "ハガネーター", - }, - "MONO_FIRE": { - name: "NIGHT OF FIRE", - }, - "MONO_WATER": { - name: "土砂降リスト", - }, - "MONO_GRASS": { - name: "www", - }, - "MONO_ELECTRIC": { - name: "パチピカペコ", - }, - "MONO_PSYCHIC": { - name: "陽キャ", - }, - "MONO_ICE": { - name: "ありのまま", - }, - "MONO_DRAGON": { - name: "龍が如く", - }, - "MONO_DARK": { - name: "陰キャ", - }, - "MONO_FAIRY": { - name: "あらハート満タンになった", - }, - "FRESH_START": { - name: "一発で!", - description: "出直しチャレンジを クリアする" - } -} as const; - -// Achievement translations for the when the player character is female (it for now uses the same translations as the male version) -export const PGFachv: AchievementTranslationEntries = PGMachv; diff --git a/src/locales/ja/arena-flyout.json b/src/locales/ja/arena-flyout.json new file mode 100644 index 00000000000..9e26dfeeb6e --- /dev/null +++ b/src/locales/ja/arena-flyout.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/src/locales/ja/arena-flyout.ts b/src/locales/ja/arena-flyout.ts deleted file mode 100644 index 8a31d37b10c..00000000000 --- a/src/locales/ja/arena-flyout.ts +++ /dev/null @@ -1,49 +0,0 @@ -import { SimpleTranslationEntries } from "#app/interfaces/locales"; - -export const arenaFlyout: SimpleTranslationEntries = { - // Title - "activeBattleEffects": "Active Battle Effects", - "player": "Player", - "neutral": "Neutral", - "enemy": "Enemy", - - // WeatherType - "sunny": "Sunny", - "rain": "Rain", - "sandstorm": "Sandstorm", - "hail": "Hail", - "snow": "Snow", - "fog": "Fog", - "heavyRain": "Heavy Rain", - "harshSun": "Harsh Sun", - "strongWinds": "Strong Winds", - - // TerrainType - "misty": "Misty Terrain", - "electric": "Electric Terrain", - "grassy": "Grassy Terrain", - "psychic": "Psychic Terrain", - - // ArenaTagType - "mudSport": "Mud Sport", - "waterSport": "Water Sport", - "spikes": "Spikes", - "toxicSpikes": "Toxic Spikes", - "mist": "Mist", - "futureSight": "Future Sight", - "doomDesire": "Doom Desire", - "wish": "Wish", - "stealthRock": "Stealth Rock", - "stickyWeb": "Sticky Web", - "trickRoom": "Trick Room", - "gravity": "Gravity", - "reflect": "Reflect", - "lightScreen": "Light Screen", - "auroraVeil": "Aurora Veil", - "quickGuard": "Quick Guard", - "wideGuard": "Wide Guard", - "matBlock": "Mat Block", - "craftyShield": "Crafty Shield", - "tailwind": "Tailwind", - "happyHour": "Happy Hour", -}; diff --git a/src/locales/ja/arena-tag.ts b/src/locales/ja/arena-tag.json similarity index 96% rename from src/locales/ja/arena-tag.ts rename to src/locales/ja/arena-tag.json index fc86ddec886..56be30d8d55 100644 --- a/src/locales/ja/arena-tag.ts +++ b/src/locales/ja/arena-tag.json @@ -1,6 +1,4 @@ -import { SimpleTranslationEntries } from "#app/interfaces/locales"; - -export const arenaTag: SimpleTranslationEntries = { +{ "yourTeam": "味方", "opposingTeam": "相手", "arenaOnRemove": "{{moveName}}の 効果が 切れた", @@ -49,5 +47,5 @@ export const arenaTag: SimpleTranslationEntries = { "tailwindOnRemovePlayer": "味方の 追い風が 止んだ!", "tailwindOnRemoveEnemy": "相手の 追い風が 止んだ!", "happyHourOnAdd": "みんなが ハッピーな気分に\n包まれた!", - "happyHourOnRemove": "みんなの 気分が 元に戻った", -} as const; + "happyHourOnRemove": "みんなの 気分が 元に戻った" +} \ No newline at end of file diff --git a/src/locales/ja/battle-info.json b/src/locales/ja/battle-info.json new file mode 100644 index 00000000000..2959cdda332 --- /dev/null +++ b/src/locales/ja/battle-info.json @@ -0,0 +1,3 @@ +{ + "generation": "{{generation}}世代" +} diff --git a/src/locales/ja/battle-info.ts b/src/locales/ja/battle-info.ts deleted file mode 100644 index f24dad46c6c..00000000000 --- a/src/locales/ja/battle-info.ts +++ /dev/null @@ -1,5 +0,0 @@ -import { SimpleTranslationEntries } from "#app/interfaces/locales"; - -export const battleInfo: SimpleTranslationEntries = { - "generation": "Generation {{generation}}", -} as const; diff --git a/src/locales/ja/battle-message-ui-handler.json b/src/locales/ja/battle-message-ui-handler.json new file mode 100644 index 00000000000..126d1abf26e --- /dev/null +++ b/src/locales/ja/battle-message-ui-handler.json @@ -0,0 +1,8 @@ +{ + "ivBest": "さいこう", + "ivFantastic": "すばらしい", + "ivVeryGood": "すごくいい", + "ivPrettyGood": "かなりいい", + "ivDecent": "まぁまぁ", + "ivNoGood": "ダメかも" +} \ No newline at end of file diff --git a/src/locales/ja/battle-message-ui-handler.ts b/src/locales/ja/battle-message-ui-handler.ts deleted file mode 100644 index 9e306d3b36b..00000000000 --- a/src/locales/ja/battle-message-ui-handler.ts +++ /dev/null @@ -1,10 +0,0 @@ -import { SimpleTranslationEntries } from "#app/interfaces/locales"; - -export const battleMessageUiHandler: SimpleTranslationEntries = { - "ivBest": "さいこう", - "ivFantastic": "すばらしい", - "ivVeryGood": "すごくいい", - "ivPrettyGood": "かなりいい", - "ivDecent": "まぁまぁ", - "ivNoGood": "ダメかも", -} as const; diff --git a/src/locales/ja/battle-scene.json b/src/locales/ja/battle-scene.json new file mode 100644 index 00000000000..426b6910564 --- /dev/null +++ b/src/locales/ja/battle-scene.json @@ -0,0 +1,3 @@ +{ + "moneyOwned": "{{formattedMoney}}円" +} \ No newline at end of file diff --git a/src/locales/ja/battle.ts b/src/locales/ja/battle.json similarity index 97% rename from src/locales/ja/battle.ts rename to src/locales/ja/battle.json index 926e2d9b0e4..f3f1d134d16 100644 --- a/src/locales/ja/battle.ts +++ b/src/locales/ja/battle.json @@ -1,6 +1,4 @@ -import { SimpleTranslationEntries } from "#app/interfaces/locales"; - -export const battle: SimpleTranslationEntries = { +{ "bossAppeared": "{{bossName}}が 現れた!", "trainerAppeared": "{{trainerName}}が\n勝負を しかけてきた!", "trainerAppearedDouble": "{{trainerName}}が\n勝負を しかけてきた!", @@ -24,6 +22,7 @@ export const battle: SimpleTranslationEntries = { "hitResultSuperEffective": "効果は バツグンだ!", "hitResultNotVeryEffective": "効果は 今ひとつの ようだ……", "hitResultNoEffect": "{{pokemonName}}には 効果が ないようだ…", + "hitResultImmune": "{{pokemonName}}には\n全然 効いてない!", "hitResultOneHitKO": "一撃必殺!", "attackFailed": "しかし うまく 決まらなかった!!", "attackMissed": "{{pokemonNameWithAffix}}には 当たらなかった!", @@ -39,7 +38,7 @@ export const battle: SimpleTranslationEntries = { "learnMoveNotLearned": "{{pokemonName}}は {{moveName}}を\n覚えずに 終わった!", "learnMoveForgetQuestion": "どの 技を\n忘れさせたい?", "learnMoveForgetSuccess": "{{pokemonName}}は {{moveName}}の\n使い方を きれいに 忘れた!", - "countdownPoof": "@d{32}1 @d{15}2の @d{15}… @d{15}… @d{15}… @d{15}@s{pb_bounce_1}ポカン!", + "countdownPoof": "@d{32}1 @d{15}2の @d{15}… @d{15}… @d{15}… @d{15}@s{se/pb_bounce_1}ポカン!", "learnMoveAnd": "そして…", "levelCapUp": "レベルキャップの\n{{levelCap}}に 上がった!", "moveNotImplemented": "{{moveName}}は まだ 実装されておらず 選択できません。", @@ -95,5 +94,5 @@ export const battle: SimpleTranslationEntries = { "unlockedSomething": "{{unlockedThing}}\nを アンロックした!", "congratulations": "おめでとうございます!!", "beatModeFirstTime": "初めて {{speciesName}}が {{gameMode}}モードを クリアした!\n{{newModifier}}を 手に入れた!", - "ppReduced": "{{targetName}}の {{moveName}}を {{reduction}}削った!", -} as const; + "ppReduced": "{{targetName}}の {{moveName}}を {{reduction}}削った!" +} \ No newline at end of file diff --git a/src/locales/ja/battler-tags.ts b/src/locales/ja/battler-tags.json similarity index 93% rename from src/locales/ja/battler-tags.ts rename to src/locales/ja/battler-tags.json index 38a37f0f715..beef485ffd2 100644 --- a/src/locales/ja/battler-tags.ts +++ b/src/locales/ja/battler-tags.json @@ -1,14 +1,4 @@ -import { SimpleTranslationEntries } from "#app/interfaces/locales"; - -export const battlerTags: SimpleTranslationEntries = { - "trappedDesc": "trapping", - "flinchedDesc": "flinching", - "confusedDesc": "confusion", - "infatuatedDesc": "infatuation", - "seedDesc": "seeding", - "nightmareDesc": "nightmares", - "ingrainDesc": "roots", - "drowsyDesc": "drowsiness", +{ "rechargingLapse": "{{pokemonNameWithAffix}}は 攻撃の 反動で 動けない!", "trappedOnAdd": "{{pokemonNameWithAffix}}は もう 逃げられない!", "trappedOnRemove": "{{pokemonNameWithAffix}}は\n{{moveName}}の 効果が 解けた!", @@ -69,5 +59,5 @@ export const battlerTags: SimpleTranslationEntries = { "saltCuredLapse": "{{pokemonNameWithAffix}}は {{moveName}}の\n ダメージを 受けている", "cursedOnAdd": "{{pokemonNameWithAffix}}は 自分の 体力を 削って\n{{pokemonName}}に のろいを かけた!", "cursedLapse": "{{pokemonNameWithAffix}}は のろわれている!", - "stockpilingOnAdd": "{{pokemonNameWithAffix}}は {{stockpiledCount}}つ たくわえた!", -} as const; + "stockpilingOnAdd": "{{pokemonNameWithAffix}}は {{stockpiledCount}}つ たくわえた!" +} \ No newline at end of file diff --git a/src/locales/ja/berry.json b/src/locales/ja/berry.json new file mode 100644 index 00000000000..641901583b2 --- /dev/null +++ b/src/locales/ja/berry.json @@ -0,0 +1,46 @@ +{ + "SITRUS": { + "name": "オボンのみ", + "effect": "HP 50%いかのとき HPを 25パーセント かいふくする" + }, + "LUM": { + "name": "ラムのみ", + "effect": "すべての じょうたい いじょうと こんらんを かいふくする" + }, + "ENIGMA": { + "name": "ナゾのみ", + "effect": "こうかばつぐんの わざを うけたとき HPを 25パーセント かいふくする" + }, + "LIECHI": { + "name": "チイラのみ", + "effect": "HP 25%いかのとき こうげきが あがる" + }, + "GANLON": { + "name": "リュガのみ", + "effect": "HP 25%いかのとき ぼうぎょが あがる" + }, + "PETAYA": { + "name": "ヤタピのみ", + "effect": "HP 25%いかのとき とくこうが あがる" + }, + "APICOT": { + "name": "ズアのみ", + "effect": "HP 25%いかのとき とくぼうが あがる" + }, + "SALAC": { + "name": "カムラのみ", + "effect": "HP 25%いかのとき すばやさが あがる" + }, + "LANSAT": { + "name": "サンのみ", + "effect": "HP 25%いかのとき こうげきが きゅうしょに あたりやすくなる" + }, + "STARF": { + "name": "スターのみ", + "effect": "HP 25%いかのとき のうりょくの どれか 1つが ぐーんと あがる" + }, + "LEPPA": { + "name": "ヒメリのみ", + "effect": "PPが 0に なった わざの PPを 10だけ かいふくする" + } +} \ No newline at end of file diff --git a/src/locales/ja/berry.ts b/src/locales/ja/berry.ts deleted file mode 100644 index 16608a14cca..00000000000 --- a/src/locales/ja/berry.ts +++ /dev/null @@ -1,48 +0,0 @@ -import { BerryTranslationEntries } from "#app/interfaces/locales"; - -export const berry: BerryTranslationEntries = { - "SITRUS": { - name: "オボンのみ", - effect: "HP 50%いかのとき HPを 25パーセント かいふくする", - }, - "LUM": { - name: "ラムのみ", - effect: "すべての じょうたい いじょうと こんらんを かいふくする", - }, - "ENIGMA": { - name: "ナゾのみ", - effect: "こうかばつぐんの わざを うけたとき HPを 25パーセント かいふくする", - }, - "LIECHI": { - name: "チイラのみ", - effect: "HP 25%いかのとき こうげきが あがる", - }, - "GANLON": { - name: "リュガのみ", - effect: "HP 25%いかのとき ぼうぎょが あがる", - }, - "PETAYA": { - name: "ヤタピのみ", - effect: "HP 25%いかのとき とくこうが あがる", - }, - "APICOT": { - name: "ズアのみ", - effect: "HP 25%いかのとき とくぼうが あがる", - }, - "SALAC": { - name: "カムラのみ", - effect: "HP 25%いかのとき すばやさが あがる", - }, - "LANSAT": { - name: "サンのみ", - effect: "HP 25%いかのとき こうげきが きゅうしょに あたりやすくなる", - }, - "STARF": { - name: "スターのみ", - effect: "HP 25%いかのとき のうりょくの どれか 1つが ぐーんと あがる", - }, - "LEPPA": { - name: "ヒメリのみ", - effect: "PPが 0に なった わざの PPを 10だけ かいふくする", - }, -} as const; diff --git a/src/locales/ja/bgm-name.json b/src/locales/ja/bgm-name.json new file mode 100644 index 00000000000..9e26dfeeb6e --- /dev/null +++ b/src/locales/ja/bgm-name.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/src/locales/ja/bgm-name.ts b/src/locales/ja/bgm-name.ts deleted file mode 100644 index 01fb86b281d..00000000000 --- a/src/locales/ja/bgm-name.ts +++ /dev/null @@ -1,145 +0,0 @@ -import { SimpleTranslationEntries } from "#app/interfaces/locales"; - -export const bgmName: SimpleTranslationEntries = { - "music": "Music: ", - "missing_entries" : "{{name}}", - "battle_kanto_champion": "B2W2 Kanto Champion Battle", - "battle_johto_champion": "B2W2 Johto Champion Battle", - "battle_hoenn_champion": "B2W2 Hoenn Champion Battle", - "battle_sinnoh_champion": "B2W2 Sinnoh Champion Battle", - "battle_champion_alder": "BW Unova Champion Battle", - "battle_champion_iris": "B2W2 Unova Champion Battle", - "battle_kalos_champion": "XY Kalos Champion Battle", - "battle_alola_champion": "USUM Alola Champion Battle", - "battle_galar_champion": "SWSH Galar Champion Battle", - "battle_champion_geeta": "SV Champion Geeta Battle", - "battle_champion_nemona": "SV Champion Nemona Battle", - "battle_champion_kieran": "SV Champion Kieran Battle", - "battle_hoenn_elite": "ORAS Elite Four Battle", - "battle_unova_elite": "BW Elite Four Battle", - "battle_kalos_elite": "XY Elite Four Battle", - "battle_alola_elite": "SM Elite Four Battle", - "battle_galar_elite": "SWSH League Tournament Battle", - "battle_paldea_elite": "SV Elite Four Battle", - "battle_bb_elite": "SV BB League Elite Four Battle", - "battle_final_encounter": "PMD RTDX Rayquaza's Domain", - "battle_final": "BW Ghetsis Battle", - "battle_kanto_gym": "B2W2 Kanto Gym Battle", - "battle_johto_gym": "B2W2 Johto Gym Battle", - "battle_hoenn_gym": "B2W2 Hoenn Gym Battle", - "battle_sinnoh_gym": "B2W2 Sinnoh Gym Battle", - "battle_unova_gym": "BW Unova Gym Battle", - "battle_kalos_gym": "XY Kalos Gym Battle", - "battle_galar_gym": "SWSH Galar Gym Battle", - "battle_paldea_gym": "SV Paldea Gym Battle", - "battle_legendary_kanto": "XY Kanto Legendary Battle", - "battle_legendary_raikou": "HGSS Raikou Battle", - "battle_legendary_entei": "HGSS Entei Battle", - "battle_legendary_suicune": "HGSS Suicune Battle", - "battle_legendary_lugia": "HGSS Lugia Battle", - "battle_legendary_ho_oh": "HGSS Ho-oh Battle", - "battle_legendary_regis_g5": "B2W2 Legendary Titan Battle", - "battle_legendary_regis_g6": "ORAS Legendary Titan Battle", - "battle_legendary_gro_kyo": "ORAS Groudon & Kyogre Battle", - "battle_legendary_rayquaza": "ORAS Rayquaza Battle", - "battle_legendary_deoxys": "ORAS Deoxys Battle", - "battle_legendary_lake_trio": "ORAS Lake Guardians Battle", - "battle_legendary_sinnoh": "ORAS Sinnoh Legendary Battle", - "battle_legendary_dia_pal": "ORAS Dialga & Palkia Battle", - "battle_legendary_giratina": "ORAS Giratina Battle", - "battle_legendary_arceus": "HGSS Arceus Battle", - "battle_legendary_unova": "BW Unova Legendary Battle", - "battle_legendary_kyurem": "BW Kyurem Battle", - "battle_legendary_res_zek": "BW Reshiram & Zekrom Battle", - "battle_legendary_xern_yvel": "XY Xerneas & Yveltal Battle", - "battle_legendary_tapu": "SM Tapu Battle", - "battle_legendary_sol_lun": "SM Solgaleo & Lunala Battle", - "battle_legendary_ub": "SM Ultra Beast Battle", - "battle_legendary_dusk_dawn": "USUM Dusk Mane & Dawn Wings Necrozma Battle", - "battle_legendary_ultra_nec": "USUM Ultra Necrozma Battle", - "battle_legendary_zac_zam": "SWSH Zacian & Zamazenta Battle", - "battle_legendary_glas_spec": "SWSH Glastrier & Spectrier Battle", - "battle_legendary_calyrex": "SWSH Calyrex Battle", - "battle_legendary_birds_galar": "SWSH Galarian Legendary Birds Battle", - "battle_legendary_ruinous": "SV Treasures of Ruin Battle", - "battle_legendary_kor_mir": "SV Depths of Area Zero Battle", - "battle_legendary_loyal_three": "SV Loyal Three Battle", - "battle_legendary_ogerpon": "SV Ogerpon Battle", - "battle_legendary_terapagos": "SV Terapagos Battle", - "battle_legendary_pecharunt": "SV Pecharunt Battle", - "battle_rival": "BW Rival Battle", - "battle_rival_2": "BW N Battle", - "battle_rival_3": "BW Final N Battle", - "battle_trainer": "BW Trainer Battle", - "battle_wild": "BW Wild Battle", - "battle_wild_strong": "BW Strong Wild Battle", - "end_summit": "PMD RTDX Sky Tower Summit", - "battle_rocket_grunt": "HGSS Team Rocket Battle", - "battle_aqua_magma_grunt": "ORAS Team Aqua & Magma Battle", - "battle_galactic_grunt": "BDSP Team Galactic Battle", - "battle_plasma_grunt": "BW Team Plasma Battle", - "battle_flare_grunt": "XY Team Flare Battle", - "battle_rocket_boss": "USUM Giovanni Battle", - "battle_aqua_magma_boss": "ORAS Archie & Maxie Battle", - "battle_galactic_boss": "BDSP Cyrus Battle", - "battle_plasma_boss": "B2W2 Ghetsis Battle", - "battle_flare_boss": "XY Lysandre Battle", - - // Biome Music - "abyss": "PMD EoS Dark Crater", - "badlands": "PMD EoS Barren Valley", - "beach": "PMD EoS Drenched Bluff", - "cave": "PMD EoS Sky Peak Cave", - "construction_site": "PMD EoS Boulder Quarry", - "desert": "PMD EoS Northern Desert", - "dojo": "PMD EoS Marowak Dojo", - "end": "PMD RTDX Sky Tower", - "factory": "PMD EoS Concealed Ruins", - "fairy_cave": "PMD EoS Star Cave", - "forest": "PMD EoS Dusk Forest", - "grass": "PMD EoS Apple Woods", - "graveyard": "PMD EoS Mystifying Forest", - "ice_cave": "PMD EoS Vast Ice Mountain", - "island": "PMD EoS Craggy Coast", - "jungle": "Lmz - Jungle", // The composer thinks about a more creative name - "laboratory": "Firel - Laboratory", // The composer thinks about a more creative name - "lake": "PMD EoS Crystal Cave", - "meadow": "PMD EoS Sky Peak Forest", - "metropolis": "Firel - Metropolis", // The composer thinks about a more creative name - "mountain": "PMD EoS Mt. Horn", - "plains": "PMD EoS Sky Peak Prairie", - "power_plant": "PMD EoS Far Amp Plains", - "ruins": "PMD EoS Deep Sealed Ruin", - "sea": "Andr06 - Marine Mystique", // Name defined by the composer - "seabed": "Firel - Seabed", // The composer thinks about a more creative name - "slum": "Andr06 - Sneaky Snom", // Name defined by the composer - "snowy_forest": "PMD EoS Sky Peak Snowfield", - "space": "Firel - Aether", - "swamp": "PMD EoS Surrounded Sea", - "tall_grass": "PMD EoS Foggy Forest", - "temple": "PMD EoS Aegis Cave", - "town": "PMD EoS Random Dungeon Theme 3", - "volcano": "PMD EoS Steam Cave", - "wasteland": "PMD EoS Hidden Highland", - - // Encounter - "encounter_ace_trainer": "BW Trainers' Eyes Meet (Ace Trainer)", - "encounter_backpacker": "BW Trainers' Eyes Meet (Backpacker)", - "encounter_clerk": "BW Trainers' Eyes Meet (Clerk)", - "encounter_cyclist": "BW Trainers' Eyes Meet (Cyclist)", - "encounter_lass": "BW Trainers' Eyes Meet (Lass)", - "encounter_parasol_lady": "BW Trainers' Eyes Meet (Parasol Lady)", - "encounter_pokefan": "BW Trainers' Eyes Meet (Poke Fan)", - "encounter_psychic": "BW Trainers' Eyes Meet (Psychic)", - "encounter_rich": "BW Trainers' Eyes Meet (Gentleman)", - "encounter_rival": "BW Cheren", - "encounter_roughneck": "BW Trainers' Eyes Meet (Roughneck)", - "encounter_scientist": "BW Trainers' Eyes Meet (Scientist)", - "encounter_twins": "BW Trainers' Eyes Meet (Twins)", - "encounter_youngster": "BW Trainers' Eyes Meet (Youngster)", - - // Other - "heal": "BW Pokémon Heal", - "menu": "PMD EoS Welcome to the World of Pokémon!", - "title": "PMD EoS Top Menu Theme", -} as const; diff --git a/src/locales/ja/biome.ts b/src/locales/ja/biome.json similarity index 85% rename from src/locales/ja/biome.ts rename to src/locales/ja/biome.json index 4551e779c74..b94810649d4 100644 --- a/src/locales/ja/biome.ts +++ b/src/locales/ja/biome.json @@ -1,6 +1,4 @@ -import { SimpleTranslationEntries } from "#app/interfaces/locales"; - -export const biome: SimpleTranslationEntries = { +{ "unknownLocation": "覚えていない場所", "TOWN": "タウン", "PLAINS": "平原", @@ -36,5 +34,5 @@ export const biome: SimpleTranslationEntries = { "SNOWY_FOREST": "雪の森", "ISLAND": "島", "LABORATORY": "ラボ", - "END": "???", -} as const; + "END": "???" +} diff --git a/src/locales/ja/challenges.ts b/src/locales/ja/challenges.json similarity index 83% rename from src/locales/ja/challenges.ts rename to src/locales/ja/challenges.json index 71925baf7b8..54225ebf766 100644 --- a/src/locales/ja/challenges.ts +++ b/src/locales/ja/challenges.json @@ -1,6 +1,4 @@ -import { TranslationEntries } from "#app/interfaces/locales"; - -export const challenges: TranslationEntries = { +{ "title": "チャレンジを 設定", "illegalEvolution": "{{pokemon}}は このチャレンジで\n対象外の ポケモンに なってしまった!", "singleGeneration": { @@ -15,18 +13,18 @@ export const challenges: TranslationEntries = { "gen_6": "6", "gen_7": "7", "gen_8": "8", - "gen_9": "9", + "gen_9": "9" }, "singleType": { "name": "単一タイプ", "desc": "{{type}}タイプの ポケモンしか 使えません", "desc_default": "選んだ タイプの ポケモンしか 使えません" - //types in pokemon-info }, "freshStart": { "name": "出直し", + "shortName": "出直し", "desc": "ポケローグを 始めた ばかりの ような ままで ゲーム開始の 最初のパートナーしか 使えません", "value.0": "オフ", - "value.1": "オン", - }, -} as const; + "value.1": "オン" + } +} \ No newline at end of file diff --git a/src/locales/ja/command-ui-handler.json b/src/locales/ja/command-ui-handler.json new file mode 100644 index 00000000000..0b2020a9517 --- /dev/null +++ b/src/locales/ja/command-ui-handler.json @@ -0,0 +1,7 @@ +{ + "fight": "たたかう", + "ball": "ボール", + "pokemon": "ポケモン", + "run": "にげる", + "actionMessage": "{{pokemonName}}は どうする?" +} \ No newline at end of file diff --git a/src/locales/ja/command-ui-handler.ts b/src/locales/ja/command-ui-handler.ts deleted file mode 100644 index e120efe223c..00000000000 --- a/src/locales/ja/command-ui-handler.ts +++ /dev/null @@ -1,9 +0,0 @@ -import { SimpleTranslationEntries } from "#app/interfaces/locales"; - -export const commandUiHandler: SimpleTranslationEntries = { - "fight": "たたかう", - "ball": "ボール", - "pokemon": "ポケモン", - "run": "にげる", - "actionMessage": "{{pokemonName}}は どうする?", -} as const; diff --git a/src/locales/ja/common.json b/src/locales/ja/common.json new file mode 100644 index 00000000000..9e26dfeeb6e --- /dev/null +++ b/src/locales/ja/common.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/src/locales/ja/common.ts b/src/locales/ja/common.ts deleted file mode 100644 index 750322e1f09..00000000000 --- a/src/locales/ja/common.ts +++ /dev/null @@ -1,10 +0,0 @@ -import { SimpleTranslationEntries } from "#app/interfaces/locales"; - -export const common: SimpleTranslationEntries = { - "start": "Start", - "luckIndicator": "Luck:", - "shinyOnHover": "Shiny", - "commonShiny": "Common", - "rareShiny": "Rare", - "epicShiny": "Epic", -} as const; diff --git a/src/locales/ja/config.ts b/src/locales/ja/config.ts index 6af79547a04..f8afd6eb167 100644 --- a/src/locales/ja/config.ts +++ b/src/locales/ja/config.ts @@ -1,117 +1,113 @@ -import { ability } from "./ability"; -import { abilityTriggers } from "./ability-trigger"; -import { arenaFlyout } from "./arena-flyout"; -import { arenaTag } from "./arena-tag"; -import { PGFachv, PGMachv } from "./achv"; -import { battle } from "./battle"; -import { battleInfo } from "./battle-info"; -import { battleMessageUiHandler } from "./battle-message-ui-handler"; -import { battlerTags } from "./battler-tags"; -import { berry } from "./berry"; -import { bgmName } from "./bgm-name"; -import { biome } from "./biome"; -import { challenges } from "./challenges"; -import { commandUiHandler } from "./command-ui-handler"; -import { - PGFbattleSpecDialogue, - PGFdialogue, - PGFdoubleBattleDialogue, - PGFmiscDialogue, - PGMbattleSpecDialogue, - PGMdialogue, - PGMdoubleBattleDialogue, - PGMmiscDialogue -} from "./dialogue"; - -import { egg } from "./egg"; -import { fightUiHandler } from "./fight-ui-handler"; -import { filterBar } from "./filter-bar"; -import { gameMode } from "./game-mode"; -import { gameStatsUiHandler } from "./game-stats-ui-handler"; -import { growth } from "./growth"; -import { menu } from "./menu"; -import { menuUiHandler } from "./menu-ui-handler"; -import { modifier } from "./modifier"; -import { modifierType } from "./modifier-type"; -import { move } from "./move"; -import { nature } from "./nature"; -import { pokeball } from "./pokeball"; -import { pokemon } from "./pokemon"; -import { pokemonForm, battlePokemonForm } from "./pokemon-form"; -import { pokemonInfo } from "./pokemon-info"; -import { pokemonInfoContainer } from "./pokemon-info-container"; -import { pokemonSummary } from "./pokemon-summary"; -import { saveSlotSelectUiHandler } from "./save-slot-select-ui-handler"; -import { splashMessages } from "./splash-messages"; -import { starterSelectUiHandler } from "./starter-select-ui-handler"; -import { statusEffect } from "./status-effect"; -import { titles, trainerClasses, trainerNames } from "./trainers"; -import { tutorial } from "./tutorial"; -import { voucher } from "./voucher"; -import { terrain, weather } from "./weather"; -import { partyUiHandler } from "./party-ui-handler"; -import { settings } from "./settings.js"; -import { common } from "./common.js"; -import { modifierSelectUiHandler } from "./modifier-select-ui-handler"; -import { moveTriggers } from "./move-trigger"; +import common from "./common.json"; +import settings from "./settings.json"; +import ability from "./ability.json"; +import abilityTriggers from "./ability-trigger.json"; +import arenaFlyout from "./arena-flyout.json"; +import arenaTag from "./arena-tag.json"; +import achv from "./achv.json"; +import battle from "./battle.json"; +import battleScene from "./battle-scene.json"; +import battleInfo from "./battle-info.json"; +import battleMessageUiHandler from "./battle-message-ui-handler.json"; +import battlerTags from "./battler-tags.json"; +import berry from "./berry.json"; +import bgmName from "./bgm-name.json"; +import biome from "./biome.json"; +import challenges from "./challenges.json"; +import commandUiHandler from "./command-ui-handler.json"; +import dialogue from "./dialogue.json"; +import battleSpecDialogue from "./dialogue-final-boss.json"; +import miscDialogue from "./dialogue-misc.json"; +import doubleBattleDialogue from "./dialogue-double-battle.json"; +import egg from "./egg.json"; +import fightUiHandler from "./fight-ui-handler.json"; +import filterBar from "./filter-bar.json"; +import gameMode from "./game-mode.json"; +import gameStatsUiHandler from "./game-stats-ui-handler.json"; +import growth from "./growth.json"; +import menu from "./menu.json"; +import menuUiHandler from "./menu-ui-handler.json"; +import modifier from "./modifier.json"; +import modifierType from "./modifier-type.json"; +import move from "./move.json"; +import nature from "./nature.json"; +import partyUiHandler from "./party-ui-handler.json"; +import pokeball from "./pokeball.json"; +import pokemon from "./pokemon.json"; +import pokemonForm from "./pokemon-form.json"; +import battlePokemonForm from "./pokemon-form-battle.json"; +import pokemonInfo from "./pokemon-info.json"; +import pokemonInfoContainer from "./pokemon-info-container.json"; +import pokemonSummary from "./pokemon-summary.json"; +import saveSlotSelectUiHandler from "./save-slot-select-ui-handler.json"; +import splashMessages from "./splash-messages.json"; +import starterSelectUiHandler from "./starter-select-ui-handler.json"; +import statusEffect from "./status-effect.json"; +import trainerTitles from "./trainer-titles.json"; +import trainerClasses from "./trainer-classes.json"; +import trainerNames from "./trainer-names.json"; +import tutorial from "./tutorial.json"; +import voucher from "./voucher.json"; +import weather from "./weather.json"; +import terrain from "./terrain.json"; +import modifierSelectUiHandler from "./modifier-select-ui-handler.json"; +import moveTriggers from "./move-trigger.json"; +import runHistory from "./run-history.json"; export const jaConfig = { - ability: ability, - abilityTriggers: abilityTriggers, - arenaFlyout: arenaFlyout, - arenaTag: arenaTag, - battle: battle, - battleInfo: battleInfo, - battleMessageUiHandler: battleMessageUiHandler, - battlePokemonForm: battlePokemonForm, - battlerTags: battlerTags, - berry: berry, - bgmName: bgmName, - biome: biome, - challenges: challenges, - commandUiHandler: commandUiHandler, - common: common, - PGMachv: PGMachv, - PGFachv: PGFachv, - PGMdialogue: PGMdialogue, - PGFdialogue: PGFdialogue, - PGMbattleSpecDialogue: PGMbattleSpecDialogue, - PGFbattleSpecDialogue: PGFbattleSpecDialogue, - PGMmiscDialogue: PGMmiscDialogue, - PGFmiscDialogue: PGFmiscDialogue, - PGMdoubleBattleDialogue: PGMdoubleBattleDialogue, - PGFdoubleBattleDialogue: PGFdoubleBattleDialogue, - egg: egg, - fightUiHandler: fightUiHandler, - filterBar: filterBar, - gameMode: gameMode, - gameStatsUiHandler: gameStatsUiHandler, - growth: growth, - menu: menu, - menuUiHandler: menuUiHandler, - modifier: modifier, - modifierType: modifierType, - move: move, - nature: nature, - pokeball: pokeball, - pokemon: pokemon, - pokemonForm: pokemonForm, - pokemonInfo: pokemonInfo, - pokemonInfoContainer: pokemonInfoContainer, - pokemonSummary: pokemonSummary, - saveSlotSelectUiHandler: saveSlotSelectUiHandler, - settings: settings, - splashMessages: splashMessages, - starterSelectUiHandler: starterSelectUiHandler, - statusEffect: statusEffect, - terrain: terrain, - titles: titles, - trainerClasses: trainerClasses, - trainerNames: trainerNames, - tutorial: tutorial, - voucher: voucher, - weather: weather, - partyUiHandler: partyUiHandler, - modifierSelectUiHandler: modifierSelectUiHandler, - moveTriggers: moveTriggers + ability, + abilityTriggers, + arenaFlyout, + arenaTag, + battle, + battleScene, + battleInfo, + battleMessageUiHandler, + battlePokemonForm, + battlerTags, + berry, + bgmName, + biome, + challenges, + commandUiHandler, + common, + achv, + dialogue, + battleSpecDialogue, + miscDialogue, + doubleBattleDialogue, + egg, + fightUiHandler, + filterBar, + gameMode, + gameStatsUiHandler, + growth, + menu, + menuUiHandler, + modifier, + modifierType, + move, + nature, + pokeball, + pokemon, + pokemonForm, + pokemonInfo, + pokemonInfoContainer, + pokemonSummary, + saveSlotSelectUiHandler, + settings, + splashMessages, + starterSelectUiHandler, + statusEffect, + terrain, + titles: trainerTitles, + trainerClasses, + trainerNames, + tutorial, + voucher, + weather, + partyUiHandler, + modifierSelectUiHandler, + moveTriggers, + runHistory, }; diff --git a/src/locales/ja/dialogue-double-battle.json b/src/locales/ja/dialogue-double-battle.json new file mode 100644 index 00000000000..9e26dfeeb6e --- /dev/null +++ b/src/locales/ja/dialogue-double-battle.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/src/locales/ja/dialogue-final-boss.json b/src/locales/ja/dialogue-final-boss.json new file mode 100644 index 00000000000..9e26dfeeb6e --- /dev/null +++ b/src/locales/ja/dialogue-final-boss.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/src/locales/ja/dialogue-misc.json b/src/locales/ja/dialogue-misc.json new file mode 100644 index 00000000000..9e26dfeeb6e --- /dev/null +++ b/src/locales/ja/dialogue-misc.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/src/locales/ja/dialogue.json b/src/locales/ja/dialogue.json new file mode 100644 index 00000000000..9e26dfeeb6e --- /dev/null +++ b/src/locales/ja/dialogue.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/src/locales/ja/dialogue.ts b/src/locales/ja/dialogue.ts deleted file mode 100644 index 6db337517da..00000000000 --- a/src/locales/ja/dialogue.ts +++ /dev/null @@ -1,2922 +0,0 @@ -import { DialogueTranslationEntries, SimpleTranslationEntries } from "#app/interfaces/locales"; - -// Dialogue of the NPCs in the game when the player character is male (or unset) -export const PGMdialogue: DialogueTranslationEntries = { - "youngster": { - "encounter": { - 1: "Hey, wanna battle?", - 2: "Are you a new trainer too?", - 3: "Hey, I haven't seen you before. Let's battle!", - 4: "I just lost, so I'm trying to find more Pokémon.\nWait! You look weak! Come on, let's battle!", - 5: "Have we met or not? I don't really remember. Well, I guess it's nice to meet you anyway!", - 6: "All right! Let's go!", - 7: "All right! Here I come! I'll show you my power!", - 8: "Haw haw haw... I'll show you how hawesome my Pokémon are!", - 9: "No need to waste time saying hello. Bring it on whenever you're ready!", - 10: "Don't let your guard down, or you may be crying when a kid beats you.", - 11: "I've raised my Pokémon with great care. You're not allowed to hurt them!", - 12: "Glad you made it! It won't be an easy job from here.", - 13: "The battles continue forever! Welcome to the world with no end!" - }, - "victory": { - 1: "Wow! You're strong!", - 2: "I didn't stand a chance, huh?", - 3: "I'll find you again when I'm older and beat you!", - 4: "Ugh. I don't have any more Pokémon.", - 5: "No way… NO WAY! How could I lose again…", - 6: "No! I lost!", - 7: "Whoa! You are incredible! I'm amazed and surprised!", - 8: "Could it be… How… My Pokémon and I are the strongest, though…", - 9: "I won't lose next time! Let's battle again sometime!", - 10: "Sheesh! Can't you see that I'm just a kid! It wasn't fair of you to go all out like that!", - 11: "Your Pokémon are more amazing! Trade with me!", - 12: "I got a little carried away earlier, but what job was I talking about?", - 13: "Ahaha! There it is! That's right! You're already right at home in this world!" - } - }, - "lass": { - "encounter": { - 1: "Let's have a battle, shall we?", - 2: "You look like a new trainer. Let's have a battle!", - 3: "I don't recognize you. How about a battle?", - 4: "Let's have a fun Pokémon battle!", - 5: "I'll show you the ropes of how to really use Pokémon!", - 6: "A serious battle starts from a serious beginning! Are you sure you're ready?", - 7: "You're only young once. And you only get one shot at a given battle. Soon, you'll be nothing but a memory.", - 8: "You'd better go easy on me, OK? Though I'll be seriously fighting!", - 9: "School is boring. I've got nothing to do. Yawn. I'm only battling to kill the time." - }, - "victory": { - 1: "That was impressive! I've got a lot to learn.", - 2: "I didn't think you'd beat me that bad…", - 3: "I hope we get to have a rematch some day.", - 4: "That was pretty amazingly fun! You've totally exhausted me…", - 5: "You actually taught me a lesson! You're pretty amazing!", - 6: "Seriously, I lost. That is, like, seriously depressing, but you were seriously cool.", - 7: "I don't need memories like this. Deleting memory…", - 8: "Hey! I told you to go easy on me! Still, you're pretty cool when you're serious.", - 9: "I'm actually getting tired of battling… There's gotta be something new to do…" - } - }, - "breeder": { - "encounter": { - 1: "Obedient Pokémon, selfish Pokémon… Pokémon have unique characteristics.", - 2: "Even though my upbringing and behavior are poor, I've raised my Pokémon well.", - 3: "Hmm, do you discipline your Pokémon? Pampering them too much is no good.", - }, - "victory": { - 1: "It is important to nurture and train each Pokémon's characteristics.", - 2: "Unlike my diabolical self, these are some good Pokémon.", - 3: "Too much praise can spoil both Pokémon and people.", - }, - "defeat": { - 1: "You should not get angry at your Pokémon, even if you lose a battle.", - 2: "Right? Pretty good Pokémon, huh? I'm suited to raising things.", - 3: "No matter how much you love your Pokémon, you still have to discipline them when they misbehave." - } - }, - "breeder_female": { - "encounter": { - 1: "Pokémon never betray you. They return all the love you give them.", - 2: "Shall I give you a tip for training good Pokémon?", - 3: "I have raised these very special Pokémon using a special method." - }, - "victory": { - 1: "Ugh… It wasn't supposed to be like this. Did I administer the wrong blend?", - 2: "How could that happen to my Pokémon… What are you feeding your Pokémon?", - 3: "If I lose, that tells you I was just killing time. It doesn't damage my ego at all." - }, - "defeat": { - 1: "This proves my Pokémon have accepted my love.", - 2: "The real trick behind training good Pokémon is catching good Pokémon.", - 3: "Pokémon will be strong or weak depending on how you raise them." - } - }, - "fisherman": { - "encounter": { - 1: "Aack! You made me lose a bite!\nWhat are you going to do about it?", - 2: "Go away! You're scaring the Pokémon!", - 3: "Let's see if you can reel in a victory!", - }, - "victory": { - 1: "Just forget about it.", - 2: "Next time, I'll be reelin' in the triumph!", - 3: "Guess I underestimated the currents this time.", - }, - }, - "fisherman_female": { - "encounter": { - 1: "Woah! I've hooked a big one!", - 2: "Line's in, ready to reel in success!", - 3: "Ready to make waves!" - }, - "victory": { - 1: "I'll be back with a stronger hook.", - 2: "I'll reel in victory next time.", - 3: "I'm just sharpening my hooks for the comeback!" - }, - }, - "swimmer": { - "encounter": { - 1: "Time to dive in!", - 2: "Let's ride the waves of victory!", - 3: "Ready to make a splash!", - }, - "victory": { - 1: "Drenched in defeat!", - 2: "A wave of defeat!", - 3: "Back to shore, I guess.", - }, - }, - "backpacker": { - "encounter": { - 1: "Pack up, game on!", - 2: "Let's see if you can keep pace!", - 3: "Gear up, challenger!", - 4: "I've spent 20 years trying to find myself… But where am I?" - }, - "victory": { - 1: "Tripped up this time!", - 2: "Oh, I think I'm lost.", - 3: "Dead end!", - 4: "Wait up a second! Hey! Don't you know who I am?" - }, - }, - "ace_trainer": { - "encounter": { - 1: "You seem quite confident.", - 2: "Your Pokémon… Show them to me…", - 3: "Because I'm an Ace Trainer, people think I'm strong.", - 4: "Are you aware of what it takes to be an Ace Trainer?" - }, - "victory": { - 1: "Yes… You have good Pokémon…", - 2: "What?! But I'm a battling genius!", - 3: "Of course, you are the main character!", - 4: "OK! OK! You could be an Ace Trainer!" - }, - "defeat": { - 1: "I am devoting my body and soul to Pokémon battles!", - 2: "All within my expectations… Nothing to be surprised about…", - 3: "I thought I'd grow up to be a frail person who looked like they would break if you squeezed them too hard.", - 4: "Of course I'm strong and don't lose. It's important that I win gracefully." - } - }, - "parasol_lady": { - "encounter": { - 1: "Time to grace the battlefield with elegance and poise!", - }, - "victory": { - 1: "My elegance remains unbroken!", - } - }, - "twins": { - "encounter": { - 1: "Get ready, because when we team up, it's double the trouble!", - 2: "Two hearts, one strategy – let's see if you can keep up with our twin power!", - 3: "Hope you're ready for double trouble, because we're about to bring the heat!" - }, - "victory": { - 1: "We may have lost this round, but our bond remains unbreakable!", - 2: "Our twin spirit won't be dimmed for long.", - 3: "We'll come back stronger as a dynamic duo!" - }, - "defeat": { - 1: "Twin power reigns supreme!", - 2: "Two hearts, one triumph!", - 3: "Double the smiles, double the victory dance!" - } - }, - "cyclist": { - "encounter": { - 1: "Get ready to eat my dust!", - 2: "Gear up, challenger! I'm about to leave you in the dust!", - 3: "Pedal to the metal, let's see if you can keep pace!" - }, - "victory": { - 1: "Spokes may be still, but determination pedals on.", - 2: "Outpaced!", - 3: "The road to victory has many twists and turns yet to explore." - }, - }, - "black_belt": { - "encounter": { - 1: "I praise your courage in challenging me! For I am the one with the strongest kick!", - 2: "Oh, I see. Would you like to be cut to pieces? Or do you prefer the role of punching bag?" - }, - "victory": { - 1: "Oh. The Pokémon did the fighting. My strong kick didn't help a bit.", - 2: "Hmmm… If I was going to lose anyway, I was hoping to get totally messed up in the process." - }, - }, - "battle_girl": { - "encounter": { - 1: "You don't have to try to impress me. You can lose against me.", - }, - "victory": { - 1: "It's hard to say good-bye, but we are running out of time…", - }, - }, - "hiker": { - "encounter": { - 1: "My middle-age spread has given me as much gravitas as the mountains I hike!", - 2: "I inherited this big-boned body from my parents… I'm like a living mountain range…", - }, - "victory": { - 1: "At least I cannot lose when it comes to BMI!", - 2: "It's not enough… It's never enough. My bad cholesterol isn't high enough…" - }, - }, - "ranger": { - "encounter": { - 1: "When I am surrounded by nature, most other things cease to matter.", - 2: "When I'm living without nature in my life, sometimes I'll suddenly feel an anxiety attack coming on." - }, - "victory": { - 1: "It doesn't matter to the vastness of nature whether I win or lose…", - 2: "Something like this is pretty trivial compared to the stifling feelings of city life." - }, - "defeat": { - 1: "I won the battle. But victory is nothing compared to the vastness of nature…", - 2: "I'm sure how you feel is not so bad if you compare it to my anxiety attacks…" - } - }, - "scientist": { - "encounter": { - 1: "My research will lead this world to peace and joy.", - }, - "victory": { - 1: "I am a genius… I am not supposed to lose against someone like you…", - }, - }, - "school_kid": { - "encounter": { - 1: "…Heehee. I'm confident in my calculations and analysis.", - 2: "I'm gaining as much experience as I can because I want to be a Gym Leader someday." - }, - "victory": { - 1: "Ohhhh… Calculation and analysis are perhaps no match for chance…", - 2: "Even difficult, trying experiences have their purpose, I suppose." - } - }, - "artist": { - "encounter": { - 1: "I used to be popular, but now I am all washed up.", - }, - "victory": { - 1: "As times change, values also change. I realized that too late.", - }, - }, - "guitarist": { - "encounter": { - 1: "Get ready to feel the rhythm of defeat as I strum my way to victory!", - }, - "victory": { - 1: "Silenced for now, but my melody of resilience will play on.", - }, - }, - "worker": { - "encounter": { - 1: "It bothers me that people always misunderstand me. I'm a lot more pure than everyone thinks.", - }, - "victory": { - 1: "I really don't want my skin to burn, so I want to stay in the shade while I work.", - }, - }, - "worker_female": { - "encounter": { - 1: `It bothers me that people always misunderstand me. - $I'm a lot more pure than everyone thinks.` - }, - "victory": { - 1: "I really don't want my skin to burn, so I want to stay in the shade while I work." - }, - "defeat": { - 1: "My body and mind aren't necessarily always in sync." - } - }, - "worker_double": { - "encounter": { - 1: "I'll show you we can break you. We've been training in the field!", - }, - "victory": { - 1: "How strange… How could this be… I shouldn't have been outmuscled.", - }, - }, - "hex_maniac": { - "encounter": { - 1: "I normally only ever listen to classical music, but if I lose, I think I shall try a bit of new age!", - 2: "I grow stronger with each tear I cry." - }, - "victory": { - 1: "Is this the dawning of the age of Aquarius?", - 2: "Now I can get even stronger. I grow with every grudge." - }, - "defeat": { - 1: "New age simply refers to twentieth century classical composers, right?", - 2: "Don't get hung up on sadness or frustration. You can use your grudges to motivate yourself." - } - }, - "psychic": { - "encounter": { - 1: "Hi! Focus!", - }, - "victory": { - 1: "Eeeeek!", - }, - }, - "officer": { - "encounter": { - 1: "Brace yourself, because justice is about to be served!", - 2: "Ready to uphold the law and serve justice on the battlefield!" - }, - "victory": { - 1: "The weight of justice feels heavier than ever…", - 2: "The shadows of defeat linger in the precinct." - } - }, - "beauty": { - "encounter": { - 1: "My last ever battle… That's the way I'd like us to view this match…", - }, - "victory": { - 1: "It's been fun… Let's have another last battle again someday…", - }, - }, - "baker": { - "encounter": { - 1: "Hope you're ready to taste defeat!" - }, - "victory": { - 1: "I'll bake a comeback." - }, - }, - "biker": { - "encounter": { - 1: "Time to rev up and leave you in the dust!" - }, - "victory": { - 1: "I'll tune up for the next race." - }, - }, - "firebreather": { - "encounter": { - 1: "My flames shall devour you!", - 2: "My soul is on fire. I'll show you how hot it burns!", - 3: "Step right up and take a look!" - }, - "victory": { - 1: "I burned down to ashes...", - 2: "Yow! That's hot!", - 3: "Ow! I scorched the tip of my nose!" - }, - }, - "sailor": { - "encounter": { - 1: "Matey, you're walking the plank if you lose!", - 2: "Come on then! My sailor's pride is at stake!", - 3: "Ahoy there! Are you seasick?" - }, - "victory": { - 1: "Argh! Beaten by a kid!", - 2: "Your spirit sank me!", - 3: "I think it's me that's seasick..." - }, - }, - - "archer": { - "encounter": { - 1: "Before you go any further, let's see how you far against us, Team Rocket!", - 2: "I have received reports that your skills are not insignificant. Let's see if they are true.", - 3: "I am Archer, an Admin of Team Rocket. And I do not go easy on enemies of our organization." - }, - "victory": { - 1: "What a blunder!", - 2: "With my current skills, I was not up to the task after all.", - 3: "F-forgive me, Giovanni... For me to be defeated by a mere trainer..." - }, - }, - "ariana": { - "encounter": { - 1: `Hold it right there! We can't someone on the loose." - $It's harmful to Team Rocket's pride, you see.`, - 2: `I don't know or care if what I'm doing is right or wrong... - $I just put my faith in Giovanni and do as I am told`, - 3: "Your trip ends here. I'm going to take you down!" - }, - "victory": { - 1: `Tch, you really are strong. It's too bad. - $If you were to join Team Rocket, you could become an Executive.`, - 2: "I... I'm shattered...", - 3: "Aaaieeeee! This can't be happening! I fought hard, but I still lost…" - }, - }, - "proton": { - "encounter": { - 1: "What do you want? If you interrupt our work, don't expect any mercy!", - 2: `What do we have here? I am often labeled as the scariest and cruelest guy in Team Rocket… - $I strongly urge you not to interfere with our business!`, - 3: "I am Proton, an Admin of Team Rocket. I am here to put an end to your meddling!" - }, - "victory": { - 1: "The fortress came down!", - 2: "You may have won this time… But all you did was make Team Rocket's wrath grow…", - 3: "I am defeated… But I will not forget this!" - }, - }, - - "petrel": { - "encounter": { - 1: `Muhahaha, we've been waiting for you. Me? You don't know who I am? It is me, Giovanni. - $The majestic Giovanni himself! Wahahaha! …Huh? I don't sound anything like Giovanni? - $I don't even look like Giovanni? How come? I've worked so hard to mimic him!`, - 2: "I am Petrel, an Admin of Team Rocket. I will not allow you to interfere with our plans!", - 3: "Rocket Executive Petrel will deal with this intruder!" - }, - "victory": { - 1: "OK, OK. I'll tell you where he is.", - 2: "I… I couldn't do a thing… Giovanni, please forgive me…", - 3: "No, I can't let this affect me. I have to inform the others…" - }, - }, - "tabitha": { - "encounter": { - 1: "Hehehe! So you've come all the way here! But you're too late!", - 2: `Hehehe... Got here already, did you? We underestimated you! But this is it! - $I'm a cut above the Grunts you've seen so far. I'm not stalling for time. - $I'm going to pulverize you!`, - 3: "I'm going to give you a little taste of pain! Resign yourself to it!" - }, - "victory": { - 1: `Hehehe! You might have beaten me, but you don't stand a chance against the Boss! - $If you get lost now, you won't have to face a sound whipping!`, - 2: "Hehehe... So, I lost, too...", - 3: "Ahya! How could this be? For an Admin like me to lose to some random trainer..." - }, - }, - "courtney": { - "encounter": { - 1: "The thing...The thing that you hold...That is what... That's what we of Team Magma seek...", - 2: "... Well then...Deleting...", - 3: "...Ha. ...Analyzing... ...Hah♪" - }, - "victory": { - 1: "... ...Change...the world.", - 2: `As anticipated. Unanticipated. You. Target lock...completed. - $Commencing...experiment. You. Forever. Aha... ♪`, - 3: "...Again? That's unanticipated. ...I knew it. You...are interesting! ...Haha. ♪" - }, - }, - "shelly": { - "encounter": { - 1: `Ahahahaha! You're going to meddle in Team Aqua's affairs? - $You're either absolutely fearless, simply ignorant, or both! - $You're so cute, you're disgusting! I'll put you down`, - 2: "What's this? Who's this spoiled brat?", - 3: "Cool your jets. Be patient. I'll crush you shortly." - }, - "victory": { - 1: `Ahahahaha! We got meddled with unexpectedly! We're out of options. - $We'll have to pull out. But this isn't the last you'll see of Team Aqua! - $We have other plans! Don't you forget it!`, - 2: "Ahhh?! Did I go too easy on you?!", - 3: `Uh. Are you telling me you've upped your game even more during the fight? - $You're a brat with a bright future… My Pokémon and I don't have any strength left to fight… - $Go on… Go and be destroyed by Archie.` - }, - }, - "matt": { - "encounter": { - 1: "Hoohahaha! What, you got a screw loose or something? Look at you, little Makuhita person!", - 2: "Oho! You! You're that funny kid!", - 3: "What are you doing here? Did you follow us?" - }, - "victory": { - 1: "All right then, until the Boss has time for you, I'll be your opponent!", - 2: `I can feel it! I can feel it, all right! The strength coming offa you! - $More! I still want more! But looks like we're outta time...`, - 3: "That was fun! I knew you'd show me a good time! I look forward to facing you again someday!" - }, - }, - "mars": { - "encounter": { - 1: "I'm Mars, one of Team Galactic's top Commanders.", - 2: "Team Galactic's vision for the future is unwavering. Opposition will be crushed without mercy!", - 3: "Feeling nervous? You should be!" - }, - "victory": { - 1: "This can't be happening! How did I lose?!", - 2: "You have some skill, I'll give you that.", - 3: "Defeated... This was a costly mistake." - } - }, - "jupiter": { - "encounter": { - 1: "Jupiter, Commander of Team Galactic, at your service.", - 2: "Resistance is futile. Team Galactic will prevail!", - 3: "You're trembling... scared already?" - }, - "victory": { - 1: "No way... I lost?!", - 2: "Impressive, you've got guts!", - 3: "Losing like this... How embarrassing." - } - }, - "saturn": { - "encounter": { - 1: "I am Saturn, Commander of Team Galactic.", - 2: "Our mission is absolute. Any hindrance will be obliterated!", - 3: "Is that fear I see in your eyes?" - }, - "victory": { - 1: "Impossible... Defeated by you?!", - 2: "You have proven yourself a worthy adversary.", - 3: "Bestowed in defeat... This is unacceptable." - }}, - "zinzolin": { - "encounter": { - 1: "You could become a threat to Team Plasma, so we will eliminate you here and now!", - 2: "Oh, for crying out loud... I didn't expect to have to battle in this freezing cold!", - 3: "You're an impressive Trainer to have made it this far. But it ends here." - }, - "victory": { - 1: "Ghetsis... I have failed you...", - 2: "It's bitter cold. I'm shivering. I'm suffering. Yet, I still stand victorious.", - 3: "Hmph. You're a smarter Trainer than I expected, but not smart enough." - } - }, - "rood": { - "encounter": { - 1: "You are a threat to Team Plasma. We cannot let you walk away from here and now!", - 2: "Oh, this icy wind... I never thought I'd have to fight here!", - 3: "You are a remarkable Trainer to have made it this far. But this is where it ends." - }, - "victory": { - 1: "Ghetsis... I have failed my mission...", - 2: "The cold is piercing. I'm shivering. I'm suffering. Yet, I have triumphed.", - 3: "Hm. You are a talented Trainer, but unfortunately not talented enough." - } - }, - "xerosic": { - "encounter": { - 1: "Ah ha ha! It would be my pleasure. Come on, little Trainer! Let's see what you've got!", - 2: "Hmm... You're more powerful than you look. I wonder how much energy there is inside you.", - 3: "I've been waiting for you! I need to do a little research on you! Come, let us begin!" - }, - "victory": { - 1: "Ah, you're quite strong. Oh yes—very strong, indeed.", - 2: "Ding-ding-ding! You did it! To the victor go the spoils!", - 3: "Wonderful! Amazing! You have tremendous skill and bravery!" - } - }, - "bryony": { - "encounter": { - 1: "I am Bryony, and it would be my pleasure to battle you. Show me what you've got.", - 2: "Impressive... You're more powerful than you appear. Let's see the true extent of your energy.", - 3: "I've anticipated your arrival. It's time for a little test. Shall we begin?" - }, - "victory": { - 1: "You're quite strong. Oh yes—very strong, indeed.", - 2: "Ding-ding-ding! You've done well. Victory is yours.", - 3: "Wonderful! Remarkable! Your skill and bravery are commendable." - } - }, - "rocket_grunt": { - "encounter": { - 1: "Se prepara pra encrenca!", - 2: "We're pulling a big job here! Get lost, kid!", - 3: "Hand over your Pokémon, or face the wrath of Team Rocket!", - 4: "You're about to experience the true terror of Team Rocket!", - 5: "Hey, kid! Me am a Team Rocket member kind of guy!" //Use of wrong grammar is deliberate - }, - "victory": { - 1: "Equipe Rocket decolando de novo!", - 2: "Oh no! I dropped the Lift Key!", - 3: "I blew it!", - 4: "My associates won't stand for this!", - 5: "You say what? Team Rocket bye-bye a go-go? Broken it is says you?" //Use of wrong grammar is deliberate. - }, - }, - "magma_grunt": { - "encounter": { - 1: "Se você se meter com a Equipe Magma, não teremos piedade!", - 2: "You'd better not interfere with our plans! We're making the world a better place!", - 3: "You're in the way! Team Magma has no time for kids like you!", - 4: "I hope you brought marshmallows because things are about to heat up!", - 5: "We're going to use the power of a volcano! It's gonna be... explosive! Get it? Heh heh!" - }, - "victory": { - 1: "Ahn? Eu perdi?!", - 2: "I can't believe I lost! I even skipped lunch for this", - 3: "No way! You're just a kid!", - 4: "Urrrgh... I should've ducked into our hideout right away...", - 5: "You beat me... Do you think the boss will dock my pay for this?" - }, - }, - "aqua_grunt": { - "encounter": { - 1: "Não pegamos leve com quem se mete com a Equipe Aqua, nem mesmo crianças!", - 2: "Grrr... You've got some nerve meddling with Team Aqua!", - 3: "You're about to get soaked! And not just from my water Pokémon!", - 4: "We, Team Aqua, exist for the good of all!", - 5: "Prepare to be washed away by the tides of my... uh, Pokémon! Yeah, my Pokémon!" - }, - "victory": { - 1: "Tá de brincadeira!", - 2: "Arrgh, I didn't count on being meddled with by some meddling kid!", - 3: "I lost?! Guess I'll have to swim back to the hideout now...", - 4: "Oh, man, what a disaster... The boss is going to be furious...", - 5: "You beat me... Do you think the boss will make me walk the plank for this?" - }, - }, - "galactic_grunt": { - "encounter": { - 1: "Não mexe com a Equipe Galáctica!", - 2: "Witness the power of our technology and the future we envision!", - 3: "In the name of Team Galactic, I'll eliminate anyone who stands in our way!", - 4: "Get ready to lose!", - 5: "Hope you're ready for a cosmic beatdown!" - }, - "victory": { - 1: "Fui amassado...", - 2: "This setback means nothing in the grand scheme.", - 3: "Our plans are bigger than this defeat.", - 4: "How?!", - 5: "Note to self: practice Pokémon battling, ASAP." - }, - }, - "plasma_grunt": { - "encounter": { - 1: "Não toleramos pessoas que pensam diferente de nós!", - 2: "If I win against you, release your Pokémon!", - 3: "If you get in the way of Team Plasma, I'll take care of you!", - 4: "Team Plasma will liberate Pokémon from selfish humans like you!", - 5: "Our hairstyles are out of this world... but our battling skills? You'll find out soon enough." - }, - "victory": { - 1: "Plasmaaaaaaaaa!", - 2: "How could I lose...", - 3: "...What a weak Pokémon, I'll just have to go steal some better ones!", - 4: "Great plans are always interrupted.", - 5: "This is bad... Badbadbadbadbadbadbad! Bad for Team Plasma! Or Plasbad, for short!" - }, - }, - "flare_grunt": { - "encounter": { - 1: "Your Pokémon are no match for the elegance of Team Flare.", - 2: "Hope you brought your sunglasses, because things are about to get bright!", - 3: "Team Flare will cleanse the world of imperfection!", - 4: "Prepare to face the brilliance of Team Flare!", - 5: "Fashion is most important to us!" - }, - "victory": { - 1: "The future doesn't look bright for me.", - 2: "Perhaps there's more to battling than I thought. Back to the drawing board.", - 3: "Gahh?! I lost?!", - 4: "Even in defeat, Team Flare's elegance shines through.", - 5: "You may have beaten me, but when I lose, I go out in style!" - }, - }, - "rocket_boss_giovanni_1": { - "encounter": { - 1: "So! I must say, I am impressed you got here!" - }, - "victory": { - 1: "WHAT! This cannot be!" - }, - "defeat": { - 1: "Mark my words. Not being able to measure your own strength shows that you are still a child." - } - }, - "rocket_boss_giovanni_2": { - "encounter": { - 1: "My old associates need me... Are you going to get in my way?" - }, - "victory": { - 1: "How is this possible...? The precious dream of Team Rocket has become little more than an illusion..." - }, - "defeat": { - 1: "Team Rocket will be reborn again, and I will rule the world!" - } - }, - "magma_boss_maxie_1": { - "encounter": { - 1: "I will bury you by my own hand. I hope you appreciate this honor!" - }, - "victory": { - 1: "Ugh! You are... quite capable...\nI fell behind, but only by an inch..." - }, - "defeat": { - 1: "Team Magma will prevail!" - } - }, - "magma_boss_maxie_2": { - "encounter": { - 1: `You are the final obstacle remaining between me and my goals. - $Brace yourself for my ultimate attack! Fuhahaha!` - }, - "victory": { - 1: "This... This is not.. Ngh..." - }, - "defeat": { - 1: "And now... I will transform this planet to a land ideal for humanity." - } - }, - "aqua_boss_archie_1": { - "encounter": { - 1: "I'm the leader of Team Aqua, so I'm afraid it's the rope's end for you." - }, - "victory": { - 1: "Let's meet again somewhere. I'll be sure to remember that face." - }, - "defeat": { - 1: "Brilliant! My team won't hold back now!" - } - }, - "aqua_boss_archie_2": { - "encounter": { - 1: "I've been waiting so long for this day to come.\nThis is the true power of my team!" - }, - "victory": { - 1: "Like I figured..." - }, - "defeat": { - 1: "I'll return everything in this world to its original, pure state!!" - } - }, - "galactic_boss_cyrus_1": { - "encounter": { - 1: `You were compelled to come here by such vacuous sentimentality. - $I will make you regret paying heed to your heart!` - }, - "victory": { - 1: "Interesting. And quite curious." - }, - "defeat": { - 1: "I will create my new world..." - } - }, - "galactic_boss_cyrus_2": { - "encounter": { - 1: `So we meet again. It seems our fates have become intertwined. - $But here and now, I will finally break that bond!` - }, - "victory": { - 1: "How? How? HOW?!" - }, - "defeat": { - 1: "Farewell." - } - }, - "plasma_boss_ghetsis_1": { - "encounter": { - 1: "I won't allow anyone to stop me! No matter who does what!" - }, - "victory": { - 1: "How can this be? I'm the creator of Team Plasma! I'm perfect!" - }, - "defeat": { - 1: "I am the perfect ruler of a perfect new world! Mwa ha ha!" - } - }, - "plasma_boss_ghetsis_2": { - "encounter": { - 1: "Come now! I want to see your face at the moment you lose all hope!" - }, - "victory": { - 1: "My calculations... No! My careful schemes! The world should be mine!" - }, - "defeat": { - 1: "Kyurem! Use Absofusion!" - } - }, - "flare_boss_lysandre_1": { - "encounter": { - 1: "Do you want to stop me? Show me in battle." - }, - "victory": { - 1: "You are here to stop me. But I ask you to wait. " - }, - "defeat": { - 1: "Pokemon...Shall no longer exist." - } - }, - "flare_boss_lysandre_2": { - "encounter": { - 1: "The future you want, or the future I want... Let us see which one is more deserving, shall we?" - }, - "victory": { - 1: "Whaugh!" - }, - "defeat": { - 1: "Fools with no vision will continue to befoul this beautiful world." - } - }, - "brock": { - "encounter": { - 1: "My expertise on Rock-type Pokémon will take you down! Come on!", - 2: "My rock-hard willpower will overwhelm you!", - 3: "Allow me to show you the true strength of my Pokémon!" - }, - "victory": { - 1: "Your Pokémon's strength have overcome my rock-hard defenses!", - 2: "The world is huge! I'm glad to have had a chance to battle you.", - 3: "Perhaps I should go back to pursuing my dream as a Pokémon Breeder…" - }, - "defeat": { - 1: "The best offense is a good defense!\nThat's my way of doing things!", - 2: "Come study rocks with me next time to better learn how to fight them!", - 3: "Hah, all my traveling around the regions is paying off!" - } - }, - "misty": { - "encounter": { - 1: "My policy is an all out offensive with Water-type Pokémon!", - 2: "Hiya, I'll show you the strength of my aquatic Pokémon!", - 3: "My dream was to go on a journey and battle powerful trainers…\nWill you be a sufficient challenge?" - }, - "victory": { - 1: "You really are strong… I'll admit that you are skilled…", - 2: "Grrr… You know you just got lucky, right?!", - 3: "Wow, you're too much! I can't believe you beat me!" - }, - "defeat": { - 1: "Was the mighty Misty too much for you?", - 2: "I hope you saw my Pokémon's elegant swimming techniques!", - 3: "Your Pokémon were no match for my pride and joys!" - } - }, - "lt_surge": { - "encounter": { - 1: "My Electric Pokémon saved me during the war! I'll show you how!", - 2: "Ten-hut! I'll shock you into surrender!", - 3: "I'll zap you just like I do to all my enemies in battle!" - }, - "victory": { - 1: "Whoa! Your team's the real deal, kid!", - 2: "Aaargh, you're strong! Even my electric tricks lost against you.", - 3: "That was an absolutely shocking loss!" - }, - "defeat": { - 1: "Oh yeah! When it comes to Electric-type Pokémon, I'm number one in the world!", - 2: "Hahaha! That was an electrifying battle, kid!", - 3: "A Pokémon battle is war, and I have showed you first-hand combat!" - } - }, - "erika": { - "encounter": { - 1: "Ah, the weather is lovely here…\nOh, a battle? Very well then.", - 2: "My Pokémon battling skills rival that of my flower arranging skills.", - 3: "Oh, I hope the pleasant aroma of my Pokémon doesn't put me to sleep again…", - 4: "Seeing flowers in a garden is so soothing." - }, - "victory": { - 1: "Oh! I concede defeat.", - 2: "That match was most delightful.", - 3: "Ah, it appears it is my loss…", - 4: "Oh, my goodness." - }, - "defeat": { - 1: "I was afraid I would doze off…", - 2: "Oh my, it seems my Grass Pokémon overwhelmed you.", - 3: "That battle was such a soothing experience.", - 4: "Oh… Is that all?" - } - }, - "janine": { - "encounter": { - 1: "I am mastering the art of poisonous attacks.\nI shall spar with you today!", - 2: "Father trusts that I can hold my own.\nI will prove him right!", - 3: "My ninja techniques are only second to my Father's!\nCan you keep up?" - }, - "victory": { - 1: "Even now, I still need training… I understand.", - 2: "Your battle technique has outmatched mine.", - 3: "I'm going to really apply myself and improve my skills." - }, - "defeat": { - 1: "Fufufu… the poison has sapped all your strength to battle.", - 2: "Ha! You didn't stand a chance against my superior ninja skills!", - 3: "Father's faith in me has proven to not be misplaced." - } - }, - "sabrina": { - "encounter": { - 1: "Through my psychic ability, I had a vision of your arrival!", - 2: "I dislike fighting, but if you wish, I will show you my powers!", - 3: "I can sense great ambition in you. I shall see if it not unfounded." - }, - "victory": { - 1: "Your power… It far exceeds what I foresaw…", - 2: "I failed to accurately predict your power.", - 3: "Even with my immense psychic powers, I cannot sense another as strong as you." - }, - "defeat": { - 1: "This victory… It is exactly as I foresaw in my visions!", - 2: "Perhaps it was another I sensed a great desire in…", - 3: "Hone your abilities before recklessly charging into battle.\nYou never know what the future may hold if you do…" - } - }, - "blaine": { - "encounter": { - 1: "Hah! Hope you brought a Burn Heal!", - 2: "My fiery Pokémon will incinerate all challengers!", - 3: "Get ready to play with fire!" - }, - "victory": { - 1: "I have burned down to nothing! Not even ashes remain!", - 2: "Didn't I stoke the flames high enough?", - 3: "I'm all burned out… But this makes my motivation to improve burn even hotter!" - }, - "defeat": { - 1: "My raging inferno cannot be quelled!", - 2: "My Pokémon have been powered up with the heat from this victory!", - 3: "Hah! My passion burns brighter than yours!" - } - }, - "giovanni": { - "encounter": { - 1: "I, the leader of Team Rocket, will make you feel a world of pain!", - 2: "My training here will be vital before I am to face my old associates again.", - 3: "I do not think you are prepared for the level of failure you are about to experience!" - }, - "victory": { - 1: "WHAT! Me, lose?! There is nothing I wish to say to you!", - 2: "Hmph… You could never understand what I hope to achieve.", - 3: "This defeat is merely delaying the inevitable.\nI will rise Team Rocket from the ashes in due time." - }, - "defeat": { - 1: "Not being able to measure your own strength shows that you are still but a child.", - 2: "Do not try to interfere with me again.", - 3: "I hope you understand how foolish challenging me was." - } - }, - "roxanne": { - "encounter": { - 1: "Would you kindly demonstrate how you battle?", - 2: "You can learn many things by battling many trainers.", - 3: "Oh, you caught me strategizing.\nWould you like to battle?" - }, - "victory": { - 1: "Oh, I appear to have lost.\nI understand.", - 2: "It seems that I still have so much more to learn when it comes to battle.", - 3: "I'll take what I learned here today to heart." - }, - "defeat": { - 1: "I have learned many things from our battle.\nI hope you have too.", - 2: "I look forward to battling you again.\nI hope you'll use what you've learned here.", - 3: "I won due to everything I have learned." - } - }, - "brawly": { - "encounter": { - 1: "Oh man, a challenger!\nLet's see what you can do!", - 2: "You seem like a big splash.\nLet's battle!", - 3: "Time to create a storm!\nLet's go!" - }, - "victory": { - 1: "Oh woah, you've washed me out!", - 2: "You surfed my wave and crashed me down!", - 3: "I feel like I'm lost in Granite Cave!" - }, - "defeat": { - 1: "Haha, I surfed the big wave!\nChallenge me again sometime.", - 2: "Surf with me again some time!", - 3: "Just like the tides come in and out, I hope you return to challenge me again." - } - }, - "wattson": { - "encounter": { - 1: "Time to get shocked!\nWahahahaha!", - 2: "I'll make sparks fly!\nWahahahaha!", - 3: "I hope you brought Paralyz Heal!\nWahahahaha!" - }, - "victory": { - 1: "Seems like I'm out of charge!\nWahahahaha!", - 2: "You've completely grounded me!\nWahahahaha!", - 3: "Thanks for the thrill!\nWahahahaha!" - }, - "defeat": { - 1: "Recharge your batteries and challenge me again sometime!\nWahahahaha!", - 2: "I hope you found our battle electrifying!\nWahahahaha!", - 3: "Aren't you shocked I won?\nWahahahaha!" - } - }, - "flannery": { - "encounter": { - 1: "Nice to meet you! Wait, no…\nI will crush you!", - 2: "I've only been a leader for a little while, but I'll smoke you!", - 3: "It's time to demonstrate the moves my grandfather has taught me! Let's battle!" - }, - "victory": { - 1: "You remind me of my grandfather…\nNo wonder I lost.", - 2: "Am I trying too hard?\nI should relax, can't get too heated.", - 3: "Losing isn't going to smother me out.\nTime to reignite training!" - }, - "defeat": { - 1: "I hope I've made my grandfather proud…\nLet's battle again some time.", - 2: "I…I can't believe I won!\nDoing things my way worked!", - 3: "Let's exchange burning hot moves again soon!" - } - }, - "norman": { - "encounter": { - 1: "I'm surprised you managed to get here.\nLet's battle.", - 2: "I'll do everything in my power as a Gym Leader to win.\nLet's go!", - 3: "You better give this your all.\nIt's time to battle!" - }, - "victory": { - 1: "I lost to you…?\nRules are rules, though.", - 2: "Was moving from Olivine a mistake…?", - 3: "I can't believe it.\nThat was a great match." - }, - "defeat": { - 1: "We both tried our best.\nI hope we can battle again soon.", - 2: "You should try challenging my kid instead.\nYou might learn something!", - 3: "Thank you for the excellent battle.\nBetter luck next time." - } - }, - "winona": { - "encounter": { - 1: "I've been soaring the skies looking for prey…\nAnd you're my target!", - 2: "No matter how our battle is, my Flying Pokémon and I will triumph with grace. Let's battle!", - 3: "I hope you aren't scared of heights.\nLet's ascend!" - }, - "victory": { - 1: "You're the first Trainer I've seen with more grace than I.\nExcellently played.", - 2: "Oh, my Flying Pokémon have plummeted!\nVery well.", - 3: "Though I may have fallen, my Pokémon will continue to fly!" - }, - "defeat": { - 1: "My Flying Pokémon and I will forever dance elegantly!", - 2: "I hope you enjoyed our show.\nOur graceful dance is finished.", - 3: "Won't you come see our elegant choreography again?" - } - }, - "tate": { - "encounter": { - 1: "Hehehe…\nWere you surprised to see me without my sister?", - 2: "I can see what you're thinking…\nYou want to battle!", - 3: "How can you defeat someone…\nWho knows your every move?" - }, - "victory": { - 1: "It can't be helped…\nI miss Liza…", - 2: "Your bond with your Pokémon was stronger than mine.", - 3: "If I were with Liza, we would have won.\nWe can finish each other's thoughts!" - }, - "defeat": { - 1: "My Pokémon and I are superior!", - 2: "If you can't even defeat me, you'll never be able to defeat Liza either.", - 3: "It's all thanks to my strict training with Liza.\nI can make myself one with Pokémon." - } - }, - "liza": { - "encounter": { - 1: "Fufufu…\nWere you surprised to see me without my brother?", - 2: "I can determine what you desire…\nYou want to battle, don't you?", - 3: "How can you defeat someone…\nWho's one with their Pokémon?" - }, - "victory": { - 1: "It can't be helped…\nI miss Tate…", - 2: "Your bond with your Pokémon…\nIt's stronger than mine.", - 3: "If I were with Tate, we would have won.\nWe can finish each other's sentences!" - }, - "defeat": { - 1: "My Pokémon and I are victorious.", - 2: "If you can't even defeat me, you'll never be able to defeat Tate either.", - 3: "It's all thanks to my strict training with Tate.\nI can synchronize myself with my Pokémon." - } - }, - "juan": { - "encounter": { - 1: "Now's not the time to act coy.\nLet's battle!", - 2: "Ahahaha, You'll be witness to my artistry with Water Pokémon!", - 3: "A typhoon approaches!\nWill you be able to test me?", - 4: "Please, you shall bear witness to our artistry.\nA grand illusion of water sculpted by my Pokémon and myself!" - }, - "victory": { - 1: "You may be a genius who can take on Wallace!", - 2: "I focused on elegance while you trained.\nIt's only natural that you defeated me.", - 3: "Ahahaha!\nVery well, You have won this time.", - 4: "From you, I sense the brilliant shine of skill that will overcome all." - }, - "defeat": { - 1: "My Pokémon and I have sculpted an illusion of Water and come out victorious.", - 2: "Ahahaha, I have won, and you have lost.", - 3: "Shall I loan you my outfit? It may help you battle!\nAhahaha, I jest!", - 4: "I'm the winner! Which is to say, you lost." - } - }, - "crasher_wake": { - "encounter": { - 1: "Crash! Crash! Watch out!\nCrasher Wake…is…heeere!", - 2: "Crash! Crash! Crasher Wake!", - 3: "I'm the tidal wave of power to wash you away!" - }, - "victory": { - 1: "That puts a grin on my face!\nGuhahaha! That was a blast!", - 2: "Hunwah! It's gone and ended!\nHow will I say this…\nI want more! I wanted to battle a lot more!", - 3: "WHAAAAT!?" - }, - "defeat": { - 1: "Yeeeeah! That's right!", - 2: "I won, but I want more! I wanted to battle a lot more!", - 3: "So long!" - } - }, - "falkner": { - "encounter": { - 1: "I'll show you the real power of the magnificent bird Pokémon!", - 2: "Winds, stay with me!", - 3: "Dad! I hope you're watching me battle from above!" - }, - "victory": { - 1: "I understand… I'll bow out gracefully.", - 2: "A defeat is a defeat. You are strong indeed.", - 3: "…Shoot! Yeah, I lost." - }, - "defeat": { - 1: "Dad! I won with your cherished bird Pokémon…", - 2: "Bird Pokémon are the best after all!", - 3: "Feels like I'm catching up to my dad!" - } - }, - "nessa": { - "encounter": { - 1: "No matter what kind of plan your refined mind may be plotting, my partner and I will be sure to sink it.", - 2: "I'm not here to chat. I'm here to win!", - 3: "This is a little gift from my Pokémon… I hope you can take it!" - }, - "victory": { - 1: "You and your Pokémon are just too much…", - 2: "How…? How can this be?!", - 3: "I was totally washed away!" - }, - "defeat": { - 1: "The raging wave crashes again!", - 2: "Time to ride the wave of victory!", - 3: "Ehehe!" - } - }, - "melony": { - "encounter": { - 1: "I'm not going to hold back!", - 2: "All righty, I suppose we should get started.", - 3: "I'll freeze you solid!" - }, - "victory": { - 1: "You… You're pretty good, huh?", - 2: "If you find Gordie around, be sure to give him a right trashing, would you?", - 3: "I think you took breaking the ice a little too literally…" - }, - "defeat": { - 1: "Now do you see how severe battles can be?", - 2: "Hee! Looks like I went and won again!", - 3: "Are you holding back?" - } - }, - "marlon": { - "encounter": { - 1: "You look strong! Shoots! Let's start!", - 2: "I'm strong like the ocean's wide. You're gonna get swept away, fo' sho'.", - 3: "Oh ho, so I'm facing you! That's off the wall." - }, - "victory": { - 1: "You totally rocked that! You're raising some wicked Pokémon. You got this Trainer thing down!", - 2: "You don't just look strong, you're strong fo' reals! Eh, I was swept away, too!", - 3: "You're strong as a gnarly wave!" - }, - "defeat": { - 1: "You're tough, but it's not enough to sway the sea, 'K!", - 2: "Hee! Looks like I went and won again!", - 3: "Sweet, sweet victory!" - } - }, - "shauntal": { - "encounter": { - 1: "Excuse me. You're a challenger, right?\nI'm the Elite Four's Ghost-type Pokémon user, Shauntal, and I shall be your opponent.", - 2: "I absolutely love writing about Trainers who come here and the Pokémon they train.\nCould I use you and your Pokémon as a subject?", - 3: "Every person who works with Pokémon has a story to tell.\nWhat story is about to be told?" - }, - "victory": { - 1: "Wow. I'm dumbstruck!", - 2: "S-sorry! First, I must apologize to my Pokémon…\n\nI'm really sorry you had a bad experience because of me!", - 3: "Even in light of that, I'm still one of the Elite Four!" - }, - "defeat": { - 1: "Eheh.", - 2: "That gave me excellent material for my next novel!", - 3: "And so, another tale ends…" - } - }, - "marshal": { - "encounter": { - 1: "My mentor, Alder, sees your potential as a Trainer and is taking an interest in you.\nIt is my intention to test you--to take you to the limits of your strength. Kiai!", - 2: "Victory, decisive victory, is my intention! Challenger, here I come!", - 3: "In myself, I seek to develop the strength of a fighter and shatter any weakness in myself!\nPrevailing with the force of my convictions!" - }, - "victory": { - 1: "Whew! Well done!", - 2: "As your battles continue, aim for even greater heights!", - 3: "The strength shown by you and your Pokémon has deeply impressed me…" - }, - "defeat": { - 1: "Hmm.", - 2: "That was good battle.", - 3: "Haaah! Haaah! Haiyaaaah!" - } - }, - "cheren": { - "encounter": { - 1: "You remind me of an old friend. That makes me excited about this Pokémon battle!", - 2: `Pokémon battles have no meaning if you don't think why you battle. - $Or better said, it makes battling together with Pokémon meaningless.`, - 3: "My name's Cheren! I'm a Gym Leader and a teacher! Pleasure to meet you." - }, - "victory": { - 1: "Thank you! I saw what was missing in me.", - 2: "Thank you! I feel like I saw a little of the way toward my ideals.", - 3: "Hmm… This is problematic." - }, - "defeat": { - 1: "As a Gym Leader, I aim to be a wall for you to overcome.", - 2: "All right!", - 3: "I made it where I am because Pokémon were by my side.\nPerhaps we need to think about why Pokémon help us not in terms of Pokémon and Trainers but as a relationship between living beings." - } - }, - "chili": { - "encounter": { - 1: "Yeeeeooow! Time to play with FIRE!! I'm the strongest of us brothers!", - 2: "Ta-da! The Fire-type scorcher Chili--that's me--will be your opponent!", - 3: "I'm going to show you what me and my blazing Fire types can do!" - }, - "victory": { - 1: "You got me. I am… burned… out…", - 2: "Whoa ho! You're on fire!", - 3: "Augh! You got me!" - }, - "defeat": { - 1: "I'm on fire! Play with me, and you'll get burned!", - 2: "When you play with fire, you get burned!", - 3: "I mean, c'mon, your opponent was me! You didn't have a chance!" - } - }, - "cilan": { - "encounter": { - 1: `Nothing personal... No hard feelings... Me and my Grass-type Pokémon will... - $Um... We're gonna battle come what may.`, - 2: "So, um, if you're OK with me, I'll, um, put everything I've got into being, er, you know, your opponent.", - 3: "OK… So, um, I'm Cilan, I like Grass-type Pokémon." - }, - "victory": { - 1: "Er… Is it over now?", - 2: `…What a surprise. You are very strong, aren't you? - $I guess my brothers wouldn't have been able to defeat you either…`, - 3: "…Huh. Looks like my timing was, um, off?" - }, - "defeat": { - 1: "Huh? Did I win?", - 2: `I guess… - $I suppose I won, because I've been competing with my brothers Chili and Cress, and we all were able to get tougher.`, - 3: "It…it was quite a thrilling experience…" - } - }, - "roark": { - "encounter": { - 1: "I need to see your potential as a Trainer. And, I'll need to see the toughness of the Pokémon that battle with you!", - 2: "Here goes! These are my rocking Pokémon, my pride and joy!", - 3: "Rock-type Pokémon are simply the best!", - 4: "I need to see your potential as a Trainer. And, I'll need to see the toughness of the Pokémon that battle with you!" - }, - "victory": { - 1: "W-what? That can't be! My buffed-up Pokémon!", - 2: "…We lost control there. Next time I'd like to challenge you to a Fossil-digging race underground.", - 3: "With skill like yours, it's natural for you to win.", - 4: "Wh-what?! It can't be! Even that wasn't enough?", - 5: "I blew it." - }, - "defeat": { - 1: "See? I'm proud of my rocking battle style!", - 2: "Thanks! The battle gave me confidence that I may be able to beat my dad!", - 3: "I feel like I just smashed through a really stubborn boulder!" - } - }, - "morty": { - "encounter": { - 1: `With a little more, I could see a future in which I meet the legendary Pokémon. - $You're going to help me reach that level!`, - 2: `It's said that a rainbow-hued Pokémon will come down to appear before a truly powerful Trainer. - $I believed that tale, so I have secretly trained here all my life. As a result, I can now see what others cannot. - $I see a shadow of the person who will make the Pokémon appear. - $I believe that person is me! You're going to help me reach that level!`, - 3: "Whether you choose to believe or not, mystic power does exist.", - 4: "You can bear witness to the fruits of my training.", - 5: "You must make your soul one with that of Pokémon. Can you do this?", - 6: "Say, do you want to be part of my training?" - }, - "victory": { - 1: "I'm not good enough yet…", - 2: `I see… Your journey has taken you to far-away places and you have witnessed much more than I. - $I envy you for that…`, - 3: "How is this possible…", - 4: `I don't think our potentials are so different. - $But you seem to have something more than that… So be it.`, - 5: "Guess I need more training.", - 6: "That's a shame." - }, - "defeat": { - 1: "I moved… one step ahead again.", - 2: "Fufufu…", - 3: "Wh-what?! It can't be! Even that wasn't enough?", - 4: "I feel like I just smashed through a really stubborn boulder!", - 5: "Ahahahah!", - 6: "I knew I would win!" - } - }, - "crispin": { - "encounter": { - 1: "I wanna win, so that's exactly what I'll do!", - 2: "I battle because I wanna battle! And you know what? That's how it should be!" - }, - "victory": { - 1: "I wanted to win…but I lost!", - 2: "I lost…'cause I couldn't win!" - }, - "defeat": { - 1: "Hey, wait a sec. Did I just win? I think I just won! Talk about satisfying!", - 2: "Wooo! That was amazing!" - } - }, - "amarys": { - "encounter": { - 1: `I want to be the one to help a certain person. That being the case, I cannot afford to lose. - $… Our battle starts now.`, - }, - "victory": { - 1: "I am… not enough, I see." - }, - "defeat": { - 1: "Victory belongs to me. Well fought." - } - }, - "lacey": { - "encounter": { - 1: "I'll be facing you with my usual party as a member of the Elite Four." - }, - "victory": { - 1: "That was a great battle!" - }, - "defeat": { - 1: "Let's give your Pokémon a nice round of applause for their efforts!" - } - }, - "drayton": { - "encounter": { - 1: `Man, I love chairs. Don't you love chairs? What lifesavers. - $I don't get why everyone doesn't just sit all the time. Standing up's tiring work!`, - }, - "victory": { - 1: "Guess I should've expected that!" - }, - "defeat": { - 1: "Heh heh! Don't mind me, just scooping up a W over here. I get it if you're upset, but don't go full Kieran on me, OK?" - } - }, - "ramos": { - "encounter": { - 1: `Did yeh enjoy the garden playground I made with all these sturdy plants o' mine? - $Their strength is a sign o' my strength as a gardener and a Gym Leader! Yeh sure yer up to facing all that?`, - }, - "victory": { - 1: "Yeh believe in yer Pokémon… And they believe in yeh, too… It was a fine battle, sprout." - }, - "defeat": { - 1: "Hohoho… Indeed. Frail little blades o' grass'll break through even concrete." - } - }, - "viola": { - "encounter": { - 1: `Whether it's the tears of frustration that follow a loss or the blossoming of joy that comes with victory… - $They're both great subjects for my camera! Fantastic! This'll be just fantastic! - $Now come at me!`, - 2: "My lens is always focused on victory--I won't let anything ruin this shot!" - }, - "victory": { - 1: "You and your Pokémon have shown me a whole new depth of field! Fantastic! Just fantastic!", - 2: `The world you see through a lens, and the world you see with a Pokémon by your side… - $The same world can look entirely different depending on your view.` - }, - "defeat": { - 1: "The photo from the moment of my victory will be a real winner, all right!", - 2: "Yes! I took some great photos!" - } - }, - "candice": { - "encounter": { - 1: `You want to challenge Candice? Sure thing! I was waiting for someone tough! - $But I should tell you, I'm tough because I know how to focus.`, - 2: `Pokémon, fashion, romance… It's all about focus! - $I'll show you just what I mean. Get ready to lose!` - }, - "victory": { - 1: "I must say, I'm warmed up to you! I might even admire you a little.", - 2: `Wow! You're great! You've earned my respect! - $I think your focus and will bowled us over totally. ` - }, - "defeat": { - 1: "I sensed your will to win, but I don't lose!", - 2: "See? Candice's focus! My Pokémon's focus is great, too!" - } - }, - "gardenia": { - "encounter": { - 1: "You have a winning aura about you. So, anyway, this will be fun. Let's have our battle!" - }, - "victory": { - 1: "Amazing! You're very good, aren't you?" - }, - "defeat": { - 1: "Yes! My Pokémon and I are perfectly good!" - } - }, - "aaron": { - "encounter": { - 1: "Ok! Let me take you on!" - }, - "victory": { - 1: "Battling is a deep and complex affair…" - }, - "defeat": { - 1: "Victory over an Elite Four member doesn't come easily." - } - }, - "cress": { - "encounter": { - 1: "That is correct! It shall be I and my esteemed Water types that you must face in battle!" - }, - "victory": { - 1: "Lose? Me? I don't believe this." - }, - "defeat": { - 1: "This is the appropriate result when I'm your opponent." - } - }, - "allister": { - "encounter": { - 1: "'M Allister.\nH-here… I go…" - }, - "victory": { - 1: `I nearly lost my mask from the shock… That was… - $Wow. I can see your skill for what it is.`, - }, - "defeat": { - 1: "Th-that was ace!" - } - }, - "clay": { - "encounter": { - 1: "Harrumph! Kept me waitin', didn't ya, kid? All right, time to see what ya can do!" - }, - "victory": { - 1: "Man oh man… It feels good to go all out and still be defeated!" - }, - "defeat": { - 1: `What's important is how ya react to losin'. - $That's why folks who use losin' as fuel to get better are tough.`, - } - }, - "kofu": { - "encounter": { - 1: "I'mma serve you a full course o' Water-type Pokémon! Don't try to eat 'em, though!" - }, - "victory": { - 1: "Vaultin' Veluza! Yer a lively one, aren't ya! A little TOO lively, if I do say so myself!" - }, - "defeat": { - 1: "You come back to see me again now, ya hear?" - } - }, - "tulip": { - "encounter": { - 1: "Allow me to put my skills to use to make your cute little Pokémon even more beautiful!" - }, - "victory": { - 1: "Your strength has a magic to it that cannot be washed away." - }, - "defeat": { - 1: "You know, in my line of work, people who lack talent in one area or the other often fade away quickly—never to be heard of again." - } - }, - "sidney": { - "encounter": { - 1: `I like that look you're giving me. I guess you'll give me a good match. - $That's good! Looking real good! All right! - $You and me, let's enjoy a battle that can only be staged here!`, - }, - "victory": { - 1: "Well, how do you like that? I lost! Eh, it was fun, so it doesn't matter." - }, - "defeat": { - 1: "No hard feelings, alright?" - } - }, - "phoebe": { - "encounter": { - 1: `While I trained, I gained the ability to commune with Ghost-type Pokémon. - $Yes, the bond I developed with Pokémon is extremely tight. - $So, come on, just try and see if you can even inflict damage on my Pokémon!`, - }, - "victory": { - 1: "Oh, darn. I've gone and lost." - }, - "defeat": { - 1: "I look forward to battling you again sometime!" - } - }, - "glacia": { - "encounter": { - 1: `All I have seen are challenges by weak Trainers and their Pokémon. - $What about you? It would please me to no end if I could go all out against you!`, - }, - "victory": { - 1: `You and your Pokémon… How hot your spirits burn! - $The all-consuming heat overwhelms. - $It's no surprise that my icy skills failed to harm you.`, - }, - "defeat": { - 1: "A fiercely passionate battle, indeed." - } - }, - "drake": { - "encounter": { - 1: `For us to battle with Pokémon as partners, do you know what it takes? Do you know what is needed? - $If you don't, then you will never prevail over me!`, - }, - "victory": { - 1: "Superb, it should be said." - }, - "defeat": { - 1: "I gave my all for that battle!" - } - }, - "wallace": { - "encounter": { - 1: `There's something about you… A difference in your demeanor. - $I think I sense that in you. Now, show me. Show me the power you wield with your Pokémon. - $And I, in turn, shall present you with a performance of illusions in water by me and my Pokémon!`, - }, - "victory": { - 1: `Bravo. I realize now your authenticity and magnificence as a Pokémon Trainer. - $I find much joy in having met you and your Pokémon. You have proven yourself worthy.`, - }, - "defeat": { - 1: "A grand illusion!" - } - }, - "lorelei": { - "encounter": { - 1: `No one can best me when it comes to icy Pokémon! Freezing moves are powerful! - $Your Pokémon will be at my mercy when they are frozen solid! Hahaha! Are you ready?`, - }, - "victory": { - 1: "How dare you!" - }, - "defeat": { - 1: "There's nothing you can do once you're frozen." - } - }, - "will": { - "encounter": { - 1: `I have trained all around the world, making my psychic Pokémon powerful. - $I can only keep getting better! Losing is not an option!`, - }, - "victory": { - 1: "I… I can't… believe it…" - }, - "defeat": { - 1: "That was close. I wonder what it is that you lack." - } - }, - "malva": { - "encounter": { - 1: `I feel like my heart might just burst into flames. - $I'm burning up with my hatred for you, runt!`, - }, - "victory": { - 1: "What news… So a new challenger has defeated Malva!" - }, - "defeat": { - 1: "I am delighted! Yes, delighted that I could squash you beneath my heel." - } - }, - "hala": { - "encounter": { - 1: "Old Hala is here to make you holler!" - }, - "victory": { - 1: "I could feel the power you gained on your journey." - }, - "defeat": { - 1: "Haha! What a delightful battle!" - } - }, - "molayne": { - "encounter": { - 1: `I gave the captain position to my cousin Sophocles, but I'm confident in my ability. - $My strength is like that of a supernova!`, - }, - "victory": { - 1: "I certainly found an interesting Trainer to face!" - }, - "defeat": { - 1: "Ahaha. What an interesting battle." - } - }, - "rika": { - "encounter": { - 1: "I'd say I'll go easy on you, but… I'd be lying! Think fast!" - }, - "victory": { - 1: "Not bad, kiddo." - }, - "defeat": { - 1: "Nahahaha! You really are something else, kiddo!" - } - }, - "bruno": { - "encounter": { - 1: "We will grind you down with our superior power! Hoo hah!" - }, - "victory": { - 1: "Why? How could I lose?" - }, - "defeat": { - 1: "You can challenge me all you like, but the results will never change!" - } - }, - "bugsy": { - "encounter": { - 1: "I'm Bugsy! I never lose when it comes to bug Pokémon!" - }, - "victory": { - 1: "Whoa, amazing! You're an expert on Pokémon!\nMy research isn't complete yet. OK, you win." - }, - "defeat": { - 1: "Thanks! Thanks to our battle, I was also able to make progress in my research!" - } - }, - "koga": { - "encounter": { - 1: "Fwahahahaha! Pokémon are not merely about brute force--you shall see soon enough!" - }, - "victory": { - 1: "Ah! You've proven your worth!" - }, - "defeat": { - 1: "Have you learned to fear the techniques of the ninja?" - } - }, - "bertha": { - "encounter": { - 1: "Well, would you show this old lady how much you've learned?" - }, - "victory": { - 1: `Well! Dear child, I must say, that was most impressive. - $Your Pokémon believed in you and did their best to earn you the win. - $Even though I've lost, I find myself with this silly grin!`, - }, - "defeat": { - 1: "Hahahahah! Looks like this old lady won!" - } - }, - "lenora": { - "encounter": { - 1: "Well then, challenger, I'm going to research how you battle with the Pokémon you've so lovingly raised!" - }, - "victory": { - 1: "My theory about you was correct. You're more than just talented… You're motivated! I salute you!" - }, - "defeat": { - 1: "Ah ha ha! If you lose, make sure to analyze why, and use that knowledge in your next battle!" - } - }, - "siebold": { - "encounter": { - 1: "As long as I am alive, I shall strive onward to seek the ultimate cuisine... and the strongest opponents in battle!" - }, - "victory": { - 1: "I shall store my memory of you and your Pokémon forever away within my heart." - }, - "defeat": { - 1: `Our Pokémon battle was like food for my soul. It shall keep me going. - $That is how I will pay my respects to you for giving your all in battle!`, - } - }, - "roxie": { - "encounter": { - 1: "Get ready! I'm gonna knock some sense outta ya!" - }, - "victory": { - 1: "Wild! Your reason's already more toxic than mine!" - }, - "defeat": { - 1: "Hey, c'mon! Get serious! You gotta put more out there!" - } - }, - "olivia": { - "encounter": { - 1: "No introduction needed here. Time to battle me, Olivia!" - }, - "victory": { - 1: "Really lovely… Both you and your Pokémon…" - }, - "defeat": { - 1: "Mmm-hmm." - } - }, - "poppy": { - "encounter": { - 1: "Oooh! Do you wanna have a Pokémon battle with me?" - }, - "victory": { - 1: "Uagh?! Mmmuuuggghhh…" - }, - "defeat": { - 1: `Yaaay! I did it! I de-feet-ed you! You can come for… For… An avenge match? - $Come for an avenge match anytime you want!`, - } - }, - "agatha": { - "encounter": { - 1: "Pokémon are for battling! I'll show you how a real Trainer battles!" - }, - "victory": { - 1: "Oh my! You're something special, child!" - }, - "defeat": { - 1: "Bahaha. That's how a proper battle's done!" - } - }, - "flint": { - "encounter": { - 1: "Hope you're warmed up, cause here comes the Big Bang!" - }, - "victory": { - 1: "Incredible! Your moves are so hot, they make mine look lukewarm!" - }, - "defeat": { - 1: "Huh? Is that it? I think you need a bit more passion." - } - }, - "grimsley": { - "encounter": { - 1: "The winner takes everything, and there's nothing left for the loser." - }, - "victory": { - 1: "When one loses, they lose everything… The next thing I'll look for will be victory, too!" - }, - "defeat": { - 1: "If somebody wins, the person who fought against that person will lose." - } - }, - "caitlin": { - "encounter": { - 1: `It's me who appeared when the flower opened up. You who have been waiting… - $You look like a Pokémon Trainer with refined strength and deepened kindness. - $What I look for in my opponent is superb strength… - $Please unleash your power to the fullest!`, - }, - "victory": { - 1: "My Pokémon and I learned so much! I offer you my thanks." - }, - "defeat": { - 1: "I aspire to claim victory with elegance and grace." - } - }, - "diantha": { - "encounter": { - 1: `Battling against you and your Pokémon, all of you brimming with hope for the future… - $Honestly, it just fills me up with energy I need to keep facing each new day! It does!`, - }, - "victory": { - 1: "Witnessing the noble spirits of you and your Pokémon in battle has really touched my heart…" - }, - "defeat": { - 1: "Oh, fantastic! What did you think? My team was pretty cool, right?" - } - }, - "wikstrom": { - "encounter": { - 1: `Well met, young challenger! Verily am I the famed blade of hardened steel, Duke Wikstrom! - $Let the battle begin! En garde!`, - }, - "victory": { - 1: "Glorious! The trust that you share with your honorable Pokémon surpasses even mine!" - }, - "defeat": { - 1: `What manner of magic is this? My heart, it doth hammer ceaselessly in my breast! - $Winning against such a worthy opponent doth give my soul wings--thus do I soar!`, - } - }, - "acerola": { - "encounter": { - 1: "Battling is just plain fun! Come on, I can take you!" - }, - "victory": { - 1: "I'm… I'm speechless! How did you do it?!" - }, - "defeat": { - 1: "Ehaha! What an amazing victory!" - } - }, - "larry_elite": { - "encounter": { - 1: `Hello there… It's me, Larry. - $I serve as a member of the Elite Four too, yes… Unfortunately for me.`, - }, - "victory": { - 1: "Well, that took the wind from under our wings…" - }, - "defeat": { - 1: "It's time for a meeting with the boss." - } - }, - "lance": { - "encounter": { - 1: "I've been waiting for you. Allow me to test your skill.", - 2: "I thought that you would be able to get this far. Let's get this started." - }, - "victory": { - 1: "You got me. You are magnificent!", - 2: "I never expected another trainer to beat me… I'm surprised." - }, - "defeat": { - 1: "That was close. Want to try again?", - 2: "It's not that you are weak. Don't let it bother you." - } - }, - "karen": { - "encounter": { - 1: "I am Karen. Would you care for a showdown with my Dark-type Pokémon?", - 2: "I am unlike those you've already met.", - 3: "You've assembled a charming team. Our battle should be a good one." - }, - "victory": { - 1: "No! I can't win. How did you become so strong?", - 2: "I will not stray from my chosen path.", - 3: "The Champion is looking forward to meeting you." - }, - "defeat": { - 1: "That's about what I expected.", - 2: "Well, that was relatively entertaining.", - 3: "Come visit me anytime." - } - }, - "milo": { - "encounter": { - 1: `Sure seems like you understand Pokémon real well. - $This is gonna be a doozy of a battle! - $I'll have to Dynamax my Pokémon if I want to win!`, - }, - "victory": { - 1: "The power of Grass has wilted… What an incredible Challenger!" - }, - "defeat": { - 1: "This'll really leave you in shock and awe." - } - }, - "lucian": { - "encounter": { - 1: `Just a moment, please. The book I'm reading has nearly reached its thrilling climax… - $The hero has obtained a mystic sword and is about to face their final trial… Ah, never mind. - $Since you've made it this far, I'll put that aside and battle you. - $Let me see if you'll achieve as much glory as the hero of my book!` - }, - "victory": { - 1: "I see… It appears you've put me in checkmate." - }, - "defeat": { - 1: "I have a reputation to uphold." - } - }, - "drasna": { - "encounter": { - 1: `You must be a strong Trainer. Yes, quite strong indeed… - $That's just wonderful news! Facing opponents like you and your team will make my Pokémon grow like weeds!` - }, - "victory": { - 1: "Oh, dear me. That sure was a quick battle… I do hope you'll come back again sometime!" - }, - "defeat": { - 1: "How can this be?" - } - }, - "kahili": { - "encounter": { - 1: "So, here you are… Why don't we see who the winds favor today, you… Or me?" - }, - "victory": { - 1: "It's frustrating to me as a member of the Elite Four, but it seems your strength is the real deal." - }, - "defeat": { - 1: "That was an ace!" - } - }, - "hassel": { - "encounter": { - 1: "Prepare to learn firsthand how the fiery breath of ferocious battle feels!" - }, - "victory": { - 1: `Fortune smiled on me this time, but… - $Judging from how the match went, who knows if I will be so lucky next time.`, - }, - "defeat": { - 1: "That was an ace!" - } - }, - "blue": { - "encounter": { - 1: "You must be pretty good to get this far." - }, - "victory": { - 1: "I've only lost to him and now to you… Him? Hee, hee…" - }, - "defeat": { - 1: "See? My power is what got me here." - } - }, - "piers": { - "encounter": { - 1: "Get ready for a mosh pit with me and my party! Spikemuth, it's time to rock!" - }, - "victory": { - 1: "Me an' my team gave it our best. Let's meet up again for a battle some time…" - }, - "defeat": { - 1: "My throat's ragged from shoutin'… But 'at was an excitin' battle!" - } - }, - "red": { - "encounter": { - 1: "…!" - }, - "victory": { - 1: "…?" - }, - "defeat": { - 1: "…!" - } - }, - "jasmine": { - "encounter": { - 1: "Oh… Your Pokémon are impressive. I think I will enjoy this." - }, - "victory": { - 1: "You are truly strong. I'll have to try much harder, too." - }, - "defeat": { - 1: "I never expected to win." - } - }, - "lance_champion": { - "encounter": { - 1: "I am still the Champion. I won't hold anything back." - }, - "victory": { - 1: "This is the emergence of a new Champion." - }, - "defeat": { - 1: "I successfully defended my Championship." - } - }, - "steven": { - "encounter": { - 1: `Tell me… What have you seen on your journey with your Pokémon? - $What have you felt, meeting so many other Trainers out there? - $Traveling this rich land… Has it awoken something inside you? - $I want you to come at me with all that you've learned. - $My Pokémon and I will respond in turn with all that we know!`, - }, - "victory": { - 1: "So I, the Champion, fall in defeat…" - }, - "defeat": { - 1: "That was time well spent! Thank you!" - } - }, - "cynthia": { - "encounter": { - 1: "I, Cynthia, accept your challenge! There won't be any letup from me!" - }, - "victory": { - 1: "No matter how fun the battle is, it will always end sometime…" - }, - "defeat": { - 1: "Even if you lose, never lose your love of Pokémon." - } - }, - "iris": { - "encounter": { - 1: `Know what? I really look forward to having serious battles with strong Trainers! - $I mean, come on! The Trainers who make it here are Trainers who desire victory with every fiber of their being! - $And they are battling alongside Pokémon that have been through countless difficult battles! - $If I battle with people like that, not only will I get stronger, my Pokémon will, too! - $And we'll get to know each other even better! OK! Brace yourself! - $I'm Iris, the Pokémon League Champion, and I'm going to defeat you!`, - }, - "victory": { - 1: "Aghhhh… I did my best, but we lost…" - }, - "defeat": { - 1: "Yay! We won!" - } - }, - "hau": { - "encounter": { - 1: `I wonder if a Trainer battles differently depending on whether they're from a warm region or a cold region. - $Let's test it out!`, - }, - "victory": { - 1: "That was awesome! I think I kinda understand your vibe a little better now!" - }, - "defeat": { - 1: "Ma-an, that was some kinda battle!" - } - }, - "geeta": { - "encounter": { - 1: `I decided to throw my hat in the ring once more. - $Come now… Show me the fruits of your training.`, - }, - "victory": { - 1: "I eagerly await news of all your achievements!" - }, - "defeat": { - 1: "What's the matter? This isn't all, is it?" - } - }, - "nemona": { - "encounter": { - 1: "Yesss! I'm so psyched! Time for us to let loose!" - }, - "victory": { - 1: "Well, that stinks, but I still had fun! I'll getcha next time!" - }, - "defeat": { - 1: "Well, that was a great battle! Fruitful for sure." - } - }, - "leon": { - "encounter": { - 1: "We're gonna have an absolutely champion time!" - }, - "victory": { - 1: `My time as Champion is over… - $But what a champion time it's been! - $Thank you for the greatest battle I've ever had!`, - }, - "defeat": { - 1: "An absolute champion time, that was!" - } - }, - "whitney": { - "encounter": { - 1: "Hey! Don't you think Pokémon are, like, super cute?" - }, - "victory": { - 1: "Waaah! Waaah! You're so mean!" - }, - "defeat": { - 1: "And that's that!" - } - }, - "chuck": { - "encounter": { - 1: "Hah! You want to challenge me? Are you brave or just ignorant?" - }, - "victory": { - 1: "You're strong! Would you please make me your apprentice?" - }, - "defeat": { - 1: "There. Do you realize how much more powerful I am than you?" - } - }, - "katy": { - "encounter": { - 1: "Don't let your guard down unless you would like to find yourself knocked off your feet!" - }, - "victory": { - 1: "All of my sweet little Pokémon dropped like flies!" - }, - "defeat": { - 1: "Eat up, my cute little Vivillon!" - } - }, - "pryce": { - "encounter": { - 1: "Youth alone does not ensure victory! Experience is what counts." - }, - "victory": { - 1: "Outstanding! That was perfect. Try not to forget what you feel now." - }, - "defeat": { - 1: "Just as I envisioned." - } - }, - "clair": { - "encounter": { - 1: "Do you know who I am? And you still dare to challenge me?" - }, - "victory": { - 1: "I wonder how far you can get with your skill level. This should be fascinating." - }, - "defeat": { - 1: "That's that." - } - }, - "maylene": { - "encounter": { - 1: `I've come to challenge you now, and I won't hold anything back. - $Please prepare yourself for battle!`, - }, - "victory": { - 1: "I admit defeat…" - }, - "defeat": { - 1: "That was awesome." - } - }, - "fantina": { - "encounter": { - 1: `You shall challenge me, yes? But I shall win. - $That is what the Gym Leader of Hearthome does, non?`, - }, - "victory": { - 1: "You are so fantastically strong. I know why I have lost." - }, - "defeat": { - 1: "I am so, so, very happy!" - } - }, - "byron": { - "encounter": { - 1: `Trainer! You're young, just like my son, Roark. - $With more young Trainers taking charge, the future of Pokémon is bright! - $So, as a wall for young people, I'll take your challenge!`, - }, - "victory": { - 1: "Hmm! My sturdy Pokémon--defeated!" - }, - "defeat": { - 1: "Gwahahaha! How were my sturdy Pokémon?!" - } - }, - "olympia": { - "encounter": { - 1: "An ancient custom deciding one's destiny. The battle begins!" - }, - "victory": { - 1: "Create your own path. Let nothing get in your way. Your fate, your future." - }, - "defeat": { - 1: "Our path is clear now." - } - }, - "volkner": { - "encounter": { - 1: `Since you've come this far, you must be quite strong… - $I hope you're the Trainer who'll make me remember how fun it is to battle!`, - }, - "victory": { - 1: `You've got me beat… - $Your desire and the noble way your Pokémon battled for you… - $I even felt thrilled during our match. That was a very good battle.`, - }, - "defeat": { - 1: `It was not shocking at all… - $That is not what I wanted!`, - } - }, - "burgh": { - "encounter": { - 1: `M'hm… If I win this battle, I feel like I can draw a picture unlike any before it. - $OK! I can hear my battle muse loud and clear. Let's get straight to it!`, - 2: `Of course, I'm really proud of all of my Pokémon! - $Well now… Let's get right to it!` - }, - "victory": { - 1: "Is it over? Has my muse abandoned me?", - 2: "Hmm… It's over! You're incredible!" - }, - "defeat": { - 1: "Wow… It's beautiful somehow, isn't it…", - 2: `Sometimes I hear people say something was an ugly win. - $I think if you're trying your best, any win is beautiful.` - } - }, - "elesa": { - "encounter": { - 1: `C'est fini! When I'm certain of that, I feel an electric jolt run through my body! - $I want to feel the sensation, so now my beloved Pokémon are going to make your head spin!`, - }, - "victory": { - 1: "I meant to make your head spin, but you shocked me instead." - }, - "defeat": { - 1: "That was unsatisfying somehow… Will you give it your all next time?" - } - }, - "skyla": { - "encounter": { - 1: `It's finally time for a showdown! That means the Pokémon battle that decides who's at the top, right? - $I love being on the summit! 'Cause you can see forever and ever from high places! - $So, how about you and I have some fun?`, - }, - "victory": { - 1: "Being your opponent in battle is a new source of strength to me. Thank you!" - }, - "defeat": { - 1: "Win or lose, you always gain something from a battle, right?" - } - }, - "brycen": { - "encounter": { - 1: `There is also strength in being with other people and Pokémon. - $Receiving their support makes you stronger. I'll show you this power!`, - }, - "victory": { - 1: "The wonderful combination of you and your Pokémon! What a beautiful friendship!" - }, - "defeat": { - 1: "Extreme conditions really test you and train you!" - } - }, - "drayden": { - "encounter": { - 1: `What I want to find is a young Trainer who can show me a bright future. - $Let's battle with everything we have: your skill, my experience, and the love we've raised our Pokémon with!`, - }, - "victory": { - 1: "This intense feeling that floods me after a defeat… I don't know how to describe it." - }, - "defeat": { - 1: "Harrumph! I know your ability is greater than that!" - } - }, - "grant": { - "encounter": { - 1: `There is only one thing I wish for. - $That by surpassing one another, we find a way to even greater heights.`, - }, - "victory": { - 1: "You are a wall that I am unable to surmount!" - }, - "defeat": { - 1: `Do not give up. - $That is all there really is to it. - $The most important lessons in life are simple.`, - } - }, - "korrina": { - "encounter": { - 1: "Time for Lady Korrina's big appearance!" - }, - "victory": { - 1: "It's your very being that allows your Pokémon to evolve!" - }, - "defeat": { - 1: "What an explosive battle!" - } - }, - "clemont": { - "encounter": { - 1: "Oh! I'm glad that we got to meet!" - }, - "victory": { - 1: "Your passion for battle inspires me!" - }, - "defeat": { - 1: "Looks like my Trainer-Grow-Stronger Machine, Mach 2 is really working!" - } - }, - "valerie": { - "encounter": { - 1: `Oh, if it isn't a young Trainer… It is lovely to get to meet you like this. - $Then I suppose you have earned yourself the right to a battle, as a reward for your efforts. - $The elusive Fairy may appear frail as the breeze and delicate as a bloom, but it is strong.`, - }, - "victory": { - 1: "I hope that you will find things worth smiling about tomorrow…" - }, - "defeat": { - 1: "Oh goodness, what a pity…" - } - }, - "wulfric": { - "encounter": { - 1: `You know what? We all talk big about what you learn from battling and bonds and all that… - $But really, I just do it 'cause it's fun. - $Who cares about the grandstanding? Let's get to battling!`, - }, - "victory": { - 1: "Outstanding! I'm tough as an iceberg, but you smashed me through and through!" - }, - "defeat": { - 1: "Tussle with me and this is what happens!" - } - }, - "kabu": { - "encounter": { - 1: `Every Trainer and Pokémon trains hard in pursuit of victory. - $But that means your opponent is also working hard to win. - $In the end, the match is decided by which side is able to unleash their true potential.`, - }, - "victory": { - 1: "I'm glad I could battle you today!" - }, - "defeat": { - 1: "That's a great way for me to feel my own growth!" - } - }, - "bea": { - "encounter": { - 1: `Do you have an unshakable spirit that won't be moved, no matter how you are attacked? - $I think I'll just test that out, shall I?`, - }, - "victory": { - 1: "I felt the fighting spirit of your Pokémon as you led them in battle." - }, - "defeat": { - 1: "That was the best sort of match anyone could ever hope for." - } - }, - "opal": { - "encounter": { - 1: "Let me have a look at how you and your partner Pokémon behave!" - }, - "victory": { - 1: "Your pink is still lacking, but you're an excellent Trainer with excellent Pokémon." - }, - "defeat": { - 1: "Too bad for you, I guess." - } - }, - "bede": { - "encounter": { - 1: "I suppose I should prove beyond doubt just how pathetic you are and how strong I am." - }, - "victory": { - 1: "I see… Well, that's fine. I wasn't really trying all that hard anyway." - }, - "defeat": { - 1: "Not a bad job, I suppose." - } - }, - "gordie": { - "encounter": { - 1: "So, let's get this over with." - }, - "victory": { - 1: "I just want to climb into a hole… Well, I guess it'd be more like falling from here." - }, - "defeat": { - 1: "Battle like you always do, victory will follow!" - } - }, - "marnie": { - "encounter": { - 1: `The truth is, when all's said and done… I really just wanna become Champion for myself! - $So don't take it personal when I kick your butt!`, - }, - "victory": { - 1: "OK, so I lost… But I got to see a lot of the good points of you and your Pokémon!" - }, - "defeat": { - 1: "Hope you enjoyed our battle tactics." - } - }, - "raihan": { - "encounter": { - 1: "I'm going to defeat the Champion, win the whole tournament, and prove to the world just how strong the great Raihan really is!" - }, - "victory": { - 1: `I look this good even when I lose. - $It's a real curse. - $Guess it's time for another selfie!`, - }, - "defeat": { - 1: "Let's take a selfie to remember this." - } - }, - "brassius": { - "encounter": { - 1: "I assume you are ready? Let our collaborative work of art begin!" - }, - "victory": { - 1: "Ahhh…vant-garde!" - }, - "defeat": { - 1: "I will begin on a new piece at once!" - } - }, - "iono": { - "encounter": { - 1: `How're ya feelin' about this battle? - $... - $Let's get this show on the road! How strong is our challenger? - $I 'unno! Let's find out together!`, - }, - "victory": { - 1: "You're as flashy and bright as a 10,000,000-volt Thunderbolt, friendo!" - }, - "defeat": { - 1: "Your eyeballs are MINE!" - } - }, - "larry": { - "encounter": { - 1: "When all's said and done, simplicity is strongest." - }, - "victory": { - 1: "A serving of defeat, huh?" - }, - "defeat": { - 1: "I'll call it a day." - } - }, - "ryme": { - "encounter": { - 1: "Come on, baby! Rattle me down to the bone!" - }, - "victory": { - 1: "You're cool, my friend—you move my SOUL!" - }, - "defeat": { - 1: "Later, baby!" - } - }, - "grusha": { - "encounter": { - 1: "All I need to do is make sure the power of my Pokémon chills you to the bone!" - }, - "victory": { - 1: "Your burning passion… I kinda like it, to be honest." - }, - "defeat": { - 1: "Things didn't heat up for you." - } - }, - "marnie_elite": { - "encounter": { - 1: "You've made it this far, huh? Let's see if you can handle my Pokémon!", - 2: "I'll give it my best shot, but don't think I'll go easy on you!" - }, - "victory": { - 1: "I can't believe I lost... But you deserved that win. Well done!", - 2: "Looks like I've still got a lot to learn. Great battle, though!" - }, - "defeat": { - 1: "You put up a good fight, but I've got the edge! Better luck next time!", - 2: "Seems like my training's paid off. Thanks for the battle!" - } - }, - "nessa_elite": { - "encounter": { - 1: "The tides are turning in my favor. Ready to get swept away?", - 2: "Let's make some waves with this battle! I hope you're prepared!" - }, - "victory": { - 1: "You navigated those waters perfectly... Well done!", - 2: "Looks like my currents were no match for you. Great job!" - }, - "defeat": { - 1: "Water always finds a way. That was a refreshing battle!", - 2: "You fought well, but the ocean's power is unstoppable!" - } - }, - "bea_elite": { - "encounter": { - 1: "Prepare yourself! My fighting spirit burns bright!", - 2: "Let's see if you can keep up with my relentless pace!" - }, - "victory": { - 1: "Your strength... It's impressive. You truly deserve this win.", - 2: "I've never felt this intensity before. Amazing job!" - }, - "defeat": { - 1: "Another victory for my intense training regimen! Well done!", - 2: "You've got strength, but I trained harder. Great battle!" - } - }, - "allister_elite": { - "encounter": { - 1: "Shadows fall... Are you ready to face your fears?", - 2: "Let's see if you can handle the darkness that I command." - }, - "victory": { - 1: "You've dispelled the shadows... For now. Well done.", - 2: "Your light pierced through my darkness. Great job." - }, - "defeat": { - 1: "The shadows have spoken... Your strength isn't enough.", - 2: "Darkness triumphs... Maybe next time you'll see the light." - } - }, - "raihan_elite": { - "encounter": { - 1: "Storm's brewing! Let's see if you can weather this fight!", - 2: "Get ready to face the eye of the storm!" - }, - "victory": { - 1: "You've bested the storm... Incredible job!", - 2: "You rode the winds perfectly... Great battle!" - }, - "defeat": { - 1: "Another storm weathered, another victory claimed! Well fought!", - 2: "You got caught in my storm! Better luck next time!" - } - }, - "alder": { - "encounter": { - 1: "Prepare yourself for a match against the strongest Trainer in Unova!" - }, - "victory": { - 1: "Well done! You certainly are an unmatched talent." - }, - "defeat": { - 1: `A fresh wind blows through my heart... - $What an extraordinary effort!` - } - }, - "kieran": { - "encounter": { - 1: `Through hard work, I become stronger and stronger! - $I don't lose.` - }, - "victory": { - 1: `I don't believe it... - $What a fun and heart-pounding battle!` - }, - "defeat": { - 1: `Wowzers, what a battle! - $Time for you to train even harder.` - } - }, - "rival": { - "encounter": { - 1: `@c{smile}Hey, I was looking for you! I knew you were eager to get going but I expected at least a goodbye… - $@c{smile_eclosed}So you're really pursuing your dream after all?\n I almost can't believe it. - $@c{serious_smile_fists}Since we're here, how about a battle?\nAfter all, I want to make sure you're ready. - $@c{serious_mopen_fists}Don't hold back, I want you to give me everything you've got!` - }, - "victory": { - 1: `@c{shock}Wow… You cleaned me out.\nAre you actually a beginner? - $@c{smile}Maybe it was a bit of luck but…\nWho knows you might just be able to go all the way. - $By the way, the professor asked me to give you these items. They look pretty cool. - $@c{serious_smile_fists}Good luck out there! - $@c{smile}Oh- and I hope you enjoy the event!` - }, - }, - "rival_female": { - "encounter": { - 1: `@c{smile_wave}There you are! I've been looking everywhere for you!\n@c{angry_mopen}Did you forget to say goodbye to your best friend? - $@c{smile_ehalf}You're going after your dream, huh?\nThat day is really today isn't it… - $@c{smile}Anyway, I'll forgive you for forgetting me, but on one condition. @c{smile_wave_wink}You have to battle me! - $@c{angry_mopen}Give it your all! Wouldn't want your adventure to be over before it started, right?` - }, - "victory": { - 1: `@c{shock}You just started and you're already this strong?!@d{96}\n@c{angry}You totally cheated, didn't you? - $@c{smile_wave_wink}Just kidding!@d{64} @c{smile_eclosed}I lost fair and square… I have a feeling you're going to do really well out there. - $@c{smile}By the way, the professor wanted me to give you some items. Hopefully they're helpful! - $@c{smile_wave}Do your best like always! I believe in you! - $@c{smile}Oh- and I hope you enjoy the event!` - }, - }, - "rival_2": { - "encounter": { - 1: `@c{smile}Hey, you're here too?\n@c{smile_eclosed}Still a perfect record, huh…? - $@c{serious_mopen_fists}I know it kind of looks like I followed you here, but that's mostly not true. - $@c{serious_smile_fists}Honestly though, I've been itching for a rematch since you beat me back at home. - $I've been doing a lot of my own training so I'll definitely put up a fight this time. - $@c{serious_mopen_fists}Don't hold back, just like before!\nLet's go!` - }, - "victory": { - 1: `@c{neutral_eclosed}Oh. I guess I was overconfident. - $@c{smile}That's alright, though. I figured this might happen.\n@c{serious_mopen_fists}It just means I need to try harder for next time!\n - $@c{smile}Oh, not that you really need the help, but I had an extra one of these lying around and figured you might want it.\n - $@c{serious_smile_fists}Don't expect another one after this, though!\nI can't keep giving my opponent an advantage after all. - $@c{smile}Anyway, take care, and enjoy the event!` - }, - }, - "rival_2_female": { - "encounter": { - 1: `@c{smile_wave}Oh, fancy meeting you here. Looks like you're still undefeated. @c{angry_mopen}Huh… Not bad! - $@c{angry_mopen}I know what you're thinking, and no, I wasn't creeping on you. @c{smile_eclosed}I just happened to be in the area. - $@c{smile_ehalf}I'm happy for you but I just want to let you know that it's OK to lose sometimes. - $@c{smile}We learn from our mistakes, often more than we would if we kept succeeding. - $@c{angry_mopen}In any case, I've been training hard for our rematch, so you'd better give it your all!` - }, - "victory": { - 1: `@c{neutral}I… wasn't supposed to lose that time… - $@c{smile}Aw well. That just means I'll have to train even harder for next time! - $@c{smile_wave}I also got you another one of these!\n@c{smile_wave_wink}No need to thank me~. - $@c{angry_mopen}This is the last one, though! You won't be getting anymore freebies from me after this! - $@c{smile_wave}Keep at it, and enjoy the event!` - }, - "defeat": { - 1: "It's OK to lose sometimes…" - } - }, - "rival_3": { - "encounter": { - 1: `@c{smile}Hey, look who it is! It's been a while.\n@c{neutral}You're… still undefeated? Huh. - $@c{neutral_eclosed}Things have been kind of… strange.\nIt's not the same back home without you. - $@c{serious}I know it's selfish, but I need to get this off my chest.\n@c{neutral_eclosed}I think you're in over your head here. - $@c{serious}Never losing once is just unrealistic.\nWe need to lose sometimes in order to grow. - $@c{neutral_eclosed}You've had a great run but there's still so much ahead, and it only gets harder. @c{neutral}Are you prepared for that? - $@c{serious_mopen_fists}If so, prove it to me.` - }, - "victory": { - 1: "@c{angry_mhalf}This is ridiculous… I've hardly stopped training…\nHow are we still so far apart?" - }, - }, - "rival_3_female": { - "encounter": { - 1: `@c{smile_wave}Long time no see! Still haven't lost, huh.\n@c{angry}You're starting to get on my nerves. @c{smile_wave_wink}Just kidding! - $@c{smile_ehalf}But really, don't you miss home by now? Or… me?\nI… I mean, we've really missed you. - $@c{smile_eclosed}I support you in your dream and everything, but the reality is you're going to lose sooner or later. - $@c{smile}And when you do, I'll be there for you like always.\n@c{angry_mopen}Now, let me show you how strong I've become!` - }, - "victory": { - 1: "@c{shock}After all that… it wasn't enough…?\nYou'll never come back at this rate…" - - }, - "defeat": { - 1: "You gave it your best, now let's go home." - } - }, - "rival_4": { - "encounter": { - 1: `@c{neutral}Hey. - $I won't mince words or pleasantries with you.\n@c{neutral_eclosed}I'm here to win, plain and simple. - $@c{serious_mhalf_fists}I've learned to maximize my potential by putting all my time into training. - $@c{smile}You get a lot of extra time when you cut out the unnecessary sleep and social interaction. - $@c{serious_mopen_fists}None of that matters anymore, not until I win. - $@c{neutral_eclosed}I've even reached the point where I don't lose anymore.\n@c{smile_eclosed}I suppose your philosophy wasn't so wrong after all. - $@c{angry_mhalf}Losing is for the weak, and I'm not weak anymore. - $@c{serious_mopen_fists}Prepare yourself.` - }, - "victory": { - 1: "@c{neutral}What…@d{64} What are you?" - }, - }, - "rival_4_female": { - "encounter": { - 1: `@c{neutral}It's me! You didn't forget about me again… did you? - $@c{smile}You should be proud of how far you made it. Congrats!\nBut it looks like it's the end of your journey. - $@c{smile_eclosed}You've awoken something in me I never knew was there.\nIt seems like all I do now is train. - $@c{smile_ehalf}I hardly even eat or sleep now, I just train my Pokémon all day, getting stronger every time. - $@c{neutral}In fact, I… hardly recognize myself. - $And now, I've finally reached peak performance.\nI don't think anyone could beat me now. - $And you know what? It's all because of you.\n@c{smile_ehalf}I don't know whether to thank you or hate you. - $@c{angry_mopen}Prepare yourself.` - }, - "victory": { - 1: "@c{neutral}What…@d{64} What are you?" - - }, - "defeat": { - 1: "$@c{smile}You should be proud of how far you made it." - } - }, - "rival_5": { - "encounter": { - 1: "@c{neutral}…" - }, - "victory": { - 1: "@c{neutral}…" - }, - }, - "rival_5_female": { - "encounter": { - 1: "@c{neutral}…" - }, - "victory": { - 1: "@c{neutral}…" - - }, - "defeat": { - 1: "$@c{smile_ehalf}…" - } - }, - "rival_6": { - "encounter": { - 1: `@c{smile_eclosed}We meet again. - $@c{neutral}I've had some time to reflect on all this.\nThere's a reason this all seems so strange. - $@c{neutral_eclosed}Your dream, my drive to beat you…\nIt's all a part of something greater. - $@c{serious}This isn't about me, or about you… This is about the world, @c{serious_mhalf_fists}and it's my purpose to push you to your limits. - $@c{neutral_eclosed}Whether I've fulfilled that purpose I can't say, but I've done everything in my power. - $@c{neutral}This place we ended up in is terrifying… Yet somehow I feel unphased, like I've been here before. - $@c{serious_mhalf_fists}You feel the same, don't you? - $@c{serious}…and it's like something here is speaking to me.\nThis is all the world's known for a long time now. - $Those times we cherished together that seem so recent are nothing but a distant memory. - $@c{neutral_eclosed}Who can say whether they were ever even real in the first place. - $@c{serious_mopen_fists}You need to keep pushing, because if you don't, it will never end. You're the only one who can do this. - $@c{serious_smile_fists}I hardly know what any of this means, I just know that it's true. - $@c{serious_mopen_fists}If you can't defeat me here and now, you won't stand a chance.` - }, - "victory": { - 1: `@c{smile_eclosed}It looks like my work is done here. - $I want you to promise me one thing.\n@c{smile}After you heal the world, please come home.` - }, - }, - "rival_6_female": { - "encounter": { - 1: `@c{smile_ehalf}So it's just us again. - $@c{smile_eclosed}You know, I keep going around and around in my head… - $@c{smile_ehalf}There's something to all this, why everything seems so strange now… - $@c{smile}You have your dream, and I have this ambition in me… - $I just can't help but feel there's a greater purpose to all this, to what we're doing, you and I. - $@c{smile_eclosed}I think I'm supposed to push you… to your limits. - $@c{smile_ehalf}I'm not sure if I've been doing a good job at that, but I've tried my best up to now. - $It's something about this strange and dreadful place… Everything seems so clear… - $This… is all the world's known for a long time now. - $@c{smile_eclosed}It's like I can barely remember the memories we cherished together. - $@c{smile_ehalf}Were they even real? They seem so far away now… - $@c{angry_mopen}You need to keep pushing, because if you don't, it will never end. You're the only one who can do this. - $@c{smile_ehalf}I… don't know what all this means… but I feel it's true. - $@c{neutral}If you can't defeat me here and now, you won't stand a chance.` - }, - "victory": { - 1: `@c{smile_ehalf}I… I think I fulfilled my purpose… - $@c{smile_eclosed}Promise me… After you heal the world… Please… come home safe. - $@c{smile_ehalf}…Thank you.` - - }, - }, -}; - - -// Dialogue of the NPCs in the game when the player character is female. For languages that do not have gendered pronouns, this can be set to PGMdialogue. -export const PGFdialogue: DialogueTranslationEntries = PGMdialogue; - -// Dialogue of the endboss of the game when the player character is male (Or unset) -export const PGMbattleSpecDialogue: SimpleTranslationEntries = { - "encounter": `It appears the time has finally come once again.\nYou know why you have come here, do you not? - $You were drawn here, because you have been here before.\nCountless times. - $Though, perhaps it can be counted.\nTo be precise, this is in fact your 5,643,853rd cycle. - $Each cycle your mind reverts to its former state.\nEven so, somehow, remnants of your former selves remain. - $Until now you have yet to succeed, but I sense a different presence in you this time.\n - $You are the only one here, though it is as if there is… another. - $Will you finally prove a formidable challenge to me?\nThe challenge I have longed for for millennia? - $We begin.`, - "firstStageWin": `I see. The presence I felt was indeed real.\nIt appears I no longer need to hold back. - $Do not disappoint me.`, - "secondStageWin": "…Magnificent." -}; - -// Dialogue of the endboss of the game when the player character is female. For languages that do not have gendered pronouns, this can be set to PGMbattleSpecDialogue. -export const PGFbattleSpecDialogue: SimpleTranslationEntries = PGMbattleSpecDialogue; - -// Dialogue that does not fit into any other category (e.g. tutorial messages, or the end of the game). For when the player character is male -export const PGMmiscDialogue: SimpleTranslationEntries = { - "ending": - `@c{smile}Oh? You won?@d{96} @c{smile_eclosed}I guess I should've known.\nBut, you're back now. - $@c{smile}It's over.@d{64} You ended the loop. - $@c{serious_smile_fists}You fulfilled your dream too, didn't you?\nYou didn't lose even once. - $@c{neutral}I'm the only one who'll remember what you did.@d{96}\nI guess that's okay, isn't it? - $@c{serious_smile_fists}Your legend will always live on in our hearts. - $@c{smile_eclosed}Anyway, I've had about enough of this place, haven't you? Let's head home. - $@c{serious_smile_fists}Maybe when we get back, we can have another battle?\nIf you're up to it.`, - "ending_female": - `@c{shock}You're back?@d{32} Does that mean…@d{96} you won?!\n@c{smile_ehalf}I should have known you had it in you. - $@c{smile_eclosed}Of course… I always had that feeling.\n@c{smile}It's over now, right? You ended the loop. - $@c{smile_ehalf}You fulfilled your dream too, didn't you?\nYou didn't lose even once. - $I'll be the only one to remember what you did.\n@c{angry_mopen}I'll try not to forget! - $@c{smile_wave_wink}Just kidding!@d{64} @c{smile}I'd never forget.@d{32}\nYour legend will live on in our hearts. - $@c{smile_wave}Anyway,@d{64} it's getting late…@d{96} I think?\nIt's hard to tell in this place. - $Let's go home. @c{smile_wave_wink}Maybe tomorrow, we can have another battle, for old time's sake?`, - "ending_endless": "Congratulations on reaching the current end!\nMore content is coming soon.", - "ending_name": "Devs" -}; -// Dialogue that does not fit into any other category (e.g. tutorial messages, or the end of the game). For when the player character is female. For languages that do not have gendered pronouns, this can be set to PGMmiscDialogue. -export const PGFmiscDialogue: SimpleTranslationEntries = PGMmiscDialogue; - - -// Dialogue of the named double battles in the game. For when the player is male (or unset). -export const PGMdoubleBattleDialogue: DialogueTranslationEntries = { - "blue_red_double": { - "encounter": { - 1: `Blue: Hey Red, let's show them what we're made of! - $Red: ... - $Blue: This is Pallet Town Power!`, - }, - "victory": { - 1: `Blue: That was a great battle! - $Red: ...`, - }, - }, - "red_blue_double": { - "encounter": { - 1: `Red: ...! - $Blue: He never talks much. - $Blue: But dont let that fool you! He is a champ after all!`, - }, - "victory": { - 1: `Red: ...! - $Blue: Next time we will beat you!`, - }, - }, - "tate_liza_double": { - "encounter": { - 1: `Tate: Are you surprised? - $Liza: We are two gym leaders at once! - $Tate: We are twins! - $Liza: We dont need to talk to understand each other! - $Tate: Twice the power... - $Liza: Can you handle it?`, - }, - "victory": { - 1: `Tate: What? Our combination was perfect! - $Liza: Looks like we need to train more...`, - }, - }, - "liza_tate_double": { - "encounter": { - 1: `Liza: Hihihi... Are you surprised? - $Tate: Yes, we are really two gym leaders at once! - $Liza: This is my twin brother Tate! - $Tate: And this is my twin sister Liza! - $Liza: Don't you think we are a perfect combination?` - }, - "victory": { - 1: `Liza: Are we... - $Tate: ...not as strong as we thought?`, - }, - }, - "wallace_steven_double": { - "encounter": { - 1: `Steven: Wallace, let's show them the power of the champions! - $Wallace: We will show you the power of Hoenn! - $Steven: Let's go!`, - }, - "victory": { - 1: `Steven: That was a great battle! - $Wallace: We will win next time!`, - }, - }, - "steven_wallace_double": { - "encounter": { - 1: `Steven: Do you have any rare Pokémon? - $Wallace: Steven... We are here for a battle, not to show off our Pokémon. - $Steven: Oh... I see... Let's go then!`, - }, - "victory": { - 1: `Steven: Now that we are done with the battle, let's show off our Pokémon! - $Wallace: Steven...`, - }, - }, - "alder_iris_double": { - "encounter": { - 1: `Alder: We are the strongest trainers in Unova! - $Iris: Fights against strong trainers are the best!`, - }, - "victory": { - 1: `Alder: Wow! You are super strong! - $Iris: We will win next time!`, - }, - }, - "iris_alder_double": { - "encounter": { - 1: `Iris: Welcome Challenger! I am THE Unova Champion! - $Alder: Iris, aren't you a bit too excited?`, - }, - "victory": { - 1: `Iris: A loss like this is not easy to take... - $Alder: But we will only get stronger with every loss!`, - }, - }, - "piers_marnie_double": { - "encounter": { - 1: `Marnie: Brother, let's show them the power of Spikemuth! - $Piers: We bring darkness!`, - }, - "victory": { - 1: `Marnie: You brought light to our darkness! - $Piers: Its too bright...`, - }, - }, - "marnie_piers_double": { - "encounter": { - 1: `Piers: Ready for a concert? - $Marnie: Brother... They are here to fight, not to sing...`, - }, - "victory": { - 1: `Piers: Now that was a great concert! - $Marnie: Brother...`, - }, - }, -}; - -// Dialogue of the named double battles in the game. For when the player is female. For languages that do not have gendered pronouns, this can be set to PGMdoubleBattleDialogue. -export const PGFdoubleBattleDialogue: DialogueTranslationEntries = PGMdoubleBattleDialogue; diff --git a/src/locales/ja/egg.ts b/src/locales/ja/egg.json similarity index 89% rename from src/locales/ja/egg.ts rename to src/locales/ja/egg.json index 962abfb133a..b0cb7b7de61 100644 --- a/src/locales/ja/egg.ts +++ b/src/locales/ja/egg.json @@ -1,6 +1,4 @@ -import { SimpleTranslationEntries } from "#app/interfaces/locales"; - -export const egg: SimpleTranslationEntries = { +{ "egg": "タマゴ", "greatTier": "レア", "ultraTier": "超レア", @@ -24,5 +22,5 @@ export const egg: SimpleTranslationEntries = { "rareEggMoveUnlock": "レアなタマゴわざ {{moveName}}を おぼえた!!", "moveUPGacha": "わざ UP!", "shinyUPGacha": "色違い UP!", - "legendaryUPGacha": "UP!", -} as const; + "legendaryUPGacha": "UP!" +} \ No newline at end of file diff --git a/src/locales/ja/fight-ui-handler.json b/src/locales/ja/fight-ui-handler.json new file mode 100644 index 00000000000..2318cebd2d3 --- /dev/null +++ b/src/locales/ja/fight-ui-handler.json @@ -0,0 +1,7 @@ +{ + "pp": "PP", + "power": "いりょく", + "accuracy": "めいちゅう", + "abilityFlyInText": " {{pokemonName}}の {{passive}}{{abilityName}}", + "passive": "Passive " +} \ No newline at end of file diff --git a/src/locales/ja/fight-ui-handler.ts b/src/locales/ja/fight-ui-handler.ts deleted file mode 100644 index f1f6bdb9575..00000000000 --- a/src/locales/ja/fight-ui-handler.ts +++ /dev/null @@ -1,9 +0,0 @@ -import { SimpleTranslationEntries } from "#app/interfaces/locales"; - -export const fightUiHandler: SimpleTranslationEntries = { - "pp": "PP", - "power": "いりょく", - "accuracy": "めいちゅう", - "abilityFlyInText": " {{pokemonName}}の {{passive}}{{abilityName}}", - "passive": "Passive ", // The space at the end is important -} as const; diff --git a/src/locales/ja/filter-bar.ts b/src/locales/ja/filter-bar.json similarity index 89% rename from src/locales/ja/filter-bar.ts rename to src/locales/ja/filter-bar.json index 9900cb02800..c09705d9b50 100644 --- a/src/locales/ja/filter-bar.ts +++ b/src/locales/ja/filter-bar.json @@ -1,6 +1,4 @@ -import { SimpleTranslationEntries } from "#app/interfaces/locales"; - -export const filterBar: SimpleTranslationEntries = { +{ "genFilter": "世代", "typeFilter": "タイプ", "caughtFilter": "捕獲", @@ -36,5 +34,5 @@ export const filterBar: SimpleTranslationEntries = { "sortByCost": "ポイント", "sortByCandies": "飴の数", "sortByIVs": "個体値", - "sortByName": "名前", -}; + "sortByName": "名前" +} \ No newline at end of file diff --git a/src/locales/ja/game-mode.ts b/src/locales/ja/game-mode.json similarity index 50% rename from src/locales/ja/game-mode.ts rename to src/locales/ja/game-mode.json index 4d1e861ced7..36559e5cce3 100644 --- a/src/locales/ja/game-mode.ts +++ b/src/locales/ja/game-mode.json @@ -1,10 +1,8 @@ -import { SimpleTranslationEntries } from "#app/interfaces/locales"; - -export const gameMode: SimpleTranslationEntries = { +{ "classic": "クラシック", "endless": "エンドレス", "endlessSpliced": "エンドレス (Spliced)", "dailyRun": "デイリーラン", "unknown": "Unknown", - "challenge": "チャレンジ", -} as const; + "challenge": "チャレンジ" +} \ No newline at end of file diff --git a/src/locales/ja/game-stats-ui-handler.json b/src/locales/ja/game-stats-ui-handler.json new file mode 100644 index 00000000000..25bb21f701a --- /dev/null +++ b/src/locales/ja/game-stats-ui-handler.json @@ -0,0 +1,42 @@ +{ + "stats": "統計", + "playTime": "プレー時間", + "totalBattles": "合計バトル数", + "starters": "スターター数", + "shinyStarters": "色違いスターター数", + "speciesSeen": "合計発見数", + "speciesCaught": "合計捕獲数", + "ribbonsOwned": "リボン数", + "classicRuns": "クラシックラン", + "classicWins": "クラシック勝利", + "dailyRunAttempts": "デイリーラン", + "dailyRunWins": "デイリーラン勝利", + "endlessRuns": "エンドレスラン", + "highestWaveEndless": "エンドレス最高ウェーブ", + "highestMoney": "最大貯金", + "highestDamage": "最大ダメージ", + "highestHPHealed": "最大HP回復", + "pokemonEncountered": "遭遇したポケモン", + "pokemonDefeated": "倒したポケモン", + "pokemonCaught": "捕まえたポケモン", + "eggsHatched": "ふかしたタマゴ", + "subLegendsSeen": "見つけた順伝説", + "subLegendsCaught": "捕まえた順伝説", + "subLegendsHatched": "ふかした順伝説", + "legendsSeen": "見つけた伝説", + "legendsCaught": "捕まえた伝説", + "legendsHatched": "ふかした伝説", + "mythicalsSeen": "見つけた幻ポケモン", + "mythicalsCaught": "捕まえた幻ポケモン", + "mythicalsHatched": "ふかした幻ポケモン", + "shiniesSeen": "見つけた色違い", + "shiniesCaught": "捕まえた色違い", + "shiniesHatched": "ふかした色違い", + "pokemonFused": "合体したポケモン", + "trainersDefeated": "倒したトレーナー", + "eggsPulled": "引いたタマゴ", + "rareEggsPulled": "引いたレアタマゴ", + "epicEggsPulled": "引いた超レアタマゴ", + "legendaryEggsPulled": "引いた伝説タマゴ", + "manaphyEggsPulled": "引いたマナフィタマゴ" +} \ No newline at end of file diff --git a/src/locales/ja/game-stats-ui-handler.ts b/src/locales/ja/game-stats-ui-handler.ts deleted file mode 100644 index a29eaf5d1b6..00000000000 --- a/src/locales/ja/game-stats-ui-handler.ts +++ /dev/null @@ -1,44 +0,0 @@ -import { SimpleTranslationEntries } from "#app/interfaces/locales"; - -export const gameStatsUiHandler: SimpleTranslationEntries = { - "stats": "Stats", - "playTime": "Play Time", - "totalBattles": "Total Battles", - "starters": "Starters", - "shinyStarters": "Shiny Starters", - "speciesSeen": "Species Seen", - "speciesCaught": "Species Caught", - "ribbonsOwned": "Ribbons Owned", - "classicRuns": "Classic Runs", - "classicWins": "Classic Wins", - "dailyRunAttempts": "Daily Run Attempts", - "dailyRunWins": "Daily Run Wins", - "endlessRuns": "Endless Runs", - "highestWaveEndless": "Highest Wave (Endless)", - "highestMoney": "Highest Money", - "highestDamage": "Highest Damage", - "highestHPHealed": "Highest HP Healed", - "pokemonEncountered": "Pokémon Encountered", - "pokemonDefeated": "Pokémon Defeated", - "pokemonCaught": "Pokémon Caught", - "eggsHatched": "Eggs Hatched", - "subLegendsSeen": "Sub-Legends Seen", - "subLegendsCaught": "Sub-Legends Caught", - "subLegendsHatched": "Sub-Legends Hatched", - "legendsSeen": "Legends Seen", - "legendsCaught": "Legends Caught", - "legendsHatched": "Legends Hatched", - "mythicalsSeen": "Mythicals Seen", - "mythicalsCaught": "Mythicals Caught", - "mythicalsHatched": "Mythicals Hatched", - "shiniesSeen": "Shinies Seen", - "shiniesCaught": "Shinies Caught", - "shiniesHatched": "Shinies Hatched", - "pokemonFused": "Pokémon Fused", - "trainersDefeated": "Trainers Defeated", - "eggsPulled": "Eggs Pulled", - "rareEggsPulled": "Rare Eggs Pulled", - "epicEggsPulled": "Epic Eggs Pulled", - "legendaryEggsPulled": "Legendary Eggs Pulled", - "manaphyEggsPulled": "Manaphy Eggs Pulled", -} as const; diff --git a/src/locales/ja/growth.ts b/src/locales/ja/growth.json similarity index 61% rename from src/locales/ja/growth.ts rename to src/locales/ja/growth.json index fa79e093ef0..3d23fa1f46d 100644 --- a/src/locales/ja/growth.ts +++ b/src/locales/ja/growth.json @@ -1,10 +1,8 @@ -import { SimpleTranslationEntries } from "#app/interfaces/locales"; - -export const growth: SimpleTranslationEntries = { +{ "Erratic": "60まんタイプ", "Fast": "80まんタイプ", "Medium_Fast": "100まんタイプ", "Medium_Slow": "105まんタイプ", "Slow": "125まんタイプ", "Fluctuating": "164まんタイプ" -} as const; +} \ No newline at end of file diff --git a/src/locales/ja/menu-ui-handler.json b/src/locales/ja/menu-ui-handler.json new file mode 100644 index 00000000000..beb014b84a9 --- /dev/null +++ b/src/locales/ja/menu-ui-handler.json @@ -0,0 +1,26 @@ +{ + "GAME_SETTINGS": "設定", + "ACHIEVEMENTS": "実績", + "STATS": "統計", + "EGG_LIST": "タマゴリスト", + "EGG_GACHA": "タマゴガチャ", + "MANAGE_DATA": "データ管理", + "COMMUNITY": "コミュニティ", + "SAVE_AND_QUIT": "保存して終了", + "LOG_OUT": "ログアウト", + "slot": "スロット {{slotNumber}}", + "importSession": "セッションのインポート", + "importSlotSelect": "インポート先の スロットを 選んでください", + "exportSession": "セッションのエクスポート", + "exportSlotSelect": "エクスポート元の スロットを 選んでください", + "importData": "データのインポート", + "exportData": "データのエクスポート", + "consentPreferences": "同意設定", + "linkDiscord": "Discord連携", + "unlinkDiscord": "Discord連携解除", + "linkGoogle": "Google連携", + "unlinkGoogle": "Google連携解除", + "cancel": "キャンセル", + "losingProgressionWarning": "戦闘開始からの データが 保存されません。\nよろしいですか?", + "noEggs": "現在 タマゴを ふかしていません!" +} \ No newline at end of file diff --git a/src/locales/ja/menu-ui-handler.ts b/src/locales/ja/menu-ui-handler.ts deleted file mode 100644 index 5923052cb62..00000000000 --- a/src/locales/ja/menu-ui-handler.ts +++ /dev/null @@ -1,29 +0,0 @@ -import { SimpleTranslationEntries } from "#app/interfaces/locales"; - -export const menuUiHandler: SimpleTranslationEntries = { - "GAME_SETTINGS": "せってい", - "ACHIEVEMENTS": "じっせき", - "STATS": "とうけい", - "VOUCHERS": "クーポン", - "EGG_LIST": "タマゴリスト", - "EGG_GACHA": "タマゴガチャ", - "MANAGE_DATA": "データかんり", - "COMMUNITY": "コミュニティ", - "SAVE_AND_QUIT": "Save and Quit", - "LOG_OUT": "ログアウト", - "slot": "スロット {{slotNumber}}", - "importSession": "セッションのインポート", - "importSlotSelect": "Select a slot to import to.", - "exportSession": "セッションのエクスポート", - "exportSlotSelect": "Select a slot to export from.", - "importData": "データのインポート", - "exportData": "データのエクスポート", - "consentPreferences": "Consent Preferences", - "linkDiscord": "Link Discord", - "unlinkDiscord": "Unlink Discord", - "linkGoogle": "Link Google", - "unlinkGoogle": "Unlink Google", - "cancel": "キャンセル", - "losingProgressionWarning": "You will lose any progress since the beginning of the battle. Proceed?", - "noEggs": "You are not hatching\nany eggs at the moment!", -} as const; diff --git a/src/locales/ja/menu.ts b/src/locales/ja/menu.json similarity index 60% rename from src/locales/ja/menu.ts rename to src/locales/ja/menu.json index a3ede68be79..ce6f9ae0672 100644 --- a/src/locales/ja/menu.ts +++ b/src/locales/ja/menu.json @@ -1,19 +1,8 @@ -import { SimpleTranslationEntries } from "#app/interfaces/locales"; - -/** - * The menu namespace holds most miscellaneous text that isn't directly part of the game's - * contents or directly related to Pokemon data. This includes menu navigation, settings, - * account interactions, descriptive text, etc. - */ -export const menu: SimpleTranslationEntries = { +{ "cancel": "キャンセル", "continue": "つづきから", - "dailyRun": "Daily Run (Beta)", "loadGame": "ロードセーブ", "newGame": "はじめから", - "settings": "Settings", - "selectGameMode": "Select a game mode.", - "logInOrCreateAccount": "Log in or create an account to start. No email required!", "username": "ユーザーめい", "password": "パスワード", "login": "ログイン", @@ -37,26 +26,13 @@ export const menu: SimpleTranslationEntries = { "boyOrGirl": "おとこのこ?\nそれとも おんなのこ?", "evolving": "…おや!?\n{{pokemonName}}のようすが…!", "stoppedEvolving": "{{pokemonName}}のへんかがとまった", - "pauseEvolutionsQuestion": "Would you like to pause evolutions for {{pokemonName}}?\nEvolutions can be re-enabled from the party screen.", - "evolutionsPaused": "Evolutions have been paused for {{pokemonName}}.", "evolutionDone": "おめでとう!\n{{pokemonName}}は{{evolvedPokemonName}}にしんかした!", "dailyRankings": "ほんじつのランキング", "weeklyRankings": "しゅうのランキング", "noRankings": "ランキングなし", "positionIcon": "#", - "usernameScoreboard": "Username", - "score": "Score", - "wave": "Wave", "loading": "よみこみちゅう…", - "loadingAsset": "Loading asset: {{assetName}}", "playersOnline": "オンラインのプレイヤー", - "yes":"はい", - "no":"いいえ", - "disclaimer": "DISCLAIMER", - "disclaimerDescription": "This game is an unfinished product; it might have playability issues (including the potential loss of save data),\n change without notice, and may or may not be updated further or completed.", - "choosePokemon": "Choose a Pokémon.", - "renamePokemon": "Rename Pokémon", - "rename": "Rename", - "nickname": "Nickname", - "errorServerDown": "Oops! There was an issue contacting the server.\n\nYou may leave this window open,\nthe game will automatically reconnect.", -} as const; + "yes": "はい", + "no": "いいえ" +} \ No newline at end of file diff --git a/src/locales/ja/modifier-select-ui-handler.json b/src/locales/ja/modifier-select-ui-handler.json new file mode 100644 index 00000000000..9370f01491e --- /dev/null +++ b/src/locales/ja/modifier-select-ui-handler.json @@ -0,0 +1,12 @@ +{ + "transfer": "アイテム移行", + "reroll": "選択肢変更", + "lockRarities": "レア度の固定", + "checkTeam": "チームを確認", + "transferDesc": "ポケモンの 手持ちアイテムを 移行する", + "rerollDesc": "お金を 使って アイテムの 選択肢を 変更する", + "lockRaritiesDesc": "選択肢を 変更するときの レア度を 固定する\n(選択肢変更金額を影響する)", + "checkTeamDesc": "チームの 状態を 確認する\nフォルムチェンジアイテムを 有効・無効にする", + "rerollCost": "{{formattedMoney}}円", + "itemCost": "{{formattedMoney}}円" +} diff --git a/src/locales/ja/modifier-select-ui-handler.ts b/src/locales/ja/modifier-select-ui-handler.ts deleted file mode 100644 index 75299a08ba7..00000000000 --- a/src/locales/ja/modifier-select-ui-handler.ts +++ /dev/null @@ -1,14 +0,0 @@ -import { SimpleTranslationEntries } from "#app/interfaces/locales"; - -export const modifierSelectUiHandler: SimpleTranslationEntries = { - "transfer": "Transfer", - "reroll": "Reroll", - "lockRarities": "Lock Rarities", - "checkTeam": "Check Team", - "transferDesc": "Transfer a held item from one Pokémon to another.", - "rerollDesc": "Spend money to reroll your item options.", - "lockRaritiesDesc": "Lock item rarities on reroll (affects reroll cost).", - "checkTeamDesc": "Check your team or use a form changing item.", - "rerollCost": "₽{{formattedMoney}}", - "itemCost": "₽{{formattedMoney}}" -} as const; diff --git a/src/locales/ja/modifier-type.json b/src/locales/ja/modifier-type.json new file mode 100644 index 00000000000..6effb1d9d82 --- /dev/null +++ b/src/locales/ja/modifier-type.json @@ -0,0 +1,572 @@ +{ + "ModifierType": { + "AddPokeballModifierType": { + "name": "{{modifierCount}}x {{pokeballName}}", + "description": "{{pokeballName}} x{{modifierCount}}こ てにいれる (インベントリ: {{pokeballAmount}}) \nほそくりつ: {{catchRate}}" + }, + "AddVoucherModifierType": { + "name": "{{modifierCount}}x {{voucherTypeName}}", + "description": "{{voucherTypeName}} x{{modifierCount}}こ てにいれる" + }, + "PokemonHeldItemModifierType": { + "extra": { + "inoperable": "{{pokemonName}} はこのアイテムを\nもつことができません!", + "tooMany": "{{pokemonName}} はこのアイテムを\nもちすぎています!" + } + }, + "PokemonHpRestoreModifierType": { + "description": "ポケモンの HPを {{restorePoints}} または {{restorePercent}}%のどちらか たかいほうを かいふくする", + "extra": { + "fully": "ポケモンのHPをすべてかいふくする", + "fullyWithStatus": "ポケモンの HPと じょうたいいじょうを かいふくする" + } + }, + "PokemonReviveModifierType": { + "description": "ひんしになってしまったポケモンの HP {{restorePercent}}%を かいふくする" + }, + "PokemonStatusHealModifierType": { + "description": "すべてのじょうたいいじょうを なおす" + }, + "PokemonPpRestoreModifierType": { + "description": "ポケモンが おぼえている わざの PPを {{restorePoints}}ずつ かいふくする", + "extra": { + "fully": "ポケモンが おぼえている わざの PPを すべて かいふくする" + } + }, + "PokemonAllMovePpRestoreModifierType": { + "description": "ポケモンが おぼえている 4つの わざの PPを {{restorePoints}}ずつ かいふくする", + "extra": { + "fully": "ポケモンが おぼえている 4つの わざの PPを すべて かいふくする" + } + }, + "PokemonPpUpModifierType": { + "description": "ポケモンのわざのさいだいPPを さいだいPP 5ごとに {{upPoints}} ポイントずつ ふやします(さいだい3)" + }, + "PokemonNatureChangeModifierType": { + "name": "{{natureName}} Mint", + "description": "ポケモンのせいかくを {{natureName}}にかえて スターターのせいかくをえいきゅうにかいじょする" + }, + "DoubleBattleChanceBoosterModifierType": { + "description": "バトル{{battleCount}}かいのあいだ ダブルバトルになるかくりつを2ばいにする" + }, + "TempBattleStatBoosterModifierType": { + "description": "すべてのパーティメンバーの {{tempBattleStatName}}を5かいのバトルのあいだ 1だんかいあげる" + }, + "AttackTypeBoosterModifierType": { + "description": "ポケモンの {{moveType}}タイプのわざのいりょくを20パーセントあげる" + }, + "PokemonLevelIncrementModifierType": { + "description": "ポケモンのレベルを1あげる" + }, + "AllPokemonLevelIncrementModifierType": { + "description": "すべてのパーティメンバーのレベルを1あげる" + }, + "PokemonBaseStatBoosterModifierType": { + "description": "ポケモンの{{statName}}のきほんステータスを10パーセントあげる。こたいちがたかいほどスタックのげんかいもたかくなる。" + }, + "AllPokemonFullHpRestoreModifierType": { + "description": "すべてのポケモンのHPを100パーセントかいふくする" + }, + "AllPokemonFullReviveModifierType": { + "description": "ひんしになったすべてのポケモンをふっかつさせ HPをぜんかいふくする" + }, + "MoneyRewardModifierType": { + "description": "{{moneyMultiplier}}ぶんのきんがくをあたえる (₽{{moneyAmount}})", + "extra": { + "small": "すくない", + "moderate": "ふつう", + "large": "おおい" + } + }, + "ExpBoosterModifierType": { + "description": "もらえるけいけんちを {{boostPercent}}パーセントふやす" + }, + "PokemonExpBoosterModifierType": { + "description": "もっているポケモンのけいけんちを {{boostPercent}}パーセントふやす" + }, + "PokemonFriendshipBoosterModifierType": { + "description": "しょうりごとに 50%パーセント なかよく なりやすくなる" + }, + "PokemonMoveAccuracyBoosterModifierType": { + "description": "わざのめいちゅうりつを{{accuracyAmount}}ふやす (さいだい100)" + }, + "PokemonMultiHitModifierType": { + "description": "こうげきがもういちどあたる。そのたびにいりょくがそれぞれ60/75/82.5%へる" + }, + "TmModifierType": { + "name": "TM{{moveId}} - {{moveName}}", + "description": "ポケモンに {{moveName}} をおしえる" + }, + "TmModifierTypeWithInfo": { + "name": "TM{{moveId}} - {{moveName}}", + "description": "ポケモンに {{moveName}} をおしえる\n(Hold C or Shift for more info)" + }, + "EvolutionItemModifierType": { + "description": "とくていのポケモンをしんかさせる" + }, + "FormChangeItemModifierType": { + "description": "とくていのポケモンをフォームチェンジさせる" + }, + "FusePokemonModifierType": { + "description": "2匹のポケモンをけつごうする (とくせいをいどうし、きほんステータスとタイプをわけ、わざプールをきょうゆうする)" + }, + "TerastallizeModifierType": { + "name": "{{teraType}} Tera Shard", + "description": "ポケモンを{{teraType}}タイプにテラスタル(10かいのバトルまで)" + }, + "ContactHeldItemTransferChanceModifierType": { + "description": "こうげきするとき あいてがもっているアイテムを {{chancePercent}}パーセントのかくりつでぬすむ" + }, + "TurnHeldItemTransferModifierType": { + "description": "まいターン あいてからひとつのもちものをてにいれる" + }, + "EnemyAttackStatusEffectChanceModifierType": { + "description": "こうげきわざに {{chancePercent}}パーセントのかくりつで {{statusEffect}}をあたえる" + }, + "EnemyEndureChanceModifierType": { + "description": "こうげきをこらえるかくりつを{{chancePercent}}パーセントふやす" + }, + "RARE_CANDY": { + "name": "ふしぎなアメ" + }, + "RARER_CANDY": { + "name": "もっとふしぎなアメ" + }, + "MEGA_BRACELET": { + "name": "メガバングル", + "description": "メガストーンがつかえるようになる" + }, + "DYNAMAX_BAND": { + "name": "ダイマックスバンド", + "description": "ダイスープがつかえるようになる" + }, + "TERA_ORB": { + "name": "テラスタルオーブ", + "description": "テラピースがつかえるようになる" + }, + "MAP": { + "name": "ちず", + "description": "わかれみちでいきさきをえらべるようになる" + }, + "POTION": { + "name": "キズぐすり" + }, + "SUPER_POTION": { + "name": "いいキズぐすり" + }, + "HYPER_POTION": { + "name": "すごいキズぐすり" + }, + "MAX_POTION": { + "name": "まんたんのくすり" + }, + "FULL_RESTORE": { + "name": "かいふくのくすり" + }, + "REVIVE": { + "name": "げんきのかけら" + }, + "MAX_REVIVE": { + "name": "げんきのかたまり" + }, + "FULL_HEAL": { + "name": "なんでもなおし" + }, + "SACRED_ASH": { + "name": "せいなるはい" + }, + "REVIVER_SEED": { + "name": "ふっかつのタネ", + "description": "ひんしになったときもっているポケモンをHPはんぶんでふっかつさせる" + }, + "WHITE_HERB": { + "name": "White Herb", + "description": "An item to be held by a Pokémon. It will restore any lowered stat in battle." + }, + "ETHER": { + "name": "ピーピーエイド" + }, + "MAX_ETHER": { + "name": "ピーピーリカバー" + }, + "ELIXIR": { + "name": "ピーピーエイダー" + }, + "MAX_ELIXIR": { + "name": "ピーピーマックス" + }, + "PP_UP": { + "name": "ポイントアップ" + }, + "PP_MAX": { + "name": "ポイントマックス" + }, + "LURE": { + "name": "ダブルバトルコロン" + }, + "SUPER_LURE": { + "name": "シルバーコロン" + }, + "MAX_LURE": { + "name": "ゴールドコロン" + }, + "MEMORY_MUSHROOM": { + "name": "きおくキノコ", + "description": "ポケモンのわすれたわざをおぼえさせる" + }, + "EXP_SHARE": { + "name": "がくしゅうそうち", + "description": "バトルにさんかしていないポケモンが けいけんちの20パーセントをもらう" + }, + "EXP_BALANCE": { + "name": "バランスそうち", + "description": "レベルがひくいパーティメンバーがもらうけいけんちがふえる" + }, + "OVAL_CHARM": { + "name": "まるいおまもり", + "description": "バトルにふくすうのポケモンがさんかするとけいけんちが10パーセントふえる" + }, + "EXP_CHARM": { + "name": "けいけんちおまもり" + }, + "SUPER_EXP_CHARM": { + "name": "いいけいけんちおまもり" + }, + "GOLDEN_EXP_CHARM": { + "name": "ゴールドけいけんちおまもり" + }, + "LUCKY_EGG": { + "name": "しあわせタマゴ" + }, + "GOLDEN_EGG": { + "name": "おうごんタマゴ" + }, + "SOOTHE_BELL": { + "name": "やすらぎのすず" + }, + "SCOPE_LENS": { + "name": "ピントレンズ", + "description": "弱点が 見える レンズ。持たせた ポケモンの技が 急所に 当たりやすくなる。" + }, + "LEEK": { + "name": "ながねぎ", + "description": "とても長くて 硬いクキ。カモネギに 持たせると 技が 急所に 当たりやすくなる。" + }, + "EVIOLITE": { + "name": "しんかのきせき", + "description": "進化の不思議な かたまり。持たせると 進化前ポケモンの 防御と 特防が あがる。" + }, + "SOUL_DEW": { + "name": "こころのしずく", + "description": "ポケモンのせいかくがステータスにあたえるえいきょうを10%ふやす(合算)" + }, + "NUGGET": { + "name": "きんのたま" + }, + "BIG_NUGGET": { + "name": "でかいきんのたま" + }, + "RELIC_GOLD": { + "name": "こだいのきんか" + }, + "AMULET_COIN": { + "name": "おまもりこばん", + "description": "もらえる おかねが 20パーセント ふえる" + }, + "GOLDEN_PUNCH": { + "name": "ゴールドパンチ", + "description": "あたえたちょくせつダメージの50パーセントをおかねとしてもらえる" + }, + "COIN_CASE": { + "name": "コインケース", + "description": "10かいのバトルごとにもちきんの10パーセントをりしとしてうけとる" + }, + "LOCK_CAPSULE": { + "name": "ロックカプセル", + "description": "リロールするときにアイテムのレアリティをロックできる" + }, + "GRIP_CLAW": { + "name": "ねばりのかぎづめ" + }, + "WIDE_LENS": { + "name": "こうかくレンズ" + }, + "MULTI_LENS": { + "name": "マルチレンズ" + }, + "HEALING_CHARM": { + "name": "ヒーリングチャーム", + "description": "HPをかいふくするわざとアイテムのこうかを10パーセントあげる (ふっかつはのぞく)" + }, + "CANDY_JAR": { + "name": "アメボトル", + "description": "ふしぎなアメのアイテムでふえるレベルが1ふえる" + }, + "BERRY_POUCH": { + "name": "きのみぶくろ", + "description": "つかったきのみがつかわれないかくりつを30パーセントふやす" + }, + "FOCUS_BAND": { + "name": "きあいのハチマキ", + "description": "ひんしになるダメージをうけてもHP1でたえるかくりつを10パーセントふやす" + }, + "QUICK_CLAW": { + "name": "せんせいのツメ", + "description": "すばやさにかかわらず さきにこうどうするかくりつを10パーセントふやす (ゆうせんどのあと)" + }, + "KINGS_ROCK": { + "name": "おうじゃのしるし", + "description": "こうげきわざがあいてをひるませるかくりつを10パーセントふやす" + }, + "LEFTOVERS": { + "name": "たべのこし", + "description": "ポケモンのさいだいHPの1/16をまいターンかいふくする" + }, + "SHELL_BELL": { + "name": "かいがらのすず", + "description": "ポケモンがあたえたダメージの1/8をかいふくする" + }, + "TOXIC_ORB": { + "name": "どくどくだま", + "description": "ターンの終わりに すでに じょうたいじょうしょうが なければ もうどくの じょうたいに なる" + }, + "FLAME_ORB": { + "name": "かえんだま", + "description": "ターンの終わりに すでに じょうたいじょうしょうが なければ やけどの じょうたいに なる" + }, + "BATON": { + "name": "バトン", + "description": "ポケモンをこうたいするときにこうかをひきつぎ わなをかいひすることもできる" + }, + "SHINY_CHARM": { + "name": "ひかるおまもり", + "description": "やせいのポケモンがいろちがいポケモンであるかくりつをおおきくふやす" + }, + "ABILITY_CHARM": { + "name": "とくせいおまもり", + "description": "やせいのポケモンがかくれとくせいをもつかくりつをおおきくふやす" + }, + "IV_SCANNER": { + "name": "こたいち たんちき", + "description": "やせいのポケモンのこたいちをスキャンできる。スタックごとに2つのこたいちがあきらかになる。もっともたかいこたいちがさいしょにひょうじされる" + }, + "DNA_SPLICERS": { + "name": "いでんしのくさび" + }, + "MINI_BLACK_HOLE": { + "name": "ミニブラックホール" + }, + "GOLDEN_POKEBALL": { + "name": "ゴールドモンスターボール", + "description": "バトルごとに1つのアイテムオプションをふやす" + }, + "ENEMY_DAMAGE_BOOSTER": { + "name": "ダメージトークン", + "description": "ダメージを5%ふやす" + }, + "ENEMY_DAMAGE_REDUCTION": { + "name": "プロテクショントークン", + "description": "うけるダメージを2.5%へらす" + }, + "ENEMY_HEAL": { + "name": "かいふくトークン", + "description": "まいターンさいだいHPの2%をかいふくする" + }, + "ENEMY_ATTACK_POISON_CHANCE": { + "name": "どくトークン" + }, + "ENEMY_ATTACK_PARALYZE_CHANCE": { + "name": "まひトークン" + }, + "ENEMY_ATTACK_BURN_CHANCE": { + "name": "やけどトークン" + }, + "ENEMY_STATUS_EFFECT_HEAL_CHANCE": { + "name": "なおしトークン", + "description": "まいターン2.5%のかくりつでじょうたいじょうしょうをかいふくする" + }, + "ENEMY_ENDURE_CHANCE": { + "name": "こらえるトークン" + }, + "ENEMY_FUSED_CHANCE": { + "name": "フュージョントークン", + "description": "やせいのポケモンがフュージョンするかくりつを1%ふやす" + } + }, + "SpeciesBoosterItem": { + "LIGHT_BALL": { + "name": "でんきだま", + "description": "ピカチュウに 持たせると 攻撃と 特攻が あがる 不思議な玉。" + }, + "THICK_CLUB": { + "name": "ふといホネ", + "description": "なにかの 硬いホネ。カラカラ または ガラガラに 持たせると 攻撃が あがる。" + }, + "METAL_POWDER": { + "name": "メタルパウダー", + "description": "メタモンに 持たせると 防御が あがる 不思議な粉。とても こまかくて 硬い。" + }, + "QUICK_POWDER": { + "name": "スピードパウダー", + "description": "メタモンに 持たせると 素早さが あがる 不思議 粉。とても こまかくて 硬い。" + } + }, + "TempBattleStatBoosterItem": { + "x_attack": "プラスパワー", + "x_defense": "ディフェンダー", + "x_sp_atk": "スペシャルアップ", + "x_sp_def": "スペシャルガード", + "x_speed": "スピーダー", + "x_accuracy": "ヨクアタール", + "dire_hit": "クリティカット" + }, + "TempBattleStatBoosterStatName": { + "ATK": "こうげき", + "DEF": "ぼうぎょ", + "SPATK": "とくこう", + "SPDEF": "とくぼう", + "SPD": "すばやさ", + "ACC": "めいちゅう", + "CRIT": "きゅうしょりつ", + "EVA": "かいひ", + "DEFAULT": "???" + }, + "AttackTypeBoosterItem": { + "silk_scarf": "シルクのスカーフ", + "black_belt": "くろおび", + "sharp_beak": "するどいくちばし", + "poison_barb": "どくバリ", + "soft_sand": "やわらかいすな", + "hard_stone": "かたいいし", + "silver_powder": "ぎんのこな", + "spell_tag": "のろいのおふだ", + "metal_coat": "メタルコート", + "charcoal": "もくたん", + "mystic_water": "しんぴのしずく", + "miracle_seed": "きせきのタネ", + "magnet": "じしゃく", + "twisted_spoon": "まがったスプーン", + "never_melt_ice": "とけないこおり", + "dragon_fang": "りゅうのキバ", + "black_glasses": "くろいメガネ", + "fairy_feather": "ようせいのハネ" + }, + "BaseStatBoosterItem": { + "hp_up": "マックスアップ", + "protein": "タウリン", + "iron": "ブロムヘキシン", + "calcium": "リゾチウム", + "zinc": "キトサン", + "carbos": "インドメタシン" + }, + "EvolutionItem": { + "NONE": "None", + "LINKING_CORD": "つながりのヒモ", + "SUN_STONE": "たいようのいし", + "MOON_STONE": "つきのいし", + "LEAF_STONE": "リーフのいし", + "FIRE_STONE": "ほのおのいし", + "WATER_STONE": "みずのいし", + "THUNDER_STONE": "かみなりのいし", + "ICE_STONE": "こおりのいし", + "DUSK_STONE": "やみのいし", + "DAWN_STONE": "めざめいし", + "SHINY_STONE": "ひかりのいし", + "CRACKED_POT": "われたポット", + "SWEET_APPLE": "あまーいりんご", + "TART_APPLE": "すっぱいりんご", + "STRAWBERRY_SWEET": "いちごアメざいく", + "UNREMARKABLE_TEACUP": "ボンサクのちゃわん", + "CHIPPED_POT": "かけたポット", + "BLACK_AUGURITE": "くろのきせき", + "GALARICA_CUFF": "ガラナツブレス", + "GALARICA_WREATH": "ガラナツリース", + "PEAT_BLOCK": "ピートブロック", + "AUSPICIOUS_ARMOR": "イワイノヨロイ", + "MALICIOUS_ARMOR": "ノロイノヨロイ", + "MASTERPIECE_TEACUP": "ケッサクのちゃわん", + "METAL_ALLOY": "ふくごうきんぞく", + "SCROLL_OF_DARKNESS": "あくのかけじく", + "SCROLL_OF_WATERS": "みずのかけじく", + "SYRUPY_APPLE": "みついりりんご" + }, + "FormChangeItem": { + "NONE": "None", + "ABOMASITE": "ユキノオナイト", + "ABSOLITE": "アブソルナイト", + "AERODACTYLITE": "プテラナイト", + "AGGRONITE": "ボスゴドラナイト", + "ALAKAZITE": "フーディナイト", + "ALTARIANITE": "チルタリスナイト", + "AMPHAROSITE": "デンリュウナイト", + "AUDINITE": "タブンネナイト", + "BANETTITE": "ジュペッタナイト", + "BEEDRILLITE": "スピアナイト", + "BLASTOISINITE": "カメックスナイト", + "BLAZIKENITE": "バシャーモナイト", + "CAMERUPTITE": "バクーダナイト", + "CHARIZARDITE_X": "リザードナイトX", + "CHARIZARDITE_Y": "リザードナイトY", + "DIANCITE": "ディアンシナイト", + "GALLADITE": "エルレイドナイト", + "GARCHOMPITE": "ガブリアスナイト", + "GARDEVOIRITE": "サーナイトナイト", + "GENGARITE": "ゲンガナイト", + "GLALITITE": "オニゴーリナイト", + "GYARADOSITE": "ギャラドスナイト", + "HERACRONITE": "ヘラクロスナイト", + "HOUNDOOMINITE": "ヘルガナイト", + "KANGASKHANITE": "ガルーラナイト", + "LATIASITE": "ラティアスナイト", + "LATIOSITE": "ラティオスナイト", + "LOPUNNITE": "ミミロップナイト", + "LUCARIONITE": "ルカリオナイト", + "MANECTITE": "ライボルトナイト", + "MAWILITE": "クチートナイト", + "MEDICHAMITE": "チャーレムナイト", + "METAGROSSITE": "メタグロスナイト", + "MEWTWONITE_X": "ミュウツナイトX", + "MEWTWONITE_Y": "ミュウツナイトY", + "PIDGEOTITE": "ピジョットナイト", + "PINSIRITE": "カイロスナイト", + "RAYQUAZITE": "レックウザナイト", + "SABLENITE": "ヤミラミナイト", + "SALAMENCITE": "ボーマンダナイト", + "SCEPTILITE": "ジュカインナイト", + "SCIZORITE": "ハッサムナイト", + "SHARPEDONITE": "サメハダナイト", + "SLOWBRONITE": "ヤドランナイト", + "STEELIXITE": "ハガネールナイト", + "SWAMPERTITE": "ラグラージナイト", + "TYRANITARITE": "バンギラスナイト", + "VENUSAURITE": "フシギバナイト", + "BLUE_ORB": "あいいろのたま", + "RED_ORB": "べにいろのたま", + "SHARP_METEORITE": "シャープなうんせき", + "HARD_METEORITE": "かたいうんせき", + "SMOOTH_METEORITE": "やわらかいうんせき", + "ADAMANT_CRYSTAL": "だいこんごうだま", + "LUSTROUS_GLOBE": "だいしらたま", + "GRISEOUS_CORE": "だいはっきんだま", + "REVEAL_GLASS": "うつしかがみ", + "GRACIDEA": "グラシデアのはな", + "MAX_MUSHROOMS": "ダイキノコ", + "DARK_STONE": "ダークストーン", + "LIGHT_STONE": "ライトストーン", + "PRISON_BOTTLE": "いましめのツボ", + "N_LUNARIZER": "ネクロプラスルナ", + "N_SOLARIZER": "ネクロプラスソル", + "RUSTED_SWORD": "くちたけん", + "RUSTED_SHIELD": "くちたたて", + "ICY_REINS_OF_UNITY": "つめたいキズナのタヅナ", + "SHADOW_REINS_OF_UNITY": "くろいキズナのタヅナ", + "WELLSPRING_MASK": "いどのめん", + "HEARTHFLAME_MASK": "かまどのめん", + "CORNERSTONE_MASK": "いしずえのめん", + "SHOCK_DRIVE": "イナズマカセット", + "BURN_DRIVE": "ブレイズカセット", + "CHILL_DRIVE": "フリーズカセット", + "DOUSE_DRIVE": "アクアカセット", + "ULTRANECROZIUM_Z": "ウルトラネクロZ" + } +} \ No newline at end of file diff --git a/src/locales/ja/modifier-type.ts b/src/locales/ja/modifier-type.ts deleted file mode 100644 index 39efe5ed071..00000000000 --- a/src/locales/ja/modifier-type.ts +++ /dev/null @@ -1,457 +0,0 @@ -import { ModifierTypeTranslationEntries } from "#app/interfaces/locales"; - -export const modifierType: ModifierTypeTranslationEntries = { - ModifierType: { - "AddPokeballModifierType": { - name: "{{modifierCount}}x {{pokeballName}}", - description: "{{pokeballName}} x{{modifierCount}}こ てにいれる (インベントリ: {{pokeballAmount}}) \nほそくりつ: {{catchRate}}", - }, - "AddVoucherModifierType": { - name: "{{modifierCount}}x {{voucherTypeName}}", - description: "{{voucherTypeName}} x{{modifierCount}}こ てにいれる", - }, - "PokemonHeldItemModifierType": { - extra: { - "inoperable": "{{pokemonName}} はこのアイテムを\nもつことができません!", - "tooMany": "{{pokemonName}} はこのアイテムを\nもちすぎています!", - } - }, - "PokemonHpRestoreModifierType": { - description: "ポケモンの HPを {{restorePoints}} または {{restorePercent}}%のどちらか たかいほうを かいふくする", - extra: { - "fully": "ポケモンのHPをすべてかいふくする", - "fullyWithStatus": "ポケモンの HPと じょうたいいじょうを かいふくする", - } - }, - "PokemonReviveModifierType": { - description: "ひんしになってしまったポケモンの HP {{restorePercent}}%を かいふくする", - }, - "PokemonStatusHealModifierType": { - description: "すべてのじょうたいいじょうを なおす", - }, - "PokemonPpRestoreModifierType": { - description: "ポケモンが おぼえている わざの PPを {{restorePoints}}ずつ かいふくする", - extra: { - "fully": "ポケモンが おぼえている わざの PPを すべて かいふくする", - } - }, - "PokemonAllMovePpRestoreModifierType": { - description: "ポケモンが おぼえている 4つの わざの PPを {{restorePoints}}ずつ かいふくする", - extra: { - "fully": "ポケモンが おぼえている 4つの わざの PPを すべて かいふくする", - } - }, - "PokemonPpUpModifierType": { - description: "ポケモンのわざのさいだいPPを さいだいPP 5ごとに {{upPoints}} ポイントずつ ふやします(さいだい3)", - }, - "PokemonNatureChangeModifierType": { - name: "{{natureName}} Mint", - description: "ポケモンのせいかくを {{natureName}}にかえて スターターのせいかくをえいきゅうにかいじょする", - }, - "DoubleBattleChanceBoosterModifierType": { - description: "バトル{{battleCount}}かいのあいだ ダブルバトルになるかくりつを2ばいにする", - }, - "TempBattleStatBoosterModifierType": { - description: "すべてのパーティメンバーの {{tempBattleStatName}}を5かいのバトルのあいだ 1だんかいあげる", - }, - "AttackTypeBoosterModifierType": { - description: "ポケモンの {{moveType}}タイプのわざのいりょくを20パーセントあげる", - }, - "PokemonLevelIncrementModifierType": { - description: "ポケモンのレベルを1あげる", - }, - "AllPokemonLevelIncrementModifierType": { - description: "すべてのパーティメンバーのレベルを1あげる", - }, - "PokemonBaseStatBoosterModifierType": { - description: "ポケモンの{{statName}}のきほんステータスを10パーセントあげる。こたいちがたかいほどスタックのげんかいもたかくなる。", - }, - "AllPokemonFullHpRestoreModifierType": { - description: "すべてのポケモンのHPを100パーセントかいふくする", - }, - "AllPokemonFullReviveModifierType": { - description: "ひんしになったすべてのポケモンをふっかつさせ HPをぜんかいふくする", - }, - "MoneyRewardModifierType": { - description: "{{moneyMultiplier}}ぶんのきんがくをあたえる (₽{{moneyAmount}})", - extra: { - "small": "すくない", - "moderate": "ふつう", - "large": "おおい", - }, - }, - "ExpBoosterModifierType": { - description: "もらえるけいけんちを {{boostPercent}}パーセントふやす", - }, - "PokemonExpBoosterModifierType": { - description: "もっているポケモンのけいけんちを {{boostPercent}}パーセントふやす", - }, - "PokemonFriendshipBoosterModifierType": { - description: "しょうりごとに 50%パーセント なかよく なりやすくなる", - }, - "PokemonMoveAccuracyBoosterModifierType": { - description: "わざのめいちゅうりつを{{accuracyAmount}}ふやす (さいだい100)", - }, - "PokemonMultiHitModifierType": { - description: "こうげきがもういちどあたる。そのたびにいりょくがそれぞれ60/75/82.5%へる", - }, - "TmModifierType": { - name: "TM{{moveId}} - {{moveName}}", - description: "ポケモンに {{moveName}} をおしえる", - }, - "TmModifierTypeWithInfo": { - name: "TM{{moveId}} - {{moveName}}", - description: "ポケモンに {{moveName}} をおしえる\n(Hold C or Shift for more info)", - }, - "EvolutionItemModifierType": { - description: "とくていのポケモンをしんかさせる", - }, - "FormChangeItemModifierType": { - description: "とくていのポケモンをフォームチェンジさせる", - }, - "FusePokemonModifierType": { - description: "2匹のポケモンをけつごうする (とくせいをいどうし、きほんステータスとタイプをわけ、わざプールをきょうゆうする)", - }, - "TerastallizeModifierType": { - name: "{{teraType}} Tera Shard", - description: "ポケモンを{{teraType}}タイプにテラスタル(10かいのバトルまで)", - }, - "ContactHeldItemTransferChanceModifierType": { - description: "こうげきするとき あいてがもっているアイテムを {{chancePercent}}パーセントのかくりつでぬすむ", - }, - "TurnHeldItemTransferModifierType": { - description: "まいターン あいてからひとつのもちものをてにいれる", - }, - "EnemyAttackStatusEffectChanceModifierType": { - description: "こうげきわざに {{chancePercent}}パーセントのかくりつで {{statusEffect}}をあたえる", - }, - "EnemyEndureChanceModifierType": { - description: "こうげきをこらえるかくりつを{{chancePercent}}パーセントふやす", - }, - - "RARE_CANDY": { name: "ふしぎなアメ" }, - "RARER_CANDY": { name: "もっとふしぎなアメ" }, - - "MEGA_BRACELET": { name: "メガバングル", description: "メガストーンがつかえるようになる" }, - "DYNAMAX_BAND": { name: "ダイマックスバンド", description: "ダイスープがつかえるようになる" }, - "TERA_ORB": { name: "テラスタルオーブ", description: "テラピースがつかえるようになる" }, - - "MAP": { name: "ちず", description: "わかれみちでいきさきをえらべるようになる" }, - - "POTION": { name: "キズぐすり" }, - "SUPER_POTION": { name: "いいキズぐすり" }, - "HYPER_POTION": { name: "すごいキズぐすり" }, - "MAX_POTION": { name: "まんたんのくすり" }, - "FULL_RESTORE": { name: "かいふくのくすり" }, - - "REVIVE": { name: "げんきのかけら" }, - "MAX_REVIVE": { name: "げんきのかたまり" }, - - "FULL_HEAL": { name: "なんでもなおし" }, - - "SACRED_ASH": { name: "せいなるはい" }, - - "REVIVER_SEED": { name: "ふっかつのタネ", description: "ひんしになったときもっているポケモンをHPはんぶんでふっかつさせる" }, - - "WHITE_HERB": { name: "White Herb", description: "An item to be held by a Pokémon. It will restore any lowered stat in battle." }, - - "ETHER": { name: "ピーピーエイド" }, - "MAX_ETHER": { name: "ピーピーリカバー" }, - - "ELIXIR": { name: "ピーピーエイダー" }, - "MAX_ELIXIR": { name: "ピーピーマックス" }, - - "PP_UP": { name: "ポイントアップ" }, - "PP_MAX": { name: "ポイントマックス" }, - - "LURE": { name: "ダブルバトルコロン" }, - "SUPER_LURE": { name: "シルバーコロン" }, - "MAX_LURE": { name: "ゴールドコロン" }, - - "MEMORY_MUSHROOM": { name: "きおくキノコ", description: "ポケモンのわすれたわざをおぼえさせる" }, - - "EXP_SHARE": { name: "がくしゅうそうち", description: "バトルにさんかしていないポケモンが けいけんちの20パーセントをもらう" }, - "EXP_BALANCE": { name: "バランスそうち", description: "レベルがひくいパーティメンバーがもらうけいけんちがふえる" }, - - "OVAL_CHARM": { name: "まるいおまもり", description: "バトルにふくすうのポケモンがさんかするとけいけんちが10パーセントふえる" }, - - "EXP_CHARM": { name: "けいけんちおまもり" }, - "SUPER_EXP_CHARM": { name: "いいけいけんちおまもり" }, - "GOLDEN_EXP_CHARM": { name: "ゴールドけいけんちおまもり" }, - - "LUCKY_EGG": { name: "しあわせタマゴ" }, - "GOLDEN_EGG": { name: "おうごんタマゴ" }, - - "SOOTHE_BELL": { name: "やすらぎのすず" }, - - "SCOPE_LENS": { name: "ピントレンズ", description: "弱点が 見える レンズ。持たせた ポケモンの技が 急所に 当たりやすくなる。"}, - "LEEK": { name: "ながねぎ", description: "とても長くて 硬いクキ。カモネギに 持たせると 技が 急所に 当たりやすくなる。"}, - - "EVIOLITE": { name: "しんかのきせき", description: "進化の不思議な かたまり。持たせると 進化前ポケモンの 防御と 特防が あがる。" }, - - "SOUL_DEW": { name: "こころのしずく", description: "ポケモンのせいかくがステータスにあたえるえいきょうを10%ふやす(合算)" }, - - "NUGGET": { name: "きんのたま" }, - "BIG_NUGGET": { name: "でかいきんのたま" }, - "RELIC_GOLD": { name: "こだいのきんか" }, - - "AMULET_COIN": { name: "おまもりこばん", description: "もらえる おかねが 20パーセント ふえる" }, - "GOLDEN_PUNCH": { name: "ゴールドパンチ", description: "あたえたちょくせつダメージの50パーセントをおかねとしてもらえる" }, - "COIN_CASE": { name: "コインケース", description: "10かいのバトルごとにもちきんの10パーセントをりしとしてうけとる" }, - - "LOCK_CAPSULE": { name: "ロックカプセル", description: "リロールするときにアイテムのレアリティをロックできる" }, - - "GRIP_CLAW": { name: "ねばりのかぎづめ" }, - "WIDE_LENS": { name: "こうかくレンズ" }, - - "MULTI_LENS": { name: "マルチレンズ" }, - - "HEALING_CHARM": { name: "ヒーリングチャーム", description: "HPをかいふくするわざとアイテムのこうかを10パーセントあげる (ふっかつはのぞく)" }, - "CANDY_JAR": { name: "アメボトル", description: "ふしぎなアメのアイテムでふえるレベルが1ふえる" }, - - "BERRY_POUCH": { name: "きのみぶくろ", description: "つかったきのみがつかわれないかくりつを30パーセントふやす" }, - - "FOCUS_BAND": { name: "きあいのハチマキ", description: "ひんしになるダメージをうけてもHP1でたえるかくりつを10パーセントふやす" }, - - "QUICK_CLAW": { name: "せんせいのツメ", description: "すばやさにかかわらず さきにこうどうするかくりつを10パーセントふやす (ゆうせんどのあと)" }, - - "KINGS_ROCK": { name: "おうじゃのしるし", description: "こうげきわざがあいてをひるませるかくりつを10パーセントふやす" }, - - "LEFTOVERS": { name: "たべのこし", description: "ポケモンのさいだいHPの1/16をまいターンかいふくする" }, - "SHELL_BELL": { name: "かいがらのすず", description: "ポケモンがあたえたダメージの1/8をかいふくする" }, - - "TOXIC_ORB": { name: "どくどくだま", description: "ターンの終わりに すでに じょうたいじょうしょうが なければ もうどくの じょうたいに なる" }, - "FLAME_ORB": { name: "かえんだま", description: "ターンの終わりに すでに じょうたいじょうしょうが なければ やけどの じょうたいに なる" }, - - "BATON": { name: "バトン", description: "ポケモンをこうたいするときにこうかをひきつぎ わなをかいひすることもできる" }, - - "SHINY_CHARM": { name: "ひかるおまもり", description: "やせいのポケモンがいろちがいポケモンであるかくりつをおおきくふやす" }, - "ABILITY_CHARM": { name: "とくせいおまもり", description: "やせいのポケモンがかくれとくせいをもつかくりつをおおきくふやす" }, - - "IV_SCANNER": { name: "こたいち たんちき", description: "やせいのポケモンのこたいちをスキャンできる。スタックごとに2つのこたいちがあきらかになる。もっともたかいこたいちがさいしょにひょうじされる" }, - - "DNA_SPLICERS": { name: "いでんしのくさび" }, - - "MINI_BLACK_HOLE": { name: "ミニブラックホール" }, - - "GOLDEN_POKEBALL": { name: "ゴールドモンスターボール", description: "バトルごとに1つのアイテムオプションをふやす" }, - - "ENEMY_DAMAGE_BOOSTER": { name: "ダメージトークン", description: "ダメージを5%ふやす" }, - "ENEMY_DAMAGE_REDUCTION": { name: "プロテクショントークン", description: "うけるダメージを2.5%へらす" }, - "ENEMY_HEAL": { name: "かいふくトークン", description: "まいターンさいだいHPの2%をかいふくする" }, - "ENEMY_ATTACK_POISON_CHANCE": { name: "どくトークン" }, - "ENEMY_ATTACK_PARALYZE_CHANCE": { name: "まひトークン" }, - "ENEMY_ATTACK_BURN_CHANCE": { name: "やけどトークン" }, - "ENEMY_STATUS_EFFECT_HEAL_CHANCE": { name: "なおしトークン", description: "まいターン2.5%のかくりつでじょうたいじょうしょうをかいふくする" }, - "ENEMY_ENDURE_CHANCE": { name: "こらえるトークン" }, - "ENEMY_FUSED_CHANCE": { name: "フュージョントークン", description: "やせいのポケモンがフュージョンするかくりつを1%ふやす" }, - }, - SpeciesBoosterItem: { - "LIGHT_BALL": { name: "でんきだま", description: "ピカチュウに 持たせると 攻撃と 特攻が あがる 不思議な玉。" }, - "THICK_CLUB": { name: "ふといホネ", description: "なにかの 硬いホネ。カラカラ または ガラガラに 持たせると 攻撃が あがる。" }, - "METAL_POWDER": { name: "メタルパウダー", description: "メタモンに 持たせると 防御が あがる 不思議な粉。とても こまかくて 硬い。" }, - "QUICK_POWDER": { name: "スピードパウダー", description: "メタモンに 持たせると 素早さが あがる 不思議 粉。とても こまかくて 硬い。" } - }, - TempBattleStatBoosterItem: { - "x_attack": "プラスパワー", - "x_defense": "ディフェンダー", - "x_sp_atk": "スペシャルアップ", - "x_sp_def": "スペシャルガード", - "x_speed": "スピーダー", - "x_accuracy": "ヨクアタール", - "dire_hit": "クリティカット", - }, - - TempBattleStatBoosterStatName: { - "ATK": "こうげき", - "DEF": "ぼうぎょ", - "SPATK": "とくこう", - "SPDEF": "とくぼう", - "SPD": "すばやさ", - "ACC": "めいちゅう", - "CRIT": "きゅうしょりつ", - "EVA": "かいひ", - "DEFAULT": "???", - }, - - AttackTypeBoosterItem: { - "silk_scarf": "シルクのスカーフ", - "black_belt": "くろおび", - "sharp_beak": "するどいくちばし", - "poison_barb": "どくバリ", - "soft_sand": "やわらかいすな", - "hard_stone": "かたいいし", - "silver_powder": "ぎんのこな", - "spell_tag": "のろいのおふだ", - "metal_coat": "メタルコート", - "charcoal": "もくたん", - "mystic_water": "しんぴのしずく", - "miracle_seed": "きせきのタネ", - "magnet": "じしゃく", - "twisted_spoon": "まがったスプーン", - "never_melt_ice": "とけないこおり", - "dragon_fang": "りゅうのキバ", - "black_glasses": "くろいメガネ", - "fairy_feather": "ようせいのハネ", - }, - BaseStatBoosterItem: { - "hp_up": "マックスアップ", - "protein": "タウリン", - "iron": "ブロムヘキシン", - "calcium": "リゾチウム", - "zinc": "キトサン", - "carbos": "インドメタシン", - }, - EvolutionItem: { - "NONE": "None", - - "LINKING_CORD": "つながりのヒモ", - "SUN_STONE": "たいようのいし", - "MOON_STONE": "つきのいし", - "LEAF_STONE": "リーフのいし", - "FIRE_STONE": "ほのおのいし", - "WATER_STONE": "みずのいし", - "THUNDER_STONE": "かみなりのいし", - "ICE_STONE": "こおりのいし", - "DUSK_STONE": "やみのいし", - "DAWN_STONE": "めざめいし", - "SHINY_STONE": "ひかりのいし", - "CRACKED_POT": "われたポット", - "SWEET_APPLE": "あまーいりんご", - "TART_APPLE": "すっぱいりんご", - "STRAWBERRY_SWEET": "いちごアメざいく", - "UNREMARKABLE_TEACUP": "ボンサクのちゃわん", - - "CHIPPED_POT": "かけたポット", - "BLACK_AUGURITE": "くろのきせき", - "GALARICA_CUFF": "ガラナツブレス", - "GALARICA_WREATH": "ガラナツリース", - "PEAT_BLOCK": "ピートブロック", - "AUSPICIOUS_ARMOR": "イワイノヨロイ", - "MALICIOUS_ARMOR": "ノロイノヨロイ", - "MASTERPIECE_TEACUP": "ケッサクのちゃわん", - "METAL_ALLOY": "ふくごうきんぞく", - "SCROLL_OF_DARKNESS": "あくのかけじく", - "SCROLL_OF_WATERS": "みずのかけじく", - "SYRUPY_APPLE": "みついりりんご", - }, - FormChangeItem: { - "NONE": "None", - - "ABOMASITE": "ユキノオナイト", - "ABSOLITE": "アブソルナイト", - "AERODACTYLITE": "プテラナイト", - "AGGRONITE": "ボスゴドラナイト", - "ALAKAZITE": "フーディナイト", - "ALTARIANITE": "チルタリスナイト", - "AMPHAROSITE": "デンリュウナイト", - "AUDINITE": "タブンネナイト", - "BANETTITE": "ジュペッタナイト", - "BEEDRILLITE": "スピアナイト", - "BLASTOISINITE": "カメックスナイト", - "BLAZIKENITE": "バシャーモナイト", - "CAMERUPTITE": "バクーダナイト", - "CHARIZARDITE_X": "リザードナイトX", - "CHARIZARDITE_Y": "リザードナイトY", - "DIANCITE": "ディアンシナイト", - "GALLADITE": "エルレイドナイト", - "GARCHOMPITE": "ガブリアスナイト", - "GARDEVOIRITE": "サーナイトナイト", - "GENGARITE": "ゲンガナイト", - "GLALITITE": "オニゴーリナイト", - "GYARADOSITE": "ギャラドスナイト", - "HERACRONITE": "ヘラクロスナイト", - "HOUNDOOMINITE": "ヘルガナイト", - "KANGASKHANITE": "ガルーラナイト", - "LATIASITE": "ラティアスナイト", - "LATIOSITE": "ラティオスナイト", - "LOPUNNITE": "ミミロップナイト", - "LUCARIONITE": "ルカリオナイト", - "MANECTITE": "ライボルトナイト", - "MAWILITE": "クチートナイト", - "MEDICHAMITE": "チャーレムナイト", - "METAGROSSITE": "メタグロスナイト", - "MEWTWONITE_X": "ミュウツナイトX", - "MEWTWONITE_Y": "ミュウツナイトY", - "PIDGEOTITE": "ピジョットナイト", - "PINSIRITE": "カイロスナイト", - "RAYQUAZITE": "レックウザナイト", - "SABLENITE": "ヤミラミナイト", - "SALAMENCITE": "ボーマンダナイト", - "SCEPTILITE": "ジュカインナイト", - "SCIZORITE": "ハッサムナイト", - "SHARPEDONITE": "サメハダナイト", - "SLOWBRONITE": "ヤドランナイト", - "STEELIXITE": "ハガネールナイト", - "SWAMPERTITE": "ラグラージナイト", - "TYRANITARITE": "バンギラスナイト", - "VENUSAURITE": "フシギバナイト", - - "BLUE_ORB": "あいいろのたま", - "RED_ORB": "べにいろのたま", - "SHARP_METEORITE": "シャープなうんせき", - "HARD_METEORITE": "かたいうんせき", - "SMOOTH_METEORITE": "やわらかいうんせき", - "ADAMANT_CRYSTAL": "だいこんごうだま", - "LUSTROUS_GLOBE": "だいしらたま", - "GRISEOUS_CORE": "だいはっきんだま", - "REVEAL_GLASS": "うつしかがみ", - "GRACIDEA": "グラシデアのはな", - "MAX_MUSHROOMS": "ダイキノコ", - "DARK_STONE": "ダークストーン", - "LIGHT_STONE": "ライトストーン", - "PRISON_BOTTLE": "いましめのツボ", - "N_LUNARIZER": "ネクロプラスルナ", - "N_SOLARIZER": "ネクロプラスソル", - "RUSTED_SWORD": "くちたけん", - "RUSTED_SHIELD": "くちたたて", - "ICY_REINS_OF_UNITY": "つめたいキズナのタヅナ", - "SHADOW_REINS_OF_UNITY": "くろいキズナのタヅナ", - "WELLSPRING_MASK": "いどのめん", - "HEARTHFLAME_MASK": "かまどのめん", - "CORNERSTONE_MASK": "いしずえのめん", - "SHOCK_DRIVE": "イナズマカセット", - "BURN_DRIVE": "ブレイズカセット", - "CHILL_DRIVE": "フリーズカセット", - "DOUSE_DRIVE": "アクアカセット", - "ULTRANECROZIUM_Z": "ウルトラネクロZ", - - "FIST_PLATE": "Fist Plate", - "SKY_PLATE": "Sky Plate", - "TOXIC_PLATE": "Toxic Plate", - "EARTH_PLATE": "Earth Plate", - "STONE_PLATE": "Stone Plate", - "INSECT_PLATE": "Insect Plate", - "SPOOKY_PLATE": "Spooky Plate", - "IRON_PLATE": "Iron Plate", - "FLAME_PLATE": "Flame Plate", - "SPLASH_PLATE": "Splash Plate", - "MEADOW_PLATE": "Meadow Plate", - "ZAP_PLATE": "Zap Plate", - "MIND_PLATE": "Mind Plate", - "ICICLE_PLATE": "Icicle Plate", - "DRACO_PLATE": "Draco Plate", - "DREAD_PLATE": "Dread Plate", - "PIXIE_PLATE": "Pixie Plate", - "BLANK_PLATE": "Blank Plate", - "LEGEND_PLATE": "Legend Plate", - "FIGHTING_MEMORY": "Fighting Memory", - "FLYING_MEMORY": "Flying Memory", - "POISON_MEMORY": "Poison Memory", - "GROUND_MEMORY": "Ground Memory", - "ROCK_MEMORY": "Rock Memory", - "BUG_MEMORY": "Bug Memory", - "GHOST_MEMORY": "Ghost Memory", - "STEEL_MEMORY": "Steel Memory", - "FIRE_MEMORY": "Fire Memory", - "WATER_MEMORY": "Water Memory", - "GRASS_MEMORY": "Grass Memory", - "ELECTRIC_MEMORY": "Electric Memory", - "PSYCHIC_MEMORY": "Psychic Memory", - "ICE_MEMORY": "Ice Memory", - "DRAGON_MEMORY": "Dragon Memory", - "DARK_MEMORY": "Dark Memory", - "FAIRY_MEMORY": "Fairy Memory", - "BLANK_MEMORY": "Blank Memory", - }, -} as const; diff --git a/src/locales/ja/modifier.ts b/src/locales/ja/modifier.json similarity index 85% rename from src/locales/ja/modifier.ts rename to src/locales/ja/modifier.json index 00fc9845770..30d5270d94f 100644 --- a/src/locales/ja/modifier.ts +++ b/src/locales/ja/modifier.json @@ -1,6 +1,4 @@ -import { SimpleTranslationEntries } from "#app/interfaces/locales"; - -export const modifier: SimpleTranslationEntries = { +{ "surviveDamageApply": "{{pokemonNameWithAffix}}は\n{{typeName}}で もちこたえた!", "turnHealApply": "{{pokemonNameWithAffix}}は\n{{typeName}}で 少し 回復!", "hitHealApply": "{{pokemonNameWithAffix}}は\n{{typeName}}で 少し 回復!", @@ -10,5 +8,5 @@ export const modifier: SimpleTranslationEntries = { "turnHeldItemTransferApply": "{{pokemonName}}の {{typeName}}が\n{{pokemonNameWithAffix}}の {{itemName}}を 吸い取った!", "contactHeldItemTransferApply": "{{pokemonName}}の {{typeName}}が\n{{pokemonNameWithAffix}}の {{itemName}}を うばい取った!", "enemyTurnHealApply": "{{pokemonNameWithAffix}}は\n体力を 回復!", - "bypassSpeedChanceApply": "{{pokemonName}}は {{itemName}}で\n行動が はやくなった!", -} as const; + "bypassSpeedChanceApply": "{{pokemonName}}は {{itemName}}で\n行動が はやくなった!" +} \ No newline at end of file diff --git a/src/locales/ja/move-trigger.ts b/src/locales/ja/move-trigger.json similarity index 90% rename from src/locales/ja/move-trigger.ts rename to src/locales/ja/move-trigger.json index e3a089db53b..0c404feeed6 100644 --- a/src/locales/ja/move-trigger.ts +++ b/src/locales/ja/move-trigger.json @@ -1,10 +1,8 @@ -import { SimpleTranslationEntries } from "#app/interfaces/locales"; - -export const moveTriggers: SimpleTranslationEntries = { - "hitWithRecoil" : "{{pokemonName}}は\nはんどうによる ダメージを うけた!", +{ + "hitWithRecoil": "{{pokemonName}}は\nはんどうによる ダメージを うけた!", "cutHpPowerUpMove": "{{pokemonName}}は\nたいりょくを けずって パワーぜんかい!", "absorbedElectricity": "{{pokemonName}}は\n でんきを きゅうしゅうした!", - "switchedStatChanges": "{{pokemonName}}は あいてと じぶんのn\のうりょくへんかを いれかえた!", + "switchedStatChanges": "{{pokemonName}}は あいてと じぶんのn\nのうりょくへんかを いれかえた!", "goingAllOutForAttack": "{{pokemonName}}は\nほんきを だした!", "regainedHealth": "{{pokemonName}}は\nたいりょくを かいふくした!", "keptGoingAndCrashed": "いきおいあまって {{pokemonName}}は\nじめんに ぶつかった!", @@ -21,7 +19,6 @@ export const moveTriggers: SimpleTranslationEntries = { "isGlowing": "{{pokemonName}}を\nはげしいひかりが つつむ!", "bellChimed": "すずのおとが ひびきわたった!", "foresawAnAttack": "{{pokemonName}}は\nみらいに こうげきを よちした!", - "isTighteningFocus": "{{pokemonName}} is\ntightening its focus!", "hidUnderwater": "{{pokemonName}}は\nすいちゅうに みをひそめた!", "soothingAromaWaftedThroughArea": "ここちよい かおりが ひろがった!", "sprangUp": "{{pokemonName}}は\nたかく とびはねた!", @@ -57,10 +54,9 @@ export const moveTriggers: SimpleTranslationEntries = { "sacrificialFullRestore": "{{pokemonName}}の\nねがいごとが かなった!", "invertStats": "{{pokemonName}}の\nのうりょくへんかが ぎゃくてんした!", "resetStats": "{{pokemonName}}の\nのうりょくへんかが もとにもどった!", - "statEliminated": "All stat changes were eliminated!", "faintCountdown": "{{pokemonName}}は\n{{turnCount}}ターンごに ほろびてしまう!", "copyType": "{{pokemonName}}は {{targetPokemonName}}と\n同じタイプに なった!", "suppressAbilities": "{{pokemonName}}の とくせいが きかなくなった!", - "swapArenaTags": "{{pokemonName}}は\nおたがいの ばのこうかを いれかえた!", - "exposedMove": "{{pokemonName}} identified\n{{targetPokemonName}}!", -} as const; + "revivalBlessing": "{{pokemonName}}は\n復活して 戦えるようになった!", + "swapArenaTags": "{{pokemonName}}は\nおたがいの ばのこうかを いれかえた!" +} \ No newline at end of file diff --git a/src/locales/ja/move.json b/src/locales/ja/move.json new file mode 100644 index 00000000000..fbeb2132d23 --- /dev/null +++ b/src/locales/ja/move.json @@ -0,0 +1,3810 @@ +{ + "pound": { + "name": "はたく", + "effect": "長い しっぽや 手などを 使って 相手を はたいて 攻撃する。" + }, + "karateChop": { + "name": "からてチョップ", + "effect": "鋭い チョップで 相手を たたいて 攻撃する。 急所に 当たりやすい。" + }, + "doubleSlap": { + "name": "おうふくビンタ", + "effect": "おうふく ビンタで 相手を たたいて 攻撃する。 2ー5回の 間 連続で だす。" + }, + "cometPunch": { + "name": "れんぞくパンチ", + "effect": "どとうの パンチで 相手を なぐりつけて 攻撃する。 2ー5回の 間 連続で だす。" + }, + "megaPunch": { + "name": "メガトンパンチ", + "effect": "力を こめた パンチで 相手を 攻撃する。" + }, + "payDay": { + "name": "ネコにこばん", + "effect": "相手の 体に 小判を 投げつけて 攻撃する。 戦闘の あとで お金が もらえる。" + }, + "firePunch": { + "name": "ほのおのパンチ", + "effect": "炎を こめた パンチで 相手を 攻撃する。 やけど状態に することが ある。" + }, + "icePunch": { + "name": "れいとうパンチ", + "effect": "冷気を こめた パンチで 相手を 攻撃する。 こおり状態に することが ある。" + }, + "thunderPunch": { + "name": "かみなりパンチ", + "effect": "電撃を こめた パンチで 相手を 攻撃する。 まひ状態に することが ある。" + }, + "scratch": { + "name": "ひっかく", + "effect": "硬く とがった 鋭い ツメで 相手を ひっかいて 攻撃する。" + }, + "viseGrip": { + "name": "はさむ", + "effect": "相手を 両側から はさんで ダメージを あたえる。" + }, + "guillotine": { + "name": "ハサミギロチン", + "effect": "大きな ハサミで 相手を 切り裂いて 攻撃する。 当たれば 一撃で ひんしに する。" + }, + "razorWind": { + "name": "かまいたち", + "effect": "風の 刃を つくり 2ターン目に 相手を 攻撃する。 急所に 当たりやすい。" + }, + "swordsDance": { + "name": "つるぎのまい", + "effect": "戦いの舞を 激しく おどって 気合を 高める。 自分の 攻撃を ぐーんと あげる。" + }, + "cut": { + "name": "いあいぎり", + "effect": "カマや ツメなどで 相手を 切りつけて 攻撃する。" + }, + "gust": { + "name": "かぜおこし", + "effect": "翼で おこした 激しい 風を 相手に ぶつけて 攻撃する。" + }, + "wingAttack": { + "name": "つばさでうつ", + "effect": "大きく ひろげた りっぱな 翼を 相手に ぶつけて 攻撃する。" + }, + "whirlwind": { + "name": "ふきとばし", + "effect": "相手を 吹きとばして 控えの ポケモンを ひきずりだす。 野生の 場合は 戦闘が 終わる。" + }, + "fly": { + "name": "そらをとぶ", + "effect": "1ターン目で 空へ 飛び 2ターン目に 相手を 攻撃する。" + }, + "bind": { + "name": "しめつける", + "effect": "長い 体や つるなどを 使い 4ー5ターンの 間 相手を 締めつけて 攻撃する。" + }, + "slam": { + "name": "たたきつける", + "effect": "長い しっぽや つるなどを 使い 相手を たたきつけて 攻撃する。" + }, + "vineWhip": { + "name": "つるのムチ", + "effect": "ムチのように しなる 細長い つるで 相手を たたきつけて 攻撃する。" + }, + "stomp": { + "name": "ふみつけ", + "effect": "大きな 足で 相手を 踏みつけて 攻撃する。 相手を ひるませることが ある。" + }, + "doubleKick": { + "name": "にどげり", + "effect": "2本の 足で 相手を けとばして 攻撃する。 2回連続で ダメージを 与える。" + }, + "megaKick": { + "name": "メガトンキック", + "effect": "ものすごい 力を こめた キックで 相手を けとばして 攻撃する。" + }, + "jumpKick": { + "name": "とびげり", + "effect": "高い ジャンプからの キックで 相手を 攻撃する。 はずすと 自分が ダメージを 受ける。" + }, + "rollingKick": { + "name": "まわしげり", + "effect": "体を 素早く 回転させながら けとばして 攻撃する。 相手を ひるませる ことが ある。" + }, + "sandAttack": { + "name": "すなかけ", + "effect": "相手の 顔に 砂を かけて 命中率を さげる。" + }, + "headbutt": { + "name": "ずつき", + "effect": "頭を 突きだして まっすぐ つっこんで 攻撃する。 相手を ひるませることが ある。" + }, + "hornAttack": { + "name": "つのでつく", + "effect": "鋭く とがった つので 相手を 攻撃する。" + }, + "furyAttack": { + "name": "みだれづき", + "effect": "つのや くちばしで 相手を つついて 攻撃する。 2ー5回の 間 連続で だす。" + }, + "hornDrill": { + "name": "つのドリル", + "effect": "回転する つのを 相手に 突き刺して 攻撃する。 当たれば 一撃で ひんしに する。" + }, + "tackle": { + "name": "たいあたり", + "effect": "相手に むかって 全身で ぶつかっていき 攻撃する。" + }, + "bodySlam": { + "name": "のしかかり", + "effect": "全身で 相手に のしかかり 攻撃する。 まひ状態に することが ある。" + }, + "wrap": { + "name": "まきつく", + "effect": "長い 体や つるなどを 使って 4ー5ターンの 間 相手に まきついて 攻撃する。" + }, + "takeDown": { + "name": "とっしん", + "effect": "すごい 勢いで 相手に ぶつかって 攻撃する。 自分も 少し ダメージを 受ける。" + }, + "thrash": { + "name": "あばれる", + "effect": "2ー3ターンの 間 暴れまくって 相手を 攻撃する。 暴れたあとは 混乱する。" + }, + "doubleEdge": { + "name": "すてみタックル", + "effect": "命を 懸けて 相手に 突進して 攻撃する。 自分も かなり ダメージを 受ける。" + }, + "tailWhip": { + "name": "しっぽをふる", + "effect": "しっぽを 左右に かわいく ふって 油断を 誘う。 相手の 防御を さげる。" + }, + "poisonSting": { + "name": "どくばり", + "effect": "毒の ある ハリを 相手に 突き刺して 攻撃する。 毒状態に することが ある。" + }, + "twineedle": { + "name": "ダブルニードル", + "effect": "2本の ハリを 相手に 突き刺し 2回連続で ダメージ。 毒状態に することが ある。" + }, + "pinMissile": { + "name": "ミサイルばり", + "effect": "鋭い ハリを 相手に 発射して 攻撃する。 2ー5回の 間 連続で だす。" + }, + "leer": { + "name": "にらみつける", + "effect": "鋭い 目つきで おびえさせて 相手の 防御を さげる。" + }, + "bite": { + "name": "かみつく", + "effect": "鋭く とがった 歯で かみついて 攻撃する。 相手を ひるませることが ある。" + }, + "growl": { + "name": "なきごえ", + "effect": "かわいい なきごえを 聞かせて 気を ひき 油断を させて 相手の 攻撃を さげる。" + }, + "roar": { + "name": "ほえる", + "effect": "相手を 逃がして 控えの ポケモンを ひきずりだす。 野生の 場合は 戦闘が 終わる。" + }, + "sing": { + "name": "うたう", + "effect": "心地好い きれいな 歌声を 聞かせて 相手を 眠り状態に する。" + }, + "supersonic": { + "name": "ちょうおんぱ", + "effect": "特殊な 音波を 体から 発して 相手を 混乱させる。" + }, + "sonicBoom": { + "name": "ソニックブーム", + "effect": "衝撃波を 相手に ぶつけて 攻撃する。 20の ダメージを 決まって 与える。" + }, + "disable": { + "name": "かなしばり", + "effect": "相手の 動きを とめて 直前に だしていた 技を 4ターンの 間 使えなくする。" + }, + "acid": { + "name": "ようかいえき", + "effect": "強い 酸を 相手に かけて 攻撃する。 相手の 特防を さげることが ある。" + }, + "ember": { + "name": "ひのこ", + "effect": "小さな 炎を 相手に 発射して 攻撃する。 やけど状態に することが ある。" + }, + "flamethrower": { + "name": "かえんほうしゃ", + "effect": "激しい 炎を 相手に 発射して 攻撃する。 やけど状態に することが ある。" + }, + "mist": { + "name": "しろいきり", + "effect": "白い霧で 体を おおう。 5ターンの 間 相手に 能力を さげられなく なる。" + }, + "waterGun": { + "name": "みずでっぽう", + "effect": "水を 勢いよく 相手に 発射して 攻撃する。" + }, + "hydroPump": { + "name": "ハイドロポンプ", + "effect": "大量の 水を 激しい 勢いで 相手に 発射して 攻撃する。" + }, + "surf": { + "name": "なみのり", + "effect": "大きな 波で 自分の 周りに いるものを 攻撃する。" + }, + "iceBeam": { + "name": "れいとうビーム", + "effect": "凍える ビームを 相手に 発射して 攻撃する。 こおり状態に することが ある。" + }, + "blizzard": { + "name": "ふぶき", + "effect": "激しい 吹雪を 相手に 吹きつけて 攻撃する。 こおり状態に することが ある。" + }, + "psybeam": { + "name": "サイケこうせん", + "effect": "不思議な 光線を 相手に 発射して 攻撃する。 混乱させることが ある。" + }, + "bubbleBeam": { + "name": "バブルこうせん", + "effect": "泡を 勢いよく 相手に 発射して 攻撃する。 素早さを さげる ことが ある。" + }, + "auroraBeam": { + "name": "オーロラビーム", + "effect": "にじいろの ビームを 相手に 発射して 攻撃する。 攻撃を さげる ことが ある。" + }, + "hyperBeam": { + "name": "はかいこうせん", + "effect": "強い 光線を 相手に 発射して 攻撃する。 次の ターンは 動けなくなる。" + }, + "peck": { + "name": "つつく", + "effect": "鋭く とがった くちばしや つので 相手を 突いて 攻撃する。" + }, + "drillPeck": { + "name": "ドリルくちばし", + "effect": "回転しながら とがった くちばしを 相手に 突き刺して 攻撃する。" + }, + "submission": { + "name": "じごくぐるま", + "effect": "地面に 自分ごと 相手を 投げつけて 攻撃する。 自分も 少し ダメージを 受ける。" + }, + "lowKick": { + "name": "けたぐり", + "effect": "足を 強く けり 相手を 転ばせて 攻撃する。 相手が 重いほど 威力が あがる。" + }, + "counter": { + "name": "カウンター", + "effect": "相手から 受けた 物理攻撃の ダメージを 2倍に して 同じ 相手に 返す。" + }, + "seismicToss": { + "name": "ちきゅうなげ", + "effect": "引力を 使い 投げとばす。 自分の レベルと 同じ ダメージを 相手に 与える。" + }, + "strength": { + "name": "かいりき", + "effect": "こん身の 力で 相手を なぐりつけて 攻撃する。" + }, + "absorb": { + "name": "すいとる", + "effect": "養分を 吸い取り 攻撃する。 相手に 与えた ダメージの 半分の HPを 回復できる。" + }, + "megaDrain": { + "name": "メガドレイン", + "effect": "養分を 吸い取り 攻撃する。 相手に 与えた ダメージの 半分の HPを 回復できる。" + }, + "leechSeed": { + "name": "やどりぎのタネ", + "effect": "植えつけた 相手の HPを 毎ターン 少しだけ 吸い取り 自分の HPを 回復する。" + }, + "growth": { + "name": "せいちょう", + "effect": "体を 一気に 大きく 生長させて 攻撃と 特攻を あげる。" + }, + "razorLeaf": { + "name": "はっぱカッター", + "effect": "はっぱを とばして 相手を 切りつけて 攻撃する。 急所に 当たりやすい。" + }, + "solarBeam": { + "name": "ソーラービーム", + "effect": "1ターン目に 光を いっぱいに 集め 2ターン目に 光の 束を 発射して 攻撃する。" + }, + "poisonPowder": { + "name": "どくのこな", + "effect": "毒の ある 粉を たくさん ふりまいて 相手を 毒状態に する。" + }, + "stunSpore": { + "name": "しびれごな", + "effect": "しびれる 粉を たくさん ふりまいて 相手を まひ状態に する。" + }, + "sleepPowder": { + "name": "ねむりごな", + "effect": "眠くなる 粉を たくさん ふりまいて 相手を 眠り状態に する。" + }, + "petalDance": { + "name": "はなびらのまい", + "effect": "2ー3ターンの 間 花を まきちらして 相手を 攻撃する。 まきちらした あとは 混乱する。" + }, + "stringShot": { + "name": "いとをはく", + "effect": "口から 吹きだした 糸を まきつけて 相手の 素早さを がくっと さげる。" + }, + "dragonRage": { + "name": "りゅうのいかり", + "effect": "怒りの 衝撃波を 相手に ぶつけて 攻撃する。 40の ダメージを 決まって 与える。" + }, + "fireSpin": { + "name": "ほのおのうず", + "effect": "激しく 渦をまく 炎の中に 4ー5ターンの 間 相手を 閉じこめて 攻撃する。" + }, + "thunderShock": { + "name": "でんきショック", + "effect": "電気の 刺激を 相手に 浴びせて 攻撃する。 まひ状態に することが ある。" + }, + "thunderbolt": { + "name": "10まんボルト", + "effect": "強い 電撃を 相手に 浴びせて 攻撃する。 まひ状態に することが ある。" + }, + "thunderWave": { + "name": "でんじは", + "effect": "弱い 電撃を 浴びせることで 相手を まひ状態に する。" + }, + "thunder": { + "name": "かみなり", + "effect": "激しい 雷を 相手に 落として 攻撃する。 まひ状態に することが ある。" + }, + "rockThrow": { + "name": "いわおとし", + "effect": "小さな 岩を 持ちあげて 相手に 投げつけて 攻撃する。" + }, + "earthquake": { + "name": "じしん", + "effect": "地震の 衝撃で 自分の 周りに いるものを 攻撃する。" + }, + "fissure": { + "name": "じわれ", + "effect": "地割れの 裂け目に 相手を 落として 攻撃する。 当たれば 一撃で ひんしに する。" + }, + "dig": { + "name": "あなをほる", + "effect": "1ターン目に 潜り 2ターン目で 相手を 攻撃する。" + }, + "toxic": { + "name": "どくどく", + "effect": "相手を 猛毒の 状態に する。 ターンが すすむほど 毒の ダメージが 増えていく。" + }, + "confusion": { + "name": "ねんりき", + "effect": "弱い 念力を 相手に 送って 攻撃する。 相手を 混乱させることが ある。" + }, + "psychic": { + "name": "サイコキネシス", + "effect": "強い 念力を 相手に 送って 攻撃する。 相手の 特防を さげることが ある。" + }, + "hypnosis": { + "name": "さいみんじゅつ", + "effect": "眠気を 誘う 暗示を かけて 相手を 眠り状態に する。" + }, + "meditate": { + "name": "ヨガのポーズ", + "effect": "眠っている 力を 体の 奥から ひきだして 自分の 攻撃を あげる。" + }, + "agility": { + "name": "こうそくいどう", + "effect": "力を ぬいて 体を 軽くして 高速で 動く。 自分の 素早さを ぐーんと あげる。" + }, + "quickAttack": { + "name": "でんこうせっか", + "effect": "目にも 留まらぬ ものすごい 速さで 相手に つっこむ。 必ず 先制攻撃 できる。" + }, + "rage": { + "name": "いかり", + "effect": "技を だしたときに 攻撃を 受けると 怒りの 力で 攻撃が あがる。" + }, + "teleport": { + "name": "テレポート", + "effect": "ひかえの ポケモンが いるときに 使うと 入れ替わる。 野生の ポケモンは 逃げてしまう。" + }, + "nightShade": { + "name": "ナイトヘッド", + "effect": "恐ろしい 幻を みせて 自分の レベルと 同じだけの ダメージを 相手に 与える。" + }, + "mimic": { + "name": "ものまね", + "effect": "相手が 最後に 使った 技を 戦闘の あいだ 自分の 技に することが できる。" + }, + "screech": { + "name": "いやなおと", + "effect": "おもわず 耳を ふさぎたくなる いやなおとを だして 相手の 防御を がくっと さげる。" + }, + "doubleTeam": { + "name": "かげぶんしん", + "effect": "素早い 動きで 分身を つくり 相手を まどわせて 回避率を あげる。" + }, + "recover": { + "name": "じこさいせい", + "effect": "細胞を 再生させて 自分の 最大HPの 半分の HPを 回復する。" + }, + "harden": { + "name": "かたくなる", + "effect": "全身に 力を こめて 体を 硬くして 自分の 防御を あげる。" + }, + "minimize": { + "name": "ちいさくなる", + "effect": "体を ちぢめて 小さく みせて 自分の 回避率を ぐーんと あげる。" + }, + "smokescreen": { + "name": "えんまく", + "effect": "煙や 墨などを 吹きかけて 相手の 命中率を さげる。" + }, + "confuseRay": { + "name": "あやしいひかり", + "effect": "怪しい 光を 相手に みせて まどわせる。 相手を 混乱させる。" + }, + "withdraw": { + "name": "からにこもる", + "effect": "殻に 潜りこんで 身を守り 自分の 防御を あげる。" + }, + "defenseCurl": { + "name": "まるくなる", + "effect": "体を まるめて ちぢこまり 自分の 防御を あげる。" + }, + "barrier": { + "name": "バリアー", + "effect": "頑丈な 壁を つくって 自分の 防御を ぐーんと あげる。" + }, + "lightScreen": { + "name": "ひかりのかべ", + "effect": "5ターンの 間 不思議な かべで 相手から 受ける 特殊攻撃の ダメージを 弱める。" + }, + "haze": { + "name": "くろいきり", + "effect": "黒い霧を だして 戦闘に でている ポケモン 全員の 能力変化を もとに もどす。" + }, + "reflect": { + "name": "リフレクター", + "effect": "5ターンの 間 不思議な かべで 相手から 受ける 物理攻撃の ダメージを 弱める。" + }, + "focusEnergy": { + "name": "きあいだめ", + "effect": "深く 息を 吸い 気合を こめる。 自分の 攻撃が 急所に 当たりやすくなる。" + }, + "bide": { + "name": "がまん", + "effect": "2ターンの 間 攻撃に たえて 受けた ダメージを 2倍にして 相手に 返す。" + }, + "metronome": { + "name": "ゆびをふる", + "effect": "指をふり 自分の 脳を 刺激して すべての 技の なかから どれか 1つを くりだす。" + }, + "mirrorMove": { + "name": "オウムがえし", + "effect": "相手の 使った 技を まねして 自分も 同じ技を 使う。" + }, + "selfDestruct": { + "name": "じばく", + "effect": "爆発を おこして 自分の 周りに いるものを 攻撃する。 使ったあとに ひんしに なる。" + }, + "eggBomb": { + "name": "タマゴばくだん", + "effect": "大きな タマゴを 力いっぱい 相手に 投げつけて 攻撃する。" + }, + "lick": { + "name": "したでなめる", + "effect": "長い 舌で 相手を なめまわして 攻撃する。 まひ状態に することが ある。" + }, + "smog": { + "name": "スモッグ", + "effect": "汚れた ガスを 相手に 吹きつけて 攻撃する。 毒状態に することが ある。" + }, + "sludge": { + "name": "ヘドロこうげき", + "effect": "汚い ヘドロを 相手に 投げつけて 攻撃する。 毒状態に することが ある。" + }, + "boneClub": { + "name": "ホネこんぼう", + "effect": "手に 持った ホネで 相手を なぐりつけて 攻撃する。 相手を ひるませることが ある。" + }, + "fireBlast": { + "name": "だいもんじ", + "effect": "大の字の 炎で 相手を 焼きつくす。 やけど状態に することが ある。" + }, + "waterfall": { + "name": "たきのぼり", + "effect": "すごい 勢いで 相手に つっこむ。 相手を ひるませることが ある。" + }, + "clamp": { + "name": "からではさむ", + "effect": "とても 頑丈な ぶあつい 殻に 4ー5ターンの 間 相手を はさんで 攻撃する。" + }, + "swift": { + "name": "スピードスター", + "effect": "星型の 光を 発射して 相手を 攻撃する。 攻撃は 必ず 命中する。" + }, + "skullBash": { + "name": "ロケットずつき", + "effect": "1ターン目に 頭を ひっこめて 防御を あげる。 2ターン目に 相手を 攻撃する。" + }, + "spikeCannon": { + "name": "とげキャノン", + "effect": "鋭い ハリを 相手に 発射して 攻撃する。 2ー5回の 間 連続で だす。" + }, + "constrict": { + "name": "からみつく", + "effect": "触手や ツタなどを からみつけて 攻撃する。相手の 素早さを さげることが ある。" + }, + "amnesia": { + "name": "ドわすれ", + "effect": "頭を からにして 一瞬 なにかを 忘れることで 自分の 特防を ぐーんと あげる。" + }, + "kinesis": { + "name": "スプーンまげ", + "effect": "スプーンを まげて 注意を ひき 相手の 命中率を さげる。" + }, + "softBoiled": { + "name": "タマゴうみ", + "effect": "最大HPの 半分 自分の HPを 回復する。" + }, + "highJumpKick": { + "name": "とびひざげり", + "effect": "ジャンプからの ひざげりで 相手を 攻撃する。 はずすと 自分が ダメージを 受ける。" + }, + "glare": { + "name": "へびにらみ", + "effect": "おなかの 模様で おびえさせて 相手を まひの 状態に する。" + }, + "dreamEater": { + "name": "ゆめくい", + "effect": "寝ている 相手の 夢を 食べて 攻撃する。 ダメージの 半分の HPを 回復する。" + }, + "poisonGas": { + "name": "どくガス", + "effect": "毒ガスを 相手の 顔に 吹きかけて 毒の 状態に する。" + }, + "barrage": { + "name": "たまなげ", + "effect": "まるい ものを 相手に 投げつけて 攻撃する。 2ー5回の 間 連続で だす。" + }, + "leechLife": { + "name": "きゅうけつ", + "effect": "血を 吸い取って 相手を 攻撃する。 与えた ダメージの 半分の HPを 回復できる。" + }, + "lovelyKiss": { + "name": "あくまのキッス", + "effect": "恐ろしい 顔で キスを せまる。 相手を 眠り状態に する。" + }, + "skyAttack": { + "name": "ゴッドバード", + "effect": "2ターン目に 相手を 攻撃する。 たまに ひるませる。 急所にも 当たりやすい。" + }, + "transform": { + "name": "へんしん", + "effect": "相手の ポケモンに 変身することで 相手と まったく 同じ 技が 使える。" + }, + "bubble": { + "name": "あわ", + "effect": "無数の 泡を 相手に 吹きかけて 攻撃する。 相手の 素早さを さげることが ある。" + }, + "dizzyPunch": { + "name": "ピヨピヨパンチ", + "effect": "リズミカルに パンチを くりだして 相手を 攻撃する。 混乱させることが ある。" + }, + "spore": { + "name": "キノコのほうし", + "effect": "催眠効果の ある 胞子を パラパラと ふりまき 相手を 眠り状態に する。" + }, + "flash": { + "name": "フラッシュ", + "effect": "まぶしい 光で 相手の 命中率を さげる。" + }, + "psywave": { + "name": "サイコウェーブ", + "effect": "不思議な 念波を 相手に 発射して 攻撃する。 使うたびに ダメージが 変わる。" + }, + "splash": { + "name": "はねる", + "effect": "攻撃もせずに ピョン ピョンと 跳ねるだけで なにも おこらない……。" + }, + "acidArmor": { + "name": "とける", + "effect": "細胞の 変化で 液状に なり 自分の 防御を ぐーんと あげる。" + }, + "crabhammer": { + "name": "クラブハンマー", + "effect": "大きな ハサミを 相手に たたきつけて 攻撃する。 急所に 当たりやすい。" + }, + "explosion": { + "name": "だいばくはつ", + "effect": "大きな 爆発で 自分の 周りに いるものを 攻撃する。 使ったあとに ひんしに なる。" + }, + "furySwipes": { + "name": "みだれひっかき", + "effect": "ツメや カマなどで 相手を ひっかいて 攻撃する。 2ー5回の 間 連続で だす。" + }, + "bonemerang": { + "name": "ホネブーメラン", + "effect": "手に 持った ホネを 相手に 投げつけ 行きと 帰りの 2回連続で ダメージを 与える。" + }, + "rest": { + "name": "ねむる", + "effect": "2ターンの 間 眠り続ける。 自分の HPと 状態異常を すべて 回復する。" + }, + "rockSlide": { + "name": "いわなだれ", + "effect": "大きな 岩を 激しく ぶつけて 攻撃する。 相手を ひるませることが ある。" + }, + "hyperFang": { + "name": "ひっさつまえば", + "effect": "鋭い 前歯で 強く かみついて 攻撃する。 相手を ひるませることが ある。" + }, + "sharpen": { + "name": "かくばる", + "effect": "体の かどを 増やして カクカクに なることで 自分の 攻撃を あげる。" + }, + "conversion": { + "name": "テクスチャー", + "effect": "自分の タイプを おぼえている 技で 一番 上の 技と 同じ タイプに する。" + }, + "triAttack": { + "name": "トライアタック", + "effect": "3つの 光線で 攻撃する。 まひか やけどか こおり状態の どれかに することが ある。" + }, + "superFang": { + "name": "いかりのまえば", + "effect": "鋭い 前歯で 激しく かみついて 攻撃する。 相手の HPは 半分に なる。" + }, + "slash": { + "name": "きりさく", + "effect": "ツメや カマなどで 相手を 切り裂いて 攻撃する。 急所に 当たりやすい。" + }, + "substitute": { + "name": "みがわり", + "effect": "自分の HPを 少し 削って 分身を だす。 分身は 自分の 身代わりに なる。" + }, + "struggle": { + "name": "わるあがき", + "effect": "自分の PPが なくなると あがいて 相手を 攻撃する。 自分も 少し ダメージを 受ける。" + }, + "sketch": { + "name": "スケッチ", + "effect": "相手が 使った 技を 自分の ものに する。 1回 使うと スケッチは 消える。" + }, + "tripleKick": { + "name": "トリプルキック", + "effect": "3回連続で キックを くりだして 攻撃する。 技が 当たるたびに 威力は あがる。" + }, + "thief": { + "name": "どろぼう", + "effect": "攻撃と 同時に 道具を 盗もうとする。 盗む 可能性は 30%。" + }, + "spiderWeb": { + "name": "クモのす", + "effect": "ネバネバした 細い 糸を グルグルと からませて 相手を 戦闘から 逃げられなくする。" + }, + "mindReader": { + "name": "こころのめ", + "effect": "相手の 動きを 心で 感じて 次の 攻撃が 必ず 相手に 当たるように する。" + }, + "nightmare": { + "name": "あくむ", + "effect": "眠り状態の 相手に 悪夢を みせて 毎ターン 少しずつ HPを 減らしていく。" + }, + "flameWheel": { + "name": "かえんぐるま", + "effect": "炎を まとい 相手に 突進して 攻撃する。 やけど状態に することが ある。" + }, + "snore": { + "name": "いびき", + "effect": "自分が 寝ているときに 雑音を だして 攻撃する。 相手を ひるませることが ある。" + }, + "curse": { + "name": "のろい", + "effect": "使う ポケモンが ゴーストタイプと それ以外 とでは 効果が 変わる。" + }, + "flail": { + "name": "じたばた", + "effect": "じたばた 暴れて 攻撃する。 自分の HPが 少ないほど 技の 威力は あがる。" + }, + "conversion2": { + "name": "テクスチャー2", + "effect": "相手が 最後に 使った技に 抵抗できる ように 自分の タイプを 変化させる。" + }, + "aeroblast": { + "name": "エアロブラスト", + "effect": "空気の 渦を 発射して 攻撃する。 急所に 当たりやすい。" + }, + "cottonSpore": { + "name": "わたほうし", + "effect": "綿のような フワフワの 胞子を まとわり つかせて 相手の 素早さを がくっと さげる。" + }, + "reversal": { + "name": "きしかいせい", + "effect": "力を ふりしぼり 攻撃する。 自分の HPが 少ないほど 技の 威力は あがる。" + }, + "spite": { + "name": "うらみ", + "effect": "相手が 最後に 使った技に 恨みを 抱いて その技の PPを 4だけ 減らす。" + }, + "powderSnow": { + "name": "こなゆき", + "effect": "冷たい 粉雪を 相手に 吹きつけて 攻撃する。 こおり状態に することが ある。" + }, + "protect": { + "name": "まもる", + "effect": "相手の 攻撃を まったく 受けない。 連続で だすと 失敗しやすい。" + }, + "machPunch": { + "name": "マッハパンチ", + "effect": "目にも 留まらぬ ものすごい 速さで パンチを くりだす。 必ず 先制攻撃 できる。" + }, + "scaryFace": { + "name": "こわいかお", + "effect": "恐ろしい 顔で にらみ おびえさせて 相手の 素早さを がくっと さげる。" + }, + "feintAttack": { + "name": "だましうち", + "effect": "さりげなく 相手に ちかづき 油断した すきを みて なぐりつける。 攻撃は 必ず 命中する。" + }, + "sweetKiss": { + "name": "てんしのキッス", + "effect": "天使のように かわいく キスして 相手を 混乱させる。" + }, + "bellyDrum": { + "name": "はらだいこ", + "effect": "自分の HPを 最大HPの 半分 減らして 自分の 攻撃を 最大に あげる。" + }, + "sludgeBomb": { + "name": "ヘドロばくだん", + "effect": "汚い ヘドロを 相手に 投げつけて 攻撃する。 毒状態に することが ある。" + }, + "mudSlap": { + "name": "どろかけ", + "effect": "相手の 顔などに 泥を 投げつけて 攻撃する。 命中率を さげる。" + }, + "octazooka": { + "name": "オクタンほう", + "effect": "相手の 顔などに 墨を 吹きかけて 攻撃する。 命中率を さげることが ある。" + }, + "spikes": { + "name": "まきびし", + "effect": "相手の 足下に まきびしを しかける。交代で でてきた 相手の ポケモンに ダメージを 与える。" + }, + "zapCannon": { + "name": "でんじほう", + "effect": "大砲の ような 電気を 発射して 攻撃する。 相手を まひの 状態に する。" + }, + "foresight": { + "name": "みやぶる", + "effect": "ゴーストタイプに 効果がない 技や 回避率の 高い 相手に 攻撃が 当たるように なる。" + }, + "destinyBond": { + "name": "みちづれ", + "effect": "技のあと 相手の 攻撃で ひんしに なると 攻撃 相手も ひんしにする。 連続して 出すと 失敗する。" + }, + "perishSong": { + "name": "ほろびのうた", + "effect": "歌を 聴いた ポケモンは 3ターン たつと ひんしに なる。 交代すると 効果は なくなる。" + }, + "icyWind": { + "name": "こごえるかぜ", + "effect": "凍てつく 冷気を 相手に 吹きつけて 攻撃する。 相手の 素早さを さげる。" + }, + "detect": { + "name": "みきり", + "effect": "相手の 攻撃を まったく 受けない。 連続で だすと 失敗しやすい。" + }, + "boneRush": { + "name": "ボーンラッシュ", + "effect": "硬い ホネで 相手を なぐりつけて 攻撃する。 2ー5回の 間 連続で だす。" + }, + "lockOn": { + "name": "ロックオン", + "effect": "照準を しっかり あわせて 次の 攻撃が 必ず 相手に 当たるように する。" + }, + "outrage": { + "name": "げきりん", + "effect": "2ー3ターンの 間 暴れまくって 相手を 攻撃する。 暴れたあとは 混乱する。" + }, + "sandstorm": { + "name": "すなあらし", + "effect": "5ターンの 間 砂あらしで いわ じめん はがねタイプ 以外に ダメージ。 いわタイプの 特防が あがる。" + }, + "gigaDrain": { + "name": "ギガドレイン", + "effect": "養分を 吸い取り 攻撃する。 相手に 与えた ダメージの 半分の HPを 回復できる。" + }, + "endure": { + "name": "こらえる", + "effect": "攻撃を 受けても HPを 必ず 1だけ 残せる。 連続で だすと 失敗しやすい。" + }, + "charm": { + "name": "あまえる", + "effect": "かわいく みつめて 油断を 誘い 相手の 攻撃を がくっと さげる。" + }, + "rollout": { + "name": "ころがる", + "effect": "5ターンの 間 転がり続けて 攻撃する。 技が 当たるたびに 威力が あがる。" + }, + "falseSwipe": { + "name": "みねうち", + "effect": "相手の HPが 必ず 1だけ 残るように 手加減して 攻撃する。" + }, + "swagger": { + "name": "いばる", + "effect": "相手を 怒らせて 混乱させる。 怒りで 相手の 攻撃は ぐーんと あがってしまう。" + }, + "milkDrink": { + "name": "ミルクのみ", + "effect": "最大HPの 半分 自分の HPを 回復する。" + }, + "spark": { + "name": "スパーク", + "effect": "電気を まとい 相手に 突進して 攻撃する。 まひ状態に することが ある。" + }, + "furyCutter": { + "name": "れんぞくぎり", + "effect": "カマや ツメなどで 相手を 切りつけて 攻撃する。 連続で 当てると 威力が あがる。" + }, + "steelWing": { + "name": "はがねのつばさ", + "effect": "硬い 翼を 相手に たたきつけて 攻撃する。 自分の 防御が あがることが ある。" + }, + "meanLook": { + "name": "くろいまなざし", + "effect": "吸いこまれるような 黒い まなざしで じっと みつめて 相手を 戦闘から 逃げられなくする。" + }, + "attract": { + "name": "メロメロ", + "effect": "♂なら♀を ♀なら♂を 誘惑して メロメロに する。 相手は 技が だしにくくなる。" + }, + "sleepTalk": { + "name": "ねごと", + "effect": "自分が おぼえている 技の うち どれか 1つを くりだす。 自分が 寝ているときだけ 使える。" + }, + "healBell": { + "name": "いやしのすず", + "effect": "心地好い 鈴の 音色を 聞かせて 味方 全員の 状態異常を 回復 する。" + }, + "return": { + "name": "おんがえし", + "effect": "トレーナーの ために 全力で 相手を 攻撃する。 なついているほど 威力は あがる。" + }, + "present": { + "name": "プレゼント", + "effect": "わなを しかけた 箱を 相手に わたして 攻撃する。HPが 回復して しまうことも ある。" + }, + "frustration": { + "name": "やつあたり", + "effect": "不満を はらすため 全力で 相手を 攻撃する。 なついていないほど 威力は あがる。" + }, + "safeguard": { + "name": "しんぴのまもり", + "effect": "5ターンの 間 不思議な 力に 守られて 状態異常に ならなくなる。" + }, + "painSplit": { + "name": "いたみわけ", + "effect": "自分の HPと 相手の HPを あわせて それを 自分と 相手で なかよく わける。" + }, + "sacredFire": { + "name": "せいなるほのお", + "effect": "神秘の 炎で 相手を 焼きつくして 攻撃する。 やけど状態に することが ある。" + }, + "magnitude": { + "name": "マグニチュード", + "effect": "地面を 揺らして 自分の 周りに いるものを 攻撃する。 技の 威力は いろいろ 変わる。" + }, + "dynamicPunch": { + "name": "ばくれつパンチ", + "effect": "こん身の 力で パンチを くりだして 攻撃する。 相手を 必ず 混乱させる。" + }, + "megahorn": { + "name": "メガホーン", + "effect": "硬くて りっぱな つので おもいっきり 相手を 突き刺して 攻撃する。" + }, + "dragonBreath": { + "name": "りゅうのいぶき", + "effect": "ものすごい 息を 相手に 吹きつけて 攻撃する。 まひ状態に することが ある。" + }, + "batonPass": { + "name": "バトンタッチ", + "effect": "控えの ポケモンと 入れ替わる。 能力変化は 替わった ポケモンが そのまま 受けつぐ。" + }, + "encore": { + "name": "アンコール", + "effect": "相手に アンコールした 技を 3回 続けて 出させる。" + }, + "pursuit": { + "name": "おいうち", + "effect": "相手 ポケモンが 入れ替わるときに 技を だしていると 倍の 威力で 攻撃できる。" + }, + "rapidSpin": { + "name": "こうそくスピン", + "effect": "回転して 相手を 攻撃する。 しめつける まきつく やどりぎのタネ など 吹きとばす。自分の 素早さも あがる。" + }, + "sweetScent": { + "name": "あまいかおり", + "effect": "香りで 相手の 回避率を がくっと さげる。" + }, + "ironTail": { + "name": "アイアンテール", + "effect": "硬い しっぽで 相手を たたきつけて 攻撃する。 相手の 防御を さげることが ある。" + }, + "metalClaw": { + "name": "メタルクロー", + "effect": "鋼鉄の ツメで 相手を 切り裂いて 攻撃する。 自分の 攻撃が あがることが ある。" + }, + "vitalThrow": { + "name": "あてみなげ", + "effect": "相手より あとに 攻撃する。 そのかわり 自分の 攻撃は 必ず 命中する。" + }, + "morningSun": { + "name": "あさのひざし", + "effect": "自分の HPを 回復する。 天気に よって 回復の 量が 変化する。" + }, + "synthesis": { + "name": "こうごうせい", + "effect": "自分の HPを 回復する。 天気に よって 回復の 量が 変化する。" + }, + "moonlight": { + "name": "つきのひかり", + "effect": "自分の HPを 回復する。 天気に よって 回復の 量が 変化する。" + }, + "hiddenPower": { + "name": "めざめるパワー", + "effect": "技を 使った ポケモンに よって 技の タイプが 変わる。" + }, + "crossChop": { + "name": "クロスチョップ", + "effect": "両手チョップを 相手に たたきつけて 攻撃する。 急所に 当たりやすい。" + }, + "twister": { + "name": "たつまき", + "effect": "竜巻を おこして 相手を まきこみ 攻撃する。 相手を ひるませることが ある。" + }, + "rainDance": { + "name": "あまごい", + "effect": "5ターンの 間 雨を 降らせて みずタイプの 威力を あげる。 ほのおタイプの 威力は さがる。" + }, + "sunnyDay": { + "name": "にほんばれ", + "effect": "5ターンの 間 日差しを 強くして ほのおタイプの 威力を あげる。 みずタイプの 威力は さがる。" + }, + "crunch": { + "name": "かみくだく", + "effect": "鋭い 歯で 相手を かみくだいて 攻撃する。 相手の 防御を さげることが ある。" + }, + "mirrorCoat": { + "name": "ミラーコート", + "effect": "相手から 受けた 特殊攻撃の ダメージを 2倍に して その相手に 返す。" + }, + "psychUp": { + "name": "じこあんじ", + "effect": "自分に 暗示を かけることで 能力変化の 状態を 相手と 同じにする。" + }, + "extremeSpeed": { + "name": "しんそく", + "effect": "目にも 留まらぬ ものすごい 速さで 相手に 突進して 攻撃する。 必ず 先制攻撃 できる。" + }, + "ancientPower": { + "name": "げんしのちから", + "effect": "原始の 力で 攻撃する。 自分の すべての 能力が あがることが ある。" + }, + "shadowBall": { + "name": "シャドーボール", + "effect": "黒い影の 塊を 投げつけて 攻撃する。 相手の 特防を さげることが ある。" + }, + "futureSight": { + "name": "みらいよち", + "effect": "技を 使った 2ターン後に 相手に 念力の 塊を 送って 攻撃する。" + }, + "rockSmash": { + "name": "いわくだき", + "effect": "パンチで 攻撃する。相手の 防御を さげる ことが ある。" + }, + "whirlpool": { + "name": "うずしお", + "effect": "激しく 渦をまく 水の中に 4ー5ターンの 間 相手を 閉じこめて 攻撃する。" + }, + "beatUp": { + "name": "ふくろだたき", + "effect": "味方 全員で 攻撃する。 仲間の ポケモンが 多いほど 技の 攻撃回数が 増える。" + }, + "fakeOut": { + "name": "ねこだまし", + "effect": "先制攻撃で 相手を ひるませる。 戦闘に でたら すぐに ださないと 成功しない。" + }, + "uproar": { + "name": "さわぐ", + "effect": "3ターンの 間 騒いで 相手を 攻撃する。 そのあいだは だれも 眠れなくなる。" + }, + "stockpile": { + "name": "たくわえる", + "effect": "力を 蓄えて 自分の 防御と 特防を あげる。 最大 3回まで 蓄えられる。" + }, + "spitUp": { + "name": "はきだす", + "effect": "蓄えた 力を 相手に ぶつけて 攻撃する。 蓄えているほど 威力が あがる。" + }, + "swallow": { + "name": "のみこむ", + "effect": "蓄えた 力を のみこんで 自分の HPを 回復する。 蓄えているほど 回復する。" + }, + "heatWave": { + "name": "ねっぷう", + "effect": "熱い 息を 相手に 吹きつけて 攻撃する。 やけど状態に することが ある。" + }, + "hail": { + "name": "あられ", + "effect": "5ターンの 間 あられを 降らして こおりタイプで ない ポケモン 全員に ダメージを 与える。" + }, + "torment": { + "name": "いちゃもん", + "effect": "相手に いちゃもんを つけて 同じ 技を 2回連続で だせなくする。" + }, + "flatter": { + "name": "おだてる", + "effect": "相手を おだてて 混乱させる。 同時に 相手の 特攻も あげてしまう。" + }, + "willOWisp": { + "name": "おにび", + "effect": "不気味で 怪しい 炎を 放って 相手を やけどの 状態に する。" + }, + "memento": { + "name": "おきみやげ", + "effect": "自分は ひんしに なるが そのかわりに 相手の 攻撃と 特攻を がくっと さげる。" + }, + "facade": { + "name": "からげんき", + "effect": "自分が 毒 まひ やけど 状態のとき 相手に くりだすと 技の 威力が 2倍に なる。" + }, + "focusPunch": { + "name": "きあいパンチ", + "effect": "精神を 高めて パンチを くりだす。 技を だすまでに 攻撃を 受けると 失敗する。" + }, + "smellingSalts": { + "name": "きつけ", + "effect": "まひ状態の 相手には 威力が 2倍に なるが かわりに 相手の まひが 治る。" + }, + "followMe": { + "name": "このゆびとまれ", + "effect": "自分に 注目させて 相手からの 攻撃を すべて 自分に むけさせる。" + }, + "naturePower": { + "name": "しぜんのちから", + "effect": "自然の 力で 攻撃する。 使う 場所で でてくる 技が 変化する。" + }, + "charge": { + "name": "じゅうでん", + "effect": "次の ターンに だす でんきタイプの 技の 威力を あげる。 自分の 特防も あがる。" + }, + "taunt": { + "name": "ちょうはつ", + "effect": "相手を 怒らせる。 3ターンの 間 相手は ダメージを 与える 技しか だせなくなる。" + }, + "helpingHand": { + "name": "てだすけ", + "effect": "仲間を 助ける。 てだすけ された ポケモンの 技の 威力は いつもより 大きくなる。" + }, + "trick": { + "name": "トリック", + "effect": "相手の すきを ついて 自分と 相手の 持ち物を 交換する。" + }, + "rolePlay": { + "name": "なりきり", + "effect": "相手に なりきって 自分も 相手と 同じ 特性に 変化する。" + }, + "wish": { + "name": "ねがいごと", + "effect": "次の ターンに 自分 もしくは 入れ替わった ポケモンの HPを 最大HPの 半分 回復する。" + }, + "assist": { + "name": "ねこのて", + "effect": "大急ぎで 味方の 助けを かりて 味方の ポケモンが おぼえている 技を どれか 1つ 使う。" + }, + "ingrain": { + "name": "ねをはる", + "effect": "大地に 根を 張り 毎ターン 自分の HPを 回復する。 根を 張っているので 入れ替えられない。" + }, + "superpower": { + "name": "ばかぢから", + "effect": "すごい 力を 発揮して 相手を 攻撃する。自分の 攻撃と 防御が さがる。" + }, + "magicCoat": { + "name": "マジックコート", + "effect": "状態異常に なる 技や やどりぎのタネ などを だされたとき 相手に 跳ね返す。" + }, + "recycle": { + "name": "リサイクル", + "effect": "戦闘中に 使って なくなった 自分の 持ち物を 再生させて 使えるように する。" + }, + "revenge": { + "name": "リベンジ", + "effect": "相手から 技を 受けていると その相手に 対して 与える ダメージが 2倍に なる。" + }, + "brickBreak": { + "name": "かわらわり", + "effect": "手刀を 勢いよく 振りおろして 相手を 攻撃する。 ひかりのかべや リフレクター なども 破壊できる。" + }, + "yawn": { + "name": "あくび", + "effect": "大きな あくびで 眠気を 誘う。 次の ターンに 相手を 眠り状態に する。" + }, + "knockOff": { + "name": "はたきおとす", + "effect": "相手の 持ち物を はたき 落として 戦闘が 終わるまで 使えなくする。 物を持つ 相手には ダメージが増す。" + }, + "endeavor": { + "name": "がむしゃら", + "effect": "相手の HPが 自分の HPと 同じくらいに なるように ダメージを 与える。" + }, + "eruption": { + "name": "ふんか", + "effect": "怒りを 爆発させて 相手を 攻撃する。 自分の HPが 少ないほど 技の 威力は さがる。" + }, + "skillSwap": { + "name": "スキルスワップ", + "effect": "超能力で 自分の 特性と 相手の 特性を 入れ替える。" + }, + "imprison": { + "name": "ふういん", + "effect": "相手が 自分と 同じ 技を おぼえていたら 相手だけ その技を 使えなくする。" + }, + "refresh": { + "name": "リフレッシュ", + "effect": "体を やすめて 自分が おっている 毒 まひ やけどの 状態異常を 治す。" + }, + "grudge": { + "name": "おんねん", + "effect": "相手の 技で ひんしに されたとき おんねんを かけて その技の PPを 0に する。" + }, + "snatch": { + "name": "よこどり", + "effect": "相手が 使おうと した 回復技や 能力変化の 技を うばって 自分に 使う。" + }, + "secretPower": { + "name": "ひみつのちから", + "effect": "使う場所で 追加効果が 変化する 攻撃。" + }, + "dive": { + "name": "ダイビング", + "effect": "1ターン目で 潜り 2ターン目に 浮きあがって 攻撃する。" + }, + "armThrust": { + "name": "つっぱり", + "effect": "ひらいた 両手で 相手を つっぱって 攻撃する。 2ー5回の 間 連続で だす。" + }, + "camouflage": { + "name": "ほごしょく", + "effect": "水辺や 草むら どうくつなど いる 場所に あわせて 自分の タイプを 変える。" + }, + "tailGlow": { + "name": "ほたるび", + "effect": "点滅する 光を 眺めて 自分の 精神を 統一し 特攻を ぐぐーんと あげる。" + }, + "lusterPurge": { + "name": "ラスターパージ", + "effect": "まばゆい 光を 解放して 攻撃する。 相手の 特防を さげることが ある。" + }, + "mistBall": { + "name": "ミストボール", + "effect": "霧状の 羽毛で 包みこみ 攻撃する。 相手の 特攻を さげることが ある。" + }, + "featherDance": { + "name": "フェザーダンス", + "effect": "羽毛を ふりまいて 相手の 体に からませる。 相手の 攻撃を がくっと さげる。" + }, + "teeterDance": { + "name": "フラフラダンス", + "effect": "フラフラと ダンスを おどって 自分の 周りに いるものを 混乱状態に させる。" + }, + "blazeKick": { + "name": "ブレイズキック", + "effect": "攻撃した 相手を やけど状態に することが ある。 急所にも 当たりやすい。" + }, + "mudSport": { + "name": "どろあそび", + "effect": "あたりを 泥まみれにする。 5ターンの 間 でんきタイプの 技を 弱める。" + }, + "iceBall": { + "name": "アイスボール", + "effect": "5ターンの 間 相手を 攻撃する。 技が 当たるたび 威力が あがる。" + }, + "needleArm": { + "name": "ニードルアーム", + "effect": "トゲの 腕を 激しく ふるって 攻撃する。 相手を ひるませることが ある。" + }, + "slackOff": { + "name": "なまける", + "effect": "怠けて やすむ。 自分の HPを 最大HPの 半分 回復する。" + }, + "hyperVoice": { + "name": "ハイパーボイス", + "effect": "うるさく 響く 大きな 振動を 相手に 与えて 攻撃する。" + }, + "poisonFang": { + "name": "どくどくのキバ", + "effect": "毒の ある キバで 相手に かみついて 攻撃する。 猛毒を おわせる ことが ある。" + }, + "crushClaw": { + "name": "ブレイククロー", + "effect": "硬く 鋭い ツメで 切り裂いて 攻撃する。 相手の 防御を さげることが ある。" + }, + "blastBurn": { + "name": "ブラストバーン", + "effect": "爆発の 炎で 相手を 焼きつくして 攻撃する。 次の ターンは 動けなくなる。" + }, + "hydroCannon": { + "name": "ハイドロカノン", + "effect": "水の 大砲を 相手に 発射して 攻撃する。 次の ターンは 動けなくなる。" + }, + "meteorMash": { + "name": "コメットパンチ", + "effect": "すい星の ごとく パンチを くりだして 相手を 攻撃する。 自分の 攻撃が あがることが ある。" + }, + "astonish": { + "name": "おどろかす", + "effect": "大きな 声などで 不意に 驚かして 攻撃する。 相手を ひるませることが ある。" + }, + "weatherBall": { + "name": "ウェザーボール", + "effect": "使ったときの 天気に よって 技の タイプと 威力が 変わる。" + }, + "aromatherapy": { + "name": "アロマセラピー", + "effect": "心地好い やすらぐ 香りを かがせて 味方全員の 状態異常を 回復する。" + }, + "fakeTears": { + "name": "うそなき", + "effect": "ないた ふりをして 涙を 流す。 こまらせる ことで 相手の 特防を がくっと さげる。" + }, + "airCutter": { + "name": "エアカッター", + "effect": "鋭い 風で 相手を 切りつけて 攻撃する。 急所に 当たりやすい。" + }, + "overheat": { + "name": "オーバーヒート", + "effect": "フルパワーで 相手を 攻撃する。 使うと 反動で 自分の 特攻が がくっと さがる。" + }, + "odorSleuth": { + "name": "かぎわける", + "effect": "ゴーストタイプに 効果がない 技や 回避率の 高い 相手に 攻撃が 当たるように なる。" + }, + "rockTomb": { + "name": "がんせきふうじ", + "effect": "岩石を 投げつけて 攻撃する。 相手の 動きを 封じることで 素早さを さげる。" + }, + "silverWind": { + "name": "ぎんいろのかぜ", + "effect": "風に りんぷんを のせて 相手を 攻撃する。自分の すべての 能力が あがることが ある。" + }, + "metalSound": { + "name": "きんぞくおん", + "effect": "金属を こすって でるような いやな 音を 聞かせる。 相手の 特防を がくっと さげる。" + }, + "grassWhistle": { + "name": "くさぶえ", + "effect": "心地好い 笛の 音色を 聞かせて 相手を 眠りの 状態に する。" + }, + "tickle": { + "name": "くすぐる", + "effect": "体を くすぐり 笑わせる ことで 相手の 攻撃と 防御を さげる。" + }, + "cosmicPower": { + "name": "コスモパワー", + "effect": "宇宙から 神秘の 力を とりこむ ことで 自分の 防御と 特防を あげる。" + }, + "waterSpout": { + "name": "しおふき", + "effect": "潮を 吹きつけて 攻撃する。 自分の HPが 少ないほど 技の 威力は さがる。" + }, + "signalBeam": { + "name": "シグナルビーム", + "effect": "不思議な 光を 発射して 攻撃する。 相手を 混乱させることが ある。" + }, + "shadowPunch": { + "name": "シャドーパンチ", + "effect": "影に まぎれて パンチを くりだす。 攻撃は 必ず 命中する。" + }, + "extrasensory": { + "name": "じんつうりき", + "effect": "みえない 不思議な 力を 送って 攻撃する。 相手を ひるませることが ある。" + }, + "skyUppercut": { + "name": "スカイアッパー", + "effect": "空に むかうような 高い アッパーで 相手を 突きあげて 攻撃する。" + }, + "sandTomb": { + "name": "すなじごく", + "effect": "激しく 吹きあれる 砂あらしの 中に 4ー5ターンの 間 相手を 閉じこめて 攻撃する。" + }, + "sheerCold": { + "name": "ぜったいれいど", + "effect": "相手を 一撃で 瀕死に する。 こおりタイプ 以外の ポケモンが 使うと 当たりにくい。" + }, + "muddyWater": { + "name": "だくりゅう", + "effect": "濁った 水を 相手に 発射して 攻撃する。 命中率を さげることが ある。" + }, + "bulletSeed": { + "name": "タネマシンガン", + "effect": "タネを 勢いよく 相手に 発射して 攻撃する。 2ー5回の 間 連続で だす。" + }, + "aerialAce": { + "name": "つばめがえし", + "effect": "素早い 動きで 相手を ほんろうして 切りつける。 攻撃は 必ず 命中する。" + }, + "icicleSpear": { + "name": "つららばり", + "effect": "鋭い 氷柱を 相手に 発射して 攻撃する。 2ー5回の 間 連続で だす。" + }, + "ironDefense": { + "name": "てっぺき", + "effect": "皮膚を 鉄のように 硬くする ことで 自分の 防御を ぐーんと あげる。" + }, + "block": { + "name": "とおせんぼう", + "effect": "両手を ひろげて たちはだかり 相手の 逃げ道を ふさいで 逃げられなくする。" + }, + "howl": { + "name": "とおぼえ", + "effect": "大声で ほえて 気合を 高め 自分と 味方の 攻撃を あげる。" + }, + "dragonClaw": { + "name": "ドラゴンクロー", + "effect": "鋭く とがった 巨大な ツメで 相手を 切り裂いて 攻撃する。" + }, + "frenzyPlant": { + "name": "ハードプラント", + "effect": "大きな 樹木で 相手を たたきつけて 攻撃する。 次の ターンは 動けなくなる。" + }, + "bulkUp": { + "name": "ビルドアップ", + "effect": "体に 力を こめて 筋肉を ぶあつく することで 自分の 攻撃と 防御を あげる。" + }, + "bounce": { + "name": "とびはねる", + "effect": "空高く 飛び跳ねて 2ターン目に 相手を 攻撃する。 まひ状態に することが ある。" + }, + "mudShot": { + "name": "マッドショット", + "effect": "泥の 塊を 相手に 投げつけて 攻撃する。 同時に 相手の 素早さを さげる。" + }, + "poisonTail": { + "name": "ポイズンテール", + "effect": "しっぽで たたく。 毒状態に することが あり 急所にも 当たりやすい。" + }, + "covet": { + "name": "ほしがる", + "effect": "かわいく あまえながら 相手に ちかづき 持っている 道具を うばおうとする。 うばう 可能性は 30%。" + }, + "voltTackle": { + "name": "ボルテッカー", + "effect": "電気を まとって 突進する。 自分も かなり ダメージを 受ける。 まひ状態に することが ある。" + }, + "magicalLeaf": { + "name": "マジカルリーフ", + "effect": "相手を 追跡する 不思議な はっぱを まきちらす。 攻撃は 必ず 命中する。" + }, + "waterSport": { + "name": "みずあそび", + "effect": "あたりを 水で びしょびしょにする。 5ターンの 間 ほのおタイプの 技を 弱める。" + }, + "calmMind": { + "name": "めいそう", + "effect": "静かに 精神を 統一し 心を 鎮めることで 自分の 特攻と 特防を あげる。" + }, + "leafBlade": { + "name": "リーフブレード", + "effect": "はっぱを 剣のように あやつり 相手を 切りつけて 攻撃する。 急所に 当たりやすい。" + }, + "dragonDance": { + "name": "りゅうのまい", + "effect": "神秘的で 力強い 舞を 激しく おどる。 自分の 攻撃と 素早さを あげる。" + }, + "rockBlast": { + "name": "ロックブラスト", + "effect": "硬い 岩石を 相手に 発射して 攻撃する。 2ー5回の 間 連続で だす。" + }, + "shockWave": { + "name": "でんげきは", + "effect": "電撃を 素早く 相手に 浴びせる。 攻撃は 必ず 命中する。" + }, + "waterPulse": { + "name": "みずのはどう", + "effect": "水の 振動を 相手に 与えて 攻撃する。 相手を 混乱させることが ある。" + }, + "doomDesire": { + "name": "はめつのねがい", + "effect": "技を 使った 2ターン後に 無数の 光の 束で 相手を 攻撃する。" + }, + "psychoBoost": { + "name": "サイコブースト", + "effect": "フルパワーで 相手を 攻撃する。 使うと 反動で 自分の 特攻が がくっと さがる。" + }, + "roost": { + "name": "はねやすめ", + "effect": "地面に 降りて 体を やすめる。 最大HPの 半分の HPを 回復する。" + }, + "gravity": { + "name": "じゅうりょく", + "effect": "5ターンの間 ふゆうや ひこうタイプに じめんタイプの 技が 当たるようになる。 空中に 飛ぶ 技も 使えない。" + }, + "miracleEye": { + "name": "ミラクルアイ", + "effect": "あくタイプに 効果がない 技や 回避率の 高い 相手に 攻撃が 当たるように なる。" + }, + "wakeUpSlap": { + "name": "めざましビンタ", + "effect": "眠り状態の 相手に 大きな ダメージを 与える。 かわりに 相手は 眠りから さめる。" + }, + "hammerArm": { + "name": "アームハンマー", + "effect": "強くて 重い こぶしを ふるって ダメージを 与える。 自分の 素早さが さがる。" + }, + "gyroBall": { + "name": "ジャイロボール", + "effect": "体を 高速に 回転させて 体当たりする。相手より 素早さが 低いほど 強い。" + }, + "healingWish": { + "name": "いやしのねがい", + "effect": "自分は ひんしに なるが 控えから でてくる ポケモンの 状態異常と HPを 回復する。" + }, + "brine": { + "name": "しおみず", + "effect": "相手が HPの 半分くらい きずを おっていると 技の 威力が 2倍に なる。" + }, + "naturalGift": { + "name": "しぜんのめぐみ", + "effect": "きのみから 力を もらい 攻撃する。持たせた きのみで 技の タイプと 威力が 変わる。" + }, + "feint": { + "name": "フェイント", + "effect": "まもるや みきり などを している 相手に 攻撃が できる。 守りの 効果を 解除させる。" + }, + "pluck": { + "name": "ついばむ", + "effect": "くちばしで 攻撃。 相手が きのみを 持っているとき 食べて きのみの 効果を 受けられる。" + }, + "tailwind": { + "name": "おいかぜ", + "effect": "激しく 吹きあれる 風の渦を つくり 4ターンの 間 味方 全員の 素早さを あげる。" + }, + "acupressure": { + "name": "つぼをつく", + "effect": "つぼおしで 体を 活性化させる。 能力の どれか 1つを ぐーんと あげる。" + }, + "metalBurst": { + "name": "メタルバースト", + "effect": "技を だす前に 最後に 受けた 技の ダメージを 大きくして だした 相手に 返す。" + }, + "uTurn": { + "name": "とんぼがえり", + "effect": "攻撃したあと ものすごい スピードで もどってきて 控えの ポケモンと 入れ替わる。" + }, + "closeCombat": { + "name": "インファイト", + "effect": "守りを 捨てて 相手の ふところに 突撃する。 自分の 防御と 特防が さがる。" + }, + "payback": { + "name": "しっぺがえし", + "effect": "ためこんで 攻撃する。 相手より あとに 攻撃できると 技の 威力は 2倍に なる。" + }, + "assurance": { + "name": "ダメおし", + "effect": "そのターンに 相手が すでに ダメージを 受けていたら 技の 威力は 2倍に なる。" + }, + "embargo": { + "name": "さしおさえ", + "effect": "持たせた 道具を 5ターンの 間 使えなくする。 トレーナーも その ポケモンには 道具を 使えない。" + }, + "fling": { + "name": "なげつける", + "effect": "持たせた 道具を 素早く 投げつけて 攻撃する。 道具で 威力と 効果が 変わる。" + }, + "psychoShift": { + "name": "サイコシフト", + "effect": "超能力で 暗示を かけて 自分の 受けている 状態異常を 相手に うつす。" + }, + "trumpCard": { + "name": "きりふだ", + "effect": "きりふだの 残り PPが 少なければ 少ないほど 技の 威力が あがる。" + }, + "healBlock": { + "name": "かいふくふうじ", + "effect": "5ターンの 間 技や 特性や 持っている 道具によって HPを 回復 できなくする。" + }, + "wringOut": { + "name": "しぼりとる", + "effect": "強く 締めあげて 攻撃を する。 相手の HPが 残っているほど 威力は あがる。" + }, + "powerTrick": { + "name": "パワートリック", + "effect": "超能力で 自分の 攻撃と 防御の 力を 交換する。" + }, + "gastroAcid": { + "name": "いえき", + "effect": "胃液を 相手の 体に 吐きつける。 ついた 胃液は 相手の 特性の 効果を 消す。" + }, + "luckyChant": { + "name": "おまじない", + "effect": "天に むかって おいのりを ささげ 5ターンの 間 相手の 攻撃を 急所に 当たらなくする。" + }, + "meFirst": { + "name": "さきどり", + "effect": "威力を あげて 相手が だそうとする 技を 先にだす。 先に だせないと 失敗する。" + }, + "copycat": { + "name": "まねっこ", + "effect": "直前に でた 技を まねして 同じ 技を だす。 技が でていないと 失敗する。" + }, + "powerSwap": { + "name": "パワースワップ", + "effect": "超能力で 自分と 相手の 攻撃と 特攻の 能力変化を 入れ替える。" + }, + "guardSwap": { + "name": "ガードスワップ", + "effect": "超能力で 自分と 相手の 防御と 特防の 能力変化を 入れ替える。" + }, + "punishment": { + "name": "おしおき", + "effect": "能力変化で 相手が パワーアップ しているほど 技の 威力が あがる。" + }, + "lastResort": { + "name": "とっておき", + "effect": "戦闘中に おぼえている 技を すべて 使うと はじめて だせる とっておきの 技。" + }, + "worrySeed": { + "name": "なやみのタネ", + "effect": "心を なやませる タネを 植えつける。 相手を 眠れなくして 特性を ふみんに する。" + }, + "suckerPunch": { + "name": "ふいうち", + "effect": "相手より 先に 攻撃 できる。 相手が だす技が 攻撃技でないと 失敗する。" + }, + "toxicSpikes": { + "name": "どくびし", + "effect": "相手の 足下に どくびしを しかける。 交代で でてきた 相手の ポケモンに 毒を おわせる。" + }, + "heartSwap": { + "name": "ハートスワップ", + "effect": "超能力で 自分と 相手に かかっている 能力変化を 入れ替える。" + }, + "aquaRing": { + "name": "アクアリング", + "effect": "自分の 体の 周りを 水で つくった ベールで おおう。 毎ターン HPを 回復する。" + }, + "magnetRise": { + "name": "でんじふゆう", + "effect": "電気で つくった 磁力の 力で 宙に 浮かぶ。 5ターンの 間 浮遊できる。" + }, + "flareBlitz": { + "name": "フレアドライブ", + "effect": "炎を まとって 突進する。 自分も かなり ダメージを 受ける。 やけど状態に することが ある。" + }, + "forcePalm": { + "name": "はっけい", + "effect": "相手の 体に 衝撃波を 当てて 攻撃する。 まひ状態に することが ある。" + }, + "auraSphere": { + "name": "はどうだん", + "effect": "体の 奥から 波導の 力を 相手に うち放つ。 攻撃は 必ず 命中する。" + }, + "rockPolish": { + "name": "ロックカット", + "effect": "自分の 体を 磨いて 空気の 抵抗を 少なくする。素早さを ぐーんと あげることが できる。" + }, + "poisonJab": { + "name": "どくづき", + "effect": "毒に そまった 触手や 腕で 相手を 突き刺す。 毒状態に することが ある。" + }, + "darkPulse": { + "name": "あくのはどう", + "effect": "体から 悪意に みちた 恐ろしい オーラを 発する。 相手を ひるませることが ある。" + }, + "nightSlash": { + "name": "つじぎり", + "effect": "一瞬の すきを ついて 相手を 切りはらう。 急所に 当たりやすい。" + }, + "aquaTail": { + "name": "アクアテール", + "effect": "激しく あれくるう 荒波の ように 大きな しっぽを ふって 相手を 攻撃する。" + }, + "seedBomb": { + "name": "タネばくだん", + "effect": "硬い 殻を もつ 大きな タネを 上から たたきつけて 相手を 攻撃する。" + }, + "airSlash": { + "name": "エアスラッシュ", + "effect": "空をも 切り裂く 空気の 刃で 攻撃する。 相手を ひるませることが ある。" + }, + "xScissor": { + "name": "シザークロス", + "effect": "カマや ツメを ハサミのように 交差させながら 相手を 切り裂く。" + }, + "bugBuzz": { + "name": "むしのさざめき", + "effect": "振動で 音波を おこして 攻撃する。相手の 特防を さげることが ある。" + }, + "dragonPulse": { + "name": "りゅうのはどう", + "effect": "大きな 口から 衝撃波を まきおこして 相手を 攻撃する。" + }, + "dragonRush": { + "name": "ドラゴンダイブ", + "effect": "すさまじい 殺気で 威圧しながら 体当たりする。 相手を ひるませることが ある。" + }, + "powerGem": { + "name": "パワージェム", + "effect": "宝石のように きらめく 光を 発射して 相手を 攻撃する。" + }, + "drainPunch": { + "name": "ドレインパンチ", + "effect": "こぶしから 相手の 力を 吸い取る。 与えた ダメージの 半分の HPを 回復できる。" + }, + "vacuumWave": { + "name": "しんくうは", + "effect": "こぶしを ふって 真空の 波を まきおこす。 必ず 先制攻撃できる。" + }, + "focusBlast": { + "name": "きあいだま", + "effect": "気合を 高めて ありったけの 力を 放出する。 相手の 特防を さげることが ある。" + }, + "energyBall": { + "name": "エナジーボール", + "effect": "自然から 集めた 命の力を 発射する。 相手の 特防を さげることがある。" + }, + "braveBird": { + "name": "ブレイブバード", + "effect": "はねを おりたたみ 低空飛行で 突撃する。 自分も かなり ダメージを 受ける。" + }, + "earthPower": { + "name": "だいちのちから", + "effect": "相手の 足下へ 大地の力を 放出する。相手の 特防を さげることが ある。" + }, + "switcheroo": { + "name": "すりかえ", + "effect": "目にも とまらぬ 速さで 自分と 相手の 持ち物を 交換する。" + }, + "gigaImpact": { + "name": "ギガインパクト", + "effect": "持てる 力を すべて 使って 相手に 突撃する。 次の ターンは 動けなくなる。" + }, + "nastyPlot": { + "name": "わるだくみ", + "effect": "悪いことを 考えて 頭を 活性化させる。 自分の 特攻を ぐーんと あげる。" + }, + "bulletPunch": { + "name": "バレットパンチ", + "effect": "弾丸の ような 速くて 硬い パンチを 相手に くりだす。 必ず 先制攻撃 できる。" + }, + "avalanche": { + "name": "ゆきなだれ", + "effect": "相手から 技を 受けていると その 相手に 対して 技の 威力が 2倍に なる。" + }, + "iceShard": { + "name": "こおりのつぶて", + "effect": "氷の塊を 一瞬で つくり 相手に 素早く 放つ。 必ず 先制攻撃 できる。" + }, + "shadowClaw": { + "name": "シャドークロー", + "effect": "影から つくった 鋭い ツメで 相手を 切り裂く。 急所に 当たりやすい。" + }, + "thunderFang": { + "name": "かみなりのキバ", + "effect": "電気を ためた キバで かみつく。 相手を ひるませたり まひ状態に することが ある。" + }, + "iceFang": { + "name": "こおりのキバ", + "effect": "冷気を ひめた キバで かみつく。 相手を ひるませたり こおり状態に することが ある。" + }, + "fireFang": { + "name": "ほのおのキバ", + "effect": "炎を まとった キバで かみつく。 相手を ひるませたり やけど状態に することが ある。" + }, + "shadowSneak": { + "name": "かげうち", + "effect": "影を のばして 相手の 背後から 攻撃する。 必ず 先制攻撃 できる。" + }, + "mudBomb": { + "name": "どろばくだん", + "effect": "硬い 泥の 弾を 相手に 発射して 攻撃する。 命中率を さげることが ある。" + }, + "psychoCut": { + "name": "サイコカッター", + "effect": "実体化させた 心の 刃で 相手を 切り裂く。 急所に 当たりやすい。" + }, + "zenHeadbutt": { + "name": "しねんのずつき", + "effect": "思念の 力を 額に 集めて 攻撃する。 相手を ひるませることが ある。" + }, + "mirrorShot": { + "name": "ミラーショット", + "effect": "磨きあげられた 体から せん光の 力を 相手に 放つ。 命中率を さげることが ある。" + }, + "flashCannon": { + "name": "ラスターカノン", + "effect": "体の 光を 一点に 集めて 力を 放つ。 相手の 特防を さげることが ある。" + }, + "rockClimb": { + "name": "ロッククライム", + "effect": "すごい 勢いで 相手に つっこみ 攻撃する。 相手を 混乱させることが ある。" + }, + "defog": { + "name": "きりばらい", + "effect": "強い風で 相手の リフレクターや ひかりのかべ などを はらいのける。 回避率も さげる。" + }, + "trickRoom": { + "name": "トリックルーム", + "effect": "まか不思議な 空間を つくる。 5ターンの 間 遅い ポケモンから 行動できる。" + }, + "dracoMeteor": { + "name": "りゅうせいぐん", + "effect": "天空から 隕石を 相手に 落とす。使うと 反動で 自分の 特攻が がくっと さがる。" + }, + "discharge": { + "name": "ほうでん", + "effect": "まばゆい 電撃で 自分の 周りに いるものを 攻撃する。 まひ状態に することが ある。" + }, + "lavaPlume": { + "name": "ふんえん", + "effect": "真っ赤な 炎で 自分の 周りに いるものを 攻撃する。 やけど状態に することが ある。" + }, + "leafStorm": { + "name": "リーフストーム", + "effect": "とがった はっぱで 相手に あらしを おこす。使うと 反動で 自分の 特攻が がくっと さがる。" + }, + "powerWhip": { + "name": "パワーウィップ", + "effect": "ツタや 触手を 激しく ふるって 相手を たたきつけ 攻撃する。" + }, + "rockWrecker": { + "name": "がんせきほう", + "effect": "巨大な 岩を 相手に 発射して 攻撃する。 次の ターンは 動けなくなる。" + }, + "crossPoison": { + "name": "クロスポイズン", + "effect": "毒の 刃で 相手を 切り裂く。 毒状態に することが あり 急所にも 当たりやすい。" + }, + "gunkShot": { + "name": "ダストシュート", + "effect": "汚い ゴミを 相手に ぶつけて 攻撃する。 毒状態に することが ある。" + }, + "ironHead": { + "name": "アイアンヘッド", + "effect": "鋼の ような 硬い 頭で 攻撃する。 相手を ひるませることが ある。" + }, + "magnetBomb": { + "name": "マグネットボム", + "effect": "相手に 吸いつく 鋼の 爆弾を 発射する。 攻撃は 必ず 命中 する。" + }, + "stoneEdge": { + "name": "ストーンエッジ", + "effect": "とがった 岩を 相手に 突き刺して 攻撃する。 急所に 当たりやすい。" + }, + "captivate": { + "name": "ゆうわく", + "effect": "♂なら♀を ♀なら♂を 誘惑して 相手の 特攻を がくっと さげる。" + }, + "stealthRock": { + "name": "ステルスロック", + "effect": "相手の 周りに 無数の 岩を 浮かべて 交代で でてきた 相手の ポケモンに ダメージを 与える。" + }, + "grassKnot": { + "name": "くさむすび", + "effect": "草を からませて 相手を 転ばせる。相手が 重いほど 威力が あがる。" + }, + "chatter": { + "name": "おしゃべり", + "effect": "とても うるさい おしゃべりの 音波で 相手を 攻撃する。 相手を 混乱させる。" + }, + "judgment": { + "name": "さばきのつぶて", + "effect": "無数の 光弾を 相手に 放出する。 自分の 持つ プレートに より タイプが 変わる。" + }, + "bugBite": { + "name": "むしくい", + "effect": "かみついて 攻撃する。 相手が きのみを 持っているとき 食べて きのみの 効果を 受けられる。" + }, + "chargeBeam": { + "name": "チャージビーム", + "effect": "電撃の 束を 相手に 発射する。電気を ためて 自分の 特攻を あげることが ある。" + }, + "woodHammer": { + "name": "ウッドハンマー", + "effect": "硬い 胴体を 相手に たたきつけて 攻撃する。 自分も かなり ダメージを 受ける。" + }, + "aquaJet": { + "name": "アクアジェット", + "effect": "目にも 留まらぬ ものすごい 速さで 相手に つっこむ。 必ず 先制攻撃 できる。" + }, + "attackOrder": { + "name": "こうげきしれい", + "effect": "しもべを 呼びだして 相手に むかって 攻撃させる。 急所に 当たりやすい。" + }, + "defendOrder": { + "name": "ぼうぎょしれい", + "effect": "しもべを 呼びだして 自分の 体に おおい つかせる。防御と 特防を あげることが できる。" + }, + "healOrder": { + "name": "かいふくしれい", + "effect": "しもべを 呼びだして きずを 治す。 最大HPの 半分 自分の HPを 回復する。" + }, + "headSmash": { + "name": "もろはのずつき", + "effect": "命を 懸けて こん身の 力で 相手に ずつきを する。 自分も ものすごい ダメージを 受ける。" + }, + "doubleHit": { + "name": "ダブルアタック", + "effect": "しっぽなどを 使い 相手を たたいて 攻撃する。 2回連続で ダメージを 与える。" + }, + "roarOfTime": { + "name": "ときのほうこう", + "effect": "時間が ゆがむほどの 力を うちだして 相手を 攻撃する。 次の ターンは 動けなくなる。" + }, + "spacialRend": { + "name": "あくうせつだん", + "effect": "周りの 空間ごと 相手を 引き裂き ダメージを 与える。 急所に 当たりやすい。" + }, + "lunarDance": { + "name": "みかづきのまい", + "effect": "自分は ひんしに なるが 控えから でてくる ポケモンの すべての 状態を 回復する。" + }, + "crushGrip": { + "name": "にぎりつぶす", + "effect": "すさまじい 力で 相手を にぎりつぶす。 相手の HPが 残っているほど 威力が あがる。" + }, + "magmaStorm": { + "name": "マグマストーム", + "effect": "激しく 燃えたぎる 炎の なかに 4ー5ターンの 間 相手を 閉じこめて 攻撃する。" + }, + "darkVoid": { + "name": "ダークホール", + "effect": "暗黒の 世界に ひきずり 落として 相手を 眠り状態に する。" + }, + "seedFlare": { + "name": "シードフレア", + "effect": "体の 中から 衝撃波を 発生させる。相手の 特防を がくっと さげることが ある。" + }, + "ominousWind": { + "name": "あやしいかぜ", + "effect": "みのけも よだつ 突風で 相手を 攻撃する。自分の すべての 能力が あがることが ある。" + }, + "shadowForce": { + "name": "シャドーダイブ", + "effect": "1ターン目で 姿を 消して 2ターン目に 相手を 攻撃する。 守っていても 攻撃は 当たる。" + }, + "honeClaws": { + "name": "つめとぎ", + "effect": "ツメを 磨いて 鋭く する。 自分の 攻撃と 命中率を あげる。" + }, + "wideGuard": { + "name": "ワイドガード", + "effect": "味方全員に 当たる 攻撃を 1ターンの 間 防ぐ。" + }, + "guardSplit": { + "name": "ガードシェア", + "effect": "超能力で 自分と 相手の 防御と 特防を たして 半分に わける。" + }, + "powerSplit": { + "name": "パワーシェア", + "effect": "超能力で 自分と 相手の 攻撃と 特攻を たして 半分に わける。" + }, + "wonderRoom": { + "name": "ワンダールーム", + "effect": "まか不思議な 空間を つくる。 5ターンのあいだ すべてのポケモンの 防御と 特防が 入れ替わる。" + }, + "psyshock": { + "name": "サイコショック", + "effect": "不思議な 念波を 実体化して 相手を 攻撃する。 物理的な ダメージを 与える。" + }, + "venoshock": { + "name": "ベノムショック", + "effect": "特殊な 毒液を 浴びせかける。 毒状態の 相手には 威力が 2倍に なる。" + }, + "autotomize": { + "name": "ボディパージ", + "effect": "体の ムダな 部分を 削る。 自分の 素早さを ぐーんと あげて 体重も 軽くなる。" + }, + "ragePowder": { + "name": "いかりのこな", + "effect": "イライラさせる 粉を 自分に ふりかけて 注意を ひく。 相手の 攻撃を すべて 自分に むける。" + }, + "telekinesis": { + "name": "テレキネシス", + "effect": "超能力で 相手を 浮かせる。 3ターンの 間 攻撃が 相手に 当たりやすく なる。" + }, + "magicRoom": { + "name": "マジックルーム", + "effect": "まか不思議な 空間を つくる。 5ターンの間 すべてのポケモンの 道具の 効果が なくなる。" + }, + "smackDown": { + "name": "うちおとす", + "effect": "石や 弾を 投げて 飛んでいる 相手を 攻撃する。 相手は うち落とされて 地面に 落ちる。" + }, + "stormThrow": { + "name": "やまあらし", + "effect": "強烈な 一撃を 相手に くりだす。攻撃は 必ず 急所に 当たる。" + }, + "flameBurst": { + "name": "はじけるほのお", + "effect": "当たると はじける 炎で 相手を 攻撃する。はじけた 炎は 隣の 相手にも ふりかかる。" + }, + "sludgeWave": { + "name": "ヘドロウェーブ", + "effect": "ヘドロの 波で 自分の 周りに いるものを 攻撃する。 毒状態に することが ある。" + }, + "quiverDance": { + "name": "ちょうのまい", + "effect": "神秘的で 美しい 舞を 軽やかに おどる。 自分の 特攻と 特防と 素早さを あげる。" + }, + "heavySlam": { + "name": "ヘビーボンバー", + "effect": "重たい 体で 相手に ぶつかって 攻撃する。 自分が 相手より 重いほど 威力が あがる。" + }, + "synchronoise": { + "name": "シンクロノイズ", + "effect": "不思議な 電波で 周りに いる 自分と 同じ タイプの ポケモンに ダメージを 与える。" + }, + "electroBall": { + "name": "エレキボール", + "effect": "電気の 塊を 相手に ぶつける。相手より 素早さが 速いほど 威力が あがる。" + }, + "soak": { + "name": "みずびたし", + "effect": "たくさんの 水を 浴びせかけて 相手を みずタイプに する。" + }, + "flameCharge": { + "name": "ニトロチャージ", + "effect": "炎を まとい 相手を 攻撃する。 力を ためて 自分の 素早さを あげる。" + }, + "coil": { + "name": "とぐろをまく", + "effect": "とぐろを まいて 集中する。 自分の 攻撃と 防御と 命中率を あげる。" + }, + "lowSweep": { + "name": "ローキック", + "effect": "素早い 動きで 相手の 足を ねらって 攻撃する。 相手の 素早さを さげる。" + }, + "acidSpray": { + "name": "アシッドボム", + "effect": "相手を とかす 液体を 吐きだして 攻撃する。 相手の 特防を がくっと さげる。" + }, + "foulPlay": { + "name": "イカサマ", + "effect": "相手の 力を 利用する。 戦っている 相手の 攻撃が 高いほど ダメージが あがる。" + }, + "simpleBeam": { + "name": "シンプルビーム", + "effect": "なぞの 念波を 相手に 送る。 念波を 受けとった 相手は 特性が たんじゅんに なる。" + }, + "entrainment": { + "name": "なかまづくり", + "effect": "不思議な リズムで おどる。 動きを まねさせて 自分と 相手の 特性を 同じに する。" + }, + "afterYou": { + "name": "おさきにどうぞ", + "effect": "相手の 行動を サポートして 自分の 行動の あとに 続けて 動けるように する。" + }, + "round": { + "name": "りんしょう", + "effect": "歌で 相手を 攻撃する。 みんなで 輪唱すると 続けて だすことが でき 威力も あがる。" + }, + "echoedVoice": { + "name": "エコーボイス", + "effect": "響く 声で 相手を 攻撃する。 毎ターン だれかが 技を 使い続けると 威力が あがる。" + }, + "chipAway": { + "name": "なしくずし", + "effect": "すきを みて 堅実に 攻撃する。 相手の 能力変化に 関係なく ダメージを 与える。" + }, + "clearSmog": { + "name": "クリアスモッグ", + "effect": "特殊な 泥の 塊を 相手に 投げつけて 攻撃する。 能力変化を もとに もどす。" + }, + "storedPower": { + "name": "アシストパワー", + "effect": "蓄積された パワーで 相手を 攻撃する。自分の 能力が あがっているほど 威力が あがる。" + }, + "quickGuard": { + "name": "ファストガード", + "effect": "自分と 味方を 相手の 先制攻撃から 守る。" + }, + "allySwitch": { + "name": "サイドチェンジ", + "effect": "不思議な 力で テレポートして 自分と 味方の 居場所を 入れ替える。" + }, + "scald": { + "name": "ねっとう", + "effect": "熱く 煮えたぎる 水を 相手に 発射して 攻撃する。 やけど状態に することが ある。" + }, + "shellSmash": { + "name": "からをやぶる", + "effect": "殻を やぶって 自分の 防御 特防を さげるが 攻撃 特攻 素早さを ぐーんと あげる。" + }, + "healPulse": { + "name": "いやしのはどう", + "effect": "いやしのはどうを とばして 最大HPの 半分 相手の HPを 回復する。" + }, + "hex": { + "name": "たたりめ", + "effect": "たたみかける ように 攻撃する。 状態異常の 相手に 大きな ダメージを 与える。" + }, + "skyDrop": { + "name": "フリーフォール", + "effect": "1ターン目で 相手を 空へ 連れさり 2ターン目に 落として 攻撃する。 連れさられた 相手は 動けない。" + }, + "shiftGear": { + "name": "ギアチェンジ", + "effect": "歯車を 回して 自分の 攻撃を あげる だけでなく 素早さも ぐーんと あげる。" + }, + "circleThrow": { + "name": "ともえなげ", + "effect": "相手を 投げとばして 控えの ポケモンを ひきずりだす。 野生の 場合は 戦闘が 終わる。" + }, + "incinerate": { + "name": "やきつくす", + "effect": "炎で 相手を 攻撃する。 相手が きのみなどを 持っているとき 燃やして 使えなくする。" + }, + "quash": { + "name": "さきおくり", + "effect": "相手を おさえつけて 行動の 順番を 最後に する。" + }, + "acrobatics": { + "name": "アクロバット", + "effect": "軽やかに 相手を 攻撃する。 自分が 道具を 持っていないとき 大きな ダメージを 与える。" + }, + "reflectType": { + "name": "ミラータイプ", + "effect": "相手の タイプを 反射して 自分も 同じ タイプに なる。" + }, + "retaliate": { + "name": "かたきうち", + "effect": "倒れた 味方の かたきを 討つ。 前の ターンに 味方が 倒されていると 威力が あがる。" + }, + "finalGambit": { + "name": "いのちがけ", + "effect": "命懸けで 相手を 攻撃する。 自分は ひんしに なるが 相手に HP分の ダメージを 与える。" + }, + "bestow": { + "name": "ギフトパス", + "effect": "相手が 道具を 持っていないとき 自分が 持っている 道具を 相手に わたす。" + }, + "inferno": { + "name": "れんごく", + "effect": "激しい 炎で 相手を 包みこみ 攻撃する。 やけど状態に する。" + }, + "waterPledge": { + "name": "みずのちかい", + "effect": "水の柱で 攻撃する。 ほのおと 組みあわせると 威力が あがって 空に にじが かかる。" + }, + "firePledge": { + "name": "ほのおのちかい", + "effect": "炎の柱で 攻撃する。 くさと 組みあわせると 威力が あがって 周りが 火の海に なる。" + }, + "grassPledge": { + "name": "くさのちかい", + "effect": "草の柱で 攻撃する。 みずと 組みあわせると 威力が あがって あたりが 湿原に なる。" + }, + "voltSwitch": { + "name": "ボルトチェンジ", + "effect": "攻撃したあと ものすごい スピードで もどってきて 控えの ポケモンと 入れ替わる。" + }, + "struggleBug": { + "name": "むしのていこう", + "effect": "抵抗して 相手を 攻撃する。 相手の 特攻を さげる。" + }, + "bulldoze": { + "name": "じならし", + "effect": "地面を 踏みならして 自分の 周りに いるものを 攻撃する。 相手の 素早さを さげる。" + }, + "frostBreath": { + "name": "こおりのいぶき", + "effect": "冷たい 息を 相手に 吹きつけて 攻撃する。 必ず 急所に 当たる。" + }, + "dragonTail": { + "name": "ドラゴンテール", + "effect": "相手を はじきとばして 控えの ポケモンを ひきずりだす。 野生の 場合は 戦闘が 終わる。" + }, + "workUp": { + "name": "ふるいたてる", + "effect": "自分を 奮いたてて 攻撃と 特攻を あげる。" + }, + "electroweb": { + "name": "エレキネット", + "effect": "電気の ネットで 相手を 捕まえて 攻撃する。 相手の 素早さを さげる。" + }, + "wildCharge": { + "name": "ワイルドボルト", + "effect": "電気を まとって 相手に ぶつかって 攻撃する。 自分も 少し ダメージを 受ける。" + }, + "drillRun": { + "name": "ドリルライナー", + "effect": "ドリルのように 体を 回転しながら 相手に 体当たりする。 急所に 当たりやすい。" + }, + "dualChop": { + "name": "ダブルチョップ", + "effect": "体の 硬い部分で 相手を たたいて 攻撃する。 2回連続で ダメージを 与える。" + }, + "heartStamp": { + "name": "ハートスタンプ", + "effect": "かわいい しぐさで 油断させて 強烈な 一撃を 浴びせる。 相手を ひるませることが ある。" + }, + "hornLeech": { + "name": "ウッドホーン", + "effect": "つのを 突き刺して 相手の 養分を 吸い取る。 与えた ダメージの 半分の HPを 回復できる。" + }, + "sacredSword": { + "name": "せいなるつるぎ", + "effect": "長い つので 切りつけ 攻撃する。 相手の 能力変化に 関係なく ダメージを 与える。" + }, + "razorShell": { + "name": "シェルブレード", + "effect": "鋭い 貝殻で 切りつけて 攻撃する。 相手の 防御を さげることが ある。" + }, + "heatCrash": { + "name": "ヒートスタンプ", + "effect": "燃える 体で 相手に ぶつかって 攻撃する。 自分が 相手より 重いほど 威力が あがる。" + }, + "leafTornado": { + "name": "グラスミキサー", + "effect": "鋭い はっぱで 相手を 包みこんで 攻撃する。 命中率を さげることが ある。" + }, + "steamroller": { + "name": "ハードローラー", + "effect": "まるめた 体で 回転して 相手を おしつぶす。 相手を ひるませることが ある。" + }, + "cottonGuard": { + "name": "コットンガード", + "effect": "フワフワの 綿毛で 自分の 体を 包みこんで 守る。 防御を ぐぐーんと あげる。" + }, + "nightDaze": { + "name": "ナイトバースト", + "effect": "暗黒の 衝撃波を とばして 相手を 攻撃する。 命中率を さげることが ある。" + }, + "psystrike": { + "name": "サイコブレイク", + "effect": "不思議な 念波を 実体化して 相手を 攻撃する。 物理的な ダメージを 与える。" + }, + "tailSlap": { + "name": "スイープビンタ", + "effect": "硬い しっぽで 相手を たたいて 攻撃する。 2ー5回の 間 連続で だす。" + }, + "hurricane": { + "name": "ぼうふう", + "effect": "強烈な 風で 相手を 包みこんで 攻撃する。 相手を 混乱させることが ある。" + }, + "headCharge": { + "name": "アフロブレイク", + "effect": "すごい アフロの 頭で 相手に 突進して 攻撃する。 自分も 少し ダメージを 受ける。" + }, + "gearGrind": { + "name": "ギアソーサー", + "effect": "鋼鉄の ギアを 相手に 投げつけて 攻撃する。 2回連続で ダメージを 与える。" + }, + "searingShot": { + "name": "かえんだん", + "effect": "真っ赤な 炎で 自分の 周りに いるものを 攻撃する。 やけど状態に することが ある。" + }, + "technoBlast": { + "name": "テクノバスター", + "effect": "光弾を 相手に 放出する。 自分の 持つ カセットにより タイプが 変わる。" + }, + "relicSong": { + "name": "いにしえのうた", + "effect": "いにしえのうたを 相手に 聞かせて 心に うったえて 攻撃する。 眠り状態に することが ある。" + }, + "secretSword": { + "name": "しんぴのつるぎ", + "effect": "長い つので 切りつけ 攻撃する。 つのが まとった 不思議な 力は 物理的な ダメージを 与える。" + }, + "glaciate": { + "name": "こごえるせかい", + "effect": "凍えるような 冷気を 相手に 吹きつけて 攻撃する。 相手の 素早さを さげる。" + }, + "boltStrike": { + "name": "らいげき", + "effect": "ぼうだいな 電気を 身に まとって 相手に 突進して 攻撃する。 まひ状態に することが ある。" + }, + "blueFlare": { + "name": "あおいほのお", + "effect": "美しくも 激しい 青い炎で 相手を 包みこんで 攻撃する。 やけど状態に することが ある。" + }, + "fieryDance": { + "name": "ほのおのまい", + "effect": "炎を まとい はばたいて 相手を 攻撃する。自分の 特攻が あがることが ある。" + }, + "freezeShock": { + "name": "フリーズボルト", + "effect": "電気を まとった 氷の 塊で 2ターン目に 相手を たたきつける。 まひ状態に することが ある。" + }, + "iceBurn": { + "name": "コールドフレア", + "effect": "すべてを 凍らせる 激しい 冷気で 2ターン目に 相手を 包みこむ。 やけど状態に することが ある。" + }, + "snarl": { + "name": "バークアウト", + "effect": "まくしたてる ように 怒鳴りつけて 相手の 特攻を さげる。" + }, + "icicleCrash": { + "name": "つららおとし", + "effect": "大きな 氷柱を 激しく ぶつけて 攻撃する。 相手を ひるませることが ある。" + }, + "vCreate": { + "name": "Vジェネレート", + "effect": "灼熱の 炎を 額から 発生させて 捨て身の 体当たり。 防御 特防 素早さが さがる。" + }, + "fusionFlare": { + "name": "クロスフレイム", + "effect": "巨大な 炎を たたきつける。 巨大な 雷の 影響を受け 技の 威力が あがる。" + }, + "fusionBolt": { + "name": "クロスサンダー", + "effect": "巨大な 雷を たたきつける。 巨大な 炎の 影響を受け 技の 威力が あがる。" + }, + "flyingPress": { + "name": "フライングプレス", + "effect": "空中から 相手に ダイブする。 この技は かくとうタイプと 同時に ひこうタイプでも ある。" + }, + "matBlock": { + "name": "たたみがえし", + "effect": "かえした タタミを 盾にして 自分や 味方への 技の ダメージを 防ぐ。 変化技は 防ぐことが できない。" + }, + "belch": { + "name": "ゲップ", + "effect": "相手に 向かって ゲップを 浴びせて ダメージを 与える。 きのみを 食べないと だせない。" + }, + "rototiller": { + "name": "たがやす", + "effect": "地面を 耕して 草木が 育ちやすいようにする。 くさタイプの 攻撃と 特攻が あがる。" + }, + "stickyWeb": { + "name": "ねばねばネット", + "effect": "相手の 周りに ねばねばした ネットを はりめぐらせ 交代で でてきた 相手の 素早さを さげる。" + }, + "fellStinger": { + "name": "とどめばり", + "effect": "この 技を 使って 相手を 倒すと 攻撃が ぐぐーんと あがる。" + }, + "phantomForce": { + "name": "ゴーストダイブ", + "effect": "1ターンめで どこかに 消えて 2ターンめに 相手を 攻撃する。 守りを 無視して 攻撃できる。" + }, + "trickOrTreat": { + "name": "ハロウィン", + "effect": "相手を ハロウィンに 誘う。 相手の タイプに ゴーストタイプが 追加される。" + }, + "nobleRoar": { + "name": "おたけび", + "effect": "おたけびを あげて 相手を 威嚇し 相手の 攻撃と 特攻を さげる。" + }, + "ionDeluge": { + "name": "プラズマシャワー", + "effect": "電気を 帯びた 粒子を 拡散し ノーマルタイプの 技を でんきタイプに してしまう。" + }, + "parabolicCharge": { + "name": "パラボラチャージ", + "effect": "周りにいる ポケモン 全員に ダメージ。 与えた ダメージの 半分を 自分が 回復する。" + }, + "forestsCurse": { + "name": "もりののろい", + "effect": "相手に 森ののろいを かける。 のろいを かけられた 相手は タイプに くさタイプが 追加される。" + }, + "petalBlizzard": { + "name": "はなふぶき", + "effect": "激しい 花吹雪を 起こし 周りに いるものに 攻撃して ダメージを 与える。" + }, + "freezeDry": { + "name": "フリーズドライ", + "effect": "相手を 急激に 冷やして こおり 状態に することが ある。 みずタイプにも 効果バツグンになる。" + }, + "disarmingVoice": { + "name": "チャームボイス", + "effect": "魅惑の 鳴き声を だして 相手に 精神的な ダメージを 与える。 攻撃は 必ず 命中 する。" + }, + "partingShot": { + "name": "すてゼリフ", + "effect": "すてゼリフで 相手を いかくし 攻撃と 特攻を さげたのち 控えの ポケモンと 入れ替わる。" + }, + "topsyTurvy": { + "name": "ひっくりかえす", + "effect": "相手に かかっている すべての 能力変化を ひっくり返して 逆にする。" + }, + "drainingKiss": { + "name": "ドレインキッス", + "effect": "キッスによって 相手から HPを 吸い取る。 与えた ダメージの 半分以上 HPを 回復する。" + }, + "craftyShield": { + "name": "トリックガード", + "effect": "不思議な 力を 使って 味方への 変化技を 防ぐ。 ダメージ技は 受けてしまう。" + }, + "flowerShield": { + "name": "フラワーガード", + "effect": "不思議な 力を 使って 場にいる くさタイプの ポケモン 全員の 防御を あげる。" + }, + "grassyTerrain": { + "name": "グラスフィールド", + "effect": "5ターンの 間 グラスフィールドにする。 地面にいると 毎ターン 回復する。 くさタイプの 威力が あがる。" + }, + "mistyTerrain": { + "name": "ミストフィールド", + "effect": "5ターンの 間 地面にいると 状態異常に ならず ドラゴン技の ダメージも 半分になる。" + }, + "electrify": { + "name": "そうでん", + "effect": "相手が 技を だす前に そうでん すると そのターン 相手の 技は でんきタイプになる。" + }, + "playRough": { + "name": "じゃれつく", + "effect": "相手に じゃれついて 攻撃する。 相手の 攻撃を さげる ことがある。" + }, + "fairyWind": { + "name": "ようせいのかぜ", + "effect": "ようせいのかぜを 起こし 相手に 吹きつけて 攻撃する。" + }, + "moonblast": { + "name": "ムーンフォース", + "effect": "月の パワーを かりて 相手を 攻撃する。 相手の 特攻を さげる ことがある。" + }, + "boomburst": { + "name": "ばくおんぱ", + "effect": "すさまじい 爆音の 破壊力に よって 周りに いるものを 攻撃する。" + }, + "fairyLock": { + "name": "フェアリーロック", + "effect": "ロックを かけることによって 次のターン すべての ポケモンを 逃げられなくする。" + }, + "kingsShield": { + "name": "キングシールド", + "effect": "相手の 攻撃を 防ぐと 同時に 防御態勢になる。 触れた 相手の 攻撃を さげる。" + }, + "playNice": { + "name": "なかよくする", + "effect": "相手と なかよくなって 戦う 気力を 失わせ 相手の 攻撃を さげる。" + }, + "confide": { + "name": "ないしょばなし", + "effect": "ないしょばなしを することで 相手の 集中力を 失わせ 相手の 特攻を さげる。" + }, + "diamondStorm": { + "name": "ダイヤストーム", + "effect": "ダイヤの 嵐を 巻き起こし ダメージを 与える。 自分の 防御を ぐーんと あげることが ある。" + }, + "steamEruption": { + "name": "スチームバースト", + "effect": "ものすごく 熱い 蒸気を 相手に 浴びせる。 相手は やけどする ことがある。" + }, + "hyperspaceHole": { + "name": "いじげんホール", + "effect": "異次元ホールで 突然 相手の 真横に 現れ 攻撃する。 まもるや みきり なども 無視 できる。" + }, + "waterShuriken": { + "name": "みずしゅりけん", + "effect": "粘液で できた 手裏剣を 2ー5回の 間 連続で だす。 必ず 先制攻撃 できる。" + }, + "mysticalFire": { + "name": "マジカルフレイム", + "effect": "口から 吐きだす 特別 熱い 炎で 攻撃する。 相手の 特攻を さげる。" + }, + "spikyShield": { + "name": "ニードルガード", + "effect": "相手の 攻撃を 防ぐと 同時に 触れた 相手の 体力を 削って しまう。" + }, + "aromaticMist": { + "name": "アロマミスト", + "effect": "不思議な アロマの 香りによって 味方の 特防を あげる。" + }, + "eerieImpulse": { + "name": "かいでんぱ", + "effect": "体から かいでんぱを 放ち 相手に 浴びせる ことによって 特攻を がくっと さげる。" + }, + "venomDrench": { + "name": "ベノムトラップ", + "effect": "特殊な 毒液を 浴びせかける。 毒状態の 相手は 攻撃 特攻 素早さが さがる。" + }, + "powder": { + "name": "ふんじん", + "effect": "ふんじんを 浴びせた 相手が ほのお技を 使うと 爆発して ダメージを 与える。" + }, + "geomancy": { + "name": "ジオコントロール", + "effect": "1ターン目で エネルギーを 吸収し 2ターン目に 特攻 特防 素早さを ぐーんと あげる。" + }, + "magneticFlux": { + "name": "じばそうさ", + "effect": "磁場を 操作 することによって 特性 プラスと マイナスの 防御 特防が あがる。" + }, + "happyHour": { + "name": "ハッピータイム", + "effect": "ハッピータイムの 技を 使うと 戦闘の あとで もらえる お金が 倍になる。" + }, + "electricTerrain": { + "name": "エレキフィールド", + "effect": "5ターンの 間 エレキフィールドにする。 地面にいる ポケモンは 眠らない。 でんきタイプの 威力が あがる。" + }, + "dazzlingGleam": { + "name": "マジカルシャイン", + "effect": "強力な 光を 放ち 相手に ダメージを 与える。" + }, + "celebrate": { + "name": "おいわい", + "effect": "ポケモンが とっても ハッピーな あなたのことを お祝い してくれる。" + }, + "holdHands": { + "name": "てをつなぐ", + "effect": "味方の ポケモン 同士が 手をつなぐ。 とっても 幸せな 気持ちに なれる。" + }, + "babyDollEyes": { + "name": "つぶらなひとみ", + "effect": "つぶらなひとみで 相手を みつめて 攻撃を さげる。 必ず 先制攻撃 できる。" + }, + "nuzzle": { + "name": "ほっぺすりすり", + "effect": "電気を 帯びた ほっぺを すりつけて 攻撃。 相手を まひ状態に する。" + }, + "holdBack": { + "name": "てかげん", + "effect": "手加減 した 攻撃で 相手の HPを 必ず 1だけ 残す。" + }, + "infestation": { + "name": "まとわりつく", + "effect": "4ー5ターンの 間 相手に まとわりついて 攻撃する。 そのあいだ 相手は 逃げられない。" + }, + "powerUpPunch": { + "name": "グロウパンチ", + "effect": "繰り返し 打つことで だんだん こぶしが 固くなる。 相手に 当てると 攻撃が あがる。" + }, + "oblivionWing": { + "name": "デスウイング", + "effect": "ねらいを 定めた 相手から HPを 吸い取る。 与えた ダメージの 半分以上 HPを 回復する。" + }, + "thousandArrows": { + "name": "サウザンアロー", + "effect": "浮いている ポケモンにも 当たる。 浮いていた 相手は 撃ち落とされて 地面に 落ちる。" + }, + "thousandWaves": { + "name": "サウザンウェーブ", + "effect": "地をはう 波によって 攻撃。 波に 巻き込まれた 相手は 戦闘から 逃げられなくなる。" + }, + "landsWrath": { + "name": "グランドフォース", + "effect": "大地の パワーを 集め 力を 相手に 集中させて ダメージを 与える。" + }, + "lightOfRuin": { + "name": "はめつのひかり", + "effect": "永遠の花 の パワーを かりて 強力な 光線を 撃ちだす。 自分も かなりの ダメージを 受ける。" + }, + "originPulse": { + "name": "こんげんのはどう", + "effect": "青白く 輝く 無数の 光線で 相手を 攻撃する。" + }, + "precipiceBlades": { + "name": "だんがいのつるぎ", + "effect": "大地の 力を 刃に 変えて 相手を 攻撃する。" + }, + "dragonAscent": { + "name": "ガリョウテンセイ", + "effect": "大空から 急速落下 して 相手を 攻撃する。 自分の 防御と 特防が さがる。" + }, + "hyperspaceFury": { + "name": "いじげんラッシュ", + "effect": "たくさんの 腕で まもるや みきり などを 無視した 連続攻撃。 自分の 防御が さがる。" + }, + "breakneckBlitzPhysical": { + "name": "ウルトラダッシュアタック", + "effect": "Zパワーで 勢いを つけて 全力で 相手に ぶつかる。 元になった 技で 威力が 変わる。" + }, + "breakneckBlitzSpecial": { + "name": "ウルトラダッシュアタック", + "effect": "ダミーデータ" + }, + "allOutPummelingPhysical": { + "name": "ぜんりょくむそうげきれつけん", + "effect": "Zパワーで 作った エネルギーの 弾を 全力で 相手に ぶつける。 元になった 技で 威力が 変わる。" + }, + "allOutPummelingSpecial": { + "name": "ぜんりょくむそうげきれつけん", + "effect": "ダミーデータ" + }, + "supersonicSkystrikePhysical": { + "name": "ファイナルダイブクラッシュ", + "effect": "Zパワーで 勢いよく 飛びあがり 相手に 向かって 全力で 落下。 元になった 技で 威力が 変わる。" + }, + "supersonicSkystrikeSpecial": { + "name": "ファイナルダイブクラッシュ", + "effect": "ダミーデータ" + }, + "acidDownpourPhysical": { + "name": "アシッドポイズンデリート", + "effect": "Zパワーで 毒の 沼を 湧きあがらせ 全力で 相手を 沈める。 元になった 技で 威力が 変わる。" + }, + "acidDownpourSpecial": { + "name": "アシッドポイズンデリート", + "effect": "ダミーデータ" + }, + "tectonicRagePhysical": { + "name": "ライジングランドオーバー", + "effect": "Zパワーで 地面の 奥深くに 潜り 全力で 相手に ぶつかる。 元になった 技で 威力が 変わる。" + }, + "tectonicRageSpecial": { + "name": "ライジングランドオーバー", + "effect": "ダミーデータ" + }, + "continentalCrushPhysical": { + "name": "ワールズエンドフォール", + "effect": "Zパワーで 大きな 岩山を 呼びだし 全力で 相手に ぶつける。 元になった 技で 威力が 変わる。" + }, + "continentalCrushSpecial": { + "name": "ワールズエンドフォール", + "effect": "ダミーデータ" + }, + "savageSpinOutPhysical": { + "name": "ぜったいほしょくかいてんざん", + "effect": "Zパワーで 吐きだした 糸が 全力で 相手を 縛りつける。 元になった 技で 威力が 変わる。" + }, + "savageSpinOutSpecial": { + "name": "ぜったいほしょくかいてんざん", + "effect": "ダミーデータ" + }, + "neverEndingNightmarePhysical": { + "name": "むげんあんやへのいざない", + "effect": "Zパワーで 呼びよせた 強い 怨念が 全力で 相手に 降りかかる。 元になった 技で 威力が 変わる。" + }, + "neverEndingNightmareSpecial": { + "name": "むげんあんやへのいざない", + "effect": "ダミーデータ" + }, + "corkscrewCrashPhysical": { + "name": "ちょうぜつらせんれんげき", + "effect": "Zパワーで 高速回転を おこない 全力で 相手に ぶつかる。 元になった 技で 威力が 変わる。" + }, + "corkscrewCrashSpecial": { + "name": "ちょうぜつらせんれんげき", + "effect": "ダミーデータ" + }, + "infernoOverdrivePhysical": { + "name": "ダイナミックフルフレイム", + "effect": "Zパワーで 燃えさかる 炎を 吐きだし 全力で 相手に ぶつける。 元になった 技で 威力が 変わる。" + }, + "infernoOverdriveSpecial": { + "name": "ダイナミックフルフレイム", + "effect": "ダミーデータ" + }, + "hydroVortexPhysical": { + "name": "スーパーアクアトルネード", + "effect": "Zパワーで 大きな 渦潮を 作り 全力で 相手を 飲みこむ。 元になった 技で 威力が 変わる。" + }, + "hydroVortexSpecial": { + "name": "スーパーアクアトルネード", + "effect": "ダミーデータ" + }, + "bloomDoomPhysical": { + "name": "ブルームシャインエクストラ", + "effect": "Zパワーで 草花の エネルギーを 借り 全力で 相手を 攻撃する。 元になった 技で 威力が 変わる。" + }, + "bloomDoomSpecial": { + "name": "ブルームシャインエクストラ", + "effect": "ダミーデータ" + }, + "gigavoltHavocPhysical": { + "name": "スパーキングギガボルト", + "effect": "Zパワーで 溜めた 強い 電気を 全力で 相手に ぶつける。 元になった 技で 威力が 変わる。" + }, + "gigavoltHavocSpecial": { + "name": "スパーキングギガボルト", + "effect": "ダミーデータ" + }, + "shatteredPsychePhysical": { + "name": "マキシマムサイブレイカー", + "effect": "Zパワーで 相手を 操り 全力で 痛い 思いを させる。 元になった 技で 威力が 変わる。" + }, + "shatteredPsycheSpecial": { + "name": "マキシマムサイブレイカー", + "effect": "ダミーデータ" + }, + "subzeroSlammerPhysical": { + "name": "レイジングジオフリーズ", + "effect": "Zパワーで 気温を 急激に 下げ 全力で 相手を 凍らせる。 元になった 技で 威力が 変わる。" + }, + "subzeroSlammerSpecial": { + "name": "レイジングジオフリーズ", + "effect": "ダミーデータ" + }, + "devastatingDrakePhysical": { + "name": "アルティメットドラゴンバーン", + "effect": "Zパワーで オーラを 実体化し 全力で 相手に 襲いかかる。 元になった 技で 威力が 変わる。" + }, + "devastatingDrakeSpecial": { + "name": "アルティメットドラゴンバーン", + "effect": "ダミーデータ" + }, + "blackHoleEclipsePhysical": { + "name": "ブラックホールイクリプス", + "effect": "Zパワーで 悪の エネルギーを 集め 全力で 相手を 吸いよせる。 元になった 技で 威力が 変わる。" + }, + "blackHoleEclipseSpecial": { + "name": "ブラックホールイクリプス", + "effect": "ダミーデータ" + }, + "twinkleTacklePhysical": { + "name": "ラブリースターインパクト", + "effect": "Zパワーで 魅惑の 空間を 作り 全力で 相手を もてあそぶ。 元になった 技で 威力が 変わる。" + }, + "twinkleTackleSpecial": { + "name": "ラブリースターインパクト", + "effect": "ダミーデータ" + }, + "catastropika": { + "name": "ひっさつのピカチュート", + "effect": "Zパワーで 最大 電力を 身に まとったピカチュウが 全力で 相手に 飛び掛る。" + }, + "shoreUp": { + "name": "すなあつめ", + "effect": "最大HPの 半分 自分の HPを 回復する。 すなあらしの時は 多く 回復。" + }, + "firstImpression": { + "name": "であいがしら", + "effect": "威力が 高い 技 だが 戦闘に 出たら すぐに 出さないと 成功 しない。" + }, + "banefulBunker": { + "name": "トーチカ", + "effect": "相手の 攻撃を 防ぐと 同時に 触れた 相手に 毒を 与えてしまう。" + }, + "spiritShackle": { + "name": "かげぬい", + "effect": "攻撃と 同時に 相手の 影を 縫い付けて 逃げられなくする。" + }, + "darkestLariat": { + "name": "DDラリアット", + "effect": "両腕を 回し 相手に 当てる。 相手の 能力変化に 関係なく ダメージを 与える。" + }, + "sparklingAria": { + "name": "うたかたのアリア", + "effect": "歌うことによって たくさんの バルーンを 放出する。 技を 受けると やけどが 治る。" + }, + "iceHammer": { + "name": "アイスハンマー", + "effect": "強くて 重い こぶしを ふるって ダメージを 与える。 自分の 素早さが さがる。" + }, + "floralHealing": { + "name": "フラワーヒール", + "effect": "最大HPの 半分 相手の HPを 回復する。 グラスフィールドの時 効果が あがる。" + }, + "highHorsepower": { + "name": "10まんばりき", + "effect": "全身を 使って 相手に 猛アタックする。" + }, + "strengthSap": { + "name": "ちからをすいとる", + "effect": "相手の 攻撃力と 同じだけ 自分の HPを 回復する。 そして 相手の 攻撃を さげる。" + }, + "solarBlade": { + "name": "ソーラーブレード", + "effect": "1ターン目に 光を いっぱいに 集め 2ターン目に その 力を 剣に 込めて 攻撃する。" + }, + "leafage": { + "name": "このは", + "effect": "はっぱを 相手に 当てて 攻撃する。" + }, + "spotlight": { + "name": "スポットライト", + "effect": "ポケモンに スポットライトを 当て そのターンに そのポケモンしか 狙えない ようにする。" + }, + "toxicThread": { + "name": "どくのいと", + "effect": "毒の 混じった 糸を 吹き付ける。 相手を 毒にして 素早さを さげる。" + }, + "laserFocus": { + "name": "とぎすます", + "effect": "精神を 集中して 次の 攻撃を 必ず 急所に 当てる。" + }, + "gearUp": { + "name": "アシストギア", + "effect": "ギアを 入れる ことによって 特性 プラスと マイナスの 攻撃と 特攻が あがる。" + }, + "throatChop": { + "name": "じごくづき", + "effect": "この 技を 受けた 相手は 地獄の 苦しみから 2ターンの間 音の 技を 出すことが できなくなる。" + }, + "pollenPuff": { + "name": "かふんだんご", + "effect": "敵には 爆発する だんごを 使って 攻撃。 味方には 回復する だんごを 与える。" + }, + "anchorShot": { + "name": "アンカーショット", + "effect": "アンカーを 相手に からませて 攻撃する。 相手は 逃げることが できなくなる。" + }, + "psychicTerrain": { + "name": "サイコフィールド", + "effect": "5ターンの間 地面にいると 先制技を 受けない。 エスパータイプの 威力が あがる。" + }, + "lunge": { + "name": "とびかかる", + "effect": "全力で 相手に 飛びかかって 攻撃。 相手の 攻撃を さげる。" + }, + "fireLash": { + "name": "ほのおのムチ", + "effect": "焼けたムチで 相手を 打ちつける。 攻撃を 受けた 相手は 防御が さがる。" + }, + "powerTrip": { + "name": "つけあがる", + "effect": "自分の 強さを 鼻高々に 攻撃する。自分の 能力が あがって いるほど 威力が あがる。" + }, + "burnUp": { + "name": "もえつきる", + "effect": "全身の ほのおを すべて 燃やして 大ダメージを 与える。 自分の ほのおタイプが なくなる。" + }, + "speedSwap": { + "name": "スピードスワップ", + "effect": "相手の 素早さと 自分の 素早さを 入れ替えてしまう。" + }, + "smartStrike": { + "name": "スマートホーン", + "effect": "とがった つので 相手を 突き刺して 攻撃する。 攻撃は 必ず 命中する。" + }, + "purify": { + "name": "じょうか", + "effect": "相手の 状態異常を 治す。 治すと 自分は HPを 回復 することが できる。" + }, + "revelationDance": { + "name": "めざめるダンス", + "effect": "全力で 踊って 攻撃する。 この 技の タイプは 自分の タイプと 同じになる。" + }, + "coreEnforcer": { + "name": "コアパニッシャー", + "effect": "ダメージを 与えた 相手が すでに 行動を 終えていたら 相手の 特性を 消してしまう。" + }, + "tropKick": { + "name": "トロピカルキック", + "effect": "南国 由来の 熱い キックを 相手に 浴びせる。 相手の 攻撃を さげる。" + }, + "instruct": { + "name": "さいはい", + "effect": "相手が 出した 技を 指示して もう一度 出させることが できる。" + }, + "beakBlast": { + "name": "くちばしキャノン", + "effect": "最初に クチバシを 加熱してから 攻撃を くりだす。 加熱中に さわると やけどする。" + }, + "clangingScales": { + "name": "スケイルノイズ", + "effect": "全身の うろこを こすり 大きな 音を 出して 攻撃する。 攻撃後 自分の 防御が さがる。" + }, + "dragonHammer": { + "name": "ドラゴンハンマー", + "effect": "体を ハンマーのように 使って 相手に 襲いかかり ダメージを 与える。" + }, + "brutalSwing": { + "name": "ぶんまわす", + "effect": "自分の 体を ぶんまわして 相手に ダメージを 与える。" + }, + "auroraVeil": { + "name": "オーロラベール", + "effect": "5ターンの 間 物理と 特殊の ダメージを 弱める。 ゆきの 時しか 出すことが できない。" + }, + "sinisterArrowRaid": { + "name": "シャドーアローズストライク", + "effect": "Zパワーで 無数の 矢を 作りだした ジュナイパーが 全力で 相手を 射抜く 攻撃。" + }, + "maliciousMoonsault": { + "name": "ハイパーダーククラッシャー", + "effect": "Zパワーで タフな 肉体を 得た ガオガエンが 全力で 相手に ぶつかって 攻撃する。" + }, + "oceanicOperetta": { + "name": "わだつみのシンフォニア", + "effect": "Zパワーで 大量の 水を 呼んだ アシレーヌが 全力で 相手を 攻撃する。" + }, + "guardianOfAlola": { + "name": "ガーディアン・デ・アローラ", + "effect": "Zパワーで アローラの 力を 得た とちがみポケモン 全力の 攻撃。 相手の 残りHPを たくさん 減らす。" + }, + "soulStealing7StarStrike": { + "name": "しちせいだっこんたい", + "effect": "Zパワーを 得た マーシャドーが パンチと キックの 連続技を 全力で 相手に 叩き込む。" + }, + "stokedSparksurfer": { + "name": "ライトニングサーフライド", + "effect": "Zパワーを 得た アローラ地方の ライチュウが 全力で 攻撃する。 相手を まひ 状態に する。" + }, + "pulverizingPancake": { + "name": "ほんきをだす こうげき", + "effect": "Zパワーで 本気を 出した カビゴンが 巨体を 躍動させて 全力で 相手に 襲いかかる。" + }, + "extremeEvoboost": { + "name": "ナインエボルブースト", + "effect": "Zパワーを 得た イーブイが 進化した 仲間たちの 力を 借りて 能力を ぐーんと 上げる。" + }, + "genesisSupernova": { + "name": "オリジンズスーパーノヴァ", + "effect": "Zパワーを 得た ミュウが 全力で 相手を 攻撃する。 足元が サイコフィールドになる。" + }, + "shellTrap": { + "name": "トラップシェル", + "effect": "こうらの トラップを しかける。 相手が 物理技を 出すと 爆発して ダメージを 与える。" + }, + "fleurCannon": { + "name": "フルールカノン", + "effect": "強力な ビームを 放ったあと 自分の 特攻が がくっと さがる。" + }, + "psychicFangs": { + "name": "サイコファング", + "effect": "サイコパワーで かみついて 相手を 攻撃する。 ひかりのかべや リフレクター なども 破壊できる。" + }, + "stompingTantrum": { + "name": "じだんだ", + "effect": "悔しさを バネにして 攻撃する。 前の ターンに 技を 外していると 威力が 倍に なる。" + }, + "shadowBone": { + "name": "シャドーボーン", + "effect": "魂の 宿った ホネで 相手を なぐりつけて 攻撃する。 相手の 防御を さげる ことがある。" + }, + "accelerock": { + "name": "アクセルロック", + "effect": "素早い スピードで 相手に ぶつかって 攻撃する。 必ず 先制攻撃 できる。" + }, + "liquidation": { + "name": "アクアブレイク", + "effect": "水の 力で 相手に ぶつかって 攻撃する。 相手の 防御を さげる ことがある。" + }, + "prismaticLaser": { + "name": "プリズムレーザー", + "effect": "プリズムの 力で 強力な 光線を 発射する。 次の ターンは 動けなくなる。" + }, + "spectralThief": { + "name": "シャドースチール", + "effect": "相手の 影に 潜り込み 相手の 能力アップを 奪って 攻撃する。" + }, + "sunsteelStrike": { + "name": "メテオドライブ", + "effect": "流星の ような 勢いで 突進する。 相手の 特性を 無視して 攻撃 することが できる。" + }, + "moongeistBeam": { + "name": "シャドーレイ", + "effect": "怪しい 光線を 放って 攻撃する。相手の 特性を 無視して 攻撃 することが できる。" + }, + "tearfulLook": { + "name": "なみだめ", + "effect": "なみだめに なって 相手の 戦力を 喪失させる。 相手の 攻撃と 特攻が さがる。" + }, + "zingZap": { + "name": "びりびりちくちく", + "effect": "相手に ぶつかって 強力な 電気を浴びせ びりびりちくちく させる。 相手を ひるませる ことが ある。" + }, + "naturesMadness": { + "name": "しぜんのいかり", + "effect": "自然の 怒りを 相手に ぶつける。 相手の HPは 半分に なる。" + }, + "multiAttack": { + "name": "マルチアタック", + "effect": "高い エネルギーを まといつつ 相手に ぶつかって 攻撃する。 メモリに より タイプが 変わる。" + }, + "tenMillionVoltThunderbolt": { + "name": "1000まんボルト", + "effect": "帽子を かぶった ピカチュウが Zパワーで パワーアップした 電撃を 放つ。 急所に 当たりやすい。" + }, + "mindBlown": { + "name": "ビックリヘッド", + "effect": "自分の 頭を 爆発 させて 周りの すべてを 攻撃する。 自分も ダメージを 受けてしまう。" + }, + "plasmaFists": { + "name": "プラズマフィスト", + "effect": "電気を まとった こぶしで 攻撃。 ノーマルタイプの 技を でんきタイプに してしまう。" + }, + "photonGeyser": { + "name": "フォトンゲイザー", + "effect": "光の 柱で 攻撃する。 攻撃と 特攻を 比べて 高いほうで ダメージを 与える。" + }, + "lightThatBurnsTheSky": { + "name": "てんこがすめつぼうのひかり", + "effect": "ネクロズマが 相手の 特性の 効果を 無視して 攻撃と 特攻の 高い方で ダメージを 与える。" + }, + "searingSunrazeSmash": { + "name": "サンシャインスマッシャー", + "effect": "Zパワーを 得た ソルガレオが 全力で 攻撃する。 相手の 特性の 効果を 無視できる。" + }, + "menacingMoonrazeMaelstrom": { + "name": "ムーンライトブラスター", + "effect": "Zパワーを 得た ルナアーラが 全力で 攻撃する。 相手の 特性の 効果を 無視できる。" + }, + "letsSnuggleForever": { + "name": "ぽかぼかフレンドタイム", + "effect": "Zパワーを 得た ミミッキュが 全力で ぽかぽか 攻撃。" + }, + "splinteredStormshards": { + "name": "ラジアルエッジストーム", + "effect": "Zパワーを 得た ルガルガンが 全力で 攻撃する。 追加で フィールド状態を 打ち消す。" + }, + "clangorousSoulblaze": { + "name": "ブレイジングソウルビート", + "effect": "Zパワーを 得た ジャラランガが 全力で 相手を 攻撃する。 追加で 自分の 能力が 上がる。" + }, + "zippyZap": { + "name": "ばちばちアクセル", + "effect": "猛スピードの 電撃 アタック。 必ず 先制攻撃 できて 急所に あたる。" + }, + "splishySplash": { + "name": "ざぶざぶサーフ", + "effect": "大きな 波に 電気を あびせ 相手に ぶつけて 攻撃する。 まひ状態に することが ある。" + }, + "floatyFall": { + "name": "ふわふわフォール", + "effect": "ふんわりと 浮かび あがり 一気に 急降下して 攻撃。 相手を ひるませることが ある。" + }, + "pikaPapow": { + "name": "ピカピカサンダー", + "effect": "トレーナーへの 大好きな 気持ちが 強いほど 威力が あがる 電撃。 必ず 命中する。" + }, + "bouncyBubble": { + "name": "いきいきバブル", + "effect": "水のかたまりを ぶつけて 攻撃。 水を 吸いとり ダメージの 半分の HPを 回復する。" + }, + "buzzyBuzz": { + "name": "びりびりエレキ", + "effect": "電気を 飛ばし 相手に あびせて 攻撃する。 相手を まひ状態に する。" + }, + "sizzlySlide": { + "name": "めらめらバーン", + "effect": "炎を まとった 体で 勢いよく 相手に ぶつかる。 相手を やけど状態に する。" + }, + "glitzyGlow": { + "name": "どばどばオーラ", + "effect": "念力を これでもかと あびせる。 相手の 特殊攻撃を 弱める 不思議な かべを つくりだす。" + }, + "baddyBad": { + "name": "わるわるゾーン", + "effect": "わるさを アピールして 攻撃。 相手の 物理攻撃を 弱める 不思議な かべを つくりだす。" + }, + "sappySeed": { + "name": "すくすくボンバー", + "effect": "巨大な ツルを 生やし タネを 撒きちらかして 攻撃する。 タネは 毎ターン 相手の HPを 吸いとる。" + }, + "freezyFrost": { + "name": "こちこちフロスト", + "effect": "冷たく 凍った くろいきりの 結晶で 攻撃。 全員の 能力変化を もとに もどす。" + }, + "sparklySwirl": { + "name": "きらきらストーム", + "effect": "むせかえる ような 香りの 竜巻で 相手を つつんで 攻撃。 味方の 状態異常を 回復する。" + }, + "veeveeVolley": { + "name": "ブイブイブレイク", + "effect": "イーブイの トレーナーへの 大好きな 気持ちが 強いほど 威力が あがる 体当たり。 必ず 命中する。" + }, + "doubleIronBash": { + "name": "ダブルパンツァー", + "effect": "胸の ナットを 軸に 回転して 2回 続けて うでを たたきつける。 相手を ひるませる ことが ある。" + }, + "maxGuard": { + "name": "ダイウォール", + "effect": "相手の 攻撃を まったく 受けない。 連続で だすと 失敗しやすい。" + }, + "dynamaxCannon": { + "name": "ダイマックスほう", + "effect": "コアから ビームを 放つ。相手の レベルが 過度に 上がっている 場合は 与える ダメージが 最大 2倍に 増える。" + }, + "snipeShot": { + "name": "ねらいうち", + "effect": "相手の 技を 引き受ける 特性や 技の 影響を 無視して 選んだ 相手を 攻撃 できる。" + }, + "jawLock": { + "name": "くらいつく", + "effect": "お互い ひんしに なるまで 交代が できなくなる。 どちらかの ポケモンが いなくなると 効果は消える。" + }, + "stuffCheeks": { + "name": "ほおばる", + "effect": "持っている きのみを 食べて 防御を ぐーんと あげる。" + }, + "noRetreat": { + "name": "はいすいのじん", + "effect": "自分の すべての 能力が 上がるが 交代 したり 逃げることが できなくなる。" + }, + "tarShot": { + "name": "タールショット", + "effect": "ねばねばの タールを 浴びせて 相手の 素早さを 下げる。 相手は ほのおが 弱点に なる。" + }, + "magicPowder": { + "name": "まほうのこな", + "effect": "まほうのこなを 浴びせて 相手を エスパータイプに 変化させる。" + }, + "dragonDarts": { + "name": "ドラゴンアロー", + "effect": "ドラメシヤで 2回 攻撃。 相手が 2匹 いるときは それぞれに 1回ずつ 攻撃する。" + }, + "teatime": { + "name": "おちゃかい", + "effect": "おちゃかいを ひらいて 場にいる ポケモンが それぞれ 持っている きのみを 食べる。" + }, + "octolock": { + "name": "たこがため", + "effect": "相手を 逃げられなくする。 かためられた 相手は 毎ターン 防御と 特防が 下がる。" + }, + "boltBeak": { + "name": "でんげきくちばし", + "effect": "電気を まとった くちばしで 刺す。 相手より 先に 攻撃できると 技の 威力は 2倍に なる。" + }, + "fishiousRend": { + "name": "エラがみ", + "effect": "かたい エラで かみつく。 相手より 先に 攻撃できると 技の 威力は 2倍に なる。" + }, + "courtChange": { + "name": "コートチェンジ", + "effect": "不思議な 力で お互いの 場の 効果を 入れ替える。" + }, + "maxFlare": { + "name": "ダイバーン", + "effect": "ダイマックスした ポケモンが 繰りだす ほのおタイプの 攻撃。 5ターンの 間 日差しを 強くする。" + }, + "maxFlutterby": { + "name": "ダイワーム", + "effect": "ダイマックスした ポケモンが 繰りだす むしタイプの 攻撃。 相手の 特攻を 下げる。" + }, + "maxLightning": { + "name": "ダイサンダー", + "effect": "ダイマックスした ポケモンが 繰りだす でんきタイプの 攻撃。 5ターンの 間 エレキフィールドにする。" + }, + "maxStrike": { + "name": "ダイアタック", + "effect": "ダイマックスした ポケモンが 繰りだす ノーマルタイプの 攻撃。 相手の 素早さを 下げる。" + }, + "maxKnuckle": { + "name": "ダイナックル", + "effect": "ダイマックスした ポケモンが 繰りだす かくとうタイプの 攻撃。 味方の 攻撃を 上げる。" + }, + "maxPhantasm": { + "name": "ダイホロウ", + "effect": "ダイマックスした ポケモンが 繰りだす ゴーストタイプの 攻撃。 相手の 防御を 下げる。" + }, + "maxHailstorm": { + "name": "ダイアイス", + "effect": "ダイマックスした ポケモンが 繰りだす こおりタイプの 攻撃。 5ターンの 間 あられを 降らす。" + }, + "maxOoze": { + "name": "ダイアシッド", + "effect": "ダイマックスした ポケモンが 繰りだす どくタイプの 攻撃。 味方の 特攻を 上げる。" + }, + "maxGeyser": { + "name": "ダイストリーム", + "effect": "ダイマックスした ポケモンが 繰りだす みずタイプの 攻撃。 5ターンの 間 雨を 降らせる。" + }, + "maxAirstream": { + "name": "ダイジェット", + "effect": "ダイマックスした ポケモンが 繰りだす ひこうタイプの 攻撃。 味方の 素早さを 上げる。" + }, + "maxStarfall": { + "name": "ダイフェアリー", + "effect": "ダイマックスした ポケモンが 繰りだす フェアリータイプの 攻撃。 5ターンの 間 ミストフィールドにする。" + }, + "maxWyrmwind": { + "name": "ダイドラグーン", + "effect": "ダイマックスした ポケモンが 繰りだす ドラゴンタイプの 攻撃。 相手の 攻撃を 下げる。" + }, + "maxMindstorm": { + "name": "ダイサイコ", + "effect": "ダイマックスした ポケモンが 繰りだす エスパータイプの 攻撃。 5ターンの 間 サイコフィールドにする。" + }, + "maxRockfall": { + "name": "ダイロック", + "effect": "ダイマックスした ポケモンが 繰りだす いわタイプの 攻撃。 5ターンの 間 砂あらしにする。" + }, + "maxQuake": { + "name": "ダイアース", + "effect": "ダイマックスした ポケモンが 繰りだす じめんタイプの 攻撃。 味方の 特防を 上げる。" + }, + "maxDarkness": { + "name": "ダイアーク", + "effect": "ダイマックスした ポケモンが 繰りだす あくタイプの 攻撃。 相手の 特防を 下げる。" + }, + "maxOvergrowth": { + "name": "ダイソウゲン", + "effect": "ダイマックスした ポケモンが 繰りだす くさタイプの 攻撃。 5ターンの 間 グラスフィールドにする。" + }, + "maxSteelspike": { + "name": "ダイスチル", + "effect": "ダイマックスした ポケモンが 繰りだす はがねタイプの 攻撃。 味方の 防御を 上げる。" + }, + "clangorousSoul": { + "name": "ソウルビート", + "effect": "自分の HPを 少し 削って すべての 能力を 上げる。" + }, + "bodyPress": { + "name": "ボディプレス", + "effect": "体を ぶつけて 攻撃。 防御が 高いほど 与える ダメージが 増える。" + }, + "decorate": { + "name": "デコレーション", + "effect": "かざりつけを することで 相手の 攻撃と 特攻を ぐーんと 上げる。" + }, + "drumBeating": { + "name": "ドラムアタック", + "effect": "ドラムの 根っこを ドラミングで コントロールして こうげき することで 相手の 素早さを 下げる。" + }, + "snapTrap": { + "name": "トラバサミ", + "effect": "トラバサミで 捕らえて 4-5ターンの 間 相手を はさんで 攻撃する。" + }, + "pyroBall": { + "name": "かえんボール", + "effect": "小石を 燃やした 炎の ボールで 相手を 攻撃する。 やけど 状態に することが ある。" + }, + "behemothBlade": { + "name": "きょじゅうざん", + "effect": "全身で 強大な剣を 振りかざし 勢いよく 切りかかって 攻撃する。" + }, + "behemothBash": { + "name": "きょじゅうだん", + "effect": "全身を 強固な盾へと 変化させ 勢いよく ぶつかって 攻撃する。" + }, + "auraWheel": { + "name": "オーラぐるま", + "effect": "ほほぶくろに 溜めた エネルギーで 攻撃し 自分の 素早さを あげる。 モルペコの 姿で タイプが 変わる。" + }, + "breakingSwipe": { + "name": "ワイドブレイカー", + "effect": "きょうじんな しっぽを 激しく ふりはらって 相手を 攻撃する。 相手の 攻撃を 下げる。" + }, + "branchPoke": { + "name": "えだづき", + "effect": "するどく とがった 枝で 相手を 突いて 攻撃する。" + }, + "overdrive": { + "name": "オーバードライブ", + "effect": "ギターや ベースを かきならして 激しく 響く 大きな 振動を 相手に 与えて 攻撃する。" + }, + "appleAcid": { + "name": "りんごさん", + "effect": "すっぱい りんごから つくりだした 酸性の 液体で 攻撃。 相手の 特防を 下げる。" + }, + "gravApple": { + "name": "Gのちから", + "effect": "高いところから りんごを 落として ダメージを 与える。 相手の 防御を 下げる。" + }, + "spiritBreak": { + "name": "ソウルクラッシュ", + "effect": "食らうと くじけるほどの 勢いで 攻撃。 相手の 特攻を 下げる。" + }, + "strangeSteam": { + "name": "ワンダースチーム", + "effect": "煙を 噴出して 相手を 攻撃。 混乱 させることが ある。" + }, + "lifeDew": { + "name": "いのちのしずく", + "effect": "不思議な 水を ふりまいて 自分と 場にいる 味方の HPを 回復する。" + }, + "obstruct": { + "name": "ブロッキング", + "effect": "相手の 攻撃を まったく 受けない。 連続で だすと 失敗しやすい。 触れると 防御が がくっと 下がる。" + }, + "falseSurrender": { + "name": "どげざつき", + "effect": "頭を 下げる ふりを しながら 振りみだした 髪の毛を 突き刺す。 攻撃は 必ず 命中する。" + }, + "meteorAssault": { + "name": "スターアサルト", + "effect": "太い クキを ふりまわして 攻撃。 ただし 自分も よろめいてしまうため 次の ターンは 動けなくなる。" + }, + "eternabeam": { + "name": "ムゲンダイビーム", + "effect": "本来の 姿と なった ムゲンダイナ 最大の 攻撃。 次の ターンは 動けなくなる。" + }, + "steelBeam": { + "name": "てっていこうせん", + "effect": "全身から 集めた はがねを ビームとして 激しく 撃ちだす。 自分も ダメージを 受けてしまう。" + }, + "expandingForce": { + "name": "ワイドフォース", + "effect": "サイコパワーで 相手を 攻撃する。 サイコフィールドの時 威力が あがり すべての 相手に ダメージを 与える。" + }, + "steelRoller": { + "name": "アイアンローラー", + "effect": "フィールドを 破壊しながら 攻撃。 なんらかの フィールド状態に 変わっていないと 技は 失敗する。" + }, + "scaleShot": { + "name": "スケイルショット", + "effect": "ウロコを 撃ちだして 攻撃する。 2ー5回の 間 連続で だす。 素早さが あがるが 防御が さがる。" + }, + "meteorBeam": { + "name": "メテオビーム", + "effect": "1ターン目に 宇宙の 力を 集めることで 特攻が あがり 2ターン目に 相手を 攻撃する。" + }, + "shellSideArm": { + "name": "シェルアームズ", + "effect": "物理か 特殊か より多く ダメージを 与えられる 能力で 攻撃する。 毒状態に することが ある。" + }, + "mistyExplosion": { + "name": "ミストバースト", + "effect": "自分の 周りに いる すべてを 攻撃するが 使うと 瀕死になる。 ミストフィールドで 威力が あがる。" + }, + "grassyGlide": { + "name": "グラススライダー", + "effect": "地面を 滑るように 相手を 攻撃。 グラスフィールドの時 必ず 先制攻撃 できる。" + }, + "risingVoltage": { + "name": "ライジングボルト", + "effect": "地面から 立ちのぼる 電撃で 攻撃。 相手が エレキフィールドに いる時 技の 威力が 2倍に なる。" + }, + "terrainPulse": { + "name": "だいちのはどう", + "effect": "フィールドの力を 借りて 攻撃。 使った時の フィールドの状態に よって 技の タイプと 威力が 変わる。" + }, + "skitterSmack": { + "name": "はいよるいちげき", + "effect": "背後から はいより 攻撃する。 相手の 特攻を さげる。" + }, + "burningJealousy": { + "name": "しっとのほのお", + "effect": "しっとの エネルギーで 相手を 攻撃。 そのターン 能力が あがった ポケモンを やけどの 状態に する。" + }, + "lashOut": { + "name": "うっぷんばらし", + "effect": "相手への いらだちを ぶつけて 攻撃。 そのターンに 能力を さげられていると 技の 威力が 2倍に なる。" + }, + "poltergeist": { + "name": "ポルターガイスト", + "effect": "相手の 持ち物を あやつって 攻撃。 相手が 道具を 持っていない 場合は 失敗する。" + }, + "corrosiveGas": { + "name": "ふしょくガス", + "effect": "強い 酸性の ガスで 周りに いるものを 包みこみ 持っている 道具を 溶かしてしまう。" + }, + "coaching": { + "name": "コーチング", + "effect": "的確な 指導を おこなうことで 味方 全員の 攻撃と 防御を 上げる。" + }, + "flipTurn": { + "name": "クイックターン", + "effect": "攻撃したあと ものすごい スピードで もどってきて 控えの ポケモンと 入れ替わる。" + }, + "tripleAxel": { + "name": "トリプルアクセル", + "effect": "3回連続で キックを くりだして 攻撃する。 技が 当たるたびに 威力は あがる。" + }, + "dualWingbeat": { + "name": "ダブルウイング", + "effect": "翼を 相手に ぶつけて 攻撃する。 2回連続で ダメージを 与える。" + }, + "scorchingSands": { + "name": "ねっさのだいち", + "effect": "熱く 焼けた 砂を 相手に ぶつけて 攻撃する。 やけど状態に することが ある。" + }, + "jungleHealing": { + "name": "ジャングルヒール", + "effect": "ジャングルと 一体化して 自分と 場にいる 味方の HPと 状態を 回復する。" + }, + "wickedBlow": { + "name": "あんこくきょうだ", + "effect": "あくの型を 極めし 強烈な 一撃。 必ず 急所に 当たる。" + }, + "surgingStrikes": { + "name": "すいりゅうれんだ", + "effect": "みずの型を 極めし 流れるような 3回の 連撃。 必ず 急所に 当たる。" + }, + "thunderCage": { + "name": "サンダープリズン", + "effect": "ほとばしる 電気の おりの 中に 4ー5ターンの 間 相手を 閉じこめて 攻撃する。" + }, + "dragonEnergy": { + "name": "ドラゴンエナジー", + "effect": "生命力を パワーに 変え 相手を 攻撃する。 自分の HPが 少ないほど 技の 威力は さがる。" + }, + "freezingGlare": { + "name": "いてつくしせん", + "effect": "両目から サイコパワーを 撃ちだして 攻撃する。 こおり状態に することが ある。" + }, + "fieryWrath": { + "name": "もえあがるいかり", + "effect": "怒りを 炎の ような オーラに 変えて 攻撃する。 相手を ひるませることが ある。" + }, + "thunderousKick": { + "name": "らいめいげり", + "effect": "雷の ような 動きで 相手を 翻弄しながら キックする。 相手の 防御を さげる。" + }, + "glacialLance": { + "name": "ブリザードランス", + "effect": "吹雪を まとった 氷の 槍を 相手に 投げつけて 攻撃する。" + }, + "astralBarrage": { + "name": "アストラルビット", + "effect": "たくさんの 小さな 霊体を 相手に ぶつけて 攻撃する。" + }, + "eerieSpell": { + "name": "ぶきみなじゅもん", + "effect": "強力な サイコパワーで 攻撃。 相手が 最後に 使った技の PPを 3だけ 減らす。" + }, + "direClaw": { + "name": "フェイタルクロー", + "effect": "破滅的なツメで 攻撃する。 相手を どく まひ ねむりの いずれかの状態に することも ある。" + }, + "psyshieldBash": { + "name": "バリアーラッシュ", + "effect": "思念のエネルギーを まといながら 相手に ぶつかっていく。 自分の 防御を あげる。" + }, + "powerShift": { + "name": "パワーシフト", + "effect": "自分の 攻撃と防御を 入れ替える。" + }, + "stoneAxe": { + "name": "がんせきアックス", + "effect": "岩の斧で 攻撃する。 ばらまかれた 岩の破片が 相手の 周りに 浮かぶ。" + }, + "springtideStorm": { + "name": "はるのあらし", + "effect": "愛憎 入りまじった 強烈な風で 相手を 包みこんで 攻撃する。 相手の 攻撃を さげることが ある。" + }, + "mysticalPower": { + "name": "しんぴのちから", + "effect": "不思議な力を 放出して 攻撃する。 自分の 特攻が あがる。" + }, + "ragingFury": { + "name": "だいふんげき", + "effect": "2-3ターンの 間 炎を 放ちながら 暴れまわる。 暴れたあとは 混乱する。" + }, + "waveCrash": { + "name": "ウェーブタックル", + "effect": "水を まといつつ 全身で 相手に ぶつかるが 自分も かなりの ダメージ を受ける。" + }, + "chloroblast": { + "name": "クロロブラスト", + "effect": "自身の 葉緑素を 集約し 放出して 攻撃する。 自分も ダメージを 受けてしまう。" + }, + "mountainGale": { + "name": "ひょうざんおろし", + "effect": "氷山のような 大きな 氷塊を ぶつけて 攻撃する。 相手を ひるませることが ある。" + }, + "victoryDance": { + "name": "しょうりのまい", + "effect": "勝利を 呼びこむ 舞を 激しく 踊って 自分の 攻撃と 防御と 素早さを あげる。" + }, + "headlongRush": { + "name": "ぶちかまし", + "effect": "全身全霊の たいあたりを くらわせる。 自分の 防御と 特防が さがる。" + }, + "barbBarrage": { + "name": "どくばりセンボン", + "effect": "無数の毒針で 相手を 毒状態に することもある。 相手が 毒状態だと 威力は 2倍になる。" + }, + "esperWing": { + "name": "オーラウイング", + "effect": "オーラで 強化した翼で 切り裂く。 急所に 当たりやすい。 自分の 素早さを あげる。" + }, + "bitterMalice": { + "name": "うらみつらみ", + "effect": "背筋が 凍るような 怨念で 攻撃して 相手の 攻撃を さげる。" + }, + "shelter": { + "name": "たてこもる", + "effect": "皮膚を 鉄の盾のように 硬くすることで 自分の 防御を ぐーんと あげる。" + }, + "tripleArrows": { + "name": "3ぼんのや", + "effect": "足技のあと 3本の矢を 同時に放つ。 相手の 防御を さげたり ひるませることが ある。 急所に 当たりやすい。" + }, + "infernalParade": { + "name": "ひゃっきやこう", + "effect": "無数の火の玉で 攻撃して やけど状態に することが ある。 相手が 状態異常だと 威力は 2倍。" + }, + "ceaselessEdge": { + "name": "ひけん・ちえなみ", + "effect": "貝殻の剣で 攻撃する。 ばらまかれた 貝殻の破片は 相手の 足下に まきびし となって 散らばる。" + }, + "bleakwindStorm": { + "name": "こがらしあらし", + "effect": "身も心も 震える 冷たく 激しい風で 攻撃する。 相手の 素早さを さげることが ある。" + }, + "wildboltStorm": { + "name": "かみなりあらし", + "effect": "嵐を 起こし 雷雲を 呼びよせ 雷と風で 激しく 攻撃をする。 相手を まひ状態に することもある。" + }, + "sandsearStorm": { + "name": "ねっさのあらし", + "effect": "熱く焼けた砂と 強烈な風で 包みこんで 攻撃する。 相手を やけど状態に することがある。" + }, + "lunarBlessing": { + "name": "みかづきのいのり", + "effect": "みかづきに いのりを ささげて 自分と 場にいる 味方の HPと 状態を 回復する。" + }, + "takeHeart": { + "name": "ブレイブチャージ", + "effect": "心を 奮わせて 自分の 状態異常を 治し さらには 特攻と 特防を あげる。" + }, + "gMaxWildfire": { + "name": "キョダイゴクエン", + "effect": "キョダイマックスした リザードンが 繰りだす ほのおタイプの 攻撃。 4ターンの 間 ダメージを 与える。" + }, + "gMaxBefuddle": { + "name": "キョダイコワク", + "effect": "キョダイマックスした バタフリーが 繰り出す むしタイプの 攻撃。 毒・まひ・眠りの どれかに する。" + }, + "gMaxVoltCrash": { + "name": "キョダイバンライ", + "effect": "キョダイマックスした ピカチュウが 繰りだす でんきタイプの 攻撃。 相手を まひ状態に する。" + }, + "gMaxGoldRush": { + "name": "キョダイコバン", + "effect": "キョダイマックスした ニャースが 繰り出す ノーマルタイプの 攻撃。 相手を 混乱させ お金も もらえる。" + }, + "gMaxChiStrike": { + "name": "キョダイシンゲキ", + "effect": "キョダイマックスした カイリキーが 繰りだす かくとうタイプの 攻撃。 急所に 当たりやすく なる。" + }, + "gMaxTerror": { + "name": "キョダイゲンエイ", + "effect": "キョダイマックスした ゲンガーが 繰りだす ゴーストタイプの 攻撃。 影を 踏み 交代 できなくする。" + }, + "gMaxResonance": { + "name": "キョダイセンリツ", + "effect": "キョダイマックスした ラプラスが 繰りだす こおりタイプの 攻撃。 5ターンの 間 ダメージを 弱める。" + }, + "gMaxCuddle": { + "name": "キョダイホーヨー", + "effect": "キョダイマックスした イーブイが 繰りだす ノーマルタイプの 攻撃。 相手を メロメロに する。" + }, + "gMaxReplenish": { + "name": "キョダイサイセイ", + "effect": "キョダイマックスした カビゴンが 繰りだす ノーマルタイプの 攻撃。 食べた きのみを 再生する。" + }, + "gMaxMalodor": { + "name": "キョダイシュウキ", + "effect": "キョダイマックスした ダストダスが 繰りだす どくタイプの 攻撃。 相手を 毒 状態に する。" + }, + "gMaxStonesurge": { + "name": "キョダイガンジン", + "effect": "キョダイマックスした カジリガメが 繰りだす みずタイプの 攻撃。 鋭い 無数の 岩を ばらまく。" + }, + "gMaxWindRage": { + "name": "キョダイフウゲキ", + "effect": "キョダイマックスした アーマーガアが 繰りだす ひこうタイプの 攻撃。 リフレクターや ひかりのかべを 消し去る。" + }, + "gMaxStunShock": { + "name": "キョダイカンデン", + "effect": "キョダイマックスした ストリンダーが 繰り出す でんきタイプの 攻撃。 相手を 毒 か まひ どちらかにする。" + }, + "gMaxFinale": { + "name": "キョダイダンエン", + "effect": "キョダイマックスした マホイップが 繰りだす フェアリータイプの 攻撃。 味方の HPを 回復する。" + }, + "gMaxDepletion": { + "name": "キョダイゲンスイ", + "effect": "キョダイマックスした ジュラルドンが 繰りだす ドラゴンタイプの 攻撃。 最後に 使われた わざPPを 減らす。" + }, + "gMaxGravitas": { + "name": "キョダイテンドウ", + "effect": "キョダイマックスした イオルブが 繰りだす エスパータイプの 攻撃。 5ターンの 間 重力が 変わる。" + }, + "gMaxVolcalith": { + "name": "キョダイフンセキ", + "effect": "キョダイマックスした セキタンザンが 繰りだす いわタイプの 攻撃。 4ターンの 間 ダメージを 与える。" + }, + "gMaxSandblast": { + "name": "キョダイサジン", + "effect": "キョダイマックスした サダイジャが 繰りだす じめんタイプの 攻撃。 4-5ターンの間 砂が 吹き荒れる。" + }, + "gMaxSnooze": { + "name": "キョダイスイマ", + "effect": "キョダイマックスした オーロンゲが 繰りだす あくタイプの 攻撃。 大きな あくびで 眠気を 誘う。" + }, + "gMaxTartness": { + "name": "キョダイサンゲキ", + "effect": "キョダイマックスした アップリューが 繰りだす くさタイプの 攻撃。 相手の 回避率を 下げる。" + }, + "gMaxSweetness": { + "name": "キョダイカンロ", + "effect": "キョダイマックスした タルップルが 繰りだす くさタイプの 攻撃。 味方の 状態異常を 回復する。" + }, + "gMaxSmite": { + "name": "キョダイテンバツ", + "effect": "キョダイマックスした ブリムオンが 繰りだす フェアリータイプの 攻撃。 相手を 混乱させる。" + }, + "gMaxSteelsurge": { + "name": "キョダイコウジン", + "effect": "キョダイマックスした ダイオウドウが 繰りだす タイプの 攻撃。 鋭い 無数の とげを ばらまく。" + }, + "gMaxMeltdown": { + "name": "キョダイユウゲキ", + "effect": "キョダイマックスした メルメタルが 繰りだす はがねタイプの 攻撃。 同じ 技を 連続で 出せなくする。" + }, + "gMaxFoamBurst": { + "name": "キョダイホウマツ", + "effect": "キョダイマックスした キングラーが 繰りだす みずタイプの 攻撃。 相手の 素早さを がくっと さげる。" + }, + "gMaxCentiferno": { + "name": "キョダイヒャッカ", + "effect": "キョダイマックスした マルヤクデが 繰りだす ほのおタイプの 攻撃。 4-5ターンの間 炎に 閉じこめる。" + }, + "gMaxVineLash": { + "name": "キョダイベンタツ", + "effect": "キョダイマックスした フシギバナが 繰りだす くさタイプの 攻撃。 4ターンの 間 ダメージを 与える。" + }, + "gMaxCannonade": { + "name": "キョダイホウゲキ", + "effect": "キョダイマックスした カメックスが 繰りだす みずタイプの 攻撃。 4ターンの 間 ダメージを 与える。" + }, + "gMaxDrumSolo": { + "name": "キョダイコランダ", + "effect": "キョダイマックスした ゴリランダーが 繰りだす くさタイプの 攻撃。 相手の 特性に ジャマされない。" + }, + "gMaxFireball": { + "name": "キョダイカキュウ", + "effect": "キョダイマックスした エースバーンが 繰りだす ほのおタイプの 攻撃。 相手の 特性に ジャマされない。" + }, + "gMaxHydrosnipe": { + "name": "キョダイソゲキ", + "effect": "キョダイマックスした インテレオンが 繰りだす みずタイプの 攻撃。 相手の 特性に ジャマされない。" + }, + "gMaxOneBlow": { + "name": "キョダイイチゲキ", + "effect": "キョダイマックスした ウーラオスが 繰りだす あくタイプの 攻撃。 ダイウォールを 無視できる 一撃。" + }, + "gMaxRapidFlow": { + "name": "キョダイレンゲキ", + "effect": "キョダイマックスした ウーラオスが 繰りだす みずタイプの 攻撃。 ダイウォールを 無視できる 連撃。" + }, + "teraBlast": { + "name": "テラバースト", + "effect": "テラスタルだと テラスタイプの エネルギーを 放出して 攻撃する。 攻撃と 特攻を 比べて 高いほうで ダメージを 与える。" + }, + "silkTrap": { + "name": "スレッドトラップ", + "effect": "糸の罠を はりめぐらせる。 相手の 攻撃を 防ぐと 同時に 触れた 相手の 素早さを さげる。" + }, + "axeKick": { + "name": "かかとおとし", + "effect": "蹴りあげた かかとを 落として 攻撃する。 相手を 混乱させることが ある。 はずすと 自分が ダメージを 受ける。" + }, + "lastRespects": { + "name": "おはかまいり", + "effect": "仲間の 無念を 晴らすため 攻撃する。 倒された 味方のポケモンが 多いほど 技の 威力が 増える。" + }, + "luminaCrash": { + "name": "ルミナコリジョン", + "effect": "精神にも 作用する 奇妙な光を 放って 攻撃する。 相手の 特防を がくっと さげる。" + }, + "orderUp": { + "name": "いっちょうあがり", + "effect": "いなせな 身のこなしで 攻撃。 口の中に シャリタツが いると そのすがたによって 能力が あがる。" + }, + "jetPunch": { + "name": "ジェットパンチ", + "effect": "激流を こぶしに まとって 目にも 留まらぬ パンチを くりだす。 必ず 先制攻撃 できる。" + }, + "spicyExtract": { + "name": "ハバネロエキス", + "effect": "とんでもなく 辛いエキスを 出す。 相手の 攻撃が ぐーんと あがり 防御が がくっと さがる。" + }, + "spinOut": { + "name": "ホイールスピン", + "effect": "足に 負荷を かけることにより 激しく 回転して ダメージを 与える。 自分の 素早さが がくっと さがる。" + }, + "populationBomb": { + "name": "ネズミざん", + "effect": "仲間たちが わらわらと 集まって コンビネーションで 攻撃を 与えていく。 1-10回の 間 連続で あたる。" + }, + "iceSpinner": { + "name": "アイススピナー", + "effect": "足に 薄い氷を まとい クルクルと 回りながら ぶつかる。 回転の 動きによって フィールドを 壊す。" + }, + "glaiveRush": { + "name": "きょけんとつげき", + "effect": "体を 投げだす 無謀な突撃。 技のあと 相手からの 攻撃は 必ず 命中し ダメージが 2倍に なってしまう。" + }, + "revivalBlessing": { + "name": "さいきのいのり", + "effect": "慈愛の心で いのることにより 控えにいる ひんしの ポケモンを HPを 半分の状態で 復活させる。" + }, + "saltCure": { + "name": "しおづけ", + "effect": "相手を しおづけ状態に して 毎ターン ダメージを 与える。 はがね みずタイプは より 苦しむ。" + }, + "tripleDive": { + "name": "トリプルダイブ", + "effect": "息のあった 飛びこみを することで 相手に 水しぶきを あてる。 3回連続で ダメージを 与える。" + }, + "mortalSpin": { + "name": "キラースピン", + "effect": "回転して 相手を 攻撃する。 しめつける まきつく やどりぎのタネ など 吹きとばす。 相手を 毒状態に する。" + }, + "doodle": { + "name": "うつしえ", + "effect": "相手の本質を とらえて うつしだし 自分と 味方を 相手と 同じ 特性に 変化させる。" + }, + "filletAway": { + "name": "みをけずる", + "effect": "自分の HPを けずって 自分の 攻撃と 特攻と 素早さを ぐーんと あげる。" + }, + "kowtowCleave": { + "name": "ドゲザン", + "effect": "土下座して 相手を 油断させておいて 切りかかる。 攻撃は 必ず 命中する。" + }, + "flowerTrick": { + "name": "トリックフラワー", + "effect": "細工がある 花たばを 相手に 投げて 攻撃する。 必ず 命中して 急所にも 当たる。" + }, + "torchSong": { + "name": "フレアソング", + "effect": "燃えたぎる 火炎を 歌うように 吹きつけて 相手を 焦がす。 自分の 特攻を あげる。" + }, + "aquaStep": { + "name": "アクアステップ", + "effect": "水もしたたる かろやかな 足どりで 相手を 翻弄し ダメージを 与える。 自分の 素早さを あげる。" + }, + "ragingBull": { + "name": "レイジングブル", + "effect": "怒り狂う あばれうしの 猛烈な タックル。 フォルムで 技のタイプが 変わり ひかりのかべや リフレクターなども 破壊できる。" + }, + "makeItRain": { + "name": "ゴールドラッシュ", + "effect": "大量のコインを ぶちまけて 攻撃。 自分の 特攻が さがる。 戦闘の あとで お金も もらえる。" + }, + "psyblade": { + "name": "サイコブレイド", + "effect": "実体のない刃で 相手を 切り裂く。 エレキフィールドに いるとき 技の威力が 1.5倍に なる。" + }, + "hydroSteam": { + "name": "ハイドロスチーム", + "effect": "煮えたぎる水を 勢いよく 浴びせる。 日差しが 強いとき 技の威力が さがるどころか 1.5倍になる。" + }, + "ruination": { + "name": "カタストロフィ", + "effect": "破滅的な 災厄を 巻き起こし 相手の HPを 半分に する。" + }, + "collisionCourse": { + "name": "アクセルブレイク", + "effect": "変形しながら 荒々しく 落下し いにしえの 大爆発を 引き起こす。 弱点をつくと さらに 威力が 増す。" + }, + "electroDrift": { + "name": "イナズマドライブ", + "effect": "変形しながら 超高速で 走行し 未知なる 電撃が 相手を つらぬく。 弱点をつくと さらに 威力が 増す。" + }, + "shedTail": { + "name": "しっぽきり", + "effect": "自分の HPを 削って 分身を だしたあと もどってきて 控えの ポケモンと 入れ替わる。" + }, + "chillyReception": { + "name": "さむいギャグ", + "effect": "場を 凍らせる ギャグを 言い残し 控えの ポケモンと 入れ替わる。 5ターンの 間 ゆきを 降らす。" + }, + "tidyUp": { + "name": "おかたづけ", + "effect": "まきびし ステルスロック ねばねばネット どくびし みがわりを すべて かたづける。 自分の 攻撃と 素早さが あがる。" + }, + "snowscape": { + "name": "ゆきげしき", + "effect": "5ターンの 間 ゆきを 降らせる。 こおりタイプの 防御が あがる。" + }, + "pounce": { + "name": "とびつく", + "effect": "相手に 飛びついて 攻撃する。 相手の 素早さを さげる。" + }, + "trailblaze": { + "name": "くさわけ", + "effect": "草むらから 飛びだすように 攻撃する。 軽快な 足どりに よって 自分の 素早さを あげる。" + }, + "chillingWater": { + "name": "ひやみず", + "effect": "相手の 元気を 失わせるくらい 冷たい水を 浴びせて 攻撃する。 相手の 攻撃を さげる。" + }, + "hyperDrill": { + "name": "ハイパードリル", + "effect": "とがった 体の部位を 急速に 回転させ つらぬく。 まもるや みきり なども 無視 できる。" + }, + "twinBeam": { + "name": "ツインビーム", + "effect": "両目から 不可思議な 光線を 発射して 攻撃する。 2回連続で ダメージを 与える。" + }, + "rageFist": { + "name": "ふんどのこぶし", + "effect": "怒りを エネルギーに 変えて 攻撃。 受けた 攻撃の 回数が 多いほど 技の 威力が あがる。" + }, + "armorCannon": { + "name": "アーマーキャノン", + "effect": "みずからの ヨロイを 燃えたぎる 弾として 撃ち出して 攻撃する。 自分の 防御と 特防が さがる。" + }, + "bitterBlade": { + "name": "むねんのつるぎ", + "effect": "この世への 未練を 剣先に こめて 切りつける。 与えた ダメージの 半分の HPを 回復できる。" + }, + "doubleShock": { + "name": "でんこうそうげき", + "effect": "全身の でんきを すべて 放って 大ダメージを 与える。 自分の でんきタイプが なくなる。" + }, + "gigatonHammer": { + "name": "デカハンマー", + "effect": "大きな ハンマーを 体ごと ぶんまわして 攻撃する。 この技は 2回連続で だせない。" + }, + "comeuppance": { + "name": "ほうふく", + "effect": "技を だす前に 最後に 受けた 技の ダメージを 大きくして だした 相手に 返す。" + }, + "aquaCutter": { + "name": "アクアカッター", + "effect": "加圧された 水を 刃のように 噴射して 相手を 切り裂く。 急所に 当たりやすい。" + }, + "blazingTorque": { + "name": "バーンアクセル", + "effect": "メラメラの エンジンを 吹かして 相手に ぶつかる。やけど状態に することが ある。" + }, + "wickedTorque": { + "name": "ダークアクセル", + "effect": "悪意で エンジンを 吹かして 相手に ぶつかる。眠り状態に することが ある。" + }, + "noxiousTorque": { + "name": "ポイズンアクセル", + "effect": "有毒な エンジンを 吹かして 相手に ぶつかる。毒状態に することが ある。" + }, + "combatTorque": { + "name": "ファイトアクセル", + "effect": "力いっぱい エンジンを 吹かして 相手に ぶつかる。まひ状態に することが ある。" + }, + "magicalTorque": { + "name": "マジカルアクセル", + "effect": "幻想的な エンジンを 吹かして 相手に ぶつかる。混乱させることが ある。" + }, + "bloodMoon": { + "name": "ブラッドムーン", + "effect": "血のように 赤い満月から ありったけの 気迫を 撃ちだす。 この技は 2回連続で だせない。" + }, + "matchaGotcha": { + "name": "シャカシャカほう", + "effect": "かきまぜた お茶の 大砲は 与えた ダメージの 半分を 回復して やけど状態に することも ある。" + }, + "syrupBomb": { + "name": "みずあめボム", + "effect": "ねっとりした みずあめを 爆発させ 相手を あめまみれ 状態にして 3ターンの間 素早さを さげ続ける。" + }, + "ivyCudgel": { + "name": "ツタこんぼう", + "effect": "ツタを まきつけた こん棒で なぐる。 かぶっている お面で タイプが 変わる。 急所に 当たりやすい。" + }, + "electroShot": { + "name": "エレクトロビーム", + "effect": "1ターン目に 電気を 集めて 特攻が あがり 2ターン目に 高圧の 電気を 発射する。 天気が 雨のときは すぐに 発射できる。" + }, + "teraStarstorm": { + "name": "テラクラスター", + "effect": "結晶の力を 照射し 敵を 排除する。 テラパゴスが ステラフォルムで 放つと すべての 相手に ダメージを 与える。" + }, + "fickleBeam": { + "name": "きまぐレーザー", + "effect": "光線を 発射して 攻撃する。 ときどき ほかの首も 協力して レーザーを 放ち 威力が 2倍に なる。" + }, + "burningBulwark": { + "name": "かえんのまもり", + "effect": "相手の 攻撃を 超高熱の 体毛で 防ぎ 同時に 触れた 相手に やけどを 与えてしまう。" + }, + "thunderclap": { + "name": "じんらい", + "effect": "相手より 先に 電撃を 浴びせる。 相手が だす技が 攻撃技でないと 失敗する。" + }, + "mightyCleave": { + "name": "パワフルエッジ", + "effect": "頭部に 蓄積した 光で 切断する。 守りを 無視して 攻撃できる。" + }, + "tachyonCutter": { + "name": "タキオンカッター", + "effect": "粒子の刃を たて続けに 発射して 2回連続で ダメージを 与える。 攻撃は 必ず 命中する。" + }, + "hardPress": { + "name": "ハードプレス", + "effect": "腕やハサミで 相手を 圧迫する。 相手の HPが 残っているほど 威力が あがる。" + }, + "dragonCheer": { + "name": "ドラゴンエール", + "effect": "竜の鼓舞で 士気を 上げて 味方の技が 急所に 当たりやすくなる。 ドラゴンタイプだと より 鼓舞される。" + }, + "alluringVoice": { + "name": "みわくのボイス", + "effect": "天使のような 歌声で 相手を 攻撃。 そのターン 能力が あがった ポケモンを 混乱の 状態に する。" + }, + "temperFlare": { + "name": "やけっぱち", + "effect": "自棄になった 勢いで 攻撃する。 前の ターンに 技を 外していると 威力が 倍に なる。" + }, + "supercellSlam": { + "name": "サンダーダイブ", + "effect": "体を 帯電させ て相手に のしかかる。 はずすと 自分が ダメージを 受ける。" + }, + "psychicNoise": { + "name": "サイコノイズ", + "effect": "不快な音波を 相手に 浴びせて 攻撃。 2ターンの間 技や 特性や 持っている 道具によって HPを 回復できなくなる。" + }, + "upperHand": { + "name": "はやてがえし", + "effect": "動きに 反応して 掌底を 打ちこみ 相手を ひるませる。 相手が だす技が 先制攻撃でないと 失敗する。" + }, + "malignantChain": { + "name": "じゃどくのくさり", + "effect": "毒でできた鎖を 相手に 巻きつけ 毒素を 流しこんで 蝕む。 猛毒の 状態に することが ある。" + } +} \ No newline at end of file diff --git a/src/locales/ja/move.ts b/src/locales/ja/move.ts deleted file mode 100644 index 1b46e10be3a..00000000000 --- a/src/locales/ja/move.ts +++ /dev/null @@ -1,3812 +0,0 @@ -import { MoveTranslationEntries } from "#app/interfaces/locales"; - -export const move: MoveTranslationEntries = { - pound: { - name: "はたく", - effect: "長い しっぽや 手などを 使って 相手を はたいて 攻撃する。" - }, - karateChop: { - name: "からてチョップ", - effect: "鋭い チョップで 相手を たたいて 攻撃する。 急所に 当たりやすい。" - }, - doubleSlap: { - name: "おうふくビンタ", - effect: "おうふく ビンタで 相手を たたいて 攻撃する。 2ー5回の 間 連続で だす。" - }, - cometPunch: { - name: "れんぞくパンチ", - effect: "どとうの パンチで 相手を なぐりつけて 攻撃する。 2ー5回の 間 連続で だす。" - }, - megaPunch: { - name: "メガトンパンチ", - effect: "力を こめた パンチで 相手を 攻撃する。" - }, - payDay: { - name: "ネコにこばん", - effect: "相手の 体に 小判を 投げつけて 攻撃する。 戦闘の あとで お金が もらえる。" - }, - firePunch: { - name: "ほのおのパンチ", - effect: "炎を こめた パンチで 相手を 攻撃する。 やけど状態に することが ある。" - }, - icePunch: { - name: "れいとうパンチ", - effect: "冷気を こめた パンチで 相手を 攻撃する。 こおり状態に することが ある。" - }, - thunderPunch: { - name: "かみなりパンチ", - effect: "電撃を こめた パンチで 相手を 攻撃する。 まひ状態に することが ある。" - }, - scratch: { - name: "ひっかく", - effect: "硬く とがった 鋭い ツメで 相手を ひっかいて 攻撃する。" - }, - viseGrip: { - name: "はさむ", - effect: "相手を 両側から はさんで ダメージを あたえる。" - }, - guillotine: { - name: "ハサミギロチン", - effect: "大きな ハサミで 相手を 切り裂いて 攻撃する。 当たれば 一撃で ひんしに する。" - }, - razorWind: { - name: "かまいたち", - effect: "風の 刃を つくり 2ターン目に 相手を 攻撃する。 急所に 当たりやすい。" - }, - swordsDance: { - name: "つるぎのまい", - effect: "戦いの舞を 激しく おどって 気合を 高める。 自分の 攻撃を ぐーんと あげる。" - }, - cut: { - name: "いあいぎり", - effect: "カマや ツメなどで 相手を 切りつけて 攻撃する。" - }, - gust: { - name: "かぜおこし", - effect: "翼で おこした 激しい 風を 相手に ぶつけて 攻撃する。" - }, - wingAttack: { - name: "つばさでうつ", - effect: "大きく ひろげた りっぱな 翼を 相手に ぶつけて 攻撃する。" - }, - whirlwind: { - name: "ふきとばし", - effect: "相手を 吹きとばして 控えの ポケモンを ひきずりだす。 野生の 場合は 戦闘が 終わる。" - }, - fly: { - name: "そらをとぶ", - effect: "1ターン目で 空へ 飛び 2ターン目に 相手を 攻撃する。" - }, - bind: { - name: "しめつける", - effect: "長い 体や つるなどを 使い 4ー5ターンの 間 相手を 締めつけて 攻撃する。" - }, - slam: { - name: "たたきつける", - effect: "長い しっぽや つるなどを 使い 相手を たたきつけて 攻撃する。" - }, - vineWhip: { - name: "つるのムチ", - effect: "ムチのように しなる 細長い つるで 相手を たたきつけて 攻撃する。" - }, - stomp: { - name: "ふみつけ", - effect: "大きな 足で 相手を 踏みつけて 攻撃する。 相手を ひるませることが ある。" - }, - doubleKick: { - name: "にどげり", - effect: "2本の 足で 相手を けとばして 攻撃する。 2回連続で ダメージを 与える。" - }, - megaKick: { - name: "メガトンキック", - effect: "ものすごい 力を こめた キックで 相手を けとばして 攻撃する。" - }, - jumpKick: { - name: "とびげり", - effect: "高い ジャンプからの キックで 相手を 攻撃する。 はずすと 自分が ダメージを 受ける。" - }, - rollingKick: { - name: "まわしげり", - effect: "体を 素早く 回転させながら けとばして 攻撃する。 相手を ひるませる ことが ある。" - }, - sandAttack: { - name: "すなかけ", - effect: "相手の 顔に 砂を かけて 命中率を さげる。" - }, - headbutt: { - name: "ずつき", - effect: "頭を 突きだして まっすぐ つっこんで 攻撃する。 相手を ひるませることが ある。" - }, - hornAttack: { - name: "つのでつく", - effect: "鋭く とがった つので 相手を 攻撃する。" - }, - furyAttack: { - name: "みだれづき", - effect: "つのや くちばしで 相手を つついて 攻撃する。 2ー5回の 間 連続で だす。" - }, - hornDrill: { - name: "つのドリル", - effect: "回転する つのを 相手に 突き刺して 攻撃する。 当たれば 一撃で ひんしに する。" - }, - tackle: { - name: "たいあたり", - effect: "相手に むかって 全身で ぶつかっていき 攻撃する。" - }, - bodySlam: { - name: "のしかかり", - effect: "全身で 相手に のしかかり 攻撃する。 まひ状態に することが ある。" - }, - wrap: { - name: "まきつく", - effect: "長い 体や つるなどを 使って 4ー5ターンの 間 相手に まきついて 攻撃する。" - }, - takeDown: { - name: "とっしん", - effect: "すごい 勢いで 相手に ぶつかって 攻撃する。 自分も 少し ダメージを 受ける。" - }, - thrash: { - name: "あばれる", - effect: "2ー3ターンの 間 暴れまくって 相手を 攻撃する。 暴れたあとは 混乱する。" - }, - doubleEdge: { - name: "すてみタックル", - effect: "命を 懸けて 相手に 突進して 攻撃する。 自分も かなり ダメージを 受ける。" - }, - tailWhip: { - name: "しっぽをふる", - effect: "しっぽを 左右に かわいく ふって 油断を 誘う。 相手の 防御を さげる。" - }, - poisonSting: { - name: "どくばり", - effect: "毒の ある ハリを 相手に 突き刺して 攻撃する。 毒状態に することが ある。" - }, - twineedle: { - name: "ダブルニードル", - effect: "2本の ハリを 相手に 突き刺し 2回連続で ダメージ。 毒状態に することが ある。" - }, - pinMissile: { - name: "ミサイルばり", - effect: "鋭い ハリを 相手に 発射して 攻撃する。 2ー5回の 間 連続で だす。" - }, - leer: { - name: "にらみつける", - effect: "鋭い 目つきで おびえさせて 相手の 防御を さげる。" - }, - bite: { - name: "かみつく", - effect: "鋭く とがった 歯で かみついて 攻撃する。 相手を ひるませることが ある。" - }, - growl: { - name: "なきごえ", - effect: "かわいい なきごえを 聞かせて 気を ひき 油断を させて 相手の 攻撃を さげる。" - }, - roar: { - name: "ほえる", - effect: "相手を 逃がして 控えの ポケモンを ひきずりだす。 野生の 場合は 戦闘が 終わる。" - }, - sing: { - name: "うたう", - effect: "心地好い きれいな 歌声を 聞かせて 相手を 眠り状態に する。" - }, - supersonic: { - name: "ちょうおんぱ", - effect: "特殊な 音波を 体から 発して 相手を 混乱させる。" - }, - sonicBoom: { - name: "ソニックブーム", - effect: "衝撃波を 相手に ぶつけて 攻撃する。 20の ダメージを 決まって 与える。" - }, - disable: { - name: "かなしばり", - effect: "相手の 動きを とめて 直前に だしていた 技を 4ターンの 間 使えなくする。" - }, - acid: { - name: "ようかいえき", - effect: "強い 酸を 相手に かけて 攻撃する。 相手の 特防を さげることが ある。" - }, - ember: { - name: "ひのこ", - effect: "小さな 炎を 相手に 発射して 攻撃する。 やけど状態に することが ある。" - }, - flamethrower: { - name: "かえんほうしゃ", - effect: "激しい 炎を 相手に 発射して 攻撃する。 やけど状態に することが ある。" - }, - mist: { - name: "しろいきり", - effect: "白い霧で 体を おおう。 5ターンの 間 相手に 能力を さげられなく なる。" - }, - waterGun: { - name: "みずでっぽう", - effect: "水を 勢いよく 相手に 発射して 攻撃する。" - }, - hydroPump: { - name: "ハイドロポンプ", - effect: "大量の 水を 激しい 勢いで 相手に 発射して 攻撃する。" - }, - surf: { - name: "なみのり", - effect: "大きな 波で 自分の 周りに いるものを 攻撃する。" - }, - iceBeam: { - name: "れいとうビーム", - effect: "凍える ビームを 相手に 発射して 攻撃する。 こおり状態に することが ある。" - }, - blizzard: { - name: "ふぶき", - effect: "激しい 吹雪を 相手に 吹きつけて 攻撃する。 こおり状態に することが ある。" - }, - psybeam: { - name: "サイケこうせん", - effect: "不思議な 光線を 相手に 発射して 攻撃する。 混乱させることが ある。" - }, - bubbleBeam: { - name: "バブルこうせん", - effect: "泡を 勢いよく 相手に 発射して 攻撃する。 素早さを さげる ことが ある。" - }, - auroraBeam: { - name: "オーロラビーム", - effect: "にじいろの ビームを 相手に 発射して 攻撃する。 攻撃を さげる ことが ある。" - }, - hyperBeam: { - name: "はかいこうせん", - effect: "強い 光線を 相手に 発射して 攻撃する。 次の ターンは 動けなくなる。" - }, - peck: { - name: "つつく", - effect: "鋭く とがった くちばしや つので 相手を 突いて 攻撃する。" - }, - drillPeck: { - name: "ドリルくちばし", - effect: "回転しながら とがった くちばしを 相手に 突き刺して 攻撃する。" - }, - submission: { - name: "じごくぐるま", - effect: "地面に 自分ごと 相手を 投げつけて 攻撃する。 自分も 少し ダメージを 受ける。" - }, - lowKick: { - name: "けたぐり", - effect: "足を 強く けり 相手を 転ばせて 攻撃する。 相手が 重いほど 威力が あがる。" - }, - counter: { - name: "カウンター", - effect: "相手から 受けた 物理攻撃の ダメージを 2倍に して 同じ 相手に 返す。" - }, - seismicToss: { - name: "ちきゅうなげ", - effect: "引力を 使い 投げとばす。 自分の レベルと 同じ ダメージを 相手に 与える。" - }, - strength: { - name: "かいりき", - effect: "こん身の 力で 相手を なぐりつけて 攻撃する。" - }, - absorb: { - name: "すいとる", - effect: "養分を 吸い取り 攻撃する。 相手に 与えた ダメージの 半分の HPを 回復できる。" - }, - megaDrain: { - name: "メガドレイン", - effect: "養分を 吸い取り 攻撃する。 相手に 与えた ダメージの 半分の HPを 回復できる。" - }, - leechSeed: { - name: "やどりぎのタネ", - effect: "植えつけた 相手の HPを 毎ターン 少しだけ 吸い取り 自分の HPを 回復する。" - }, - growth: { - name: "せいちょう", - effect: "体を 一気に 大きく 生長させて 攻撃と 特攻を あげる。" - }, - razorLeaf: { - name: "はっぱカッター", - effect: "はっぱを とばして 相手を 切りつけて 攻撃する。 急所に 当たりやすい。" - }, - solarBeam: { - name: "ソーラービーム", - effect: "1ターン目に 光を いっぱいに 集め 2ターン目に 光の 束を 発射して 攻撃する。" - }, - poisonPowder: { - name: "どくのこな", - effect: "毒の ある 粉を たくさん ふりまいて 相手を 毒状態に する。" - }, - stunSpore: { - name: "しびれごな", - effect: "しびれる 粉を たくさん ふりまいて 相手を まひ状態に する。" - }, - sleepPowder: { - name: "ねむりごな", - effect: "眠くなる 粉を たくさん ふりまいて 相手を 眠り状態に する。" - }, - petalDance: { - name: "はなびらのまい", - effect: "2ー3ターンの 間 花を まきちらして 相手を 攻撃する。 まきちらした あとは 混乱する。" - }, - stringShot: { - name: "いとをはく", - effect: "口から 吹きだした 糸を まきつけて 相手の 素早さを がくっと さげる。" - }, - dragonRage: { - name: "りゅうのいかり", - effect: "怒りの 衝撃波を 相手に ぶつけて 攻撃する。 40の ダメージを 決まって 与える。" - }, - fireSpin: { - name: "ほのおのうず", - effect: "激しく 渦をまく 炎の中に 4ー5ターンの 間 相手を 閉じこめて 攻撃する。" - }, - thunderShock: { - name: "でんきショック", - effect: "電気の 刺激を 相手に 浴びせて 攻撃する。 まひ状態に することが ある。" - }, - thunderbolt: { - name: "10まんボルト", - effect: "強い 電撃を 相手に 浴びせて 攻撃する。 まひ状態に することが ある。" - }, - thunderWave: { - name: "でんじは", - effect: "弱い 電撃を 浴びせることで 相手を まひ状態に する。" - }, - thunder: { - name: "かみなり", - effect: "激しい 雷を 相手に 落として 攻撃する。 まひ状態に することが ある。" - }, - rockThrow: { - name: "いわおとし", - effect: "小さな 岩を 持ちあげて 相手に 投げつけて 攻撃する。" - }, - earthquake: { - name: "じしん", - effect: "地震の 衝撃で 自分の 周りに いるものを 攻撃する。" - }, - fissure: { - name: "じわれ", - effect: "地割れの 裂け目に 相手を 落として 攻撃する。 当たれば 一撃で ひんしに する。" - }, - dig: { - name: "あなをほる", - effect: "1ターン目に 潜り 2ターン目で 相手を 攻撃する。" - }, - toxic: { - name: "どくどく", - effect: "相手を 猛毒の 状態に する。 ターンが すすむほど 毒の ダメージが 増えていく。" - }, - confusion: { - name: "ねんりき", - effect: "弱い 念力を 相手に 送って 攻撃する。 相手を 混乱させることが ある。" - }, - psychic: { - name: "サイコキネシス", - effect: "強い 念力を 相手に 送って 攻撃する。 相手の 特防を さげることが ある。" - }, - hypnosis: { - name: "さいみんじゅつ", - effect: "眠気を 誘う 暗示を かけて 相手を 眠り状態に する。" - }, - meditate: { - name: "ヨガのポーズ", - effect: "眠っている 力を 体の 奥から ひきだして 自分の 攻撃を あげる。" - }, - agility: { - name: "こうそくいどう", - effect: "力を ぬいて 体を 軽くして 高速で 動く。 自分の 素早さを ぐーんと あげる。" - }, - quickAttack: { - name: "でんこうせっか", - effect: "目にも 留まらぬ ものすごい 速さで 相手に つっこむ。 必ず 先制攻撃 できる。" - }, - rage: { - name: "いかり", - effect: "技を だしたときに 攻撃を 受けると 怒りの 力で 攻撃が あがる。" - }, - teleport: { - name: "テレポート", - effect: "ひかえの ポケモンが いるときに 使うと 入れ替わる。 野生の ポケモンは 逃げてしまう。" - }, - nightShade: { - name: "ナイトヘッド", - effect: "恐ろしい 幻を みせて 自分の レベルと 同じだけの ダメージを 相手に 与える。" - }, - mimic: { - name: "ものまね", - effect: "相手が 最後に 使った 技を 戦闘の あいだ 自分の 技に することが できる。" - }, - screech: { - name: "いやなおと", - effect: "おもわず 耳を ふさぎたくなる いやなおとを だして 相手の 防御を がくっと さげる。" - }, - doubleTeam: { - name: "かげぶんしん", - effect: "素早い 動きで 分身を つくり 相手を まどわせて 回避率を あげる。" - }, - recover: { - name: "じこさいせい", - effect: "細胞を 再生させて 自分の 最大HPの 半分の HPを 回復する。" - }, - harden: { - name: "かたくなる", - effect: "全身に 力を こめて 体を 硬くして 自分の 防御を あげる。" - }, - minimize: { - name: "ちいさくなる", - effect: "体を ちぢめて 小さく みせて 自分の 回避率を ぐーんと あげる。" - }, - smokescreen: { - name: "えんまく", - effect: "煙や 墨などを 吹きかけて 相手の 命中率を さげる。" - }, - confuseRay: { - name: "あやしいひかり", - effect: "怪しい 光を 相手に みせて まどわせる。 相手を 混乱させる。" - }, - withdraw: { - name: "からにこもる", - effect: "殻に 潜りこんで 身を守り 自分の 防御を あげる。" - }, - defenseCurl: { - name: "まるくなる", - effect: "体を まるめて ちぢこまり 自分の 防御を あげる。" - }, - barrier: { - name: "バリアー", - effect: "頑丈な 壁を つくって 自分の 防御を ぐーんと あげる。" - }, - lightScreen: { - name: "ひかりのかべ", - effect: "5ターンの 間 不思議な かべで 相手から 受ける 特殊攻撃の ダメージを 弱める。" - }, - haze: { - name: "くろいきり", - effect: "黒い霧を だして 戦闘に でている ポケモン 全員の 能力変化を もとに もどす。" - }, - reflect: { - name: "リフレクター", - effect: "5ターンの 間 不思議な かべで 相手から 受ける 物理攻撃の ダメージを 弱める。" - }, - focusEnergy: { - name: "きあいだめ", - effect: "深く 息を 吸い 気合を こめる。 自分の 攻撃が 急所に 当たりやすくなる。" - }, - bide: { - name: "がまん", - effect: "2ターンの 間 攻撃に たえて 受けた ダメージを 2倍にして 相手に 返す。" - }, - metronome: { - name: "ゆびをふる", - effect: "指をふり 自分の 脳を 刺激して すべての 技の なかから どれか 1つを くりだす。" - }, - mirrorMove: { - name: "オウムがえし", - effect: "相手の 使った 技を まねして 自分も 同じ技を 使う。" - }, - selfDestruct: { - name: "じばく", - effect: "爆発を おこして 自分の 周りに いるものを 攻撃する。 使ったあとに ひんしに なる。" - }, - eggBomb: { - name: "タマゴばくだん", - effect: "大きな タマゴを 力いっぱい 相手に 投げつけて 攻撃する。" - }, - lick: { - name: "したでなめる", - effect: "長い 舌で 相手を なめまわして 攻撃する。 まひ状態に することが ある。" - }, - smog: { - name: "スモッグ", - effect: "汚れた ガスを 相手に 吹きつけて 攻撃する。 毒状態に することが ある。" - }, - sludge: { - name: "ヘドロこうげき", - effect: "汚い ヘドロを 相手に 投げつけて 攻撃する。 毒状態に することが ある。" - }, - boneClub: { - name: "ホネこんぼう", - effect: "手に 持った ホネで 相手を なぐりつけて 攻撃する。 相手を ひるませることが ある。" - }, - fireBlast: { - name: "だいもんじ", - effect: "大の字の 炎で 相手を 焼きつくす。 やけど状態に することが ある。" - }, - waterfall: { - name: "たきのぼり", - effect: "すごい 勢いで 相手に つっこむ。 相手を ひるませることが ある。" - }, - clamp: { - name: "からではさむ", - effect: "とても 頑丈な ぶあつい 殻に 4ー5ターンの 間 相手を はさんで 攻撃する。" - }, - swift: { - name: "スピードスター", - effect: "星型の 光を 発射して 相手を 攻撃する。 攻撃は 必ず 命中する。" - }, - skullBash: { - name: "ロケットずつき", - effect: "1ターン目に 頭を ひっこめて 防御を あげる。 2ターン目に 相手を 攻撃する。" - }, - spikeCannon: { - name: "とげキャノン", - effect: "鋭い ハリを 相手に 発射して 攻撃する。 2ー5回の 間 連続で だす。" - }, - constrict: { - name: "からみつく", - effect: "触手や ツタなどを からみつけて 攻撃する。相手の 素早さを さげることが ある。" - }, - amnesia: { - name: "ドわすれ", - effect: "頭を からにして 一瞬 なにかを 忘れることで 自分の 特防を ぐーんと あげる。" - }, - kinesis: { - name: "スプーンまげ", - effect: "スプーンを まげて 注意を ひき 相手の 命中率を さげる。" - }, - softBoiled: { - name: "タマゴうみ", - effect: "最大HPの 半分 自分の HPを 回復する。" - }, - highJumpKick: { - name: "とびひざげり", - effect: "ジャンプからの ひざげりで 相手を 攻撃する。 はずすと 自分が ダメージを 受ける。" - }, - glare: { - name: "へびにらみ", - effect: "おなかの 模様で おびえさせて 相手を まひの 状態に する。" - }, - dreamEater: { - name: "ゆめくい", - effect: "寝ている 相手の 夢を 食べて 攻撃する。 ダメージの 半分の HPを 回復する。" - }, - poisonGas: { - name: "どくガス", - effect: "毒ガスを 相手の 顔に 吹きかけて 毒の 状態に する。" - }, - barrage: { - name: "たまなげ", - effect: "まるい ものを 相手に 投げつけて 攻撃する。 2ー5回の 間 連続で だす。" - }, - leechLife: { - name: "きゅうけつ", - effect: "血を 吸い取って 相手を 攻撃する。 与えた ダメージの 半分の HPを 回復できる。" - }, - lovelyKiss: { - name: "あくまのキッス", - effect: "恐ろしい 顔で キスを せまる。 相手を 眠り状態に する。" - }, - skyAttack: { - name: "ゴッドバード", - effect: "2ターン目に 相手を 攻撃する。 たまに ひるませる。 急所にも 当たりやすい。" - }, - transform: { - name: "へんしん", - effect: "相手の ポケモンに 変身することで 相手と まったく 同じ 技が 使える。" - }, - bubble: { - name: "あわ", - effect: "無数の 泡を 相手に 吹きかけて 攻撃する。 相手の 素早さを さげることが ある。" - }, - dizzyPunch: { - name: "ピヨピヨパンチ", - effect: "リズミカルに パンチを くりだして 相手を 攻撃する。 混乱させることが ある。" - }, - spore: { - name: "キノコのほうし", - effect: "催眠効果の ある 胞子を パラパラと ふりまき 相手を 眠り状態に する。" - }, - flash: { - name: "フラッシュ", - effect: "まぶしい 光で 相手の 命中率を さげる。" - }, - psywave: { - name: "サイコウェーブ", - effect: "不思議な 念波を 相手に 発射して 攻撃する。 使うたびに ダメージが 変わる。" - }, - splash: { - name: "はねる", - effect: "攻撃もせずに ピョン ピョンと 跳ねるだけで なにも おこらない……。" - }, - acidArmor: { - name: "とける", - effect: "細胞の 変化で 液状に なり 自分の 防御を ぐーんと あげる。" - }, - crabhammer: { - name: "クラブハンマー", - effect: "大きな ハサミを 相手に たたきつけて 攻撃する。 急所に 当たりやすい。" - }, - explosion: { - name: "だいばくはつ", - effect: "大きな 爆発で 自分の 周りに いるものを 攻撃する。 使ったあとに ひんしに なる。" - }, - furySwipes: { - name: "みだれひっかき", - effect: "ツメや カマなどで 相手を ひっかいて 攻撃する。 2ー5回の 間 連続で だす。" - }, - bonemerang: { - name: "ホネブーメラン", - effect: "手に 持った ホネを 相手に 投げつけ 行きと 帰りの 2回連続で ダメージを 与える。" - }, - rest: { - name: "ねむる", - effect: "2ターンの 間 眠り続ける。 自分の HPと 状態異常を すべて 回復する。" - }, - rockSlide: { - name: "いわなだれ", - effect: "大きな 岩を 激しく ぶつけて 攻撃する。 相手を ひるませることが ある。" - }, - hyperFang: { - name: "ひっさつまえば", - effect: "鋭い 前歯で 強く かみついて 攻撃する。 相手を ひるませることが ある。" - }, - sharpen: { - name: "かくばる", - effect: "体の かどを 増やして カクカクに なることで 自分の 攻撃を あげる。" - }, - conversion: { - name: "テクスチャー", - effect: "自分の タイプを おぼえている 技で 一番 上の 技と 同じ タイプに する。" - }, - triAttack: { - name: "トライアタック", - effect: "3つの 光線で 攻撃する。 まひか やけどか こおり状態の どれかに することが ある。" - }, - superFang: { - name: "いかりのまえば", - effect: "鋭い 前歯で 激しく かみついて 攻撃する。 相手の HPは 半分に なる。" - }, - slash: { - name: "きりさく", - effect: "ツメや カマなどで 相手を 切り裂いて 攻撃する。 急所に 当たりやすい。" - }, - substitute: { - name: "みがわり", - effect: "自分の HPを 少し 削って 分身を だす。 分身は 自分の 身代わりに なる。" - }, - struggle: { - name: "わるあがき", - effect: "自分の PPが なくなると あがいて 相手を 攻撃する。 自分も 少し ダメージを 受ける。" - }, - sketch: { - name: "スケッチ", - effect: "相手が 使った 技を 自分の ものに する。 1回 使うと スケッチは 消える。" - }, - tripleKick: { - name: "トリプルキック", - effect: "3回連続で キックを くりだして 攻撃する。 技が 当たるたびに 威力は あがる。" - }, - thief: { - name: "どろぼう", - effect: "攻撃と 同時に 道具を 盗もうとする。 盗む 可能性は 30%。" - }, - spiderWeb: { - name: "クモのす", - effect: "ネバネバした 細い 糸を グルグルと からませて 相手を 戦闘から 逃げられなくする。" - }, - mindReader: { - name: "こころのめ", - effect: "相手の 動きを 心で 感じて 次の 攻撃が 必ず 相手に 当たるように する。" - }, - nightmare: { - name: "あくむ", - effect: "眠り状態の 相手に 悪夢を みせて 毎ターン 少しずつ HPを 減らしていく。" - }, - flameWheel: { - name: "かえんぐるま", - effect: "炎を まとい 相手に 突進して 攻撃する。 やけど状態に することが ある。" - }, - snore: { - name: "いびき", - effect: "自分が 寝ているときに 雑音を だして 攻撃する。 相手を ひるませることが ある。" - }, - curse: { - name: "のろい", - effect: "使う ポケモンが ゴーストタイプと それ以外 とでは 効果が 変わる。" - }, - flail: { - name: "じたばた", - effect: "じたばた 暴れて 攻撃する。 自分の HPが 少ないほど 技の 威力は あがる。" - }, - conversion2: { - name: "テクスチャー2", - effect: "相手が 最後に 使った技に 抵抗できる ように 自分の タイプを 変化させる。" - }, - aeroblast: { - name: "エアロブラスト", - effect: "空気の 渦を 発射して 攻撃する。 急所に 当たりやすい。" - }, - cottonSpore: { - name: "わたほうし", - effect: "綿のような フワフワの 胞子を まとわり つかせて 相手の 素早さを がくっと さげる。" - }, - reversal: { - name: "きしかいせい", - effect: "力を ふりしぼり 攻撃する。 自分の HPが 少ないほど 技の 威力は あがる。" - }, - spite: { - name: "うらみ", - effect: "相手が 最後に 使った技に 恨みを 抱いて その技の PPを 4だけ 減らす。" - }, - powderSnow: { - name: "こなゆき", - effect: "冷たい 粉雪を 相手に 吹きつけて 攻撃する。 こおり状態に することが ある。" - }, - protect: { - name: "まもる", - effect: "相手の 攻撃を まったく 受けない。 連続で だすと 失敗しやすい。" - }, - machPunch: { - name: "マッハパンチ", - effect: "目にも 留まらぬ ものすごい 速さで パンチを くりだす。 必ず 先制攻撃 できる。" - }, - scaryFace: { - name: "こわいかお", - effect: "恐ろしい 顔で にらみ おびえさせて 相手の 素早さを がくっと さげる。" - }, - feintAttack: { - name: "だましうち", - effect: "さりげなく 相手に ちかづき 油断した すきを みて なぐりつける。 攻撃は 必ず 命中する。" - }, - sweetKiss: { - name: "てんしのキッス", - effect: "天使のように かわいく キスして 相手を 混乱させる。" - }, - bellyDrum: { - name: "はらだいこ", - effect: "自分の HPを 最大HPの 半分 減らして 自分の 攻撃を 最大に あげる。" - }, - sludgeBomb: { - name: "ヘドロばくだん", - effect: "汚い ヘドロを 相手に 投げつけて 攻撃する。 毒状態に することが ある。" - }, - mudSlap: { - name: "どろかけ", - effect: "相手の 顔などに 泥を 投げつけて 攻撃する。 命中率を さげる。" - }, - octazooka: { - name: "オクタンほう", - effect: "相手の 顔などに 墨を 吹きかけて 攻撃する。 命中率を さげることが ある。" - }, - spikes: { - name: "まきびし", - effect: "相手の 足下に まきびしを しかける。交代で でてきた 相手の ポケモンに ダメージを 与える。" - }, - zapCannon: { - name: "でんじほう", - effect: "大砲の ような 電気を 発射して 攻撃する。 相手を まひの 状態に する。" - }, - foresight: { - name: "みやぶる", - effect: "ゴーストタイプに 効果がない 技や 回避率の 高い 相手に 攻撃が 当たるように なる。" - }, - destinyBond: { - name: "みちづれ", - effect: "技のあと 相手の 攻撃で ひんしに なると 攻撃 相手も ひんしにする。 連続して 出すと 失敗する。" - }, - perishSong: { - name: "ほろびのうた", - effect: "歌を 聴いた ポケモンは 3ターン たつと ひんしに なる。 交代すると 効果は なくなる。" - }, - icyWind: { - name: "こごえるかぜ", - effect: "凍てつく 冷気を 相手に 吹きつけて 攻撃する。 相手の 素早さを さげる。" - }, - detect: { - name: "みきり", - effect: "相手の 攻撃を まったく 受けない。 連続で だすと 失敗しやすい。" - }, - boneRush: { - name: "ボーンラッシュ", - effect: "硬い ホネで 相手を なぐりつけて 攻撃する。 2ー5回の 間 連続で だす。" - }, - lockOn: { - name: "ロックオン", - effect: "照準を しっかり あわせて 次の 攻撃が 必ず 相手に 当たるように する。" - }, - outrage: { - name: "げきりん", - effect: "2ー3ターンの 間 暴れまくって 相手を 攻撃する。 暴れたあとは 混乱する。" - }, - sandstorm: { - name: "すなあらし", - effect: "5ターンの 間 砂あらしで いわ じめん はがねタイプ 以外に ダメージ。 いわタイプの 特防が あがる。" - }, - gigaDrain: { - name: "ギガドレイン", - effect: "養分を 吸い取り 攻撃する。 相手に 与えた ダメージの 半分の HPを 回復できる。" - }, - endure: { - name: "こらえる", - effect: "攻撃を 受けても HPを 必ず 1だけ 残せる。 連続で だすと 失敗しやすい。" - }, - charm: { - name: "あまえる", - effect: "かわいく みつめて 油断を 誘い 相手の 攻撃を がくっと さげる。" - }, - rollout: { - name: "ころがる", - effect: "5ターンの 間 転がり続けて 攻撃する。 技が 当たるたびに 威力が あがる。" - }, - falseSwipe: { - name: "みねうち", - effect: "相手の HPが 必ず 1だけ 残るように 手加減して 攻撃する。" - }, - swagger: { - name: "いばる", - effect: "相手を 怒らせて 混乱させる。 怒りで 相手の 攻撃は ぐーんと あがってしまう。" - }, - milkDrink: { - name: "ミルクのみ", - effect: "最大HPの 半分 自分の HPを 回復する。" - }, - spark: { - name: "スパーク", - effect: "電気を まとい 相手に 突進して 攻撃する。 まひ状態に することが ある。" - }, - furyCutter: { - name: "れんぞくぎり", - effect: "カマや ツメなどで 相手を 切りつけて 攻撃する。 連続で 当てると 威力が あがる。" - }, - steelWing: { - name: "はがねのつばさ", - effect: "硬い 翼を 相手に たたきつけて 攻撃する。 自分の 防御が あがることが ある。" - }, - meanLook: { - name: "くろいまなざし", - effect: "吸いこまれるような 黒い まなざしで じっと みつめて 相手を 戦闘から 逃げられなくする。" - }, - attract: { - name: "メロメロ", - effect: "♂なら♀を ♀なら♂を 誘惑して メロメロに する。 相手は 技が だしにくくなる。" - }, - sleepTalk: { - name: "ねごと", - effect: "自分が おぼえている 技の うち どれか 1つを くりだす。 自分が 寝ているときだけ 使える。" - }, - healBell: { - name: "いやしのすず", - effect: "心地好い 鈴の 音色を 聞かせて 味方 全員の 状態異常を 回復 する。" - }, - return: { - name: "おんがえし", - effect: "トレーナーの ために 全力で 相手を 攻撃する。 なついているほど 威力は あがる。" - }, - present: { - name: "プレゼント", - effect: "わなを しかけた 箱を 相手に わたして 攻撃する。HPが 回復して しまうことも ある。" - }, - frustration: { - name: "やつあたり", - effect: "不満を はらすため 全力で 相手を 攻撃する。 なついていないほど 威力は あがる。" - }, - safeguard: { - name: "しんぴのまもり", - effect: "5ターンの 間 不思議な 力に 守られて 状態異常に ならなくなる。" - }, - painSplit: { - name: "いたみわけ", - effect: "自分の HPと 相手の HPを あわせて それを 自分と 相手で なかよく わける。" - }, - sacredFire: { - name: "せいなるほのお", - effect: "神秘の 炎で 相手を 焼きつくして 攻撃する。 やけど状態に することが ある。" - }, - magnitude: { - name: "マグニチュード", - effect: "地面を 揺らして 自分の 周りに いるものを 攻撃する。 技の 威力は いろいろ 変わる。" - }, - dynamicPunch: { - name: "ばくれつパンチ", - effect: "こん身の 力で パンチを くりだして 攻撃する。 相手を 必ず 混乱させる。" - }, - megahorn: { - name: "メガホーン", - effect: "硬くて りっぱな つので おもいっきり 相手を 突き刺して 攻撃する。" - }, - dragonBreath: { - name: "りゅうのいぶき", - effect: "ものすごい 息を 相手に 吹きつけて 攻撃する。 まひ状態に することが ある。" - }, - batonPass: { - name: "バトンタッチ", - effect: "控えの ポケモンと 入れ替わる。 能力変化は 替わった ポケモンが そのまま 受けつぐ。" - }, - encore: { - name: "アンコール", - effect: "相手に アンコールした 技を 3回 続けて 出させる。" - }, - pursuit: { - name: "おいうち", - effect: "相手 ポケモンが 入れ替わるときに 技を だしていると 倍の 威力で 攻撃できる。" - }, - rapidSpin: { - name: "こうそくスピン", - effect: "回転して 相手を 攻撃する。 しめつける まきつく やどりぎのタネ など 吹きとばす。自分の 素早さも あがる。" - }, - sweetScent: { - name: "あまいかおり", - effect: "香りで 相手の 回避率を がくっと さげる。" - }, - ironTail: { - name: "アイアンテール", - effect: "硬い しっぽで 相手を たたきつけて 攻撃する。 相手の 防御を さげることが ある。" - }, - metalClaw: { - name: "メタルクロー", - effect: "鋼鉄の ツメで 相手を 切り裂いて 攻撃する。 自分の 攻撃が あがることが ある。" - }, - vitalThrow: { - name: "あてみなげ", - effect: "相手より あとに 攻撃する。 そのかわり 自分の 攻撃は 必ず 命中する。" - }, - morningSun: { - name: "あさのひざし", - effect: "自分の HPを 回復する。 天気に よって 回復の 量が 変化する。" - }, - synthesis: { - name: "こうごうせい", - effect: "自分の HPを 回復する。 天気に よって 回復の 量が 変化する。" - }, - moonlight: { - name: "つきのひかり", - effect: "自分の HPを 回復する。 天気に よって 回復の 量が 変化する。" - }, - hiddenPower: { - name: "めざめるパワー", - effect: "技を 使った ポケモンに よって 技の タイプが 変わる。" - }, - crossChop: { - name: "クロスチョップ", - effect: "両手チョップを 相手に たたきつけて 攻撃する。 急所に 当たりやすい。" - }, - twister: { - name: "たつまき", - effect: "竜巻を おこして 相手を まきこみ 攻撃する。 相手を ひるませることが ある。" - }, - rainDance: { - name: "あまごい", - effect: "5ターンの 間 雨を 降らせて みずタイプの 威力を あげる。 ほのおタイプの 威力は さがる。" - }, - sunnyDay: { - name: "にほんばれ", - effect: "5ターンの 間 日差しを 強くして ほのおタイプの 威力を あげる。 みずタイプの 威力は さがる。" - }, - crunch: { - name: "かみくだく", - effect: "鋭い 歯で 相手を かみくだいて 攻撃する。 相手の 防御を さげることが ある。" - }, - mirrorCoat: { - name: "ミラーコート", - effect: "相手から 受けた 特殊攻撃の ダメージを 2倍に して その相手に 返す。" - }, - psychUp: { - name: "じこあんじ", - effect: "自分に 暗示を かけることで 能力変化の 状態を 相手と 同じにする。" - }, - extremeSpeed: { - name: "しんそく", - effect: "目にも 留まらぬ ものすごい 速さで 相手に 突進して 攻撃する。 必ず 先制攻撃 できる。" - }, - ancientPower: { - name: "げんしのちから", - effect: "原始の 力で 攻撃する。 自分の すべての 能力が あがることが ある。" - }, - shadowBall: { - name: "シャドーボール", - effect: "黒い影の 塊を 投げつけて 攻撃する。 相手の 特防を さげることが ある。" - }, - futureSight: { - name: "みらいよち", - effect: "技を 使った 2ターン後に 相手に 念力の 塊を 送って 攻撃する。" - }, - rockSmash: { - name: "いわくだき", - effect: "パンチで 攻撃する。相手の 防御を さげる ことが ある。" - }, - whirlpool: { - name: "うずしお", - effect: "激しく 渦をまく 水の中に 4ー5ターンの 間 相手を 閉じこめて 攻撃する。" - }, - beatUp: { - name: "ふくろだたき", - effect: "味方 全員で 攻撃する。 仲間の ポケモンが 多いほど 技の 攻撃回数が 増える。" - }, - fakeOut: { - name: "ねこだまし", - effect: "先制攻撃で 相手を ひるませる。 戦闘に でたら すぐに ださないと 成功しない。" - }, - uproar: { - name: "さわぐ", - effect: "3ターンの 間 騒いで 相手を 攻撃する。 そのあいだは だれも 眠れなくなる。" - }, - stockpile: { - name: "たくわえる", - effect: "力を 蓄えて 自分の 防御と 特防を あげる。 最大 3回まで 蓄えられる。" - }, - spitUp: { - name: "はきだす", - effect: "蓄えた 力を 相手に ぶつけて 攻撃する。 蓄えているほど 威力が あがる。" - }, - swallow: { - name: "のみこむ", - effect: "蓄えた 力を のみこんで 自分の HPを 回復する。 蓄えているほど 回復する。" - }, - heatWave: { - name: "ねっぷう", - effect: "熱い 息を 相手に 吹きつけて 攻撃する。 やけど状態に することが ある。" - }, - hail: { - name: "あられ", - effect: "5ターンの 間 あられを 降らして こおりタイプで ない ポケモン 全員に ダメージを 与える。" - }, - torment: { - name: "いちゃもん", - effect: "相手に いちゃもんを つけて 同じ 技を 2回連続で だせなくする。" - }, - flatter: { - name: "おだてる", - effect: "相手を おだてて 混乱させる。 同時に 相手の 特攻も あげてしまう。" - }, - willOWisp: { - name: "おにび", - effect: "不気味で 怪しい 炎を 放って 相手を やけどの 状態に する。" - }, - memento: { - name: "おきみやげ", - effect: "自分は ひんしに なるが そのかわりに 相手の 攻撃と 特攻を がくっと さげる。" - }, - facade: { - name: "からげんき", - effect: "自分が 毒 まひ やけど 状態のとき 相手に くりだすと 技の 威力が 2倍に なる。" - }, - focusPunch: { - name: "きあいパンチ", - effect: "精神を 高めて パンチを くりだす。 技を だすまでに 攻撃を 受けると 失敗する。" - }, - smellingSalts: { - name: "きつけ", - effect: "まひ状態の 相手には 威力が 2倍に なるが かわりに 相手の まひが 治る。" - }, - followMe: { - name: "このゆびとまれ", - effect: "自分に 注目させて 相手からの 攻撃を すべて 自分に むけさせる。" - }, - naturePower: { - name: "しぜんのちから", - effect: "自然の 力で 攻撃する。 使う 場所で でてくる 技が 変化する。" - }, - charge: { - name: "じゅうでん", - effect: "次の ターンに だす でんきタイプの 技の 威力を あげる。 自分の 特防も あがる。" - }, - taunt: { - name: "ちょうはつ", - effect: "相手を 怒らせる。 3ターンの 間 相手は ダメージを 与える 技しか だせなくなる。" - }, - helpingHand: { - name: "てだすけ", - effect: "仲間を 助ける。 てだすけ された ポケモンの 技の 威力は いつもより 大きくなる。" - }, - trick: { - name: "トリック", - effect: "相手の すきを ついて 自分と 相手の 持ち物を 交換する。" - }, - rolePlay: { - name: "なりきり", - effect: "相手に なりきって 自分も 相手と 同じ 特性に 変化する。" - }, - wish: { - name: "ねがいごと", - effect: "次の ターンに 自分 もしくは 入れ替わった ポケモンの HPを 最大HPの 半分 回復する。" - }, - assist: { - name: "ねこのて", - effect: "大急ぎで 味方の 助けを かりて 味方の ポケモンが おぼえている 技を どれか 1つ 使う。" - }, - ingrain: { - name: "ねをはる", - effect: "大地に 根を 張り 毎ターン 自分の HPを 回復する。 根を 張っているので 入れ替えられない。" - }, - superpower: { - name: "ばかぢから", - effect: "すごい 力を 発揮して 相手を 攻撃する。自分の 攻撃と 防御が さがる。" - }, - magicCoat: { - name: "マジックコート", - effect: "状態異常に なる 技や やどりぎのタネ などを だされたとき 相手に 跳ね返す。" - }, - recycle: { - name: "リサイクル", - effect: "戦闘中に 使って なくなった 自分の 持ち物を 再生させて 使えるように する。" - }, - revenge: { - name: "リベンジ", - effect: "相手から 技を 受けていると その相手に 対して 与える ダメージが 2倍に なる。" - }, - brickBreak: { - name: "かわらわり", - effect: "手刀を 勢いよく 振りおろして 相手を 攻撃する。 ひかりのかべや リフレクター なども 破壊できる。" - }, - yawn: { - name: "あくび", - effect: "大きな あくびで 眠気を 誘う。 次の ターンに 相手を 眠り状態に する。" - }, - knockOff: { - name: "はたきおとす", - effect: "相手の 持ち物を はたき 落として 戦闘が 終わるまで 使えなくする。 物を持つ 相手には ダメージが増す。" - }, - endeavor: { - name: "がむしゃら", - effect: "相手の HPが 自分の HPと 同じくらいに なるように ダメージを 与える。" - }, - eruption: { - name: "ふんか", - effect: "怒りを 爆発させて 相手を 攻撃する。 自分の HPが 少ないほど 技の 威力は さがる。" - }, - skillSwap: { - name: "スキルスワップ", - effect: "超能力で 自分の 特性と 相手の 特性を 入れ替える。" - }, - imprison: { - name: "ふういん", - effect: "相手が 自分と 同じ 技を おぼえていたら 相手だけ その技を 使えなくする。" - }, - refresh: { - name: "リフレッシュ", - effect: "体を やすめて 自分が おっている 毒 まひ やけどの 状態異常を 治す。" - }, - grudge: { - name: "おんねん", - effect: "相手の 技で ひんしに されたとき おんねんを かけて その技の PPを 0に する。" - }, - snatch: { - name: "よこどり", - effect: "相手が 使おうと した 回復技や 能力変化の 技を うばって 自分に 使う。" - }, - secretPower: { - name: "ひみつのちから", - effect: "使う場所で 追加効果が 変化する 攻撃。" - }, - dive: { - name: "ダイビング", - effect: "1ターン目で 潜り 2ターン目に 浮きあがって 攻撃する。" - }, - armThrust: { - name: "つっぱり", - effect: "ひらいた 両手で 相手を つっぱって 攻撃する。 2ー5回の 間 連続で だす。" - }, - camouflage: { - name: "ほごしょく", - effect: "水辺や 草むら どうくつなど いる 場所に あわせて 自分の タイプを 変える。" - }, - tailGlow: { - name: "ほたるび", - effect: "点滅する 光を 眺めて 自分の 精神を 統一し 特攻を ぐぐーんと あげる。" - }, - lusterPurge: { - name: "ラスターパージ", - effect: "まばゆい 光を 解放して 攻撃する。 相手の 特防を さげることが ある。" - }, - mistBall: { - name: "ミストボール", - effect: "霧状の 羽毛で 包みこみ 攻撃する。 相手の 特攻を さげることが ある。" - }, - featherDance: { - name: "フェザーダンス", - effect: "羽毛を ふりまいて 相手の 体に からませる。 相手の 攻撃を がくっと さげる。" - }, - teeterDance: { - name: "フラフラダンス", - effect: "フラフラと ダンスを おどって 自分の 周りに いるものを 混乱状態に させる。" - }, - blazeKick: { - name: "ブレイズキック", - effect: "攻撃した 相手を やけど状態に することが ある。 急所にも 当たりやすい。" - }, - mudSport: { - name: "どろあそび", - effect: "あたりを 泥まみれにする。 5ターンの 間 でんきタイプの 技を 弱める。" - }, - iceBall: { - name: "アイスボール", - effect: "5ターンの 間 相手を 攻撃する。 技が 当たるたび 威力が あがる。" - }, - needleArm: { - name: "ニードルアーム", - effect: "トゲの 腕を 激しく ふるって 攻撃する。 相手を ひるませることが ある。" - }, - slackOff: { - name: "なまける", - effect: "怠けて やすむ。 自分の HPを 最大HPの 半分 回復する。" - }, - hyperVoice: { - name: "ハイパーボイス", - effect: "うるさく 響く 大きな 振動を 相手に 与えて 攻撃する。" - }, - poisonFang: { - name: "どくどくのキバ", - effect: "毒の ある キバで 相手に かみついて 攻撃する。 猛毒を おわせる ことが ある。" - }, - crushClaw: { - name: "ブレイククロー", - effect: "硬く 鋭い ツメで 切り裂いて 攻撃する。 相手の 防御を さげることが ある。" - }, - blastBurn: { - name: "ブラストバーン", - effect: "爆発の 炎で 相手を 焼きつくして 攻撃する。 次の ターンは 動けなくなる。" - }, - hydroCannon: { - name: "ハイドロカノン", - effect: "水の 大砲を 相手に 発射して 攻撃する。 次の ターンは 動けなくなる。" - }, - meteorMash: { - name: "コメットパンチ", - effect: "すい星の ごとく パンチを くりだして 相手を 攻撃する。 自分の 攻撃が あがることが ある。" - }, - astonish: { - name: "おどろかす", - effect: "大きな 声などで 不意に 驚かして 攻撃する。 相手を ひるませることが ある。" - }, - weatherBall: { - name: "ウェザーボール", - effect: "使ったときの 天気に よって 技の タイプと 威力が 変わる。" - }, - aromatherapy: { - name: "アロマセラピー", - effect: "心地好い やすらぐ 香りを かがせて 味方全員の 状態異常を 回復する。" - }, - fakeTears: { - name: "うそなき", - effect: "ないた ふりをして 涙を 流す。 こまらせる ことで 相手の 特防を がくっと さげる。" - }, - airCutter: { - name: "エアカッター", - effect: "鋭い 風で 相手を 切りつけて 攻撃する。 急所に 当たりやすい。" - }, - overheat: { - name: "オーバーヒート", - effect: "フルパワーで 相手を 攻撃する。 使うと 反動で 自分の 特攻が がくっと さがる。" - }, - odorSleuth: { - name: "かぎわける", - effect: "ゴーストタイプに 効果がない 技や 回避率の 高い 相手に 攻撃が 当たるように なる。" - }, - rockTomb: { - name: "がんせきふうじ", - effect: "岩石を 投げつけて 攻撃する。 相手の 動きを 封じることで 素早さを さげる。" - }, - silverWind: { - name: "ぎんいろのかぜ", - effect: "風に りんぷんを のせて 相手を 攻撃する。自分の すべての 能力が あがることが ある。" - }, - metalSound: { - name: "きんぞくおん", - effect: "金属を こすって でるような いやな 音を 聞かせる。 相手の 特防を がくっと さげる。" - }, - grassWhistle: { - name: "くさぶえ", - effect: "心地好い 笛の 音色を 聞かせて 相手を 眠りの 状態に する。" - }, - tickle: { - name: "くすぐる", - effect: "体を くすぐり 笑わせる ことで 相手の 攻撃と 防御を さげる。" - }, - cosmicPower: { - name: "コスモパワー", - effect: "宇宙から 神秘の 力を とりこむ ことで 自分の 防御と 特防を あげる。" - }, - waterSpout: { - name: "しおふき", - effect: "潮を 吹きつけて 攻撃する。 自分の HPが 少ないほど 技の 威力は さがる。" - }, - signalBeam: { - name: "シグナルビーム", - effect: "不思議な 光を 発射して 攻撃する。 相手を 混乱させることが ある。" - }, - shadowPunch: { - name: "シャドーパンチ", - effect: "影に まぎれて パンチを くりだす。 攻撃は 必ず 命中する。" - }, - extrasensory: { - name: "じんつうりき", - effect: "みえない 不思議な 力を 送って 攻撃する。 相手を ひるませることが ある。" - }, - skyUppercut: { - name: "スカイアッパー", - effect: "空に むかうような 高い アッパーで 相手を 突きあげて 攻撃する。" - }, - sandTomb: { - name: "すなじごく", - effect: "激しく 吹きあれる 砂あらしの 中に 4ー5ターンの 間 相手を 閉じこめて 攻撃する。" - }, - sheerCold: { - name: "ぜったいれいど", - effect: "相手を 一撃で 瀕死に する。 こおりタイプ 以外の ポケモンが 使うと 当たりにくい。" - }, - muddyWater: { - name: "だくりゅう", - effect: "濁った 水を 相手に 発射して 攻撃する。 命中率を さげることが ある。" - }, - bulletSeed: { - name: "タネマシンガン", - effect: "タネを 勢いよく 相手に 発射して 攻撃する。 2ー5回の 間 連続で だす。" - }, - aerialAce: { - name: "つばめがえし", - effect: "素早い 動きで 相手を ほんろうして 切りつける。 攻撃は 必ず 命中する。" - }, - icicleSpear: { - name: "つららばり", - effect: "鋭い 氷柱を 相手に 発射して 攻撃する。 2ー5回の 間 連続で だす。" - }, - ironDefense: { - name: "てっぺき", - effect: "皮膚を 鉄のように 硬くする ことで 自分の 防御を ぐーんと あげる。" - }, - block: { - name: "とおせんぼう", - effect: "両手を ひろげて たちはだかり 相手の 逃げ道を ふさいで 逃げられなくする。" - }, - howl: { - name: "とおぼえ", - effect: "大声で ほえて 気合を 高め 自分と 味方の 攻撃を あげる。" - }, - dragonClaw: { - name: "ドラゴンクロー", - effect: "鋭く とがった 巨大な ツメで 相手を 切り裂いて 攻撃する。" - }, - frenzyPlant: { - name: "ハードプラント", - effect: "大きな 樹木で 相手を たたきつけて 攻撃する。 次の ターンは 動けなくなる。" - }, - bulkUp: { - name: "ビルドアップ", - effect: "体に 力を こめて 筋肉を ぶあつく することで 自分の 攻撃と 防御を あげる。" - }, - bounce: { - name: "とびはねる", - effect: "空高く 飛び跳ねて 2ターン目に 相手を 攻撃する。 まひ状態に することが ある。" - }, - mudShot: { - name: "マッドショット", - effect: "泥の 塊を 相手に 投げつけて 攻撃する。 同時に 相手の 素早さを さげる。" - }, - poisonTail: { - name: "ポイズンテール", - effect: "しっぽで たたく。 毒状態に することが あり 急所にも 当たりやすい。" - }, - covet: { - name: "ほしがる", - effect: "かわいく あまえながら 相手に ちかづき 持っている 道具を うばおうとする。 うばう 可能性は 30%。" - }, - voltTackle: { - name: "ボルテッカー", - effect: "電気を まとって 突進する。 自分も かなり ダメージを 受ける。 まひ状態に することが ある。" - }, - magicalLeaf: { - name: "マジカルリーフ", - effect: "相手を 追跡する 不思議な はっぱを まきちらす。 攻撃は 必ず 命中する。" - }, - waterSport: { - name: "みずあそび", - effect: "あたりを 水で びしょびしょにする。 5ターンの 間 ほのおタイプの 技を 弱める。" - }, - calmMind: { - name: "めいそう", - effect: "静かに 精神を 統一し 心を 鎮めることで 自分の 特攻と 特防を あげる。" - }, - leafBlade: { - name: "リーフブレード", - effect: "はっぱを 剣のように あやつり 相手を 切りつけて 攻撃する。 急所に 当たりやすい。" - }, - dragonDance: { - name: "りゅうのまい", - effect: "神秘的で 力強い 舞を 激しく おどる。 自分の 攻撃と 素早さを あげる。" - }, - rockBlast: { - name: "ロックブラスト", - effect: "硬い 岩石を 相手に 発射して 攻撃する。 2ー5回の 間 連続で だす。" - }, - shockWave: { - name: "でんげきは", - effect: "電撃を 素早く 相手に 浴びせる。 攻撃は 必ず 命中する。" - }, - waterPulse: { - name: "みずのはどう", - effect: "水の 振動を 相手に 与えて 攻撃する。 相手を 混乱させることが ある。" - }, - doomDesire: { - name: "はめつのねがい", - effect: "技を 使った 2ターン後に 無数の 光の 束で 相手を 攻撃する。" - }, - psychoBoost: { - name: "サイコブースト", - effect: "フルパワーで 相手を 攻撃する。 使うと 反動で 自分の 特攻が がくっと さがる。" - }, - roost: { - name: "はねやすめ", - effect: "地面に 降りて 体を やすめる。 最大HPの 半分の HPを 回復する。" - }, - gravity: { - name: "じゅうりょく", - effect: "5ターンの間 ふゆうや ひこうタイプに じめんタイプの 技が 当たるようになる。 空中に 飛ぶ 技も 使えない。" - }, - miracleEye: { - name: "ミラクルアイ", - effect: "あくタイプに 効果がない 技や 回避率の 高い 相手に 攻撃が 当たるように なる。" - }, - wakeUpSlap: { - name: "めざましビンタ", - effect: "眠り状態の 相手に 大きな ダメージを 与える。 かわりに 相手は 眠りから さめる。" - }, - hammerArm: { - name: "アームハンマー", - effect: "強くて 重い こぶしを ふるって ダメージを 与える。 自分の 素早さが さがる。" - }, - gyroBall: { - name: "ジャイロボール", - effect: "体を 高速に 回転させて 体当たりする。相手より 素早さが 低いほど 強い。" - }, - healingWish: { - name: "いやしのねがい", - effect: "自分は ひんしに なるが 控えから でてくる ポケモンの 状態異常と HPを 回復する。" - }, - brine: { - name: "しおみず", - effect: "相手が HPの 半分くらい きずを おっていると 技の 威力が 2倍に なる。" - }, - naturalGift: { - name: "しぜんのめぐみ", - effect: "きのみから 力を もらい 攻撃する。持たせた きのみで 技の タイプと 威力が 変わる。" - }, - feint: { - name: "フェイント", - effect: "まもるや みきり などを している 相手に 攻撃が できる。 守りの 効果を 解除させる。" - }, - pluck: { - name: "ついばむ", - effect: "くちばしで 攻撃。 相手が きのみを 持っているとき 食べて きのみの 効果を 受けられる。" - }, - tailwind: { - name: "おいかぜ", - effect: "激しく 吹きあれる 風の渦を つくり 4ターンの 間 味方 全員の 素早さを あげる。" - }, - acupressure: { - name: "つぼをつく", - effect: "つぼおしで 体を 活性化させる。 能力の どれか 1つを ぐーんと あげる。" - }, - metalBurst: { - name: "メタルバースト", - effect: "技を だす前に 最後に 受けた 技の ダメージを 大きくして だした 相手に 返す。" - }, - uTurn: { - name: "とんぼがえり", - effect: "攻撃したあと ものすごい スピードで もどってきて 控えの ポケモンと 入れ替わる。" - }, - closeCombat: { - name: "インファイト", - effect: "守りを 捨てて 相手の ふところに 突撃する。 自分の 防御と 特防が さがる。" - }, - payback: { - name: "しっぺがえし", - effect: "ためこんで 攻撃する。 相手より あとに 攻撃できると 技の 威力は 2倍に なる。" - }, - assurance: { - name: "ダメおし", - effect: "そのターンに 相手が すでに ダメージを 受けていたら 技の 威力は 2倍に なる。" - }, - embargo: { - name: "さしおさえ", - effect: "持たせた 道具を 5ターンの 間 使えなくする。 トレーナーも その ポケモンには 道具を 使えない。" - }, - fling: { - name: "なげつける", - effect: "持たせた 道具を 素早く 投げつけて 攻撃する。 道具で 威力と 効果が 変わる。" - }, - psychoShift: { - name: "サイコシフト", - effect: "超能力で 暗示を かけて 自分の 受けている 状態異常を 相手に うつす。" - }, - trumpCard: { - name: "きりふだ", - effect: "きりふだの 残り PPが 少なければ 少ないほど 技の 威力が あがる。" - }, - healBlock: { - name: "かいふくふうじ", - effect: "5ターンの 間 技や 特性や 持っている 道具によって HPを 回復 できなくする。" - }, - wringOut: { - name: "しぼりとる", - effect: "強く 締めあげて 攻撃を する。 相手の HPが 残っているほど 威力は あがる。" - }, - powerTrick: { - name: "パワートリック", - effect: "超能力で 自分の 攻撃と 防御の 力を 交換する。" - }, - gastroAcid: { - name: "いえき", - effect: "胃液を 相手の 体に 吐きつける。 ついた 胃液は 相手の 特性の 効果を 消す。" - }, - luckyChant: { - name: "おまじない", - effect: "天に むかって おいのりを ささげ 5ターンの 間 相手の 攻撃を 急所に 当たらなくする。" - }, - meFirst: { - name: "さきどり", - effect: "威力を あげて 相手が だそうとする 技を 先にだす。 先に だせないと 失敗する。" - }, - copycat: { - name: "まねっこ", - effect: "直前に でた 技を まねして 同じ 技を だす。 技が でていないと 失敗する。" - }, - powerSwap: { - name: "パワースワップ", - effect: "超能力で 自分と 相手の 攻撃と 特攻の 能力変化を 入れ替える。" - }, - guardSwap: { - name: "ガードスワップ", - effect: "超能力で 自分と 相手の 防御と 特防の 能力変化を 入れ替える。" - }, - punishment: { - name: "おしおき", - effect: "能力変化で 相手が パワーアップ しているほど 技の 威力が あがる。" - }, - lastResort: { - name: "とっておき", - effect: "戦闘中に おぼえている 技を すべて 使うと はじめて だせる とっておきの 技。" - }, - worrySeed: { - name: "なやみのタネ", - effect: "心を なやませる タネを 植えつける。 相手を 眠れなくして 特性を ふみんに する。" - }, - suckerPunch: { - name: "ふいうち", - effect: "相手より 先に 攻撃 できる。 相手が だす技が 攻撃技でないと 失敗する。" - }, - toxicSpikes: { - name: "どくびし", - effect: "相手の 足下に どくびしを しかける。 交代で でてきた 相手の ポケモンに 毒を おわせる。" - }, - heartSwap: { - name: "ハートスワップ", - effect: "超能力で 自分と 相手に かかっている 能力変化を 入れ替える。" - }, - aquaRing: { - name: "アクアリング", - effect: "自分の 体の 周りを 水で つくった ベールで おおう。 毎ターン HPを 回復する。" - }, - magnetRise: { - name: "でんじふゆう", - effect: "電気で つくった 磁力の 力で 宙に 浮かぶ。 5ターンの 間 浮遊できる。" - }, - flareBlitz: { - name: "フレアドライブ", - effect: "炎を まとって 突進する。 自分も かなり ダメージを 受ける。 やけど状態に することが ある。" - }, - forcePalm: { - name: "はっけい", - effect: "相手の 体に 衝撃波を 当てて 攻撃する。 まひ状態に することが ある。" - }, - auraSphere: { - name: "はどうだん", - effect: "体の 奥から 波導の 力を 相手に うち放つ。 攻撃は 必ず 命中する。" - }, - rockPolish: { - name: "ロックカット", - effect: "自分の 体を 磨いて 空気の 抵抗を 少なくする。素早さを ぐーんと あげることが できる。" - }, - poisonJab: { - name: "どくづき", - effect: "毒に そまった 触手や 腕で 相手を 突き刺す。 毒状態に することが ある。" - }, - darkPulse: { - name: "あくのはどう", - effect: "体から 悪意に みちた 恐ろしい オーラを 発する。 相手を ひるませることが ある。" - }, - nightSlash: { - name: "つじぎり", - effect: "一瞬の すきを ついて 相手を 切りはらう。 急所に 当たりやすい。" - }, - aquaTail: { - name: "アクアテール", - effect: "激しく あれくるう 荒波の ように 大きな しっぽを ふって 相手を 攻撃する。" - }, - seedBomb: { - name: "タネばくだん", - effect: "硬い 殻を もつ 大きな タネを 上から たたきつけて 相手を 攻撃する。" - }, - airSlash: { - name: "エアスラッシュ", - effect: "空をも 切り裂く 空気の 刃で 攻撃する。 相手を ひるませることが ある。" - }, - xScissor: { - name: "シザークロス", - effect: "カマや ツメを ハサミのように 交差させながら 相手を 切り裂く。" - }, - bugBuzz: { - name: "むしのさざめき", - effect: "振動で 音波を おこして 攻撃する。相手の 特防を さげることが ある。" - }, - dragonPulse: { - name: "りゅうのはどう", - effect: "大きな 口から 衝撃波を まきおこして 相手を 攻撃する。" - }, - dragonRush: { - name: "ドラゴンダイブ", - effect: "すさまじい 殺気で 威圧しながら 体当たりする。 相手を ひるませることが ある。" - }, - powerGem: { - name: "パワージェム", - effect: "宝石のように きらめく 光を 発射して 相手を 攻撃する。" - }, - drainPunch: { - name: "ドレインパンチ", - effect: "こぶしから 相手の 力を 吸い取る。 与えた ダメージの 半分の HPを 回復できる。" - }, - vacuumWave: { - name: "しんくうは", - effect: "こぶしを ふって 真空の 波を まきおこす。 必ず 先制攻撃できる。" - }, - focusBlast: { - name: "きあいだま", - effect: "気合を 高めて ありったけの 力を 放出する。 相手の 特防を さげることが ある。" - }, - energyBall: { - name: "エナジーボール", - effect: "自然から 集めた 命の力を 発射する。 相手の 特防を さげることがある。" - }, - braveBird: { - name: "ブレイブバード", - effect: "はねを おりたたみ 低空飛行で 突撃する。 自分も かなり ダメージを 受ける。" - }, - earthPower: { - name: "だいちのちから", - effect: "相手の 足下へ 大地の力を 放出する。相手の 特防を さげることが ある。" - }, - switcheroo: { - name: "すりかえ", - effect: "目にも とまらぬ 速さで 自分と 相手の 持ち物を 交換する。" - }, - gigaImpact: { - name: "ギガインパクト", - effect: "持てる 力を すべて 使って 相手に 突撃する。 次の ターンは 動けなくなる。" - }, - nastyPlot: { - name: "わるだくみ", - effect: "悪いことを 考えて 頭を 活性化させる。 自分の 特攻を ぐーんと あげる。" - }, - bulletPunch: { - name: "バレットパンチ", - effect: "弾丸の ような 速くて 硬い パンチを 相手に くりだす。 必ず 先制攻撃 できる。" - }, - avalanche: { - name: "ゆきなだれ", - effect: "相手から 技を 受けていると その 相手に 対して 技の 威力が 2倍に なる。" - }, - iceShard: { - name: "こおりのつぶて", - effect: "氷の塊を 一瞬で つくり 相手に 素早く 放つ。 必ず 先制攻撃 できる。" - }, - shadowClaw: { - name: "シャドークロー", - effect: "影から つくった 鋭い ツメで 相手を 切り裂く。 急所に 当たりやすい。" - }, - thunderFang: { - name: "かみなりのキバ", - effect: "電気を ためた キバで かみつく。 相手を ひるませたり まひ状態に することが ある。" - }, - iceFang: { - name: "こおりのキバ", - effect: "冷気を ひめた キバで かみつく。 相手を ひるませたり こおり状態に することが ある。" - }, - fireFang: { - name: "ほのおのキバ", - effect: "炎を まとった キバで かみつく。 相手を ひるませたり やけど状態に することが ある。" - }, - shadowSneak: { - name: "かげうち", - effect: "影を のばして 相手の 背後から 攻撃する。 必ず 先制攻撃 できる。" - }, - mudBomb: { - name: "どろばくだん", - effect: "硬い 泥の 弾を 相手に 発射して 攻撃する。 命中率を さげることが ある。" - }, - psychoCut: { - name: "サイコカッター", - effect: "実体化させた 心の 刃で 相手を 切り裂く。 急所に 当たりやすい。" - }, - zenHeadbutt: { - name: "しねんのずつき", - effect: "思念の 力を 額に 集めて 攻撃する。 相手を ひるませることが ある。" - }, - mirrorShot: { - name: "ミラーショット", - effect: "磨きあげられた 体から せん光の 力を 相手に 放つ。 命中率を さげることが ある。" - }, - flashCannon: { - name: "ラスターカノン", - effect: "体の 光を 一点に 集めて 力を 放つ。 相手の 特防を さげることが ある。" - }, - rockClimb: { - name: "ロッククライム", - effect: "すごい 勢いで 相手に つっこみ 攻撃する。 相手を 混乱させることが ある。" - }, - defog: { - name: "きりばらい", - effect: "強い風で 相手の リフレクターや ひかりのかべ などを はらいのける。 回避率も さげる。" - }, - trickRoom: { - name: "トリックルーム", - effect: "まか不思議な 空間を つくる。 5ターンの 間 遅い ポケモンから 行動できる。" - }, - dracoMeteor: { - name: "りゅうせいぐん", - effect: "天空から 隕石を 相手に 落とす。使うと 反動で 自分の 特攻が がくっと さがる。" - }, - discharge: { - name: "ほうでん", - effect: "まばゆい 電撃で 自分の 周りに いるものを 攻撃する。 まひ状態に することが ある。" - }, - lavaPlume: { - name: "ふんえん", - effect: "真っ赤な 炎で 自分の 周りに いるものを 攻撃する。 やけど状態に することが ある。" - }, - leafStorm: { - name: "リーフストーム", - effect: "とがった はっぱで 相手に あらしを おこす。使うと 反動で 自分の 特攻が がくっと さがる。" - }, - powerWhip: { - name: "パワーウィップ", - effect: "ツタや 触手を 激しく ふるって 相手を たたきつけ 攻撃する。" - }, - rockWrecker: { - name: "がんせきほう", - effect: "巨大な 岩を 相手に 発射して 攻撃する。 次の ターンは 動けなくなる。" - }, - crossPoison: { - name: "クロスポイズン", - effect: "毒の 刃で 相手を 切り裂く。 毒状態に することが あり 急所にも 当たりやすい。" - }, - gunkShot: { - name: "ダストシュート", - effect: "汚い ゴミを 相手に ぶつけて 攻撃する。 毒状態に することが ある。" - }, - ironHead: { - name: "アイアンヘッド", - effect: "鋼の ような 硬い 頭で 攻撃する。 相手を ひるませることが ある。" - }, - magnetBomb: { - name: "マグネットボム", - effect: "相手に 吸いつく 鋼の 爆弾を 発射する。 攻撃は 必ず 命中 する。" - }, - stoneEdge: { - name: "ストーンエッジ", - effect: "とがった 岩を 相手に 突き刺して 攻撃する。 急所に 当たりやすい。" - }, - captivate: { - name: "ゆうわく", - effect: "♂なら♀を ♀なら♂を 誘惑して 相手の 特攻を がくっと さげる。" - }, - stealthRock: { - name: "ステルスロック", - effect: "相手の 周りに 無数の 岩を 浮かべて 交代で でてきた 相手の ポケモンに ダメージを 与える。" - }, - grassKnot: { - name: "くさむすび", - effect: "草を からませて 相手を 転ばせる。相手が 重いほど 威力が あがる。" - }, - chatter: { - name: "おしゃべり", - effect: "とても うるさい おしゃべりの 音波で 相手を 攻撃する。 相手を 混乱させる。" - }, - judgment: { - name: "さばきのつぶて", - effect: "無数の 光弾を 相手に 放出する。 自分の 持つ プレートに より タイプが 変わる。" - }, - bugBite: { - name: "むしくい", - effect: "かみついて 攻撃する。 相手が きのみを 持っているとき 食べて きのみの 効果を 受けられる。" - }, - chargeBeam: { - name: "チャージビーム", - effect: "電撃の 束を 相手に 発射する。電気を ためて 自分の 特攻を あげることが ある。" - }, - woodHammer: { - name: "ウッドハンマー", - effect: "硬い 胴体を 相手に たたきつけて 攻撃する。 自分も かなり ダメージを 受ける。" - }, - aquaJet: { - name: "アクアジェット", - effect: "目にも 留まらぬ ものすごい 速さで 相手に つっこむ。 必ず 先制攻撃 できる。" - }, - attackOrder: { - name: "こうげきしれい", - effect: "しもべを 呼びだして 相手に むかって 攻撃させる。 急所に 当たりやすい。" - }, - defendOrder: { - name: "ぼうぎょしれい", - effect: "しもべを 呼びだして 自分の 体に おおい つかせる。防御と 特防を あげることが できる。" - }, - healOrder: { - name: "かいふくしれい", - effect: "しもべを 呼びだして きずを 治す。 最大HPの 半分 自分の HPを 回復する。" - }, - headSmash: { - name: "もろはのずつき", - effect: "命を 懸けて こん身の 力で 相手に ずつきを する。 自分も ものすごい ダメージを 受ける。" - }, - doubleHit: { - name: "ダブルアタック", - effect: "しっぽなどを 使い 相手を たたいて 攻撃する。 2回連続で ダメージを 与える。" - }, - roarOfTime: { - name: "ときのほうこう", - effect: "時間が ゆがむほどの 力を うちだして 相手を 攻撃する。 次の ターンは 動けなくなる。" - }, - spacialRend: { - name: "あくうせつだん", - effect: "周りの 空間ごと 相手を 引き裂き ダメージを 与える。 急所に 当たりやすい。" - }, - lunarDance: { - name: "みかづきのまい", - effect: "自分は ひんしに なるが 控えから でてくる ポケモンの すべての 状態を 回復する。" - }, - crushGrip: { - name: "にぎりつぶす", - effect: "すさまじい 力で 相手を にぎりつぶす。 相手の HPが 残っているほど 威力が あがる。" - }, - magmaStorm: { - name: "マグマストーム", - effect: "激しく 燃えたぎる 炎の なかに 4ー5ターンの 間 相手を 閉じこめて 攻撃する。" - }, - darkVoid: { - name: "ダークホール", - effect: "暗黒の 世界に ひきずり 落として 相手を 眠り状態に する。" - }, - seedFlare: { - name: "シードフレア", - effect: "体の 中から 衝撃波を 発生させる。相手の 特防を がくっと さげることが ある。" - }, - ominousWind: { - name: "あやしいかぜ", - effect: "みのけも よだつ 突風で 相手を 攻撃する。自分の すべての 能力が あがることが ある。" - }, - shadowForce: { - name: "シャドーダイブ", - effect: "1ターン目で 姿を 消して 2ターン目に 相手を 攻撃する。 守っていても 攻撃は 当たる。" - }, - honeClaws: { - name: "つめとぎ", - effect: "ツメを 磨いて 鋭く する。 自分の 攻撃と 命中率を あげる。" - }, - wideGuard: { - name: "ワイドガード", - effect: "味方全員に 当たる 攻撃を 1ターンの 間 防ぐ。" - }, - guardSplit: { - name: "ガードシェア", - effect: "超能力で 自分と 相手の 防御と 特防を たして 半分に わける。" - }, - powerSplit: { - name: "パワーシェア", - effect: "超能力で 自分と 相手の 攻撃と 特攻を たして 半分に わける。" - }, - wonderRoom: { - name: "ワンダールーム", - effect: "まか不思議な 空間を つくる。 5ターンのあいだ すべてのポケモンの 防御と 特防が 入れ替わる。" - }, - psyshock: { - name: "サイコショック", - effect: "不思議な 念波を 実体化して 相手を 攻撃する。 物理的な ダメージを 与える。" - }, - venoshock: { - name: "ベノムショック", - effect: "特殊な 毒液を 浴びせかける。 毒状態の 相手には 威力が 2倍に なる。" - }, - autotomize: { - name: "ボディパージ", - effect: "体の ムダな 部分を 削る。 自分の 素早さを ぐーんと あげて 体重も 軽くなる。" - }, - ragePowder: { - name: "いかりのこな", - effect: "イライラさせる 粉を 自分に ふりかけて 注意を ひく。 相手の 攻撃を すべて 自分に むける。" - }, - telekinesis: { - name: "テレキネシス", - effect: "超能力で 相手を 浮かせる。 3ターンの 間 攻撃が 相手に 当たりやすく なる。" - }, - magicRoom: { - name: "マジックルーム", - effect: "まか不思議な 空間を つくる。 5ターンの間 すべてのポケモンの 道具の 効果が なくなる。" - }, - smackDown: { - name: "うちおとす", - effect: "石や 弾を 投げて 飛んでいる 相手を 攻撃する。 相手は うち落とされて 地面に 落ちる。" - }, - stormThrow: { - name: "やまあらし", - effect: "強烈な 一撃を 相手に くりだす。攻撃は 必ず 急所に 当たる。" - }, - flameBurst: { - name: "はじけるほのお", - effect: "当たると はじける 炎で 相手を 攻撃する。はじけた 炎は 隣の 相手にも ふりかかる。" - }, - sludgeWave: { - name: "ヘドロウェーブ", - effect: "ヘドロの 波で 自分の 周りに いるものを 攻撃する。 毒状態に することが ある。" - }, - quiverDance: { - name: "ちょうのまい", - effect: "神秘的で 美しい 舞を 軽やかに おどる。 自分の 特攻と 特防と 素早さを あげる。" - }, - heavySlam: { - name: "ヘビーボンバー", - effect: "重たい 体で 相手に ぶつかって 攻撃する。 自分が 相手より 重いほど 威力が あがる。" - }, - synchronoise: { - name: "シンクロノイズ", - effect: "不思議な 電波で 周りに いる 自分と 同じ タイプの ポケモンに ダメージを 与える。" - }, - electroBall: { - name: "エレキボール", - effect: "電気の 塊を 相手に ぶつける。相手より 素早さが 速いほど 威力が あがる。" - }, - soak: { - name: "みずびたし", - effect: "たくさんの 水を 浴びせかけて 相手を みずタイプに する。" - }, - flameCharge: { - name: "ニトロチャージ", - effect: "炎を まとい 相手を 攻撃する。 力を ためて 自分の 素早さを あげる。" - }, - coil: { - name: "とぐろをまく", - effect: "とぐろを まいて 集中する。 自分の 攻撃と 防御と 命中率を あげる。" - }, - lowSweep: { - name: "ローキック", - effect: "素早い 動きで 相手の 足を ねらって 攻撃する。 相手の 素早さを さげる。" - }, - acidSpray: { - name: "アシッドボム", - effect: "相手を とかす 液体を 吐きだして 攻撃する。 相手の 特防を がくっと さげる。" - }, - foulPlay: { - name: "イカサマ", - effect: "相手の 力を 利用する。 戦っている 相手の 攻撃が 高いほど ダメージが あがる。" - }, - simpleBeam: { - name: "シンプルビーム", - effect: "なぞの 念波を 相手に 送る。 念波を 受けとった 相手は 特性が たんじゅんに なる。" - }, - entrainment: { - name: "なかまづくり", - effect: "不思議な リズムで おどる。 動きを まねさせて 自分と 相手の 特性を 同じに する。" - }, - afterYou: { - name: "おさきにどうぞ", - effect: "相手の 行動を サポートして 自分の 行動の あとに 続けて 動けるように する。" - }, - round: { - name: "りんしょう", - effect: "歌で 相手を 攻撃する。 みんなで 輪唱すると 続けて だすことが でき 威力も あがる。" - }, - echoedVoice: { - name: "エコーボイス", - effect: "響く 声で 相手を 攻撃する。 毎ターン だれかが 技を 使い続けると 威力が あがる。" - }, - chipAway: { - name: "なしくずし", - effect: "すきを みて 堅実に 攻撃する。 相手の 能力変化に 関係なく ダメージを 与える。" - }, - clearSmog: { - name: "クリアスモッグ", - effect: "特殊な 泥の 塊を 相手に 投げつけて 攻撃する。 能力変化を もとに もどす。" - }, - storedPower: { - name: "アシストパワー", - effect: "蓄積された パワーで 相手を 攻撃する。自分の 能力が あがっているほど 威力が あがる。" - }, - quickGuard: { - name: "ファストガード", - effect: "自分と 味方を 相手の 先制攻撃から 守る。" - }, - allySwitch: { - name: "サイドチェンジ", - effect: "不思議な 力で テレポートして 自分と 味方の 居場所を 入れ替える。" - }, - scald: { - name: "ねっとう", - effect: "熱く 煮えたぎる 水を 相手に 発射して 攻撃する。 やけど状態に することが ある。" - }, - shellSmash: { - name: "からをやぶる", - effect: "殻を やぶって 自分の 防御 特防を さげるが 攻撃 特攻 素早さを ぐーんと あげる。" - }, - healPulse: { - name: "いやしのはどう", - effect: "いやしのはどうを とばして 最大HPの 半分 相手の HPを 回復する。" - }, - hex: { - name: "たたりめ", - effect: "たたみかける ように 攻撃する。 状態異常の 相手に 大きな ダメージを 与える。" - }, - skyDrop: { - name: "フリーフォール", - effect: "1ターン目で 相手を 空へ 連れさり 2ターン目に 落として 攻撃する。 連れさられた 相手は 動けない。" - }, - shiftGear: { - name: "ギアチェンジ", - effect: "歯車を 回して 自分の 攻撃を あげる だけでなく 素早さも ぐーんと あげる。" - }, - circleThrow: { - name: "ともえなげ", - effect: "相手を 投げとばして 控えの ポケモンを ひきずりだす。 野生の 場合は 戦闘が 終わる。" - }, - incinerate: { - name: "やきつくす", - effect: "炎で 相手を 攻撃する。 相手が きのみなどを 持っているとき 燃やして 使えなくする。" - }, - quash: { - name: "さきおくり", - effect: "相手を おさえつけて 行動の 順番を 最後に する。" - }, - acrobatics: { - name: "アクロバット", - effect: "軽やかに 相手を 攻撃する。 自分が 道具を 持っていないとき 大きな ダメージを 与える。" - }, - reflectType: { - name: "ミラータイプ", - effect: "相手の タイプを 反射して 自分も 同じ タイプに なる。" - }, - retaliate: { - name: "かたきうち", - effect: "倒れた 味方の かたきを 討つ。 前の ターンに 味方が 倒されていると 威力が あがる。" - }, - finalGambit: { - name: "いのちがけ", - effect: "命懸けで 相手を 攻撃する。 自分は ひんしに なるが 相手に HP分の ダメージを 与える。" - }, - bestow: { - name: "ギフトパス", - effect: "相手が 道具を 持っていないとき 自分が 持っている 道具を 相手に わたす。" - }, - inferno: { - name: "れんごく", - effect: "激しい 炎で 相手を 包みこみ 攻撃する。 やけど状態に する。" - }, - waterPledge: { - name: "みずのちかい", - effect: "水の柱で 攻撃する。 ほのおと 組みあわせると 威力が あがって 空に にじが かかる。" - }, - firePledge: { - name: "ほのおのちかい", - effect: "炎の柱で 攻撃する。 くさと 組みあわせると 威力が あがって 周りが 火の海に なる。" - }, - grassPledge: { - name: "くさのちかい", - effect: "草の柱で 攻撃する。 みずと 組みあわせると 威力が あがって あたりが 湿原に なる。" - }, - voltSwitch: { - name: "ボルトチェンジ", - effect: "攻撃したあと ものすごい スピードで もどってきて 控えの ポケモンと 入れ替わる。" - }, - struggleBug: { - name: "むしのていこう", - effect: "抵抗して 相手を 攻撃する。 相手の 特攻を さげる。" - }, - bulldoze: { - name: "じならし", - effect: "地面を 踏みならして 自分の 周りに いるものを 攻撃する。 相手の 素早さを さげる。" - }, - frostBreath: { - name: "こおりのいぶき", - effect: "冷たい 息を 相手に 吹きつけて 攻撃する。 必ず 急所に 当たる。" - }, - dragonTail: { - name: "ドラゴンテール", - effect: "相手を はじきとばして 控えの ポケモンを ひきずりだす。 野生の 場合は 戦闘が 終わる。" - }, - workUp: { - name: "ふるいたてる", - effect: "自分を 奮いたてて 攻撃と 特攻を あげる。" - }, - electroweb: { - name: "エレキネット", - effect: "電気の ネットで 相手を 捕まえて 攻撃する。 相手の 素早さを さげる。" - }, - wildCharge: { - name: "ワイルドボルト", - effect: "電気を まとって 相手に ぶつかって 攻撃する。 自分も 少し ダメージを 受ける。" - }, - drillRun: { - name: "ドリルライナー", - effect: "ドリルのように 体を 回転しながら 相手に 体当たりする。 急所に 当たりやすい。" - }, - dualChop: { - name: "ダブルチョップ", - effect: "体の 硬い部分で 相手を たたいて 攻撃する。 2回連続で ダメージを 与える。" - }, - heartStamp: { - name: "ハートスタンプ", - effect: "かわいい しぐさで 油断させて 強烈な 一撃を 浴びせる。 相手を ひるませることが ある。" - }, - hornLeech: { - name: "ウッドホーン", - effect: "つのを 突き刺して 相手の 養分を 吸い取る。 与えた ダメージの 半分の HPを 回復できる。" - }, - sacredSword: { - name: "せいなるつるぎ", - effect: "長い つので 切りつけ 攻撃する。 相手の 能力変化に 関係なく ダメージを 与える。" - }, - razorShell: { - name: "シェルブレード", - effect: "鋭い 貝殻で 切りつけて 攻撃する。 相手の 防御を さげることが ある。" - }, - heatCrash: { - name: "ヒートスタンプ", - effect: "燃える 体で 相手に ぶつかって 攻撃する。 自分が 相手より 重いほど 威力が あがる。" - }, - leafTornado: { - name: "グラスミキサー", - effect: "鋭い はっぱで 相手を 包みこんで 攻撃する。 命中率を さげることが ある。" - }, - steamroller: { - name: "ハードローラー", - effect: "まるめた 体で 回転して 相手を おしつぶす。 相手を ひるませることが ある。" - }, - cottonGuard: { - name: "コットンガード", - effect: "フワフワの 綿毛で 自分の 体を 包みこんで 守る。 防御を ぐぐーんと あげる。" - }, - nightDaze: { - name: "ナイトバースト", - effect: "暗黒の 衝撃波を とばして 相手を 攻撃する。 命中率を さげることが ある。" - }, - psystrike: { - name: "サイコブレイク", - effect: "不思議な 念波を 実体化して 相手を 攻撃する。 物理的な ダメージを 与える。" - }, - tailSlap: { - name: "スイープビンタ", - effect: "硬い しっぽで 相手を たたいて 攻撃する。 2ー5回の 間 連続で だす。" - }, - hurricane: { - name: "ぼうふう", - effect: "強烈な 風で 相手を 包みこんで 攻撃する。 相手を 混乱させることが ある。" - }, - headCharge: { - name: "アフロブレイク", - effect: "すごい アフロの 頭で 相手に 突進して 攻撃する。 自分も 少し ダメージを 受ける。" - }, - gearGrind: { - name: "ギアソーサー", - effect: "鋼鉄の ギアを 相手に 投げつけて 攻撃する。 2回連続で ダメージを 与える。" - }, - searingShot: { - name: "かえんだん", - effect: "真っ赤な 炎で 自分の 周りに いるものを 攻撃する。 やけど状態に することが ある。" - }, - technoBlast: { - name: "テクノバスター", - effect: "光弾を 相手に 放出する。 自分の 持つ カセットにより タイプが 変わる。" - }, - relicSong: { - name: "いにしえのうた", - effect: "いにしえのうたを 相手に 聞かせて 心に うったえて 攻撃する。 眠り状態に することが ある。" - }, - secretSword: { - name: "しんぴのつるぎ", - effect: "長い つので 切りつけ 攻撃する。 つのが まとった 不思議な 力は 物理的な ダメージを 与える。" - }, - glaciate: { - name: "こごえるせかい", - effect: "凍えるような 冷気を 相手に 吹きつけて 攻撃する。 相手の 素早さを さげる。" - }, - boltStrike: { - name: "らいげき", - effect: "ぼうだいな 電気を 身に まとって 相手に 突進して 攻撃する。 まひ状態に することが ある。" - }, - blueFlare: { - name: "あおいほのお", - effect: "美しくも 激しい 青い炎で 相手を 包みこんで 攻撃する。 やけど状態に することが ある。" - }, - fieryDance: { - name: "ほのおのまい", - effect: "炎を まとい はばたいて 相手を 攻撃する。自分の 特攻が あがることが ある。" - }, - freezeShock: { - name: "フリーズボルト", - effect: "電気を まとった 氷の 塊で 2ターン目に 相手を たたきつける。 まひ状態に することが ある。" - }, - iceBurn: { - name: "コールドフレア", - effect: "すべてを 凍らせる 激しい 冷気で 2ターン目に 相手を 包みこむ。 やけど状態に することが ある。" - }, - snarl: { - name: "バークアウト", - effect: "まくしたてる ように 怒鳴りつけて 相手の 特攻を さげる。" - }, - icicleCrash: { - name: "つららおとし", - effect: "大きな 氷柱を 激しく ぶつけて 攻撃する。 相手を ひるませることが ある。" - }, - vCreate: { - name: "Vジェネレート", - effect: "灼熱の 炎を 額から 発生させて 捨て身の 体当たり。 防御 特防 素早さが さがる。" - }, - fusionFlare: { - name: "クロスフレイム", - effect: "巨大な 炎を たたきつける。 巨大な 雷の 影響を受け 技の 威力が あがる。" - }, - fusionBolt: { - name: "クロスサンダー", - effect: "巨大な 雷を たたきつける。 巨大な 炎の 影響を受け 技の 威力が あがる。" - }, - flyingPress: { - name: "フライングプレス", - effect: "空中から 相手に ダイブする。 この技は かくとうタイプと 同時に ひこうタイプでも ある。" - }, - matBlock: { - name: "たたみがえし", - effect: "かえした タタミを 盾にして 自分や 味方への 技の ダメージを 防ぐ。 変化技は 防ぐことが できない。" - }, - belch: { - name: "ゲップ", - effect: "相手に 向かって ゲップを 浴びせて ダメージを 与える。 きのみを 食べないと だせない。" - }, - rototiller: { - name: "たがやす", - effect: "地面を 耕して 草木が 育ちやすいようにする。 くさタイプの 攻撃と 特攻が あがる。" - }, - stickyWeb: { - name: "ねばねばネット", - effect: "相手の 周りに ねばねばした ネットを はりめぐらせ 交代で でてきた 相手の 素早さを さげる。" - }, - fellStinger: { - name: "とどめばり", - effect: "この 技を 使って 相手を 倒すと 攻撃が ぐぐーんと あがる。" - }, - phantomForce: { - name: "ゴーストダイブ", - effect: "1ターンめで どこかに 消えて 2ターンめに 相手を 攻撃する。 守りを 無視して 攻撃できる。" - }, - trickOrTreat: { - name: "ハロウィン", - effect: "相手を ハロウィンに 誘う。 相手の タイプに ゴーストタイプが 追加される。" - }, - nobleRoar: { - name: "おたけび", - effect: "おたけびを あげて 相手を 威嚇し 相手の 攻撃と 特攻を さげる。" - }, - ionDeluge: { - name: "プラズマシャワー", - effect: "電気を 帯びた 粒子を 拡散し ノーマルタイプの 技を でんきタイプに してしまう。" - }, - parabolicCharge: { - name: "パラボラチャージ", - effect: "周りにいる ポケモン 全員に ダメージ。 与えた ダメージの 半分を 自分が 回復する。" - }, - forestsCurse: { - name: "もりののろい", - effect: "相手に 森ののろいを かける。 のろいを かけられた 相手は タイプに くさタイプが 追加される。" - }, - petalBlizzard: { - name: "はなふぶき", - effect: "激しい 花吹雪を 起こし 周りに いるものに 攻撃して ダメージを 与える。" - }, - freezeDry: { - name: "フリーズドライ", - effect: "相手を 急激に 冷やして こおり 状態に することが ある。 みずタイプにも 効果バツグンになる。" - }, - disarmingVoice: { - name: "チャームボイス", - effect: "魅惑の 鳴き声を だして 相手に 精神的な ダメージを 与える。 攻撃は 必ず 命中 する。" - }, - partingShot: { - name: "すてゼリフ", - effect: "すてゼリフで 相手を いかくし 攻撃と 特攻を さげたのち 控えの ポケモンと 入れ替わる。" - }, - topsyTurvy: { - name: "ひっくりかえす", - effect: "相手に かかっている すべての 能力変化を ひっくり返して 逆にする。" - }, - drainingKiss: { - name: "ドレインキッス", - effect: "キッスによって 相手から HPを 吸い取る。 与えた ダメージの 半分以上 HPを 回復する。" - }, - craftyShield: { - name: "トリックガード", - effect: "不思議な 力を 使って 味方への 変化技を 防ぐ。 ダメージ技は 受けてしまう。" - }, - flowerShield: { - name: "フラワーガード", - effect: "不思議な 力を 使って 場にいる くさタイプの ポケモン 全員の 防御を あげる。" - }, - grassyTerrain: { - name: "グラスフィールド", - effect: "5ターンの 間 グラスフィールドにする。 地面にいると 毎ターン 回復する。 くさタイプの 威力が あがる。" - }, - mistyTerrain: { - name: "ミストフィールド", - effect: "5ターンの 間 地面にいると 状態異常に ならず ドラゴン技の ダメージも 半分になる。" - }, - electrify: { - name: "そうでん", - effect: "相手が 技を だす前に そうでん すると そのターン 相手の 技は でんきタイプになる。" - }, - playRough: { - name: "じゃれつく", - effect: "相手に じゃれついて 攻撃する。 相手の 攻撃を さげる ことがある。" - }, - fairyWind: { - name: "ようせいのかぜ", - effect: "ようせいのかぜを 起こし 相手に 吹きつけて 攻撃する。" - }, - moonblast: { - name: "ムーンフォース", - effect: "月の パワーを かりて 相手を 攻撃する。 相手の 特攻を さげる ことがある。" - }, - boomburst: { - name: "ばくおんぱ", - effect: "すさまじい 爆音の 破壊力に よって 周りに いるものを 攻撃する。" - }, - fairyLock: { - name: "フェアリーロック", - effect: "ロックを かけることによって 次のターン すべての ポケモンを 逃げられなくする。" - }, - kingsShield: { - name: "キングシールド", - effect: "相手の 攻撃を 防ぐと 同時に 防御態勢になる。 触れた 相手の 攻撃を さげる。" - }, - playNice: { - name: "なかよくする", - effect: "相手と なかよくなって 戦う 気力を 失わせ 相手の 攻撃を さげる。" - }, - confide: { - name: "ないしょばなし", - effect: "ないしょばなしを することで 相手の 集中力を 失わせ 相手の 特攻を さげる。" - }, - diamondStorm: { - name: "ダイヤストーム", - effect: "ダイヤの 嵐を 巻き起こし ダメージを 与える。 自分の 防御を ぐーんと あげることが ある。" - }, - steamEruption: { - name: "スチームバースト", - effect: "ものすごく 熱い 蒸気を 相手に 浴びせる。 相手は やけどする ことがある。" - }, - hyperspaceHole: { - name: "いじげんホール", - effect: "異次元ホールで 突然 相手の 真横に 現れ 攻撃する。 まもるや みきり なども 無視 できる。" - }, - waterShuriken: { - name: "みずしゅりけん", - effect: "粘液で できた 手裏剣を 2ー5回の 間 連続で だす。 必ず 先制攻撃 できる。" - }, - mysticalFire: { - name: "マジカルフレイム", - effect: "口から 吐きだす 特別 熱い 炎で 攻撃する。 相手の 特攻を さげる。" - }, - spikyShield: { - name: "ニードルガード", - effect: "相手の 攻撃を 防ぐと 同時に 触れた 相手の 体力を 削って しまう。" - }, - aromaticMist: { - name: "アロマミスト", - effect: "不思議な アロマの 香りによって 味方の 特防を あげる。" - }, - eerieImpulse: { - name: "かいでんぱ", - effect: "体から かいでんぱを 放ち 相手に 浴びせる ことによって 特攻を がくっと さげる。" - }, - venomDrench: { - name: "ベノムトラップ", - effect: "特殊な 毒液を 浴びせかける。 毒状態の 相手は 攻撃 特攻 素早さが さがる。" - }, - powder: { - name: "ふんじん", - effect: "ふんじんを 浴びせた 相手が ほのお技を 使うと 爆発して ダメージを 与える。" - }, - geomancy: { - name: "ジオコントロール", - effect: "1ターン目で エネルギーを 吸収し 2ターン目に 特攻 特防 素早さを ぐーんと あげる。" - }, - magneticFlux: { - name: "じばそうさ", - effect: "磁場を 操作 することによって 特性 プラスと マイナスの 防御 特防が あがる。" - }, - happyHour: { - name: "ハッピータイム", - effect: "ハッピータイムの 技を 使うと 戦闘の あとで もらえる お金が 倍になる。" - }, - electricTerrain: { - name: "エレキフィールド", - effect: "5ターンの 間 エレキフィールドにする。 地面にいる ポケモンは 眠らない。 でんきタイプの 威力が あがる。" - }, - dazzlingGleam: { - name: "マジカルシャイン", - effect: "強力な 光を 放ち 相手に ダメージを 与える。" - }, - celebrate: { - name: "おいわい", - effect: "ポケモンが とっても ハッピーな あなたのことを お祝い してくれる。" - }, - holdHands: { - name: "てをつなぐ", - effect: "味方の ポケモン 同士が 手をつなぐ。 とっても 幸せな 気持ちに なれる。" - }, - babyDollEyes: { - name: "つぶらなひとみ", - effect: "つぶらなひとみで 相手を みつめて 攻撃を さげる。 必ず 先制攻撃 できる。" - }, - nuzzle: { - name: "ほっぺすりすり", - effect: "電気を 帯びた ほっぺを すりつけて 攻撃。 相手を まひ状態に する。" - }, - holdBack: { - name: "てかげん", - effect: "手加減 した 攻撃で 相手の HPを 必ず 1だけ 残す。" - }, - infestation: { - name: "まとわりつく", - effect: "4ー5ターンの 間 相手に まとわりついて 攻撃する。 そのあいだ 相手は 逃げられない。" - }, - powerUpPunch: { - name: "グロウパンチ", - effect: "繰り返し 打つことで だんだん こぶしが 固くなる。 相手に 当てると 攻撃が あがる。" - }, - oblivionWing: { - name: "デスウイング", - effect: "ねらいを 定めた 相手から HPを 吸い取る。 与えた ダメージの 半分以上 HPを 回復する。" - }, - thousandArrows: { - name: "サウザンアロー", - effect: "浮いている ポケモンにも 当たる。 浮いていた 相手は 撃ち落とされて 地面に 落ちる。" - }, - thousandWaves: { - name: "サウザンウェーブ", - effect: "地をはう 波によって 攻撃。 波に 巻き込まれた 相手は 戦闘から 逃げられなくなる。" - }, - landsWrath: { - name: "グランドフォース", - effect: "大地の パワーを 集め 力を 相手に 集中させて ダメージを 与える。" - }, - lightOfRuin: { - name: "はめつのひかり", - effect: "永遠の花 の パワーを かりて 強力な 光線を 撃ちだす。 自分も かなりの ダメージを 受ける。" - }, - originPulse: { - name: "こんげんのはどう", - effect: "青白く 輝く 無数の 光線で 相手を 攻撃する。" - }, - precipiceBlades: { - name: "だんがいのつるぎ", - effect: "大地の 力を 刃に 変えて 相手を 攻撃する。" - }, - dragonAscent: { - name: "ガリョウテンセイ", - effect: "大空から 急速落下 して 相手を 攻撃する。 自分の 防御と 特防が さがる。" - }, - hyperspaceFury: { - name: "いじげんラッシュ", - effect: "たくさんの 腕で まもるや みきり などを 無視した 連続攻撃。 自分の 防御が さがる。" - }, - breakneckBlitzPhysical: { - name: "ウルトラダッシュアタック", - effect: "Zパワーで 勢いを つけて 全力で 相手に ぶつかる。 元になった 技で 威力が 変わる。" - }, - breakneckBlitzSpecial: { - name: "ウルトラダッシュアタック", - effect: "ダミーデータ" - }, - allOutPummelingPhysical: { - name: "ぜんりょくむそうげきれつけん", - effect: "Zパワーで 作った エネルギーの 弾を 全力で 相手に ぶつける。 元になった 技で 威力が 変わる。" - }, - allOutPummelingSpecial: { - name: "ぜんりょくむそうげきれつけん", - effect: "ダミーデータ" - }, - supersonicSkystrikePhysical: { - name: "ファイナルダイブクラッシュ", - effect: "Zパワーで 勢いよく 飛びあがり 相手に 向かって 全力で 落下。 元になった 技で 威力が 変わる。" - }, - supersonicSkystrikeSpecial: { - name: "ファイナルダイブクラッシュ", - effect: "ダミーデータ" - }, - acidDownpourPhysical: { - name: "アシッドポイズンデリート", - effect: "Zパワーで 毒の 沼を 湧きあがらせ 全力で 相手を 沈める。 元になった 技で 威力が 変わる。" - }, - acidDownpourSpecial: { - name: "アシッドポイズンデリート", - effect: "ダミーデータ" - }, - tectonicRagePhysical: { - name: "ライジングランドオーバー", - effect: "Zパワーで 地面の 奥深くに 潜り 全力で 相手に ぶつかる。 元になった 技で 威力が 変わる。" - }, - tectonicRageSpecial: { - name: "ライジングランドオーバー", - effect: "ダミーデータ" - }, - continentalCrushPhysical: { - name: "ワールズエンドフォール", - effect: "Zパワーで 大きな 岩山を 呼びだし 全力で 相手に ぶつける。 元になった 技で 威力が 変わる。" - }, - continentalCrushSpecial: { - name: "ワールズエンドフォール", - effect: "ダミーデータ" - }, - savageSpinOutPhysical: { - name: "ぜったいほしょくかいてんざん", - effect: "Zパワーで 吐きだした 糸が 全力で 相手を 縛りつける。 元になった 技で 威力が 変わる。" - }, - savageSpinOutSpecial: { - name: "ぜったいほしょくかいてんざん", - effect: "ダミーデータ" - }, - neverEndingNightmarePhysical: { - name: "むげんあんやへのいざない", - effect: "Zパワーで 呼びよせた 強い 怨念が 全力で 相手に 降りかかる。 元になった 技で 威力が 変わる。" - }, - neverEndingNightmareSpecial: { - name: "むげんあんやへのいざない", - effect: "ダミーデータ" - }, - corkscrewCrashPhysical: { - name: "ちょうぜつらせんれんげき", - effect: "Zパワーで 高速回転を おこない 全力で 相手に ぶつかる。 元になった 技で 威力が 変わる。" - }, - corkscrewCrashSpecial: { - name: "ちょうぜつらせんれんげき", - effect: "ダミーデータ" - }, - infernoOverdrivePhysical: { - name: "ダイナミックフルフレイム", - effect: "Zパワーで 燃えさかる 炎を 吐きだし 全力で 相手に ぶつける。 元になった 技で 威力が 変わる。" - }, - infernoOverdriveSpecial: { - name: "ダイナミックフルフレイム", - effect: "ダミーデータ" - }, - hydroVortexPhysical: { - name: "スーパーアクアトルネード", - effect: "Zパワーで 大きな 渦潮を 作り 全力で 相手を 飲みこむ。 元になった 技で 威力が 変わる。" - }, - hydroVortexSpecial: { - name: "スーパーアクアトルネード", - effect: "ダミーデータ" - }, - bloomDoomPhysical: { - name: "ブルームシャインエクストラ", - effect: "Zパワーで 草花の エネルギーを 借り 全力で 相手を 攻撃する。 元になった 技で 威力が 変わる。" - }, - bloomDoomSpecial: { - name: "ブルームシャインエクストラ", - effect: "ダミーデータ" - }, - gigavoltHavocPhysical: { - name: "スパーキングギガボルト", - effect: "Zパワーで 溜めた 強い 電気を 全力で 相手に ぶつける。 元になった 技で 威力が 変わる。" - }, - gigavoltHavocSpecial: { - name: "スパーキングギガボルト", - effect: "ダミーデータ" - }, - shatteredPsychePhysical: { - name: "マキシマムサイブレイカー", - effect: "Zパワーで 相手を 操り 全力で 痛い 思いを させる。 元になった 技で 威力が 変わる。" - }, - shatteredPsycheSpecial: { - name: "マキシマムサイブレイカー", - effect: "ダミーデータ" - }, - subzeroSlammerPhysical: { - name: "レイジングジオフリーズ", - effect: "Zパワーで 気温を 急激に 下げ 全力で 相手を 凍らせる。 元になった 技で 威力が 変わる。" - }, - subzeroSlammerSpecial: { - name: "レイジングジオフリーズ", - effect: "ダミーデータ" - }, - devastatingDrakePhysical: { - name: "アルティメットドラゴンバーン", - effect: "Zパワーで オーラを 実体化し 全力で 相手に 襲いかかる。 元になった 技で 威力が 変わる。" - }, - devastatingDrakeSpecial: { - name: "アルティメットドラゴンバーン", - effect: "ダミーデータ" - }, - blackHoleEclipsePhysical: { - name: "ブラックホールイクリプス", - effect: "Zパワーで 悪の エネルギーを 集め 全力で 相手を 吸いよせる。 元になった 技で 威力が 変わる。" - }, - blackHoleEclipseSpecial: { - name: "ブラックホールイクリプス", - effect: "ダミーデータ" - }, - twinkleTacklePhysical: { - name: "ラブリースターインパクト", - effect: "Zパワーで 魅惑の 空間を 作り 全力で 相手を もてあそぶ。 元になった 技で 威力が 変わる。" - }, - twinkleTackleSpecial: { - name: "ラブリースターインパクト", - effect: "ダミーデータ" - }, - catastropika: { - name: "ひっさつのピカチュート", - effect: "Zパワーで 最大 電力を 身に まとったピカチュウが 全力で 相手に 飛び掛る。" - }, - shoreUp: { - name: "すなあつめ", - effect: "最大HPの 半分 自分の HPを 回復する。 すなあらしの時は 多く 回復。" - }, - firstImpression: { - name: "であいがしら", - effect: "威力が 高い 技 だが 戦闘に 出たら すぐに 出さないと 成功 しない。" - }, - banefulBunker: { - name: "トーチカ", - effect: "相手の 攻撃を 防ぐと 同時に 触れた 相手に 毒を 与えてしまう。" - }, - spiritShackle: { - name: "かげぬい", - effect: "攻撃と 同時に 相手の 影を 縫い付けて 逃げられなくする。" - }, - darkestLariat: { - name: "DDラリアット", - effect: "両腕を 回し 相手に 当てる。 相手の 能力変化に 関係なく ダメージを 与える。" - }, - sparklingAria: { - name: "うたかたのアリア", - effect: "歌うことによって たくさんの バルーンを 放出する。 技を 受けると やけどが 治る。" - }, - iceHammer: { - name: "アイスハンマー", - effect: "強くて 重い こぶしを ふるって ダメージを 与える。 自分の 素早さが さがる。" - }, - floralHealing: { - name: "フラワーヒール", - effect: "最大HPの 半分 相手の HPを 回復する。 グラスフィールドの時 効果が あがる。" - }, - highHorsepower: { - name: "10まんばりき", - effect: "全身を 使って 相手に 猛アタックする。" - }, - strengthSap: { - name: "ちからをすいとる", - effect: "相手の 攻撃力と 同じだけ 自分の HPを 回復する。 そして 相手の 攻撃を さげる。" - }, - solarBlade: { - name: "ソーラーブレード", - effect: "1ターン目に 光を いっぱいに 集め 2ターン目に その 力を 剣に 込めて 攻撃する。" - }, - leafage: { - name: "このは", - effect: "はっぱを 相手に 当てて 攻撃する。" - }, - spotlight: { - name: "スポットライト", - effect: "ポケモンに スポットライトを 当て そのターンに そのポケモンしか 狙えない ようにする。" - }, - toxicThread: { - name: "どくのいと", - effect: "毒の 混じった 糸を 吹き付ける。 相手を 毒にして 素早さを さげる。" - }, - laserFocus: { - name: "とぎすます", - effect: "精神を 集中して 次の 攻撃を 必ず 急所に 当てる。" - }, - gearUp: { - name: "アシストギア", - effect: "ギアを 入れる ことによって 特性 プラスと マイナスの 攻撃と 特攻が あがる。" - }, - throatChop: { - name: "じごくづき", - effect: "この 技を 受けた 相手は 地獄の 苦しみから 2ターンの間 音の 技を 出すことが できなくなる。" - }, - pollenPuff: { - name: "かふんだんご", - effect: "敵には 爆発する だんごを 使って 攻撃。 味方には 回復する だんごを 与える。" - }, - anchorShot: { - name: "アンカーショット", - effect: "アンカーを 相手に からませて 攻撃する。 相手は 逃げることが できなくなる。" - }, - psychicTerrain: { - name: "サイコフィールド", - effect: "5ターンの間 地面にいると 先制技を 受けない。 エスパータイプの 威力が あがる。" - }, - lunge: { - name: "とびかかる", - effect: "全力で 相手に 飛びかかって 攻撃。 相手の 攻撃を さげる。" - }, - fireLash: { - name: "ほのおのムチ", - effect: "焼けたムチで 相手を 打ちつける。 攻撃を 受けた 相手は 防御が さがる。" - }, - powerTrip: { - name: "つけあがる", - effect: "自分の 強さを 鼻高々に 攻撃する。自分の 能力が あがって いるほど 威力が あがる。" - }, - burnUp: { - name: "もえつきる", - effect: "全身の ほのおを すべて 燃やして 大ダメージを 与える。 自分の ほのおタイプが なくなる。" - }, - speedSwap: { - name: "スピードスワップ", - effect: "相手の 素早さと 自分の 素早さを 入れ替えてしまう。" - }, - smartStrike: { - name: "スマートホーン", - effect: "とがった つので 相手を 突き刺して 攻撃する。 攻撃は 必ず 命中する。" - }, - purify: { - name: "じょうか", - effect: "相手の 状態異常を 治す。 治すと 自分は HPを 回復 することが できる。" - }, - revelationDance: { - name: "めざめるダンス", - effect: "全力で 踊って 攻撃する。 この 技の タイプは 自分の タイプと 同じになる。" - }, - coreEnforcer: { - name: "コアパニッシャー", - effect: "ダメージを 与えた 相手が すでに 行動を 終えていたら 相手の 特性を 消してしまう。" - }, - tropKick: { - name: "トロピカルキック", - effect: "南国 由来の 熱い キックを 相手に 浴びせる。 相手の 攻撃を さげる。" - }, - instruct: { - name: "さいはい", - effect: "相手が 出した 技を 指示して もう一度 出させることが できる。" - }, - beakBlast: { - name: "くちばしキャノン", - effect: "最初に クチバシを 加熱してから 攻撃を くりだす。 加熱中に さわると やけどする。" - }, - clangingScales: { - name: "スケイルノイズ", - effect: "全身の うろこを こすり 大きな 音を 出して 攻撃する。 攻撃後 自分の 防御が さがる。" - }, - dragonHammer: { - name: "ドラゴンハンマー", - effect: "体を ハンマーのように 使って 相手に 襲いかかり ダメージを 与える。" - }, - brutalSwing: { - name: "ぶんまわす", - effect: "自分の 体を ぶんまわして 相手に ダメージを 与える。" - }, - auroraVeil: { - name: "オーロラベール", - effect: "5ターンの 間 物理と 特殊の ダメージを 弱める。 ゆきの 時しか 出すことが できない。" - }, - sinisterArrowRaid: { - name: "シャドーアローズストライク", - effect: "Zパワーで 無数の 矢を 作りだした ジュナイパーが 全力で 相手を 射抜く 攻撃。" - }, - maliciousMoonsault: { - name: "ハイパーダーククラッシャー", - effect: "Zパワーで タフな 肉体を 得た ガオガエンが 全力で 相手に ぶつかって 攻撃する。" - }, - oceanicOperetta: { - name: "わだつみのシンフォニア", - effect: "Zパワーで 大量の 水を 呼んだ アシレーヌが 全力で 相手を 攻撃する。" - }, - guardianOfAlola: { - name: "ガーディアン・デ・アローラ", - effect: "Zパワーで アローラの 力を 得た とちがみポケモン 全力の 攻撃。 相手の 残りHPを たくさん 減らす。" - }, - soulStealing7StarStrike: { - name: "しちせいだっこんたい", - effect: "Zパワーを 得た マーシャドーが パンチと キックの 連続技を 全力で 相手に 叩き込む。" - }, - stokedSparksurfer: { - name: "ライトニングサーフライド", - effect: "Zパワーを 得た アローラ地方の ライチュウが 全力で 攻撃する。 相手を まひ 状態に する。" - }, - pulverizingPancake: { - name: "ほんきをだす こうげき", - effect: "Zパワーで 本気を 出した カビゴンが 巨体を 躍動させて 全力で 相手に 襲いかかる。" - }, - extremeEvoboost: { - name: "ナインエボルブースト", - effect: "Zパワーを 得た イーブイが 進化した 仲間たちの 力を 借りて 能力を ぐーんと 上げる。" - }, - genesisSupernova: { - name: "オリジンズスーパーノヴァ", - effect: "Zパワーを 得た ミュウが 全力で 相手を 攻撃する。 足元が サイコフィールドになる。" - }, - shellTrap: { - name: "トラップシェル", - effect: "こうらの トラップを しかける。 相手が 物理技を 出すと 爆発して ダメージを 与える。" - }, - fleurCannon: { - name: "フルールカノン", - effect: "強力な ビームを 放ったあと 自分の 特攻が がくっと さがる。" - }, - psychicFangs: { - name: "サイコファング", - effect: "サイコパワーで かみついて 相手を 攻撃する。 ひかりのかべや リフレクター なども 破壊できる。" - }, - stompingTantrum: { - name: "じだんだ", - effect: "悔しさを バネにして 攻撃する。 前の ターンに 技を 外していると 威力が 倍に なる。" - }, - shadowBone: { - name: "シャドーボーン", - effect: "魂の 宿った ホネで 相手を なぐりつけて 攻撃する。 相手の 防御を さげる ことがある。" - }, - accelerock: { - name: "アクセルロック", - effect: "素早い スピードで 相手に ぶつかって 攻撃する。 必ず 先制攻撃 できる。" - }, - liquidation: { - name: "アクアブレイク", - effect: "水の 力で 相手に ぶつかって 攻撃する。 相手の 防御を さげる ことがある。" - }, - prismaticLaser: { - name: "プリズムレーザー", - effect: "プリズムの 力で 強力な 光線を 発射する。 次の ターンは 動けなくなる。" - }, - spectralThief: { - name: "シャドースチール", - effect: "相手の 影に 潜り込み 相手の 能力アップを 奪って 攻撃する。" - }, - sunsteelStrike: { - name: "メテオドライブ", - effect: "流星の ような 勢いで 突進する。 相手の 特性を 無視して 攻撃 することが できる。" - }, - moongeistBeam: { - name: "シャドーレイ", - effect: "怪しい 光線を 放って 攻撃する。相手の 特性を 無視して 攻撃 することが できる。" - }, - tearfulLook: { - name: "なみだめ", - effect: "なみだめに なって 相手の 戦力を 喪失させる。 相手の 攻撃と 特攻が さがる。" - }, - zingZap: { - name: "びりびりちくちく", - effect: "相手に ぶつかって 強力な 電気を浴びせ びりびりちくちく させる。 相手を ひるませる ことが ある。" - }, - naturesMadness: { - name: "しぜんのいかり", - effect: "自然の 怒りを 相手に ぶつける。 相手の HPは 半分に なる。" - }, - multiAttack: { - name: "マルチアタック", - effect: "高い エネルギーを まといつつ 相手に ぶつかって 攻撃する。 メモリに より タイプが 変わる。" - }, - tenMillionVoltThunderbolt: { - name: "1000まんボルト", - effect: "帽子を かぶった ピカチュウが Zパワーで パワーアップした 電撃を 放つ。 急所に 当たりやすい。" - }, - mindBlown: { - name: "ビックリヘッド", - effect: "自分の 頭を 爆発 させて 周りの すべてを 攻撃する。 自分も ダメージを 受けてしまう。" - }, - plasmaFists: { - name: "プラズマフィスト", - effect: "電気を まとった こぶしで 攻撃。 ノーマルタイプの 技を でんきタイプに してしまう。" - }, - photonGeyser: { - name: "フォトンゲイザー", - effect: "光の 柱で 攻撃する。 攻撃と 特攻を 比べて 高いほうで ダメージを 与える。" - }, - lightThatBurnsTheSky: { - name: "てんこがすめつぼうのひかり", - effect: "ネクロズマが 相手の 特性の 効果を 無視して 攻撃と 特攻の 高い方で ダメージを 与える。" - }, - searingSunrazeSmash: { - name: "サンシャインスマッシャー", - effect: "Zパワーを 得た ソルガレオが 全力で 攻撃する。 相手の 特性の 効果を 無視できる。" - }, - menacingMoonrazeMaelstrom: { - name: "ムーンライトブラスター", - effect: "Zパワーを 得た ルナアーラが 全力で 攻撃する。 相手の 特性の 効果を 無視できる。" - }, - letsSnuggleForever: { - name: "ぽかぼかフレンドタイム", - effect: "Zパワーを 得た ミミッキュが 全力で ぽかぽか 攻撃。" - }, - splinteredStormshards: { - name: "ラジアルエッジストーム", - effect: "Zパワーを 得た ルガルガンが 全力で 攻撃する。 追加で フィールド状態を 打ち消す。" - }, - clangorousSoulblaze: { - name: "ブレイジングソウルビート", - effect: "Zパワーを 得た ジャラランガが 全力で 相手を 攻撃する。 追加で 自分の 能力が 上がる。" - }, - zippyZap: { - name: "ばちばちアクセル", - effect: "猛スピードの 電撃 アタック。 必ず 先制攻撃 できて 急所に あたる。" - }, - splishySplash: { - name: "ざぶざぶサーフ", - effect: "大きな 波に 電気を あびせ 相手に ぶつけて 攻撃する。 まひ状態に することが ある。" - }, - floatyFall: { - name: "ふわふわフォール", - effect: "ふんわりと 浮かび あがり 一気に 急降下して 攻撃。 相手を ひるませることが ある。" - }, - pikaPapow: { - name: "ピカピカサンダー", - effect: "トレーナーへの 大好きな 気持ちが 強いほど 威力が あがる 電撃。 必ず 命中する。" - }, - bouncyBubble: { - name: "いきいきバブル", - effect: "水のかたまりを ぶつけて 攻撃。 水を 吸いとり ダメージの 半分の HPを 回復する。" - }, - buzzyBuzz: { - name: "びりびりエレキ", - effect: "電気を 飛ばし 相手に あびせて 攻撃する。 相手を まひ状態に する。" - }, - sizzlySlide: { - name: "めらめらバーン", - effect: "炎を まとった 体で 勢いよく 相手に ぶつかる。 相手を やけど状態に する。" - }, - glitzyGlow: { - name: "どばどばオーラ", - effect: "念力を これでもかと あびせる。 相手の 特殊攻撃を 弱める 不思議な かべを つくりだす。" - }, - baddyBad: { - name: "わるわるゾーン", - effect: "わるさを アピールして 攻撃。 相手の 物理攻撃を 弱める 不思議な かべを つくりだす。" - }, - sappySeed: { - name: "すくすくボンバー", - effect: "巨大な ツルを 生やし タネを 撒きちらかして 攻撃する。 タネは 毎ターン 相手の HPを 吸いとる。" - }, - freezyFrost: { - name: "こちこちフロスト", - effect: "冷たく 凍った くろいきりの 結晶で 攻撃。 全員の 能力変化を もとに もどす。" - }, - sparklySwirl: { - name: "きらきらストーム", - effect: "むせかえる ような 香りの 竜巻で 相手を つつんで 攻撃。 味方の 状態異常を 回復する。" - }, - veeveeVolley: { - name: "ブイブイブレイク", - effect: "イーブイの トレーナーへの 大好きな 気持ちが 強いほど 威力が あがる 体当たり。 必ず 命中する。" - }, - doubleIronBash: { - name: "ダブルパンツァー", - effect: "胸の ナットを 軸に 回転して 2回 続けて うでを たたきつける。 相手を ひるませる ことが ある。" - }, - maxGuard: { - name: "ダイウォール", - effect: "相手の 攻撃を まったく 受けない。 連続で だすと 失敗しやすい。" - }, - dynamaxCannon: { - name: "ダイマックスほう", - effect: "コアから ビームを 放つ。相手の レベルが 過度に 上がっている 場合は 与える ダメージが 最大 2倍に 増える。" - }, - snipeShot: { - name: "ねらいうち", - effect: "相手の 技を 引き受ける 特性や 技の 影響を 無視して 選んだ 相手を 攻撃 できる。" - }, - jawLock: { - name: "くらいつく", - effect: "お互い ひんしに なるまで 交代が できなくなる。 どちらかの ポケモンが いなくなると 効果は消える。" - }, - stuffCheeks: { - name: "ほおばる", - effect: "持っている きのみを 食べて 防御を ぐーんと あげる。" - }, - noRetreat: { - name: "はいすいのじん", - effect: "自分の すべての 能力が 上がるが 交代 したり 逃げることが できなくなる。" - }, - tarShot: { - name: "タールショット", - effect: "ねばねばの タールを 浴びせて 相手の 素早さを 下げる。 相手は ほのおが 弱点に なる。" - }, - magicPowder: { - name: "まほうのこな", - effect: "まほうのこなを 浴びせて 相手を エスパータイプに 変化させる。" - }, - dragonDarts: { - name: "ドラゴンアロー", - effect: "ドラメシヤで 2回 攻撃。 相手が 2匹 いるときは それぞれに 1回ずつ 攻撃する。" - }, - teatime: { - name: "おちゃかい", - effect: "おちゃかいを ひらいて 場にいる ポケモンが それぞれ 持っている きのみを 食べる。" - }, - octolock: { - name: "たこがため", - effect: "相手を 逃げられなくする。 かためられた 相手は 毎ターン 防御と 特防が 下がる。" - }, - boltBeak: { - name: "でんげきくちばし", - effect: "電気を まとった くちばしで 刺す。 相手より 先に 攻撃できると 技の 威力は 2倍に なる。" - }, - fishiousRend: { - name: "エラがみ", - effect: "かたい エラで かみつく。 相手より 先に 攻撃できると 技の 威力は 2倍に なる。" - }, - courtChange: { - name: "コートチェンジ", - effect: "不思議な 力で お互いの 場の 効果を 入れ替える。" - }, - maxFlare: { - name: "ダイバーン", - effect: "ダイマックスした ポケモンが 繰りだす ほのおタイプの 攻撃。 5ターンの 間 日差しを 強くする。" - }, - maxFlutterby: { - name: "ダイワーム", - effect: "ダイマックスした ポケモンが 繰りだす むしタイプの 攻撃。 相手の 特攻を 下げる。" - }, - maxLightning: { - name: "ダイサンダー", - effect: "ダイマックスした ポケモンが 繰りだす でんきタイプの 攻撃。 5ターンの 間 エレキフィールドにする。" - }, - maxStrike: { - name: "ダイアタック", - effect: "ダイマックスした ポケモンが 繰りだす ノーマルタイプの 攻撃。 相手の 素早さを 下げる。" - }, - maxKnuckle: { - name: "ダイナックル", - effect: "ダイマックスした ポケモンが 繰りだす かくとうタイプの 攻撃。 味方の 攻撃を 上げる。" - }, - maxPhantasm: { - name: "ダイホロウ", - effect: "ダイマックスした ポケモンが 繰りだす ゴーストタイプの 攻撃。 相手の 防御を 下げる。" - }, - maxHailstorm: { - name: "ダイアイス", - effect: "ダイマックスした ポケモンが 繰りだす こおりタイプの 攻撃。 5ターンの 間 あられを 降らす。" - }, - maxOoze: { - name: "ダイアシッド", - effect: "ダイマックスした ポケモンが 繰りだす どくタイプの 攻撃。 味方の 特攻を 上げる。" - }, - maxGeyser: { - name: "ダイストリーム", - effect: "ダイマックスした ポケモンが 繰りだす みずタイプの 攻撃。 5ターンの 間 雨を 降らせる。" - }, - maxAirstream: { - name: "ダイジェット", - effect: "ダイマックスした ポケモンが 繰りだす ひこうタイプの 攻撃。 味方の 素早さを 上げる。" - }, - maxStarfall: { - name: "ダイフェアリー", - effect: "ダイマックスした ポケモンが 繰りだす フェアリータイプの 攻撃。 5ターンの 間 ミストフィールドにする。" - }, - maxWyrmwind: { - name: "ダイドラグーン", - effect: "ダイマックスした ポケモンが 繰りだす ドラゴンタイプの 攻撃。 相手の 攻撃を 下げる。" - }, - maxMindstorm: { - name: "ダイサイコ", - effect: "ダイマックスした ポケモンが 繰りだす エスパータイプの 攻撃。 5ターンの 間 サイコフィールドにする。" - }, - maxRockfall: { - name: "ダイロック", - effect: "ダイマックスした ポケモンが 繰りだす いわタイプの 攻撃。 5ターンの 間 砂あらしにする。" - }, - maxQuake: { - name: "ダイアース", - effect: "ダイマックスした ポケモンが 繰りだす じめんタイプの 攻撃。 味方の 特防を 上げる。" - }, - maxDarkness: { - name: "ダイアーク", - effect: "ダイマックスした ポケモンが 繰りだす あくタイプの 攻撃。 相手の 特防を 下げる。" - }, - maxOvergrowth: { - name: "ダイソウゲン", - effect: "ダイマックスした ポケモンが 繰りだす くさタイプの 攻撃。 5ターンの 間 グラスフィールドにする。" - }, - maxSteelspike: { - name: "ダイスチル", - effect: "ダイマックスした ポケモンが 繰りだす はがねタイプの 攻撃。 味方の 防御を 上げる。" - }, - clangorousSoul: { - name: "ソウルビート", - effect: "自分の HPを 少し 削って すべての 能力を 上げる。" - }, - bodyPress: { - name: "ボディプレス", - effect: "体を ぶつけて 攻撃。 防御が 高いほど 与える ダメージが 増える。" - }, - decorate: { - name: "デコレーション", - effect: "かざりつけを することで 相手の 攻撃と 特攻を ぐーんと 上げる。" - }, - drumBeating: { - name: "ドラムアタック", - effect: "ドラムの 根っこを ドラミングで コントロールして こうげき することで 相手の 素早さを 下げる。" - }, - snapTrap: { - name: "トラバサミ", - effect: "トラバサミで 捕らえて 4-5ターンの 間 相手を はさんで 攻撃する。" - }, - pyroBall: { - name: "かえんボール", - effect: "小石を 燃やした 炎の ボールで 相手を 攻撃する。 やけど 状態に することが ある。" - }, - behemothBlade: { - name: "きょじゅうざん", - effect: "全身で 強大な剣を 振りかざし 勢いよく 切りかかって 攻撃する。" - }, - behemothBash: { - name: "きょじゅうだん", - effect: "全身を 強固な盾へと 変化させ 勢いよく ぶつかって 攻撃する。" - }, - auraWheel: { - name: "オーラぐるま", - effect: "ほほぶくろに 溜めた エネルギーで 攻撃し 自分の 素早さを あげる。 モルペコの 姿で タイプが 変わる。" - }, - breakingSwipe: { - name: "ワイドブレイカー", - effect: "きょうじんな しっぽを 激しく ふりはらって 相手を 攻撃する。 相手の 攻撃を 下げる。" - }, - branchPoke: { - name: "えだづき", - effect: "するどく とがった 枝で 相手を 突いて 攻撃する。" - }, - overdrive: { - name: "オーバードライブ", - effect: "ギターや ベースを かきならして 激しく 響く 大きな 振動を 相手に 与えて 攻撃する。" - }, - appleAcid: { - name: "りんごさん", - effect: "すっぱい りんごから つくりだした 酸性の 液体で 攻撃。 相手の 特防を 下げる。" - }, - gravApple: { - name: "Gのちから", - effect: "高いところから りんごを 落として ダメージを 与える。 相手の 防御を 下げる。" - }, - spiritBreak: { - name: "ソウルクラッシュ", - effect: "食らうと くじけるほどの 勢いで 攻撃。 相手の 特攻を 下げる。" - }, - strangeSteam: { - name: "ワンダースチーム", - effect: "煙を 噴出して 相手を 攻撃。 混乱 させることが ある。" - }, - lifeDew: { - name: "いのちのしずく", - effect: "不思議な 水を ふりまいて 自分と 場にいる 味方の HPを 回復する。" - }, - obstruct: { - name: "ブロッキング", - effect: "相手の 攻撃を まったく 受けない。 連続で だすと 失敗しやすい。 触れると 防御が がくっと 下がる。" - }, - falseSurrender: { - name: "どげざつき", - effect: "頭を 下げる ふりを しながら 振りみだした 髪の毛を 突き刺す。 攻撃は 必ず 命中する。" - }, - meteorAssault: { - name: "スターアサルト", - effect: "太い クキを ふりまわして 攻撃。 ただし 自分も よろめいてしまうため 次の ターンは 動けなくなる。" - }, - eternabeam: { - name: "ムゲンダイビーム", - effect: "本来の 姿と なった ムゲンダイナ 最大の 攻撃。 次の ターンは 動けなくなる。" - }, - steelBeam: { - name: "てっていこうせん", - effect: "全身から 集めた はがねを ビームとして 激しく 撃ちだす。 自分も ダメージを 受けてしまう。" - }, - expandingForce: { - name: "ワイドフォース", - effect: "サイコパワーで 相手を 攻撃する。 サイコフィールドの時 威力が あがり すべての 相手に ダメージを 与える。" - }, - steelRoller: { - name: "アイアンローラー", - effect: "フィールドを 破壊しながら 攻撃。 なんらかの フィールド状態に 変わっていないと 技は 失敗する。" - }, - scaleShot: { - name: "スケイルショット", - effect: "ウロコを 撃ちだして 攻撃する。 2ー5回の 間 連続で だす。 素早さが あがるが 防御が さがる。" - }, - meteorBeam: { - name: "メテオビーム", - effect: "1ターン目に 宇宙の 力を 集めることで 特攻が あがり 2ターン目に 相手を 攻撃する。" - }, - shellSideArm: { - name: "シェルアームズ", - effect: "物理か 特殊か より多く ダメージを 与えられる 能力で 攻撃する。 毒状態に することが ある。" - }, - mistyExplosion: { - name: "ミストバースト", - effect: "自分の 周りに いる すべてを 攻撃するが 使うと 瀕死になる。 ミストフィールドで 威力が あがる。" - }, - grassyGlide: { - name: "グラススライダー", - effect: "地面を 滑るように 相手を 攻撃。 グラスフィールドの時 必ず 先制攻撃 できる。" - }, - risingVoltage: { - name: "ライジングボルト", - effect: "地面から 立ちのぼる 電撃で 攻撃。 相手が エレキフィールドに いる時 技の 威力が 2倍に なる。" - }, - terrainPulse: { - name: "だいちのはどう", - effect: "フィールドの力を 借りて 攻撃。 使った時の フィールドの状態に よって 技の タイプと 威力が 変わる。" - }, - skitterSmack: { - name: "はいよるいちげき", - effect: "背後から はいより 攻撃する。 相手の 特攻を さげる。" - }, - burningJealousy: { - name: "しっとのほのお", - effect: "しっとの エネルギーで 相手を 攻撃。 そのターン 能力が あがった ポケモンを やけどの 状態に する。" - }, - lashOut: { - name: "うっぷんばらし", - effect: "相手への いらだちを ぶつけて 攻撃。 そのターンに 能力を さげられていると 技の 威力が 2倍に なる。" - }, - poltergeist: { - name: "ポルターガイスト", - effect: "相手の 持ち物を あやつって 攻撃。 相手が 道具を 持っていない 場合は 失敗する。" - }, - corrosiveGas: { - name: "ふしょくガス", - effect: "強い 酸性の ガスで 周りに いるものを 包みこみ 持っている 道具を 溶かしてしまう。" - }, - coaching: { - name: "コーチング", - effect: "的確な 指導を おこなうことで 味方 全員の 攻撃と 防御を 上げる。" - }, - flipTurn: { - name: "クイックターン", - effect: "攻撃したあと ものすごい スピードで もどってきて 控えの ポケモンと 入れ替わる。" - }, - tripleAxel: { - name: "トリプルアクセル", - effect: "3回連続で キックを くりだして 攻撃する。 技が 当たるたびに 威力は あがる。" - }, - dualWingbeat: { - name: "ダブルウイング", - effect: "翼を 相手に ぶつけて 攻撃する。 2回連続で ダメージを 与える。" - }, - scorchingSands: { - name: "ねっさのだいち", - effect: "熱く 焼けた 砂を 相手に ぶつけて 攻撃する。 やけど状態に することが ある。" - }, - jungleHealing: { - name: "ジャングルヒール", - effect: "ジャングルと 一体化して 自分と 場にいる 味方の HPと 状態を 回復する。" - }, - wickedBlow: { - name: "あんこくきょうだ", - effect: "あくの型を 極めし 強烈な 一撃。 必ず 急所に 当たる。" - }, - surgingStrikes: { - name: "すいりゅうれんだ", - effect: "みずの型を 極めし 流れるような 3回の 連撃。 必ず 急所に 当たる。" - }, - thunderCage: { - name: "サンダープリズン", - effect: "ほとばしる 電気の おりの 中に 4ー5ターンの 間 相手を 閉じこめて 攻撃する。" - }, - dragonEnergy: { - name: "ドラゴンエナジー", - effect: "生命力を パワーに 変え 相手を 攻撃する。 自分の HPが 少ないほど 技の 威力は さがる。" - }, - freezingGlare: { - name: "いてつくしせん", - effect: "両目から サイコパワーを 撃ちだして 攻撃する。 こおり状態に することが ある。" - }, - fieryWrath: { - name: "もえあがるいかり", - effect: "怒りを 炎の ような オーラに 変えて 攻撃する。 相手を ひるませることが ある。" - }, - thunderousKick: { - name: "らいめいげり", - effect: "雷の ような 動きで 相手を 翻弄しながら キックする。 相手の 防御を さげる。" - }, - glacialLance: { - name: "ブリザードランス", - effect: "吹雪を まとった 氷の 槍を 相手に 投げつけて 攻撃する。" - }, - astralBarrage: { - name: "アストラルビット", - effect: "たくさんの 小さな 霊体を 相手に ぶつけて 攻撃する。" - }, - eerieSpell: { - name: "ぶきみなじゅもん", - effect: "強力な サイコパワーで 攻撃。 相手が 最後に 使った技の PPを 3だけ 減らす。" - }, - direClaw: { - name: "フェイタルクロー", - effect: "破滅的なツメで 攻撃する。 相手を どく まひ ねむりの いずれかの状態に することも ある。" - }, - psyshieldBash: { - name: "バリアーラッシュ", - effect: "思念のエネルギーを まといながら 相手に ぶつかっていく。 自分の 防御を あげる。" - }, - powerShift: { - name: "パワーシフト", - effect: "自分の 攻撃と防御を 入れ替える。" - }, - stoneAxe: { - name: "がんせきアックス", - effect: "岩の斧で 攻撃する。 ばらまかれた 岩の破片が 相手の 周りに 浮かぶ。" - }, - springtideStorm: { - name: "はるのあらし", - effect: "愛憎 入りまじった 強烈な風で 相手を 包みこんで 攻撃する。 相手の 攻撃を さげることが ある。" - }, - mysticalPower: { - name: "しんぴのちから", - effect: "不思議な力を 放出して 攻撃する。 自分の 特攻が あがる。" - }, - ragingFury: { - name: "だいふんげき", - effect: "2-3ターンの 間 炎を 放ちながら 暴れまわる。 暴れたあとは 混乱する。" - }, - waveCrash: { - name: "ウェーブタックル", - effect: "水を まといつつ 全身で 相手に ぶつかるが 自分も かなりの ダメージ を受ける。" - }, - chloroblast: { - name: "クロロブラスト", - effect: "自身の 葉緑素を 集約し 放出して 攻撃する。 自分も ダメージを 受けてしまう。" - }, - mountainGale: { - name: "ひょうざんおろし", - effect: "氷山のような 大きな 氷塊を ぶつけて 攻撃する。 相手を ひるませることが ある。" - }, - victoryDance: { - name: "しょうりのまい", - effect: "勝利を 呼びこむ 舞を 激しく 踊って 自分の 攻撃と 防御と 素早さを あげる。" - }, - headlongRush: { - name: "ぶちかまし", - effect: "全身全霊の たいあたりを くらわせる。 自分の 防御と 特防が さがる。" - }, - barbBarrage: { - name: "どくばりセンボン", - effect: "無数の毒針で 相手を 毒状態に することもある。 相手が 毒状態だと 威力は 2倍になる。" - }, - esperWing: { - name: "オーラウイング", - effect: "オーラで 強化した翼で 切り裂く。 急所に 当たりやすい。 自分の 素早さを あげる。" - }, - bitterMalice: { - name: "うらみつらみ", - effect: "背筋が 凍るような 怨念で 攻撃して 相手の 攻撃を さげる。" - }, - shelter: { - name: "たてこもる", - effect: "皮膚を 鉄の盾のように 硬くすることで 自分の 防御を ぐーんと あげる。" - }, - tripleArrows: { - name: "3ぼんのや", - effect: "足技のあと 3本の矢を 同時に放つ。 相手の 防御を さげたり ひるませることが ある。 急所に 当たりやすい。" - }, - infernalParade: { - name: "ひゃっきやこう", - effect: "無数の火の玉で 攻撃して やけど状態に することが ある。 相手が 状態異常だと 威力は 2倍。" - }, - ceaselessEdge: { - name: "ひけん・ちえなみ", - effect: "貝殻の剣で 攻撃する。 ばらまかれた 貝殻の破片は 相手の 足下に まきびし となって 散らばる。" - }, - bleakwindStorm: { - name: "こがらしあらし", - effect: "身も心も 震える 冷たく 激しい風で 攻撃する。 相手の 素早さを さげることが ある。" - }, - wildboltStorm: { - name: "かみなりあらし", - effect: "嵐を 起こし 雷雲を 呼びよせ 雷と風で 激しく 攻撃をする。 相手を まひ状態に することもある。" - }, - sandsearStorm: { - name: "ねっさのあらし", - effect: "熱く焼けた砂と 強烈な風で 包みこんで 攻撃する。 相手を やけど状態に することがある。" - }, - lunarBlessing: { - name: "みかづきのいのり", - effect: "みかづきに いのりを ささげて 自分と 場にいる 味方の HPと 状態を 回復する。" - }, - takeHeart: { - name: "ブレイブチャージ", - effect: "心を 奮わせて 自分の 状態異常を 治し さらには 特攻と 特防を あげる。" - }, - gMaxWildfire: { - name: "キョダイゴクエン", - effect: "キョダイマックスした リザードンが 繰りだす ほのおタイプの 攻撃。 4ターンの 間 ダメージを 与える。" - }, - gMaxBefuddle: { - name: "キョダイコワク", - effect: "キョダイマックスした バタフリーが 繰り出す むしタイプの 攻撃。 毒・まひ・眠りの どれかに する。" - }, - gMaxVoltCrash: { - name: "キョダイバンライ", - effect: "キョダイマックスした ピカチュウが 繰りだす でんきタイプの 攻撃。 相手を まひ状態に する。" - }, - gMaxGoldRush: { - name: "キョダイコバン", - effect: "キョダイマックスした ニャースが 繰り出す ノーマルタイプの 攻撃。 相手を 混乱させ お金も もらえる。" - }, - gMaxChiStrike: { - name: "キョダイシンゲキ", - effect: "キョダイマックスした カイリキーが 繰りだす かくとうタイプの 攻撃。 急所に 当たりやすく なる。" - }, - gMaxTerror: { - name: "キョダイゲンエイ", - effect: "キョダイマックスした ゲンガーが 繰りだす ゴーストタイプの 攻撃。 影を 踏み 交代 できなくする。" - }, - gMaxResonance: { - name: "キョダイセンリツ", - effect: "キョダイマックスした ラプラスが 繰りだす こおりタイプの 攻撃。 5ターンの 間 ダメージを 弱める。" - }, - gMaxCuddle: { - name: "キョダイホーヨー", - effect: "キョダイマックスした イーブイが 繰りだす ノーマルタイプの 攻撃。 相手を メロメロに する。" - }, - gMaxReplenish: { - name: "キョダイサイセイ", - effect: "キョダイマックスした カビゴンが 繰りだす ノーマルタイプの 攻撃。 食べた きのみを 再生する。" - }, - gMaxMalodor: { - name: "キョダイシュウキ", - effect: "キョダイマックスした ダストダスが 繰りだす どくタイプの 攻撃。 相手を 毒 状態に する。" - }, - gMaxStonesurge: { - name: "キョダイガンジン", - effect: "キョダイマックスした カジリガメが 繰りだす みずタイプの 攻撃。 鋭い 無数の 岩を ばらまく。" - }, - gMaxWindRage: { - name: "キョダイフウゲキ", - effect: "キョダイマックスした アーマーガアが 繰りだす ひこうタイプの 攻撃。 リフレクターや ひかりのかべを 消し去る。" - }, - gMaxStunShock: { - name: "キョダイカンデン", - effect: "キョダイマックスした ストリンダーが 繰り出す でんきタイプの 攻撃。 相手を 毒 か まひ どちらかにする。" - }, - gMaxFinale: { - name: "キョダイダンエン", - effect: "キョダイマックスした マホイップが 繰りだす フェアリータイプの 攻撃。 味方の HPを 回復する。" - }, - gMaxDepletion: { - name: "キョダイゲンスイ", - effect: "キョダイマックスした ジュラルドンが 繰りだす ドラゴンタイプの 攻撃。 最後に 使われた わざPPを 減らす。" - }, - gMaxGravitas: { - name: "キョダイテンドウ", - effect: "キョダイマックスした イオルブが 繰りだす エスパータイプの 攻撃。 5ターンの 間 重力が 変わる。" - }, - gMaxVolcalith: { - name: "キョダイフンセキ", - effect: "キョダイマックスした セキタンザンが 繰りだす いわタイプの 攻撃。 4ターンの 間 ダメージを 与える。" - }, - gMaxSandblast: { - name: "キョダイサジン", - effect: "キョダイマックスした サダイジャが 繰りだす じめんタイプの 攻撃。 4-5ターンの間 砂が 吹き荒れる。" - }, - gMaxSnooze: { - name: "キョダイスイマ", - effect: "キョダイマックスした オーロンゲが 繰りだす あくタイプの 攻撃。 大きな あくびで 眠気を 誘う。" - }, - gMaxTartness: { - name: "キョダイサンゲキ", - effect: "キョダイマックスした アップリューが 繰りだす くさタイプの 攻撃。 相手の 回避率を 下げる。" - }, - gMaxSweetness: { - name: "キョダイカンロ", - effect: "キョダイマックスした タルップルが 繰りだす くさタイプの 攻撃。 味方の 状態異常を 回復する。" - }, - gMaxSmite: { - name: "キョダイテンバツ", - effect: "キョダイマックスした ブリムオンが 繰りだす フェアリータイプの 攻撃。 相手を 混乱させる。" - }, - gMaxSteelsurge: { - name: "キョダイコウジン", - effect: "キョダイマックスした ダイオウドウが 繰りだす タイプの 攻撃。 鋭い 無数の とげを ばらまく。" - }, - gMaxMeltdown: { - name: "キョダイユウゲキ", - effect: "キョダイマックスした メルメタルが 繰りだす はがねタイプの 攻撃。 同じ 技を 連続で 出せなくする。" - }, - gMaxFoamBurst: { - name: "キョダイホウマツ", - effect: "キョダイマックスした キングラーが 繰りだす みずタイプの 攻撃。 相手の 素早さを がくっと さげる。" - }, - gMaxCentiferno: { - name: "キョダイヒャッカ", - effect: "キョダイマックスした マルヤクデが 繰りだす ほのおタイプの 攻撃。 4-5ターンの間 炎に 閉じこめる。" - }, - gMaxVineLash: { - name: "キョダイベンタツ", - effect: "キョダイマックスした フシギバナが 繰りだす くさタイプの 攻撃。 4ターンの 間 ダメージを 与える。" - }, - gMaxCannonade: { - name: "キョダイホウゲキ", - effect: "キョダイマックスした カメックスが 繰りだす みずタイプの 攻撃。 4ターンの 間 ダメージを 与える。" - }, - gMaxDrumSolo: { - name: "キョダイコランダ", - effect: "キョダイマックスした ゴリランダーが 繰りだす くさタイプの 攻撃。 相手の 特性に ジャマされない。" - }, - gMaxFireball: { - name: "キョダイカキュウ", - effect: "キョダイマックスした エースバーンが 繰りだす ほのおタイプの 攻撃。 相手の 特性に ジャマされない。" - }, - gMaxHydrosnipe: { - name: "キョダイソゲキ", - effect: "キョダイマックスした インテレオンが 繰りだす みずタイプの 攻撃。 相手の 特性に ジャマされない。" - }, - gMaxOneBlow: { - name: "キョダイイチゲキ", - effect: "キョダイマックスした ウーラオスが 繰りだす あくタイプの 攻撃。 ダイウォールを 無視できる 一撃。" - }, - gMaxRapidFlow: { - name: "キョダイレンゲキ", - effect: "キョダイマックスした ウーラオスが 繰りだす みずタイプの 攻撃。 ダイウォールを 無視できる 連撃。" - }, - teraBlast: { - name: "テラバースト", - effect: "テラスタルだと テラスタイプの エネルギーを 放出して 攻撃する。 攻撃と 特攻を 比べて 高いほうで ダメージを 与える。" - }, - silkTrap: { - name: "スレッドトラップ", - effect: "糸の罠を はりめぐらせる。 相手の 攻撃を 防ぐと 同時に 触れた 相手の 素早さを さげる。" - }, - axeKick: { - name: "かかとおとし", - effect: "蹴りあげた かかとを 落として 攻撃する。 相手を 混乱させることが ある。 はずすと 自分が ダメージを 受ける。" - }, - lastRespects: { - name: "おはかまいり", - effect: "仲間の 無念を 晴らすため 攻撃する。 倒された 味方のポケモンが 多いほど 技の 威力が 増える。" - }, - luminaCrash: { - name: "ルミナコリジョン", - effect: "精神にも 作用する 奇妙な光を 放って 攻撃する。 相手の 特防を がくっと さげる。" - }, - orderUp: { - name: "いっちょうあがり", - effect: "いなせな 身のこなしで 攻撃。 口の中に シャリタツが いると そのすがたによって 能力が あがる。" - }, - jetPunch: { - name: "ジェットパンチ", - effect: "激流を こぶしに まとって 目にも 留まらぬ パンチを くりだす。 必ず 先制攻撃 できる。" - }, - spicyExtract: { - name: "ハバネロエキス", - effect: "とんでもなく 辛いエキスを 出す。 相手の 攻撃が ぐーんと あがり 防御が がくっと さがる。" - }, - spinOut: { - name: "ホイールスピン", - effect: "足に 負荷を かけることにより 激しく 回転して ダメージを 与える。 自分の 素早さが がくっと さがる。" - }, - populationBomb: { - name: "ネズミざん", - effect: "仲間たちが わらわらと 集まって コンビネーションで 攻撃を 与えていく。 1-10回の 間 連続で あたる。" - }, - iceSpinner: { - name: "アイススピナー", - effect: "足に 薄い氷を まとい クルクルと 回りながら ぶつかる。 回転の 動きによって フィールドを 壊す。" - }, - glaiveRush: { - name: "きょけんとつげき", - effect: "体を 投げだす 無謀な突撃。 技のあと 相手からの 攻撃は 必ず 命中し ダメージが 2倍に なってしまう。" - }, - revivalBlessing: { - name: "さいきのいのり", - effect: "慈愛の心で いのることにより 控えにいる ひんしの ポケモンを HPを 半分の状態で 復活させる。" - }, - saltCure: { - name: "しおづけ", - effect: "相手を しおづけ状態に して 毎ターン ダメージを 与える。 はがね みずタイプは より 苦しむ。" - }, - tripleDive: { - name: "トリプルダイブ", - effect: "息のあった 飛びこみを することで 相手に 水しぶきを あてる。 3回連続で ダメージを 与える。" - }, - mortalSpin: { - name: "キラースピン", - effect: "回転して 相手を 攻撃する。 しめつける まきつく やどりぎのタネ など 吹きとばす。 相手を 毒状態に する。" - }, - doodle: { - name: "うつしえ", - effect: "相手の本質を とらえて うつしだし 自分と 味方を 相手と 同じ 特性に 変化させる。" - }, - filletAway: { - name: "みをけずる", - effect: "自分の HPを けずって 自分の 攻撃と 特攻と 素早さを ぐーんと あげる。" - }, - kowtowCleave: { - name: "ドゲザン", - effect: "土下座して 相手を 油断させておいて 切りかかる。 攻撃は 必ず 命中する。" - }, - flowerTrick: { - name: "トリックフラワー", - effect: "細工がある 花たばを 相手に 投げて 攻撃する。 必ず 命中して 急所にも 当たる。" - }, - torchSong: { - name: "フレアソング", - effect: "燃えたぎる 火炎を 歌うように 吹きつけて 相手を 焦がす。 自分の 特攻を あげる。" - }, - aquaStep: { - name: "アクアステップ", - effect: "水もしたたる かろやかな 足どりで 相手を 翻弄し ダメージを 与える。 自分の 素早さを あげる。" - }, - ragingBull: { - name: "レイジングブル", - effect: "怒り狂う あばれうしの 猛烈な タックル。 フォルムで 技のタイプが 変わり ひかりのかべや リフレクターなども 破壊できる。" - }, - makeItRain: { - name: "ゴールドラッシュ", - effect: "大量のコインを ぶちまけて 攻撃。 自分の 特攻が さがる。 戦闘の あとで お金も もらえる。" - }, - psyblade: { - name: "サイコブレイド", - effect: "実体のない刃で 相手を 切り裂く。 エレキフィールドに いるとき 技の威力が 1.5倍に なる。" - }, - hydroSteam: { - name: "ハイドロスチーム", - effect: "煮えたぎる水を 勢いよく 浴びせる。 日差しが 強いとき 技の威力が さがるどころか 1.5倍になる。" - }, - ruination: { - name: "カタストロフィ", - effect: "破滅的な 災厄を 巻き起こし 相手の HPを 半分に する。" - }, - collisionCourse: { - name: "アクセルブレイク", - effect: "変形しながら 荒々しく 落下し いにしえの 大爆発を 引き起こす。 弱点をつくと さらに 威力が 増す。" - }, - electroDrift: { - name: "イナズマドライブ", - effect: "変形しながら 超高速で 走行し 未知なる 電撃が 相手を つらぬく。 弱点をつくと さらに 威力が 増す。" - }, - shedTail: { - name: "しっぽきり", - effect: "自分の HPを 削って 分身を だしたあと もどってきて 控えの ポケモンと 入れ替わる。" - }, - chillyReception: { - name: "さむいギャグ", - effect: "場を 凍らせる ギャグを 言い残し 控えの ポケモンと 入れ替わる。 5ターンの 間 ゆきを 降らす。" - }, - tidyUp: { - name: "おかたづけ", - effect: "まきびし ステルスロック ねばねばネット どくびし みがわりを すべて かたづける。 自分の 攻撃と 素早さが あがる。" - }, - snowscape: { - name: "ゆきげしき", - effect: "5ターンの 間 ゆきを 降らせる。 こおりタイプの 防御が あがる。" - }, - pounce: { - name: "とびつく", - effect: "相手に 飛びついて 攻撃する。 相手の 素早さを さげる。" - }, - trailblaze: { - name: "くさわけ", - effect: "草むらから 飛びだすように 攻撃する。 軽快な 足どりに よって 自分の 素早さを あげる。" - }, - chillingWater: { - name: "ひやみず", - effect: "相手の 元気を 失わせるくらい 冷たい水を 浴びせて 攻撃する。 相手の 攻撃を さげる。" - }, - hyperDrill: { - name: "ハイパードリル", - effect: "とがった 体の部位を 急速に 回転させ つらぬく。 まもるや みきり なども 無視 できる。" - }, - twinBeam: { - name: "ツインビーム", - effect: "両目から 不可思議な 光線を 発射して 攻撃する。 2回連続で ダメージを 与える。" - }, - rageFist: { - name: "ふんどのこぶし", - effect: "怒りを エネルギーに 変えて 攻撃。 受けた 攻撃の 回数が 多いほど 技の 威力が あがる。" - }, - armorCannon: { - name: "アーマーキャノン", - effect: "みずからの ヨロイを 燃えたぎる 弾として 撃ち出して 攻撃する。 自分の 防御と 特防が さがる。" - }, - bitterBlade: { - name: "むねんのつるぎ", - effect: "この世への 未練を 剣先に こめて 切りつける。 与えた ダメージの 半分の HPを 回復できる。" - }, - doubleShock: { - name: "でんこうそうげき", - effect: "全身の でんきを すべて 放って 大ダメージを 与える。 自分の でんきタイプが なくなる。" - }, - gigatonHammer: { - name: "デカハンマー", - effect: "大きな ハンマーを 体ごと ぶんまわして 攻撃する。 この技は 2回連続で だせない。" - }, - comeuppance: { - name: "ほうふく", - effect: "技を だす前に 最後に 受けた 技の ダメージを 大きくして だした 相手に 返す。" - }, - aquaCutter: { - name: "アクアカッター", - effect: "加圧された 水を 刃のように 噴射して 相手を 切り裂く。 急所に 当たりやすい。" - }, - blazingTorque: { - name: "バーンアクセル", - effect: "メラメラの エンジンを 吹かして 相手に ぶつかる。やけど状態に することが ある。" - }, - wickedTorque: { - name: "ダークアクセル", - effect: "悪意で エンジンを 吹かして 相手に ぶつかる。眠り状態に することが ある。" - }, - noxiousTorque: { - name: "ポイズンアクセル", - effect: "有毒な エンジンを 吹かして 相手に ぶつかる。毒状態に することが ある。" - }, - combatTorque: { - name: "ファイトアクセル", - effect: "力いっぱい エンジンを 吹かして 相手に ぶつかる。まひ状態に することが ある。" - }, - magicalTorque: { - name: "マジカルアクセル", - effect: "幻想的な エンジンを 吹かして 相手に ぶつかる。混乱させることが ある。" - }, - bloodMoon: { - name: "ブラッドムーン", - effect: "血のように 赤い満月から ありったけの 気迫を 撃ちだす。 この技は 2回連続で だせない。" - }, - matchaGotcha: { - name: "シャカシャカほう", - effect: "かきまぜた お茶の 大砲は 与えた ダメージの 半分を 回復して やけど状態に することも ある。" - }, - syrupBomb: { - name: "みずあめボム", - effect: "ねっとりした みずあめを 爆発させ 相手を あめまみれ 状態にして 3ターンの間 素早さを さげ続ける。" - }, - ivyCudgel: { - name: "ツタこんぼう", - effect: "ツタを まきつけた こん棒で なぐる。 かぶっている お面で タイプが 変わる。 急所に 当たりやすい。" - }, - electroShot: { - name: "エレクトロビーム", - effect: "1ターン目に 電気を 集めて 特攻が あがり 2ターン目に 高圧の 電気を 発射する。 天気が 雨のときは すぐに 発射できる。" - }, - teraStarstorm: { - name: "テラクラスター", - effect: "結晶の力を 照射し 敵を 排除する。 テラパゴスが ステラフォルムで 放つと すべての 相手に ダメージを 与える。" - }, - fickleBeam: { - name: "きまぐレーザー", - effect: "光線を 発射して 攻撃する。 ときどき ほかの首も 協力して レーザーを 放ち 威力が 2倍に なる。" - }, - burningBulwark: { - name: "かえんのまもり", - effect: "相手の 攻撃を 超高熱の 体毛で 防ぎ 同時に 触れた 相手に やけどを 与えてしまう。" - }, - thunderclap: { - name: "じんらい", - effect: "相手より 先に 電撃を 浴びせる。 相手が だす技が 攻撃技でないと 失敗する。" - }, - mightyCleave: { - name: "パワフルエッジ", - effect: "頭部に 蓄積した 光で 切断する。 守りを 無視して 攻撃できる。" - }, - tachyonCutter: { - name: "タキオンカッター", - effect: "粒子の刃を たて続けに 発射して 2回連続で ダメージを 与える。 攻撃は 必ず 命中する。" - }, - hardPress: { - name: "ハードプレス", - effect: "腕やハサミで 相手を 圧迫する。 相手の HPが 残っているほど 威力が あがる。" - }, - dragonCheer: { - name: "ドラゴンエール", - effect: "竜の鼓舞で 士気を 上げて 味方の技が 急所に 当たりやすくなる。 ドラゴンタイプだと より 鼓舞される。" - }, - alluringVoice: { - name: "みわくのボイス", - effect: "天使のような 歌声で 相手を 攻撃。 そのターン 能力が あがった ポケモンを 混乱の 状態に する。" - }, - temperFlare: { - name: "やけっぱち", - effect: "自棄になった 勢いで 攻撃する。 前の ターンに 技を 外していると 威力が 倍に なる。" - }, - supercellSlam: { - name: "サンダーダイブ", - effect: "体を 帯電させ て相手に のしかかる。 はずすと 自分が ダメージを 受ける。" - }, - psychicNoise: { - name: "サイコノイズ", - effect: "不快な音波を 相手に 浴びせて 攻撃。 2ターンの間 技や 特性や 持っている 道具によって HPを 回復できなくなる。" - }, - upperHand: { - name: "はやてがえし", - effect: "動きに 反応して 掌底を 打ちこみ 相手を ひるませる。 相手が だす技が 先制攻撃でないと 失敗する。" - }, - malignantChain: { - name: "じゃどくのくさり", - effect: "毒でできた鎖を 相手に 巻きつけ 毒素を 流しこんで 蝕む。 猛毒の 状態に することが ある。" - }, -} as const; diff --git a/src/locales/ja/nature.ts b/src/locales/ja/nature.json similarity index 84% rename from src/locales/ja/nature.ts rename to src/locales/ja/nature.json index d5f576159fd..8d7d37b7e74 100644 --- a/src/locales/ja/nature.ts +++ b/src/locales/ja/nature.json @@ -1,6 +1,4 @@ -import { SimpleTranslationEntries } from "#app/interfaces/locales"; - -export const nature: SimpleTranslationEntries = { +{ "Hardy": "がんばりや", "Lonely": "さみしがり", "Brave": "ゆうかん", @@ -26,4 +24,4 @@ export const nature: SimpleTranslationEntries = { "Sassy": "なまいき", "Careful": "しんちょう", "Quirky": "きまぐれ" -} as const; +} \ No newline at end of file diff --git a/src/locales/ja/party-ui-handler.json b/src/locales/ja/party-ui-handler.json new file mode 100644 index 00000000000..a3a88b2dd6e --- /dev/null +++ b/src/locales/ja/party-ui-handler.json @@ -0,0 +1,8 @@ +{ + "SEND_OUT": "いれかえる", + "SUMMARY": "つよさをみる", + "CANCEL": "やめる", + "RELEASE": "にがす", + "APPLY": "つかう", + "TEACH": "おしえる" +} \ No newline at end of file diff --git a/src/locales/ja/party-ui-handler.ts b/src/locales/ja/party-ui-handler.ts deleted file mode 100644 index 41917addd0b..00000000000 --- a/src/locales/ja/party-ui-handler.ts +++ /dev/null @@ -1,54 +0,0 @@ -import { SimpleTranslationEntries } from "#app/interfaces/locales"; - -export const partyUiHandler: SimpleTranslationEntries = { - "SEND_OUT": "いれかえる", - "SUMMARY": "つよさをみる", - "CANCEL": "やめる", - "RELEASE": "にがす", - "APPLY": "つかう", - "TEACH": "おしえる", - "SPLICE": "Splice", - "UNSPLICE": "Unsplice", - "ACTIVATE": "Activate", - "DEACTIVATE": "Deactivate", - "TRANSFER": "Transfer", - "ALL": "すべて", - "PASS_BATON": "Pass Baton", - "UNPAUSE_EVOLUTION": "Unpause Evolution", - "REVIVE": "Revive", - "RENAME": "Rename", - - "choosePokemon": "Choose a Pokémon.", - "doWhatWithThisPokemon": "Do what with this Pokémon?", - "noEnergy": "{{pokemonName}} has no energy\nleft to battle!", - "hasEnergy": "{{pokemonName}} still has energy\nto battle!", - "cantBeUsed": "{{pokemonName}} can't be used in\nthis challenge!", - "tooManyItems": "{{pokemonName}} has too many\nof this item!", - "anyEffect": "It won't have any effect.", - "unpausedEvolutions": "Evolutions have been unpaused for {{pokemonName}}.", - "unspliceConfirmation": "Do you really want to unsplice {{fusionName}}\nfrom {{pokemonName}}? {{fusionName}} will be lost.", - "wasReverted": "{{fusionName}} was reverted to {{pokemonName}}.", - "releaseConfirmation": "Do you really want to release {{pokemonName}}?", - "releaseInBattle": "You can't release a Pokémon that's in battle!", - "selectAMove": "Select a move.", - "changeQuantity": "Select a held item to transfer.\nUse < and > to change the quantity.", - "selectAnotherPokemonToSplice": "Select another Pokémon to splice.", - "cancel": "Cancel", - - // Slot TM text - "able": "Able", - "notAble": "Not able", - "learned": "Learned", - - // Releasing messages - "goodbye": "Goodbye, {{pokemonName}}!", - "byebye": "Byebye, {{pokemonName}}!", - "farewell": "Farewell, {{pokemonName}}!", - "soLong": "So long, {{pokemonName}}!", - "thisIsWhereWePart": "This is where we part, {{pokemonName}}!", - "illMissYou": "I'll miss you, {{pokemonName}}!", - "illNeverForgetYou": "I'll never forget you, {{pokemonName}}!", - "untilWeMeetAgain": "Until we meet again, {{pokemonName}}!", - "sayonara": "Sayonara, {{pokemonName}}!", - "smellYaLater": "Smell ya later, {{pokemonName}}!", -} as const; diff --git a/src/locales/ja/pokeball.ts b/src/locales/ja/pokeball.json similarity index 53% rename from src/locales/ja/pokeball.ts rename to src/locales/ja/pokeball.json index 753457391c1..5ed68867460 100644 --- a/src/locales/ja/pokeball.ts +++ b/src/locales/ja/pokeball.json @@ -1,10 +1,8 @@ -import { SimpleTranslationEntries } from "#app/interfaces/locales"; - -export const pokeball: SimpleTranslationEntries = { +{ "pokeBall": "モンスターボール", "greatBall": "スーパーボール", "ultraBall": "ハイパーボール", "rogueBall": "ローグボール", "masterBall": "マスターボール", - "luxuryBall": "ゴージャスボール", -} as const; + "luxuryBall": "ゴージャスボール" +} \ No newline at end of file diff --git a/src/locales/ja/pokemon-form-battle.json b/src/locales/ja/pokemon-form-battle.json new file mode 100644 index 00000000000..adbc7b4b3da --- /dev/null +++ b/src/locales/ja/pokemon-form-battle.json @@ -0,0 +1,14 @@ +{ + "mega": "メガ{{pokemonName}}", + "mega-x": "メガ{{pokemonName}}X", + "mega-y": "メガ{{pokemonName}}Y", + "primal": "ゲンシ{{pokemonName}}", + "gigantamax": "キョダイ{{pokemonName}}", + "eternamax": "E・{{pokemonName}}", + "megaChange": "{{preName}}は\nメガ{{pokemonName}}に メガシンカした!", + "gigantamaxChange": "{{preName}}は\nキョダイマックスした!", + "eternamaxChange": "{{preName}}は\nムゲンダイマックスした!", + "revertChange": "{{pokemonName}}は\n元の姿に 戻った!", + "formChange": "{{preName}}は\n姿を 変えた!", + "disguiseChange": "ばけのかわが みがわりに なった!" +} diff --git a/src/locales/ja/pokemon-form.json b/src/locales/ja/pokemon-form.json new file mode 100644 index 00000000000..76124904456 --- /dev/null +++ b/src/locales/ja/pokemon-form.json @@ -0,0 +1,170 @@ +{ + "pikachuCosplay": "コスプレ", + "pikachuCoolCosplay": "クールなコスプレ", + "pikachuBeautyCosplay": "きれいなコスプレ", + "pikachuCuteCosplay": "かわいいコスプレ", + "pikachuSmartCosplay": "かしこいコスプレ", + "pikachuToughCosplay": "パワフルなコスプレ", + "pikachuPartner": "パートナー", + "eeveePartner": "パートナー", + "pichuSpiky": "ギザみみ", + "unownA": "A", + "unownB": "B", + "unownC": "C", + "unownD": "D", + "unownE": "E", + "unownF": "F", + "unownG": "G", + "unownH": "H", + "unownI": "I", + "unownJ": "J", + "unownK": "K", + "unownL": "L", + "unownM": "M", + "unownN": "N", + "unownO": "O", + "unownP": "P", + "unownQ": "Q", + "unownR": "R", + "unownS": "S", + "unownT": "T", + "unownU": "U", + "unownV": "V", + "unownW": "W", + "unownX": "X", + "unownY": "Y", + "unownZ": "Z", + "unownExclamation": "!", + "unownQuestion": "?", + "castformSunny": "たいよう", + "castformRainy": "あまみず", + "castformSnowy": "ゆきぐも", + "deoxysNormal": "ノーマル", + "burmyPlant": "くさき", + "burmySandy": "すなち", + "burmyTrash": "ゴミ", + "shellosEast": "ひがし", + "shellosWest": "にし", + "rotomHeat": "ヒート", + "rotomWash": "ウォッシュ", + "rotomFrost": "フロスト", + "rotomFan": "スピン", + "rotomMow": "カット", + "giratinaAltered": "アナザー", + "shayminLand": "ランド", + "basculinRedStriped": "赤筋", + "basculinBlueStriped": "青筋", + "basculinWhiteStriped": "白筋", + "deerlingSpring": "春", + "deerlingSummer": "夏", + "deerlingAutumn": "秋", + "deerlingWinter": "冬", + "tornadusIncarnate": "けしん", + "thundurusIncarnate": "けしん", + "landorusIncarnate": "けしん", + "keldeoOrdinary": "いつも", + "meloettaAria": "ボイス", + "meloettaPirouette": "ステップ", + "froakieBattleBond": "きずなへんげ", + "scatterbugMeadow": "はなぞの", + "scatterbugIcySnow": "ひょうせつ", + "scatterbugPolar": "ゆきぐに", + "scatterbugTundra": "せつげん", + "scatterbugContinental": "たいりく", + "scatterbugGarden": "ていえん", + "scatterbugElegant": "みやび", + "scatterbugModern": "モダン", + "scatterbugMarine": "マリン", + "scatterbugArchipelago": "ぐんとう", + "scatterbugHighPlains": "こうや", + "scatterbugSandstorm": "さじん", + "scatterbugRiver": "たいが", + "scatterbugMonsoon": "スコール", + "scatterbugSavanna": "サバンナ", + "scatterbugSun": "たいよう", + "scatterbugOcean": "オーシャン", + "scatterbugJungle": "ジャングル", + "scatterbugFancy": "ファンシー", + "scatterbugPokeBall": "ボール", + "flabebeRed": "赤", + "flabebeYellow": "黄", + "flabebeOrange": "オレンジ", + "flabebeBlue": "青", + "flabebeWhite": "白", + "furfrouHeart": "ハート", + "furfrouStar": "スター", + "furfrouDiamond": "ダイア", + "furfrouDebutante": "レディ", + "furfrouMatron": "マダム", + "furfrouDandy": "ジェントル", + "furfrouLaReine": "クイーン", + "furfrouKabuki": "カブキ", + "furfrouPharaoh": "キングダム", + "pumpkabooSmall": "ちいさい", + "pumpkabooLarge": "おおきい", + "pumpkabooSuper": "とくだい", + "xerneasNeutral": "リラックス", + "xerneasActive": "アクティブ", + "zygarde50": "50%フォルム", + "zygarde10": "10%フォルム", + "zygarde50Pc": "50%フォルム スワームチェンジ", + "zygarde10Pc": "10%フォルム スワームチェンジ", + "zygardeComplete": "パーフェクトフォルム", + "oricorioBaile": "めらめら", + "oricorioPompom": "ぱちぱち", + "oricorioPau": "ふらふら", + "oricorioSensu": "まいまい", + "rockruffOwnTempo": "マイペース", + "miniorRedMeteor": "赤 りゅうせい", + "miniorOrangeMeteor": "オレンジ りゅうせい", + "miniorYellowMeteor": "黄 りゅうせい", + "miniorGreenMeteor": "緑 りゅうせい", + "miniorBlueMeteor": "水色 りゅうせい", + "miniorIndigoMeteor": "青 りゅうせい", + "miniorVioletMeteor": "紫 りゅうせい", + "miniorRed": "赤", + "miniorOrange": "オレンジ", + "miniorYellow": "黄", + "miniorGreen": "緑", + "miniorBlue": "水色", + "miniorIndigo": "青", + "miniorViolet": "紫", + "mimikyuDisguised": "ばけたすがた", + "mimikyuBusted": "ばれたすがた", + "magearnaOriginal": "500ねんまえ", + "marshadowZenith": "Zパワー", + "sinisteaPhony": "がんさく", + "sinisteaAntique": "しんさく", + "eiscueNoIce": "ナイスなし", + "indeedeeMale": "オス", + "indeedeeFemale": "メス", + "morpekoFullBelly": "まんぷく", + "zacianHeroOfManyBattles": "れきせんのゆうしゃ", + "zamazentaHeroOfManyBattles": "れきせんのゆうしゃ", + "zarudeDada": "とうちゃん", + "enamorusIncarnate": "けしん", + "squawkabillyGreenPlumage": "グリーンフェザー", + "squawkabillyBluePlumage": "ブルーフェザー", + "squawkabillyYellowPlumage": "イエローフェザー", + "squawkabillyWhitePlumage": "ホワイトフェザー", + "tatsugiriCurly": "そったすがた", + "tatsugiriDroopy": "たれたすがた", + "tatsugiriStretchy": "のびたすがた", + "gimmighoulChest": "はこ", + "gimmighoulRoaming": "とほ", + "koraidonApexBuild": "かんぜんけいたい", + "koraidonLimitedBuild":"せいげんけいたい", + "koraidonSprintingBuild":"しっそうけいたい", + "koraidonSwimmingBuild":"ゆうえいけいたい", + "koraidonGlidingBuild":"かっくうけいたい", + "miraidonUltimateMode":"コンプリートモード", + "miraidonLowPowerMode":"リミテッドモード", + "miraidonDriveMode":"ドライブモード", + "miraidonAquaticMode":"フロートモード", + "miraidonGlideMode":"グライドモード", + "poltchageistCounterfeit": "マガイモノ", + "poltchageistArtisan": "タカイモノ", + "paldeaTaurosCombat": "コンバット", + "paldeaTaurosBlaze": "ブレイズ", + "paldeaTaurosAqua": "ウォーター" +} \ No newline at end of file diff --git a/src/locales/ja/pokemon-info-container.json b/src/locales/ja/pokemon-info-container.json new file mode 100644 index 00000000000..796ac706731 --- /dev/null +++ b/src/locales/ja/pokemon-info-container.json @@ -0,0 +1,7 @@ +{ + "moveset": "わざ", + "gender": "せいべつ:", + "ability": "とくせい:", + "nature": "せいかく:", + "form": "すがた:" +} \ No newline at end of file diff --git a/src/locales/ja/pokemon-info-container.ts b/src/locales/ja/pokemon-info-container.ts deleted file mode 100644 index df588db4595..00000000000 --- a/src/locales/ja/pokemon-info-container.ts +++ /dev/null @@ -1,9 +0,0 @@ -import { SimpleTranslationEntries } from "#app/interfaces/locales"; - -export const pokemonInfoContainer: SimpleTranslationEntries = { - "moveset": "わざ", - "gender": "せいべつ:", - "ability": "とくせい:", - "nature": "せいかく:", - "form": "すがた:" -} as const; diff --git a/src/locales/ja/pokemon-info.ts b/src/locales/ja/pokemon-info.json similarity index 82% rename from src/locales/ja/pokemon-info.ts rename to src/locales/ja/pokemon-info.json index dfa905cd395..9b7a7506953 100644 --- a/src/locales/ja/pokemon-info.ts +++ b/src/locales/ja/pokemon-info.json @@ -1,7 +1,5 @@ -import { PokemonInfoTranslationEntries } from "#app/interfaces/locales"; - -export const pokemonInfo: PokemonInfoTranslationEntries = { - Stat: { +{ + "Stat": { "HP": "HP", "HPshortened": "HP", "ATK": "こうげき", @@ -17,8 +15,7 @@ export const pokemonInfo: PokemonInfoTranslationEntries = { "ACC": "めいちゅう", "EVA": "かいひ" }, - - Type: { + "Type": { "UNKNOWN": "Unknown", "NORMAL": "ノーマル", "FIGHTING": "かくとう", @@ -38,6 +35,6 @@ export const pokemonInfo: PokemonInfoTranslationEntries = { "DRAGON": "ドラゴン", "DARK": "あく", "FAIRY": "フェアリー", - "STELLAR": "ステラ", - }, -} as const; + "STELLAR": "ステラ" + } +} \ No newline at end of file diff --git a/src/locales/ja/pokemon-summary.json b/src/locales/ja/pokemon-summary.json new file mode 100644 index 00000000000..9e26dfeeb6e --- /dev/null +++ b/src/locales/ja/pokemon-summary.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/src/locales/ja/pokemon-summary.ts b/src/locales/ja/pokemon-summary.ts deleted file mode 100644 index 484ea2a9d67..00000000000 --- a/src/locales/ja/pokemon-summary.ts +++ /dev/null @@ -1,20 +0,0 @@ -import { TranslationEntries } from "#app/interfaces/locales"; - -export const pokemonSummary: TranslationEntries = { - "pokemonInfo": "Pokémon Info", - "status": "Status", - "powerAccuracyCategory": "Power\nAccuracy\nCategory", - "type": "Type", - "unknownTrainer": "Unknown", - "ot": "OT", - "nature": "nature", - "expPoints": "Exp. Points", - "nextLv": "Next Lv.", - "cancel": "Cancel", - - "memoString": "{{natureFragment}} nature,\n{{metFragment}}", - "metFragment": { - "normal": "met at Lv{{level}},\n{{biome}}.", - "apparently": "apparently met at Lv{{level}},\n{{biome}}.", - }, -} as const; diff --git a/src/locales/ja/pokemon.ts b/src/locales/ja/pokemon.json similarity index 99% rename from src/locales/ja/pokemon.ts rename to src/locales/ja/pokemon.json index b145def1298..6c182c09f86 100644 --- a/src/locales/ja/pokemon.ts +++ b/src/locales/ja/pokemon.json @@ -1,6 +1,4 @@ -import { SimpleTranslationEntries } from "#app/interfaces/locales"; - -export const pokemon: SimpleTranslationEntries = { +{ "bulbasaur": "フシギダネ", "ivysaur": "フシギソウ", "venusaur": "フシギバナ", @@ -1082,5 +1080,5 @@ export const pokemon: SimpleTranslationEntries = { "hisui_decidueye": "ジュナイパー", "paldea_tauros": "ケンタロス", "paldea_wooper": "ウパー", - "bloodmoon_ursaluna": "ガチグマ", -} as const; + "bloodmoon_ursaluna": "ガチグマ" +} \ No newline at end of file diff --git a/src/locales/ja/run-history.json b/src/locales/ja/run-history.json new file mode 100644 index 00000000000..222f7de728d --- /dev/null +++ b/src/locales/ja/run-history.json @@ -0,0 +1,37 @@ +{ + "victory": "勝利!", + "defeatedWild": "倒された相手:", + "defeatedTrainer": "倒された相手:", + "defeatedTrainerDouble": "倒された相手:", + "defeatedRival": "倒された相手:", + "defeated": "敗北", + "defeatedWild_female": "倒された相手:", + "defeatedTrainer_female": "倒された相手:", + "defeatedTrainerDouble_female": "倒された相手:", + "defeatedRival_female": "倒された相手:", + "defeated_female": "敗北", + "luck": "運", + "score": "スコア", + "mode": "モード", + "challengeRules": "チャレンジ", + "challengeMonoGen1": "I世代", + "challengeMonoGen2": "II世代", + "challengeMonoGen3": "III世代", + "challengeMonoGen4": "IV世代", + "challengeMonoGen5": "V世代", + "challengeMonoGen6": "VI世代", + "challengeMonoGen7": "VII世代", + "challengeMonoGen8": "VIII世代", + "challengeMonoGen9": "IX世代", + "playerItems": "プレイヤーアイテム", + "personalBest": "自己ベスト!", + "SPDshortened": "速さ", + "runInfo": "ラン情報", + "money": "お金", + "runLength": "ラン最高ウェーブ", + "viewHeldItems": "手持ちアイテム", + "hallofFameText": "殿堂へようこそ!", + "hallofFameText_female": "殿堂へようこそ!", + "viewHallOfFame": "殿堂登録を見る!", + "viewEndingSplash": "クリア後のアートを見る!" +} \ No newline at end of file diff --git a/src/locales/ja/save-slot-select-ui-handler.json b/src/locales/ja/save-slot-select-ui-handler.json new file mode 100644 index 00000000000..a84e3aca23d --- /dev/null +++ b/src/locales/ja/save-slot-select-ui-handler.json @@ -0,0 +1,7 @@ +{ + "overwriteData": "選択した スロットに データを 上書きします?", + "loading": "読込中…", + "wave": "波", + "lv": "Lv", + "empty": "なし" +} \ No newline at end of file diff --git a/src/locales/ja/save-slot-select-ui-handler.ts b/src/locales/ja/save-slot-select-ui-handler.ts deleted file mode 100644 index 0b02eb7365a..00000000000 --- a/src/locales/ja/save-slot-select-ui-handler.ts +++ /dev/null @@ -1,9 +0,0 @@ -import { SimpleTranslationEntries } from "#app/interfaces/locales"; - -export const saveSlotSelectUiHandler: SimpleTranslationEntries = { - "overwriteData": "選択した スロットに データを 上書きします?", - "loading": "読込中…", - "wave": "波",//This needs to be preceded by 第[x],e.g.第1波、第248波 - "lv": "Lv", - "empty": "なし", -} as const; diff --git a/src/locales/ja/settings.ts b/src/locales/ja/settings.json similarity index 59% rename from src/locales/ja/settings.ts rename to src/locales/ja/settings.json index ef20d071d2d..c88792979f6 100644 --- a/src/locales/ja/settings.ts +++ b/src/locales/ja/settings.json @@ -1,6 +1,4 @@ -import { SimpleTranslationEntries } from "#app/interfaces/locales.js"; - -export const settings: SimpleTranslationEntries = { +{ "boy": "男の子", "girl": "女の子", "general": "全般", @@ -12,10 +10,8 @@ export const settings: SimpleTranslationEntries = { "hpBarSpeed": "HPバーの増減スピード", "expGainsSpeed": "EXPバーの増加スピード", "expPartyDisplay": "パーティの経験値取得表示", - "skipSeenDialogues": "Skip Seen Dialogues", "battleStyle": "試合のルール", "enableRetries": "リトライを有効にする", - "hideIvs": "Hide IV scanner", "tutorials": "チュートリアル", "touchControls": "タッチ操作", "vibrations": "振動", @@ -43,38 +39,19 @@ export const settings: SimpleTranslationEntries = { "abbreviated": "省略", "moveAnimations": "戦闘アニメ", "showStatsOnLevelUp": "レベルアップ時のステータス表示", - "candyUpgradeNotification": "Candy Upgrade Notification", "passivesOnly": "パッシブのみ", - "candyUpgradeDisplay": "Candy Upgrade Display", "icon": "アイコン", "animation": "アニメーション", "moveInfo": "技の情報表示", - "showMovesetFlyout": "Show Moveset Flyout", - "showArenaFlyout": "Show Arena Flyout", - "showTimeOfDayWidget": "Show Time of Day Widget", - "timeOfDayAnimation": "Time of Day Animation", - "bounce": "Bounce", - "timeOfDay_back": "Back", - "spriteSet": "Sprite Set", - "consistent": "Consistent", - "mixedAnimated": "Mixed Animated", - "fusionPaletteSwaps": "Fusion Palette Swaps", "playerGender": "プレイヤーの性別", "typeHints": "相性のヒント", "masterVolume": "マスターボリューム", "bgmVolume": "BGMのボリューム", "seVolume": "SEのボリューム", - "musicPreference": "Music Preference", - "mixed": "Mixed", - "gamepadPleasePlug": "Please Plug in a Gamepad or Press a Button", - "delete": "Delete", - "keyboardPleasePress": "Please Press a Key on Your Keyboard", "reset": "リセット", "requireReload": "再読み込みが必要", "action": "決定", "back": "戻る", - "pressToBind": "Press to Bind", - "pressButton": "Press a Button...", "buttonUp": "上", "buttonDown": "下", "buttonLeft": "左", @@ -83,19 +60,8 @@ export const settings: SimpleTranslationEntries = { "buttonMenu": "メニュー", "buttonSubmit": "Submit", "buttonCancel": "キャンセル", - "buttonStats": "Stats", - "buttonCycleForm": "Cycle Form", - "buttonCycleShiny": "Cycle Shiny", - "buttonCycleGender": "Cycle Gender", - "buttonCycleAbility": "Cycle Ability", - "buttonCycleNature": "Cycle Nature", - "buttonCycleVariant": "Cycle Variant", - "buttonSpeedUp": "Speed Up", - "buttonSlowDown": "Slow Down", "alt": " (代替)", "mute": "ミュート", "controller": "コントローラー", - "gamepadSupport": "コントローラーサポート", - "showBgmBar": "Show Music Names", - "shopOverlayOpacity": "Shop Overlay Opacity", -} as const; + "gamepadSupport": "コントローラーサポート" +} diff --git a/src/locales/ja/splash-messages.json b/src/locales/ja/splash-messages.json new file mode 100644 index 00000000000..9e26dfeeb6e --- /dev/null +++ b/src/locales/ja/splash-messages.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/src/locales/ja/starter-select-ui-handler.ts b/src/locales/ja/starter-select-ui-handler.json similarity index 81% rename from src/locales/ja/starter-select-ui-handler.ts rename to src/locales/ja/starter-select-ui-handler.json index d33f8b6f97e..84eaa8598e9 100644 --- a/src/locales/ja/starter-select-ui-handler.ts +++ b/src/locales/ja/starter-select-ui-handler.json @@ -1,11 +1,4 @@ -import { SimpleTranslationEntries } from "#app/interfaces/locales"; - -/** - * The menu namespace holds most miscellaneous text that isn't directly part of the game's - * contents or directly related to Pokemon data. This includes menu navigation, settings, - * account interactions, descriptive text, etc. - */ -export const starterSelectUiHandler: SimpleTranslationEntries = { +{ "confirmStartTeam": "この条件で チャレンジを 始めますか?", "confirmExit": "終了しますか?", "invalidParty": "手持ちは チャレンジの 条件で 認められない!", @@ -48,4 +41,4 @@ export const starterSelectUiHandler: SimpleTranslationEntries = { "locked": "開放されていない", "disabled": "無効", "uncaught": "捕まっていない" -}; +} \ No newline at end of file diff --git a/src/locales/ja/status-effect.json b/src/locales/ja/status-effect.json new file mode 100644 index 00000000000..8dafbbdcba7 --- /dev/null +++ b/src/locales/ja/status-effect.json @@ -0,0 +1,65 @@ +{ + "none": { + "name": "なし", + "description": "", + "obtain": "", + "obtainSource": "", + "activation": "", + "overlap": "", + "heal": "" + }, + "poison": { + "name": "どく", + "description": "どく", + "obtain": "{{pokemonNameWithAffix}}は\n毒を あびた!", + "obtainSource": "{{pokemonNameWithAffix}}は\n{{sourceText}}で 毒を あびた!", + "activation": "{{pokemonNameWithAffix}}は\n毒の ダメージを 受けた!", + "overlap": "{{pokemonNameWithAffix}}は すでに\n毒を あびている", + "heal": "{{pokemonNameWithAffix}}の 毒は\nきれいさっぱり なくなった!" + }, + "toxic": { + "name": "もうどく", + "description": "もうどく", + "obtain": "{{pokemonNameWithAffix}}は\n猛毒を あびた!", + "obtainSource": "{{pokemonNameWithAffix}}は\n{{sourceText}}で 猛毒を あびた!", + "activation": "{{pokemonNameWithAffix}}は\n毒の ダメージを受けた!", + "overlap": "{{pokemonNameWithAffix}}は すでに\n毒を あびている", + "heal": "{{pokemonNameWithAffix}}の 毒は\nきれいさっぱり なくなった!" + }, + "paralysis": { + "name": "まひ", + "description": "まひ", + "obtain": "{{pokemonNameWithAffix}}は まひして\n技が でにくくなった!", + "obtainSource": "{{pokemonNameWithAffix}}は {{sourceText}}で まひして\n技が でにくくなった!", + "activation": "{{pokemonNameWithAffix}}は\n体が しびれて 動けない!", + "overlap": "{{pokemonNameWithAffix}}は\nすでに まひしている", + "heal": "{{pokemonNameWithAffix}}の\nしびれが とれた!" + }, + "sleep": { + "name": "ねむり", + "description": "ねむり", + "obtain": "{{pokemonNameWithAffix}}は\n眠ってしまった!", + "obtainSource": "{{pokemonNameWithAffix}}は\n{{sourceText}}で 眠ってしまった!", + "activation": "{{pokemonNameWithAffix}}は\nぐうぐう 眠っている", + "overlap": "{{pokemonNameWithAffix}}は\nすでに 眠っている", + "heal": "{{pokemonNameWithAffix}}は\n目を 覚ました!" + }, + "freeze": { + "name": "こおり", + "description": "こおり", + "obtain": "{{pokemonNameWithAffix}}は\n凍りついた!", + "obtainSource": "{{pokemonNameWithAffix}}は\n{{sourceText}}で 凍りついた!", + "activation": "{{pokemonNameWithAffix}}は\n凍ってしまって 動けない!", + "overlap": "{{pokemonNameWithAffix}}は\nすでに 凍っている", + "heal": "{{pokemonNameWithAffix}}は\nこおり状態が 治った!" + }, + "burn": { + "name": "やけど", + "description": "やけど", + "obtain": "{{pokemonNameWithAffix}}は\nやけどを 負った!", + "obtainSource": "{{pokemonNameWithAffix}}は\n{{sourceText}}で やけどを 負った!", + "activation": "{{pokemonNameWithAffix}}は\nやけどの ダメージを 受けた!", + "overlap": "{{pokemonNameWithAffix}}は すでに\nやけどを 負っている", + "heal": "{{pokemonNameWithAffix}}の\nやけどが 治った!" + } +} \ No newline at end of file diff --git a/src/locales/ja/status-effect.ts b/src/locales/ja/status-effect.ts deleted file mode 100644 index b15907f3b33..00000000000 --- a/src/locales/ja/status-effect.ts +++ /dev/null @@ -1,67 +0,0 @@ -import { StatusEffectTranslationEntries } from "#app/interfaces/locales.js"; - -export const statusEffect: StatusEffectTranslationEntries = { - none: { - name: "なし", - description: "", - obtain: "", - obtainSource: "", - activation: "", - overlap: "", - heal: "" - }, - poison: { - name: "どく", - description: "どく", - obtain: "{{pokemonNameWithAffix}}は\n毒を あびた!", - obtainSource: "{{pokemonNameWithAffix}}は\n{{sourceText}}で 毒を あびた!", - activation: "{{pokemonNameWithAffix}}は\n毒の ダメージを 受けた!", - overlap: "{{pokemonNameWithAffix}}は すでに\n毒を あびている", - heal: "{{pokemonNameWithAffix}}の 毒は\nきれいさっぱり なくなった!" - }, - toxic: { - name: "もうどく", - description: "もうどく", - obtain: "{{pokemonNameWithAffix}}は\n猛毒を あびた!", - obtainSource: "{{pokemonNameWithAffix}}は\n{{sourceText}}で 猛毒を あびた!", - activation: "{{pokemonNameWithAffix}}は\n毒の ダメージを受けた!", - overlap: "{{pokemonNameWithAffix}}は すでに\n毒を あびている", - heal: "{{pokemonNameWithAffix}}の 毒は\nきれいさっぱり なくなった!" - }, - paralysis: { - name: "まひ", - description: "まひ", - obtain: "{{pokemonNameWithAffix}}は まひして\n技が でにくくなった!", - obtainSource: "{{pokemonNameWithAffix}}は {{sourceText}}で まひして\n技が でにくくなった!", - activation: "{{pokemonNameWithAffix}}は\n体が しびれて 動けない!", - overlap: "{{pokemonNameWithAffix}}は\nすでに まひしている", - heal: "{{pokemonNameWithAffix}}の\nしびれが とれた!" - }, - sleep: { - name: "ねむり", - description: "ねむり", - obtain: "{{pokemonNameWithAffix}}は\n眠ってしまった!", - obtainSource: "{{pokemonNameWithAffix}}は\n{{sourceText}}で 眠ってしまった!", - activation: "{{pokemonNameWithAffix}}は\nぐうぐう 眠っている", - overlap: "{{pokemonNameWithAffix}}は\nすでに 眠っている", - heal: "{{pokemonNameWithAffix}}は\n目を 覚ました!" - }, - freeze: { - name: "こおり", - description: "こおり", - obtain: "{{pokemonNameWithAffix}}は\n凍りついた!", - obtainSource: "{{pokemonNameWithAffix}}は\n{{sourceText}}で 凍りついた!", - activation: "{{pokemonNameWithAffix}}は\n凍ってしまって 動けない!", - overlap: "{{pokemonNameWithAffix}}は\nすでに 凍っている", - heal: "{{pokemonNameWithAffix}}は\nこおり状態が 治った!" - }, - burn: { - name: "やけど", - description: "やけど", - obtain: "{{pokemonNameWithAffix}}は\nやけどを 負った!", - obtainSource: "{{pokemonNameWithAffix}}は\n{{sourceText}}で やけどを 負った!", - activation: "{{pokemonNameWithAffix}}は\nやけどの ダメージを 受けた!", - overlap: "{{pokemonNameWithAffix}}は すでに\nやけどを 負っている", - heal: "{{pokemonNameWithAffix}}の\nやけどが 治った!" - }, -} as const; diff --git a/src/locales/ja/terrain.json b/src/locales/ja/terrain.json new file mode 100644 index 00000000000..1e0fc60fc62 --- /dev/null +++ b/src/locales/ja/terrain.json @@ -0,0 +1,16 @@ +{ + "misty": "ミストフィールド", + "mistyStartMessage": "足下に 霧(きり)が立ち込めた!", + "mistyClearMessage": "足下の 霧(きり)が消え去った!", + "mistyBlockMessage": "{{pokemonNameWithAffix}}は\nミストフィールドに 守られている!", + "electric": "エレキフィールド", + "electricStartMessage": "足下に 電気が かけめぐる!", + "electricClearMessage": "足下の 電気が 消え去った!", + "grassy": "グラスフィールド", + "grassyStartMessage": "足下に 草がおいしげった!", + "grassyClearMessage": "足下の 草が消え去った!", + "psychic": "サイコフィールド", + "psychicStartMessage": "足元が 不思議な感じに なった!", + "psychicClearMessage": "足元の 不思議感が 消え去った!", + "defaultBlockMessage": "{{pokemonNameWithAffix}}は\n{{terrainName}}に 守られている!" +} \ No newline at end of file diff --git a/src/locales/ja/trainer-classes.json b/src/locales/ja/trainer-classes.json new file mode 100644 index 00000000000..9e26dfeeb6e --- /dev/null +++ b/src/locales/ja/trainer-classes.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/src/locales/ja/trainer-names.json b/src/locales/ja/trainer-names.json new file mode 100644 index 00000000000..9e26dfeeb6e --- /dev/null +++ b/src/locales/ja/trainer-names.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/src/locales/ja/trainer-titles.json b/src/locales/ja/trainer-titles.json new file mode 100644 index 00000000000..9e26dfeeb6e --- /dev/null +++ b/src/locales/ja/trainer-titles.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/src/locales/ja/trainers.ts b/src/locales/ja/trainers.ts deleted file mode 100644 index a40fabaeacc..00000000000 --- a/src/locales/ja/trainers.ts +++ /dev/null @@ -1,322 +0,0 @@ -import {SimpleTranslationEntries} from "#app/interfaces/locales"; - -// Titles of special trainers like gym leaders, elite four, and the champion -export const titles: SimpleTranslationEntries = { - "elite_four": "Elite Four", - "elite_four_female": "Elite Four", - "gym_leader": "Gym Leader", - "gym_leader_female": "Gym Leader", - "gym_leader_double": "Gym Leader Duo", - "champion": "Champion", - "champion_female": "Champion", - "champion_double": "Champion Duo", - "rival": "Rival", - "professor": "Professor", - "frontier_brain": "Frontier Brain", - "rocket_boss": "Team Rocket Boss", - "magma_boss": "Team Magma Boss", - "aqua_boss": "Team Aqua Boss", - "galactic_boss": "Team Galactic Boss", - "plasma_boss": "Team Plasma Boss", - "flare_boss": "Team Flare Boss", - - "rocket_admin": "Team Rocket Admin", - "rocket_admin_female": "Team Rocket Admin", - "magma_admin": "Team Magma Admin", - "magma_admin_female": "Team Magma Admin", - "aqua_admin": "Team Aqua Admin", - "aqua_admin_female": "Team Aqua Admin", - "galactic_commander": "Team Galactic Commander", - "galactic_commander_female": "Team Galactic Commander", - "plasma_sage": "Team Plasma Sage", - "plasma_admin": "Team Plasma Admin", - "flare_admin": "Team Flare Admin", - "flare_admin_female": "Team Flare Admin", - // Maybe if we add the evil teams we can add "Team Rocket" and "Team Aqua" etc. here as well as "Team Rocket Boss" and "Team Aqua Admin" etc. -} as const; - -// Titles of trainers like "Youngster" or "Lass" -export const trainerClasses: SimpleTranslationEntries = { - "ace_trainer": "Ace Trainer", - "ace_trainer_female": "Ace Trainer", - "ace_duo": "Ace Duo", - "artist": "Artist", - "artist_female": "Artist", - "backers": "Backers", - "backpacker": "Backpacker", - "backpacker_female": "Backpacker", - "backpackers": "Backpackers", - "baker": "Baker", - "battle_girl": "Battle Girl", - "beauty": "Beauty", - "beginners": "Beginners", - "biker": "Biker", - "black_belt": "Black Belt", - "breeder": "Breeder", - "breeder_female": "Breeder", - "breeders": "Breeders", - "clerk": "Clerk", - "clerk_female": "Clerk", - "colleagues": "Colleagues", - "crush_kin": "Crush Kin", - "cyclist": "Cyclist", - "cyclist_female": "Cyclist", - "cyclists": "Cyclists", - "dancer": "Dancer", - "dancer_female": "Dancer", - "depot_agent": "Depot Agent", - "doctor": "Doctor", - "doctor_female": "Doctor", - "firebreather": "Firebreather", - "fisherman": "Fisherman", - "fisherman_female": "Fisherman", - "gentleman": "Gentleman", - "guitarist": "Guitarist", - "guitarist_female": "Guitarist", - "harlequin": "Harlequin", - "hiker": "Hiker", - "hooligans": "Hooligans", - "hoopster": "Hoopster", - "infielder": "Infielder", - "janitor": "Janitor", - "lady": "Lady", - "lass": "Lass", - "linebacker": "Linebacker", - "maid": "Maid", - "madame": "Madame", - "medical_team": "Medical Team", - "musician": "Musician", - "hex_maniac": "Hex Maniac", - "nurse": "Nurse", - "nursery_aide": "Nursery Aide", - "officer": "Officer", - "parasol_lady": "Parasol Lady", - "pilot": "Pilot", - "pokéfan": "Poké Fan", - "pokéfan_female": "Poké Fan", - "pokéfan_family": "Poké Fan Family", - "preschooler": "Preschooler", - "preschooler_female": "Preschooler", - "preschoolers": "Preschoolers", - "psychic": "Psychic", - "psychic_female": "Psychic", - "psychics": "Psychics", - "pokémon_ranger": "Pokémon Ranger", - "pokémon_ranger_female": "Pokémon Ranger", - "pokémon_rangers": "Pokémon Ranger", - "ranger": "Ranger", - "restaurant_staff": "Restaurant Staff", - "rich": "Rich", - "rich_female": "Rich", - "rich_boy": "Rich Boy", - "rich_couple": "Rich Couple", - "rich_kid": "Rich Kid", - "rich_kid_female": "Rich Kid", - "rich_kids": "Rich Kids", - "roughneck": "Roughneck", - "sailor": "Sailor", - "scientist": "Scientist", - "scientist_female": "Scientist", - "scientists": "Scientists", - "smasher": "Smasher", - "snow_worker": "Snow Worker", - "snow_worker_female": "Snow Worker", - "striker": "Striker", - "school_kid": "School Kid", - "school_kid_female": "School Kid", - "school_kids": "School Kids", - "swimmer": "Swimmer", - "swimmer_female": "Swimmer", - "swimmers": "Swimmers", - "twins": "Twins", - "veteran": "Veteran", - "veteran_female": "Veteran", - "veteran_duo": "Veteran Duo", - "waiter": "Waiter", - "waitress": "Waitress", - "worker": "Worker", - "worker_female": "Worker", - "workers": "Workers", - "youngster": "Youngster", - "rocket_grunt": "Rocket Grunt", - "rocket_grunts": "Rocket Grunts", - "rocket_grunt_female": "Rocket Grunt", - "magma_grunt": "Magma Grunt", - "magma_grunt_female": "Magma Grunt", - "magma_grunts": "Magma Grunts", - "aqua_grunt": "Aqua Grunt", - "aqua_grunt_female": "Aqua Grunt", - "aqua_grunts": "Aqua Grunts", - "galactic_grunt": "Galactic Grunt", - "galactic_grunt_female": "Galactic Grunt", - "galactic_grunts": "Galactic Grunts", - "plasma_grunt": "Plasma Grunt", - "plasma_grunt_female": "Plasma Grunt", - "plasma_grunts": "Plasma Grunts", - "flare_grunt": "Flare Grunt", - "flare_grunt_female": "Flare Grunt", - "flare_grunts": "Flare Grunts", -} as const; - -// Names of special trainers like gym leaders, elite four, and the champion -export const trainerNames: SimpleTranslationEntries = { - "brock": "Brock", - "misty": "Misty", - "lt_surge": "Lt Surge", - "erika": "Erika", - "janine": "Janine", - "sabrina": "Sabrina", - "blaine": "Blaine", - "giovanni": "Giovanni", - "falkner": "Falkner", - "bugsy": "Bugsy", - "whitney": "Whitney", - "morty": "Morty", - "chuck": "Chuck", - "jasmine": "Jasmine", - "pryce": "Pryce", - "clair": "Clair", - "roxanne": "Roxanne", - "brawly": "Brawly", - "wattson": "Wattson", - "flannery": "Flannery", - "norman": "Norman", - "winona": "Winona", - "tate": "Tate", - "liza": "Liza", - "juan": "Juan", - "roark": "Roark", - "gardenia": "Gardenia", - "maylene": "Maylene", - "crasher_wake": "Crasher Wake", - "fantina": "Fantina", - "byron": "Byron", - "candice": "Candice", - "volkner": "Volkner", - "cilan": "Cilan", - "chili": "Chili", - "cress": "Cress", - "cheren": "Cheren", - "lenora": "Lenora", - "roxie": "Roxie", - "burgh": "Burgh", - "elesa": "Elesa", - "clay": "Clay", - "skyla": "Skyla", - "brycen": "Brycen", - "drayden": "Drayden", - "marlon": "Marlon", - "viola": "Viola", - "grant": "Grant", - "korrina": "Korrina", - "ramos": "Ramos", - "clemont": "Clemont", - "valerie": "Valerie", - "olympia": "Olympia", - "wulfric": "Wulfric", - "milo": "Milo", - "nessa": "Nessa", - "kabu": "Kabu", - "bea": "Bea", - "allister": "Allister", - "opal": "Opal", - "bede": "Bede", - "gordie": "Gordie", - "melony": "Melony", - "piers": "Piers", - "marnie": "Marnie", - "raihan": "Raihan", - "katy": "Katy", - "brassius": "Brassius", - "iono": "Iono", - "kofu": "Kofu", - "larry": "Larry", - "ryme": "Ryme", - "tulip": "Tulip", - "grusha": "Grusha", - "lorelei": "Lorelei", - "bruno": "Bruno", - "agatha": "Agatha", - "lance": "Lance", - "will": "Will", - "koga": "Koga", - "karen": "Karen", - "sidney": "Sidney", - "phoebe": "Phoebe", - "glacia": "Glacia", - "drake": "Drake", - "aaron": "Aaron", - "bertha": "Bertha", - "flint": "Flint", - "lucian": "Lucian", - "shauntal": "Shauntal", - "marshal": "Marshal", - "grimsley": "Grimsley", - "caitlin": "Caitlin", - "malva": "Malva", - "siebold": "Siebold", - "wikstrom": "Wikstrom", - "drasna": "Drasna", - "hala": "Hala", - "molayne": "Molayne", - "olivia": "Olivia", - "acerola": "Acerola", - "kahili": "Kahili", - "rika": "Rika", - "poppy": "Poppy", - "hassel": "Hassel", - "crispin": "Crispin", - "amarys": "Amarys", - "lacey": "Lacey", - "drayton": "Drayton", - "blue": "Blue", - "red": "Red", - "steven": "Steven", - "wallace": "Wallace", - "cynthia": "Cynthia", - "alder": "Alder", - "iris": "Iris", - "diantha": "Diantha", - "hau": "Hau", - "geeta": "Geeta", - "nemona": "Nemona", - "kieran": "Kieran", - "leon": "Leon", - "rival": "Finn", - "rival_female": "Ivy", - - // Evil Team Admins - "archer": "Archer", - "ariana": "Ariana", - "proton": "Proton", - "petrel": "Petrel", - "tabitha": "Tabitha", - "courtney": "Courtney", - "shelly": "Shelly", - "matt": "Matt", - "mars": "Mars", - "jupiter": "Jupiter", - "saturn": "Saturn", - "zinzolin": "Zinzolin", - "rood": "Rood", - "xerosic": "Xerosic", - "bryony": "Bryony", - - "maxie": "Maxie", - "archie": "Archie", - "cyrus": "Cyrus", - "ghetsis": "Ghetsis", - "lysandre": "Lysandre", - - // Double Names - "blue_red_double": "Blue & Red", - "red_blue_double": "Red & Blue", - "tate_liza_double": "Tate & Liza", - "liza_tate_double": "Liza & Tate", - "steven_wallace_double": "Steven & Wallace", - "wallace_steven_double": "Wallace & Steven", - "alder_iris_double": "Alder & Iris", - "iris_alder_double": "Iris & Alder", - "marnie_piers_double": "Marnie & Piers", - "piers_marnie_double": "Piers & Marnie", -} as const; diff --git a/src/locales/ja/tutorial.json b/src/locales/ja/tutorial.json new file mode 100644 index 00000000000..21b1b4856c8 --- /dev/null +++ b/src/locales/ja/tutorial.json @@ -0,0 +1,10 @@ +{ + "intro": "PokéRogueへようこそ!ログライク要素が\n加わったバトル中心のポケモンファンゲームです。\n$このゲームは収益を上げず、Pokémonおよび使用される\n著作権資産に対する所有権を主張しません。\n$ゲームはまだ作業中ですが、完全にプレイすることができます。\nバグ報告はディスコードコミュニティをご利用ください。\n$ゲームが遅い場合は、ブラウザ設定で「ハードウェア\nアクセラレーション」がオンになっていることを確認してください", + "accessMenu": "メニューにアクセスするには、入力待ちの間にMキーまたはEscを押してください。\nメニューには設定やさまざまな機能が含まれています。", + "menu": "このメニューから設定にアクセスできます。\n$設定ではゲームスピード、ウィンドウスタイル、\nおよびその他のオプションを変更できます。\n$ここにはさまざまな他の機能もありますので、\nぜひ確認してみてください!", + "starterSelect": "この画面でZキーやSpaceを押してポケモンを選択できます。\n選んだポケモンは自分の最初のパーティーになります。\n$最大6匹のパーティーで始めることができますが\nポケモンによってポイントがあり、合計10を超えてはなりません。\n$捕まえたりふかさせたりすることで\n選択できる性別、特性、フォルムなどの幅を広げることができます。\n$個体値も徐々に累積して高くなるので、\n同じポケモンをたくさん捕まえてみてください!", + "pokerus": "毎日ランダムでスターターの\n3種類に紫色の枠が表示されます。\n$登録されたスターターの中にあれば、\nパーティに追加してつよさを確認してみましょう!", + "statChange": "ポケモンは交代しない限り、\n次のバトルでも能力変化が維持されます。\n$その代わりに、トレーナーバトルや新しいバイオームに\n入る直前に自動的にリセットされます。\n$CキーまたはShiftキーを押し続けると、\n現在のポケモンの能力変化を確認できます。\n$Vキーを押すと、\n相手が使用した技も確認できます。\n$ただし、今のバトルで相手ポケモンがすでに\n使った技のみが表示されます。", + "selectItem": "バトルが終わるたびに、\nランダムなアイテム3つの中から1つを選んで獲得します。\n$種類は消耗品、ポケモンの持ち物、\n永続的なパッシブアイテムなど様々です。\n$ほとんどの消耗しない道具は\n効果が累積されます。\n$進化用など一部のアイテムは\n使用できる場合にのみ登場します。\n$持ち物を渡す機能を使用して\nポケモン同士で道具を持たせることもできます。\n$持ち物があれば、アイテム選択画面の\n右下に渡す機能が表示されます。\n$お金で消耗品を購入することもでき、\nウェーブが進むにつれて購入可能な種類が増えます。\n$アイテムを選択すると次のウェーブに進むため、\nまず消耗品の購入を行ってください。", + "eggGacha": "この画面でポケモンのたまごクーポンを\nガチャができます。\n$卵は戦闘を繰り返すうちにふかします。\n珍しいほどもっと長くかかります。\n$ふかさせたポケモンはパーティーに追加されず、\nスターティングに登録されます。\n$卵からふかしたポケモンは一般的に\n野生で捕まえたポケモンよりも高い個体値を持ちます。\n$一部のポケモンは卵からしか手に入りません。\n$各ガチャマシンがそれぞれ異なるボーナスを持っているため、\n好きな方を使ってみてください!," +} \ No newline at end of file diff --git a/src/locales/ja/tutorial.ts b/src/locales/ja/tutorial.ts deleted file mode 100644 index fa57037a052..00000000000 --- a/src/locales/ja/tutorial.ts +++ /dev/null @@ -1,44 +0,0 @@ -import { SimpleTranslationEntries } from "#app/interfaces/locales"; - -export const tutorial: SimpleTranslationEntries = { - intro: `PokéRogueへようこそ!ログライク要素が\n加わったバトル中心のポケモンファンゲームです。 - $このゲームは収益を上げず、Pokémonおよび使用される\n著作権資産に対する所有権を主張しません。 - $ゲームはまだ作業中ですが、完全にプレイすることができます。\nバグ報告はディスコードコミュニティをご利用ください。 - $ゲームが遅い場合は、ブラウザ設定で「ハードウェア\nアクセラレーション」がオンになっていることを確認してください`, - - accessMenu: "メニューにアクセスするには、入力待ちの間にMキーまたはEscを押してください。\nメニューには設定やさまざまな機能が含まれています。", - - menu: `このメニューから設定にアクセスできます。 - $設定ではゲームスピード、ウィンドウスタイル、\nおよびその他のオプションを変更できます。 - $ここにはさまざまな他の機能もありますので、\nぜひ確認してみてください!`, - - starterSelect: `この画面でZキーやSpaceを押してポケモンを選択できます。\n選んだポケモンは自分の最初のパーティーになります。 - $最大6匹のパーティーで始めることができますが\nポケモンによってポイントがあり、合計10を超えてはなりません。 - $捕まえたりふかさせたりすることで\n選択できる性別、特性、フォルムなどの幅を広げることができます。 - $個体値も徐々に累積して高くなるので、\n同じポケモンをたくさん捕まえてみてください!`, - - pokerus: `毎日ランダムでスターターの\n3種類に紫色の枠が表示されます。 - $登録されたスターターの中にあれば、\nパーティに追加してつよさを確認してみましょう!`, - - statChange: `ポケモンは交代しない限り、\n次のバトルでも能力変化が維持されます。 - $その代わりに、トレーナーバトルや新しいバイオームに\n入る直前に自動的にリセットされます。 - $CキーまたはShiftキーを押し続けると、\n現在のポケモンの能力変化を確認できます。 - $Vキーを押すと、\n相手が使用した技も確認できます。 - $ただし、今のバトルで相手ポケモンがすでに\n使った技のみが表示されます。`, - - selectItem: `バトルが終わるたびに、\nランダムなアイテム3つの中から1つを選んで獲得します。 - $種類は消耗品、ポケモンの持ち物、\n永続的なパッシブアイテムなど様々です。 - $ほとんどの消耗しない道具は\n効果が累積されます。 - $進化用など一部のアイテムは\n使用できる場合にのみ登場します。 - $持ち物を渡す機能を使用して\nポケモン同士で道具を持たせることもできます。 - $持ち物があれば、アイテム選択画面の\n右下に渡す機能が表示されます。 - $お金で消耗品を購入することもでき、\nウェーブが進むにつれて購入可能な種類が増えます。 - $アイテムを選択すると次のウェーブに進むため、\nまず消耗品の購入を行ってください。`, - - eggGacha: `この画面でポケモンのたまごクーポンを\nガチャができます。 - $卵は戦闘を繰り返すうちにふかします。\n珍しいほどもっと長くかかります。 - $ふかさせたポケモンはパーティーに追加されず、\nスターティングに登録されます。 - $卵からふかしたポケモンは一般的に\n野生で捕まえたポケモンよりも高い個体値を持ちます。 - $一部のポケモンは卵からしか手に入りません。 - $各ガチャマシンがそれぞれ異なるボーナスを持っているため、\n好きな方を使ってみてください!,`, -} as const; diff --git a/src/locales/ja/voucher.ts b/src/locales/ja/voucher.json similarity index 71% rename from src/locales/ja/voucher.ts rename to src/locales/ja/voucher.json index cc2fb7e2050..eabe384bc98 100644 --- a/src/locales/ja/voucher.ts +++ b/src/locales/ja/voucher.json @@ -1,6 +1,4 @@ -import { SimpleTranslationEntries } from "#app/interfaces/locales"; - -export const voucher: SimpleTranslationEntries = { +{ "vouchers": "クーポン", "eggVoucher": "タマゴクーポン", "eggVoucherPlus": "タマゴクーポン・プラス", @@ -8,4 +6,4 @@ export const voucher: SimpleTranslationEntries = { "eggVoucherGold": "タマゴクーポン・ゴールド", "locked": "なし", "defeatTrainer": "{{trainerName}}を 倒す" -} as const; +} \ No newline at end of file diff --git a/src/locales/ja/weather.ts b/src/locales/ja/weather.json similarity index 63% rename from src/locales/ja/weather.ts rename to src/locales/ja/weather.json index a346983d8ec..92728b81461 100644 --- a/src/locales/ja/weather.ts +++ b/src/locales/ja/weather.json @@ -1,66 +1,32 @@ -import { SimpleTranslationEntries } from "#app/interfaces/locales"; - -/** - * The weather namespace holds text displayed when weather is active during a battle - */ -export const weather: SimpleTranslationEntries = { +{ "sunnyStartMessage": "日差しが 強くなった!", "sunnyLapseMessage": "日差しが 強い!", "sunnyClearMessage": "日差しが 元に戻った!", - "rainStartMessage": "雨が 降り始めた!", "rainLapseMessage": "雨が 降っている!", "rainClearMessage": "雨が あがった!", - "sandstormStartMessage": "砂あらしが 吹き始めた!", "sandstormLapseMessage": "砂あらしが 吹きあれる!", "sandstormClearMessage": "砂あらしが おさまった!", "sandstormDamageMessage": "砂あらしが\n{{pokemonNameWithAffix}}を 襲う!", - "hailStartMessage": "あられが 降り始めた!", "hailLapseMessage": "あられが 降っている!", "hailClearMessage": "あられが 止んだ!", "hailDamageMessage": "あられが\n{{pokemonNameWithAffix}}を 襲う!", - "snowStartMessage": "雪が 降り始めた!", "snowLapseMessage": "雪が 降っている!", "snowClearMessage": "雪が 止んだ!", - "fogStartMessage": "足下に 霧(きり)が立ち込めた!", "fogLapseMessage": "足下に 霧(きり)が 立ち込めている!", "fogClearMessage": "足下の 霧(きり)が消え去った!", - "heavyRainStartMessage": "強い雨が 降り始めた!", "heavyRainLapseMessage": "強い雨が 降っている!", "heavyRainClearMessage": "強い雨が あがった!", - "harshSunStartMessage": "日差しが とても強くなった!", "harshSunLapseMessage": "日差しが とても強い!", "harshSunClearMessage": "日差しが 元に戻った!", - "strongWindsStartMessage": "謎(なぞ)の 乱気流(らんきりゅう)が\nひこうポケモンを 護(まも)る!", "strongWindsLapseMessage": "謎(なぞ)の 乱気流(らんきりゅう)の 勢(いきお)いは 止まらない!", "strongWindsEffectMessage": "謎(なぞ)の 乱気流(らんきりゅう)が 攻撃(こうげき)を 弱(よわ)めた!", "strongWindsClearMessage": "謎(なぞ)の 乱気流(らんきりゅう)が おさまった!" -}; - -export const terrain: SimpleTranslationEntries = { - "misty": "ミストフィールド", - "mistyStartMessage": "足下に 霧(きり)が立ち込めた!", - "mistyClearMessage": "足下の 霧(きり)が消え去った!", - "mistyBlockMessage": "{{pokemonNameWithAffix}}は\nミストフィールドに 守られている!", - - "electric": "エレキフィールド", - "electricStartMessage": "足下に 電気が かけめぐる!", - "electricClearMessage": "足下の 電気が 消え去った!", - - "grassy": "グラスフィールド", - "grassyStartMessage": "足下に 草がおいしげった!", - "grassyClearMessage": "足下の 草が消え去った!", - - "psychic": "サイコフィールド", - "psychicStartMessage": "足元が 不思議な感じに なった!", - "psychicClearMessage": "足元の 不思議感が 消え去った!", - - "defaultBlockMessage": "{{pokemonNameWithAffix}}は\n{{terrainName}}に 守られている!" -}; +} \ No newline at end of file diff --git a/src/locales/ko/ability-trigger.ts b/src/locales/ko/ability-trigger.json similarity index 92% rename from src/locales/ko/ability-trigger.ts rename to src/locales/ko/ability-trigger.json index 974e6970569..5cf94e92235 100644 --- a/src/locales/ko/ability-trigger.ts +++ b/src/locales/ko/ability-trigger.json @@ -1,7 +1,5 @@ -import { SimpleTranslationEntries } from "#app/interfaces/locales"; - -export const abilityTriggers: SimpleTranslationEntries = { - "blockRecoilDamage" : "{{pokemonName}}[[는]] {{abilityName}} 때문에\n반동 데미지를 받지 않는다!", +{ + "blockRecoilDamage": "{{pokemonName}}[[는]] {{abilityName}} 때문에\n반동 데미지를 받지 않는다!", "badDreams": "{{pokemonName}}[[는]]\n나이트메어 때문에 시달리고 있다!", "costar": "{{pokemonName}}[[는]] {{allyName}}의\n능력 변화를 복사했다!", "iceFaceAvoidedDamage": "{{pokemonNameWithAffix}}[[는]] {{abilityName}} 때문에\n데미지를 받지 않는다!", @@ -10,7 +8,7 @@ export const abilityTriggers: SimpleTranslationEntries = { "trace": "{{pokemonName}}[[는]] 상대 {{targetName}}의 \n{{abilityName}}[[를]] 트레이스했다!", "windPowerCharged": "{{pokemonName}}[[는]]\n{{moveName}}에 맞아 충전되었다!", "quickDraw": "{{pokemonName}}[[는]]\n퀵드로에 의해 행동이 빨라졌다!", - "disguiseAvoidedDamage" : "{{pokemonNameWithAffix}}의 정체가 드러났다!", + "disguiseAvoidedDamage": "{{pokemonNameWithAffix}}의 정체가 드러났다!", "blockItemTheft": "{{pokemonNameWithAffix}}의 {{abilityName}}에 의해\n도구를 빼앗기지 않는다!", "typeImmunityHeal": "{{pokemonNameWithAffix}}[[는]]\n{{abilityName}}[[로]] 체력이 회복되었다!", "nonSuperEffectiveImmunity": "{{pokemonNameWithAffix}}[[는]] {{abilityName}} 때문에\n데미지를 입지 않는다!", @@ -30,7 +28,7 @@ export const abilityTriggers: SimpleTranslationEntries = { "postSummonClearAllyStats": "{{pokemonNameWithAffix}}의\n능력 변화가 원래대로 되돌아왔다!", "postSummonTransform": "{{pokemonNameWithAffix}}[[는]]\n{{targetName}}[[로]] 변신했다!!", "protectStat": "{{pokemonNameWithAffix}}[[는]] {{abilityName}}의 효과로\n{{statName}}[[가]] 떨어지지 않는다!", - "statusEffectImmunityWithName": "{{pokemonNameWithAffix}}[[는]] {{abilityName}} 때문에\{{statusEffectName}}에 걸리지 않는다!", + "statusEffectImmunityWithName": "{{pokemonNameWithAffix}}[[는]] {{abilityName}} 때문에\n{{statusEffectName}}에 걸리지 않는다!", "statusEffectImmunity": "{{pokemonNameWithAffix}}[[는]] {{abilityName}} 때문에\n상태 이상이 되지 않는다!", "battlerTagImmunity": "{{pokemonNameWithAffix}}[[는]] {{abilityName}}[[로]]\n{{battlerTagName}}[[를]] 무시했다!", "forewarn": "{{pokemonNameWithAffix}}의\n{{moveName}}[[를]] 간파했다!", @@ -46,6 +44,7 @@ export const abilityTriggers: SimpleTranslationEntries = { "postFaintContactDamage": "{{pokemonNameWithAffix}}[[는]] {{abilityName}}[[로]]\n상대에게 데미지를 입혔다!", "postFaintHpDamage": "{{pokemonNameWithAffix}}[[는]] {{abilityName}}[[로]]\n상대에게 데미지를 입혔다!", "postSummonPressure": "{{pokemonNameWithAffix}}[[는]]\n프레셔를 발산하고 있다!", + "weatherEffectDisappeared": "날씨의 영향이 없어졌다!", "postSummonMoldBreaker": "{{pokemonNameWithAffix}}의\n틀깨기!", "postSummonAnticipation": "{{pokemonNameWithAffix}}[[는]]\n몸을 떨었다!", "postSummonTurboblaze": "{{pokemonNameWithAffix}}[[는]]\n활활 타오르는 오라를 발산하고 있다!", @@ -59,5 +58,5 @@ export const abilityTriggers: SimpleTranslationEntries = { "postSummonSwordOfRuin": "{{pokemonNameWithAffix}}의 재앙의검에 의해\n주위의 {{statName}}[[가]] 약해졌다!", "postSummonTabletsOfRuin": "{{pokemonNameWithAffix}}의 재앙의목간에 의해\n주위의 {{statName}}[[가]] 약해졌다!", "postSummonBeadsOfRuin": "{{pokemonNameWithAffix}}의 재앙의구슬에 의해\n주위의 {{statName}}[[가]] 약해졌다!", - "preventBerryUse": "{{pokemonNameWithAffix}}[[는]] 긴장해서\n나무열매를 먹을 수 없게 되었다!", -} as const; + "preventBerryUse": "{{pokemonNameWithAffix}}[[는]] 긴장해서\n나무열매를 먹을 수 없게 되었다!" +} \ No newline at end of file diff --git a/src/locales/ko/ability.json b/src/locales/ko/ability.json new file mode 100644 index 00000000000..420d27c6011 --- /dev/null +++ b/src/locales/ko/ability.json @@ -0,0 +1,1242 @@ +{ + "stench": { + "name": "악취", + "description": "악취를 풍겨서 공격했을 때 상대가 풀죽을 때가 있다." + }, + "drizzle": { + "name": "잔비", + "description": "등장했을 때 날씨를 비로 만든다." + }, + "speedBoost": { + "name": "가속", + "description": "매 턴 스피드가 올라간다." + }, + "battleArmor": { + "name": "전투무장", + "description": "단단한 껍질에 보호받아 상대의 공격이 급소에 맞지 않는다." + }, + "sturdy": { + "name": "옹골참", + "description": "상대 기술을 받아도 일격으로 쓰러지지 않는다. 일격필살 기술도 효과 없다." + }, + "damp": { + "name": "습기", + "description": "주변을 습하게 함으로써 자폭 등 폭발하는 기술을 아무도 못 쓰게 한다." + }, + "limber": { + "name": "유연", + "description": "유연한 몸으로 인해 마비 상태가 되지 않는다." + }, + "sandVeil": { + "name": "모래숨기", + "description": "모래바람일 때 회피율이 올라간다." + }, + "static": { + "name": "정전기", + "description": "정전기를 몸에 둘러 접촉한 상대를 마비시킬 때가 있다." + }, + "voltAbsorb": { + "name": "축전", + "description": "전기타입의 기술을 받으면 데미지를 받지 않고 회복한다." + }, + "waterAbsorb": { + "name": "저수", + "description": "물타입의 기술을 받으면 데미지를 받지 않고 회복한다." + }, + "oblivious": { + "name": "둔감", + "description": "둔감해서 헤롱헤롱이나 도발 상태가 되지 않는다." + }, + "cloudNine": { + "name": "날씨부정", + "description": "모든 날씨의 영향이 없어진다." + }, + "compoundEyes": { + "name": "복안", + "description": "복안을 가지고 있어 기술의 명중률이 올라간다." + }, + "insomnia": { + "name": "불면", + "description": "잠들지 못하는 체질이라 잠듦 상태가 되지 않는다." + }, + "colorChange": { + "name": "변색", + "description": "상대에게 받은 기술의 타입으로 자신의 타입이 변화한다." + }, + "immunity": { + "name": "면역", + "description": "체내에 면역을 가지고 있어 독 상태가 되지 않는다." + }, + "flashFire": { + "name": "타오르는불꽃", + "description": "불꽃타입의 기술을 받으면 불꽃을 받아서 자신이 사용하는 불꽃타입의 기술이 강해진다." + }, + "shieldDust": { + "name": "인분", + "description": "인분에 보호받아 기술의 추가 효과를 받지 않게 된다." + }, + "ownTempo": { + "name": "마이페이스", + "description": "마이페이스라서 혼란 상태가 되지 않는다." + }, + "suctionCups": { + "name": "흡반", + "description": "흡반으로 지면에 달라붙어 포켓몬을 교체시키는 기술이나 도구의 효과를 발휘하지 못하게 한다." + }, + "intimidate": { + "name": "위협", + "description": "등장했을 때 위협해서 상대를 위축시켜 상대의 공격을 떨어뜨린다." + }, + "shadowTag": { + "name": "그림자밟기", + "description": "상대의 그림자를 밟아 도망치거나 교체할 수 없게 한다." + }, + "roughSkin": { + "name": "까칠한피부", + "description": "공격을 받았을 때 자신에게 접촉한 상대를 까칠까칠한 피부로 상처를 입힌다." + }, + "wonderGuard": { + "name": "불가사의부적", + "description": "효과가 굉장한 기술만 맞는 불가사의한 힘." + }, + "levitate": { + "name": "부유", + "description": "땅에서 뜨는 것으로 땅타입의 기술을 받지 않는다." + }, + "effectSpore": { + "name": "포자", + "description": "공격으로 자신에게 접촉한 상대를 독이나 마비, 잠듦 상태로 만들 때가 있다." + }, + "synchronize": { + "name": "싱크로", + "description": "자신이 걸린 독이나 마비, 화상을 상대에게 옮긴다." + }, + "clearBody": { + "name": "클리어바디", + "description": "상대 기술이나 특성으로 능력이 떨어지지 않는다." + }, + "naturalCure": { + "name": "자연회복", + "description": "지닌 포켓몬으로 돌아오면 상태 이상이 회복된다." + }, + "lightningRod": { + "name": "피뢰침", + "description": "전기타입의 기술을 자신에게 끌어모아 데미지를 받지 않고 특수공격을 올린다." + }, + "sereneGrace": { + "name": "하늘의은총", + "description": "하늘의 은총 덕분에 기술의 추가 효과가 나오기 쉽다." + }, + "swiftSwim": { + "name": "쓱쓱", + "description": "비가 오는 날씨일 때 스피드가 올라간다." + }, + "chlorophyll": { + "name": "엽록소", + "description": "날씨가 맑을 때 스피드가 올라간다." + }, + "illuminate": { + "name": "발광", + "description": "주변을 밝게 하여 명중률이 떨어지지 않는다." + }, + "trace": { + "name": "트레이스", + "description": "등장했을 때 상대의 특성을 트레이스해서 같은 특성이 된다." + }, + "hugePower": { + "name": "천하장사", + "description": "물리공격의 위력이 2배가 된다." + }, + "poisonPoint": { + "name": "독가시", + "description": "자신과 접촉한 상대를 독 상태로 만들 때가 있다." + }, + "innerFocus": { + "name": "정신력", + "description": "단련한 정신으로 인하여 상대의 공격에 풀죽지 않는다." + }, + "magmaArmor": { + "name": "마그마의무장", + "description": "뜨거운 마그마를 몸에 둘러서 얼음 상태가 되지 않는다." + }, + "waterVeil": { + "name": "수의베일", + "description": "물의 베일을 몸에 둘러서 화상 상태가 되지 않는다." + }, + "magnetPull": { + "name": "자력", + "description": "강철타입의 포켓몬을 자력으로 끌어모아 도망칠 수 없게 한다." + }, + "soundproof": { + "name": "방음", + "description": "소리를 차단하는 것으로 소리 공격을 받지 않는다." + }, + "rainDish": { + "name": "젖은접시", + "description": "비가 오는 날씨일 때 조금씩 HP를 회복한다." + }, + "sandStream": { + "name": "모래날림", + "description": "등장했을 때 날씨를 모래바람으로 만든다." + }, + "pressure": { + "name": "프레셔", + "description": "프레셔를 줘서 상대가 쓰는 기술의 PP를 많이 줄인다." + }, + "thickFat": { + "name": "두꺼운지방", + "description": "두꺼운 지방으로 보호되고 있어 불꽃타입과 얼음타입의 기술의 데미지를 반감시킨다." + }, + "earlyBird": { + "name": "일찍기상", + "description": "잠듦 상태가 되어도 2배 스피드로 깨어날 수 있다." + }, + "flameBody": { + "name": "불꽃몸", + "description": "자신과 접촉한 상대를 화상 상태로 만들 때가 있다." + }, + "runAway": { + "name": "도주", + "description": "야생 포켓몬으로부터 반드시 도망칠 수 있다." + }, + "keenEye": { + "name": "날카로운눈", + "description": "날카로운 눈 덕분에 명중률이 떨어지지 않는다." + }, + "hyperCutter": { + "name": "괴력집게", + "description": "힘이 자랑인 집게를 가지고 있어 상대가 공격을 떨어뜨리지 못한다." + }, + "pickup": { + "name": "픽업", + "description": "상대가 지닌 도구를 주워올 때가 있다." + }, + "truant": { + "name": "게으름", + "description": "기술을 사용하면 다음 턴은 쉰다." + }, + "hustle": { + "name": "의욕", + "description": "자신의 공격이 높아지지만 명중률이 떨어진다." + }, + "cuteCharm": { + "name": "헤롱헤롱바디", + "description": "자신과 접촉한 상대를 헤롱헤롱 상태로 만들 때가 있다." + }, + "plus": { + "name": "플러스", + "description": "플러스나 마이너스의 특성을 가진 포켓몬이 동료에 있으면 자신의 특수공격이 올라간다." + }, + "minus": { + "name": "마이너스", + "description": "플러스나 마이너스의 특성을 가진 포켓몬이 동료에 있으면 자신의 특수공격이 올라간다." + }, + "forecast": { + "name": "기분파", + "description": "날씨의 영향을 받아 물타입, 불꽃타입, 얼음타입 중 하나로 변화한다." + }, + "stickyHold": { + "name": "점착", + "description": "점착질의 몸에 도구가 달라붙어 있어 상대에게 도구를 뺏기지 않는다." + }, + "shedSkin": { + "name": "탈피", + "description": "몸의 껍질을 벗어 던져 상태 이상을 회복할 때가 있다." + }, + "guts": { + "name": "근성", + "description": "상태 이상이 되면 근성을 보여서 공격이 올라간다." + }, + "marvelScale": { + "name": "이상한비늘", + "description": "상태 이상이 되면 이상한 비늘이 반응해서 방어가 올라간다." + }, + "liquidOoze": { + "name": "해감액", + "description": "해감액을 흡수한 상대는 강렬한 악취로 데미지를 받아 HP가 줄어든다." + }, + "overgrow": { + "name": "심록", + "description": "HP가 줄었을 때 풀타입 기술의 위력이 올라간다." + }, + "blaze": { + "name": "맹화", + "description": "HP가 줄었을 때 불꽃타입 기술의 위력이 올라간다." + }, + "torrent": { + "name": "급류", + "description": "HP가 줄었을 때 물타입 기술의 위력이 올라간다." + }, + "swarm": { + "name": "벌레의알림", + "description": "HP가 줄었을 때 벌레타입 기술의 위력이 올라간다." + }, + "rockHead": { + "name": "돌머리", + "description": "반동을 받는 기술을 사용해도 HP가 줄지 않는다." + }, + "drought": { + "name": "가뭄", + "description": "등장했을 때 날씨를 맑음으로 만든다." + }, + "arenaTrap": { + "name": "개미지옥", + "description": "배틀에서 상대를 도망칠 수 없게 한다." + }, + "vitalSpirit": { + "name": "의기양양", + "description": "의기양양해져서 잠듦 상태가 되지 않는다." + }, + "whiteSmoke": { + "name": "하얀연기", + "description": "하얀 연기의 보호를 받아 상대가 능력을 떨어뜨릴 수 없다." + }, + "purePower": { + "name": "순수한힘", + "description": "요가의 힘으로 물리공격의 위력이 2배가 된다." + }, + "shellArmor": { + "name": "조가비갑옷", + "description": "단단한 껍질의 보호를 받아 상대의 공격이 급소에 맞지 않는다." + }, + "airLock": { + "name": "에어록", + "description": "모든 날씨의 영향이 없어진다." + }, + "tangledFeet": { + "name": "갈지자걸음", + "description": "혼란 상태일 때는 회피율이 올라간다." + }, + "motorDrive": { + "name": "전기엔진", + "description": "전기타입의 기술을 받으면 데미지를 받지 않고 스피드가 올라간다." + }, + "rivalry": { + "name": "투쟁심", + "description": "성별이 같으면 투쟁심을 불태워 강해진다. 성별이 다르면 약해진다." + }, + "steadfast": { + "name": "불굴의마음", + "description": "풀죽을 때마다 불굴의 마음을 불태워 스피드가 올라간다." + }, + "snowCloak": { + "name": "눈숨기", + "description": "날씨가 눈일 때 회피율이 올라간다." + }, + "gluttony": { + "name": "먹보", + "description": "HP가 줄어들면 먹을 나무열매를 HP가 절반일 때 먹어버린다." + }, + "angerPoint": { + "name": "분노의경혈", + "description": "급소에 공격이 맞으면 크게 분노해 공격력이 최대가 된다." + }, + "unburden": { + "name": "곡예", + "description": "지니던 도구가 없어지면 스피드가 올라간다." + }, + "heatproof": { + "name": "내열", + "description": "내열인 몸으로 인해 불꽃타입 공격의 데미지를 반감한다." + }, + "simple": { + "name": "단순", + "description": "능력 변화가 평소의 2배가 된다." + }, + "drySkin": { + "name": "건조피부", + "description": "비가 오는 날씨나 물타입의 기술로 HP가 회복되고 맑을 때나 불꽃타입의 기술로는 줄어든다." + }, + "download": { + "name": "다운로드", + "description": "상대의 방어와 특수방어를 비교해서 낮은 쪽 능력에 맞춰서 자신의 공격이나 특수공격을 올린다." + }, + "ironFist": { + "name": "철주먹", + "description": "펀치를 사용하는 기술의 위력이 올라간다." + }, + "poisonHeal": { + "name": "포이즌힐", + "description": "독 상태가 되면 HP가 줄지 않고 증가한다." + }, + "adaptability": { + "name": "적응력", + "description": "자신과 같은 타입의 기술 위력이 올라간다." + }, + "skillLink": { + "name": "스킬링크", + "description": "연속 기술을 사용하면 항상 최고 횟수를 사용할 수 있다." + }, + "hydration": { + "name": "촉촉바디", + "description": "비가 오는 날씨일 때 상태 이상이 회복된다." + }, + "solarPower": { + "name": "선파워", + "description": "날씨가 맑으면 특수공격이 올라가지만 매 턴 HP가 줄어든다." + }, + "quickFeet": { + "name": "속보", + "description": "상태 이상이 되면 스피드가 올라간다." + }, + "normalize": { + "name": "노말스킨", + "description": "어떤 타입의 기술도 모두 노말타입이 된다. 위력이 조금 올라간다." + }, + "sniper": { + "name": "스나이퍼", + "description": "공격을 급소에 맞혔을 때 위력이 더욱 올라간다." + }, + "magicGuard": { + "name": "매직가드", + "description": "공격 이외에는 데미지를 입지 않는다." + }, + "noGuard": { + "name": "노가드", + "description": "노가드전법에 따라 서로가 사용하는 기술이 반드시 맞게 된다." + }, + "stall": { + "name": "시간벌기", + "description": "기술을 사용하는 순서가 반드시 마지막이 된다." + }, + "technician": { + "name": "테크니션", + "description": "위력이 약한 기술의 위력을 올려서 공격할 수 있다." + }, + "leafGuard": { + "name": "리프가드", + "description": "날씨가 맑을 때는 상태 이상이 되지 않는다." + }, + "klutz": { + "name": "서투름", + "description": "지니고 있는 도구를 쓸 수 없다." + }, + "moldBreaker": { + "name": "틀깨기", + "description": "상대 특성에 방해받지 않고 상대에게 기술을 쓸 수 있다." + }, + "superLuck": { + "name": "대운", + "description": "대운을 가지고 있어 상대의 급소에 공격이 맞기 쉽다." + }, + "aftermath": { + "name": "유폭", + "description": "기절했을 때 접촉한 상대에게 데미지를 준다." + }, + "anticipation": { + "name": "위험예지", + "description": "상대가 지닌 위험한 기술을 감지할 수 있다." + }, + "forewarn": { + "name": "예지몽", + "description": "등장했을 때 상대가 지닌 기술을 하나만 꿰뚫어본다." + }, + "unaware": { + "name": "천진", + "description": "상대의 능력 변화를 무시하고 공격할 수 있다." + }, + "tintedLens": { + "name": "색안경", + "description": "효과가 별로인 기술을 통상의 위력으로 쓸 수 있다." + }, + "filter": { + "name": "필터", + "description": "효과가 굉장한 공격의 위력을 약하게 만든다." + }, + "slowStart": { + "name": "슬로스타트", + "description": "5턴 동안 공격과 스피드가 절반이 된다." + }, + "scrappy": { + "name": "배짱", + "description": "고스트타입 포켓몬에게 노말타입과 격투타입의 기술을 맞게 한다." + }, + "stormDrain": { + "name": "마중물", + "description": "물타입의 기술을 자신에게 끌어모아 데미지는 받지 않고 특수공격이 올라간다." + }, + "iceBody": { + "name": "아이스바디", + "description": "날씨가 눈일 때 HP를 조금씩 회복한다." + }, + "solidRock": { + "name": "하드록", + "description": "효과가 굉장한 공격의 위력을 약하게 만든다." + }, + "snowWarning": { + "name": "눈퍼뜨리기", + "description": "등장했을 때 날씨를 눈으로 만든다." + }, + "honeyGather": { + "name": "꿀모으기", + "description": "배틀이 끝났을 때 달콤한꿀을 주울 때가 있다. 배틀 후에 꿀을 팔아 돈을 받을 수 있다." + }, + "frisk": { + "name": "통찰", + "description": "등장했을 때 상대의 특성을 통찰할 수 있다." + }, + "reckless": { + "name": "이판사판", + "description": "반동 데미지를 받는 기술의 위력이 올라간다." + }, + "multitype": { + "name": "멀티타입", + "description": "지니고 있는 플레이트나 Z크리스탈 타입에 따라 자신의 타입이 바뀐다." + }, + "flowerGift": { + "name": "플라워기프트", + "description": "날씨가 맑을 때 자신과 같은 편의 공격과 특수방어의 능력이 올라간다." + }, + "badDreams": { + "name": "나이트메어", + "description": "잠듦 상태의 상대에게 데미지를 준다." + }, + "pickpocket": { + "name": "나쁜손버릇", + "description": "접촉한 상대의 도구를 훔친다." + }, + "sheerForce": { + "name": "우격다짐", + "description": "기술의 추가 효과가 없어지지만 그만큼 높은 위력으로 기술을 사용할 수 있다." + }, + "contrary": { + "name": "심술꾸러기", + "description": "능력의 변화가 역전해서 올라갈 때 떨어지고 떨어질 때 올라간다." + }, + "unnerve": { + "name": "긴장감", + "description": "상대를 긴장시켜 나무열매를 먹지 못하게 한다." + }, + "defiant": { + "name": "오기", + "description": "능력이 떨어지면 공격이 크게 올라간다." + }, + "defeatist": { + "name": "무기력", + "description": "HP가 절반이 되면 무기력해져서 공격과 특수공격이 반감된다." + }, + "cursedBody": { + "name": "저주받은바디", + "description": "공격을 받으면 상대의 기술을 사슬묶기 상태로 만들 때가 있다." + }, + "healer": { + "name": "치유의마음", + "description": "같은 편의 상태 이상을 가끔 회복시킨다." + }, + "friendGuard": { + "name": "프렌드가드", + "description": "같은 편의 데미지를 줄일 수 있다." + }, + "weakArmor": { + "name": "깨어진갑옷", + "description": "물리 기술로 데미지를 받으면 방어가 떨어지고 스피드가 크게 올라간다." + }, + "heavyMetal": { + "name": "헤비메탈", + "description": "자신의 무게가 2배가 된다." + }, + "lightMetal": { + "name": "라이트메탈", + "description": "자신의 무게가 절반이 된다." + }, + "multiscale": { + "name": "멀티스케일", + "description": "HP가 꽉 찼을 때 받는 데미지가 줄어든다." + }, + "toxicBoost": { + "name": "독폭주", + "description": "독 상태가 되었을 때 물리 기술의 위력이 올라간다." + }, + "flareBoost": { + "name": "열폭주", + "description": "화상 상태가 되었을 때 특수 기술의 위력이 올라간다." + }, + "harvest": { + "name": "수확", + "description": "사용한 나무열매를 몇 번이고 만들어 낸다." + }, + "telepathy": { + "name": "텔레파시", + "description": "같은 편의 공격의 낌새를 읽고 기술을 회피한다." + }, + "moody": { + "name": "변덕쟁이", + "description": "매 턴 능력 중 하나가 크게 오르고 하나가 떨어진다." + }, + "overcoat": { + "name": "방진", + "description": "모래바람이나 싸라기눈 등의 데미지를 입지 않는다. 가루의 기술을 받지 않는다." + }, + "poisonTouch": { + "name": "독수", + "description": "접촉하기만 해도 상대를 독 상태로 만들 때가 있다." + }, + "regenerator": { + "name": "재생력", + "description": "지닌 포켓몬으로 돌아오면 HP를 조금 회복한다." + }, + "bigPecks": { + "name": "부풀린가슴", + "description": "방어를 떨어뜨리는 효과를 받지 않는다." + }, + "sandRush": { + "name": "모래헤치기", + "description": "날씨가 모래바람일 때 스피드가 올라간다." + }, + "wonderSkin": { + "name": "미라클스킨", + "description": "변화 기술을 받기 어려운 몸으로 되어 있다." + }, + "analytic": { + "name": "애널라이즈", + "description": "제일 마지막에 기술을 쓰면 기술의 위력이 올라간다." + }, + "illusion": { + "name": "일루전", + "description": "지닌 포켓몬 중 제일 뒤에 있는 포켓몬으로 둔갑하여 나와서 상대를 속인다." + }, + "imposter": { + "name": "괴짜", + "description": "눈앞의 포켓몬으로 변신해버린다." + }, + "infiltrator": { + "name": "틈새포착", + "description": "상대의 벽이나 대타출동을 뚫고 공격할 수 있다." + }, + "mummy": { + "name": "미라", + "description": "상대가 접촉하면 상대를 미라로 만들어버린다." + }, + "moxie": { + "name": "자기과신", + "description": "상대를 쓰러뜨리면 자신감이 붙어서 공격이 올라간다." + }, + "justified": { + "name": "정의의마음", + "description": "악타입 공격을 받으면 정의감으로 공격이 올라간다." + }, + "rattled": { + "name": "주눅", + "description": "위협이나 악타입과 고스트타입과 벌레타입의 기술에 주눅이 들어 스피드가 올라간다." + }, + "magicBounce": { + "name": "매직미러", + "description": "상대가 쓴 변화 기술을 받지 않고 그대로 되받아칠 수 있다." + }, + "sapSipper": { + "name": "초식", + "description": "풀타입 기술을 받으면 데미지를 입지 않고 공격이 올라간다." + }, + "prankster": { + "name": "짓궂은마음", + "description": "변화 기술을 먼저 쓸 수 있다." + }, + "sandForce": { + "name": "모래의힘", + "description": "날씨가 모래바람일 때 바위타입과 땅타입과 강철타입의 위력이 올라간다." + }, + "ironBarbs": { + "name": "철가시", + "description": "자신과 접촉한 상대에게 철가시로 데미지를 준다." + }, + "zenMode": { + "name": "달마모드", + "description": "HP가 절반 이하가 되면 모습이 변화한다." + }, + "victoryStar": { + "name": "승리의별", + "description": "자신과 같은 편의 명중률이 올라간다." + }, + "turboblaze": { + "name": "터보블레이즈", + "description": "상대 특성에 방해받지 않고 상대에게 기술을 쓸 수 있다." + }, + "teravolt": { + "name": "테라볼티지", + "description": "상대 특성에 방해받지 않고 상대에게 기술을 쓸 수 있다." + }, + "aromaVeil": { + "name": "아로마베일", + "description": "자신과 같은 편으로 향하는 멘탈 공격을 막을 수 있다." + }, + "flowerVeil": { + "name": "플라워베일", + "description": "같은 편의 풀타입 포켓몬은 능력이 떨어지지 않고 상태 이상도 되지 않는다." + }, + "cheekPouch": { + "name": "볼주머니", + "description": "어떤 나무열매라도 먹으면 HP도 회복한다." + }, + "protean": { + "name": "변환자재", + "description": "자신이 사용한 기술과 같은 타입으로 변화한다." + }, + "furCoat": { + "name": "퍼코트", + "description": "상대로부터 받는 물리 기술의 데미지가 절반이 된다." + }, + "magician": { + "name": "매지션", + "description": "기술을 맞은 상대의 도구를 빼앗아 버린다." + }, + "bulletproof": { + "name": "방탄", + "description": "상대 구슬이나 폭탄 등 기술을 막을 수 있다." + }, + "competitive": { + "name": "승기", + "description": "능력이 떨어지면 특수공격이 크게 올라간다." + }, + "strongJaw": { + "name": "옹골찬턱", + "description": "턱이 튼튼하여 무는 기술의 위력이 올라간다." + }, + "refrigerate": { + "name": "프리즈스킨", + "description": "노말타입의 기술이 얼음타입이 된다. 위력이 조금 올라간다." + }, + "sweetVeil": { + "name": "스위트베일", + "description": "같은 편의 포켓몬이 잠들지 않게 된다." + }, + "stanceChange": { + "name": "배틀스위치", + "description": "공격 기술을 쓰면 블레이드폼으로 기술 킹실드를 쓰면 실드폼으로 변한다." + }, + "galeWings": { + "name": "질풍날개", + "description": "HP가 꽉 찼을 때 비행타입의 기술을 먼저 쓸 수 있다." + }, + "megaLauncher": { + "name": "메가런처", + "description": "파동 기술의 위력이 올라간다." + }, + "grassPelt": { + "name": "풀모피", + "description": "그래스필드일 때 방어가 올라간다." + }, + "symbiosis": { + "name": "공생", + "description": "같은 편이 도구를 쓰면 자신이 지니고 있는 도구를 같은 편에게 건넨다." + }, + "toughClaws": { + "name": "단단한발톱", + "description": "상대에게 접촉하는 기술의 위력이 올라간다." + }, + "pixilate": { + "name": "페어리스킨", + "description": "노말타입의 기술이 페어리타입이 된다. 위력이 조금 올라간다." + }, + "gooey": { + "name": "미끈미끈", + "description": "공격으로 자신과 접촉한 상대의 스피드를 떨어뜨린다." + }, + "aerilate": { + "name": "스카이스킨", + "description": "노말타입의 기술이 비행타입이 된다. 위력이 조금 올라간다." + }, + "parentalBond": { + "name": "부자유친", + "description": "부모와 자식 2마리로 2번 공격할 수 있다." + }, + "darkAura": { + "name": "다크오라", + "description": "전원의 악타입 기술이 강해진다." + }, + "fairyAura": { + "name": "페어리오라", + "description": "전원의 페어리타입 기술이 강해진다." + }, + "auraBreak": { + "name": "오라브레이크", + "description": "오라의 효과를 역전시켜 위력을 떨어뜨린다." + }, + "primordialSea": { + "name": "시작의바다", + "description": "불꽃타입의 공격을 받지 않는 날씨로 만든다." + }, + "desolateLand": { + "name": "끝의대지", + "description": "물타입의 공격을 받지 않는 날씨로 만든다." + }, + "deltaStream": { + "name": "델타스트림", + "description": "비행타입의 약점이 없어지는 날씨로 만든다." + }, + "stamina": { + "name": "지구력", + "description": "공격을 받으면 방어가 올라간다." + }, + "wimpOut": { + "name": "도망태세", + "description": "HP가 절반이 되면 황급히 도망쳐서 지닌 포켓몬으로 돌아간다." + }, + "emergencyExit": { + "name": "위기회피", + "description": "HP가 절반이 되면 위험을 회피하기 위해 지닌 포켓몬으로 돌아간다." + }, + "waterCompaction": { + "name": "꾸덕꾸덕굳기", + "description": "물타입의 기술을 받으면 방어가 크게 올라간다." + }, + "merciless": { + "name": "무도한행동", + "description": "독 상태의 상대를 공격하면 반드시 급소에 맞는다." + }, + "shieldsDown": { + "name": "리밋실드", + "description": "HP가 절반이 되면 껍질이 깨져 공격적으로 된다." + }, + "stakeout": { + "name": "잠복", + "description": "교체로 나온 상대에게 2배 데미지로 공격할 수 있다." + }, + "waterBubble": { + "name": "수포", + "description": "자신을 향하는 불꽃타입 기술의 위력을 떨어뜨린다. 화상을 입지 않는다." + }, + "steelworker": { + "name": "강철술사", + "description": "강철타입 기술의 위력이 올라간다." + }, + "berserk": { + "name": "발끈", + "description": "상대의 공격으로 HP가 절반이 되면 특수공격이 올라간다." + }, + "slushRush": { + "name": "눈치우기", + "description": "날씨가 눈일 때 스피드가 올라간다." + }, + "longReach": { + "name": "원격", + "description": "모든 기술을 상대에게 접촉하지 않고 사용할 수 있다." + }, + "liquidVoice": { + "name": "촉촉보이스", + "description": "모든 소리 기술이 물타입이 된다." + }, + "triage": { + "name": "힐링시프트", + "description": "회복 기술을 먼저 사용할 수 있다." + }, + "galvanize": { + "name": "일렉트릭스킨", + "description": "노말타입 기술이 전기타입이 된다. 위력이 조금 올라간다." + }, + "surgeSurfer": { + "name": "서핑테일", + "description": "일렉트릭필드일 때 스피드가 2배가 된다." + }, + "schooling": { + "name": "어군", + "description": "HP가 많을 때 무리지어 강해진다. HP가 얼마 남지 않으면 무리는 뿔뿔이 흩어진다." + }, + "disguise": { + "name": "탈", + "description": "몸을 덮는 탈로 1번 공격을 막을 수 있다." + }, + "battleBond": { + "name": "유대변화", + "description": "상대를 쓰러뜨리면 트레이너와의 유대감이 깊어져서 지우개굴닌자로 변한다. 물수리검이 강해진다." + }, + "powerConstruct": { + "name": "스웜체인지", + "description": "HP가 절반이 되면 셀들이 응원하러 달려와 퍼펙트폼으로 모습이 변한다." + }, + "corrosion": { + "name": "부식", + "description": "강철타입이나 독타입도 독 상태로 만들 수 있다." + }, + "comatose": { + "name": "절대안깸", + "description": "항상 비몽사몽 상태로 절대 깨지 않는다. 잠든 상태로 공격할 수 있다." + }, + "queenlyMajesty": { + "name": "여왕의위엄", + "description": "상대에게 위압감을 줘서 이쪽을 향한 선제 기술을 사용할 수 없게 한다." + }, + "innardsOut": { + "name": "내용물분출", + "description": "상대가 쓰러뜨렸을 때 HP의 남은 양만큼 상대에게 데미지를 준다." + }, + "dancer": { + "name": "무희", + "description": "누군가 춤 기술을 쓰면 자신도 이어서 춤 기술을 쓸 수 있다." + }, + "battery": { + "name": "배터리", + "description": "같은 편 특수 기술의 위력을 올린다." + }, + "fluffy": { + "name": "복슬복슬", + "description": "상대로부터 받은 접촉하는 기술의 데미지를 반감시키지만 불꽃타입 기술의 데미지는 2배가 된다." + }, + "dazzling": { + "name": "비비드바디", + "description": "상대를 놀라게 해서 이쪽을 향한 선제 기술을 사용할 수 없게 한다." + }, + "soulHeart": { + "name": "소울하트", + "description": "포켓몬이 기절할 때마다 특수공격이 올라간다." + }, + "tanglingHair": { + "name": "컬리헤어", + "description": "공격으로 자신에게 접촉한 상대의 스피드를 떨어뜨린다." + }, + "receiver": { + "name": "리시버", + "description": "쓰러진 같은 편의 특성을 이어받아 같은 특성으로 바뀐다." + }, + "powerOfAlchemy": { + "name": "화학의힘", + "description": "쓰러진 같은 편의 특성을 이어받아 같은 특성으로 바뀐다." + }, + "beastBoost": { + "name": "비스트부스트", + "description": "상대를 기절시켰을 때 자신의 가장 높은 능력이 올라간다." + }, + "rksSystem": { + "name": "AR시스템", + "description": "지니고 있는 메모리로 자신의 타입이 변한다." + }, + "electricSurge": { + "name": "일렉트릭메이커", + "description": "등장했을 때 일렉트릭필드를 사용한다." + }, + "psychicSurge": { + "name": "사이코메이커", + "description": "등장했을 때 사이코필드를 사용한다." + }, + "mistySurge": { + "name": "미스트메이커", + "description": "등장했을 때 미스트필드를 사용한다." + }, + "grassySurge": { + "name": "그래스메이커", + "description": "등장했을 때 그래스필드를 사용한다." + }, + "fullMetalBody": { + "name": "메탈프로텍트", + "description": "상대 기술이나 특성으로 능력이 떨어지지 않는다." + }, + "shadowShield": { + "name": "스펙터가드", + "description": "HP가 꽉 찼을 때 받는 데미지가 줄어든다." + }, + "prismArmor": { + "name": "프리즘아머", + "description": "효과가 굉장한 공격의 위력을 약하게 만든다." + }, + "neuroforce": { + "name": "브레인포스", + "description": "효과가 굉장한 공격의 위력이 더욱 올라간다." + }, + "intrepidSword": { + "name": "불요의검", + "description": "등장했을 때 공격이 올라간다." + }, + "dauntlessShield": { + "name": "불굴의방패", + "description": "등장했을 때 방어가 올라간다." + }, + "libero": { + "name": "리베로", + "description": "자신이 사용한 기술과 같은 타입으로 변화한다." + }, + "ballFetch": { + "name": "볼줍기", + "description": "첫 번째로 실패한 몬스터볼을 주워온다." + }, + "cottonDown": { + "name": "솜털", + "description": "공격을 받으면 솜털을 흩뿌려서 자신을 제외한 모든 포켓몬의 스피드를 떨어뜨린다." + }, + "propellerTail": { + "name": "스크루지느러미", + "description": "상대의 기술을 끌어모으는 특성이나 기술의 영향을 받지 않는다." + }, + "mirrorArmor": { + "name": "미러아머", + "description": "자신이 받는 능력 다운 효과에 한해 되받아친다." + }, + "gulpMissile": { + "name": "그대로꿀꺽미사일", + "description": "파도타기나 다이빙을 쓰면 먹이를 물어온다. 데미지를 받으면 먹이를 토해내서 공격한다." + }, + "stalwart": { + "name": "굳건한신념", + "description": "상대의 기술을 끌어모으는 특성이나 기술의 영향을 받지 않는다." + }, + "steamEngine": { + "name": "증기기관", + "description": "물타입이나 불꽃타입 기술을 받으면 스피드가 매우 크게 올라간다." + }, + "punkRock": { + "name": "펑크록", + "description": "소리 기술의 위력이 올라간다. 상대로부터 받는 소리 기술의 데미지는 절반이 된다." + }, + "sandSpit": { + "name": "모래뿜기", + "description": "공격을 받으면 모래바람을 일으킨다." + }, + "iceScales": { + "name": "얼음인분", + "description": "얼음인분의 보호를 받아 특수공격으로 받는 데미지가 절반이 된다." + }, + "ripen": { + "name": "숙성", + "description": "나무열매를 숙성시켜서 효과가 2배가 된다." + }, + "iceFace": { + "name": "아이스페이스", + "description": "물리공격을 머리의 얼음이 대신 맞아주지만 모습도 바뀐다. 얼음은 싸라기눈이 내리면 원래대로 돌아온다." + }, + "powerSpot": { + "name": "파워스폿", + "description": "옆에 있기만 해도 기술의 위력이 올라간다." + }, + "mimicry": { + "name": "의태", + "description": "필드의 상태에 따라 포켓몬의 타입이 바뀐다." + }, + "screenCleaner": { + "name": "배리어프리", + "description": "등장했을 때 상대와 같은 편의 빛의장막, 리플렉터, 오로라베일의 효과가 사라진다." + }, + "steelySpirit": { + "name": "강철정신", + "description": "같은 편의 강철타입 공격의 위력이 올라간다." + }, + "perishBody": { + "name": "멸망의바디", + "description": "접촉하는 기술을 받으면 3턴 후에 양쪽 모두 기절한다. 교체되면 효과가 없어진다." + }, + "wanderingSpirit": { + "name": "떠도는영혼", + "description": "접촉하는 기술로 공격해온 포켓몬과 특성을 바꾼다." + }, + "gorillaTactics": { + "name": "무아지경", + "description": "공격이 올라가지만 처음에 선택한 기술 외에는 쓸 수 없게 된다." + }, + "neutralizingGas": { + "name": "화학변화가스", + "description": "화학변화가스를 가진 포켓몬이 배틀에 나와 있으면 모든 포켓몬이 가진 특성의 효과가 사라지거나 발동하지 않게 된다." + }, + "pastelVeil": { + "name": "파스텔베일", + "description": "자신과 같은 편이 독의 상태 이상 효과를 받지 않게 된다." + }, + "hungerSwitch": { + "name": "꼬르륵스위치", + "description": "턴이 끝날 때마다 배부른 모양, 배고픈 모양, 배부른 모양...으로 번갈아서 모습을 바꾼다." + }, + "quickDraw": { + "name": "퀵드로", + "description": "상대보다 먼저 행동할 수도 있다." + }, + "unseenFist": { + "name": "보이지않는주먹", + "description": "상대에게 접촉하는 기술을 사용하면 방어의 효과를 무시하고 공격할 수 있다." + }, + "curiousMedicine": { + "name": "기묘한약", + "description": "등장했을 때 조개껍질에서 약을 흩뿌려서 능력 변화를 원래대로 되돌린다." + }, + "transistor": { + "name": "트랜지스터", + "description": "전기타입 기술의 위력이 올라간다." + }, + "dragonsMaw": { + "name": "용의턱", + "description": "드래곤타입 기술의 위력이 올라간다." + }, + "chillingNeigh": { + "name": "백의울음", + "description": "상대를 쓰러뜨리면 차가운 울음소리를 내면서 공격이 올라간다." + }, + "grimNeigh": { + "name": "흑의울음", + "description": "상대를 쓰러뜨리면 무서운 울음소리를 내면서 특수공격이 올라간다." + }, + "asOneGlastrier": { + "name": "혼연일체", + "description": "버드렉스의 긴장감과 블리자포스의 백의울음 두 가지 특성을 겸비한다." + }, + "asOneSpectrier": { + "name": "혼연일체", + "description": "버드렉스의 긴장감과 레이스포스의 흑의울음 두 가지 특성을 겸비한다." + }, + "lingeringAroma": { + "name": "가시지않는향기", + "description": "상대가 접촉하면 가시지 않는 향기가 상대에게 배어 버린다." + }, + "seedSower": { + "name": "넘치는씨", + "description": "공격을 받으면 필드를 그래스필드로 만든다." + }, + "thermalExchange": { + "name": "열교환", + "description": "불꽃타입 기술로 공격받으면 공격이 올라간다. 화상 상태가 되지 않는다." + }, + "angerShell": { + "name": "분노의껍질", + "description": "상대의 공격에 의해 HP가 절반이 되면 화가 나서 방어와 특수방어가 떨어지지만 공격, 특수공격, 스피드가 올라간다." + }, + "purifyingSalt": { + "name": "정화의소금", + "description": "깨끗한 소금에 의해 상태 이상이 되지 않는다. 고스트타입 기술의 데미지를 반감시킨다." + }, + "wellBakedBody": { + "name": "노릇노릇바디", + "description": "불꽃타입 기술로 공격받으면 데미지를 입지 않고 방어가 크게 올라간다." + }, + "windRider": { + "name": "바람타기", + "description": "순풍이 불거나 바람 기술로 공격받으면 데미지를 받지 않고 공격이 올라간다." + }, + "guardDog": { + "name": "파수견", + "description": "위협을 받으면 공격이 올라간다. 포켓몬을 교체시키는 기술이나 도구의 효과를 받지 않는다." + }, + "rockyPayload": { + "name": "바위나르기", + "description": "바위타입 기술의 위력이 올라간다." + }, + "windPower": { + "name": "풍력발전", + "description": "바람 기술로 공격받으면 충전 상태가 된다." + }, + "zeroToHero": { + "name": "마이티체인지", + "description": "지닌 포켓몬으로 돌아오면 마이티폼으로 변한다." + }, + "commander": { + "name": "사령탑", + "description": "등장했을 때 같은 편에 어써러셔가 있으면 입속에 들어가 안에서 지시를 내린다." + }, + "electromorphosis": { + "name": "전기로바꾸기", + "description": "데미지를 받으면 충전 상태가 된다." + }, + "protosynthesis": { + "name": "고대활성", + "description": "부스트에너지를 지니고 있거나 날씨가 맑을 때 가장 높은 능력이 올라간다." + }, + "quarkDrive": { + "name": "쿼크차지", + "description": "부스트에너지를 지니고 있거나 일렉트릭필드일 때 가장 높은 능력이 올라간다." + }, + "goodAsGold": { + "name": "황금몸", + "description": "산화하지 않는 튼튼한 황금몸 덕분에 상대의 변화 기술의 영향을 받지 않는다." + }, + "vesselOfRuin": { + "name": "재앙의그릇", + "description": "재앙을 부르는 그릇의 힘으로 자신을 제외한 모든 포켓몬의 특수 공격을 약하게 만든다." + }, + "swordOfRuin": { + "name": "재앙의검", + "description": "재앙을 부르는 검의 힘으로 자신을 제외한 모든 포켓몬의 방어를 약하게 만든다." + }, + "tabletsOfRuin": { + "name": "재앙의목간", + "description": "재앙을 부르는 목간의 힘으로 자신을 제외한 모든 포켓몬의 공격을 약하게 만든다." + }, + "beadsOfRuin": { + "name": "재앙의구슬", + "description": "재앙을 부르는 곡옥의 힘으로 자신을 제외한 모든 포켓몬의 특수방어를 약하게 만든다." + }, + "orichalcumPulse": { + "name": "진홍빛고동", + "description": "등장했을 때 날씨를 맑음으로 만든다. 햇살이 강하면 고대의 고동에 의해 공격이 강화된다." + }, + "hadronEngine": { + "name": "하드론엔진", + "description": "등장했을 때 일렉트릭필드를 전개한다. 일렉트릭필드일 때 미래 기관에 의해 특수공격이 강화된다." + }, + "opportunist": { + "name": "편승", + "description": "상대의 능력이 올라가면 자신도 편승해서 똑같이 자신도 올린다." + }, + "cudChew": { + "name": "되새김질", + "description": "한 번에 한하여 나무열매를 먹으면 다음 턴이 끝날 때 위에서 꺼내서 또 먹는다." + }, + "sharpness": { + "name": "예리함", + "description": "상대를 베는 기술의 위력이 올라간다." + }, + "supremeOverlord": { + "name": "총대장", + "description": "등장했을 때 지금까지 쓰러진 같은 편의 수가 많을수록 조금씩 공격과 특수공격이 올라간다." + }, + "costar": { + "name": "협연", + "description": "등장했을 때 같은 편의 능력 변화를 복사한다." + }, + "toxicDebris": { + "name": "독치장", + "description": "물리 기술로 데미지를 받으면 상대의 발밑에 독압정을 뿌린다." + }, + "armorTail": { + "name": "테일아머", + "description": "머리를 감싸고 있는 수수께끼의 꼬리가 이쪽을 향한 선제 기술을 사용할 수 없게 한다." + }, + "earthEater": { + "name": "흙먹기", + "description": "땅타입의 기술로 공격받으면 데미지를 받지 않고 회복한다." + }, + "myceliumMight": { + "name": "균사의힘", + "description": "변화 기술을 사용할 때 반드시 행동이 느려지지만 상대 특성에 방해받지 않는다." + }, + "mindsEye": { + "name": "심안", + "description": "노말타입과 격투타입 기술을 고스트타입에게 맞힐 수 있다. 상대의 회피율 변화를 무시하고 명중률도 떨어지지 않는다." + }, + "supersweetSyrup": { + "name": "감미로운꿀", + "description": "처음 등장했을 때 감미로운 꿀의 향기를 흩뿌려서 상대의 회피율을 떨어뜨린다." + }, + "hospitality": { + "name": "대접", + "description": "등장했을 때 같은 편을 대접해서 HP를 조금 회복시킨다." + }, + "toxicChain": { + "name": "독사슬", + "description": "독소를 머금은 사슬의 힘으로 기술에 맞은 상대를 맹독 상태로 만들 때가 있다." + }, + "embodyAspectTeal": { + "name": "초상투영", + "description": "마음속에 깃든 추억의 힘으로 벽록의가면을 빛나게 하여 자신의 스피드를 올린다." + }, + "embodyAspectWellspring": { + "name": "초상투영", + "description": "마음속에 깃든 추억의 힘으로 우물의가면을 빛나게 하여 자신의 특수방어를 올린다." + }, + "embodyAspectHearthflame": { + "name": "초상투영", + "description": "마음속에 깃든 추억의 힘으로 화덕의가면을 빛나게 하여 자신의 공격력을 올린다." + }, + "embodyAspectCornerstone": { + "name": "초상투영", + "description": "마음속에 깃든 추억의 힘으로 주춧돌의가면을 빛나게 하여 자신의 방어력을 올린다." + }, + "teraShift": { + "name": "테라체인지", + "description": "등장했을 때 주위의 에너지를 흡수하여 테라스탈폼으로 변한다." + }, + "teraShell": { + "name": "테라셸", + "description": "모든 타입의 힘이 담긴 등껍질이 HP가 꽉 찼을 때 받는 데미지를 모두 효과가 별로이게 만든다." + }, + "teraformZero": { + "name": "제로포밍", + "description": "테라파고스가 스텔라폼이 되었을 때 숨겨진 힘에 의해 날씨와 필드의 영향을 모두 무효로 만든다." + }, + "poisonPuppeteer": { + "name": "독조종", + "description": "복숭악동의 기술에 의해 독 상태가 된 상대는 혼란 상태도 되어 버린다." + } +} \ No newline at end of file diff --git a/src/locales/ko/ability.ts b/src/locales/ko/ability.ts deleted file mode 100644 index 18b102800cf..00000000000 --- a/src/locales/ko/ability.ts +++ /dev/null @@ -1,1252 +0,0 @@ -import { AbilityTranslationEntries } from "#app/interfaces/locales.js"; - -/** - * 본가 게임과 텍스트가 다를 경우 주석으로 표시 - */ -export const ability: AbilityTranslationEntries = { - stench: { - name: "악취", - description: "악취를 풍겨서 공격했을 때 상대가 풀죽을 때가 있다." - }, - drizzle: { - name: "잔비", - description: "등장했을 때 날씨를 비로 만든다." - }, - speedBoost: { - name: "가속", - description: "매 턴 스피드가 올라간다." - }, - battleArmor: { - name: "전투무장", - description: "단단한 껍질에 보호받아 상대의 공격이 급소에 맞지 않는다." - }, - sturdy: { - name: "옹골참", - description: "상대 기술을 받아도 일격으로 쓰러지지 않는다. 일격필살 기술도 효과 없다." - }, - damp: { - name: "습기", - description: "주변을 습하게 함으로써 자폭 등 폭발하는 기술을 아무도 못 쓰게 한다." - }, - limber: { - name: "유연", - description: "유연한 몸으로 인해 마비 상태가 되지 않는다." - }, - sandVeil: { - name: "모래숨기", - description: "모래바람일 때 회피율이 올라간다." - }, - static: { - name: "정전기", - description: "정전기를 몸에 둘러 접촉한 상대를 마비시킬 때가 있다." - }, - voltAbsorb: { - name: "축전", - description: "전기타입의 기술을 받으면 데미지를 받지 않고 회복한다." - }, - waterAbsorb: { - name: "저수", - description: "물타입의 기술을 받으면 데미지를 받지 않고 회복한다." - }, - oblivious: { - name: "둔감", - description: "둔감해서 헤롱헤롱이나 도발 상태가 되지 않는다." - }, - cloudNine: { - name: "날씨부정", - description: "모든 날씨의 영향이 없어진다." - }, - compoundEyes: { - name: "복안", - description: "복안을 가지고 있어 기술의 명중률이 올라간다." - }, - insomnia: { - name: "불면", - description: "잠들지 못하는 체질이라 잠듦 상태가 되지 않는다." - }, - colorChange: { - name: "변색", - description: "상대에게 받은 기술의 타입으로 자신의 타입이 변화한다." - }, - immunity: { - name: "면역", - description: "체내에 면역을 가지고 있어 독 상태가 되지 않는다." - }, - flashFire: { - name: "타오르는불꽃", - description: "불꽃타입의 기술을 받으면 불꽃을 받아서 자신이 사용하는 불꽃타입의 기술이 강해진다." - }, - shieldDust: { - name: "인분", - description: "인분에 보호받아 기술의 추가 효과를 받지 않게 된다." - }, - ownTempo: { - name: "마이페이스", - description: "마이페이스라서 혼란 상태가 되지 않는다." - }, - suctionCups: { - name: "흡반", - description: "흡반으로 지면에 달라붙어 포켓몬을 교체시키는 기술이나 도구의 효과를 발휘하지 못하게 한다." - }, - intimidate: { - name: "위협", - description: "등장했을 때 위협해서 상대를 위축시켜 상대의 공격을 떨어뜨린다." - }, - shadowTag: { - name: "그림자밟기", - description: "상대의 그림자를 밟아 도망치거나 교체할 수 없게 한다." - }, - roughSkin: { - name: "까칠한피부", - description: "공격을 받았을 때 자신에게 접촉한 상대를 까칠까칠한 피부로 상처를 입힌다." - }, - wonderGuard: { - name: "불가사의부적", - description: "효과가 굉장한 기술만 맞는 불가사의한 힘." - }, - levitate: { - name: "부유", - description: "땅에서 뜨는 것으로 땅타입의 기술을 받지 않는다." - }, - effectSpore: { - name: "포자", - description: "공격으로 자신에게 접촉한 상대를 독이나 마비, 잠듦 상태로 만들 때가 있다." - }, - synchronize: { - name: "싱크로", - description: "자신이 걸린 독이나 마비, 화상을 상대에게 옮긴다." - }, - clearBody: { - name: "클리어바디", - description: "상대 기술이나 특성으로 능력이 떨어지지 않는다." - }, - naturalCure: { - name: "자연회복", - description: "지닌 포켓몬으로 돌아오면 상태 이상이 회복된다." - }, - lightningRod: { - name: "피뢰침", - description: "전기타입의 기술을 자신에게 끌어모아 데미지를 받지 않고 특수공격을 올린다." - }, - sereneGrace: { - name: "하늘의은총", - description: "하늘의 은총 덕분에 기술의 추가 효과가 나오기 쉽다." - }, - swiftSwim: { - name: "쓱쓱", - description: "비가 오는 날씨일 때 스피드가 올라간다." - }, - chlorophyll: { - name: "엽록소", - description: "날씨가 맑을 때 스피드가 올라간다." - }, - illuminate: { - name: "발광", - description: "주변을 밝게 하여 명중률이 떨어지지 않는다." - }, - trace: { - name: "트레이스", - description: "등장했을 때 상대의 특성을 트레이스해서 같은 특성이 된다." - }, - hugePower: { - name: "천하장사", - description: "물리공격의 위력이 2배가 된다." - }, - poisonPoint: { - name: "독가시", - description: "자신과 접촉한 상대를 독 상태로 만들 때가 있다." - }, - innerFocus: { - name: "정신력", - description: "단련한 정신으로 인하여 상대의 공격에 풀죽지 않는다." - }, - magmaArmor: { - name: "마그마의무장", - description: "뜨거운 마그마를 몸에 둘러서 얼음 상태가 되지 않는다." - }, - waterVeil: { - name: "수의베일", - description: "물의 베일을 몸에 둘러서 화상 상태가 되지 않는다." - }, - magnetPull: { - name: "자력", - description: "강철타입의 포켓몬을 자력으로 끌어모아 도망칠 수 없게 한다." - }, - soundproof: { - name: "방음", - description: "소리를 차단하는 것으로 소리 공격을 받지 않는다." - }, - rainDish: { - name: "젖은접시", - description: "비가 오는 날씨일 때 조금씩 HP를 회복한다." - }, - sandStream: { - name: "모래날림", - description: "등장했을 때 날씨를 모래바람으로 만든다." - }, - pressure: { - name: "프레셔", - description: "프레셔를 줘서 상대가 쓰는 기술의 PP를 많이 줄인다." - }, - thickFat: { - name: "두꺼운지방", - description: "두꺼운 지방으로 보호되고 있어 불꽃타입과 얼음타입의 기술의 데미지를 반감시킨다." - }, - earlyBird: { - name: "일찍기상", - description: "잠듦 상태가 되어도 2배 스피드로 깨어날 수 있다." - }, - flameBody: { - name: "불꽃몸", - description: "자신과 접촉한 상대를 화상 상태로 만들 때가 있다." - }, - runAway: { - name: "도주", - description: "야생 포켓몬으로부터 반드시 도망칠 수 있다." - }, - keenEye: { - name: "날카로운눈", - description: "날카로운 눈 덕분에 명중률이 떨어지지 않는다." - }, - hyperCutter: { - name: "괴력집게", - description: "힘이 자랑인 집게를 가지고 있어 상대가 공격을 떨어뜨리지 못한다." - }, - pickup: { - name: "픽업", - /* 모험 없음 */ - description: "상대가 지닌 도구를 주워올 때가 있다." - }, - truant: { - name: "게으름", - description: "기술을 사용하면 다음 턴은 쉰다." - }, - hustle: { - name: "의욕", - description: "자신의 공격이 높아지지만 명중률이 떨어진다." - }, - cuteCharm: { - name: "헤롱헤롱바디", - description: "자신과 접촉한 상대를 헤롱헤롱 상태로 만들 때가 있다." - }, - plus: { - name: "플러스", - description: "플러스나 마이너스의 특성을 가진 포켓몬이 동료에 있으면 자신의 특수공격이 올라간다." - }, - minus: { - name: "마이너스", - description: "플러스나 마이너스의 특성을 가진 포켓몬이 동료에 있으면 자신의 특수공격이 올라간다." - }, - forecast: { - name: "기분파", - description: "날씨의 영향을 받아 물타입, 불꽃타입, 얼음타입 중 하나로 변화한다." - }, - stickyHold: { - name: "점착", - description: "점착질의 몸에 도구가 달라붙어 있어 상대에게 도구를 뺏기지 않는다." - }, - shedSkin: { - name: "탈피", - description: "몸의 껍질을 벗어 던져 상태 이상을 회복할 때가 있다." - }, - guts: { - name: "근성", - description: "상태 이상이 되면 근성을 보여서 공격이 올라간다." - }, - marvelScale: { - name: "이상한비늘", - description: "상태 이상이 되면 이상한 비늘이 반응해서 방어가 올라간다." - }, - liquidOoze: { - name: "해감액", - description: "해감액을 흡수한 상대는 강렬한 악취로 데미지를 받아 HP가 줄어든다." - }, - overgrow: { - name: "심록", - description: "HP가 줄었을 때 풀타입 기술의 위력이 올라간다." - }, - blaze: { - name: "맹화", - description: "HP가 줄었을 때 불꽃타입 기술의 위력이 올라간다." - }, - torrent: { - name: "급류", - description: "HP가 줄었을 때 물타입 기술의 위력이 올라간다." - }, - swarm: { - name: "벌레의알림", - description: "HP가 줄었을 때 벌레타입 기술의 위력이 올라간다." - }, - rockHead: { - name: "돌머리", - description: "반동을 받는 기술을 사용해도 HP가 줄지 않는다." - }, - drought: { - name: "가뭄", - description: "등장했을 때 날씨를 맑음으로 만든다." - }, - arenaTrap: { - name: "개미지옥", - description: "배틀에서 상대를 도망칠 수 없게 한다." - }, - vitalSpirit: { - name: "의기양양", - description: "의기양양해져서 잠듦 상태가 되지 않는다." - }, - whiteSmoke: { - name: "하얀연기", - description: "하얀 연기의 보호를 받아 상대가 능력을 떨어뜨릴 수 없다." - }, - purePower: { - name: "순수한힘", - description: "요가의 힘으로 물리공격의 위력이 2배가 된다." - }, - shellArmor: { - name: "조가비갑옷", - description: "단단한 껍질의 보호를 받아 상대의 공격이 급소에 맞지 않는다." - }, - airLock: { - name: "에어록", - description: "모든 날씨의 영향이 없어진다." - }, - tangledFeet: { - name: "갈지자걸음", - description: "혼란 상태일 때는 회피율이 올라간다." - }, - motorDrive: { - name: "전기엔진", - description: "전기타입의 기술을 받으면 데미지를 받지 않고 스피드가 올라간다." - }, - rivalry: { - name: "투쟁심", - description: "성별이 같으면 투쟁심을 불태워 강해진다. 성별이 다르면 약해진다." - }, - steadfast: { - name: "불굴의마음", - description: "풀죽을 때마다 불굴의 마음을 불태워 스피드가 올라간다." - }, - snowCloak: { - name: "눈숨기", - description: "날씨가 눈일 때 회피율이 올라간다." - }, - gluttony: { - name: "먹보", - description: "HP가 줄어들면 먹을 나무열매를 HP가 절반일 때 먹어버린다." - }, - angerPoint: { - name: "분노의경혈", - description: "급소에 공격이 맞으면 크게 분노해 공격력이 최대가 된다." - }, - unburden: { - name: "곡예", - description: "지니던 도구가 없어지면 스피드가 올라간다." - }, - heatproof: { - name: "내열", - description: "내열인 몸으로 인해 불꽃타입 공격의 데미지를 반감한다." - }, - simple: { - name: "단순", - description: "능력 변화가 평소의 2배가 된다." - }, - drySkin: { - name: "건조피부", - description: "비가 오는 날씨나 물타입의 기술로 HP가 회복되고 맑을 때나 불꽃타입의 기술로는 줄어든다." - }, - download: { - name: "다운로드", - description: "상대의 방어와 특수방어를 비교해서 낮은 쪽 능력에 맞춰서 자신의 공격이나 특수공격을 올린다." - }, - ironFist: { - name: "철주먹", - description: "펀치를 사용하는 기술의 위력이 올라간다." - }, - poisonHeal: { - name: "포이즌힐", - description: "독 상태가 되면 HP가 줄지 않고 증가한다." - }, - adaptability: { - name: "적응력", - description: "자신과 같은 타입의 기술 위력이 올라간다." - }, - skillLink: { - name: "스킬링크", - description: "연속 기술을 사용하면 항상 최고 횟수를 사용할 수 있다." - }, - hydration: { - name: "촉촉바디", - description: "비가 오는 날씨일 때 상태 이상이 회복된다." - }, - solarPower: { - name: "선파워", - description: "날씨가 맑으면 특수공격이 올라가지만 매 턴 HP가 줄어든다." - }, - quickFeet: { - name: "속보", - description: "상태 이상이 되면 스피드가 올라간다." - }, - normalize: { - name: "노말스킨", - description: "어떤 타입의 기술도 모두 노말타입이 된다. 위력이 조금 올라간다." - }, - sniper: { - name: "스나이퍼", - description: "공격을 급소에 맞혔을 때 위력이 더욱 올라간다." - }, - magicGuard: { - name: "매직가드", - description: "공격 이외에는 데미지를 입지 않는다." - }, - noGuard: { - name: "노가드", - description: "노가드전법에 따라 서로가 사용하는 기술이 반드시 맞게 된다." - }, - stall: { - name: "시간벌기", - description: "기술을 사용하는 순서가 반드시 마지막이 된다." - }, - technician: { - name: "테크니션", - description: "위력이 약한 기술의 위력을 올려서 공격할 수 있다." - }, - leafGuard: { - name: "리프가드", - description: "날씨가 맑을 때는 상태 이상이 되지 않는다." - }, - klutz: { - name: "서투름", - description: "지니고 있는 도구를 쓸 수 없다." - }, - moldBreaker: { - name: "틀깨기", - description: "상대 특성에 방해받지 않고 상대에게 기술을 쓸 수 있다." - }, - superLuck: { - name: "대운", - description: "대운을 가지고 있어 상대의 급소에 공격이 맞기 쉽다." - }, - aftermath: { - name: "유폭", - description: "기절했을 때 접촉한 상대에게 데미지를 준다." - }, - anticipation: { - name: "위험예지", - description: "상대가 지닌 위험한 기술을 감지할 수 있다." - }, - forewarn: { - name: "예지몽", - description: "등장했을 때 상대가 지닌 기술을 하나만 꿰뚫어본다." - }, - unaware: { - name: "천진", - description: "상대의 능력 변화를 무시하고 공격할 수 있다." - }, - tintedLens: { - name: "색안경", - description: "효과가 별로인 기술을 통상의 위력으로 쓸 수 있다." - }, - filter: { - name: "필터", - description: "효과가 굉장한 공격의 위력을 약하게 만든다." - }, - slowStart: { - name: "슬로스타트", - description: "5턴 동안 공격과 스피드가 절반이 된다." - }, - scrappy: { - name: "배짱", - description: "고스트타입 포켓몬에게 노말타입과 격투타입의 기술을 맞게 한다." - }, - stormDrain: { - name: "마중물", - description: "물타입의 기술을 자신에게 끌어모아 데미지는 받지 않고 특수공격이 올라간다." - }, - iceBody: { - name: "아이스바디", - description: "날씨가 눈일 때 HP를 조금씩 회복한다." - }, - solidRock: { - name: "하드록", - description: "효과가 굉장한 공격의 위력을 약하게 만든다." - }, - snowWarning: { - name: "눈퍼뜨리기", - description: "등장했을 때 날씨를 눈으로 만든다." - }, - honeyGather: { - name: "꿀모으기", - description: "배틀이 끝났을 때 달콤한꿀을 주울 때가 있다. 배틀 후에 꿀을 팔아 돈을 받을 수 있다." - }, - frisk: { - name: "통찰", - /* 효과 변경 */ - description: "등장했을 때 상대의 특성을 통찰할 수 있다." - }, - reckless: { - name: "이판사판", - description: "반동 데미지를 받는 기술의 위력이 올라간다." - }, - multitype: { - name: "멀티타입", - description: "지니고 있는 플레이트나 Z크리스탈 타입에 따라 자신의 타입이 바뀐다." - }, - flowerGift: { - name: "플라워기프트", - description: "날씨가 맑을 때 자신과 같은 편의 공격과 특수방어의 능력이 올라간다." - }, - badDreams: { - name: "나이트메어", - description: "잠듦 상태의 상대에게 데미지를 준다." - }, - pickpocket: { - name: "나쁜손버릇", - description: "접촉한 상대의 도구를 훔친다." - }, - sheerForce: { - name: "우격다짐", - description: "기술의 추가 효과가 없어지지만 그만큼 높은 위력으로 기술을 사용할 수 있다." - }, - contrary: { - name: "심술꾸러기", - description: "능력의 변화가 역전해서 올라갈 때 떨어지고 떨어질 때 올라간다." - }, - unnerve: { - name: "긴장감", - description: "상대를 긴장시켜 나무열매를 먹지 못하게 한다." - }, - defiant: { - name: "오기", - description: "능력이 떨어지면 공격이 크게 올라간다." - }, - defeatist: { - name: "무기력", - description: "HP가 절반이 되면 무기력해져서 공격과 특수공격이 반감된다." - }, - cursedBody: { - name: "저주받은바디", - description: "공격을 받으면 상대의 기술을 사슬묶기 상태로 만들 때가 있다." - }, - healer: { - name: "치유의마음", - description: "같은 편의 상태 이상을 가끔 회복시킨다." - }, - friendGuard: { - name: "프렌드가드", - description: "같은 편의 데미지를 줄일 수 있다." - }, - weakArmor: { - name: "깨어진갑옷", - description: "물리 기술로 데미지를 받으면 방어가 떨어지고 스피드가 크게 올라간다." - }, - heavyMetal: { - name: "헤비메탈", - description: "자신의 무게가 2배가 된다." - }, - lightMetal: { - name: "라이트메탈", - description: "자신의 무게가 절반이 된다." - }, - multiscale: { - name: "멀티스케일", - description: "HP가 꽉 찼을 때 받는 데미지가 줄어든다." - }, - toxicBoost: { - name: "독폭주", - description: "독 상태가 되었을 때 물리 기술의 위력이 올라간다." - }, - flareBoost: { - name: "열폭주", - description: "화상 상태가 되었을 때 특수 기술의 위력이 올라간다." - }, - harvest: { - name: "수확", - description: "사용한 나무열매를 몇 번이고 만들어 낸다." - }, - telepathy: { - name: "텔레파시", - description: "같은 편의 공격의 낌새를 읽고 기술을 회피한다." - }, - moody: { - name: "변덕쟁이", - description: "매 턴 능력 중 하나가 크게 오르고 하나가 떨어진다." - }, - overcoat: { - name: "방진", - description: "모래바람이나 싸라기눈 등의 데미지를 입지 않는다. 가루의 기술을 받지 않는다." - }, - poisonTouch: { - name: "독수", - description: "접촉하기만 해도 상대를 독 상태로 만들 때가 있다." - }, - regenerator: { - name: "재생력", - description: "지닌 포켓몬으로 돌아오면 HP를 조금 회복한다." - }, - bigPecks: { - name: "부풀린가슴", - description: "방어를 떨어뜨리는 효과를 받지 않는다." - }, - sandRush: { - name: "모래헤치기", - description: "날씨가 모래바람일 때 스피드가 올라간다." - }, - wonderSkin: { - name: "미라클스킨", - description: "변화 기술을 받기 어려운 몸으로 되어 있다." - }, - analytic: { - name: "애널라이즈", - description: "제일 마지막에 기술을 쓰면 기술의 위력이 올라간다." - }, - illusion: { - name: "일루전", - description: "지닌 포켓몬 중 제일 뒤에 있는 포켓몬으로 둔갑하여 나와서 상대를 속인다." - }, - imposter: { - name: "괴짜", - description: "눈앞의 포켓몬으로 변신해버린다." - }, - infiltrator: { - name: "틈새포착", - description: "상대의 벽이나 대타출동을 뚫고 공격할 수 있다." - }, - mummy: { - name: "미라", - description: "상대가 접촉하면 상대를 미라로 만들어버린다." - }, - moxie: { - name: "자기과신", - description: "상대를 쓰러뜨리면 자신감이 붙어서 공격이 올라간다." - }, - justified: { - name: "정의의마음", - description: "악타입 공격을 받으면 정의감으로 공격이 올라간다." - }, - rattled: { - name: "주눅", - /* 축약 있음 */ - description: "위협이나 악타입과 고스트타입과 벌레타입의 기술에 주눅이 들어 스피드가 올라간다." - }, - magicBounce: { - name: "매직미러", - description: "상대가 쓴 변화 기술을 받지 않고 그대로 되받아칠 수 있다." - }, - sapSipper: { - name: "초식", - description: "풀타입 기술을 받으면 데미지를 입지 않고 공격이 올라간다." - }, - prankster: { - name: "짓궂은마음", - description: "변화 기술을 먼저 쓸 수 있다." - }, - sandForce: { - name: "모래의힘", - description: "날씨가 모래바람일 때 바위타입과 땅타입과 강철타입의 위력이 올라간다." - }, - ironBarbs: { - name: "철가시", - description: "자신과 접촉한 상대에게 철가시로 데미지를 준다." - }, - zenMode: { - name: "달마모드", - description: "HP가 절반 이하가 되면 모습이 변화한다." - }, - victoryStar: { - name: "승리의별", - description: "자신과 같은 편의 명중률이 올라간다." - }, - turboblaze: { - name: "터보블레이즈", - description: "상대 특성에 방해받지 않고 상대에게 기술을 쓸 수 있다." - }, - teravolt: { - name: "테라볼티지", - description: "상대 특성에 방해받지 않고 상대에게 기술을 쓸 수 있다." - }, - aromaVeil: { - name: "아로마베일", - description: "자신과 같은 편으로 향하는 멘탈 공격을 막을 수 있다." - }, - flowerVeil: { - name: "플라워베일", - description: "같은 편의 풀타입 포켓몬은 능력이 떨어지지 않고 상태 이상도 되지 않는다." - }, - cheekPouch: { - name: "볼주머니", - description: "어떤 나무열매라도 먹으면 HP도 회복한다." - }, - protean: { - name: "변환자재", - description: "자신이 사용한 기술과 같은 타입으로 변화한다." - }, - furCoat: { - name: "퍼코트", - description: "상대로부터 받는 물리 기술의 데미지가 절반이 된다." - }, - magician: { - name: "매지션", - description: "기술을 맞은 상대의 도구를 빼앗아 버린다." - }, - bulletproof: { - name: "방탄", - description: "상대 구슬이나 폭탄 등 기술을 막을 수 있다." - }, - competitive: { - name: "승기", - description: "능력이 떨어지면 특수공격이 크게 올라간다." - }, - strongJaw: { - name: "옹골찬턱", - description: "턱이 튼튼하여 무는 기술의 위력이 올라간다." - }, - refrigerate: { - name: "프리즈스킨", - description: "노말타입의 기술이 얼음타입이 된다. 위력이 조금 올라간다." - }, - sweetVeil: { - name: "스위트베일", - description: "같은 편의 포켓몬이 잠들지 않게 된다." - }, - stanceChange: { - name: "배틀스위치", - description: "공격 기술을 쓰면 블레이드폼으로 기술 킹실드를 쓰면 실드폼으로 변한다." - }, - galeWings: { - name: "질풍날개", - description: "HP가 꽉 찼을 때 비행타입의 기술을 먼저 쓸 수 있다." - }, - megaLauncher: { - name: "메가런처", - description: "파동 기술의 위력이 올라간다." - }, - grassPelt: { - name: "풀모피", - description: "그래스필드일 때 방어가 올라간다." - }, - symbiosis: { - name: "공생", - description: "같은 편이 도구를 쓰면 자신이 지니고 있는 도구를 같은 편에게 건넨다." - }, - toughClaws: { - name: "단단한발톱", - description: "상대에게 접촉하는 기술의 위력이 올라간다." - }, - pixilate: { - name: "페어리스킨", - description: "노말타입의 기술이 페어리타입이 된다. 위력이 조금 올라간다." - }, - gooey: { - name: "미끈미끈", - description: "공격으로 자신과 접촉한 상대의 스피드를 떨어뜨린다." - }, - aerilate: { - name: "스카이스킨", - description: "노말타입의 기술이 비행타입이 된다. 위력이 조금 올라간다." - }, - parentalBond: { - name: "부자유친", - description: "부모와 자식 2마리로 2번 공격할 수 있다." - }, - darkAura: { - name: "다크오라", - description: "전원의 악타입 기술이 강해진다." - }, - fairyAura: { - name: "페어리오라", - description: "전원의 페어리타입 기술이 강해진다." - }, - auraBreak: { - name: "오라브레이크", - description: "오라의 효과를 역전시켜 위력을 떨어뜨린다." - }, - primordialSea: { - name: "시작의바다", - description: "불꽃타입의 공격을 받지 않는 날씨로 만든다." - }, - desolateLand: { - name: "끝의대지", - description: "물타입의 공격을 받지 않는 날씨로 만든다." - }, - deltaStream: { - name: "델타스트림", - description: "비행타입의 약점이 없어지는 날씨로 만든다." - }, - stamina: { - name: "지구력", - description: "공격을 받으면 방어가 올라간다." - }, - wimpOut: { - name: "도망태세", - description: "HP가 절반이 되면 황급히 도망쳐서 지닌 포켓몬으로 돌아간다." - }, - emergencyExit: { - name: "위기회피", - description: "HP가 절반이 되면 위험을 회피하기 위해 지닌 포켓몬으로 돌아간다." - }, - waterCompaction: { - name: "꾸덕꾸덕굳기", - description: "물타입의 기술을 받으면 방어가 크게 올라간다." - }, - merciless: { - name: "무도한행동", - description: "독 상태의 상대를 공격하면 반드시 급소에 맞는다." - }, - shieldsDown: { - name: "리밋실드", - description: "HP가 절반이 되면 껍질이 깨져 공격적으로 된다." - }, - stakeout: { - name: "잠복", - description: "교체로 나온 상대에게 2배 데미지로 공격할 수 있다." - }, - waterBubble: { - name: "수포", - description: "자신을 향하는 불꽃타입 기술의 위력을 떨어뜨린다. 화상을 입지 않는다." - }, - steelworker: { - name: "강철술사", - description: "강철타입 기술의 위력이 올라간다." - }, - berserk: { - name: "발끈", - description: "상대의 공격으로 HP가 절반이 되면 특수공격이 올라간다." - }, - slushRush: { - name: "눈치우기", - description: "날씨가 눈일 때 스피드가 올라간다." - }, - longReach: { - name: "원격", - description: "모든 기술을 상대에게 접촉하지 않고 사용할 수 있다." - }, - liquidVoice: { - name: "촉촉보이스", - description: "모든 소리 기술이 물타입이 된다." - }, - triage: { - name: "힐링시프트", - description: "회복 기술을 먼저 사용할 수 있다." - }, - galvanize: { - name: "일렉트릭스킨", - description: "노말타입 기술이 전기타입이 된다. 위력이 조금 올라간다." - }, - surgeSurfer: { - name: "서핑테일", - description: "일렉트릭필드일 때 스피드가 2배가 된다." - }, - schooling: { - name: "어군", - description: "HP가 많을 때 무리지어 강해진다. HP가 얼마 남지 않으면 무리는 뿔뿔이 흩어진다." - }, - disguise: { - name: "탈", - description: "몸을 덮는 탈로 1번 공격을 막을 수 있다." - }, - battleBond: { - name: "유대변화", - description: "상대를 쓰러뜨리면 트레이너와의 유대감이 깊어져서 지우개굴닌자로 변한다. 물수리검이 강해진다." - }, - powerConstruct: { - name: "스웜체인지", - description: "HP가 절반이 되면 셀들이 응원하러 달려와 퍼펙트폼으로 모습이 변한다." - }, - corrosion: { - name: "부식", - description: "강철타입이나 독타입도 독 상태로 만들 수 있다." - }, - comatose: { - name: "절대안깸", - description: "항상 비몽사몽 상태로 절대 깨지 않는다. 잠든 상태로 공격할 수 있다." - }, - queenlyMajesty: { - name: "여왕의위엄", - description: "상대에게 위압감을 줘서 이쪽을 향한 선제 기술을 사용할 수 없게 한다." - }, - innardsOut: { - name: "내용물분출", - description: "상대가 쓰러뜨렸을 때 HP의 남은 양만큼 상대에게 데미지를 준다." - }, - dancer: { - name: "무희", - description: "누군가 춤 기술을 쓰면 자신도 이어서 춤 기술을 쓸 수 있다." - }, - battery: { - name: "배터리", - description: "같은 편 특수 기술의 위력을 올린다." - }, - fluffy: { - name: "복슬복슬", - description: "상대로부터 받은 접촉하는 기술의 데미지를 반감시키지만 불꽃타입 기술의 데미지는 2배가 된다." - }, - dazzling: { - name: "비비드바디", - description: "상대를 놀라게 해서 이쪽을 향한 선제 기술을 사용할 수 없게 한다." - }, - soulHeart: { - name: "소울하트", - description: "포켓몬이 기절할 때마다 특수공격이 올라간다." - }, - tanglingHair: { - name: "컬리헤어", - description: "공격으로 자신에게 접촉한 상대의 스피드를 떨어뜨린다." - }, - receiver: { - name: "리시버", - description: "쓰러진 같은 편의 특성을 이어받아 같은 특성으로 바뀐다." - }, - powerOfAlchemy: { - name: "화학의힘", - description: "쓰러진 같은 편의 특성을 이어받아 같은 특성으로 바뀐다." - }, - beastBoost: { - name: "비스트부스트", - description: "상대를 기절시켰을 때 자신의 가장 높은 능력이 올라간다." - }, - rksSystem: { - name: "AR시스템", - description: "지니고 있는 메모리로 자신의 타입이 변한다." - }, - electricSurge: { - name: "일렉트릭메이커", - description: "등장했을 때 일렉트릭필드를 사용한다." - }, - psychicSurge: { - name: "사이코메이커", - description: "등장했을 때 사이코필드를 사용한다." - }, - mistySurge: { - name: "미스트메이커", - description: "등장했을 때 미스트필드를 사용한다." - }, - grassySurge: { - name: "그래스메이커", - description: "등장했을 때 그래스필드를 사용한다." - }, - fullMetalBody: { - name: "메탈프로텍트", - description: "상대 기술이나 특성으로 능력이 떨어지지 않는다." - }, - shadowShield: { - name: "스펙터가드", - description: "HP가 꽉 찼을 때 받는 데미지가 줄어든다." - }, - prismArmor: { - name: "프리즘아머", - description: "효과가 굉장한 공격의 위력을 약하게 만든다." - }, - neuroforce: { - name: "브레인포스", - description: "효과가 굉장한 공격의 위력이 더욱 올라간다." - }, - intrepidSword: { - name: "불요의검", - description: "등장했을 때 공격이 올라간다." - }, - dauntlessShield: { - name: "불굴의방패", - description: "등장했을 때 방어가 올라간다." - }, - libero: { - name: "리베로", - description: "자신이 사용한 기술과 같은 타입으로 변화한다." - }, - ballFetch: { - name: "볼줍기", - /* 지닌 도구 제한 없음 */ - description: "첫 번째로 실패한 몬스터볼을 주워온다." - }, - cottonDown: { - name: "솜털", - description: "공격을 받으면 솜털을 흩뿌려서 자신을 제외한 모든 포켓몬의 스피드를 떨어뜨린다." - }, - propellerTail: { - name: "스크루지느러미", - description: "상대의 기술을 끌어모으는 특성이나 기술의 영향을 받지 않는다." - }, - mirrorArmor: { - name: "미러아머", - description: "자신이 받는 능력 다운 효과에 한해 되받아친다." - }, - gulpMissile: { - name: "그대로꿀꺽미사일", - description: "파도타기나 다이빙을 쓰면 먹이를 물어온다. 데미지를 받으면 먹이를 토해내서 공격한다." - }, - stalwart: { - name: "굳건한신념", - description: "상대의 기술을 끌어모으는 특성이나 기술의 영향을 받지 않는다." - }, - steamEngine: { - name: "증기기관", - description: "물타입이나 불꽃타입 기술을 받으면 스피드가 매우 크게 올라간다." - }, - punkRock: { - name: "펑크록", - description: "소리 기술의 위력이 올라간다. 상대로부터 받는 소리 기술의 데미지는 절반이 된다." - }, - sandSpit: { - name: "모래뿜기", - description: "공격을 받으면 모래바람을 일으킨다." - }, - iceScales: { - name: "얼음인분", - description: "얼음인분의 보호를 받아 특수공격으로 받는 데미지가 절반이 된다." - }, - ripen: { - name: "숙성", - description: "나무열매를 숙성시켜서 효과가 2배가 된다." - }, - iceFace: { - name: "아이스페이스", - description: "물리공격을 머리의 얼음이 대신 맞아주지만 모습도 바뀐다. 얼음은 싸라기눈이 내리면 원래대로 돌아온다." - }, - powerSpot: { - name: "파워스폿", - description: "옆에 있기만 해도 기술의 위력이 올라간다." - }, - mimicry: { - name: "의태", - description: "필드의 상태에 따라 포켓몬의 타입이 바뀐다." - }, - screenCleaner: { - name: "배리어프리", - description: "등장했을 때 상대와 같은 편의 빛의장막, 리플렉터, 오로라베일의 효과가 사라진다." - }, - steelySpirit: { - name: "강철정신", - description: "같은 편의 강철타입 공격의 위력이 올라간다." - }, - perishBody: { - name: "멸망의바디", - description: "접촉하는 기술을 받으면 3턴 후에 양쪽 모두 기절한다. 교체되면 효과가 없어진다." - }, - wanderingSpirit: { - name: "떠도는영혼", - description: "접촉하는 기술로 공격해온 포켓몬과 특성을 바꾼다." - }, - gorillaTactics: { - name: "무아지경", - description: "공격이 올라가지만 처음에 선택한 기술 외에는 쓸 수 없게 된다." - }, - neutralizingGas: { - name: "화학변화가스", - description: "화학변화가스를 가진 포켓몬이 배틀에 나와 있으면 모든 포켓몬이 가진 특성의 효과가 사라지거나 발동하지 않게 된다." - }, - pastelVeil: { - name: "파스텔베일", - description: "자신과 같은 편이 독의 상태 이상 효과를 받지 않게 된다." - }, - hungerSwitch: { - name: "꼬르륵스위치", - description: "턴이 끝날 때마다 배부른 모양, 배고픈 모양, 배부른 모양...으로 번갈아서 모습을 바꾼다." - }, - quickDraw: { - name: "퀵드로", - description: "상대보다 먼저 행동할 수도 있다." - }, - unseenFist: { - name: "보이지않는주먹", - description: "상대에게 접촉하는 기술을 사용하면 방어의 효과를 무시하고 공격할 수 있다." - }, - curiousMedicine: { - name: "기묘한약", - description: "등장했을 때 조개껍질에서 약을 흩뿌려서 능력 변화를 원래대로 되돌린다." - }, - transistor: { - name: "트랜지스터", - description: "전기타입 기술의 위력이 올라간다." - }, - dragonsMaw: { - name: "용의턱", - description: "드래곤타입 기술의 위력이 올라간다." - }, - chillingNeigh: { - name: "백의울음", - description: "상대를 쓰러뜨리면 차가운 울음소리를 내면서 공격이 올라간다." - }, - grimNeigh: { - name: "흑의울음", - description: "상대를 쓰러뜨리면 무서운 울음소리를 내면서 특수공격이 올라간다." - }, - asOneGlastrier: { - name: "혼연일체", - description: "버드렉스의 긴장감과 블리자포스의 백의울음 두 가지 특성을 겸비한다." - }, - asOneSpectrier: { - name: "혼연일체", - description: "버드렉스의 긴장감과 레이스포스의 흑의울음 두 가지 특성을 겸비한다." - }, - lingeringAroma: { - name: "가시지않는향기", - description: "상대가 접촉하면 가시지 않는 향기가 상대에게 배어 버린다." - }, - seedSower: { - name: "넘치는씨", - description: "공격을 받으면 필드를 그래스필드로 만든다." - }, - thermalExchange: { - name: "열교환", - description: "불꽃타입 기술로 공격받으면 공격이 올라간다. 화상 상태가 되지 않는다." - }, - angerShell: { - name: "분노의껍질", - description: "상대의 공격에 의해 HP가 절반이 되면 화가 나서 방어와 특수방어가 떨어지지만 공격, 특수공격, 스피드가 올라간다." - }, - purifyingSalt: { - name: "정화의소금", - description: "깨끗한 소금에 의해 상태 이상이 되지 않는다. 고스트타입 기술의 데미지를 반감시킨다." - }, - wellBakedBody: { - name: "노릇노릇바디", - description: "불꽃타입 기술로 공격받으면 데미지를 입지 않고 방어가 크게 올라간다." - }, - windRider: { - name: "바람타기", - description: "순풍이 불거나 바람 기술로 공격받으면 데미지를 받지 않고 공격이 올라간다." - }, - guardDog: { - name: "파수견", - description: "위협을 받으면 공격이 올라간다. 포켓몬을 교체시키는 기술이나 도구의 효과를 받지 않는다." - }, - rockyPayload: { - name: "바위나르기", - description: "바위타입 기술의 위력이 올라간다." - }, - windPower: { - name: "풍력발전", - description: "바람 기술로 공격받으면 충전 상태가 된다." - }, - zeroToHero: { - name: "마이티체인지", - description: "지닌 포켓몬으로 돌아오면 마이티폼으로 변한다." - }, - commander: { - name: "사령탑", - description: "등장했을 때 같은 편에 어써러셔가 있으면 입속에 들어가 안에서 지시를 내린다." - }, - electromorphosis: { - name: "전기로바꾸기", - description: "데미지를 받으면 충전 상태가 된다." - }, - protosynthesis: { - name: "고대활성", - description: "부스트에너지를 지니고 있거나 날씨가 맑을 때 가장 높은 능력이 올라간다." - }, - quarkDrive: { - name: "쿼크차지", - description: "부스트에너지를 지니고 있거나 일렉트릭필드일 때 가장 높은 능력이 올라간다." - }, - goodAsGold: { - name: "황금몸", - description: "산화하지 않는 튼튼한 황금몸 덕분에 상대의 변화 기술의 영향을 받지 않는다." - }, - vesselOfRuin: { - name: "재앙의그릇", - description: "재앙을 부르는 그릇의 힘으로 자신을 제외한 모든 포켓몬의 특수 공격을 약하게 만든다." - }, - swordOfRuin: { - name: "재앙의검", - description: "재앙을 부르는 검의 힘으로 자신을 제외한 모든 포켓몬의 방어를 약하게 만든다." - }, - tabletsOfRuin: { - name: "재앙의목간", - description: "재앙을 부르는 목간의 힘으로 자신을 제외한 모든 포켓몬의 공격을 약하게 만든다." - }, - beadsOfRuin: { - name: "재앙의구슬", - description: "재앙을 부르는 곡옥의 힘으로 자신을 제외한 모든 포켓몬의 특수방어를 약하게 만든다." - }, - orichalcumPulse: { - name: "진홍빛고동", - description: "등장했을 때 날씨를 맑음으로 만든다. 햇살이 강하면 고대의 고동에 의해 공격이 강화된다." - }, - hadronEngine: { - name: "하드론엔진", - description: "등장했을 때 일렉트릭필드를 전개한다. 일렉트릭필드일 때 미래 기관에 의해 특수공격이 강화된다." - }, - opportunist: { - name: "편승", - description: "상대의 능력이 올라가면 자신도 편승해서 똑같이 자신도 올린다." - }, - cudChew: { - name: "되새김질", - description: "한 번에 한하여 나무열매를 먹으면 다음 턴이 끝날 때 위에서 꺼내서 또 먹는다." - }, - sharpness: { - name: "예리함", - description: "상대를 베는 기술의 위력이 올라간다." - }, - supremeOverlord: { - name: "총대장", - description: "등장했을 때 지금까지 쓰러진 같은 편의 수가 많을수록 조금씩 공격과 특수공격이 올라간다." - }, - costar: { - name: "협연", - description: "등장했을 때 같은 편의 능력 변화를 복사한다." - }, - toxicDebris: { - name: "독치장", - description: "물리 기술로 데미지를 받으면 상대의 발밑에 독압정을 뿌린다." - }, - armorTail: { - name: "테일아머", - description: "머리를 감싸고 있는 수수께끼의 꼬리가 이쪽을 향한 선제 기술을 사용할 수 없게 한다." - }, - earthEater: { - name: "흙먹기", - description: "땅타입의 기술로 공격받으면 데미지를 받지 않고 회복한다." - }, - myceliumMight: { - name: "균사의힘", - description: "변화 기술을 사용할 때 반드시 행동이 느려지지만 상대 특성에 방해받지 않는다." - }, - mindsEye: { - name: "심안", - /* 축약 있음 */ - description: "노말타입과 격투타입 기술을 고스트타입에게 맞힐 수 있다. 상대의 회피율 변화를 무시하고 명중률도 떨어지지 않는다." - }, - supersweetSyrup: { - name: "감미로운꿀", - description: "처음 등장했을 때 감미로운 꿀의 향기를 흩뿌려서 상대의 회피율을 떨어뜨린다." - }, - hospitality: { - name: "대접", - description: "등장했을 때 같은 편을 대접해서 HP를 조금 회복시킨다." - }, - toxicChain: { - name: "독사슬", - description: "독소를 머금은 사슬의 힘으로 기술에 맞은 상대를 맹독 상태로 만들 때가 있다." - }, - embodyAspectTeal: { - name: "초상투영", - description: "마음속에 깃든 추억의 힘으로 벽록의가면을 빛나게 하여 자신의 스피드를 올린다." - }, - embodyAspectWellspring: { - name: "초상투영", - description: "마음속에 깃든 추억의 힘으로 우물의가면을 빛나게 하여 자신의 특수방어를 올린다." - }, - embodyAspectHearthflame: { - name: "초상투영", - description: "마음속에 깃든 추억의 힘으로 화덕의가면을 빛나게 하여 자신의 공격력을 올린다." - }, - embodyAspectCornerstone: { - name: "초상투영", - description: "마음속에 깃든 추억의 힘으로 주춧돌의가면을 빛나게 하여 자신의 방어력을 올린다." - }, - teraShift: { - name: "테라체인지", - description: "등장했을 때 주위의 에너지를 흡수하여 테라스탈폼으로 변한다." - }, - teraShell: { - name: "테라셸", - description: "모든 타입의 힘이 담긴 등껍질이 HP가 꽉 찼을 때 받는 데미지를 모두 효과가 별로이게 만든다." - }, - teraformZero: { - name: "제로포밍", - description: "테라파고스가 스텔라폼이 되었을 때 숨겨진 힘에 의해 날씨와 필드의 영향을 모두 무효로 만든다." - }, - poisonPuppeteer: { - name: "독조종", - description: "복숭악동의 기술에 의해 독 상태가 된 상대는 혼란 상태도 되어 버린다." - }, -} as const; diff --git a/src/locales/ko/achv.json b/src/locales/ko/achv.json new file mode 100644 index 00000000000..8546dff949c --- /dev/null +++ b/src/locales/ko/achv.json @@ -0,0 +1,268 @@ +{ + "Achievements": { + "name": "업적" + }, + "Locked": { + "name": "미완료" + }, + "MoneyAchv": { + "description": "누적 소지금 ₽{{moneyAmount}} 달성" + }, + "10K_MONEY": { + "name": "돈 좀 있나?" + }, + "100K_MONEY": { + "name": "부자" + }, + "1M_MONEY": { + "name": "백만장자" + }, + "10M_MONEY": { + "name": "상위 1프로" + }, + "DamageAchv": { + "description": "한 번의 공격만으로 {{damageAmount}} 데미지" + }, + "250_DMG": { + "name": "강타자" + }, + "1000_DMG": { + "name": "최강타자" + }, + "2500_DMG": { + "name": "때릴 줄 아시는군요!" + }, + "10000_DMG": { + "name": "원펀맨" + }, + "HealAchv": { + "description": "기술이나 특성, 지닌 도구로 한 번에 {{healAmount}} {{HP}} 회복" + }, + "250_HEAL": { + "name": "견습 힐러" + }, + "1000_HEAL": { + "name": "상급 힐러" + }, + "2500_HEAL": { + "name": "클레릭" + }, + "10000_HEAL": { + "name": "회복 마스터" + }, + "LevelAchv": { + "description": "포켓몬 Lv{{level}} 달성" + }, + "LV_100": { + "name": "잠깐, 여기가 끝이 아니라구!" + }, + "LV_250": { + "name": "엘리트" + }, + "LV_1000": { + "name": "더 먼 곳을 향해" + }, + "RibbonAchv": { + "description": "총 {{ribbonAmount}}개의 리본 획득" + }, + "10_RIBBONS": { + "name": "포켓몬 리그 챔피언" + }, + "25_RIBBONS": { + "name": "슈퍼 리그 챔피언" + }, + "50_RIBBONS": { + "name": "하이퍼 리그 챔피언" + }, + "75_RIBBONS": { + "name": "로그 리그 챔피언" + }, + "100_RIBBONS": { + "name": "마스터 리그 챔피언" + }, + "TRANSFER_MAX_BATTLE_STAT": { + "name": "팀워크", + "description": "한 개 이상의 능력치가 최대 랭크일 때 배턴터치 사용" + }, + "MAX_FRIENDSHIP": { + "name": "친밀 맥스", + "description": "최대 친밀도 달성" + }, + "MEGA_EVOLVE": { + "name": "메가변환", + "description": "포켓몬을 메가진화" + }, + "GIGANTAMAX": { + "name": "엄청난 것", + "description": "포켓몬을 다이맥스" + }, + "TERASTALLIZE": { + "name": "반짝반짝", + "description": "포켓몬을 테라스탈" + }, + "STELLAR_TERASTALLIZE": { + "name": "숨겨진 타입", + "description": "포켓몬을 스텔라 테라스탈" + }, + "SPLICE": { + "name": "끝없는 융합", + "description": "유전자쐐기로 두 포켓몬을 융합" + }, + "MINI_BLACK_HOLE": { + "name": "도구가 가득한 구멍", + "description": "미니 블랙홀 획득" + }, + "CATCH_MYTHICAL": { + "name": "환상", + "description": "환상의 포켓몬 포획" + }, + "CATCH_SUB_LEGENDARY": { + "name": "(준)전설", + "description": "준전설 포켓몬 포획" + }, + "CATCH_LEGENDARY": { + "name": "전설", + "description": "전설의 포켓몬 포획" + }, + "SEE_SHINY": { + "name": "다른 색", + "description": "야생의 색이 다른 포켓몬 발견" + }, + "SHINY_PARTY": { + "name": "찐사랑", + "description": "색이 다른 포켓몬만으로 파티 구성" + }, + "HATCH_MYTHICAL": { + "name": "환상의 알", + "description": "알에서 환상의 포켓몬이 부화" + }, + "HATCH_SUB_LEGENDARY": { + "name": "준전설 알", + "description": "알에서 준전설 포켓몬이 부화" + }, + "HATCH_LEGENDARY": { + "name": "전설의 알", + "description": "알에서 전설의 포켓몬이 부화" + }, + "HATCH_SHINY": { + "name": "빛나는 알", + "description": "알에서 색이 다른 포켓몬이 부화" + }, + "HIDDEN_ABILITY": { + "name": "숨은 잠재력", + "description": "숨겨진 특성을 지닌 포켓몬을 포획" + }, + "PERFECT_IVS": { + "name": "진짜배기 증명서", + "description": "최고의 개체값을 지닌 포켓몬 획득" + }, + "CLASSIC_VICTORY": { + "name": "무패", + "description": "클래식 모드 클리어" + }, + "UNEVOLVED_CLASSIC_VICTORY": { + "name": "우리집 꿈나무", + "description": "최종 진화형이 아닌 포켓몬을 데리고 클래식 모드 클리어." + }, + "MONO_GEN_ONE": { + "name": "근본 라이벌", + "description": "1세대 챌린지 모드 클리어." + }, + "MONO_GEN_TWO": { + "name": "이거 1.5세대죠?", + "description": "2세대 챌린지 모드 클리어." + }, + "MONO_GEN_THREE": { + "name": "Too much water?", + "description": "3세대 챌린지 모드 클리어." + }, + "MONO_GEN_FOUR": { + "name": "난천이 진짜 최강인가요?", + "description": "4세대 챌린지 모드 클리어." + }, + "MONO_GEN_FIVE": { + "name": "100% 오리지널!", + "description": "5세대 챌린지 모드 클리어." + }, + "MONO_GEN_SIX": { + "name": "크루아상 안에 뭐 들었나요?", + "description": "6세대 챌린지 모드 클리어." + }, + "MONO_GEN_SEVEN": { + "name": "기술적으로는…", + "description": "7세대 챌린지 모드 클리어." + }, + "MONO_GEN_EIGHT": { + "name": "챔피언 타임!", + "description": "8세대 챌린지 모드 클리어." + }, + "MONO_GEN_NINE": { + "name": "걔, 봐 준 거야", + "description": "9세대 챌린지 모드 클리어." + }, + "MonoType": { + "description": "{{type}} 타입 챌린지 모드 클리어." + }, + "MONO_NORMAL": { + "name": "심플한 것이 가장 강한 것" + }, + "MONO_FIGHTING": { + "name": "태권도 할 줄 알아요" + }, + "MONO_FLYING": { + "name": "추락하는 것은 날개가 있다" + }, + "MONO_POISON": { + "name": "관동 지방 최애 타입" + }, + "MONO_GROUND": { + "name": "전기 안 통해요" + }, + "MONO_ROCK": { + "name": "웅골참" + }, + "MONO_BUG": { + "name": "독침붕처럼 쏴라" + }, + "MONO_GHOST": { + "name": "누굴 부를 거야?" + }, + "MONO_STEEL": { + "name": "강철 심장" + }, + "MONO_FIRE": { + "name": "불타오르네" + }, + "MONO_WATER": { + "name": "물 들어올 때 노 젓기" + }, + "MONO_GRASS": { + "name": "초록은 동색" + }, + "MONO_ELECTRIC": { + "name": "찌릿찌릿" + }, + "MONO_PSYCHIC": { + "name": "1세대 최강" + }, + "MONO_ICE": { + "name": "얼음땡" + }, + "MONO_DRAGON": { + "name": "용용 죽겠지" + }, + "MONO_DARK": { + "name": "어둠의 다크" + }, + "MONO_FAIRY": { + "name": "설마 자시안으로?" + }, + "FRESH_START": { + "name": "첫트!", + "description": "새 출발 챌린지 모드 클리어." + }, + "INVERSE_BATTLE": { + "name": "상성 전문가(였던 것)", + "description": "거꾸로 배틀 챌린지 모드 클리어." + } +} \ No newline at end of file diff --git a/src/locales/ko/achv.ts b/src/locales/ko/achv.ts deleted file mode 100644 index 431cb7d3296..00000000000 --- a/src/locales/ko/achv.ts +++ /dev/null @@ -1,278 +0,0 @@ -import { AchievementTranslationEntries } from "#app/interfaces/locales.js"; - -// Achievement translations for the when the player character is male -export const PGMachv: AchievementTranslationEntries = { - "Achievements": { - name: "업적", - }, - "Locked": { - name: "미완료", - }, - - "MoneyAchv": { - description: "누적 소지금 ₽{{moneyAmount}} 달성", - }, - "10K_MONEY": { - name: "돈 좀 있나?", - }, - "100K_MONEY": { - name: "부자", - }, - "1M_MONEY": { - name: "백만장자", - }, - "10M_MONEY": { - name: "상위 1프로", - }, - - "DamageAchv": { - description: "한 번의 공격만으로 {{damageAmount}} 데미지", - }, - "250_DMG": { - name: "강타자", - }, - "1000_DMG": { - name: "최강타자", - }, - "2500_DMG": { - name: "때릴 줄 아시는군요!", - }, - "10000_DMG": { - name: "원펀맨", - }, - - "HealAchv": { - description: "기술이나 특성, 지닌 도구로 한 번에 {{healAmount}} {{HP}} 회복", - }, - "250_HEAL": { - name: "견습 힐러", - }, - "1000_HEAL": { - name: "상급 힐러", - }, - "2500_HEAL": { - name: "클레릭", - }, - "10000_HEAL": { - name: "회복 마스터", - }, - - "LevelAchv": { - description: "포켓몬 Lv{{level}} 달성", - }, - "LV_100": { - name: "잠깐, 여기가 끝이 아니라구!", - }, - "LV_250": { - name: "엘리트", - }, - "LV_1000": { - name: "더 먼 곳을 향해", - }, - - "RibbonAchv": { - description: "총 {{ribbonAmount}}개의 리본 획득", - }, - "10_RIBBONS": { - name: "포켓몬 리그 챔피언", - }, - "25_RIBBONS": { - name: "슈퍼 리그 챔피언", - }, - "50_RIBBONS": { - name: "하이퍼 리그 챔피언", - }, - "75_RIBBONS": { - name: "로그 리그 챔피언", - }, - "100_RIBBONS": { - name: "마스터 리그 챔피언", - }, - - "TRANSFER_MAX_BATTLE_STAT": { - name: "팀워크", - description: "한 개 이상의 능력치가 최대 랭크일 때 배턴터치 사용", - }, - "MAX_FRIENDSHIP": { - name: "친밀 맥스", - description: "최대 친밀도 달성", - }, - "MEGA_EVOLVE": { - name: "메가변환", - description: "포켓몬을 메가진화", - }, - "GIGANTAMAX": { - name: "엄청난 것", - description: "포켓몬을 다이맥스", - }, - "TERASTALLIZE": { - name: "반짝반짝", - description: "포켓몬을 테라스탈", - }, - "STELLAR_TERASTALLIZE": { - name: "숨겨진 타입", - description: "포켓몬을 스텔라 테라스탈", - }, - "SPLICE": { - name: "끝없는 융합", - description: "유전자쐐기로 두 포켓몬을 융합", - }, - "MINI_BLACK_HOLE": { - name: "도구가 가득한 구멍", - description: "미니 블랙홀 획득", - }, - "CATCH_MYTHICAL": { - name: "환상", - description: "환상의 포켓몬 포획", - }, - "CATCH_SUB_LEGENDARY": { - name: "(준)전설", - description: "준전설 포켓몬 포획", - }, - "CATCH_LEGENDARY": { - name: "전설", - description: "전설의 포켓몬 포획", - }, - "SEE_SHINY": { - name: "다른 색", - description: "야생의 색이 다른 포켓몬 발견", - }, - "SHINY_PARTY": { - name: "찐사랑", - description: "색이 다른 포켓몬만으로 파티 구성", - }, - "HATCH_MYTHICAL": { - name: "환상의 알", - description: "알에서 환상의 포켓몬이 부화", - }, - "HATCH_SUB_LEGENDARY": { - name: "준전설 알", - description: "알에서 준전설 포켓몬이 부화", - }, - "HATCH_LEGENDARY": { - name: "전설의 알", - description: "알에서 전설의 포켓몬이 부화", - }, - "HATCH_SHINY": { - name: "빛나는 알", - description: "알에서 색이 다른 포켓몬이 부화", - }, - "HIDDEN_ABILITY": { - name: "숨은 잠재력", - description: "숨겨진 특성을 지닌 포켓몬을 포획", - }, - "PERFECT_IVS": { - name: "진짜배기 증명서", - description: "최고의 개체값을 지닌 포켓몬 획득", - }, - "CLASSIC_VICTORY": { - name: "무패", - description: "클래식 모드 클리어", - }, - "UNEVOLVED_CLASSIC_VICTORY": { - name: "우리집 꿈나무", - description: "최종 진화형이 아닌 포켓몬을 데리고 클래식 모드 클리어." - }, - - "MONO_GEN_ONE": { - name: "근본 라이벌", - description: "1세대 챌린지 모드 클리어.", - }, - "MONO_GEN_TWO": { - name: "이거 1.5세대죠?", - description: "2세대 챌린지 모드 클리어.", - }, - "MONO_GEN_THREE": { - name: "Too much water?", - description: "3세대 챌린지 모드 클리어.", - }, - "MONO_GEN_FOUR": { - name: "난천이 진짜 최강인가요?", - description: "4세대 챌린지 모드 클리어.", - }, - "MONO_GEN_FIVE": { - name: "100% 오리지널!", - description: "5세대 챌린지 모드 클리어.", - }, - "MONO_GEN_SIX": { - name: "크루아상 안에 뭐 들었나요?", - description: "6세대 챌린지 모드 클리어.", - }, - "MONO_GEN_SEVEN": { - name: "기술적으로는…", - description: "7세대 챌린지 모드 클리어.", - }, - "MONO_GEN_EIGHT": { - name: "챔피언 타임!", - description: "8세대 챌린지 모드 클리어.", - }, - "MONO_GEN_NINE": { - name: "걔, 봐 준 거야", - description: "9세대 챌린지 모드 클리어.", - }, - - "MonoType": { - description: "{{type}} 타입 챌린지 모드 클리어.", - }, - "MONO_NORMAL": { - name: "심플한 것이 가장 강한 것", - }, - "MONO_FIGHTING": { - name: "태권도 할 줄 알아요", - }, - "MONO_FLYING": { - name: "추락하는 것은 날개가 있다", - }, - "MONO_POISON": { - name: "관동 지방 최애 타입", - }, - "MONO_GROUND": { - name: "전기 안 통해요", - }, - "MONO_ROCK": { - name: "웅골참", - }, - "MONO_BUG": { - name: "독침붕처럼 쏴라", - }, - "MONO_GHOST": { - name: "누굴 부를 거야?", - }, - "MONO_STEEL": { - name: "강철 심장", - }, - "MONO_FIRE": { - name: "불타오르네", - }, - "MONO_WATER": { - name: "물 들어올 때 노 젓기", - }, - "MONO_GRASS": { - name: "초록은 동색", - }, - "MONO_ELECTRIC": { - name: "찌릿찌릿", - }, - "MONO_PSYCHIC": { - name: "1세대 최강", - }, - "MONO_ICE": { - name: "얼음땡", - }, - "MONO_DRAGON": { - name: "용용 죽겠지", - }, - "MONO_DARK": { - name: "어둠의 다크", - }, - "MONO_FAIRY": { - name: "설마 자시안으로?", - }, - "FRESH_START": { - name: "첫트!", - description: "새 출발 챌린지 모드 클리어." - }, -} as const; - -// Achievement translations for the when the player character is female (it for now uses the same translations as the male version) -export const PGFachv: AchievementTranslationEntries = PGMachv; diff --git a/src/locales/ko/arena-flyout.ts b/src/locales/ko/arena-flyout.json similarity index 82% rename from src/locales/ko/arena-flyout.ts rename to src/locales/ko/arena-flyout.json index 33d9596af2c..bfd24776cdc 100644 --- a/src/locales/ko/arena-flyout.ts +++ b/src/locales/ko/arena-flyout.json @@ -1,13 +1,8 @@ -import { SimpleTranslationEntries } from "#app/interfaces/locales"; - -export const arenaFlyout: SimpleTranslationEntries = { - // Title +{ "activeBattleEffects": "배틀 효과 상태", "player": "플레이어", "neutral": "공통", "enemy": "상대", - - // WeatherType "sunny": "쾌청", "rain": "비", "sandstorm": "모래바람", @@ -17,14 +12,10 @@ export const arenaFlyout: SimpleTranslationEntries = { "heavyRain": "강한 비", "harshSun": "강한 쾌청", "strongWinds": "난기류", - - // TerrainType "misty": "미스트필드", "electric": "일렉트릭필드", "grassy": "그래스필드", "psychic": "사이코필드", - - // ArenaTagType "mudSport": "흙놀이", "waterSport": "물놀이", "spikes": "압정", @@ -45,5 +36,5 @@ export const arenaFlyout: SimpleTranslationEntries = { "matBlock": "마룻바닥세워막기", "craftyShield": "트릭가드", "tailwind": "순풍", - "happyHour": "해피타임", -}; + "happyHour": "해피타임" +} \ No newline at end of file diff --git a/src/locales/ko/arena-tag.ts b/src/locales/ko/arena-tag.json similarity index 95% rename from src/locales/ko/arena-tag.ts rename to src/locales/ko/arena-tag.json index 2211ced6c4c..61586508a94 100644 --- a/src/locales/ko/arena-tag.ts +++ b/src/locales/ko/arena-tag.json @@ -1,6 +1,4 @@ -import { SimpleTranslationEntries } from "#app/interfaces/locales"; - -export const arenaTag: SimpleTranslationEntries = { +{ "yourTeam": "우리 편", "opposingTeam": "상대 편", "arenaOnRemove": "{{moveName}}의 효과가 사라졌다!", @@ -49,5 +47,5 @@ export const arenaTag: SimpleTranslationEntries = { "tailwindOnRemovePlayer": "우리 편의\n순풍이 멈췄다!", "tailwindOnRemoveEnemy": "상대의\n순풍이 멈췄다!", "happyHourOnAdd": "모두 행복한 기분에\n휩싸였다!", - "happyHourOnRemove": "기분이 원래대로 돌아왔다.", -} as const; + "happyHourOnRemove": "기분이 원래대로 돌아왔다." +} \ No newline at end of file diff --git a/src/locales/ko/battle-info.json b/src/locales/ko/battle-info.json new file mode 100644 index 00000000000..8f95af52b20 --- /dev/null +++ b/src/locales/ko/battle-info.json @@ -0,0 +1,3 @@ +{ + "generation": "{{generation}}" +} \ No newline at end of file diff --git a/src/locales/ko/battle-info.ts b/src/locales/ko/battle-info.ts deleted file mode 100644 index 357de6003ec..00000000000 --- a/src/locales/ko/battle-info.ts +++ /dev/null @@ -1,5 +0,0 @@ -import { SimpleTranslationEntries } from "#app/interfaces/locales"; - -export const battleInfo: SimpleTranslationEntries = { - "generation": "{{generation}}", -} as const; diff --git a/src/locales/ko/battle-message-ui-handler.json b/src/locales/ko/battle-message-ui-handler.json new file mode 100644 index 00000000000..b1ffecf75e5 --- /dev/null +++ b/src/locales/ko/battle-message-ui-handler.json @@ -0,0 +1,8 @@ +{ + "ivBest": "최고", + "ivFantastic": "훌륭하다", + "ivVeryGood": "굉장히 좋다", + "ivPrettyGood": "상당히 좋다", + "ivDecent": "적당하다", + "ivNoGood": "별로인 듯" +} \ No newline at end of file diff --git a/src/locales/ko/battle-message-ui-handler.ts b/src/locales/ko/battle-message-ui-handler.ts deleted file mode 100644 index fdd79044090..00000000000 --- a/src/locales/ko/battle-message-ui-handler.ts +++ /dev/null @@ -1,10 +0,0 @@ -import { SimpleTranslationEntries } from "#app/interfaces/locales"; - -export const battleMessageUiHandler: SimpleTranslationEntries = { - "ivBest": "최고", - "ivFantastic": "훌륭하다", - "ivVeryGood": "굉장히 좋다", - "ivPrettyGood": "상당히 좋다", - "ivDecent": "적당하다", - "ivNoGood": "별로인 듯", -} as const; diff --git a/src/locales/ko/battle-scene.json b/src/locales/ko/battle-scene.json new file mode 100644 index 00000000000..a0288475d69 --- /dev/null +++ b/src/locales/ko/battle-scene.json @@ -0,0 +1,3 @@ +{ + "moneyOwned": "₽{{formattedMoney}}" +} \ No newline at end of file diff --git a/src/locales/ko/battle.ts b/src/locales/ko/battle.json similarity index 97% rename from src/locales/ko/battle.ts rename to src/locales/ko/battle.json index bdbcbcdf8d2..001720e4e5c 100644 --- a/src/locales/ko/battle.ts +++ b/src/locales/ko/battle.json @@ -1,6 +1,4 @@ -import { SimpleTranslationEntries } from "#app/interfaces/locales"; - -export const battle: SimpleTranslationEntries = { +{ "bossAppeared": "{{bossName}}[[가]] 나타났다.", "trainerAppeared": "{{trainerName}}[[가]]\n승부를 걸어왔다!", "trainerAppearedDouble": "{{trainerName}}[[가]]\n승부를 걸어왔다!", @@ -24,6 +22,7 @@ export const battle: SimpleTranslationEntries = { "hitResultSuperEffective": "효과가 굉장했다!", "hitResultNotVeryEffective": "효과가 별로인 듯하다…", "hitResultNoEffect": "{{pokemonName}}에게는\n효과가 없는 것 같다…", + "hitResultImmune": "{{pokemonName}}에게는\n전혀 효과가 없다!", "hitResultOneHitKO": "일격필살!", "attackFailed": "그러나 실패하고 말았다!!", "attackMissed": "{{pokemonNameWithAffix}}에게는\n맞지 않았다!", @@ -39,7 +38,7 @@ export const battle: SimpleTranslationEntries = { "learnMoveNotLearned": "{{pokemonName}}[[는]] {{moveName}}[[를]]\n결국 배우지 않았다!", "learnMoveForgetQuestion": "어느 기술을 잊게 하고싶은가?", "learnMoveForgetSuccess": "{{pokemonName}}[[는]] {{moveName}}[[를]] 깨끗이 잊었다!", - "countdownPoof": "@d{32}1, @d{15}2, @d{15}… @d{15}… @d{30}@s{pb_bounce_1}짠!", + "countdownPoof": "@d{32}1, @d{15}2, @d{15}… @d{15}… @d{30}@s{se/pb_bounce_1}짠!", "learnMoveAnd": "그리고…", "levelCapUp": "레벨의 최대치가\n{{levelCap}}까지 상승했다!", "moveNotImplemented": "{{moveName}}[[는]] 아직 구현되지 않아 사용할 수 없다…", @@ -95,5 +94,5 @@ export const battle: SimpleTranslationEntries = { "unlockedSomething": "{{unlockedThing}}[[가]]\n해금되었다.", "congratulations": "축하합니다!", "beatModeFirstTime": "{{speciesName}}[[가]] {{gameMode}} 모드를 처음으로 클리어했다!\n{{newModifier}}[[를]] 손에 넣었다!", - "ppReduced": "{{targetName}}의\n{{moveName}}[[를]] {{reduction}} 깎았다!", -} as const; + "ppReduced": "{{targetName}}의\n{{moveName}}[[를]] {{reduction}} 깎았다!" +} \ No newline at end of file diff --git a/src/locales/ko/battler-tags.ts b/src/locales/ko/battler-tags.json similarity index 97% rename from src/locales/ko/battler-tags.ts rename to src/locales/ko/battler-tags.json index 39647466ada..47ddb26c183 100644 --- a/src/locales/ko/battler-tags.ts +++ b/src/locales/ko/battler-tags.json @@ -1,6 +1,4 @@ -import { SimpleTranslationEntries } from "#app/interfaces/locales"; - -export const battlerTags: SimpleTranslationEntries = { +{ "trappedDesc": "함정", "flinchedDesc": "풀죽음", "confusedDesc": "혼란", @@ -69,5 +67,5 @@ export const battlerTags: SimpleTranslationEntries = { "saltCuredLapse": "{{pokemonNameWithAffix}}[[는]] 소금절이의\n데미지를 입고 있다.", "cursedOnAdd": "{{pokemonNameWithAffix}}[[는]] 자신의 체력을 깎아서\n{{pokemonName}}에게 저주를 걸었다!", "cursedLapse": "{{pokemonNameWithAffix}}[[는]]\n저주받고 있다!", - "stockpilingOnAdd": "{{pokemonNameWithAffix}}[[는]]\n{{stockpiledCount}}개 비축했다!", -} as const; + "stockpilingOnAdd": "{{pokemonNameWithAffix}}[[는]]\n{{stockpiledCount}}개 비축했다!" +} \ No newline at end of file diff --git a/src/locales/ko/berry.json b/src/locales/ko/berry.json new file mode 100644 index 00000000000..4681df53fb5 --- /dev/null +++ b/src/locales/ko/berry.json @@ -0,0 +1,46 @@ +{ + "SITRUS": { + "name": "자뭉열매", + "effect": "지니게 하면 HP가 50% 미만일 때 HP를 25% 회복" + }, + "LUM": { + "name": "리샘열매", + "effect": "지니게 하면 모든 상태 이상과 혼란을 회복" + }, + "ENIGMA": { + "name": "의문열매", + "effect": "지니게 하면 효과가 뛰어난 기술에 당했을 때 HP를 25% 회복" + }, + "LIECHI": { + "name": "치리열매", + "effect": "지니게 하면 HP가 25% 미만일 때 자신의 공격이 상승" + }, + "GANLON": { + "name": "용아열매", + "effect": "지니게 하면 HP가 25% 미만일 때 자신의 방어가 상승" + }, + "PETAYA": { + "name": "야타비열매", + "effect": "지니게 하면 HP가 25% 미만일 때 자신의 특수공격이 상승" + }, + "APICOT": { + "name": "규살열매", + "effect": "지니게 하면 HP가 25% 미만일 때 자신의 특수방어가 상승" + }, + "SALAC": { + "name": "캄라열매", + "effect": "지니게 하면 HP가 25% 미만일 때 자신의 스피드가 상승" + }, + "LANSAT": { + "name": "랑사열매", + "effect": "지니게 하면 HP가 25% 미만일 때 공격이 급소를 맞히기 쉬워짐" + }, + "STARF": { + "name": "스타열매", + "effect": "지니게 하면 HP가 25% 미만일 때 능력 중의 하나가 크게 상승" + }, + "LEPPA": { + "name": "과사열매", + "effect": "지니게 하면 기술의 PP가 0이 되었을 때 PP를 10만큼 회복" + } +} \ No newline at end of file diff --git a/src/locales/ko/berry.ts b/src/locales/ko/berry.ts deleted file mode 100644 index 722edf62c9a..00000000000 --- a/src/locales/ko/berry.ts +++ /dev/null @@ -1,48 +0,0 @@ -import { BerryTranslationEntries } from "#app/interfaces/locales"; - -export const berry: BerryTranslationEntries = { - "SITRUS": { - name: "자뭉열매", - effect: "지니게 하면 HP가 50% 미만일 때 HP를 25% 회복", - }, - "LUM": { - name: "리샘열매", - effect: "지니게 하면 모든 상태 이상과 혼란을 회복", - }, - "ENIGMA": { - name: "의문열매", - effect: "지니게 하면 효과가 뛰어난 기술에 당했을 때 HP를 25% 회복", - }, - "LIECHI": { - name: "치리열매", - effect: "지니게 하면 HP가 25% 미만일 때 자신의 공격이 상승", - }, - "GANLON": { - name: "용아열매", - effect: "지니게 하면 HP가 25% 미만일 때 자신의 방어가 상승", - }, - "PETAYA": { - name: "야타비열매", - effect: "지니게 하면 HP가 25% 미만일 때 자신의 특수공격이 상승", - }, - "APICOT": { - name: "규살열매", - effect: "지니게 하면 HP가 25% 미만일 때 자신의 특수방어가 상승", - }, - "SALAC": { - name: "캄라열매", - effect: "지니게 하면 HP가 25% 미만일 때 자신의 스피드가 상승", - }, - "LANSAT": { - name: "랑사열매", - effect: "지니게 하면 HP가 25% 미만일 때 공격이 급소를 맞히기 쉬워짐", - }, - "STARF": { - name: "스타열매", - effect: "지니게 하면 HP가 25% 미만일 때 능력 중의 하나가 크게 상승", - }, - "LEPPA": { - name: "과사열매", - effect: "지니게 하면 기술의 PP가 0이 되었을 때 PP를 10만큼 회복", - }, -} as const; diff --git a/src/locales/ko/bgm-name.ts b/src/locales/ko/bgm-name.json similarity index 90% rename from src/locales/ko/bgm-name.ts rename to src/locales/ko/bgm-name.json index 81052560fc4..5295e2d8708 100644 --- a/src/locales/ko/bgm-name.ts +++ b/src/locales/ko/bgm-name.json @@ -1,8 +1,6 @@ -import { SimpleTranslationEntries } from "#app/interfaces/locales"; - -export const bgmName: SimpleTranslationEntries = { +{ "music": "Music: ", - "missing_entries" : "{{name}}", + "missing_entries": "{{name}}", "battle_kanto_champion": "BW2 관동 챔피언 배틀", "battle_johto_champion": "BW2 성도 챔피언 배틀", "battle_hoenn_champion_g5": "BW2 호연 챔피언 배틀", @@ -47,6 +45,7 @@ export const bgmName: SimpleTranslationEntries = { "battle_legendary_lake_trio": "ORAS 호수의 수호신 배틀", "battle_legendary_sinnoh": "ORAS 신오 전설 조우 배틀", "battle_legendary_dia_pal": "ORAS 디아루가 & 펄기아 배틀", + "battle_legendary_origin_forme": "LA 오리진 디아루가 & 펄기아 배틀", "battle_legendary_giratina": "ORAS 기라티나 배틀", "battle_legendary_arceus": "HGSS 아르세우스 배틀", "battle_legendary_unova": "BW 하나 전설 조우 배틀", @@ -61,6 +60,7 @@ export const bgmName: SimpleTranslationEntries = { "battle_legendary_zac_zam": "SWSH 자시안 & 자마젠타 배틀", "battle_legendary_glas_spec": "SWSH 블리자포스 & 레이스포스 배틀", "battle_legendary_calyrex": "SWSH 버드렉스 배틀", + "battle_legendary_riders": "SWSH 백마 & 흑마 버드렉스 배틀", "battle_legendary_birds_galar": "SWSH 가라르 전설의 새 배틀", "battle_legendary_ruinous": "SV 재앙의 보물 배틀", "battle_legendary_kor_mir": "SV 에리어 제로 배틀", @@ -80,13 +80,20 @@ export const bgmName: SimpleTranslationEntries = { "battle_galactic_grunt": "BDSP 갤럭시단 배틀", "battle_plasma_grunt": "BW 플라스마단 배틀", "battle_flare_grunt": "XY 플레어단 배틀", + "battle_aether_grunt": "SM 에테르재단 배틀", + "battle_skull_grunt": "SM 스컬단 배틀", + "battle_macro_grunt": "SWSH 트레이너 배틀", + "battle_galactic_admin": "BDSP 갤럭시단 간부 배틀", + "battle_skull_admin": "SM 스컬단 간부 배틀", + "battle_oleana": "SWSH 올리브 배틀", "battle_rocket_boss": "USUM 비주기 배틀", "battle_aqua_magma_boss": "ORAS 아강 & 마적 배틀", "battle_galactic_boss": "BDSP 태홍 배틀", "battle_plasma_boss": "B2W2 게치스 배틀", "battle_flare_boss": "XY 플라드리 배틀", - - // Biome Music + "battle_aether_boss": "SM 루자미네 배틀", + "battle_skull_boss": "SM 구즈마 배틀", + "battle_macro_boss": "SWSH 로즈 배틀", "abyss": "불가사의 던전 하늘의 탐험대 어둠의 화구", "badlands": "불가사의 던전 하늘의 탐험대 불모의 계곡", "beach": "불가사의 던전 하늘의 탐험대 축축한 암반", @@ -102,18 +109,18 @@ export const bgmName: SimpleTranslationEntries = { "graveyard": "불가사의 던전 하늘의 탐험대 신비의 숲", "ice_cave": "불가사의 던전 하늘의 탐험대 광대한 얼음산", "island": "불가사의 던전 하늘의 탐험대 연안의 암반", - "jungle": "Lmz - Jungle", // The composer thinks about a more creative name - "laboratory": "Firel - Laboratory", // The composer thinks about a more creative name + "jungle": "Lmz - Jungle", + "laboratory": "Firel - Laboratory", "lake": "불가사의 던전 하늘의 탐험대 수정 동굴", "meadow": "불가사의 던전 하늘의 탐험대 하늘 꼭대기 숲", - "metropolis": "Firel - Metropolis", // The composer thinks about a more creative name + "metropolis": "Firel - Metropolis", "mountain": "불가사의 던전 하늘의 탐험대 뿔산", "plains": "불가사의 던전 하늘의 탐험대 하늘 꼭대기 초원", "power_plant": "불가사의 던전 하늘의 탐험대 일렉트릭 평원", "ruins": "불가사의 던전 하늘의 탐험대 봉인의 암반", - "sea": "Andr06 - Marine Mystique", // Name defined by the composer - "seabed": "Firel - Seabed", // The composer thinks about a more creative name - "slum": "Andr06 - Sneaky Snom", // Name defined by the composer + "sea": "Andr06 - Marine Mystique", + "seabed": "Firel - Seabed", + "slum": "Andr06 - Sneaky Snom", "snowy_forest": "불가사의 던전 하늘의 탐험대 하늘 꼭대기 설원", "space": "Firel - Aether", "swamp": "불가사의 던전 하늘의 탐험대 폐쇄되어진 바다", @@ -122,8 +129,6 @@ export const bgmName: SimpleTranslationEntries = { "town": "불가사의 던전 하늘의 탐험대 랜덤 던전 테마 3", "volcano": "불가사의 던전 하늘의 탐험대 열수의 동굴", "wasteland": "불가사의 던전 하늘의 탐험대 환상의 대지", - - // Encounter "encounter_ace_trainer": "BW 눈이 마주치면 승부! (엘리트 트레이너)", "encounter_backpacker": "BW 눈이 마주치면 승부! (등산가)", "encounter_clerk": "BW 눈이 마주치면 승부! (회사원)", @@ -138,9 +143,7 @@ export const bgmName: SimpleTranslationEntries = { "encounter_scientist": "BW 눈이 마주치면 승부! (연구원)", "encounter_twins": "BW 눈이 마주치면 승부! (쌍둥이)", "encounter_youngster": "BW 눈이 마주치면 승부! (반바지 꼬마)", - - // Other "heal": "BW 포켓몬 센터", "menu": "불가사의 던전 하늘의 탐험대 포켓몬 세계에 온 것을 환영한다!", - "title": "불가사의 던전 하늘의 탐험대 메뉴 테마", -} as const; + "title": "불가사의 던전 하늘의 탐험대 메뉴 테마" +} diff --git a/src/locales/ko/biome.ts b/src/locales/ko/biome.json similarity index 85% rename from src/locales/ko/biome.ts rename to src/locales/ko/biome.json index 7167618d161..8149c2c2c48 100644 --- a/src/locales/ko/biome.ts +++ b/src/locales/ko/biome.json @@ -1,6 +1,4 @@ -import { SimpleTranslationEntries } from "#app/interfaces/locales"; - -export const biome: SimpleTranslationEntries = { +{ "unknownLocation": "기억할 수 없는 곳", "TOWN": "마을", "PLAINS": "평야", @@ -36,5 +34,5 @@ export const biome: SimpleTranslationEntries = { "SNOWY_FOREST": "눈덮인 숲", "ISLAND": "섬", "LABORATORY": "연구소", - "END": "???", -} as const; + "END": "???" +} \ No newline at end of file diff --git a/src/locales/ko/challenges.ts b/src/locales/ko/challenges.json similarity index 73% rename from src/locales/ko/challenges.ts rename to src/locales/ko/challenges.json index f84a4f31dc6..7efdfef3570 100644 --- a/src/locales/ko/challenges.ts +++ b/src/locales/ko/challenges.json @@ -1,6 +1,4 @@ -import { TranslationEntries } from "#app/interfaces/locales"; - -export const challenges: TranslationEntries = { +{ "title": "챌린지 조건 설정", "illegalEvolution": "{{pokemon}}[[는]] 현재의 챌린지에\n부적합한 포켓몬이 되었습니다!", "singleGeneration": { @@ -15,18 +13,24 @@ export const challenges: TranslationEntries = { "gen_6": "6세대", "gen_7": "7세대", "gen_8": "8세대", - "gen_9": "9세대", + "gen_9": "9세대" }, "singleType": { "name": "단일 타입", "desc": "{{type}} 타입의 포켓몬만 사용할 수 있습니다.", "desc_default": "선택한 타입의 포켓몬만 사용할 수 있습니다." - //type in pokemon-info }, "freshStart": { "name": "새 출발", "desc": "포켓로그를 처음 시작했던 때처럼 강화가 전혀 되지 않은 오리지널 스타팅 포켓몬만 고를 수 있습니다.", "value.0": "해제", - "value.1": "설정", + "value.1": "설정" + }, + "inverseBattle": { + "name": "거꾸로 배틀", + "shortName": "거꾸로", + "desc": "타입 상성이 반대로 바뀌고 면역 타입은 약점 타입이 됩니다.\n설정 시 다른 챌린지 업적은 달성할 수 없습니다.", + "value.0": "해제", + "value.1": "설정" } -} as const; +} \ No newline at end of file diff --git a/src/locales/ko/command-ui-handler.json b/src/locales/ko/command-ui-handler.json new file mode 100644 index 00000000000..15cfba7196b --- /dev/null +++ b/src/locales/ko/command-ui-handler.json @@ -0,0 +1,7 @@ +{ + "fight": "싸운다", + "ball": "볼", + "pokemon": "포켓몬", + "run": "도망간다", + "actionMessage": "{{pokemonName}}[[는]] 무엇을 할까?" +} \ No newline at end of file diff --git a/src/locales/ko/command-ui-handler.ts b/src/locales/ko/command-ui-handler.ts deleted file mode 100644 index a40ec0316bf..00000000000 --- a/src/locales/ko/command-ui-handler.ts +++ /dev/null @@ -1,9 +0,0 @@ -import { SimpleTranslationEntries } from "#app/interfaces/locales"; - -export const commandUiHandler: SimpleTranslationEntries = { - "fight": "싸운다", - "ball": "볼", - "pokemon": "포켓몬", - "run": "도망간다", - "actionMessage": "{{pokemonName}}[[는]] 무엇을 할까?", -} as const; diff --git a/src/locales/ko/common.json b/src/locales/ko/common.json new file mode 100644 index 00000000000..f67eae67155 --- /dev/null +++ b/src/locales/ko/common.json @@ -0,0 +1,8 @@ +{ + "start": "시작", + "luckIndicator": "행운:", + "shinyOnHover": "색이 다른", + "commonShiny": "커먼", + "rareShiny": "레어", + "epicShiny": "에픽" +} \ No newline at end of file diff --git a/src/locales/ko/common.ts b/src/locales/ko/common.ts deleted file mode 100644 index 30df85cb3a6..00000000000 --- a/src/locales/ko/common.ts +++ /dev/null @@ -1,10 +0,0 @@ -import { SimpleTranslationEntries } from "#app/interfaces/locales"; - -export const common: SimpleTranslationEntries = { - "start": "시작", - "luckIndicator": "행운:", - "shinyOnHover": "색이 다른", - "commonShiny": "커먼", - "rareShiny": "레어", - "epicShiny": "에픽", -} as const; diff --git a/src/locales/ko/config.ts b/src/locales/ko/config.ts index 114950a4d35..978cdc83002 100644 --- a/src/locales/ko/config.ts +++ b/src/locales/ko/config.ts @@ -1,116 +1,113 @@ -import { ability } from "./ability"; -import { abilityTriggers } from "./ability-trigger"; -import { arenaFlyout } from "./arena-flyout"; -import { arenaTag } from "./arena-tag"; -import { PGFachv, PGMachv } from "./achv"; -import { battle } from "./battle"; -import { battleInfo } from "./battle-info"; -import { battleMessageUiHandler } from "./battle-message-ui-handler"; -import { battlerTags } from "./battler-tags"; -import { berry } from "./berry"; -import { bgmName } from "./bgm-name"; -import { biome } from "./biome"; -import { challenges } from "./challenges"; -import { commandUiHandler } from "./command-ui-handler"; -import { - PGFbattleSpecDialogue, - PGFdialogue, - PGFdoubleBattleDialogue, - PGFmiscDialogue, - PGMbattleSpecDialogue, - PGMdialogue, - PGMdoubleBattleDialogue, - PGMmiscDialogue -} from "./dialogue"; -import { egg } from "./egg"; -import { fightUiHandler } from "./fight-ui-handler"; -import { filterBar } from "./filter-bar"; -import { gameMode } from "./game-mode"; -import { gameStatsUiHandler } from "./game-stats-ui-handler"; -import { growth } from "./growth"; -import { menu } from "./menu"; -import { menuUiHandler } from "./menu-ui-handler"; -import { modifier } from "./modifier"; -import { modifierType } from "./modifier-type"; -import { move } from "./move"; -import { nature } from "./nature"; -import { pokeball } from "./pokeball"; -import { pokemon } from "./pokemon"; -import { pokemonForm, battlePokemonForm } from "./pokemon-form"; -import { pokemonInfo } from "./pokemon-info"; -import { pokemonInfoContainer } from "./pokemon-info-container"; -import { pokemonSummary } from "./pokemon-summary"; -import { saveSlotSelectUiHandler } from "./save-slot-select-ui-handler"; -import { splashMessages } from "./splash-messages"; -import { starterSelectUiHandler } from "./starter-select-ui-handler"; -import { statusEffect } from "./status-effect"; -import { titles, trainerClasses, trainerNames } from "./trainers"; -import { tutorial } from "./tutorial"; -import { voucher } from "./voucher"; -import { terrain, weather } from "./weather"; -import { partyUiHandler } from "./party-ui-handler"; -import { settings } from "./settings.js"; -import { common } from "./common.js"; -import { modifierSelectUiHandler } from "./modifier-select-ui-handler"; -import { moveTriggers } from "./move-trigger"; +import common from "./common.json"; +import settings from "./settings.json"; +import ability from "./ability.json"; +import abilityTriggers from "./ability-trigger.json"; +import arenaFlyout from "./arena-flyout.json"; +import arenaTag from "./arena-tag.json"; +import achv from "./achv.json"; +import battle from "./battle.json"; +import battleScene from "./battle-scene.json"; +import battleInfo from "./battle-info.json"; +import battleMessageUiHandler from "./battle-message-ui-handler.json"; +import battlerTags from "./battler-tags.json"; +import berry from "./berry.json"; +import bgmName from "./bgm-name.json"; +import biome from "./biome.json"; +import challenges from "./challenges.json"; +import commandUiHandler from "./command-ui-handler.json"; +import dialogue from "./dialogue.json"; +import battleSpecDialogue from "./dialogue-final-boss.json"; +import miscDialogue from "./dialogue-misc.json"; +import doubleBattleDialogue from "./dialogue-double-battle.json"; +import egg from "./egg.json"; +import fightUiHandler from "./fight-ui-handler.json"; +import filterBar from "./filter-bar.json"; +import gameMode from "./game-mode.json"; +import gameStatsUiHandler from "./game-stats-ui-handler.json"; +import growth from "./growth.json"; +import menu from "./menu.json"; +import menuUiHandler from "./menu-ui-handler.json"; +import modifier from "./modifier.json"; +import modifierType from "./modifier-type.json"; +import move from "./move.json"; +import nature from "./nature.json"; +import partyUiHandler from "./party-ui-handler.json"; +import pokeball from "./pokeball.json"; +import pokemon from "./pokemon.json"; +import pokemonForm from "./pokemon-form.json"; +import battlePokemonForm from "./pokemon-form-battle.json"; +import pokemonInfo from "./pokemon-info.json"; +import pokemonInfoContainer from "./pokemon-info-container.json"; +import pokemonSummary from "./pokemon-summary.json"; +import saveSlotSelectUiHandler from "./save-slot-select-ui-handler.json"; +import splashMessages from "./splash-messages.json"; +import starterSelectUiHandler from "./starter-select-ui-handler.json"; +import statusEffect from "./status-effect.json"; +import trainerTitles from "./trainer-titles.json"; +import trainerClasses from "./trainer-classes.json"; +import trainerNames from "./trainer-names.json"; +import tutorial from "./tutorial.json"; +import voucher from "./voucher.json"; +import weather from "./weather.json"; +import terrain from "./terrain.json"; +import modifierSelectUiHandler from "./modifier-select-ui-handler.json"; +import moveTriggers from "./move-trigger.json"; +import runHistory from "./run-history.json"; export const koConfig = { - ability: ability, - abilityTriggers: abilityTriggers, - arenaFlyout: arenaFlyout, - arenaTag: arenaTag, - battle: battle, - battleInfo: battleInfo, - battleMessageUiHandler: battleMessageUiHandler, - battlePokemonForm: battlePokemonForm, - battlerTags: battlerTags, - berry: berry, - bgmName: bgmName, - biome: biome, - challenges: challenges, - commandUiHandler: commandUiHandler, - common: common, - PGMachv: PGMachv, - PGFachv: PGFachv, - PGMdialogue: PGMdialogue, - PGFdialogue: PGFdialogue, - PGMbattleSpecDialogue: PGMbattleSpecDialogue, - PGFbattleSpecDialogue: PGFbattleSpecDialogue, - PGMmiscDialogue: PGMmiscDialogue, - PGFmiscDialogue: PGFmiscDialogue, - PGMdoubleBattleDialogue: PGMdoubleBattleDialogue, - PGFdoubleBattleDialogue: PGFdoubleBattleDialogue, - egg: egg, - fightUiHandler: fightUiHandler, - filterBar: filterBar, - gameMode: gameMode, - gameStatsUiHandler: gameStatsUiHandler, - growth: growth, - menu: menu, - menuUiHandler: menuUiHandler, - modifier: modifier, - modifierType: modifierType, - move: move, - nature: nature, - pokeball: pokeball, - pokemon: pokemon, - pokemonForm: pokemonForm, - pokemonInfo: pokemonInfo, - pokemonInfoContainer: pokemonInfoContainer, - pokemonSummary: pokemonSummary, - saveSlotSelectUiHandler: saveSlotSelectUiHandler, - settings: settings, - splashMessages: splashMessages, - starterSelectUiHandler: starterSelectUiHandler, - statusEffect: statusEffect, - terrain: terrain, - titles: titles, - trainerClasses: trainerClasses, - trainerNames: trainerNames, - tutorial: tutorial, - voucher: voucher, - weather: weather, - partyUiHandler: partyUiHandler, - modifierSelectUiHandler: modifierSelectUiHandler, - moveTriggers: moveTriggers + ability, + abilityTriggers, + arenaFlyout, + arenaTag, + battle, + battleScene, + battleInfo, + battleMessageUiHandler, + battlePokemonForm, + battlerTags, + berry, + bgmName, + biome, + challenges, + commandUiHandler, + common, + achv, + dialogue, + battleSpecDialogue, + miscDialogue, + doubleBattleDialogue, + egg, + fightUiHandler, + filterBar, + gameMode, + gameStatsUiHandler, + growth, + menu, + menuUiHandler, + modifier, + modifierType, + move, + nature, + pokeball, + pokemon, + pokemonForm, + pokemonInfo, + pokemonInfoContainer, + pokemonSummary, + saveSlotSelectUiHandler, + settings, + splashMessages, + starterSelectUiHandler, + statusEffect, + terrain, + titles: trainerTitles, + trainerClasses, + trainerNames, + tutorial, + voucher, + weather, + partyUiHandler, + modifierSelectUiHandler, + moveTriggers, + runHistory, }; diff --git a/src/locales/ko/dialogue-double-battle.json b/src/locales/ko/dialogue-double-battle.json new file mode 100644 index 00000000000..134b8ade71e --- /dev/null +++ b/src/locales/ko/dialogue-double-battle.json @@ -0,0 +1,82 @@ +{ + "blue_red_double": { + "encounter": { + "1": "그린: 어이 레드! 우리가 누군지 보여주자고!\n$레드: ...\n$그린: 태초마을의 힘을 보여주지!" + }, + "victory": { + "1": "그린: 훌륭한 승부였어!\n$레드: ..." + } + }, + "red_blue_double": { + "encounter": { + "1": "레드: ...!\n$그린: 이 녀석은 여전히 말이 없구나.\n$그린: 그렇지만 방심해선 안 돼! 그래도 챔피언이라고!" + }, + "victory": { + "1": "레드: ...!\n$그린: 다음에는 우리가 이길 테다!" + } + }, + "tate_liza_double": { + "encounter": { + "1": "풍: 에헤헤... 체육관 관장이\n$란: 두 명이나 있어서 놀랐지?\n$풍: 우리는 쌍둥이!\n$란: 굳이 말을 하지 않아도 서로가 무슨 생각을 하고 있는지\n$풍: 자동으로 머릿속에 떠오르니까\n$란: 호흡을 척척 맞출 수가 있지!" + }, + "victory": { + "1": "풍: 우, 우리들의\n$란: 팀워크가...!" + } + }, + "liza_tate_double": { + "encounter": { + "1": "란: 우후후... 체육관 관장이\n$풍: 두 명이나 있어서 놀랐어?\n$란: 우리는 쌍둥이!\n$풍: 완벽한 우리의 콤비네이션을\n$란: 과연 네가 깨뜨릴 수 있을까?" + }, + "victory": { + "1": "란: 우리들이 생각한 만큼\n$풍: 우리가 강하지 않았던 걸까?" + } + }, + "wallace_steven_double": { + "encounter": { + "1": "성호: 윤진! 우리 챔피언의 힘을 보여주자!\n$윤진: 호연의 힘을 보여주마!\n$성호: 간다!" + }, + "victory": { + "1": "성호: 훌륭한 승부였어!\n$윤진: 다음엔 우리가 이길 거다!" + } + }, + "steven_wallace_double": { + "encounter": { + "1": "성호: 너 혹시 희귀한 포켓몬 가지고 있니?\n$윤진: 성호야... 우리는 포켓몬을 자랑하러 온 게 아니라 승부하러 온 거야.\n$성호: 오... 그렇지... 그럼 간다!" + }, + "victory": { + "1": "성호: 이제 승부는 끝났으니 포켓몬을 자랑해 볼까!\n$윤진: 성호야..." + } + }, + "alder_iris_double": { + "encounter": { + "1": "노간주: 우리는 하나 지방 최강의 트레이너들이란다!\n$아이리스: 이렇게 강한 트레이너와 싸울 수 있어서 정말 기뻐~!!" + }, + "victory": { + "1": "노간주: 장하구나! 실로 견줄 자가 천하에 없도다!\n$아이리스: 다음 번엔 우리가 꼭 이길 거야~!" + } + }, + "iris_alder_double": { + "encounter": { + "1": "아이리스: 어서 와, 도전자! 내가 바로 하나 지방 챔피언이야~!\n$노간주: 아이리스야, 너무 흥분한 것 아니냐?" + }, + "victory": { + "1": "아이리스: 후와아아아아... 최선을 다했는데도... 우리가 져버렸네!\n$노간주: 하지만 우리의 패배를 발판 삼아 나아가리라!" + } + }, + "piers_marnie_double": { + "encounter": { + "1": "마리: 오빠, 스파이크마을의 힘을 보여주자!\n$두송: 우리가 어둠을 불러올 것이다!" + }, + "victory": { + "1": "마리: 네가 우리의 어둠에 빛을 불러왔구나!\n$두송: 여긴 너무 밝네..." + } + }, + "marnie_piers_double": { + "encounter": { + "1": "두송: 콘서트 즐길 준비 됐어?\n$마리: 오빠... 얘들은 노래가 아니라 승부를 하러 왔어..." + }, + "victory": { + "1": "두송: 훌륭한 콘서트였다!\n$마리: 오빠..." + } + } +} \ No newline at end of file diff --git a/src/locales/ko/dialogue-final-boss.json b/src/locales/ko/dialogue-final-boss.json new file mode 100644 index 00000000000..d9b8dfc4526 --- /dev/null +++ b/src/locales/ko/dialogue-final-boss.json @@ -0,0 +1,5 @@ +{ + "encounter": "드디어 때가 다시 도래했다.\n당도한 연유를 아는가?\n$이미 도달한 적이 있기에 이 자리에 있다.\n셀 수도 없이 많이.\n$아니, 사실 셀 수는 있지.\n정확히 너의 {{cycleCount}}번째다.\n$매 번 태초의 정신으로 되돌아갔을 뿐.\n하지만 어떻게든, 흔적은 남는다.\n$실패만을 반복했을 뿐이지만,\n지금은 네 안에 무언가가 있구나.\n\n$홀로 선 것처럼 보이나, 무언가 이질적인…\n$마침내 그간의 갈망을 해소해주는가?\n수천 년 간 기다려온 도전을?\n$시작하지.", + "firstStageWin": "그렇군. 정말로 있었어.\n이제 주저할 필요는 없다.\n$실망시키지 않도록.", + "secondStageWin": "…고무적이군." +} \ No newline at end of file diff --git a/src/locales/ko/dialogue-misc.json b/src/locales/ko/dialogue-misc.json new file mode 100644 index 00000000000..8445c5c4810 --- /dev/null +++ b/src/locales/ko/dialogue-misc.json @@ -0,0 +1,6 @@ +{ + "ending": "@c{smile}오? 이긴거야?@d{96} @c{smile_eclosed}진즉 알았어야 했는데.\n아무튼, 돌아왔구나.\n$@c{smile}다 끝난거야.@d{64} 네가 굴레를 끝장냈어.\n$@c{serious_smile_fists}네 꿈도 이뤄졌고말야.\n진짜로 한 번도 안 졌잖아.\n$@c{neutral}기억하는 건 우리들 뿐일 모양이지만.@d{96}\n그래도, 괜찮지?\n$@c{serious_smile_fists}오늘의 일은\n너와 나의 마음 속에 항상 함께할 거야.\n$@c{smile_eclosed}여기 구경도 충분히 했으니\n이제 집에 가자.\n$@c{serious_smile_fists}되돌아가서, 다시 배틀을 할 수도 있지 않을까?\n네가 원한다면 말야.", + "ending_female": "@c{shock}돌아왔구나?@d{32} 그 말은…@d{96} 이겼어?!\n@c{smile_ehalf}그럴 줄 알았다니까.\n$@c{smile_eclosed}물론… 언제나 느껴왔지.\n@c{smile}끝난 거, 맞지? 이 굴레를 말이야.\n$@c{smile_ehalf}네 꿈도 이뤘고 말이야.\n어떻게 한번도 안 졌대?\n$네가 한 일은 나만 기억하게 될 모양이지만.\n@c{angry_mopen}나, 안 까먹어볼 테니까!\n$@c{smile_wave_wink}농담이야!@d{64} @c{smile}절대 안 잊어버릴 거야.@d{32}\n마음 속엔 쭉 남아있을 수 있게.\n$@c{smile_wave}어쨌든,@d{64} 시간이 좀 늦었어…@d{96}\n이런 곳에서 할 말은 아닌가?\n$집에 가자. @c{smile_wave_wink}아마 내일은,\n추억을 되짚어보기 위한 배틀을 해볼 수 있을 거야.", + "ending_endless": "끝에 도달하신 것을 축하드립니다!\n더 많은 컨텐츠를 기다려주세요.", + "ending_name": "Devs" +} \ No newline at end of file diff --git a/src/locales/ko/dialogue.json b/src/locales/ko/dialogue.json new file mode 100644 index 00000000000..13fcd64a8d3 --- /dev/null +++ b/src/locales/ko/dialogue.json @@ -0,0 +1,2691 @@ +{ + "youngster": { + "encounter": { + "1": "거기 너! 나와 배틀 어때?", + "2": "넌 새내기 트레이너구나. 맞지?", + "3": "거기 너! 처음보는 얼굴인데? 나랑 배틀하자!", + "4": "방금 배틀에서 져서 새로운 포켓몬을 찾는 중이야.\n잠깐! 넌 약해보이는데? 어서 나와 배틀하자!", + "5": "우리 만난 적이 있었던가? 잘 기억은 안나지만 어쨌든 만나서 반가워!", + "6": "좋아! 시작하자!", + "7": "좋아! 내가 왔다! 내 힘을 보여주지!", + "8": "하하하… 내 포켓몬이 얼마나 멋진지 보여주겠어!", + "9": "인사할 시간도 없어. 준비가 되었다면 이리 와!", + "10": "긴장을 늦추지마. 그렇지 않으면 어린이에게 맞아 울지도 몰라.", + "11": "난 내 포켓몬들을 소중히 키웠어. 내 포켓몬에게 상처를 입히게 놔두지 않겠어!", + "12": "여기까지 잘 왔구나! 하지만 지금부턴 쉽지 않을거야.", + "13": "배틀은 끝나지 않아! 끝없는 배틀의 세계에 온 것을 환영해!" + }, + "victory": { + "1": "우와! 넌 강하구나!", + "2": "하? 난 기회가 없었어.", + "3": "내가 조금 더 큰 다음엔 널 찾아서 때리겠어!", + "4": "으.. 더이상 가지고 있는 포켓몬이 없어.", + "5": "말도 안돼… 안돼! 내가 또 지다니…", + "6": "안돼! 내가 지다니!", + "7": "우와! 정말 깜짝 놀랐어! 넌 정말 강하구나!", + "8": "이럴수가… 내 포켓몬과 난 최강인데… 어떻게…", + "9": "다음엔 지지 않을거야! 다음에 다시 배틀하자!", + "10": "쳇! 내가 어린애인게 보이지 않아?! 그렇게 최선을 다하는건 불공평해!", + "11": "네 포켓몬은 정말 굉장하구나! 나와 교환하자!", + "12": "내가 잠깐 정신이 나갔었나 봐. 내가 무슨 말을 하고 있었지?", + "13": "아하! 거기구나! 좋아! 넌 이미 이 세계에 머무를 곳이 있구나!" + } + }, + "lass": { + "encounter": { + "1": "나랑 배틀하자, 어때?", + "2": "넌 신입 트레이너구나. 나랑 배틀하자!", + "3": "너 거기 있었구나? 나랑 배틀할래?", + "4": "재밌는 포켓몬 배틀하자!", + "5": "내가 포켓몬을 어떻게 다뤄야하는지 보여줄게!", + "6": "진정한 배틀은 진지한 자세부터 시작이야! 준비됐어?", + "7": "젊음이 한순간이듯 배틀에서 네 기회도 단 한번만 주어질거야. 곧 넌 추억속으로 사라질거야.", + "8": "나에겐 살살해도 돼, 알았지? 그래도 난 진지하게 싸울거야!", + "9": "학교는 지겨워. 나는 할 일이 없어. 하암~ 난 그저 시간을 때우기 위해 싸울뿐이야." + }, + "victory": { + "1": "인상적이었어! 난 아직 배울게 많구나.", + "2": "내가 이렇게까지 크게 질 줄은 몰랐어…", + "3": "언젠가 우리가 다시 배틀할 수 있을 날을 기다릴게.", + "4": "놀라울 정도로 엄청 재미있었어! 넌 날 완전히 지치게 만들어버렸네…", + "5": "넌 나에게 진짜 교훈을 주었어! 넌 정말 대단해!", + "6": "세상에, 내가 지다니. 이거 정말 우울하지만… 넌 정말 멋있었어.", + "7": "난 이런 기억따윈 필요없어. 잊어버리겠어…", + "8": "거기 너! 살살하라고 했지! 그래도 넌 진지할때 정말 멋지구나!", + "9": "사실 배틀하는 것이 지루하던 참이야… 뭔가 새로운 것이 없을까?" + } + }, + "breeder": { + "encounter": { + "1": "순종적인 포켓몬, 이기적인 포켓몬… 포켓몬들은 각기 다른 성격을 가지고 있지.", + "2": "내 태도가 그렇게 좋진 않아도, 내 포켓몬들은 잘 키웠어.", + "3": "음, 넌 포켓몬들을 훈육하니? 너무 심하게 하는 것은 좋지 않다고." + }, + "victory": { + "1": "각 포켓몬의 성격을 이해하고 육성하는 건 중요해.", + "2": "사악한 나와는 달리 좋은 포켓몬들도 있지.", + "3": "과도한 칭찬은 사람과 포켓몬 모두에게 독이 될 수 있어." + }, + "defeat": { + "1": "배틀에서 지더라도 포켓몬에게 화를 내면 안돼.", + "2": "어때? 꽤 괜찮은 포켓몬이지? 난 무언가 기르는 게 꽤 잘 맞더라고.", + "3": "네가 포켓몬을 얼마나 사랑하는지와 관계없이, 그들이 잘못을 저지르면 바로잡아야 해." + } + }, + "breeder_female": { + "encounter": { + "1": "포켓몬은 절대 널 배신하지 않아. 네가 주는 사랑을 고스란히 되돌려 준다구.", + "2": "좋은 포켓몬을 키우는 팁을 알려줄까?", + "3": "난 아주 특별한 방법으로 아주 특별한 포켓몬들을 키웠지!" + }, + "victory": { + "1": "이런… 이렇게 될 리가 없는데. 내가 블렌딩을 잘못 썼나?", + "2": "내 포켓몬에게 이런 일이… 넌 네 포켓몬에게 뭘 먹이는 거야?", + "3": "내가 지는 건 그저 내가 시간을 때우고 있었다는 걸 알려주는 거지. 내 자존심엔 전혀 상처가 되지 않는다구." + }, + "defeat": { + "1": "이건 내 포켓몬들이 내 사랑을 받아들였다는 걸 입증하지.", + "2": "좋은 포켓몬을 키우는 진짜 비결은 좋은 포켓몬을 잡는 거야.", + "3": "포켓몬의 강함과 약함은 네가 어떻게 키우느냐에 따라 결정되지." + } + }, + "fisherman": { + "encounter": { + "1": "앗! 너 때문에 한 마리 놓쳤잖아! 어떻게 할 거야?", + "2": "저리 가! 네가 포켓몬들을 놀래키고 있잖아!", + "3": "네가 승리를 낚을 수 있을지 한번 보자고!" + }, + "victory": { + "1": "그냥 잊어버려.", + "2": "다음 번엔 내가 승리의 나팔을 울리고 있을거다!", + "3": "이번엔 내가 물살을 과소평가했나보군." + } + }, + "fisherman_female": { + "encounter": { + "1": "월척이다!", + "2": "낚시대는 던져졌고, 이젠 성공을 끌어올리는 일만 남았다!", + "3": "파도를 일으킬 준비는 끝났어!" + }, + "victory": { + "1": "더 튼튼한 바늘을 가지고 돌아올테다.", + "2": "다음번엔 꼭 성공을 낚을 거야!", + "3": "다시 돌아올 날을 기다리며 바늘을 다듬고 있을게!" + } + }, + "swimmer": { + "encounter": { + "1": "뛰어들 시간이다!", + "2": "승리의 파도 속으로!", + "3": "첨벙댈 준비는 끝났어!" + }, + "victory": { + "1": "패배에 젖어버렸어…", + "2": "패배의 파도였군.", + "3": "해변으로 돌아갈 시간이군." + } + }, + "backpacker": { + "encounter": { + "1": "게임 시작이야! 짐 단단히 싸놓으라구!", + "2": "네가 속도를 유지할 수 있을지 보자!", + "3": "각오 단단히 하라고!", + "4": "20년 동안 나 자신을 찾기 위해 헤매왔어… 근데 내가 어디 있지?" + }, + "victory": { + "1": "이번엔 걸려 넘어져 버렸네!", + "2": "내가 속도를 잃어버렸잖아!", + "3": "막다른 길이야!", + "4": "잠깐! 그래 거기, 혹시 내가 누군지 아나?" + } + }, + "ace_trainer": { + "encounter": { + "1": "너는 꽤 자신만만해 보이는구나.", + "2": "너의 포켓몬들… 나에게 보여줘…", + "3": "내가 엘리트 트레이너라서, 사람들은 내가 강하다고 생각해.", + "4": "엘리트 트레이너가 되려면 무엇이 필요한지 알고 있니?" + }, + "victory": { + "1": "그러네… 넌 좋은 포켓몬을 가졌구나…", + "2": "뭐? 말도 안 돼, 난 배틀 천재라구!", + "3": "그래도 역시, 네가 주인공이구나!", + "4": "좋아! 좋아! 너도 엘리트 트레이너가 될 수 있겠어!" + }, + "defeat": { + "1": "난 내 몸과 마음을 포켓몬 배틀에 바치고 있어!", + "2": "모두 예상된 일이었어… 이건 놀랄 일이 아니야…", + "3": "난 내가 강하게 압박하면 무너질 연약한 사람이라고 생각했어.", + "4": "난 강하고, 지지 않아. 그저 멋지게 이길 수 없었기 때문이야." + } + }, + "parasol_lady": { + "encounter": { + "1": "우아함과 침착함으로 승부하겠습니다!" + }, + "victory": { + "1": "그래도 제 우아함은 무너지지 않아요!" + } + }, + "twins": { + "encounter": { + "1": "각오해, 우리가 한 팀이 되면 두 배로 강해진다구!", + "2": "마음은 두 개지만 우리는 하나 – 네가 쌍둥이의 파워를 따라잡을 수 있는지 보겠어!", + "3": "두 배로 각오하는 게 좋을 거야. 우리가 곧 화나게 할 거거든!" + }, + "victory": { + "1": "비록 우리는 졌지만, 우리의 관계는 깨지지 않아!", + "2": "그래도 우리의 영혼은 오랫동안 흐려지지 않을 거야.", + "3": "더 강력한 듀오로 강해져서 돌아오겠어!" + }, + "defeat": { + "1": "우리 쌍둥이의 파워는 최고야!", + "2": "마음은 두 개지만 승리는 하나!", + "3": "미소도 두 배, 승리의 댄스도 두 배!" + } + }, + "cyclist": { + "encounter": { + "1": "내가 만든 먼지나 마실 준비하시지!", + "2": "준비하라구! 난 널 먼지 속에 놓고 올 거니까!", + "3": "전력을 다해야 할 거야, 네가 날 따라올 수 있는지 지켜보겠어!" + }, + "victory": { + "1": "바퀴가 움직이지 않더라도, 나의 페달은 그렇지 않아.", + "2": "이런, 따라잡혔어!", + "3": "승리로 가는 길에는 아직 만나지 못한 우여곡절이 많이 있구나." + } + }, + "black_belt": { + "encounter": { + "1": "네 용기가 대단하구나! 난 최고의 발차기 실력을 갖추고 있다구!", + "2": "오, 알겠어. 산산조각이 나고 싶구나? 아니면 샌드백이 되고 싶은 거야?" + }, + "victory": { + "1": "이런, 포켓몬이 배틀을 하는 동안 내 발차기는 전혀 도움이 되지 않았어.", + "2": "음… 어차피 내가 질거라면, 완전 엉망진창이 되길 바랬는데…" + } + }, + "battle_girl": { + "encounter": { + "1": "감동을 주려고 노력할 필요는 없어. 네가 질 수도 있으니까." + }, + "victory": { + "1": "작별인사는 어렵지만, 우리에겐 시간이 얼마 안 남았네…" + } + }, + "hiker": { + "encounter": { + "1": "중년으로 접어들면서 등산해왔던 산처럼 진중해졌습니다!", + "2": "살아있는 산같은… 큰 체격을 부모님이 물려주셨죠…" + }, + "victory": { + "1": "적어도 BMI에 대해서는 질 수 없습니다!", + "2": "부족해… 절대로 충분하지 않아. 저의 콜레스테롤이 부족합니다…" + } + }, + "ranger": { + "encounter": { + "1": "자연에 둘러싸여 있으면, 다른 건 중요하지 않게 느껴져.", + "2": "인생에서 자연을 빼고 살면, 가끔 갑자기 마음이 불안해지지." + }, + "victory": { + "1": "광활한 자연 앞에서는 내가 이기든 지든 상관없어…", + "2": "도시 생활의 답답한 느낌에 비하면 이런 것은 아주 사소한 일지." + }, + "defeat": { + "1": "내가 이겼네. 그러나 승리는 광대한 자연에 비하면 아무것도 아니야…", + "2": "내 마음속 불안함과 비교하면, 당신 기분은 그렇게 나쁘지 않을텐데…" + } + }, + "scientist": { + "encounter": { + "1": "제 연구는 이 세상을 평화와 기쁨으로 이끌 겁니다." + }, + "victory": { + "1": "전 천재니까… 당신 같은 사람에게 질 수 없는데…" + } + }, + "school_kid": { + "encounter": { + "1": "…헤헷. 계산과 분석에는 자신 있어.", + "2": "언젠가 체육관 관장이 되고 싶어서, 최대한 많은 경험을 쌓고 있어." + }, + "victory": { + "1": "으아아… 이번에는 아마 계산과 분석이 빗나간 것 같아…", + "2": "내가 보기엔, 어렵고 힘든 경험도 나름의 의미가 있는 것 같아." + } + }, + "artist": { + "encounter": { + "1": "예전엔 인기가 많았지만, 지금은 모두 사라졌다네." + }, + "victory": { + "1": "시대가 변하면, 가치관도 변하지. 난 그걸 너무 늦게 깨달았어." + } + }, + "guitarist": { + "encounter": { + "1": "패배의 리듬을 느낄 준비는 됐겠지? 내가 승리할 거니까!" + }, + "victory": { + "1": "지금은 조용하지만, 회복의 멜로디를 연주할 거야." + } + }, + "worker": { + "encounter": { + "1": "사람들이 저를 오해하는 게 신경 쓰여요. 전 생각보다 훨씬 깨끗하답니다." + }, + "victory": { + "1": "피부가 타는 게 싫어서, 일하는 동안엔 그늘에 머물고 싶어요." + } + }, + "worker_female": { + "encounter": { + "1": "사람들이 나를 오해하는 게 신경 쓰여.\n$나는 생각보다 훨씬 깨끗한데." + }, + "victory": { + "1": "피부가 타는 게 싫어서, 일하는 동안엔 그늘에 머물고 싶어." + }, + "defeat": { + "1": "생각처럼 몸이 잘 안따라주네." + } + }, + "worker_double": { + "encounter": { + "1": "너를 무너뜨릴 수 있다는 것을 보여줄게. 우리는 실전 경험이 있거든!" + }, + "victory": { + "1": "이상하네… 어떻게 이럴 수 있지… 힘으로 압도할 수 없다니." + } + }, + "hex_maniac": { + "encounter": { + "1": "평소에는 클래식 음악만 들었는데, 지면 뉴에이지도 좀 들어볼까!", + "2": "눈물을 흘릴 때마다 더 강해지는 것 같아." + }, + "victory": { + "1": "지금이 물병자리 시대의 시작일까?", + "2": "이제 나는 더 강해지겠지. 모든 원한과 함께 성장하겠어." + }, + "defeat": { + "1": "뉴에이지란 단순히 20세기 클래식 작곡가들을 말하는 거, 맞지?", + "2": "슬픔이나 좌절에 얽매이지 마. 넌 그 원한을 원동력으로 사용할 수 있어." + } + }, + "psychic": { + "encounter": { + "1": "안녕! 집중해!" + }, + "victory": { + "1": "에에에에엣!" + } + }, + "officer": { + "encounter": { + "1": "마음의 준비를 하시죠, 정의가 곧 실행될 거니까요!", + "2": "법을 지키고 정의를 위해 봉사할 준비가 되었습니다!" + }, + "victory": { + "1": "정의의 무게가 그 어느 때보다 무겁게 느껴집니다…", + "2": "패배의 그림자가 관할 경찰서에 남았습니다." + } + }, + "beauty": { + "encounter": { + "1": "나의 마지막 배틀… 이 승부를 그렇게 봐주셨으면 좋겠어요…" + }, + "victory": { + "1": "즐거웠어요… 언젠가 또 다른 마지막 승부를 하죠…" + } + }, + "baker": { + "encounter": { + "1": "패배의 맛을 볼 준비는 됐겠지!" + }, + "victory": { + "1": "실력이든 빵이든, 굽고 나면 단단해지는 법이라네." + } + }, + "biker": { + "encounter": { + "1": "힘차게 먼지 속으로 출발할 시간입니다!" + }, + "victory": { + "1": "다음 경주를 위해 준비해야겠습니다." + } + }, + "firebreather": { + "encounter": { + "1": "내 불꽃이 너를 삼킬 테니까!", + "2": "내 영혼은 불타고 있다. 얼마나 뜨겁게 타는지 보여주지!", + "3": "이리 올라와서 보도록!" + }, + "victory": { + "1": "하얗게 불태웠다………", + "2": "큭! 제법 뜨겁군!", + "3": "으윽! 코끝에 화상을 입었다!" + } + }, + "sailor": { + "encounter": { + "1": "친구여, 진다면 널빤지 행이야!", + "2": "덤벼! 내 선원으로서 자존심이 위태롭군!", + "3": "여어 거기! 뱃멀미 하나?" + }, + "victory": { + "1": "크윽! 꼬맹이한테 지다니!", + "2": "네 영혼이 나를 침몰시켰어!", + "3": "내가 뱃멀미가 나는 것 같군…" + } + }, + "archer": { + "encounter": { + "1": "더 나아가기 전에 우리 로켓단과 맞설 만한지 한 번 봅시다!", + "2": "당신의 실력이 예사롭지 않다는 소식을 들었습니다. 정말인지 한 번 보지요.", + "3": "…저는 로켓단의 간부 아폴로. 우리 조직의 적에게는 봐 주지 않습니다!" + }, + "victory": { + "1": "…이런 실수를 하다니!", + "2": "역시 지금의 저는 무리였군요…", + "3": "비, 비주기님, 용서해주십시오…제가 일개 트레이너한테 당하다니…" + } + }, + "ariana": { + "encounter": { + "1": "거기까지다~!! 너 같은 놈을 언제까지고 설치게 두었다가는 \n$로켓단의 프라이드는 상처 입고 상처 입어서 상처투성이가 돼 버린다고-!", + "2": "내가 하는 일이 옳은지 그른지는 상관 없어…\n$그저 비주기님을 믿고 따르는 것 뿐이니까-!", + "3": "네 여정은 여기서 끝이야. 내가 널 이길 테니까-!" + }, + "victory": { + "1": "어머, 강하군. 안타깝네.\n$네가 로켓단에 있었다면 간부가 될 수 있었을 텐데.", + "2": "사…산산조각났네…", + "3": "으이이이익! 온 힘을 다해서 싸웠는데…이래도 이길 수 없다니!" + } + }, + "proton": { + "encounter": { + "1": "뭐죠? 우리 일에 끼어든다면 자비를 바라지 마십시오!", + "2": "뭐죠? 나는 로켓단에서 제일 냉혹하다고 불리는 남자…\n$우리 일을 방해하도록 그냥 놔두지 않겠습니다!", + "3": "나는 로켓단의 간부 랜스. 당신의 참견도 여기까지입니다!" + }, + "victory": { + "1": "요새가 무너져내렸네요…", + "2": "나한테 이긴 건 결국 로켓단의 분노를 강하게 했을 뿐이예요…", + "3": "나는 졌지만, 결코 이 일을 잊지 않을 겁니다!" + } + }, + "petrel": { + "encounter": { + "1": "후후훗, 잘 왔구나. 오잉? 내가 누군지 알아? 비주기야.\n$비주기님이라고, 우-하하! …엥? 전혀 안 닮았다고?\n$비주기님으로는 안 보인다고? 제길- 열심히 연습했는데!", + "2": "나는 로켓단의 간부 람다. 우리 계획을 방해하는 건 용납할 수 없다!", + "3": "이 로켓단 간부 람다가 네놈 불청객을 처리해 주지!" + }, + "victory": { + "1": "조…좋아. 비주기님이 어디 계신지 알려주지.", + "2": "크으으… 이 내가 당해낼 수 없다니… 비주기님, 용서해주십시오…", + "3": "안돼, 이런다고 나한테 어쩔 수는 없어. 다른 사람들에게 알려야겠어…" + } + }, + "tabitha": { + "encounter": { + "1": "우효효효! 그래 당신 여기까지 왔구나! 그치만 늦었어요!", + "2": "우효효… 벌써 여기까지 왔네요? 우리가 당신을 과소평가했어요. 하지만 이제 시작입니다! \n$이 호걸님은 이제까지 본 조무래기들과는 차원이 다르답니다! 우물쭈물 시간을 끌지 않아요.\n$확실하게 보내주마! 우효효효효효효!!", + "3": "여기서 어른의 무서움을 제대로 알려주지! 받아랏-!" + }, + "victory": { + "1": "우효효! 이 호걸은 이겼을지 몰라도 마적님한테는 안 될 겁니다!\n$차라리 여기서 졌다면 무자비한 채찍질은 피했을텐데 말이죠!", + "2": "우효~! 이야 이건 예상 밖의 전개인데!?", + "3": "우효! 어떻게?! 이 호걸님이 이런 일개 트레이너에게…" + } + }, + "courtney": { + "encounter": { + "1": "…그 …네가 가진 …우리…마그마단이 원하는 것", + "2": "…………그럼 …………삭제하겠습니다", + "3": "……애널라이즈 ……하고 싶어 ……아하하하♪" + }, + "victory": { + "1": "……하아하아… ……으 …하아하아…", + "2": "………예상대로 ………예상외 ………너 …………타깃 록 ………했으니까\n$……엑스페리먼트 ……할 테니까 ………너를………계속………아핫…♪", + "3": "……예상외 ………… ……역시 ……너…재미있어…! ………아하하…♪" + } + }, + "shelly": { + "encounter": { + "1": "엥? 우리 아쿠아단의 일에 끼어들겠다고?\n$…좋아! 기본적인 예의도 모르는 애송이한테는 제대로 그 버릇을 고쳐줘야지…\n$겁먹고 도망쳐도 용서 따위 없을 줄 알아! 우하하하!", + "2": "아앙? 뭐야? 이 건방진 꼬맹이는…", + "3": "침착해. 조급해 하지 말라고… 금방 박살내 줄 테니까." + }, + "victory": { + "1": "아아아아앙!? 예상치 못하게 방해받았잖아! 어쩔 수 없네.\n$여기선 물러나야겠네. 그렇지만 네가 아쿠아단을 만나는 게 이게 마지막은 아닐 거야.\n$우리는 다른 계획도 있거든! 잊지 마!", + "2": "크윽…!? 너무 봐줬나…!", + "3": "…으윽 …싸우면서 더욱 실력이 좋아졌다고…!?\n$장래가 무서워지는 애송이네… …나와 내 포켓몬들은 더 이상 싸울 힘이 남아 있지 않아.\n$…가 …가서 아강님한테 아주 혼쭐이나 나 버려." + } + }, + "matt": { + "encounter": { + "1": "…그래서 말이지, 리더님이 시간이 나실 때까진 내가 상대해 주마!", + "2": "후우하앗!! 맥시멈!! 끓어어!! 오르기 시작했다아아앗!!!!! 그래! 그래! 그래애앳!!! 힘이 다할 때까지 해보자아아!!!", + "3": "UPAAAAA!!! 짓뭉개주마아아아아!!" + }, + "victory": { + "1": "흐~하하하핫!!! 졌지만 즐거운 승부였다!", + "2": "확 확 느껴지는데! 네놈들의 강함이 말이야!\n$제대로 붙었다고 하기엔 조금 모자라지만 이제 타임오버 같네…", + "3": "오우오웃! 흥분되는 패배로다!" + } + }, + "mars": { + "encounter": { + "1": "난 갤럭시단 간부인 마스! 강하고 아름답지!", + "2": "갤럭시단의 미래에 대한 비전은 흔들림 없지. 방해한다면 무자비하게 짓밟아 주마!", + "3": "두렵지 않아? 넌 그래야만 할 걸!" + }, + "victory": { + "1": "갤럭시단의 간부로서… 이런 일은 있을 수 없어!!", + "2": "넌 능력 있구나. 그건 인정하지.", + "3": "아-이런 이런! 졌잖아!" + } + }, + "jupiter": { + "encounter": { + "1": "무슨 볼일이라도? 좋아! 갤럭시단 간부인 나 주피터가 상대해주지.", + "2": "발버둥쳐 봐야 소용 없어. 갤럭시단이 승리할 거니까!", + "3": "너 떨고 있네… 무서운 거지?" + }, + "victory": { + "1": "일개 트레이너에게 지다니 방심이란 무섭구나.", + "2": "다음에는 내가 울려 주고 말겠어!", + "3": "흥! 강하네. 하지만 보스는 당할 수 없어" + } + }, + "saturn": { + "encounter": { + "1": "나는 갤럭시단의 간부 새턴. 모든 것은 모두를 위해 그리고 갤럭시단을 위해!", + "2": "갤럭시단을 방해한다면 일말의 가능성도 모두 제거한다!", + "3": "여기까지 왔으니 갤럭시단 나름의 접대를 해 주지." + }, + "victory": { + "1": "이럴 수가… 너한테 졌다고?!", + "2": "…역시 강해! 갤럭시단에 맞설 만하군.", + "3": "강하다! 하지만 불쌍하군." + } + }, + "zinzolin": { + "encounter": { + "1": "너는 플라스마단에게 있어 불안요소가 될 것이다. 여기서 제거하겠다!", + "2": "이런 이런… 내가 이런 곳에서 싸워야만 하다니!", + "3": "여기까지 오다니 대단한 트레이너군. 그러나 여기가 끝이다." + }, + "victory": { + "1": "게치스님… 제가 실패했습니다…", + "2": "그건 그렇고 힘들구먼. 나는 떨고 있다. 괴롭지만 살아 있다. 그것이야말로 살아 있다는 실감!", + "3": "흐음. 의외로 똑똑한 트레이너군. 하지만 생각만큼은 아니야." + } + }, + "rood": { + "encounter": { + "1": "너는 플라스마단에 위협이 되는구나. 너라는 트레이너가 어떤 인물인지 승부로 알아봐야겠다.", + "2": "오호! 싸늘하구먼… 이런 곳에서 싸울 줄이야!", + "3": "너는 여기까지 온 것으로 보니 뛰어난 트레이너구나. 그렇다만 이젠 끝이다." + }, + "victory": { + "1": "게치스님… 임무를 실패했습니다…", + "2": "나는 떨고 있다. 나는 괴롭지만 이겨냈다.", + "3": "음… 너는 재능이 있는 트레이너구나. 하지만 충분하지는 않다." + } + }, + "xerosic": { + "encounter": { + "1": "오오- 네 소문은 많이 들었다. 자, 이리 와 보거라!", + "2": "너 강하구나. 에너지를 얼마나 갖고 있지?", + "3": "기다리고 있었어! 너를 조사하겠다. 자 시작한다!" + }, + "victory": { + "1": "강하구나, 너는. 응, 정말 강해, 너는.", + "2": "뭣이라! 넌 굉장하군! 너의 포켓몬도 대단하군!", + "3": "굉장하구나 너! 아주 굉장해! 나는 너를 인정하겠다!" + } + }, + "bryony": { + "encounter": { + "1": "나는 바라. 당신과 싸울 수 있어 기쁘군요. 한 번 보여주시죠.", + "2": "인상적이군요… 보기보다 강해요. 에너지가 어디까지 뻗어나가는지 봅시다.", + "3": "도착할 줄 알았습니다. 시작할까요?" + }, + "victory": { + "1": "어라? 이길 확률은 어디까지나 확률. 절대적이진 않네.", + "2": "확률을 무시하는 트레이너, 네 파워의 원천은 뭐지?", + "3": "놀랍군! 칭찬할 만 해." + } + }, + "rocket_grunt": { + "encounter": { + "1": "트러블에 대비하도록!", + "2": "우리는 위업을 이루는 중이라고! 저리 비켜, 꼬마 녀석!", + "3": "포켓몬을 넘기지 않겠다면, 로켓단이 징벌하겠다!", + "4": "로켓단의 진정한 공포를 보여주마!", + "5": "헤이, 키드! 미는 로켓단의 멤버라구요!" + }, + "victory": { + "1": "로켓단은 다시 떠오를 거니까!", + "2": "이런! 엘리베이터 키를 떨어뜨렸어!", + "3": "실패했군!", + "4": "내 동료들이 가만히 있지 않을 거다!", + "5": "유 쎄이 왓? 로켓단이 바이바이? 유한테 브레이킹?" + } + }, + "magma_grunt": { + "encounter": { + "1": " 마그마단을 방해한다면, 자비는 없닷!", + "2": "계획을 방해하지 않는 게 좋을 거다! 우리는 세상을 더 나은 곳으로 만들고 있거든!", + "3": "방해꾼 녀석! 마그단은 너 같은 꼬마들을 상대할 시간이 없어!", + "4": "마시멜로를 갖고 있었으면 좋겠네. 왜냐하면… 곧 뜨거워질 테니까!", + "5": "화산의 힘을 사용할 거야! 그건 정말로… 폭발적일 테니까! 알아들었지? 헤헷!" + }, + "victory": { + "1": "하? 내가 졌어?!", + "2": "내가 지다니! 이것 때문에 점심도 거르고 왔는데.", + "3": "말도 안돼! 넌 아직 어린애잖아!", + "4": "으윽… 당장 은신처로 숨을 걸 그랬나…", + "5": "네가 이겼어… 이것 때문에 보스가, 내 월급 깎으려나?" + } + }, + "aqua_grunt": { + "encounter": { + "1": "아쿠아단을 넘본 사람에게는 자비는 없다, 꼬마도 마찬가지야!", + "2": "쯧… 아쿠아단에 참견하다니 오지랖이 넓군!", + "3": "흠뻑 물을 뒤집어쓰게 될 거다! 내 물 포켓몬의 공격 뿐만이 아니야!", + "4": "우리, 아쿠아단은, 모두를 위해 존재한다!", + "5": "내가 떠밀… 아니, 파도에 떠내려갈 준비나 하라고! 내 포켓몬이 그렇게 만들 테니까 " + }, + "victory": { + "1": "말도 안 돼!", + "2": "크윽, 참견쟁이 꼬마에게 당하다니!", + "3": "내가 졌다고?! 헤엄쳐서 은신처로 돌아가야겠군…", + "4": "이런, 완전 망했군… 보스가 화를 내실텐데…", + "5": "네가 이겼어… 이것 때문에 보스가, 나를 판자 위로 보내는 거 아냐?" + } + }, + "galactic_grunt": { + "encounter": { + "1": "갤럭시단을 방해하지 마!", + "2": "기술의 힘과 우리가 꿈꾸는 미래를 목격하라!", + "3": "갤럭시단으로서, 우리를 방해하는 자는 누구든 제거하겠다!", + "4": "질 준비나 하라고!", + "5": "우주에서 싸울 준비는 됐겠지!" + }, + "victory": { + "1": "사격 중지…… ", + "2": "이런 좌절이라도, 우리의 큰 계획 앞엔 아무 의미도 못 돼.", + "3": "우리의 계획은 이번 패배보다 크거든.", + "4": "어떻게 한 거지?!", + "5": "메모해야겠군. 최대한 포켓몬 배틀을 ASAP으로 연습할 것." + } + }, + "plasma_grunt": { + "encounter": { + "1": "다른 생각을 가진사람들은 용납하지 않겠다!", + "2": "내가 이기면, 네 포켓몬들을 놓아주도록 해!", + "3": "플라즈마단을 방해한다면, 내가 처리해주지!", + "4": "플라즈마단은 너 같은 이기적인 인간에게서 포켓몬을 해방할 것이다!", + "5": "우리 스타일링은 정말 대단하지… 배틀 실력은 어떻냐고? 곧 알게 될거야." + }, + "victory": { + "1": "플라-스마-!", + "2": "내가 지다니…", + "3": "…포켓몬이 너무 약해, 더 좋은 포켓몬을 훔치러 가야겠군!", + "4": "훌륭한 계획은 항상 방해를 받는다니깐.", + "5": "이건 나빠… 나빠나빠나빠나빠나빠! 플라스마단에 나빠! 줄여서, 플라나빠!" + } + }, + "flare_grunt": { + "encounter": { + "1": "네 포켓몬, 플레어단의 우아함에 상대가 되지 않는다고.", + "2": "선글라스를 가져왔길 바랄게. 곧 밝게 빛날 테니까!", + "3": "플레어단이 세상의 불완전함을 정화할 거야!", + "4": "플레어단의 광채를 마주칠 준비는 됐겠지!", + "5": "패션이 우리한텐 가장 중요하다고!" + }, + "victory": { + "1": "미래가 밝아 보이질 않네.", + "2": "생각했던 것보다 전투에는 많은 요소가 있는 것 같군. 다시 계획을 짜야겠어.", + "3": "아앗?! 내가 졌어?!", + "4": "패배 속에서도, 플레어단의 우아함은 빛나고 있다고.", + "5": "네가 이긴 것 같네. 그렇지만 졌어도, 난 우아하게 퇴장할 거니까!" + } + }, + "aether_grunt": { + "encounter": { + "1": "죽을 각오로 퇴치하겠습니다!", + "2": "소중한 연구라고! 애라도 가만두지 않겠어!", + "3": "어떤 트레이너든 물리치라고 들었다고!", + "4": "에테르파라다이스의 파워를 보여드리겠습니다!", + "5": "에테르파라다이스 중심의 어둠을 알아내다니. 이제 사라져 주셔야겠습니다!" + }, + "victory": { + "1": "흥! 실력이 대단하시군요.", + "2": "이게 뭐하는 상황이지? 무슨 결과냐고!", + "3": "이런! 넌 너무 강해서 물리칠 방법도 없다고!", + "4": "으음… 제가 진 것처럼 보이네요.", + "5": "이 느낌을 한마디로 하면. 게에이~힝!!" + } + }, + "faba": { + "encounter": { + "1": "나, 에테르재단의 자우보! 꼬맹이 녀석에게 현실을 보여주겠어요!", + "2": "에테르파라다이스 마지막 보루라고 불리는, 이 자우보에게 애를 상대하라고요?", + "3": "에테르재단의 지부장이라면 세계에 단 한 명… 이 자우보뿐입니다." + }, + "victory": { + "1": "게에이~힝!!", + "2": "뭐 뭐뭐뭐 뭐가 어떻게 된 거죠? 내가 애를 상대로…", + "3": "이래서 애는… 좋아할 수가 없어요." + } + }, + "skull_grunt": { + "encounter": { + "1": "나쁜 짓 안해-그냥 사는 게 힘들 뿐스컬!", + "2": "껌 하나 드실? 이게 우리가 인사하는 방식YO! 만나서 반갑스컬!", + "3": "우린 그냥 다른 사람의 포켓몬에 관심이 많을 뿐임다!", + "4": "어이 어이! 잘난 체하는 녀석한테 무시당하고 있잖스컬!!", + "5": "우리는 리프리젠트 땡땡이 스컬-! 집세는 못 내겠지만-! 정말 즐거웠지만, 청춘을 날려YO!" + }, + "victory": { + "1": "엥? 벌써 끝났슴까?", + "2": "미는 엑시트! 유는 피쓰풀!", + "3": "꼬마 녀석의 이상한 포켓몬엔 관심 없어!", + "4": "뭐야-?! 너무 강해서 뼈도 못 추리겠어!", + "5": "우리가 포켓몬보다 아래야!? 소중히 대해주면 안 돼? 으응!?" + } + }, + "plumeria": { + "encounter": { + "1": "…아무것도 느껴지지 않는 평~범한 애로 보이는데!", + "2": "워낙 애들 상대로 우물쭈물 하길래 오래 걸릴 줄 알았지…", + "3": "누구라도 스컬단 또 방해하면, 정말로 혼내줄 테니까!" + }, + "victory": { + "1": "흥! 대단하군.", + "2": "흐음, 너 참 대단하군. 애들을 상대로 질질 끈 이유가 이해될 정도로 강해.", + "3": "흠. 이 손실은 그냥 안고 가야겠어." + } + }, + "macro_grunt": { + "encounter": { + "1": "당신은 여기서 끝날 것 같네요!", + "2": "당신은 트레이너 맞죠? 하지만 우리를 방해하는 건 용납 못 합니다!", + "3": "매크로코스모스 생명입니다! 가입하신 실비보험은 있으신가요?" + }, + "victory": { + "1": "순순히 물러나는 것 말고는 선택지가 없군요.", + "2": "용돈을 뺏기다니… 패배는 적자로 이어지는구나…", + "3": "매크로코스모스 생명에 관한 일이라면 누구에게도 지지 않을 텐데…" + } + }, + "oleana": { + "encounter": { + "1": "로즈님을 방해하는 것은 절대로 용서할 수 없으니까요!", + "2": "저의 지시를 따르는 특별한 스태프들을 아무렇지도 않게 쓰러뜨리다니. …더 기대되는 것도 없네요.", + "3": "로즈님을 위해서라면! 질 수 없습니다!" + }, + "victory": { + "1": "아아… 이기지 못하다니… 올리브… 넌 정말 구제 불능이구나.", + "2": "하아아…! 이런 실수를 하다니… 승리를 거듭한 트레이너의 실력을 너무 얕잡아봤던 모양이네요.", + "3": "아아… 이 올리브님 조금 지쳤어…" + } + }, + "rocket_boss_giovanni_1": { + "encounter": { + "1": "그래서! 여기까지 오다니, 감탄이 절로 나오는군!" + }, + "victory": { + "1": "하! 이럴 순 없어!" + }, + "defeat": { + "1": "자신의 힘을 측정하지 못하는 걸 보아하니, 아직 별볼일 없는 꼬맹이로군. 내 말을 명심하도록. " + } + }, + "rocket_boss_giovanni_2": { + "encounter": { + "1": "옛 친구들이 나를 필요로 하고 있다…… 그런데도 방해하겠다는 건가?" + }, + "victory": { + "1": "어떻게 이런 일이…?\n로켓단의 소중한 꿈이 환상에 불과해졌군…… " + }, + "defeat": { + "1": "로켓단은 다시 태어난다, 그리고 세상을 지배할 것이다!" + } + }, + "magma_boss_maxie_1": { + "encounter": { + "1": "내 손으로 널 파묻어주지. 영광으로 알도록!" + }, + "victory": { + "1": "윽! 꽤… 제법이군…\n내가 뒤쳐졌지만, 겨우 한 끝이다…" + }, + "defeat": { + "1": "마그마단이 앞선다!" + } + }, + "magma_boss_maxie_2": { + "encounter": { + "1": "나와 내 목표 사이에 남은 마지막 장애물이로군.\n최후의 공격에 대비하도록! 후하하하!" + }, + "victory": { + "1": "이런… 이럴 수는… 없어… " + }, + "defeat": { + "1": "이제부터… 인류의 이상을 위해 대지를 더 늘려가겠다." + } + }, + "aqua_boss_archie_1": { + "encounter": { + "1": "내가 아쿠아단의 리더다, 유감스럽게도 넌 이게 끝이겠군." + }, + "victory": { + "1": "다시 어딘가에서 만나도록하지. 그 얼굴 기억해둘테니까." + }, + "defeat": { + "1": "좋군! 이제 아쿠아단을 막아설 것은 없다!" + } + }, + "aqua_boss_archie_2": { + "encounter": { + "1": "이 날이 오는 것을 너무 오래 기다렸군.\n이것이 우리의 진정한 힘이다!" + }, + "victory": { + "1": "내가 생각했던 것들이…… " + }, + "defeat": { + "1": "이 세상을 원래의 순수한 상태로 되돌리겠다, 그 모든 것을!!" + } + }, + "galactic_boss_cyrus_1": { + "encounter": { + "1": "넌 공허한 감정에 이끌려 이곳에 오게된 것이다.\n마음에 귀를 기울인 것을 후회하게 해주지!" + }, + "victory": { + "1": "흥미롭군. 게다가 꽤 궁금해졌어." + }, + "defeat": { + "1": "새로운 세상을 만들 것이다…" + } + }, + "galactic_boss_cyrus_2": { + "encounter": { + "1": "이런 우리가 다시 만나게 됐군. 우리의 운명이 얽히게 된 것 같군.\n 하지만 지금 여기서, 나는 마침내 그 끈을 끊을 것이다!" + }, + "victory": { + "1": "어떻게? 어째서? 어떻게?!" + }, + "defeat": { + "1": "작별이로군." + } + }, + "plasma_boss_ghetsis_1": { + "encounter": { + "1": "누구도 저를 막을 수 없습니다! 무슨 짓을 하더라도!" + }, + "victory": { + "1": "…어떻게 된 거지? 이 몸은 플라스마단을 만들어낸 완벽한 남자라고! " + }, + "defeat": { + "1": "세계를 바꿀 완전한 지배자가 아니었단 말인가!? …흐하하!" + } + }, + "plasma_boss_ghetsis_2": { + "encounter": { + "1": "오시죠! 당신이 모든 희망을 잃는 순간의 얼굴을 보겠습니다!" + }, + "victory": { + "1": "내 계산이… 틀려! 내 치밀한 계획이 틀리다니! 세상은 내 것이어야 하는데!" + }, + "defeat": { + "1": "큐레무! 합체해라!" + } + }, + "flare_boss_lysandre_1": { + "encounter": { + "1": "나를 막겠다고? 배틀로 증명하도록." + }, + "victory": { + "1": "네가 나를 여기서 막았군. 하지만 잠시 기다리도록. " + }, + "defeat": { + "1": "포켓몬은… 더 이상 존재하지 않는다." + } + }, + "flare_boss_lysandre_2": { + "encounter": { + "1": "너의 미래와 나의 미래… 어느 쪽이 옳은지 서로의 포켓몬에게 묻도록 하지." + }, + "victory": { + "1": "크윽!" + }, + "defeat": { + "1": "우매한 자들이 이 아름다운 세상을 계속 더럽히고 있군." + } + }, + "aether_boss_lusamine_1": { + "encounter": { + "1": "비스트가 놀라잖아! …우선은 너를 조용히 시켜야겠어." + }, + "victory": { + "1": "……너무해!" + }, + "defeat": { + "1": "흐음…" + } + }, + "aether_boss_lusamine_2": { + "encounter": { + "1": "그렇게 말했는데도! …왜 이리 끈질긴 거야! 정말 진절머리가 나.\n$더 말해봐야 소용 없겠지… 텅비드의 힘으로 네가 여기까지 온 걸 후회하게 해줄게!" + }, + "victory": { + "1": "………아아아웃!!" + }, + "defeat": { + "1": "나는 비스트만 있으면 돼! 너희가 어떻게 되든 상관없어!" + } + }, + "skull_boss_guzma_1": { + "encounter": { + "1": "박살 내고 박살 내도 절대 봐주지 않아…\n$모두가 싫어하는 구즈마가 여기 있다!" + }, + "victory": { + "1": "쯧. 너는 내가 박살 내주겠어!" + }, + "defeat": { + "1": "겨우 그걸 위해서 일부러 온 거야?" + } + }, + "skull_boss_guzma_2": { + "encounter": { + "1": "누구든지 박살 낸다!\n$그것이 구즈마님의 아이덴티티!!" + }, + "victory": { + "1": "구즈마!!! 뭐 하고 있는 거야?!" + }, + "defeat": { + "1": "너희들 바보군!" + } + }, + "macro_boss_rose_1": { + "encounter": { + "1": "내게는 모든 사람이 영원히 마음을 놓고 발전할 수 있도록…\n$무한한 에너지를 가져다 줘야 한다는 신념과 사명이 있단다!" + }, + "victory": { + "1": "아직 무르군… 트레이너.\n$역사는 바뀔 것이네! 이 나의 손에 의해서 말이지" + }, + "defeat": { + "1": "자네는 여전히 깨닫지 못했군!" + } + }, + "macro_boss_rose_2": { + "encounter": { + "1": "나는 가라르를 포함한— 전 세계의 에너지 문제를 해결하기 위해 최선을 다하고 있어.\n$매크로코스모스를 성공으로 이끈 경험과 성과는 내 방식이 효율적이라는 증거란다.\n$생각을 바꿀 마음은 없어. 내가 지더라도." + }, + "victory": { + "1": "포켓몬 승부는 좋군! 오랜만에 싸워보니 만족스러워…\n$제법 괜찮군. 패배를 인정하지." + }, + "defeat": { + "1": "너희가 보기에는 내가 끔찍한 짓을 벌이고 있는 것처럼 보이겠지? 조금도 이해가 가지 않을 거야.\n$하지만 난 가라르지방의 영원한 번영을 위해서 무한한 에너지를 가져다줘야 해." + } + }, + "brock": { + "encounter": { + "1": "내 전문인 바위 타입 포켓몬으로 널 쓰러뜨려줄게! 덤벼!", + "2": "바위같은 의지로 널 압도하겠어!", + "3": "내 포켓몬의 진정한 힘을 보여줄게!" + }, + "victory": { + "1": "네 포켓몬의 힘이 바위같은 내 방어를 이겼어!", + "2": "세상은 넓구나! 너랑 겨뤄볼 수 있어서 즐거웠어.", + "3": "아마도 난 포켓몬 브리더의 꿈을 이루러 가야할지도…" + }, + "defeat": { + "1": "최선의 공격은 적절한 방어지!\n그게 내 방식이야!", + "2": "다음에 나한테 더 배우러와. 바위타입과 어떻게 싸워야하는지 알려주지!", + "3": "아, 여러 지역을 돌아다니며 여행한 보람이 있군!" + } + }, + "misty": { + "encounter": { + "1": "내 방침은 물타입 포켓몬으로 공격하고 공격하고 또 공격하는 거!", + "2": "아하핫, 너한테 내 물타입 포켓몬들의 힘을 보여줄게!", + "3": "내 꿈은 여행을 다니며 강한 트레이너들과 배틀하는 거였어…\n네가 그 충분한 도전자가 될 수 있는지 볼까?" + }, + "victory": { + "1": "너 정말로 강하구나… 그 실력 인정하도록 할게…", + "2": "으으… 너 그냥 운이 좋았던거야, 그치?!", + "3": "우와, 너 대단해! 날 이기다니 믿을 수 없어!" + }, + "defeat": { + "1": "최강인 최이슬! 너한테 좀 심했나?", + "2": "내 포켓몬들의 우아한 수영 테크닉을 봤길 바랄게!", + "3": "내 프라이드와 즐거움엔 네 포켓몬들은 상대가 안 돼. " + } + }, + "lt_surge": { + "encounter": { + "1": "마이 전기 포켓몬은 전쟁에서 미를 구했어요! 하우를 유에게 보여줄게요!", + "2": "헤이! 쇼크로 유를 항복시키겠어요!", + "3": "배틀에서 마이 에너미에게 했던 것처럼 유에게도 펀치를 날리겠어요!" + }, + "victory": { + "1": "와우, 키드! 유어 팀은 진짜 대단하군요!", + "2": "으흐흑, 유는 스트롱하네요! 마이 전기 트릭도 유에겐 로스트입니다.", + "3": "앱솔루트하고 쇼킹한 패배였어요!" + }, + "defeat": { + "1": "오우 예! 전기 타입 포켓몬이라면, 미가 월드에서 넘버 원이에요!", + "2": "하하하! 키드, 이것이 찌릿찌릿 일렉트릭 배틀입니다!", + "3": "포켓몬 배틀은 전쟁, 앤드 나는 유에게 직접 전투를 보여줬습니다!" + } + }, + "erika": { + "encounter": { + "1": "아, 오늘은 날씨가 좋네요…\n음, 배틀일까요? 그럼 더 좋죠.", + "2": "제 포켓몬들의 배틀 실력은 제 꽃꽂이 실력만큼 대단하답니다.", + "3": "아, 제 포켓몬의 달콤한 향기가 저를 다시 잠들게 하지 않았으면 좋겠는데……", + "4": "정원에서 꽃을 보면 마음이 편안해져요.”." + }, + "victory": { + "1": "앗! 제 패배를 인정합니다.", + "2": "방금 경기 정말 달콤했어요.", + "3": "아, 제가 진 것 같네요…", + "4": "앗, 맙소사." + }, + "defeat": { + "1": "저 조금 걱정했어요. 너무 졸려서…", + "2": "어머, 제 풀 포켓몬이 당신을 압도한 것 같네요.", + "3": "이 배틀 정말로 편안한 경험이었네요.", + "4": "어머… 이게 끝인가요?" + } + }, + "janine": { + "encounter": { + "1": "난 독을 사용하는 인술을 갈고 닦고 있어.\n오늘 수련에서는 너랑 대련할거야!", + "2": "아버지는 내가 잘해낼 수 있다고 신뢰하셔.\n 그게 맞는다는 걸 증명할게!", + "3": "내 인술은 아버지한테 뒤처지지 않아! 따라올 수 있겠어? " + }, + "victory": { + "1": "역시 아직도, 난 더 수련이 필요해… 납득했어.", + "2": "네 배틀 기술이 내 인술보다 한 수위야.", + "3": "더 스스로 갈고 닦아서, 내 인술을 향상 시키겠어." + }, + "defeat": { + "1": "후후후… 독이 네 기력을 모두 가져가버렸네.", + "2": "하핫, 너 내 인술에 맞설 기회를 잡지 못했구나!", + "3": "나를 향한 아버지의 신뢰, 틀리지 않았다는 걸 증명해냈어." + } + }, + "sabrina": { + "encounter": { + "1": "내 초능력을 통해서, 너의 도착은 예상하고 있었어!", + "2": "싸우는 건 좋아하지 않지만 네가 원한다면… 나의 힘을 보여줄게!", + "3": "네게서 큰 염원이 느껴져. 그것이 근거 없는 것이 아닌지 지켜보겠어." + }, + "victory": { + "1": "너의 힘은… 내가 예견했던 것보다 훨씬 뛰어나…", + "2": "나는 너의 힘을 정확하게 예측하지 못했어.", + "3": "나 엄청난 초능력을 가지고도, 너처럼 강한 사람을 느끼지 못했네." + }, + "defeat": { + "1": "이 승리는… 내가 환상에서 예견한 그대로네!", + "2": "아마도 그건, 내가 깊이 느꼈던 또 다른 염원이었을거야…", + "3": "무모하게 배틀에 임하기 전에 능력을 갈고닦도록.\n넌 미래가 어떻게 될지 예지할 수 없으니까…" + } + }, + "blaine": { + "encounter": { + "1": "우오오~옷! 화상치료제는 잘 준비했는가!", + "2": "나의 포켓몬은 모든 것을 불꽃으로 태워버리는 강한 녀석들뿐이다!", + "3": "불꽃과 함께할 준비는 됐는가!" + }, + "victory": { + "1": "아무것도 남지 않고 불타버렸다! 재조차 남지 않았어!", + "2": "내가 불을 너무 세게 피우지 않았나?", + "3": "불태웠다… 하지만 이건 불꽃을 향상시키려는 내 동기를 더욱 뜨겁게 만드는군!" + }, + "defeat": { + "1": "나의 타오르는 불길은 진압할 수 없다!", + "2": "내 포켓몬은 이번 승리의 열기로 더욱 강해졌다!", + "3": "하! 내 열정이 네 것보다 더 밝게 타오르고 있군!" + } + }, + "giovanni": { + "encounter": { + "1": "나, 로켓단의 리더가, 고통의 세계를 느끼게 해주마!", + "2": "옛 동료들과 다시 만나기 전, 이곳에서의 훈련은 매우 중요하겠군.", + "3": "너는 곧 경험하게 될 실패에 대한 준비가 되어 있지 않군!" + }, + "victory": { + "1": "하! 내가 졌다고?! 더 이상 할말이 없군!", + "2": "흐음… 넌 내가 이루고자 하는 것을 결코 이해할 수 없을 거다.", + "3": "이 패배는 피할 수 없는 것을 단지 지연시킬 뿐.\n때가 되면 잿더미에서 로켓단을 일으켜 세울 것이다." + }, + "defeat": { + "1": "자신의 힘을 스스로 잴수 없다는 것은 네가 아직 꼬맹이라는 것을 보여준다고 할 수 있지.", + "2": "다시는 나를 방해하지 말도록.", + "3": "나에게 도전하는 것이 얼마나 어리석은 짓인지 이해했으면 좋겠군." + } + }, + "roxanne": { + "encounter": { + "1": "당신이 어떻게 싸우는지 보여주시겠어요?", + "2": "당신은 여러 트레이너와 싸우면서 많은 것을 배울 수 있을거예요.", + "3": "아, 전략짜는 거 들켰네요.\n배틀할까요?" + }, + "victory": { + "1": "아, 제가 진 것 같네요.\n승복하겠습니다.", + "2": "전 아직도 포켓몬 배틀에 대해서 한참 더 배워야할 것 같네요.", + "3": "오늘 여기서 배운 것들을 마음에 담아둬야겠어요." + }, + "defeat": { + "1": "전 방금 승부에서 많은 것을 배웠습니다.\n당신도 그랬길 바래요.", + "2": "다시 붙을 날이 기대되네요.\n당신이 여기서 배운 걸 활용할 수 있길 바랍니다.", + "3": "여태까지 공부해온 것 덕분에 이겼네요." + } + }, + "brawly": { + "encounter": { + "1": "오, 도전자잖아!\n어디 한 번 볼까!", + "2": "넌 큰 파란을 일으킬 것 같군.\n승부다!", + "3": "폭풍을 일으킬 시간이야!\n가자!" + }, + "victory": { + "1": "우와, 너 날 씻겨버렸네!", + "2": "내 파도를 타고, 나까지 밀어내다니!", + "3": "바위 동굴에서 길을 잃은 기분이야!" + }, + "defeat": { + "1": "하핫, 난 큰 파도를 탔다고!\n언제 또 도전해주라.", + "2": "언젠가 또 같이 서핑하자고!", + "3": "파도가 밀려왔다가 밀려나듯, 언젠가 너도 다시 도전하러 와." + } + }, + "wattson": { + "encounter": { + "1": "찌릿찌릿해질 때가 됐군!\n와하하하핫!", + "2": "스파크가 튀도록 해주마!\n와하하하하!", + "3": "와하하하하!\n마비 치료제를 가져왔길 바라네!" + }, + "victory": { + "1": "이 몸 배터리가 다 됐군!\n와하하하하!", + "2": "자네 완전히 날 좌초시켰군!\n와하하하핫!", + "3": "스릴 넘치는 배틀, 고맙네!\n와하하하하하!" + }, + "defeat": { + "1": "자네의 배터리 재충전하게. 그리고 나에게 도전하러 돌아오도록!\n와하하하핫!", + "2": "방금 배틀이 자네에게 짜릿짜릿했길 바란다네!\n와하하하하!", + "3": "자네 혹시 내가 이겨서 충격 받았나?\n와하하하핫!" + } + }, + "flannery": { + "encounter": { + "1": "어서오세요! 잠깐, 아냐…\n너를 무너뜨려줄게!", + "2": "난 체육관 관장이 된지는 얼마 안됐지만, 널 태워버릴거야!", + "3": "할아버지에게 배운 기술을 한 수 보여줄게! 승부다!" + }, + "victory": { + "1": "너 우리 할아버지를 생각나게 하네…\n내가 진 게 놀랍진 않아.", + "2": "나 너무 열심히 하는 건가?\n너무 열 올리면 안되니깐, 진정해야겠어.", + "3": "패배는 날 꺼뜨릴 수 없어.\n트레이닝으로 다시 불을 붙일 때야!" + }, + "defeat": { + "1": "할아버지가 자랑스러워하시길…\n언젠가 다시 배틀하자.", + "2": "내…내가 이기다니!\n내 방식대로 한 게 통했어!", + "3": "조만간 다시 뜨겁게 불타오르는 배틀을 하자!" + } + }, + "norman": { + "encounter": { + "1": "여기까지 오다니 놀랍군.\n한 번 겨뤄볼까.", + "2": "관장으로서 최선을 다해 널 이길 거란다.\n가자!", + "3": "최선을 다하는 게 좋을 거야.\n승부할 시간이다!" + }, + "victory": { + "1": "내가 지다니…?\n규칙은 규칙이니, 흐음.", + "2": "담청시티에서 이사한 게 문제였나…?", + "3": "믿을 수 없구나.\n훌륭한 승부였어." + }, + "defeat": { + "1": "우린 둘 다 최선을 다했지.\n다시 대결할 수 있었으면 좋겠구나.", + "2": "우리 집 꼬마에게 도전해보는 것도 좋겠군.\n아마 뭔가 배울 수 있을거다!", + "3": "방금 전 배틀 완벽했어.\n다음에도 행운이 함께하길." + } + }, + "winona": { + "encounter": { + "1": "저는 먹이를 찾아서 하늘을 날아다녔어요…\n그리고 당신은 제 타겟입니다!", + "2": "배틀이 어떻게 되든, 전 제 비행 포켓몬과 우아하게 승리하겠어요. 승부합시다!", + "3": "당신이 높은 곳을 무서워하지 않기를.\n자, 날아올라요!" + }, + "victory": { + "1": "저보다 우아하게 나서는 트레이너는 처음 봤습니다.\n훌륭하시네요.", + "2": "이런, 제 비행 포켓몬이 추락해버렸네요!\n훌륭한 배틀이었습니다.", + "3": "비록 전 떨어졌지만, 제 포켓몬은 다시 날아갈 겁니다!" + }, + "defeat": { + "1": "제 비행 포켓몬과 영원히 우아하게 춤출게요.", + "2": "우리의 쇼가 즐거웠길 바라요.\n우아한 춤은 끝났습니다.", + "3": "우리의 엘레강스한 안무를 다시 보러오지 않을래요?" + } + }, + "tate": { + "encounter": { + "1": "헤헤헤…\n내가 란과 같이 있지 않아서 놀랐지?", + "2": "네가 무슨 생각을 하는지 알아…\n승부하고 싶은거지!", + "3": "네 움직임을 모두 알고 있는데…\n어떻게 이기려고?" + }, + "victory": { + "1": "어쩔 수 없지…\n란이 보고싶다아…", + "2": "너와 네 포켓몬과의 유대, 나보다 더 견고한걸.", + "3": "란이랑 함께였다면, 우리가 이겼어.\n둘이선 더 잘 할 수 있다구!" + }, + "defeat": { + "1": "내 포켓몬과 나는 우수하다구!", + "2": "날 못 이긴다면, 넌 란한테도 절대로 못 이겨.", + "3": "란과 함께한 엄격한 훈련 덕이야.\n덕분에 포켓몬과 하나가 될 수 있었어." + } + }, + "liza": { + "encounter": { + "1": "후후후…\n내가 풍과 같이 있지 않아서 놀랐지?", + "2": "네가 무얼 바라는지 알아…\n포켓몬 배틀, 맞지?", + "3": "포켓몬과 하나가 된 사람…\n어떻게 이기려고?" + }, + "victory": { + "1": "어쩔 수 없지…\n풍이 보고싶다아…", + "2": "너와 네 포켓몬과의 유대, 나보다 더 견고한걸.", + "3": "풍이랑 함께였다면, 우리가 이겼어.\n둘이선 더 잘 할 수 있다구!" + }, + "defeat": { + "1": "내 포켓몬과 내가 승리한거야.", + "2": "날 못 이긴다면, 넌 풍한테도 절대로 못 이겨.", + "3": "풍과 함께한 엄격한 훈련 덕이야.\n덕분에 포켓몬과 싱크로 될 수 있었어." + } + }, + "juan": { + "encounter": { + "1": "지금은 겸양을 부릴 때가 아니군요.\n승부합시다!", + "2": "아하하하, 물 포켓몬과 함께 아트를 보여드리겠습니다!", + "3": "태풍이 다가오는군요!\n저를 테스트해주시겠습니까?", + "4": "자, 마음껏 봐주십시오.\n저와 포켓몬이 이루어내는 물의 일루전을!" + }, + "victory": { + "1": "당신은 윤진 관장을 뛰어넘을 지니어스군요!", + "2": "당신이 훈련할 때 저는 엘레강스에 집중했습니다.\n당신이 이기는 건 당연하죠.", + "3": "아하하하하!\n잘했습니다, 이번엔 당신이 이겼네요.", + "4": "모든 것을 극복하는 브릴리언트 스킬, 당신에게 느껴지네요." + }, + "defeat": { + "1": "저와 포켓몬이 이루어내는 물의 일루전이 승리했습니다.", + "2": "아하하핫, 저는 이겼고, 당신은 졌습니다.", + "3": "겉옷 빌려드릴까요? 아마도 배틀에 도움이 될겁니다!\n아하하하, 농담입니다!", + "4": "제가 승리자군요! 그리고, 당신은 졌네요." + } + }, + "crasher_wake": { + "encounter": { + "1": "철썩! 철썩! 조심해라!\n맥시멈 가면이…지금…간다!", + "2": "철썩! 철썩! 파도의 맥시멈 가면!", + "3": "밀물같은 힘으로 쓸려나가도록 해보실까!!" + }, + "victory": { + "1": "저절로 웃음이 나오게 되는군!\n크하하핫! 정말 훌륭했다!", + "2": "우왓! 끝나버렸나!\n뭐랄까…\n좀 더 싸우고 싶은 기분이야!", + "3": "이럴수가!?" + }, + "defeat": { + "1": "으하하핫! 보람차군!", + "2": "내가 이겼지만, 아쉽군! 좀 더 배틀하고 싶은데!", + "3": "잘 가게나!" + } + }, + "falkner": { + "encounter": { + "1": "넓은 하늘을 화려하게 나는 새 포켓몬의 진정한 강함을 알게 해주겠다!", + "2": "바람이여, 나에게 오라!", + "3": "아버지, 내 시합을 하늘에서도 봐줘!" + }, + "victory": { + "1": "알았다… 미련없이 땅에 내려가지.", + "2": "패배는 패배니까. 넌 정말 강하군.", + "3": "…큭! 그래, 내가 졌다." + }, + "defeat": { + "1": "아버지! 소중히 여기던 새 포켓몬으로 이겼어…", + "2": "언제나 새 포켓몬이 최강이다!", + "3": "아버지를 따라 잡은 기분이군!" + } + }, + "nessa": { + "encounter": { + "1": "똑똑한 네가 어떤 계획을 세우고 있든지, 나와 내 파트너가 가라앉혀줄 테니까 문제 없어.", + "2": "잡담하려고 나온 게 아니야. 이기려고 나온 거지!", + "3": "이건 내 포켓몬이 주는 작은 선물이야… 네가 잘 받아줘야 해!" + }, + "victory": { + "1": "너와 네 포켓몬 정말로 너무…", + "2": "어째서…? 어떻게 이럴 수 있지?!", + "3": "완전히 씻겨 나갔잖아!" + }, + "defeat": { + "1": "성난 파도가 다시 부딪혀올거니까!", + "2": "승리의 파도를 탈 시간이야!", + "3": "에헤헤!" + } + }, + "melony": { + "encounter": { + "1": "봐주지는 않을 거란다!", + "2": "그럼 이제, 시작해도 될 것 같네.", + "3": "영하의 세계로 안내해주마!" + }, + "victory": { + "1": "너… 꽤 하는구나?", + "2": "만약 주변에서 마쿠와를 찾는다면, 그 때는 따끔한 맛을 보여주도록 하렴, 알았지?", + "3": "아이스 브레이킹을 너무 문자 그대로 받아들인 것 같은데…" + }, + "defeat": { + "1": "이제 전투가 얼마나 치열할 수 있는 지 알겠니?", + "2": "아하하! 내가 또 이긴 것 같네!", + "3": "너 혹시 봐준거니?" + } + }, + "marlon": { + "encounter": { + "1": "너 강해보이네! 받아라! 승부 시작이야!", + "2": "난 넓은 대양처럼 강인하다고. 너 분명히 휩쓸려 갈거야.", + "3": "오, 내가 너를 마주 보고 있군! 둘다 파도에서 떨어지겠어." + }, + "victory": { + "1": "너… 좋은 포켓몬을 키우고 있구나! 꽤 하는군! 끝내주는 트레이너야!", + "2": "강해 보이는 게 아니고 진짜 강하구나! 에-, 나도 휩쓸려버렸어!", + "3": "넌 거친 파도처럼 강인하구나!" + }, + "defeat": { + "1": "넌 강하지만, 바다를 흔들기에는 역부족이네, 그치!", + "2": "아하핫! 내가 또 이긴 것 같네!", + "3": "달콤하네, 승리 역시 달콤하고!" + } + }, + "shauntal": { + "encounter": { + "1": "미안합니다. 도전자이시죠?\n고스트포켓몬 조련사인 사천왕 망초가 상대하겠습니다.", + "2": "겨루었던 트레이너와 포켓몬의 마음이 통하는 모습을 이야기로 만드는 것을 좋아해서요!\n그러니까 당신들에 대한 취재를 허락해 주세요?", + "3": "포켓몬과 함께 일하는 모든 사람들은 각자 이야기를 갖고 있죠.\n어떤 이야기를 들려드릴까요?" + }, + "victory": { + "1": "…우와. 저 아연실색 망연자실이에요!", + "2": "미-미 미안합니다! 먼저 포켓몬에게 사과해야지…\n\n나 때문에 괴로운 기억을 만들게 돼서 정말 미안해!", + "3": "그치만, 전 여전히 사천왕인걸요!" + }, + "defeat": { + "1": "에헤헤.", + "2": "다음 소설의 완벽한 소재를 얻었다!", + "3": "그리고 이렇게, 또 다른 이야기가 끝났습니다…" + } + }, + "marshal": { + "encounter": { + "1": "노간주 스승님이, 잠재력을 보고 네게 관심을 갖고 계시더군.\n그 힘의 한계까지 데려가는 것이 이번 의도다! 그럼 간다!", + "2": "승리, 압도적인 승리, 내가 바라는 것이다! 강인한 도전자여, 간다!", + "3": "깨뜨리는 것은 약한 자신, 관철하는 것은 강한 신념!\n 그리고 바라는 것은 압도적인 승리!" + }, + "victory": { + "1": "후우! 잘 싸웠다!", + "2": "역시 대단하구나! 싸워서 더욱더 높은 곳을 노려라…!", + "3": "너와 네 포켓몬이 보여준 그 힘, 감명 깊군…" + }, + "defeat": { + "1": "흐음.", + "2": "좋은 승부였다.", + "3": "하압! 하압! 히야아아압!!!!" + } + }, + "cheren": { + "encounter": { + "1": "넌 내 오랜 친구가 생각나게 하는군. 그 덕분에 이 배틀이 기대돼!", + "2": "왜 하고 있는지 생각하지 않으면, 포켓몬 배틀은 의미가 없어 . \n$좋게 말하면, 함께 포켓몬과 승부하는 것이 무의미해 지는 것이지.", + "3": "내 이름은 체렌! 체육관 관장이자 선생님을 하고 있지! 널 만나게 되서 기쁘군." + }, + "victory": { + "1": "고마워! 내 안에 무엇이 부족했는지 알게 됐네.", + "2": "고마워! 내가 추구하는 이상에 조금 다가간 것 같아.", + "3": "으음… 이건 문제가 있군." + }, + "defeat": { + "1": "체육관 관장으로서, 나는 넘어야할 벽이 되고자 하고 있거든.", + "2": "좋았어!", + "3": "포켓몬이 곁에 있었기 때문에 여기까지 올 수 있었어.\n생명체와 생명체라는 동등한 관계에서 포켓몬이 우리에게 도움을 주는 이유를 생각해 볼 필요는 있지." + } + }, + "chili": { + "encounter": { + "1": "이얏호-! 형제중 가장 강한 나하고 놀자고!", + "2": "짜잔! 불꽃타입 불꽃의 남자 팟, 바로 너의 상대가 되어주지!", + "3": "나와 내 불타오르는 불꽃타입 포켓몬들이 뭘 할수 있는지 보여주지!" + }, + "victory": { + "1": "졌지만… 모 두 불 태 웠 어!!", + "2": "와우! 불태워졌네!", + "3": "으악! 너가 나를 이겨버렸잖아!" + }, + "defeat": { + "1": "난 지금 불타오르고 있어, 나와 싸우게 된다면 넌 다치게 될거야!", + "2": "불장난하면 밤에 이불에 지도를 그리는 법이지!", + "3": "그러니까, 상대가 나였잖아? 너에게는 처음부터 기회가 없었다고!" + } + }, + "cilan": { + "encounter": { + "1": "개인적으로 받아들이지 마세요… 감정 상하지도 말고요… 저와 제 풀타입 포켓몬들이라면…\n$음… 무슨 일이 있더라도 배틀을 할 겁니다.", + "2": "네. 저로 괜찮다면 진심을 담아서 상대해 드리겠습니다.", + "3": "네… 그, 음, 저는 덴트입니다, 풀타입 포켓몬을 좋아합니다." + }, + "victory": { + "1": "…에- 그게… 끝나버렸나요?", + "2": "…놀랐습니다. 당신 아주 강하군요. \n$팟이나 콘이라도 이길 수 없었을 것 같습니다…", + "3": "…어라, 타이밍이 좀 잘못된것 같네요?" + }, + "defeat": { + "1": "어라? 제가 이긴 건가요?", + "2": "제 생각엔… \n$아무래도 제가 이겼어야만 했을 거라 생각합니다, 팟과 콘이랑 배틀하면서 우리는 모두 더 강해졌기 때문이죠.", + "3": "정말… 아주 짜릿한 경험이었습니다…" + } + }, + "roark": { + "encounter": { + "1": "트레이너로서 너의 실력이 어느 정도인지 그리고 함께 싸울 포켓몬이 얼마나 강한지 확인해보겠어!", + "2": "자 간다! 내 자랑이자 기쁨인 바위타입 포켓몬들이야!", + "3": "바위타입 포켓몬이야말로 최고지!", + "4": "트레이너로서 너의 실력이 어느 정도인지 그리고 함께 싸울 포켓몬이 얼마나 강한지 확인해보겠어!" + }, + "victory": { + "1": "이-이럴수가! 열심히 단련시킨 포켓몬들이!", + "2": "…져버린 건가. 다음엔 지하통로에서 화석캐기 승부를 하고 싶구나.", + "3": "네 실력이라면 승리는 당연한 결과겠지.", + "4": "뭐-뭐야?! 이럴 수가! 이것도 부족했단 말인가?", + "5": "내가 실수했군." + }, + "defeat": { + "1": "봤지? 이게 바로 내가 자랑하는 바위 스타일 전투야!", + "2": "고마워! 이번 승부로 아버지를 이길 수 있겠다는 자신감이 생겼어!", + "3": "정말 단단한 바위를 뚫고 나온 기분인데!" + } + }, + "morty": { + "encounter": { + "1": "조금만 더 노력하면, 내가 전설의 포켓몬을 만나는 미래가 보여.\n$내가 그 수준에 도달할 수 있게 도와줘!", + "2": "커다란 무지개색 포켓몬은 진정한 강함을 가진 트레이너 앞에 나타난다는 이야기가 있어. \n$난 그 이야기를 믿고, 줄곧 이 곳에서 몰래 수행하고 있어. 그 결과로, 다른 사람들은 볼 수 없는 것을 볼 수 있게 됐지. \n$내겐 그 포켓몬을 나타나게 할 사람의 그림자가 보이거든. \n$난 그게 나라고 믿어! 넌 내가 그 수준에 올라갈 수 있도록 도와줘야겠어!", + "3": "네가 믿든 믿지 않든, 불가사의한 힘은 존재해.", + "4": "넌 내 수련의 결실을 보게 될 거야.", + "5": "포켓몬과 너의 영혼을 하나로 만들어야 해. 가능하겠어?", + "6": "저기, 너 내 수행의 일부분이 되고 싶은거지?" + }, + "victory": { + "1": "나는 아직 멀었구나…", + "2": "그래… 여행으로 먼 곳을 돌아다니면서, 나보다 훨씬 많은 것을 봐왔구나.\n$네가 조금 부럽네…", + "3": "이게 어떻게 가능한 거지…", + "4": "우리의 잠재력은 그렇게 다르진 않은 것 같아.\n$그치만 넌 그것과 다른 무언가를 많이 갖고 있는 것 같네… 흐음.", + "5": "수련이 더 필요하겠군.", + "6": "안타깝게 됐네." + }, + "defeat": { + "1": "내가…다시 한 발짝 앞섰어.", + "2": "후후훗…", + "3": "뭐-뭐야?! 이럴 수가! 그것도 부족해?", + "4": "정말 단단한 바위를 뚫고 나온 기분인데!", + "5": "아하하하하!", + "6": "내가 이길 줄 알았어!" + } + }, + "crispin": { + "encounter": { + "1": "이기고 싶으니까 이기고 말겠어!", + "2": "싸우고 싶으면 싸운다! 이거면 충분하지 않아!?" + }, + "victory": { + "1": "이기고 싶었는데…졌잖아!", + "2": "이기지 못해서…지고 말았어!" + }, + "defeat": { + "1": "잠시만. 나 지금 이긴거지? 이긴 거 맞지! 기분 좋은데!", + "2": "우와아! 이거 굉장한데!" + } + }, + "amarys": { + "encounter": { + "1": "네리네는 그 사람을 구원하고 싶습니다. 그렇기에 패배는 용납되지 않습니다.\n$… 승부를 시작합니다." + }, + "victory": { + "1": "네리네는… 안 된다는 건가요." + }, + "defeat": { + "1": "네리네가 승리했습니다. 수고하셨습니다." + } + }, + "lacey": { + "encounter": { + "1": "이번에는 사천왕으로서 승부하는 거니까 평소 사용하는 아이들로 상대해 드릴게요!" + }, + "victory": { + "1": "멋진 포켓몬 배틀이었어요!" + }, + "defeat": { + "1": "당신의 포켓몬의 노력에 박수를 보내주세요!" + } + }, + "drayton": { + "encounter": { + "1": "의자는 좋은 거야. 너도 그렇게 생각해? 정말 고마운 물건이지. \n$왜 다들 앉지 않는 걸까. 서 있는 건 힘들잖아!" + }, + "victory": { + "1": "전보다 더 강해질 줄이야!" + }, + "defeat": { + "1": "헤헤헷! 내 승리야. 분한 건 알겠지만 카지처럼 나가떨어지지마, 응?" + } + }, + "ramos": { + "encounter": { + "1": "그래, 올곧게 자란 초목을 모아서 만든 풀 정글짐은 어땠는가?\n$자네가 느낀 그것이 나의 체육관 관장으로서의 실력이네! 한번 확인해 보겠나?" + }, + "victory": { + "1": "포켓몬은 자네를 믿고, 자네는 그들을 믿는다…가슴이 후련해지는 승부였구먼." + }, + "defeat": { + "1": "호호호…연약해 보이는 풀잎은 콘크리트도 뚫을 수 있다네." + } + }, + "viola": { + "encounter": { + "1": "패배의 분함도 승리의 순간도…\n$둘 다 최고의 피사체야! 정말 멋져 멋져! \n$자, 그럼 덤비렴!", + "2": "나 비올라는 셔트 찬스를 노리는 것처럼--승리를 노릴 거야!" + }, + "victory": { + "1": "너와 네 포켓몬은 최고의 콤비구나! 정말 멋져 멋져!", + "2": "렌즈 너머의 세계와 포켓몬의 마음으로 보는 세계…\n$똑같이 보이는 풍경이지만 다양한 세계가 겹쳐져 있는 거야." + }, + "defeat": { + "1": "내가 승리한 순간을 찍은 사진은 정말 멋져 멋져!", + "2": "좋아! 멋진 사진을 찍었어!" + } + }, + "candice": { + "encounter": { + "1": "나, 무청에게 도전하고 싶은거야? 좋아! 강한 사람을 기다리고 있었으니까!\n$그치만 말해두는데, 집중하는 방법을 아는 나도 강력하거든.", + "2": "포켓몬도 멋도 연애도 정신 집중이 중요하다고!\n$무슨 뜻인지 보여줄테니까 각오해!" + }, + "victory": { + "1": "있지, 나 조금 불타오르게 됐어! 널 조금 존경하게 될지도 몰라.", + "2": "우와! 제법인데! 내가 존경하게 만들다니!\n$네 집중력과 의지, 완전히 나를 압도하는 같아. " + }, + "defeat": { + "1": "이기고자 하는 의지는 전해졌지만, 난 지지 않았어!", + "2": "봤지? 무청의 집중력! 내 포켓몬의 집중력도 대단하다구!" + } + }, + "gardenia": { + "encounter": { + "1": "너에게선 승리의 기운이 느껴져. 어쨌든 재밌을 것 같아. 포켓몬 승부하자!" + }, + "victory": { + "1": "대단해! 너 정말 강하구나!" + }, + "defeat": { + "1": "그렇지! 나와 포켓몬은 완벽해!" + } + }, + "aaron": { + "encounter": { + "1": "좋습니다! 그럼 상대해 드리죠!" + }, + "victory": { + "1": "승부는 딥하고 컴플렉스한 일이네요…" + }, + "defeat": { + "1": "사천왕을 상대로 하는 승리는 쉽게 오지 않는다구요." + } + }, + "cress": { + "encounter": { + "1": "맞습니다! 당신은 저와 제 자랑스러운 물타입 포켓몬들과 상대하게 될것입니다." + }, + "victory": { + "1": "곤란하네… 이 콘이 질 줄이야." + }, + "defeat": { + "1": "제가 당신의 상대였기 때문에 이건 당연한 결과였습니다." + } + }, + "allister": { + "encounter": { + "1": "……어니언이야.\n……가 간다…" + }, + "victory": { + "1": "충격을 받아서… 가면을 떨어뜨릴 뻔 했지만…\n$네가 얼마나 강한지 확실히 봤어." + }, + "defeat": { + "1": "이-이게 내 실력이니까!" + } + }, + "clay": { + "encounter": { + "1": "실망스럽군! 나를 기다리게 하다니, 이 꼬마가. 아무튼 실력을 확인해 볼까!" + }, + "victory": { + "1": "이런 이런… 진심으로 싸워서 진 거라 오히려 시원한 기분이군!" + }, + "defeat": { + "1": "중요한 것은 패배에 어떻게 반응하는 거다. \n$그렇기 때문에 패배를 연료로 삼아 나아가는 사람들은 강인하지." + } + }, + "kofu": { + "encounter": { + "1": "물포켓몬의 풀코스를! 배 터지게 먹여 주도록 하마!" + }, + "victory": { + "1": "우옷! 우오오옷! 이렇게 팔팔한 트레이너가 다 있다니!" + }, + "defeat": { + "1": "젊은 친구! 다음에 또 만나기를 기대하고 있으마!" + } + }, + "tulip": { + "encounter": { + "1": "리파의 기술로 너의 포켓몬들을 지금보다 훨~씬 아름답게 만들어 줄게!" + }, + "victory": { + "1": "너의 강함은 풀 수 없는 매직이구나." + }, + "defeat": { + "1": "…리파의 업계에서는 어중간한 재능을 가진 사람은 대체로 금방 사라져 버려." + } + }, + "sidney": { + "encounter": { + "1": "음, 좋은 표정이야. 꽤나 즐길 수 있겠는데.\n$좋아! 아주 좋아! 좋았어!\n$우리 함께, 포켓몬리그에서만 맛볼 수 있는 배틀을 즐겨보도록 하자!" + }, + "victory": { + "1": "이런, 이런 져버렸군? 뭐, 꽤 즐겼으니 상관없지만." + }, + "defeat": { + "1": "기분 나빠하지 마, 알겠지?" + } + }, + "phoebe": { + "encounter": { + "1": "송화산에서 수행하면서, 고스트 타입 포켓몬과 마음이 통하게 됐어. \n$응, 나와 내 포켓몬의 유대감은 정말 강해! \n$이런 내 포켓몬들에게 과연 데미지를 줄 수 있을지 한번 시험해봐!" + }, + "victory": { + "1": "아- 아, 내가 져버렸다." + }, + "defeat": { + "1": "언젠가 다시 승부할 수 있기를 기대할게!" + } + }, + "glacia": { + "encounter": { + "1": "이곳에 도전하러 오는 건 모두 어설픈 트레이너와 포켓몬뿐…. \n$당신은 어떤가요? 제 진짜 실력을 발휘해도 괜찮을 정도라면 정말 기쁠텐데 말이죠…!" + }, + "victory": { + "1": "당신과… 당신 포켓몬들의 뜨거운 혼!\n$정말로 압도적인 뜨거움이네요. \n$내 얼음 기술로 피해를 주지 못한 것도 놀랍지 않을정도로요!" + }, + "defeat": { + "1": "저런, 정말로 치열한 승부였네요." + } + }, + "drake": { + "encounter": { + "1": "파트너로 포켓몬과 함께하는 승부에 무엇이 필요한지 넌 알고 있는가? \n$그걸 모른다면 넌 이 몸을 이길 수 없다!" + }, + "victory": { + "1": "훌륭하다, 라고 할 만 하군!" + }, + "defeat": { + "1": "난 승부에서 최선을 다했으니까!" + } + }, + "wallace": { + "encounter": { + "1": "뭐랄까, 너의 분위기가 조금 변한 것 같은… \n$그런 느낌이 드는군. 자, 그럼 한번 확인해볼까? 너와 포켓몬의 힘을. \n$그리고 확실하게 보여주도록 하지. 나와 포켓몬에 의한 물의 일루전을!" + }, + "victory": { + "1": "훌륭하군. 넌 정말 굉장한 포켓몬 트레이너다. \n$그런 너와 너의 포켓몬을 만나게 된 걸 기쁘게 생각해. 스스로 그 가치를 증명하다니!" + }, + "defeat": { + "1": "거대한 일루전이로군!" + } + }, + "lorelei": { + "encounter": { + "1": "얼음포켓몬을 내보내면 대적할 사람이 없지! 상대를 얼린다는 건 매우 강력한 공격이야.\n$네 포켓몬이 꽁꽁 얼면 그때부턴 내 손바닥 위거든! 아하하! 준비됐어?" + }, + "victory": { + "1": "어떻게 감히!" + }, + "defeat": { + "1": "얼어붙은 넌 아무것도 할 수 없어." + } + }, + "will": { + "encounter": { + "1": "나는 전세계를 돌아다니며, 강한 에스퍼 포켓몬을 만들도록 수행해왔다.\n$계속 더 정진하겠다! 패배는 선택지에 없어!" + }, + "victory": { + "1": "이… 내가… 믿을수 없어…" + }, + "defeat": { + "1": "근소한 차이였다. 네게 부족한 것이 무엇인지 궁금하군." + } + }, + "malva": { + "encounter": { + "1": "심장이 불에 타버릴 것만 같아요. \n$당신에 대한 증오로 불타고 있거든요, 얄미운 트레이너!" + }, + "victory": { + "1": "도전자가… 사천왕 파키라에게서 멋지게 승리를 쟁취했습니다!" + }, + "defeat": { + "1": "기쁘네요! 당신을 짓밟을 수 있어서 말이죠!" + } + }, + "hala": { + "encounter": { + "1": "그럼…진심을 담아서 진지한 할라로 임하겠다!" + }, + "victory": { + "1": "네가 순례하면서 갖추게 된 강함을 느낄 수 있었다." + }, + "defeat": { + "1": "하하! 경쾌한 승부였구나!" + } + }, + "molayne": { + "encounter": { + "1": "사촌인 마마네에게 캡틴 자리는 줬지만, 아직 실력에는 자신 있어요. \n$제 실력은 초신성처럼 빛나니까요!" + }, + "victory": { + "1": "확실히 겨룰 흥미로운 트레이너를 찾았네요!" + }, + "defeat": { + "1": "아하하. 흥미로운 배틀이었네요." + } + }, + "rika": { + "encounter": { + "1": "실컷 귀여워해 줄 테니까… 한 번 열심히 해 보라고!" + }, + "victory": { + "1": "너, 꽤 하는구나!" + }, + "defeat": { + "1": "아하하! 제법인데! 역시 너는 재밌는 녀석이라니까!" + } + }, + "bruno": { + "encounter": { + "1": "우월한 힘으로 너를 부숴주지! 우! 하~앗!" + }, + "victory": { + "1": "하? 어떻게 내가 진 거지?" + }, + "defeat": { + "1": "얼마든지 내게 도전 할 수 있지만, 결과는 절대 바뀌지 않을 거다!" + } + }, + "bugsy": { + "encounter": { + "1": "내 이름은 호일! 벌레 포켓몬에 대해서라면 누구에게도 지지 않아!" + }, + "victory": { + "1": "우와, 대단해! 넌 포켓몬 전문가구나!\n내 연구는 아직 안 끝났네. 응, 네가 이겼어." + }, + "defeat": { + "1": "고마워! 방금 승부 덕분에, 내 연구도 진전을 이룬 것 같아!" + } + }, + "koga": { + "encounter": { + "1": "후하하하! 포켓몬은 단순히 강한 것만이 아니다--곧 알려주지!" + }, + "victory": { + "1": "하! 스스로 증명해냈군!" + }, + "defeat": { + "1": "인술을 피하는 방법을 배워보겠나?" + } + }, + "bertha": { + "encounter": { + "1": "그럼, 할머니가 네가 얼마나 해낼 수 있는지 보도록 할게?" + }, + "victory": { + "1": "좋아! 꼬마야, 정말로, 인상적이었단다.\n$네 포켓몬은 너를 믿고 승리를 위해 최선을 다했구나.\n$비록 내가 졌지만, 좋아서 바보같이 웃음이 나오는구나!" + }, + "defeat": { + "1": "호호호! 이 할머니가 이겼구나!" + } + }, + "lenora": { + "encounter": { + "1": "자 그럼 도전자여, 애정을 담아 키운 포켓몬으로 어떤 방식으로 싸우는지 연구해 보겠다!" + }, + "victory": { + "1": "너에 대한 내 가설이 맞았네. 재능만 있는 게 아니라… 대단한 녀석이구나! 너 반할것 같잖아!" + }, + "defeat": { + "1": "아 하 하! 패배했다면, 그 이유를 분석하고, 다음 승부에서 그 지식을 활용하도록!" + } + }, + "siebold": { + "encounter": { + "1": "살아가는 동안, 궁극적인 요리와 강력한 상대를 찾기 위해… 열과 성을 다할 것입니다!" + }, + "victory": { + "1": "당신에 대한 기억을 제 가슴 속에 담아두겠습니다." + }, + "defeat": { + "1": "우리의 포켓몬 배틀은 영혼의 양식과 같습니다. 그건 저를 계속 지탱할 거예요. \n$이것이 제가 전투에서 모든 것을 바친 당신에게, 경의를 표하는 방법입니다!" + } + }, + "roxie": { + "encounter": { + "1": "간다! 너의 이성을 싹 날려줄 거야!!" + }, + "victory": { + "1": "굉-장해! 네 이성, 이미 나보다 TOXIC해버렸잖아!" + }, + "defeat": { + "1": "헤이, 잠깐-! 좀 더 진지해져! 넌 더 날아가야한다구!" + } + }, + "olivia": { + "encounter": { + "1": "여기에 소개는 필요 없지. 자, 라이치님과 승부할 시간이다!" + }, + "victory": { + "1": "정말 훌륭하군… 당신과 포켓몬 둘 다…" + }, + "defeat": { + "1": "흐-음." + } + }, + "poppy": { + "encounter": { + "1": "우와~! 뽀삐와 포켓몬 승부가 하고 싶으세요?" + }, + "victory": { + "1": "훌쩍, 으에엥~" + }, + "defeat": { + "1": "만세~! 만세~ 목수, 성공했어요! \n$에헴! 리벤지 매치는 언제든지 받아 줄게요!" + } + }, + "agatha": { + "encounter": { + "1": "포켓몬은 싸우게 하려고 있는 것이야! 진정한 싸움이라는 것을 보여주겠다!" + }, + "victory": { + "1": "이런! 넌 무언가 특별하구나, 꼬마야!" + }, + "defeat": { + "1": "바하하하. 제대로 된 승부는 이렇게 하는거다!" + } + }, + "flint": { + "encounter": { + "1": "뜨겁게 타오를 준비는 됐겠지, 이제 곧 대폭발이 다가올테니까!" + }, + "victory": { + "1": "놀랍군! 네 기술이 너무 뜨거워서, 내가 미적지근해보이잖아!" + }, + "defeat": { + "1": "하? 그게 다야? 좀 더 열정이 필요해보이는걸." + } + }, + "grimsley": { + "encounter": { + "1": "이긴 자가 모든 것을 갖고 패배한 자에겐 아무것도 남지 않는다." + }, + "victory": { + "1": "누군가가 이기면 상대한 누군가가 진다… 난 다음 승리를 목표로 하겠어!" + }, + "defeat": { + "1": "누군가가 이기면, 그 사람과 싸운 사람은 지게 되는 것이지." + } + }, + "caitlin": { + "encounter": { + "1": "피어난 꽃에서 나타난 것은 나. 거기 있는 당신…\n$강함과 상냥함을 함께 갖춘 포켓몬 트레이너인 것 같네. \n$이 카틀레야가 대전 상대로 원하는 건 최고의 강함… \n$너도 그 실력을 마음껏 펼쳐 봐!" + }, + "victory": { + "1": "대전을 통해서 저도 포켓몬도 성장합니다. 감사드립니다." + }, + "defeat": { + "1": "더욱 엘레강트하고 엑셀런트하게 승리를 쟁취하고 싶거든." + } + }, + "diantha": { + "encounter": { + "1": "미래를 향한 희망으로 빛나는 당신과, 당신의 포켓몬을 상대로 승부하는 것…\n$솔직히, 매일매일 새로운 날을 위해 필요한 에너지가 채워지는 것 같아요! 정말로요!" + }, + "victory": { + "1": "고귀한 영혼을 지닌 포켓몬과 트레이너의 모습에 격하게 마음이 흔들려서…" + }, + "defeat": { + "1": "정말, 환상적이야! 어떻게 생각하시나요? 저의 포켓몬들, 꽤 멋있었죠?" + } + }, + "wikstrom": { + "encounter": { + "1": "잘 왔네, 젊은 도전자여! 이 몸은 사천왕 중 한 명인 강철의 남자 간피다! \n$자 그럼 간다, 간다! 간닷!" + }, + "victory": { + "1": "정말 영광이군! 자네의 포켓몬과 서로 신뢰하는 힘, 날 능가하는군!!" + }, + "defeat": { + "1": "이게 무슨 마법이지? 내 마음의 떨림이 멈추질 않는군! \n$가치 있는 상대를 이기는 것은 영혼에 날개를 달아주는 것과 같지--그런 내가 비상하는 것일까!" + } + }, + "acerola": { + "encounter": { + "1": "포켓몬 배틀은 언제나 재미있지! 자, 내가 상대해줄게!" + }, + "victory": { + "1": "아세로라… 입이 딱 벌어졌어! 어떻게 해낸 거야?!" + }, + "defeat": { + "1": "후아~! 놀라운 승리네!" + } + }, + "larry_elite": { + "encounter": { + "1": "…안녕하십니까, 청목입니다.\n$귀찮게도 저는 사천왕도 겸임하고 있습니다." + }, + "victory": { + "1": "날고 있는 새포켓몬도 떨어뜨릴 기세로군요." + }, + "defeat": { + "1": "치프와 만나기로 한 시각이군요." + } + }, + "lance": { + "encounter": { + "1": "널 기다리고 있었다. 그 실력을 시험해보겠어.", + "2": "여기까지 올 수 있을거라고 생각했다. 슬슬 시작해볼까." + }, + "victory": { + "1": "날 따라잡았군. 훌륭해!", + "2": "다른 트레이너가 날 이길 거라곤 생각 못했는데… 놀랍군." + }, + "defeat": { + "1": "근소하군. 다시 해볼까?", + "2": "네가 약해서가 아니다. 신경쓰지 말도록." + } + }, + "karen": { + "encounter": { + "1": "난 카렌! 내 악 타입 포켓몬과의 승부를 원하니?", + "2": "난 네가 이전에 만났던 트레이너들과는 달라.", + "3": "강한 포켓몬, 약한 포켓몬, 그런 건 사람이 멋대로 정하는 것." + }, + "victory": { + "1": "좋아하는 마음이 전해진다면 포켓몬도 답할거야. 그렇게 강해지는 거지", + "2": "난 내가 선택한 길을 걸어갈거야.", + "3": "챔피언이 너를 기다리고 있어." + }, + "defeat": { + "1": "정말 강한 트레이너라면 좋아하는 포켓몬으로 이길 수 있도록 열심히 해야 해.", + "2": "뭐, 비교적 재밌었어.", + "3": "언제라도 다시 찾아와, 상대해줄게." + } + }, + "milo": { + "encounter": { + "1": "그렇다는 건 당신이 포켓몬을 아주 깊게 이해하고 있다는 뜻이겠죠? \n$이거 만만치 않은 승부가 되겠네요! \n$저도 다이맥스를 사용해야겠어요!" + }, + "victory": { + "1": "풀의 힘이 모두 시들어버리다니… 당신은 굉장한 도전자시군요!" + }, + "defeat": { + "1": "충격과 공포를 전해드리겠습니다." + } + }, + "lucian": { + "encounter": { + "1": "잠깐, 기다려주세요. 제가 읽던 책이 거의 클라이맥스에 도달했거든요…\n$주인공이 성스러운 검을 얻었고 마지막 시련을 앞두고 있는데… 아, 신경 쓰지 마세요.\n$여기까지 왔으니, 그건 제쳐두고 당신과 싸워야겠습니다.\n$당신이 과연 주인공이 될 그릇인지 확인해 보도록 하죠!" + }, + "victory": { + "1": "그렇군요… 결국 체크메이트인가요." + }, + "defeat": { + "1": "제 평판을 지켜냈네요." + } + }, + "drasna": { + "encounter": { + "1": "당신 강하시죠? 그것도 상당히 꽤 말이에요…\n$어머 기뻐라! 그런 상대와 놀면 포켓몬들도 쑥쑥 크겠어요!" + }, + "victory": { + "1": "어머머 벌써 끝나버리다니… 미안해요, 괜찮으면 또 오세요!" + }, + "defeat": { + "1": "어머, 웬일이야?" + } + }, + "kahili": { + "encounter": { + "1": "자, 여기에서… 승리의 바람이 부는 쪽은 당신과 저 중에 어느 쪽일까요?" + }, + "victory": { + "1": "사천왕으로서 분하지만 당신들의 강함은 진정한 강함이군요." + }, + "defeat": { + "1": "이것이 에이스니까요!" + } + }, + "hassel": { + "encounter": { + "1": "맹렬하게 몰아치는 승부의 숨결을 직접 가르쳐 드리겠습니다!!" + }, + "victory": { + "1": "이번에는 당신이 승리를 쟁취했군요. \n$하지만, 시합의 흐름을 보니… 다음 승부는 또 어떻게 될지 모르겠네요." + }, + "defeat": { + "1": "저에게 더 배우고 싶은 것이 있으시다면 또 승부하도록 하죠." + } + }, + "blue": { + "encounter": { + "1": "여기까지 왔다니, 실력이 꽤 봐줄만 할 것 같은데." + }, + "victory": { + "1": "그 녀석한테만 지는 줄 알았는데… 누구냐고? 하, 하…" + }, + "defeat": { + "1": "봤지? 여기까지 온 내 실력." + } + }, + "piers": { + "encounter": { + "1": "뜨거운 현장을 즐길 준비는 됐겠지! 스파이크 마을, it's time to rock!" + }, + "victory": { + "1": "나도 내 멤버들도 최선을 다했어. 다음에 또 배틀하자고…" + }, + "defeat": { + "1": "소리를 지르느라 목이 가버렸군… 그렇지만 박진감 넘치는 배틀이었다!" + } + }, + "red": { + "encounter": { + "1": "…!" + }, + "victory": { + "1": "…?" + }, + "defeat": { + "1": "…!" + } + }, + "jasmine": { + "encounter": { + "1": "와… 당신의 포켓몬은 인상적이네요. 재미있을 것 같아요." + }, + "victory": { + "1": "당신은 정말 강하네요. 저도 더 열심히 노력해야겠어요." + }, + "defeat": { + "1": "이길 줄은 몰랐어요." + } + }, + "lance_champion": { + "encounter": { + "1": "여전히 난 챔피언이다. 더이상 주저할 게 없군." + }, + "victory": { + "1": "새로운 챔피언의 등장이군." + }, + "defeat": { + "1": "성공적으로 챔피언 자리를 지켜냈다." + } + }, + "steven": { + "encounter": { + "1": "넌… 포켓몬과 함께 모험을 하면서 무엇을 봤지? \n$많은 트레이너와 만나면서 무엇을 느꼈지? \n$풍요로운 이 지역을 돌아다니면서, 네 안에서 눈뜨기 시작한 무언가… \n$그 모든 것을 나에게 쏟아부었으면 좋겠어. \n$나와 내 포켓몬들도 전력을 다해 상대해줄 테니까!" + }, + "victory": { + "1": "챔피언인 내가 질 줄이야…" + }, + "defeat": { + "1": "덕분에 즐거웠어! 고마워!" + } + }, + "cynthia": { + "encounter": { + "1": "나, 난천은, 네 도전을 받아들일게! 온 힘을 다해 너와 시합하겠어!" + }, + "victory": { + "1": "포켓몬 배틀보다 재밌는 것은 없지만, 언젠간 끝나기 마련이니…" + }, + "defeat": { + "1": "비록 졌어도, 포켓몬에 대한 사랑은 잃지 않도록 해." + } + }, + "iris": { + "encounter": { + "1": "나는 말이지, 강한 트레이너와의 진지한 승부를 즐겨!\n$왜냐면 그렇잖아! 이곳에 오는 건 마음 깊이 승리를 추구하는 트레이너. \n#함께 싸우는 건 수많은 승부를 헤쳐온 포켓몬.\n$그런 상대와 겨룰 수 있다면 나도! 내 포켓몬도!\n$더욱더 강해지고 서로 알 수 있으니까! 으응! 그럼 간다! \n$포켓몬리그 챔피언 아이리스! 당신을 이기겠습니다!!" + }, + "victory": { + "1": "후와아아아… 힘을 모두 발휘했는데도 우리가 졌네." + }, + "defeat": { + "1": "우와! 이겼다!" + } + }, + "hau": { + "encounter": { + "1": "트레이너가 따뜻한 지역 출신인지 추운 지역 출신인지에 따라 배틀 스타일이 달라지는지 궁금해졌어.\n$그럼 테스트 해볼게~!" + }, + "victory": { + "1": "멋진데~! 이제 너의 스타일을 조금 더 잘 알게된 것 같아!" + }, + "defeat": { + "1": "이런, 그건 그냥 승부였는데~!" + } + }, + "geeta": { + "encounter": { + "1": "그 도전장, 한 번 더 승낙하도록 하죠. \n$자… 훈련의 결실을 보여주세요." + }, + "victory": { + "1": "당신이 이룰 업적에 대한 소식들, 기다리고 있겠습니다!" + }, + "defeat": { + "1": "무슨 문제라도 있나요? 이게 전부라니, 그럴리 없잖아요?" + } + }, + "nemona": { + "encounter": { + "1": "만세! 나 너무 기대돼! 이제 전력으로 승부하는거야~!" + }, + "victory": { + "1": "우와, 조금 문제 있지만, 그래도 너무 재밌었어! 다음에는 지지 않을거야!" + }, + "defeat": { + "1": "우와, 너무 멋진 승부였어! 정말로 강하네." + } + }, + "leon": { + "encounter": { + "1": "레츠, 챔피언 타임!!!" + }, + "victory": { + "1": "챔피언 타임은 끝났어… \n$하지만 정말 멋진 시간이었지! \n$최고의 시합을 만들어줘서 고맙다!" + }, + "defeat": { + "1": "최고의 챔피언 타임이었어, 정말로!" + } + }, + "whitney": { + "encounter": { + "1": "있지! 포켓몬들 말이야, 정말 너무 귀엽지?" + }, + "victory": { + "1": "흑! 으아앙! 너무해!" + }, + "defeat": { + "1": "이걸로 끝!" + } + }, + "chuck": { + "encounter": { + "1": "하! 나에게 도전하겠다고? 용감한 거냐, 아니면 그냥 무모한 거냐?" + }, + "victory": { + "1": "자네 강하군! 나를 제자로 삼아주겠나?" + }, + "defeat": { + "1": "자. 내가 자네보다 얼마나 더 강력한지 깨달았겠지?" + } + }, + "katy": { + "encounter": { + "1": "쓰러지고 싶지 않다면 방심하지 말고 열심히 해 봐~" + }, + "victory": { + "1": "내 포켓몬들 모두 지쳐서 헤벌레~ 해졌어~" + }, + "defeat": { + "1": "비비용~ 많~이 먹으렴~" + } + }, + "pryce": { + "encounter": { + "1": "젊음만으로는 승리를 보장할 수 없다! 중요한 것은 경험이다." + }, + "victory": { + "1": "특출하군! 완벽해. 지금 이 느낌을 잊지 말도록." + }, + "defeat": { + "1": "내가 예상했던 그대로군." + } + }, + "clair": { + "encounter": { + "1": "내가 누군지 알지? 그런데도 감히 내게 도전해?" + }, + "victory": { + "1": "네 실력이 어디까지 올라갈 수 있는지 궁금하네. 아주 흥미진진하겠어." + }, + "defeat": { + "1": "끝이다." + } + }, + "maylene": { + "encounter": { + "1": "지금 당신에게 도전하러 왔어요.\n$전력을 다할 테니 각오하세요!" + }, + "victory": { + "1": "나의 패배입니다…" + }, + "defeat": { + "1": "멋진 승부였습니다." + } + }, + "fantina": { + "encounter": { + "1": "당신도 도전해 보세요. 전 당신을 이기겠어요.\n$그것이 체육관 관장!" + }, + "victory": { + "1": "당신 최고로 강해요. 나 진 것 알아요." + }, + "defeat": { + "1": "너무, 너무 행복해요!" + } + }, + "byron": { + "encounter": { + "1": "젊은 트레이너여! 자네는 내 아들 강석처럼 젊군.\n$젊은 트레이너가 많아질수록, 포켓몬의 미래도 밝지!\n$그러니, 젊은이들이 넘어야할 벽으로서 상대해주겠다!" + }, + "victory": { + "1": "흠! 내 견고한 포켓몬이--져버렸군!" + }, + "defeat": { + "1": "으하하핫! 내 견고한 포켓몬은 어땠나?!" + } + }, + "olympia": { + "encounter": { + "1": "이 의식은 앞으로의 길을 정하는 것입니다. 포켓몬 승부를 시작해볼까요!" + }, + "victory": { + "1": "당신이라면 별이라도 움직여서 가야 할 길을 만들어 낼 것 같습니다." + }, + "defeat": { + "1": "우리의 길은 이제 분명해졌습니다." + } + }, + "volkner": { + "encounter": { + "1": "여기까지 왔으니, 넌 꽤 강하겠군…\n$네가 내게 포켓몬 승부의 즐거움을 상기시켜 줄 트레이너이길 바란다!" + }, + "victory": { + "1": "너 나를 이겼군…\n$네 열정과 포켓몬이 그런 너를 위해 싸워준 고귀한 방식…\n$심지어 스릴까지 넘쳤다. 아주 좋은 승부였어." + }, + "defeat": { + "1": "전혀 충격적이지 않았다…\n$이런 건 원하지 않았어!" + } + }, + "burgh": { + "encounter": { + "1": "으-음… 이번 배틀에서 이기면, 예전과는 다른 그림을 그릴 수 있을 것 같아. \n$맞아! 난 승리 뮤즈의 목소리를 선명하게 들을 수 있거든. 그럼 승부다!", + "2": "물론, 난 내 포켓몬을 자랑스럽게 생각하거든! \n$자 그럼… 바로 승부할까!" + }, + "victory": { + "1": "벌써 끝이라고? 뮤즈가 나를 버리고 떠나버렸나?", + "2": "아우… 져버렸네! 너 굉장히 강하잖아!" + }, + "defeat": { + "1": "우와… 왠지 뭔가 아름답네, 그치…", + "2": "가끔 사람들이 못난 승리라고 말하는 걸 듣곤 해. \n$그치만 난 최선을 다했다면, 어떤 승리든 아름답다고 생각하거든." + } + }, + "elesa": { + "encounter": { + "1": "컴플리트…! 확신이 들때면, 내 몸을 통하는 전기가 짜릿짜릿하게 느껴져! \n$그 감각을 느끼고 싶으니까…, 다음은 사랑스러운 포켓몬들로 너를 어질어질하게 할게!" + }, + "victory": { + "1": "어질어질하게 만들 셈이였는데, 너한테는 짜릿짜릿하게 당해버렸네." + }, + "defeat": { + "1": "왠지 부족한 기분이야… 다음에는 최선을 다할 수 있지?" + } + }, + "skyla": { + "encounter": { + "1": "드디어 대결의 시간이야! 누가 정상에 오를지 결정짓는 포켓몬 배틀, 그치? \n$난 정상에 있는 게 좋아! 높은 곳에서는 항상 멀리 볼 수 있으니까! \n$그럼, 다음은 나랑 더욱 즐거운 것을 할까?" + }, + "victory": { + "1": "배틀에서 네 상대가 되는 거, 뭔가 새로운 모티브가 되네. 고마워!" + }, + "defeat": { + "1": "이기든 지든, 항상 무언가를 얻게 돼, 그치?" + } + }, + "brycen": { + "encounter": { + "1": "다른사람이나 포켓몬과 함께 있을 때도 힘이 생긴다. \n$그 도움을 받는 것이 너를 강하게 만들었겠지. 그 힘을 보이거라!" + }, + "victory": { + "1": "너와 포켓몬과! 멋진 콤비네이션! 아름다운 우정!" + }, + "defeat": { + "1": "극한에서 시험받고 단련하도록!" + } + }, + "drayden": { + "encounter": { + "1": "지금 찾는 것은 밝은 미래를 보여줄 젋은 트레이너의 존재. \n$승부에서 모든 걸 보이도록. 네 기술, 내 경험, 그리고 포켓몬을 키워온 사랑도 함께!" + }, + "victory": { + "1": "패배하여 끓어오르는 이 마음… 뭐라고 표현해야 좋을까." + }, + "defeat": { + "1": "실망스럽군! 난 자네의 능력이 그보다 더 크다는 걸 알고있네!" + } + }, + "grant": { + "encounter": { + "1": "제가 바라는 것은 단 하나뿐입니다. \n$서로가 서로를 뛰어넘어, 더 높은 벽에 도달하는 것입니다." + }, + "victory": { + "1": "내 앞에 솟아 있는 높은 벽… 그건 바로 당신입니다." + }, + "defeat": { + "1": "인생에서 중요한 교훈은 간단합니다.\n$포기하지 않는 것.\n$이것이 전부입니다." + } + }, + "korrina": { + "encounter": { + "1": "코르니 납시오!" + }, + "victory": { + "1": "네 존재가 너의 포켓몬을 점점 진화시키고 있어!" + }, + "defeat": { + "1": "정말 멋진 배틀이었어!" + } + }, + "clemont": { + "encounter": { + "1": "아앗! 잘 부탁드립니다!" + }, + "victory": { + "1": "당신들의 승부를 향한 마음에 자극을 받았습니다!" + }, + "defeat": { + "1": "저의 슈퍼트레이닝 발명품이 효과가 있는 것 같군요!" + } + }, + "valerie": { + "encounter": { + "1": "어라,트레이너님… 슝슝 워프해서… 이렇게 만나서 반갑네. \n$그리고 내가 보기엔 당신은 노력했기에, 이 승부에 참가할 수 있게 된 것 같아. \n$찾기 힘든 요정 같은 페어리 타입, 우리 포켓몬들 사뿐하고 화사하지만 강하다구." + }, + "victory": { + "1": "난 당신이 내일을 생각하며 웃을 수 있는 것들을 찾길 바라고 있을게…" + }, + "defeat": { + "1": "앗 이런, 가엾어라…" + } + }, + "wulfric": { + "encounter": { + "1": "그거 알아? 그거… 전투와 유대감을 통해 배운다거나 하는… 거 뭐더라, 음.\n$여튼 말이지, 난 그냥 재밌어서 하는 거야. \n$내 자랑은 별로 듣고 싶지 않으려나? 자, 포켓몬을 꺼내자!" + }, + "victory": { + "1": "그거야, 바로 그거! 멋지다고. 단단한 얼음을 깨부쉈구나!" + }, + "defeat": { + "1": "나와 싸우면 그런 일이 벌어진다니까!" + } + }, + "kabu": { + "encounter": { + "1": "모든 트레이너와 포켓몬은 이기기 위해 훈련을 하고 있다. \n$하지만 싸우는 상대 역시 그만큼 노력하고 있지. \n$ 결국 승부는 실전에서, 얼마만큼 제 실력을 발휘할 수 있느냐에 달렸다." + }, + "victory": { + "1": "오늘 너와 싸울 수 있어서 참 기뻤다!" + }, + "defeat": { + "1": "내 성장을 체감하게 되는군!" + } + }, + "bea": { + "encounter": { + "1": "당신은 과연, 어떤 공격에도 흔들리지 않는 마음을 가졌을까요? \n$제가 시험해보겠습니다, 준비는 되셨습니까?" + }, + "victory": { + "1": "당신이 데리고 있는 포켓몬에게서 무예의 혼을 느꼈습니다." + }, + "defeat": { + "1": "누구나 바랄 법한 최고의 경기였습니다." + } + }, + "opal": { + "encounter": { + "1": "그럼 너의 파트너 포켓몬 다루는 실력을 내게 보여주거라!" + }, + "victory": { + "1": "핑크는 부족하지만, 너희는 좋은 트레이너와 포켓몬이구나." + }, + "defeat": { + "1": "내가 보기엔, 불합격이란다." + } + }, + "bede": { + "encounter": { + "1": "의심할 여지 없이 증명하겠습니다. 당신이 한심한지, 그리고 내가 얼마나 강한지!" + }, + "victory": { + "1": "잘 봤습니다… 뭐, 꽤 괜찮네요. 전 그렇게 열심히 하지도 않았으니까요." + }, + "defeat": { + "1": "이런 결과, 나쁘지 않군요." + } + }, + "gordie": { + "encounter": { + "1": "그럼, 빨리 끝내도록 하죠." + }, + "victory": { + "1": "구멍이 있다면 들어가고 싶군요… 아니지, 여기선 빠지고 싶다고 해야하나?" + }, + "defeat": { + "1": "이런 배틀이라면, 매번 승리가 따라올 것 같네요!" + } + }, + "marnie": { + "encounter": { + "1": "사실은, 말했던 일들이 해결 되고 나면… 결국은 나 자신이 챔피언이 되고싶다는 걸 알았으니까! \n$그러니까 너의 팀을 기분 좋게 잠들게 해주겠어!" + }, + "victory": { + "1": "응, 그래서 내가 졌구나… 그치만 너와 네 포켓몬의 좋은 점을 많이 볼 수 있었어!" + }, + "defeat": { + "1": "우리의 배틀 방식을 즐겼길 바라." + } + }, + "raihan": { + "encounter": { + "1": "챔피언도 쓰러뜨리고, 토너먼트에서도 우승해서, 위대한 나 금랑님이 얼마나 강한지 세계에 증명 해보실까!" + }, + "victory": { + "1": "역시 난 진 다음에도 멋있네! \n$조금 분하지만…. \n$기념으로 셀카라도 찍어둘까…!" + }, + "defeat": { + "1": "자, 이 순간을 기억하기 위한 셀카를 찍자고." + } + }, + "brassius": { + "encounter": { + "1": "준비는 됐겠지!? 그럼, 우리 둘의 예술적인 합작품을 한번 만들어 보도록 할까!" + }, + "victory": { + "1": "아… 아방가르드!!" + }, + "defeat": { + "1": "바로 신작을 만들러 가야 하니 이만 실례하겠다!" + } + }, + "iono": { + "encounter": { + "1": "자~ 오늘의 각오는~ 모야모야~?\n$...\n$그럼, 이제 시작해 볼까! \n$도전자님의 실력은 과연 과연~!?" + }, + "victory": { + "1": "너의 반짝임은 1000만볼트!" + }, + "defeat": { + "1": "당신의 눈길을 일렉트릭네트로 뾰로롱!" + } + }, + "larry": { + "encounter": { + "1": "그렇습니다. 심플한 것이 가장 강한 것입니다!" + }, + "victory": { + "1": "허, 이걸로 한 방 먹은 게 되었군요." + }, + "defeat": { + "1": "오늘은 저는 이만 실례하겠습니다." + } + }, + "ryme": { + "encounter": { + "1": "나의 영혼 흔들어 봐 Come On!" + }, + "victory": { + "1": "너의 Cool한 Youth 나의 Soul이 Move!" + }, + "defeat": { + "1": "Bye Bye Baby~!" + } + }, + "grusha": { + "encounter": { + "1": "내가 너를 철저하게 얼려 버리면 고민할 것도 없겠지!" + }, + "victory": { + "1": "너의 그 열기… 싫지 않아." + }, + "defeat": { + "1": "너에겐 아직 열기가 부족하구나." + } + }, + "marnie_elite": { + "encounter": { + "1": "여기까지 왔구나? 포켓몬 다루는 실력 좀 볼까!", + "2": "최선을 다할 거니까, 쉽게 넘어갈 수 있을 거라고 생각하지 마!" + }, + "victory": { + "1": "내가 지다니 믿을 수 없어… 그렇지만 네가 바란 것도 이런 승리였겠지. 잘했어!", + "2": "난 여전히 배울 게 많은 것 같아. 그래도, 멋진 승부였어!" + }, + "defeat": { + "1": "잘 싸웠지만, 내가 위야! 다음에는 더 잘해봐!", + "2": "트레이닝이 제값을 하는 것 같네. 승부에 응해줘서 고마워!" + } + }, + "nessa_elite": { + "encounter": { + "1": "조류가 오늘은 내 편인 것 같네. 휩쓸릴 준비 됐어?", + "2": "이번 승부로 파도를 일으키는 거야! 준비는 됐겠지!" + }, + "victory": { + "1": "너 그런 바다를 완벽하게 버텨냈네… 잘했어!", + "2": "내 쪽의 해류가 너와 맞지 않았던 거 같네. 잘했어!" + }, + "defeat": { + "1": "물은 항상 자기 길을 찾아 흐르지. 상쾌한 승부였어!", + "2": "잘 싸웠지만, 바다의 힘은 막을 수 없다고!" + } + }, + "bea_elite": { + "encounter": { + "1": "준비는 되셨겠죠! 제 투지가 불타고 있습니다!", + "2": "가차 없는 제 속도를 따라잡으실 수 있는지 지켜보겠습니다!" + }, + "victory": { + "1": "당신의 힘… 인상적이군요. 정말로 이기실 만합니다.", + "2": "이런 강렬함은 처음 느껴봅니다. 대단하군요!" + }, + "defeat": { + "1": "치열했던 훈련으로 또 한번 승리를 거두게 뒀군요! 고생하셨습니다!", + "2": "당신도 힘냈겠지만, 제가 더 열심히 훈련했거든요. 좋은 배틀이었습니다!" + } + }, + "allister_elite": { + "encounter": { + "1": "그림자가 떨어지네… 두려움에 맞설 준비는 됐어?", + "2": "내가 다루는 어둠을 감당할 수 있는지 지켜볼게." + }, + "victory": { + "1": "너 그림자를 쫓아내 버렸구나… 일단은. 잘했어.", + "2": "네 빛이 어둠을 관통해 버렸네. 훌륭해." + }, + "defeat": { + "1": "그림자가 말했어… 네 힘은 아직 부족한 것 같아.", + "2": "어둠의 승리… 다음번에는 빛을 보게 될 거야." + } + }, + "raihan_elite": { + "encounter": { + "1": "폭풍이 몰아치는군! 네가 이 배틀에서도 견뎌낼 수 있는지 지켜보겠어!", + "2": "폭풍의 눈과 마주칠 준비는 됐겠지!" + }, + "victory": { + "1": "폭풍을 이겨내다니… 정말 놀라운걸!", + "2": "너 바람에 완벽하게 올라탔구나… 대단한 승부였어!" + }, + "defeat": { + "1": "폭풍을 견디고, 또 다른 승리도 잡아버렸네! 좋은 승부였어!", + "2": "넌 내 폭풍을 잡아냈잖아! 다음엔 더 잘해봐!" + } + }, + "alder": { + "encounter": { + "1": "하나지방에서 가장 강한 트레이너를 상대할 준비는 됐나?" + }, + "victory": { + "1": "장하구나! 실로 견줄 자가 천하에 없도다!" + }, + "defeat": { + "1": "나의 마음에 상쾌한 바람이 지나갔다...\n$정말 대단한 노력이다!" + } + }, + "kieran": { + "encounter": { + "1": "난 노력을 통해 강해지고 또 강해지지!\n$난 지지 않아." + }, + "victory": { + "1": "믿을 수 없어...\n$정말 재밌고 가슴 뛰는 배틀이었어!" + }, + "defeat": { + "1": "세상에 마상에! 정말 멋진 배틀이었어!\n$네가 더 열심히 훈련할 시간이야." + } + }, + "rival": { + "encounter": { + "1": "@c{smile}오, 찾았다! 떠나려는 건 알고 있었지만\n인사정도는 해줄 줄 알았는데…\n$@c{smile_eclosed}그러니까 정말로 꿈을 좇겠다는 거지?\n듣고도 못 믿었다니까.\n$@c{serious_smile_fists}여기까지 온 김에, 배틀은 어때?\n준비가 됐나 보자구.\n$@c{serious_mopen_fists}망설이지 말고,\n너의 진면목을 보여봐!" + }, + "victory": { + "1": "@c{shock}와… 정말 깔끔하게 당했네.\n초보자 맞아?\n$@c{smile}운이 따른 건지도 모르겠지만…\n그래도 정말 꿈을 이룰 지도.\n$그나저나, 박사님께서 이걸 전해달라고 하시더라.\n좋아 보이던데.\n$@c{serious_smile_fists}아무튼, 힘 내는거야!" + } + }, + "rival_female": { + "encounter": { + "1": "@c{smile_wave}여깄구나! 찾고 있었어!\n@c{angry_mopen}절친한테 작별인사도 안 하는거야?\n$@c{smile_ehalf}꿈을 향해 떠나는거구나. 그렇지?\n이런 날이 오긴 하네…\n$@c{smile}아무튼, 날 까먹고 가버린 건 용서해주겠어.\n@c{smile_wave_wink}배틀을 해준다면 말야!\n$@c{angry_mopen}최선을 다 해 봐.\n모험을 시작과 동시에 끝내고 싶지 않다면!" + }, + "victory": { + "1": "@c{shock}왜 벌써 이렇게 센 건데?!@d{96}\n@c{angry}아니면 뭔가 속임수, 그런 거?\n$@c{smile_wave_wink}농담, 농담!@d{64} @c{smile_eclosed}내가 진 거 맞아…\n너 정말 앞으로도 잘 하겠는데.\n$@c{smile}아 그래, 박사님께서 전해달라던 물건.\n도움이 되면 좋겠어!\n$@c{smile_wave}항상 최선을 다 하라구! 믿고 있을게!" + } + }, + "rival_2": { + "encounter": { + "1": "@c{smile}어라, 너 여깄었구나?\n@c{smile_eclosed}아직도 전승 중이라, 이거지…?\n$@c{serious_mopen_fists}널 쫓아서 온 것 같아 보이겠지만, 오해야.\n$@c{serious_smile_fists}그래도 솔직히 그 때부터 쭉 재대결이 간절했어.\n$그 동안의 훈련도 있겠다 마침 좋은 기회같지?\n$@c{serious_mopen_fists}자, 전처럼!\n배틀이야!" + }, + "victory": { + "1": "@c{neutral_eclosed}이런. 자신감이 과했나봐.\n$@c{smile}그래, 또 지고 말았네.\n@c{serious_mopen_fists}좀 더 열심히 훈련을 해야겠어!\n\n$@c{smile}너한테 도움이 필요할 것 같지는 않지만, 이거.\n남는 게 있어서 말이야.\n$@c{serious_smile_fists}물론 이번이 마지막이야, 알겠지?\n공평하게 하지 않으면 그게 내 핑계거리가 되고 말거야.\n$@c{smile}이제 갈게. 앞으로도 조심하고, 이벤트도 즐겁게 보내!" + } + }, + "rival_2_female": { + "encounter": { + "1": "@c{smile_wave}우연이네, 이런 곳에서 만나고.\n아직 연전연승이구나? @c{angry_mopen}나쁘지 않아!\n$@c{angry_mopen}무슨 생각하고있는지 알겠어, 하지만 아냐.\n@c{smile_eclosed}우연히 근처에 있었을 뿐이라구.\n$@c{smile_ehalf}그래도 마침, 가끔은 지는것도 괜찮다고 알려주고 싶었는데.\n$@c{smile}우린 실수를 통해서도 성장할 수 있잖아.\n때로는 성공을 반복할 때보다도 더 많이 말야.\n$@c{angry_mopen}어쨌든간에, 나도 이런 때를 위해 훈련해왔으니까,\n너도 최선을 다 하는게 좋을 거야!" + }, + "victory": { + "1": "@c{neutral}이… 번에도 져버릴 줄이야…\n$@c{smile}으, 그래. 더 열심히 훈련하면 되겠지!\n$@c{smile_wave}이것도 하나 더 챙겨왔으니 받아!\n@c{smile_wave_wink}감사 인사는 됐다구~.\n$@c{angry_mopen}하지만, 마지막이야!\n또 이렇게 공짜로 나눠주진 않을 테니까!\n$@c{smile_wave}그럼! 이벤트 잘 즐기고!" + }, + "defeat": { + "1": "가끔은 지는 것도 괜찮아…" + } + }, + "rival_3": { + "encounter": { + "1": "@c{smile}이게 누구야! 오랜만이야.\n@c{neutral}역시나… 쭉 이기고 있었구나?\n$@c{neutral_eclosed}상황이 좀… 그렇더라. \n혼자 마을로 돌아가봤자 너 없인 예전같아질 수 없겠지.\n$@c{serious}이기적인 이야기란건 알지만 말해야겠어.\n@c{neutral_eclosed}너 지금 좀 아닌 것 같아.\n$@c{serious}계속 이기기만 하겠다는 건 너무 비현실적이야.\n사람은 원래 꺾여가며 성장하는 거라고.\n$@c{neutral_eclosed}물론 지금까지는 잘 해왔다고 생각하겠지만,\n갈 길이 멀지. @c{neutral}대비는 되어 있어?\n$@c{serious_mopen_fists}그렇다면, 내게 증명해 줘." + }, + "victory": { + "1": "@c{angry_mhalf}말도 안 돼… 한시도 쉬지 않고 훈련했는데…\n어째서 전혀 닿을 수 없는거야?" + } + }, + "rival_3_female": { + "encounter": { + "1": "@c{smile_wave}오랜만이야! 아직도 안 졌구나.\n@c{angry}거슬리게 말야. @c{smile_wave_wink}농담이야!\n$@c{smile_ehalf}하지만 진짜, 고향이 그립진 않아? 집이나… 나는?\n나… 나는, 네가 정말 그리웠어.\n$@c{smile_eclosed}난 너의 꿈과 모든 것을 응원하지만,\n넌 언젠가 패배를 겪게 될 거야.\n$@c{smile}그 땐 언제나처럼 내가 곁에 있어줄게.\n@c{angry_mopen}내가 얼마나 강해졌는지도, 지금 보여 줄 테니까!" + }, + "victory": { + "1": "@c{shock}이렇게까지 했는데도… 모자랐던 거야…?\n이러면 정말로 너는 이제 영영…" + }, + "defeat": { + "1": "최선을 다 했지.\n집에 갈 시간이야." + } + }, + "rival_4": { + "encounter": { + "1": "@c{neutral}안녕.\n$잡담은 넘어가자.\n@c{neutral_eclosed}너에게 이기기 위해 찾아왔어. 간단하지.\n$@c{serious_mhalf_fists}이제 잠재력을 끌어내는 법은 확실히 알겠어.\n$@c{smile}잠이나 사회적인 활동들.\n줄일 수 있는 불필요한 시간이 아주 많더라.\n$@c{serious_mopen_fists}오직 승리 뿐이야.\n이제 아무것도 중요하지 않아.\n$@c{neutral_eclosed}나도 이제 더 이상은 지지 않게 됐어.\n@c{smile_eclosed}네 그 철학이 완전히 틀린 건 아니었나봐.\n$@c{angry_mhalf}패배는 약자에게 주어지는 것이고, 난 더 이상 약하지 않아.\n$@c{serious_mopen_fists}준비해." + }, + "victory": { + "1": "@c{neutral}너…@d{64} 너 대체 뭐야?" + } + }, + "rival_4_female": { + "encounter": { + "1": "@c{neutral}나야! 날 잊어버리고 있던 건… 아니지?\n$@c{smile}네 업적에 자랑스러워 할 때가 됐어. 축하해!\n하지만 네 여행도 여기까지야.\n$@c{smile_eclosed}너는 나도 모르던 내 안의 무언가를 일깨웠어.\n이제 훈련 말고는 아무것도 하지 않아.\n$@c{smile_ehalf}먹지도 자지도 않고, 그저 하루종일.\n더 강해지고 있어.\n$@c{neutral}사실, 나… 이제 내가 뭔지도 잘 모르겠어.\n$그렇지만 기량만은, 정점에 다다랐지.\n아무도 내게 이길 수 없을거야.\n$그거 알아? 이게 전부 네 덕이야.\n@c{smile_ehalf}감사해야할지 증오해야할지 모르겠네.\n$@c{angry_mopen}준비해." + }, + "victory": { + "1": "@c{neutral}너…@d{64} 너 대체 뭐야?" + }, + "defeat": { + "1": "$@c{smile}네가 키운 상대야. 자랑스럽지?" + } + }, + "rival_5": { + "encounter": { + "1": "@c{neutral}…" + }, + "victory": { + "1": "@c{neutral}…" + } + }, + "rival_5_female": { + "encounter": { + "1": "@c{neutral}…" + }, + "victory": { + "1": "@c{neutral}…" + }, + "defeat": { + "1": "$@c{smile_ehalf}…" + } + }, + "rival_6": { + "encounter": { + "1": "@c{smile_eclosed}다시 만났구나.\n$@c{neutral}모든 걸 되짚어 봤어.\n이 기이함에도 이유가 있더라.\n$@c{neutral_eclosed}널 이기고자 하는 욕구, 아니면 네 꿈…\n이건 그저 더 큰 무언가의 일부일 뿐이었어.\n$@c{serious}개인의 문제가 아니라 세계 전체가 엮인 일이었고…\n@c{serious_mhalf_fists}난 널 한계까지 밀어붙이기 위한 도구였던 거지.\n$@c{neutral_eclosed}내가 잘 쓰였는진 모르겠지만 어쨌든 최선을 다 했고.\n$@c{neutral}끝끝내 도착한 이곳은 끔찍하지만…\n언젠가 와 본 것 같아.\n$@c{serious_mhalf_fists}너도 그렇게 느끼지?\n$@c{serious}…그리고 무언가가 이야기하고 있어.\n오랫동안 세상에 알려져온 무언가가.\n$우리가 함께했던 소중한 시간들은 이제 그저 아득해.\n$@c{neutral_eclosed}실제로 일어난 일이긴 할까?\n$@c{serious_mopen_fists}너는 계속 나아가야 해. 그렇지 않으면 끝나지 않아.\n오직 너만이 할 수 있어.\n$@c{serious_smile_fists}잘 모르겠지만, 하나만은 확실해.\n$@c{serious_mopen_fists}여기서 날 쓰러뜨리지 못한다면, 너에게 기회는 없을거란걸." + }, + "victory": { + "1": "@c{smile_eclosed}내 역할은 여기까진 것 같아.\n$하나만 약속해 줘.\n@c{smile}세상을 원래대로 되돌리고 나면, 집으로 돌아오는거야." + } + }, + "rival_6_female": { + "encounter": { + "1": "@c{smile_ehalf}또 이렇게 만났네.\n$@c{smile_eclosed}나 머릿속이 빙글빙글 도는 것 같아…\n$@c{smile_ehalf}모든 것이 이상하게 보이는 이유.\n분명 뭔가가 있어…\n$@c{smile}너는 너의 꿈이 있고,\n나는 나의 야망이 있지…\n$이 모든것, 우리가 하고 있는 모든 일들이\n더 큰 무언가를 위한 것임을 느낄 수밖에 없어.\n$@c{smile_eclosed}나는 아마 너를…\n한계까지 몰아붙여야 하는 거야.\n$@c{smile_ehalf}잘 해왔는지는 모르겠는데, 최선은 다 했어.\n$이 이상하고 무서운 곳…\n모든게 선명하게 보이고…\n$이건… 오래전부터 세상에 알려져온 전부.\n$@c{smile_eclosed}우리가 함께해온 추억들이, 이제는 거의 떠오르지 않아.\n$@c{smile_ehalf}실제로 일어났던 일일까? 너무 멀게만 느껴지는데…\n$@c{angry_mopen}계속 나아가야 해. 안 그러면, 영원히 끝나지 않을 거야. \n오직 너만이 할 수 있어.\n$@c{smile_ehalf}난… 이 모든게 무슨 의미가 있는지는 잘 모르겠지만…\n이거 하나는 느끼고 있어.\n$@c{neutral}여기서 날 쓰러뜨리지 못한다면, 너에게 기회는 없을거란걸." + }, + "victory": { + "1": "@c{smile_ehalf}나… 내 소임을 다 한 기분이야…\n$@c{smile_eclosed}약속해 줘… 세상을 원래대로 되돌리고서… \n집으로… 무사히 돌아오는 거야.\n$@c{smile_ehalf}…고마워." + } + } +} diff --git a/src/locales/ko/dialogue.ts b/src/locales/ko/dialogue.ts deleted file mode 100644 index ce6af0e43e7..00000000000 --- a/src/locales/ko/dialogue.ts +++ /dev/null @@ -1,2915 +0,0 @@ -import { DialogueTranslationEntries, SimpleTranslationEntries } from "#app/interfaces/locales"; - -// Dialogue of the NPCs in the game when the player character is male (or unset) -export const PGMdialogue: DialogueTranslationEntries = { - "youngster": { - "encounter": { - 1: "거기 너! 나와 배틀 어때?", - 2: "넌 새내기 트레이너구나. 맞지?", - 3: "거기 너! 처음보는 얼굴인데? 나랑 배틀하자!", - 4: "방금 배틀에서 져서 새로운 포켓몬을 찾는 중이야.\n잠깐! 넌 약해보이는데? 어서 나와 배틀하자!", - 5: "우리 만난 적이 있었던가? 잘 기억은 안나지만 어쨌든 만나서 반가워!", - 6: "좋아! 시작하자!", - 7: "좋아! 내가 왔다! 내 힘을 보여주지!", - 8: "하하하… 내 포켓몬이 얼마나 멋진지 보여주겠어!", - 9: "인사할 시간도 없어. 준비가 되었다면 이리 와!", - 10: "긴장을 늦추지마. 그렇지 않으면 어린이에게 맞아 울지도 몰라.", - 11: "난 내 포켓몬들을 소중히 키웠어. 내 포켓몬에게 상처를 입히게 놔두지 않겠어!", - 12: "여기까지 잘 왔구나! 하지만 지금부턴 쉽지 않을거야.", - 13: "배틀은 끝나지 않아! 끝없는 배틀의 세계에 온 것을 환영해!" - }, - "victory": { - 1: "우와! 넌 강하구나!", - 2: "하? 난 기회가 없었어.", - 3: "내가 조금 더 큰 다음엔 널 찾아서 때리겠어!", - 4: "으.. 더이상 가지고 있는 포켓몬이 없어.", - 5: "말도 안돼… 안돼! 내가 또 지다니…", - 6: "안돼! 내가 지다니!", - 7: "우와! 정말 깜짝 놀랐어! 넌 정말 강하구나!", - 8: "이럴수가… 내 포켓몬과 난 최강인데… 어떻게…", - 9: "다음엔 지지 않을거야! 다음에 다시 배틀하자!", - 10: "쳇! 내가 어린애인게 보이지 않아?! 그렇게 최선을 다하는건 불공평해!", - 11: "네 포켓몬은 정말 굉장하구나! 나와 교환하자!", - 12: "내가 잠깐 정신이 나갔었나 봐. 내가 무슨 말을 하고 있었지?", - 13: "아하! 거기구나! 좋아! 넌 이미 이 세계에 머무를 곳이 있구나!" - } - }, - "lass": { - "encounter": { - 1: "나랑 배틀하자, 어때?", - 2: "넌 신입 트레이너구나. 나랑 배틀하자!", - 3: "너 거기 있었구나? 나랑 배틀할래?", - 4: "재밌는 포켓몬 배틀하자!", - 5: "내가 포켓몬을 어떻게 다뤄야하는지 보여줄게!", - 6: "진정한 배틀은 진지한 자세부터 시작이야! 준비됐어?", - 7: "젊음이 한순간이듯 배틀에서 네 기회도 단 한번만 주어질거야. 곧 넌 추억속으로 사라질거야.", - 8: "나에겐 살살해도 돼, 알았지? 그래도 난 진지하게 싸울거야!", - 9: "학교는 지겨워. 나는 할 일이 없어. 하암~ 난 그저 시간을 때우기 위해 싸울뿐이야." - }, - "victory": { - 1: "인상적이었어! 난 아직 배울게 많구나.", - 2: "내가 이렇게까지 크게 질 줄은 몰랐어…", - 3: "언젠가 우리가 다시 배틀할 수 있을 날을 기다릴게.", - 4: "놀라울 정도로 엄청 재미있었어! 넌 날 완전히 지치게 만들어버렸네…", - 5: "넌 나에게 진짜 교훈을 주었어! 넌 정말 대단해!", - 6: "세상에, 내가 지다니. 이거 정말 우울하지만… 넌 정말 멋있었어.", - 7: "난 이런 기억따윈 필요없어. 잊어버리겠어…", - 8: "거기 너! 살살하라고 했지! 그래도 넌 진지할때 정말 멋지구나!", - 9: "사실 배틀하는 것이 지루하던 참이야… 뭔가 새로운 것이 없을까?" - } - }, - "breeder": { - "encounter": { - 1: "순종적인 포켓몬, 이기적인 포켓몬… 포켓몬들은 각기 다른 성격을 가지고 있지.", - 2: "내 태도가 그렇게 좋진 않아도, 내 포켓몬들은 잘 키웠어.", - 3: "음, 넌 포켓몬들을 훈육하니? 너무 심하게 하는 것은 좋지 않다고.", - }, - "victory": { - 1: "각 포켓몬의 성격을 이해하고 육성하는 건 중요해.", - 2: "사악한 나와는 달리 좋은 포켓몬들도 있지.", - 3: "과도한 칭찬은 사람과 포켓몬 모두에게 독이 될 수 있어.", - }, - "defeat": { - 1: "배틀에서 지더라도 포켓몬에게 화를 내면 안돼.", - 2: "어때? 꽤 괜찮은 포켓몬이지? 난 무언가 기르는 게 꽤 잘 맞더라고.", - 3: "네가 포켓몬을 얼마나 사랑하는지와 관계없이, 그들이 잘못을 저지르면 바로잡아야 해." - } - }, - "breeder_female": { - "encounter": { - 1: "포켓몬은 절대 널 배신하지 않아. 네가 주는 사랑을 고스란히 되돌려 준다구.", - 2: "좋은 포켓몬을 키우는 팁을 알려줄까?", - 3: "난 아주 특별한 방법으로 아주 특별한 포켓몬들을 키웠지!" - }, - "victory": { - 1: "이런… 이렇게 될 리가 없는데. 내가 블렌딩을 잘못 썼나?", - 2: "내 포켓몬에게 이런 일이… 넌 네 포켓몬에게 뭘 먹이는 거야?", - 3: "내가 지는 건 그저 내가 시간을 때우고 있었다는 걸 알려주는 거지. 내 자존심엔 전혀 상처가 되지 않는다구." - }, - "defeat": { - 1: "이건 내 포켓몬들이 내 사랑을 받아들였다는 걸 입증하지.", - 2: "좋은 포켓몬을 키우는 진짜 비결은 좋은 포켓몬을 잡는 거야.", - 3: "포켓몬의 강함과 약함은 네가 어떻게 키우느냐에 따라 결정되지." - } - }, - "fisherman": { - "encounter": { - 1: "앗! 너 때문에 한 마리 놓쳤잖아! 어떻게 할 거야?", - 2: "저리 가! 네가 포켓몬들을 놀래키고 있잖아!", - 3: "네가 승리를 낚을 수 있을지 한번 보자고!", - }, - "victory": { - 1: "그냥 잊어버려.", - 2: "다음 번엔 내가 승리의 나팔을 울리고 있을거다!", - 3: "이번엔 내가 물살을 과소평가했나보군.", - }, - }, - "fisherman_female": { - "encounter": { - 1: "월척이다!", - 2: "낚시대는 던져졌고, 이젠 성공을 끌어올리는 일만 남았다!", - 3: "파도를 일으킬 준비는 끝났어!" - }, - "victory": { - 1: "더 튼튼한 바늘을 가지고 돌아올테다.", - 2: "다음번엔 꼭 성공을 낚을 거야!", - 3: "다시 돌아올 날을 기다리며 바늘을 다듬고 있을게!" - }, - }, - "swimmer": { - "encounter": { - 1: "뛰어들 시간이다!", - 2: "승리의 파도 속으로!", - 3: "첨벙댈 준비는 끝났어!", - }, - "victory": { - 1: "패배에 젖어버렸어…", - 2: "패배의 파도였군.", - 3: "해변으로 돌아갈 시간이군.", - }, - }, - "backpacker": { - "encounter": { - 1: "게임 시작이야! 짐 단단히 싸놓으라구!", - 2: "네가 속도를 유지할 수 있을지 보자!", - 3: "각오 단단히 하라고!", - 4: "20년 동안 나 자신을 찾기 위해 헤매왔어… 근데 내가 어디 있지?" - }, - "victory": { - 1: "이번엔 걸려 넘어져 버렸네!", - 2: "내가 속도를 잃어버렸잖아!", - 3: "막다른 길이야!", - 4: "잠깐! 그래 거기, 혹시 내가 누군지 아나?" - }, - }, - "ace_trainer": { - "encounter": { - 1: "너는 꽤 자신만만해 보이는구나.", - 2: "너의 포켓몬들… 나에게 보여줘…", - 3: "내가 엘리트 트레이너라서, 사람들은 내가 강하다고 생각해.", - 4: "엘리트 트레이너가 되려면 무엇이 필요한지 알고 있니?" - }, - "victory": { - 1: "그러네… 넌 좋은 포켓몬을 가졌구나…", - 2: "뭐? 말도 안 돼, 난 배틀 천재라구!", - 3: "그래도 역시, 네가 주인공이구나!", - 4: "좋아! 좋아! 너도 엘리트 트레이너가 될 수 있겠어!" - }, - "defeat": { - 1: "난 내 몸과 마음을 포켓몬 배틀에 바치고 있어!", - 2: "모두 예상된 일이었어… 이건 놀랄 일이 아니야…", - 3: "난 내가 강하게 압박하면 무너질 연약한 사람이라고 생각했어.", - 4: "난 강하고, 지지 않아. 그저 멋지게 이길 수 없었기 때문이야." - } - }, - "parasol_lady": { - "encounter": { - 1: "우아함과 침착함으로 승부하겠습니다!", - }, - "victory": { - 1: "그래도 제 우아함은 무너지지 않아요!", - } - }, - "twins": { - "encounter": { - 1: "각오해, 우리가 한 팀이 되면 두 배로 강해진다구!", - 2: "마음은 두 개지만 우리는 하나 – 네가 쌍둥이의 파워를 따라잡을 수 있는지 보겠어!", - 3: "두 배로 각오하는 게 좋을 거야. 우리가 곧 화나게 할 거거든!" - }, - "victory": { - 1: "비록 우리는 졌지만, 우리의 관계는 깨지지 않아!", - 2: "그래도 우리의 영혼은 오랫동안 흐려지지 않을 거야.", - 3: "더 강력한 듀오로 강해져서 돌아오겠어!" - }, - "defeat": { - 1: "우리 쌍둥이의 파워는 최고야!", - 2: "마음은 두 개지만 승리는 하나!", - 3: "미소도 두 배, 승리의 댄스도 두 배!" - } - }, - "cyclist": { - "encounter": { - 1: "내가 만든 먼지나 마실 준비하시지!", - 2: "준비하라구! 난 널 먼지 속에 놓고 올 거니까!", - 3: "전력을 다해야 할 거야, 네가 날 따라올 수 있는지 지켜보겠어!" - }, - "victory": { - 1: "바퀴가 움직이지 않더라도, 나의 페달은 그렇지 않아.", - 2: "이런, 따라잡혔어!", - 3: "승리로 가는 길에는 아직 만나지 못한 우여곡절이 많이 있구나." - }, - }, - "black_belt": { - "encounter": { - 1: "네 용기가 대단하구나! 난 최고의 발차기 실력을 갖추고 있다구!", - 2: "오, 알겠어. 산산조각이 나고 싶구나? 아니면 샌드백이 되고 싶은 거야?" - }, - "victory": { - 1: "이런, 포켓몬이 배틀을 하는 동안 내 발차기는 전혀 도움이 되지 않았어.", - 2: "음… 어차피 내가 질거라면, 완전 엉망진창이 되길 바랬는데…" - }, - }, - "battle_girl": { - "encounter": { - 1: "감동을 주려고 노력할 필요는 없어. 네가 질 수도 있으니까.", - }, - "victory": { - 1: "작별인사는 어렵지만, 우리에겐 시간이 얼마 안 남았네…", - }, - }, - "hiker": { - "encounter": { - 1: "중년으로 접어들면서 등산해왔던 산처럼 진중해졌습니다!", - 2: "살아있는 산같은… 큰 체격을 부모님이 물려주셨죠…", - }, - "victory": { - 1: "적어도 BMI에 대해서는 질 수 없습니다!", - 2: "부족해… 절대로 충분하지 않아. 저의 콜레스테롤이 부족합니다…" - }, - }, - "ranger": { - "encounter": { - 1: "자연에 둘러싸여 있으면, 다른 건 중요하지 않게 느껴져.", - 2: "인생에서 자연을 빼고 살면, 가끔 갑자기 마음이 불안해지지." - }, - "victory": { - 1: "광활한 자연 앞에서는 내가 이기든 지든 상관없어…", - 2: "도시 생활의 답답한 느낌에 비하면 이런 것은 아주 사소한 일지." - }, - "defeat": { - 1: "내가 이겼네. 그러나 승리는 광대한 자연에 비하면 아무것도 아니야…", - 2: "내 마음속 불안함과 비교하면, 당신 기분은 그렇게 나쁘지 않을텐데…" - } - }, - "scientist": { - "encounter": { - 1: "제 연구는 이 세상을 평화와 기쁨으로 이끌 겁니다.", - }, - "victory": { - 1: "전 천재니까… 당신 같은 사람에게 질 수 없는데…", - }, - }, - "school_kid": { - "encounter": { - 1: "…헤헷. 계산과 분석에는 자신 있어.", - 2: "언젠가 체육관 관장이 되고 싶어서, 최대한 많은 경험을 쌓고 있어." - }, - "victory": { - 1: "으아아… 이번에는 아마 계산과 분석이 빗나간 것 같아…", - 2: "내가 보기엔, 어렵고 힘든 경험도 나름의 의미가 있는 것 같아." - } - }, - "artist": { - "encounter": { - 1: "예전엔 인기가 많았지만, 지금은 모두 사라졌다네.", - }, - "victory": { - 1: "시대가 변하면, 가치관도 변하지. 난 그걸 너무 늦게 깨달았어.", - }, - }, - "guitarist": { - "encounter": { - 1: "패배의 리듬을 느낄 준비는 됐겠지? 내가 승리할 거니까!", - }, - "victory": { - 1: "지금은 조용하지만, 회복의 멜로디를 연주할 거야.", - }, - }, - "worker": { - "encounter": { - 1: "사람들이 저를 오해하는 게 신경 쓰여요. 전 생각보다 훨씬 깨끗하답니다.", - }, - "victory": { - 1: "피부가 타는 게 싫어서, 일하는 동안엔 그늘에 머물고 싶어요.", - }, - }, - "worker_female": { - "encounter": { - 1: `사람들이 나를 오해하는 게 신경 쓰여. - $나는 생각보다 훨씬 깨끗한데.` - }, - "victory": { - 1: "피부가 타는 게 싫어서, 일하는 동안엔 그늘에 머물고 싶어." - }, - "defeat": { - 1: "생각처럼 몸이 잘 안따라주네." - } - }, - "worker_double": { - "encounter": { - 1: "너를 무너뜨릴 수 있다는 것을 보여줄게. 우리는 실전 경험이 있거든!", - }, - "victory": { - 1: "이상하네… 어떻게 이럴 수 있지… 힘으로 압도할 수 없다니.", - }, - }, - "hex_maniac": { - "encounter": { - 1: "평소에는 클래식 음악만 들었는데, 지면 뉴에이지도 좀 들어볼까!", - 2: "눈물을 흘릴 때마다 더 강해지는 것 같아." - }, - "victory": { - 1: "지금이 물병자리 시대의 시작일까?", - 2: "이제 나는 더 강해지겠지. 모든 원한과 함께 성장하겠어." - }, - "defeat": { - 1: "뉴에이지란 단순히 20세기 클래식 작곡가들을 말하는 거, 맞지?", - 2: "슬픔이나 좌절에 얽매이지 마. 넌 그 원한을 원동력으로 사용할 수 있어." - } - }, - "psychic": { - "encounter": { - 1: "안녕! 집중해!", - }, - "victory": { - 1: "에에에에엣!", - }, - }, - "officer": { - "encounter": { - 1: "마음의 준비를 하시죠, 정의가 곧 실행될 거니까요!", - 2: "법을 지키고 정의를 위해 봉사할 준비가 되었습니다!" - }, - "victory": { - 1: "정의의 무게가 그 어느 때보다 무겁게 느껴집니다…", - 2: "패배의 그림자가 관할 경찰서에 남았습니다." - } - }, - "beauty": { - "encounter": { - 1: "나의 마지막 배틀… 이 승부를 그렇게 봐주셨으면 좋겠어요…", - }, - "victory": { - 1: "즐거웠어요… 언젠가 또 다른 마지막 승부를 하죠…", - }, - }, - "baker": { - "encounter": { - 1: "패배의 맛을 볼 준비는 됐겠지!" - }, - "victory": { - 1: "실력이든 빵이든, 굽고 나면 단단해지는 법이라네." - }, - }, - "biker": { - "encounter": { - 1: "힘차게 먼지 속으로 출발할 시간입니다!" - }, - "victory": { - 1: "다음 경주를 위해 준비해야겠습니다." - }, - }, - "firebreather": { - "encounter": { - 1: "내 불꽃이 너를 삼킬 테니까!", - 2: "내 영혼은 불타고 있다. 얼마나 뜨겁게 타는지 보여주지!", - 3: "이리 올라와서 보도록!" - }, - "victory": { - 1: "하얗게 불태웠다………", - 2: "큭! 제법 뜨겁군!", - 3: "으윽! 코끝에 화상을 입었다!" - }, - }, - "sailor": { - "encounter": { - 1: "친구여, 진다면 널빤지 행이야!", - 2: "덤벼! 내 선원으로서 자존심이 위태롭군!", - 3: "여어 거기! 뱃멀미 하나?" - }, - "victory": { - 1: "크윽! 꼬맹이한테 지다니!", - 2: "네 영혼이 나를 침몰시켰어!", - 3: "내가 뱃멀미가 나는 것 같군…" - }, - }, - "archer": { - "encounter": { - 1: "더 나아가기 전에 우리 로켓단과 맞설 만한지 한 번 봅시다!", - 2: "당신의 실력이 예사롭지 않다는 소식을 들었습니다. 정말인지 한 번 보지요.", - 3: "…저는 로켓단의 간부 아폴로. 우리 조직의 적에게는 봐 주지 않습니다!" - }, - "victory": { - 1: "…이런 실수를 하다니!", - 2: "역시 지금의 저는 무리였군요…", - 3: "비, 비주기님, 용서해주십시오…제가 일개 트레이너한테 당하다니…" - }, - }, - "ariana": { - "encounter": { - 1: `거기까지다~!! 너 같은 놈을 언제까지고 설치게 두었다가는 - $로켓단의 프라이드는 상처 입고 상처 입어서 상처투성이가 돼 버린다고-!`, - 2: `내가 하는 일이 옳은지 그른지는 상관 없어… - $그저 비주기님을 믿고 따르는 것 뿐이니까-!`, - 3: "네 여정은 여기서 끝이야. 내가 널 이길 테니까-!" - }, - "victory": { - 1: `어머, 강하군. 안타깝네. - $네가 로켓단에 있었다면 간부가 될 수 있었을 텐데.`, - 2: "사…산산조각났네…", - 3: "으이이이익! 온 힘을 다해서 싸웠는데…이래도 이길 수 없다니!" - }, - }, - "proton": { - "encounter": { - 1: "뭐죠? 우리 일에 끼어든다면 자비를 바라지 마십시오!", - 2: `뭐죠? 나는 로켓단에서 제일 냉혹하다고 불리는 남자… - $우리 일을 방해하도록 그냥 놔두지 않겠습니다!`, - 3: "나는 로켓단의 간부 랜스. 당신의 참견도 여기까지입니다!" - }, - "victory": { - 1: "요새가 무너져내렸네요…", - 2: "나한테 이긴 건 결국 로켓단의 분노를 강하게 했을 뿐이예요…", - 3: "나는 졌지만, 결코 이 일을 잊지 않을 겁니다!" - }, - }, - - "petrel": { - "encounter": { - 1: `후후훗, 잘 왔구나. 오잉? 내가 누군지 알아? 비주기야. - $비주기님이라고, 우-하하! …엥? 전혀 안 닮았다고? - $비주기님으로는 안 보인다고? 제길- 열심히 연습했는데!`, - 2: "나는 로켓단의 간부 람다. 우리 계획을 방해하는 건 용납할 수 없다!", - 3: "이 로켓단 간부 람다가 네놈 불청객을 처리해 주지!" - }, - "victory": { - 1: "조…좋아. 비주기님이 어디 계신지 알려주지.", - 2: "크으으… 이 내가 당해낼 수 없다니… 비주기님, 용서해주십시오…", - 3: "안돼, 이런다고 나한테 어쩔 수는 없어. 다른 사람들에게 알려야겠어…" - }, - }, - "tabitha": { - "encounter": { - 1: "우효효효! 그래 당신 여기까지 왔구나! 그치만 늦었어요!", - 2: `우효효… 벌써 여기까지 왔네요? 우리가 당신을 과소평가했어요. 하지만 이제 시작입니다! - $이 호걸님은 이제까지 본 조무래기들과는 차원이 다르답니다! 우물쭈물 시간을 끌지 않아요. - $확실하게 보내주마! 우효효효효효효!!`, - 3: "여기서 어른의 무서움을 제대로 알려주지! 받아랏-!" - }, - "victory": { - 1: `우효효! 이 호걸은 이겼을지 몰라도 마적님한테는 안 될 겁니다! - $차라리 여기서 졌다면 무자비한 채찍질은 피했을텐데 말이죠!`, - 2: "우효~! 이야 이건 예상 밖의 전개인데!?", - 3: "우효! 어떻게?! 이 호걸님이 이런 일개 트레이너에게…" - }, - }, - "courtney": { - "encounter": { - 1: "…그 …네가 가진 …우리…마그마단이 원하는 것", - 2: "…………그럼 …………삭제하겠습니다", - 3: "……애널라이즈 ……하고 싶어 ……아하하하♪" - }, - "victory": { - 1: "……바꿔줘 ……세계를", - 2: `………예상대로 ………예상외 ………너 …………타깃 록 ………했으니까 - $……엑스페리먼트 ……할 테니까 ………너를………계속………아핫…♪`, - 3: "……또 ……예상외 ………… ……역시 ……너…재미있어…! ………아하하…♪" - }, - }, - "shelly": { - "encounter": { - 1: `엥? 우리 아쿠아단의 일에 끼어들겠다고? - $…좋아! 기본적인 예의도 모르는 애송이한테는 제대로 그 버릇을 고쳐줘야지… - $겁먹고 도망쳐도 용서 따위 없을 줄 알아! 우하하하!`, - 2: "아앙? 뭐야? 이 건방진 꼬맹이는…", - 3: "침착해. 조급해 하지 말라고… 금방 박살내 줄 테니까." - }, - "victory": { - 1: `아아아아앙!? 예상치 못하게 방해받았잖아! 어쩔 수 없네. - $여기선 물러나야겠네. 그렇지만 네가 아쿠아단을 만나는 게 이게 마지막은 아닐 거야. - $우리는 다른 계획도 있거든! 잊지 마!`, - 2: "크윽…!? 너무 봐줬나…!", - 3: `…으윽 …싸우면서 더욱 실력이 좋아졌다고…!? - $장래가 무서워지는 애송이네… …나와 내 포켓몬들은 더 이상 싸울 힘이 남아 있지 않아. - $…가 …가서 아강님한테 아주 혼쭐이나 나 버려.` - }, - }, - "matt": { - "encounter": { - 1: "후하하하하하! 뭐라 떠들고 있는 거야! 너 생긴 게 마크탕이랑 똑같네!", - 2: "음음! 네 녀석은! 재미있는 녀석!", - 3: "뭐야?! 우릴 따라온 거냐!" - }, - "victory": { - 1: "…그래서 말이지, 리더님이 시간이 나실 때까진 내가 상대해 주마!", - 2: `확 확 느껴지는데! 네놈들의 강함이 말이야! - $제대로 붙었다고 하기엔 조금 모자라지만 이제 타임오버 같네…`, - 3: "재밌는데!! 역시 재미있어! 넌! 또 붙게 될 때를 기대하고 있겠어!" - }, - }, - "mars": { - "encounter": { - 1: "난 갤럭시단 간부인 마스! 강하고 아름답지!", - 2: "갤럭시단의 미래에 대한 비전은 흔들림 없지. 방해한다면 무자비하게 짓밟아 주마!", - 3: "두렵지 않아? 넌 그래야만 할 걸!" - }, - "victory": { - 1: "갤럭시단의 간부로서… 이런 일은 있을 수 없어!!", - 2: "넌 능력 있구나. 그건 인정하지.", - 3: "아-이런 이런! 졌잖아!" - } - }, - "jupiter": { - "encounter": { - 1: "무슨 볼일이라도? 좋아! 갤럭시단 간부인 나 주피터가 상대해주지.", - 2: "발버둥쳐 봐야 소용 없어. 갤럭시단이 승리할 거니까!", - 3: "너 떨고 있네… 무서운 거지?" - }, - "victory": { - 1: "일개 트레이너에게 지다니 방심이란 무섭구나.", - 2: "다음에는 내가 울려 주고 말겠어!", - 3: "흥! 강하네. 하지만 보스는 당할 수 없어" - } - }, - "saturn": { - "encounter": { - 1: "나는 갤럭시단의 간부 새턴. 모든 것은 모두를 위해 그리고 갤럭시단을 위해!", - 2: "갤럭시단을 방해한다면 일말의 가능성도 모두 제거한다!", - 3: "여기까지 왔으니 갤럭시단 나름의 접대를 해 주지." - }, - "victory": { - 1: "이럴 수가… 너한테 졌다고?!", - 2: "…역시 강해! 갤럭시단에 맞설 만하군.", - 3: "강하다! 하지만 불쌍하군." - }}, - "zinzolin": { - "encounter": { - 1: "너는 플라스마단에게 있어 불안요소가 될 것이다. 여기서 제거하겠다!", - 2: "이런 이런… 내가 이런 곳에서 싸워야만 하다니!", - 3: "여기까지 오다니 대단한 트레이너군. 그러나 여기가 끝이다." - }, - "victory": { - 1: "게치스님… 제가 실패했습니다…", - 2: "그건 그렇고 힘들구먼. 나는 떨고 있다. 괴롭지만 살아 있다. 그것이야말로 살아 있다는 실감!", - 3: "흐음. 의외로 똑똑한 트레이너군. 하지만 생각만큼은 아니야." - } - }, - "rood": { - "encounter": { - 1: "너는 플라스마단에 위협이 되는구나. 너라는 트레이너가 어떤 인물인지 승부로 알아봐야겠다.", - 2: "오호! 싸늘하구먼… 이런 곳에서 싸울 줄이야!", - 3: "너는 여기까지 온 것으로 보니 뛰어난 트레이너구나. 그렇다만 이젠 끝이다." - }, - "victory": { - 1: "게치스님… 임무를 실패했습니다…", - 2: "나는 떨고 있다. 나는 괴롭지만 이겨냈다.", - 3: "음… 너는 재능이 있는 트레이너구나. 하지만 충분하지는 않다." - } - }, - "xerosic": { - "encounter": { - 1: "오오- 네 소문은 많이 들었다. 자, 이리 와 보거라!", - 2: "너 강하구나. 에너지를 얼마나 갖고 있지?", - 3: "기다리고 있었어! 너를 조사하겠다. 자 시작한다!" - }, - "victory": { - 1: "강하구나, 너는. 응, 정말 강해, 너는.", - 2: "뭣이라! 넌 굉장하군! 너의 포켓몬도 대단하군!", - 3: "굉장하구나 너! 아주 굉장해! 나는 너를 인정하겠다!" - } - }, - "bryony": { - "encounter": { - 1: "나는 바라. 당신과 싸울 수 있어 기쁘군요. 한 번 보여주시죠.", - 2: "인상적이군요… 보기보다 강해요. 에너지가 어디까지 뻗어나가는지 봅시다.", - 3: "도착할 줄 알았습니다. 시작할까요?" - }, - "victory": { - 1: "어라? 이길 확률은 어디까지나 확률. 절대적이진 않네.", - 2: "확률을 무시하는 트레이너, 네 파워의 원천은 뭐지?", - 3: "놀랍군! 칭찬할 만 해." - } - }, - "rocket_grunt": { - "encounter": { - 1: "트러블에 대비하도록!", - 2: "우리는 위업을 이루는 중이라고! 저리 비켜, 꼬마 녀석!", - 3: "포켓몬을 넘기지 않겠다면, 로켓단이 징벌하겠다!", - 4: "로켓단의 진정한 공포를 보여주마!", - 5: "헤이, 키드! 미는 로켓단의 멤버라구요!" //Use of wrong grammar is deliberate - }, - "victory": { - 1: "로켓단은 다시 떠오를 거니까!", - 2: "이런! 엘리베이터 키를 떨어뜨렸어!", - 3: "실패했군!", - 4: "내 동료들이 가만히 있지 않을 거다!", - 5: "유 쎄이 왓? 로켓단이 바이바이? 유한테 브레이킹?" //Use of wrong grammar is deliberate - }, - }, - "magma_grunt": { - "encounter": { - 1: " 마그마단을 방해한다면, 자비는 없닷!", - 2: "계획을 방해하지 않는 게 좋을 거다! 우리는 세상을 더 나은 곳으로 만들고 있거든!", - 3: "방해꾼 녀석! 마그단은 너 같은 꼬마들을 상대할 시간이 없어!", - 4: "마시멜로를 갖고 있었으면 좋겠네. 왜냐하면… 곧 뜨거워질 테니까!", - 5: "화산의 힘을 사용할 거야! 그건 정말로… 폭발적일 테니까! 알아들었지? 헤헷!" - }, - "victory": { - 1: "하? 내가 졌어?!", - 2: "내가 지다니! 이것 때문에 점심도 거르고 왔는데.", - 3: "말도 안돼! 넌 아직 어린애잖아!", - 4: "으윽… 당장 은신처로 숨을 걸 그랬나…", - 5: "네가 이겼어… 이것 때문에 보스가, 내 월급 깎으려나?" - }, - }, - "aqua_grunt": { - "encounter": { - 1: "아쿠아단을 넘본 사람에게는 자비는 없다, 꼬마도 마찬가지야!", - 2: "쯧… 아쿠아단에 참견하다니 오지랖이 넓군!", - 3: "흠뻑 물을 뒤집어쓰게 될 거다! 내 물 포켓몬의 공격 뿐만이 아니야!", - 4: "우리, 아쿠아단은, 모두를 위해 존재한다!", - 5: "내가 떠밀… 아니, 파도에 떠내려갈 준비나 하라고! 내 포켓몬이 그렇게 만들 테니까 " - }, - "victory": { - 1: "말도 안 돼!", - 2: "크윽, 참견쟁이 꼬마에게 당하다니!", - 3: "내가 졌다고?! 헤엄쳐서 은신처로 돌아가야겠군…", - 4: "이런, 완전 망했군… 보스가 화를 내실텐데…", - 5: "네가 이겼어… 이것 때문에 보스가, 나를 판자 위로 보내는 거 아냐?" - }, - }, - "galactic_grunt": { - "encounter": { - 1: "갤럭시단을 방해하지 마!", - 2: "기술의 힘과 우리가 꿈꾸는 미래를 목격하라!", - 3: "갤럭시단으로서, 우리를 방해하는 자는 누구든 제거하겠다!", - 4: "질 준비나 하라고!", - 5: "우주에서 싸울 준비는 됐겠지!" - }, - "victory": { - 1: "사격 중지…… ", - 2: "이런 좌절이라도, 우리의 큰 계획 앞엔 아무 의미도 못 돼.", - 3: "우리의 계획은 이번 패배보다 크거든.", - 4: "어떻게 한 거지?!", - 5: "메모해야겠군. 최대한 포켓몬 배틀을 ASAP으로 연습할 것." - }, - }, - "plasma_grunt": { - "encounter": { - 1: "다른 생각을 가진사람들은 용납하지 않겠다!", - 2: "내가 이기면, 네 포켓몬들을 놓아주도록 해!", - 3: "플라즈마단을 방해한다면, 내가 처리해주지!", - 4: "플라즈마단은 너 같은 이기적인 인간에게서 포켓몬을 해방할 것이다!", - 5: "우리 스타일링은 정말 대단하지… 배틀 실력은 어떻냐고? 곧 알게 될거야." - }, - "victory": { - 1: "플라-스마-!", - 2: "내가 지다니…", - 3: "…포켓몬이 너무 약해, 더 좋은 포켓몬을 훔치러 가야겠군!", - 4: "훌륭한 계획은 항상 방해를 받는다니깐.", - 5: "이건 나빠… 나빠나빠나빠나빠나빠! 플라스마단에 나빠! 줄여서, 플라나빠!" - }, - }, - "flare_grunt": { - "encounter": { - 1: "네 포켓몬, 플레어단의 우아함에 상대가 되지 않는다고.", - 2: "선글라스를 가져왔길 바랄게. 곧 밝게 빛날 테니까!", - 3: "플레어단이 세상의 불완전함을 정화할 거야!", - 4: "플레어단의 광채를 마주칠 준비는 됐겠지!", - 5: "패션이 우리한텐 가장 중요하다고!" - }, - "victory": { - 1: "미래가 밝아 보이질 않네.", - 2: "생각했던 것보다 전투에는 많은 요소가 있는 것 같군. 다시 계획을 짜야겠어.", - 3: "아앗?! 내가 졌어?!", - 4: "패배 속에서도, 플레어단의 우아함은 빛나고 있다고.", - 5: "네가 이긴 것 같네. 그렇지만 졌어도, 난 우아하게 퇴장할 거니까!" - }, - }, - "rocket_boss_giovanni_1": { - "encounter": { - 1: "그래서! 여기까지 오다니, 감탄이 절로 나오는군!" - }, - "victory": { - 1: "하! 이럴 순 없어!" - }, - "defeat": { - 1: "자신의 힘을 측정하지 못하는 걸 보아하니, 아직 별볼일 없는 꼬맹이로군. 내 말을 명심하도록. " - } - }, - "rocket_boss_giovanni_2": { - "encounter": { - 1: "옛 친구들이 나를 필요로 하고 있다…… 그런데도 방해하겠다는 건가?" - }, - "victory": { - 1: "어떻게 이런 일이…?\n로켓단의 소중한 꿈이 환상에 불과해졌군…… " - }, - "defeat": { - 1: "로켓단은 다시 태어난다, 그리고 세상을 지배할 것이다!" - } - }, - "magma_boss_maxie_1": { - "encounter": { - 1: "내 손으로 널 파묻어주지. 영광으로 알도록!" - }, - "victory": { - 1: "윽! 꽤… 제법이군…\n내가 뒤쳐졌지만, 겨우 한 끝이다…" - }, - "defeat": { - 1: "마그마단이 앞선다!" - } - }, - "magma_boss_maxie_2": { - "encounter": { - 1: "나와 내 목표 사이에 남은 마지막 장애물이로군.\n최후의 공격에 대비하도록! 후하하하!" - }, - "victory": { - 1: "이런… 이럴 수는… 없어… " - }, - "defeat": { - 1: "이제부터… 인류의 이상을 위해 대지를 더 늘려가겠다." - } - }, - "aqua_boss_archie_1": { - "encounter": { - 1: "내가 아쿠아단의 리더다, 유감스럽게도 넌 이게 끝이겠군." - }, - "victory": { - 1: "다시 어딘가에서 만나도록하지. 그 얼굴 기억해둘테니까." - }, - "defeat": { - 1: "좋군! 이제 아쿠아단을 막아설 것은 없다!" - } - }, - "aqua_boss_archie_2": { - "encounter": { - 1: "이 날이 오는 것을 너무 오래 기다렸군.\n이것이 우리의 진정한 힘이다!" - }, - "victory": { - 1: "내가 생각했던 것들이…… " - }, - "defeat": { - 1: "이 세상을 원래의 순수한 상태로 되돌리겠다, 그 모든 것을!!" - } - }, - "galactic_boss_cyrus_1": { - "encounter": { - 1: "넌 공허한 감정에 이끌려 이곳에 오게된 것이다.\n마음에 귀를 기울인 것을 후회하게 해주지!" - }, - "victory": { - 1: "흥미롭군. 게다가 꽤 궁금해졌어." - }, - "defeat": { - 1: "새로운 세상을 만들 것이다…" - } - }, - "galactic_boss_cyrus_2": { - "encounter": { - 1: "이런 우리가 다시 만나게 됐군. 우리의 운명이 얽히게 된 것 같군.\n 하지만 지금 여기서, 나는 마침내 그 끈을 끊을 것이다!" - }, - "victory": { - 1: "어떻게? 어째서? 어떻게?!" - }, - "defeat": { - 1: "작별이로군." - } - }, - "plasma_boss_ghetsis_1": { - "encounter": { - 1: "누구도 저를 막을 수 없습니다! 무슨 짓을 하더라도!" - }, - "victory": { - 1: "…어떻게 된 거지? 이 몸은 플라스마단을 만들어낸 완벽한 남자라고! " - }, - "defeat": { - 1: "세계를 바꿀 완전한 지배자가 아니었단 말인가!? …흐하하!" - } - }, - "plasma_boss_ghetsis_2": { - "encounter": { - 1: "오시죠! 당신이 모든 희망을 잃는 순간의 얼굴을 보겠습니다!" - }, - "victory": { - 1: "내 계산이… 틀려! 내 치밀한 계획이 틀리다니! 세상은 내 것이어야 하는데!" - }, - "defeat": { - 1: "큐레무! 합체해라!" - } - }, - "flare_boss_lysandre_1": { - "encounter": { - 1: "나를 막겠다고? 배틀로 증명하도록." - }, - "victory": { - 1: "네가 나를 여기서 막았군. 하지만 잠시 기다리도록. " - }, - "defeat": { - 1: "포켓몬은… 더 이상 존재하지 않는다." - } - }, - "flare_boss_lysandre_2": { - "encounter": { - 1: "너의 미래와 나의 미래… 어느 쪽이 옳은지 서로의 포켓몬에게 묻도록 하지." - }, - "victory": { - 1: "크윽!" - }, - "defeat": { - 1: "우매한 자들이 이 아름다운 세상을 계속 더럽히고 있군." - } - }, - "brock": { - "encounter": { - 1: "내 전문인 바위 타입 포켓몬으로 널 쓰러뜨려줄게! 덤벼!", - 2: "바위같은 의지로 널 압도하겠어!", - 3: "내 포켓몬의 진정한 힘을 보여줄게!" - }, - "victory": { - 1: "네 포켓몬의 힘이 바위같은 내 방어를 이겼어!", - 2: "세상은 넓구나! 너랑 겨뤄볼 수 있어서 즐거웠어.", - 3: "아마도 난 포켓몬 브리더의 꿈을 이루러 가야할지도…" - }, - "defeat": { - 1: "최선의 공격은 적절한 방어지!\n그게 내 방식이야!", - 2: "다음에 나한테 더 배우러와. 바위타입과 어떻게 싸워야하는지 알려주지!", - 3: "아, 여러 지역을 돌아다니며 여행한 보람이 있군!" - } - }, - "misty": { - "encounter": { - 1: "내 방침은 물타입 포켓몬으로 공격하고 공격하고 또 공격하는 거!", - 2: "아하핫, 너한테 내 물타입 포켓몬들의 힘을 보여줄게!", - 3: "내 꿈은 여행을 다니며 강한 트레이너들과 배틀하는 거였어…\n네가 그 충분한 도전자가 될 수 있는지 볼까?" - }, - "victory": { - 1: "너 정말로 강하구나… 그 실력 인정하도록 할게…", - 2: "으으… 너 그냥 운이 좋았던거야, 그치?!", - 3: "우와, 너 대단해! 날 이기다니 믿을 수 없어!" - }, - "defeat": { - 1: "최강인 최이슬! 너한테 좀 심했나?", - 2: "내 포켓몬들의 우아한 수영 테크닉을 봤길 바랄게!", - 3: "내 프라이드와 즐거움엔 네 포켓몬들은 상대가 안 돼. " - } - }, - "lt_surge": { - "encounter": { - 1: "마이 전기 포켓몬은 전쟁에서 미를 구했어요! 하우를 유에게 보여줄게요!", - 2: "헤이! 쇼크로 유를 항복시키겠어요!", - 3: "배틀에서 마이 에너미에게 했던 것처럼 유에게도 펀치를 날리겠어요!" - }, - "victory": { - 1: "와우, 키드! 유어 팀은 진짜 대단하군요!", - 2: "으흐흑, 유는 스트롱하네요! 마이 전기 트릭도 유에겐 로스트입니다.", - 3: "앱솔루트하고 쇼킹한 패배였어요!" - }, - "defeat": { - 1: "오우 예! 전기 타입 포켓몬이라면, 미가 월드에서 넘버 원이에요!", - 2: "하하하! 키드, 이것이 찌릿찌릿 일렉트릭 배틀입니다!", - 3: "포켓몬 배틀은 전쟁, 앤드 나는 유에게 직접 전투를 보여줬습니다!" - } - }, - "erika": { - "encounter": { - 1: "아, 오늘은 날씨가 좋네요…\n음, 배틀일까요? 그럼 더 좋죠.", - 2: "제 포켓몬들의 배틀 실력은 제 꽃꽂이 실력만큼 대단하답니다.", - 3: "아, 제 포켓몬의 달콤한 향기가 저를 다시 잠들게 하지 않았으면 좋겠는데……", - 4: "정원에서 꽃을 보면 마음이 편안해져요.”." - }, - "victory": { - 1: "앗! 제 패배를 인정합니다.", - 2: "방금 경기 정말 달콤했어요.", - 3: "아, 제가 진 것 같네요…", - 4: "앗, 맙소사." - }, - "defeat": { - 1: "저 조금 걱정했어요. 너무 졸려서…", - 2: "어머, 제 풀 포켓몬이 당신을 압도한 것 같네요.", - 3: "이 배틀 정말로 편안한 경험이었네요.", - 4: "어머… 이게 끝인가요?" - } - }, - "janine": { - "encounter": { - 1: "난 독을 사용하는 인술을 갈고 닦고 있어.\n오늘 수련에서는 너랑 대련할거야!", - 2: "아버지는 내가 잘해낼 수 있다고 신뢰하셔.\n 그게 맞는다는 걸 증명할게!", - 3: "내 인술은 아버지한테 뒤처지지 않아! 따라올 수 있겠어? " - }, - "victory": { - 1: "역시 아직도, 난 더 수련이 필요해… 납득했어.", - 2: "네 배틀 기술이 내 인술보다 한 수위야.", - 3: "더 스스로 갈고 닦아서, 내 인술을 향상 시키겠어." - }, - "defeat": { - 1: "후후후… 독이 네 기력을 모두 가져가버렸네.", - 2: "하핫, 너 내 인술에 맞설 기회를 잡지 못했구나!", - 3: "나를 향한 아버지의 신뢰, 틀리지 않았다는 걸 증명해냈어." - } - }, - "sabrina": { - "encounter": { - 1: "내 초능력을 통해서, 너의 도착은 예상하고 있었어!", - 2: "싸우는 건 좋아하지 않지만 네가 원한다면… 나의 힘을 보여줄게!", - 3: "네게서 큰 염원이 느껴져. 그것이 근거 없는 것이 아닌지 지켜보겠어." - }, - "victory": { - 1: "너의 힘은… 내가 예견했던 것보다 훨씬 뛰어나…", - 2: "나는 너의 힘을 정확하게 예측하지 못했어.", - 3: "나 엄청난 초능력을 가지고도, 너처럼 강한 사람을 느끼지 못했네." - }, - "defeat": { - 1: "이 승리는… 내가 환상에서 예견한 그대로네!", - 2: "아마도 그건, 내가 깊이 느꼈던 또 다른 염원이었을거야…", - 3: "무모하게 배틀에 임하기 전에 능력을 갈고닦도록.\n넌 미래가 어떻게 될지 예지할 수 없으니까…" - } - }, - "blaine": { - "encounter": { - 1: "우오오~옷! 화상치료제는 잘 준비했는가!", - 2: "나의 포켓몬은 모든 것을 불꽃으로 태워버리는 강한 녀석들뿐이다!", - 3: "불꽃과 함께할 준비는 됐는가!" - }, - "victory": { - 1: "아무것도 남지 않고 불타버렸다! 재조차 남지 않았어!", - 2: "내가 불을 너무 세게 피우지 않았나?", - 3: "불태웠다… 하지만 이건 불꽃을 향상시키려는 내 동기를 더욱 뜨겁게 만드는군!" - }, - "defeat": { - 1: "나의 타오르는 불길은 진압할 수 없다!", - 2: "내 포켓몬은 이번 승리의 열기로 더욱 강해졌다!", - 3: "하! 내 열정이 네 것보다 더 밝게 타오르고 있군!" - } - }, - "giovanni": { - "encounter": { - 1: "나, 로켓단의 리더가, 고통의 세계를 느끼게 해주마!", - 2: "옛 동료들과 다시 만나기 전, 이곳에서의 훈련은 매우 중요하겠군.", - 3: "너는 곧 경험하게 될 실패에 대한 준비가 되어 있지 않군!" - }, - "victory": { - 1: "하! 내가 졌다고?! 더 이상 할말이 없군!", - 2: "흐음… 넌 내가 이루고자 하는 것을 결코 이해할 수 없을 거다.", - 3: "이 패배는 피할 수 없는 것을 단지 지연시킬 뿐.\n때가 되면 잿더미에서 로켓단을 일으켜 세울 것이다." - }, - "defeat": { - 1: "자신의 힘을 스스로 잴수 없다는 것은 네가 아직 꼬맹이라는 것을 보여준다고 할 수 있지.", - 2: "다시는 나를 방해하지 말도록.", - 3: "나에게 도전하는 것이 얼마나 어리석은 짓인지 이해했으면 좋겠군." - } - }, - "roxanne": { - "encounter": { - 1: "당신이 어떻게 싸우는지 보여주시겠어요?", - 2: "당신은 여러 트레이너와 싸우면서 많은 것을 배울 수 있을거예요.", - 3: "아, 전략짜는 거 들켰네요.\n배틀할까요?" - }, - "victory": { - 1: "아, 제가 진 것 같네요.\n승복하겠습니다.", - 2: "전 아직도 포켓몬 배틀에 대해서 한참 더 배워야할 것 같네요.", - 3: "오늘 여기서 배운 것들을 마음에 담아둬야겠어요." - }, - "defeat": { - 1: "전 방금 승부에서 많은 것을 배웠습니다.\n당신도 그랬길 바래요.", - 2: "다시 붙을 날이 기대되네요.\n당신이 여기서 배운 걸 활용할 수 있길 바랍니다.", - 3: "여태까지 공부해온 것 덕분에 이겼네요." - } - }, - "brawly": { - "encounter": { - 1: "오, 도전자잖아!\n어디 한 번 볼까!", - 2: "넌 큰 파란을 일으킬 것 같군.\n승부다!", - 3: "폭풍을 일으킬 시간이야!\n가자!" - }, - "victory": { - 1: "우와, 너 날 씻겨버렸네!", - 2: "내 파도를 타고, 나까지 밀어내다니!", - 3: "바위 동굴에서 길을 잃은 기분이야!" - }, - "defeat": { - 1: "하핫, 난 큰 파도를 탔다고!\n언제 또 도전해주라.", - 2: "언젠가 또 같이 서핑하자고!", - 3: "파도가 밀려왔다가 밀려나듯, 언젠가 너도 다시 도전하러 와." - } - }, - "wattson": { - "encounter": { - 1: "찌릿찌릿해질 때가 됐군!\n와하하하핫!", - 2: "스파크가 튀도록 해주마!\n와하하하하!", - 3: "와하하하하!\n마비 치료제를 가져왔길 바라네!" - }, - "victory": { - 1: "이 몸 배터리가 다 됐군!\n와하하하하!", - 2: "자네 완전히 날 좌초시켰군!\n와하하하핫!", - 3: "스릴 넘치는 배틀, 고맙네!\n와하하하하하!" - }, - "defeat": { - 1: "자네의 배터리 재충전하게. 그리고 나에게 도전하러 돌아오도록!\n와하하하핫!", - 2: "방금 배틀이 자네에게 짜릿짜릿했길 바란다네!\n와하하하하!", - 3: "자네 혹시 내가 이겨서 충격 받았나?\n와하하하핫!" - } - }, - "flannery": { - "encounter": { - 1: "어서오세요! 잠깐, 아냐…\n너를 무너뜨려줄게!", - 2: "난 체육관 관장이 된지는 얼마 안됐지만, 널 태워버릴거야!", - 3: "할아버지에게 배운 기술을 한 수 보여줄게! 승부다!" - }, - "victory": { - 1: "너 우리 할아버지를 생각나게 하네…\n내가 진 게 놀랍진 않아.", - 2: "나 너무 열심히 하는 건가?\n너무 열 올리면 안되니깐, 진정해야겠어.", - 3: "패배는 날 꺼뜨릴 수 없어.\n트레이닝으로 다시 불을 붙일 때야!" - }, - "defeat": { - 1: "할아버지가 자랑스러워하시길…\n언젠가 다시 배틀하자.", - 2: "내…내가 이기다니!\n내 방식대로 한 게 통했어!", - 3: "조만간 다시 뜨겁게 불타오르는 배틀을 하자!" - } - }, - "norman": { - "encounter": { - 1: "여기까지 오다니 놀랍군.\n한 번 겨뤄볼까.", - 2: "관장으로서 최선을 다해 널 이길 거란다.\n가자!", - 3: "최선을 다하는 게 좋을 거야.\n승부할 시간이다!" - }, - "victory": { - 1: "내가 지다니…?\n규칙은 규칙이니, 흐음.", - 2: "담청시티에서 이사한 게 문제였나…?", - 3: "믿을 수 없구나.\n훌륭한 승부였어." - }, - "defeat": { - 1: "우린 둘 다 최선을 다했지.\n다시 대결할 수 있었으면 좋겠구나.", - 2: "우리 집 꼬마에게 도전해보는 것도 좋겠군.\n아마 뭔가 배울 수 있을거다!", - 3: "방금 전 배틀 완벽했어.\n다음에도 행운이 함께하길." - } - }, - "winona": { - "encounter": { - 1: "저는 먹이를 찾아서 하늘을 날아다녔어요…\n그리고 당신은 제 타겟입니다!", - 2: "배틀이 어떻게 되든, 전 제 비행 포켓몬과 우아하게 승리하겠어요. 승부합시다!", - 3: "당신이 높은 곳을 무서워하지 않기를.\n자, 날아올라요!" - }, - "victory": { - 1: "저보다 우아하게 나서는 트레이너는 처음 봤습니다.\n훌륭하시네요.", - 2: "이런, 제 비행 포켓몬이 추락해버렸네요!\n훌륭한 배틀이었습니다.", - 3: "비록 전 떨어졌지만, 제 포켓몬은 다시 날아갈 겁니다!" - }, - "defeat": { - 1: "제 비행 포켓몬과 영원히 우아하게 춤출게요.", - 2: "우리의 쇼가 즐거웠길 바라요.\우아한 춤은 끝났습니다.", - 3: "우리의 엘레강스한 안무를 다시 보러오지 않을래요?" - } - }, - "tate": { - "encounter": { - 1: "헤헤헤…\n내가 란과 같이 있지 않아서 놀랐지?", - 2: "네가 무슨 생각을 하는지 알아…\n승부하고 싶은거지!", - 3: "네 움직임을 모두 알고 있는데…\n어떻게 이기려고?" - }, - "victory": { - 1: "어쩔 수 없지…\n란이 보고싶다아…", - 2: "너와 네 포켓몬과의 유대, 나보다 더 견고한걸.", - 3: "란이랑 함께였다면, 우리가 이겼어.\n둘이선 더 잘 할 수 있다구!" - }, - "defeat": { - 1: "내 포켓몬과 나는 우수하다구!", - 2: "날 못 이긴다면, 넌 란한테도 절대로 못 이겨.", - 3: "란과 함께한 엄격한 훈련 덕이야.\n덕분에 포켓몬과 하나가 될 수 있었어." - } - }, - "liza": { - "encounter": { - 1: "후후후…\n내가 풍과 같이 있지 않아서 놀랐지?", - 2: "네가 무얼 바라는지 알아…\n포켓몬 배틀, 맞지?", - 3: "포켓몬과 하나가 된 사람…\n어떻게 이기려고?" - }, - "victory": { - 1: "어쩔 수 없지…\n풍이 보고싶다아…", - 2: "너와 네 포켓몬과의 유대, 나보다 더 견고한걸.", - 3: "풍이랑 함께였다면, 우리가 이겼어.\n둘이선 더 잘 할 수 있다구!" - }, - "defeat": { - 1: "내 포켓몬과 내가 승리한거야.", - 2: "날 못 이긴다면, 넌 풍한테도 절대로 못 이겨.", - 3: "풍과 함께한 엄격한 훈련 덕이야.\n덕분에 포켓몬과 싱크로 될 수 있었어." - } - }, - "juan": { - "encounter": { - 1: "지금은 겸양을 부릴 때가 아니군요.\n승부합시다!", - 2: "아하하하, 물 포켓몬과 함께 아트를 보여드리겠습니다!", - 3: "태풍이 다가오는군요!\n저를 테스트해주시겠습니까?", - 4: "자, 마음껏 봐주십시오.\n저와 포켓몬이 이루어내는 물의 일루전을!" - }, - "victory": { - 1: "당신은 윤진 관장을 뛰어넘을 지니어스군요!", - 2: "당신이 훈련할 때 저는 엘레강스에 집중했습니다.\n당신이 이기는 건 당연하죠.", - 3: "아하하하하!\n잘했습니다, 이번엔 당신이 이겼네요.", - 4: "모든 것을 극복하는 브릴리언트 스킬, 당신에게 느껴지네요." - }, - "defeat": { - 1: "저와 포켓몬이 이루어내는 물의 일루전이 승리했습니다.", - 2: "아하하핫, 저는 이겼고, 당신은 졌습니다.", - 3: "겉옷 빌려드릴까요? 아마도 배틀에 도움이 될겁니다!\n아하하하, 농담입니다!", - 4: "제가 승리자군요! 그리고, 당신은 졌네요." - } - }, - "crasher_wake": { - "encounter": { - 1: "철썩! 철썩! 조심해라!\n맥시멈 가면이…지금…간다!", - 2: "철썩! 철썩! 파도의 맥시멈 가면!", - 3: "밀물같은 힘으로 쓸려나가도록 해보실까!!" - }, - "victory": { - 1: "저절로 웃음이 나오게 되는군!\n크하하핫! 정말 훌륭했다!", - 2: "우왓! 끝나버렸나!\n뭐랄까…\n좀 더 싸우고 싶은 기분이야!", - 3: "이럴수가!?" - }, - "defeat": { - 1: "으하하핫! 보람차군!", - 2: "내가 이겼지만, 아쉽군! 좀 더 배틀하고 싶은데!", - 3: "잘 가게나!" - } - }, - "falkner": { - "encounter": { - 1: "넓은 하늘을 화려하게 나는 새 포켓몬의 진정한 강함을 알게 해주겠다!", - 2: "바람이여, 나에게 오라!", - 3: "아버지, 내 시합을 하늘에서도 봐줘!" - }, - "victory": { - 1: "알았다… 미련없이 땅에 내려가지.", - 2: "패배는 패배니까. 넌 정말 강하군.", - 3: "…큭! 그래, 내가 졌다." - }, - "defeat": { - 1: "아버지! 소중히 여기던 새 포켓몬으로 이겼어…", - 2: "언제나 새 포켓몬이 최강이다!", - 3: "아버지를 따라 잡은 기분이군!" - } - }, - "nessa": { - "encounter": { - 1: "똑똑한 네가 어떤 계획을 세우고 있든지, 나와 내 파트너가 가라앉혀줄 테니까 문제 없어.", - 2: "잡담하려고 나온 게 아니야. 이기려고 나온 거지!", - 3: "이건 내 포켓몬이 주는 작은 선물이야… 네가 잘 받아줘야 해!" - }, - "victory": { - 1: "너와 네 포켓몬 정말로 너무…", - 2: "어째서…? 어떻게 이럴 수 있지?!", - 3: "완전히 씻겨 나갔잖아!" - }, - "defeat": { - 1: "성난 파도가 다시 부딪혀올거니까!", - 2: "승리의 파도를 탈 시간이야!", - 3: "에헤헤!" - } - }, - "melony": { - "encounter": { - 1: "봐주지는 않을 거란다!", - 2: "그럼 이제, 시작해도 될 것 같네.", - 3: "영하의 세계로 안내해주마!" - }, - "victory": { - 1: "너… 꽤 하는구나?", - 2: "만약 주변에서 마쿠와를 찾는다면, 그 때는 따끔한 맛을 보여주도록 하렴, 알았지?", - 3: "아이스 브레이킹을 너무 문자 그대로 받아들인 것 같은데…" - }, - "defeat": { - 1: "이제 전투가 얼마나 치열할 수 있는 지 알겠니?", - 2: "아하하! 내가 또 이긴 것 같네!", - 3: "너 혹시 봐준거니?" - } - }, - "marlon": { - "encounter": { - 1: "너 강해보이네! 받아라! 승부 시작이야!", - 2: "난 넓은 대양처럼 강인하다고. 너 분명히 휩쓸려 갈거야.", - 3: "오, 내가 너를 마주 보고 있군! 둘다 파도에서 떨어지겠어." - }, - "victory": { - 1: "너… 좋은 포켓몬을 키우고 있구나! 꽤 하는군! 끝내주는 트레이너야!", - 2: "강해 보이는 게 아니고 진짜 강하구나! 에-, 나도 휩쓸려버렸어!", - 3: "넌 거친 파도처럼 강인하구나!" - }, - "defeat": { - 1: "넌 강하지만, 바다를 흔들기에는 역부족이네, 그치!", - 2: "아하핫! 내가 또 이긴 것 같네!", - 3: "달콤하네, 승리 역시 달콤하고!" - } - }, - "shauntal": { - "encounter": { - 1: "미안합니다. 도전자이시죠?\n고스트포켓몬 조련사인 사천왕 망초가 상대하겠습니다.", - 2: "겨루었던 트레이너와 포켓몬의 마음이 통하는 모습을 이야기로 만드는 것을 좋아해서요!\n그러니까 당신들에 대한 취재를 허락해 주세요?", - 3: "포켓몬과 함께 일하는 모든 사람들은 각자 이야기를 갖고 있죠.\n어떤 이야기를 들려드릴까요?" - }, - "victory": { - 1: "…우와. 저 아연실색 망연자실이에요!", - 2: "미-미 미안합니다! 먼저 포켓몬에게 사과해야지…\n\n나 때문에 괴로운 기억을 만들게 돼서 정말 미안해!", - 3: "그치만, 전 여전히 사천왕인걸요!" - }, - "defeat": { - 1: "에헤헤.", - 2: "다음 소설의 완벽한 소재를 얻었다!", - 3: "그리고 이렇게, 또 다른 이야기가 끝났습니다…" - } - }, - "marshal": { - "encounter": { - 1: "노간주 스승님이, 잠재력을 보고 네게 관심을 갖고 계시더군.\n그 힘의 한계까지 데려가는 것이 이번 의도다! 그럼 간다!", - 2: "승리, 압도적인 승리, 내가 바라는 것이다! 강인한 도전자여, 간다!", - 3: "깨뜨리는 것은 약한 자신, 관철하는 것은 강한 신념!\n 그리고 바라는 것은 압도적인 승리!" - }, - "victory": { - 1: "후우! 잘 싸웠다!", - 2: "역시 대단하구나! 싸워서 더욱더 높은 곳을 노려라…!", - 3: "너와 네 포켓몬이 보여준 그 힘, 감명 깊군…" - }, - "defeat": { - 1: "흐음.", - 2: "좋은 승부였다.", - 3: "하압! 하압! 히야아아압!!!!" - } - }, - "cheren": { - "encounter": { - 1: "넌 내 오랜 친구가 생각나게 하는군. 그 덕분에 이 배틀이 기대돼!", - 2: `왜 하고 있는지 생각하지 않으면, 포켓몬 배틀은 의미가 없어 . - $좋게 말하면, 함께 포켓몬과 승부하는 것이 무의미해 지는 것이지.`, - 3: "내 이름은 체렌! 체육관 관장이자 선생님을 하고 있지! 널 만나게 되서 기쁘군." - }, - "victory": { - 1: "고마워! 내 안에 무엇이 부족했는지 알게 됐네.", - 2: "고마워! 내가 추구하는 이상에 조금 다가간 것 같아.", - 3: "으음… 이건 문제가 있군." - }, - "defeat": { - 1: "체육관 관장으로서, 나는 넘어야할 벽이 되고자 하고 있거든.", - 2: "좋았어!", - 3: "포켓몬이 곁에 있었기 때문에 여기까지 올 수 있었어.\n생명체와 생명체라는 동등한 관계에서 포켓몬이 우리에게 도움을 주는 이유를 생각해 볼 필요는 있지." - } - }, - "chili": { - "encounter": { - 1: "이얏호-! 형제중 가장 강한 나하고 놀자고!", - 2: "짜잔! 불꽃타입 불꽃의 남자 팟, 바로 너의 상대가 되어주지!", - 3: "나와 내 불타오르는 불꽃타입 포켓몬들이 뭘 할수 있는지 보여주지!" - }, - "victory": { - 1: "졌지만… 모 두 불 태 웠 어!!", - 2: "와우! 불태워졌네!", - 3: "으악! 너가 나를 이겨버렸잖아!" - }, - "defeat": { - 1: "난 지금 불타오르고 있어, 나와 싸우게 된다면 넌 다치게 될거야!", - 2: "불장난하면 밤에 이불에 지도를 그리는 법이지!", - 3: "그러니까, 상대가 나였잖아? 너에게는 처음부터 기회가 없었다고!" - } - }, - "cilan": { - "encounter": { - 1: `개인적으로 받아들이지 마세요… 감정 상하지도 말고요… 저와 제 풀타입 포켓몬들이라면… - $음… 무슨 일이 있더라도 배틀을 할 겁니다.`, - 2: "네. 저로 괜찮다면 진심을 담아서 상대해 드리겠습니다.", - 3: "네… 그, 음, 저는 덴트입니다, 풀타입 포켓몬을 좋아합니다." - }, - "victory": { - 1: "…에- 그게… 끝나버렸나요?", - 2: `…놀랐습니다. 당신 아주 강하군요. - $팟이나 콘이라도 이길 수 없었을 것 같습니다…`, - 3: "…어라, 타이밍이 좀 잘못된것 같네요?" - }, - "defeat": { - 1: "어라? 제가 이긴 건가요?", - 2: `제 생각엔… - $아무래도 제가 이겼어야만 했을 거라 생각합니다, 팟과 콘이랑 배틀하면서 우리는 모두 더 강해졌기 때문이죠.`, - 3: "정말… 아주 짜릿한 경험이었습니다…" - } - }, - "roark": { - "encounter": { - 1: "트레이너로서 너의 실력이 어느 정도인지 그리고 함께 싸울 포켓몬이 얼마나 강한지 확인해보겠어!", - 2: "자 간다! 내 자랑이자 기쁨인 바위타입 포켓몬들이야!", - 3: "바위타입 포켓몬이야말로 최고지!", - 4: "트레이너로서 너의 실력이 어느 정도인지 그리고 함께 싸울 포켓몬이 얼마나 강한지 확인해보겠어!" - }, - "victory": { - 1: "이-이럴수가! 열심히 단련시킨 포켓몬들이!", - 2: "…져버린 건가. 다음엔 지하통로에서 화석캐기 승부를 하고 싶구나.", - 3: "네 실력이라면 승리는 당연한 결과겠지.", - 4: "뭐-뭐야?! 이럴 수가! 이것도 부족했단 말인가?", - 5: "내가 실수했군." - }, - "defeat": { - 1: "봤지? 이게 바로 내가 자랑하는 바위 스타일 전투야!", - 2: "고마워! 이번 승부로 아버지를 이길 수 있겠다는 자신감이 생겼어!", - 3: "정말 단단한 바위를 뚫고 나온 기분인데!" - } - }, - "morty": { - "encounter": { - 1: `조금만 더 노력하면, 내가 전설의 포켓몬을 만나는 미래가 보여. - $내가 그 수준에 도달할 수 있게 도와줘!`, - 2: `커다란 무지개색 포켓몬은 진정한 강함을 가진 트레이너 앞에 나타난다는 이야기가 있어. - $난 그 이야기를 믿고, 줄곧 이 곳에서 몰래 수행하고 있어. 그 결과로, 다른 사람들은 볼 수 없는 것을 볼 수 있게 됐지. - $내겐 그 포켓몬을 나타나게 할 사람의 그림자가 보이거든. - $난 그게 나라고 믿어! 넌 내가 그 수준에 올라갈 수 있도록 도와줘야겠어!`, - 3: "네가 믿든 믿지 않든, 불가사의한 힘은 존재해.", - 4: "넌 내 수련의 결실을 보게 될 거야.", - 5: "포켓몬과 너의 영혼을 하나로 만들어야 해. 가능하겠어?", - 6: "저기, 너 내 수행의 일부분이 되고 싶은거지?" - }, - "victory": { - 1: "나는 아직 멀었구나…", - 2: `그래… 여행으로 먼 곳을 돌아다니면서, 나보다 훨씬 많은 것을 봐왔구나. - $네가 조금 부럽네…`, - 3: "이게 어떻게 가능한 거지…", - 4: `우리의 잠재력은 그렇게 다르진 않은 것 같아. - $그치만 넌 그것과 다른 무언가를 많이 갖고 있는 것 같네… 흐음.`, - 5: "수련이 더 필요하겠군.", - 6: "안타깝게 됐네." - }, - "defeat": { - 1: "내가…다시 한 발짝 앞섰어.", - 2: "후후훗…", - 3: "뭐-뭐야?! 이럴 수가! 그것도 부족해?", - 4: "정말 단단한 바위를 뚫고 나온 기분인데!", - 5: "아하하하하!", - 6: "내가 이길 줄 알았어!" - } - }, - "crispin": { - "encounter": { - 1: "이기고 싶으니까 이기고 말겠어!", - 2: "싸우고 싶으면 싸운다! 이거면 충분하지 않아!?" - }, - "victory": { - 1: "이기고 싶었는데…졌잖아!", - 2: "이기지 못해서…지고 말았어!" - }, - "defeat": { - 1: "잠시만. 나 지금 이긴거지? 이긴 거 맞지! 기분 좋은데!", - 2: "우와아! 이거 굉장한데!" - } - }, - "amarys": { - "encounter": { - 1: `네리네는 그 사람을 구원하고 싶습니다. 그렇기에 패배는 용납되지 않습니다. - $… 승부를 시작합니다.`, - }, - "victory": { - 1: "네리네는… 안 된다는 건가요." - }, - "defeat": { - 1: "네리네가 승리했습니다. 수고하셨습니다." - } - }, - "lacey": { - "encounter": { - 1: "이번에는 사천왕으로서 승부하는 거니까 평소 사용하는 아이들로 상대해 드릴게요!" - }, - "victory": { - 1: "멋진 포켓몬 배틀이었어요!" - }, - "defeat": { - 1: "당신의 포켓몬의 노력에 박수를 보내주세요!" - } - }, - "drayton": { - "encounter": { - 1: `의자는 좋은 거야. 너도 그렇게 생각해? 정말 고마운 물건이지. - $왜 다들 앉지 않는 걸까. 서 있는 건 힘들잖아!`, - }, - "victory": { - 1: "전보다 더 강해질 줄이야!" - }, - "defeat": { - 1: "헤헤헷! 내 승리야. 분한 건 알겠지만 카지처럼 나가떨어지지마, 응?" - } - }, - "ramos": { - "encounter": { - 1: `그래, 올곧게 자란 초목을 모아서 만든 풀 정글짐은 어땠는가? - $자네가 느낀 그것이 나의 체육관 관장으로서의 실력이네! 한번 확인해 보겠나?`, - }, - "victory": { - 1: "포켓몬은 자네를 믿고, 자네는 그들을 믿는다…가슴이 후련해지는 승부였구먼." - }, - "defeat": { - 1: "호호호…연약해 보이는 풀잎은 콘크리트도 뚫을 수 있다네." - } - }, - "viola": { - "encounter": { - 1: `패배의 분함도 승리의 순간도… - $둘 다 최고의 피사체야! 정말 멋져 멋져! - $자, 그럼 덤비렴!`, - 2: "나 비올라는 셔트 찬스를 노리는 것처럼--승리를 노릴 거야!" - }, - "victory": { - 1: "너와 네 포켓몬은 최고의 콤비구나! 정말 멋져 멋져!", - 2: `렌즈 너머의 세계와 포켓몬의 마음으로 보는 세계… - $똑같이 보이는 풍경이지만 다양한 세계가 겹쳐져 있는 거야.` - }, - "defeat": { - 1: "내가 승리한 순간을 찍은 사진은 정말 멋져 멋져!", - 2: "좋아! 멋진 사진을 찍었어!" - } - }, - "candice": { - "encounter": { - 1: `나, 무청에게 도전하고 싶은거야? 좋아! 강한 사람을 기다리고 있었으니까! - $그치만 말해두는데, 집중하는 방법을 아는 나도 강력하거든.`, - 2: `포켓몬도 멋도 연애도 정신 집중이 중요하다고! - $무슨 뜻인지 보여줄테니까 각오해!` - }, - "victory": { - 1: "있지, 나 조금 불타오르게 됐어! 널 조금 존경하게 될지도 몰라.", - 2: `우와! 제법인데! 내가 존경하게 만들다니! - $네 집중력과 의지, 완전히 나를 압도하는 같아. ` - }, - "defeat": { - 1: "이기고자 하는 의지는 전해졌지만, 난 지지 않았어!", - 2: "봤지? 무청의 집중력! 내 포켓몬의 집중력도 대단하다구!" - } - }, - "gardenia": { - "encounter": { - 1: "너에게선 승리의 기운이 느껴져. 어쨌든 재밌을 것 같아. 포켓몬 승부하자!" - }, - "victory": { - 1: "대단해! 너 정말 강하구나!" - }, - "defeat": { - 1: "그렇지! 나와 포켓몬은 완벽해!" - } - }, - "aaron": { - "encounter": { - 1: "좋습니다! 그럼 상대해 드리죠!" - }, - "victory": { - 1: "승부는 딥하고 컴플렉스한 일이네요…" - }, - "defeat": { - 1: "사천왕을 상대로 하는 승리는 쉽게 오지 않는다구요." - } - }, - "cress": { - "encounter": { - 1: "맞습니다! 당신은 저와 제 자랑스러운 물타입 포켓몬들과 상대하게 될것입니다." - }, - "victory": { - 1: "곤란하네… 이 콘이 질 줄이야." - }, - "defeat": { - 1: "제가 당신의 상대였기 때문에 이건 당연한 결과였습니다." - } - }, - "allister": { - "encounter": { - 1: "……어니언이야.\n……가 간다…" - }, - "victory": { - 1: `충격을 받아서… 가면을 떨어뜨릴 뻔 했지만… - $네가 얼마나 강한지 확실히 봤어.`, - }, - "defeat": { - 1: "이-이게 내 실력이니까!" - } - }, - "clay": { - "encounter": { - 1: "실망스럽군! 나를 기다리게 하다니, 이 꼬마가. 아무튼 실력을 확인해 볼까!" - }, - "victory": { - 1: "이런 이런… 진심으로 싸워서 진 거라 오히려 시원한 기분이군!" - }, - "defeat": { - 1: `중요한 것은 패배에 어떻게 반응하는 거다. - $그렇기 때문에 패배를 연료로 삼아 나아가는 사람들은 강인하지.`, - } - }, - "kofu": { - "encounter": { - 1: "물포켓몬의 풀코스를! 배 터지게 먹여 주도록 하마!" - }, - "victory": { - 1: "우옷! 우오오옷! 이렇게 팔팔한 트레이너가 다 있다니!" - }, - "defeat": { - 1: "젊은 친구! 다음에 또 만나기를 기대하고 있으마!" - } - }, - "tulip": { - "encounter": { - 1: "리파의 기술로 너의 포켓몬들을 지금보다 훨~씬 아름답게 만들어 줄게!" - }, - "victory": { - 1: "너의 강함은 풀 수 없는 매직이구나." - }, - "defeat": { - 1: "…리파의 업계에서는 어중간한 재능을 가진 사람은 대체로 금방 사라져 버려." - } - }, - "sidney": { - "encounter": { - 1: `음, 좋은 표정이야. 꽤나 즐길 수 있겠는데. - $좋아! 아주 좋아! 좋았어! - $우리 함께, 포켓몬리그에서만 맛볼 수 있는 배틀을 즐겨보도록 하자!`, - }, - "victory": { - 1: "이런, 이런 져버렸군? 뭐, 꽤 즐겼으니 상관없지만." - }, - "defeat": { - 1: "기분 나빠하지 마, 알겠지?" - } - }, - "phoebe": { - "encounter": { - 1: `송화산에서 수행하면서, 고스트 타입 포켓몬과 마음이 통하게 됐어. - $응, 나와 내 포켓몬의 유대감은 정말 강해! - $이런 내 포켓몬들에게 과연 데미지를 줄 수 있을지 한번 시험해봐!`, - }, - "victory": { - 1: "아- 아, 내가 져버렸다." - }, - "defeat": { - 1: "언젠가 다시 승부할 수 있기를 기대할게!" - } - }, - "glacia": { - "encounter": { - 1: `이곳에 도전하러 오는 건 모두 어설픈 트레이너와 포켓몬뿐…. - $당신은 어떤가요? 제 진짜 실력을 발휘해도 괜찮을 정도라면 정말 기쁠텐데 말이죠…!`, - }, - "victory": { - 1: `당신과… 당신 포켓몬들의 뜨거운 혼! - $정말로 압도적인 뜨거움이네요. - $내 얼음 기술로 피해를 주지 못한 것도 놀랍지 않을정도로요!`, - }, - "defeat": { - 1: "저런, 정말로 치열한 승부였네요." - } - }, - "drake": { - "encounter": { - 1: `파트너로 포켓몬과 함께하는 승부에 무엇이 필요한지 넌 알고 있는가? - $그걸 모른다면 넌 이 몸을 이길 수 없다!`, - }, - "victory": { - 1: "훌륭하다, 라고 할 만 하군!" - }, - "defeat": { - 1: "난 승부에서 최선을 다했으니까!" - } - }, - "wallace": { - "encounter": { - 1: `뭐랄까, 너의 분위기가 조금 변한 것 같은… - $그런 느낌이 드는군. 자, 그럼 한번 확인해볼까? 너와 포켓몬의 힘을. - $그리고 확실하게 보여주도록 하지. 나와 포켓몬에 의한 물의 일루전을!`, - }, - "victory": { - 1: `훌륭하군. 넌 정말 굉장한 포켓몬 트레이너다. - $그런 너와 너의 포켓몬을 만나게 된 걸 기쁘게 생각해. 스스로 그 가치를 증명하다니!`, - }, - "defeat": { - 1: "거대한 일루전이로군!" - } - }, - "lorelei": { - "encounter": { - 1: `얼음포켓몬을 내보내면 대적할 사람이 없지! 상대를 얼린다는 건 매우 강력한 공격이야. - $네 포켓몬이 꽁꽁 얼면 그때부턴 내 손바닥 위거든! 아하하! 준비됐어?`, - }, - "victory": { - 1: "어떻게 감히!" - }, - "defeat": { - 1: "얼어붙은 넌 아무것도 할 수 없어." - } - }, - "will": { - "encounter": { - 1: `나는 전세계를 돌아다니며, 강한 에스퍼 포켓몬을 만들도록 수행해왔다. - $계속 더 정진하겠다! 패배는 선택지에 없어!`, - }, - "victory": { - 1: "이… 내가… 믿을수 없어…" - }, - "defeat": { - 1: "근소한 차이였다. 네게 부족한 것이 무엇인지 궁금하군." - } - }, - "malva": { - "encounter": { - 1: `심장이 불에 타버릴 것만 같아요. - $당신에 대한 증오로 불타고 있거든요, 얄미운 트레이너!`, - }, - "victory": { - 1: "도전자가… 사천왕 파키라에게서 멋지게 승리를 쟁취했습니다!" - }, - "defeat": { - 1: "기쁘네요! 당신을 짓밟을 수 있어서 말이죠!" - } - }, - "hala": { - "encounter": { - 1: "그럼…진심을 담아서 진지한 할라로 임하겠다!" - }, - "victory": { - 1: "네가 순례하면서 갖추게 된 강함을 느낄 수 있었다." - }, - "defeat": { - 1: "하하! 경쾌한 승부였구나!" - } - }, - "molayne": { - "encounter": { - 1: `사촌인 마마네에게 캡틴 자리는 줬지만, 아직 실력에는 자신 있어요. - $제 실력은 초신성처럼 빛나니까요!`, - }, - "victory": { - 1: "확실히 겨룰 흥미로운 트레이너를 찾았네요!" - }, - "defeat": { - 1: "아하하. 흥미로운 배틀이었네요." - } - }, - "rika": { - "encounter": { - 1: "실컷 귀여워해 줄 테니까… 한 번 열심히 해 보라고!" - }, - "victory": { - 1: "너, 꽤 하는구나!" - }, - "defeat": { - 1: "아하하! 제법인데! 역시 너는 재밌는 녀석이라니까!" - } - }, - "bruno": { - "encounter": { - 1: "우월한 힘으로 너를 부숴주지! 우! 하~앗!" - }, - "victory": { - 1: "하? 어떻게 내가 진 거지?" - }, - "defeat": { - 1: "얼마든지 내게 도전 할 수 있지만, 결과는 절대 바뀌지 않을 거다!" - } - }, - "bugsy": { - "encounter": { - 1: "내 이름은 호일! 벌레 포켓몬에 대해서라면 누구에게도 지지 않아!" - }, - "victory": { - 1: "우와, 대단해! 넌 포켓몬 전문가구나!\n내 연구는 아직 안 끝났네. 응, 네가 이겼어." - }, - "defeat": { - 1: "고마워! 방금 승부 덕분에, 내 연구도 진전을 이룬 것 같아!" - } - }, - "koga": { - "encounter": { - 1: "후하하하! 포켓몬은 단순히 강한 것만이 아니다--곧 알려주지!" - }, - "victory": { - 1: "하! 스스로 증명해냈군!" - }, - "defeat": { - 1: "인술을 피하는 방법을 배워보겠나?" - } - }, - "bertha": { - "encounter": { - 1: "그럼, 할머니가 네가 얼마나 해낼 수 있는지 보도록 할게?" - }, - "victory": { - 1: `좋아! 꼬마야, 정말로, 인상적이었단다. - $네 포켓몬은 너를 믿고 승리를 위해 최선을 다했구나. - $비록 내가 졌지만, 좋아서 바보같이 웃음이 나오는구나!`, - }, - "defeat": { - 1: "호호호! 이 할머니가 이겼구나!" - } - }, - "lenora": { - "encounter": { - 1: "자 그럼 도전자여, 애정을 담아 키운 포켓몬으로 어떤 방식으로 싸우는지 연구해 보겠다!" - }, - "victory": { - 1: "너에 대한 내 가설이 맞았네. 재능만 있는 게 아니라… 대단한 녀석이구나! 너 반할것 같잖아!" - }, - "defeat": { - 1: "아 하 하! 패배했다면, 그 이유를 분석하고, 다음 승부에서 그 지식을 활용하도록!" - } - }, - "siebold": { - "encounter": { - 1: "살아가는 동안, 궁극적인 요리와 강력한 상대를 찾기 위해… 열과 성을 다할 것입니다!" - }, - "victory": { - 1: "당신에 대한 기억을 제 가슴 속에 담아두겠습니다." - }, - "defeat": { - 1: `우리의 포켓몬 배틀은 영혼의 양식과 같습니다. 그건 저를 계속 지탱할 거예요. - $이것이 제가 전투에서 모든 것을 바친 당신에게, 경의를 표하는 방법입니다!`, - } - }, - "roxie": { - "encounter": { - 1: "간다! 너의 이성을 싹 날려줄 거야!!" - }, - "victory": { - 1: "굉-장해! 네 이성, 이미 나보다 TOXIC해버렸잖아!" - }, - "defeat": { - 1: "헤이, 잠깐-! 좀 더 진지해져! 넌 더 날아가야한다구!" - } - }, - "olivia": { - "encounter": { - 1: "여기에 소개는 필요 없지. 자, 라이치님과 승부할 시간이다!" - }, - "victory": { - 1: "정말 훌륭하군… 당신과 포켓몬 둘 다…" - }, - "defeat": { - 1: "흐-음." - } - }, - "poppy": { - "encounter": { - 1: "우와~! 뽀삐와 포켓몬 승부가 하고 싶으세요?" - }, - "victory": { - 1: "훌쩍, 으에엥~" - }, - "defeat": { - 1: `만세~! 만세~ 목수, 성공했어요! - $에헴! 리벤지 매치는 언제든지 받아 줄게요!`, - } - }, - "agatha": { - "encounter": { - 1: "포켓몬은 싸우게 하려고 있는 것이야! 진정한 싸움이라는 것을 보여주겠다!" - }, - "victory": { - 1: "이런! 넌 무언가 특별하구나, 꼬마야!" - }, - "defeat": { - 1: "바하하하. 제대로 된 승부는 이렇게 하는거다!" - } - }, - "flint": { - "encounter": { - 1: "뜨겁게 타오를 준비는 됐겠지, 이제 곧 대폭발이 다가올테니까!" - }, - "victory": { - 1: "놀랍군! 네 기술이 너무 뜨거워서, 내가 미적지근해보이잖아!" - }, - "defeat": { - 1: "하? 그게 다야? 좀 더 열정이 필요해보이는걸." - } - }, - "grimsley": { - "encounter": { - 1: "이긴 자가 모든 것을 갖고 패배한 자에겐 아무것도 남지 않는다." - }, - "victory": { - 1: "누군가가 이기면 상대한 누군가가 진다… 난 다음 승리를 목표로 하겠어!" - }, - "defeat": { - 1: "누군가가 이기면, 그 사람과 싸운 사람은 지게 되는 것이지." - } - }, - "caitlin": { - "encounter": { - 1: `피어난 꽃에서 나타난 것은 나. 거기 있는 당신… - $강함과 상냥함을 함께 갖춘 포켓몬 트레이너인 것 같네. - $이 카틀레야가 대전 상대로 원하는 건 최고의 강함… - $너도 그 실력을 마음껏 펼쳐 봐!`, - }, - "victory": { - 1: "대전을 통해서 저도 포켓몬도 성장합니다. 감사드립니다." - }, - "defeat": { - 1: "더욱 엘레강트하고 엑셀런트하게 승리를 쟁취하고 싶거든." - } - }, - "diantha": { - "encounter": { - 1: `미래를 향한 희망으로 빛나는 당신과, 당신의 포켓몬을 상대로 승부하는 것… - $솔직히, 매일매일 새로운 날을 위해 필요한 에너지가 채워지는 것 같아요! 정말로요!`, - }, - "victory": { - 1: "고귀한 영혼을 지닌 포켓몬과 트레이너의 모습에 격하게 마음이 흔들려서…" - }, - "defeat": { - 1: "정말, 환상적이야! 어떻게 생각하시나요? 저의 포켓몬들, 꽤 멋있었죠?" - } - }, - "wikstrom": { - "encounter": { - 1: `잘 왔네, 젊은 도전자여! 이 몸은 사천왕 중 한 명인 강철의 남자 간피다! - $자 그럼 간다, 간다! 간닷!`, - }, - "victory": { - 1: "정말 영광이군! 자네의 포켓몬과 서로 신뢰하는 힘, 날 능가하는군!!" - }, - "defeat": { - 1: `이게 무슨 마법이지? 내 마음의 떨림이 멈추질 않는군! - $가치 있는 상대를 이기는 것은 영혼에 날개를 달아주는 것과 같지--그런 내가 비상하는 것일까!`, - } - }, - "acerola": { - "encounter": { - 1: "포켓몬 배틀은 언제나 재미있지! 자, 내가 상대해줄게!" - }, - "victory": { - 1: "아세로라… 입이 딱 벌어졌어! 어떻게 해낸 거야?!" - }, - "defeat": { - 1: "후아~! 놀라운 승리네!" - } - }, - "larry_elite": { - "encounter": { - 1: `…안녕하십니까, 청목입니다. - $귀찮게도 저는 사천왕도 겸임하고 있습니다.`, - }, - "victory": { - 1: "날고 있는 새포켓몬도 떨어뜨릴 기세로군요." - }, - "defeat": { - 1: "치프와 만나기로 한 시각이군요." - } - }, - "lance": { - "encounter": { - 1: "널 기다리고 있었다. 그 실력을 시험해보겠어.", - 2: "여기까지 올 수 있을거라고 생각했다. 슬슬 시작해볼까." - }, - "victory": { - 1: "날 따라잡았군. 훌륭해!", - 2: "다른 트레이너가 날 이길 거라곤 생각 못했는데… 놀랍군." - }, - "defeat": { - 1: "근소하군. 다시 해볼까?", - 2: "네가 약해서가 아니다. 신경쓰지 말도록." - } - }, - "karen": { - "encounter": { - 1: "난 카렌! 내 악 타입 포켓몬과의 승부를 원하니?", - 2: "난 네가 이전에 만났던 트레이너들과는 달라.", - 3: "강한 포켓몬, 약한 포켓몬, 그런 건 사람이 멋대로 정하는 것." - }, - "victory": { - 1: "좋아하는 마음이 전해진다면 포켓몬도 답할거야. 그렇게 강해지는 거지", - 2: "난 내가 선택한 길을 걸어갈거야.", - 3: "챔피언이 너를 기다리고 있어." - }, - "defeat": { - 1: "정말 강한 트레이너라면 좋아하는 포켓몬으로 이길 수 있도록 열심히 해야 해.", - 2: "뭐, 비교적 재밌었어.", - 3: "언제라도 다시 찾아와, 상대해줄게." - } - }, - "milo": { - "encounter": { - 1: `그렇다는 건 당신이 포켓몬을 아주 깊게 이해하고 있다는 뜻이겠죠? - $이거 만만치 않은 승부가 되겠네요! - $저도 다이맥스를 사용해야겠어요!`, - }, - "victory": { - 1: "풀의 힘이 모두 시들어버리다니… 당신은 굉장한 도전자시군요!" - }, - "defeat": { - 1: "충격과 공포를 전해드리겠습니다." - } - }, - "lucian": { - "encounter": { - 1: `잠깐, 기다려주세요. 제가 읽던 책이 거의 클라이맥스에 도달했거든요… - $주인공이 성스러운 검을 얻었고 마지막 시련을 앞두고 있는데… 아, 신경 쓰지 마세요. - $여기까지 왔으니, 그건 제쳐두고 당신과 싸워야겠습니다. - $당신이 과연 주인공이 될 그릇인지 확인해 보도록 하죠!` - }, - "victory": { - 1: "그렇군요… 결국 체크메이트인가요." - }, - "defeat": { - 1: "제 평판을 지켜냈네요." - } - }, - "drasna": { - "encounter": { - 1: `당신 강하시죠? 그것도 상당히 꽤 말이에요… - $어머 기뻐라! 그런 상대와 놀면 포켓몬들도 쑥쑥 크겠어요!` - }, - "victory": { - 1: "어머머 벌써 끝나버리다니… 미안해요, 괜찮으면 또 오세요!" - }, - "defeat": { - 1: "어머, 웬일이야?" - } - }, - "kahili": { - "encounter": { - 1: "자, 여기에서… 승리의 바람이 부는 쪽은 당신과 저 중에 어느 쪽일까요?" - }, - "victory": { - 1: "사천왕으로서 분하지만 당신들의 강함은 진정한 강함이군요." - }, - "defeat": { - 1: "이것이 에이스니까요!" - } - }, - "hassel": { - "encounter": { - 1: "맹렬하게 몰아치는 승부의 숨결을 직접 가르쳐 드리겠습니다!!" - }, - "victory": { - 1: `이번에는 당신이 승리를 쟁취했군요. - $하지만, 시합의 흐름을 보니… 다음 승부는 또 어떻게 될지 모르겠네요.`, - }, - "defeat": { - 1: "저에게 더 배우고 싶은 것이 있으시다면 또 승부하도록 하죠." - } - }, - "blue": { - "encounter": { - 1: "여기까지 왔다니, 실력이 꽤 봐줄만 할 것 같은데." - }, - "victory": { - 1: "그 녀석한테만 지는 줄 알았는데… 누구냐고? 하, 하…" - }, - "defeat": { - 1: "봤지? 여기까지 온 내 실력." - } - }, - "piers": { - "encounter": { - 1: "뜨거운 현장을 즐길 준비는 됐겠지! 스파이크 마을, it's time to rock!" - }, - "victory": { - 1: "나도 내 멤버들도 최선을 다했어. 다음에 또 배틀하자고…" - }, - "defeat": { - 1: "소리를 지르느라 목이 가버렸군… 그렇지만 박진감 넘치는 배틀이었다!" - } - }, - "red": { - "encounter": { - 1: "…!" - }, - "victory": { - 1: "…?" - }, - "defeat": { - 1: "…!" - } - }, - "jasmine": { - "encounter": { - 1: "와… 당신의 포켓몬은 인상적이네요. 재미있을 것 같아요." - }, - "victory": { - 1: "당신은 정말 강하네요. 저도 더 열심히 노력해야겠어요." - }, - "defeat": { - 1: "이길 줄은 몰랐어요." - } - }, - "lance_champion": { - "encounter": { - 1: "여전히 난 챔피언이다. 더이상 주저할 게 없군." - }, - "victory": { - 1: "새로운 챔피언의 등장이군." - }, - "defeat": { - 1: "성공적으로 챔피언 자리를 지켜냈다." - } - }, - "steven": { - "encounter": { - 1: `넌… 포켓몬과 함께 모험을 하면서 무엇을 봤지? - $많은 트레이너와 만나면서 무엇을 느꼈지? - $풍요로운 이 지역을 돌아다니면서, 네 안에서 눈뜨기 시작한 무언가… - $그 모든 것을 나에게 쏟아부었으면 좋겠어. - $나와 내 포켓몬들도 전력을 다해 상대해줄 테니까!`, - }, - "victory": { - 1: "챔피언인 내가 질 줄이야…" - }, - "defeat": { - 1: "덕분에 즐거웠어! 고마워!" - } - }, - "cynthia": { - "encounter": { - 1: "나, 난천은, 네 도전을 받아들일게! 온 힘을 다해 너와 시합하겠어!" - }, - "victory": { - 1: "포켓몬 배틀보다 재밌는 것은 없지만, 언젠간 끝나기 마련이니…" - }, - "defeat": { - 1: "비록 졌어도, 포켓몬에 대한 사랑은 잃지 않도록 해." - } - }, - "iris": { - "encounter": { - 1: `나는 말이지, 강한 트레이너와의 진지한 승부를 즐겨! - $왜냐면 그렇잖아! 이곳에 오는 건 마음 깊이 승리를 추구하는 트레이너. - #함께 싸우는 건 수많은 승부를 헤쳐온 포켓몬. - $그런 상대와 겨룰 수 있다면 나도! 내 포켓몬도! - $더욱더 강해지고 서로 알 수 있으니까! 으응! 그럼 간다! - $포켓몬리그 챔피언 아이리스! 당신을 이기겠습니다!!`, - }, - "victory": { - 1: "후와아아아… 힘을 모두 발휘했는데도 우리가 졌네." - }, - "defeat": { - 1: "우와! 이겼다!" - } - }, - "hau": { - "encounter": { - 1: `트레이너가 따뜻한 지역 출신인지 추운 지역 출신인지에 따라 배틀 스타일이 달라지는지 궁금해졌어. - $그럼 테스트 해볼게~!`, - }, - "victory": { - 1: "멋진데~! 이제 너의 스타일을 조금 더 잘 알게된 것 같아!" - }, - "defeat": { - 1: "이런, 그건 그냥 승부였는데~!" - } - }, - "geeta": { - "encounter": { - 1: `그 도전장, 한 번 더 승낙하도록 하죠. - $자… 훈련의 결실을 보여주세요.`, - }, - "victory": { - 1: "당신이 이룰 업적에 대한 소식들, 기다리고 있겠습니다!" - }, - "defeat": { - 1: "무슨 문제라도 있나요? 이게 전부라니, 그럴리 없잖아요?" - } - }, - "nemona": { - "encounter": { - 1: "만세! 나 너무 기대돼! 이제 전력으로 승부하는거야~!" - }, - "victory": { - 1: "우와, 조금 문제 있지만, 그래도 너무 재밌었어! 다음에는 지지 않을거야!" - }, - "defeat": { - 1: "우와, 너무 멋진 승부였어! 정말로 강하네." - } - }, - "leon": { - "encounter": { - 1: "레츠, 챔피언 타임!!!" - }, - "victory": { - 1: `챔피언 타임은 끝났어… - $하지만 정말 멋진 시간이었지! - $최고의 시합을 만들어줘서 고맙다!`, - }, - "defeat": { - 1: "최고의 챔피언 타임이었어, 정말로!" - } - }, - "whitney": { - "encounter": { - 1: "있지! 포켓몬들 말이야, 정말 너무 귀엽지?" - }, - "victory": { - 1: "흑! 으아앙! 너무해!" - }, - "defeat": { - 1: "이걸로 끝!" - } - }, - "chuck": { - "encounter": { - 1: "하! 나에게 도전하겠다고? 용감한 거냐, 아니면 그냥 무모한 거냐?" - }, - "victory": { - 1: "자네 강하군! 나를 제자로 삼아주겠나?" - }, - "defeat": { - 1: "자. 내가 자네보다 얼마나 더 강력한지 깨달았겠지?" - } - }, - "katy": { - "encounter": { - 1: "쓰러지고 싶지 않다면 방심하지 말고 열심히 해 봐~" - }, - "victory": { - 1: "내 포켓몬들 모두 지쳐서 헤벌레~ 해졌어~" - }, - "defeat": { - 1: "비비용~ 많~이 먹으렴~" - } - }, - "pryce": { - "encounter": { - 1: "젊음만으로는 승리를 보장할 수 없다! 중요한 것은 경험이다." - }, - "victory": { - 1: "특출하군! 완벽해. 지금 이 느낌을 잊지 말도록." - }, - "defeat": { - 1: "내가 예상했던 그대로군." - } - }, - "clair": { - "encounter": { - 1: "내가 누군지 알지? 그런데도 감히 내게 도전해?" - }, - "victory": { - 1: "네 실력이 어디까지 올라갈 수 있는지 궁금하네. 아주 흥미진진하겠어." - }, - "defeat": { - 1: "끝이다." - } - }, - "maylene": { - "encounter": { - 1: `지금 당신에게 도전하러 왔어요. - $전력을 다할 테니 각오하세요!`, - }, - "victory": { - 1: "나의 패배입니다…" - }, - "defeat": { - 1: "멋진 승부였습니다." - } - }, - "fantina": { - "encounter": { - 1: `당신도 도전해 보세요. 전 당신을 이기겠어요. - $그것이 체육관 관장!`, - }, - "victory": { - 1: "당신 최고로 강해요. 나 진 것 알아요." - }, - "defeat": { - 1: "너무, 너무 행복해요!" - } - }, - "byron": { - "encounter": { - 1: `젊은 트레이너여! 자네는 내 아들 강석처럼 젊군. - $젊은 트레이너가 많아질수록, 포켓몬의 미래도 밝지! - $그러니, 젊은이들이 넘어야할 벽으로서 상대해주겠다!`, - }, - "victory": { - 1: "흠! 내 견고한 포켓몬이--져버렸군!" - }, - "defeat": { - 1: "으하하핫! 내 견고한 포켓몬은 어땠나?!" - } - }, - "olympia": { - "encounter": { - 1: "이 의식은 앞으로의 길을 정하는 것입니다. 포켓몬 승부를 시작해볼까요!" - }, - "victory": { - 1: "당신이라면 별이라도 움직여서 가야 할 길을 만들어 낼 것 같습니다." - }, - "defeat": { - 1: "우리의 길은 이제 분명해졌습니다." - } - }, - "volkner": { - "encounter": { - 1: `여기까지 왔으니, 넌 꽤 강하겠군… - $네가 내게 포켓몬 승부의 즐거움을 상기시켜 줄 트레이너이길 바란다!`, - }, - "victory": { - 1: `너 나를 이겼군… - $네 열정과 포켓몬이 그런 너를 위해 싸워준 고귀한 방식… - $심지어 스릴까지 넘쳤다. 아주 좋은 승부였어.`, - }, - "defeat": { - 1: `전혀 충격적이지 않았다… - $이런 건 원하지 않았어!`, - } - }, - "burgh": { - "encounter": { - 1: `으-음… 이번 배틀에서 이기면, 예전과는 다른 그림을 그릴 수 있을 것 같아. - $맞아! 난 승리 뮤즈의 목소리를 선명하게 들을 수 있거든. 그럼 승부다!`, - 2: `물론, 난 내 포켓몬을 자랑스럽게 생각하거든! - $자 그럼… 바로 승부할까!` - }, - "victory": { - 1: "벌써 끝이라고? 뮤즈가 나를 버리고 떠나버렸나?", - 2: "아우… 져버렸네! 너 굉장히 강하잖아!" - }, - "defeat": { - 1: "우와… 왠지 뭔가 아름답네, 그치…", - 2: `가끔 사람들이 못난 승리라고 말하는 걸 듣곤 해. - $그치만 난 최선을 다했다면, 어떤 승리든 아름답다고 생각하거든.` - } - }, - "elesa": { - "encounter": { - 1: `컴플리트…! 확신이 들때면, 내 몸을 통하는 전기가 짜릿짜릿하게 느껴져! - $그 감각을 느끼고 싶으니까…, 다음은 사랑스러운 포켓몬들로 너를 어질어질하게 할게!`, - }, - "victory": { - 1: "어질어질하게 만들 셈이였는데, 너한테는 짜릿짜릿하게 당해버렸네." - }, - "defeat": { - 1: "왠지 부족한 기분이야… 다음에는 최선을 다할 수 있지?" - } - }, - "skyla": { - "encounter": { - 1: `드디어 대결의 시간이야! 누가 정상에 오를지 결정짓는 포켓몬 배틀, 그치? - $난 정상에 있는 게 좋아! 높은 곳에서는 항상 멀리 볼 수 있으니까! - $그럼, 다음은 나랑 더욱 즐거운 것을 할까?`, - }, - "victory": { - 1: "배틀에서 네 상대가 되는 거, 뭔가 새로운 모티브가 되네. 고마워!" - }, - "defeat": { - 1: "이기든 지든, 항상 무언가를 얻게 돼, 그치?" - } - }, - "brycen": { - "encounter": { - 1: `다른사람이나 포켓몬과 함께 있을 때도 힘이 생긴다. - $그 도움을 받는 것이 너를 강하게 만들었겠지. 그 힘을 보이거라!`, - }, - "victory": { - 1: "너와 포켓몬과! 멋진 콤비네이션! 아름다운 우정!" - }, - "defeat": { - 1: "극한에서 시험받고 단련하도록!" - } - }, - "drayden": { - "encounter": { - 1: `지금 찾는 것은 밝은 미래를 보여줄 젋은 트레이너의 존재. - $승부에서 모든 걸 보이도록. 네 기술, 내 경험, 그리고 포켓몬을 키워온 사랑도 함께!`, - }, - "victory": { - 1: "패배하여 끓어오르는 이 마음… 뭐라고 표현해야 좋을까." - }, - "defeat": { - 1: "실망스럽군! 난 자네의 능력이 그보다 더 크다는 걸 알고있네!" - } - }, - "grant": { - "encounter": { - 1: `제가 바라는 것은 단 하나뿐입니다. - $서로가 서로를 뛰어넘어, 더 높은 벽에 도달하는 것입니다.`, - }, - "victory": { - 1: "내 앞에 솟아 있는 높은 벽… 그건 바로 당신입니다." - }, - "defeat": { - 1: `인생에서 중요한 교훈은 간단합니다. - $포기하지 않는 것. - $이것이 전부입니다.`, - } - }, - "korrina": { - "encounter": { - 1: "코르니 납시오!" - }, - "victory": { - 1: "네 존재가 너의 포켓몬을 점점 진화시키고 있어!" - }, - "defeat": { - 1: "정말 멋진 배틀이었어!" - } - }, - "clemont": { - "encounter": { - 1: "아앗! 잘 부탁드립니다!" - }, - "victory": { - 1: "당신들의 승부를 향한 마음에 자극을 받았습니다!" - }, - "defeat": { - 1: "저의 슈퍼트레이닝 발명품이 효과가 있는 것 같군요!" - } - }, - "valerie": { - "encounter": { - 1: `어라,트레이너님… 슝슝 워프해서… 이렇게 만나서 반갑네. - $그리고 내가 보기엔 당신은 노력했기에, 이 승부에 참가할 수 있게 된 것 같아. - $찾기 힘든 요정 같은 페어리 타입, 우리 포켓몬들 사뿐하고 화사하지만 강하다구.`, - }, - "victory": { - 1: "난 당신이 내일을 생각하며 웃을 수 있는 것들을 찾길 바라고 있을게…" - }, - "defeat": { - 1: "앗 이런, 가엾어라…" - } - }, - "wulfric": { - "encounter": { - 1: `그거 알아? 그거… 전투와 유대감을 통해 배운다거나 하는… 거 뭐더라, 음. - $여튼 말이지, 난 그냥 재밌어서 하는 거야. - $내 자랑은 별로 듣고 싶지 않으려나? 자, 포켓몬을 꺼내자!`, - }, - "victory": { - 1: "그거야, 바로 그거! 멋지다고. 단단한 얼음을 깨부쉈구나!" - }, - "defeat": { - 1: "나와 싸우면 그런 일이 벌어진다니까!" - } - }, - "kabu": { - "encounter": { - 1: `모든 트레이너와 포켓몬은 이기기 위해 훈련을 하고 있다. - $하지만 싸우는 상대 역시 그만큼 노력하고 있지. - $ 결국 승부는 실전에서, 얼마만큼 제 실력을 발휘할 수 있느냐에 달렸다.`, - }, - "victory": { - 1: "오늘 너와 싸울 수 있어서 참 기뻤다!" - }, - "defeat": { - 1: "내 성장을 체감하게 되는군!" - } - }, - "bea": { - "encounter": { - 1: `당신은 과연, 어떤 공격에도 흔들리지 않는 마음을 가졌을까요? - $제가 시험해보겠습니다, 준비는 되셨습니까?`, - }, - "victory": { - 1: "당신이 데리고 있는 포켓몬에게서 무예의 혼을 느꼈습니다." - }, - "defeat": { - 1: "누구나 바랄 법한 최고의 경기였습니다." - } - }, - "opal": { - "encounter": { - 1: "그럼 너의 파트너 포켓몬 다루는 실력을 내게 보여주거라!" - }, - "victory": { - 1: "핑크는 부족하지만, 너희는 좋은 트레이너와 포켓몬이구나." - }, - "defeat": { - 1: "내가 보기엔, 불합격이란다." - } - }, - "bede": { - "encounter": { - 1: "의심할 여지 없이 증명하겠습니다. 당신이 한심한지, 그리고 내가 얼마나 강한지!" - }, - "victory": { - 1: "잘 봤습니다… 뭐, 꽤 괜찮네요. 전 그렇게 열심히 하지도 않았으니까요." - }, - "defeat": { - 1: "이런 결과, 나쁘지 않군요." - } - }, - "gordie": { - "encounter": { - 1: "그럼, 빨리 끝내도록 하죠." - }, - "victory": { - 1: "구멍이 있다면 들어가고 싶군요… 아니지, 여기선 빠지고 싶다고 해야하나?" - }, - "defeat": { - 1: "이런 배틀이라면, 매번 승리가 따라올 것 같네요!" - } - }, - "marnie": { - "encounter": { - 1: `사실은, 말했던 일들이 해결 되고 나면… 결국은 나 자신이 챔피언이 되고싶다는 걸 알았으니까! - $그러니까 너의 팀을 기분 좋게 잠들게 해주겠어!`, - }, - "victory": { - 1: "응, 그래서 내가 졌구나… 그치만 너와 네 포켓몬의 좋은 점을 많이 볼 수 있었어!" - }, - "defeat": { - 1: "우리의 배틀 방식을 즐겼길 바라." - } - }, - "raihan": { - "encounter": { - 1: "챔피언도 쓰러뜨리고, 토너먼트에서도 우승해서, 위대한 나 금랑님이 얼마나 강한지 세계에 증명 해보실까!" - }, - "victory": { - 1: `역시 난 진 다음에도 멋있네! - $조금 분하지만…. - $기념으로 셀카라도 찍어둘까…!`, - }, - "defeat": { - 1: "자, 이 순간을 기억하기 위한 셀카를 찍자고." - } - }, - "brassius": { - "encounter": { - 1: "준비는 됐겠지!? 그럼, 우리 둘의 예술적인 합작품을 한번 만들어 보도록 할까!" - }, - "victory": { - 1: "아… 아방가르드!!" - }, - "defeat": { - 1: "바로 신작을 만들러 가야 하니 이만 실례하겠다!" - } - }, - "iono": { - "encounter": { - 1: `자~ 오늘의 각오는~ 모야모야~? - $... - $그럼, 이제 시작해 볼까! - $도전자님의 실력은 과연 과연~!?`, - }, - "victory": { - 1: "너의 반짝임은 1000만볼트!" - }, - "defeat": { - 1: "당신의 눈길을 일렉트릭네트로 뾰로롱!" - } - }, - "larry": { - "encounter": { - 1: "그렇습니다. 심플한 것이 가장 강한 것입니다!" - }, - "victory": { - 1: "허, 이걸로 한 방 먹은 게 되었군요." - }, - "defeat": { - 1: "오늘은 저는 이만 실례하겠습니다." - } - }, - "ryme": { - "encounter": { - 1: "나의 영혼 흔들어 봐 Come On!" - }, - "victory": { - 1: "너의 Cool한 Youth 나의 Soul이 Move!" - }, - "defeat": { - 1: "Bye Bye Baby~!" - } - }, - "grusha": { - "encounter": { - 1: "내가 너를 철저하게 얼려 버리면 고민할 것도 없겠지!" - }, - "victory": { - 1: "너의 그 열기… 싫지 않아." - }, - "defeat": { - 1: "너에겐 아직 열기가 부족하구나." - } - }, - "marnie_elite": { - "encounter": { - 1: "여기까지 왔구나? 포켓몬 다루는 실력 좀 볼까!", - 2: "최선을 다할 거니까, 쉽게 넘어갈 수 있을 거라고 생각하지 마!" - }, - "victory": { - 1: "내가 지다니 믿을 수 없어… 그렇지만 네가 바란 것도 이런 승리였겠지. 잘했어!", - 2: "난 여전히 배울 게 많은 것 같아. 그래도, 멋진 승부였어!" - }, - "defeat": { - 1: "잘 싸웠지만, 내가 위야! 다음에는 더 잘해봐!", - 2: "트레이닝이 제값을 하는 것 같네. 승부에 응해줘서 고마워!" - } - }, - "nessa_elite": { - "encounter": { - 1: "조류가 오늘은 내 편인 것 같네. 휩쓸릴 준비 됐어?", - 2: "이번 승부로 파도를 일으키는 거야! 준비는 됐겠지!" - }, - "victory": { - 1: "너 그런 바다를 완벽하게 버텨냈네… 잘했어!", - 2: "내 쪽의 해류가 너와 맞지 않았던 거 같네. 잘했어!" - }, - "defeat": { - 1: "물은 항상 자기 길을 찾아 흐르지. 상쾌한 승부였어!", - 2: "잘 싸웠지만, 바다의 힘은 막을 수 없다고!" - } - }, - "bea_elite": { - "encounter": { - 1: "준비는 되셨겠죠! 제 투지가 불타고 있습니다!", - 2: "가차 없는 제 속도를 따라잡으실 수 있는지 지켜보겠습니다!" - }, - "victory": { - 1: "당신의 힘… 인상적이군요. 정말로 이기실 만합니다.", - 2: "이런 강렬함은 처음 느껴봅니다. 대단하군요!" - }, - "defeat": { - 1: "치열했던 훈련으로 또 한번 승리를 거두게 뒀군요! 고생하셨습니다!", - 2: "당신도 힘냈겠지만, 제가 더 열심히 훈련했거든요. 좋은 배틀이었습니다!" - } - }, - "allister_elite": { - "encounter": { - 1: "그림자가 떨어지네… 두려움에 맞설 준비는 됐어?", - 2: "내가 다루는 어둠을 감당할 수 있는지 지켜볼게." - }, - "victory": { - 1: "너 그림자를 쫓아내 버렸구나… 일단은. 잘했어.", - 2: "네 빛이 어둠을 관통해 버렸네. 훌륭해." - }, - "defeat": { - 1: "그림자가 말했어… 네 힘은 아직 부족한 것 같아.", - 2: "어둠의 승리… 다음번에는 빛을 보게 될 거야." - } - }, - "raihan_elite": { - "encounter": { - 1: "폭풍이 몰아치는군! 네가 이 배틀에서도 견뎌낼 수 있는지 지켜보겠어!", - 2: "폭풍의 눈과 마주칠 준비는 됐겠지!" - }, - "victory": { - 1: "폭풍을 이겨내다니… 정말 놀라운걸!", - 2: "너 바람에 완벽하게 올라탔구나… 대단한 승부였어!" - }, - "defeat": { - 1: "폭풍을 견디고, 또 다른 승리도 잡아버렸네! 좋은 승부였어!", - 2: "넌 내 폭풍을 잡아냈잖아! 다음엔 더 잘해봐!" - } - }, - "alder": { - "encounter": { - 1: "하나지방에서 가장 강한 트레이너를 상대할 준비는 됐나?" - }, - "victory": { - 1: "장하구나! 실로 견줄 자가 천하에 없도다!" - }, - "defeat": { - 1: `나의 마음에 상쾌한 바람이 지나갔다... - $정말 대단한 노력이다!` - } - }, - "kieran": { - "encounter": { - 1: `난 노력을 통해 강해지고 또 강해지지! - $난 지지 않아.` - }, - "victory": { - 1: `믿을 수 없어... - $정말 재밌고 가슴 뛰는 배틀이었어!` - }, - "defeat": { - 1: `세상에 마상에! 정말 멋진 배틀이었어! - $네가 더 열심히 훈련할 시간이야.` - } - }, - "rival": { - "encounter": { - 1: `@c{smile}오, 찾았다! 떠나려는 건 알고 있었지만\n인사정도는 해줄 줄 알았는데… - $@c{smile_eclosed}그러니까 정말로 꿈을 좇겠다는 거지?\n듣고도 못 믿었다니까. - $@c{serious_smile_fists}여기까지 온 김에, 배틀은 어때?\n준비가 됐나 보자구. - $@c{serious_mopen_fists}망설이지 말고,\n너의 진면목을 보여봐!` - }, - "victory": { - 1: `@c{shock}와… 정말 깔끔하게 당했네.\n초보자 맞아? - $@c{smile}운이 따른 건지도 모르겠지만…\n그래도 정말 꿈을 이룰 지도. - $그나저나, 박사님께서 이걸 전해달라고 하시더라.\n좋아 보이던데. - $@c{serious_smile_fists}아무튼, 힘 내는거야! - $@c{smile}아- 그리고 이벤트 즐겁게 보내!` - }, - }, - "rival_female": { - "encounter": { - 1: `@c{smile_wave}여깄구나! 찾고 있었어!\n@c{angry_mopen}절친한테 작별인사도 안 하는거야? - $@c{smile_ehalf}꿈을 향해 떠나는거구나. 그렇지?\n이런 날이 오긴 하네… - $@c{smile}아무튼, 날 까먹고 가버린 건 용서해주겠어.\n@c{smile_wave_wink}배틀을 해준다면 말야! - $@c{angry_mopen}최선을 다 해 봐.\n모험을 시작과 동시에 끝내고 싶지 않다면!` - }, - "victory": { - 1: `@c{shock}왜 벌써 이렇게 센 건데?!@d{96}\n@c{angry}아니면 뭔가 속임수, 그런 거? - $@c{smile_wave_wink}농담, 농담!@d{64} @c{smile_eclosed}내가 진 거 맞아…\n너 정말 앞으로도 잘 하겠는데. - $@c{smile}아 그래, 박사님께서 전해달라던 물건.\n도움이 되면 좋겠어! - $@c{smile_wave}항상 최선을 다 하라구! 믿고 있을게! - $@c{smile}아- 그리고 이벤트 즐겁게 보내!` - }, - }, - "rival_2": { - "encounter": { - 1: `@c{smile}어라, 너 여깄었구나?\n@c{smile_eclosed}아직도 전승 중이라, 이거지…? - $@c{serious_mopen_fists}널 쫓아서 온 것 같아 보이겠지만, 오해야. - $@c{serious_smile_fists}그래도 솔직히 그 때부터 쭉 재대결이 간절했어. - $그 동안의 훈련도 있겠다 마침 좋은 기회같지? - $@c{serious_mopen_fists}자, 전처럼!\n배틀이야!` - }, - "victory": { - 1: `@c{neutral_eclosed}이런. 자신감이 과했나봐. - $@c{smile}그래, 또 지고 말았네.\n@c{serious_mopen_fists}좀 더 열심히 훈련을 해야겠어!\n - $@c{smile}너한테 도움이 필요할 것 같지는 않지만, 이거.\n남는 게 있어서 말이야. - $@c{serious_smile_fists}물론 이번이 마지막이야, 알겠지?\n공평하게 하지 않으면 그게 내 핑계거리가 되고 말거야. - $@c{smile}이제 갈게. 앞으로도 조심하고, 이벤트도 즐겁게 보내!` - }, - }, - "rival_2_female": { - "encounter": { - 1: `@c{smile_wave}우연이네, 이런 곳에서 만나고.\n아직 연전연승이구나? @c{angry_mopen}나쁘지 않아! - $@c{angry_mopen}무슨 생각하고있는지 알겠어, 하지만 아냐.\n@c{smile_eclosed}우연히 근처에 있었을 뿐이라구. - $@c{smile_ehalf}그래도 마침, 가끔은 지는것도 괜찮다고 알려주고 싶었는데. - $@c{smile}우린 실수를 통해서도 성장할 수 있잖아.\n때로는 성공을 반복할 때보다도 더 많이 말야. - $@c{angry_mopen}어쨌든간에, 나도 이런 때를 위해 훈련해왔으니까,\n너도 최선을 다 하는게 좋을 거야!` - }, - "victory": { - 1: `@c{neutral}이… 번에도 져버릴 줄이야… - $@c{smile}으, 그래. 더 열심히 훈련하면 되겠지! - $@c{smile_wave}이것도 하나 더 챙겨왔으니 받아!\n@c{smile_wave_wink}감사 인사는 됐다구~. - $@c{angry_mopen}하지만, 마지막이야!\n또 이렇게 공짜로 나눠주진 않을 테니까! - $@c{smile_wave}그럼! 이벤트 잘 즐기고!` - }, - "defeat": { - 1: "가끔은 지는 것도 괜찮아…" - } - }, - "rival_3": { - "encounter": { - 1: `@c{smile}이게 누구야! 오랜만이야.\n@c{neutral}역시나… 쭉 이기고 있었구나? - $@c{neutral_eclosed}상황이 좀… 그렇더라. \n혼자 마을로 돌아가봤자 너 없인 예전같아질 수 없겠지. - $@c{serious}이기적인 이야기란건 알지만 말해야겠어.\n@c{neutral_eclosed}너 지금 좀 아닌 것 같아. - $@c{serious}계속 이기기만 하겠다는 건 너무 비현실적이야.\n사람은 원래 꺾여가며 성장하는 거라고. - $@c{neutral_eclosed}물론 지금까지는 잘 해왔다고 생각하겠지만,\n갈 길이 멀지. @c{neutral}대비는 되어 있어? - $@c{serious_mopen_fists}그렇다면, 내게 증명해 줘.` - }, - "victory": { - 1: "@c{angry_mhalf}말도 안 돼… 한시도 쉬지 않고 훈련했는데…\n어째서 전혀 닿을 수 없는거야?" - }, - }, - "rival_3_female": { - "encounter": { - 1: `@c{smile_wave}오랜만이야! 아직도 안 졌구나.\n@c{angry}거슬리게 말야. @c{smile_wave_wink}농담이야! - $@c{smile_ehalf}하지만 진짜, 고향이 그립진 않아? 집이나… 나는?\n나… 나는, 네가 정말 그리웠어. - $@c{smile_eclosed}난 너의 꿈과 모든 것을 응원하지만,\n넌 언젠가 패배를 겪게 될 거야. - $@c{smile}그 땐 언제나처럼 내가 곁에 있어줄게.\n@c{angry_mopen}내가 얼마나 강해졌는지도, 지금 보여 줄 테니까!` - }, - "victory": { - 1: "@c{shock}이렇게까지 했는데도… 모자랐던 거야…?\n이러면 정말로 너는 이제 영영…" - }, - "defeat": { - 1: "최선을 다 했지.\n집에 갈 시간이야." - } - }, - "rival_4": { - "encounter": { - 1: `@c{neutral}안녕. - $잡담은 넘어가자.\n@c{neutral_eclosed}너에게 이기기 위해 찾아왔어. 간단하지. - $@c{serious_mhalf_fists}이제 잠재력을 끌어내는 법은 확실히 알겠어. - $@c{smile}잠이나 사회적인 활동들.\n줄일 수 있는 불필요한 시간이 아주 많더라. - $@c{serious_mopen_fists}오직 승리 뿐이야.\n이제 아무것도 중요하지 않아. - $@c{neutral_eclosed}나도 이제 더 이상은 지지 않게 됐어.\n@c{smile_eclosed}네 그 철학이 완전히 틀린 건 아니었나봐. - $@c{angry_mhalf}패배는 약자에게 주어지는 것이고, 난 더 이상 약하지 않아. - $@c{serious_mopen_fists}준비해.` - }, - "victory": { - 1: "@c{neutral}너…@d{64} 너 대체 뭐야?" - }, - }, - "rival_4_female": { - "encounter": { - 1: `@c{neutral}나야! 날 잊어버리고 있던 건… 아니지? - $@c{smile}네 업적에 자랑스러워 할 때가 됐어. 축하해!\n하지만 네 여행도 여기까지야. - $@c{smile_eclosed}너는 나도 모르던 내 안의 무언가를 일깨웠어.\n이제 훈련 말고는 아무것도 하지 않아. - $@c{smile_ehalf}먹지도 자지도 않고, 그저 하루종일.\n더 강해지고 있어. - $@c{neutral}사실, 나… 이제 내가 뭔지도 잘 모르겠어. - $그렇지만 기량만은, 정점에 다다랐지.\n아무도 내게 이길 수 없을거야. - $그거 알아? 이게 전부 네 덕이야.\n@c{smile_ehalf}감사해야할지 증오해야할지 모르겠네. - $@c{angry_mopen}준비해.` - }, - "victory": { - 1: "@c{neutral}너…@d{64} 너 대체 뭐야?" - }, - "defeat": { - 1: "$@c{smile}네가 키운 상대야. 자랑스럽지?" - } - }, - "rival_5": { - "encounter": { - 1: "@c{neutral}…" - }, - "victory": { - 1: "@c{neutral}…" - }, - }, - "rival_5_female": { - "encounter": { - 1: "@c{neutral}…" - }, - "victory": { - 1: "@c{neutral}…" - - }, - "defeat": { - 1: "$@c{smile_ehalf}…" - } - }, - "rival_6": { - "encounter": { - 1: `@c{smile_eclosed}다시 만났구나. - $@c{neutral}모든 걸 되짚어 봤어.\n이 기이함에도 이유가 있더라. - $@c{neutral_eclosed}널 이기고자 하는 욕구, 아니면 네 꿈…\n이건 그저 더 큰 무언가의 일부일 뿐이었어. - $@c{serious}개인의 문제가 아니라 세계 전체가 엮인 일이었고…\n@c{serious_mhalf_fists}난 널 한계까지 밀어붙이기 위한 도구였던 거지. - $@c{neutral_eclosed}내가 잘 쓰였는진 모르겠지만 어쨌든 최선을 다 했고. - $@c{neutral}끝끝내 도착한 이곳은 끔찍하지만…\n언젠가 와 본 것 같아. - $@c{serious_mhalf_fists}너도 그렇게 느끼지? - $@c{serious}…그리고 무언가가 이야기하고 있어.\n오랫동안 세상에 알려져온 무언가가. - $우리가 함께했던 소중한 시간들은 이제 그저 아득해. - $@c{neutral_eclosed}실제로 일어난 일이긴 할까? - $@c{serious_mopen_fists}너는 계속 나아가야 해. 그렇지 않으면 끝나지 않아.\n오직 너만이 할 수 있어. - $@c{serious_smile_fists}잘 모르겠지만, 하나만은 확실해. - $@c{serious_mopen_fists}여기서 날 쓰러뜨리지 못한다면, 너에게 기회는 없을거란걸.` - }, - "victory": { - 1: `@c{smile_eclosed}내 역할은 여기까진 것 같아. - $하나만 약속해 줘.\n@c{smile}세상을 원래대로 되돌리고 나면, 집으로 돌아오는거야.` - }, - }, - "rival_6_female": { - "encounter": { - 1: `@c{smile_ehalf}또 이렇게 만났네. - $@c{smile_eclosed}나 머릿속이 빙글빙글 도는 것 같아… - $@c{smile_ehalf}모든 것이 이상하게 보이는 이유.\n분명 뭔가가 있어… - $@c{smile}너는 너의 꿈이 있고,\n나는 나의 야망이 있지… - $이 모든것, 우리가 하고 있는 모든 일들이\n더 큰 무언가를 위한 것임을 느낄 수밖에 없어. - $@c{smile_eclosed}나는 아마 너를…\n한계까지 몰아붙여야 하는 거야. - $@c{smile_ehalf}잘 해왔는지는 모르겠는데, 최선은 다 했어. - $이 이상하고 무서운 곳…\n모든게 선명하게 보이고… - $이건… 오래전부터 세상에 알려져온 전부. - $@c{smile_eclosed}우리가 함께해온 추억들이, 이제는 거의 떠오르지 않아. - $@c{smile_ehalf}실제로 일어났던 일일까? 너무 멀게만 느껴지는데… - $@c{angry_mopen}계속 나아가야 해. 안 그러면, 영원히 끝나지 않을 거야. \n오직 너만이 할 수 있어. - $@c{smile_ehalf}난… 이 모든게 무슨 의미가 있는지는 잘 모르겠지만…\n이거 하나는 느끼고 있어. - $@c{neutral}여기서 날 쓰러뜨리지 못한다면, 너에게 기회는 없을거란걸.` - }, - "victory": { - 1: `@c{smile_ehalf}나… 내 소임을 다 한 기분이야… - $@c{smile_eclosed}약속해 줘… 세상을 원래대로 되돌리고서… \n집으로… 무사히 돌아오는 거야. - $@c{smile_ehalf}…고마워.` - }, - }, -}; - - -// Dialogue of the NPCs in the game when the player character is female. For languages that do not have gendered pronouns, this can be set to PGMdialogue. -export const PGFdialogue: DialogueTranslationEntries = PGMdialogue; - -// Dialogue of the endboss of the game when the player character is male (Or unset) -export const PGMbattleSpecDialogue: SimpleTranslationEntries = { - "encounter": `드디어 때가 다시 도래했다.\n당도한 연유를 아는가? - $이미 도달한 적이 있기에 이 자리에 있다.\n셀 수도 없이 많이. - $아니, 사실 셀 수는 있지.\n정확히 너의 {{cycleCount}}번째다. - $매 번 태초의 정신으로 되돌아갔을 뿐.\n하지만 어떻게든, 흔적은 남는다. - $실패만을 반복했을 뿐이지만,\n지금은 네 안에 무언가가 있구나.\n - $홀로 선 것처럼 보이나, 무언가 이질적인… - $마침내 그간의 갈망을 해소해주는가?\n수천 년 간 기다려온 도전을? - $시작하지.`, - "firstStageWin": `그렇군. 정말로 있었어.\n이제 주저할 필요는 없다. - $실망시키지 않도록.`, - "secondStageWin": "…고무적이군." -}; - -// Dialogue of the endboss of the game when the player character is female. For languages that do not have gendered pronouns, this can be set to PGMbattleSpecDialogue. -export const PGFbattleSpecDialogue: SimpleTranslationEntries = PGMbattleSpecDialogue; - -// Dialogue that does not fit into any other category (e.g. tutorial messages, or the end of the game). For when the player character is male -export const PGMmiscDialogue: SimpleTranslationEntries = { - "ending": - `@c{smile}오? 이긴거야?@d{96} @c{smile_eclosed}진즉 알았어야 했는데.\n아무튼, 돌아왔구나. - $@c{smile}다 끝난거야.@d{64} 네가 굴레를 끝장냈어. - $@c{serious_smile_fists}네 꿈도 이뤄졌고말야.\n진짜로 한 번도 안 졌잖아. - $@c{neutral}기억하는 건 우리들 뿐일 모양이지만.@d{96}\n그래도, 괜찮지? - $@c{serious_smile_fists}오늘의 일은\n너와 나의 마음 속에 항상 함께할 거야. - $@c{smile_eclosed}여기 구경도 충분히 했으니\n이제 집에 가자. - $@c{serious_smile_fists}되돌아가서, 다시 배틀을 할 수도 있지 않을까?\n네가 원한다면 말야.`, - "ending_female": - `@c{shock}돌아왔구나?@d{32} 그 말은…@d{96} 이겼어?!\n@c{smile_ehalf}그럴 줄 알았다니까. - $@c{smile_eclosed}물론… 언제나 느껴왔지.\n@c{smile}끝난 거, 맞지? 이 굴레를 말이야. - $@c{smile_ehalf}네 꿈도 이뤘고 말이야.\n어떻게 한번도 안 졌대? - $네가 한 일은 나만 기억하게 될 모양이지만.\n@c{angry_mopen}나, 안 까먹어볼 테니까! - $@c{smile_wave_wink}농담이야!@d{64} @c{smile}절대 안 잊어버릴 거야.@d{32}\n마음 속엔 쭉 남아있을 수 있게. - $@c{smile_wave}어쨌든,@d{64} 시간이 좀 늦었어…@d{96}\n이런 곳에서 할 말은 아닌가? - $집에 가자. @c{smile_wave_wink}아마 내일은,\n추억을 되짚어보기 위한 배틀을 해볼 수 있을 거야.`, - "ending_endless": "끝에 도달하신 것을 축하드립니다!\n더 많은 컨텐츠를 기다려주세요.", - "ending_name": "Devs" -}; -// Dialogue that does not fit into any other category (e.g. tutorial messages, or the end of the game). For when the player character is female. For languages that do not have gendered pronouns, this can be set to PGMmiscDialogue. -export const PGFmiscDialogue: SimpleTranslationEntries = PGMmiscDialogue; - - -// Dialogue of the named double battles in the game. For when the player is male (or unset). -export const PGMdoubleBattleDialogue: DialogueTranslationEntries = { - "blue_red_double": { - "encounter": { - 1: `그린: 어이 레드! 우리가 누군지 보여주자고! - $레드: ... - $그린: 태초마을의 힘을 보여주지!`, - }, - "victory": { - 1: `그린: 훌륭한 승부였어! - $레드: ...`, - }, - }, - "red_blue_double": { - "encounter": { - 1: `레드: ...! - $그린: 이 녀석은 여전히 말이 없구나. - $그린: 그렇지만 방심해선 안 돼! 그래도 챔피언이라고!`, - }, - "victory": { - 1: `레드: ...! - $그린: 다음에는 우리가 이길 테다!`, - }, - }, - "tate_liza_double": { - "encounter": { - 1: `풍: 에헤헤... 체육관 관장이 - $란: 두 명이나 있어서 놀랐지? - $풍: 우리는 쌍둥이! - $란: 굳이 말을 하지 않아도 서로가 무슨 생각을 하고 있는지 - $풍: 자동으로 머릿속에 떠오르니까 - $란: 호흡을 척척 맞출 수가 있지!`, - }, - "victory": { - 1: `풍: 우, 우리들의 - $란: 팀워크가...!`, - }, - }, - "liza_tate_double": { - "encounter": { - 1: `란: 우후후... 체육관 관장이 - $풍: 두 명이나 있어서 놀랐어? - $란: 우리는 쌍둥이! - $풍: 완벽한 우리의 콤비네이션을 - $란: 과연 네가 깨뜨릴 수 있을까?` - }, - "victory": { - 1: `란: 우리들이 생각한 만큼 - $풍: 우리가 강하지 않았던 걸까?`, - }, - }, - "wallace_steven_double": { - "encounter": { - 1: `성호: 윤진! 우리 챔피언의 힘을 보여주자! - $윤진: 호연의 힘을 보여주마! - $성호: 간다!`, - }, - "victory": { - 1: `성호: 훌륭한 승부였어! - $윤진: 다음엔 우리가 이길 거다!`, - }, - }, - "steven_wallace_double": { - "encounter": { - 1: `성호: 너 혹시 희귀한 포켓몬 가지고 있니? - $윤진: 성호야... 우리는 포켓몬을 자랑하러 온 게 아니라 승부하러 온 거야. - $성호: 오... 그렇지... 그럼 간다!`, - }, - "victory": { - 1: `성호: 이제 승부는 끝났으니 포켓몬을 자랑해 볼까! - $윤진: 성호야...`, - }, - }, - "alder_iris_double": { - "encounter": { - 1: `노간주: 우리는 하나 지방 최강의 트레이너들이란다! - $아이리스: 이렇게 강한 트레이너와 싸울 수 있어서 정말 기뻐~!!`, - }, - "victory": { - 1: `노간주: 장하구나! 실로 견줄 자가 천하에 없도다! - $아이리스: 다음 번엔 우리가 꼭 이길 거야~!`, - }, - }, - "iris_alder_double": { - "encounter": { - 1: `아이리스: 어서 와, 도전자! 내가 바로 하나 지방 챔피언이야~! - $노간주: 아이리스야, 너무 흥분한 것 아니냐?`, - }, - "victory": { - 1: `아이리스: 후와아아아아... 최선을 다했는데도... 우리가 져버렸네! - $노간주: 하지만 우리의 패배를 발판 삼아 나아가리라!`, - }, - }, - "piers_marnie_double": { - "encounter": { - 1: `마리: 오빠, 스파이크마을의 힘을 보여주자! - $두송: 우리가 어둠을 불러올 것이다!`, - }, - "victory": { - 1: `마리: 네가 우리의 어둠에 빛을 불러왔구나! - $두송: 여긴 너무 밝네...`, - }, - }, - "marnie_piers_double": { - "encounter": { - 1: `두송: 콘서트 즐길 준비 됐어? - $마리: 오빠... 얘들은 노래가 아니라 승부를 하러 왔어...`, - }, - "victory": { - 1: `두송: 훌륭한 콘서트였다! - $마리: 오빠...`, - }, - }, -}; - -// Dialogue of the named double battles in the game. For when the player is female. For languages that do not have gendered pronouns, this can be set to PGMdoubleBattleDialogue. -export const PGFdoubleBattleDialogue: DialogueTranslationEntries = PGMdoubleBattleDialogue; diff --git a/src/locales/ko/egg.ts b/src/locales/ko/egg.json similarity index 89% rename from src/locales/ko/egg.ts rename to src/locales/ko/egg.json index 7b10b548bc4..96985be8cfe 100644 --- a/src/locales/ko/egg.ts +++ b/src/locales/ko/egg.json @@ -1,6 +1,4 @@ -import { SimpleTranslationEntries } from "#app/interfaces/locales"; - -export const egg: SimpleTranslationEntries = { +{ "egg": "알", "greatTier": "레어", "ultraTier": "에픽", @@ -24,5 +22,5 @@ export const egg: SimpleTranslationEntries = { "rareEggMoveUnlock": "레어 알 기술 {{moveName}}[[를]]\n사용할 수 있게 되었다!", "moveUPGacha": "알 기술 UP!", "shinyUPGacha": "색이 다른 포켓몬\nUP!", - "legendaryUPGacha": "UP!", -} as const; + "legendaryUPGacha": "UP!" +} \ No newline at end of file diff --git a/src/locales/ko/fight-ui-handler.json b/src/locales/ko/fight-ui-handler.json new file mode 100644 index 00000000000..a5f961095e1 --- /dev/null +++ b/src/locales/ko/fight-ui-handler.json @@ -0,0 +1,7 @@ +{ + "pp": "PP", + "power": "위력", + "accuracy": "명중률", + "abilityFlyInText": " {{pokemonName}}의 {{passive}}{{abilityName}}", + "passive": "패시브 " +} \ No newline at end of file diff --git a/src/locales/ko/fight-ui-handler.ts b/src/locales/ko/fight-ui-handler.ts deleted file mode 100644 index cf840cc4495..00000000000 --- a/src/locales/ko/fight-ui-handler.ts +++ /dev/null @@ -1,9 +0,0 @@ -import { SimpleTranslationEntries } from "#app/interfaces/locales"; - -export const fightUiHandler: SimpleTranslationEntries = { - "pp": "PP", - "power": "위력", - "accuracy": "명중률", - "abilityFlyInText": " {{pokemonName}}의 {{passive}}{{abilityName}}", - "passive": "패시브 ", // The space at the end is important -} as const; diff --git a/src/locales/ko/filter-bar.ts b/src/locales/ko/filter-bar.json similarity index 88% rename from src/locales/ko/filter-bar.ts rename to src/locales/ko/filter-bar.json index 153f0c1539c..b2104e61750 100644 --- a/src/locales/ko/filter-bar.ts +++ b/src/locales/ko/filter-bar.json @@ -1,6 +1,4 @@ -import { SimpleTranslationEntries } from "#app/interfaces/locales"; - -export const filterBar: SimpleTranslationEntries = { +{ "genFilter": "세대", "typeFilter": "타입", "caughtFilter": "포획", @@ -36,5 +34,5 @@ export const filterBar: SimpleTranslationEntries = { "sortByCost": "코스트", "sortByCandies": "사탕 수", "sortByIVs": "개체값", - "sortByName": "이름", -}; + "sortByName": "이름" +} \ No newline at end of file diff --git a/src/locales/ko/game-mode.json b/src/locales/ko/game-mode.json new file mode 100644 index 00000000000..8fd619aceeb --- /dev/null +++ b/src/locales/ko/game-mode.json @@ -0,0 +1,8 @@ +{ + "classic": "클래식", + "endless": "엔드리스", + "endlessSpliced": "엔드리스(융합체)", + "dailyRun": "데일리 런", + "unknown": "언노운", + "challenge": "챌린지" +} \ No newline at end of file diff --git a/src/locales/ko/game-mode.ts b/src/locales/ko/game-mode.ts deleted file mode 100644 index 423f2adb26a..00000000000 --- a/src/locales/ko/game-mode.ts +++ /dev/null @@ -1,10 +0,0 @@ -import { SimpleTranslationEntries } from "#app/interfaces/locales"; - -export const gameMode: SimpleTranslationEntries = { - "classic": "클래식", - "endless": "엔드리스", - "endlessSpliced": "엔드리스(융합체)", - "dailyRun": "데일리 런", - "unknown": "언노운", - "challenge": "챌린지", -} as const; diff --git a/src/locales/ko/game-stats-ui-handler.ts b/src/locales/ko/game-stats-ui-handler.json similarity index 89% rename from src/locales/ko/game-stats-ui-handler.ts rename to src/locales/ko/game-stats-ui-handler.json index d21f1b2acda..bf184acc32b 100644 --- a/src/locales/ko/game-stats-ui-handler.ts +++ b/src/locales/ko/game-stats-ui-handler.json @@ -1,6 +1,4 @@ -import { SimpleTranslationEntries } from "#app/interfaces/locales"; - -export const gameStatsUiHandler: SimpleTranslationEntries = { +{ "stats": "통계", "playTime": "플레이타임", "totalBattles": "배틀 수", @@ -40,5 +38,5 @@ export const gameStatsUiHandler: SimpleTranslationEntries = { "rareEggsPulled": "뽑은 레어 알", "epicEggsPulled": "뽑은 에픽 알", "legendaryEggsPulled": "뽑은 레전더리 알", - "manaphyEggsPulled": "뽑은 마나피 알", -} as const; + "manaphyEggsPulled": "뽑은 마나피 알" +} \ No newline at end of file diff --git a/src/locales/ko/growth.ts b/src/locales/ko/growth.json similarity index 54% rename from src/locales/ko/growth.ts rename to src/locales/ko/growth.json index 941198fd5d4..cd69c9f1cc1 100644 --- a/src/locales/ko/growth.ts +++ b/src/locales/ko/growth.json @@ -1,10 +1,8 @@ -import { SimpleTranslationEntries } from "#app/interfaces/locales"; - -export const growth: SimpleTranslationEntries = { +{ "Erratic": "불규칙", "Fast": "빠름", "Medium_Fast": "중간 빠름", "Medium_Slow": "중간 느림", "Slow": "느림", "Fluctuating": "변동" -} as const; +} \ No newline at end of file diff --git a/src/locales/ko/menu-ui-handler.ts b/src/locales/ko/menu-ui-handler.json similarity index 85% rename from src/locales/ko/menu-ui-handler.ts rename to src/locales/ko/menu-ui-handler.json index f6d8244f6e3..7fecbf7c25f 100644 --- a/src/locales/ko/menu-ui-handler.ts +++ b/src/locales/ko/menu-ui-handler.json @@ -1,10 +1,8 @@ -import { SimpleTranslationEntries } from "#app/interfaces/locales"; - -export const menuUiHandler: SimpleTranslationEntries = { +{ "GAME_SETTINGS": "게임 설정", "ACHIEVEMENTS": "업적", "STATS": "통계", - "VOUCHERS": "바우처", + "RUN_HISTORY": "플레이 이력", "EGG_LIST": "알 목록", "EGG_GACHA": "알 뽑기", "MANAGE_DATA": "데이터 관리", @@ -16,6 +14,8 @@ export const menuUiHandler: SimpleTranslationEntries = { "importSlotSelect": "불러올 슬롯을 골라주세요.", "exportSession": "세션 내보내기", "exportSlotSelect": "내보낼 슬롯을 골라주세요.", + "importRunHistory":"플레이 이력 불러오기", + "exportRunHistory":"플레이 이력 내보내기", "importData": "데이터 불러오기", "exportData": "데이터 내보내기", "consentPreferences": "쿠키 설정 동의", @@ -26,4 +26,4 @@ export const menuUiHandler: SimpleTranslationEntries = { "cancel": "취소", "losingProgressionWarning": "전투 시작으로부터의 진행 상황을 잃게 됩니다. 계속하시겠습니까?", "noEggs": "부화중인 알이 없습니다!" -} as const; +} \ No newline at end of file diff --git a/src/locales/ko/menu.ts b/src/locales/ko/menu.json similarity index 86% rename from src/locales/ko/menu.ts rename to src/locales/ko/menu.json index 368627b0d5d..7976e0bedcf 100644 --- a/src/locales/ko/menu.ts +++ b/src/locales/ko/menu.json @@ -1,11 +1,4 @@ -import { SimpleTranslationEntries } from "#app/interfaces/locales"; - -/** - * The menu namespace holds most miscellaneous text that isn't directly part of the game's - * contents or directly related to Pokemon data. This includes menu navigation, settings, - * account interactions, descriptive text, etc. - */ -export const menu: SimpleTranslationEntries = { +{ "cancel": "취소", "continue": "계속하기", "dailyRun": "데일리 런 (베타)", @@ -48,15 +41,15 @@ export const menu: SimpleTranslationEntries = { "score": "점수", "wave": "웨이브", "loading": "로딩 중…", - "loadingAsset": "Loading asset: {{assetName}}", + "loadingAsset": "리소스 로드 중: {{assetName}}", "playersOnline": "플레이어 온라인", - "yes":"예", - "no":"아니오", + "yes": "예", + "no": "아니오", "disclaimer": "면책 조항", "disclaimerDescription": "이 게임은 완전히 개발되지 않았습니다- (세이브 데이터 소실을 포함) 플레이에 지장을 주는 문제가 생길 수 있으며,\n공지 없이 업데이트가 진행 혹은 중지될 수 있습니다.", "choosePokemon": "포켓몬을 선택하세요.", "renamePokemon": "포켓몬의 닉네임은?", "rename": "닉네임 바꾸기", "nickname": "닉네임", - "errorServerDown": "서버 연결 중 문제가 발생했습니다.\n\n이 창을 종료하지 않고 두면,\n게임은 자동으로 재접속됩니다.", -} as const; + "errorServerDown": "서버 연결 중 문제가 발생했습니다.\n\n이 창을 종료하지 않고 두면,\n게임은 자동으로 재접속됩니다." +} diff --git a/src/locales/ko/modifier-select-ui-handler.ts b/src/locales/ko/modifier-select-ui-handler.json similarity index 77% rename from src/locales/ko/modifier-select-ui-handler.ts rename to src/locales/ko/modifier-select-ui-handler.json index c25b6d57af2..04b47542e14 100644 --- a/src/locales/ko/modifier-select-ui-handler.ts +++ b/src/locales/ko/modifier-select-ui-handler.json @@ -1,14 +1,12 @@ -import { SimpleTranslationEntries } from "#app/interfaces/locales"; - -export const modifierSelectUiHandler: SimpleTranslationEntries = { - "transfer": "건네주기", - "reroll": "갱신", - "lockRarities": "희귀도 고정", - "checkTeam": "파티 확인", - "transferDesc": "지닌 물건을 다른 포켓몬에게 건네줍니다.", - "rerollDesc": "돈을 소모하여 아이템 목록을 새로 고칩니다.", - "lockRaritiesDesc": "갱신되는 아이템의 희귀도가 고정됩니다(갱신 비용 증가).", - "checkTeamDesc": "파티를 확인하거나 폼 변경 아이템을 사용합니다.", - "rerollCost": "₽{{formattedMoney}}", - "itemCost": "₽{{formattedMoney}}" -} as const; +{ + "transfer": "건네주기", + "reroll": "갱신", + "lockRarities": "희귀도 고정", + "checkTeam": "파티 확인", + "transferDesc": "지닌 물건을 다른 포켓몬에게 건네줍니다.", + "rerollDesc": "돈을 소모하여 아이템 목록을 새로 고칩니다.", + "lockRaritiesDesc": "갱신되는 아이템의 희귀도가 고정됩니다(갱신 비용 증가).", + "checkTeamDesc": "파티를 확인하거나 폼 변경 아이템을 사용합니다.", + "rerollCost": "₽{{formattedMoney}}", + "itemCost": "₽{{formattedMoney}}" +} \ No newline at end of file diff --git a/src/locales/ko/modifier-type.json b/src/locales/ko/modifier-type.json new file mode 100644 index 00000000000..3d282dfffd1 --- /dev/null +++ b/src/locales/ko/modifier-type.json @@ -0,0 +1,609 @@ +{ + "ModifierType": { + "AddPokeballModifierType": { + "name": "{{pokeballName}} {{modifierCount}}개", + "description": "{{pokeballName}} {{modifierCount}}개 (현재: {{pokeballAmount}}개)를 획득한다.\n포획률: {{catchRate}}" + }, + "AddVoucherModifierType": { + "name": "{{voucherTypeName}} {{modifierCount}}장", + "description": "{{voucherTypeName}} {{modifierCount}}장을 획득한다." + }, + "PokemonHeldItemModifierType": { + "extra": { + "inoperable": "{{pokemonName}}[[는]]\n이 아이템을 얻을 수 없다!", + "tooMany": "{{pokemonName}}[[는]]\n이 아이템을 너무 많이 갖고 있다!" + } + }, + "PokemonHpRestoreModifierType": { + "description": "포켓몬 1마리의 HP를 {{restorePoints}} 또는 {{restorePercent}}% 중\n높은 수치만큼 회복한다.", + "extra": { + "fully": "포켓몬 1마리의 HP를 모두 회복한다.", + "fullyWithStatus": "포켓몬 1마리의 HP와 상태 이상을 모두 회복한다." + } + }, + "PokemonReviveModifierType": { + "description": "기절해 버린 포켓몬 1마리의 HP를 {{restorePercent}}%까지 회복한다." + }, + "PokemonStatusHealModifierType": { + "description": "포켓몬 1마리의 상태 이상을 모두 회복한다." + }, + "PokemonPpRestoreModifierType": { + "description": "포켓몬이 기억하고 있는 기술 중 1개의 PP를 {{restorePoints}}만큼 회복한다.", + "extra": { + "fully": "포켓몬이 기억하고 있는 기술 중 1개의 PP를 모두 회복한다." + } + }, + "PokemonAllMovePpRestoreModifierType": { + "description": "포켓몬이 기억하고 있는 4개의 기술 PP를 {{restorePoints}}씩 회복한다.", + "extra": { + "fully": "포켓몬이 기억하고 있는 4개의 기술 PP를 모두 회복한다." + } + }, + "PokemonPpUpModifierType": { + "description": "포켓몬이 기억하고 있는 기술 중 1개의 PP 최대치를 5마다 {{upPoints}}씩 상승시킨다. (최대 3)" + }, + "PokemonNatureChangeModifierType": { + "name": "{{natureName}}민트", + "description": "포켓몬의 성격을 {{natureName}}[[로]] 바꾸고 스타팅에도 등록한다." + }, + "DoubleBattleChanceBoosterModifierType": { + "description": "{{battleCount}}번의 배틀 동안 더블 배틀이 등장할 확률이 두 배가 된다." + }, + "TempBattleStatBoosterModifierType": { + "description": "자신의 모든 포켓몬이 5번의 배틀 동안 {{tempBattleStatName}}[[가]] 한 단계 증가한다." + }, + "AttackTypeBoosterModifierType": { + "description": "지니게 하면 {{moveType}}타입 기술의 위력이 20% 상승한다." + }, + "PokemonLevelIncrementModifierType": { + "description": "포켓몬 1마리의 레벨이 {{levels}}만큼 상승한다." + }, + "AllPokemonLevelIncrementModifierType": { + "description": "자신의 모든 포켓몬의 레벨이 {{levels}}만큼 상승한다." + }, + "PokemonBaseStatBoosterModifierType": { + "description": "지니게 하면 {{statName}} 종족값을 10% 올려준다. 개체값이 높을수록 더 많이 누적시킬 수 있다." + }, + "AllPokemonFullHpRestoreModifierType": { + "description": "자신의 포켓몬의 HP를 모두 회복한다." + }, + "AllPokemonFullReviveModifierType": { + "description": "기절해 버린 포켓몬 전원의 HP를 완전히 회복한다." + }, + "MoneyRewardModifierType": { + "description": "{{moneyMultiplier}} 양의 돈을 획득한다. (₽{{moneyAmount}})", + "extra": { + "small": "적은", + "moderate": "적당한", + "large": "많은" + } + }, + "ExpBoosterModifierType": { + "description": "포켓몬이 받는 경험치가 {{boostPercent}}% 증가한다." + }, + "PokemonExpBoosterModifierType": { + "description": "지니게 한 포켓몬은 받는 경험치가 {{boostPercent}}% 증가한다." + }, + "PokemonFriendshipBoosterModifierType": { + "description": "배틀 승리로 얻는 친밀도가 50% 증가한다." + }, + "PokemonMoveAccuracyBoosterModifierType": { + "description": "기술의 명중률이 {{accuracyAmount}} 증가한다. (최대 100)" + }, + "PokemonMultiHitModifierType": { + "description": "지닌 개수(최대 3개)마다 추가 공격을 하는 대신, 공격력이 60%(1개)/75%(2개)/82.5%(3개)만큼 감소합니다." + }, + "TmModifierType": { + "name": "No.{{moveId}} {{moveName}}", + "description": "포켓몬에게 {{moveName}}[[를]] 가르침." + }, + "TmModifierTypeWithInfo": { + "name": "No.{{moveId}} {{moveName}}", + "description": "포켓몬에게 {{moveName}}[[를]] 가르침.\n(C 또는 Shift를 꾹 눌러 정보 확인)" + }, + "EvolutionItemModifierType": { + "description": "어느 특정 포켓몬을 진화시킨다." + }, + "FormChangeItemModifierType": { + "description": "어느 특정 포켓몬을 폼 체인지시킨다." + }, + "FusePokemonModifierType": { + "description": "두 포켓몬을 결합시킨다. (특성 변환, 종족값과 타입 분배, 기술폭 공유)" + }, + "TerastallizeModifierType": { + "name": "테라피스 {{teraType}}", + "description": "지니게 하면 10번의 배틀 동안 {{teraType}} 테라스탈타입으로 테라스탈한다." + }, + "ContactHeldItemTransferChanceModifierType": { + "description": "공격했을 때, {{chancePercent}}%의 확률로 상대의 도구를 도둑질한다." + }, + "TurnHeldItemTransferModifierType": { + "description": "매 턴, 지닌 포켓몬은 상대로부터 도구를 하나 획득한다." + }, + "EnemyAttackStatusEffectChanceModifierType": { + "description": "공격했을 때 {{statusEffect}} 상태로 만들 확률이 {{chancePercent}}% 추가된다." + }, + "EnemyEndureChanceModifierType": { + "description": "받은 공격을 버텨낼 확률이 {{chancePercent}}% 추가된다." + }, + "RARE_CANDY": { + "name": "이상한사탕" + }, + "RARER_CANDY": { + "name": "더이상한사탕" + }, + "MEGA_BRACELET": { + "name": "메가링", + "description": "메가스톤을 사용할 수 있게 된다." + }, + "DYNAMAX_BAND": { + "name": "다이맥스 밴드", + "description": "다이버섯을 사용할 수 있게 된다." + }, + "TERA_ORB": { + "name": "테라스탈오브", + "description": "테라피스를 사용할 수 있게 된다." + }, + "MAP": { + "name": "지도", + "description": "갈림길에서 목적지를 선택할 수 있다." + }, + "POTION": { + "name": "상처약" + }, + "SUPER_POTION": { + "name": "좋은상처약" + }, + "HYPER_POTION": { + "name": "고급상처약" + }, + "MAX_POTION": { + "name": "풀회복약" + }, + "FULL_RESTORE": { + "name": "회복약" + }, + "REVIVE": { + "name": "기력의조각" + }, + "MAX_REVIVE": { + "name": "기력의덩어리" + }, + "FULL_HEAL": { + "name": "만병통치제" + }, + "SACRED_ASH": { + "name": "성스러운분말" + }, + "REVIVER_SEED": { + "name": "부활의씨앗", + "description": "포켓몬이 공격을 받고 쓰러지려 할 때 HP를 절반 회복한다." + }, + "WHITE_HERB": { + "name": "하양허브", + "description": "지니게 한 포켓몬의 능력이 떨어졌을 때 원래 상태로 돌아온다." + }, + "ETHER": { + "name": "PP에이드" + }, + "MAX_ETHER": { + "name": "PP회복" + }, + "ELIXIR": { + "name": "PP에이더" + }, + "MAX_ELIXIR": { + "name": "PP맥스" + }, + "PP_UP": { + "name": "포인트업" + }, + "PP_MAX": { + "name": "포인트맥스" + }, + "LURE": { + "name": "더블배틀코롱" + }, + "SUPER_LURE": { + "name": "실버코롱" + }, + "MAX_LURE": { + "name": "골드코롱" + }, + "MEMORY_MUSHROOM": { + "name": "기억버섯", + "description": "포켓몬이 잊어버린 기술을 떠올린다." + }, + "EXP_SHARE": { + "name": "학습장치", + "description": "배틀에 참여하지 않아도 20%의 경험치를 받을 수 있게 된다." + }, + "EXP_BALANCE": { + "name": "균형학습장치", + "description": "레벨이 낮은 포켓몬이 받는 경험치를 가중시킨다." + }, + "OVAL_CHARM": { + "name": "둥근부적", + "description": "여러 마리의 포켓몬이 배틀에 참여할 경우, 전체 경험치의 10%씩을 추가로 획득한다." + }, + "EXP_CHARM": { + "name": "경험부적" + }, + "SUPER_EXP_CHARM": { + "name": "좋은경험부적" + }, + "GOLDEN_EXP_CHARM": { + "name": "황금경험부적" + }, + "LUCKY_EGG": { + "name": "행복의알" + }, + "GOLDEN_EGG": { + "name": "황금의알" + }, + "SOOTHE_BELL": { + "name": "평온의방울" + }, + "SCOPE_LENS": { + "name": "초점렌즈", + "description": "약점이 보이는 렌즈. 지니게 한 포켓몬의 기술이 급소에 맞기 쉬워진다." + }, + "LEEK": { + "name": "대파", + "description": "매우 길고 단단한 줄기. 파오리에게 지니게 하면 기술이 급소에 맞기 쉬워진다." + }, + "EVIOLITE": { + "name": "진화의휘석", + "description": "진화의 이상한 덩어리. 지니게 하면 진화 전 포켓몬의 방어와 특수방어가 올라간다." + }, + "SOUL_DEW": { + "name": "마음의물방울", + "description": "지닌 포켓몬의 성격의 효과가 10% 증가한다. (합연산)" + }, + "NUGGET": { + "name": "금구슬" + }, + "BIG_NUGGET": { + "name": "큰금구슬" + }, + "RELIC_GOLD": { + "name": "고대의금화" + }, + "AMULET_COIN": { + "name": "부적금화", + "description": "받는 돈이 20% 증가한다." + }, + "GOLDEN_PUNCH": { + "name": "골든펀치", + "description": "주는 데미지의 50%만큼 돈을 획득한다." + }, + "COIN_CASE": { + "name": "동전케이스", + "description": "매 열 번째 배틀마다, 가진 돈의 10%를 이자로 획득한다." + }, + "LOCK_CAPSULE": { + "name": "록캡슐", + "description": "받을 아이템을 갱신할 때 희귀도를 고정시킬 수 있게 된다." + }, + "GRIP_CLAW": { + "name": "끈기갈고리손톱" + }, + "WIDE_LENS": { + "name": "광각렌즈" + }, + "MULTI_LENS": { + "name": "멀티렌즈" + }, + "HEALING_CHARM": { + "name": "치유의부적", + "description": "HP를 회복하는 기술이나 도구를 썼을 때 효율이 10% 증가한다. (부활 제외)" + }, + "CANDY_JAR": { + "name": "사탕단지", + "description": "이상한사탕 종류의 아이템이 올려주는 레벨이 1 증가한다." + }, + "BERRY_POUCH": { + "name": "열매주머니", + "description": "사용한 나무열매가 소모되지 않을 확률이 30% 추가된다." + }, + "FOCUS_BAND": { + "name": "기합의머리띠", + "description": "기절할 듯한 데미지를 받아도 HP를 1 남겨서 견딜 확률이 10% 추가된다." + }, + "QUICK_CLAW": { + "name": "선제공격손톱", + "description": "상대보다 먼저 행동할 수 있게 될 확률이 10% 추가된다. (우선도 처리 이후)" + }, + "KINGS_ROCK": { + "name": "왕의징표석", + "description": "공격해서 데미지를 줄 때 상대를 풀죽일 확률이 10% 추가된다." + }, + "LEFTOVERS": { + "name": "먹다남은음식", + "description": "포켓몬의 HP가 매 턴 최대 체력의 1/16씩 회복된다." + }, + "SHELL_BELL": { + "name": "조개껍질방울", + "description": "포켓몬이 준 데미지의 1/8씩을 회복한다." + }, + "TOXIC_ORB": { + "name": "맹독구슬", + "description": "이 도구를 지닌 포켓몬은 턴이 끝나는 시점에 상태이상에 걸리지 않았다면 맹독 상태가 된다." + }, + "FLAME_ORB": { + "name": "화염구슬", + "description": "이 도구를 지닌 포켓몬은 턴이 끝나는 시점에 상태이상에 걸리지 않았다면 화상 상태가 된다." + }, + "BATON": { + "name": "바톤", + "description": "포켓몬을 교체할 때 효과를 넘겨줄 수 있으며, 함정의 영향을 받지 않게 함" + }, + "SHINY_CHARM": { + "name": "빛나는부적", + "description": "야생 포켓몬이 색이 다른 포켓몬으로 등장할 확률을 급격히 높인다." + }, + "ABILITY_CHARM": { + "name": "특성부적", + "description": "야생 포켓몬이 숨겨진 특성을 가지고 등장할 확률을 급격히 높인다." + }, + "IV_SCANNER": { + "name": "개체값탐지기", + "description": "야생 포켓몬의 개체값을 확인 가능하다. 높은 값부터, 확인할 수 있는 개체값이 두 종류씩 추가된다." + }, + "DNA_SPLICERS": { + "name": "유전자쐐기" + }, + "MINI_BLACK_HOLE": { + "name": "미니 블랙홀" + }, + "GOLDEN_POKEBALL": { + "name": "황금몬스터볼", + "description": "전투 후 획득하는 아이템의 선택지가 하나 더 늘어난다." + }, + "ENEMY_DAMAGE_BOOSTER": { + "name": "데미지 토큰", + "description": "주는 데미지를 5% 증가시킨다." + }, + "ENEMY_DAMAGE_REDUCTION": { + "name": "보호 토큰", + "description": "받는 데미지를 2.5% 감소시킨다." + }, + "ENEMY_HEAL": { + "name": "회복 토큰", + "description": "매 턴 최대 체력의 2%를 회복한다." + }, + "ENEMY_ATTACK_POISON_CHANCE": { + "name": "독 토큰" + }, + "ENEMY_ATTACK_PARALYZE_CHANCE": { + "name": "마비 토큰" + }, + "ENEMY_ATTACK_BURN_CHANCE": { + "name": "화상 토큰" + }, + "ENEMY_STATUS_EFFECT_HEAL_CHANCE": { + "name": "만병통치 토큰", + "description": "매 턴 상태이상에서 회복될 확률이 2.5% 추가된다." + }, + "ENEMY_ENDURE_CHANCE": { + "name": "버티기 토큰" + }, + "ENEMY_FUSED_CHANCE": { + "name": "합체 토큰", + "description": "야생 포켓몬이 합체되어 등장할 확률이 1% 추가된다." + } + }, + "SpeciesBoosterItem": { + "LIGHT_BALL": { + "name": "전기구슬", + "description": "피카츄에게 지니게 하면 공격과 특수공격이 올라가는 이상한 구슬." + }, + "THICK_CLUB": { + "name": "굵은뼈", + "description": "무언가의 단단한 뼈. 탕구리 혹은 텅구리에게 지니게 하면 공격이 올라간다." + }, + "METAL_POWDER": { + "name": "금속파우더", + "description": "메타몽에게 지니게 하면 방어가 올라가는 이상한 가루. 매우 잘고 단단하다." + }, + "QUICK_POWDER": { + "name": "스피드파우더", + "description": "메타몽에게 지니게 하면 스피드가 올라가는 이상한 가루. 매우 잘고 단단하다." + } + }, + "TempBattleStatBoosterItem": { + "x_attack": "플러스파워", + "x_defense": "디펜드업", + "x_sp_atk": "스페셜업", + "x_sp_def": "스페셜가드", + "x_speed": "스피드업", + "x_accuracy": "잘-맞히기", + "dire_hit": "크리티컬커터" + }, + "TempBattleStatBoosterStatName": { + "ATK": "공격", + "DEF": "방어", + "SPATK": "특수공격", + "SPDEF": "특수방어", + "SPD": "스피드", + "ACC": "명중률", + "CRIT": "급소율", + "EVA": "회피율", + "DEFAULT": "???" + }, + "AttackTypeBoosterItem": { + "silk_scarf": "실크스카프", + "black_belt": "검은띠", + "sharp_beak": "예리한부리", + "poison_barb": "독바늘", + "soft_sand": "부드러운모래", + "hard_stone": "딱딱한돌", + "silver_powder": "은빛가루", + "spell_tag": "저주의부적", + "metal_coat": "금속코트", + "charcoal": "목탄", + "mystic_water": "신비의물방울", + "miracle_seed": "기적의씨", + "magnet": "자석", + "twisted_spoon": "휘어진스푼", + "never_melt_ice": "녹지않는얼음", + "dragon_fang": "용의이빨", + "black_glasses": "검은안경", + "fairy_feather": "요정의깃털" + }, + "BaseStatBoosterItem": { + "hp_up": "맥스업", + "protein": "타우린", + "iron": "사포닌", + "calcium": "리보플라빈", + "zinc": "키토산", + "carbos": "알칼로이드" + }, + "EvolutionItem": { + "NONE": "None", + "LINKING_CORD": "연결의끈", + "SUN_STONE": "태양의돌", + "MOON_STONE": "달의돌", + "LEAF_STONE": "리프의돌", + "FIRE_STONE": "불꽃의돌", + "WATER_STONE": "물의돌", + "THUNDER_STONE": "천둥의돌", + "ICE_STONE": "얼음의돌", + "DUSK_STONE": "어둠의돌", + "DAWN_STONE": "각성의돌", + "SHINY_STONE": "빛의돌", + "CRACKED_POT": "깨진포트", + "SWEET_APPLE": "달콤한사과", + "TART_APPLE": "새콤한사과", + "STRAWBERRY_SWEET": "딸기사탕공예", + "UNREMARKABLE_TEACUP": "범작찻잔", + "CHIPPED_POT": "이빠진포트", + "BLACK_AUGURITE": "검은휘석", + "GALARICA_CUFF": "가라두구팔찌", + "GALARICA_WREATH": "가라두구머리장식", + "PEAT_BLOCK": "피트블록", + "AUSPICIOUS_ARMOR": "축복받은갑옷", + "MALICIOUS_ARMOR": "저주받은갑옷", + "MASTERPIECE_TEACUP": "걸작찻잔", + "METAL_ALLOY": "복합금속", + "SCROLL_OF_DARKNESS": "악의 족자", + "SCROLL_OF_WATERS": "물의 족자", + "SYRUPY_APPLE": "꿀맛사과" + }, + "FormChangeItem": { + "NONE": "None", + "ABOMASITE": "눈설왕나이트", + "ABSOLITE": "앱솔나이트", + "AERODACTYLITE": "프테라나이트", + "AGGRONITE": "보스로라나이트", + "ALAKAZITE": "후딘나이트", + "ALTARIANITE": "파비코리나이트", + "AMPHAROSITE": "전룡나이트", + "AUDINITE": "다부니나이트", + "BANETTITE": "다크펫나이트", + "BEEDRILLITE": "독침붕나이트", + "BLASTOISINITE": "거북왕나이트", + "BLAZIKENITE": "번치코나이트", + "CAMERUPTITE": "폭타나이트", + "CHARIZARDITE_X": "리자몽나이트 X", + "CHARIZARDITE_Y": "리자몽나이트 Y", + "DIANCITE": "디안시나이트", + "GALLADITE": "엘레이드나이트", + "GARCHOMPITE": "한카리아스나이트", + "GARDEVOIRITE": "가디안나이트", + "GENGARITE": "팬텀나이트", + "GLALITITE": "얼음귀신나이트", + "GYARADOSITE": "갸라도스나이트", + "HERACRONITE": "헤라크로스나이트", + "HOUNDOOMINITE": "헬가나이트", + "KANGASKHANITE": "캥카나이트", + "LATIASITE": "라티아스나이트", + "LATIOSITE": "라티오스나이트", + "LOPUNNITE": "이어롭나이트", + "LUCARIONITE": "루카리오나이트", + "MANECTITE": "썬더볼트나이트", + "MAWILITE": "입치트나이트", + "MEDICHAMITE": "요가램나이트", + "METAGROSSITE": "메타그로스나이트", + "MEWTWONITE_X": "뮤츠나이트 X", + "MEWTWONITE_Y": "뮤츠나이트 Y", + "PIDGEOTITE": "피죤투나이트", + "PINSIRITE": "쁘사이저나이트", + "RAYQUAZITE": "레쿠쟈나이트", + "SABLENITE": "깜까미나이트", + "SALAMENCITE": "보만다나이트", + "SCEPTILITE": "나무킹나이트", + "SCIZORITE": "핫삼나이트", + "SHARPEDONITE": "샤크니아나이트", + "SLOWBRONITE": "야도란나이트", + "STEELIXITE": "강철톤나이트", + "SWAMPERTITE": "대짱이나이트", + "TYRANITARITE": "마기라스나이트", + "VENUSAURITE": "이상해꽃나이트", + "BLUE_ORB": "쪽빛구슬", + "RED_ORB": "주홍구슬", + "SHARP_METEORITE": "뾰족한운석", + "HARD_METEORITE": "단단한운석", + "SMOOTH_METEORITE": "부드러운운석", + "ADAMANT_CRYSTAL": "큰금강옥", + "LUSTROUS_GLOBE": "큰백옥", + "GRISEOUS_CORE": "큰백금옥", + "REVEAL_GLASS": "비추는거울", + "GRACIDEA": "그라시데아꽃", + "MAX_MUSHROOMS": "다이버섯", + "DARK_STONE": "다크스톤", + "LIGHT_STONE": "라이트스톤", + "PRISON_BOTTLE": "굴레의항아리", + "N_LUNARIZER": "네크로플러스루나", + "N_SOLARIZER": "네크로플러스솔", + "RUSTED_SWORD": "녹슨검", + "RUSTED_SHIELD": "녹슨방패", + "ICY_REINS_OF_UNITY": "차가운유대의고삐", + "SHADOW_REINS_OF_UNITY": "검은유대의고삐", + "WELLSPRING_MASK": "우물의가면", + "HEARTHFLAME_MASK": "화덕의가면", + "CORNERSTONE_MASK": "주춧돌의가면", + "SHOCK_DRIVE": "번개카세트", + "BURN_DRIVE": "블레이즈카세트", + "CHILL_DRIVE": "프리즈카세트", + "DOUSE_DRIVE": "아쿠아카세트", + "ULTRANECROZIUM_Z": "울트라네크로Z", + "FIST_PLATE": "주먹플레이트", + "SKY_PLATE": "푸른하늘플레이트", + "TOXIC_PLATE": "맹독플레이트", + "EARTH_PLATE": "대지플레이트", + "STONE_PLATE": "암석플레이트", + "INSECT_PLATE": "비단벌레플레이트", + "SPOOKY_PLATE": "원령플레이트", + "IRON_PLATE": "강철플레이트", + "FLAME_PLATE": "불구슬플레이트", + "SPLASH_PLATE": "물방울플레이트", + "MEADOW_PLATE": "초록플레이트", + "ZAP_PLATE": "우뢰플레이트", + "MIND_PLATE": "이상한플레이트", + "ICICLE_PLATE": "고드름플레이트", + "DRACO_PLATE": "용의플레이트", + "DREAD_PLATE": "공포플레이트", + "PIXIE_PLATE": "정령플레이트", + "BLANK_PLATE": "순백플레이트", + "LEGEND_PLATE": "레전드플레이트", + "FIGHTING_MEMORY": "파이팅메모리", + "FLYING_MEMORY": "플라잉메모리", + "POISON_MEMORY": "포이즌메모리", + "GROUND_MEMORY": "그라운드메모리", + "ROCK_MEMORY": "록메모리", + "BUG_MEMORY": "버그메모리", + "GHOST_MEMORY": "고스트메모리", + "STEEL_MEMORY": "스틸메모리", + "FIRE_MEMORY": "파이어메모리", + "WATER_MEMORY": "워터메모리", + "GRASS_MEMORY": "그래스메모리", + "ELECTRIC_MEMORY": "일렉트릭메모리", + "PSYCHIC_MEMORY": "사이킥메모리", + "ICE_MEMORY": "아이스메모리", + "DRAGON_MEMORY": "드래곤메모리", + "DARK_MEMORY": "다크메모리", + "FAIRY_MEMORY": "페어리메모리", + "BLANK_MEMORY": "빈메모리" + } +} \ No newline at end of file diff --git a/src/locales/ko/modifier-type.ts b/src/locales/ko/modifier-type.ts deleted file mode 100644 index 9138600c2eb..00000000000 --- a/src/locales/ko/modifier-type.ts +++ /dev/null @@ -1,457 +0,0 @@ -import { ModifierTypeTranslationEntries } from "#app/interfaces/locales"; - -export const modifierType: ModifierTypeTranslationEntries = { - ModifierType: { - "AddPokeballModifierType": { - name: "{{pokeballName}} {{modifierCount}}개", - description: "{{pokeballName}} {{modifierCount}}개 (현재: {{pokeballAmount}}개)를 획득한다.\n포획률: {{catchRate}}", - }, - "AddVoucherModifierType": { - name: "{{voucherTypeName}} {{modifierCount}}장", - description: "{{voucherTypeName}} {{modifierCount}}장을 획득한다.", - }, - "PokemonHeldItemModifierType": { - extra: { - "inoperable": "{{pokemonName}}[[는]]\n이 아이템을 얻을 수 없다!", - "tooMany": "{{pokemonName}}[[는]]\n이 아이템을 너무 많이 갖고 있다!", - } - }, - "PokemonHpRestoreModifierType": { - description: "포켓몬 1마리의 HP를 {{restorePoints}} 또는 {{restorePercent}}% 중\n높은 수치만큼 회복한다.", - extra: { - "fully": "포켓몬 1마리의 HP를 모두 회복한다.", - "fullyWithStatus": "포켓몬 1마리의 HP와 상태 이상을 모두 회복한다.", - } - }, - "PokemonReviveModifierType": { - description: "기절해 버린 포켓몬 1마리의 HP를 {{restorePercent}}%까지 회복한다.", - }, - "PokemonStatusHealModifierType": { - description: "포켓몬 1마리의 상태 이상을 모두 회복한다.", - }, - "PokemonPpRestoreModifierType": { - description: "포켓몬이 기억하고 있는 기술 중 1개의 PP를 {{restorePoints}}만큼 회복한다.", - extra: { - "fully": "포켓몬이 기억하고 있는 기술 중 1개의 PP를 모두 회복한다.", - } - }, - "PokemonAllMovePpRestoreModifierType": { - description: "포켓몬이 기억하고 있는 4개의 기술 PP를 {{restorePoints}}씩 회복한다.", - extra: { - "fully": "포켓몬이 기억하고 있는 4개의 기술 PP를 모두 회복한다.", - } - }, - "PokemonPpUpModifierType": { - description: "포켓몬이 기억하고 있는 기술 중 1개의 PP 최대치를 5마다 {{upPoints}}씩 상승시킨다. (최대 3)", - }, - "PokemonNatureChangeModifierType": { - name: "{{natureName}}민트", - description: "포켓몬의 성격을 {{natureName}}[[로]] 바꾸고 스타팅에도 등록한다.", - }, - "DoubleBattleChanceBoosterModifierType": { - description: "{{battleCount}}번의 배틀 동안 더블 배틀이 등장할 확률이 두 배가 된다.", - }, - "TempBattleStatBoosterModifierType": { - description: "자신의 모든 포켓몬이 5번의 배틀 동안 {{tempBattleStatName}}[[가]] 한 단계 증가한다." - }, - "AttackTypeBoosterModifierType": { - description: "지니게 하면 {{moveType}}타입 기술의 위력이 20% 상승한다.", - }, - "PokemonLevelIncrementModifierType": { - description: "포켓몬 1마리의 레벨이 {{levels}}만큼 상승한다.", - }, - "AllPokemonLevelIncrementModifierType": { - description: "자신의 모든 포켓몬의 레벨이 {{levels}}만큼 상승한다.", - }, - "PokemonBaseStatBoosterModifierType": { - description: "지니게 하면 {{statName}} 종족값을 10% 올려준다. 개체값이 높을수록 더 많이 누적시킬 수 있다.", - }, - "AllPokemonFullHpRestoreModifierType": { - description: "자신의 포켓몬의 HP를 모두 회복한다.", - }, - "AllPokemonFullReviveModifierType": { - description: "기절해 버린 포켓몬 전원의 HP를 완전히 회복한다.", - }, - "MoneyRewardModifierType": { - description: "{{moneyMultiplier}} 양의 돈을 획득한다. (₽{{moneyAmount}})", - extra: { - "small": "적은", - "moderate": "적당한", - "large": "많은", - }, - }, - "ExpBoosterModifierType": { - description: "포켓몬이 받는 경험치가 {{boostPercent}}% 증가한다.", - }, - "PokemonExpBoosterModifierType": { - description: "지니게 한 포켓몬은 받는 경험치가 {{boostPercent}}% 증가한다.", - }, - "PokemonFriendshipBoosterModifierType": { - description: "배틀 승리로 얻는 친밀도가 50% 증가한다.", - }, - "PokemonMoveAccuracyBoosterModifierType": { - description: "기술의 명중률이 {{accuracyAmount}} 증가한다. (최대 100)", - }, - "PokemonMultiHitModifierType": { - description: "지닌 개수(최대 3개)마다 추가 공격을 하는 대신, 공격력이 60%(1개)/75%(2개)/82.5%(3개)만큼 감소합니다.", - }, - "TmModifierType": { - name: "No.{{moveId}} {{moveName}}", - description: "포켓몬에게 {{moveName}}[[를]] 가르침.", - }, - "TmModifierTypeWithInfo": { - name: "No.{{moveId}} {{moveName}}", - description: "포켓몬에게 {{moveName}}[[를]] 가르침.\n(C 또는 Shift를 꾹 눌러 정보 확인)", - }, - "EvolutionItemModifierType": { - description: "어느 특정 포켓몬을 진화시킨다.", - }, - "FormChangeItemModifierType": { - description: "어느 특정 포켓몬을 폼 체인지시킨다.", - }, - "FusePokemonModifierType": { - description: "두 포켓몬을 결합시킨다. (특성 변환, 종족값과 타입 분배, 기술폭 공유)", - }, - "TerastallizeModifierType": { - name: "테라피스 {{teraType}}", - description: "지니게 하면 10번의 배틀 동안 {{teraType}} 테라스탈타입으로 테라스탈한다.", - }, - "ContactHeldItemTransferChanceModifierType": { - description: "공격했을 때, {{chancePercent}}%의 확률로 상대의 도구를 도둑질한다.", - }, - "TurnHeldItemTransferModifierType": { - description: "매 턴, 지닌 포켓몬은 상대로부터 도구를 하나 획득한다.", - }, - "EnemyAttackStatusEffectChanceModifierType": { - description: "공격했을 때 {{statusEffect}} 상태로 만들 확률이 {{chancePercent}}% 추가된다.", - }, - "EnemyEndureChanceModifierType": { - description: "받은 공격을 버텨낼 확률이 {{chancePercent}}% 추가된다.", - }, - - "RARE_CANDY": { name: "이상한사탕" }, - "RARER_CANDY": { name: "더이상한사탕" }, - - "MEGA_BRACELET": { name: "메가링", description: "메가스톤을 사용할 수 있게 된다." }, - "DYNAMAX_BAND": { name: "다이맥스 밴드", description: "다이버섯을 사용할 수 있게 된다." }, - "TERA_ORB": { name: "테라스탈오브", description: "테라피스를 사용할 수 있게 된다." }, - - "MAP": { name: "지도", description: "갈림길에서 목적지를 선택할 수 있다." }, - - "POTION": { name: "상처약" }, - "SUPER_POTION": { name: "좋은상처약" }, - "HYPER_POTION": { name: "고급상처약" }, - "MAX_POTION": { name: "풀회복약" }, - "FULL_RESTORE": { name: "회복약" }, - - "REVIVE": { name: "기력의조각" }, - "MAX_REVIVE": { name: "기력의덩어리" }, - - "FULL_HEAL": { name: "만병통치제" }, - - "SACRED_ASH": { name: "성스러운분말" }, - - "REVIVER_SEED": { name: "부활의씨앗", description: "포켓몬이 공격을 받고 쓰러지려 할 때 HP를 절반 회복한다." }, - - "WHITE_HERB": { name: "하양허브", description: "지니게 한 포켓몬의 능력이 떨어졌을 때 원래 상태로 돌아온다." }, - - "ETHER": { name: "PP에이드" }, - "MAX_ETHER": { name: "PP회복" }, - - "ELIXIR": { name: "PP에이더" }, - "MAX_ELIXIR": { name: "PP맥스" }, - - "PP_UP": { name: "포인트업" }, - "PP_MAX": { name: "포인트맥스" }, - - "LURE": { name: "더블배틀코롱" }, - "SUPER_LURE": { name: "실버코롱" }, - "MAX_LURE": { name: "골드코롱" }, - - "MEMORY_MUSHROOM": { name: "기억버섯", description: "포켓몬이 잊어버린 기술을 떠올린다." }, - - "EXP_SHARE": { name: "학습장치", description: "배틀에 참여하지 않아도 20%의 경험치를 받을 수 있게 된다." }, - "EXP_BALANCE": { name: "균형학습장치", description: "레벨이 낮은 포켓몬이 받는 경험치를 가중시킨다." }, - - "OVAL_CHARM": { name: "둥근부적", description: "여러 마리의 포켓몬이 배틀에 참여할 경우, 전체 경험치의 10%씩을 추가로 획득한다." }, - - "EXP_CHARM": { name: "경험부적" }, - "SUPER_EXP_CHARM": { name: "좋은경험부적" }, - "GOLDEN_EXP_CHARM": { name: "황금경험부적" }, - - "LUCKY_EGG": { name: "행복의알" }, - "GOLDEN_EGG": { name: "황금의알" }, - - "SOOTHE_BELL": { name: "평온의방울" }, - - "SCOPE_LENS": { name: "초점렌즈", description: "약점이 보이는 렌즈. 지니게 한 포켓몬의 기술이 급소에 맞기 쉬워진다." }, - "LEEK": { name: "대파", description: "매우 길고 단단한 줄기. 파오리에게 지니게 하면 기술이 급소에 맞기 쉬워진다." }, - - "EVIOLITE": { name: "진화의휘석", description: "진화의 이상한 덩어리. 지니게 하면 진화 전 포켓몬의 방어와 특수방어가 올라간다." }, - - "SOUL_DEW": { name: "마음의물방울", description: "지닌 포켓몬의 성격의 효과가 10% 증가한다. (합연산)" }, - - "NUGGET": { name: "금구슬" }, - "BIG_NUGGET": { name: "큰금구슬" }, - "RELIC_GOLD": { name: "고대의금화" }, - - "AMULET_COIN": { name: "부적금화", description: "받는 돈이 20% 증가한다." }, - "GOLDEN_PUNCH": { name: "골든펀치", description: "주는 데미지의 50%만큼 돈을 획득한다." }, - "COIN_CASE": { name: "동전케이스", description: "매 열 번째 배틀마다, 가진 돈의 10%를 이자로 획득한다." }, - - "LOCK_CAPSULE": { name: "록캡슐", description: "받을 아이템을 갱신할 때 희귀도를 고정시킬 수 있게 된다." }, - - "GRIP_CLAW": { name: "끈기갈고리손톱" }, - "WIDE_LENS": { name: "광각렌즈" }, - - "MULTI_LENS": { name: "멀티렌즈" }, - - "HEALING_CHARM": { name: "치유의부적", description: "HP를 회복하는 기술이나 도구를 썼을 때 효율이 10% 증가한다. (부활 제외)" }, - "CANDY_JAR": { name: "사탕단지", description: "이상한사탕 종류의 아이템이 올려주는 레벨이 1 증가한다." }, - - "BERRY_POUCH": { name: "열매주머니", description: "사용한 나무열매가 소모되지 않을 확률이 30% 추가된다." }, - - "FOCUS_BAND": { name: "기합의머리띠", description: "기절할 듯한 데미지를 받아도 HP를 1 남겨서 견딜 확률이 10% 추가된다." }, - - "QUICK_CLAW": { name: "선제공격손톱", description: "상대보다 먼저 행동할 수 있게 될 확률이 10% 추가된다. (우선도 처리 이후)" }, - - "KINGS_ROCK": { name: "왕의징표석", description: "공격해서 데미지를 줄 때 상대를 풀죽일 확률이 10% 추가된다." }, - - "LEFTOVERS": { name: "먹다남은음식", description: "포켓몬의 HP가 매 턴 최대 체력의 1/16씩 회복된다." }, - "SHELL_BELL": { name: "조개껍질방울", description: "포켓몬이 준 데미지의 1/8씩을 회복한다." }, - - "TOXIC_ORB": { name: "맹독구슬", description: "이 도구를 지닌 포켓몬은 턴이 끝나는 시점에 상태이상에 걸리지 않았다면 맹독 상태가 된다." }, - "FLAME_ORB": { name: "화염구슬", description: "이 도구를 지닌 포켓몬은 턴이 끝나는 시점에 상태이상에 걸리지 않았다면 화상 상태가 된다." }, - - "BATON": { name: "바톤", description: "포켓몬을 교체할 때 효과를 넘겨줄 수 있으며, 함정의 영향을 받지 않게 함" }, - - "SHINY_CHARM": { name: "빛나는부적", description: "야생 포켓몬이 색이 다른 포켓몬으로 등장할 확률을 급격히 높인다." }, - "ABILITY_CHARM": { name: "특성부적", description: "야생 포켓몬이 숨겨진 특성을 가지고 등장할 확률을 급격히 높인다." }, - - "IV_SCANNER": { name: "개체값탐지기", description: "야생 포켓몬의 개체값을 확인 가능하다. 높은 값부터, 확인할 수 있는 개체값이 두 종류씩 추가된다." }, - - "DNA_SPLICERS": { name: "유전자쐐기" }, - - "MINI_BLACK_HOLE": { name: "미니 블랙홀" }, - - "GOLDEN_POKEBALL": { name: "황금몬스터볼", description: "전투 후 획득하는 아이템의 선택지가 하나 더 늘어난다." }, - - "ENEMY_DAMAGE_BOOSTER": { name: "데미지 토큰", description: "주는 데미지를 5% 증가시킨다." }, - "ENEMY_DAMAGE_REDUCTION": { name: "보호 토큰", description: "받는 데미지를 2.5% 감소시킨다." }, - "ENEMY_HEAL": { name: "회복 토큰", description: "매 턴 최대 체력의 2%를 회복한다." }, - "ENEMY_ATTACK_POISON_CHANCE": { name: "독 토큰" }, - "ENEMY_ATTACK_PARALYZE_CHANCE": { name: "마비 토큰" }, - "ENEMY_ATTACK_BURN_CHANCE": { name: "화상 토큰" }, - "ENEMY_STATUS_EFFECT_HEAL_CHANCE": { name: "만병통치 토큰", description: "매 턴 상태이상에서 회복될 확률이 2.5% 추가된다." }, - "ENEMY_ENDURE_CHANCE": { name: "버티기 토큰" }, - "ENEMY_FUSED_CHANCE": { name: "합체 토큰", description: "야생 포켓몬이 합체되어 등장할 확률이 1% 추가된다." }, - }, - SpeciesBoosterItem: { - "LIGHT_BALL": { name: "전기구슬", description: "피카츄에게 지니게 하면 공격과 특수공격이 올라가는 이상한 구슬." }, - "THICK_CLUB": { name: "굵은뼈", description: "무언가의 단단한 뼈. 탕구리 혹은 텅구리에게 지니게 하면 공격이 올라간다." }, - "METAL_POWDER": { name: "금속파우더", description: "메타몽에게 지니게 하면 방어가 올라가는 이상한 가루. 매우 잘고 단단하다." }, - "QUICK_POWDER": { name: "스피드파우더", description: "메타몽에게 지니게 하면 스피드가 올라가는 이상한 가루. 매우 잘고 단단하다." } - }, - TempBattleStatBoosterItem: { - "x_attack": "플러스파워", - "x_defense": "디펜드업", - "x_sp_atk": "스페셜업", - "x_sp_def": "스페셜가드", - "x_speed": "스피드업", - "x_accuracy": "잘-맞히기", - "dire_hit": "크리티컬커터", - }, - - TempBattleStatBoosterStatName: { - "ATK": "공격", - "DEF": "방어", - "SPATK": "특수공격", - "SPDEF": "특수방어", - "SPD": "스피드", - "ACC": "명중률", - "CRIT": "급소율", - "EVA": "회피율", - "DEFAULT": "???", - }, - - AttackTypeBoosterItem: { - "silk_scarf": "실크스카프", - "black_belt": "검은띠", - "sharp_beak": "예리한부리", - "poison_barb": "독바늘", - "soft_sand": "부드러운모래", - "hard_stone": "딱딱한돌", - "silver_powder": "은빛가루", - "spell_tag": "저주의부적", - "metal_coat": "금속코트", - "charcoal": "목탄", - "mystic_water": "신비의물방울", - "miracle_seed": "기적의씨", - "magnet": "자석", - "twisted_spoon": "휘어진스푼", - "never_melt_ice": "녹지않는얼음", - "dragon_fang": "용의이빨", - "black_glasses": "검은안경", - "fairy_feather": "요정의깃털", - }, - BaseStatBoosterItem: { - "hp_up": "맥스업", - "protein": "타우린", - "iron": "사포닌", - "calcium": "리보플라빈", - "zinc": "키토산", - "carbos": "알칼로이드", - }, - EvolutionItem: { - "NONE": "None", - - "LINKING_CORD": "연결의끈", - "SUN_STONE": "태양의돌", - "MOON_STONE": "달의돌", - "LEAF_STONE": "리프의돌", - "FIRE_STONE": "불꽃의돌", - "WATER_STONE": "물의돌", - "THUNDER_STONE": "천둥의돌", - "ICE_STONE": "얼음의돌", - "DUSK_STONE": "어둠의돌", - "DAWN_STONE": "각성의돌", - "SHINY_STONE": "빛의돌", - "CRACKED_POT": "깨진포트", - "SWEET_APPLE": "달콤한사과", - "TART_APPLE": "새콤한사과", - "STRAWBERRY_SWEET": "딸기사탕공예", - "UNREMARKABLE_TEACUP": "범작찻잔", - - "CHIPPED_POT": "이빠진포트", - "BLACK_AUGURITE": "검은휘석", - "GALARICA_CUFF": "가라두구팔찌", - "GALARICA_WREATH": "가라두구머리장식", - "PEAT_BLOCK": "피트블록", - "AUSPICIOUS_ARMOR": "축복받은갑옷", - "MALICIOUS_ARMOR": "저주받은갑옷", - "MASTERPIECE_TEACUP": "걸작찻잔", - "METAL_ALLOY": "복합금속", - "SCROLL_OF_DARKNESS": "악의 족자", - "SCROLL_OF_WATERS": "물의 족자", - "SYRUPY_APPLE": "꿀맛사과", - }, - FormChangeItem: { - "NONE": "None", - - "ABOMASITE": "눈설왕나이트", - "ABSOLITE": "앱솔나이트", - "AERODACTYLITE": "프테라나이트", - "AGGRONITE": "보스로라나이트", - "ALAKAZITE": "후딘나이트", - "ALTARIANITE": "파비코리나이트", - "AMPHAROSITE": "전룡나이트", - "AUDINITE": "다부니나이트", - "BANETTITE": "다크펫나이트", - "BEEDRILLITE": "독침붕나이트", - "BLASTOISINITE": "거북왕나이트", - "BLAZIKENITE": "번치코나이트", - "CAMERUPTITE": "폭타나이트", - "CHARIZARDITE_X": "리자몽나이트 X", - "CHARIZARDITE_Y": "리자몽나이트 Y", - "DIANCITE": "디안시나이트", - "GALLADITE": "엘레이드나이트", - "GARCHOMPITE": "한카리아스나이트", - "GARDEVOIRITE": "가디안나이트", - "GENGARITE": "팬텀나이트", - "GLALITITE": "얼음귀신나이트", - "GYARADOSITE": "갸라도스나이트", - "HERACRONITE": "헤라크로스나이트", - "HOUNDOOMINITE": "헬가나이트", - "KANGASKHANITE": "캥카나이트", - "LATIASITE": "라티아스나이트", - "LATIOSITE": "라티오스나이트", - "LOPUNNITE": "이어롭나이트", - "LUCARIONITE": "루카리오나이트", - "MANECTITE": "썬더볼트나이트", - "MAWILITE": "입치트나이트", - "MEDICHAMITE": "요가램나이트", - "METAGROSSITE": "메타그로스나이트", - "MEWTWONITE_X": "뮤츠나이트 X", - "MEWTWONITE_Y": "뮤츠나이트 Y", - "PIDGEOTITE": "피죤투나이트", - "PINSIRITE": "쁘사이저나이트", - "RAYQUAZITE": "레쿠쟈나이트", - "SABLENITE": "깜까미나이트", - "SALAMENCITE": "보만다나이트", - "SCEPTILITE": "나무킹나이트", - "SCIZORITE": "핫삼나이트", - "SHARPEDONITE": "샤크니아나이트", - "SLOWBRONITE": "야도란나이트", - "STEELIXITE": "강철톤나이트", - "SWAMPERTITE": "대짱이나이트", - "TYRANITARITE": "마기라스나이트", - "VENUSAURITE": "이상해꽃나이트", - - "BLUE_ORB": "쪽빛구슬", - "RED_ORB": "주홍구슬", - "SHARP_METEORITE": "뾰족한운석", - "HARD_METEORITE": "단단한운석", - "SMOOTH_METEORITE": "부드러운운석", - "ADAMANT_CRYSTAL": "큰금강옥", - "LUSTROUS_GLOBE": "큰백옥", - "GRISEOUS_CORE": "큰백금옥", - "REVEAL_GLASS": "비추는거울", - "GRACIDEA": "그라시데아꽃", - "MAX_MUSHROOMS": "다이버섯", - "DARK_STONE": "다크스톤", - "LIGHT_STONE": "라이트스톤", - "PRISON_BOTTLE": "굴레의항아리", - "N_LUNARIZER": "네크로플러스루나", - "N_SOLARIZER": "네크로플러스솔", - "RUSTED_SWORD": "녹슨검", - "RUSTED_SHIELD": "녹슨방패", - "ICY_REINS_OF_UNITY": "차가운유대의고삐", - "SHADOW_REINS_OF_UNITY": "검은유대의고삐", - "WELLSPRING_MASK": "우물의가면", - "HEARTHFLAME_MASK": "화덕의가면", - "CORNERSTONE_MASK": "주춧돌의가면", - "SHOCK_DRIVE": "번개카세트", - "BURN_DRIVE": "블레이즈카세트", - "CHILL_DRIVE": "프리즈카세트", - "DOUSE_DRIVE": "아쿠아카세트", - "ULTRANECROZIUM_Z": "울트라네크로Z", - - "FIST_PLATE": "주먹플레이트", - "SKY_PLATE": "푸른하늘플레이트", - "TOXIC_PLATE": "맹독플레이트", - "EARTH_PLATE": "대지플레이트", - "STONE_PLATE": "암석플레이트", - "INSECT_PLATE": "비단벌레플레이트", - "SPOOKY_PLATE": "원령플레이트", - "IRON_PLATE": "강철플레이트", - "FLAME_PLATE": "불구슬플레이트", - "SPLASH_PLATE": "물방울플레이트", - "MEADOW_PLATE": "초록플레이트", - "ZAP_PLATE": "우뢰플레이트", - "MIND_PLATE": "이상한플레이트", - "ICICLE_PLATE": "고드름플레이트", - "DRACO_PLATE": "용의플레이트", - "DREAD_PLATE": "공포플레이트", - "PIXIE_PLATE": "정령플레이트", - "BLANK_PLATE": "순백플레이트", - "LEGEND_PLATE": "레전드플레이트", - "FIGHTING_MEMORY": "파이팅메모리", - "FLYING_MEMORY": "플라잉메모리", - "POISON_MEMORY": "포이즌메모리", - "GROUND_MEMORY": "그라운드메모리", - "ROCK_MEMORY": "록메모리", - "BUG_MEMORY": "버그메모리", - "GHOST_MEMORY": "고스트메모리", - "STEEL_MEMORY": "스틸메모리", - "FIRE_MEMORY": "파이어메모리", - "WATER_MEMORY": "워터메모리", - "GRASS_MEMORY": "그래스메모리", - "ELECTRIC_MEMORY": "일렉트릭메모리", - "PSYCHIC_MEMORY": "사이킥메모리", - "ICE_MEMORY": "아이스메모리", - "DRAGON_MEMORY": "드래곤메모리", - "DARK_MEMORY": "다크메모리", - "FAIRY_MEMORY": "페어리메모리", - "BLANK_MEMORY": "빈메모리", - }, -} as const; diff --git a/src/locales/ko/modifier.ts b/src/locales/ko/modifier.json similarity index 81% rename from src/locales/ko/modifier.ts rename to src/locales/ko/modifier.json index 98460b118f1..281ecf61943 100644 --- a/src/locales/ko/modifier.ts +++ b/src/locales/ko/modifier.json @@ -1,14 +1,12 @@ -import { SimpleTranslationEntries } from "#app/interfaces/locales"; - -export const modifier: SimpleTranslationEntries = { +{ "surviveDamageApply": "{{pokemonNameWithAffix}}[[는]]\n{{typeName}}[[로]] 버텼다!!", "turnHealApply": "{{pokemonNameWithAffix}}[[는]]\n{{typeName}}[[로]] 인해 조금 회복했다.", "hitHealApply": "{{pokemonNameWithAffix}}[[는]]\n{{typeName}}[[로]] 인해 조금 회복했다.", "pokemonInstantReviveApply": "{{pokemonNameWithAffix}}[[는]] {{typeName}}[[로]]\n정신을 차려 싸울 수 있게 되었다!", - "pokemonResetNegativeStatStageApply": "{{pokemonNameWithAffix}}'s lowered stats were restored\nby its {{typeName}}!", + "pokemonResetNegativeStatStageApply": "{{pokemonNameWithAffix}}[[는]] {{typeName}}[[로]]\n상태를 원래대로 되돌렸다!", "moneyInterestApply": "{{typeName}}[[로]]부터\n₽{{moneyAmount}}[[를]] 받았다!", "turnHeldItemTransferApply": "{{pokemonName}}의 {{typeName}}[[는]]\n{{pokemonNameWithAffix}}의 {{itemName}}[[를]] 흡수했다!", "contactHeldItemTransferApply": "{{pokemonName}}의 {{typeName}}[[는]]\n{{pokemonNameWithAffix}}의 {{itemName}}[[를]] 가로챘다!", "enemyTurnHealApply": "{{pokemonNameWithAffix}}의\n체력이 약간 회복되었다!", - "bypassSpeedChanceApply": "{{pokemonName}}[[는]] {{itemName}}[[로]]\n행동이 빨라졌다!", -} as const; + "bypassSpeedChanceApply": "{{pokemonName}}[[는]] {{itemName}}[[로]]\n행동이 빨라졌다!" +} diff --git a/src/locales/ko/move-trigger.ts b/src/locales/ko/move-trigger.json similarity index 94% rename from src/locales/ko/move-trigger.ts rename to src/locales/ko/move-trigger.json index cea60e25333..61dffa122a3 100644 --- a/src/locales/ko/move-trigger.ts +++ b/src/locales/ko/move-trigger.json @@ -1,14 +1,12 @@ -import { SimpleTranslationEntries } from "#app/interfaces/locales"; - -export const moveTriggers: SimpleTranslationEntries = { - "hitWithRecoil" : "{{pokemonName}}[[는]]\n반동으로 데미지를 입었다!", +{ + "hitWithRecoil": "{{pokemonName}}[[는]]\n반동으로 데미지를 입었다!", "cutHpPowerUpMove": "{{pokemonName}}[[는]]\n체력을 깎아서 자신의 기술을 강화했다!", "absorbedElectricity": "{{pokemonName}}는(은)\n전기를 흡수했다!", "switchedStatChanges": "{{pokemonName}}[[는]] 상대와 자신의\n능력 변화를 바꿨다!", "goingAllOutForAttack": "{{pokemonName}}[[는]]\n전력을 다하기 시작했다!", "regainedHealth": "{{pokemonName}}[[는]]\n기력을 회복했다!", "keptGoingAndCrashed": "{{pokemonName}}[[는]]\n의욕이 넘쳐서 땅에 부딪쳤다!", - "fled": "{{pokemonName}}[[는]]\N도망쳤다!", + "fled": "{{pokemonName}}[[는]]\n도망쳤다!", "cannotBeSwitchedOut": "{{pokemonName}}[[를]]\n돌아오게 할 수 없습니다!", "swappedAbilitiesWithTarget": "{{pokemonName}}[[는]]\n서로의 특성을 교체했다!", "coinsScatteredEverywhere": "돈이 주위에 흩어졌다!", @@ -61,6 +59,7 @@ export const moveTriggers: SimpleTranslationEntries = { "faintCountdown": "{{pokemonName}}[[는]]\n{{turnCount}}턴 후에 쓰러져 버린다!", "copyType": "{{pokemonName}}[[는]]\n{{targetPokemonName}}[[와]] 같은 타입이 되었다!", "suppressAbilities": "{{pokemonName}}의\n특성이 효과를 발휘하지 못하게 되었다!", + "revivalBlessing": "{{pokemonName}}[[는]]\n정신을 차려 싸울 수 있게 되었다!", "swapArenaTags": "{{pokemonName}}[[는]]\n서로의 필드 효과를 교체했다!", - "exposedMove": "{{pokemonName}}[[는]]\n{{targetPokemonName}}의 정체를 꿰뚫어 보았다!", -} as const; + "exposedMove": "{{pokemonName}}[[는]]\n{{targetPokemonName}}의 정체를 꿰뚫어 보았다!" +} \ No newline at end of file diff --git a/src/locales/ko/move.json b/src/locales/ko/move.json new file mode 100644 index 00000000000..a06bb2b3e27 --- /dev/null +++ b/src/locales/ko/move.json @@ -0,0 +1,3810 @@ +{ + "pound": { + "name": "막치기", + "effect": "긴 꼬리나 손 등을 사용하여 상대를 때려서 공격한다." + }, + "karateChop": { + "name": "태권당수", + "effect": "날카로운 당수로 상대를 때려서 공격한다. 급소에 맞기 쉽다." + }, + "doubleSlap": { + "name": "연속뺨치기", + "effect": "연속 뺨치기로 상대를 때려서 공격한다. 2-5회 동안 연속으로 쓴다." + }, + "cometPunch": { + "name": "연속펀치", + "effect": "노도 같은 펀치로 상대를 세게 때려서 공격한다. 2-5회 동안 연속으로 쓴다." + }, + "megaPunch": { + "name": "메가톤펀치", + "effect": "힘을 담은 펀치로 상대를 공격한다." + }, + "payDay": { + "name": "고양이돈받기", + "effect": "상대의 몸에 돈을 세게 던져서 공격한다. 배틀 후에 돈을 받을 수 있다." + }, + "firePunch": { + "name": "불꽃펀치", + "effect": "불꽃을 담은 펀치로 상대를 공격한다. 화상 상태로 만들 때가 있다." + }, + "icePunch": { + "name": "냉동펀치", + "effect": "냉기를 담은 펀치로 상대를 공격한다. 얼음 상태로 만들 때가 있다." + }, + "thunderPunch": { + "name": "번개펀치", + "effect": "전격을 담은 펀치로 상대를 공격한다. 마비 상태로 만들 때가 있다." + }, + "scratch": { + "name": "할퀴기", + "effect": "단단하고 뾰족한 날카로운 손톱으로 상대를 할퀴어서 공격한다." + }, + "viseGrip": { + "name": "찝기", + "effect": "상대를 양쪽에서 집어서 데미지를 준다." + }, + "guillotine": { + "name": "가위자르기", + "effect": "큰 집게로 상대를 베어 갈라 공격한다. 맞으면 일격에 기절한다." + }, + "razorWind": { + "name": "칼바람", + "effect": "바람의 칼날을 만들어 2턴째에 상대를 공격한다. 급소에 맞기 쉽다." + }, + "swordsDance": { + "name": "칼춤", + "effect": "싸움의 춤을 격렬하게 춰서 기세를 높인다. 자신의 공격을 크게 올린다." + }, + "cut": { + "name": "풀베기", + "effect": "낫이나 발톱 등으로 상대를 베어 공격한다." + }, + "gust": { + "name": "바람일으키기", + "effect": "날개로 일으킨 격한 바람을 상대에게 부딪쳐서 공격한다." + }, + "wingAttack": { + "name": "날개치기", + "effect": "크게 펼친 훌륭한 날개를 상대에게 부딪쳐서 공격한다." + }, + "whirlwind": { + "name": "날려버리기", + "effect": "상대를 날려버려서 교대할 포켓몬을 끌어낸다. 야생의 경우에는 배틀이 끝난다." + }, + "fly": { + "name": "공중날기", + "effect": "1턴째에 하늘을 날아 2턴째에 상대를 공격한다." + }, + "bind": { + "name": "조이기", + "effect": "긴 몸이나 덩굴 등을 써서 4-5턴 동안 상대를 조여 공격한다." + }, + "slam": { + "name": "힘껏치기", + "effect": "긴 꼬리나 덩굴 등을 사용해 상대를 힘껏 쳐서 공격한다." + }, + "vineWhip": { + "name": "덩굴채찍", + "effect": "채찍처럼 휘어지는 가늘고 긴 덩굴로 상대를 힘껏 쳐서 공격한다." + }, + "stomp": { + "name": "짓밟기", + "effect": "큰 발로 상대를 짓밟아서 공격한다. 상대를 풀죽게 만들 때가 있다." + }, + "doubleKick": { + "name": "두번차기", + "effect": "2개의 다리로 상대를 걷어차서 공격한다. 2회 연속으로 데미지를 준다." + }, + "megaKick": { + "name": "메가톤킥", + "effect": "굉장한 힘을 담은 킥으로 상대를 걷어차서 공격한다." + }, + "jumpKick": { + "name": "점프킥", + "effect": "높이 점프해서 킥으로 상대를 공격한다. 빗나가면 자신이 데미지를 입는다." + }, + "rollingKick": { + "name": "돌려차기", + "effect": "몸을 재빨리 회전시키며 걷어차서 공격한다. 상대를 풀죽게 만들 때가 있다." + }, + "sandAttack": { + "name": "모래뿌리기", + "effect": "상대의 얼굴에 모래를 뿌려서 명중률을 떨어뜨린다." + }, + "headbutt": { + "name": "박치기", + "effect": "머리를 내밀어 곧장 돌진하여 공격한다. 상대를 풀죽게 만들 때가 있다." + }, + "hornAttack": { + "name": "뿔찌르기", + "effect": "날카롭고 뾰족한 뿔로 상대를 공격한다." + }, + "furyAttack": { + "name": "마구찌르기", + "effect": "뿔이나 부리로 상대를 찔러서 공격한다. 2-5회 동안 연속으로 쓴다." + }, + "hornDrill": { + "name": "뿔드릴", + "effect": "회전하는 뿔을 상대에게 꿰찔러서 공격한다. 맞으면 일격에 기절한다." + }, + "tackle": { + "name": "몸통박치기", + "effect": "상대를 향해서 몸 전체를 부딪쳐가며 공격한다." + }, + "bodySlam": { + "name": "누르기", + "effect": "몸 전체로 상대를 덮쳐눌러 공격한다. 마비 상태로 만들 때가 있다." + }, + "wrap": { + "name": "김밥말이", + "effect": "긴 몸이나 덩굴 등을 사용해 4-5턴 동안 상대를 휘감아 공격한다." + }, + "takeDown": { + "name": "돌진", + "effect": "굉장한 기세로 상대에게 부딪쳐 공격한다. 자신도 조금 데미지를 입는다." + }, + "thrash": { + "name": "난동부리기", + "effect": "2-3턴 동안 마구 난동 부려서 공격한다. 난동 부린 뒤에는 혼란에 빠진다." + }, + "doubleEdge": { + "name": "이판사판태클", + "effect": "목숨을 걸고 상대에게 돌진하여 공격을 한다. 자신도 상당한 데미지를 입는다." + }, + "tailWhip": { + "name": "꼬리흔들기", + "effect": "꼬리를 좌우로 귀엽게 흔들어 방심을 유도한다. 상대의 방어를 떨어뜨린다." + }, + "poisonSting": { + "name": "독침", + "effect": "독이 있는 침을 상대에게 꿰찔러서 공격한다. 독 상태로 만들 때가 있다." + }, + "twineedle": { + "name": "더블니들", + "effect": "2개의 침을 상대에게 꿰찔러 2회 연속으로 데미지를 준다. 독 상태로 만들 때가 있다." + }, + "pinMissile": { + "name": "바늘미사일", + "effect": "날카로운 침을 상대에게 발사해서 공격한다. 2-5회 동안 연속으로 쓴다." + }, + "leer": { + "name": "째려보기", + "effect": "날카로운 눈초리로 겁을 주어 상대의 방어를 떨어뜨린다." + }, + "bite": { + "name": "물기", + "effect": "날카롭고 뾰족한 이빨로 물어서 공격한다. 상대를 풀죽게 만들 때가 있다." + }, + "growl": { + "name": "울음소리", + "effect": "귀여운 울음소리를 들려주고 관심을 끌어 방심한 사이에 상대의 공격을 떨어뜨린다." + }, + "roar": { + "name": "울부짖기", + "effect": "상대를 도망가게 해서 교대할 포켓몬을 끌어낸다. 야생의 경우에는 배틀이 끝난다." + }, + "sing": { + "name": "노래하기", + "effect": "기분 좋은 예쁜 노랫소리를 들려주고 상대를 잠듦 상태로 만든다." + }, + "supersonic": { + "name": "초음파", + "effect": "특수한 음파를 몸에서 발산하여 상대를 혼란시킨다." + }, + "sonicBoom": { + "name": "소닉붐", + "effect": "충격파를 상대에 부딪쳐서 공격한다. 언제나 20의 데미지를 준다." + }, + "disable": { + "name": "사슬묶기", + "effect": "상대의 움직임을 막아 바로 전에 쓴 기술을 4턴 동안 사용할 수 없게 만든다." + }, + "acid": { + "name": "용해액", + "effect": "강한 산을 상대에게 끼얹어 공격한다. 상대의 특수방어를 떨어뜨릴 때가 있다." + }, + "ember": { + "name": "불꽃세례", + "effect": "작은 불꽃을 상대에게 발사하여 공격한다. 화상 상태로 만들 때가 있다." + }, + "flamethrower": { + "name": "화염방사", + "effect": "세찬 불꽃을 상대에게 발사하여 공격한다. 화상 상태로 만들 때가 있다." + }, + "mist": { + "name": "흰안개", + "effect": "하얀 안개로 몸을 덮는다. 5턴 동안 상대에 의해 능력이 떨어지지 않게 된다." + }, + "waterGun": { + "name": "물대포", + "effect": "물을 기세 좋게 상대에게 발사하여 공격한다." + }, + "hydroPump": { + "name": "하이드로펌프", + "effect": "대량의 물을 세찬 기세로 상대에게 발사하여 공격한다." + }, + "surf": { + "name": "파도타기", + "effect": "큰 파도로 자신의 주위에 있는 포켓몬을 공격한다." + }, + "iceBeam": { + "name": "냉동빔", + "effect": "냉동빔을 상대에게 발사하여 공격한다. 얼음 상태로 만들 때가 있다." + }, + "blizzard": { + "name": "눈보라", + "effect": "세찬 눈보라를 상대에게 내뿜어 공격한다. 얼음 상태로 만들 때가 있다." + }, + "psybeam": { + "name": "환상빔", + "effect": "이상한 광선을 상대에게 발사하여 공격한다. 혼란시킬 때가 있다." + }, + "bubbleBeam": { + "name": "거품광선", + "effect": "거품을 기세 좋게 상대에게 발사하여 공격한다. 스피드를 떨어뜨릴 때가 있다." + }, + "auroraBeam": { + "name": "오로라빔", + "effect": "무지개색의 빔을 상대에게 발사하여 공격한다. 공격을 떨어뜨릴 때가 있다." + }, + "hyperBeam": { + "name": "파괴광선", + "effect": "강한 광선을 상대에게 발사하여 공격한다. 다음 턴은 움직일 수 없다." + }, + "peck": { + "name": "쪼기", + "effect": "날카롭고 뾰족한 부리나 뿔로 상대를 쪼아서 공격한다." + }, + "drillPeck": { + "name": "회전부리", + "effect": "회전하면서 뾰족한 부리를 상대에게 꿰찔러 공격한다." + }, + "submission": { + "name": "지옥의바퀴", + "effect": "땅에 자신과 함께 상대를 내던져 공격한다. 자신도 조금 데미지를 입는다." + }, + "lowKick": { + "name": "안다리걸기", + "effect": "발을 강하게 걸고 상대를 넘어뜨려 공격한다. 상대가 무거울수록 위력이 올라간다." + }, + "counter": { + "name": "카운터", + "effect": "상대로부터 받은 물리공격의 데미지를 2배로 만들어 같은 상대에게 돌려준다." + }, + "seismicToss": { + "name": "지구던지기", + "effect": "인력을 사용해 내던진다. 자신의 레벨과 똑같은 데미지를 상대에게 준다." + }, + "strength": { + "name": "괴력", + "effect": "혼신의 힘으로 상대를 세게 때려서 공격한다." + }, + "absorb": { + "name": "흡수", + "effect": "양분을 흡수하여 공격한다. 입힌 데미지의 절반에 해당하는 HP를 회복할 수 있다." + }, + "megaDrain": { + "name": "메가드레인", + "effect": "양분을 흡수하여 공격한다. 입힌 데미지의 절반에 해당하는 HP를 회복할 수 있다." + }, + "leechSeed": { + "name": "씨뿌리기", + "effect": "씨가 뿌려진 상대의 HP를 매 턴 조금씩 흡수하여 자신의 HP를 회복한다." + }, + "growth": { + "name": "성장", + "effect": "몸을 일시에 크게 성장시켜 공격과 특수공격을 올린다." + }, + "razorLeaf": { + "name": "잎날가르기", + "effect": "잎사귀를 날려 상대를 베어 공격한다. 급소에 맞기 쉽다." + }, + "solarBeam": { + "name": "솔라빔", + "effect": "1턴째에 빛을 가득 모아 2턴째에 빛의 다발을 발사하여 공격한다." + }, + "poisonPowder": { + "name": "독가루", + "effect": "독이 있는 가루를 많이 흩뿌려서 상대를 독 상태로 만든다." + }, + "stunSpore": { + "name": "저리가루", + "effect": "저리가루를 많이 흩뿌려서 상대를 마비 상태로 만든다." + }, + "sleepPowder": { + "name": "수면가루", + "effect": "잠이 오는 가루를 많이 흩뿌려서 상대를 잠듦 상태로 만든다." + }, + "petalDance": { + "name": "꽃잎댄스", + "effect": "2-3턴 동안 꽃을 흩뿌려서 상대를 공격한다. 흩뿌린 뒤에는 혼란에 빠진다." + }, + "stringShot": { + "name": "실뿜기", + "effect": "입에서 뿜어낸 실을 휘감아서 상대의 스피드를 크게 떨어뜨린다." + }, + "dragonRage": { + "name": "용의분노", + "effect": "분노의 충격파를 상대에게 부딪쳐서 공격한다. 언제나 40의 데미지를 준다." + }, + "fireSpin": { + "name": "회오리불꽃", + "effect": "세차게 소용돌이치는 불꽃 속에 4-5턴 동안 상대를 가두어 공격한다." + }, + "thunderShock": { + "name": "전기쇼크", + "effect": "전기 자극을 상대에게 날려서 공격한다. 마비 상태로 만들 때가 있다." + }, + "thunderbolt": { + "name": "10만볼트", + "effect": "강한 전격을 상대에게 날려서 공격한다. 마비 상태로 만들 때가 있다." + }, + "thunderWave": { + "name": "전기자석파", + "effect": "약한 전격을 날려서 상대를 마비 상태로 만든다." + }, + "thunder": { + "name": "번개", + "effect": "강한 번개를 상대에게 떨어뜨려 공격한다. 마비 상태로 만들 때가 있다." + }, + "rockThrow": { + "name": "돌떨구기", + "effect": "작은 바위를 들어올려 상대에게 내던져서 공격한다." + }, + "earthquake": { + "name": "지진", + "effect": "지진의 충격으로 자신의 주위에 있는 포켓몬을 공격한다." + }, + "fissure": { + "name": "땅가르기", + "effect": "땅이 갈라진 곳에 상대를 떨어뜨려 공격한다. 맞으면 일격에 기절한다." + }, + "dig": { + "name": "구멍파기", + "effect": "1턴째에 파고들어 2턴째에 상대를 공격한다." + }, + "toxic": { + "name": "맹독", + "effect": "상대를 맹독의 상태로 만든다. 턴이 진행될수록 독의 데미지가 증가한다." + }, + "confusion": { + "name": "염동력", + "effect": "약한 염동력을 상대에게 보내어 공격한다. 상대를 혼란시킬 때가 있다." + }, + "psychic": { + "name": "사이코키네시스", + "effect": "강한 염동력을 상대에게 보내어 공격한다. 상대의 특수방어를 떨어뜨릴 때가 있다." + }, + "hypnosis": { + "name": "최면술", + "effect": "졸음을 유도하는 암시를 걸어서 상대를 잠듦 상태로 만든다." + }, + "meditate": { + "name": "요가포즈", + "effect": "잠들어 있는 힘을 몸속에서 끌어내어 자신의 공격을 올린다." + }, + "agility": { + "name": "고속이동", + "effect": "힘을 빼고 몸을 가볍게 해서 고속으로 움직인다. 자신의 스피드를 크게 올린다." + }, + "quickAttack": { + "name": "전광석화", + "effect": "눈에 보이지 않는 굉장한 속도로 상대에게 돌진한다. 반드시 선제공격할 수 있다." + }, + "rage": { + "name": "분노", + "effect": "기술을 썼을 때 공격을 받으면 분노의 힘으로 공격이 올라간다." + }, + "teleport": { + "name": "순간이동", + "effect": "교대할 포켓몬이 있을 때 사용하면 교체한다. 야생 포켓몬은 도망가 버린다." + }, + "nightShade": { + "name": "나이트헤드", + "effect": "무시무시한 환상을 보게 해서 자신의 레벨과 똑같은 만큼의 데미지를 상대에게 준다." + }, + "mimic": { + "name": "흉내내기", + "effect": "상대가 마지막에 사용한 기술을 배틀을 하는 동안 자신의 기술로 만들 수 있다." + }, + "screech": { + "name": "싫은소리", + "effect": "그만 귀를 막아버리고 싶은 싫은 소리를 내어 상대의 방어를 크게 떨어뜨린다." + }, + "doubleTeam": { + "name": "그림자분신", + "effect": "재빠른 움직임으로 분신을 만들어 상대를 혼란시켜 회피율을 올린다." + }, + "recover": { + "name": "HP회복", + "effect": "세포를 재생시켜 자신의 최대 HP의 절반만큼 HP를 회복한다." + }, + "harden": { + "name": "단단해지기", + "effect": "전신에 힘을 담아 몸을 단단하게 해서 자신의 방어를 올린다." + }, + "minimize": { + "name": "작아지기", + "effect": "몸을 축소하여 작게 보임으로써 자신의 회피율을 크게 올린다." + }, + "smokescreen": { + "name": "연막", + "effect": "연기나 먹물을 내뿜어 상대의 명중률을 떨어뜨린다." + }, + "confuseRay": { + "name": "이상한빛", + "effect": "이상한 빛을 상대에게 비춰 당황하게 한다. 상대를 혼란시킨다." + }, + "withdraw": { + "name": "껍질에숨기", + "effect": "껍질에 숨어 몸을 보호하여 자신의 방어를 올린다." + }, + "defenseCurl": { + "name": "웅크리기", + "effect": "몸을 둥글게 웅크려서 자신의 방어를 올린다." + }, + "barrier": { + "name": "배리어", + "effect": "튼튼한 장막을 만들어 자신의 방어를 크게 올린다." + }, + "lightScreen": { + "name": "빛의장막", + "effect": "5턴 동안 이상한 장막을 쳐서 상대로부터 받는 특수공격의 데미지를 약하게 한다." + }, + "haze": { + "name": "흑안개", + "effect": "흑안개를 뿜어 배틀에 참가 중인 포켓몬 전원의 능력 변화를 원래대로 돌린다." + }, + "reflect": { + "name": "리플렉터", + "effect": "5턴 동안 이상한 장막을 쳐서 상대로부터 받는 물리공격의 데미지를 약하게 한다." + }, + "focusEnergy": { + "name": "기충전", + "effect": "깊게 숨을 들이마셔 기합을 넣는다. 자신의 공격이 급소에 맞기 쉬워진다." + }, + "bide": { + "name": "참기", + "effect": "2턴 동안 공격을 견뎌 입은 데미지를 2배로 만들어 상대에게 돌려준다." + }, + "metronome": { + "name": "손가락흔들기", + "effect": "손가락을 흔들어 자신의 뇌를 자극해서 모든 기술 중 어느 하나를 날린다." + }, + "mirrorMove": { + "name": "따라하기", + "effect": "상대가 사용한 기술을 흉내 내어 자신도 똑같은 기술을 쓴다." + }, + "selfDestruct": { + "name": "자폭", + "effect": "폭발을 일으켜서 자신의 주위에 있는 포켓몬을 공격한다. 쓰고 나서 기절하게 된다." + }, + "eggBomb": { + "name": "알폭탄", + "effect": "큰 알을 온 힘을 다해 상대에게 내던져서 공격한다." + }, + "lick": { + "name": "핥기", + "effect": "긴 혀로 상대를 핥아서 공격한다. 마비 상태로 만들 때가 있다." + }, + "smog": { + "name": "스모그", + "effect": "더러운 가스를 상대에게 내뿜어 공격한다. 독 상태로 만들 때가 있다." + }, + "sludge": { + "name": "오물공격", + "effect": "더러운 오물을 상대에게 내던져서 공격한다. 독 상태로 만들 때가 있다." + }, + "boneClub": { + "name": "뼈다귀치기", + "effect": "손에 들고 있는 뼈로 상대를 세게 때려서 공격한다. 상대를 풀죽게 만들 때가 있다." + }, + "fireBlast": { + "name": "불대문자", + "effect": "큰 대자의 불꽃으로 상대를 불태운다. 화상 상태로 만들 때가 있다." + }, + "waterfall": { + "name": "폭포오르기", + "effect": "굉장한 기세로 상대에게 돌진한다. 상대를 풀죽게 만들 때가 있다." + }, + "clamp": { + "name": "껍질끼우기", + "effect": "매우 튼튼하고 두꺼운 껍질에 4-5턴 동안 상대를 끼워서 공격한다." + }, + "swift": { + "name": "스피드스타", + "effect": "별 모양의 빛을 발사해서 상대를 공격한다. 공격은 반드시 명중한다." + }, + "skullBash": { + "name": "로켓박치기", + "effect": "1턴째에 머리를 움츠려 방어를 올린다. 2턴째에 상대를 공격한다." + }, + "spikeCannon": { + "name": "가시대포", + "effect": "날카로운 침을 상대에게 발사해서 공격한다. 2-5회 동안 연속으로 쓴다." + }, + "constrict": { + "name": "휘감기", + "effect": "촉수나 덩굴 등을 휘감아서 공격한다. 상대의 스피드를 떨어뜨릴 때가 있다." + }, + "amnesia": { + "name": "망각술", + "effect": "머리를 비워서 순간적으로 무언가를 잊어버림으로써 자신의 특수방어를 크게 올린다." + }, + "kinesis": { + "name": "숟가락휘기", + "effect": "숟가락을 휘어서 주의를 끌어 상대의 명중률을 낮춘다." + }, + "softBoiled": { + "name": "알낳기", + "effect": "자신의 최대 HP 절반을 회복한다." + }, + "highJumpKick": { + "name": "무릎차기", + "effect": "점프해서 무릎차기로 상대를 공격한다. 빗나가면 자신이 데미지를 입는다." + }, + "glare": { + "name": "뱀눈초리", + "effect": "배의 무늬로 겁을 주어 상대를 마비 상태로 만든다." + }, + "dreamEater": { + "name": "꿈먹기", + "effect": "잠자고 있는 상대의 꿈을 먹어 공격한다. 데미지의 절반을 HP로 회복한다." + }, + "poisonGas": { + "name": "독가스", + "effect": "독가스를 상대의 얼굴에 내뿜어 독 상태로 만든다." + }, + "barrage": { + "name": "구슬던지기", + "effect": "둥근 것을 상대에게 내던져서 공격한다. 2-5회 동안 연속으로 쓴다." + }, + "leechLife": { + "name": "흡혈", + "effect": "피를 빨아서 상대를 공격한다. 준 데미지의 절반을 HP로 회복한다." + }, + "lovelyKiss": { + "name": "악마의키스", + "effect": "무서운 얼굴로 키스한다. 상대를 잠듦 상태로 만든다." + }, + "skyAttack": { + "name": "불새", + "effect": "2턴째에 상대를 공격한다. 가끔 풀죽게 만든다. 급소에도 맞기 쉽다." + }, + "transform": { + "name": "변신", + "effect": "상대 포켓몬으로 변신하여 상대와 완전히 똑같은 기술을 사용할 수 있다." + }, + "bubble": { + "name": "거품", + "effect": "매우 많은 거품을 상대에게 내뿜어 공격한다. 상대의 스피드를 떨어뜨릴 때가 있다." + }, + "dizzyPunch": { + "name": "잼잼펀치", + "effect": "리드미컬한 펀치를 날려 상대를 공격한다. 혼란시킬 때가 있다." + }, + "spore": { + "name": "버섯포자", + "effect": "최면 효과가 있는 포자를 훌훌 흩뿌려서 상대를 잠듦 상태로 만든다." + }, + "flash": { + "name": "플래시", + "effect": "눈이 부신 빛으로 상대의 명중률을 떨어뜨린다." + }, + "psywave": { + "name": "사이코웨이브", + "effect": "이상한 염력파를 상대에게 발사하여 공격한다. 사용할 때마다 데미지가 바뀐다." + }, + "splash": { + "name": "튀어오르기", + "effect": "공격도 하지 않고 팔딱팔딱 튈 뿐 아무 일도 일어나지 않는다..." + }, + "acidArmor": { + "name": "녹기", + "effect": "세포의 변화로 액체가 되어 자신의 방어를 크게 올린다." + }, + "crabhammer": { + "name": "집게해머", + "effect": "큰 집게를 상대에게 내리쳐서 공격한다. 급소에 맞기 쉽다." + }, + "explosion": { + "name": "대폭발", + "effect": "큰 폭발로 자신의 주위에 있는 포켓몬을 공격한다. 쓰고 나서는 기절한다." + }, + "furySwipes": { + "name": "마구할퀴기", + "effect": "손톱이나 낫 등으로 상대를 할퀴어서 공격한다. 2-5회 동안 연속으로 쓴다." + }, + "bonemerang": { + "name": "뼈다귀부메랑", + "effect": "손에 들고 있는 뼈를 상대에게 날려서 날아갈 때와 돌아올 때 2회 연속 데미지를 준다." + }, + "rest": { + "name": "잠자기", + "effect": "2턴 동안 계속 잠잔다. 자신의 HP와 상태 이상을 모두 회복한다." + }, + "rockSlide": { + "name": "스톤샤워", + "effect": "큰 바위를 세차게 부딪쳐서 공격한다. 상대를 풀죽게 만들 때가 있다." + }, + "hyperFang": { + "name": "필살앞니", + "effect": "날카로운 앞니로 강하게 물어서 공격한다. 상대를 풀죽게 만들 때가 있다." + }, + "sharpen": { + "name": "각지기", + "effect": "몸의 각을 늘려서 더욱 각지게 하여 자신의 공격을 올린다." + }, + "conversion": { + "name": "텍스처", + "effect": "자신의 타입을 배운 기술 중 가장 위에 있는 기술과 같은 타입으로 바꾼다." + }, + "triAttack": { + "name": "트라이어택", + "effect": "3개의 광선으로 공격한다. 마비, 화상 또는 얼음 상태 중 어느 하나로 만들 때가 있다." + }, + "superFang": { + "name": "분노의앞니", + "effect": "날카로운 앞니로 강하게 물어서 공격한다. 상대의 HP는 절반이 된다." + }, + "slash": { + "name": "베어가르기", + "effect": "발톱이나 낫 등으로 상대를 베어 갈라서 공격한다. 급소에 맞기 쉽다." + }, + "substitute": { + "name": "대타출동", + "effect": "자신의 HP를 조금 깎아서 분신을 만든다. 분신은 자신의 대타가 된다." + }, + "struggle": { + "name": "발버둥", + "effect": "자신의 PP가 떨어지면 발버둥 쳐 상대를 공격한다. 자신도 조금 데미지를 입는다." + }, + "sketch": { + "name": "스케치", + "effect": "상대가 쓴 기술을 자신의 것으로 만든다. 한 번 사용하면 스케치는 사라진다." + }, + "tripleKick": { + "name": "트리플킥", + "effect": "3회 연속으로 킥을 날려 공격한다. 기술이 맞을 때마다 위력이 올라간다." + }, + "thief": { + "name": "도둑질", + "effect": "공격과 동시에 30%의 확률로 도구를 훔친다." + }, + "spiderWeb": { + "name": "거미집", + "effect": "끈적끈적하고 가는 실을 칭칭 휘감아 상대를 배틀에서 도망칠 수 없게 한다." + }, + "mindReader": { + "name": "마음의눈", + "effect": "상대의 움직임을 마음으로 읽고 다음 공격이 반드시 상대에게 명중되게 한다." + }, + "nightmare": { + "name": "악몽", + "effect": "잠듦 상태의 상대에게 악몽을 꾸게 하여 매 턴 조금씩 HP를 떨어뜨려 간다." + }, + "flameWheel": { + "name": "화염바퀴", + "effect": "불꽃을 둘러 상대에게 돌진하여 공격한다. 화상 상태로 만들 때가 있다." + }, + "snore": { + "name": "코골기", + "effect": "자신이 잠들어 있을 때 소음을 내어 공격한다. 상대를 풀죽게 만들 때가 있다." + }, + "curse": { + "name": "저주", + "effect": "기술을 쓰는 포켓몬이 고스트타입일 때와 그 이외의 타입일 때는 효과가 다르다." + }, + "flail": { + "name": "바둥바둥", + "effect": "바둥바둥 난동 부려서 공격한다. 자신의 HP가 적을수록 기술의 위력이 올라간다." + }, + "conversion2": { + "name": "텍스처2", + "effect": "상대가 마지막으로 쓴 기술에 저항할 수 있도록 자신의 타입을 변화시킨다." + }, + "aeroblast": { + "name": "에어로블라스트", + "effect": "공기의 소용돌이를 발사하여 공격한다. 급소에 맞기 쉽다." + }, + "cottonSpore": { + "name": "목화포자", + "effect": "솜처럼 폭신폭신한 포자를 착 달라붙게 해서 상대의 스피드를 크게 떨어뜨린다." + }, + "reversal": { + "name": "기사회생", + "effect": "힘을 쥐어짜서 공격한다. 자신의 HP가 적을수록 기술의 위력이 올라간다." + }, + "spite": { + "name": "원한", + "effect": "상대가 마지막으로 사용한 기술에 원한을 품어 그 기술의 PP를 4만큼 줄인다." + }, + "powderSnow": { + "name": "눈싸라기", + "effect": "차가운 가랑눈을 상대에게 내뿜어 공격한다. 얼음 상태로 만들 때가 있다." + }, + "protect": { + "name": "방어", + "effect": "상대의 공격을 전혀 받지 않는다. 연속으로 쓰면 실패하기 쉽다." + }, + "machPunch": { + "name": "마하펀치", + "effect": "눈에 보이지 않는 굉장한 속도로 펀치를 날린다. 반드시 선제공격을 할 수 있다." + }, + "scaryFace": { + "name": "겁나는얼굴", + "effect": "무서운 얼굴로 노려보고 겁주어 상대의 스피드를 크게 떨어뜨린다." + }, + "feintAttack": { + "name": "속여때리기", + "effect": "슬금슬금 상대에게 다가가 방심한 틈을 타서 세게 때린다. 공격은 반드시 명중한다." + }, + "sweetKiss": { + "name": "천사의키스", + "effect": "천사처럼 귀엽게 키스하여 상대를 혼란시킨다." + }, + "bellyDrum": { + "name": "배북", + "effect": "자신의 HP를 최대 HP의 절반만큼 감소시켜 자신의 공격을 최대로 올린다." + }, + "sludgeBomb": { + "name": "오물폭탄", + "effect": "더러운 오물을 상대에게 내던져서 공격한다. 독 상태로 만들 때가 있다." + }, + "mudSlap": { + "name": "진흙뿌리기", + "effect": "상대의 얼굴 등에 진흙을 내던져서 공격한다. 명중률을 떨어뜨린다." + }, + "octazooka": { + "name": "대포무노포", + "effect": "상대의 얼굴 등에 먹물을 내뿜어 공격한다. 명중률을 떨어뜨릴 때가 있다." + }, + "spikes": { + "name": "압정뿌리기", + "effect": "상대의 발밑에 압정을 뿌린다. 교체된 상대 포켓몬에게 데미지를 준다." + }, + "zapCannon": { + "name": "전자포", + "effect": "대포처럼 전기를 발사해서 공격한다. 상대를 마비 상태로 만든다." + }, + "foresight": { + "name": "꿰뚫어보기", + "effect": "고스트타입에 효과가 없는 기술이나 회피율이 높은 상대라 할지라도 공격이 맞게 된다." + }, + "destinyBond": { + "name": "길동무", + "effect": "기술을 쓴 뒤 상대의 공격으로 기절했을 때 공격 상대도 기절하게 한다. 연속으로 쓰면 실패한다." + }, + "perishSong": { + "name": "멸망의노래", + "effect": "노래를 들은 포켓몬은 3턴이 지나면 기절한다. 교체되면 효과가 없어진다." + }, + "icyWind": { + "name": "얼어붙은바람", + "effect": "차가운 냉기를 상대에게 내뿜어 공격한다. 상대의 스피드를 떨어뜨린다." + }, + "detect": { + "name": "판별", + "effect": "상대의 공격을 전혀 받지 않는다. 연속으로 쓰면 실패하기 쉽다." + }, + "boneRush": { + "name": "본러시", + "effect": "단단한 뼈로 상대를 세게 때려서 공격한다. 2-5회 동안 연속으로 쓴다." + }, + "lockOn": { + "name": "록온", + "effect": "조준을 잘 맞춰 다음 공격이 반드시 상대에게 명중하도록 한다." + }, + "outrage": { + "name": "역린", + "effect": "2-3턴 동안 마구 난동 부려서 공격한다. 난동 부린 뒤에는 혼란에 빠진다." + }, + "sandstorm": { + "name": "모래바람", + "effect": "5턴 동안 모래바람을 일으켜 바위 땅, 강철타입 이외의 상대에게 데미지를 준다. 바위타입의 특수방어가 올라간다." + }, + "gigaDrain": { + "name": "기가드레인", + "effect": "양분을 흡수하여 공격한다. 입힌 데미지의 절반에 해당하는 HP를 회복할 수 있다." + }, + "endure": { + "name": "버티기", + "effect": "공격을 받아도 HP를 반드시 1만큼은 남긴다. 연속으로 쓰면 실패하기 쉽다." + }, + "charm": { + "name": "애교부리기", + "effect": "귀엽게 바라보고 방심을 유도하여 상대의 공격을 크게 떨어뜨린다." + }, + "rollout": { + "name": "구르기", + "effect": "5턴 동안 구르기를 반복하여 공격한다. 기술이 맞을 때마다 위력이 올라간다." + }, + "falseSwipe": { + "name": "칼등치기", + "effect": "상대의 HP가 반드시 1만 남도록 조절하여 공격한다." + }, + "swagger": { + "name": "뽐내기", + "effect": "상대를 화내게 해서 혼란시킨다. 분노로 상대의 공격은 크게 올라가 버린다." + }, + "milkDrink": { + "name": "우유마시기", + "effect": "자신의 최대 HP 절반을 회복한다." + }, + "spark": { + "name": "스파크", + "effect": "전기를 둘러 상대에게 돌진하여 공격한다. 마비 상태로 만들 때가 있다." + }, + "furyCutter": { + "name": "연속자르기", + "effect": "낫이나 발톱 등으로 상대를 베어 공격한다. 연속으로 맞히면 위력이 올라간다." + }, + "steelWing": { + "name": "강철날개", + "effect": "단단한 날개를 상대에게 부딪쳐서 공격한다. 자신의 방어가 올라갈 때가 있다." + }, + "meanLook": { + "name": "검은눈빛", + "effect": "빨려 들어갈 것 같은 까만 눈빛으로 가만히 응시하여 상대를 배틀에서 도망갈 수 없게 한다." + }, + "attract": { + "name": "헤롱헤롱", + "effect": "수컷은 암컷을 암컷은 수컷을 유혹하여 헤롱헤롱하게 만든다. 상대가 기술을 쓰기 어려워진다." + }, + "sleepTalk": { + "name": "잠꼬대", + "effect": "자신이 배운 기술 중 하나를 무작위로 날린다. 자신이 잠들어 있을 때만 쓸 수 있다." + }, + "healBell": { + "name": "치료방울", + "effect": "기분 좋은 방울소리를 들려주어 같은 편 전원의 상태 이상을 회복한다." + }, + "return": { + "name": "은혜갚기", + "effect": "트레이너를 위해 전력으로 상대를 공격한다. 친밀할수록 위력이 올라간다." + }, + "present": { + "name": "프레젠트", + "effect": "덫을 설치한 상자를 상대에게 건네어 공격한다. HP가 회복돼버릴 때도 있다." + }, + "frustration": { + "name": "화풀이", + "effect": "불만을 풀기 위해 전력으로 상대를 공격한다. 친밀하지 않을수록 위력이 올라간다." + }, + "safeguard": { + "name": "신비의부적", + "effect": "5턴 동안 이상한 힘의 보호를 받아 상태 이상이 되지 않는다." + }, + "painSplit": { + "name": "아픔나누기", + "effect": "자신의 HP와 상대의 HP를 합친 것을 자신과 상대가 사이좋게 나눈다." + }, + "sacredFire": { + "name": "성스러운불꽃", + "effect": "신비한 불꽃으로 상대를 태워서 공격한다. 화상 상태로 만들 때가 있다." + }, + "magnitude": { + "name": "매그니튜드", + "effect": "땅을 흔들어서 자신의 주위에 있는 포켓몬을 공격한다. 기술의 위력이 여러모로 바뀐다." + }, + "dynamicPunch": { + "name": "폭발펀치", + "effect": "혼신의 힘으로 펀치를 날려서 공격한다. 상대를 반드시 혼란시킨다." + }, + "megahorn": { + "name": "메가혼", + "effect": "단단하고 훌륭한 뿔로 마음껏 상대를 꿰찔러서 공격한다." + }, + "dragonBreath": { + "name": "용의숨결", + "effect": "굉장한 숨결을 상대에게 내뿜어 공격한다. 마비 상태로 만들 때가 있다." + }, + "batonPass": { + "name": "배턴터치", + "effect": "교대 포켓몬과 바뀐다. 능력 변화는 바뀐 포켓몬이 그대로 이어받는다." + }, + "encore": { + "name": "앙코르", + "effect": "상대에게 앙코르를 외쳐서 기술을 3번 연속으로 쓰게 한다." + }, + "pursuit": { + "name": "따라가때리기", + "effect": "상대 포켓몬이 교체될 때 기술을 쓰면 2배의 위력으로 공격할 수 있다." + }, + "rapidSpin": { + "name": "고속스핀", + "effect": "회전해서 상대를 공격한다. 조이기, 김밥말이, 씨뿌리기 등을 날려버린다. 자신의 스피드도 오른다." + }, + "sweetScent": { + "name": "달콤한향기", + "effect": "향기로 상대의 회피율을 크게 떨어뜨린다." + }, + "ironTail": { + "name": "아이언테일", + "effect": "단단한 꼬리로 상대를 힘껏 쳐서 공격한다. 상대의 방어를 떨어뜨릴 때가 있다." + }, + "metalClaw": { + "name": "메탈클로", + "effect": "강철의 발톱으로 상대를 베어 갈라 공격한다. 자신의 공격이 올라갈 때도 있다." + }, + "vitalThrow": { + "name": "받아던지기", + "effect": "상대보다 나중에 공격한다. 그 대신 자신의 공격은 반드시 명중한다." + }, + "morningSun": { + "name": "아침햇살", + "effect": "자신의 HP를 회복한다. 날씨에 따라 회복량이 변한다." + }, + "synthesis": { + "name": "광합성", + "effect": "자신의 HP를 회복한다. 날씨에 따라 회복량이 변한다." + }, + "moonlight": { + "name": "달빛", + "effect": "자신의 HP를 회복한다. 날씨에 따라 회복량이 변한다." + }, + "hiddenPower": { + "name": "잠재파워", + "effect": "기술을 쓴 포켓몬에 따라 기술의 타입이 바뀐다." + }, + "crossChop": { + "name": "크로스촙", + "effect": "양손으로 당수를 상대에게 힘껏 쳐서 공격한다. 급소에 맞기 쉽다." + }, + "twister": { + "name": "회오리", + "effect": "회오리를 일으켜 상대를 끌어들여 공격한다. 상대를 풀죽게 만들 때가 있다." + }, + "rainDance": { + "name": "비바라기", + "effect": "5턴 동안 비를 내리게 해서 물타입 기술의 위력을 올린다. 불꽃타입의 위력은 떨어진다." + }, + "sunnyDay": { + "name": "쾌청", + "effect": "5턴 동안 햇살을 강하게 해서 불꽃타입 기술의 위력을 올린다. 물타입의 위력은 떨어진다." + }, + "crunch": { + "name": "깨물어부수기", + "effect": "날카로운 이빨로 상대를 깨물어 부숴서 공격한다. 상대의 방어를 떨어뜨릴 때가 있다." + }, + "mirrorCoat": { + "name": "미러코트", + "effect": "상대에게 받은 특수공격의 데미지를 2배로 만들어 그 상대에게 돌려준다." + }, + "psychUp": { + "name": "자기암시", + "effect": "자신에게 암시를 걸어서 능력 변화 상태를 상대와 똑같은 상태로 만든다." + }, + "extremeSpeed": { + "name": "신속", + "effect": "눈에 보이지 않는 굉장한 속도로 상대에게 돌진하여 공격한다. 반드시 선제공격을 할 수 있다." + }, + "ancientPower": { + "name": "원시의힘", + "effect": "원시의 힘으로 공격한다. 자신의 모든 능력이 오를 때가 있다." + }, + "shadowBall": { + "name": "섀도볼", + "effect": "까만 그림자의 덩어리를 내던져서 공격한다. 상대의 특수방어를 떨어뜨릴 때가 있다." + }, + "futureSight": { + "name": "미래예지", + "effect": "기술을 사용한 2턴 뒤에 상대에게 염동력의 덩어리를 보내어 공격한다." + }, + "rockSmash": { + "name": "바위깨기", + "effect": "펀치로 공격한다. 상대의 방어를 떨어뜨릴 때가 있다." + }, + "whirlpool": { + "name": "바다회오리", + "effect": "세차게 소용돌이치는 물속에 4-5턴 동안 상대를 가두어 공격한다." + }, + "beatUp": { + "name": "집단구타", + "effect": "같은 편 전원이 공격한다. 동료 포켓몬이 많을수록 기술의 공격 횟수가 증가한다." + }, + "fakeOut": { + "name": "속이기", + "effect": "선제공격으로 상대를 풀죽게 한다. 배틀에 나가서 바로 쓰지 않으면 성공할 수 없다." + }, + "uproar": { + "name": "소란피기", + "effect": "3턴 동안 소란 피워 공격한다. 그동안은 아무도 잠들지 않게 된다." + }, + "stockpile": { + "name": "비축하기", + "effect": "힘을 비축해서 자신의 방어와 특수방어를 올린다. 최대 3회까지 비축할 수 있다." + }, + "spitUp": { + "name": "토해내기", + "effect": "비축된 힘을 상대에게 부딪쳐서 공격한다. 비축된 만큼 위력이 올라간다." + }, + "swallow": { + "name": "꿀꺽", + "effect": "비축된 힘을 꿀꺽해서 자신의 HP를 회복한다. 비축된 만큼 회복한다." + }, + "heatWave": { + "name": "열풍", + "effect": "뜨거운 숨결을 상대에게 내뿜어 공격한다. 화상 상태로 만들 때가 있다." + }, + "hail": { + "name": "싸라기눈", + "effect": "5턴 동안 싸라기눈을 내리게 해서 얼음타입이 아닌 포켓몬 모두에게 데미지를 준다." + }, + "torment": { + "name": "트집", + "effect": "상대에게 트집을 잡아서 똑같은 기술을 2회 연속으로 쓸 수 없게 한다." + }, + "flatter": { + "name": "부추기기", + "effect": "상대를 부추겨서 혼란시킨다. 동시에 상대의 특수공격도 올라가 버린다." + }, + "willOWisp": { + "name": "도깨비불", + "effect": "으스스하고 괴상한 불꽃을 쏘아 상대를 화상 상태로 만든다." + }, + "memento": { + "name": "추억의선물", + "effect": "자신은 기절하게 되지만 그 대신 상대의 공격과 특수공격을 크게 떨어뜨린다." + }, + "facade": { + "name": "객기", + "effect": "자신이 독, 마비, 화상 상태일 때 날리면 기술의 위력이 2배가 된다." + }, + "focusPunch": { + "name": "힘껏펀치", + "effect": "정신력을 높여 펀치를 날린다. 기술을 쓰기 전에 공격을 받으면 실패한다." + }, + "smellingSalts": { + "name": "정신차리기", + "effect": "마비 상태의 상대에게는 위력이 2배가 되지만 대신 상대의 마비가 풀린다." + }, + "followMe": { + "name": "날따름", + "effect": "자신에게 주목시켜 상대로부터의 공격을 모두 자신에게 향하게 한다." + }, + "naturePower": { + "name": "자연의힘", + "effect": "자연의 힘으로 공격한다. 사용하는 장소에 따라 나오는 기술이 변화한다." + }, + "charge": { + "name": "충전", + "effect": "다음 턴에 쓸 전기타입 기술의 위력을 올린다. 자신의 특수방어도 올라간다." + }, + "taunt": { + "name": "도발", + "effect": "상대를 화나게 한다. 3턴 동안 상대는 데미지를 주는 기술밖에 쓸 수 없게 된다." + }, + "helpingHand": { + "name": "도우미", + "effect": "동료를 돕는다. 도움받은 포켓몬이 쓰는 기술의 위력은 여느 때보다 커진다." + }, + "trick": { + "name": "트릭", + "effect": "상대의 빈틈을 노려 자신과 상대가 지닌 물건을 바꿔치기한다." + }, + "rolePlay": { + "name": "역할", + "effect": "상대의 역할을 하여 자신도 상대와 같은 특성으로 변화한다." + }, + "wish": { + "name": "희망사항", + "effect": "다음 턴에 자신 또는 교체한 포켓몬의 HP를 최대 HP의 절반만큼 회복한다." + }, + "assist": { + "name": "조수", + "effect": "서둘러서 같은 편의 도움을 받아 같은 편 포켓몬이 기억하고 있는 기술 중 하나를 쓴다." + }, + "ingrain": { + "name": "뿌리박기", + "effect": "대지에 뿌리를 박아 매 턴마다 자신의 HP를 회복한다. 뿌리 박고 있으므로 교체할 수 없다." + }, + "superpower": { + "name": "엄청난힘", + "effect": "엄청난 힘을 발휘하여 상대를 공격한다. 자신의 공격과 방어가 떨어진다." + }, + "magicCoat": { + "name": "매직코트", + "effect": "상대가 상태 이상이 되는 기술이나 씨뿌리기 등을 썼을 때 되받아친다." + }, + "recycle": { + "name": "리사이클", + "effect": "배틀 중에 사용하여 없어진 자신의 지닌 물건을 재생시켜 사용할 수 있게 한다." + }, + "revenge": { + "name": "리벤지", + "effect": "상대에게 기술을 받으면 그 상대에게 주는 데미지가 2배가 된다." + }, + "brickBreak": { + "name": "깨트리기", + "effect": "수도로 기세 좋게 내려쳐서 상대를 공격한다. 빛의장막이나 리플렉터 등도 파괴할 수 있다." + }, + "yawn": { + "name": "하품", + "effect": "큰 하품으로 졸음을 유도한다. 다음 턴에 상대를 잠듦 상태로 만든다." + }, + "knockOff": { + "name": "탁쳐서떨구기", + "effect": "상대의 지닌 물건을 탁 쳐서 떨어뜨려 배틀이 끝날 때까지 사용할 수 없게 한다. 물건을 가진 상대에게는 데미지를 더 준다." + }, + "endeavor": { + "name": "죽기살기", + "effect": "상대의 HP가 자신의 HP와 같아지도록 데미지를 준다." + }, + "eruption": { + "name": "분화", + "effect": "분노를 폭발시켜 상대를 공격한다. 자신의 HP가 적을수록 기술의 위력이 떨어진다." + }, + "skillSwap": { + "name": "스킬스왑", + "effect": "초능력으로 자신의 특성과 상대의 특성을 바꾼다." + }, + "imprison": { + "name": "봉인", + "effect": "상대가 자신과 같은 기술을 배웠다면 상대만 그 기술을 사용할 수 없게 한다." + }, + "refresh": { + "name": "리프레시", + "effect": "몸을 쉬게 하여 자신이 입은 독, 마비, 화상의 상태 이상을 치료한다." + }, + "grudge": { + "name": "원념", + "effect": "상대의 기술로 기절하면 원념을 담아 그 기술의 PP를 0으로 만든다." + }, + "snatch": { + "name": "가로채기", + "effect": "상대가 사용하려고 한 회복 기술이나 능력 변화의 기술을 빼앗아 자신에게 쓴다." + }, + "secretPower": { + "name": "비밀의힘", + "effect": "사용하는 장소에 따라 추가 효과가 변화하는 공격이다." + }, + "dive": { + "name": "다이빙", + "effect": "1턴째에 잠수했다가 2턴째에 떠올라 공격한다." + }, + "armThrust": { + "name": "손바닥치기", + "effect": "펼친 양손으로 상대를 번갈아 쳐서 공격한다. 2-5회 동안 연속으로 쓴다." + }, + "camouflage": { + "name": "보호색", + "effect": "물가나 풀밭, 동굴 등 있는 장소에 맞춰서 자신의 타입을 바꾼다." + }, + "tailGlow": { + "name": "반딧불", + "effect": "깜빡거리는 빛을 바라보고 자신의 정신을 통일하여 특수공격을 매우 크게 올린다." + }, + "lusterPurge": { + "name": "러스터퍼지", + "effect": "눈부신 빛을 발산하여 공격한다. 상대의 특수방어를 떨어뜨릴 때가 있다." + }, + "mistBall": { + "name": "미스트볼", + "effect": "안개의 깃털로 둘러싸 공격한다. 상대의 특수공격을 떨어뜨릴 때가 있다." + }, + "featherDance": { + "name": "깃털댄스", + "effect": "깃털을 흩뿌려 상대의 몸에 휘감는다. 상대의 공격을 크게 떨어뜨린다." + }, + "teeterDance": { + "name": "흔들흔들댄스", + "effect": "흔들흔들 댄스를 춰서 주위에 있는 포켓몬을 혼란 상태로 만든다." + }, + "blazeKick": { + "name": "블레이즈킥", + "effect": "공격한 상대를 화상 상태로 만들 때가 있다. 급소에도 맞기 쉽다." + }, + "mudSport": { + "name": "흙놀이", + "effect": "주위를 진흙투성이로 만든다. 5턴 동안 전기타입의 기술을 약하게 한다." + }, + "iceBall": { + "name": "아이스볼", + "effect": "5턴 동안 상대를 공격한다. 기술이 맞을 때마다 위력이 올라간다." + }, + "needleArm": { + "name": "바늘팔", + "effect": "바늘팔을 세차게 흔들어 공격한다. 상대를 풀죽게 만들 때가 있다." + }, + "slackOff": { + "name": "게으름피우기", + "effect": "게으름 피우며 쉰다. 자신의 HP를 최대 HP의 절반만큼 회복한다." + }, + "hyperVoice": { + "name": "하이퍼보이스", + "effect": "시끄럽게 울리는 큰 진동을 상대에게 전달하여 공격한다." + }, + "poisonFang": { + "name": "맹독엄니", + "effect": "독이 있는 이빨로 상대를 물어서 공격한다. 맹독을 주입할 때가 있다." + }, + "crushClaw": { + "name": "브레이크클로", + "effect": "단단하고 날카로운 손톱으로 베어 갈라서 공격한다. 상대의 방어를 떨어뜨릴 때가 있다." + }, + "blastBurn": { + "name": "블라스트번", + "effect": "폭발하는 불꽃으로 상대를 태워서 공격한다. 다음 턴은 움직일 수 없다." + }, + "hydroCannon": { + "name": "하이드로캐논", + "effect": "물의 대포를 상대에게 발사해서 공격한다. 다음 턴은 움직일 수 없다." + }, + "meteorMash": { + "name": "코멧펀치", + "effect": "혜성과 같은 펀치를 날려서 상대를 공격한다. 자신의 공격이 올라갈 때가 있다." + }, + "astonish": { + "name": "놀래키기", + "effect": "큰 소리 등으로 불시에 놀래켜서 공격한다. 상대를 풀죽게 만들 때가 있다." + }, + "weatherBall": { + "name": "웨더볼", + "effect": "사용했을 때의 날씨에 따라서 기술 타입과 위력이 바뀐다." + }, + "aromatherapy": { + "name": "아로마테라피", + "effect": "기분 좋은 평온한 향기를 맡게 하여 같은 편 모두의 상태 이상을 회복한다." + }, + "fakeTears": { + "name": "거짓울음", + "effect": "우는 척을 하며 눈물을 흘린다. 난처하게 만들어 상대의 특수방어를 크게 떨어뜨린다." + }, + "airCutter": { + "name": "에어커터", + "effect": "날카로운 바람으로 상대를 베어 공격한다. 급소에 맞기 쉽다." + }, + "overheat": { + "name": "오버히트", + "effect": "풀 파워로 상대를 공격한다. 쓰면 반동으로 자신의 특수공격이 크게 떨어진다." + }, + "odorSleuth": { + "name": "냄새구별", + "effect": "고스트타입에 효과가 없는 기술이나 회피율이 높은 상대라 할지라도 공격이 맞게 된다." + }, + "rockTomb": { + "name": "암석봉인", + "effect": "암석을 내던져서 공격한다. 상대의 움직임을 봉인함으로써 스피드를 떨어뜨린다." + }, + "silverWind": { + "name": "은빛바람", + "effect": "바람에 날개 가루를 날려서 상대를 공격한다. 자신의 모든 능력이 올라갈 때가 있다." + }, + "metalSound": { + "name": "금속음", + "effect": "금속을 긁을 때 나는 듯한 싫은 소리를 들려준다. 상대의 특수방어를 크게 떨어뜨린다." + }, + "grassWhistle": { + "name": "풀피리", + "effect": "기분 좋은 피리 소리를 들려주어 상대를 잠듦 상태로 만든다." + }, + "tickle": { + "name": "간지르기", + "effect": "몸을 간질여 웃게 만들어서 상대의 공격과 방어를 떨어뜨린다." + }, + "cosmicPower": { + "name": "코스믹파워", + "effect": "우주로부터 신비한 힘을 손에 넣음으로써 자신의 방어와 특수방어를 올린다." + }, + "waterSpout": { + "name": "해수스파우팅", + "effect": "바닷물을 내뿜어 공격한다. 자신의 HP가 적을수록 기술의 위력이 떨어진다." + }, + "signalBeam": { + "name": "시그널빔", + "effect": "이상한 빛을 발사해서 공격한다. 상대를 혼란시킬 때가 있다." + }, + "shadowPunch": { + "name": "섀도펀치", + "effect": "그림자에 섞여 펀치를 날린다. 공격은 반드시 명중한다." + }, + "extrasensory": { + "name": "신통력", + "effect": "보이지 않는 이상한 힘을 보내어 공격한다. 상대를 풀죽게 만들 때가 있다." + }, + "skyUppercut": { + "name": "스카이어퍼", + "effect": "하늘을 향하는 듯한 높은 업퍼로 상대를 밀어올려 공격한다." + }, + "sandTomb": { + "name": "모래지옥", + "effect": "세차게 불어대는 모래바람 속에 4-5턴 동안 상대를 가두어 공격한다." + }, + "sheerCold": { + "name": "절대영도", + "effect": "상대를 일격에 기절시킨다. 얼음타입 이외의 포켓몬이 사용하면 잘 맞지 않는다." + }, + "muddyWater": { + "name": "탁류", + "effect": "탁해진 물을 상대에게 발사하여 공격한다. 명중률을 떨어뜨릴 때가 있다." + }, + "bulletSeed": { + "name": "씨기관총", + "effect": "씨앗을 기세 좋게 상대에게 발사하여 공격한다. 2-5회 동안 연속으로 쓴다." + }, + "aerialAce": { + "name": "제비반환", + "effect": "재빠른 움직임으로 상대를 농락해 벤다. 공격은 반드시 명중한다." + }, + "icicleSpear": { + "name": "고드름침", + "effect": "날카로운 고드름을 상대에게 발사하여 공격한다. 2-5회 동안 연속으로 쓴다." + }, + "ironDefense": { + "name": "철벽", + "effect": "피부를 쇠처럼 단단하게 만듦으로써 자신의 방어를 크게 올린다." + }, + "block": { + "name": "블록", + "effect": "양팔을 벌려 막아서서 상대의 도주로를 가로막아 도망칠 수 없게 한다." + }, + "howl": { + "name": "멀리짖기", + "effect": "큰 소리로 짖고 기합을 높여 자신과 같은 편의 공격을 올린다." + }, + "dragonClaw": { + "name": "드래곤클로", + "effect": "날카롭고 뾰족한 거대한 발톱으로 상대를 베어 갈라서 공격한다." + }, + "frenzyPlant": { + "name": "하드플랜트", + "effect": "큰 나무로 상대를 힘껏 쳐서 공격한다. 다음 턴은 움직일 수 없게 된다." + }, + "bulkUp": { + "name": "벌크업", + "effect": "몸에 힘을 담아 근육을 두껍게 해서 자신의 공격과 방어를 올린다." + }, + "bounce": { + "name": "뛰어오르기", + "effect": "하늘 높이 뛰어올라 2턴째에 상대를 공격한다. 마비 상태로 만들 때가 있다." + }, + "mudShot": { + "name": "머드샷", + "effect": "진흙 덩어리를 상대에게 내던져서 공격한다. 동시에 상대의 스피드를 떨어뜨린다." + }, + "poisonTail": { + "name": "포이즌테일", + "effect": "꼬리로 때린다. 독 상태로 만들 때가 있고 급소에도 맞기 쉽다." + }, + "covet": { + "name": "탐내기", + "effect": "귀엽게 애교부리며 상대에게 다가가 30%의 확률로 지니고 있는 도구를 뺏는다." + }, + "voltTackle": { + "name": "볼트태클", + "effect": "전기를 한데 모아 돌진한다. 자신도 상당한 데미지를 입는다. 마비 상태로 만들 때가 있다." + }, + "magicalLeaf": { + "name": "매지컬리프", + "effect": "상대를 추적하는 이상한 잎사귀를 흩뿌린다. 공격은 반드시 명중한다." + }, + "waterSport": { + "name": "물놀이", + "effect": "주위를 물로 흠뻑 젖게 만든다. 5턴 동안 불꽃타입의 기술을 약하게 한다." + }, + "calmMind": { + "name": "명상", + "effect": "조용히 정신을 통일하고 마음을 가라앉혀서 자신의 특수공격과 특수방어를 올린다." + }, + "leafBlade": { + "name": "리프블레이드", + "effect": "잎사귀를 칼처럼 이용해 상대를 베어 공격한다. 급소에 맞기 쉽다." + }, + "dragonDance": { + "name": "용의춤", + "effect": "신비롭고 힘센 춤을 격렬하게 춘다. 자신의 공격과 스피드를 올린다." + }, + "rockBlast": { + "name": "록블라스트", + "effect": "단단한 암석을 상대에게 발사하여 공격한다. 2-5회 동안 연속으로 쓴다." + }, + "shockWave": { + "name": "전격파", + "effect": "전격을 재빠르게 상대에게 날린다. 공격은 반드시 명중한다." + }, + "waterPulse": { + "name": "물의파동", + "effect": "물의 진동을 상대에게 가하여 공격한다. 상대를 혼란시킬 때가 있다." + }, + "doomDesire": { + "name": "파멸의소원", + "effect": "기술을 사용한 2턴 뒤에 무수한 빛의 다발이 상대를 공격한다." + }, + "psychoBoost": { + "name": "사이코부스트", + "effect": "풀 파워로 상대를 공격한다. 쓰면 반동으로 자신의 특수공격이 크게 떨어진다." + }, + "roost": { + "name": "날개쉬기", + "effect": "땅에 내려와 몸을 쉬게 한다. 최대 HP의 절반만큼 HP를 회복한다." + }, + "gravity": { + "name": "중력", + "effect": "5턴 동안 부유나 비행타입에 땅타입의 기술이 맞게 된다. 공중으로 나는 기술도 사용할 수 없다." + }, + "miracleEye": { + "name": "미라클아이", + "effect": "악타입에 효과가 없는 기술이나 회피율이 높은 상대라 할지라도 공격이 맞게 된다." + }, + "wakeUpSlap": { + "name": "잠깨움뺨치기", + "effect": "잠듦 상태의 상대에게 큰 데미지를 준다. 대신 상대는 잠에서 깬다." + }, + "hammerArm": { + "name": "암해머", + "effect": "강하고 무거운 주먹을 휘둘러 데미지를 준다. 자신의 스피드가 떨어진다." + }, + "gyroBall": { + "name": "자이로볼", + "effect": "몸을 고속으로 회전시켜 몸통박치기한다. 상대보다 스피드가 낮을수록 위력은 올라간다." + }, + "healingWish": { + "name": "치유소원", + "effect": "자신은 기절하지만 교대하여 나오는 포켓몬의 상태 이상과 HP를 회복한다." + }, + "brine": { + "name": "소금물", + "effect": "상대가 HP의 절반 정도 상처를 입고 있으면 기술의 위력이 2배가 된다." + }, + "naturalGift": { + "name": "자연의은혜", + "effect": "나무열매에서 힘을 얻어 공격한다. 지니게 한 나무열매에 따라 기술의 타입과 위력이 바뀐다." + }, + "feint": { + "name": "페인트", + "effect": "방어나 판별 등을 하고 있는 상대에게 공격할 수 있다. 방어 효과를 해제시킨다." + }, + "pluck": { + "name": "쪼아대기", + "effect": "부리로 공격한다. 상대가 나무열매를 지니고 있을 때 먹어서 나무열매의 효과를 받을 수 있다." + }, + "tailwind": { + "name": "순풍", + "effect": "세차게 불어대는 바람의 소용돌이를 만들어 4턴 동안 같은 편 모두의 스피드를 올린다." + }, + "acupressure": { + "name": "경혈찌르기", + "effect": "경혈을 눌러 몸을 활성화시킨다. 능력 중 하나를 크게 올린다." + }, + "metalBurst": { + "name": "메탈버스트", + "effect": "기술을 쓰기 전에 마지막으로 받은 기술의 데미지를 늘려서 기술을 쓴 상대에게 돌려준다." + }, + "uTurn": { + "name": "유턴", + "effect": "공격한 뒤 굉장한 스피드로 돌아와서 교대 포켓몬과 교체한다." + }, + "closeCombat": { + "name": "인파이트", + "effect": "방어를 포기하고 상대 쪽으로 깊숙이 돌격한다. 자신의 방어와 특수방어가 떨어진다." + }, + "payback": { + "name": "보복", + "effect": "모아서 공격한다. 상대보다 나중에 공격할 수 있으면 기술의 위력은 2배가 된다." + }, + "assurance": { + "name": "승부굳히기", + "effect": "그 턴에 상대가 이미 데미지를 입었다면 기술의 위력은 2배가 된다." + }, + "embargo": { + "name": "금제", + "effect": "지니게 한 도구를 5턴 동안 쓸 수 없게 한다. 트레이너도 그 포켓몬에게는 도구를 쓸 수 없다." + }, + "fling": { + "name": "내던지기", + "effect": "지니게 한 도구를 재빠르게 내던져서 공격한다. 도구에 따라 위력과 효과가 바뀐다." + }, + "psychoShift": { + "name": "사이코시프트", + "effect": "초능력으로 암시를 걸어서 자신에게 걸려 있는 상태 이상을 상대에게 옮긴다." + }, + "trumpCard": { + "name": "마지막수단", + "effect": "마지막수단의 남은 PP가 적으면 적을수록 기술의 위력이 올라간다." + }, + "healBlock": { + "name": "회복봉인", + "effect": "5턴 동안 기술이나 특성, 지니고 있는 도구에 의한 HP 회복을 할 수 없게 한다." + }, + "wringOut": { + "name": "쥐어짜기", + "effect": "강하게 조여 공격을 한다. 상대의 HP가 많이 남아 있을수록 위력이 올라간다." + }, + "powerTrick": { + "name": "파워트릭", + "effect": "초능력으로 자신의 공격과 방어의 힘을 교환한다." + }, + "gastroAcid": { + "name": "위액", + "effect": "상대의 몸에 위액을 내뱉는다. 달라붙은 위액은 상대의 특성 효과를 지운다." + }, + "luckyChant": { + "name": "주술", + "effect": "하늘을 향해 기도를 올려 5턴 동안 상대의 공격을 급소에 맞지 않게 한다." + }, + "meFirst": { + "name": "선취", + "effect": "위력을 올려 상대가 쓰려고 하는 기술을 먼저 쓴다. 먼저 쓰지 않으면 실패한다." + }, + "copycat": { + "name": "흉내쟁이", + "effect": "직전에 나온 기술을 흉내 내어 같은 기술을 쓴다. 기술이 나오지 않았으면 실패한다." + }, + "powerSwap": { + "name": "파워스왑", + "effect": "초능력으로 자신과 상대의 공격과 특수공격의 능력 변화를 교체한다." + }, + "guardSwap": { + "name": "가드스왑", + "effect": "초능력으로 자신과 상대의 방어와 특수방어의 능력 변화를 교체한다." + }, + "punishment": { + "name": "혼내기", + "effect": "능력 변화로 상대가 파워업한 만큼 기술의 위력이 올라간다." + }, + "lastResort": { + "name": "비장의무기", + "effect": "배틀 중에 기억하고 있는 기술을 모두 사용하면 그때부터 쓸 수 있는 필살기이다." + }, + "worrySeed": { + "name": "고민씨", + "effect": "마음을 괴롭히는 씨앗을 심는다. 상대를 잠잘 수 없게 해서 특성을 불면으로 만든다." + }, + "suckerPunch": { + "name": "기습", + "effect": "상대보다 먼저 공격할 수 있다. 상대가 쓴 기술이 공격기술이 아니면 실패한다." + }, + "toxicSpikes": { + "name": "독압정", + "effect": "상대의 발밑에 독 압정을 뿌린다. 교체로 나온 상대 포켓몬에게 독을 퍼지게 한다." + }, + "heartSwap": { + "name": "하트스왑", + "effect": "초능력으로 자신과 상대에 걸려 있는 능력 변화를 교체한다." + }, + "aquaRing": { + "name": "아쿠아링", + "effect": "자신의 몸 주변을 물로 만든 베일로 덮는다. 매 턴 HP를 회복한다." + }, + "magnetRise": { + "name": "전자부유", + "effect": "전기로 만든 자력의 힘으로 허공에 뜬다. 5턴 동안 부유할 수 있다." + }, + "flareBlitz": { + "name": "플레어드라이브", + "effect": "불꽃을 두르고 돌진한다. 자신도 상당한 데미지를 입는다. 화상 상태로 만들 때가 있다." + }, + "forcePalm": { + "name": "발경", + "effect": "상대의 몸에 충격파를 부딪쳐 공격한다. 마비 상태로 만들 때가 있다." + }, + "auraSphere": { + "name": "파동탄", + "effect": "몸속에서 파동의 힘을 끌어내 상대에게 쏜다. 공격은 반드시 명중한다." + }, + "rockPolish": { + "name": "록커트", + "effect": "자신의 몸을 갈아 공기의 저항을 적게 한다. 스피드를 크게 올릴 수 있다." + }, + "poisonJab": { + "name": "독찌르기", + "effect": "독에 물든 촉수나 팔로 상대를 꿰찌른다. 독 상태로 만들 때가 있다." + }, + "darkPulse": { + "name": "악의파동", + "effect": "몸에서 악의로 가득한 무서운 오라를 발한다. 상대를 풀죽게 만들 때가 있다." + }, + "nightSlash": { + "name": "깜짝베기", + "effect": "순간적으로 틈을 노려 상대를 베어 버린다. 급소에 맞기 쉽다." + }, + "aquaTail": { + "name": "아쿠아테일", + "effect": "세차게 날뛰는 거친 파도와 같이 큰 꼬리를 흔들어서 상대를 공격한다." + }, + "seedBomb": { + "name": "씨폭탄", + "effect": "단단한 껍질을 가지고 있는 큰 씨앗을 위에서 힘껏 내던져 상대를 공격한다." + }, + "airSlash": { + "name": "에어슬래시", + "effect": "하늘까지 베어 가르는 공기의 칼날로 공격한다. 상대를 풀죽게 만들 때가 있다." + }, + "xScissor": { + "name": "시저크로스", + "effect": "낫이나 발톱을 가위처럼 교차시키면서 상대를 베어 가른다." + }, + "bugBuzz": { + "name": "벌레의야단법석", + "effect": "진동으로 음파를 일으켜서 공격한다. 상대의 특수방어를 떨어뜨릴 때가 있다." + }, + "dragonPulse": { + "name": "용의파동", + "effect": "큰 입으로 충격파를 일으켜서 상대를 공격한다." + }, + "dragonRush": { + "name": "드래곤다이브", + "effect": "굉장한 살기로 위압하면서 몸통박치기한다. 상대를 풀죽게 만들 때가 있다." + }, + "powerGem": { + "name": "파워젬", + "effect": "보석처럼 반짝이는 빛을 발사하여 상대를 공격한다." + }, + "drainPunch": { + "name": "드레인펀치", + "effect": "주먹으로 상대의 힘을 흡수한다. 입힌 데미지의 절반에 해당하는 HP를 회복할 수 있다." + }, + "vacuumWave": { + "name": "진공파", + "effect": "주먹을 흔들어 진공의 파도를 일으킨다. 반드시 선제공격을 할 수 있다." + }, + "focusBlast": { + "name": "기합구슬", + "effect": "기합을 높여서 혼신의 힘을 방출한다. 상대의 특수방어를 떨어뜨릴 때가 있다." + }, + "energyBall": { + "name": "에너지볼", + "effect": "자연으로부터 모은 생명의 힘을 발사한다. 상대의 특수방어를 떨어뜨릴 때가 있다." + }, + "braveBird": { + "name": "브레이브버드", + "effect": "날개를 접어 저공비행으로 돌격한다. 자신도 상당한 데미지를 입는다." + }, + "earthPower": { + "name": "대지의힘", + "effect": "상대의 발밑에 대지의 힘을 방출한다. 상대의 특수방어를 떨어뜨릴 때가 있다." + }, + "switcheroo": { + "name": "바꿔치기", + "effect": "눈에 보이지 않는 속도로 자신과 상대가 지닌 물건을 교환한다." + }, + "gigaImpact": { + "name": "기가임팩트", + "effect": "가진 힘을 모두 사용해서 상대에게 돌격한다. 다음 턴은 움직일 수 없다." + }, + "nastyPlot": { + "name": "나쁜음모", + "effect": "나쁜 일을 생각해서 머리를 활성화시킨다. 자신의 특수공격을 크게 올린다." + }, + "bulletPunch": { + "name": "불릿펀치", + "effect": "탄환처럼 빠르고 단단한 펀치를 상대에게 날린다. 반드시 선제공격을 할 수 있다." + }, + "avalanche": { + "name": "눈사태", + "effect": "상대로부터 기술을 받으면 그 상대에 대해서 기술의 위력이 2배가 된다." + }, + "iceShard": { + "name": "얼음뭉치", + "effect": "얼음덩어리를 순식간에 만들어 상대에게 빠르게 쏜다. 반드시 선제공격을 할 수 있다." + }, + "shadowClaw": { + "name": "섀도클로", + "effect": "그림자로 만든 날카로운 발톱으로 상대를 베어 가른다. 급소에 맞기 쉽다." + }, + "thunderFang": { + "name": "번개엄니", + "effect": "전기를 모은 이빨로 문다. 상대를 풀죽게 하거나 마비 상태로 만들 때가 있다." + }, + "iceFang": { + "name": "얼음엄니", + "effect": "냉기를 품은 이빨로 문다. 상대를 풀죽게 하거나 얼음 상태로 만들 때가 있다." + }, + "fireFang": { + "name": "불꽃엄니", + "effect": "불꽃을 두른 이빨로 문다. 상대를 풀죽게 하거나 화상 상태로 만들 때가 있다." + }, + "shadowSneak": { + "name": "야습", + "effect": "그림자를 늘려 상대의 배후에서 공격한다. 반드시 선제공격할 수 있다." + }, + "mudBomb": { + "name": "진흙폭탄", + "effect": "단단한 진흙구슬을 상대에게 발사하여 공격한다. 명중률을 떨어뜨릴 때가 있다." + }, + "psychoCut": { + "name": "사이코커터", + "effect": "실체화시킨 마음의 칼날로 상대를 베어 가른다. 급소에 맞기 쉽다." + }, + "zenHeadbutt": { + "name": "사념의박치기", + "effect": "사념의 힘을 이마에 모아서 공격한다. 상대를 풀죽게 만들 때가 있다." + }, + "mirrorShot": { + "name": "미러샷", + "effect": "갈고닦은 몸에서 섬광의 힘을 상대에게 쏜다. 명중률을 떨어뜨릴 때가 있다." + }, + "flashCannon": { + "name": "러스터캐논", + "effect": "몸의 빛을 한곳에 모아서 힘을 방출한다. 상대의 특수방어를 떨어뜨릴 때가 있다." + }, + "rockClimb": { + "name": "록클라임", + "effect": "굉장한 기세로 상대에게 돌진하여 공격한다. 상대를 혼란시킬 때가 있다." + }, + "defog": { + "name": "안개제거", + "effect": "강한 바람으로 상대의 리플렉터나 빛의장막 등을 제거한다. 회피율도 떨어뜨린다." + }, + "trickRoom": { + "name": "트릭룸", + "effect": "이상한 공간을 만든다. 5턴 동안 느린 포켓몬부터 행동할 수 있다." + }, + "dracoMeteor": { + "name": "용성군", + "effect": "천공에서 운석을 상대에게 떨어뜨린다. 사용하면 반동으로 자신의 특수공격이 크게 떨어진다." + }, + "discharge": { + "name": "방전", + "effect": "눈부신 전격으로 자신의 주위에 있는 포켓몬을 공격한다. 마비 상태로 만들 때가 있다." + }, + "lavaPlume": { + "name": "분연", + "effect": "새빨간 불꽃으로 자신의 주위에 있는 포켓몬을 공격한다. 화상 상태로 만들 때가 있다." + }, + "leafStorm": { + "name": "리프스톰", + "effect": "뾰족한 잎사귀로 상대에게 돌풍을 일으킨다. 사용하면 반동으로 자신의 특수공격이 크게 떨어진다." + }, + "powerWhip": { + "name": "파워휩", + "effect": "덩굴이나 촉수를 세차게 흔들어 상대를 힘껏 쳐서 공격한다." + }, + "rockWrecker": { + "name": "암석포", + "effect": "거대한 바위를 상대에게 발사하여 공격한다. 다음 턴은 움직일 수 없게 된다." + }, + "crossPoison": { + "name": "크로스포이즌", + "effect": "독 칼날로 상대를 베어 가른다. 독 상태로 만들 때가 있고 급소에도 맞기 쉽다." + }, + "gunkShot": { + "name": "더스트슈트", + "effect": "더러운 쓰레기를 상대에게 부딪쳐서 공격한다. 독 상태로 만들 때가 있다." + }, + "ironHead": { + "name": "아이언헤드", + "effect": "강철과 같은 단단한 머리로 공격한다. 상대를 풀죽게 만들 때가 있다." + }, + "magnetBomb": { + "name": "마그넷봄", + "effect": "상대에게 달라붙는 강철의 폭탄을 발사한다. 공격은 반드시 명중한다." + }, + "stoneEdge": { + "name": "스톤에지", + "effect": "뾰족한 바위를 상대에게 꿰찔러서 공격한다. 급소에 맞기 쉽다." + }, + "captivate": { + "name": "유혹", + "effect": "수컷은 암컷을 암컷은 수컷을 유혹하여 상대의 특수공격을 크게 떨어뜨린다." + }, + "stealthRock": { + "name": "스텔스록", + "effect": "상대의 주위에 무수한 바위를 띄워 교체해서 나온 상대 포켓몬에게 데미지를 준다." + }, + "grassKnot": { + "name": "풀묶기", + "effect": "풀을 휘감아서 상대를 쓰러뜨린다. 상대가 무거울수록 위력이 올라간다." + }, + "chatter": { + "name": "수다", + "effect": "매우 시끄럽고 수다스러운 음파로 상대를 공격한다. 상대를 혼란시킨다." + }, + "judgment": { + "name": "심판의뭉치", + "effect": "무수한 광탄을 상대에게 방출한다. 자신이 가지고 있는 플레이트에 따라 타입이 바뀐다." + }, + "bugBite": { + "name": "벌레먹기", + "effect": "물어서 공격한다. 상대가 나무열매를 지니고 있을 때 먹어서 나무열매의 효과를 받을 수 있다." + }, + "chargeBeam": { + "name": "차지빔", + "effect": "전격의 다발을 상대에게 발사한다. 전기를 모아서 자신의 특수공격을 올릴 때가 있다." + }, + "woodHammer": { + "name": "우드해머", + "effect": "단단한 몸통을 상대에게 부딪쳐서 공격한다. 자신도 상당한 데미지를 입는다." + }, + "aquaJet": { + "name": "아쿠아제트", + "effect": "눈에 보이지 않는 굉장한 속도로 상대에게 돌진한다. 반드시 선제공격할 수 있다." + }, + "attackOrder": { + "name": "공격지령", + "effect": "부하를 불러내어 상대를 향해서 공격시킨다. 급소에 맞기 쉽다." + }, + "defendOrder": { + "name": "방어지령", + "effect": "부하를 불러내어 자신의 몸을 뒤덮게 한다. 방어와 특수방어를 올릴 수 있다." + }, + "healOrder": { + "name": "회복지령", + "effect": "부하를 불러내어 상처를 회복한다. 최대 HP의 절반만큼 자신의 HP를 회복한다." + }, + "headSmash": { + "name": "양날박치기", + "effect": "목숨을 걸고 혼신의 힘으로 상대에게 박치기를 한다. 자신도 굉장한 데미지를 입는다." + }, + "doubleHit": { + "name": "더블어택", + "effect": "꼬리 등을 써서 상대를 때려 공격한다. 2회 연속으로 데미지를 준다." + }, + "roarOfTime": { + "name": "시간의포효", + "effect": "시간이 뒤틀릴 정도의 힘을 사용해서 상대를 공격한다. 다음 턴은 움직일 수 없다." + }, + "spacialRend": { + "name": "공간절단", + "effect": "주위의 공간과 더불어 상대를 찢어서 데미지를 준다. 급소에 맞기 쉽다." + }, + "lunarDance": { + "name": "초승달춤", + "effect": "자신은 기절하지만 교대하여 나오는 포켓몬의 모든 상태를 회복한다." + }, + "crushGrip": { + "name": "묵사발", + "effect": "굉장한 힘으로 상대를 묵사발로 만든다. 상대의 HP가 남아 있을수록 위력이 올라간다." + }, + "magmaStorm": { + "name": "마그마스톰", + "effect": "세차게 타오르는 불꽃 속에 4-5턴 동안 상대를 가두어 공격한다." + }, + "darkVoid": { + "name": "다크홀", + "effect": "암흑의 세계로 끌고 가서 떨어뜨려 상대를 잠듦 상태로 만든다." + }, + "seedFlare": { + "name": "시드플레어", + "effect": "몸속에서 충격파를 발생시킨다. 상대의 특수방어를 크게 떨어뜨릴 때가 있다." + }, + "ominousWind": { + "name": "괴상한바람", + "effect": "소름이 끼칠 만한 돌풍으로 상대를 공격한다. 자신의 모든 능력이 올라갈 때가 있다." + }, + "shadowForce": { + "name": "섀도다이브", + "effect": "1턴째에 모습을 감춰 2턴째에 상대를 공격한다. 방어하고 있어도 공격은 맞는다." + }, + "honeClaws": { + "name": "손톱갈기", + "effect": "손톱을 갈아 날카롭게 한다. 자신의 공격과 명중률을 올린다." + }, + "wideGuard": { + "name": "와이드가드", + "effect": "같은 편 전원에게 향하는 공격을 1턴 동안 막는다." + }, + "guardSplit": { + "name": "가드셰어", + "effect": "초능력으로 자신과 상대의 방어와 특수방어를 더해서 반으로 나눈다." + }, + "powerSplit": { + "name": "파워셰어", + "effect": "초능력으로 자신과 상대의 공격과 특수공격을 더해서 반으로 나눈다." + }, + "wonderRoom": { + "name": "원더룸", + "effect": "이상한 공간을 만든다. 5턴 동안 모든 포켓몬의 방어와 특수방어가 바뀐다." + }, + "psyshock": { + "name": "사이코쇼크", + "effect": "이상한 염력파를 실체화하여 상대를 공격한다. 물리적인 데미지를 준다." + }, + "venoshock": { + "name": "베놈쇼크", + "effect": "특수한 독액을 끼얹는다. 독 상태의 상대에게는 위력이 2배가 된다." + }, + "autotomize": { + "name": "바디퍼지", + "effect": "몸의 쓸모없는 부분을 깎는다. 자신의 스피드를 크게 올리고 체중도 가벼워진다." + }, + "ragePowder": { + "name": "분노가루", + "effect": "안절부절못하게 하는 가루를 자신에게 뿌려서 주의를 끈다. 상대의 공격은 모두 자신에게 향한다." + }, + "telekinesis": { + "name": "텔레키네시스", + "effect": "초능력으로 상대를 띄운다. 3턴 동안 공격이 상대에게 맞기 쉬워진다." + }, + "magicRoom": { + "name": "매직룸", + "effect": "이상한 공간을 만든다. 5턴 동안 모든 포켓몬의 도구의 효과가 사라진다." + }, + "smackDown": { + "name": "떨어뜨리기", + "effect": "돌이나 구슬을 던져서 날고 있는 상대를 공격한다. 맞은 상대는 땅에 떨어진다." + }, + "stormThrow": { + "name": "업어후리기", + "effect": "강렬한 일격을 상대에게 날린다. 공격은 반드시 급소에 맞는다." + }, + "flameBurst": { + "name": "불꽃튀기기", + "effect": "맞으면 튀는 불꽃으로 상대를 공격한다. 튕긴 불꽃은 옆의 상대에게도 쏟아진다." + }, + "sludgeWave": { + "name": "오물웨이브", + "effect": "오물 파도로 자신의 주위에 있는 포켓몬을 공격한다. 독 상태로 만들 때가 있다." + }, + "quiverDance": { + "name": "나비춤", + "effect": "신비롭고 아름다운 춤을 경쾌하게 춘다. 자신의 특수공격과 특수방어와 스피드를 올린다." + }, + "heavySlam": { + "name": "헤비봄버", + "effect": "무거운 몸으로 상대에게 부딪쳐 공격한다. 자신이 상대보다 무거울수록 위력이 올라간다." + }, + "synchronoise": { + "name": "싱크로노이즈", + "effect": "이상한 전파로 주위에 있는 자신과 같은 타입의 포켓몬에게 데미지를 준다." + }, + "electroBall": { + "name": "일렉트릭볼", + "effect": "전기 덩어리를 상대에게 부딪쳐서 공격한다. 상대보다 스피드가 빠를수록 위력이 올라간다." + }, + "soak": { + "name": "물붓기", + "effect": "많은 물을 끼얹어서 상대를 물타입으로 바꾼다." + }, + "flameCharge": { + "name": "니트로차지", + "effect": "불꽃을 둘러 상대를 공격한다. 힘을 모아서 자신의 스피드를 올린다." + }, + "coil": { + "name": "똬리틀기", + "effect": "똬리를 틀어서 집중한다. 자신의 공격과 방어와 명중률을 올린다." + }, + "lowSweep": { + "name": "로킥", + "effect": "재빠른 움직임으로 상대의 다리를 노려 공격한다. 상대의 스피드를 떨어뜨린다." + }, + "acidSpray": { + "name": "애시드봄", + "effect": "상대를 녹이는 액체를 토해내서 공격한다. 상대의 특수방어를 크게 떨어뜨린다." + }, + "foulPlay": { + "name": "속임수", + "effect": "상대의 힘을 이용한다. 싸우고 있는 상대의 공격이 높을수록 데미지가 올라간다." + }, + "simpleBeam": { + "name": "심플빔", + "effect": "수수께끼의 염력파를 상대에게 보낸다. 염력파를 받은 상대는 특성이 단순으로 바뀐다." + }, + "entrainment": { + "name": "동료만들기", + "effect": "이상한 리듬으로 춤춘다. 움직임을 흉내 내게 해서 자신과 상대의 특성을 똑같게 만든다." + }, + "afterYou": { + "name": "당신먼저", + "effect": "상대의 행동을 도와서 자신이 행동한 뒤에 바로 움직일 수 있도록 한다." + }, + "round": { + "name": "돌림노래", + "effect": "노래로 상대를 공격한다. 함께 돌림노래를 하면 계속해서 쓸 수 있고 위력도 올라간다." + }, + "echoedVoice": { + "name": "에코보이스", + "effect": "울리는 목소리로 상대를 공격한다. 매 턴 누군가 이 기술을 계속해서 쓰면 위력이 올라간다." + }, + "chipAway": { + "name": "야금야금", + "effect": "틈을 보며 착실하게 공격한다. 상대의 능력 변화에 관계없이 데미지를 준다." + }, + "clearSmog": { + "name": "클리어스모그", + "effect": "특수한 진흙 덩어리를 상대에게 내던져서 공격한다. 능력 변화를 원래대로 돌린다." + }, + "storedPower": { + "name": "어시스트파워", + "effect": "축적된 파워로 상대를 공격한다. 자신의 능력이 올라가 있는 만큼 위력이 오른다." + }, + "quickGuard": { + "name": "패스트가드", + "effect": "자신과 같은 편을 상대의 선제공격으로부터 지킨다." + }, + "allySwitch": { + "name": "사이드체인지", + "effect": "이상한 힘으로 순간이동하여 자신과 같은 편의 위치를 바꾼다." + }, + "scald": { + "name": "열탕", + "effect": "뜨겁게 끓어오르는 물을 상대에게 발사해서 공격한다. 화상 상태로 만들 때가 있다." + }, + "shellSmash": { + "name": "껍질깨기", + "effect": "껍질을 깨서 자신의 방어와 특수방어를 떨어뜨리지만 공격과 특수공격, 스피드를 크게 올린다." + }, + "healPulse": { + "name": "치유파동", + "effect": "치유파동을 날려서 최대 HP의 절반만큼 상대의 HP를 회복한다." + }, + "hex": { + "name": "병상첨병", + "effect": "엎친 데 덮친 격으로 공격한다. 상태 이상인 상대에게 큰 데미지를 준다." + }, + "skyDrop": { + "name": "프리폴", + "effect": "1턴째에 상대를 하늘로 끌고 가서 2턴째에 떨어뜨려 공격한다. 끌려간 상대는 움직일 수 없다." + }, + "shiftGear": { + "name": "기어체인지", + "effect": "톱니바퀴를 돌려서 자신의 공격을 올리는 것뿐만 아니라 스피드도 크게 올린다." + }, + "circleThrow": { + "name": "배대뒤치기", + "effect": "상대를 내던져서 교대할 포켓몬을 끌어낸다. 야생의 경우에는 배틀이 끝난다." + }, + "incinerate": { + "name": "불태우기", + "effect": "불꽃으로 상대를 공격한다. 상대가 나무열매 등을 지니고 있을 때 불태워서 쓸 수 없게 만든다." + }, + "quash": { + "name": "순서미루기", + "effect": "상대를 억눌러서 행동의 순서를 마지막으로 만든다." + }, + "acrobatics": { + "name": "애크러뱃", + "effect": "경쾌하게 상대를 공격한다. 도구를 적게 지니고 있을수록 더 큰 데미지를 준다." + }, + "reflectType": { + "name": "미러타입", + "effect": "상대의 타입을 반사해서 자신도 똑같은 타입이 된다." + }, + "retaliate": { + "name": "원수갚기", + "effect": "쓰러진 같은 편의 원수를 갚는다. 앞 턴에서 같은 편이 쓰러지면 위력이 올라간다." + }, + "finalGambit": { + "name": "목숨걸기", + "effect": "목숨을 걸고 상대를 공격한다. 자신은 기절하게 되지만 상대에게 HP만큼의 데미지를 준다." + }, + "bestow": { + "name": "기프트패스", + "effect": "상대가 도구를 지니고 있지 않을 때 자신이 지니고 있는 도구를 상대에게 건넨다." + }, + "inferno": { + "name": "연옥", + "effect": "격렬한 불꽃으로 상대를 둘러싸 공격한다. 화상 상태로 만든다." + }, + "waterPledge": { + "name": "물의맹세", + "effect": "물기둥으로 공격한다. 불꽃과 조합하면 위력이 올라가고 하늘에 무지개가 걸린다." + }, + "firePledge": { + "name": "불꽃의맹세", + "effect": "불꽃기둥으로 공격한다. 풀과 조합하면 위력이 올라가고 주위가 불바다가 된다." + }, + "grassPledge": { + "name": "풀의맹세", + "effect": "풀기둥으로 공격한다. 물과 조합하면 위력이 올라가고 주변이 습지초원이 된다." + }, + "voltSwitch": { + "name": "볼트체인지", + "effect": "공격한 뒤 굉장한 스피드로 돌아와서 교대 포켓몬과 교체한다." + }, + "struggleBug": { + "name": "벌레의저항", + "effect": "저항해서 상대를 공격한다. 상대의 특수공격을 떨어뜨린다." + }, + "bulldoze": { + "name": "땅고르기", + "effect": "땅을 힘껏 밟아 자신의 주위에 있는 포켓몬을 공격한다. 상대의 스피드를 떨어뜨린다." + }, + "frostBreath": { + "name": "얼음숨결", + "effect": "차가운 숨결을 상대에게 내뿜어 공격한다. 반드시 급소에 맞는다." + }, + "dragonTail": { + "name": "드래곤테일", + "effect": "상대를 튕겨내서 교대할 포켓몬을 끌어낸다. 야생의 경우에는 배틀이 끝난다." + }, + "workUp": { + "name": "분발", + "effect": "스스로 분발해서 공격과 특수공격을 올린다." + }, + "electroweb": { + "name": "일렉트릭네트", + "effect": "전기 네트로 상대를 붙잡아서 공격한다. 상대의 스피드를 떨어뜨린다." + }, + "wildCharge": { + "name": "와일드볼트", + "effect": "전기를 두르고 상대에게 부딪쳐 공격한다. 자신도 조금 데미지를 입는다." + }, + "drillRun": { + "name": "드릴라이너", + "effect": "드릴처럼 몸을 회전시켜서 상대에게 몸통박치기한다. 급소에 맞기 쉽다." + }, + "dualChop": { + "name": "더블촙", + "effect": "몸의 단단한 부분으로 상대를 때려 공격한다. 2회 연속으로 데미지를 준다." + }, + "heartStamp": { + "name": "하트스탬프", + "effect": "귀여운 모습으로 방심시켜서 강렬한 일격을 날린다. 상대를 풀죽게 만들 때가 있다." + }, + "hornLeech": { + "name": "우드혼", + "effect": "뿔을 꿰찔러서 상대의 양분을 흡수한다. 입힌 데미지의 절반에 해당하는 HP를 회복할 수 있다." + }, + "sacredSword": { + "name": "성스러운칼", + "effect": "긴 뿔로 베어 공격한다. 상대의 능력 변화에 관계없이 데미지를 준다." + }, + "razorShell": { + "name": "셸블레이드", + "effect": "날카로운 조개껍질로 베어 공격한다. 상대의 방어를 떨어뜨릴 때가 있다." + }, + "heatCrash": { + "name": "히트스탬프", + "effect": "불타는 몸으로 상대에게 부딪쳐서 공격한다. 자신이 상대보다 무거울수록 위력이 올라간다." + }, + "leafTornado": { + "name": "그래스믹서", + "effect": "날카로운 잎사귀로 상대를 둘러싸서 공격한다. 명중률을 떨어뜨릴 때가 있다." + }, + "steamroller": { + "name": "하드롤러", + "effect": "둥글게 뭉친 몸을 회전하여 상대를 뭉개 버린다. 상대를 풀죽게 만들 때가 있다." + }, + "cottonGuard": { + "name": "코튼가드", + "effect": "푹신푹신한 솜털로 자신의 몸을 둘러싸서 지킨다. 방어를 매우 크게 올린다." + }, + "nightDaze": { + "name": "나이트버스트", + "effect": "암흑의 충격파를 날려서 상대를 공격한다. 명중률을 떨어뜨릴 때가 있다." + }, + "psystrike": { + "name": "사이코브레이크", + "effect": "이상한 염력파를 실체화하여 상대를 공격한다. 물리적인 데미지를 준다." + }, + "tailSlap": { + "name": "스위프뺨치기", + "effect": "단단한 꼬리로 상대를 때려서 공격한다. 2-5회 동안 연속으로 쓴다." + }, + "hurricane": { + "name": "폭풍", + "effect": "강렬한 바람으로 상대를 둘러싸서 공격한다. 상대를 혼란시킬 때가 있다." + }, + "headCharge": { + "name": "아프로브레이크", + "effect": "굉장한 아프로 머리로 상대에게 돌진하여 공격한다. 자신도 조금 데미지를 입는다." + }, + "gearGrind": { + "name": "기어소서", + "effect": "강철의 기어를 상대에게 던져서 공격한다. 2회 연속으로 데미지를 준다." + }, + "searingShot": { + "name": "화염탄", + "effect": "새빨간 불꽃으로 자신의 주위에 있는 포켓몬을 공격한다. 화상 상태로 만들 때가 있다." + }, + "technoBlast": { + "name": "테크노버스터", + "effect": "광탄을 상대에게 방출한다. 자신이 지니고 있는 카세트에 의해 타입이 바뀐다." + }, + "relicSong": { + "name": "옛노래", + "effect": "옛 노래를 상대에게 들려주고 마음에 호소하여 공격한다. 잠듦 상태로 만들 때가 있다." + }, + "secretSword": { + "name": "신비의칼", + "effect": "긴 뿔로 베어 공격한다. 뿔이 머금은 이상한 힘은 물리적인 데미지를 준다." + }, + "glaciate": { + "name": "얼어붙은세계", + "effect": "차가운 냉기를 상대에게 내뿜어 공격한다. 상대의 스피드를 떨어뜨린다." + }, + "boltStrike": { + "name": "뇌격", + "effect": "방대한 전기를 몸에 둘러 상대에게 돌진해서 공격한다. 마비 상태로 만들 때가 있다." + }, + "blueFlare": { + "name": "푸른불꽃", + "effect": "아름다우면서도 격렬한 푸른불꽃으로 상대를 둘러싸서 공격한다. 화상 상태로 만들 때가 있다." + }, + "fieryDance": { + "name": "불꽃춤", + "effect": "불꽃을 두른 날개를 쳐서 공격한다. 자신의 특수공격이 오를 때가 있다." + }, + "freezeShock": { + "name": "프리즈볼트", + "effect": "전기를 두른 얼음덩어리로 2턴째에 상대를 내리친다. 마비 상태로 만들 때가 있다." + }, + "iceBurn": { + "name": "콜드플레어", + "effect": "모든 것을 얼려버리는 격렬한 냉기로 2턴째에 상대를 둘러싼다. 화상 상태로 만들 때가 있다." + }, + "snarl": { + "name": "바크아웃", + "effect": "호되게 호통을 쳐서 상대의 특수공격을 떨어뜨린다." + }, + "icicleCrash": { + "name": "고드름떨구기", + "effect": "큰 고드름을 격렬하게 부딪쳐서 공격한다. 상대를 풀죽게 만들 때가 있다." + }, + "vCreate": { + "name": "V제너레이트", + "effect": "작열하는 불꽃을 이마에서 발생시켜 이판사판으로 몸통박치기한다. 방어, 특수방어, 스피드가 떨어진다." + }, + "fusionFlare": { + "name": "크로스플레임", + "effect": "거대한 불꽃을 내리친다. 거대한 천둥의 영향을 받아 기술의 위력이 올라간다." + }, + "fusionBolt": { + "name": "크로스썬더", + "effect": "거대한 천둥을 내리친다. 거대한 불꽃의 영향을 받아 기술의 위력이 올라간다." + }, + "flyingPress": { + "name": "플라잉프레스", + "effect": "공중에서 상대에게 다이브한다. 이 기술은 격투타입임과 동시에 비행타입이기도 하다." + }, + "matBlock": { + "name": "마룻바닥세워막기", + "effect": "뒤집어 세운 마룻바닥을 방패로 하여 자신과 같은 편으로 향하는 기술 데미지를 막는다. 변화 기술은 막을 수 없다." + }, + "belch": { + "name": "트림", + "effect": "상대를 향해 트림을 하여 데미지를 준다. 나무열매를 먹지 않으면 쓸 수 없다." + }, + "rototiller": { + "name": "일구기", + "effect": "땅을 일구어 초목이 자라기 쉽게 한다. 풀타입의 공격과 특수공격이 오른다." + }, + "stickyWeb": { + "name": "끈적끈적네트", + "effect": "상대의 주위에 끈적끈적한 네트를 둘러 펼쳐 교체되어 나온 상대의 스피드를 떨어뜨린다." + }, + "fellStinger": { + "name": "마지막일침", + "effect": "이 기술을 사용하여 상대를 쓰러뜨리면 공격이 매우 크게 오른다." + }, + "phantomForce": { + "name": "고스트다이브", + "effect": "1턴째에 어디론가 사라져서 2턴째에 상대를 공격한다. 기술 방어를 무시하고 공격할 수 있다." + }, + "trickOrTreat": { + "name": "핼러윈", + "effect": "상대를 핼러윈으로 초대한다. 상대 타입에 고스트타입이 추가된다." + }, + "nobleRoar": { + "name": "부르짖기", + "effect": "우렁차게 부르짖어서 상대를 위협하여 상대의 공격과 특수공격을 떨어뜨린다." + }, + "ionDeluge": { + "name": "플라스마샤워", + "effect": "전기를 띤 입자를 확산시켜 노말타입 기술을 전기타입으로 바꿔버린다." + }, + "parabolicCharge": { + "name": "파라볼라차지", + "effect": "주위에 있는 모든 포켓몬에게 데미지를 준다. 준 데미지의 절반을 자신이 회복한다." + }, + "forestsCurse": { + "name": "숲의저주", + "effect": "상대에게 숲의 저주를 건다. 저주에 걸린 상대는 타입에 풀타입이 추가된다." + }, + "petalBlizzard": { + "name": "꽃보라", + "effect": "세찬 꽃보라를 일으켜서 주위에 있는 포켓몬을 공격하여 데미지를 준다." + }, + "freezeDry": { + "name": "프리즈드라이", + "effect": "상대를 급격히 차갑게 하여 얼음 상태로 만들 때가 있다. 물타입 포켓몬에게도 효과가 굉장해진다." + }, + "disarmingVoice": { + "name": "차밍보이스", + "effect": "매혹적인 울음소리를 내어 상대에게 정신적 데미지를 준다. 공격은 반드시 명중한다." + }, + "partingShot": { + "name": "막말내뱉기", + "effect": "막말을 내뱉어 상대를 위협하여 공격과 특수공격을 떨어뜨린 후 교대 포켓몬과 교체한다." + }, + "topsyTurvy": { + "name": "뒤집어엎기", + "effect": "상대에게 걸려 있는 모든 능력 변화를 뒤집어서 반대로 만든다." + }, + "drainingKiss": { + "name": "드레인키스", + "effect": "키스로 상대의 HP를 흡수한다. 준 데미지의 반 이상 HP를 회복한다." + }, + "craftyShield": { + "name": "트릭가드", + "effect": "이상한 힘을 사용하여 같은 편을 공격하는 변화 기술을 막는다. 데미지 기술은 받는다." + }, + "flowerShield": { + "name": "플라워가드", + "effect": "이상한 힘을 사용하여 배틀에 나와 있는 모든 풀타입 포켓몬의 방어를 올린다." + }, + "grassyTerrain": { + "name": "그래스필드", + "effect": "5턴 동안 그래스필드로 만든다. 땅에 있으면 매 턴 회복한다. 풀타입의 위력이 올라간다." + }, + "mistyTerrain": { + "name": "미스트필드", + "effect": "5턴 동안 땅에 있으면 상태 이상이 되지 않고 드래곤타입 기술의 데미지도 절반이 된다." + }, + "electrify": { + "name": "송전", + "effect": "상대가 기술을 쓰기 전에 송전하면 그 턴에 상대가 사용하는 기술은 전기타입이 된다." + }, + "playRough": { + "name": "치근거리기", + "effect": "상대에게 치근거리며 공격한다. 상대의 공격을 떨어뜨릴 때가 있다." + }, + "fairyWind": { + "name": "요정의바람", + "effect": "요정의 바람을 일으켜 상대에게 몰아쳐서 공격한다." + }, + "moonblast": { + "name": "문포스", + "effect": "달의 파워를 빌려서 상대를 공격한다. 상대의 특수공격을 떨어뜨릴 때가 있다." + }, + "boomburst": { + "name": "폭음파", + "effect": "무시무시한 폭음의 파괴력으로 주위에 있는 포켓몬을 공격한다." + }, + "fairyLock": { + "name": "페어리록", + "effect": "록을 걸어 다음 턴의 모든 포켓몬을 도망가지 못하게 한다." + }, + "kingsShield": { + "name": "킹실드", + "effect": "상대의 공격을 막음과 동시에 방어 태세를 갖춘다. 접촉한 상대의 공격을 떨어뜨린다." + }, + "playNice": { + "name": "친해지기", + "effect": "상대와 친해져서 싸울 마음을 잃게 하여 상대의 공격을 떨어뜨린다." + }, + "confide": { + "name": "비밀이야기", + "effect": "비밀 이야기를 해서 상대의 집중력을 잃게 하여 특수공격을 떨어뜨린다." + }, + "diamondStorm": { + "name": "다이아스톰", + "effect": "다이아 폭풍을 일으켜 데미지를 준다. 자신의 방어를 크게 올릴 때가 있다." + }, + "steamEruption": { + "name": "스팀버스트", + "effect": "상대에게 굉장히 뜨거운 증기를 뿜는다. 상대는 화상을 입기도 한다." + }, + "hyperspaceHole": { + "name": "이차원홀", + "effect": "이차원홀로 갑자기 상대 바로 옆에 나타나 공격한다. 방어나 판별 등도 무시할 수 있다." + }, + "waterShuriken": { + "name": "물수리검", + "effect": "점액으로 만든 수리검을 2-5회 동안 연속으로 던진다. 반드시 선제공격할 수 있다." + }, + "mysticalFire": { + "name": "매지컬플레임", + "effect": "입에서 내뱉는 아주 뜨거운 불꽃으로 공격한다. 상대의 특수공격을 떨어뜨린다." + }, + "spikyShield": { + "name": "니들가드", + "effect": "상대의 공격을 막음과 동시에 접촉한 상대의 체력을 떨어뜨린다." + }, + "aromaticMist": { + "name": "아로마미스트", + "effect": "신비한 아로마 향으로 같은 편의 특수방어를 올린다." + }, + "eerieImpulse": { + "name": "괴전파", + "effect": "몸에서 발생시킨 괴전파를 상대에게 쏘아 특수공격을 크게 떨어뜨린다." + }, + "venomDrench": { + "name": "베놈트랩", + "effect": "특수한 독액을 끼얹는다. 독 상태인 상대는 공격, 특수공격, 스피드가 떨어진다." + }, + "powder": { + "name": "분진", + "effect": "분진을 뒤집어쓴 상대가 불꽃 기술을 쓰면 폭발하여 데미지를 준다." + }, + "geomancy": { + "name": "지오컨트롤", + "effect": "1턴째에 에너지를 흡수하여 2턴째에 특수공격, 특수방어, 스피드를 크게 올린다." + }, + "magneticFlux": { + "name": "자기장조작", + "effect": "자기장 조작으로 인해 특성 플러스와 마이너스의 방어, 특수방어가 오른다." + }, + "happyHour": { + "name": "해피타임", + "effect": "해피타임 기술을 쓰면 배틀 후에 받을 수 있는 돈이 배가 된다." + }, + "electricTerrain": { + "name": "일렉트릭필드", + "effect": "5턴 동안 일렉트릭필드로 만든다. 땅에 있는 포켓몬은 잠들지 않는다. 전기타입의 위력이 올라간다." + }, + "dazzlingGleam": { + "name": "매지컬샤인", + "effect": "강력한 빛을 내어 상대에게 데미지를 준다." + }, + "celebrate": { + "name": "축하", + "effect": "포켓몬이 매우 행복한 당신을 축하해 준다." + }, + "holdHands": { + "name": "손에손잡기", + "effect": "같은 편 포켓몬끼리 손에 손을 잡는다. 굉장히 행복한 기분이 들게 된다." + }, + "babyDollEyes": { + "name": "초롱초롱눈동자", + "effect": "초롱초롱한 눈동자로 상대를 바라보며 공격을 떨어뜨린다. 반드시 선제공격할 수 있다." + }, + "nuzzle": { + "name": "볼부비부비", + "effect": "전기가 흐르는 볼을 비벼서 공격한다. 상대를 마비 상태로 만든다." + }, + "holdBack": { + "name": "적당히손봐주기", + "effect": "적당히 공격하여 상대의 HP를 반드시 1은 남긴다." + }, + "infestation": { + "name": "엉겨붙기", + "effect": "4-5턴 동안 상대에게 엉겨 붙어서 공격한다. 그동안 상대는 도망갈 수 없다." + }, + "powerUpPunch": { + "name": "그로우펀치", + "effect": "반복하여 때리면 점점 주먹이 단단해진다. 상대를 때리면 공격이 오른다." + }, + "oblivionWing": { + "name": "데스윙", + "effect": "조준한 상대로부터 HP를 흡수한다. 준 데미지의 반 이상 HP를 회복한다." + }, + "thousandArrows": { + "name": "사우전드애로", + "effect": "떠 있는 포켓몬도 맞힐 수 있다. 떠 있던 상대는 맞아서 땅에 떨어진다." + }, + "thousandWaves": { + "name": "사우전드웨이브", + "effect": "땅 위를 뻗어 나가는 파도로 공격한다. 파도에 휩쓸린 상대는 전투에서 도망칠 수 없게 된다." + }, + "landsWrath": { + "name": "그라운드포스", + "effect": "대지의 힘을 모으고 그 힘을 상대에게 집중시켜서 데미지를 준다." + }, + "lightOfRuin": { + "name": "파멸의빛", + "effect": "영원의 꽃의 파워를 빌려서 강력한 광선을 쏜다. 자신도 상당한 데미지를 입는다." + }, + "originPulse": { + "name": "근원의파동", + "effect": "파랗게 빛나는 무수한 광선으로 상대를 공격한다." + }, + "precipiceBlades": { + "name": "단애의칼", + "effect": "대지의 힘을 칼날로 바꿔 상대를 공격한다." + }, + "dragonAscent": { + "name": "화룡점정", + "effect": "넓은 하늘에서 급속으로 강하하여 상대를 공격한다. 자신의 방어와 특수방어가 떨어진다." + }, + "hyperspaceFury": { + "name": "이차원러시", + "effect": "많은 팔로 방어와 판별 등을 무시하는 연속 공격이다. 자신의 방어가 떨어진다." + }, + "breakneckBlitzPhysical": { + "name": "울트라대시어택", + "effect": "Z파워로 기세를 몰아 전력으로 상대에게 부딪친다. 원래 기술에 따라 위력이 변한다." + }, + "breakneckBlitzSpecial": { + "name": "울트라대시어택", + "effect": "Dummy Data" + }, + "allOutPummelingPhysical": { + "name": "전력무쌍격렬권", + "effect": "Z파워로 만든 에너지 구슬을 전력으로 상대에게 부딪친다. 원래 기술에 따라 위력이 변한다." + }, + "allOutPummelingSpecial": { + "name": "전력무쌍격렬권", + "effect": "Dummy Data" + }, + "supersonicSkystrikePhysical": { + "name": "파이널다이브클래시", + "effect": "Z파워로 기세 좋게 날아올라 상대를 향해 전력으로 낙하한다. 원래 기술에 따라 위력이 변한다." + }, + "supersonicSkystrikeSpecial": { + "name": "파이널다이브클래시", + "effect": "Dummy Data" + }, + "acidDownpourPhysical": { + "name": "애시드포이즌딜리트", + "effect": "Z파워로 독의 늪을 만들어 전력으로 상대를 가라앉힌다. 원래 기술에 따라 위력이 변한다." + }, + "acidDownpourSpecial": { + "name": "애시드포이즌딜리트", + "effect": "Dummy Data" + }, + "tectonicRagePhysical": { + "name": "라이징랜드오버", + "effect": "Z파워로 땅 깊숙이 파고들어 전력으로 상대에게 부딪친다. 원래 기술에 따라 위력이 변한다." + }, + "tectonicRageSpecial": { + "name": "라이징랜드오버", + "effect": "Dummy Data" + }, + "continentalCrushPhysical": { + "name": "월즈엔드폴", + "effect": "Z파워로 큰 바위산을 불러내 전력으로 상대에게 부딪친다. 원래 기술에 따라 위력이 변한다." + }, + "continentalCrushSpecial": { + "name": "월즈엔드폴", + "effect": "Dummy Data" + }, + "savageSpinOutPhysical": { + "name": "절대포식회전참", + "effect": "Z파워로 뱉어낸 실이 전력으로 상대를 붙들어 맨다. 원래 기술에 따라 위력이 변한다." + }, + "savageSpinOutSpecial": { + "name": "절대포식회전참", + "effect": "Dummy Data" + }, + "neverEndingNightmarePhysical": { + "name": "무한암야로의유인", + "effect": "Z파워로 불러낸 강한 원념이 전력으로 상대에게 쏟아진다. 원래 기술에 따라 위력이 변한다." + }, + "neverEndingNightmareSpecial": { + "name": "무한암야로의유인", + "effect": "Dummy Data" + }, + "corkscrewCrashPhysical": { + "name": "초월나선연격", + "effect": "Z파워로 고속 회전을 하여 전력으로 상대에게 부딪친다. 원래 기술에 따라 위력이 변한다." + }, + "corkscrewCrashSpecial": { + "name": "초월나선연격", + "effect": "Dummy Data" + }, + "infernoOverdrivePhysical": { + "name": "다이내믹풀플레임", + "effect": "Z파워로 활활 타는 불꽃을 뱉어내 전력으로 상대에게 부딪친다. 원래 기술에 따라 위력이 변한다." + }, + "infernoOverdriveSpecial": { + "name": "다이내믹풀플레임", + "effect": "Dummy Data" + }, + "hydroVortexPhysical": { + "name": "슈퍼아쿠아토네이도", + "effect": "Z파워로 큰 바다회오리를 만들어 전력으로 상대를 집어삼킨다. 원래 기술에 따라 위력이 변한다." + }, + "hydroVortexSpecial": { + "name": "슈퍼아쿠아토네이도", + "effect": "Dummy Data" + }, + "bloomDoomPhysical": { + "name": "블룸샤인엑스트라", + "effect": "Z파워로 화초들의 에너지를 빌려 전력으로 상대를 공격한다. 원래 기술에 따라 위력이 변한다." + }, + "bloomDoomSpecial": { + "name": "블룸샤인엑스트라", + "effect": "Dummy Data" + }, + "gigavoltHavocPhysical": { + "name": "스파킹기가볼트", + "effect": "Z파워로 비축한 강한 전기를 전력으로 상대에게 부딪친다. 원래 기술에 따라 위력이 변한다." + }, + "gigavoltHavocSpecial": { + "name": "스파킹기가볼트", + "effect": "Dummy Data" + }, + "shatteredPsychePhysical": { + "name": "맥시멈사이브레이커", + "effect": "Z파워로 상대를 조종해 전력으로 매서운 맛을 보여준다. 원래 기술에 따라 위력이 변한다." + }, + "shatteredPsycheSpecial": { + "name": "맥시멈사이브레이커", + "effect": "Dummy Data" + }, + "subzeroSlammerPhysical": { + "name": "레이징지오프리즈", + "effect": "Z파워로 기온을 급격하게 떨어뜨려 전력으로 상대를 얼린다. 원래 기술에 따라 위력이 변한다." + }, + "subzeroSlammerSpecial": { + "name": "레이징지오프리즈", + "effect": "Dummy Data" + }, + "devastatingDrakePhysical": { + "name": "얼티메이트드래곤번", + "effect": "Z파워로 오라를 실체화시켜 전력으로 상대를 공격한다. 원래 기술에 따라 위력이 변한다." + }, + "devastatingDrakeSpecial": { + "name": "얼티메이트드래곤번", + "effect": "Dummy Data" + }, + "blackHoleEclipsePhysical": { + "name": "블랙홀이클립스", + "effect": "Z파워로 어둠의 에너지를 모아 전력으로 상대를 끌어당긴다. 원래 기술에 따라 위력이 변한다." + }, + "blackHoleEclipseSpecial": { + "name": "블랙홀이클립스", + "effect": "Dummy Data" + }, + "twinkleTacklePhysical": { + "name": "러블리스타임팩트", + "effect": "Z파워로 매혹의 공간을 만들어 전력으로 상대를 가지고 논다. 원래 기술에 따라 위력이 변한다." + }, + "twinkleTackleSpecial": { + "name": "러블리스타임팩트", + "effect": "Dummy Data" + }, + "catastropika": { + "name": "필살피카슛", + "effect": "Z파워로 최대 전력을 몸에 두른 피카츄가 전력으로 상대에게 덤벼든다." + }, + "shoreUp": { + "name": "모래모으기", + "effect": "자신의 최대 HP 절반을 회복한다. 모래바람일 때는 많이 회복한다." + }, + "firstImpression": { + "name": "만나자마자", + "effect": "위력이 높은 기술이지만 배틀에 나가서 바로 쓰지 않으면 성공할 수 없다." + }, + "banefulBunker": { + "name": "토치카", + "effect": "상대의 공격을 막음과 동시에 접촉한 상대에게 독을 퍼뜨린다." + }, + "spiritShackle": { + "name": "그림자꿰매기", + "effect": "공격과 동시에 상대의 그림자를 꿰매 도망칠 수 없게 한다." + }, + "darkestLariat": { + "name": "DD래리어트", + "effect": "양팔을 돌려 상대에게 부딪친다. 상대의 능력 변화에 상관없이 데미지를 준다." + }, + "sparklingAria": { + "name": "물거품아리아", + "effect": "노래 부르는 것으로 많은 벌룬을 방출한다. 기술에 맞으면 화상이 낫는다." + }, + "iceHammer": { + "name": "아이스해머", + "effect": "강하고 무거운 주먹을 휘둘러 데미지를 준다. 자신의 스피드가 떨어진다." + }, + "floralHealing": { + "name": "플라워힐", + "effect": "최대 HP의 절반만큼 상대의 HP를 회복한다. 그래스필드일 때 효과가 올라간다." + }, + "highHorsepower": { + "name": "10만마력", + "effect": "온몸을 써서 상대에게 맹렬히 어택한다." + }, + "strengthSap": { + "name": "힘흡수", + "effect": "상대 공격력과 동일하게 자신의 HP를 회복한다. 그리고 상대의 공격을 떨어뜨린다." + }, + "solarBlade": { + "name": "솔라블레이드", + "effect": "1턴째에 빛을 가득 모아 2턴째에 그 힘을 검에 담아 공격한다." + }, + "leafage": { + "name": "나뭇잎", + "effect": "잎을 상대에 맞춰 공격한다." + }, + "spotlight": { + "name": "스포트라이트", + "effect": "포켓몬에게 스포트라이트를 비춰 그 턴에서 그 포켓몬만 공격할 수 있게 한다." + }, + "toxicThread": { + "name": "독실", + "effect": "독이 섞인 실을 뿜어낸다. 상대를 독 상태로 만들고 스피드를 떨어뜨린다." + }, + "laserFocus": { + "name": "예민해지기", + "effect": "정신을 집중해서 다음 공격을 반드시 급소에 맞춘다." + }, + "gearUp": { + "name": "어시스트기어", + "effect": "기어를 넣는 것으로 특성 플러스와 마이너스의 공격과 특수공격이 올라간다." + }, + "throatChop": { + "name": "지옥찌르기", + "effect": "이 기술에 맞은 상대는 지옥의 고통 때문에 2턴 동안 소리 기술을 낼 수 없다." + }, + "pollenPuff": { + "name": "꽃가루경단", + "effect": "상대에게는 폭발하는 경단을 사용하여 공격한다. 같은 편에게는 회복하는 경단을 준다." + }, + "anchorShot": { + "name": "앵커샷", + "effect": "앵커를 상대에게 휘감아서 공격한다. 상대는 도망칠 수 없게 된다." + }, + "psychicTerrain": { + "name": "사이코필드", + "effect": "5턴 동안 땅에 있으면 선제공격을 받지 않는다. 에스퍼타입의 위력이 올라간다." + }, + "lunge": { + "name": "덤벼들기", + "effect": "전력으로 상대에게 덤벼들며 공격한다. 상대의 공격을 떨어뜨린다." + }, + "fireLash": { + "name": "불꽃채찍", + "effect": "불타는 채찍으로 상대를 친다. 공격을 받은 상대는 방어가 떨어진다." + }, + "powerTrip": { + "name": "기어오르기", + "effect": "자신의 강함을 뻐기고 공격한다. 자신의 능력이 올라가 있는 만큼 위력이 오른다." + }, + "burnUp": { + "name": "불사르기", + "effect": "전신의 불꽃을 모두 태워서 큰 데미지를 준다. 자신의 불꽃타입이 없어진다." + }, + "speedSwap": { + "name": "스피드스왑", + "effect": "상대의 스피드와 자신의 스피드를 교체한다." + }, + "smartStrike": { + "name": "스마트혼", + "effect": "뾰족한 뿔로 상대를 꿰찔러서 공격한다. 공격은 반드시 명중한다." + }, + "purify": { + "name": "정화", + "effect": "상대의 상태 이상을 회복한다. 회복하면 자신은 HP를 회복할 수 있다." + }, + "revelationDance": { + "name": "잠재댄스", + "effect": "전력으로 춤추며 공격한다. 이 기술의 타입은 자신의 타입과 같아진다." + }, + "coreEnforcer": { + "name": "코어퍼니셔", + "effect": "데미지를 준 상대가 이미 행동을 끝냈다면 상대의 특성을 없애버린다." + }, + "tropKick": { + "name": "트로피컬킥", + "effect": "남쪽 나라에서 유래된 뜨거운 킥을 상대에게 날린다. 상대의 공격을 떨어뜨린다." + }, + "instruct": { + "name": "지휘", + "effect": "상대에게 지시하여 상대가 쓴 기술을 다시 한번 쓰게 할 수 있다." + }, + "beakBlast": { + "name": "부리캐논", + "effect": "먼저 부리를 가열시킨 다음 공격을 날린다. 가열 중에 만지면 화상을 입는다." + }, + "clangingScales": { + "name": "스케일노이즈", + "effect": "전신의 비늘을 비벼서 큰 소리를 내 공격한다. 공격 후 자신의 방어가 떨어진다." + }, + "dragonHammer": { + "name": "드래곤해머", + "effect": "몸을 해머처럼 써서 상대를 덮쳐 데미지를 준다." + }, + "brutalSwing": { + "name": "세차게휘두르기", + "effect": "자신의 몸을 세차게 휘둘러서 상대에게 데미지를 준다." + }, + "auroraVeil": { + "name": "오로라베일", + "effect": "5턴 동안 물리와 특수 기술의 데미지를 약하게 한다. 설경일 때만 쓸 수 있다." + }, + "sinisterArrowRaid": { + "name": "섀도애로우즈스트라이크", + "effect": "Z파워로 무수한 화살을 만들어낸 모크나이퍼가 전력으로 상대를 꿰뚫는 공격이다." + }, + "maliciousMoonsault": { + "name": "하이퍼다크크러셔", + "effect": "Z파워로 강한 육체를 얻은 어흥염이 전력으로 상대에게 부딪쳐 공격한다." + }, + "oceanicOperetta": { + "name": "바다의심포니", + "effect": "Z파워로 대량의 물을 부른 누리레느가 전력으로 상대를 공격한다." + }, + "guardianOfAlola": { + "name": "알로라의수호자", + "effect": "Z파워로 알로라의 힘을 얻은 토속신포켓몬 전력의 공격. 상대의 남은 HP를 많이 줄인다." + }, + "soulStealing7StarStrike": { + "name": "칠성탈혼퇴", + "effect": "Z파워를 얻은 마샤도가 펀치와 킥의 연속기술을 전력으로 상대에게 퍼붓는다." + }, + "stokedSparksurfer": { + "name": "라이트닝서프라이드", + "effect": "Z파워를 얻은 알로라지방의 라이츄가 전력으로 공격한다. 상대를 마비 상태로 만든다." + }, + "pulverizingPancake": { + "name": "진심의공격", + "effect": "Z파워로 진심을 낸 잠만보가 거대한 몸을 움직여서 전력으로 상대를 공격한다." + }, + "extremeEvoboost": { + "name": "나인이볼부스트", + "effect": "Z파워를 얻은 이브이가 진화한 동료들의 힘을 빌려 능력을 크게 올린다." + }, + "genesisSupernova": { + "name": "오리진즈슈퍼노바", + "effect": "Z파워를 얻은 뮤가 전력으로 상대를 공격한다. 발밑이 사이코필드가 된다." + }, + "shellTrap": { + "name": "트랩셸", + "effect": "껍질의 트랩을 설치한다. 상대가 물리 기술을 쓰면 폭발해서 데미지를 준다." + }, + "fleurCannon": { + "name": "플뢰르캐논", + "effect": "강력한 빔을 발산한 후 자신의 특수공격이 크게 떨어진다." + }, + "psychicFangs": { + "name": "사이코팽", + "effect": "사이코 파워로 물어서 상대를 공격한다. 빛의장막이나 리플렉터도 파괴할 수 있다." + }, + "stompingTantrum": { + "name": "분함의발구르기", + "effect": "분함을 발판 삼아 공격한다. 앞 턴에서 기술이 빗나갔다면 위력이 배가 된다." + }, + "shadowBone": { + "name": "섀도본", + "effect": "영혼이 머물고 있는 뼈로 상대를 세게 때려서 공격한다. 상대의 방어를 떨어뜨릴 때가 있다." + }, + "accelerock": { + "name": "액셀록", + "effect": "재빠른 스피드로 상대에게 부딪쳐서 공격한다. 반드시 선제공격할 수 있다." + }, + "liquidation": { + "name": "아쿠아브레이크", + "effect": "물의 힘으로 상대에게 부딪쳐서 공격한다. 상대의 방어를 떨어뜨릴 때가 있다." + }, + "prismaticLaser": { + "name": "프리즘레이저", + "effect": "프리즘의 힘으로 강력한 광선을 발사한다. 다음 턴은 움직일 수 없다." + }, + "spectralThief": { + "name": "섀도스틸", + "effect": "상대의 그림자에 숨어들어 상대의 능력이 올라가는 것을 뺏어 공격한다." + }, + "sunsteelStrike": { + "name": "메테오드라이브", + "effect": "유성 같은 기세로 돌진한다. 상대의 특성을 무시하고 공격할 수 있다." + }, + "moongeistBeam": { + "name": "섀도레이", + "effect": "괴상한 광선을 쏘아 공격한다. 상대의 특성을 무시하고 공격할 수 있다." + }, + "tearfulLook": { + "name": "눈물그렁그렁", + "effect": "눈물을 그렁그렁거려 상대의 전의를 상실하게 한다. 상대의 공격과 특수공격이 떨어진다." + }, + "zingZap": { + "name": "찌리리따끔따끔", + "effect": "상대에게 부딪쳐 강력한 전기를 날려서 찌리리따끔따끔하게 만든다. 상대를 풀죽게 만들 때가 있다." + }, + "naturesMadness": { + "name": "자연의분노", + "effect": "자연의 분노를 상대에게 부딪친다. 상대의 HP는 절반이 된다." + }, + "multiAttack": { + "name": "멀티어택", + "effect": "높은 에너지를 둘러싸 상대에게 부딪쳐 공격한다. 메모리에 따라 타입이 바뀐다." + }, + "tenMillionVoltThunderbolt": { + "name": "1000만볼트", + "effect": "모자를 쓴 피카츄가 Z파워로 파워업한 전격을 쏜다. 급소에 맞기 쉽다." + }, + "mindBlown": { + "name": "깜짝헤드", + "effect": "자신의 머리를 폭발시켜 주위의 모든 것을 공격한다. 자신도 데미지를 받는다." + }, + "plasmaFists": { + "name": "플라스마피스트", + "effect": "전기를 두른 주먹으로 공격한다. 노말타입 기술을 전기타입으로 바꿔버린다." + }, + "photonGeyser": { + "name": "포톤가이저", + "effect": "빛의 기둥으로 공격한다. 공격과 특수공격을 비교해서 높은 쪽으로 데미지를 준다." + }, + "lightThatBurnsTheSky": { + "name": "하늘을태우는멸망의빛", + "effect": "네크로즈마가 상대의 특성 효과를 무시하고 공격과 특수공격 중 높은 쪽으로 데미지를 준다." + }, + "searingSunrazeSmash": { + "name": "선샤인스매셔", + "effect": "Z파워를 얻은 솔가레오가 전력으로 공격한다. 상대의 특성 효과를 무시할 수 있다." + }, + "menacingMoonrazeMaelstrom": { + "name": "문라이트블래스터", + "effect": "Z파워를 얻은 루나아라가 전력으로 공격한다. 상대의 특성 효과를 무시할 수 있다." + }, + "letsSnuggleForever": { + "name": "투닥투닥프렌드타임", + "effect": "Z파워를 얻은 따라큐가 전력으로 투닥투닥 공격한다." + }, + "splinteredStormshards": { + "name": "레이디얼에지스톰", + "effect": "Z파워를 얻은 루가루암이 전력으로 공격한다. 추가로 필드 상태를 없앤다." + }, + "clangorousSoulblaze": { + "name": "브레이징소울비트", + "effect": "Z파워를 얻은 짜랑고우거가 전력으로 상대를 공격한다. 추가로 자신의 능력이 올라간다." + }, + "zippyZap": { + "name": "파찌파찌액셀", + "effect": "맹렬한 속도의 전격 공격. 반드시 선제공격할 수 있고 급소에 맞는다." + }, + "splishySplash": { + "name": "참방참방서핑", + "effect": "커다란 파도에 전기를 날리고 상대에게 부딪쳐서 공격한다. 마비 상태로 만들 때가 있다." + }, + "floatyFall": { + "name": "둥실둥실폴", + "effect": "두둥실 떠오른 다음 단숨에 급강하해서 공격한다. 상대를 풀죽게 만들 때가 있다." + }, + "pikaPapow": { + "name": "피카피카썬더", + "effect": "트레이너를 좋아하는 피카츄의 마음이 강할수록 위력이 올라가는 전격. 반드시 명중한다." + }, + "bouncyBubble": { + "name": "생생버블", + "effect": "물덩어리를 부딪쳐서 공격한다. 물을 흡수하여 준 데미지만큼 HP를 회복한다." + }, + "buzzyBuzz": { + "name": "찌릿찌릿일렉", + "effect": "전기를 상대에게 날려서 공격한다. 상대를 마비 상태로 만든다." + }, + "sizzlySlide": { + "name": "이글이글번", + "effect": "불꽃을 두른 몸으로 기세 좋게 상대에게 부딪친다. 상대를 화상 상태로 만든다." + }, + "glitzyGlow": { + "name": "콸콸오라", + "effect": "염동력을 한가득 날린다. 상대의 특수공격을 약하게 만드는 이상한 장막을 만든다." + }, + "baddyBad": { + "name": "아그아그존", + "effect": "악함을 어필해서 공격한다. 상대의 물리공격을 약하게 만드는 이상한 장막을 만든다." + }, + "sappySeed": { + "name": "쑥쑥봄버", + "effect": "거대한 덩굴을 자라게 하고 씨를 흩뿌려서 공격한다. 씨는 매 턴 상대의 HP를 흡수한다." + }, + "freezyFrost": { + "name": "꽁꽁프로스트", + "effect": "차갑게 얼어붙은 흑안개의 결정으로 공격한다. 전원의 능력 변화를 원래대로 돌린다." + }, + "sparklySwirl": { + "name": "반짝반짝스톰", + "effect": "숨 막힐 듯 진한 향기의 회오리로 상대를 휘감아 공격한다. 같은 편의 상태 이상을 회복한다." + }, + "veeveeVolley": { + "name": "브이브이브레이크", + "effect": "트레이너를 좋아하는 이브이의 마음이 강할수록 위력이 올라가는 몸통박치기. 반드시 명중한다." + }, + "doubleIronBash": { + "name": "더블펀처", + "effect": "가슴의 너트를 축으로 회전시켜 2번 연속 팔로 힘껏 친다. 상대를 풀죽게 만들 때가 있다." + }, + "maxGuard": { + "name": "다이월", + "effect": "상대의 공격을 전혀 받지 않는다. 연속으로 쓰면 실패하기 쉽다." + }, + "dynamaxCannon": { + "name": "다이맥스포", + "effect": "코어에서 빔을 발사해서 공격한다. 상대가 웨이브 레벨 최대치를 초과했다면, 초과한 정도에 비례하여 데미지가 최대 2배가 된다." + }, + "snipeShot": { + "name": "노려맞히기", + "effect": "상대의 기술을 끌어모으는 특성이나 기술의 영향을 무시하고 선택한 상대를 공격할 수 있다." + }, + "jawLock": { + "name": "물고버티기", + "effect": "어느 한쪽이 기절할 때까지 교체할 수 없게 된다. 한쪽의 포켓몬이 없어지면 효과가 사라진다." + }, + "stuffCheeks": { + "name": "볼가득넣기", + "effect": "지니고 있는 나무열매를 먹고 방어를 크게 올린다." + }, + "noRetreat": { + "name": "배수의진", + "effect": "자신의 모든 능력이 올라가지만 교체하거나 도망칠 수 없게 된다." + }, + "tarShot": { + "name": "타르샷", + "effect": "끈적끈적한 타르를 날려서 상대의 스피드를 떨어뜨린다. 상대는 불꽃이 약점이 된다." + }, + "magicPowder": { + "name": "마법가루", + "effect": "마법가루를 날려서 상대를 에스퍼타입으로 바꾼다." + }, + "dragonDarts": { + "name": "드래곤애로", + "effect": "드라꼰으로 2번 공격한다. 상대가 2마리일 때는 각각 1번씩 공격한다." + }, + "teatime": { + "name": "다과회", + "effect": "다과회를 열어서 배틀에 나와 있는 포켓몬이 각각 지니고 있는 나무열매를 먹는다." + }, + "octolock": { + "name": "문어굳히기", + "effect": "상대를 도망칠 수 없게 한다. 굳히기에 당한 상대는 매 턴 방어와 특수방어가 떨어진다." + }, + "boltBeak": { + "name": "전격부리", + "effect": "전기를 두른 부리로 찌른다. 상대보다 먼저 공격하면 기술의 위력은 2배가 된다." + }, + "fishiousRend": { + "name": "아가미물기", + "effect": "단단한 아가미로 문다. 상대보다 먼저 공격하면 기술의 위력은 2배가 된다." + }, + "courtChange": { + "name": "코트체인지", + "effect": "이상한 힘으로 서로의 필드 효과를 교체한다." + }, + "maxFlare": { + "name": "다이번", + "effect": "다이맥스한 포켓몬이 날리는 불꽃타입의 공격. 5턴 동안 햇살을 강하게 만든다." + }, + "maxFlutterby": { + "name": "다이웜", + "effect": "다이맥스한 포켓몬이 날리는 벌레타입의 공격. 상대의 특수공격을 떨어뜨린다." + }, + "maxLightning": { + "name": "다이썬더", + "effect": "다이맥스한 포켓몬이 날리는 전기타입의 공격. 5턴 동안 일렉트릭필드로 만든다." + }, + "maxStrike": { + "name": "다이어택", + "effect": "다이맥스한 포켓몬이 날리는 노말타입의 공격. 상대의 스피드를 떨어뜨린다." + }, + "maxKnuckle": { + "name": "다이너클", + "effect": "다이맥스한 포켓몬이 날리는 격투타입의 공격. 같은 편의 공격을 올린다." + }, + "maxPhantasm": { + "name": "다이할로우", + "effect": "다이맥스한 포켓몬이 날리는 고스트타입의 공격. 상대의 방어를 떨어뜨린다." + }, + "maxHailstorm": { + "name": "다이아이스", + "effect": "다이맥스한 포켓몬이 날리는 얼음타입의 공격. 5턴 동안 싸라기눈을 내리게 한다." + }, + "maxOoze": { + "name": "다이애시드", + "effect": "다이맥스한 포켓몬이 날리는 독타입의 공격. 같은 편의 특수공격을 올린다." + }, + "maxGeyser": { + "name": "다이스트림", + "effect": "다이맥스한 포켓몬이 날리는 물타입의 공격. 5턴 동안 비를 내리게 한다." + }, + "maxAirstream": { + "name": "다이제트", + "effect": "다이맥스한 포켓몬이 날리는 비행타입의 공격. 같은 편의 스피드를 올린다." + }, + "maxStarfall": { + "name": "다이페어리", + "effect": "다이맥스한 포켓몬이 날리는 페어리타입의 공격. 5턴 동안 미스트필드로 만든다." + }, + "maxWyrmwind": { + "name": "다이드라군", + "effect": "다이맥스한 포켓몬이 날리는 드래곤타입의 공격. 상대의 공격을 떨어뜨린다." + }, + "maxMindstorm": { + "name": "다이사이코", + "effect": "다이맥스한 포켓몬이 날리는 에스퍼타입의 공격. 5턴 동안 사이코필드로 만든다." + }, + "maxRockfall": { + "name": "다이록", + "effect": "다이맥스한 포켓몬이 날리는 바위타입의 공격. 5턴 동안 날씨를 모래바람으로 만든다." + }, + "maxQuake": { + "name": "다이어스", + "effect": "다이맥스한 포켓몬이 날리는 땅타입의 공격. 같은 편의 특수방어를 올린다." + }, + "maxDarkness": { + "name": "다이아크", + "effect": "다이맥스한 포켓몬이 날리는 악타입의 공격. 상대의 특수방어를 떨어뜨린다." + }, + "maxOvergrowth": { + "name": "다이그래스", + "effect": "다이맥스한 포켓몬이 날리는 풀타입의 공격. 5턴 동안 그래스필드로 만든다." + }, + "maxSteelspike": { + "name": "다이스틸", + "effect": "다이맥스한 포켓몬이 날리는 강철타입의 공격. 같은 편의 방어를 올린다." + }, + "clangorousSoul": { + "name": "소울비트", + "effect": "자신의 HP를 조금 깎아서 모든 능력을 올린다." + }, + "bodyPress": { + "name": "바디프레스", + "effect": "몸을 부딪쳐서 공격한다. 방어가 높을수록 주는 데미지가 올라간다." + }, + "decorate": { + "name": "데코레이션", + "effect": "데코레이션을 해서 상대의 공격과 특수공격을 크게 올린다." + }, + "drumBeating": { + "name": "드럼어택", + "effect": "드럼의 뿌리를 연주로 조종해서 공격하는 것으로 상대의 스피드를 떨어뜨린다." + }, + "snapTrap": { + "name": "집게덫", + "effect": "집게덫으로 붙잡은 뒤 4-5턴 동안 상대를 끼워서 공격한다." + }, + "pyroBall": { + "name": "화염볼", + "effect": "작은 돌을 태운 불꽃의 공으로 상대를 공격한다. 화상 상태로 만들 때가 있다." + }, + "behemothBlade": { + "name": "거수참", + "effect": "크고 강한 검을 온몸으로 치켜든 다음 기세 좋게 베어서 공격한다." + }, + "behemothBash": { + "name": "거수탄", + "effect": "온몸을 강하고 튼튼한 방패로 바꾼 다음 기세 좋게 부딪혀서 공격한다." + }, + "auraWheel": { + "name": "오라휠", + "effect": "볼주머니에 저장해둔 에너지로 공격하고 자신의 스피드를 올린다. 모르페코의 모습에 따라 타입이 바뀐다." + }, + "breakingSwipe": { + "name": "와이드브레이커", + "effect": "강인한 꼬리를 세차게 휘둘러서 상대를 공격한다. 상대의 공격을 떨어뜨린다." + }, + "branchPoke": { + "name": "가지찌르기", + "effect": "날카롭고 뾰족한 가지로 상대를 찔러서 공격한다." + }, + "overdrive": { + "name": "오버드라이브", + "effect": "기타나 베이스를 쳐서 큰 울림과 강한 진동을 상대에게 전달하여 공격한다." + }, + "appleAcid": { + "name": "사과산", + "effect": "새콤한 사과에서 만들어 낸 산성 액체로 공격한다. 상대의 특수방어를 떨어뜨린다." + }, + "gravApple": { + "name": "G의힘", + "effect": "높은 곳에서 사과를 떨어뜨려서 데미지를 준다. 상대의 방어를 떨어뜨린다." + }, + "spiritBreak": { + "name": "소울크래시", + "effect": "맞으면 기가 꺾여버릴 것 같은 기세로 공격한다. 상대의 특수공격을 떨어뜨린다." + }, + "strangeSteam": { + "name": "원더스팀", + "effect": "연기를 분출해서 상대를 공격한다. 혼란시킬 때가 있다." + }, + "lifeDew": { + "name": "생명의물방울", + "effect": "신비한 물을 흩뿌려서 자신과 배틀에 나와 있는 같은 편의 HP를 회복한다." + }, + "obstruct": { + "name": "블로킹", + "effect": "상대의 공격을 전혀 받지 않는다. 연속으로 쓰면 실패하기 쉽다. 접촉한 상대의 방어를 크게 떨어뜨린다." + }, + "falseSurrender": { + "name": "사죄의찌르기", + "effect": "고개를 숙이는 척하면서 흐트러진 머리카락으로 찌른다. 공격은 반드시 명중한다." + }, + "meteorAssault": { + "name": "스타어설트", + "effect": "굵은 줄기를 휘둘러서 공격한다. 단 자신도 비틀거리기 때문에 다음 턴은 움직일 수 없다." + }, + "eternabeam": { + "name": "무한다이빔", + "effect": "본래의 모습이 된 무한다이노 최대의 공격. 다음 턴은 움직일 수 없다." + }, + "steelBeam": { + "name": "철제광선", + "effect": "전신에서 끌어모은 강철을 빔으로 바꿔 세차게 발사한다. 자신도 데미지를 받는다." + }, + "expandingForce": { + "name": "와이드포스", + "effect": "사이코 파워로 상대를 공격한다. 사이코필드일 때는 위력이 오르며 모든 상대에게 데미지를 준다." + }, + "steelRoller": { + "name": "아이언롤러", + "effect": "필드를 파괴하면서 공격한다. 필드가 어떤 상태로든 변해 있지 않은 경우 기술은 실패한다." + }, + "scaleShot": { + "name": "스케일샷", + "effect": "비늘을 쏘아서 공격한다. 2-5회 동안 연속으로 쓴다. 스피드가 올라가지만 방어가 떨어진다." + }, + "meteorBeam": { + "name": "메테오빔", + "effect": "1턴째에 우주의 힘을 모아서 특수공격을 올리고 2턴째에 상대를 공격한다." + }, + "shellSideArm": { + "name": "셸암즈", + "effect": "물리와 특수 중 더 많은 데미지를 줄 수 있는 능력으로 공격한다. 독 상태로 만들 때가 있다." + }, + "mistyExplosion": { + "name": "미스트버스트", + "effect": "자신의 주위에 있는 모두를 공격하지만 사용하면 기절한다. 미스트필드일 때 위력이 올라간다." + }, + "grassyGlide": { + "name": "그래스슬라이더", + "effect": "지면에 미끄러지듯 상대를 공격한다. 그래스필드일 때 반드시 선제공격할 수 있다." + }, + "risingVoltage": { + "name": "라이징볼트", + "effect": "지면에서 올라오는 전격으로 공격한다. 상대가 일렉트릭필드 위에 있을 때 기술의 위력이 2배가 된다." + }, + "terrainPulse": { + "name": "대지의파동", + "effect": "필드의 힘을 빌려서 공격한다. 사용했을 때의 필드 상태에 따라서 기술 타입과 위력이 바뀐다." + }, + "skitterSmack": { + "name": "엄습하는일격", + "effect": "배후에서 엄습해서 공격한다. 상대의 특수공격을 떨어뜨린다." + }, + "burningJealousy": { + "name": "질투의불꽃", + "effect": "질투의 에너지로 상대를 공격한다. 그 턴에 능력이 올라간 포켓몬을 화상 상태로 만든다." + }, + "lashOut": { + "name": "분풀이", + "effect": "상대에 대한 울분이 담긴 공격을 한다. 그 턴에 능력이 떨어져 있으면 기술의 위력이 2배가 된다." + }, + "poltergeist": { + "name": "폴터가이스트", + "effect": "상대의 지닌 물건을 조종해서 공격한다. 상대가 도구를 지니고 있지 않으면 실패한다." + }, + "corrosiveGas": { + "name": "부식가스", + "effect": "주위에 있는 모든 것을 강력한 산성 가스로 뒤덮어서 지니고 있는 도구를 녹여버린다." + }, + "coaching": { + "name": "코칭", + "effect": "적절한 지도를 통해서 같은 편 전원의 공격과 방어를 올린다." + }, + "flipTurn": { + "name": "퀵턴", + "effect": "공격한 뒤 굉장한 스피드로 돌아와서 교대 포켓몬과 교체한다." + }, + "tripleAxel": { + "name": "트리플악셀", + "effect": "3회 연속으로 킥을 날려 공격한다. 기술이 맞을 때마다 위력이 올라간다." + }, + "dualWingbeat": { + "name": "더블윙", + "effect": "날개를 상대에게 부딪쳐서 공격한다. 2회 연속으로 데미지를 준다." + }, + "scorchingSands": { + "name": "열사의대지", + "effect": "뜨겁게 달궈진 모래를 상대에게 부딪쳐서 공격한다. 화상 상태로 만들 때가 있다." + }, + "jungleHealing": { + "name": "정글힐", + "effect": "정글과 하나가 되어 자신과 배틀에 나와 있는 같은 편의 HP와 모든 상태를 회복한다." + }, + "wickedBlow": { + "name": "암흑강타", + "effect": "악의 태세가 극에 달하여 강렬한 일격을 날린다. 반드시 급소에 맞는다." + }, + "surgingStrikes": { + "name": "수류연타", + "effect": "물의 태세가 극에 달하여 물 흐르듯 3회의 연격을 날린다. 반드시 급소에 맞는다." + }, + "thunderCage": { + "name": "썬더프리즌", + "effect": "전기가 흐르는 우리 안에 4-5턴 동안 상대를 가두어 공격한다." + }, + "dragonEnergy": { + "name": "드래곤에너지", + "effect": "생명력을 파워로 바꿔서 상대를 공격한다. 자신의 HP가 적을수록 기술의 위력이 떨어진다." + }, + "freezingGlare": { + "name": "얼어붙는시선", + "effect": "두 눈에서 사이코 파워를 발사해서 공격한다. 얼음 상태로 만들 때가 있다." + }, + "fieryWrath": { + "name": "타오르는분노", + "effect": "분노를 불꽃 같은 오라로 바꿔서 공격한다. 상대를 풀죽게 만들 때가 있다." + }, + "thunderousKick": { + "name": "천둥차기", + "effect": "번개 같은 움직임으로 상대를 농락하며 킥을 날린다. 상대의 방어를 떨어뜨린다." + }, + "glacialLance": { + "name": "블리자드랜스", + "effect": "눈보라를 두른 얼음의 창을 상대에게 던져서 공격한다." + }, + "astralBarrage": { + "name": "아스트랄비트", + "effect": "수많은 작은 영체를 상대에게 부딪쳐서 공격한다." + }, + "eerieSpell": { + "name": "섬뜩한주문", + "effect": "강력한 사이코 파워로 공격한다. 상대가 마지막으로 사용한 기술의 PP를 3만큼 줄인다." + }, + "direClaw": { + "name": "페이탈클로", + "effect": "치명적인 손톱으로 공격한다. 상대를 독, 마비, 잠듦 중 하나의 상태로 만들 때가 있다." + }, + "psyshieldBash": { + "name": "배리어러시", + "effect": "사념의 에너지를 두른 채로 상대에게 부딪친다. 자신의 방어를 올린다." + }, + "powerShift": { + "name": "파워시프트", + "effect": "자신의 공격력과 방어력을 바꾼다." + }, + "stoneAxe": { + "name": "암석액스", + "effect": "암석 도끼로 공격한다. 흩어진 암석 파편은 상대의 주위에 떠다니게 된다." + }, + "springtideStorm": { + "name": "봄의폭풍", + "effect": "애증 섞인 강렬한 바람으로 상대를 둘러싸서 공격한다. 상대의 공격을 떨어뜨릴 때가 있다." + }, + "mysticalPower": { + "name": "신비의힘", + "effect": "신비한 힘으로 자신을 강화한다. 자신의 특수공격이 올라간다." + }, + "ragingFury": { + "name": "대격분", + "effect": "2~3턴 동안 불꽃을 마구 뿜어 대며 난동을 부린다. 난동 부린 뒤에는 혼란에 빠진다." + }, + "waveCrash": { + "name": "웨이브태클", + "effect": "물을 두르고 온몸으로 상대에게 부딪친다. 자신도 상당한 데미지를 입는다." + }, + "chloroblast": { + "name": "클로로블라스트", + "effect": "엽록소를 모은 뒤 발사하여 공격한다. 자신도 데미지를 입는다." + }, + "mountainGale": { + "name": "빙산바람", + "effect": "빙산처럼 커다란 얼음덩어리를 부딪쳐서 공격한다. 상대를 풀죽게 만들 때가 있다." + }, + "victoryDance": { + "name": "승리의춤", + "effect": "승리를 부르는 춤을 격렬하게 춘다. 자신의 공격과 방어와 스피드를 올린다." + }, + "headlongRush": { + "name": "들이받기", + "effect": "온 힘을 다한 몸통박치기를 날린다. 자신의 방어와 특수방어가 떨어진다." + }, + "barbBarrage": { + "name": "독침천밭", + "effect": "무수히 많은 독침으로 공격한다. 상대를 독 상태로 만들 때가 있다. 상대가 독 상태인 경우 위력이 2배가 된다." + }, + "esperWing": { + "name": "오라윙", + "effect": "오라로 강화한 날개로 베어 가른다. 급소에 맞기 쉽다. 자신의 스피드를 올린다." + }, + "bitterMalice": { + "name": "천추지한", + "effect": "등골이 서늘해지는 원념으로 공격해서 상대의 공격을 떨어뜨린다." + }, + "shelter": { + "name": "농성", + "effect": "피부를 강철 방패처럼 단단하게 만들어서 자신의 방어를 크게 올린다." + }, + "tripleArrows": { + "name": "3연화살", + "effect": "발 기술을 사용하고 3개의 화살을 동시에 발사한다. 상대의 방어를 떨어뜨리거나 풀죽게 만들 때가 있다. 급소에 맞기 쉽다." + }, + "infernalParade": { + "name": "백귀야행", + "effect": "무수히 많은 불덩이로 공격한다. 화상 상태로 만들 때가 있다. 상대가 상태 이상인 경우 위력이 2배가 된다." + }, + "ceaselessEdge": { + "name": "비검천중파", + "effect": "조개껍질 검으로 공격한다. 조개껍질 파편은 압정이 되어 상대의 발밑에 흩어진다." + }, + "bleakwindStorm": { + "name": "찬바람폭풍", + "effect": "심신을 모두 떨게 만드는 차갑고도 거친 바람으로 공격한다. 상대의 스피드를 떨어뜨릴 때가 있다." + }, + "wildboltStorm": { + "name": "번개폭풍", + "effect": "폭풍을 일으키고 뇌운을 불러서 번개와 바람으로 매섭게 공격한다. 상대를 마비 상태로 만들 때가 있다." + }, + "sandsearStorm": { + "name": "열사의폭풍", + "effect": "뜨겁게 달궈진 모래와 강렬한 바람으로 상대를 둘러싸서 공격한다. 상대를 화상 상태로 만들 때가 있다." + }, + "lunarBlessing": { + "name": "초승달의기도", + "effect": "초승달에 기도를 하여 자신과 같은 편의 HP와 상태 이상을 모두 회복한다." + }, + "takeHeart": { + "name": "브레이브차지", + "effect": "기운을 고조시켜서 자신의 상태 이상을 회복하고 특수공격과 특수방어를 올린다." + }, + "gMaxWildfire": { + "name": "거다이옥염", + "effect": "거다이맥스한 리자몽이 사용하는 불꽃타입 공격. 4턴 동안 데미지를 준다." + }, + "gMaxBefuddle": { + "name": "거다이고혹", + "effect": "거다이맥스한 버터플이 사용하는 벌레타입 공격. 독 마비 잠듦 중 어느 하나로 만든다." + }, + "gMaxVoltCrash": { + "name": "거다이만뢰", + "effect": "거다이맥스한 피카츄가 사용하는 전기타입 공격. 상대를 마비 상태로 만든다." + }, + "gMaxGoldRush": { + "name": "거다이금화", + "effect": "거다이맥스한 나옹이 사용하는 노말타입 공격. 상대를 혼란시키고 돈도 받을 수 있다." + }, + "gMaxChiStrike": { + "name": "거다이회심격", + "effect": "거다이맥스한 괴력몬이 사용하는 격투타입 공격. 급소에 맞기 쉬워진다." + }, + "gMaxTerror": { + "name": "거다이환영", + "effect": "거다이맥스한 팬텀이 사용하는 고스트타입 공격. 그림자를 밟아 교체할 수 없게 한다." + }, + "gMaxResonance": { + "name": "거다이선율", + "effect": "거다이맥스한 라프라스가 사용하는 얼음타입 공격. 5턴 동안 데미지를 약하게 한다." + }, + "gMaxCuddle": { + "name": "거다이포옹", + "effect": "거다이맥스한 이브이가 사용하는 노말타입 공격. 상대를 헤롱헤롱하게 만든다." + }, + "gMaxReplenish": { + "name": "거다이재생", + "effect": "거다이맥스한 잠만보가 사용하는 노말타입 공격. 먹은 나무열매를 재생한다." + }, + "gMaxMalodor": { + "name": "거다이악취", + "effect": "거다이맥스한 더스트나가 사용하는 독타입 공격. 상대를 독 상태로 만든다." + }, + "gMaxStonesurge": { + "name": "거다이암진", + "effect": "거다이맥스한 갈가부기가 사용하는 물타입 공격. 예리한 바위를 무수히 뿌린다." + }, + "gMaxWindRage": { + "name": "거다이풍격", + "effect": "거다이맥스한 아머까오가 사용하는 비행타입 공격. 리플렉터나 빛의장막을 없앤다." + }, + "gMaxStunShock": { + "name": "거다이감전", + "effect": "거다이맥스한 스트린더가 사용하는 전기타입 공격. 독이나 마비 상태로 만든다." + }, + "gMaxFinale": { + "name": "거다이단원", + "effect": "거다이맥스한 마휘핑이 사용하는 페어리타입 공격. 같은 편의 HP를 회복한다." + }, + "gMaxDepletion": { + "name": "거다이감쇠", + "effect": "거다이맥스한 두랄루돈이 사용하는 드래곤타입 공격. 마지막에 사용한 기술의 PP를 줄인다." + }, + "gMaxGravitas": { + "name": "거다이천도", + "effect": "거다이맥스한 이올브가 사용하는 에스퍼타입 공격. 5턴 동안 중력이 바뀐다." + }, + "gMaxVolcalith": { + "name": "거다이분석", + "effect": "거다이맥스한 석탄산이 사용하는 바위타입 공격. 4턴 동안 데미지를 준다." + }, + "gMaxSandblast": { + "name": "거다이사진", + "effect": "거다이맥스한 사다이사가 사용하는 땅타입 공격. 4-5턴 동안 거친 모래바람이 분다." + }, + "gMaxSnooze": { + "name": "거다이수마", + "effect": "거다이맥스한 오롱털이 사용하는 악타입 공격. 큰 하품으로 졸음을 유도한다." + }, + "gMaxTartness": { + "name": "거다이산격", + "effect": "거다이맥스한 애프룡이 사용하는 풀타입 공격. 상대의 회피율을 떨어뜨린다." + }, + "gMaxSweetness": { + "name": "거다이감로", + "effect": "거다이맥스한 단지래플이 사용하는 풀타입 공격. 같은 편의 상태 이상을 회복한다." + }, + "gMaxSmite": { + "name": "거다이천벌", + "effect": "거다이맥스한 브리무음이 사용하는 페어리타입 공격. 상대를 혼란시킨다." + }, + "gMaxSteelsurge": { + "name": "거다이강철진", + "effect": "거다이맥스한 대왕끼리동이 사용하는 강철타입 공격. 예리한 가시를 무수히 뿌린다." + }, + "gMaxMeltdown": { + "name": "거다이융격", + "effect": "거다이맥스한 멜메탈이 사용하는 강철타입 공격. 똑같은 기술을 2회 연속으로 쓸 수 없게 한다." + }, + "gMaxFoamBurst": { + "name": "거다이포말", + "effect": "거다이맥스한 킹크랩이 사용하는 물타입 공격. 상대의 스피드를 크게 떨어뜨린다." + }, + "gMaxCentiferno": { + "name": "거다이백화", + "effect": "거다이맥스한 다태우지네가 사용하는 불꽃타입 공격. 4-5턴 동안 불꽃 속에 가둔다." + }, + "gMaxVineLash": { + "name": "거다이편달", + "effect": "거다이맥스한 이상해꽃이 사용하는 풀타입 공격. 4턴 동안 데미지를 준다." + }, + "gMaxCannonade": { + "name": "거다이포격", + "effect": "거다이맥스한 거북왕이 사용하는 물타입 공격. 4턴 동안 데미지를 준다." + }, + "gMaxDrumSolo": { + "name": "거다이난타", + "effect": "거다이맥스한 고릴타가 사용하는 풀타입 공격. 상대의 특성에 영향을 받지 않는다." + }, + "gMaxFireball": { + "name": "거다이화염구", + "effect": "거다이맥스한 에이스번이 사용하는 불꽃타입 공격. 상대의 특성에 영향을 받지 않는다." + }, + "gMaxHydrosnipe": { + "name": "거다이저격", + "effect": "거다이맥스한 인텔리레온이 사용하는 물타입 공격. 상대의 특성에 영향을 받지 않는다." + }, + "gMaxOneBlow": { + "name": "거다이일격", + "effect": "거다이맥스한 우라오스가 사용하는 악타입 공격. 다이월을 무시하는 일격을 날린다." + }, + "gMaxRapidFlow": { + "name": "거다이연격", + "effect": "거다이맥스한 우라오스가 사용하는 물타입 공격. 다이월을 무시하는 연격을 날린다." + }, + "teraBlast": { + "name": "테라버스트", + "effect": "테라스탈 중이면, 테라스탈타입의 에너지를 방출해서 공격한다. 공격과 특수공격을 비교해서 높은 쪽으로 데미지를 준다." + }, + "silkTrap": { + "name": "스레드트랩", + "effect": "실로 함정을 만들어 둘러친다. 상대의 공격을 막음과 동시에 접촉한 상대의 스피드를 떨어뜨린다." + }, + "axeKick": { + "name": "발꿈치찍기", + "effect": "발꿈치를 들어 올린 뒤 내리찍어 공격한다. 상대를 혼란시킬 때가 있다. 빗나가면 자신이 데미지를 입는다." + }, + "lastRespects": { + "name": "성묘", + "effect": "동료의 한을 풀어 주기 위해 공격한다. 쓰러진 같은 편 포켓몬이 많을수록 기술의 위력이 올라간다." + }, + "luminaCrash": { + "name": "루미나콜리전", + "effect": "정신에도 작용하는 기묘한 빛을 발산해서 공격한다. 상대의 특수방어를 크게 떨어뜨린다." + }, + "orderUp": { + "name": "한판내기", + "effect": "멋들어진 몸놀림으로 공격한다. 입속에 싸리용이 있으면 싸리용의 모습에 따라 능력이 올라간다." + }, + "jetPunch": { + "name": "제트펀치", + "effect": "거센 물살을 주먹에 둘러 눈에 보이지 않는 속도로 펀치를 날린다. 반드시 선제공격할 수 있다." + }, + "spicyExtract": { + "name": "하바네로엑기스", + "effect": "어마어마하게 매운 엑기스를 발사한다. 상대의 공격이 크게 오르고 방어는 크게 떨어진다." + }, + "spinOut": { + "name": "휠스핀", + "effect": "발에 부하를 걸어 격렬하게 회전하며 데미지를 준다. 자신의 스피드가 크게 떨어진다." + }, + "populationBomb": { + "name": "찍찍베기", + "effect": "여기저기서 동료들을 모아서 화려한 콤비네이션으로 공격한다. 1~10회 연속으로 공격한다." + }, + "iceSpinner": { + "name": "아이스스피너", + "effect": "발에 얇은 얼음을 두르고 빙글빙글 회전하며 부딪친다. 회전 운동에 의해 필드가 파괴된다." + }, + "glaiveRush": { + "name": "대검돌격", + "effect": "몸을 내던지는 무모한 돌격. 기술을 사용한 다음, 상대의 공격이 반드시 명중하고 데미지를 2배로 입게 된다." + }, + "revivalBlessing": { + "name": "회생의기도", + "effect": "자애로운 마음으로 기도를 하여 기절한 교대 포켓몬을 HP가 절반인 상태로 부활시킨다." + }, + "saltCure": { + "name": "소금절이", + "effect": "상대를 소금절이 상태로 만들어 매 턴 데미지를 준다. 강철타입이나 물타입에게 더 고통스럽다." + }, + "tripleDive": { + "name": "트리플다이브", + "effect": "호흡이 척척 맞게 다이빙해서 상대에게 물보라를 끼얹는다. 3회 연속으로 데미지를 준다." + }, + "mortalSpin": { + "name": "킬러스핀", + "effect": "회전해서 상대를 공격한다. 조이기, 김밥말이, 씨뿌리기 등의 효과를 날려버린다. 상대를 독 상태로 만든다." + }, + "doodle": { + "name": "베껴그리기", + "effect": "상대의 본질을 꿰뚫어 보고 베껴서 자신과 같은 편을 상대와 같은 특성으로 바꾼다." + }, + "filletAway": { + "name": "제살깎기", + "effect": "자신의 HP를 깎아서 자신의 공격, 특수공격, 스피드를 크게 올린다." + }, + "kowtowCleave": { + "name": "도각참", + "effect": "머리를 조아려 상대를 방심하게 만든 뒤에 베어 버린다. 공격은 반드시 명중한다." + }, + "flowerTrick": { + "name": "트릭플라워", + "effect": "숨겨진 장치가 있는 꽃다발을 상대에게 던져서 공격한다. 반드시 명중하며 급소에 맞는다." + }, + "torchSong": { + "name": "플레어송", + "effect": "활활 타오르는 불꽃을 노래하듯 뿜어서 상대를 태워 버린다. 자신의 특수공격을 올린다." + }, + "aquaStep": { + "name": "아쿠아스텝", + "effect": "물 흐르듯 민첩하고 경쾌한 발재간으로 상대를 농락하며 데미지를 준다. 자신의 스피드를 올린다." + }, + "ragingBull": { + "name": "레이징불", + "effect": "분노해 날뛰는 성난소의 맹렬한 태클. 폼에 따라 기술의 타입이 달라지고 빛의장막이나 리플렉터 등도 파괴할 수 있다." + }, + "makeItRain": { + "name": "골드러시", + "effect": "대량의 코인을 날려서 공격한다. 자신의 특수공격이 떨어진다. 배틀 후에 돈을 받을 수 있다." + }, + "psyblade": { + "name": "사이코블레이드", + "effect": "실체가 없는 칼날로 상대를 베어 가른다. 일렉트릭필드 위에 있을 때 기술의 위력이 1.5배가 된다." + }, + "hydroSteam": { + "name": "하이드로스팀", + "effect": "펄펄 끓는 물을 기세 좋게 뿜어낸다. 햇살이 강할 때 기술의 위력이 떨어지기는커녕 1.5배가 된다." + }, + "ruination": { + "name": "카타스트로피", + "effect": "파멸적인 재앙에 휩쓸리게 하여 상대의 HP를 절반으로 만든다." + }, + "collisionCourse": { + "name": "액셀브레이크", + "effect": "변형하며 거칠게 낙하한 다음 고대의 대폭발을 일으킨다. 약점인 상대에게는 위력이 더욱 올라간다." + }, + "electroDrift": { + "name": "라이트닝드라이브", + "effect": "변형하며 초고속으로 달려서 미지의 전격으로 상대를 관통한다. 약점인 상대에게는 위력이 더욱 올라간다." + }, + "shedTail": { + "name": "꼬리자르기", + "effect": "자신의 HP를 깎아서 분신을 만든 뒤, 돌아와서 교대 포켓몬과 교체한다." + }, + "chillyReception": { + "name": "썰렁개그", + "effect": "자리를 얼어붙게 만드는 개그를 하고 교대 포켓몬과 교체한다. 5턴 동안 눈을 내리게 한다." + }, + "tidyUp": { + "name": "정리정돈", + "effect": "압정뿌리기, 스텔스록, 끈적끈적네트, 독압정, 대타출동을 모두 정리한다. 자신의 공격력과 스피드가 올라간다." + }, + "snowscape": { + "name": "설경", + "effect": "5턴 동안 눈을 내리게 한다. 얼음타입의 방어가 올라간다." + }, + "pounce": { + "name": "달려들기", + "effect": "상대에게 달려들어 공격한다. 상대의 스피드를 떨어뜨린다." + }, + "trailblaze": { + "name": "개척하기", + "effect": "풀숲에서 튀어나오듯이 공격한다. 경쾌한 발재간으로 자신의 스피드를 올린다." + }, + "chillingWater": { + "name": "찬물끼얹기", + "effect": "상대의 기운이 빠질 정도로 차가운 물을 끼얹어서 공격한다. 상대의 공격을 떨어뜨린다." + }, + "hyperDrill": { + "name": "하이퍼드릴", + "effect": "뾰족한 신체 부위를 급속도로 회전시켜 관통한다. 방어나 판별 등도 무시할 수 있다." + }, + "twinBeam": { + "name": "트윈빔", + "effect": "두 눈에서 불가사의한 광선을 발사해서 공격한다. 2회 연속으로 데미지를 준다." + }, + "rageFist": { + "name": "분노의주먹", + "effect": "분노를 에너지로 바꿔서 공격한다. 받은 공격의 횟수가 많을수록 기술의 위력이 올라간다." + }, + "armorCannon": { + "name": "아머캐논", + "effect": "자신의 갑옷을 활활 타오르는 탄환으로 발사해서 공격한다. 자신의 방어와 특수방어가 떨어진다." + }, + "bitterBlade": { + "name": "원념의칼", + "effect": "현세의 미련을 칼끝에 담아 베어 버린다. 입힌 데미지의 절반에 해당하는 HP를 회복할 수 있다." + }, + "doubleShock": { + "name": "전광쌍격", + "effect": "전신의 전기를 모두 방출해서 큰 데미지를 준다. 자신의 전기타입이 없어진다." + }, + "gigatonHammer": { + "name": "거대해머", + "effect": "거대한 해머를 온몸으로 휘둘러서 공격한다. 이 기술은 2회 연속으로 쓸 수 없다." + }, + "comeuppance": { + "name": "앙갚음", + "effect": "기술을 쓰기 전에 마지막으로 받은 기술의 데미지를 늘려서 기술을 쓴 상대에게 돌려준다." + }, + "aquaCutter": { + "name": "아쿠아커터", + "effect": "압력을 가한 물을 칼날처럼 분사해서 상대를 베어 가른다. 급소에 맞기 쉽다." + }, + "blazingTorque": { + "name": "번액셀", + "effect": "타오르는 엔진으로 상대에게 부릉거린다. 화상 상태로 만들 때가 있다." + }, + "wickedTorque": { + "name": "다크액셀", + "effect": "악의적으로 상대를 향해 부릉거린다. 잠듦 상태로 만들 때가 있다." + }, + "noxiousTorque": { + "name": "포이즌액셀", + "effect": "독성 엔진으로 상대에게 부릉거린다. 독 상태로 만들 때가 있다." + }, + "combatTorque": { + "name": "파이트액셀", + "effect": "상대를 향해 기세 좋게 부릉거린다. 마비 상태로 만들 때가 있다." + }, + "magicalTorque": { + "name": "매지컬액셀", + "effect": "메르헨틱한 엔진으로 상대에게 부릉거린다. 상대를 혼란시킬 때가 있다." + }, + "bloodMoon": { + "name": "블러드문", + "effect": "피와 같이 붉은 보름달에서 혼신의 기백을 발사한다. 이 기술은 2회 연속으로 쓸 수 없다." + }, + "matchaGotcha": { + "name": "휘적휘적포", + "effect": "휘저은 차를 대포처럼 발사해 준 데미지의 절반을 HP로 회복한다. 화상 상태로 만들 때도 있다." + }, + "syrupBomb": { + "name": "시럽봄", + "effect": "끈적끈적한 물엿을 폭발시킨다. 상대를 물엿범벅 상태로 만들어서 3턴 동안 계속 스피드를 떨어뜨린다." + }, + "ivyCudgel": { + "name": "덩굴방망이", + "effect": "덩굴을 휘감은 방망이로 때린다. 쓰고 있는 가면에 따라 타입이 바뀐다. 급소에 맞기 쉽다." + }, + "electroShot": { + "name": "일렉트로빔", + "effect": "1턴째에 전기를 모아서 특수공격을 올리고 2턴째에 고압의 전기를 발사한다. 비가 오는 날씨일 때는 바로 발사할 수 있다." + }, + "teraStarstorm": { + "name": "테라클러스터", + "effect": "결정의 힘을 내리쬐어 적을 없애 버린다. 테라파고스가 스텔라폼일 때 사용하면 모든 상대에게 데미지를 준다." + }, + "fickleBeam": { + "name": "변덕레이저", + "effect": "광선을 발사해서 공격한다. 가끔 다른 머리도 협력해서 레이저를 발사하여 위력이 2배가 된다." + }, + "burningBulwark": { + "name": "화염의수호", + "effect": "상대의 공격을 초고열의 털로 방어하는 동시에 접촉한 상대를 화상 상태로 만든다." + }, + "thunderclap": { + "name": "질풍신뢰", + "effect": "상대보다 먼저 전격을 퍼붓는다. 상대가 쓴 기술이 공격 기술이 아니면 실패한다." + }, + "mightyCleave": { + "name": "파워풀에지", + "effect": "머리에 축적된 빛으로 절단한다. 기술 방어를 무시하고 공격할 수 있다." + }, + "tachyonCutter": { + "name": "타키온커터", + "effect": "입자로 된 칼날을 연이어 발사해서 2회 연속으로 데미지를 준다. 공격은 반드시 명중한다." + }, + "hardPress": { + "name": "하드프레스", + "effect": "팔이나 집게로 상대를 압박한다. 상대의 HP가 남아 있을수록 위력이 올라간다." + }, + "dragonCheer": { + "name": "드래곤옐", + "effect": "용의 북돋움으로 사기를 높여서 같은 편의 기술이 급소에 맞기 쉬워진다. 드래곤타입이면 더욱더 사기가 북돋는다." + }, + "alluringVoice": { + "name": "매혹의보이스", + "effect": "천사와도 같은 노랫소리로 상대를 공격한다. 그 턴에 능력이 올라간 포켓몬을 혼란 상태로 만든다." + }, + "temperFlare": { + "name": "열불내기", + "effect": "자포자기하는 기세로 공격한다. 앞 턴에서 기술이 빗나갔다면 위력이 배가 된다." + }, + "supercellSlam": { + "name": "썬더다이브", + "effect": "몸에 전기를 두르고 상대를 덮친다. 빗나가면 자신이 데미지를 입는다." + }, + "psychicNoise": { + "name": "사이코노이즈", + "effect": "불쾌한 음파를 상대에게 날려서 공격한다. 2턴 동안 상대는 기술이나 특성 또는 지니고 있는 도구로 HP를 회복할 수 없게 된다." + }, + "upperHand": { + "name": "기선제압", + "effect": "움직임에 반응하여 손바닥으로 밀쳐서 상대를 풀죽게 한다. 상대가 쓴 기술이 선제공격 기술이 아니면 실패한다." + }, + "malignantChain": { + "name": "악독사슬", + "effect": "독으로 된 사슬로 상대를 휘감은 뒤 독소를 흘려보내어 해치운다. 맹독 상태로 만들 때가 있다." + } +} diff --git a/src/locales/ko/move.ts b/src/locales/ko/move.ts deleted file mode 100644 index bb9d4515ba8..00000000000 --- a/src/locales/ko/move.ts +++ /dev/null @@ -1,3838 +0,0 @@ -import { MoveTranslationEntries } from "#app/interfaces/locales"; - -/** - * 본가 게임과 텍스트가 다르거나 번역문을 완전히 확인하지 못한 경우 주석으로 표시 - */ -export const move: MoveTranslationEntries = { - pound: { - name: "막치기", - effect: "긴 꼬리나 손 등을 사용하여 상대를 때려서 공격한다." - }, - karateChop: { - name: "태권당수", - effect: "날카로운 당수로 상대를 때려서 공격한다. 급소에 맞기 쉽다." - }, - doubleSlap: { - name: "연속뺨치기", - effect: "연속 뺨치기로 상대를 때려서 공격한다. 2-5회 동안 연속으로 쓴다." - }, - cometPunch: { - name: "연속펀치", - effect: "노도 같은 펀치로 상대를 세게 때려서 공격한다. 2-5회 동안 연속으로 쓴다." - }, - megaPunch: { - name: "메가톤펀치", - effect: "힘을 담은 펀치로 상대를 공격한다." - }, - payDay: { - name: "고양이돈받기", - effect: "상대의 몸에 돈을 세게 던져서 공격한다. 배틀 후에 돈을 받을 수 있다." - }, - firePunch: { - name: "불꽃펀치", - effect: "불꽃을 담은 펀치로 상대를 공격한다. 화상 상태로 만들 때가 있다." - }, - icePunch: { - name: "냉동펀치", - effect: "냉기를 담은 펀치로 상대를 공격한다. 얼음 상태로 만들 때가 있다." - }, - thunderPunch: { - name: "번개펀치", - effect: "전격을 담은 펀치로 상대를 공격한다. 마비 상태로 만들 때가 있다." - }, - scratch: { - name: "할퀴기", - effect: "단단하고 뾰족한 날카로운 손톱으로 상대를 할퀴어서 공격한다." - }, - viseGrip: { - name: "찝기", - effect: "상대를 양쪽에서 집어서 데미지를 준다." - }, - guillotine: { - name: "가위자르기", - effect: "큰 집게로 상대를 베어 갈라 공격한다. 맞으면 일격에 기절한다." - }, - razorWind: { - name: "칼바람", - effect: "바람의 칼날을 만들어 2턴째에 상대를 공격한다. 급소에 맞기 쉽다." - }, - swordsDance: { - name: "칼춤", - effect: "싸움의 춤을 격렬하게 춰서 기세를 높인다. 자신의 공격을 크게 올린다." - }, - cut: { - name: "풀베기", - effect: "낫이나 발톱 등으로 상대를 베어 공격한다." - }, - gust: { - name: "바람일으키기", - effect: "날개로 일으킨 격한 바람을 상대에게 부딪쳐서 공격한다." - }, - wingAttack: { - name: "날개치기", - effect: "크게 펼친 훌륭한 날개를 상대에게 부딪쳐서 공격한다." - }, - whirlwind: { - name: "날려버리기", - effect: "상대를 날려버려서 교대할 포켓몬을 끌어낸다. 야생의 경우에는 배틀이 끝난다." - }, - fly: { - name: "공중날기", - effect: "1턴째에 하늘을 날아 2턴째에 상대를 공격한다." - }, - bind: { - name: "조이기", - effect: "긴 몸이나 덩굴 등을 써서 4-5턴 동안 상대를 조여 공격한다." - }, - slam: { - name: "힘껏치기", - effect: "긴 꼬리나 덩굴 등을 사용해 상대를 힘껏 쳐서 공격한다." - }, - vineWhip: { - name: "덩굴채찍", - effect: "채찍처럼 휘어지는 가늘고 긴 덩굴로 상대를 힘껏 쳐서 공격한다." - }, - stomp: { - name: "짓밟기", - effect: "큰 발로 상대를 짓밟아서 공격한다. 상대를 풀죽게 만들 때가 있다." - }, - doubleKick: { - name: "두번차기", - effect: "2개의 다리로 상대를 걷어차서 공격한다. 2회 연속으로 데미지를 준다." - }, - megaKick: { - name: "메가톤킥", - effect: "굉장한 힘을 담은 킥으로 상대를 걷어차서 공격한다." - }, - jumpKick: { - name: "점프킥", - effect: "높이 점프해서 킥으로 상대를 공격한다. 빗나가면 자신이 데미지를 입는다." - }, - rollingKick: { - name: "돌려차기", - effect: "몸을 재빨리 회전시키며 걷어차서 공격한다. 상대를 풀죽게 만들 때가 있다." - }, - sandAttack: { - name: "모래뿌리기", - effect: "상대의 얼굴에 모래를 뿌려서 명중률을 떨어뜨린다." - }, - headbutt: { - name: "박치기", - effect: "머리를 내밀어 곧장 돌진하여 공격한다. 상대를 풀죽게 만들 때가 있다." - }, - hornAttack: { - name: "뿔찌르기", - effect: "날카롭고 뾰족한 뿔로 상대를 공격한다." - }, - furyAttack: { - name: "마구찌르기", - effect: "뿔이나 부리로 상대를 찔러서 공격한다. 2-5회 동안 연속으로 쓴다." - }, - hornDrill: { - name: "뿔드릴", - effect: "회전하는 뿔을 상대에게 꿰찔러서 공격한다. 맞으면 일격에 기절한다." - }, - tackle: { - name: "몸통박치기", - effect: "상대를 향해서 몸 전체를 부딪쳐가며 공격한다." - }, - bodySlam: { - name: "누르기", - effect: "몸 전체로 상대를 덮쳐눌러 공격한다. 마비 상태로 만들 때가 있다." - }, - wrap: { - name: "김밥말이", - effect: "긴 몸이나 덩굴 등을 사용해 4-5턴 동안 상대를 휘감아 공격한다." - }, - takeDown: { - name: "돌진", - effect: "굉장한 기세로 상대에게 부딪쳐 공격한다. 자신도 조금 데미지를 입는다." - }, - thrash: { - name: "난동부리기", - effect: "2-3턴 동안 마구 난동 부려서 공격한다. 난동 부린 뒤에는 혼란에 빠진다." - }, - doubleEdge: { - name: "이판사판태클", - effect: "목숨을 걸고 상대에게 돌진하여 공격을 한다. 자신도 상당한 데미지를 입는다." - }, - tailWhip: { - name: "꼬리흔들기", - effect: "꼬리를 좌우로 귀엽게 흔들어 방심을 유도한다. 상대의 방어를 떨어뜨린다." - }, - poisonSting: { - name: "독침", - effect: "독이 있는 침을 상대에게 꿰찔러서 공격한다. 독 상태로 만들 때가 있다." - }, - twineedle: { - name: "더블니들", - effect: "2개의 침을 상대에게 꿰찔러 2회 연속으로 데미지를 준다. 독 상태로 만들 때가 있다." - }, - pinMissile: { - name: "바늘미사일", - effect: "날카로운 침을 상대에게 발사해서 공격한다. 2-5회 동안 연속으로 쓴다." - }, - leer: { - name: "째려보기", - effect: "날카로운 눈초리로 겁을 주어 상대의 방어를 떨어뜨린다." - }, - bite: { - name: "물기", - effect: "날카롭고 뾰족한 이빨로 물어서 공격한다. 상대를 풀죽게 만들 때가 있다." - }, - growl: { - name: "울음소리", - effect: "귀여운 울음소리를 들려주고 관심을 끌어 방심한 사이에 상대의 공격을 떨어뜨린다." - }, - roar: { - name: "울부짖기", - effect: "상대를 도망가게 해서 교대할 포켓몬을 끌어낸다. 야생의 경우에는 배틀이 끝난다." - }, - sing: { - name: "노래하기", - effect: "기분 좋은 예쁜 노랫소리를 들려주고 상대를 잠듦 상태로 만든다." - }, - supersonic: { - name: "초음파", - effect: "특수한 음파를 몸에서 발산하여 상대를 혼란시킨다." - }, - sonicBoom: { - name: "소닉붐", - effect: "충격파를 상대에 부딪쳐서 공격한다. 언제나 20의 데미지를 준다." - }, - disable: { - name: "사슬묶기", - effect: "상대의 움직임을 막아 바로 전에 쓴 기술을 4턴 동안 사용할 수 없게 만든다." - }, - acid: { - name: "용해액", - effect: "강한 산을 상대에게 끼얹어 공격한다. 상대의 특수방어를 떨어뜨릴 때가 있다." - }, - ember: { - name: "불꽃세례", - effect: "작은 불꽃을 상대에게 발사하여 공격한다. 화상 상태로 만들 때가 있다." - }, - flamethrower: { - name: "화염방사", - effect: "세찬 불꽃을 상대에게 발사하여 공격한다. 화상 상태로 만들 때가 있다." - }, - mist: { - name: "흰안개", - effect: "하얀 안개로 몸을 덮는다. 5턴 동안 상대에 의해 능력이 떨어지지 않게 된다." - }, - waterGun: { - name: "물대포", - effect: "물을 기세 좋게 상대에게 발사하여 공격한다." - }, - hydroPump: { - name: "하이드로펌프", - effect: "대량의 물을 세찬 기세로 상대에게 발사하여 공격한다." - }, - surf: { - name: "파도타기", - effect: "큰 파도로 자신의 주위에 있는 포켓몬을 공격한다." - }, - iceBeam: { - name: "냉동빔", - effect: "냉동빔을 상대에게 발사하여 공격한다. 얼음 상태로 만들 때가 있다." - }, - blizzard: { - name: "눈보라", - effect: "세찬 눈보라를 상대에게 내뿜어 공격한다. 얼음 상태로 만들 때가 있다." - }, - psybeam: { - name: "환상빔", - effect: "이상한 광선을 상대에게 발사하여 공격한다. 혼란시킬 때가 있다." - }, - bubbleBeam: { - name: "거품광선", - effect: "거품을 기세 좋게 상대에게 발사하여 공격한다. 스피드를 떨어뜨릴 때가 있다." - }, - auroraBeam: { - name: "오로라빔", - effect: "무지개색의 빔을 상대에게 발사하여 공격한다. 공격을 떨어뜨릴 때가 있다." - }, - hyperBeam: { - name: "파괴광선", - effect: "강한 광선을 상대에게 발사하여 공격한다. 다음 턴은 움직일 수 없다." - }, - peck: { - name: "쪼기", - effect: "날카롭고 뾰족한 부리나 뿔로 상대를 쪼아서 공격한다." - }, - drillPeck: { - name: "회전부리", - effect: "회전하면서 뾰족한 부리를 상대에게 꿰찔러 공격한다." - }, - submission: { - name: "지옥의바퀴", - effect: "땅에 자신과 함께 상대를 내던져 공격한다. 자신도 조금 데미지를 입는다." - }, - lowKick: { - name: "안다리걸기", - effect: "발을 강하게 걸고 상대를 넘어뜨려 공격한다. 상대가 무거울수록 위력이 올라간다." - }, - counter: { - name: "카운터", - effect: "상대로부터 받은 물리공격의 데미지를 2배로 만들어 같은 상대에게 돌려준다." - }, - seismicToss: { - name: "지구던지기", - effect: "인력을 사용해 내던진다. 자신의 레벨과 똑같은 데미지를 상대에게 준다." - }, - strength: { - name: "괴력", - effect: "혼신의 힘으로 상대를 세게 때려서 공격한다." - }, - absorb: { - name: "흡수", - effect: "양분을 흡수하여 공격한다. 입힌 데미지의 절반에 해당하는 HP를 회복할 수 있다." - }, - megaDrain: { - name: "메가드레인", - effect: "양분을 흡수하여 공격한다. 입힌 데미지의 절반에 해당하는 HP를 회복할 수 있다." - }, - leechSeed: { - name: "씨뿌리기", - effect: "씨가 뿌려진 상대의 HP를 매 턴 조금씩 흡수하여 자신의 HP를 회복한다." - }, - growth: { - name: "성장", - effect: "몸을 일시에 크게 성장시켜 공격과 특수공격을 올린다." - }, - razorLeaf: { - name: "잎날가르기", - effect: "잎사귀를 날려 상대를 베어 공격한다. 급소에 맞기 쉽다." - }, - solarBeam: { - name: "솔라빔", - effect: "1턴째에 빛을 가득 모아 2턴째에 빛의 다발을 발사하여 공격한다." - }, - poisonPowder: { - name: "독가루", - effect: "독이 있는 가루를 많이 흩뿌려서 상대를 독 상태로 만든다." - }, - stunSpore: { - name: "저리가루", - effect: "저리가루를 많이 흩뿌려서 상대를 마비 상태로 만든다." - }, - sleepPowder: { - name: "수면가루", - effect: "잠이 오는 가루를 많이 흩뿌려서 상대를 잠듦 상태로 만든다." - }, - petalDance: { - name: "꽃잎댄스", - effect: "2-3턴 동안 꽃을 흩뿌려서 상대를 공격한다. 흩뿌린 뒤에는 혼란에 빠진다." - }, - stringShot: { - name: "실뿜기", - effect: "입에서 뿜어낸 실을 휘감아서 상대의 스피드를 크게 떨어뜨린다." - }, - dragonRage: { - name: "용의분노", - effect: "분노의 충격파를 상대에게 부딪쳐서 공격한다. 언제나 40의 데미지를 준다." - }, - fireSpin: { - name: "회오리불꽃", - effect: "세차게 소용돌이치는 불꽃 속에 4-5턴 동안 상대를 가두어 공격한다." - }, - thunderShock: { - name: "전기쇼크", - effect: "전기 자극을 상대에게 날려서 공격한다. 마비 상태로 만들 때가 있다." - }, - thunderbolt: { - name: "10만볼트", - effect: "강한 전격을 상대에게 날려서 공격한다. 마비 상태로 만들 때가 있다." - }, - thunderWave: { - name: "전기자석파", - effect: "약한 전격을 날려서 상대를 마비 상태로 만든다." - }, - thunder: { - name: "번개", - effect: "강한 번개를 상대에게 떨어뜨려 공격한다. 마비 상태로 만들 때가 있다." - }, - rockThrow: { - name: "돌떨구기", - effect: "작은 바위를 들어올려 상대에게 내던져서 공격한다." - }, - earthquake: { - name: "지진", - effect: "지진의 충격으로 자신의 주위에 있는 포켓몬을 공격한다." - }, - fissure: { - name: "땅가르기", - effect: "땅이 갈라진 곳에 상대를 떨어뜨려 공격한다. 맞으면 일격에 기절한다." - }, - dig: { - name: "구멍파기", - effect: "1턴째에 파고들어 2턴째에 상대를 공격한다." - }, - toxic: { - name: "맹독", - effect: "상대를 맹독의 상태로 만든다. 턴이 진행될수록 독의 데미지가 증가한다." - }, - confusion: { - name: "염동력", - effect: "약한 염동력을 상대에게 보내어 공격한다. 상대를 혼란시킬 때가 있다." - }, - psychic: { - name: "사이코키네시스", - effect: "강한 염동력을 상대에게 보내어 공격한다. 상대의 특수방어를 떨어뜨릴 때가 있다." - }, - hypnosis: { - name: "최면술", - effect: "졸음을 유도하는 암시를 걸어서 상대를 잠듦 상태로 만든다." - }, - meditate: { - name: "요가포즈", - effect: "잠들어 있는 힘을 몸속에서 끌어내어 자신의 공격을 올린다." - }, - agility: { - name: "고속이동", - effect: "힘을 빼고 몸을 가볍게 해서 고속으로 움직인다. 자신의 스피드를 크게 올린다." - }, - quickAttack: { - name: "전광석화", - effect: "눈에 보이지 않는 굉장한 속도로 상대에게 돌진한다. 반드시 선제공격할 수 있다." - }, - rage: { - name: "분노", - effect: "기술을 썼을 때 공격을 받으면 분노의 힘으로 공격이 올라간다." - }, - teleport: { - name: "순간이동", - effect: "교대할 포켓몬이 있을 때 사용하면 교체한다. 야생 포켓몬은 도망가 버린다." - }, - nightShade: { - name: "나이트헤드", - effect: "무시무시한 환상을 보게 해서 자신의 레벨과 똑같은 만큼의 데미지를 상대에게 준다." - }, - mimic: { - name: "흉내내기", - effect: "상대가 마지막에 사용한 기술을 배틀을 하는 동안 자신의 기술로 만들 수 있다." - }, - screech: { - name: "싫은소리", - effect: "그만 귀를 막아버리고 싶은 싫은 소리를 내어 상대의 방어를 크게 떨어뜨린다." - }, - doubleTeam: { - name: "그림자분신", - effect: "재빠른 움직임으로 분신을 만들어 상대를 혼란시켜 회피율을 올린다." - }, - recover: { - name: "HP회복", - effect: "세포를 재생시켜 자신의 최대 HP의 절반만큼 HP를 회복한다." - }, - harden: { - name: "단단해지기", - effect: "전신에 힘을 담아 몸을 단단하게 해서 자신의 방어를 올린다." - }, - minimize: { - name: "작아지기", - effect: "몸을 축소하여 작게 보임으로써 자신의 회피율을 크게 올린다." - }, - smokescreen: { - name: "연막", - effect: "연기나 먹물을 내뿜어 상대의 명중률을 떨어뜨린다." - }, - confuseRay: { - name: "이상한빛", - effect: "이상한 빛을 상대에게 비춰 당황하게 한다. 상대를 혼란시킨다." - }, - withdraw: { - name: "껍질에숨기", - effect: "껍질에 숨어 몸을 보호하여 자신의 방어를 올린다." - }, - defenseCurl: { - name: "웅크리기", - effect: "몸을 둥글게 웅크려서 자신의 방어를 올린다." - }, - barrier: { - name: "배리어", - effect: "튼튼한 장막을 만들어 자신의 방어를 크게 올린다." - }, - lightScreen: { - name: "빛의장막", - effect: "5턴 동안 이상한 장막을 쳐서 상대로부터 받는 특수공격의 데미지를 약하게 한다." - }, - haze: { - name: "흑안개", - effect: "흑안개를 뿜어 배틀에 참가 중인 포켓몬 전원의 능력 변화를 원래대로 돌린다." - }, - reflect: { - name: "리플렉터", - effect: "5턴 동안 이상한 장막을 쳐서 상대로부터 받는 물리공격의 데미지를 약하게 한다." - }, - focusEnergy: { - name: "기충전", - effect: "깊게 숨을 들이마셔 기합을 넣는다. 자신의 공격이 급소에 맞기 쉬워진다." - }, - bide: { - name: "참기", - effect: "2턴 동안 공격을 견뎌 입은 데미지를 2배로 만들어 상대에게 돌려준다." - }, - metronome: { - name: "손가락흔들기", - effect: "손가락을 흔들어 자신의 뇌를 자극해서 모든 기술 중 어느 하나를 날린다." - }, - mirrorMove: { - name: "따라하기", - effect: "상대가 사용한 기술을 흉내 내어 자신도 똑같은 기술을 쓴다." - }, - selfDestruct: { - name: "자폭", - effect: "폭발을 일으켜서 자신의 주위에 있는 포켓몬을 공격한다. 쓰고 나서 기절하게 된다." - }, - eggBomb: { - name: "알폭탄", - effect: "큰 알을 온 힘을 다해 상대에게 내던져서 공격한다." - }, - lick: { - name: "핥기", - effect: "긴 혀로 상대를 핥아서 공격한다. 마비 상태로 만들 때가 있다." - }, - smog: { - name: "스모그", - effect: "더러운 가스를 상대에게 내뿜어 공격한다. 독 상태로 만들 때가 있다." - }, - sludge: { - name: "오물공격", - effect: "더러운 오물을 상대에게 내던져서 공격한다. 독 상태로 만들 때가 있다." - }, - boneClub: { - name: "뼈다귀치기", - effect: "손에 들고 있는 뼈로 상대를 세게 때려서 공격한다. 상대를 풀죽게 만들 때가 있다." - }, - fireBlast: { - name: "불대문자", - effect: "큰 대자의 불꽃으로 상대를 불태운다. 화상 상태로 만들 때가 있다." - }, - waterfall: { - name: "폭포오르기", - effect: "굉장한 기세로 상대에게 돌진한다. 상대를 풀죽게 만들 때가 있다." - }, - clamp: { - name: "껍질끼우기", - effect: "매우 튼튼하고 두꺼운 껍질에 4-5턴 동안 상대를 끼워서 공격한다." - }, - swift: { - name: "스피드스타", - effect: "별 모양의 빛을 발사해서 상대를 공격한다. 공격은 반드시 명중한다." - }, - skullBash: { - name: "로켓박치기", - effect: "1턴째에 머리를 움츠려 방어를 올린다. 2턴째에 상대를 공격한다." - }, - spikeCannon: { - name: "가시대포", - effect: "날카로운 침을 상대에게 발사해서 공격한다. 2-5회 동안 연속으로 쓴다." - }, - constrict: { - name: "휘감기", - effect: "촉수나 덩굴 등을 휘감아서 공격한다. 상대의 스피드를 떨어뜨릴 때가 있다." - }, - amnesia: { - name: "망각술", - effect: "머리를 비워서 순간적으로 무언가를 잊어버림으로써 자신의 특수방어를 크게 올린다." - }, - kinesis: { - name: "숟가락휘기", - effect: "숟가락을 휘어서 주의를 끌어 상대의 명중률을 낮춘다." - }, - softBoiled: { - name: "알낳기", - effect: "자신의 최대 HP 절반을 회복한다." - }, - highJumpKick: { - name: "무릎차기", - effect: "점프해서 무릎차기로 상대를 공격한다. 빗나가면 자신이 데미지를 입는다." - }, - glare: { - name: "뱀눈초리", - effect: "배의 무늬로 겁을 주어 상대를 마비 상태로 만든다." - }, - dreamEater: { - name: "꿈먹기", - effect: "잠자고 있는 상대의 꿈을 먹어 공격한다. 데미지의 절반을 HP로 회복한다." - }, - poisonGas: { - name: "독가스", - effect: "독가스를 상대의 얼굴에 내뿜어 독 상태로 만든다." - }, - barrage: { - name: "구슬던지기", - effect: "둥근 것을 상대에게 내던져서 공격한다. 2-5회 동안 연속으로 쓴다." - }, - leechLife: { - name: "흡혈", - effect: "피를 빨아서 상대를 공격한다. 준 데미지의 절반을 HP로 회복한다." - }, - lovelyKiss: { - name: "악마의키스", - effect: "무서운 얼굴로 키스한다. 상대를 잠듦 상태로 만든다." - }, - skyAttack: { - name: "불새", - effect: "2턴째에 상대를 공격한다. 가끔 풀죽게 만든다. 급소에도 맞기 쉽다." - }, - transform: { - name: "변신", - effect: "상대 포켓몬으로 변신하여 상대와 완전히 똑같은 기술을 사용할 수 있다." - }, - bubble: { - name: "거품", - effect: "매우 많은 거품을 상대에게 내뿜어 공격한다. 상대의 스피드를 떨어뜨릴 때가 있다." - }, - dizzyPunch: { - name: "잼잼펀치", - effect: "리드미컬한 펀치를 날려 상대를 공격한다. 혼란시킬 때가 있다." - }, - spore: { - name: "버섯포자", - effect: "최면 효과가 있는 포자를 훌훌 흩뿌려서 상대를 잠듦 상태로 만든다." - }, - flash: { - name: "플래시", - effect: "눈이 부신 빛으로 상대의 명중률을 떨어뜨린다." - }, - psywave: { - name: "사이코웨이브", - effect: "이상한 염력파를 상대에게 발사하여 공격한다. 사용할 때마다 데미지가 바뀐다." - }, - splash: { - name: "튀어오르기", - effect: "공격도 하지 않고 팔딱팔딱 튈 뿐 아무 일도 일어나지 않는다..." - }, - acidArmor: { - name: "녹기", - effect: "세포의 변화로 액체가 되어 자신의 방어를 크게 올린다." - }, - crabhammer: { - name: "집게해머", - effect: "큰 집게를 상대에게 내리쳐서 공격한다. 급소에 맞기 쉽다." - }, - explosion: { - name: "대폭발", - effect: "큰 폭발로 자신의 주위에 있는 포켓몬을 공격한다. 쓰고 나서는 기절한다." - }, - furySwipes: { - name: "마구할퀴기", - effect: "손톱이나 낫 등으로 상대를 할퀴어서 공격한다. 2-5회 동안 연속으로 쓴다." - }, - bonemerang: { - name: "뼈다귀부메랑", - effect: "손에 들고 있는 뼈를 상대에게 날려서 날아갈 때와 돌아올 때 2회 연속 데미지를 준다." - }, - rest: { - name: "잠자기", - effect: "2턴 동안 계속 잠잔다. 자신의 HP와 상태 이상을 모두 회복한다." - }, - rockSlide: { - name: "스톤샤워", - effect: "큰 바위를 세차게 부딪쳐서 공격한다. 상대를 풀죽게 만들 때가 있다." - }, - hyperFang: { - name: "필살앞니", - effect: "날카로운 앞니로 강하게 물어서 공격한다. 상대를 풀죽게 만들 때가 있다." - }, - sharpen: { - name: "각지기", - effect: "몸의 각을 늘려서 더욱 각지게 하여 자신의 공격을 올린다." - }, - conversion: { - name: "텍스처", - effect: "자신의 타입을 배운 기술 중 가장 위에 있는 기술과 같은 타입으로 바꾼다." - }, - triAttack: { - name: "트라이어택", - effect: "3개의 광선으로 공격한다. 마비, 화상 또는 얼음 상태 중 어느 하나로 만들 때가 있다." - }, - superFang: { - name: "분노의앞니", - effect: "날카로운 앞니로 강하게 물어서 공격한다. 상대의 HP는 절반이 된다." - }, - slash: { - name: "베어가르기", - effect: "발톱이나 낫 등으로 상대를 베어 갈라서 공격한다. 급소에 맞기 쉽다." - }, - substitute: { - name: "대타출동", - effect: "자신의 HP를 조금 깎아서 분신을 만든다. 분신은 자신의 대타가 된다." - }, - struggle: { - name: "발버둥", - effect: "자신의 PP가 떨어지면 발버둥 쳐 상대를 공격한다. 자신도 조금 데미지를 입는다." - }, - sketch: { - name: "스케치", - effect: "상대가 쓴 기술을 자신의 것으로 만든다. 한 번 사용하면 스케치는 사라진다." - }, - tripleKick: { - name: "트리플킥", - effect: "3회 연속으로 킥을 날려 공격한다. 기술이 맞을 때마다 위력이 올라간다." - }, - thief: { - name: "도둑질", - /* 지닌 도구 대신 확률 제한 */ - effect: "공격과 동시에 30%의 확률로 도구를 훔친다." - }, - spiderWeb: { - name: "거미집", - effect: "끈적끈적하고 가는 실을 칭칭 휘감아 상대를 배틀에서 도망칠 수 없게 한다." - }, - mindReader: { - name: "마음의눈", - effect: "상대의 움직임을 마음으로 읽고 다음 공격이 반드시 상대에게 명중되게 한다." - }, - nightmare: { - name: "악몽", - effect: "잠듦 상태의 상대에게 악몽을 꾸게 하여 매 턴 조금씩 HP를 떨어뜨려 간다." - }, - flameWheel: { - name: "화염바퀴", - effect: "불꽃을 둘러 상대에게 돌진하여 공격한다. 화상 상태로 만들 때가 있다." - }, - snore: { - name: "코골기", - effect: "자신이 잠들어 있을 때 소음을 내어 공격한다. 상대를 풀죽게 만들 때가 있다." - }, - curse: { - name: "저주", - effect: "기술을 쓰는 포켓몬이 고스트타입일 때와 그 이외의 타입일 때는 효과가 다르다." - }, - flail: { - name: "바둥바둥", - effect: "바둥바둥 난동 부려서 공격한다. 자신의 HP가 적을수록 기술의 위력이 올라간다." - }, - conversion2: { - name: "텍스처2", - effect: "상대가 마지막으로 쓴 기술에 저항할 수 있도록 자신의 타입을 변화시킨다." - }, - aeroblast: { - name: "에어로블라스트", - effect: "공기의 소용돌이를 발사하여 공격한다. 급소에 맞기 쉽다." - }, - cottonSpore: { - name: "목화포자", - effect: "솜처럼 폭신폭신한 포자를 착 달라붙게 해서 상대의 스피드를 크게 떨어뜨린다." - }, - reversal: { - name: "기사회생", - effect: "힘을 쥐어짜서 공격한다. 자신의 HP가 적을수록 기술의 위력이 올라간다." - }, - spite: { - name: "원한", - effect: "상대가 마지막으로 사용한 기술에 원한을 품어 그 기술의 PP를 4만큼 줄인다." - }, - powderSnow: { - name: "눈싸라기", - effect: "차가운 가랑눈을 상대에게 내뿜어 공격한다. 얼음 상태로 만들 때가 있다." - }, - protect: { - name: "방어", - effect: "상대의 공격을 전혀 받지 않는다. 연속으로 쓰면 실패하기 쉽다." - }, - machPunch: { - name: "마하펀치", - effect: "눈에 보이지 않는 굉장한 속도로 펀치를 날린다. 반드시 선제공격을 할 수 있다." - }, - scaryFace: { - name: "겁나는얼굴", - effect: "무서운 얼굴로 노려보고 겁주어 상대의 스피드를 크게 떨어뜨린다." - }, - feintAttack: { - name: "속여때리기", - effect: "슬금슬금 상대에게 다가가 방심한 틈을 타서 세게 때린다. 공격은 반드시 명중한다." - }, - sweetKiss: { - name: "천사의키스", - effect: "천사처럼 귀엽게 키스하여 상대를 혼란시킨다." - }, - bellyDrum: { - name: "배북", - effect: "자신의 HP를 최대 HP의 절반만큼 감소시켜 자신의 공격을 최대로 올린다." - }, - sludgeBomb: { - name: "오물폭탄", - effect: "더러운 오물을 상대에게 내던져서 공격한다. 독 상태로 만들 때가 있다." - }, - mudSlap: { - name: "진흙뿌리기", - effect: "상대의 얼굴 등에 진흙을 내던져서 공격한다. 명중률을 떨어뜨린다." - }, - octazooka: { - name: "대포무노포", - effect: "상대의 얼굴 등에 먹물을 내뿜어 공격한다. 명중률을 떨어뜨릴 때가 있다." - }, - spikes: { - name: "압정뿌리기", - effect: "상대의 발밑에 압정을 뿌린다. 교체된 상대 포켓몬에게 데미지를 준다." - }, - zapCannon: { - name: "전자포", - effect: "대포처럼 전기를 발사해서 공격한다. 상대를 마비 상태로 만든다." - }, - foresight: { - name: "꿰뚫어보기", - effect: "고스트타입에 효과가 없는 기술이나 회피율이 높은 상대라 할지라도 공격이 맞게 된다." - }, - destinyBond: { - name: "길동무", - effect: "기술을 쓴 뒤 상대의 공격으로 기절했을 때 공격 상대도 기절하게 한다. 연속으로 쓰면 실패한다." - }, - perishSong: { - name: "멸망의노래", - effect: "노래를 들은 포켓몬은 3턴이 지나면 기절한다. 교체되면 효과가 없어진다." - }, - icyWind: { - name: "얼어붙은바람", - effect: "차가운 냉기를 상대에게 내뿜어 공격한다. 상대의 스피드를 떨어뜨린다." - }, - detect: { - name: "판별", - effect: "상대의 공격을 전혀 받지 않는다. 연속으로 쓰면 실패하기 쉽다." - }, - boneRush: { - name: "본러시", - effect: "단단한 뼈로 상대를 세게 때려서 공격한다. 2-5회 동안 연속으로 쓴다." - }, - lockOn: { - name: "록온", - effect: "조준을 잘 맞춰 다음 공격이 반드시 상대에게 명중하도록 한다." - }, - outrage: { - name: "역린", - effect: "2-3턴 동안 마구 난동 부려서 공격한다. 난동 부린 뒤에는 혼란에 빠진다." - }, - sandstorm: { - name: "모래바람", - effect: "5턴 동안 모래바람을 일으켜 바위 땅, 강철타입 이외의 상대에게 데미지를 준다. 바위타입의 특수방어가 올라간다." - }, - gigaDrain: { - name: "기가드레인", - effect: "양분을 흡수하여 공격한다. 입힌 데미지의 절반에 해당하는 HP를 회복할 수 있다." - }, - endure: { - name: "버티기", - effect: "공격을 받아도 HP를 반드시 1만큼은 남긴다. 연속으로 쓰면 실패하기 쉽다." - }, - charm: { - name: "애교부리기", - effect: "귀엽게 바라보고 방심을 유도하여 상대의 공격을 크게 떨어뜨린다." - }, - rollout: { - name: "구르기", - effect: "5턴 동안 구르기를 반복하여 공격한다. 기술이 맞을 때마다 위력이 올라간다." - }, - falseSwipe: { - name: "칼등치기", - effect: "상대의 HP가 반드시 1만 남도록 조절하여 공격한다." - }, - swagger: { - name: "뽐내기", - effect: "상대를 화내게 해서 혼란시킨다. 분노로 상대의 공격은 크게 올라가 버린다." - }, - milkDrink: { - name: "우유마시기", - effect: "자신의 최대 HP 절반을 회복한다." - }, - spark: { - name: "스파크", - effect: "전기를 둘러 상대에게 돌진하여 공격한다. 마비 상태로 만들 때가 있다." - }, - furyCutter: { - name: "연속자르기", - effect: "낫이나 발톱 등으로 상대를 베어 공격한다. 연속으로 맞히면 위력이 올라간다." - }, - steelWing: { - name: "강철날개", - effect: "단단한 날개를 상대에게 부딪쳐서 공격한다. 자신의 방어가 올라갈 때가 있다." - }, - meanLook: { - name: "검은눈빛", - effect: "빨려 들어갈 것 같은 까만 눈빛으로 가만히 응시하여 상대를 배틀에서 도망갈 수 없게 한다." - }, - attract: { - name: "헤롱헤롱", - effect: "수컷은 암컷을 암컷은 수컷을 유혹하여 헤롱헤롱하게 만든다. 상대가 기술을 쓰기 어려워진다." - }, - sleepTalk: { - name: "잠꼬대", - effect: "자신이 배운 기술 중 하나를 무작위로 날린다. 자신이 잠들어 있을 때만 쓸 수 있다." - }, - healBell: { - name: "치료방울", - effect: "기분 좋은 방울소리를 들려주어 같은 편 전원의 상태 이상을 회복한다." - }, - return: { - name: "은혜갚기", - effect: "트레이너를 위해 전력으로 상대를 공격한다. 친밀할수록 위력이 올라간다." - }, - present: { - name: "프레젠트", - effect: "덫을 설치한 상자를 상대에게 건네어 공격한다. HP가 회복돼버릴 때도 있다." - }, - frustration: { - name: "화풀이", - effect: "불만을 풀기 위해 전력으로 상대를 공격한다. 친밀하지 않을수록 위력이 올라간다." - }, - safeguard: { - name: "신비의부적", - effect: "5턴 동안 이상한 힘의 보호를 받아 상태 이상이 되지 않는다." - }, - painSplit: { - name: "아픔나누기", - effect: "자신의 HP와 상대의 HP를 합친 것을 자신과 상대가 사이좋게 나눈다." - }, - sacredFire: { - name: "성스러운불꽃", - effect: "신비한 불꽃으로 상대를 태워서 공격한다. 화상 상태로 만들 때가 있다." - }, - magnitude: { - name: "매그니튜드", - effect: "땅을 흔들어서 자신의 주위에 있는 포켓몬을 공격한다. 기술의 위력이 여러모로 바뀐다." - }, - dynamicPunch: { - name: "폭발펀치", - effect: "혼신의 힘으로 펀치를 날려서 공격한다. 상대를 반드시 혼란시킨다." - }, - megahorn: { - name: "메가혼", - effect: "단단하고 훌륭한 뿔로 마음껏 상대를 꿰찔러서 공격한다." - }, - dragonBreath: { - name: "용의숨결", - effect: "굉장한 숨결을 상대에게 내뿜어 공격한다. 마비 상태로 만들 때가 있다." - }, - batonPass: { - name: "배턴터치", - effect: "교대 포켓몬과 바뀐다. 능력 변화는 바뀐 포켓몬이 그대로 이어받는다." - }, - encore: { - name: "앙코르", - effect: "상대에게 앙코르를 외쳐서 기술을 3번 연속으로 쓰게 한다." - }, - pursuit: { - name: "따라가때리기", - effect: "상대 포켓몬이 교체될 때 기술을 쓰면 2배의 위력으로 공격할 수 있다." - }, - rapidSpin: { - name: "고속스핀", - effect: "회전해서 상대를 공격한다. 조이기, 김밥말이, 씨뿌리기 등을 날려버린다. 자신의 스피드도 오른다." - }, - sweetScent: { - name: "달콤한향기", - effect: "향기로 상대의 회피율을 크게 떨어뜨린다." - }, - ironTail: { - name: "아이언테일", - effect: "단단한 꼬리로 상대를 힘껏 쳐서 공격한다. 상대의 방어를 떨어뜨릴 때가 있다." - }, - metalClaw: { - name: "메탈클로", - effect: "강철의 발톱으로 상대를 베어 갈라 공격한다. 자신의 공격이 올라갈 때도 있다." - }, - vitalThrow: { - name: "받아던지기", - effect: "상대보다 나중에 공격한다. 그 대신 자신의 공격은 반드시 명중한다." - }, - morningSun: { - name: "아침햇살", - effect: "자신의 HP를 회복한다. 날씨에 따라 회복량이 변한다." - }, - synthesis: { - name: "광합성", - effect: "자신의 HP를 회복한다. 날씨에 따라 회복량이 변한다." - }, - moonlight: { - name: "달빛", - effect: "자신의 HP를 회복한다. 날씨에 따라 회복량이 변한다." - }, - hiddenPower: { - name: "잠재파워", - effect: "기술을 쓴 포켓몬에 따라 기술의 타입이 바뀐다." - }, - crossChop: { - name: "크로스촙", - effect: "양손으로 당수를 상대에게 힘껏 쳐서 공격한다. 급소에 맞기 쉽다." - }, - twister: { - name: "회오리", - effect: "회오리를 일으켜 상대를 끌어들여 공격한다. 상대를 풀죽게 만들 때가 있다." - }, - rainDance: { - name: "비바라기", - effect: "5턴 동안 비를 내리게 해서 물타입 기술의 위력을 올린다. 불꽃타입의 위력은 떨어진다." - }, - sunnyDay: { - name: "쾌청", - effect: "5턴 동안 햇살을 강하게 해서 불꽃타입 기술의 위력을 올린다. 물타입의 위력은 떨어진다." - }, - crunch: { - name: "깨물어부수기", - effect: "날카로운 이빨로 상대를 깨물어 부숴서 공격한다. 상대의 방어를 떨어뜨릴 때가 있다." - }, - mirrorCoat: { - name: "미러코트", - effect: "상대에게 받은 특수공격의 데미지를 2배로 만들어 그 상대에게 돌려준다." - }, - psychUp: { - name: "자기암시", - effect: "자신에게 암시를 걸어서 능력 변화 상태를 상대와 똑같은 상태로 만든다." - }, - extremeSpeed: { - name: "신속", - effect: "눈에 보이지 않는 굉장한 속도로 상대에게 돌진하여 공격한다. 반드시 선제공격을 할 수 있다." - }, - ancientPower: { - name: "원시의힘", - effect: "원시의 힘으로 공격한다. 자신의 모든 능력이 오를 때가 있다." - }, - shadowBall: { - name: "섀도볼", - effect: "까만 그림자의 덩어리를 내던져서 공격한다. 상대의 특수방어를 떨어뜨릴 때가 있다." - }, - futureSight: { - name: "미래예지", - effect: "기술을 사용한 2턴 뒤에 상대에게 염동력의 덩어리를 보내어 공격한다." - }, - rockSmash: { - name: "바위깨기", - effect: "펀치로 공격한다. 상대의 방어를 떨어뜨릴 때가 있다." - }, - whirlpool: { - name: "바다회오리", - effect: "세차게 소용돌이치는 물속에 4-5턴 동안 상대를 가두어 공격한다." - }, - beatUp: { - name: "집단구타", - effect: "같은 편 전원이 공격한다. 동료 포켓몬이 많을수록 기술의 공격 횟수가 증가한다." - }, - fakeOut: { - name: "속이기", - effect: "선제공격으로 상대를 풀죽게 한다. 배틀에 나가서 바로 쓰지 않으면 성공할 수 없다." - }, - uproar: { - name: "소란피기", - effect: "3턴 동안 소란 피워 공격한다. 그동안은 아무도 잠들지 않게 된다." - }, - stockpile: { - name: "비축하기", - effect: "힘을 비축해서 자신의 방어와 특수방어를 올린다. 최대 3회까지 비축할 수 있다." - }, - spitUp: { - name: "토해내기", - effect: "비축된 힘을 상대에게 부딪쳐서 공격한다. 비축된 만큼 위력이 올라간다." - }, - swallow: { - name: "꿀꺽", - effect: "비축된 힘을 꿀꺽해서 자신의 HP를 회복한다. 비축된 만큼 회복한다." - }, - heatWave: { - name: "열풍", - effect: "뜨거운 숨결을 상대에게 내뿜어 공격한다. 화상 상태로 만들 때가 있다." - }, - hail: { - name: "싸라기눈", - effect: "5턴 동안 싸라기눈을 내리게 해서 얼음타입이 아닌 포켓몬 모두에게 데미지를 준다." - }, - torment: { - name: "트집", - effect: "상대에게 트집을 잡아서 똑같은 기술을 2회 연속으로 쓸 수 없게 한다." - }, - flatter: { - name: "부추기기", - effect: "상대를 부추겨서 혼란시킨다. 동시에 상대의 특수공격도 올라가 버린다." - }, - willOWisp: { - name: "도깨비불", - effect: "으스스하고 괴상한 불꽃을 쏘아 상대를 화상 상태로 만든다." - }, - memento: { - name: "추억의선물", - effect: "자신은 기절하게 되지만 그 대신 상대의 공격과 특수공격을 크게 떨어뜨린다." - }, - facade: { - name: "객기", - effect: "자신이 독, 마비, 화상 상태일 때 날리면 기술의 위력이 2배가 된다." - }, - focusPunch: { - name: "힘껏펀치", - effect: "정신력을 높여 펀치를 날린다. 기술을 쓰기 전에 공격을 받으면 실패한다." - }, - smellingSalts: { - name: "정신차리기", - effect: "마비 상태의 상대에게는 위력이 2배가 되지만 대신 상대의 마비가 풀린다." - }, - followMe: { - name: "날따름", - effect: "자신에게 주목시켜 상대로부터의 공격을 모두 자신에게 향하게 한다." - }, - naturePower: { - name: "자연의힘", - effect: "자연의 힘으로 공격한다. 사용하는 장소에 따라 나오는 기술이 변화한다." - }, - charge: { - name: "충전", - effect: "다음 턴에 쓸 전기타입 기술의 위력을 올린다. 자신의 특수방어도 올라간다." - }, - taunt: { - name: "도발", - effect: "상대를 화나게 한다. 3턴 동안 상대는 데미지를 주는 기술밖에 쓸 수 없게 된다." - }, - helpingHand: { - name: "도우미", - effect: "동료를 돕는다. 도움받은 포켓몬이 쓰는 기술의 위력은 여느 때보다 커진다." - }, - trick: { - name: "트릭", - effect: "상대의 빈틈을 노려 자신과 상대가 지닌 물건을 바꿔치기한다." - }, - rolePlay: { - name: "역할", - effect: "상대의 역할을 하여 자신도 상대와 같은 특성으로 변화한다." - }, - wish: { - name: "희망사항", - effect: "다음 턴에 자신 또는 교체한 포켓몬의 HP를 최대 HP의 절반만큼 회복한다." - }, - assist: { - name: "조수", - effect: "서둘러서 같은 편의 도움을 받아 같은 편 포켓몬이 기억하고 있는 기술 중 하나를 쓴다." - }, - ingrain: { - name: "뿌리박기", - effect: "대지에 뿌리를 박아 매 턴마다 자신의 HP를 회복한다. 뿌리 박고 있으므로 교체할 수 없다." - }, - superpower: { - name: "엄청난힘", - effect: "엄청난 힘을 발휘하여 상대를 공격한다. 자신의 공격과 방어가 떨어진다." - }, - magicCoat: { - name: "매직코트", - effect: "상대가 상태 이상이 되는 기술이나 씨뿌리기 등을 썼을 때 되받아친다." - }, - recycle: { - name: "리사이클", - effect: "배틀 중에 사용하여 없어진 자신의 지닌 물건을 재생시켜 사용할 수 있게 한다." - }, - revenge: { - name: "리벤지", - effect: "상대에게 기술을 받으면 그 상대에게 주는 데미지가 2배가 된다." - }, - brickBreak: { - name: "깨트리기", - effect: "수도로 기세 좋게 내려쳐서 상대를 공격한다. 빛의장막이나 리플렉터 등도 파괴할 수 있다." - }, - yawn: { - name: "하품", - effect: "큰 하품으로 졸음을 유도한다. 다음 턴에 상대를 잠듦 상태로 만든다." - }, - knockOff: { - name: "탁쳐서떨구기", - effect: "상대의 지닌 물건을 탁 쳐서 떨어뜨려 배틀이 끝날 때까지 사용할 수 없게 한다. 물건을 가진 상대에게는 데미지를 더 준다." - }, - endeavor: { - name: "죽기살기", - effect: "상대의 HP가 자신의 HP와 같아지도록 데미지를 준다." - }, - eruption: { - name: "분화", - effect: "분노를 폭발시켜 상대를 공격한다. 자신의 HP가 적을수록 기술의 위력이 떨어진다." - }, - skillSwap: { - name: "스킬스왑", - effect: "초능력으로 자신의 특성과 상대의 특성을 바꾼다." - }, - imprison: { - name: "봉인", - effect: "상대가 자신과 같은 기술을 배웠다면 상대만 그 기술을 사용할 수 없게 한다." - }, - refresh: { - name: "리프레시", - effect: "몸을 쉬게 하여 자신이 입은 독, 마비, 화상의 상태 이상을 치료한다." - }, - grudge: { - name: "원념", - effect: "상대의 기술로 기절하면 원념을 담아 그 기술의 PP를 0으로 만든다." - }, - snatch: { - name: "가로채기", - effect: "상대가 사용하려고 한 회복 기술이나 능력 변화의 기술을 빼앗아 자신에게 쓴다." - }, - secretPower: { - name: "비밀의힘", - effect: "사용하는 장소에 따라 추가 효과가 변화하는 공격이다." - }, - dive: { - name: "다이빙", - effect: "1턴째에 잠수했다가 2턴째에 떠올라 공격한다." - }, - armThrust: { - name: "손바닥치기", - effect: "펼친 양손으로 상대를 번갈아 쳐서 공격한다. 2-5회 동안 연속으로 쓴다." - }, - camouflage: { - name: "보호색", - effect: "물가나 풀밭, 동굴 등 있는 장소에 맞춰서 자신의 타입을 바꾼다." - }, - tailGlow: { - name: "반딧불", - effect: "깜빡거리는 빛을 바라보고 자신의 정신을 통일하여 특수공격을 매우 크게 올린다." - }, - lusterPurge: { - name: "러스터퍼지", - effect: "눈부신 빛을 발산하여 공격한다. 상대의 특수방어를 떨어뜨릴 때가 있다." - }, - mistBall: { - name: "미스트볼", - effect: "안개의 깃털로 둘러싸 공격한다. 상대의 특수공격을 떨어뜨릴 때가 있다." - }, - featherDance: { - name: "깃털댄스", - effect: "깃털을 흩뿌려 상대의 몸에 휘감는다. 상대의 공격을 크게 떨어뜨린다." - }, - teeterDance: { - name: "흔들흔들댄스", - effect: "흔들흔들 댄스를 춰서 주위에 있는 포켓몬을 혼란 상태로 만든다." - }, - blazeKick: { - name: "블레이즈킥", - effect: "공격한 상대를 화상 상태로 만들 때가 있다. 급소에도 맞기 쉽다." - }, - mudSport: { - name: "흙놀이", - effect: "주위를 진흙투성이로 만든다. 5턴 동안 전기타입의 기술을 약하게 한다." - }, - iceBall: { - name: "아이스볼", - effect: "5턴 동안 상대를 공격한다. 기술이 맞을 때마다 위력이 올라간다." - }, - needleArm: { - name: "바늘팔", - effect: "바늘팔을 세차게 흔들어 공격한다. 상대를 풀죽게 만들 때가 있다." - }, - slackOff: { - name: "게으름피우기", - effect: "게으름 피우며 쉰다. 자신의 HP를 최대 HP의 절반만큼 회복한다." - }, - hyperVoice: { - name: "하이퍼보이스", - effect: "시끄럽게 울리는 큰 진동을 상대에게 전달하여 공격한다." - }, - poisonFang: { - name: "맹독엄니", - effect: "독이 있는 이빨로 상대를 물어서 공격한다. 맹독을 주입할 때가 있다." - }, - crushClaw: { - name: "브레이크클로", - effect: "단단하고 날카로운 손톱으로 베어 갈라서 공격한다. 상대의 방어를 떨어뜨릴 때가 있다." - }, - blastBurn: { - name: "블라스트번", - effect: "폭발하는 불꽃으로 상대를 태워서 공격한다. 다음 턴은 움직일 수 없다." - }, - hydroCannon: { - name: "하이드로캐논", - effect: "물의 대포를 상대에게 발사해서 공격한다. 다음 턴은 움직일 수 없다." - }, - meteorMash: { - name: "코멧펀치", - effect: "혜성과 같은 펀치를 날려서 상대를 공격한다. 자신의 공격이 올라갈 때가 있다." - }, - astonish: { - name: "놀래키기", - effect: "큰 소리 등으로 불시에 놀래켜서 공격한다. 상대를 풀죽게 만들 때가 있다." - }, - weatherBall: { - name: "웨더볼", - effect: "사용했을 때의 날씨에 따라서 기술 타입과 위력이 바뀐다." - }, - aromatherapy: { - name: "아로마테라피", - effect: "기분 좋은 평온한 향기를 맡게 하여 같은 편 모두의 상태 이상을 회복한다." - }, - fakeTears: { - name: "거짓울음", - effect: "우는 척을 하며 눈물을 흘린다. 난처하게 만들어 상대의 특수방어를 크게 떨어뜨린다." - }, - airCutter: { - name: "에어커터", - effect: "날카로운 바람으로 상대를 베어 공격한다. 급소에 맞기 쉽다." - }, - overheat: { - name: "오버히트", - effect: "풀 파워로 상대를 공격한다. 쓰면 반동으로 자신의 특수공격이 크게 떨어진다." - }, - odorSleuth: { - name: "냄새구별", - effect: "고스트타입에 효과가 없는 기술이나 회피율이 높은 상대라 할지라도 공격이 맞게 된다." - }, - rockTomb: { - name: "암석봉인", - effect: "암석을 내던져서 공격한다. 상대의 움직임을 봉인함으로써 스피드를 떨어뜨린다." - }, - silverWind: { - name: "은빛바람", - effect: "바람에 날개 가루를 날려서 상대를 공격한다. 자신의 모든 능력이 올라갈 때가 있다." - }, - metalSound: { - name: "금속음", - effect: "금속을 긁을 때 나는 듯한 싫은 소리를 들려준다. 상대의 특수방어를 크게 떨어뜨린다." - }, - grassWhistle: { - name: "풀피리", - effect: "기분 좋은 피리 소리를 들려주어 상대를 잠듦 상태로 만든다." - }, - tickle: { - name: "간지르기", - effect: "몸을 간질여 웃게 만들어서 상대의 공격과 방어를 떨어뜨린다." - }, - cosmicPower: { - name: "코스믹파워", - effect: "우주로부터 신비한 힘을 손에 넣음으로써 자신의 방어와 특수방어를 올린다." - }, - waterSpout: { - name: "해수스파우팅", - effect: "바닷물을 내뿜어 공격한다. 자신의 HP가 적을수록 기술의 위력이 떨어진다." - }, - signalBeam: { - name: "시그널빔", - effect: "이상한 빛을 발사해서 공격한다. 상대를 혼란시킬 때가 있다." - }, - shadowPunch: { - name: "섀도펀치", - effect: "그림자에 섞여 펀치를 날린다. 공격은 반드시 명중한다." - }, - extrasensory: { - name: "신통력", - effect: "보이지 않는 이상한 힘을 보내어 공격한다. 상대를 풀죽게 만들 때가 있다." - }, - skyUppercut: { - name: "스카이어퍼", - effect: "하늘을 향하는 듯한 높은 업퍼로 상대를 밀어올려 공격한다." - }, - sandTomb: { - name: "모래지옥", - effect: "세차게 불어대는 모래바람 속에 4-5턴 동안 상대를 가두어 공격한다." - }, - sheerCold: { - name: "절대영도", - effect: "상대를 일격에 기절시킨다. 얼음타입 이외의 포켓몬이 사용하면 잘 맞지 않는다." - }, - muddyWater: { - name: "탁류", - effect: "탁해진 물을 상대에게 발사하여 공격한다. 명중률을 떨어뜨릴 때가 있다." - }, - bulletSeed: { - name: "씨기관총", - effect: "씨앗을 기세 좋게 상대에게 발사하여 공격한다. 2-5회 동안 연속으로 쓴다." - }, - aerialAce: { - name: "제비반환", - effect: "재빠른 움직임으로 상대를 농락해 벤다. 공격은 반드시 명중한다." - }, - icicleSpear: { - name: "고드름침", - effect: "날카로운 고드름을 상대에게 발사하여 공격한다. 2-5회 동안 연속으로 쓴다." - }, - ironDefense: { - name: "철벽", - effect: "피부를 쇠처럼 단단하게 만듦으로써 자신의 방어를 크게 올린다." - }, - block: { - name: "블록", - effect: "양팔을 벌려 막아서서 상대의 도주로를 가로막아 도망칠 수 없게 한다." - }, - howl: { - name: "멀리짖기", - effect: "큰 소리로 짖고 기합을 높여 자신과 같은 편의 공격을 올린다." - }, - dragonClaw: { - name: "드래곤클로", - effect: "날카롭고 뾰족한 거대한 발톱으로 상대를 베어 갈라서 공격한다." - }, - frenzyPlant: { - name: "하드플랜트", - effect: "큰 나무로 상대를 힘껏 쳐서 공격한다. 다음 턴은 움직일 수 없게 된다." - }, - bulkUp: { - name: "벌크업", - effect: "몸에 힘을 담아 근육을 두껍게 해서 자신의 공격과 방어를 올린다." - }, - bounce: { - name: "뛰어오르기", - effect: "하늘 높이 뛰어올라 2턴째에 상대를 공격한다. 마비 상태로 만들 때가 있다." - }, - mudShot: { - name: "머드샷", - effect: "진흙 덩어리를 상대에게 내던져서 공격한다. 동시에 상대의 스피드를 떨어뜨린다." - }, - poisonTail: { - name: "포이즌테일", - effect: "꼬리로 때린다. 독 상태로 만들 때가 있고 급소에도 맞기 쉽다." - }, - covet: { - name: "탐내기", - /* 지닌 도구 대신 확률 제한 */ - effect: "귀엽게 애교부리며 상대에게 다가가 30%의 확률로 지니고 있는 도구를 뺏는다." - }, - voltTackle: { - name: "볼트태클", - effect: "전기를 한데 모아 돌진한다. 자신도 상당한 데미지를 입는다. 마비 상태로 만들 때가 있다." - }, - magicalLeaf: { - name: "매지컬리프", - effect: "상대를 추적하는 이상한 잎사귀를 흩뿌린다. 공격은 반드시 명중한다." - }, - waterSport: { - name: "물놀이", - effect: "주위를 물로 흠뻑 젖게 만든다. 5턴 동안 불꽃타입의 기술을 약하게 한다." - }, - calmMind: { - name: "명상", - effect: "조용히 정신을 통일하고 마음을 가라앉혀서 자신의 특수공격과 특수방어를 올린다." - }, - leafBlade: { - name: "리프블레이드", - effect: "잎사귀를 칼처럼 이용해 상대를 베어 공격한다. 급소에 맞기 쉽다." - }, - dragonDance: { - name: "용의춤", - effect: "신비롭고 힘센 춤을 격렬하게 춘다. 자신의 공격과 스피드를 올린다." - }, - rockBlast: { - name: "록블라스트", - effect: "단단한 암석을 상대에게 발사하여 공격한다. 2-5회 동안 연속으로 쓴다." - }, - shockWave: { - name: "전격파", - effect: "전격을 재빠르게 상대에게 날린다. 공격은 반드시 명중한다." - }, - waterPulse: { - name: "물의파동", - effect: "물의 진동을 상대에게 가하여 공격한다. 상대를 혼란시킬 때가 있다." - }, - doomDesire: { - name: "파멸의소원", - effect: "기술을 사용한 2턴 뒤에 무수한 빛의 다발이 상대를 공격한다." - }, - psychoBoost: { - name: "사이코부스트", - effect: "풀 파워로 상대를 공격한다. 쓰면 반동으로 자신의 특수공격이 크게 떨어진다." - }, - roost: { - name: "날개쉬기", - effect: "땅에 내려와 몸을 쉬게 한다. 최대 HP의 절반만큼 HP를 회복한다." - }, - gravity: { - name: "중력", - effect: "5턴 동안 부유나 비행타입에 땅타입의 기술이 맞게 된다. 공중으로 나는 기술도 사용할 수 없다." - }, - miracleEye: { - name: "미라클아이", - effect: "악타입에 효과가 없는 기술이나 회피율이 높은 상대라 할지라도 공격이 맞게 된다." - }, - wakeUpSlap: { - name: "잠깨움뺨치기", - effect: "잠듦 상태의 상대에게 큰 데미지를 준다. 대신 상대는 잠에서 깬다." - }, - hammerArm: { - name: "암해머", - effect: "강하고 무거운 주먹을 휘둘러 데미지를 준다. 자신의 스피드가 떨어진다." - }, - gyroBall: { - name: "자이로볼", - effect: "몸을 고속으로 회전시켜 몸통박치기한다. 상대보다 스피드가 낮을수록 위력은 올라간다." - }, - healingWish: { - name: "치유소원", - effect: "자신은 기절하지만 교대하여 나오는 포켓몬의 상태 이상과 HP를 회복한다." - }, - brine: { - name: "소금물", - effect: "상대가 HP의 절반 정도 상처를 입고 있으면 기술의 위력이 2배가 된다." - }, - naturalGift: { - name: "자연의은혜", - effect: "나무열매에서 힘을 얻어 공격한다. 지니게 한 나무열매에 따라 기술의 타입과 위력이 바뀐다." - }, - feint: { - name: "페인트", - effect: "방어나 판별 등을 하고 있는 상대에게 공격할 수 있다. 방어 효과를 해제시킨다." - }, - pluck: { - name: "쪼아대기", - effect: "부리로 공격한다. 상대가 나무열매를 지니고 있을 때 먹어서 나무열매의 효과를 받을 수 있다." - }, - tailwind: { - name: "순풍", - effect: "세차게 불어대는 바람의 소용돌이를 만들어 4턴 동안 같은 편 모두의 스피드를 올린다." - }, - acupressure: { - name: "경혈찌르기", - effect: "경혈을 눌러 몸을 활성화시킨다. 능력 중 하나를 크게 올린다." - }, - metalBurst: { - name: "메탈버스트", - effect: "기술을 쓰기 전에 마지막으로 받은 기술의 데미지를 늘려서 기술을 쓴 상대에게 돌려준다." - }, - uTurn: { - name: "유턴", - effect: "공격한 뒤 굉장한 스피드로 돌아와서 교대 포켓몬과 교체한다." - }, - closeCombat: { - name: "인파이트", - effect: "방어를 포기하고 상대 쪽으로 깊숙이 돌격한다. 자신의 방어와 특수방어가 떨어진다." - }, - payback: { - name: "보복", - effect: "모아서 공격한다. 상대보다 나중에 공격할 수 있으면 기술의 위력은 2배가 된다." - }, - assurance: { - name: "승부굳히기", - effect: "그 턴에 상대가 이미 데미지를 입었다면 기술의 위력은 2배가 된다." - }, - embargo: { - name: "금제", - effect: "지니게 한 도구를 5턴 동안 쓸 수 없게 한다. 트레이너도 그 포켓몬에게는 도구를 쓸 수 없다." - }, - fling: { - name: "내던지기", - effect: "지니게 한 도구를 재빠르게 내던져서 공격한다. 도구에 따라 위력과 효과가 바뀐다." - }, - psychoShift: { - name: "사이코시프트", - effect: "초능력으로 암시를 걸어서 자신에게 걸려 있는 상태 이상을 상대에게 옮긴다." - }, - trumpCard: { - name: "마지막수단", - effect: "마지막수단의 남은 PP가 적으면 적을수록 기술의 위력이 올라간다." - }, - healBlock: { - name: "회복봉인", - effect: "5턴 동안 기술이나 특성, 지니고 있는 도구에 의한 HP 회복을 할 수 없게 한다." - }, - wringOut: { - name: "쥐어짜기", - effect: "강하게 조여 공격을 한다. 상대의 HP가 많이 남아 있을수록 위력이 올라간다." - }, - powerTrick: { - name: "파워트릭", - effect: "초능력으로 자신의 공격과 방어의 힘을 교환한다." - }, - gastroAcid: { - name: "위액", - effect: "상대의 몸에 위액을 내뱉는다. 달라붙은 위액은 상대의 특성 효과를 지운다." - }, - luckyChant: { - name: "주술", - effect: "하늘을 향해 기도를 올려 5턴 동안 상대의 공격을 급소에 맞지 않게 한다." - }, - meFirst: { - name: "선취", - effect: "위력을 올려 상대가 쓰려고 하는 기술을 먼저 쓴다. 먼저 쓰지 않으면 실패한다." - }, - copycat: { - name: "흉내쟁이", - effect: "직전에 나온 기술을 흉내 내어 같은 기술을 쓴다. 기술이 나오지 않았으면 실패한다." - }, - powerSwap: { - name: "파워스왑", - effect: "초능력으로 자신과 상대의 공격과 특수공격의 능력 변화를 교체한다." - }, - guardSwap: { - name: "가드스왑", - effect: "초능력으로 자신과 상대의 방어와 특수방어의 능력 변화를 교체한다." - }, - punishment: { - name: "혼내기", - effect: "능력 변화로 상대가 파워업한 만큼 기술의 위력이 올라간다." - }, - lastResort: { - name: "비장의무기", - effect: "배틀 중에 기억하고 있는 기술을 모두 사용하면 그때부터 쓸 수 있는 필살기이다." - }, - worrySeed: { - name: "고민씨", - effect: "마음을 괴롭히는 씨앗을 심는다. 상대를 잠잘 수 없게 해서 특성을 불면으로 만든다." - }, - suckerPunch: { - name: "기습", - effect: "상대보다 먼저 공격할 수 있다. 상대가 쓴 기술이 공격기술이 아니면 실패한다." - }, - toxicSpikes: { - name: "독압정", - effect: "상대의 발밑에 독 압정을 뿌린다. 교체로 나온 상대 포켓몬에게 독을 퍼지게 한다." - }, - heartSwap: { - name: "하트스왑", - effect: "초능력으로 자신과 상대에 걸려 있는 능력 변화를 교체한다." - }, - aquaRing: { - name: "아쿠아링", - effect: "자신의 몸 주변을 물로 만든 베일로 덮는다. 매 턴 HP를 회복한다." - }, - magnetRise: { - name: "전자부유", - effect: "전기로 만든 자력의 힘으로 허공에 뜬다. 5턴 동안 부유할 수 있다." - }, - flareBlitz: { - name: "플레어드라이브", - effect: "불꽃을 두르고 돌진한다. 자신도 상당한 데미지를 입는다. 화상 상태로 만들 때가 있다." - }, - forcePalm: { - name: "발경", - effect: "상대의 몸에 충격파를 부딪쳐 공격한다. 마비 상태로 만들 때가 있다." - }, - auraSphere: { - name: "파동탄", - effect: "몸속에서 파동의 힘을 끌어내 상대에게 쏜다. 공격은 반드시 명중한다." - }, - rockPolish: { - name: "록커트", - effect: "자신의 몸을 갈아 공기의 저항을 적게 한다. 스피드를 크게 올릴 수 있다." - }, - poisonJab: { - name: "독찌르기", - effect: "독에 물든 촉수나 팔로 상대를 꿰찌른다. 독 상태로 만들 때가 있다." - }, - darkPulse: { - name: "악의파동", - effect: "몸에서 악의로 가득한 무서운 오라를 발한다. 상대를 풀죽게 만들 때가 있다." - }, - nightSlash: { - name: "깜짝베기", - effect: "순간적으로 틈을 노려 상대를 베어 버린다. 급소에 맞기 쉽다." - }, - aquaTail: { - name: "아쿠아테일", - effect: "세차게 날뛰는 거친 파도와 같이 큰 꼬리를 흔들어서 상대를 공격한다." - }, - seedBomb: { - name: "씨폭탄", - effect: "단단한 껍질을 가지고 있는 큰 씨앗을 위에서 힘껏 내던져 상대를 공격한다." - }, - airSlash: { - name: "에어슬래시", - effect: "하늘까지 베어 가르는 공기의 칼날로 공격한다. 상대를 풀죽게 만들 때가 있다." - }, - xScissor: { - name: "시저크로스", - effect: "낫이나 발톱을 가위처럼 교차시키면서 상대를 베어 가른다." - }, - bugBuzz: { - name: "벌레의야단법석", - effect: "진동으로 음파를 일으켜서 공격한다. 상대의 특수방어를 떨어뜨릴 때가 있다." - }, - dragonPulse: { - name: "용의파동", - effect: "큰 입으로 충격파를 일으켜서 상대를 공격한다." - }, - dragonRush: { - name: "드래곤다이브", - effect: "굉장한 살기로 위압하면서 몸통박치기한다. 상대를 풀죽게 만들 때가 있다." - }, - powerGem: { - name: "파워젬", - effect: "보석처럼 반짝이는 빛을 발사하여 상대를 공격한다." - }, - drainPunch: { - name: "드레인펀치", - effect: "주먹으로 상대의 힘을 흡수한다. 입힌 데미지의 절반에 해당하는 HP를 회복할 수 있다." - }, - vacuumWave: { - name: "진공파", - effect: "주먹을 흔들어 진공의 파도를 일으킨다. 반드시 선제공격을 할 수 있다." - }, - focusBlast: { - name: "기합구슬", - effect: "기합을 높여서 혼신의 힘을 방출한다. 상대의 특수방어를 떨어뜨릴 때가 있다." - }, - energyBall: { - name: "에너지볼", - effect: "자연으로부터 모은 생명의 힘을 발사한다. 상대의 특수방어를 떨어뜨릴 때가 있다." - }, - braveBird: { - name: "브레이브버드", - effect: "날개를 접어 저공비행으로 돌격한다. 자신도 상당한 데미지를 입는다." - }, - earthPower: { - name: "대지의힘", - effect: "상대의 발밑에 대지의 힘을 방출한다. 상대의 특수방어를 떨어뜨릴 때가 있다." - }, - switcheroo: { - name: "바꿔치기", - effect: "눈에 보이지 않는 속도로 자신과 상대가 지닌 물건을 교환한다." - }, - gigaImpact: { - name: "기가임팩트", - effect: "가진 힘을 모두 사용해서 상대에게 돌격한다. 다음 턴은 움직일 수 없다." - }, - nastyPlot: { - name: "나쁜음모", - effect: "나쁜 일을 생각해서 머리를 활성화시킨다. 자신의 특수공격을 크게 올린다." - }, - bulletPunch: { - name: "불릿펀치", - effect: "탄환처럼 빠르고 단단한 펀치를 상대에게 날린다. 반드시 선제공격을 할 수 있다." - }, - avalanche: { - name: "눈사태", - effect: "상대로부터 기술을 받으면 그 상대에 대해서 기술의 위력이 2배가 된다." - }, - iceShard: { - name: "얼음뭉치", - effect: "얼음덩어리를 순식간에 만들어 상대에게 빠르게 쏜다. 반드시 선제공격을 할 수 있다." - }, - shadowClaw: { - name: "섀도클로", - effect: "그림자로 만든 날카로운 발톱으로 상대를 베어 가른다. 급소에 맞기 쉽다." - }, - thunderFang: { - name: "번개엄니", - effect: "전기를 모은 이빨로 문다. 상대를 풀죽게 하거나 마비 상태로 만들 때가 있다." - }, - iceFang: { - name: "얼음엄니", - effect: "냉기를 품은 이빨로 문다. 상대를 풀죽게 하거나 얼음 상태로 만들 때가 있다." - }, - fireFang: { - name: "불꽃엄니", - effect: "불꽃을 두른 이빨로 문다. 상대를 풀죽게 하거나 화상 상태로 만들 때가 있다." - }, - shadowSneak: { - name: "야습", - effect: "그림자를 늘려 상대의 배후에서 공격한다. 반드시 선제공격할 수 있다." - }, - mudBomb: { - name: "진흙폭탄", - effect: "단단한 진흙구슬을 상대에게 발사하여 공격한다. 명중률을 떨어뜨릴 때가 있다." - }, - psychoCut: { - name: "사이코커터", - effect: "실체화시킨 마음의 칼날로 상대를 베어 가른다. 급소에 맞기 쉽다." - }, - zenHeadbutt: { - name: "사념의박치기", - effect: "사념의 힘을 이마에 모아서 공격한다. 상대를 풀죽게 만들 때가 있다." - }, - mirrorShot: { - name: "미러샷", - effect: "갈고닦은 몸에서 섬광의 힘을 상대에게 쏜다. 명중률을 떨어뜨릴 때가 있다." - }, - flashCannon: { - name: "러스터캐논", - effect: "몸의 빛을 한곳에 모아서 힘을 방출한다. 상대의 특수방어를 떨어뜨릴 때가 있다." - }, - rockClimb: { - name: "록클라임", - effect: "굉장한 기세로 상대에게 돌진하여 공격한다. 상대를 혼란시킬 때가 있다." - }, - defog: { - name: "안개제거", - effect: "강한 바람으로 상대의 리플렉터나 빛의장막 등을 제거한다. 회피율도 떨어뜨린다." - }, - trickRoom: { - name: "트릭룸", - effect: "이상한 공간을 만든다. 5턴 동안 느린 포켓몬부터 행동할 수 있다." - }, - dracoMeteor: { - name: "용성군", - effect: "천공에서 운석을 상대에게 떨어뜨린다. 사용하면 반동으로 자신의 특수공격이 크게 떨어진다." - }, - discharge: { - name: "방전", - effect: "눈부신 전격으로 자신의 주위에 있는 포켓몬을 공격한다. 마비 상태로 만들 때가 있다." - }, - lavaPlume: { - name: "분연", - effect: "새빨간 불꽃으로 자신의 주위에 있는 포켓몬을 공격한다. 화상 상태로 만들 때가 있다." - }, - leafStorm: { - name: "리프스톰", - effect: "뾰족한 잎사귀로 상대에게 돌풍을 일으킨다. 사용하면 반동으로 자신의 특수공격이 크게 떨어진다." - }, - powerWhip: { - name: "파워휩", - effect: "덩굴이나 촉수를 세차게 흔들어 상대를 힘껏 쳐서 공격한다." - }, - rockWrecker: { - name: "암석포", - effect: "거대한 바위를 상대에게 발사하여 공격한다. 다음 턴은 움직일 수 없게 된다." - }, - crossPoison: { - name: "크로스포이즌", - effect: "독 칼날로 상대를 베어 가른다. 독 상태로 만들 때가 있고 급소에도 맞기 쉽다." - }, - gunkShot: { - name: "더스트슈트", - effect: "더러운 쓰레기를 상대에게 부딪쳐서 공격한다. 독 상태로 만들 때가 있다." - }, - ironHead: { - name: "아이언헤드", - effect: "강철과 같은 단단한 머리로 공격한다. 상대를 풀죽게 만들 때가 있다." - }, - magnetBomb: { - name: "마그넷봄", - effect: "상대에게 달라붙는 강철의 폭탄을 발사한다. 공격은 반드시 명중한다." - }, - stoneEdge: { - name: "스톤에지", - effect: "뾰족한 바위를 상대에게 꿰찔러서 공격한다. 급소에 맞기 쉽다." - }, - captivate: { - name: "유혹", - effect: "수컷은 암컷을 암컷은 수컷을 유혹하여 상대의 특수공격을 크게 떨어뜨린다." - }, - stealthRock: { - name: "스텔스록", - effect: "상대의 주위에 무수한 바위를 띄워 교체해서 나온 상대 포켓몬에게 데미지를 준다." - }, - grassKnot: { - name: "풀묶기", - effect: "풀을 휘감아서 상대를 쓰러뜨린다. 상대가 무거울수록 위력이 올라간다." - }, - chatter: { - name: "수다", - effect: "매우 시끄럽고 수다스러운 음파로 상대를 공격한다. 상대를 혼란시킨다." - }, - judgment: { - name: "심판의뭉치", - effect: "무수한 광탄을 상대에게 방출한다. 자신이 가지고 있는 플레이트에 따라 타입이 바뀐다." - }, - bugBite: { - name: "벌레먹기", - effect: "물어서 공격한다. 상대가 나무열매를 지니고 있을 때 먹어서 나무열매의 효과를 받을 수 있다." - }, - chargeBeam: { - name: "차지빔", - effect: "전격의 다발을 상대에게 발사한다. 전기를 모아서 자신의 특수공격을 올릴 때가 있다." - }, - woodHammer: { - name: "우드해머", - effect: "단단한 몸통을 상대에게 부딪쳐서 공격한다. 자신도 상당한 데미지를 입는다." - }, - aquaJet: { - name: "아쿠아제트", - effect: "눈에 보이지 않는 굉장한 속도로 상대에게 돌진한다. 반드시 선제공격할 수 있다." - }, - attackOrder: { - name: "공격지령", - effect: "부하를 불러내어 상대를 향해서 공격시킨다. 급소에 맞기 쉽다." - }, - defendOrder: { - name: "방어지령", - effect: "부하를 불러내어 자신의 몸을 뒤덮게 한다. 방어와 특수방어를 올릴 수 있다." - }, - healOrder: { - name: "회복지령", - effect: "부하를 불러내어 상처를 회복한다. 최대 HP의 절반만큼 자신의 HP를 회복한다." - }, - headSmash: { - name: "양날박치기", - effect: "목숨을 걸고 혼신의 힘으로 상대에게 박치기를 한다. 자신도 굉장한 데미지를 입는다." - }, - doubleHit: { - name: "더블어택", - effect: "꼬리 등을 써서 상대를 때려 공격한다. 2회 연속으로 데미지를 준다." - }, - roarOfTime: { - name: "시간의포효", - effect: "시간이 뒤틀릴 정도의 힘을 사용해서 상대를 공격한다. 다음 턴은 움직일 수 없다." - }, - spacialRend: { - name: "공간절단", - effect: "주위의 공간과 더불어 상대를 찢어서 데미지를 준다. 급소에 맞기 쉽다." - }, - lunarDance: { - name: "초승달춤", - effect: "자신은 기절하지만 교대하여 나오는 포켓몬의 모든 상태를 회복한다." - }, - crushGrip: { - name: "묵사발", - effect: "굉장한 힘으로 상대를 묵사발로 만든다. 상대의 HP가 남아 있을수록 위력이 올라간다." - }, - magmaStorm: { - name: "마그마스톰", - effect: "세차게 타오르는 불꽃 속에 4-5턴 동안 상대를 가두어 공격한다." - }, - darkVoid: { - name: "다크홀", - effect: "암흑의 세계로 끌고 가서 떨어뜨려 상대를 잠듦 상태로 만든다." - }, - seedFlare: { - name: "시드플레어", - effect: "몸속에서 충격파를 발생시킨다. 상대의 특수방어를 크게 떨어뜨릴 때가 있다." - }, - ominousWind: { - name: "괴상한바람", - effect: "소름이 끼칠 만한 돌풍으로 상대를 공격한다. 자신의 모든 능력이 올라갈 때가 있다." - }, - shadowForce: { - name: "섀도다이브", - effect: "1턴째에 모습을 감춰 2턴째에 상대를 공격한다. 방어하고 있어도 공격은 맞는다." - }, - honeClaws: { - name: "손톱갈기", - effect: "손톱을 갈아 날카롭게 한다. 자신의 공격과 명중률을 올린다." - }, - wideGuard: { - name: "와이드가드", - effect: "같은 편 전원에게 향하는 공격을 1턴 동안 막는다." - }, - guardSplit: { - name: "가드셰어", - effect: "초능력으로 자신과 상대의 방어와 특수방어를 더해서 반으로 나눈다." - }, - powerSplit: { - name: "파워셰어", - effect: "초능력으로 자신과 상대의 공격과 특수공격을 더해서 반으로 나눈다." - }, - wonderRoom: { - name: "원더룸", - effect: "이상한 공간을 만든다. 5턴 동안 모든 포켓몬의 방어와 특수방어가 바뀐다." - }, - psyshock: { - name: "사이코쇼크", - effect: "이상한 염력파를 실체화하여 상대를 공격한다. 물리적인 데미지를 준다." - }, - venoshock: { - name: "베놈쇼크", - effect: "특수한 독액을 끼얹는다. 독 상태의 상대에게는 위력이 2배가 된다." - }, - autotomize: { - name: "바디퍼지", - effect: "몸의 쓸모없는 부분을 깎는다. 자신의 스피드를 크게 올리고 체중도 가벼워진다." - }, - ragePowder: { - name: "분노가루", - effect: "안절부절못하게 하는 가루를 자신에게 뿌려서 주의를 끈다. 상대의 공격은 모두 자신에게 향한다." - }, - telekinesis: { - name: "텔레키네시스", - effect: "초능력으로 상대를 띄운다. 3턴 동안 공격이 상대에게 맞기 쉬워진다." - }, - magicRoom: { - name: "매직룸", - effect: "이상한 공간을 만든다. 5턴 동안 모든 포켓몬의 도구의 효과가 사라진다." - }, - smackDown: { - name: "떨어뜨리기", - effect: "돌이나 구슬을 던져서 날고 있는 상대를 공격한다. 맞은 상대는 땅에 떨어진다." - }, - stormThrow: { - name: "업어후리기", - effect: "강렬한 일격을 상대에게 날린다. 공격은 반드시 급소에 맞는다." - }, - flameBurst: { - name: "불꽃튀기기", - effect: "맞으면 튀는 불꽃으로 상대를 공격한다. 튕긴 불꽃은 옆의 상대에게도 쏟아진다." - }, - sludgeWave: { - name: "오물웨이브", - effect: "오물 파도로 자신의 주위에 있는 포켓몬을 공격한다. 독 상태로 만들 때가 있다." - }, - quiverDance: { - name: "나비춤", - effect: "신비롭고 아름다운 춤을 경쾌하게 춘다. 자신의 특수공격과 특수방어와 스피드를 올린다." - }, - heavySlam: { - name: "헤비봄버", - effect: "무거운 몸으로 상대에게 부딪쳐 공격한다. 자신이 상대보다 무거울수록 위력이 올라간다." - }, - synchronoise: { - name: "싱크로노이즈", - effect: "이상한 전파로 주위에 있는 자신과 같은 타입의 포켓몬에게 데미지를 준다." - }, - electroBall: { - name: "일렉트릭볼", - effect: "전기 덩어리를 상대에게 부딪쳐서 공격한다. 상대보다 스피드가 빠를수록 위력이 올라간다." - }, - soak: { - name: "물붓기", - effect: "많은 물을 끼얹어서 상대를 물타입으로 바꾼다." - }, - flameCharge: { - name: "니트로차지", - effect: "불꽃을 둘러 상대를 공격한다. 힘을 모아서 자신의 스피드를 올린다." - }, - coil: { - name: "똬리틀기", - effect: "똬리를 틀어서 집중한다. 자신의 공격과 방어와 명중률을 올린다." - }, - lowSweep: { - name: "로킥", - effect: "재빠른 움직임으로 상대의 다리를 노려 공격한다. 상대의 스피드를 떨어뜨린다." - }, - acidSpray: { - name: "애시드봄", - effect: "상대를 녹이는 액체를 토해내서 공격한다. 상대의 특수방어를 크게 떨어뜨린다." - }, - foulPlay: { - name: "속임수", - effect: "상대의 힘을 이용한다. 싸우고 있는 상대의 공격이 높을수록 데미지가 올라간다." - }, - simpleBeam: { - name: "심플빔", - effect: "수수께끼의 염력파를 상대에게 보낸다. 염력파를 받은 상대는 특성이 단순으로 바뀐다." - }, - entrainment: { - name: "동료만들기", - effect: "이상한 리듬으로 춤춘다. 움직임을 흉내 내게 해서 자신과 상대의 특성을 똑같게 만든다." - }, - afterYou: { - name: "당신먼저", - effect: "상대의 행동을 도와서 자신이 행동한 뒤에 바로 움직일 수 있도록 한다." - }, - round: { - name: "돌림노래", - effect: "노래로 상대를 공격한다. 함께 돌림노래를 하면 계속해서 쓸 수 있고 위력도 올라간다." - }, - echoedVoice: { - name: "에코보이스", - effect: "울리는 목소리로 상대를 공격한다. 매 턴 누군가 이 기술을 계속해서 쓰면 위력이 올라간다." - }, - chipAway: { - name: "야금야금", - effect: "틈을 보며 착실하게 공격한다. 상대의 능력 변화에 관계없이 데미지를 준다." - }, - clearSmog: { - name: "클리어스모그", - effect: "특수한 진흙 덩어리를 상대에게 내던져서 공격한다. 능력 변화를 원래대로 돌린다." - }, - storedPower: { - name: "어시스트파워", - effect: "축적된 파워로 상대를 공격한다. 자신의 능력이 올라가 있는 만큼 위력이 오른다." - }, - quickGuard: { - name: "패스트가드", - effect: "자신과 같은 편을 상대의 선제공격으로부터 지킨다." - }, - allySwitch: { - name: "사이드체인지", - effect: "이상한 힘으로 순간이동하여 자신과 같은 편의 위치를 바꾼다." - }, - scald: { - name: "열탕", - effect: "뜨겁게 끓어오르는 물을 상대에게 발사해서 공격한다. 화상 상태로 만들 때가 있다." - }, - shellSmash: { - name: "껍질깨기", - effect: "껍질을 깨서 자신의 방어와 특수방어를 떨어뜨리지만 공격과 특수공격, 스피드를 크게 올린다." - }, - healPulse: { - name: "치유파동", - effect: "치유파동을 날려서 최대 HP의 절반만큼 상대의 HP를 회복한다." - }, - hex: { - name: "병상첨병", - effect: "엎친 데 덮친 격으로 공격한다. 상태 이상인 상대에게 큰 데미지를 준다." - }, - skyDrop: { - name: "프리폴", - effect: "1턴째에 상대를 하늘로 끌고 가서 2턴째에 떨어뜨려 공격한다. 끌려간 상대는 움직일 수 없다." - }, - shiftGear: { - name: "기어체인지", - effect: "톱니바퀴를 돌려서 자신의 공격을 올리는 것뿐만 아니라 스피드도 크게 올린다." - }, - circleThrow: { - name: "배대뒤치기", - effect: "상대를 내던져서 교대할 포켓몬을 끌어낸다. 야생의 경우에는 배틀이 끝난다." - }, - incinerate: { - name: "불태우기", - effect: "불꽃으로 상대를 공격한다. 상대가 나무열매 등을 지니고 있을 때 불태워서 쓸 수 없게 만든다." - }, - quash: { - name: "순서미루기", - effect: "상대를 억눌러서 행동의 순서를 마지막으로 만든다." - }, - acrobatics: { - name: "애크러뱃", - effect: "경쾌하게 상대를 공격한다. 도구를 적게 지니고 있을수록 더 큰 데미지를 준다." - }, - reflectType: { - name: "미러타입", - effect: "상대의 타입을 반사해서 자신도 똑같은 타입이 된다." - }, - retaliate: { - name: "원수갚기", - effect: "쓰러진 같은 편의 원수를 갚는다. 앞 턴에서 같은 편이 쓰러지면 위력이 올라간다." - }, - finalGambit: { - name: "목숨걸기", - effect: "목숨을 걸고 상대를 공격한다. 자신은 기절하게 되지만 상대에게 HP만큼의 데미지를 준다." - }, - bestow: { - name: "기프트패스", - effect: "상대가 도구를 지니고 있지 않을 때 자신이 지니고 있는 도구를 상대에게 건넨다." - }, - inferno: { - name: "연옥", - effect: "격렬한 불꽃으로 상대를 둘러싸 공격한다. 화상 상태로 만든다." - }, - waterPledge: { - name: "물의맹세", - effect: "물기둥으로 공격한다. 불꽃과 조합하면 위력이 올라가고 하늘에 무지개가 걸린다." - }, - firePledge: { - name: "불꽃의맹세", - effect: "불꽃기둥으로 공격한다. 풀과 조합하면 위력이 올라가고 주위가 불바다가 된다." - }, - grassPledge: { - name: "풀의맹세", - effect: "풀기둥으로 공격한다. 물과 조합하면 위력이 올라가고 주변이 습지초원이 된다." - }, - voltSwitch: { - name: "볼트체인지", - effect: "공격한 뒤 굉장한 스피드로 돌아와서 교대 포켓몬과 교체한다." - }, - struggleBug: { - name: "벌레의저항", - effect: "저항해서 상대를 공격한다. 상대의 특수공격을 떨어뜨린다." - }, - bulldoze: { - name: "땅고르기", - effect: "땅을 힘껏 밟아 자신의 주위에 있는 포켓몬을 공격한다. 상대의 스피드를 떨어뜨린다." - }, - frostBreath: { - name: "얼음숨결", - effect: "차가운 숨결을 상대에게 내뿜어 공격한다. 반드시 급소에 맞는다." - }, - dragonTail: { - name: "드래곤테일", - effect: "상대를 튕겨내서 교대할 포켓몬을 끌어낸다. 야생의 경우에는 배틀이 끝난다." - }, - workUp: { - name: "분발", - effect: "스스로 분발해서 공격과 특수공격을 올린다." - }, - electroweb: { - name: "일렉트릭네트", - effect: "전기 네트로 상대를 붙잡아서 공격한다. 상대의 스피드를 떨어뜨린다." - }, - wildCharge: { - name: "와일드볼트", - effect: "전기를 두르고 상대에게 부딪쳐 공격한다. 자신도 조금 데미지를 입는다." - }, - drillRun: { - name: "드릴라이너", - effect: "드릴처럼 몸을 회전시켜서 상대에게 몸통박치기한다. 급소에 맞기 쉽다." - }, - dualChop: { - name: "더블촙", - effect: "몸의 단단한 부분으로 상대를 때려 공격한다. 2회 연속으로 데미지를 준다." - }, - heartStamp: { - name: "하트스탬프", - effect: "귀여운 모습으로 방심시켜서 강렬한 일격을 날린다. 상대를 풀죽게 만들 때가 있다." - }, - hornLeech: { - name: "우드혼", - effect: "뿔을 꿰찔러서 상대의 양분을 흡수한다. 입힌 데미지의 절반에 해당하는 HP를 회복할 수 있다." - }, - sacredSword: { - name: "성스러운칼", - effect: "긴 뿔로 베어 공격한다. 상대의 능력 변화에 관계없이 데미지를 준다." - }, - razorShell: { - name: "셸블레이드", - effect: "날카로운 조개껍질로 베어 공격한다. 상대의 방어를 떨어뜨릴 때가 있다." - }, - heatCrash: { - name: "히트스탬프", - effect: "불타는 몸으로 상대에게 부딪쳐서 공격한다. 자신이 상대보다 무거울수록 위력이 올라간다." - }, - leafTornado: { - name: "그래스믹서", - effect: "날카로운 잎사귀로 상대를 둘러싸서 공격한다. 명중률을 떨어뜨릴 때가 있다." - }, - steamroller: { - name: "하드롤러", - effect: "둥글게 뭉친 몸을 회전하여 상대를 뭉개 버린다. 상대를 풀죽게 만들 때가 있다." - }, - cottonGuard: { - name: "코튼가드", - effect: "푹신푹신한 솜털로 자신의 몸을 둘러싸서 지킨다. 방어를 매우 크게 올린다." - }, - nightDaze: { - name: "나이트버스트", - effect: "암흑의 충격파를 날려서 상대를 공격한다. 명중률을 떨어뜨릴 때가 있다." - }, - psystrike: { - name: "사이코브레이크", - effect: "이상한 염력파를 실체화하여 상대를 공격한다. 물리적인 데미지를 준다." - }, - tailSlap: { - name: "스위프뺨치기", - effect: "단단한 꼬리로 상대를 때려서 공격한다. 2-5회 동안 연속으로 쓴다." - }, - hurricane: { - name: "폭풍", - effect: "강렬한 바람으로 상대를 둘러싸서 공격한다. 상대를 혼란시킬 때가 있다." - }, - headCharge: { - name: "아프로브레이크", - effect: "굉장한 아프로 머리로 상대에게 돌진하여 공격한다. 자신도 조금 데미지를 입는다." - }, - gearGrind: { - name: "기어소서", - effect: "강철의 기어를 상대에게 던져서 공격한다. 2회 연속으로 데미지를 준다." - }, - searingShot: { - name: "화염탄", - effect: "새빨간 불꽃으로 자신의 주위에 있는 포켓몬을 공격한다. 화상 상태로 만들 때가 있다." - }, - technoBlast: { - name: "테크노버스터", - effect: "광탄을 상대에게 방출한다. 자신이 지니고 있는 카세트에 의해 타입이 바뀐다." - }, - relicSong: { - name: "옛노래", - effect: "옛 노래를 상대에게 들려주고 마음에 호소하여 공격한다. 잠듦 상태로 만들 때가 있다." - }, - secretSword: { - name: "신비의칼", - effect: "긴 뿔로 베어 공격한다. 뿔이 머금은 이상한 힘은 물리적인 데미지를 준다." - }, - glaciate: { - name: "얼어붙은세계", - effect: "차가운 냉기를 상대에게 내뿜어 공격한다. 상대의 스피드를 떨어뜨린다." - }, - boltStrike: { - name: "뇌격", - effect: "방대한 전기를 몸에 둘러 상대에게 돌진해서 공격한다. 마비 상태로 만들 때가 있다." - }, - blueFlare: { - name: "푸른불꽃", - effect: "아름다우면서도 격렬한 푸른불꽃으로 상대를 둘러싸서 공격한다. 화상 상태로 만들 때가 있다." - }, - fieryDance: { - name: "불꽃춤", - effect: "불꽃을 두른 날개를 쳐서 공격한다. 자신의 특수공격이 오를 때가 있다." - }, - freezeShock: { - name: "프리즈볼트", - effect: "전기를 두른 얼음덩어리로 2턴째에 상대를 내리친다. 마비 상태로 만들 때가 있다." - }, - iceBurn: { - name: "콜드플레어", - effect: "모든 것을 얼려버리는 격렬한 냉기로 2턴째에 상대를 둘러싼다. 화상 상태로 만들 때가 있다." - }, - snarl: { - name: "바크아웃", - effect: "호되게 호통을 쳐서 상대의 특수공격을 떨어뜨린다." - }, - icicleCrash: { - name: "고드름떨구기", - effect: "큰 고드름을 격렬하게 부딪쳐서 공격한다. 상대를 풀죽게 만들 때가 있다." - }, - vCreate: { - name: "V제너레이트", - effect: "작열하는 불꽃을 이마에서 발생시켜 이판사판으로 몸통박치기한다. 방어, 특수방어, 스피드가 떨어진다." - }, - fusionFlare: { - name: "크로스플레임", - effect: "거대한 불꽃을 내리친다. 거대한 천둥의 영향을 받아 기술의 위력이 올라간다." - }, - fusionBolt: { - name: "크로스썬더", - effect: "거대한 천둥을 내리친다. 거대한 불꽃의 영향을 받아 기술의 위력이 올라간다." - }, - flyingPress: { - name: "플라잉프레스", - effect: "공중에서 상대에게 다이브한다. 이 기술은 격투타입임과 동시에 비행타입이기도 하다." - }, - matBlock: { - name: "마룻바닥세워막기", - effect: "뒤집어 세운 마룻바닥을 방패로 하여 자신과 같은 편으로 향하는 기술 데미지를 막는다. 변화 기술은 막을 수 없다." - }, - belch: { - name: "트림", - effect: "상대를 향해 트림을 하여 데미지를 준다. 나무열매를 먹지 않으면 쓸 수 없다." - }, - rototiller: { - name: "일구기", - effect: "땅을 일구어 초목이 자라기 쉽게 한다. 풀타입의 공격과 특수공격이 오른다." - }, - stickyWeb: { - name: "끈적끈적네트", - effect: "상대의 주위에 끈적끈적한 네트를 둘러 펼쳐 교체되어 나온 상대의 스피드를 떨어뜨린다." - }, - fellStinger: { - name: "마지막일침", - effect: "이 기술을 사용하여 상대를 쓰러뜨리면 공격이 매우 크게 오른다." - }, - phantomForce: { - name: "고스트다이브", - effect: "1턴째에 어디론가 사라져서 2턴째에 상대를 공격한다. 기술 방어를 무시하고 공격할 수 있다." - }, - trickOrTreat: { - name: "핼러윈", - effect: "상대를 핼러윈으로 초대한다. 상대 타입에 고스트타입이 추가된다." - }, - nobleRoar: { - name: "부르짖기", - effect: "우렁차게 부르짖어서 상대를 위협하여 상대의 공격과 특수공격을 떨어뜨린다." - }, - ionDeluge: { - name: "플라스마샤워", - effect: "전기를 띤 입자를 확산시켜 노말타입 기술을 전기타입으로 바꿔버린다." - }, - parabolicCharge: { - name: "파라볼라차지", - effect: "주위에 있는 모든 포켓몬에게 데미지를 준다. 준 데미지의 절반을 자신이 회복한다." - }, - forestsCurse: { - name: "숲의저주", - effect: "상대에게 숲의 저주를 건다. 저주에 걸린 상대는 타입에 풀타입이 추가된다." - }, - petalBlizzard: { - name: "꽃보라", - effect: "세찬 꽃보라를 일으켜서 주위에 있는 포켓몬을 공격하여 데미지를 준다." - }, - freezeDry: { - name: "프리즈드라이", - effect: "상대를 급격히 차갑게 하여 얼음 상태로 만들 때가 있다. 물타입 포켓몬에게도 효과가 굉장해진다." - }, - disarmingVoice: { - name: "차밍보이스", - effect: "매혹적인 울음소리를 내어 상대에게 정신적 데미지를 준다. 공격은 반드시 명중한다." - }, - partingShot: { - name: "막말내뱉기", - effect: "막말을 내뱉어 상대를 위협하여 공격과 특수공격을 떨어뜨린 후 교대 포켓몬과 교체한다." - }, - topsyTurvy: { - name: "뒤집어엎기", - effect: "상대에게 걸려 있는 모든 능력 변화를 뒤집어서 반대로 만든다." - }, - drainingKiss: { - name: "드레인키스", - effect: "키스로 상대의 HP를 흡수한다. 준 데미지의 반 이상 HP를 회복한다." - }, - craftyShield: { - name: "트릭가드", - effect: "이상한 힘을 사용하여 같은 편을 공격하는 변화 기술을 막는다. 데미지 기술은 받는다." - }, - flowerShield: { - name: "플라워가드", - effect: "이상한 힘을 사용하여 배틀에 나와 있는 모든 풀타입 포켓몬의 방어를 올린다." - }, - grassyTerrain: { - name: "그래스필드", - effect: "5턴 동안 그래스필드로 만든다. 땅에 있으면 매 턴 회복한다. 풀타입의 위력이 올라간다." - }, - mistyTerrain: { - name: "미스트필드", - effect: "5턴 동안 땅에 있으면 상태 이상이 되지 않고 드래곤타입 기술의 데미지도 절반이 된다." - }, - electrify: { - name: "송전", - effect: "상대가 기술을 쓰기 전에 송전하면 그 턴에 상대가 사용하는 기술은 전기타입이 된다." - }, - playRough: { - name: "치근거리기", - effect: "상대에게 치근거리며 공격한다. 상대의 공격을 떨어뜨릴 때가 있다." - }, - fairyWind: { - name: "요정의바람", - effect: "요정의 바람을 일으켜 상대에게 몰아쳐서 공격한다." - }, - moonblast: { - name: "문포스", - effect: "달의 파워를 빌려서 상대를 공격한다. 상대의 특수공격을 떨어뜨릴 때가 있다." - }, - boomburst: { - name: "폭음파", - effect: "무시무시한 폭음의 파괴력으로 주위에 있는 포켓몬을 공격한다." - }, - fairyLock: { - name: "페어리록", - effect: "록을 걸어 다음 턴의 모든 포켓몬을 도망가지 못하게 한다." - }, - kingsShield: { - name: "킹실드", - effect: "상대의 공격을 막음과 동시에 방어 태세를 갖춘다. 접촉한 상대의 공격을 떨어뜨린다." - }, - playNice: { - name: "친해지기", - effect: "상대와 친해져서 싸울 마음을 잃게 하여 상대의 공격을 떨어뜨린다." - }, - confide: { - name: "비밀이야기", - effect: "비밀 이야기를 해서 상대의 집중력을 잃게 하여 특수공격을 떨어뜨린다." - }, - diamondStorm: { - name: "다이아스톰", - effect: "다이아 폭풍을 일으켜 데미지를 준다. 자신의 방어를 크게 올릴 때가 있다." - }, - steamEruption: { - name: "스팀버스트", - effect: "상대에게 굉장히 뜨거운 증기를 뿜는다. 상대는 화상을 입기도 한다." - }, - hyperspaceHole: { - name: "이차원홀", - effect: "이차원홀로 갑자기 상대 바로 옆에 나타나 공격한다. 방어나 판별 등도 무시할 수 있다." - }, - waterShuriken: { - name: "물수리검", - effect: "점액으로 만든 수리검을 2-5회 동안 연속으로 던진다. 반드시 선제공격할 수 있다." - }, - mysticalFire: { - name: "매지컬플레임", - effect: "입에서 내뱉는 아주 뜨거운 불꽃으로 공격한다. 상대의 특수공격을 떨어뜨린다." - }, - spikyShield: { - name: "니들가드", - effect: "상대의 공격을 막음과 동시에 접촉한 상대의 체력을 떨어뜨린다." - }, - aromaticMist: { - name: "아로마미스트", - effect: "신비한 아로마 향으로 같은 편의 특수방어를 올린다." - }, - eerieImpulse: { - name: "괴전파", - effect: "몸에서 발생시킨 괴전파를 상대에게 쏘아 특수공격을 크게 떨어뜨린다." - }, - venomDrench: { - name: "베놈트랩", - effect: "특수한 독액을 끼얹는다. 독 상태인 상대는 공격, 특수공격, 스피드가 떨어진다." - }, - powder: { - name: "분진", - effect: "분진을 뒤집어쓴 상대가 불꽃 기술을 쓰면 폭발하여 데미지를 준다." - }, - geomancy: { - name: "지오컨트롤", - effect: "1턴째에 에너지를 흡수하여 2턴째에 특수공격, 특수방어, 스피드를 크게 올린다." - }, - magneticFlux: { - name: "자기장조작", - effect: "자기장 조작으로 인해 특성 플러스와 마이너스의 방어, 특수방어가 오른다." - }, - happyHour: { - name: "해피타임", - effect: "해피타임 기술을 쓰면 배틀 후에 받을 수 있는 돈이 배가 된다." - }, - electricTerrain: { - name: "일렉트릭필드", - effect: "5턴 동안 일렉트릭필드로 만든다. 땅에 있는 포켓몬은 잠들지 않는다. 전기타입의 위력이 올라간다." - }, - dazzlingGleam: { - name: "매지컬샤인", - effect: "강력한 빛을 내어 상대에게 데미지를 준다." - }, - celebrate: { - name: "축하", - effect: "포켓몬이 매우 행복한 당신을 축하해 준다." - }, - holdHands: { - name: "손에손잡기", - effect: "같은 편 포켓몬끼리 손에 손을 잡는다. 굉장히 행복한 기분이 들게 된다." - }, - babyDollEyes: { - name: "초롱초롱눈동자", - effect: "초롱초롱한 눈동자로 상대를 바라보며 공격을 떨어뜨린다. 반드시 선제공격할 수 있다." - }, - nuzzle: { - name: "볼부비부비", - effect: "전기가 흐르는 볼을 비벼서 공격한다. 상대를 마비 상태로 만든다." - }, - holdBack: { - name: "적당히손봐주기", - effect: "적당히 공격하여 상대의 HP를 반드시 1은 남긴다." - }, - infestation: { - name: "엉겨붙기", - effect: "4-5턴 동안 상대에게 엉겨 붙어서 공격한다. 그동안 상대는 도망갈 수 없다." - }, - powerUpPunch: { - name: "그로우펀치", - effect: "반복하여 때리면 점점 주먹이 단단해진다. 상대를 때리면 공격이 오른다." - }, - oblivionWing: { - name: "데스윙", - effect: "조준한 상대로부터 HP를 흡수한다. 준 데미지의 반 이상 HP를 회복한다." - }, - thousandArrows: { - name: "사우전드애로", - effect: "떠 있는 포켓몬도 맞힐 수 있다. 떠 있던 상대는 맞아서 땅에 떨어진다." - }, - thousandWaves: { - name: "사우전드웨이브", - effect: "땅 위를 뻗어 나가는 파도로 공격한다. 파도에 휩쓸린 상대는 전투에서 도망칠 수 없게 된다." - }, - landsWrath: { - name: "그라운드포스", - effect: "대지의 힘을 모으고 그 힘을 상대에게 집중시켜서 데미지를 준다." - }, - lightOfRuin: { - name: "파멸의빛", - effect: "영원의 꽃의 파워를 빌려서 강력한 광선을 쏜다. 자신도 상당한 데미지를 입는다." - }, - originPulse: { - name: "근원의파동", - effect: "파랗게 빛나는 무수한 광선으로 상대를 공격한다." - }, - precipiceBlades: { - name: "단애의칼", - effect: "대지의 힘을 칼날로 바꿔 상대를 공격한다." - }, - dragonAscent: { - name: "화룡점정", - effect: "넓은 하늘에서 급속으로 강하하여 상대를 공격한다. 자신의 방어와 특수방어가 떨어진다." - }, - hyperspaceFury: { - name: "이차원러시", - effect: "많은 팔로 방어와 판별 등을 무시하는 연속 공격이다. 자신의 방어가 떨어진다." - }, - breakneckBlitzPhysical: { - name: "울트라대시어택", - effect: "Z파워로 기세를 몰아 전력으로 상대에게 부딪친다. 원래 기술에 따라 위력이 변한다." - }, - breakneckBlitzSpecial: { - name: "울트라대시어택", - effect: "Dummy Data" - }, - allOutPummelingPhysical: { - name: "전력무쌍격렬권", - effect: "Z파워로 만든 에너지 구슬을 전력으로 상대에게 부딪친다. 원래 기술에 따라 위력이 변한다." - }, - allOutPummelingSpecial: { - name: "전력무쌍격렬권", - effect: "Dummy Data" - }, - supersonicSkystrikePhysical: { - name: "파이널다이브클래시", - effect: "Z파워로 기세 좋게 날아올라 상대를 향해 전력으로 낙하한다. 원래 기술에 따라 위력이 변한다." - }, - supersonicSkystrikeSpecial: { - name: "파이널다이브클래시", - effect: "Dummy Data" - }, - acidDownpourPhysical: { - name: "애시드포이즌딜리트", - effect: "Z파워로 독의 늪을 만들어 전력으로 상대를 가라앉힌다. 원래 기술에 따라 위력이 변한다." - }, - acidDownpourSpecial: { - name: "애시드포이즌딜리트", - effect: "Dummy Data" - }, - tectonicRagePhysical: { - name: "라이징랜드오버", - effect: "Z파워로 땅 깊숙이 파고들어 전력으로 상대에게 부딪친다. 원래 기술에 따라 위력이 변한다." - }, - tectonicRageSpecial: { - name: "라이징랜드오버", - effect: "Dummy Data" - }, - continentalCrushPhysical: { - name: "월즈엔드폴", - effect: "Z파워로 큰 바위산을 불러내 전력으로 상대에게 부딪친다. 원래 기술에 따라 위력이 변한다." - }, - continentalCrushSpecial: { - name: "월즈엔드폴", - effect: "Dummy Data" - }, - savageSpinOutPhysical: { - name: "절대포식회전참", - effect: "Z파워로 뱉어낸 실이 전력으로 상대를 붙들어 맨다. 원래 기술에 따라 위력이 변한다." - }, - savageSpinOutSpecial: { - name: "절대포식회전참", - effect: "Dummy Data" - }, - neverEndingNightmarePhysical: { - name: "무한암야로의유인", - effect: "Z파워로 불러낸 강한 원념이 전력으로 상대에게 쏟아진다. 원래 기술에 따라 위력이 변한다." - }, - neverEndingNightmareSpecial: { - name: "무한암야로의유인", - effect: "Dummy Data" - }, - corkscrewCrashPhysical: { - name: "초월나선연격", - effect: "Z파워로 고속 회전을 하여 전력으로 상대에게 부딪친다. 원래 기술에 따라 위력이 변한다." - }, - corkscrewCrashSpecial: { - name: "초월나선연격", - effect: "Dummy Data" - }, - infernoOverdrivePhysical: { - name: "다이내믹풀플레임", - effect: "Z파워로 활활 타는 불꽃을 뱉어내 전력으로 상대에게 부딪친다. 원래 기술에 따라 위력이 변한다." - }, - infernoOverdriveSpecial: { - name: "다이내믹풀플레임", - effect: "Dummy Data" - }, - hydroVortexPhysical: { - name: "슈퍼아쿠아토네이도", - effect: "Z파워로 큰 바다회오리를 만들어 전력으로 상대를 집어삼킨다. 원래 기술에 따라 위력이 변한다." - }, - hydroVortexSpecial: { - name: "슈퍼아쿠아토네이도", - effect: "Dummy Data" - }, - bloomDoomPhysical: { - name: "블룸샤인엑스트라", - effect: "Z파워로 화초들의 에너지를 빌려 전력으로 상대를 공격한다. 원래 기술에 따라 위력이 변한다." - }, - bloomDoomSpecial: { - name: "블룸샤인엑스트라", - effect: "Dummy Data" - }, - gigavoltHavocPhysical: { - name: "스파킹기가볼트", - effect: "Z파워로 비축한 강한 전기를 전력으로 상대에게 부딪친다. 원래 기술에 따라 위력이 변한다." - }, - gigavoltHavocSpecial: { - name: "스파킹기가볼트", - effect: "Dummy Data" - }, - shatteredPsychePhysical: { - name: "맥시멈사이브레이커", - effect: "Z파워로 상대를 조종해 전력으로 매서운 맛을 보여준다. 원래 기술에 따라 위력이 변한다." - }, - shatteredPsycheSpecial: { - name: "맥시멈사이브레이커", - effect: "Dummy Data" - }, - subzeroSlammerPhysical: { - name: "레이징지오프리즈", - effect: "Z파워로 기온을 급격하게 떨어뜨려 전력으로 상대를 얼린다. 원래 기술에 따라 위력이 변한다." - }, - subzeroSlammerSpecial: { - name: "레이징지오프리즈", - effect: "Dummy Data" - }, - devastatingDrakePhysical: { - name: "얼티메이트드래곤번", - effect: "Z파워로 오라를 실체화시켜 전력으로 상대를 공격한다. 원래 기술에 따라 위력이 변한다." - }, - devastatingDrakeSpecial: { - name: "얼티메이트드래곤번", - effect: "Dummy Data" - }, - blackHoleEclipsePhysical: { - name: "블랙홀이클립스", - effect: "Z파워로 어둠의 에너지를 모아 전력으로 상대를 끌어당긴다. 원래 기술에 따라 위력이 변한다." - }, - blackHoleEclipseSpecial: { - name: "블랙홀이클립스", - effect: "Dummy Data" - }, - twinkleTacklePhysical: { - name: "러블리스타임팩트", - effect: "Z파워로 매혹의 공간을 만들어 전력으로 상대를 가지고 논다. 원래 기술에 따라 위력이 변한다." - }, - twinkleTackleSpecial: { - name: "러블리스타임팩트", - effect: "Dummy Data" - }, - catastropika: { - name: "필살피카슛", - effect: "Z파워로 최대 전력을 몸에 두른 피카츄가 전력으로 상대에게 덤벼든다." - }, - shoreUp: { - name: "모래모으기", - effect: "자신의 최대 HP 절반을 회복한다. 모래바람일 때는 많이 회복한다." - }, - firstImpression: { - name: "만나자마자", - effect: "위력이 높은 기술이지만 배틀에 나가서 바로 쓰지 않으면 성공할 수 없다." - }, - banefulBunker: { - name: "토치카", - effect: "상대의 공격을 막음과 동시에 접촉한 상대에게 독을 퍼뜨린다." - }, - spiritShackle: { - name: "그림자꿰매기", - effect: "공격과 동시에 상대의 그림자를 꿰매 도망칠 수 없게 한다." - }, - darkestLariat: { - name: "DD래리어트", - effect: "양팔을 돌려 상대에게 부딪친다. 상대의 능력 변화에 상관없이 데미지를 준다." - }, - sparklingAria: { - name: "물거품아리아", - effect: "노래 부르는 것으로 많은 벌룬을 방출한다. 기술에 맞으면 화상이 낫는다." - }, - iceHammer: { - name: "아이스해머", - effect: "강하고 무거운 주먹을 휘둘러 데미지를 준다. 자신의 스피드가 떨어진다." - }, - floralHealing: { - name: "플라워힐", - effect: "최대 HP의 절반만큼 상대의 HP를 회복한다. 그래스필드일 때 효과가 올라간다." - }, - highHorsepower: { - name: "10만마력", - effect: "온몸을 써서 상대에게 맹렬히 어택한다." - }, - strengthSap: { - name: "힘흡수", - effect: "상대 공격력과 동일하게 자신의 HP를 회복한다. 그리고 상대의 공격을 떨어뜨린다." - }, - solarBlade: { - name: "솔라블레이드", - effect: "1턴째에 빛을 가득 모아 2턴째에 그 힘을 검에 담아 공격한다." - }, - leafage: { - name: "나뭇잎", - effect: "잎을 상대에 맞춰 공격한다." - }, - spotlight: { - name: "스포트라이트", - effect: "포켓몬에게 스포트라이트를 비춰 그 턴에서 그 포켓몬만 공격할 수 있게 한다." - }, - toxicThread: { - name: "독실", - effect: "독이 섞인 실을 뿜어낸다. 상대를 독 상태로 만들고 스피드를 떨어뜨린다." - }, - laserFocus: { - name: "예민해지기", - effect: "정신을 집중해서 다음 공격을 반드시 급소에 맞춘다." - }, - gearUp: { - name: "어시스트기어", - effect: "기어를 넣는 것으로 특성 플러스와 마이너스의 공격과 특수공격이 올라간다." - }, - throatChop: { - name: "지옥찌르기", - effect: "이 기술에 맞은 상대는 지옥의 고통 때문에 2턴 동안 소리 기술을 낼 수 없다." - }, - pollenPuff: { - name: "꽃가루경단", - effect: "상대에게는 폭발하는 경단을 사용하여 공격한다. 같은 편에게는 회복하는 경단을 준다." - }, - anchorShot: { - name: "앵커샷", - effect: "앵커를 상대에게 휘감아서 공격한다. 상대는 도망칠 수 없게 된다." - }, - psychicTerrain: { - name: "사이코필드", - effect: "5턴 동안 땅에 있으면 선제공격을 받지 않는다. 에스퍼타입의 위력이 올라간다." - }, - lunge: { - name: "덤벼들기", - effect: "전력으로 상대에게 덤벼들며 공격한다. 상대의 공격을 떨어뜨린다." - }, - fireLash: { - name: "불꽃채찍", - effect: "불타는 채찍으로 상대를 친다. 공격을 받은 상대는 방어가 떨어진다." - }, - powerTrip: { - name: "기어오르기", - effect: "자신의 강함을 뻐기고 공격한다. 자신의 능력이 올라가 있는 만큼 위력이 오른다." - }, - burnUp: { - name: "불사르기", - effect: "전신의 불꽃을 모두 태워서 큰 데미지를 준다. 자신의 불꽃타입이 없어진다." - }, - speedSwap: { - name: "스피드스왑", - effect: "상대의 스피드와 자신의 스피드를 교체한다." - }, - smartStrike: { - name: "스마트혼", - effect: "뾰족한 뿔로 상대를 꿰찔러서 공격한다. 공격은 반드시 명중한다." - }, - purify: { - name: "정화", - effect: "상대의 상태 이상을 회복한다. 회복하면 자신은 HP를 회복할 수 있다." - }, - revelationDance: { - name: "잠재댄스", - effect: "전력으로 춤추며 공격한다. 이 기술의 타입은 자신의 타입과 같아진다." - }, - coreEnforcer: { - name: "코어퍼니셔", - effect: "데미지를 준 상대가 이미 행동을 끝냈다면 상대의 특성을 없애버린다." - }, - tropKick: { - name: "트로피컬킥", - effect: "남쪽 나라에서 유래된 뜨거운 킥을 상대에게 날린다. 상대의 공격을 떨어뜨린다." - }, - instruct: { - name: "지휘", - effect: "상대에게 지시하여 상대가 쓴 기술을 다시 한번 쓰게 할 수 있다." - }, - beakBlast: { - name: "부리캐논", - effect: "먼저 부리를 가열시킨 다음 공격을 날린다. 가열 중에 만지면 화상을 입는다." - }, - clangingScales: { - name: "스케일노이즈", - effect: "전신의 비늘을 비벼서 큰 소리를 내 공격한다. 공격 후 자신의 방어가 떨어진다." - }, - dragonHammer: { - name: "드래곤해머", - effect: "몸을 해머처럼 써서 상대를 덮쳐 데미지를 준다." - }, - brutalSwing: { - name: "세차게휘두르기", - effect: "자신의 몸을 세차게 휘둘러서 상대에게 데미지를 준다." - }, - auroraVeil: { - name: "오로라베일", - effect: "5턴 동안 물리와 특수 기술의 데미지를 약하게 한다. 설경일 때만 쓸 수 있다." - }, - sinisterArrowRaid: { - name: "섀도애로우즈스트라이크", - effect: "Z파워로 무수한 화살을 만들어낸 모크나이퍼가 전력으로 상대를 꿰뚫는 공격이다." - }, - maliciousMoonsault: { - name: "하이퍼다크크러셔", - effect: "Z파워로 강한 육체를 얻은 어흥염이 전력으로 상대에게 부딪쳐 공격한다." - }, - oceanicOperetta: { - name: "바다의심포니", - effect: "Z파워로 대량의 물을 부른 누리레느가 전력으로 상대를 공격한다." - }, - guardianOfAlola: { - name: "알로라의수호자", - effect: "Z파워로 알로라의 힘을 얻은 토속신포켓몬 전력의 공격. 상대의 남은 HP를 많이 줄인다." - }, - soulStealing7StarStrike: { - name: "칠성탈혼퇴", - effect: "Z파워를 얻은 마샤도가 펀치와 킥의 연속기술을 전력으로 상대에게 퍼붓는다." - }, - stokedSparksurfer: { - name: "라이트닝서프라이드", - effect: "Z파워를 얻은 알로라지방의 라이츄가 전력으로 공격한다. 상대를 마비 상태로 만든다." - }, - pulverizingPancake: { - name: "진심의공격", - effect: "Z파워로 진심을 낸 잠만보가 거대한 몸을 움직여서 전력으로 상대를 공격한다." - }, - extremeEvoboost: { - name: "나인이볼부스트", - effect: "Z파워를 얻은 이브이가 진화한 동료들의 힘을 빌려 능력을 크게 올린다." - }, - genesisSupernova: { - name: "오리진즈슈퍼노바", - effect: "Z파워를 얻은 뮤가 전력으로 상대를 공격한다. 발밑이 사이코필드가 된다." - }, - shellTrap: { - name: "트랩셸", - effect: "껍질의 트랩을 설치한다. 상대가 물리 기술을 쓰면 폭발해서 데미지를 준다." - }, - fleurCannon: { - name: "플뢰르캐논", - effect: "강력한 빔을 발산한 후 자신의 특수공격이 크게 떨어진다." - }, - psychicFangs: { - name: "사이코팽", - effect: "사이코 파워로 물어서 상대를 공격한다. 빛의장막이나 리플렉터도 파괴할 수 있다." - }, - stompingTantrum: { - name: "분함의발구르기", - effect: "분함을 발판 삼아 공격한다. 앞 턴에서 기술이 빗나갔다면 위력이 배가 된다." - }, - shadowBone: { - name: "섀도본", - effect: "영혼이 머물고 있는 뼈로 상대를 세게 때려서 공격한다. 상대의 방어를 떨어뜨릴 때가 있다." - }, - accelerock: { - name: "액셀록", - effect: "재빠른 스피드로 상대에게 부딪쳐서 공격한다. 반드시 선제공격할 수 있다." - }, - liquidation: { - name: "아쿠아브레이크", - effect: "물의 힘으로 상대에게 부딪쳐서 공격한다. 상대의 방어를 떨어뜨릴 때가 있다." - }, - prismaticLaser: { - name: "프리즘레이저", - effect: "프리즘의 힘으로 강력한 광선을 발사한다. 다음 턴은 움직일 수 없다." - }, - spectralThief: { - name: "섀도스틸", - effect: "상대의 그림자에 숨어들어 상대의 능력이 올라가는 것을 뺏어 공격한다." - }, - sunsteelStrike: { - name: "메테오드라이브", - effect: "유성 같은 기세로 돌진한다. 상대의 특성을 무시하고 공격할 수 있다." - }, - moongeistBeam: { - name: "섀도레이", - effect: "괴상한 광선을 쏘아 공격한다. 상대의 특성을 무시하고 공격할 수 있다." - }, - tearfulLook: { - name: "눈물그렁그렁", - effect: "눈물을 그렁그렁거려 상대의 전의를 상실하게 한다. 상대의 공격과 특수공격이 떨어진다." - }, - zingZap: { - name: "찌리리따끔따끔", - effect: "상대에게 부딪쳐 강력한 전기를 날려서 찌리리따끔따끔하게 만든다. 상대를 풀죽게 만들 때가 있다." - }, - naturesMadness: { - name: "자연의분노", - effect: "자연의 분노를 상대에게 부딪친다. 상대의 HP는 절반이 된다." - }, - multiAttack: { - name: "멀티어택", - effect: "높은 에너지를 둘러싸 상대에게 부딪쳐 공격한다. 메모리에 따라 타입이 바뀐다." - }, - tenMillionVoltThunderbolt: { - name: "1000만볼트", - effect: "모자를 쓴 피카츄가 Z파워로 파워업한 전격을 쏜다. 급소에 맞기 쉽다." - }, - mindBlown: { - name: "깜짝헤드", - effect: "자신의 머리를 폭발시켜 주위의 모든 것을 공격한다. 자신도 데미지를 받는다." - }, - plasmaFists: { - name: "플라스마피스트", - effect: "전기를 두른 주먹으로 공격한다. 노말타입 기술을 전기타입으로 바꿔버린다." - }, - photonGeyser: { - name: "포톤가이저", - effect: "빛의 기둥으로 공격한다. 공격과 특수공격을 비교해서 높은 쪽으로 데미지를 준다." - }, - lightThatBurnsTheSky: { - name: "하늘을태우는멸망의빛", - effect: "네크로즈마가 상대의 특성 효과를 무시하고 공격과 특수공격 중 높은 쪽으로 데미지를 준다." - }, - searingSunrazeSmash: { - name: "선샤인스매셔", - effect: "Z파워를 얻은 솔가레오가 전력으로 공격한다. 상대의 특성 효과를 무시할 수 있다." - }, - menacingMoonrazeMaelstrom: { - name: "문라이트블래스터", - effect: "Z파워를 얻은 루나아라가 전력으로 공격한다. 상대의 특성 효과를 무시할 수 있다." - }, - letsSnuggleForever: { - name: "투닥투닥프렌드타임", - effect: "Z파워를 얻은 따라큐가 전력으로 투닥투닥 공격한다." - }, - splinteredStormshards: { - name: "레이디얼에지스톰", - effect: "Z파워를 얻은 루가루암이 전력으로 공격한다. 추가로 필드 상태를 없앤다." - }, - clangorousSoulblaze: { - name: "브레이징소울비트", - effect: "Z파워를 얻은 짜랑고우거가 전력으로 상대를 공격한다. 추가로 자신의 능력이 올라간다." - }, - zippyZap: { - name: "파찌파찌액셀", - /* 임의번역 (렛츠고 신규 기술) */ - effect: "맹렬한 속도의 전격 공격. 반드시 선제공격할 수 있고 자신의 회피율을 높인다." - }, - splishySplash: { - name: "참방참방서핑", - effect: "커다란 파도에 전기를 날리고 상대에게 부딪쳐서 공격한다. 마비 상태로 만들 때가 있다." - }, - floatyFall: { - name: "둥실둥실폴", - effect: "두둥실 떠오른 다음 단숨에 급강하해서 공격한다. 상대를 풀죽게 만들 때가 있다." - }, - pikaPapow: { - name: "피카피카썬더", - effect: "트레이너를 좋아하는 피카츄의 마음이 강할수록 위력이 올라가는 전격. 반드시 명중한다." - }, - bouncyBubble: { - name: "생생버블", - effect: "물덩어리를 부딪쳐서 공격한다. 물을 흡수하여 준 데미지만큼 HP를 회복한다." - }, - buzzyBuzz: { - name: "찌릿찌릿일렉", - effect: "전기를 상대에게 날려서 공격한다. 상대를 마비 상태로 만든다." - }, - sizzlySlide: { - name: "이글이글번", - effect: "불꽃을 두른 몸으로 기세 좋게 상대에게 부딪친다. 상대를 화상 상태로 만든다." - }, - glitzyGlow: { - name: "콸콸오라", - effect: "염동력을 한가득 날린다. 상대의 특수공격을 약하게 만드는 이상한 장막을 만든다." - }, - baddyBad: { - name: "아그아그존", - effect: "악함을 어필해서 공격한다. 상대의 물리공격을 약하게 만드는 이상한 장막을 만든다." - }, - sappySeed: { - name: "쑥쑥봄버", - effect: "거대한 덩굴을 자라게 하고 씨를 흩뿌려서 공격한다. 씨는 매 턴 상대의 HP를 흡수한다." - }, - freezyFrost: { - name: "꽁꽁프로스트", - effect: "차갑게 얼어붙은 흑안개의 결정으로 공격한다. 전원의 능력 변화를 원래대로 돌린다." - }, - sparklySwirl: { - name: "반짝반짝스톰", - effect: "숨 막힐 듯 진한 향기의 회오리로 상대를 휘감아 공격한다. 같은 편의 상태 이상을 회복한다." - }, - veeveeVolley: { - name: "브이브이브레이크", - effect: "트레이너를 좋아하는 이브이의 마음이 강할수록 위력이 올라가는 몸통박치기. 반드시 명중한다." - }, - doubleIronBash: { - name: "더블펀처", - effect: "가슴의 너트를 축으로 회전시켜 2번 연속 팔로 힘껏 친다. 상대를 풀죽게 만들 때가 있다." - }, - maxGuard: { - name: "다이월", - effect: "상대의 공격을 전혀 받지 않는다. 연속으로 쓰면 실패하기 쉽다." - }, - dynamaxCannon: { - name: "다이맥스포", - effect: "코어에서 빔을 발사해서 공격한다. 상대가 웨이브 레벨 최대치를 초과했다면, 초과한 정도에 비례하여 데미지가 최대 2배가 된다." - }, - snipeShot: { - name: "노려맞히기", - effect: "상대의 기술을 끌어모으는 특성이나 기술의 영향을 무시하고 선택한 상대를 공격할 수 있다." - }, - jawLock: { - name: "물고버티기", - effect: "어느 한쪽이 기절할 때까지 교체할 수 없게 된다. 한쪽의 포켓몬이 없어지면 효과가 사라진다." - }, - stuffCheeks: { - name: "볼가득넣기", - effect: "지니고 있는 나무열매를 먹고 방어를 크게 올린다." - }, - noRetreat: { - name: "배수의진", - effect: "자신의 모든 능력이 올라가지만 교체하거나 도망칠 수 없게 된다." - }, - tarShot: { - name: "타르샷", - effect: "끈적끈적한 타르를 날려서 상대의 스피드를 떨어뜨린다. 상대는 불꽃이 약점이 된다." - }, - magicPowder: { - name: "마법가루", - effect: "마법가루를 날려서 상대를 에스퍼타입으로 바꾼다." - }, - dragonDarts: { - name: "드래곤애로", - effect: "드라꼰으로 2번 공격한다. 상대가 2마리일 때는 각각 1번씩 공격한다." - }, - teatime: { - name: "다과회", - effect: "다과회를 열어서 배틀에 나와 있는 포켓몬이 각각 지니고 있는 나무열매를 먹는다." - }, - octolock: { - name: "문어굳히기", - effect: "상대를 도망칠 수 없게 한다. 굳히기에 당한 상대는 매 턴 방어와 특수방어가 떨어진다." - }, - boltBeak: { - name: "전격부리", - effect: "전기를 두른 부리로 찌른다. 상대보다 먼저 공격하면 기술의 위력은 2배가 된다." - }, - fishiousRend: { - name: "아가미물기", - effect: "단단한 아가미로 문다. 상대보다 먼저 공격하면 기술의 위력은 2배가 된다." - }, - courtChange: { - name: "코트체인지", - effect: "이상한 힘으로 서로의 필드 효과를 교체한다." - }, - maxFlare: { - name: "다이번", - effect: "다이맥스한 포켓몬이 날리는 불꽃타입의 공격. 5턴 동안 햇살을 강하게 만든다." - }, - maxFlutterby: { - name: "다이웜", - effect: "다이맥스한 포켓몬이 날리는 벌레타입의 공격. 상대의 특수공격을 떨어뜨린다." - }, - maxLightning: { - name: "다이썬더", - effect: "다이맥스한 포켓몬이 날리는 전기타입의 공격. 5턴 동안 일렉트릭필드로 만든다." - }, - maxStrike: { - name: "다이어택", - effect: "다이맥스한 포켓몬이 날리는 노말타입의 공격. 상대의 스피드를 떨어뜨린다." - }, - maxKnuckle: { - name: "다이너클", - effect: "다이맥스한 포켓몬이 날리는 격투타입의 공격. 같은 편의 공격을 올린다." - }, - maxPhantasm: { - name: "다이할로우", - effect: "다이맥스한 포켓몬이 날리는 고스트타입의 공격. 상대의 방어를 떨어뜨린다." - }, - maxHailstorm: { - name: "다이아이스", - effect: "다이맥스한 포켓몬이 날리는 얼음타입의 공격. 5턴 동안 싸라기눈을 내리게 한다." - }, - maxOoze: { - name: "다이애시드", - effect: "다이맥스한 포켓몬이 날리는 독타입의 공격. 같은 편의 특수공격을 올린다." - }, - maxGeyser: { - name: "다이스트림", - effect: "다이맥스한 포켓몬이 날리는 물타입의 공격. 5턴 동안 비를 내리게 한다." - }, - maxAirstream: { - name: "다이제트", - effect: "다이맥스한 포켓몬이 날리는 비행타입의 공격. 같은 편의 스피드를 올린다." - }, - maxStarfall: { - name: "다이페어리", - effect: "다이맥스한 포켓몬이 날리는 페어리타입의 공격. 5턴 동안 미스트필드로 만든다." - }, - maxWyrmwind: { - name: "다이드라군", - effect: "다이맥스한 포켓몬이 날리는 드래곤타입의 공격. 상대의 공격을 떨어뜨린다." - }, - maxMindstorm: { - name: "다이사이코", - effect: "다이맥스한 포켓몬이 날리는 에스퍼타입의 공격. 5턴 동안 사이코필드로 만든다." - }, - maxRockfall: { - name: "다이록", - effect: "다이맥스한 포켓몬이 날리는 바위타입의 공격. 5턴 동안 날씨를 모래바람으로 만든다." - }, - maxQuake: { - name: "다이어스", - effect: "다이맥스한 포켓몬이 날리는 땅타입의 공격. 같은 편의 특수방어를 올린다." - }, - maxDarkness: { - name: "다이아크", - effect: "다이맥스한 포켓몬이 날리는 악타입의 공격. 상대의 특수방어를 떨어뜨린다." - }, - maxOvergrowth: { - name: "다이그래스", - effect: "다이맥스한 포켓몬이 날리는 풀타입의 공격. 5턴 동안 그래스필드로 만든다." - }, - maxSteelspike: { - name: "다이스틸", - effect: "다이맥스한 포켓몬이 날리는 강철타입의 공격. 같은 편의 방어를 올린다." - }, - clangorousSoul: { - name: "소울비트", - effect: "자신의 HP를 조금 깎아서 모든 능력을 올린다." - }, - bodyPress: { - name: "바디프레스", - effect: "몸을 부딪쳐서 공격한다. 방어가 높을수록 주는 데미지가 올라간다." - }, - decorate: { - name: "데코레이션", - effect: "데코레이션을 해서 상대의 공격과 특수공격을 크게 올린다." - }, - drumBeating: { - name: "드럼어택", - effect: "드럼의 뿌리를 연주로 조종해서 공격하는 것으로 상대의 스피드를 떨어뜨린다." - }, - snapTrap: { - name: "집게덫", - effect: "집게덫으로 붙잡은 뒤 4-5턴 동안 상대를 끼워서 공격한다." - }, - pyroBall: { - name: "화염볼", - effect: "작은 돌을 태운 불꽃의 공으로 상대를 공격한다. 화상 상태로 만들 때가 있다." - }, - behemothBlade: { - name: "거수참", - effect: "크고 강한 검을 온몸으로 치켜든 다음 기세 좋게 베어서 공격한다." - }, - behemothBash: { - name: "거수탄", - effect: "온몸을 강하고 튼튼한 방패로 바꾼 다음 기세 좋게 부딪혀서 공격한다." - }, - auraWheel: { - name: "오라휠", - effect: "볼주머니에 저장해둔 에너지로 공격하고 자신의 스피드를 올린다. 모르페코의 모습에 따라 타입이 바뀐다." - }, - breakingSwipe: { - name: "와이드브레이커", - effect: "강인한 꼬리를 세차게 휘둘러서 상대를 공격한다. 상대의 공격을 떨어뜨린다." - }, - branchPoke: { - name: "가지찌르기", - effect: "날카롭고 뾰족한 가지로 상대를 찔러서 공격한다." - }, - overdrive: { - name: "오버드라이브", - effect: "기타나 베이스를 쳐서 큰 울림과 강한 진동을 상대에게 전달하여 공격한다." - }, - appleAcid: { - name: "사과산", - effect: "새콤한 사과에서 만들어 낸 산성 액체로 공격한다. 상대의 특수방어를 떨어뜨린다." - }, - gravApple: { - name: "G의힘", - effect: "높은 곳에서 사과를 떨어뜨려서 데미지를 준다. 상대의 방어를 떨어뜨린다." - }, - spiritBreak: { - name: "소울크래시", - effect: "맞으면 기가 꺾여버릴 것 같은 기세로 공격한다. 상대의 특수공격을 떨어뜨린다." - }, - strangeSteam: { - name: "원더스팀", - effect: "연기를 분출해서 상대를 공격한다. 혼란시킬 때가 있다." - }, - lifeDew: { - name: "생명의물방울", - effect: "신비한 물을 흩뿌려서 자신과 배틀에 나와 있는 같은 편의 HP를 회복한다." - }, - obstruct: { - name: "블로킹", - effect: "상대의 공격을 전혀 받지 않는다. 연속으로 쓰면 실패하기 쉽다. 접촉한 상대의 방어를 크게 떨어뜨린다." - }, - falseSurrender: { - name: "사죄의찌르기", - effect: "고개를 숙이는 척하면서 흐트러진 머리카락으로 찌른다. 공격은 반드시 명중한다." - }, - meteorAssault: { - name: "스타어설트", - effect: "굵은 줄기를 휘둘러서 공격한다. 단 자신도 비틀거리기 때문에 다음 턴은 움직일 수 없다." - }, - eternabeam: { - name: "무한다이빔", - effect: "본래의 모습이 된 무한다이노 최대의 공격. 다음 턴은 움직일 수 없다." - }, - steelBeam: { - name: "철제광선", - effect: "전신에서 끌어모은 강철을 빔으로 바꿔 세차게 발사한다. 자신도 데미지를 받는다." - }, - expandingForce: { - name: "와이드포스", - effect: "사이코 파워로 상대를 공격한다. 사이코필드일 때는 위력이 오르며 모든 상대에게 데미지를 준다." - }, - steelRoller: { - name: "아이언롤러", - effect: "필드를 파괴하면서 공격한다. 필드가 어떤 상태로든 변해 있지 않은 경우 기술은 실패한다." - }, - scaleShot: { - name: "스케일샷", - effect: "비늘을 쏘아서 공격한다. 2-5회 동안 연속으로 쓴다. 스피드가 올라가지만 방어가 떨어진다." - }, - meteorBeam: { - name: "메테오빔", - effect: "1턴째에 우주의 힘을 모아서 특수공격을 올리고 2턴째에 상대를 공격한다." - }, - shellSideArm: { - name: "셸암즈", - effect: "물리와 특수 중 더 많은 데미지를 줄 수 있는 능력으로 공격한다. 독 상태로 만들 때가 있다." - }, - mistyExplosion: { - name: "미스트버스트", - effect: "자신의 주위에 있는 모두를 공격하지만 사용하면 기절한다. 미스트필드일 때 위력이 올라간다." - }, - grassyGlide: { - name: "그래스슬라이더", - effect: "지면에 미끄러지듯 상대를 공격한다. 그래스필드일 때 반드시 선제공격할 수 있다." - }, - risingVoltage: { - name: "라이징볼트", - effect: "지면에서 올라오는 전격으로 공격한다. 상대가 일렉트릭필드 위에 있을 때 기술의 위력이 2배가 된다." - }, - terrainPulse: { - name: "대지의파동", - effect: "필드의 힘을 빌려서 공격한다. 사용했을 때의 필드 상태에 따라서 기술 타입과 위력이 바뀐다." - }, - skitterSmack: { - name: "엄습하는일격", - effect: "배후에서 엄습해서 공격한다. 상대의 특수공격을 떨어뜨린다." - }, - burningJealousy: { - name: "질투의불꽃", - effect: "질투의 에너지로 상대를 공격한다. 그 턴에 능력이 올라간 포켓몬을 화상 상태로 만든다." - }, - lashOut: { - name: "분풀이", - effect: "상대에 대한 울분이 담긴 공격을 한다. 그 턴에 능력이 떨어져 있으면 기술의 위력이 2배가 된다." - }, - poltergeist: { - name: "폴터가이스트", - effect: "상대의 지닌 물건을 조종해서 공격한다. 상대가 도구를 지니고 있지 않으면 실패한다." - }, - corrosiveGas: { - name: "부식가스", - effect: "주위에 있는 모든 것을 강력한 산성 가스로 뒤덮어서 지니고 있는 도구를 녹여버린다." - }, - coaching: { - name: "코칭", - effect: "적절한 지도를 통해서 같은 편 전원의 공격과 방어를 올린다." - }, - flipTurn: { - name: "퀵턴", - effect: "공격한 뒤 굉장한 스피드로 돌아와서 교대 포켓몬과 교체한다." - }, - tripleAxel: { - name: "트리플악셀", - effect: "3회 연속으로 킥을 날려 공격한다. 기술이 맞을 때마다 위력이 올라간다." - }, - dualWingbeat: { - name: "더블윙", - effect: "날개를 상대에게 부딪쳐서 공격한다. 2회 연속으로 데미지를 준다." - }, - scorchingSands: { - name: "열사의대지", - effect: "뜨겁게 달궈진 모래를 상대에게 부딪쳐서 공격한다. 화상 상태로 만들 때가 있다." - }, - jungleHealing: { - name: "정글힐", - effect: "정글과 하나가 되어 자신과 배틀에 나와 있는 같은 편의 HP와 모든 상태를 회복한다." - }, - wickedBlow: { - name: "암흑강타", - effect: "악의 태세가 극에 달하여 강렬한 일격을 날린다. 반드시 급소에 맞는다." - }, - surgingStrikes: { - name: "수류연타", - effect: "물의 태세가 극에 달하여 물 흐르듯 3회의 연격을 날린다. 반드시 급소에 맞는다." - }, - thunderCage: { - name: "썬더프리즌", - effect: "전기가 흐르는 우리 안에 4-5턴 동안 상대를 가두어 공격한다." - }, - dragonEnergy: { - name: "드래곤에너지", - effect: "생명력을 파워로 바꿔서 상대를 공격한다. 자신의 HP가 적을수록 기술의 위력이 떨어진다." - }, - freezingGlare: { - name: "얼어붙는시선", - effect: "두 눈에서 사이코 파워를 발사해서 공격한다. 얼음 상태로 만들 때가 있다." - }, - fieryWrath: { - name: "타오르는분노", - effect: "분노를 불꽃 같은 오라로 바꿔서 공격한다. 상대를 풀죽게 만들 때가 있다." - }, - thunderousKick: { - name: "천둥차기", - effect: "번개 같은 움직임으로 상대를 농락하며 킥을 날린다. 상대의 방어를 떨어뜨린다." - }, - glacialLance: { - name: "블리자드랜스", - effect: "눈보라를 두른 얼음의 창을 상대에게 던져서 공격한다." - }, - astralBarrage: { - name: "아스트랄비트", - effect: "수많은 작은 영체를 상대에게 부딪쳐서 공격한다." - }, - eerieSpell: { - name: "섬뜩한주문", - effect: "강력한 사이코 파워로 공격한다. 상대가 마지막으로 사용한 기술의 PP를 3만큼 줄인다." - }, - direClaw: { - name: "페이탈클로", - /* 임의번역 (레전드 아르세우스 신규 기술) */ - effect: "치명적인 손톱으로 공격한다. 상대를 독, 마비, 잠듦 중 하나의 상태로 만들 때가 있다." - }, - psyshieldBash: { - name: "배리어러시", - /* 임의번역 (레전드 아르세우스 신규 기술) */ - effect: "사념의 에너지를 두른 채로 상대에게 부딪친다. 자신의 방어를 올린다." - }, - powerShift: { - name: "파워시프트", - effect: "자신의 공격력과 방어력을 바꾼다." - }, - stoneAxe: { - name: "암석액스", - effect: "암석 도끼로 공격한다. 흩어진 암석 파편은 상대의 주위에 떠다니게 된다." - }, - springtideStorm: { - name: "봄의폭풍", - /* 임의번역 (레전드 아르세우스 신규 기술) */ - effect: "애증 섞인 강렬한 바람으로 상대를 둘러싸서 공격한다. 상대의 공격을 떨어뜨릴 때가 있다." - }, - mysticalPower: { - name: "신비의힘", - effect: "신비한 힘으로 자신을 강화한다. 자신의 특수공격이 올라간다." - }, - ragingFury: { - name: "대격분", - effect: "2~3턴 동안 불꽃을 마구 뿜어 대며 난동을 부린다. 난동 부린 뒤에는 혼란에 빠진다." - }, - waveCrash: { - name: "웨이브태클", - effect: "물을 두르고 온몸으로 상대에게 부딪친다. 자신도 상당한 데미지를 입는다." - }, - chloroblast: { - name: "클로로블라스트", - effect: "엽록소를 모은 뒤 발사하여 공격한다. 자신도 데미지를 입는다." - }, - mountainGale: { - name: "빙산바람", - /* 임의번역 (레전드 아르세우스 신규 기술) */ - effect: "빙산처럼 커다란 얼음덩어리를 부딪쳐서 공격한다. 상대를 풀죽게 만들 때가 있다." - }, - victoryDance: { - name: "승리의춤", - /* 임의번역 (레전드 아르세우스 신규 기술) */ - effect: "승리를 부르는 춤을 격렬하게 춘다. 자신의 공격과 방어와 스피드를 올린다." - }, - headlongRush: { - name: "들이받기", - effect: "온 힘을 다한 몸통박치기를 날린다. 자신의 방어와 특수방어가 떨어진다." - }, - barbBarrage: { - name: "독침천밭", - effect: "무수히 많은 독침으로 공격한다. 상대를 독 상태로 만들 때가 있다. 상대가 독 상태인 경우 위력이 2배가 된다." - }, - esperWing: { - name: "오라윙", - /* 임의번역 (레전드 아르세우스 신규 기술) */ - effect: "오라로 강화한 날개로 베어 가른다. 급소에 맞기 쉽다. 자신의 스피드를 올린다." - }, - bitterMalice: { - name: "천추지한", - /* 임의번역 (레전드 아르세우스 신규 기술) */ - effect: "등골이 서늘해지는 원념으로 공격해서 상대의 공격을 떨어뜨린다." - }, - shelter: { - name: "농성", - /* 임의번역 (레전드 아르세우스 신규 기술) */ - effect: "피부를 강철 방패처럼 단단하게 만들어서 자신의 방어를 크게 올린다." - }, - tripleArrows: { - name: "3연화살", - effect: "발 기술을 사용하고 3개의 화살을 동시에 발사한다. 상대의 방어를 떨어뜨리거나 풀죽게 만들 때가 있다. 급소에 맞기 쉽다." - }, - infernalParade: { - name: "백귀야행", - effect: "무수히 많은 불덩이로 공격한다. 화상 상태로 만들 때가 있다. 상대가 상태 이상인 경우 위력이 2배가 된다." - }, - ceaselessEdge: { - name: "비검천중파", - effect: "조개껍질 검으로 공격한다. 조개껍질 파편은 압정이 되어 상대의 발밑에 흩어진다." - }, - bleakwindStorm: { - name: "찬바람폭풍", - /* 임의번역 (레전드 아르세우스 신규 기술) */ - effect: "심신을 모두 떨게 만드는 차갑고도 거친 바람으로 공격한다. 상대의 스피드를 떨어뜨릴 때가 있다." - }, - wildboltStorm: { - name: "번개폭풍", - /* 임의번역 (레전드 아르세우스 신규 기술) */ - effect: "폭풍을 일으키고 뇌운을 불러서 번개와 바람으로 매섭게 공격한다. 상대를 마비 상태로 만들 때가 있다." - }, - sandsearStorm: { - name: "열사의폭풍", - /* 임의번역 (레전드 아르세우스 신규 기술) */ - effect: "뜨겁게 달궈진 모래와 강렬한 바람으로 상대를 둘러싸서 공격한다. 상대를 화상 상태로 만들 때가 있다." - }, - lunarBlessing: { - name: "초승달의기도", - /* 임의번역 (레전드 아르세우스 신규 기술) */ - effect: "초승달에 기도를 하여 자신과 같은 편의 HP와 상태 이상을 모두 회복한다." - }, - takeHeart: { - name: "브레이브차지", - /* 임의번역 (레전드 아르세우스 신규 기술) */ - effect: "기운을 고조시켜서 자신의 상태 이상을 회복하고 특수공격과 특수방어를 올린다." - }, - gMaxWildfire: { - name: "거다이옥염", - effect: "거다이맥스한 리자몽이 사용하는 불꽃타입 공격. 4턴 동안 데미지를 준다." - }, - gMaxBefuddle: { - name: "거다이고혹", - effect: "거다이맥스한 버터플이 사용하는 벌레타입 공격. 독 마비 잠듦 중 어느 하나로 만든다." - }, - gMaxVoltCrash: { - name: "거다이만뢰", - effect: "거다이맥스한 피카츄가 사용하는 전기타입 공격. 상대를 마비 상태로 만든다." - }, - gMaxGoldRush: { - name: "거다이금화", - effect: "거다이맥스한 나옹이 사용하는 노말타입 공격. 상대를 혼란시키고 돈도 받을 수 있다." - }, - gMaxChiStrike: { - name: "거다이회심격", - effect: "거다이맥스한 괴력몬이 사용하는 격투타입 공격. 급소에 맞기 쉬워진다." - }, - gMaxTerror: { - name: "거다이환영", - effect: "거다이맥스한 팬텀이 사용하는 고스트타입 공격. 그림자를 밟아 교체할 수 없게 한다." - }, - gMaxResonance: { - name: "거다이선율", - effect: "거다이맥스한 라프라스가 사용하는 얼음타입 공격. 5턴 동안 데미지를 약하게 한다." - }, - gMaxCuddle: { - name: "거다이포옹", - effect: "거다이맥스한 이브이가 사용하는 노말타입 공격. 상대를 헤롱헤롱하게 만든다." - }, - gMaxReplenish: { - name: "거다이재생", - effect: "거다이맥스한 잠만보가 사용하는 노말타입 공격. 먹은 나무열매를 재생한다." - }, - gMaxMalodor: { - name: "거다이악취", - effect: "거다이맥스한 더스트나가 사용하는 독타입 공격. 상대를 독 상태로 만든다." - }, - gMaxStonesurge: { - name: "거다이암진", - effect: "거다이맥스한 갈가부기가 사용하는 물타입 공격. 예리한 바위를 무수히 뿌린다." - }, - gMaxWindRage: { - name: "거다이풍격", - effect: "거다이맥스한 아머까오가 사용하는 비행타입 공격. 리플렉터나 빛의장막을 없앤다." - }, - gMaxStunShock: { - name: "거다이감전", - /* 임의번역 (이벤트 맥스레이드 및 갑옷의외딴섬 한정 포켓몬 기술) */ - effect: "거다이맥스한 스트린더가 사용하는 전기타입 공격. 독이나 마비 상태로 만든다." - }, - gMaxFinale: { - name: "거다이단원", - effect: "거다이맥스한 마휘핑이 사용하는 페어리타입 공격. 같은 편의 HP를 회복한다." - }, - gMaxDepletion: { - name: "거다이감쇠", - effect: "거다이맥스한 두랄루돈이 사용하는 드래곤타입 공격. 마지막에 사용한 기술의 PP를 줄인다." - }, - gMaxGravitas: { - name: "거다이천도", - effect: "거다이맥스한 이올브가 사용하는 에스퍼타입 공격. 5턴 동안 중력이 바뀐다." - }, - gMaxVolcalith: { - name: "거다이분석", - effect: "거다이맥스한 석탄산이 사용하는 바위타입 공격. 4턴 동안 데미지를 준다." - }, - gMaxSandblast: { - name: "거다이사진", - effect: "거다이맥스한 사다이사가 사용하는 땅타입 공격. 4-5턴 동안 거친 모래바람이 분다." - }, - gMaxSnooze: { - name: "거다이수마", - effect: "거다이맥스한 오롱털이 사용하는 악타입 공격. 큰 하품으로 졸음을 유도한다." - }, - gMaxTartness: { - name: "거다이산격", - effect: "거다이맥스한 애프룡이 사용하는 풀타입 공격. 상대의 회피율을 떨어뜨린다." - }, - gMaxSweetness: { - name: "거다이감로", - effect: "거다이맥스한 단지래플이 사용하는 풀타입 공격. 같은 편의 상태 이상을 회복한다." - }, - gMaxSmite: { - name: "거다이천벌", - effect: "거다이맥스한 브리무음이 사용하는 페어리타입 공격. 상대를 혼란시킨다." - }, - gMaxSteelsurge: { - name: "거다이강철진", - effect: "거다이맥스한 대왕끼리동이 사용하는 강철타입 공격. 예리한 가시를 무수히 뿌린다." - }, - gMaxMeltdown: { - name: "거다이융격", - /* 임의번역 (Go 연동 포켓몬 기술) */ - effect: "거다이맥스한 멜메탈이 사용하는 강철타입 공격. 똑같은 기술을 2회 연속으로 쓸 수 없게 한다." - }, - gMaxFoamBurst: { - name: "거다이포말", - effect: "거다이맥스한 킹크랩이 사용하는 물타입 공격. 상대의 스피드를 크게 떨어뜨린다." - }, - gMaxCentiferno: { - name: "거다이백화", - effect: "거다이맥스한 다태우지네가 사용하는 불꽃타입 공격. 4-5턴 동안 불꽃 속에 가둔다." - }, - gMaxVineLash: { - name: "거다이편달", - effect: "거다이맥스한 이상해꽃이 사용하는 풀타입 공격. 4턴 동안 데미지를 준다." - }, - gMaxCannonade: { - name: "거다이포격", - effect: "거다이맥스한 거북왕이 사용하는 물타입 공격. 4턴 동안 데미지를 준다." - }, - gMaxDrumSolo: { - name: "거다이난타", - effect: "거다이맥스한 고릴타가 사용하는 풀타입 공격. 상대의 특성에 영향을 받지 않는다." - }, - gMaxFireball: { - name: "거다이화염구", - effect: "거다이맥스한 에이스번이 사용하는 불꽃타입 공격. 상대의 특성에 영향을 받지 않는다." - }, - gMaxHydrosnipe: { - name: "거다이저격", - effect: "거다이맥스한 인텔리레온이 사용하는 물타입 공격. 상대의 특성에 영향을 받지 않는다." - }, - gMaxOneBlow: { - name: "거다이일격", - effect: "거다이맥스한 우라오스가 사용하는 악타입 공격. 다이월을 무시하는 일격을 날린다." - }, - gMaxRapidFlow: { - name: "거다이연격", - effect: "거다이맥스한 우라오스가 사용하는 물타입 공격. 다이월을 무시하는 연격을 날린다." - }, - teraBlast: { - name: "테라버스트", - effect: "테라스탈 중이면, 테라스탈타입의 에너지를 방출해서 공격한다. 공격과 특수공격을 비교해서 높은 쪽으로 데미지를 준다." - }, - silkTrap: { - name: "스레드트랩", - effect: "실로 함정을 만들어 둘러친다. 상대의 공격을 막음과 동시에 접촉한 상대의 스피드를 떨어뜨린다." - }, - axeKick: { - name: "발꿈치찍기", - effect: "발꿈치를 들어 올린 뒤 내리찍어 공격한다. 상대를 혼란시킬 때가 있다. 빗나가면 자신이 데미지를 입는다." - }, - lastRespects: { - name: "성묘", - effect: "동료의 한을 풀어 주기 위해 공격한다. 쓰러진 같은 편 포켓몬이 많을수록 기술의 위력이 올라간다." - }, - luminaCrash: { - name: "루미나콜리전", - effect: "정신에도 작용하는 기묘한 빛을 발산해서 공격한다. 상대의 특수방어를 크게 떨어뜨린다." - }, - orderUp: { - name: "한판내기", - effect: "멋들어진 몸놀림으로 공격한다. 입속에 싸리용이 있으면 싸리용의 모습에 따라 능력이 올라간다." - }, - jetPunch: { - name: "제트펀치", - effect: "거센 물살을 주먹에 둘러 눈에 보이지 않는 속도로 펀치를 날린다. 반드시 선제공격할 수 있다." - }, - spicyExtract: { - name: "하바네로엑기스", - effect: "어마어마하게 매운 엑기스를 발사한다. 상대의 공격이 크게 오르고 방어는 크게 떨어진다." - }, - spinOut: { - name: "휠스핀", - effect: "발에 부하를 걸어 격렬하게 회전하며 데미지를 준다. 자신의 스피드가 크게 떨어진다." - }, - populationBomb: { - name: "찍찍베기", - effect: "여기저기서 동료들을 모아서 화려한 콤비네이션으로 공격한다. 1~10회 연속으로 공격한다." - }, - iceSpinner: { - name: "아이스스피너", - effect: "발에 얇은 얼음을 두르고 빙글빙글 회전하며 부딪친다. 회전 운동에 의해 필드가 파괴된다." - }, - glaiveRush: { - name: "대검돌격", - effect: "몸을 내던지는 무모한 돌격. 기술을 사용한 다음, 상대의 공격이 반드시 명중하고 데미지를 2배로 입게 된다." - }, - revivalBlessing: { - name: "회생의기도", - effect: "자애로운 마음으로 기도를 하여 기절한 교대 포켓몬을 HP가 절반인 상태로 부활시킨다." - }, - saltCure: { - name: "소금절이", - effect: "상대를 소금절이 상태로 만들어 매 턴 데미지를 준다. 강철타입이나 물타입에게 더 고통스럽다." - }, - tripleDive: { - name: "트리플다이브", - effect: "호흡이 척척 맞게 다이빙해서 상대에게 물보라를 끼얹는다. 3회 연속으로 데미지를 준다." - }, - mortalSpin: { - name: "킬러스핀", - effect: "회전해서 상대를 공격한다. 조이기, 김밥말이, 씨뿌리기 등의 효과를 날려버린다. 상대를 독 상태로 만든다." - }, - doodle: { - name: "베껴그리기", - effect: "상대의 본질을 꿰뚫어 보고 베껴서 자신과 같은 편을 상대와 같은 특성으로 바꾼다." - }, - filletAway: { - name: "제살깎기", - effect: "자신의 HP를 깎아서 자신의 공격, 특수공격, 스피드를 크게 올린다." - }, - kowtowCleave: { - name: "도각참", - effect: "머리를 조아려 상대를 방심하게 만든 뒤에 베어 버린다. 공격은 반드시 명중한다." - }, - flowerTrick: { - name: "트릭플라워", - effect: "숨겨진 장치가 있는 꽃다발을 상대에게 던져서 공격한다. 반드시 명중하며 급소에 맞는다." - }, - torchSong: { - name: "플레어송", - effect: "활활 타오르는 불꽃을 노래하듯 뿜어서 상대를 태워 버린다. 자신의 특수공격을 올린다." - }, - aquaStep: { - name: "아쿠아스텝", - effect: "물 흐르듯 민첩하고 경쾌한 발재간으로 상대를 농락하며 데미지를 준다. 자신의 스피드를 올린다." - }, - ragingBull: { - name: "레이징불", - effect: "분노해 날뛰는 성난소의 맹렬한 태클. 폼에 따라 기술의 타입이 달라지고 빛의장막이나 리플렉터 등도 파괴할 수 있다." - }, - makeItRain: { - name: "골드러시", - effect: "대량의 코인을 날려서 공격한다. 자신의 특수공격이 떨어진다. 배틀 후에 돈을 받을 수 있다." - }, - psyblade: { - name: "사이코블레이드", - effect: "실체가 없는 칼날로 상대를 베어 가른다. 일렉트릭필드 위에 있을 때 기술의 위력이 1.5배가 된다." - }, - hydroSteam: { - name: "하이드로스팀", - effect: "펄펄 끓는 물을 기세 좋게 뿜어낸다. 햇살이 강할 때 기술의 위력이 떨어지기는커녕 1.5배가 된다." - }, - ruination: { - name: "카타스트로피", - effect: "파멸적인 재앙에 휩쓸리게 하여 상대의 HP를 절반으로 만든다." - }, - collisionCourse: { - name: "액셀브레이크", - effect: "변형하며 거칠게 낙하한 다음 고대의 대폭발을 일으킨다. 약점인 상대에게는 위력이 더욱 올라간다." - }, - electroDrift: { - name: "라이트닝드라이브", - effect: "변형하며 초고속으로 달려서 미지의 전격으로 상대를 관통한다. 약점인 상대에게는 위력이 더욱 올라간다." - }, - shedTail: { - name: "꼬리자르기", - effect: "자신의 HP를 깎아서 분신을 만든 뒤, 돌아와서 교대 포켓몬과 교체한다." - }, - chillyReception: { - name: "썰렁개그", - effect: "자리를 얼어붙게 만드는 개그를 하고 교대 포켓몬과 교체한다. 5턴 동안 눈을 내리게 한다." - }, - tidyUp: { - name: "정리정돈", - effect: "압정뿌리기, 스텔스록, 끈적끈적네트, 독압정, 대타출동을 모두 정리한다. 자신의 공격력과 스피드가 올라간다." - }, - snowscape: { - name: "설경", - effect: "5턴 동안 눈을 내리게 한다. 얼음타입의 방어가 올라간다." - }, - pounce: { - name: "달려들기", - effect: "상대에게 달려들어 공격한다. 상대의 스피드를 떨어뜨린다." - }, - trailblaze: { - name: "개척하기", - effect: "풀숲에서 튀어나오듯이 공격한다. 경쾌한 발재간으로 자신의 스피드를 올린다." - }, - chillingWater: { - name: "찬물끼얹기", - effect: "상대의 기운이 빠질 정도로 차가운 물을 끼얹어서 공격한다. 상대의 공격을 떨어뜨린다." - }, - hyperDrill: { - name: "하이퍼드릴", - effect: "뾰족한 신체 부위를 급속도로 회전시켜 관통한다. 방어나 판별 등도 무시할 수 있다." - }, - twinBeam: { - name: "트윈빔", - effect: "두 눈에서 불가사의한 광선을 발사해서 공격한다. 2회 연속으로 데미지를 준다." - }, - rageFist: { - name: "분노의주먹", - effect: "분노를 에너지로 바꿔서 공격한다. 받은 공격의 횟수가 많을수록 기술의 위력이 올라간다." - }, - armorCannon: { - name: "아머캐논", - effect: "자신의 갑옷을 활활 타오르는 탄환으로 발사해서 공격한다. 자신의 방어와 특수방어가 떨어진다." - }, - bitterBlade: { - name: "원념의칼", - effect: "현세의 미련을 칼끝에 담아 베어 버린다. 입힌 데미지의 절반에 해당하는 HP를 회복할 수 있다." - }, - doubleShock: { - name: "전광쌍격", - effect: "전신의 전기를 모두 방출해서 큰 데미지를 준다. 자신의 전기타입이 없어진다." - }, - gigatonHammer: { - name: "거대해머", - effect: "거대한 해머를 온몸으로 휘둘러서 공격한다. 이 기술은 2회 연속으로 쓸 수 없다." - }, - comeuppance: { - name: "앙갚음", - effect: "기술을 쓰기 전에 마지막으로 받은 기술의 데미지를 늘려서 기술을 쓴 상대에게 돌려준다." - }, - aquaCutter: { - name: "아쿠아커터", - effect: "압력을 가한 물을 칼날처럼 분사해서 상대를 베어 가른다. 급소에 맞기 쉽다." - }, - blazingTorque: { - name: "번액셀", - /* 임의번역 (NPC 전용기) */ - effect: "타오르는 엔진으로 상대에게 부릉거린다. 화상 상태로 만들 때가 있다." - }, - wickedTorque: { - name: "다크액셀", - /* 임의번역 (NPC 전용기) */ - effect: "악의적으로 상대를 향해 부릉거린다. 잠듦 상태로 만들 때가 있다." - }, - noxiousTorque: { - name: "포이즌액셀", - /* 임의번역 (NPC 전용기) */ - effect: "독성 엔진으로 상대에게 부릉거린다. 독 상태로 만들 때가 있다." - }, - combatTorque: { - name: "파이트액셀", - /* 임의번역 (NPC 전용기) */ - effect: "상대를 향해 기세 좋게 부릉거린다. 마비 상태로 만들 때가 있다." - }, - magicalTorque: { - name: "매지컬액셀", - /* 임의번역 (NPC 전용기) */ - effect: "메르헨틱한 엔진으로 상대에게 부릉거린다. 상대를 혼란시킬 때가 있다." - }, - bloodMoon: { - name: "블러드문", - effect: "피와 같이 붉은 보름달에서 혼신의 기백을 발사한다. 이 기술은 2회 연속으로 쓸 수 없다." - }, - matchaGotcha: { - name: "휘적휘적포", - effect: "휘저은 차를 대포처럼 발사해 준 데미지의 절반을 HP로 회복한다. 화상 상태로 만들 때도 있다." - }, - syrupBomb: { - name: "시럽봄", - effect: "끈적끈적한 물엿을 폭발시킨다. 상대를 물엿범벅 상태로 만들어서 3턴 동안 계속 스피드를 떨어뜨린다." - }, - ivyCudgel: { - name: "덩굴방망이", - effect: "덩굴을 휘감은 방망이로 때린다. 쓰고 있는 가면에 따라 타입이 바뀐다. 급소에 맞기 쉽다." - }, - electroShot: { - name: "일렉트로빔", - effect: "1턴째에 전기를 모아서 특수공격을 올리고 2턴째에 고압의 전기를 발사한다. 비가 오는 날씨일 때는 바로 발사할 수 있다." - }, - teraStarstorm: { - name: "테라클러스터", - effect: "결정의 힘을 내리쬐어 적을 없애 버린다. 테라파고스가 스텔라폼일 때 사용하면 모든 상대에게 데미지를 준다." - }, - fickleBeam: { - name: "변덕레이저", - effect: "광선을 발사해서 공격한다. 가끔 다른 머리도 협력해서 레이저를 발사하여 위력이 2배가 된다." - }, - burningBulwark: { - name: "화염의수호", - effect: "상대의 공격을 초고열의 털로 방어하는 동시에 접촉한 상대를 화상 상태로 만든다." - }, - thunderclap: { - name: "질풍신뢰", - effect: "상대보다 먼저 전격을 퍼붓는다. 상대가 쓴 기술이 공격 기술이 아니면 실패한다." - }, - mightyCleave: { - name: "파워풀에지", - effect: "머리에 축적된 빛으로 절단한다. 기술 방어를 무시하고 공격할 수 있다." - }, - tachyonCutter: { - name: "타키온커터", - effect: "입자로 된 칼날을 연이어 발사해서 2회 연속으로 데미지를 준다. 공격은 반드시 명중한다." - }, - hardPress: { - name: "하드프레스", - effect: "팔이나 집게로 상대를 압박한다. 상대의 HP가 남아 있을수록 위력이 올라간다." - }, - dragonCheer: { - name: "드래곤옐", - effect: "용의 북돋움으로 사기를 높여서 같은 편의 기술이 급소에 맞기 쉬워진다. 드래곤타입이면 더욱더 사기가 북돋는다." - }, - alluringVoice: { - name: "매혹의보이스", - effect: "천사와도 같은 노랫소리로 상대를 공격한다. 그 턴에 능력이 올라간 포켓몬을 혼란 상태로 만든다." - }, - temperFlare: { - name: "열불내기", - effect: "자포자기하는 기세로 공격한다. 앞 턴에서 기술이 빗나갔다면 위력이 배가 된다." - }, - supercellSlam: { - name: "썬더다이브", - effect: "몸에 전기를 두르고 상대를 덮친다. 빗나가면 자신이 데미지를 입는다." - }, - psychicNoise: { - name: "사이코노이즈", - effect: "불쾌한 음파를 상대에게 날려서 공격한다. 2턴 동안 상대는 기술이나 특성 또는 지니고 있는 도구로 HP를 회복할 수 없게 된다." - }, - upperHand: { - name: "기선제압", - effect: "움직임에 반응하여 손바닥으로 밀쳐서 상대를 풀죽게 한다. 상대가 쓴 기술이 선제공격 기술이 아니면 실패한다." - }, - malignantChain: { - name: "악독사슬", - effect: "독으로 된 사슬로 상대를 휘감은 뒤 독소를 흘려보내어 해치운다. 맹독 상태로 만들 때가 있다." - } -} as const; diff --git a/src/locales/ko/nature.ts b/src/locales/ko/nature.json similarity index 81% rename from src/locales/ko/nature.ts rename to src/locales/ko/nature.json index 2d7e2ec85f4..5c025f44612 100644 --- a/src/locales/ko/nature.ts +++ b/src/locales/ko/nature.json @@ -1,6 +1,4 @@ -import { SimpleTranslationEntries } from "#app/interfaces/locales"; - -export const nature: SimpleTranslationEntries = { +{ "Hardy": "노력", "Lonely": "외로움", "Brave": "용감", @@ -26,4 +24,4 @@ export const nature: SimpleTranslationEntries = { "Sassy": "건방", "Careful": "신중", "Quirky": "변덕" -} as const; +} \ No newline at end of file diff --git a/src/locales/ko/party-ui-handler.ts b/src/locales/ko/party-ui-handler.json similarity index 90% rename from src/locales/ko/party-ui-handler.ts rename to src/locales/ko/party-ui-handler.json index ff5d81eeb52..468f33bf960 100644 --- a/src/locales/ko/party-ui-handler.ts +++ b/src/locales/ko/party-ui-handler.json @@ -1,6 +1,4 @@ -import { SimpleTranslationEntries } from "#app/interfaces/locales"; - -export const partyUiHandler: SimpleTranslationEntries = { +{ "SEND_OUT": "교체한다", "SUMMARY": "능력치를 본다", "CANCEL": "그만둔다", @@ -17,7 +15,6 @@ export const partyUiHandler: SimpleTranslationEntries = { "UNPAUSE_EVOLUTION": "진화 재개", "REVIVE": "되살린다", "RENAME": "닉네임 바꾸기", - "choosePokemon": "포켓몬을 선택하세요.", "doWhatWithThisPokemon": "포켓몬을 어떻게 하겠습니까?", "noEnergy": "{{pokemonName}}[[는]] 싸울 수 있는\n기력이 남아 있지 않습니다!", @@ -34,13 +31,9 @@ export const partyUiHandler: SimpleTranslationEntries = { "changeQuantity": "건네줄 지닌 도구를 선택해 주십시오.\n< 와 > 로 수량을 변경할 수 있습니다.", "selectAnotherPokemonToSplice": "융합할 포켓몬을 선택해 주십시오.", "cancel": "그만둔다", - - // Slot TM text "able": "배운다!", "notAble": "배우지 못함", "learned": "알고 있다", - - // Releasing messages "goodbye": "잘 가, {{pokemonName}}!", "byebye": "바이바이, {{pokemonName}}!", "farewell": "작별이야, {{pokemonName}}!", @@ -50,5 +43,5 @@ export const partyUiHandler: SimpleTranslationEntries = { "illNeverForgetYou": "잊지 못할거야, {{pokemonName}}!", "untilWeMeetAgain": "다시 만날 때까지, {{pokemonName}}!", "sayonara": "사요나라, {{pokemonName}}!", - "smellYaLater": "또 보자, {{pokemonName}}!", -} as const; + "smellYaLater": "또 보자, {{pokemonName}}!" +} \ No newline at end of file diff --git a/src/locales/ko/pokeball.json b/src/locales/ko/pokeball.json new file mode 100644 index 00000000000..eab6ac91df6 --- /dev/null +++ b/src/locales/ko/pokeball.json @@ -0,0 +1,8 @@ +{ + "pokeBall": "몬스터볼", + "greatBall": "슈퍼볼", + "ultraBall": "하이퍼볼", + "rogueBall": "로그볼", + "masterBall": "마스터볼", + "luxuryBall": "럭셔리볼" +} \ No newline at end of file diff --git a/src/locales/ko/pokeball.ts b/src/locales/ko/pokeball.ts deleted file mode 100644 index 195ae3a3594..00000000000 --- a/src/locales/ko/pokeball.ts +++ /dev/null @@ -1,10 +0,0 @@ -import { SimpleTranslationEntries } from "#app/interfaces/locales"; - -export const pokeball: SimpleTranslationEntries = { - "pokeBall": "몬스터볼", - "greatBall": "슈퍼볼", - "ultraBall": "하이퍼볼", - "rogueBall": "로그볼", - "masterBall": "마스터볼", - "luxuryBall": "럭셔리볼", -} as const; diff --git a/src/locales/ko/pokemon-form-battle.json b/src/locales/ko/pokemon-form-battle.json new file mode 100644 index 00000000000..2dca2b7cf66 --- /dev/null +++ b/src/locales/ko/pokemon-form-battle.json @@ -0,0 +1,14 @@ +{ + "mega": "메가{{pokemonName}}", + "mega-x": "메가{{pokemonName}}X", + "mega-y": "메가{{pokemonName}}Y", + "primal": "원시{{pokemonName}}", + "gigantamax": "거다이맥스 {{pokemonName}}", + "eternamax": "무한다이맥스 {{pokemonName}}", + "megaChange": "{{preName}}[[는]]\n{{pokemonName}}[[로]] 메가진화했다!", + "gigantamaxChange": "{{preName}}[[는]]\n{{pokemonName}}가 되었다!", + "eternamaxChange": "{{preName}}[[는]]\n{{pokemonName}}가 되었다!", + "revertChange": "{{pokemonName}}[[는]]\n원래 모습으로 되돌아왔다!", + "formChange": "{{preName}}[[는]]\n다른 모습으로 변화했다!", + "disguiseChange": "탈이 대타가 되었다!" +} \ No newline at end of file diff --git a/src/locales/ko/pokemon-form.ts b/src/locales/ko/pokemon-form.json similarity index 79% rename from src/locales/ko/pokemon-form.ts rename to src/locales/ko/pokemon-form.json index 9f6b9b08408..885f9a9b891 100644 --- a/src/locales/ko/pokemon-form.ts +++ b/src/locales/ko/pokemon-form.json @@ -1,24 +1,4 @@ -import { SimpleTranslationEntries } from "#app/interfaces/locales"; - -export const battlePokemonForm: SimpleTranslationEntries = { - "mega": "메가{{pokemonName}}", - "mega-x": "메가{{pokemonName}}X", - "mega-y": "메가{{pokemonName}}Y", - "primal": "원시{{pokemonName}}", - "gigantamax": "거다이맥스 {{pokemonName}}", - "eternamax": "무한다이맥스 {{pokemonName}}", - - "megaChange": "{{preName}}[[는]]\n{{pokemonName}}[[로]] 메가진화했다!", - "gigantamaxChange": "{{preName}}[[는]]\n{{pokemonName}}가 되었다!", - "eternamaxChange": "{{preName}}[[는]]\n{{pokemonName}}가 되었다!", - "revertChange": "{{pokemonName}}[[는]]\n원래 모습으로 되돌아왔다!", - "formChange": "{{preName}}[[는]]\n다른 모습으로 변화했다!", - "disguiseChange": "탈이 대타가 되었다!", -} as const; - -export const pokemonForm: SimpleTranslationEntries = { - // Starters forms - // 1G +{ "pikachuCosplay": "옷갈아입기", "pikachuCoolCosplay": "하드록", "pikachuBeautyCosplay": "마담", @@ -27,7 +7,6 @@ export const pokemonForm: SimpleTranslationEntries = { "pikachuToughCosplay": "마스크드", "pikachuPartner": "파트너", "eeveePartner": "파트너", - // 2G "pichuSpiky": "삐쭉귀", "unownA": "A", "unownB": "B", @@ -57,12 +36,10 @@ export const pokemonForm: SimpleTranslationEntries = { "unownZ": "Z", "unownExclamation": "!", "unownQuestion": "?", - // 3G "castformSunny": "태양의 모습", "castformRainy": "빗방울의 모습", "castformSnowy": "설운의 모습", "deoxysNormal": "노말폼", - // 4G "burmyPlant": "초목도롱", "burmySandy": "모래땅도롱", "burmyTrash": "슈레도롱", @@ -75,7 +52,6 @@ export const pokemonForm: SimpleTranslationEntries = { "rotomMow": "커트", "giratinaAltered": "어나더폼", "shayminLand": "랜드폼", - // 5G "basculinRedStriped": "적색근의 모습", "basculinBlueStriped": "청색근의 모습", "basculinWhiteStriped": "백색근의 모습", @@ -88,7 +64,7 @@ export const pokemonForm: SimpleTranslationEntries = { "landorusIncarnate": "화신폼", "keldeoOrdinary": "평상시 모습", "meloettaAria": "보이스폼", - // 6G + "meloettaPirouette": "스텝폼", "froakieBattleBond": "유대변화", "scatterbugMeadow": "화원의 모양", "scatterbugIcySnow": "빙설의 모양", @@ -134,7 +110,6 @@ export const pokemonForm: SimpleTranslationEntries = { "zygarde50Pc": "스웜체인지 50%폼", "zygarde10Pc": "스웜체인지 10%폼", "zygardeComplete": "퍼펙트폼", - // 7G "oricorioBaile": "이글이글스타일", "oricorioPompom": "파칙파칙스타일", "oricorioPau": "훌라훌라스타일", @@ -158,7 +133,6 @@ export const pokemonForm: SimpleTranslationEntries = { "mimikyuBusted": "들킨 모습", "magearnaOriginal": "500년 전의 색", "marshadowZenith": "투지를 불태운 마샤도", - // 8G "sinisteaPhony": "위작품", "sinisteaAntique": "진작품", "eiscueNoIce": "나이스페이스", @@ -169,7 +143,6 @@ export const pokemonForm: SimpleTranslationEntries = { "zamazentaHeroOfManyBattles": "역전의 용사", "zarudeDada": "아빠", "enamorusIncarnate": "화신폼", - // 9G "squawkabillyGreenPlumage": "그린 페더", "squawkabillyBluePlumage": "블루 페더", "squawkabillyYellowPlumage": "옐로 페더", @@ -180,19 +153,18 @@ export const pokemonForm: SimpleTranslationEntries = { "gimmighoulChest": "상자폼", "gimmighoulRoaming": "도보폼", "koraidonApexBuild": "완전형태", - "koraidonLimitedBuild":"제한형태", - "koraidonSprintingBuild":"질주형태", - "koraidonSwimmingBuild":"유영형태", - "koraidonGlidingBuild":"활공형태", - "miraidonUltimateMode":"컴플리트모드", - "miraidonLowPowerMode":"리미티드모드", - "miraidonDriveMode":"드라이브모드", - "miraidonAquaticMode":"플로트모드", - "miraidonGlideMode":"글라이드모드", + "koraidonLimitedBuild": "제한형태", + "koraidonSprintingBuild": "질주형태", + "koraidonSwimmingBuild": "유영형태", + "koraidonGlidingBuild": "활공형태", + "miraidonUltimateMode": "컴플리트모드", + "miraidonLowPowerMode": "리미티드모드", + "miraidonDriveMode": "드라이브모드", + "miraidonAquaticMode": "플로트모드", + "miraidonGlideMode": "글라이드모드", "poltchageistCounterfeit": "가짜배기의 모습", "poltchageistArtisan": "알짜배기의 모습", "paldeaTaurosCombat": "컴뱃종", "paldeaTaurosBlaze": "블레이즈종", - "paldeaTaurosAqua": "워터종", - -} as const; + "paldeaTaurosAqua": "워터종" +} \ No newline at end of file diff --git a/src/locales/ko/pokemon-info-container.json b/src/locales/ko/pokemon-info-container.json new file mode 100644 index 00000000000..95e44212e03 --- /dev/null +++ b/src/locales/ko/pokemon-info-container.json @@ -0,0 +1,7 @@ +{ + "moveset": "기술", + "gender": "성별:", + "ability": "특성:", + "nature": "성격:", + "form": "폼:" +} \ No newline at end of file diff --git a/src/locales/ko/pokemon-info-container.ts b/src/locales/ko/pokemon-info-container.ts deleted file mode 100644 index 80a0d59addd..00000000000 --- a/src/locales/ko/pokemon-info-container.ts +++ /dev/null @@ -1,9 +0,0 @@ -import { SimpleTranslationEntries } from "#app/interfaces/locales"; - -export const pokemonInfoContainer: SimpleTranslationEntries = { - "moveset": "기술", - "gender": "성별:", - "ability": "특성:", - "nature": "성격:", - "form": "폼:" -} as const; diff --git a/src/locales/ko/pokemon-info.ts b/src/locales/ko/pokemon-info.json similarity index 78% rename from src/locales/ko/pokemon-info.ts rename to src/locales/ko/pokemon-info.json index 89d1742f437..1e26af64d0f 100644 --- a/src/locales/ko/pokemon-info.ts +++ b/src/locales/ko/pokemon-info.json @@ -1,7 +1,5 @@ -import { PokemonInfoTranslationEntries } from "#app/interfaces/locales"; - -export const pokemonInfo: PokemonInfoTranslationEntries = { - Stat: { +{ + "Stat": { "HP": "HP", "HPshortened": "HP", "ATK": "공격", @@ -15,10 +13,10 @@ export const pokemonInfo: PokemonInfoTranslationEntries = { "SPD": "스피드", "SPDshortened": "스피드", "ACC": "명중률", - "EVA": "회피율" + "EVA": "회피율", + "HPStat": "HP" }, - - Type: { + "Type": { "UNKNOWN": "Unknown", "NORMAL": "노말", "FIGHTING": "격투", @@ -38,6 +36,6 @@ export const pokemonInfo: PokemonInfoTranslationEntries = { "DRAGON": "드래곤", "DARK": "악", "FAIRY": "페어리", - "STELLAR": "스텔라", - }, -} as const; + "STELLAR": "스텔라" + } +} diff --git a/src/locales/ko/pokemon-summary.json b/src/locales/ko/pokemon-summary.json new file mode 100644 index 00000000000..d9119623662 --- /dev/null +++ b/src/locales/ko/pokemon-summary.json @@ -0,0 +1,44 @@ +{ + "pokemonInfo": "스테이터스", + "status": "상태 이상", + "powerAccuracyCategory": "위력\n명중\n분류", + "type": "타입", + "unknownTrainer": "알수없음", + "ot": "어버이", + "nature": "성격", + "expPoints": "현재 경험치", + "nextLv": "다음 레벨까지", + "cancel": "그만둔다", + "memoString": "{{natureFragment}}.\n{{metFragment}}", + "metFragment": { + "normal": "{{biome}}에서\n레벨 {{level}}일 때 만났다.", + "apparently": "{{biome}}에서\n레벨 {{level}}일 때 만난 것 같다." + }, + "natureFragment": { + "Hardy": "{{nature}}하는 성격", + "Lonely": "{{nature}}을 타는 성격", + "Brave": "{{nature}}한 성격", + "Adamant": "{{nature}}스러운 성격", + "Naughty": "{{nature}}같은 성격", + "Bold": "{{nature}}한 성격", + "Docile": "{{nature}}한 성격", + "Relaxed": "{{nature}}한 성격", + "Impish": "{{nature}}같은 성격", + "Lax": "{{nature}}거리는 성격", + "Timid": "{{nature}}같은 성격", + "Hasty": "{{nature}}한 성격", + "Serious": "{{nature}}한 성격", + "Jolly": "{{nature}}한 성격", + "Naive": "{{nature}}한 성격", + "Modest": "{{nature}}스러운 성격", + "Mild": "{{nature}}한 성격", + "Quiet": "{{nature}}한 성격", + "Bashful": "{{nature}}을 타는 성격", + "Rash": "{{nature}}거리는 성격", + "Calm": "{{nature}}한 성격", + "Gentle": "{{nature}}한 성격", + "Sassy": "{{nature}}진 성격", + "Careful": "{{nature}}한 성격", + "Quirky": "{{nature}}스러운 성격" + } +} diff --git a/src/locales/ko/pokemon-summary.ts b/src/locales/ko/pokemon-summary.ts deleted file mode 100644 index 029588a7cf2..00000000000 --- a/src/locales/ko/pokemon-summary.ts +++ /dev/null @@ -1,47 +0,0 @@ -import { TranslationEntries } from "#app/interfaces/locales"; - -export const pokemonSummary: TranslationEntries = { - "pokemonInfo": "스테이터스", - "status": "상태 이상", - "powerAccuracyCategory": "위력\n명중\n분류", - "type": "타입", - "unknownTrainer": "알수없음", - "ot": "어버이", - "nature": "성격", - "expPoints": "현재 경험치", - "nextLv": "다음 레벨까지", - "cancel": "그만둔다", - - "memoString": "{{natureFragment}}.\n{{metFragment}}", - "metFragment": { - "normal": "{{biome}}에서\nLv{{level}}일 때 만났다.", - "apparently": "{{biome}}에서\nLv{{level}}일 때 만난 것 같다.", - }, - "natureFragment": { - "Hardy": "{{nature}}하는 성격", - "Lonely": "{{nature}}을 타는 성격", - "Brave": "{{nature}}한 성격", - "Adamant": "{{nature}}스러운 성격", - "Naughty" : "{{nature}}같은 성격", - "Bold" : "{{nature}}한 성격", - "Docile" : "{{nature}}한 성격", - "Relaxed" : "{{nature}}한 성격", - "Impish" : "{{nature}}같은 성격", - "Lax" : "{{nature}}거리는 성격", - "Timid" : "{{nature}}같은 성격", - "Hasty" : "{{nature}}한 성격", - "Serious" : "{{nature}}한 성격", - "Jolly" : "{{nature}}한 성격", - "Naive" : "{{nature}}한 성격", - "Modest" : "{{nature}}스러운 성격", - "Mild" : "{{nature}}한 성격", - "Quiet" : "{{nature}}한 성격", - "Bashful" : "{{nature}}을 타는 성격", - "Rash" : "{{nature}}거리는 성격", - "Calm" : "{{nature}}한 성격", - "Gentle" : "{{nature}}한 성격", - "Sassy" : "{{nature}}진 성격", - "Careful" : "{{nature}}한 성격", - "Quirky": "{{nature}}스러운 성격", - }, -} as const; diff --git a/src/locales/ko/pokemon.ts b/src/locales/ko/pokemon.json similarity index 99% rename from src/locales/ko/pokemon.ts rename to src/locales/ko/pokemon.json index 68eae6b9ca6..d419c3397b2 100644 --- a/src/locales/ko/pokemon.ts +++ b/src/locales/ko/pokemon.json @@ -1,6 +1,4 @@ -import { SimpleTranslationEntries } from "#app/interfaces/locales"; - -export const pokemon: SimpleTranslationEntries = { +{ "bulbasaur": "이상해씨", "ivysaur": "이상해풀", "venusaur": "이상해꽃", @@ -1083,4 +1081,4 @@ export const pokemon: SimpleTranslationEntries = { "paldea_tauros": "켄타로스", "paldea_wooper": "우파", "bloodmoon_ursaluna": "다투곰" -} as const; +} \ No newline at end of file diff --git a/src/locales/ko/run-history.json b/src/locales/ko/run-history.json new file mode 100644 index 00000000000..dbf50efc632 --- /dev/null +++ b/src/locales/ko/run-history.json @@ -0,0 +1,37 @@ +{ + "victory": "승리!", + "defeatedWild": "야생에서 패배: ", + "defeatedTrainer": "트레이너에게 패배: ", + "defeatedTrainerDouble": "더블 배틀에서 패배", + "defeatedRival": "라이벌에게 패배", + "defeated": "패배", + "defeatedWild_female": "야생에서 패배: ", + "defeatedTrainer_female": "트레이너에게 패배: ", + "defeatedTrainerDouble_female": "더블 배틀에서 패배", + "defeatedRival_female": "라이벌에게 패배", + "defeated_female": "패배", + "luck": "행운", + "score": "점수", + "mode": "모드", + "challengeRules": "규칙", + "challengeMonoGen1": "1세대", + "challengeMonoGen2": "2세대", + "challengeMonoGen3": "3세대", + "challengeMonoGen4": "4세대", + "challengeMonoGen5": "5세대", + "challengeMonoGen6": "6세대", + "challengeMonoGen7": "7세대", + "challengeMonoGen8": "8세대", + "challengeMonoGen9": "9세대", + "playerItems": "플레이어 아이템", + "personalBest": "개인 최고기록!", + "SPDshortened": "스피드", + "runInfo": "플레이 정보", + "money": "소지금", + "runLength": "플레이 타임", + "viewHeldItems": "도구", + "hallofFameText": "전당 등록을 축하합니다!", + "hallofFameText_female": "전당 등록을 축하합니다!", + "viewHallOfFame": "전당 보기", + "viewEndingSplash": "엔딩 화면 보기" +} diff --git a/src/locales/ko/save-slot-select-ui-handler.json b/src/locales/ko/save-slot-select-ui-handler.json new file mode 100644 index 00000000000..f3f18ea9ecc --- /dev/null +++ b/src/locales/ko/save-slot-select-ui-handler.json @@ -0,0 +1,7 @@ +{ + "overwriteData": "선택한 슬롯에 데이터를 덮어쓰시겠습니까?", + "loading": "로딩 중...", + "wave": "웨이브", + "lv": "Lv", + "empty": "빈 슬롯" +} \ No newline at end of file diff --git a/src/locales/ko/save-slot-select-ui-handler.ts b/src/locales/ko/save-slot-select-ui-handler.ts deleted file mode 100644 index 29f77cd325f..00000000000 --- a/src/locales/ko/save-slot-select-ui-handler.ts +++ /dev/null @@ -1,9 +0,0 @@ -import { SimpleTranslationEntries } from "#app/interfaces/locales"; - -export const saveSlotSelectUiHandler: SimpleTranslationEntries = { - "overwriteData": "선택한 슬롯에 데이터를 덮어쓰시겠습니까?", - "loading": "로딩 중...", - "wave": "웨이브", - "lv": "Lv", - "empty": "빈 슬롯", -} as const; diff --git a/src/locales/ko/settings.ts b/src/locales/ko/settings.json similarity index 92% rename from src/locales/ko/settings.ts rename to src/locales/ko/settings.json index aa4adfc4e41..b7fc01cb148 100644 --- a/src/locales/ko/settings.ts +++ b/src/locales/ko/settings.json @@ -1,6 +1,4 @@ -import { SimpleTranslationEntries } from "#app/interfaces/locales.js"; - -export const settings: SimpleTranslationEntries = { +{ "boy": "남자", "girl": "여자", "general": "일반", @@ -63,7 +61,9 @@ export const settings: SimpleTranslationEntries = { "typeHints": "상성 힌트", "masterVolume": "마스터 볼륨", "bgmVolume": "BGM 볼륨", + "fieldVolume": "전투효과 볼륨", "seVolume": "SE 볼륨", + "uiVolume": "UI 볼륨", "musicPreference": "음악 설정", "mixed": "믹스", "gamepadPleasePlug": "게임패드를 연결하거나 버튼을 입력하세요", @@ -98,5 +98,10 @@ export const settings: SimpleTranslationEntries = { "gamepadSupport": "게임패드 지원", "showBgmBar": "BGM 제목 보여주기", "moveTouchControls": "터치 컨트롤 이동", - "shopOverlayOpacity": "상점 오버레이 투명도" -} as const; + "shopOverlayOpacity": "상점 오버레이 투명도", + "shopCursorTarget": "상점 커서 위치", + "items": "아이템", + "reroll": "갱신", + "shop": "상점", + "checkTeam": "파티 확인" +} diff --git a/src/locales/ko/splash-messages.ts b/src/locales/ko/splash-messages.json similarity index 92% rename from src/locales/ko/splash-messages.ts rename to src/locales/ko/splash-messages.json index 1e364f9c098..6cf7ce050b7 100644 --- a/src/locales/ko/splash-messages.ts +++ b/src/locales/ko/splash-messages.json @@ -1,6 +1,4 @@ -import { SimpleTranslationEntries } from "#app/interfaces/locales"; - -export const splashMessages: SimpleTranslationEntries = { +{ "battlesWon": "전투에서 승리하세요!", "joinTheDiscord": "디스코드에 가입하세요!", "infiniteLevels": "무한한 레벨!", @@ -34,5 +32,5 @@ export const splashMessages: SimpleTranslationEntries = { "alsoTryRadicalRed": "Radical Red도 해봐요!", "eeveeExpo": "Eevee Expo!", "ynoproject": "YNOproject!", - "breedersInSpace": "충격!우주에 브리더 진짜 계심ㄷㄷ", -} as const; + "breedersInSpace": "충격!우주에 브리더 진짜 계심ㄷㄷ" +} \ No newline at end of file diff --git a/src/locales/ko/starter-select-ui-handler.ts b/src/locales/ko/starter-select-ui-handler.json similarity index 79% rename from src/locales/ko/starter-select-ui-handler.ts rename to src/locales/ko/starter-select-ui-handler.json index 9a33f8f1baf..a8419800d9d 100644 --- a/src/locales/ko/starter-select-ui-handler.ts +++ b/src/locales/ko/starter-select-ui-handler.json @@ -1,11 +1,4 @@ -import { SimpleTranslationEntries } from "#app/interfaces/locales"; - -/** - * The menu namespace holds most miscellaneous text that isn't directly part of the game's - * contents or directly related to Pokemon data. This includes menu navigation, settings, - * account interactions, descriptive text, etc. - */ -export const starterSelectUiHandler: SimpleTranslationEntries = { +{ "confirmStartTeam": "이 포켓몬들로 시작하시겠습니까?", "confirmExit": "나가시겠습니까?", "invalidParty": "스타팅 포켓몬 파티에 적합하지 않습니다!", @@ -48,5 +41,5 @@ export const starterSelectUiHandler: SimpleTranslationEntries = { "disablePassive": "패시브 비활성화", "locked": "잠김", "disabled": "비활성", - "uncaught": "미등록", -}; + "uncaught": "미등록" +} \ No newline at end of file diff --git a/src/locales/ko/status-effect.json b/src/locales/ko/status-effect.json new file mode 100644 index 00000000000..d65243a8a24 --- /dev/null +++ b/src/locales/ko/status-effect.json @@ -0,0 +1,65 @@ +{ + "none": { + "name": "없음", + "description": "", + "obtain": "", + "obtainSource": "", + "activation": "", + "overlap": "", + "heal": "" + }, + "poison": { + "name": "독", + "description": "독", + "obtain": "{{pokemonNameWithAffix}}의\n몸에 독이 퍼졌다!", + "obtainSource": "{{pokemonNameWithAffix}}[[는]]\n{{sourceText}} 때문에 몸에 독이 퍼졌다!", + "activation": "{{pokemonNameWithAffix}}[[는]]\n독에 의한 데미지를 입었다!", + "overlap": "{{pokemonNameWithAffix}}[[는]] 이미\n몸에 독이 퍼진 상태다.", + "heal": "{{pokemonNameWithAffix}}의 독은\n말끔하게 해독됐다!" + }, + "toxic": { + "name": "맹독", + "description": "독", + "obtain": "{{pokemonNameWithAffix}}의\n몸에 맹독이 퍼졌다!", + "obtainSource": "{{pokemonNameWithAffix}}[[는]]\n{{sourceText}} 때문에 몸에 맹독이 퍼졌다!", + "activation": "{{pokemonNameWithAffix}}[[는]]\n독에 의한 데미지를 입었다!", + "overlap": "{{pokemonNameWithAffix}}[[는]] 이미\n몸에 독이 퍼진 상태다.", + "heal": "{{pokemonNameWithAffix}}의 독은\n말끔하게 해독됐다!" + }, + "paralysis": { + "name": "마비", + "description": "마비", + "obtain": "{{pokemonNameWithAffix}}[[는]] 마비되어\n기술이 나오기 어려워졌다!", + "obtainSource": "{{pokemonNameWithAffix}}[[는]] {{sourceText}} 때문에\n마비되어 기술이 나오기 어려워졌다!", + "activation": "{{pokemonNameWithAffix}}[[는]]\n몸이 저려서 움직일 수 없다!", + "overlap": "{{pokemonNameWithAffix}}[[는]]\n이미 마비되어 있다!", + "heal": "{{pokemonNameWithAffix}}의\n몸저림이 풀렸다!" + }, + "sleep": { + "name": "잠듦", + "description": "잠듦", + "obtain": "{{pokemonNameWithAffix}}[[는]]\n잠들어 버렸다!", + "obtainSource": "{{pokemonNameWithAffix}}[[는]]\n{{sourceText}} 때문에 잠들어 버렸다!", + "activation": "{{pokemonNameWithAffix}}[[는]]\n쿨쿨 잠들어 있다.", + "overlap": "{{pokemonNameWithAffix}}[[는]]\n이미 잠들어 있다.", + "heal": "{{pokemonNameWithAffix}}[[는]]\n눈을 떴다!" + }, + "freeze": { + "name": "얼음", + "description": "얼음", + "obtain": "{{pokemonNameWithAffix}}[[는]]\n얼어붙었다!", + "obtainSource": "{{pokemonNameWithAffix}}[[는]]\n{{sourceText}} 때문에 얼어붙었다!", + "activation": "{{pokemonNameWithAffix}}[[는]]\n얼어 버려서 움직일 수 없다!", + "overlap": "{{pokemonNameWithAffix}}[[는]]\n이미 얼어 있다.", + "heal": "{{pokemonNameWithAffix}}의\n얼음 상태가 나았다!" + }, + "burn": { + "name": "화상", + "description": "화상", + "obtain": "{{pokemonNameWithAffix}}[[는]]\n화상을 입었다!", + "obtainSource": "{{pokemonNameWithAffix}}[[는]]\n{{sourceText}} 때문에 화상을 입었다!", + "activation": "{{pokemonNameWithAffix}}[[는]]\n화상 데미지를 입었다!", + "overlap": "{{pokemonNameWithAffix}}[[는]] 이미\n화상을 입은 상태다.", + "heal": "{{pokemonNameWithAffix}}의\n화상이 나았다!" + } +} \ No newline at end of file diff --git a/src/locales/ko/status-effect.ts b/src/locales/ko/status-effect.ts deleted file mode 100644 index c4e0ab52722..00000000000 --- a/src/locales/ko/status-effect.ts +++ /dev/null @@ -1,67 +0,0 @@ -import { StatusEffectTranslationEntries } from "#app/interfaces/locales.js"; - -export const statusEffect: StatusEffectTranslationEntries = { - none: { - name: "없음", - description: "", - obtain: "", - obtainSource: "", - activation: "", - overlap: "", - heal: "" - }, - poison: { - name: "독", - description: "독", - obtain: "{{pokemonNameWithAffix}}의\n몸에 독이 퍼졌다!", - obtainSource: "{{pokemonNameWithAffix}}[[는]]\n{{sourceText}} 때문에 몸에 독이 퍼졌다!", - activation: "{{pokemonNameWithAffix}}[[는]]\n독에 의한 데미지를 입었다!", - overlap: "{{pokemonNameWithAffix}}[[는]] 이미\n몸에 독이 퍼진 상태다.", - heal: "{{pokemonNameWithAffix}}의 독은\n말끔하게 해독됐다!" - }, - toxic: { - name: "맹독", - description: "독", - obtain: "{{pokemonNameWithAffix}}의\n몸에 맹독이 퍼졌다!", - obtainSource: "{{pokemonNameWithAffix}}[[는]]\n{{sourceText}} 때문에 몸에 맹독이 퍼졌다!", - activation: "{{pokemonNameWithAffix}}[[는]]\n독에 의한 데미지를 입었다!", - overlap: "{{pokemonNameWithAffix}}[[는]] 이미\n몸에 독이 퍼진 상태다.", - heal: "{{pokemonNameWithAffix}}의 독은\n말끔하게 해독됐다!" - }, - paralysis: { - name: "마비", - description: "마비", - obtain: "{{pokemonNameWithAffix}}[[는]] 마비되어\n기술이 나오기 어려워졌다!", - obtainSource: "{{pokemonNameWithAffix}}[[는]] {{sourceText}} 때문에\n마비되어 기술이 나오기 어려워졌다!", - activation: "{{pokemonNameWithAffix}}[[는]]\n몸이 저려서 움직일 수 없다!", - overlap: "{{pokemonNameWithAffix}}[[는]]\n이미 마비되어 있다!", - heal: "{{pokemonNameWithAffix}}의\n몸저림이 풀렸다!" - }, - sleep: { - name: "잠듦", - description: "잠듦", - obtain: "{{pokemonNameWithAffix}}[[는]]\n잠들어 버렸다!", - obtainSource: "{{pokemonNameWithAffix}}[[는]]\n{{sourceText}} 때문에 잠들어 버렸다!", - activation: "{{pokemonNameWithAffix}}[[는]]\n쿨쿨 잠들어 있다.", - overlap: "{{pokemonNameWithAffix}}[[는]]\n이미 잠들어 있다.", - heal: "{{pokemonNameWithAffix}}[[는]]\n눈을 떴다!" - }, - freeze: { - name: "얼음", - description: "얼음", - obtain: "{{pokemonNameWithAffix}}[[는]]\n얼어붙었다!", - obtainSource: "{{pokemonNameWithAffix}}[[는]]\n{{sourceText}} 때문에 얼어붙었다!", - activation: "{{pokemonNameWithAffix}}[[는]]\n얼어 버려서 움직일 수 없다!", - overlap: "{{pokemonNameWithAffix}}[[는]]\n이미 얼어 있다.", - heal: "{{pokemonNameWithAffix}}의\n얼음 상태가 나았다!" - }, - burn: { - name: "화상", - description: "화상", - obtain: "{{pokemonNameWithAffix}}[[는]]\n화상을 입었다!", - obtainSource: "{{pokemonNameWithAffix}}[[는]]\n{{sourceText}} 때문에 화상을 입었다!", - activation: "{{pokemonNameWithAffix}}[[는]]\n화상 데미지를 입었다!", - overlap: "{{pokemonNameWithAffix}}[[는]] 이미\n화상을 입은 상태다.", - heal: "{{pokemonNameWithAffix}}의\n화상이 나았다!" - }, -} as const; diff --git a/src/locales/ko/terrain.json b/src/locales/ko/terrain.json new file mode 100644 index 00000000000..b0229b88d39 --- /dev/null +++ b/src/locales/ko/terrain.json @@ -0,0 +1,16 @@ +{ + "misty": "미스트필드", + "mistyStartMessage": "발밑이 안개로 자욱해졌다!", + "mistyClearMessage": "발밑의 안개가 사라졌다!", + "mistyBlockMessage": "{{pokemonNameWithAffix}}[[를]]\n미스트필드가 지켜주고 있다!", + "electric": "일렉트릭필드", + "electricStartMessage": "발밑에 전기가 흐르기 시작했다!", + "electricClearMessage": "발밑의 전기가 사라졌다!", + "grassy": "그래스필드", + "grassyStartMessage": "발밑에 풀이 무성해졌다!", + "grassyClearMessage": "발밑의 풀이 사라졌다!", + "psychic": "사이코필드", + "psychicStartMessage": "발밑에서 이상한 느낌이 든다!", + "psychicClearMessage": "발밑의 이상한 느낌이 사라졌다!", + "defaultBlockMessage": "{{pokemonNameWithAffix}}[[를]]\n{{terrainName}}[[가]] 지켜주고 있다!" +} \ No newline at end of file diff --git a/src/locales/ko/trainer-classes.json b/src/locales/ko/trainer-classes.json new file mode 100644 index 00000000000..da6c6f4aceb --- /dev/null +++ b/src/locales/ko/trainer-classes.json @@ -0,0 +1,130 @@ +{ + "ace_trainer": "엘리트 트레이너", + "ace_trainer_female": "엘리트 트레이너", + "ace_duo": "엘리트 콤비", + "artist": "예술가", + "artist_female": "예술가", + "backers": "팬클럽", + "backpacker": "백팩커", + "backpacker_female": "백팩커", + "backpackers": "백팩커", + "baker": "제빵사", + "battle_girl": "배틀걸", + "beauty": "아가씨", + "beginners": "반바지 꼬마 & 짧은 치마", + "biker": "폭주족", + "black_belt": "태권왕", + "breeder": "포켓몬 브리더", + "breeder_female": "포켓몬 브리더", + "breeders": "포켓몬 브리더", + "clerk": "비즈니스맨", + "clerk_female": "여사원", + "colleagues": "비즈니스 파트너", + "crush_kin": "배틀 커플", + "cyclist": "사이클링", + "cyclist_female": "사이클링", + "cyclists": "사이클링", + "dancer": "댄서", + "dancer_female": "댄서", + "depot_agent": "역무원", + "doctor": "의사", + "doctor_female": "간호사", + "firebreather": "불놀이꾼", + "fisherman": "낚시꾼", + "fisherman_female": "낚시꾼", + "gentleman": "신사", + "guitarist": "기타리스트", + "guitarist_female": "기타리스트", + "harlequin": "어릿광대", + "hiker": "등산가", + "hooligans": "폭주족 & 빡빡이", + "hoopster": "농구선수", + "infielder": "야구선수", + "janitor": "청소부", + "lady": "아기씨", + "lass": "짧은 치마", + "linebacker": "미식축구선수", + "maid": "메이드", + "madame": "마담", + "medical_team": "의료팀", + "musician": "뮤지션", + "hex_maniac": "오컬트마니아", + "nurse": "간호사", + "nursery_aide": "보육사", + "officer": "경찰관", + "parasol_lady": "파라솔 아가씨", + "pilot": "파일럿", + "pokéfan": "애호가클럽", + "pokéfan_female": "애호가클럽", + "pokéfan_family": "애호가부부", + "preschooler": "보육원아", + "preschooler_female": "보육원아", + "preschoolers": "보육원아", + "psychic": "초능력자", + "psychic_female": "초능력자", + "psychics": "초능력자", + "pokémon_ranger": "포켓몬 레인저", + "pokémon_ranger_female": "포켓몬 레인저", + "pokémon_rangers": "포켓몬 레인저", + "ranger": "포켓몬 레인저", + "restaurant_staff": "레스토랑 직원", + "rich": "신사", + "rich_female": "마담", + "rich_boy": "도련님", + "rich_couple": "신사 & 마담", + "rich_kid": "도련님", + "rich_kid_female": "아가씨", + "rich_kids": "도련님 & 아가씨", + "roughneck": "빡빡이", + "scientist": "연구원", + "scientist_female": "연구원", + "scientists": "연구원", + "smasher": "테니스선수", + "snow_worker": "작업원", + "snow_worker_female": "작업원", + "sailor": "선원", + "striker": "축구선수", + "school_kid": "학원끝난 아이", + "school_kid_female": "학원끝난 아이", + "school_kids": "학원끝난 아이", + "swimmer": "수영팬티 소년", + "swimmer_female": "비키니 아가씨", + "swimmers": "수영팬티 소년 & 비키니 아가씨", + "twins": "쌍둥이", + "veteran": "베테랑 트레이너", + "veteran_female": "베테랑 트레이너", + "veteran_duo": "베테랑 콤비", + "waiter": "웨이터", + "waitress": "웨이트리스", + "worker": "작업원", + "worker_female": "작업원", + "workers": "작업원", + "youngster": "반바지 꼬마", + "rocket_grunt": "로켓단 조무래기", + "rocket_grunt_female": "로켓단 조무래기", + "rocket_grunts": "로켓단 조무래기들", + "magma_grunt": "마그마단 조무래기", + "magma_grunt_female": "마그마단 조무래기", + "magma_grunts": "마그마단 조무래기들", + "aqua_grunt": "아쿠아단 조무래기", + "aqua_grunt_female": "아쿠아단 조무래기", + "aqua_grunts": "아쿠아단 조무래기들", + "galactic_grunt": "갤럭시단 조무래기", + "galactic_grunt_female": "갤럭시단 조무래기", + "galactic_grunts": "갤럭시단 조무래기들", + "plasma_grunt": "플라스마단 조무래기", + "plasma_grunt_female": "플라스마단 조무래기", + "plasma_grunts": "플라스마단 조무래기들", + "flare_grunt": "플레어단 조무래기", + "flare_grunt_female": "플레어단 조무래기", + "flare_grunts": "플레어단 조무래기들", + "aether_grunt": "에테르재단 직원", + "aether_grunt_female": "에테르재단 직원", + "aether_grunts": "에테르재단 직원들", + "skull_grunt": "스컬단 조무래기", + "skull_grunt_female": "스컬단 조무래기", + "skull_grunts": "스컬단 조무래기들", + "macro_grunt": "매크로코스모스 직원", + "macro_grunt_female": "매크로코스모스 직원", + "macro_grunts": "매크로코스모스 직원들" +} diff --git a/src/locales/ko/trainer-names.json b/src/locales/ko/trainer-names.json new file mode 100644 index 00000000000..f1357a428ba --- /dev/null +++ b/src/locales/ko/trainer-names.json @@ -0,0 +1,164 @@ +{ + "brock": "웅", + "misty": "이슬", + "lt_surge": "마티스", + "erika": "민화", + "janine": "도희", + "sabrina": "초련", + "blaine": "강연", + "giovanni": "비주기", + "falkner": "비상", + "bugsy": "호일", + "whitney": "꼭두", + "morty": "유빈", + "chuck": "사도", + "jasmine": "규리", + "pryce": "류옹", + "clair": "이향", + "roxanne": "원규", + "brawly": "철구", + "wattson": "암페어", + "flannery": "민지", + "norman": "종길", + "winona": "은송", + "tate": "풍", + "liza": "란", + "juan": "아단", + "roark": "강석", + "gardenia": "유채", + "maylene": "자두", + "crasher_wake": "맥실러", + "fantina": "멜리사", + "byron": "동관", + "candice": "무청", + "volkner": "전진", + "cilan": "덴트", + "chili": "팟", + "cress": "콘", + "cheren": "체렌", + "lenora": "알로에", + "roxie": "보미카", + "burgh": "아티", + "elesa": "카밀레", + "clay": "야콘", + "skyla": "풍란", + "brycen": "담죽", + "drayden": "사간", + "marlon": "시즈", + "viola": "비올라", + "grant": "자크로", + "korrina": "코르니", + "ramos": "후쿠지", + "clemont": "시트론", + "valerie": "마슈", + "olympia": "고지카", + "wulfric": "우르프", + "milo": "아킬", + "nessa": "야청", + "kabu": "순무", + "bea": "채두", + "allister": "어니언", + "opal": "포플러", + "bede": "비트", + "gordie": "마쿠와", + "melony": "멜론", + "piers": "두송", + "marnie": "마리", + "raihan": "금랑", + "katy": "단풍", + "brassius": "콜사", + "iono": "모야모", + "kofu": "곤포", + "larry": "청목", + "ryme": "라임", + "tulip": "리파", + "grusha": "그루샤", + "lorelei": "칸나", + "bruno": "시바", + "agatha": "국화", + "lance": "목호", + "will": "일목", + "koga": "독수", + "karen": "카렌", + "sidney": "혁진", + "phoebe": "회연", + "glacia": "미혜", + "drake": "권수", + "aaron": "충호", + "bertha": "들국화", + "flint": "대엽", + "lucian": "오엽", + "shauntal": "망초", + "marshal": "연무", + "grimsley": "블래리", + "caitlin": "카틀레야", + "malva": "파키라", + "siebold": "즈미", + "wikstrom": "간피", + "drasna": "드라세나", + "hala": "할라", + "molayne": "멀레인", + "olivia": "라이치", + "acerola": "아세로라", + "kahili": "카일리", + "rika": "칠리", + "poppy": "뽀삐", + "hassel": "팔자크", + "crispin": "하솔", + "amarys": "네리네", + "lacey": "타로", + "drayton": "제빈", + "blue": "그린", + "red": "레드", + "steven": "성호", + "wallace": "윤진", + "cynthia": "난천", + "alder": "노간주", + "iris": "아이리스", + "diantha": "카르네", + "hau": "하우", + "geeta": "테사", + "nemona": "네모", + "kieran": "카지", + "leon": "단델", + "rival": "핀", + "rival_female": "아이비", + "archer": "아폴로", + "ariana": "아테나", + "proton": "랜스", + "petrel": "람다", + "tabitha": "호걸", + "courtney": "구열", + "shelly": "이연", + "matt": "해조", + "mars": "마스", + "jupiter": "주피터", + "saturn": "새턴", + "zinzolin": "비오", + "rood": "로트", + "xerosic": "크세로시키", + "bryony": "바라", + "faba": "자우보", + "plumeria": "플루메리", + "oleana": "올리브", + + "maxie": "마적", + "archie": "아강", + "cyrus": "태홍", + "ghetsis": "게치스", + "lysandre": "플라드리", + "lusamine": "루자미네", + "guzma": "구즈마", + "rose": "로즈", + + "blue_red_double": "그린 & 레드", + "red_blue_double": "레드 & 그린", + "tate_liza_double": "풍 & 란", + "liza_tate_double": "란 & 풍", + "steven_wallace_double": "성호 & 윤진", + "wallace_steven_double": "윤진 & 성호", + "alder_iris_double": "노간주 & 아이리스", + "iris_alder_double": "아이리스 & 노간주", + "marnie_piers_double": "마리 & 두송", + "piers_marnie_double": "두송 & 마리" +} diff --git a/src/locales/ko/trainer-titles.json b/src/locales/ko/trainer-titles.json new file mode 100644 index 00000000000..7cff2207817 --- /dev/null +++ b/src/locales/ko/trainer-titles.json @@ -0,0 +1,38 @@ +{ + "elite_four": "사천왕", + "elite_four_female": "사천왕", + "gym_leader": "체육관 관장", + "gym_leader_female": "체육관 관장", + "gym_leader_double": "체육관 관장 듀오", + "champion": "챔피언", + "champion_female": "챔피언", + "champion_double": "챔피언 듀오", + "rival": "라이벌", + "professor": "박사", + "frontier_brain": "프런티어 브레인", + "rocket_boss": "로켓단 보스", + "magma_boss": "마그마단 보스", + "aqua_boss": "아쿠아단 보스", + "galactic_boss": "갤럭시단 보스", + "plasma_boss": "플라스마단 보스", + "flare_boss": "플레어단 보스", + "aether_boss": "에테르재단 대표", + "skull_boss": "스컬단 보스", + "macro_boss": "매크로코스모스 사장", + + "rocket_admin": "로켓단 간부", + "rocket_admin_female": "로켓단 간부", + "magma_admin": "마그마단 간부", + "magma_admin_female": "마그마단 간부", + "aqua_admin": "아쿠아단 간부", + "aqua_admin_female": "아쿠아단 간부", + "galactic_commander": "갤럭시단 간부", + "galactic_commander_female": "갤럭시단 간부", + "plasma_sage": "플라스마단 현인", + "plasma_admin": "플라스마단 간부", + "flare_admin": "플레어단 간부", + "flare_admin_female": "플레어단 간부", + "aether_admin": "에테르재단 지부장", + "skull_admin": "스컬단 간부", + "macro_admin": "매크로코스모스 간부" +} diff --git a/src/locales/ko/trainers.ts b/src/locales/ko/trainers.ts deleted file mode 100644 index b34530eb24c..00000000000 --- a/src/locales/ko/trainers.ts +++ /dev/null @@ -1,324 +0,0 @@ -import {SimpleTranslationEntries} from "#app/interfaces/locales"; - -// Titles of special trainers like gym leaders, elite four, and the champion -export const titles: SimpleTranslationEntries = { - "elite_four": "사천왕", - "elite_four_female": "사천왕", - "gym_leader": "체육관 관장", - "gym_leader_female": "체육관 관장", - "gym_leader_double": "체육관 관장 듀오", - "champion": "챔피언", - "champion_female": "챔피언", - "champion_double": "챔피언 듀오", - "rival": "라이벌", - "professor": "박사", - "frontier_brain": "프런티어 브레인", - "rocket_boss": "로켓단 보스", - "magma_boss": "마그마단 보스", - "aqua_boss": "아쿠아단 보스", - "galactic_boss": "갤럭시단 보스", - "plasma_boss": "플라스마단 보스", - "flare_boss": "플레어단 보스", - - "rocket_admin": "로켓단 간부", - "rocket_admin_female": "로켓단 간부", - "magma_admin": "마그마단 간부", - "magma_admin_female": "마그마단 간부", - "aqua_admin": "아쿠아단 간부", - "aqua_admin_female": "아쿠아단 간부", - "galactic_commander": "갤럭시단 간부", - "galactic_commander_female": "갤럭시단 간부", - "plasma_sage": "플라스마단 현인", - "plasma_admin": "플라스마단 간부", - "flare_admin": "플레어단 간부", - "flare_admin_female": "플레어단 간부", - // Maybe if we add the evil teams we can add "Team Rocket" and "Team Aqua" etc. here as well as "Team Rocket Boss" and "Team Aqua Admin" etc. -} as const; - -// Titles of trainers like "Youngster" or "Lass" -export const trainerClasses: SimpleTranslationEntries = { - "ace_trainer": "엘리트 트레이너", - "ace_trainer_female": "엘리트 트레이너", - "ace_duo": "엘리트 콤비", - "artist": "예술가", - "artist_female": "예술가", - "backers": "팬클럽", - "backpacker": "백팩커", - "backpacker_female": "백팩커", - "backpackers": "백팩커", - "baker": "제빵사", - "battle_girl": "배틀걸", - "beauty": "아가씨", - "beginners": "반바지 꼬마 & 짧은 치마", - "biker": "폭주족", - "black_belt": "태권왕", - "breeder": "포켓몬 브리더", - "breeder_female": "포켓몬 브리더", - "breeders": "포켓몬 브리더", - "clerk": "비즈니스맨", - "clerk_female": "여사원", - "colleagues": "비즈니스 파트너", - "crush_kin": "배틀 커플", // 임의번역 - "cyclist": "사이클링", - "cyclist_female": "사이클링", - "cyclists": "사이클링", - "dancer": "댄서", - "dancer_female": "댄서", - "depot_agent": "역무원", - "doctor": "의사", - "doctor_female": "간호사", // doctor_f.png 파일이 간호사 - "firebreather": "불놀이꾼", - "fisherman": "낚시꾼", - "fisherman_female": "낚시꾼", - "gentleman": "신사", - "guitarist": "기타리스트", - "guitarist_female": "기타리스트", - "harlequin": "어릿광대", - "hiker": "등산가", - "hooligans": "폭주족 & 빡빡이", - "hoopster": "농구선수", - "infielder": "야구선수", - "janitor": "청소부", - "lady": "아기씨", - "lass": "짧은 치마", - "linebacker": "미식축구선수", - "maid": "메이드", - "madame": "마담", - "medical_team": "의료팀", - "musician": "뮤지션", - "hex_maniac": "오컬트마니아", - "nurse": "간호사", - "nursery_aide": "보육사", - "officer": "경찰관", - "parasol_lady": "파라솔 아가씨", - "pilot": "파일럿", - "pokéfan": "애호가클럽", - "pokéfan_female": "애호가클럽", - "pokéfan_family": "애호가부부", - "preschooler": "보육원아", - "preschooler_female": "보육원아", - "preschoolers": "보육원아", - "psychic": "초능력자", - "psychic_female": "초능력자", - "psychics": "초능력자", - "pokémon_ranger": "포켓몬 레인저", - "pokémon_ranger_female": "포켓몬 레인저", - "pokémon_rangers": "포켓몬 레인저", - "ranger": "포켓몬 레인저", - "restaurant_staff": "레스토랑 직원", - "rich": "신사", - "rich_female": "마담", - "rich_boy": "도련님", - "rich_couple": "신사 & 마담", // 확인 필요 - "rich_kid": "도련님", - "rich_kid_female": "아가씨", - "rich_kids": "도련님 & 아가씨", // 확인 필요 - "roughneck": "빡빡이", - "scientist": "연구원", - "scientist_female": "연구원", - "scientists": "연구원", - "smasher": "테니스선수", - "snow_worker": "작업원", - "snow_worker_female": "작업원", - "sailor": "선원", - "striker": "축구선수", - "school_kid": "학원끝난 아이", - "school_kid_female": "학원끝난 아이", - "school_kids": "학원끝난 아이", - "swimmer": "수영팬티 소년", - "swimmer_female": "비키니 아가씨", - "swimmers": "수영팬티 소년 & 비키니 아가씨", - "twins": "쌍둥이", - "veteran": "베테랑 트레이너", - "veteran_female": "베테랑 트레이너", - "veteran_duo": "베테랑 콤비", - "waiter": "웨이터", - "waitress": "웨이트리스", - "worker": "작업원", - "worker_female": "작업원", - "workers": "작업원", - "youngster": "반바지 꼬마", - "rocket_grunt": "로켓단 조무래기", - "rocket_grunt_female": "로켓단 조무래기", - "rocket_grunts": "로켓단 조무래기들", - "magma_grunt": "마그마단 조무래기", - "magma_grunt_female": "마그마단 조무래기", - "magma_grunts": "마그마단 조무래기들", - "aqua_grunt": "아쿠아단 조무래기", - "aqua_grunt_female": "아쿠아단 조무래기", - "aqua_grunts": "아쿠아단 조무래기들", - "galactic_grunt": "갤럭시단 조무래기", - "galactic_grunt_female": "갤럭시단 조무래기", - "galactic_grunts": "갤럭시단 조무래기들", - "plasma_grunt": "플라스마단 조무래기", - "plasma_grunt_female": "플라스마단 조무래기", - "plasma_grunts": "플라스마단 조무래기들", - "flare_grunt": "플레어단 조무래기", - "flare_grunt_female": "플레어단 조무래기", - "flare_grunts": "플레어단 조무래기들", - -} as const; - -// Names of special trainers like gym leaders, elite four, and the champion -export const trainerNames: SimpleTranslationEntries = { - "brock": "웅", - "misty": "이슬", - "lt_surge": "마티스", - "erika": "민화", - "janine": "도희", - "sabrina": "초련", - "blaine": "강연", - "giovanni": "비주기", - "falkner": "비상", - "bugsy": "호일", - "whitney": "꼭두", - "morty": "유빈", - "chuck": "사도", - "jasmine": "규리", - "pryce": "류옹", - "clair": "이향", - "roxanne": "원규", - "brawly": "철구", - "wattson": "암페어", - "flannery": "민지", - "norman": "종길", - "winona": "은송", - "tate": "풍", - "liza": "란", - "juan": "아단", - "roark": "강석", - "gardenia": "유채", - "maylene": "자두", - "crasher_wake": "맥실러", - "fantina": "멜리사", - "byron": "동관", - "candice": "무청", - "volkner": "전진", - "cilan": "덴트", - "chili": "팟", - "cress": "콘", - "cheren": "체렌", - "lenora": "알로에", - "roxie": "보미카", - "burgh": "아티", - "elesa": "카밀레", - "clay": "야콘", - "skyla": "풍란", - "brycen": "담죽", - "drayden": "사간", - "marlon": "시즈", - "viola": "비올라", - "grant": "자크로", - "korrina": "코르니", - "ramos": "후쿠지", - "clemont": "시트론", - "valerie": "마슈", - "olympia": "고지카", - "wulfric": "우르프", - "milo": "아킬", - "nessa": "야청", - "kabu": "순무", - "bea": "채두", - "allister": "어니언", - "opal": "포플러", - "bede": "비트", - "gordie": "마쿠와", - "melony": "멜론", - "piers": "두송", - "marnie": "마리", - "raihan": "금랑", - "katy": "단풍", - "brassius": "콜사", - "iono": "모야모", - "kofu": "곤포", - "larry": "청목", - "ryme": "라임", - "tulip": "리파", - "grusha": "그루샤", - "lorelei": "칸나", - "bruno": "시바", - "agatha": "국화", - "lance": "목호", - "will": "일목", - "koga": "독수", - "karen": "카렌", - "sidney": "혁진", - "phoebe": "회연", - "glacia": "미혜", - "drake": "권수", - "aaron": "충호", - "bertha": "들국화", - "flint": "대엽", - "lucian": "오엽", - "shauntal": "망초", - "marshal": "연무", - "grimsley": "블래리", - "caitlin": "카틀레야", - "malva": "파키라", - "siebold": "즈미", - "wikstrom": "간피", - "drasna": "드라세나", - "hala": "할라", - "molayne": "멀레인", - "olivia": "라이치", - "acerola": "아세로라", - "kahili": "카일리", - "rika": "칠리", - "poppy": "뽀삐", - "hassel": "팔자크", - "crispin": "하솔", - "amarys": "네리네", - "lacey": "타로", - "drayton": "제빈", - "blue": "그린", - "red": "레드", - "steven": "성호", - "wallace": "윤진", - "cynthia": "난천", - "alder": "노간주", - "iris": "아이리스", - "diantha": "카르네", - "hau": "하우", - "geeta": "테사", - "nemona": "네모", - "kieran": "카지", - "leon": "단델", - "rival": "핀", - "rival_female": "아이비", - - // Evil Team Admins - "archer": "아폴로", - "ariana": "아테나", - "proton": "랜스", - "petrel": "람다", - "tabitha": "호걸", - "courtney": "구열", - "shelly": "이연", - "matt": "해조", - "mars": "마스", - "jupiter": "주피터", - "saturn": "새턴", - "zinzolin": "비오", - "rood": "로트", - "xerosic": "크세로시키", - "bryony": "바라", - - - "maxie": "마적", - "archie": "아강", - "cyrus": "태홍", - "ghetsis": "게치스", - "lysandre": "플라드리", - - // Double Names - "blue_red_double": "그린 & 레드", - "red_blue_double": "레드 & 그린", - "tate_liza_double": "풍 & 란", - "liza_tate_double": "란 & 풍", - "steven_wallace_double": "성호 & 윤진", - "wallace_steven_double": "윤진 & 성호", - "alder_iris_double": "노간주 & 아이리스", - "iris_alder_double": "아이리스 & 노간주", - "marnie_piers_double": "마리 & 두송", - "piers_marnie_double": "두송 & 마리", -} as const; diff --git a/src/locales/ko/tutorial.json b/src/locales/ko/tutorial.json new file mode 100644 index 00000000000..b5304f43098 --- /dev/null +++ b/src/locales/ko/tutorial.json @@ -0,0 +1,10 @@ +{ + "intro": "포켓로그에 오신 것을 환영합니다! 로그라이트 요소가 가미된 전투 중심의 포켓몬 팬게임입니다.\n$이 게임은 수익을 창출하지 않으며 Pokémon 및 사용된 저작권 자산에 대한 소유권을 주장하지 않습니다.\n$게임은 아직 작업중이지만 완전히 플레이할 수 있습니다.\n버그 신고는 디스코드 커뮤니티를 이용해 주시기 바랍니다.\n$게임이 느릴 경우 브라우저 설정에서 '하드웨어 가속'이 켜져 있는지 확인해주세요.", + "accessMenu": "메뉴에 액세스하려면 입력을 기다리는 동안 M 또는 Esc를 누릅니다.\n메뉴에는 설정과 다양한 기능이 포함되어 있습니다.", + "menu": "이 메뉴에서 설정에 액세스할 수 있습니다.\n$설정에서 게임 속도, 윈도우 스타일 및 기타 옵션을 변경할 수 있습니다.\n$여기에는 다양한 다른 기능도 있으니 꼭 확인해보세요!", + "starterSelect": "이 화면에서 Z나 스페이스바로 스타팅을 선택할 수 있습니다.\n이들은 당신의 첫 번째 파티 멤버들입니다.\n$최대 6마리의 파티로 시작할 수 있지만\n포켓몬에 따라 코스트가 있어 총합 10을 넘겨선 안 됩니다.\n$계속 잡거나 부화시켜서\n선택할 수 있는 성별, 특성, 폼 등의 폭을 넓힐 수 있습니다.\n$개체값도 점점 누적되어 높아지므로,\n같은 포켓몬을 많이 잡아보세요!", + "pokerus": "매일 랜덤 스타팅 세 종류에 보라색 테두리가 쳐집니다.\n$등록된 스타팅 중에 있다면,\n파티에 추가해서 능력치 화면을 확인해봅시다!", + "statChange": "포켓몬은 교체하지 않으면 다음 전투에서도 능력치 변화가 유지됩니다.\n$대신 트레이너 배틀이나 새로운 바이옴 입장 직전에 자동으로 들여보내지게 됩니다.\n$C 또는 Shift를 꾹 눌러 현재 포켓몬의 능력치 변화를 볼 수도 있습니다.\n$V를 눌러 상대방이 사용했던 기술도 확인할 수 있습니다.\n$단, 이번 배틀에서 상대 포켓몬이 이미 사용한 기술만 나타납니다.", + "selectItem": "전투가 끝날때마다 무작위 아이템 3개 중 하나를 선택하여 얻습니다.\n$종류는 소모품, 포켓몬의 지닌 도구, 영구적 패시브 아이템에 이르기까지 다양합니다.\n$대부분의 소모되지 않는 도구는 효과가 누적됩니다.\n$진화용과 같은 일부분의 아이템은 사용할 수 있는 경우에만 등장합니다.\n$지닌 도구 건네주기 기능을 사용해 포켓몬끼리 도구를 옮겨 지닐 수도 있습니다.\n$지닌 도구가 있다면 아이템 선택 화면 오른쪽 하단에 건네주기 기능이 표시됩니다.\n$돈으로 소모품을 구입할 수도 있으며, 웨이브 진행에 따라 구입 가능한 종류가 늘어납니다.\n$아이템을 선택하면 다음 웨이브로 넘어가므로, 소모품 구입을 먼저 해 주세요.", + "eggGacha": "이 화면에서 포켓몬 알 바우처를\n사용해 뽑기를 할 수 있습니다.\n$알은 전투를 반복하다 보면 부화합니다.\n희귀할 수록 더 오래 걸립니다.\n$부화시킨 포켓몬은 파티에 추가되지 않고\n스타팅에 등록될 것입니다.\n$알에서 부화한 포켓몬은 일반적으로\n야생에서 잡은 포켓몬보다 더 높은 개체값을 지닙니다.\n$일부 포켓몬은 알에서만 얻을 수 있습니다.\n$각 뽑기 기계가 각각 다른 보너스를 가지고 있으므로,\n원하는 쪽을 사용해보세요!" +} \ No newline at end of file diff --git a/src/locales/ko/tutorial.ts b/src/locales/ko/tutorial.ts deleted file mode 100644 index 834f1be6345..00000000000 --- a/src/locales/ko/tutorial.ts +++ /dev/null @@ -1,44 +0,0 @@ -import { SimpleTranslationEntries } from "#app/interfaces/locales"; - -export const tutorial: SimpleTranslationEntries = { - intro: `포켓로그에 오신 것을 환영합니다! 로그라이트 요소가 가미된 전투 중심의 포켓몬 팬게임입니다. - $이 게임은 수익을 창출하지 않으며 Pokémon 및 사용된 저작권 자산에 대한 소유권을 주장하지 않습니다. - $게임은 아직 작업중이지만 완전히 플레이할 수 있습니다.\n버그 신고는 디스코드 커뮤니티를 이용해 주시기 바랍니다. - $게임이 느릴 경우 브라우저 설정에서 '하드웨어 가속'이 켜져 있는지 확인해주세요.`, - - accessMenu: "메뉴에 액세스하려면 입력을 기다리는 동안 M 또는 Esc를 누릅니다.\n메뉴에는 설정과 다양한 기능이 포함되어 있습니다.", - - menu: `이 메뉴에서 설정에 액세스할 수 있습니다. - $설정에서 게임 속도, 윈도우 스타일 및 기타 옵션을 변경할 수 있습니다. - $여기에는 다양한 다른 기능도 있으니 꼭 확인해보세요!`, - - starterSelect: `이 화면에서 Z나 스페이스바로 스타팅을 선택할 수 있습니다.\n이들은 당신의 첫 번째 파티 멤버들입니다. - $최대 6마리의 파티로 시작할 수 있지만\n포켓몬에 따라 코스트가 있어 총합 10을 넘겨선 안 됩니다. - $계속 잡거나 부화시켜서\n선택할 수 있는 성별, 특성, 폼 등의 폭을 넓힐 수 있습니다. - $개체값도 점점 누적되어 높아지므로,\n같은 포켓몬을 많이 잡아보세요!`, - - pokerus: `매일 랜덤 스타팅 세 종류에 보라색 테두리가 쳐집니다. - $등록된 스타팅 중에 있다면,\n파티에 추가해서 능력치 화면을 확인해봅시다!`, - - statChange: `포켓몬은 교체하지 않으면 다음 전투에서도 능력치 변화가 유지됩니다. - $대신 트레이너 배틀이나 새로운 바이옴 입장 직전에 자동으로 들여보내지게 됩니다. - $C 또는 Shift를 꾹 눌러 현재 포켓몬의 능력치 변화를 볼 수도 있습니다. - $V를 눌러 상대방이 사용했던 기술도 확인할 수 있습니다. - $단, 이번 배틀에서 상대 포켓몬이 이미 사용한 기술만 나타납니다.`, - - selectItem: `전투가 끝날때마다 무작위 아이템 3개 중 하나를 선택하여 얻습니다. - $종류는 소모품, 포켓몬의 지닌 도구, 영구적 패시브 아이템에 이르기까지 다양합니다. - $대부분의 소모되지 않는 도구는 효과가 누적됩니다. - $진화용과 같은 일부분의 아이템은 사용할 수 있는 경우에만 등장합니다. - $지닌 도구 건네주기 기능을 사용해 포켓몬끼리 도구를 옮겨 지닐 수도 있습니다. - $지닌 도구가 있다면 아이템 선택 화면 오른쪽 하단에 건네주기 기능이 표시됩니다. - $돈으로 소모품을 구입할 수도 있으며, 웨이브 진행에 따라 구입 가능한 종류가 늘어납니다. - $아이템을 선택하면 다음 웨이브로 넘어가므로, 소모품 구입을 먼저 해 주세요.`, - - eggGacha: `이 화면에서 포켓몬 알 바우처를\n사용해 뽑기를 할 수 있습니다. - $알은 전투를 반복하다 보면 부화합니다.\n희귀할 수록 더 오래 걸립니다. - $부화시킨 포켓몬은 파티에 추가되지 않고\n스타팅에 등록될 것입니다. - $알에서 부화한 포켓몬은 일반적으로\n야생에서 잡은 포켓몬보다 더 높은 개체값을 지닙니다. - $일부 포켓몬은 알에서만 얻을 수 있습니다. - $각 뽑기 기계가 각각 다른 보너스를 가지고 있으므로,\n원하는 쪽을 사용해보세요!`, -} as const; diff --git a/src/locales/ko/voucher.ts b/src/locales/ko/voucher.json similarity index 55% rename from src/locales/ko/voucher.ts rename to src/locales/ko/voucher.json index dd63977a218..7864754fbbe 100644 --- a/src/locales/ko/voucher.ts +++ b/src/locales/ko/voucher.json @@ -1,11 +1,9 @@ -import { SimpleTranslationEntries } from "#app/interfaces/locales"; - -export const voucher: SimpleTranslationEntries = { +{ "vouchers": "바우처", "eggVoucher": "알 바우처", "eggVoucherPlus": "알 바우처 플러스", "eggVoucherPremium": "알 바우처 프리미엄", "eggVoucherGold": "알 바우처 골드", "locked": "미획득", - "defeatTrainer" : "{{trainerName}}에게 승리", -} as const; + "defeatTrainer": "{{trainerName}}에게 승리" +} \ No newline at end of file diff --git a/src/locales/ko/weather.ts b/src/locales/ko/weather.json similarity index 61% rename from src/locales/ko/weather.ts rename to src/locales/ko/weather.json index c89cc335859..286bf54cb17 100644 --- a/src/locales/ko/weather.ts +++ b/src/locales/ko/weather.json @@ -1,67 +1,32 @@ -import { SimpleTranslationEntries } from "#app/interfaces/locales"; - -/** - * The weather namespace holds text displayed when weather is active during a battle - */ -export const weather: SimpleTranslationEntries = { +{ "sunnyStartMessage": "햇살이 강해졌다!", "sunnyLapseMessage": "햇살이 강하다", "sunnyClearMessage": "햇살이 원래대로 되돌아왔다!", - "rainStartMessage": "비가 내리기 시작했다!", "rainLapseMessage": "비가 계속 내리고 있다", "rainClearMessage": "비가 그쳤다!", - "sandstormStartMessage": "모래바람이 불기 시작했다!", "sandstormLapseMessage": "모래바람이 세차게 분다", "sandstormClearMessage": "모래바람이 가라앉았다!", "sandstormDamageMessage": "모래바람이\n{{pokemonNameWithAffix}}[[를]] 덮쳤다!", - "hailStartMessage": "싸라기눈이 내리기 시작했다!", "hailLapseMessage": "싸라기눈이 계속 내리고 있다", "hailClearMessage": "싸라기눈이 그쳤다!", "hailDamageMessage": "싸라기눈이\n{{pokemonNameWithAffix}}[[를]] 덮쳤다!", - "snowStartMessage": "눈이 내리기 시작했다!", "snowLapseMessage": "눈이 계속 내리고 있다", "snowClearMessage": "눈이 그쳤다!", - - // 이하 LapseMessage 임의번역 "fogStartMessage": "발밑이 안개로 자욱해졌다!", "fogLapseMessage": "발밑이 안개로 자욱하다", "fogClearMessage": "발밑의 안개가 사라졌다!", - "heavyRainStartMessage": "강한 비가 내리기 시작했다!", "heavyRainLapseMessage": "강한 비가 계속 내리고 있다", "heavyRainClearMessage": "강한 비가 그쳤다!", - "harshSunStartMessage": "햇살이 아주 강해졌다!", "harshSunLapseMessage": "햇살이 아주 강하다", "harshSunClearMessage": "햇살이 원래대로 되돌아왔다!", - "strongWindsStartMessage": "수수께끼의 난기류가\n비행포켓몬을 지킨다!", "strongWindsLapseMessage": "수수께끼의 난기류가 강렬하게 불고 있다", "strongWindsEffectMessage": "수수께끼의 난기류가 공격을 약하게 만들었다!", - "strongWindsClearMessage": "수수께끼의 난기류가 멈췄다!" // 임의번역 -}; - -export const terrain: SimpleTranslationEntries = { - "misty": "미스트필드", - "mistyStartMessage": "발밑이 안개로 자욱해졌다!", - "mistyClearMessage": "발밑의 안개가 사라졌다!", - "mistyBlockMessage": "{{pokemonNameWithAffix}}[[를]]\n미스트필드가 지켜주고 있다!", - - "electric": "일렉트릭필드", - "electricStartMessage": "발밑에 전기가 흐르기 시작했다!", - "electricClearMessage": "발밑의 전기가 사라졌다!", - - "grassy": "그래스필드", - "grassyStartMessage": "발밑에 풀이 무성해졌다!", - "grassyClearMessage": "발밑의 풀이 사라졌다!", - - "psychic": "사이코필드", - "psychicStartMessage": "발밑에서 이상한 느낌이 든다!", - "psychicClearMessage": "발밑의 이상한 느낌이 사라졌다!", - - "defaultBlockMessage": "{{pokemonNameWithAffix}}[[를]]\n{{terrainName}}[[가]] 지켜주고 있다!" -}; + "strongWindsClearMessage": "수수께끼의 난기류가 멈췄다!" +} \ No newline at end of file diff --git a/src/locales/pt_BR/ability-trigger.ts b/src/locales/pt_BR/ability-trigger.json similarity index 97% rename from src/locales/pt_BR/ability-trigger.ts rename to src/locales/pt_BR/ability-trigger.json index da91fa3213f..f6a11267f9d 100644 --- a/src/locales/pt_BR/ability-trigger.ts +++ b/src/locales/pt_BR/ability-trigger.json @@ -1,6 +1,4 @@ -import { SimpleTranslationEntries } from "#app/interfaces/locales"; - -export const abilityTriggers: SimpleTranslationEntries = { +{ "blockRecoilDamage": "{{abilityName}} de {{pokemonName}}\nprotegeu-o do dano reverso!", "badDreams": "{{pokemonName}} está tendo pesadelos!", "costar": "{{pokemonName}} copiou as mudanças\nde atributo de {{allyName}}!", @@ -46,6 +44,7 @@ export const abilityTriggers: SimpleTranslationEntries = { "postFaintContactDamage": "{{abilityName}} de {{pokemonNameWithAffix}}\nferiu seu adversário!", "postFaintHpDamage": "{{abilityName}} de {{pokemonNameWithAffix}}\nferiu seu adversário!", "postSummonPressure": "{{pokemonNameWithAffix}} está exercendo sua pressão!", + "weatherEffectDisappeared": "Os efeitos do clima desapareceram.", "postSummonMoldBreaker": "{{pokemonNameWithAffix}} quebra o molde!", "postSummonAnticipation": "{{pokemonNameWithAffix}} se arrepiou!", "postSummonTurboblaze": "{{pokemonNameWithAffix}} está irradiando uma aura ardente!", @@ -59,5 +58,5 @@ export const abilityTriggers: SimpleTranslationEntries = { "postSummonSwordOfRuin": "Sword of Ruin de {{pokemonNameWithAffix}} reduziu a {{statName}}\nde todos os Pokémon em volta!", "postSummonTabletsOfRuin": "Tablets of Ruin de {{pokemonNameWithAffix}} reduziu o {{statName}}\nde todos os Pokémon em volta!", "postSummonBeadsOfRuin": "Beads of Ruin de {{pokemonNameWithAffix}} reduziu a {{statName}}\nde todos os Pokémon em volta!", - "preventBerryUse": "{{pokemonNameWithAffix}} está nervoso\ndemais para comer frutas!", -} as const; + "preventBerryUse": "{{pokemonNameWithAffix}} está nervoso\ndemais para comer frutas!" +} \ No newline at end of file diff --git a/src/locales/pt_BR/ability.json b/src/locales/pt_BR/ability.json new file mode 100644 index 00000000000..c4180ff01dd --- /dev/null +++ b/src/locales/pt_BR/ability.json @@ -0,0 +1,1242 @@ +{ + "stench": { + "name": "Stench", + "description": "Liberando um forte odor enquanto ataca, este Pokémon pode fazer o alvo hesitar." + }, + "drizzle": { + "name": "Drizzle", + "description": "O Pokémon faz chover ao entrar em batalha." + }, + "speedBoost": { + "name": "Speed Boost", + "description": "Seu atributo de Velocidade é aumentado a cada turno." + }, + "battleArmor": { + "name": "Battle Armor", + "description": "Uma forte armadura protege o Pokémon de golpes críticos." + }, + "sturdy": { + "name": "Sturdy", + "description": "Impede que seja nocauteado com apenas um golpe, se estiver com seus PS ao máximo. Também evita que movimentos de golpes fatais o derrubem." + }, + "damp": { + "name": "Damp", + "description": "Previne o uso de movimentos explosivos, como a Autodestruição, aumentando a umidade dos arredores." + }, + "limber": { + "name": "Limber", + "description": "Seu corpo maleável protege o Pokémon da paralisia." + }, + "sandVeil": { + "name": "Sand Veil", + "description": "Aumenta a evasão do Pokémon durante as tempestades de areia." + }, + "static": { + "name": "Static", + "description": "O Pokémon é carregado com energia estática, então entrar em contato com ele pode causar paralisia." + }, + "voltAbsorb": { + "name": "Volt Absorb", + "description": "Se for atingido por um movimento do tipo Elétrico, ele restaura seus PS ao invés de receber dano." + }, + "waterAbsorb": { + "name": "Water Absorb", + "description": "Se for atingido por um movimento do tipo Água, ele restaura seus PS ao invés de receber dano." + }, + "oblivious": { + "name": "Oblivious", + "description": "Sua indiferença impede que o Pokémon fique apaixonado ou seja provocado por outro Pokémon." + }, + "cloudNine": { + "name": "Cloud Nine", + "description": "Anula todos os efeitos climáticos na batalha." + }, + "compoundEyes": { + "name": "Compound Eyes", + "description": "O olho preciso do Pokémon aumenta sua precisão." + }, + "insomnia": { + "name": "Insomnia", + "description": "Este Pokémon está sofrendo com insônia e não pode adormecer." + }, + "colorChange": { + "name": "Color Change", + "description": "Este Pokémon se torna do tipo do último ataque que sofreu." + }, + "immunity": { + "name": "Immunity", + "description": "O sistema imunológico deste Pokémon impede que ele seja envenenado." + }, + "flashFire": { + "name": "Flash Fire", + "description": "Fortalece movimentos do tipo Fogo quando atingido por um." + }, + "shieldDust": { + "name": "Shield Dust", + "description": "A poeira desse Pokémon bloqueia efeitos adicionais dos ataques recebidos." + }, + "ownTempo": { + "name": "Own Tempo", + "description": "Este Pokémon tem seu próprio ritmo, que o impede de ficar confuso." + }, + "suctionCups": { + "name": "Suction Cups", + "description": "Este Pokémon usa sua ventosas para fixar-se no lugar, negando todos os movimentos e itens que o obriguem a recuar." + }, + "intimidate": { + "name": "Intimidate", + "description": "Quando entra em batalha, este Pokémon intimida o Pokémon adversário, diminuindo seu Ataque." + }, + "shadowTag": { + "name": "Shadow Tag", + "description": "Este Pokémon pisa na sombra do Pokémon adversário, impedindo que ele escape da batalha." + }, + "roughSkin": { + "name": "Rough Skin", + "description": "Quando recebe um ataque direto, usa sua pele áspera para infligir dano ao Pokémon atacante." + }, + "wonderGuard": { + "name": "Wonder Guard", + "description": "Devido seu misterioso poder, apenas movimentos supereficazes acertam esse Pokémon." + }, + "levitate": { + "name": "Levitate", + "description": "Através da levitação esse Pokémon se torna completamente imune a movimentos do tipo Terra." + }, + "effectSpore": { + "name": "Effect Spore", + "description": "Contato direto com o Pokémon pode infligir paralisia, sono ou envenenamento ao atacante." + }, + "synchronize": { + "name": "Synchronize", + "description": "O atacante sofrerá a mesma mudança de estado se causar queima, envenenamento ou paralisia ao Pokémon." + }, + "clearBody": { + "name": "Clear Body", + "description": "Previne que Habilidades e movimentos de outros Pokémon diminuam os atributos deste Pokémon." + }, + "naturalCure": { + "name": "Natural Cure", + "description": "Quando este Pokémon recua, todas mudanças de estado são curadas." + }, + "lightningRod": { + "name": "Lightning Rod", + "description": "O Pokémon absorve todos os movimentos do tipo Elétrico e, ao invés de sofrer dano, aumenta seu Ataque Esp." + }, + "sereneGrace": { + "name": "Serene Grace", + "description": "Aumenta a probabilidade de ocorrerem efeitos adicionais ao atacar." + }, + "swiftSwim": { + "name": "Swift Swim", + "description": "A Velocidade do Pokémon é aumentada quando chove." + }, + "chlorophyll": { + "name": "Chlorophyll", + "description": "A Velocidade do Pokémon é aumentada sob sol forte." + }, + "illuminate": { + "name": "Illuminate", + "description": "Ilumina os arredores, aumentado a possibilidade de encontrar Pokémon selvagens." + }, + "trace": { + "name": "Trace", + "description": "Quando entra em batalha, o Pokémon copia a Habilidade de um Pokémon adversário." + }, + "hugePower": { + "name": "Huge Power", + "description": "Dobra o Ataque do Pokémon." + }, + "poisonPoint": { + "name": "Poison Point", + "description": "Contato direto com o Pokémon pode envenenar o atacante." + }, + "innerFocus": { + "name": "Inner Focus", + "description": "O foco extraordinário do Pokémon o impede de hesitar." + }, + "magmaArmor": { + "name": "Magma Armor", + "description": "O magma escaldante que cobre o Pokémon previne seu congelamento." + }, + "waterVeil": { + "name": "Water Veil", + "description": "O véu de água que cobre o Pokémon previne que ele seja queimado." + }, + "magnetPull": { + "name": "Magnet Pull", + "description": "Impede que Pokémon do tipo Aço escapem através da utilização de sua força magnética." + }, + "soundproof": { + "name": "Soundproof", + "description": "Antirruído dá ao Pokémon imunidade completa a todos movimentos baseados em som." + }, + "rainDish": { + "name": "Rain Dish", + "description": "O Pokémon recupera PS gradualmente na chuva." + }, + "sandStream": { + "name": "Sand Stream", + "description": "Quando entra em batalha o Pokémon conjura uma tempestade de areia." + }, + "pressure": { + "name": "Pressure", + "description": "Pressionando o Pokémon adversário, ele aumenta o custo de PP para o adversário usar um movimento." + }, + "thickFat": { + "name": "Thick Fat", + "description": "Movimentos dos tipos Fogo e Água têm seu dano reduzido pela metade devido à grossa camada de gordura que protege o Pokémon." + }, + "earlyBird": { + "name": "Early Bird", + "description": "O Pokémon acorda duas vezes mais rápido que outros Pokémon." + }, + "flameBody": { + "name": "Flame Body", + "description": "Contato direto com o Pokémon pode queimar o atacante." + }, + "runAway": { + "name": "Run Away", + "description": "Torna a fuga de encontros com Pokémon selvagem garantida." + }, + "keenEye": { + "name": "Keen Eye", + "description": "Seu olhar extremamente aguçado evita que outros Pokémon diminuam sua Precisão." + }, + "hyperCutter": { + "name": "Hyper Cutter", + "description": "Suas poderosas pinças enchem o Pokémon de orgulho. Elas impedem que outros Pokémon diminuam seu atributo de Ataque." + }, + "pickup": { + "name": "Pickup", + "description": "Após uma batalha, o Pokémon pegará um item que um adversário deixou cair." + }, + "truant": { + "name": "Truant", + "description": "Se utilizar um movimento, o Pokémon precisará descansar no turno seguinte." + }, + "hustle": { + "name": "Hustle", + "description": "Aumenta seu Ataque em troca de diminuir a precisão." + }, + "cuteCharm": { + "name": "Cute Charm", + "description": "Contato direto com o Pokémon pode causar paixão ao atacante." + }, + "plus": { + "name": "Plus", + "description": "Aumenta o Ataque Esp. do Pokémon se estiver em batalha com um aliado que tenha as Habilidades Plus ou Minus." + }, + "minus": { + "name": "Minus", + "description": "Aumenta o Ataque Esp. do Pokémon se estiver em batalha com um aliado que tenha as Habilidades Mais ou Menos." + }, + "forecast": { + "name": "Forecast", + "description": "O tipo do Pokémon altera-se para Água, Fogo ou Gelo, dependendo do clima." + }, + "stickyHold": { + "name": "Sticky Hold", + "description": "Outros Pokémon não podem remover itens que este Pokémon esteja segurando." + }, + "shedSkin": { + "name": "Shed Skin", + "description": "O Pokémon pode curar-se de mudanças de estado através da troca de pele." + }, + "guts": { + "name": "Guts", + "description": "É tão corajoso que ser afetado por uma mudança de estado aumenta seu Ataque." + }, + "marvelScale": { + "name": "Marvel Scale", + "description": "Se for afetado por uma mudança de estado, as escamas maravilhosas do Pokémon aumentarão sua Defesa." + }, + "liquidOoze": { + "name": "Liquid Ooze", + "description": "Exala uma substância tóxica com fedor terrível que causa dano a qualquer atacante que use um movimento de dreno." + }, + "overgrow": { + "name": "Overgrow", + "description": "Fortalece os movimentos do tipo Grama quando o Pokémon está com poucos PS." + }, + "blaze": { + "name": "Blaze", + "description": "Fortalece os movimentos do tipo Fogo quando o Pokémon está com poucos PS." + }, + "torrent": { + "name": "Torrent", + "description": "Fortalece os movimentos do tipo Água quando o Pokémon está com poucos PS." + }, + "swarm": { + "name": "Swarm", + "description": "Fortalece os movimentos do tipo Inseto quando o Pokémon está com poucos PS." + }, + "rockHead": { + "name": "Rock Head", + "description": "Protege o Pokémon de dano colateral." + }, + "drought": { + "name": "Drought", + "description": "Intensifica a luz solar quando o Pokémon entra em batalha." + }, + "arenaTrap": { + "name": "Arena Trap", + "description": "Impede que Pokémon adversários fujam." + }, + "vitalSpirit": { + "name": "Vital Spirit", + "description": "Sua determinação o impede de adormecer." + }, + "whiteSmoke": { + "name": "White Smoke", + "description": "O Pokémon é protegido por sua fumaça branca que previne que outros Pokémon diminuam seus atributos." + }, + "purePower": { + "name": "Pure Power", + "description": "O Pokémon dobra seu Ataque usando seu poder puro." + }, + "shellArmor": { + "name": "Shell Armor", + "description": "A robusta couraça que protege o Pokémon bloqueia os golpes críticos." + }, + "airLock": { + "name": "Air Lock", + "description": "Elimina efeitos climáticos." + }, + "tangledFeet": { + "name": "Tangled Feet", + "description": "Sua evasão aumenta se estiver confuso." + }, + "motorDrive": { + "name": "Motor Drive", + "description": "O Pokémon absorve todos os movimentos do tipo Elétrico e, ao invés de sofrer dano, aumenta seu atributo de Velocidade." + }, + "rivalry": { + "name": "Rivalry", + "description": "Sua competitividade faz com que cause mais dano a Pokémon do mesmo gênero, enquanto causa dano reduzido a Pokémon do gênero oposto." + }, + "steadfast": { + "name": "Steadfast", + "description": "A determinação do Pokémon faz com que sua Velocidade aumente cada vez que ele hesita." + }, + "snowCloak": { + "name": "Snow Cloak", + "description": "Aumenta a evasão numa tempestade de granizo." + }, + "gluttony": { + "name": "Gluttony", + "description": "Se estiver segurando uma fruta, a consumirá quando seus PS caírem abaixo da metade, o que é mais cedo que o usual." + }, + "angerPoint": { + "name": "Anger Point", + "description": "Quando recebe um acerto crítico se enraivece, e com isso, aumenta seu Ataque." + }, + "unburden": { + "name": "Unburden", + "description": "Se o item que o Pokémon estiver segurando for usado ou perdido, sua Velocidade aumentará." + }, + "heatproof": { + "name": "Heatproof", + "description": "O corpo a prova de calor desse Pokémon corta pela metade o dano de ataques do tipo Fogo que o acertam." + }, + "simple": { + "name": "Simple", + "description": "Duplica as mudanças de atributos do Pokémon." + }, + "drySkin": { + "name": "Dry Skin", + "description": "Durante chuva ou se for atingido por movimentos de Água, recupera PS. Durante sol forte tem seus PS máximo reduzido e leva dano aumentado do tipo Fogo." + }, + "download": { + "name": "Download", + "description": "Compara Defesa e Defesa Esp. do Pokémon adversário antes de aumentar seu próprio Ataque Esp. ou Ataque, a depender de qual será mais efetivo." + }, + "ironFist": { + "name": "Iron Fist", + "description": "Fortalece movimentos de soco." + }, + "poisonHeal": { + "name": "Poison Heal", + "description": "Se o Pokémon estiver envenenado, recuperará PS ao invés de perdê-los." + }, + "adaptability": { + "name": "Adaptability", + "description": "Fortalece movimentos do mesmo tipo do Pokémon." + }, + "skillLink": { + "name": "Skill Link", + "description": "Faz com que movimentos de repetição acertem sempre o máximo de vezes possível." + }, + "hydration": { + "name": "Hydration", + "description": "Cura mudanças de estado durante a chuva." + }, + "solarPower": { + "name": "Solar Power", + "description": "Aumenta o Ataque Esp. durante o sol forte, entretanto perde um pouco de PS a cada turno." + }, + "quickFeet": { + "name": "Quick Feet", + "description": "Aumenta a Velocidade se o Pokémon sofrer uma mudança de estado." + }, + "normalize": { + "name": "Normalize", + "description": "Todos os movimentos do Pokémon se tornam do tipo Normal. Aumenta um pouco o poder desses movimentos." + }, + "sniper": { + "name": "Sniper", + "description": "Aumenta o poder dos ataques caso sejam críticos." + }, + "magicGuard": { + "name": "Magic Guard", + "description": "O Pokémon só recebe dano de movimentos de ataque." + }, + "noGuard": { + "name": "No Guard", + "description": "Para garantir que todos os ataques atinjam o oponente, o Pokémon adota uma estratégia de desguarnecimento, porém, isso faz com que todos ataques o atinjam." + }, + "stall": { + "name": "Stall", + "description": "O Pokémon age somente após todos os outros agirem." + }, + "technician": { + "name": "Technician", + "description": "Aumenta o poder dos ataques mais fracos do Pokémon." + }, + "leafGuard": { + "name": "Leaf Guard", + "description": "Previne mudanças de estado sob o sol forte." + }, + "klutz": { + "name": "Klutz", + "description": "O Pokémon não pode usar nenhum item que esteja segurando." + }, + "moldBreaker": { + "name": "Mold Breaker", + "description": "Movimentos podem atingir independentemente da Habilidade do alvo." + }, + "superLuck": { + "name": "Super Luck", + "description": "O Pokémon é tão sortudo que tem a sua probabilidade de realizar golpes críticos aumentada." + }, + "aftermath": { + "name": "Aftermath", + "description": "Caso o Pokémon seja derrotado em decorrência de um movimento de contato, o atacante recebe dano." + }, + "anticipation": { + "name": "Anticipation", + "description": "O Pokémon pode sentir movimentos perigosos vindos do Pokémon adversário." + }, + "forewarn": { + "name": "Forewarn", + "description": "Quando entra em batalha, o Pokémon pode dizer um dos movimentos do Pokémon adversário." + }, + "unaware": { + "name": "Unaware", + "description": "Quando está atacando, o Pokémon ignora mudanças de atributos do Pokémon adversário." + }, + "tintedLens": { + "name": "Tinted Lens", + "description": "Movimentos que seriam “pouco eficazes” causam dano normalmente quando usados pelo Pokémon." + }, + "filter": { + "name": "Filter", + "description": "Ataques supereficazes recebidos dão menos dano." + }, + "slowStart": { + "name": "Slow Start", + "description": "O Ataque e a Velocidade do Pokémon são cortados pela metade por cinco turnos." + }, + "scrappy": { + "name": "Scrappy", + "description": "O Pokémon pode atingir Pokémon do tipo Fantasma com ataques dos tipos Normal e Lutador." + }, + "stormDrain": { + "name": "Storm Drain", + "description": "Atrai todos movimentos do tipo Água para si. Ao invés de receber dano desses ataques, tem seu Ataque Esp. aumentado." + }, + "iceBody": { + "name": "Ice Body", + "description": "O Pokémon recupera PS gradualmente durante as tempestades de granizo." + }, + "solidRock": { + "name": "Solid Rock", + "description": "Reduz o dano recebido de ataques supereficazes." + }, + "snowWarning": { + "name": "Snow Warning", + "description": "O Pokémon conjura uma tempestade de granizo quando entra em batalha." + }, + "honeyGather": { + "name": "Honey Gather", + "description": "The Pokémon gathers Honey after a battle. The Honey is then sold for money." + }, + "frisk": { + "name": "Frisk", + "description": "Quando entra em batalha, o Pokémon pode checar a Habilidade do adversário." + }, + "reckless": { + "name": "Reckless", + "description": "Fortalece movimentos que têm dano colateral." + }, + "multitype": { + "name": "Multitype", + "description": "Altera o tipo do Pokémon para o mesmo da Placa ou Cristal Z em sua posse." + }, + "flowerGift": { + "name": "Flower Gift", + "description": "Sob sol forte, o Ataque e a Defesa Esp. do Pokémon e de seus aliados são aumentados." + }, + "badDreams": { + "name": "Bad Dreams", + "description": "Reduz os PS de Pokémon adversários que estiverem dormindo." + }, + "pickpocket": { + "name": "Pickpocket", + "description": "Rouba o item de um atacante que tenha feito contato direto." + }, + "sheerForce": { + "name": "Sheer Force", + "description": "Aumenta o poder de seus movimentos quando ataca, em detrimento de seus efeitos adicionais que são anulados." + }, + "contrary": { + "name": "Contrary", + "description": "Faz as mudanças de atributos terem efeito contrário." + }, + "unnerve": { + "name": "Unnerve", + "description": "Enerva Pokémon adversários, impossibilitando que eles consumam Frutas." + }, + "defiant": { + "name": "Defiant", + "description": "Aumenta bruscamente o Ataque do Pokémon quando seus atributos são diminuídos pelo adversário." + }, + "defeatist": { + "name": "Defeatist", + "description": "Quando fica com metade ou menos dos PS totais, corta o Ataque e Ataque Esp. do Pokémon pela metade." + }, + "cursedBody": { + "name": "Cursed Body", + "description": "Pode desabilitar um movimento utilizado no Pokémon." + }, + "healer": { + "name": "Healer", + "description": "Às vezes cura mudanças de estado de um aliado." + }, + "friendGuard": { + "name": "Friend Guard", + "description": "Reduz o dano causado em aliados." + }, + "weakArmor": { + "name": "Weak Armor", + "description": "Ataques físicos ao Pokémon diminuem sua Defesa, mas aumenta bruscamente sua Velocidade." + }, + "heavyMetal": { + "name": "Heavy Metal", + "description": "Dobra o peso do Pokémon." + }, + "lightMetal": { + "name": "Light Metal", + "description": "Divide o peso do Pokémon pela metade." + }, + "multiscale": { + "name": "Multiscale", + "description": "Reduz o dano que o Pokémon recebe quando está com os PS cheios." + }, + "toxicBoost": { + "name": "Toxic Boost", + "description": "Fortalece ataques físicos quando o Pokémon está envenenado." + }, + "flareBoost": { + "name": "Flare Boost", + "description": "Fortalece ataques especiais quando o Pokémon está queimado." + }, + "harvest": { + "name": "Harvest", + "description": "Pode criar outra Fruta após consumir uma." + }, + "telepathy": { + "name": "Telepathy", + "description": "Prevê os ataques de um aliado em combate e desvia de todos eles." + }, + "moody": { + "name": "Moody", + "description": "Aumenta bruscamente um atributo e diminui outro a cada turno." + }, + "overcoat": { + "name": "Overcoat", + "description": "Protege o Pokémon de coisas como areia, geada e pó." + }, + "poisonTouch": { + "name": "Poison Touch", + "description": "Pode envenenar um alvo quando o Pokémon faz contato." + }, + "regenerator": { + "name": "Regenerator", + "description": "Recupera um pouco de PS quando recua da batalha." + }, + "bigPecks": { + "name": "Big Pecks", + "description": "Protege o Pokémon de efeitos que diminuam a Defesa." + }, + "sandRush": { + "name": "Sand Rush", + "description": "Aumenta a Velocidade do Pokémon durante uma tempestade de areia." + }, + "wonderSkin": { + "name": "Wonder Skin", + "description": "Torna movimentos de atributos mais suscetíveis ao erro." + }, + "analytic": { + "name": "Analytic", + "description": "Aumenta o poder do movimento quando o Pokémon age por último." + }, + "illusion": { + "name": "Illusion", + "description": "Entra em batalha disfarçado, na forma do Pokémon que ocupar o último lugar na equipe." + }, + "imposter": { + "name": "Imposter", + "description": "O Pokémon se transforma no Pokémon que está enfrentando." + }, + "infiltrator": { + "name": "Infiltrator", + "description": "Ignora barreiras, substitutos e coisas do tipo utilizadas pelo Pokémon adversário e ataca normalmente." + }, + "mummy": { + "name": "Mummy", + "description": "Contato direto com o Pokémon altera a Habilidade do atacante para Múmia." + }, + "moxie": { + "name": "Moxie", + "description": "O Pokémon demonstra arrogância, e isso faz com que seu Ataque aumente após derrotar qualquer Pokémon." + }, + "justified": { + "name": "Justified", + "description": "Ser atingido por movimentos do tipo Sombrio aumenta o Ataque do Pokémon, por justiça." + }, + "rattled": { + "name": "Rattled", + "description": "Movimentos dos tipos Sombrio, Fantasma e Inseto assustam o Pokémon, aumentando sua Velocidade" + }, + "magicBounce": { + "name": "Magic Bounce", + "description": "Ao invés de ser atingido por movimentos de atributos, reflete-os." + }, + "sapSipper": { + "name": "Sap Sipper", + "description": "Se for atingido por um movimento do tipo Grama, ao invés de receber dano, aumenta seu Ataque." + }, + "prankster": { + "name": "Prankster", + "description": "Dá prioridade a movimentos de estado." + }, + "sandForce": { + "name": "Sand Force", + "description": "Fortalece o poder dos movimentos do tipo Pedra, Terra e Aço em uma tempestade de areia." + }, + "ironBarbs": { + "name": "Iron Barbs", + "description": "Os espinhos de ferro infligem dano a um atacante que fizer contato direto." + }, + "zenMode": { + "name": "Zen Mode", + "description": "Quando o Pokémon tem seus PS reduzidos à metade ou menos, muda de forma." + }, + "victoryStar": { + "name": "Victory Star", + "description": "Aumenta a Precisão sua e de seus aliados." + }, + "turboblaze": { + "name": "Turboblaze", + "description": "Movimentos podem atingir independentemente da Habilidade do alvo." + }, + "teravolt": { + "name": "Teravolt", + "description": "Movimentos podem atingir independentemente da Habilidade do alvo." + }, + "aromaVeil": { + "name": "Aroma Veil", + "description": "Protege a si mesmo e a seus aliados de ataques que limitem a escolha de movimentos." + }, + "flowerVeil": { + "name": "Flower Veil", + "description": "Pokémon aliados do tipo Grama são protegidos de mudanças de estado e diminuição de seus atributos." + }, + "cheekPouch": { + "name": "Cheek Pouch", + "description": "Quando o Pokémon consome uma Fruta, também recupera um pouco de PS." + }, + "protean": { + "name": "Protean", + "description": "Muda o tipo do Pokémon para o tipo do movimento que ele vai utilizar." + }, + "furCoat": { + "name": "Fur Coat", + "description": "Reduz o dano de movimentos físicos pela metade." + }, + "magician": { + "name": "Magician", + "description": "O Pokémon rouba o item que um Pokémon alvo estiver segurando quando acerta um movimento." + }, + "bulletproof": { + "name": "Bulletproof", + "description": "Protege o Pokémon de alguns movimentos de bola e bomba." + }, + "competitive": { + "name": "Competitive", + "description": "Aumenta bruscamente o Ataque Esp. quando um atributo é diminuído." + }, + "strongJaw": { + "name": "Strong Jaw", + "description": "A poderosa mandíbula do Pokémon aumenta o poder dos seus movimentos de mordida." + }, + "refrigerate": { + "name": "Refrigerate", + "description": "Movimentos do tipo Normal se tornam do tipo Gelo. Aumenta um pouco o poder desses movimentos." + }, + "sweetVeil": { + "name": "Sweet Veil", + "description": "Previne a si e a Pokémon aliados de caírem no sono." + }, + "stanceChange": { + "name": "Stance Change", + "description": "O Pokemon muda para Forma Espada quando usa um movimento de ataque, e muda para a Forma Escudo quando usa o movimento Escudo do Rei." + }, + "galeWings": { + "name": "Gale Wings", + "description": "Quando o Pokémon está com os PS cheios, dá prioridade a movimentos do tipo Voador." + }, + "megaLauncher": { + "name": "Mega Launcher", + "description": "Fortalece movimentos de aura e pulso." + }, + "grassPelt": { + "name": "Grass Pelt", + "description": "Aumenta a Defesa do Pokémon em Terreno de Grama." + }, + "symbiosis": { + "name": "Symbiosis", + "description": "O Pokémon entrega seu item para um aliado que já tiver utilizado seu próprio item." + }, + "toughClaws": { + "name": "Tough Claws", + "description": "Fortalece movimentos que façam contato direto." + }, + "pixilate": { + "name": "Pixilate", + "description": "Movimentos do tipo Normal se tornam do tipo Fada. Aumenta um pouco o poder desses movimentos." + }, + "gooey": { + "name": "Gooey", + "description": "Contato direto com o Pokémon diminui o atributo de Velocidade do atacante." + }, + "aerilate": { + "name": "Aerilate", + "description": "Movimentos do tipo Normal se tornam do tipo Voador. Aumenta um pouco o poder desses movimentos." + }, + "parentalBond": { + "name": "Parental Bond", + "description": "Une suas forças com sua cria para atacar duas vezes." + }, + "darkAura": { + "name": "Dark Aura", + "description": "Fortalece movimentos do tipo Sombrio de todos os Pokémon." + }, + "fairyAura": { + "name": "Fairy Aura", + "description": "Fortalece movimentos do tipo Fada de todos os Pokémon." + }, + "auraBreak": { + "name": "Aura Break", + "description": "Os efeitos de Habilidades de “Aura” são revertidos para diminuir o poder de movimentos afetados." + }, + "primordialSea": { + "name": "Primordial Sea", + "description": "O Pokémon muda o clima para neutralizar ataques do tipo Fogo." + }, + "desolateLand": { + "name": "Desolate Land", + "description": "O Pokémon muda o clima para neutralizar ataques do tipo Água." + }, + "deltaStream": { + "name": "Delta Stream", + "description": "O Pokémon muda o clima para eliminar todas as vulnerabilidades do tipo Voador." + }, + "stamina": { + "name": "Stamina", + "description": "Aumenta a Defesa quando atingido por um ataque." + }, + "wimpOut": { + "name": "Wimp Out", + "description": "Quando fica com metade ou menos de seus PS, recua covardemente da batalha." + }, + "emergencyExit": { + "name": "Emergency Exit", + "description": "Quando fica com metade ou menos de seus PS, sentindo que está em perigo, o Pokémon recua da batalha." + }, + "waterCompaction": { + "name": "Water Compaction", + "description": "Aumenta bruscamente a Defesa do Pokémon quando atingido por um movimento do tipo Água." + }, + "merciless": { + "name": "Merciless", + "description": "Os ataques do Pokémon se tornam críticos se o alvo estiver envenenado." + }, + "shieldsDown": { + "name": "Shields Down", + "description": "Quando fica com metade ou menos de seus PS, o Pokémon quebra sua carapaça e se torna agressivo." + }, + "stakeout": { + "name": "Stakeout", + "description": "Caso o alvo recue da batalha, dobra o dano causado ao Pokémon suplente." + }, + "waterBubble": { + "name": "Water Bubble", + "description": "Diminui o poder de movimentos do tipo Fogo usados contra o Pokémon e o impede de ficar queimado." + }, + "steelworker": { + "name": "Steelworker", + "description": "Fortalece os movimentos do tipo Aço." + }, + "berserk": { + "name": "Berserk", + "description": "Quando é atingido por um movimento que deixa seus PS na metade ou menos, aumenta seu Ataque Esp.." + }, + "slushRush": { + "name": "Slush Rush", + "description": "Aumenta a Velocidade do Pokémon em uma tempestade de granizo." + }, + "longReach": { + "name": "Long Reach", + "description": "O Pokémon usa seus movimentos sem fazer contato direto com o alvo." + }, + "liquidVoice": { + "name": "Liquid Voice", + "description": "Todos os movimentos baseados em som se tornam do tipo Água." + }, + "triage": { + "name": "Triage", + "description": "Concede prioridade para movimentos de cura." + }, + "galvanize": { + "name": "Galvanize", + "description": "Movimentos do tipo Normal se transformam em movimentos do tipo Elétrico. Aumenta um pouco o poder desses movimentos." + }, + "surgeSurfer": { + "name": "Surge Surfer", + "description": "Dobra a Velocidade do Pokémon em Terreno Elétrico." + }, + "schooling": { + "name": "Schooling", + "description": "Quando está com bastante PS, o Pokémon forma um poderoso cardume, que se desfaz quando seus PS ficam baixos." + }, + "disguise": { + "name": "Disguise", + "description": "Uma vez por batalha, a mortalha que cobre o Pokémon pode protegê-lo de um ataque." + }, + "battleBond": { + "name": "Battle Bond", + "description": "Derrotar um Pokémon adversário fortalece os laços entre Pokémon e Treinador, fazendo com que se torne Greninja do Ash, e fortalecendo o ataque Shuriken de Água." + }, + "powerConstruct": { + "name": "Power Construct", + "description": "Quando seus PS ficam da metade para baixo, outras Células se agrupam para auxiliá-lo, fazendo com que o Pokémon mude para sua Forma Completa." + }, + "corrosion": { + "name": "Corrosion", + "description": "O Pokémon pode envenenar o alvo mesmo que ele seja dos tipos Aço ou Venenoso." + }, + "comatose": { + "name": "Comatose", + "description": "Está sempre cochilando e nunca acordará, entretanto, pode atacar sem acordar." + }, + "queenlyMajesty": { + "name": "Queenly Majesty", + "description": "Sua magnificência pressiona o Pokémon adversário, impossibilitando-o de utilizar movimentos de prioridade." + }, + "innardsOut": { + "name": "Innards Out", + "description": "Ao ser nocauteado, inflige dano ao adversário igual ao valor de PS que possuía antes de ser atacado." + }, + "dancer": { + "name": "Dancer", + "description": "Quando outro Pokémon usa um movimento de dança, pode usar um movimento de dança na sequência independentemente de sua Velocidade." + }, + "battery": { + "name": "Battery", + "description": "Fortalece os movimentos especiais dos Pokémon aliados." + }, + "fluffy": { + "name": "Fluffy", + "description": "Corta pela metade o dano recebido de movimentos que fazem contato direto, porém, dobra o dano dos ataques do tipo Fogo." + }, + "dazzling": { + "name": "Dazzling", + "description": "Surpreende o Pokémon adversário, impedindo-o de atacar usando movimentos de prioridade." + }, + "soulHeart": { + "name": "Soul-Heart", + "description": "Aumenta seu atributo de Ataque Esp. toda vez que um Pokémon desmaia." + }, + "tanglingHair": { + "name": "Tangling Hair", + "description": "Contato direto com o Pokémon diminui o atributo de Velocidade do atacante." + }, + "receiver": { + "name": "Receiver", + "description": "O Pokémon copia a Habilidade de um aliado derrotado." + }, + "powerOfAlchemy": { + "name": "Power of Alchemy", + "description": "O Pokémon copia a Habilidade de um aliado derrotado." + }, + "beastBoost": { + "name": "Beast Boost", + "description": "O Pokémon aumentará seu melhor atributo sempre que derrotar outro Pokémon." + }, + "rksSystem": { + "name": "RKS System", + "description": "Troca o tipo do Pokémon para igualar com o disco de memória que ele tiver instalado." + }, + "electricSurge": { + "name": "Electric Surge", + "description": "Quando o Pokémon entra em batalha, altera o terreno para Terreno Elétrico." + }, + "psychicSurge": { + "name": "Psychic Surge", + "description": "Quando o Pokémon entra em batalha, altera o terreno para Terreno Psíquico." + }, + "mistySurge": { + "name": "Misty Surge", + "description": "Quando o Pokémon entra em batalha, altera o terreno para Terreno Enevoado." + }, + "grassySurge": { + "name": "Grassy Surge", + "description": "Quando o Pokémon entra em batalha, altera o terreno para Terreno de Grama." + }, + "fullMetalBody": { + "name": "Full Metal Body", + "description": "Previne que as Habilidades e movimentos de outros Pokémon diminuam os atributos deste Pokémon." + }, + "shadowShield": { + "name": "Shadow Shield", + "description": "Reduz a quantidade de dano que o Pokémon recebe enquanto estiver com seus PS ao máximo." + }, + "prismArmor": { + "name": "Prism Armor", + "description": "Reduz o dano recebido por movimentos supereficazes." + }, + "neuroforce": { + "name": "Neuroforce", + "description": "Fortalece movimentos supereficazes." + }, + "intrepidSword": { + "name": "Intrepid Sword", + "description": "Aumenta o atributo de Ataque ao entrar em batalha." + }, + "dauntlessShield": { + "name": "Dauntless Shield", + "description": "Aumenta o atributo de Defesa ao entrar em batalha." + }, + "libero": { + "name": "Libero", + "description": "Muda o tipo do Pokémon para o tipo do movimento que ele estiver prestes a usar." + }, + "ballFetch": { + "name": "Ball Fetch", + "description": "Se o Pokémon não estiver segurando nenhum item, ele irá buscar a primeira Poké Bola que falhou em capturar um Pokémon na batalha." + }, + "cottonDown": { + "name": "Cotton Down", + "description": "Quando o Pokémon é atingido por um ataque, ele espalha algodão à volta, diminuindo o atributo de Velocidade de todos os Pokémon, exceto ele mesmo." + }, + "propellerTail": { + "name": "Propeller Tail", + "description": "Ignora os efeitos de Habilidades e movimentos de Pokémon adversários que redirecionam e atraem movimentos para si." + }, + "mirrorArmor": { + "name": "Mirror Armor", + "description": "Devolve apenas os efeitos redutores de atributos que o Pokémon recebe." + }, + "gulpMissile": { + "name": "Gulp Missile", + "description": "Quando o Pokémon usa Surf ou Dive, volta com uma presa. Quando recebe dano, cospe a presa no atacante." + }, + "stalwart": { + "name": "Stalwart", + "description": "Ignora os efeitos de Habilidades e movimentos de Pokémon adversários que redirecionam e atraem movimentos para si." + }, + "steamEngine": { + "name": "Steam Engine", + "description": "Aumenta drasticamente a Velocidade, se for atingido por um movimento do tipo Água ou Fogo." + }, + "punkRock": { + "name": "Punk Rock", + "description": "Aumenta o poder dos movimentos baseados em som. O Pokémon também recebe metade do dano desses tipos de movimentos." + }, + "sandSpit": { + "name": "Sand Spit", + "description": "O Pokémon cria uma tempestade de areia quando é atingido por um ataque." + }, + "iceScales": { + "name": "Ice Scales", + "description": "As gélidas escamas que rodeiam seu corpo reduzem à metade o dano recebido por movimentos especiais." + }, + "ripen": { + "name": "Ripen", + "description": "Amadurece Frutas e dobram seus efeitos." + }, + "iceFace": { + "name": "Ice Face", + "description": "Sua cabeça de gelo pode receber ataques físicos como substituto, mas faz com que a aparência do Pokémon mude. O gelo é restaurado no granizo." + }, + "powerSpot": { + "name": "Power Spot", + "description": "O simples fato de estar próximo ao Pokémon fortalece o poder de movimentos." + }, + "mimicry": { + "name": "Mimicry", + "description": "Muda o tipo do Pokémon dependendo do terreno." + }, + "screenCleaner": { + "name": "Screen Cleaner", + "description": "Quando o Pokémon entra em batalha os efeitos de Tela de Luz, Refletir e Véu Aurora são anulados, tanto para Pokémon aliados quanto para oponentes." + }, + "steelySpirit": { + "name": "Steely Spirit", + "description": "Fortalece o poder dos movimentos do tipo Aço de Pokémon aliados." + }, + "perishBody": { + "name": "Perish Body", + "description": "Quando for atingido por um ataque que cause contato direto, tanto o Pokémon quanto o atacante desmaiarão após três turnos, a não ser que recuem da batalha." + }, + "wanderingSpirit": { + "name": "Wandering Spirit", + "description": "O Pokémon troca de Habilidade com um Pokémon que o atinja com um movimento que faz contato direto." + }, + "gorillaTactics": { + "name": "Gorilla Tactics", + "description": "Aumenta o Ataque do Pokémon, entretanto, só permite que ele utilize o primeiro movimento escolhido." + }, + "neutralizingGas": { + "name": "Neutralizing Gas", + "description": "Se o Pokémon com Gás Neutralizador está na batalha, os efeitos das Habilidades de todos os Pokémon serão anuladas ou não serão ativados." + }, + "pastelVeil": { + "name": "Pastel Veil", + "description": "Protege o Pokémon e seu aliado de serem envenenados." + }, + "hungerSwitch": { + "name": "Hunger Switch", + "description": "O Pokémon troca sua forma, alternando entre o Modo Satisfeito e Modo Voraz ao fim de cada turno." + }, + "quickDraw": { + "name": "Quick Draw", + "description": "Permite que o Pokémon aja primeiro ocasionalmente." + }, + "unseenFist": { + "name": "Unseen Fist", + "description": "Se o Pokémon utilizar movimentos que façam contato direto, pode atacar seu alvo mesmo que ele tenha se protegido." + }, + "curiousMedicine": { + "name": "Curious Medicine", + "description": "Quando o Pokémon entra em uma batalha, espalha medicamentos de sua concha que removem de aliados todas mudanças de estado." + }, + "transistor": { + "name": "Transistor", + "description": "Fortalece movimentos do tipo Elétrico." + }, + "dragonsMaw": { + "name": "Dragon's Maw", + "description": "Fortalece movimentos do tipo Dragão." + }, + "chillingNeigh": { + "name": "Chilling Neigh", + "description": "Quando o Pokémon derrota um alvo, emite um relincho assustador que aumenta seu Ataque." + }, + "grimNeigh": { + "name": "Grim Neigh", + "description": "Quando o Pokémon derrota um alvo, emite um relincho assustador que aumenta seu Ataque Esp." + }, + "asOneGlastrier": { + "name": "As One", + "description": "Esta habilidade combina os efeitos da habilidade Unnerve de Calyrex e da habilidade Chilling Neigh de Glastrier." + }, + "asOneSpectrier": { + "name": "As One", + "description": "Essa Habilidade combina os efeitos das Habilidades Enervar de Calyrex e Relincho Negro de Spectrier." + }, + "lingeringAroma": { + "name": "Lingering Aroma", + "description": "O contato com o Pokémon muda a Habilidade do atacante para Lingering Aroma." + }, + "seedSower": { + "name": "Seed Sower", + "description": "Transforma o solo em Terreno de Grama quando o Pokémon é atingido por um ataque." + }, + "thermalExchange": { + "name": "Thermal Exchange", + "description": "Aumenta o atributo de Ataque quando o Pokémon é atingido por um movimento do tipo Fogo. O Pokémon também não pode ser queimado." + }, + "angerShell": { + "name": "Anger Shell", + "description": "Quando um ataque faz com que seu HP caia para metade ou menos, o Pokémon se enfurece. Isso reduz seus atributos de Defesa e Defesa Especial, mas aumenta seus atributos de Ataque, Ataque Especial e Velocidade." + }, + "purifyingSalt": { + "name": "Purifying Salt", + "description": "O sal puro do Pokémon o protege de condições de estado e reduz pela metade o dano recebido de movimentos do tipo Fantasma." + }, + "wellBakedBody": { + "name": "Well-Baked Body", + "description": "O Pokémon não recebe dano quando atingido por movimentos do tipo Fogo. Em vez disso, seu atributo de Defesa é aumentado drasticamente." + }, + "windRider": { + "name": "Wind Rider", + "description": "Aumenta o atributo de Ataque do Pokémon se o Vento de Cauda tiver efeito ou se o Pokémon for atingido por um movimento de vento. O Pokémon também não recebe dano de movimentos de vento." + }, + "guardDog": { + "name": "Guard Dog", + "description": "Aumenta o atributo de Ataque do Pokémon se intimidado. Movimentos e itens que forçariam o Pokémon a trocar também falham em funcionar." + }, + "rockyPayload": { + "name": "Rocky Payload", + "description": "Aumenta o poder dos movimentos do tipo Pedra." + }, + "windPower": { + "name": "Wind Power", + "description": "O Pokémon fica carregado quando é atingido por um movimento de vento, aumentando o poder do próximo movimento do tipo Elétrico que o Pokémon usa." + }, + "zeroToHero": { + "name": "Zero to Hero", + "description": "O Pokémon se transforma em sua Forma Herói quando é trocado." + }, + "commander": { + "name": "Commander", + "description": "Quando o Pokémon entra em batalha, ele entra na boca de um Dondozo aliado se ele estiver no campo. O Pokémon então emite comandos de lá." + }, + "electromorphosis": { + "name": "Electromorphosis", + "description": "O Pokémon fica carregado quando sofre dano, aumentando o poder do próximo movimento do tipo Elétrico que o Pokémon usa." + }, + "protosynthesis": { + "name": "Protosynthesis", + "description": "Aumenta o atributo mais proficiente do Pokémon sob sol intenso ou se o Pokémon estiver segurando Booster Energy." + }, + "quarkDrive": { + "name": "Quark Drive", + "description": "Aumenta o atributo mais proficiente do Pokémon em Terreno Elétrico ou se o Pokémon estiver segurando Booster Energy." + }, + "goodAsGold": { + "name": "Good as Gold", + "description": "Um corpo de ouro puro dá ao Pokémon imunidade completa aos movimentos de status de outros Pokémon." + }, + "vesselOfRuin": { + "name": "Vessel of Ruin", + "description": "O poder do recipiente de ruínas do Pokémon reduz os atributos de Ataque Especial de todos os Pokémon exceto o dele." + }, + "swordOfRuin": { + "name": "Sword of Ruin", + "description": "O poder da espada de ruínas do Pokémon reduz os atributos de Defesa de todos os Pokémon exceto o dele." + }, + "tabletsOfRuin": { + "name": "Tablets of Ruin", + "description": "O poder das tábuas de ruínas do Pokémon reduz os atributos de Ataque de todos os Pokémon exceto o dele." + }, + "beadsOfRuin": { + "name": "Beads of Ruin", + "description": "O poder das contas de ruínas do Pokémon reduz os atributos de Defesa Especial de todos os Pokémon exceto o dele." + }, + "orichalcumPulse": { + "name": "Orichalcum Pulse", + "description": "Torna a luz solar intensa quando o Pokémon entra em batalha. O antigo pulso vibrante do Pokémon também aumenta seu atributo de Ataque sob sol intenso." + }, + "hadronEngine": { + "name": "Hadron Engine", + "description": "Transforma o solo em Terreno Elétrico quando o Pokémon entra em batalha. O motor futurista dentro do Pokémon também aumenta seu atributo de Ataque Especial em Terreno Elétrico." + }, + "opportunist": { + "name": "Opportunist", + "description": "Se um atributo de um oponente for aumentado, o Pokémon aproveita a oportunidade para aumentar o mesmo atributo para si mesmo." + }, + "cudChew": { + "name": "Cud Chew", + "description": "Quando o Pokémon come uma Berry, ele a regurgita no final do próximo turno e come novamente." + }, + "sharpness": { + "name": "Sharpness", + "description": "Aumenta o poder dos movimentos de corte." + }, + "supremeOverlord": { + "name": "Supreme Overlord", + "description": "Quando o Pokémon entra em batalha, seus atributos de Ataque e Ataque Especial são levemente aumentados para cada um dos aliados em sua equipe que já foram derrotados." + }, + "costar": { + "name": "Costar", + "description": "Quando o Pokémon entra em batalha, ele copia as mudanças de atributos de um aliado." + }, + "toxicDebris": { + "name": "Toxic Debris", + "description": "Espalha espinhos venenosos aos pés da equipe adversária quando o Pokémon sofre dano de movimentos físicos." + }, + "armorTail": { + "name": "Armor Tail", + "description": "A cauda misteriosa que cobre a cabeça do Pokémon impede que oponentes usem movimentos de prioridade contra o Pokémon ou seus aliados." + }, + "earthEater": { + "name": "Earth Eater", + "description": "Se for atingido por um movimento do tipo Terra, o Pokémon restaura seu HP em vez de sofrer dano." + }, + "myceliumMight": { + "name": "Mycelium Might", + "description": "O Pokémon sempre agirá mais lentamente quando usar movimentos de status, mas esses movimentos não serão impedidos pela Habilidade do alvo." + }, + "mindsEye": { + "name": "Mind's Eye", + "description": "O Pokémon ignora mudanças na evasividade dos oponentes, sua precisão não pode ser reduzida, e ele pode atingir tipos Fantasma com movimentos dos tipos Normal e Lutador." + }, + "supersweetSyrup": { + "name": "Supersweet Syrup", + "description": "Um aroma doce e enjoativo se espalha pelo campo na primeira vez que o Pokémon entra em batalha, reduzindo a evasividade dos Pokémon oponentes." + }, + "hospitality": { + "name": "Hospitality", + "description": "Quando o Pokémon entra em batalha, ele banha seu aliado com hospitalidade, restaurando uma pequena quantidade do HP do aliado." + }, + "toxicChain": { + "name": "Toxic Chain", + "description": "O poder da cadeia tóxica do Pokémon pode envenenar gravemente qualquer alvo que o Pokémon atinja com um movimento." + }, + "embodyAspectTeal": { + "name": "Embody Aspect", + "description": "O coração do Pokémon se enche de memórias, fazendo com que a Máscara Teal brilhe e aumente o atributo de Velocidade do Pokémon." + }, + "embodyAspectWellspring": { + "name": "Embody Aspect", + "description": "O coração do Pokémon se enche de memórias, fazendo com que a Máscara Wellspring brilhe e aumente o atributo de Defesa Especial do Pokémon." + }, + "embodyAspectHearthflame": { + "name": "Embody Aspect", + "description": "O coração do Pokémon se enche de memórias, fazendo com que a Máscara Hearthflame brilhe e aumente o atributo de Ataque do Pokémon." + }, + "embodyAspectCornerstone": { + "name": "Embody Aspect", + "description": "O coração do Pokémon se enche de memórias, fazendo com que a Máscara Cornerstone brilhe e aumente o atributo de Defesa do Pokémon." + }, + "teraShift": { + "name": "Tera Shift", + "description": "Quando o Pokémon entra em batalha, ele absorve a energia ao seu redor e se transforma em sua Forma Terastal." + }, + "teraShell": { + "name": "Tera Shell", + "description": "A casca do Pokémon contém os poderes de cada tipo. Todos os movimentos que causam dano que atingem o Pokémon quando seu HP está cheio não serão muito eficazes." + }, + "teraformZero": { + "name": "Teraform Zero", + "description": "Quando Terapagos muda para sua Forma Estelar, ele usa seus poderes ocultos para eliminar todos os efeitos do clima e do terreno, reduzindo-os a zero." + }, + "poisonPuppeteer": { + "name": "Poison Puppeteer", + "description": "Pokémon envenenados pelos movimentos de Pecharunt também ficarão confusos." + } +} diff --git a/src/locales/pt_BR/ability.ts b/src/locales/pt_BR/ability.ts deleted file mode 100644 index 2dd4550aabd..00000000000 --- a/src/locales/pt_BR/ability.ts +++ /dev/null @@ -1,1240 +0,0 @@ -import { AbilityTranslationEntries } from "#app/interfaces/locales.js"; - -export const ability: AbilityTranslationEntries = { - stench: { - name: "Stench", - description: "Liberando um forte odor enquanto ataca, este Pokémon pode fazer o alvo hesitar.", - }, - drizzle: { - name: "Drizzle", - description: "O Pokémon faz chover ao entrar em batalha.", - }, - speedBoost: { - name: "Speed Boost", - description: "Seu atributo de Velocidade é aumentado a cada turno.", - }, - battleArmor: { - name: "Battle Armor", - description: "Uma forte armadura protege o Pokémon de golpes críticos.", - }, - sturdy: { - name: "Sturdy", - description: "Impede que seja nocauteado com apenas um golpe, se estiver com seus PS ao máximo. Também evita que movimentos de golpes fatais o derrubem.", - }, - damp: { - name: "Damp", - description: "Previne o uso de movimentos explosivos, como a Autodestruição, aumentando a umidade dos arredores.", - }, - limber: { - name: "Limber", - description: "Seu corpo maleável protege o Pokémon da paralisia.", - }, - sandVeil: { - name: "Sand Veil", - description: "Aumenta a evasão do Pokémon durante as tempestades de areia.", - }, - static: { - name: "Static", - description: "O Pokémon é carregado com energia estática, então entrar em contato com ele pode causar paralisia.", - }, - voltAbsorb: { - name: "Volt Absorb", - description: "Se for atingido por um movimento do tipo Elétrico, ele restaura seus PS ao invés de receber dano.", - }, - waterAbsorb: { - name: "Water Absorb", - description: "Se for atingido por um movimento do tipo Água, ele restaura seus PS ao invés de receber dano.", - }, - oblivious: { - name: "Oblivious", - description: "Sua indiferença impede que o Pokémon fique apaixonado ou seja provocado por outro Pokémon.", - }, - cloudNine: { - name: "Cloud Nine", - description: "Anula todos os efeitos climáticos na batalha.", - }, - compoundEyes: { - name: "Compound Eyes", - description: "O olho preciso do Pokémon aumenta sua precisão.", - }, - insomnia: { - name: "Insomnia", - description: "Este Pokémon está sofrendo com insônia e não pode adormecer.", - }, - colorChange: { - name: "Color Change", - description: "Este Pokémon se torna do tipo do último ataque que sofreu.", - }, - immunity: { - name: "Immunity", - description: "O sistema imunológico deste Pokémon impede que ele seja envenenado.", - }, - flashFire: { - name: "Flash Fire", - description: "Fortalece movimentos do tipo Fogo quando atingido por um.", - }, - shieldDust: { - name: "Shield Dust", - description: "A poeira desse Pokémon bloqueia efeitos adicionais dos ataques recebidos.", - }, - ownTempo: { - name: "Own Tempo", - description: "Este Pokémon tem seu próprio ritmo, que o impede de ficar confuso.", - }, - suctionCups: { - name: "Suction Cups", - description: "Este Pokémon usa sua ventosas para fixar-se no lugar, negando todos os movimentos e itens que o obriguem a recuar.", - }, - intimidate: { - name: "Intimidate", - description: "Quando entra em batalha, este Pokémon intimida o Pokémon adversário, diminuindo seu Ataque.", - }, - shadowTag: { - name: "Shadow Tag", - description: "Este Pokémon pisa na sombra do Pokémon adversário, impedindo que ele escape da batalha.", - }, - roughSkin: { - name: "Rough Skin", - description: "Quando recebe um ataque direto, usa sua pele áspera para infligir dano ao Pokémon atacante.", - }, - wonderGuard: { - name: "Wonder Guard", - description: "Devido seu misterioso poder, apenas movimentos supereficazes acertam esse Pokémon.", - }, - levitate: { - name: "Levitate", - description: "Através da levitação esse Pokémon se torna completamente imune a movimentos do tipo Terra.", - }, - effectSpore: { - name: "Effect Spore", - description: "Contato direto com o Pokémon pode infligir paralisia, sono ou envenenamento ao atacante.", - }, - synchronize: { - name: "Synchronize", - description: "O atacante sofrerá a mesma mudança de estado se causar queima, envenenamento ou paralisia ao Pokémon.", - }, - clearBody: { - name: "Clear Body", - description: "Previne que Habilidades e movimentos de outros Pokémon diminuam os atributos deste Pokémon.", - }, - naturalCure: { - name: "Natural Cure", - description: "Quando este Pokémon recua, todas mudanças de estado são curadas.", - }, - lightningRod: { - name: "Lightning Rod", - description: "O Pokémon absorve todos os movimentos do tipo Elétrico e, ao invés de sofrer dano, aumenta seu Ataque Esp.", - }, - sereneGrace: { - name: "Serene Grace", - description: "Aumenta a probabilidade de ocorrerem efeitos adicionais ao atacar.", - }, - swiftSwim: { - name: "Swift Swim", - description: "A Velocidade do Pokémon é aumentada quando chove.", - }, - chlorophyll: { - name: "Chlorophyll", - description: "A Velocidade do Pokémon é aumentada sob sol forte.", - }, - illuminate: { - name: "Illuminate", - description: "Ilumina os arredores, aumentado a possibilidade de encontrar Pokémon selvagens.", - }, - trace: { - name: "Trace", - description: "Quando entra em batalha, o Pokémon copia a Habilidade de um Pokémon adversário.", - }, - hugePower: { - name: "Huge Power", - description: "Dobra o Ataque do Pokémon.", - }, - poisonPoint: { - name: "Poison Point", - description: "Contato direto com o Pokémon pode envenenar o atacante.", - }, - innerFocus: { - name: "Inner Focus", - description: "O foco extraordinário do Pokémon o impede de hesitar.", - }, - magmaArmor: { - name: "Magma Armor", - description: "O magma escaldante que cobre o Pokémon previne seu congelamento.", - }, - waterVeil: { - name: "Water Veil", - description: "O véu de água que cobre o Pokémon previne que ele seja queimado.", - }, - magnetPull: { - name: "Magnet Pull", - description: "Impede que Pokémon do tipo Aço escapem através da utilização de sua força magnética.", - }, - soundproof: { - name: "Soundproof", - description: "Antirruído dá ao Pokémon imunidade completa a todos movimentos baseados em som.", - }, - rainDish: { - name: "Rain Dish", - description: "O Pokémon recupera PS gradualmente na chuva.", - }, - sandStream: { - name: "Sand Stream", - description: "Quando entra em batalha o Pokémon conjura uma tempestade de areia.", - }, - pressure: { - name: "Pressure", - description: "Pressionando o Pokémon adversário, ele aumenta o custo de PP para o adversário usar um movimento.", - }, - thickFat: { - name: "Thick Fat", - description: "Movimentos dos tipos Fogo e Água têm seu dano reduzido pela metade devido à grossa camada de gordura que protege o Pokémon.", - }, - earlyBird: { - name: "Early Bird", - description: "O Pokémon acorda duas vezes mais rápido que outros Pokémon.", - }, - flameBody: { - name: "Flame Body", - description: "Contato direto com o Pokémon pode queimar o atacante.", - }, - runAway: { - name: "Run Away", - description: "Torna a fuga de encontros com Pokémon selvagem garantida.", - }, - keenEye: { - name: "Keen Eye", - description: "Seu olhar extremamente aguçado evita que outros Pokémon diminuam sua Precisão.", - }, - hyperCutter: { - name: "Hyper Cutter", - description: "Suas poderosas pinças enchem o Pokémon de orgulho. Elas impedem que outros Pokémon diminuam seu atributo de Ataque.", - }, - pickup: { - name: "Pickup", - description: "Após uma batalha, o Pokémon pegará um item que um adversário deixou cair.", - }, - truant: { - name: "Truant", - description: "Se utilizar um movimento, o Pokémon precisará descansar no turno seguinte.", - }, - hustle: { - name: "Hustle", - description: "Aumenta seu Ataque em troca de diminuir a precisão.", - }, - cuteCharm: { - name: "Cute Charm", - description: "Contato direto com o Pokémon pode causar paixão ao atacante.", - }, - plus: { - name: "Plus", - description: "Aumenta o Ataque Esp. do Pokémon se estiver em batalha com um aliado que tenha as Habilidades Plus ou Minus.", - }, - minus: { - name: "Minus", - description: "Aumenta o Ataque Esp. do Pokémon se estiver em batalha com um aliado que tenha as Habilidades Mais ou Menos.", - }, - forecast: { - name: "Forecast", - description: "O tipo do Pokémon altera-se para Água, Fogo ou Gelo, dependendo do clima.", - }, - stickyHold: { - name: "Sticky Hold", - description: "Outros Pokémon não podem remover itens que este Pokémon esteja segurando.", - }, - shedSkin: { - name: "Shed Skin", - description: "O Pokémon pode curar-se de mudanças de estado através da troca de pele.", - }, - guts: { - name: "Guts", - description: "É tão corajoso que ser afetado por uma mudança de estado aumenta seu Ataque.", - }, - marvelScale: { - name: "Marvel Scale", - description: "Se for afetado por uma mudança de estado, as escamas maravilhosas do Pokémon aumentarão sua Defesa.", - }, - liquidOoze: { - name: "Liquid Ooze", - description: "Exala uma substância tóxica com fedor terrível que causa dano a qualquer atacante que use um movimento de dreno.", - }, - overgrow: { - name: "Overgrow", - description: "Fortalece os movimentos do tipo Planta quando o Pokémon está com poucos PS.", - }, - blaze: { - name: "Blaze", - description: "Fortalece os movimentos do tipo Fogo quando o Pokémon está com poucos PS.", - }, - torrent: { - name: "Torrent", - description: "Fortalece os movimentos do tipo Água quando o Pokémon está com poucos PS.", - }, - swarm: { - name: "Swarm", - description: "Fortalece os movimentos do tipo Inseto quando o Pokémon está com poucos PS.", - }, - rockHead: { - name: "Rock Head", - description: "Protege o Pokémon de dano colateral.", - }, - drought: { - name: "Drought", - description: "Intensifica a luz solar quando o Pokémon entra em batalha.", - }, - arenaTrap: { - name: "Arena Trap", - description: "Impede que Pokémon adversários fujam.", - }, - vitalSpirit: { - name: "Vital Spirit", - description: "Sua determinação o impede de adormecer.", - }, - whiteSmoke: { - name: "White Smoke", - description: "O Pokémon é protegido por sua fumaça branca que previne que outros Pokémon diminuam seus atributos.", - }, - purePower: { - name: "Pure Power", - description: "O Pokémon dobra seu Ataque usando seu poder puro.", - }, - shellArmor: { - name: "Shell Armor", - description: "A robusta couraça que protege o Pokémon bloqueia os golpes críticos.", - }, - airLock: { - name: "Air Lock", - description: "Elimina efeitos climáticos.", - }, - tangledFeet: { - name: "Tangled Feet", - description: "Sua evasão aumenta se estiver confuso.", - }, - motorDrive: { - name: "Motor Drive", - description: "O Pokémon absorve todos os movimentos do tipo Elétrico e, ao invés de sofrer dano, aumenta seu atributo de Velocidade.", - }, - rivalry: { - name: "Rivalry", - description: "Sua competitividade faz com que cause mais dano a Pokémon do mesmo gênero, enquanto causa dano reduzido a Pokémon do gênero oposto.", - }, - steadfast: { - name: "Steadfast", - description: "A determinação do Pokémon faz com que sua Velocidade aumente cada vez que ele hesita.", - }, - snowCloak: { - name: "Snow Cloak", - description: "Aumenta a evasão numa tempestade de granizo.", - }, - gluttony: { - name: "Gluttony", - description: "Se estiver segurando uma fruta, a consumirá quando seus PS caírem abaixo da metade, o que é mais cedo que o usual.", - }, - angerPoint: { - name: "Anger Point", - description: "Quando recebe um acerto crítico se enraivece, e com isso, aumenta seu Ataque.", - }, - unburden: { - name: "Unburden", - description: "Se o item que o Pokémon estiver segurando for usado ou perdido, sua Velocidade aumentará.", - }, - heatproof: { - name: "Heatproof", - description: "O corpo a prova de calor desse Pokémon corta pela metade o dano de ataques do tipo Fogo que o acertam.", - }, - simple: { - name: "Simple", - description: "Duplica as mudanças de atributos do Pokémon.", - }, - drySkin: { - name: "Dry Skin", - description: "Durante chuva ou se for atingido por movimentos de Água, recupera PS. Durante sol forte tem seus PS máximo reduzido e leva dano aumentado do tipo Fogo.", - }, - download: { - name: "Download", - description: "Compara Defesa e Defesa Esp. do Pokémon adversário antes de aumentar seu próprio Ataque Esp. ou Ataque, a depender de qual será mais efetivo.", - }, - ironFist: { - name: "Iron Fist", - description: "Fortalece movimentos de soco.", - }, - poisonHeal: { - name: "Poison Heal", - description: "Se o Pokémon estiver envenenado, recuperará PS ao invés de perdê-los.", - }, - adaptability: { - name: "Adaptability", - description: "Fortalece movimentos do mesmo tipo do Pokémon.", - }, - skillLink: { - name: "Skill Link", - description: "Faz com que movimentos de repetição acertem sempre o máximo de vezes possível.", - }, - hydration: { - name: "Hydration", - description: "Cura mudanças de estado durante a chuva.", - }, - solarPower: { - name: "Solar Power", - description: "Aumenta o Ataque Esp. durante o sol forte, entretanto perde um pouco de PS a cada turno.", - }, - quickFeet: { - name: "Quick Feet", - description: "Aumenta a Velocidade se o Pokémon sofrer uma mudança de estado.", - }, - normalize: { - name: "Normalize", - description: "Todos os movimentos do Pokémon se tornam do tipo Normal. Aumenta um pouco o poder desses movimentos.", - }, - sniper: { - name: "Sniper", - description: "Aumenta o poder dos ataques caso sejam críticos.", - }, - magicGuard: { - name: "Magic Guard", - description: "O Pokémon só recebe dano de movimentos de ataque.", - }, - noGuard: { - name: "No Guard", - description: "Para garantir que todos os ataques atinjam o oponente, o Pokémon adota uma estratégia de desguarnecimento, porém, isso faz com que todos ataques o atinjam.", - }, - stall: { - name: "Stall", - description: "O Pokémon age somente após todos os outros agirem.", - }, - technician: { - name: "Technician", - description: "Aumenta o poder dos ataques mais fracos do Pokémon.", - }, - leafGuard: { - name: "Leaf Guard", - description: "Previne mudanças de estado sob o sol forte.", - }, - klutz: { - name: "Klutz", - description: "O Pokémon não pode usar nenhum item que esteja segurando.", - }, - moldBreaker: { - name: "Mold Breaker", - description: "Movimentos podem atingir independentemente da Habilidade do alvo.", - }, - superLuck: { - name: "Super Luck", - description: "O Pokémon é tão sortudo que tem a sua probabilidade de realizar golpes críticos aumentada.", - }, - aftermath: { - name: "Aftermath", - description: "Caso o Pokémon seja derrotado em decorrência de um movimento de contato, o atacante recebe dano.", - }, - anticipation: { - name: "Anticipation", - description: "O Pokémon pode sentir movimentos perigosos vindos do Pokémon adversário.", - }, - forewarn: { - name: "Forewarn", - description: "Quando entra em batalha, o Pokémon pode dizer um dos movimentos do Pokémon adversário.", - }, - unaware: { - name: "Unaware", - description: "Quando está atacando, o Pokémon ignora mudanças de atributos do Pokémon adversário.", - }, - tintedLens: { - name: "Tinted Lens", - description: "Movimentos que seriam “pouco eficazes” causam dano normalmente quando usados pelo Pokémon.", - }, - filter: { - name: "Filter", - description: "Ataques supereficazes recebidos dão menos dano.", - }, - slowStart: { - name: "Slow Start", - description: "O Ataque e a Velocidade do Pokémon são cortados pela metade por cinco turnos.", - }, - scrappy: { - name: "Scrappy", - description: "O Pokémon pode atingir Pokémon do tipo Fantasma com ataques dos tipos Normal e Lutador.", - }, - stormDrain: { - name: "Storm Drain", - description: "Atrai todos movimentos do tipo Água para si. Ao invés de receber dano desses ataques, tem seu Ataque Esp. aumentado.", - }, - iceBody: { - name: "Ice Body", - description: "O Pokémon recupera PS gradualmente durante as tempestades de granizo.", - }, - solidRock: { - name: "Solid Rock", - description: "Reduz o dano recebido de ataques supereficazes.", - }, - snowWarning: { - name: "Snow Warning", - description: "O Pokémon conjura uma tempestade de granizo quando entra em batalha.", - }, - honeyGather: { - name: "Honey Gather", - description: "The Pokémon gathers Honey after a battle. The Honey is then sold for money.", - }, - frisk: { - name: "Frisk", - description: "Quando entra em batalha, o Pokémon pode checar a Habilidade do adversário.", - }, - reckless: { - name: "Reckless", - description: "Fortalece movimentos que têm dano colateral.", - }, - multitype: { - name: "Multitype", - description: "Altera o tipo do Pokémon para o mesmo da Placa ou Cristal Z em sua posse.", - }, - flowerGift: { - name: "Flower Gift", - description: "Sob sol forte, o Ataque e a Defesa Esp. do Pokémon e de seus aliados são aumentados.", - }, - badDreams: { - name: "Bad Dreams", - description: "Reduz os PS de Pokémon adversários que estiverem dormindo.", - }, - pickpocket: { - name: "Pickpocket", - description: "Rouba o item de um atacante que tenha feito contato direto.", - }, - sheerForce: { - name: "Sheer Force", - description: "Aumenta o poder de seus movimentos quando ataca, em detrimento de seus efeitos adicionais que são anulados.", - }, - contrary: { - name: "Contrary", - description: "Faz as mudanças de atributos terem efeito contrário.", - }, - unnerve: { - name: "Unnerve", - description: "Enerva Pokémon adversários, impossibilitando que eles consumam Frutas.", - }, - defiant: { - name: "Defiant", - description: "Aumenta bruscamente o Ataque do Pokémon quando seus atributos são diminuídos pelo adversário.", - }, - defeatist: { - name: "Defeatist", - description: "Quando fica com metade ou menos dos PS totais, corta o Ataque e Ataque Esp. do Pokémon pela metade.", - }, - cursedBody: { - name: "Cursed Body", - description: "Pode desabilitar um movimento utilizado no Pokémon.", - }, - healer: { - name: "Healer", - description: "Às vezes cura mudanças de estado de um aliado.", - }, - friendGuard: { - name: "Friend Guard", - description: "Reduz o dano causado em aliados.", - }, - weakArmor: { - name: "Weak Armor", - description: "Ataques físicos ao Pokémon diminuem sua Defesa, mas aumenta bruscamente sua Velocidade.", - }, - heavyMetal: { - name: "Heavy Metal", - description: "Dobra o peso do Pokémon.", - }, - lightMetal: { - name: "Light Metal", - description: "Divide o peso do Pokémon pela metade.", - }, - multiscale: { - name: "Multiscale", - description: "Reduz o dano que o Pokémon recebe quando está com os PS cheios.", - }, - toxicBoost: { - name: "Toxic Boost", - description: "Fortalece ataques físicos quando o Pokémon está envenenado.", - }, - flareBoost: { - name: "Flare Boost", - description: "Fortalece ataques especiais quando o Pokémon está queimado.", - }, - harvest: { - name: "Harvest", - description: "Pode criar outra Fruta após consumir uma.", - }, - telepathy: { - name: "Telepathy", - description: "Prevê os ataques de um aliado em combate e desvia de todos eles.", - }, - moody: { - name: "Moody", - description: "Aumenta bruscamente um atributo e diminui outro a cada turno.", - }, - overcoat: { - name: "Overcoat", - description: "Protege o Pokémon de coisas como areia, geada e pó.", - }, - poisonTouch: { - name: "Poison Touch", - description: "Pode envenenar um alvo quando o Pokémon faz contato.", - }, - regenerator: { - name: "Regenerator", - description: "Recupera um pouco de PS quando recua da batalha.", - }, - bigPecks: { - name: "Big Pecks", - description: "Protege o Pokémon de efeitos que diminuam a Defesa.", - }, - sandRush: { - name: "Sand Rush", - description: "Aumenta a Velocidade do Pokémon durante uma tempestade de areia.", - }, - wonderSkin: { - name: "Wonder Skin", - description: "Torna movimentos de atributos mais suscetíveis ao erro.", - }, - analytic: { - name: "Analytic", - description: "Aumenta o poder do movimento quando o Pokémon age por último.", - }, - illusion: { - name: "Illusion", - description: "Entra em batalha disfarçado, na forma do Pokémon que ocupar o último lugar na equipe.", - }, - imposter: { - name: "Imposter", - description: "O Pokémon se transforma no Pokémon que está enfrentando.", - }, - infiltrator: { - name: "Infiltrator", - description: "Ignora barreiras, substitutos e coisas do tipo utilizadas pelo Pokémon adversário e ataca normalmente.", - }, - mummy: { - name: "Mummy", - description: "Contato direto com o Pokémon altera a Habilidade do atacante para Múmia.", - }, - moxie: { - name: "Moxie", - description: "O Pokémon demonstra arrogância, e isso faz com que seu Ataque aumente após derrotar qualquer Pokémon.", - }, - justified: { - name: "Justified", - description: "Ser atingido por movimentos do tipo Sombrio aumenta o Ataque do Pokémon, por justiça.", - }, - rattled: { - name: "Rattled", - description: "Movimentos dos tipos Sombrio, Fantasma e Inseto assustam o Pokémon, aumentando sua Velocidade", - }, - magicBounce: { - name: "Magic Bounce", - description: "Ao invés de ser atingido por movimentos de atributos, reflete-os.", - }, - sapSipper: { - name: "Sap Sipper", - description: "Se for atingido por um movimento do tipo Planta, ao invés de receber dano, aumenta seu Ataque.", - }, - prankster: { - name: "Prankster", - description: "Dá prioridade a movimentos de estado.", - }, - sandForce: { - name: "Sand Force", - description: "Fortalece o poder dos movimentos do tipo Pedra, Terra e Aço em uma tempestade de areia.", - }, - ironBarbs: { - name: "Iron Barbs", - description: "Os espinhos de ferro infligem dano a um atacante que fizer contato direto.", - }, - zenMode: { - name: "Zen Mode", - description: "Quando o Pokémon tem seus PS reduzidos à metade ou menos, muda de forma.", - }, - victoryStar: { - name: "Victory Star", - description: "Aumenta a Precisão sua e de seus aliados.", - }, - turboblaze: { - name: "Turboblaze", - description: "Movimentos podem atingir independentemente da Habilidade do alvo.", - }, - teravolt: { - name: "Teravolt", - description: "Movimentos podem atingir independentemente da Habilidade do alvo.", - }, - aromaVeil: { - name: "Aroma Veil", - description: "Protege a si mesmo e a seus aliados de ataques que limitem a escolha de movimentos.", - }, - flowerVeil: { - name: "Flower Veil", - description: "Pokémon aliados do tipo Planta são protegidos de mudanças de estado e diminuição de seus atributos.", - }, - cheekPouch: { - name: "Cheek Pouch", - description: "Quando o Pokémon consome uma Fruta, também recupera um pouco de PS.", - }, - protean: { - name: "Protean", - description: "Muda o tipo do Pokémon para o tipo do movimento que ele vai utilizar.", - }, - furCoat: { - name: "Fur Coat", - description: "Reduz o dano de movimentos físicos pela metade.", - }, - magician: { - name: "Magician", - description: "O Pokémon rouba o item que um Pokémon alvo estiver segurando quando acerta um movimento.", - }, - bulletproof: { - name: "Bulletproof", - description: "Protege o Pokémon de alguns movimentos de bola e bomba.", - }, - competitive: { - name: "Competitive", - description: "Aumenta bruscamente o Ataque Esp. quando um atributo é diminuído.", - }, - strongJaw: { - name: "Strong Jaw", - description: "A poderosa mandíbula do Pokémon aumenta o poder dos seus movimentos de mordida.", - }, - refrigerate: { - name: "Refrigerate", - description: "Movimentos do tipo Normal se tornam do tipo Gelo. Aumenta um pouco o poder desses movimentos.", - }, - sweetVeil: { - name: "Sweet Veil", - description: "Previne a si e a Pokémon aliados de caírem no sono.", - }, - stanceChange: { - name: "Stance Change", - description: "O Pokemon muda para Forma Espada quando usa um movimento de ataque, e muda para a Forma Escudo quando usa o movimento Escudo do Rei.", - }, - galeWings: { - name: "Gale Wings", - description: "Quando o Pokémon está com os PS cheios, dá prioridade a movimentos do tipo Voador.", - }, - megaLauncher: { - name: "Mega Launcher", - description: "Fortalece movimentos de aura e pulso.", - }, - grassPelt: { - name: "Grass Pelt", - description: "Aumenta a Defesa do Pokémon em Terreno de Grama.", - }, - symbiosis: { - name: "Symbiosis", - description: "O Pokémon entrega seu item para um aliado que já tiver utilizado seu próprio item.", - }, - toughClaws: { - name: "Tough Claws", - description: "Fortalece movimentos que façam contato direto.", - }, - pixilate: { - name: "Pixilate", - description: "Movimentos do tipo Normal se tornam do tipo Fada. Aumenta um pouco o poder desses movimentos.", - }, - gooey: { - name: "Gooey", - description: "Contato direto com o Pokémon diminui o atributo de Velocidade do atacante.", - }, - aerilate: { - name: "Aerilate", - description: "Movimentos do tipo Normal se tornam do tipo Voador. Aumenta um pouco o poder desses movimentos.", - }, - parentalBond: { - name: "Parental Bond", - description: "Une suas forças com sua cria para atacar duas vezes.", - }, - darkAura: { - name: "Dark Aura", - description: "Fortalece movimentos do tipo Sombrio de todos os Pokémon.", - }, - fairyAura: { - name: "Fairy Aura", - description: "Fortalece movimentos do tipo Fada de todos os Pokémon.", - }, - auraBreak: { - name: "Aura Break", - description: "Os efeitos de Habilidades de “Aura” são revertidos para diminuir o poder de movimentos afetados.", - }, - primordialSea: { - name: "Primordial Sea", - description: "O Pokémon muda o clima para neutralizar ataques do tipo Fogo.", - }, - desolateLand: { - name: "Desolate Land", - description: "O Pokémon muda o clima para neutralizar ataques do tipo Água.", - }, - deltaStream: { - name: "Delta Stream", - description: "O Pokémon muda o clima para eliminar todas as vulnerabilidades do tipo Voador.", - }, - stamina: { - name: "Stamina", - description: "Aumenta a Defesa quando atingido por um ataque.", - }, - wimpOut: { - name: "Wimp Out", - description: "Quando fica com metade ou menos de seus PS, recua covardemente da batalha.", - }, - emergencyExit: { - name: "Emergency Exit", - description: "Quando fica com metade ou menos de seus PS, sentindo que está em perigo, o Pokémon recua da batalha.", - }, - waterCompaction: { - name: "Water Compaction", - description: "Aumenta bruscamente a Defesa do Pokémon quando atingido por um movimento do tipo Água.", - }, - merciless: { - name: "Merciless", - description: "Os ataques do Pokémon se tornam críticos se o alvo estiver envenenado.", - }, - shieldsDown: { - name: "Shields Down", - description: "Quando fica com metade ou menos de seus PS, o Pokémon quebra sua carapaça e se torna agressivo.", - }, - stakeout: { - name: "Stakeout", - description: "Caso o alvo recue da batalha, dobra o dano causado ao Pokémon suplente.", - }, - waterBubble: { - name: "Water Bubble", - description: "Diminui o poder de movimentos do tipo Fogo usados contra o Pokémon e o impede de ficar queimado.", - }, - steelworker: { - name: "Steelworker", - description: "Fortalece os movimentos do tipo Aço.", - }, - berserk: { - name: "Berserk", - description: "Quando é atingido por um movimento que deixa seus PS na metade ou menos, aumenta seu Ataque Esp..", - }, - slushRush: { - name: "Slush Rush", - description: "Aumenta a Velocidade do Pokémon em uma tempestade de granizo.", - }, - longReach: { - name: "Long Reach", - description: "O Pokémon usa seus movimentos sem fazer contato direto com o alvo.", - }, - liquidVoice: { - name: "Liquid Voice", - description: "Todos os movimentos baseados em som se tornam do tipo Água.", - }, - triage: { - name: "Triage", - description: "Concede prioridade para movimentos de cura.", - }, - galvanize: { - name: "Galvanize", - description: "Movimentos do tipo Normal se transformam em movimentos do tipo Elétrico. Aumenta um pouco o poder desses movimentos.", - }, - surgeSurfer: { - name: "Surge Surfer", - description: "Dobra a Velocidade do Pokémon em Terreno Elétrico.", - }, - schooling: { - name: "Schooling", - description: "Quando está com bastante PS, o Pokémon forma um poderoso cardume, que se desfaz quando seus PS ficam baixos.", - }, - disguise: { - name: "Disguise", - description: "Uma vez por batalha, a mortalha que cobre o Pokémon pode protegê-lo de um ataque.", - }, - battleBond: { - name: "Battle Bond", - description: "Derrotar um Pokémon adversário fortalece os laços entre Pokémon e Treinador, fazendo com que se torne Greninja do Ash, e fortalecendo o ataque Shuriken de Água.", - }, - powerConstruct: { - name: "Power Construct", - description: "Quando seus PS ficam da metade para baixo, outras Células se agrupam para auxiliá-lo, fazendo com que o Pokémon mude para sua Forma Completa.", - }, - corrosion: { - name: "Corrosion", - description: "O Pokémon pode envenenar o alvo mesmo que ele seja dos tipos Aço ou Venenoso.", - }, - comatose: { - name: "Comatose", - description: "Está sempre cochilando e nunca acordará, entretanto, pode atacar sem acordar.", - }, - queenlyMajesty: { - name: "Queenly Majesty", - description: "Sua magnificência pressiona o Pokémon adversário, impossibilitando-o de utilizar movimentos de prioridade.", - }, - innardsOut: { - name: "Innards Out", - description: "Ao ser nocauteado, inflige dano ao adversário igual ao valor de PS que possuía antes de ser atacado.", - }, - dancer: { - name: "Dancer", - description: "Quando outro Pokémon usa um movimento de dança, pode usar um movimento de dança na sequência independentemente de sua Velocidade.", - }, - battery: { - name: "Battery", - description: "Fortalece os movimentos especiais dos Pokémon aliados.", - }, - fluffy: { - name: "Fluffy", - description: "Corta pela metade o dano recebido de movimentos que fazem contato direto, porém, dobra o dano dos ataques do tipo Fogo.", - }, - dazzling: { - name: "Dazzling", - description: "Surpreende o Pokémon adversário, impedindo-o de atacar usando movimentos de prioridade.", - }, - soulHeart: { - name: "Soul-Heart", - description: "Aumenta seu atributo de Ataque Esp. toda vez que um Pokémon desmaia.", - }, - tanglingHair: { - name: "Tangling Hair", - description: "Contato direto com o Pokémon diminui o atributo de Velocidade do atacante.", - }, - receiver: { - name: "Receiver", - description: "O Pokémon copia a Habilidade de um aliado derrotado.", - }, - powerOfAlchemy: { - name: "Power of Alchemy", - description: "O Pokémon copia a Habilidade de um aliado derrotado.", - }, - beastBoost: { - name: "Beast Boost", - description: "O Pokémon aumentará seu melhor atributo sempre que derrotar outro Pokémon.", - }, - rksSystem: { - name: "RKS System", - description: "Troca o tipo do Pokémon para igualar com o disco de memória que ele tiver instalado.", - }, - electricSurge: { - name: "Electric Surge", - description: "Quando o Pokémon entra em batalha, altera o terreno para Terreno Elétrico.", - }, - psychicSurge: { - name: "Psychic Surge", - description: "Quando o Pokémon entra em batalha, altera o terreno para Terreno Psíquico.", - }, - mistySurge: { - name: "Misty Surge", - description: "Quando o Pokémon entra em batalha, altera o terreno para Terreno Enevoado.", - }, - grassySurge: { - name: "Grassy Surge", - description: "Quando o Pokémon entra em batalha, altera o terreno para Terreno de Grama.", - }, - fullMetalBody: { - name: "Full Metal Body", - description: "Previne que as Habilidades e movimentos de outros Pokémon diminuam os atributos deste Pokémon.", - }, - shadowShield: { - name: "Shadow Shield", - description: "Reduz a quantidade de dano que o Pokémon recebe enquanto estiver com seus PS ao máximo.", - }, - prismArmor: { - name: "Prism Armor", - description: "Reduz o dano recebido por movimentos supereficazes.", - }, - intrepidSword: { - name: "Intrepid Sword", - description: "Aumenta o atributo de Ataque ao entrar em batalha.", - }, - dauntlessShield: { - name: "Dauntless Shield", - description: "Aumenta o atributo de Defesa ao entrar em batalha.", - }, - libero: { - name: "Libero", - description: "Muda o tipo do Pokémon para o tipo do movimento que ele estiver prestes a usar.", - }, - ballFetch: { - name: "Ball Fetch", - description: "Se o Pokémon não estiver segurando nenhum item, ele irá buscar a primeira Poké Bola que falhou em capturar um Pokémon na batalha.", - }, - cottonDown: { - name: "Cotton Down", - description: "Quando o Pokémon é atingido por um ataque, ele espalha algodão à volta, diminuindo o atributo de Velocidade de todos os Pokémon, exceto ele mesmo.", - }, - propellerTail: { - name: "Propeller Tail", - description: "Ignora os efeitos de Habilidades e movimentos de Pokémon adversários que redirecionam e atraem movimentos para si.", - }, - mirrorArmor: { - name: "Mirror Armor", - description: "Devolve apenas os efeitos redutores de atributos que o Pokémon recebe.", - }, - gulpMissile: { - name: "Gulp Missile", - description: "Quando o Pokémon usa Surf ou Dive, volta com uma presa. Quando recebe dano, cospe a presa no atacante.", - }, - stalwart: { - name: "Stalwart", - description: "Ignora os efeitos de Habilidades e movimentos de Pokémon adversários que redirecionam e atraem movimentos para si.", - }, - steamEngine: { - name: "Steam Engine", - description: "Aumenta drasticamente a Velocidade, se for atingido por um movimento do tipo Água ou Fogo.", - }, - punkRock: { - name: "Punk Rock", - description: "Aumenta o poder dos movimentos baseados em som. O Pokémon também recebe metade do dano desses tipos de movimentos.", - }, - sandSpit: { - name: "Sand Spit", - description: "O Pokémon cria uma tempestade de areia quando é atingido por um ataque.", - }, - iceScales: { - name: "Ice Scales", - description: "As gélidas escamas que rodeiam seu corpo reduzem à metade o dano recebido por movimentos especiais.", - }, - ripen: { - name: "Ripen", - description: "Amadurece Frutas e dobram seus efeitos.", - }, - iceFace: { - name: "Ice Face", - description: "Sua cabeça de gelo pode receber ataques físicos como substituto, mas faz com que a aparência do Pokémon mude. O gelo é restaurado no granizo.", - }, - powerSpot: { - name: "Power Spot", - description: "O simples fato de estar próximo ao Pokémon fortalece o poder de movimentos.", - }, - mimicry: { - name: "Mimicry", - description: "Muda o tipo do Pokémon dependendo do terreno.", - }, - screenCleaner: { - name: "Screen Cleaner", - description: "Quando o Pokémon entra em batalha os efeitos de Tela de Luz, Refletir e Véu Aurora são anulados, tanto para Pokémon aliados quanto para oponentes.", - }, - steelySpirit: { - name: "Steely Spirit", - description: "Fortalece o poder dos movimentos do tipo Aço de Pokémon aliados.", - }, - perishBody: { - name: "Perish Body", - description: "Quando for atingido por um ataque que cause contato direto, tanto o Pokémon quanto o atacante desmaiarão após três turnos, a não ser que recuem da batalha.", - }, - wanderingSpirit: { - name: "Wandering Spirit", - description: "O Pokémon troca de Habilidade com um Pokémon que o atinja com um movimento que faz contato direto.", - }, - gorillaTactics: { - name: "Gorilla Tactics", - description: "Aumenta o Ataque do Pokémon, entretanto, só permite que ele utilize o primeiro movimento escolhido.", - }, - neutralizingGas: { - name: "Neutralizing Gas", - description: "Se o Pokémon com Gás Neutralizador está na batalha, os efeitos das Habilidades de todos os Pokémon serão anuladas ou não serão ativados.", - }, - pastelVeil: { - name: "Pastel Veil", - description: "Protege o Pokémon e seu aliado de serem envenenados.", - }, - hungerSwitch: { - name: "Hunger Switch", - description: "O Pokémon troca sua forma, alternando entre o Modo Satisfeito e Modo Voraz ao fim de cada turno.", - }, - quickDraw: { - name: "Quick Draw", - description: "Permite que o Pokémon aja primeiro ocasionalmente.", - }, - unseenFist: { - name: "Unseen Fist", - description: "Se o Pokémon utilizar movimentos que façam contato direto, pode atacar seu alvo mesmo que ele tenha se protegido.", - }, - curiousMedicine: { - name: "Curious Medicine", - description: "Quando o Pokémon entra em uma batalha, espalha medicamentos de sua concha que removem de aliados todas mudanças de estado.", - }, - transistor: { - name: "Transistor", - description: "Fortalece movimentos do tipo Elétrico.", - }, - dragonsMaw: { - name: "Dragon's Maw", - description: "Fortalece movimentos do tipo Dragão.", - }, - chillingNeigh: { - name: "Chilling Neigh", - description: "Quando o Pokémon derrota um alvo, emite um relincho assustador que aumenta seu Ataque.", - }, - grimNeigh: { - name: "Grim Neigh", - description: "Quando o Pokémon derrota um alvo, emite um relincho assustador que aumenta seu Ataque Esp.", - }, - asOneGlacier: { - name: "As One", - description: "Essa Habilidade combina os efeitos das Habilidades Enervar de Calyrex e Relincho Branco de Glastrier.", - }, - asOneSpectrier: { - name: "As One", - description: "Essa Habilidade combina os efeitos das Habilidades Enervar de Calyrex e Relincho Negro de Spectrier.", - }, - lingeringAroma: { - name: "Lingering Aroma", - description: "O contato com o Pokémon muda a Habilidade do atacante para Lingering Aroma.", - }, - seedSower: { - name: "Seed Sower", - description: "Transforma o solo em Terreno de Grama quando o Pokémon é atingido por um ataque.", - }, - thermalExchange: { - name: "Thermal Exchange", - description: "Aumenta o atributo de Ataque quando o Pokémon é atingido por um movimento do tipo Fogo. O Pokémon também não pode ser queimado.", - }, - angerShell: { - name: "Anger Shell", - description: "Quando um ataque faz com que seu HP caia para metade ou menos, o Pokémon se enfurece. Isso reduz seus atributos de Defesa e Defesa Especial, mas aumenta seus atributos de Ataque, Ataque Especial e Velocidade.", - }, - purifyingSalt: { - name: "Purifying Salt", - description: "O sal puro do Pokémon o protege de condições de estado e reduz pela metade o dano recebido de movimentos do tipo Fantasma.", - }, - wellBakedBody: { - name: "Well-Baked Body", - description: "O Pokémon não recebe dano quando atingido por movimentos do tipo Fogo. Em vez disso, seu atributo de Defesa é aumentado drasticamente.", - }, - windRider: { - name: "Wind Rider", - description: "Aumenta o atributo de Ataque do Pokémon se o Vento de Cauda tiver efeito ou se o Pokémon for atingido por um movimento de vento. O Pokémon também não recebe dano de movimentos de vento.", - }, - guardDog: { - name: "Guard Dog", - description: "Aumenta o atributo de Ataque do Pokémon se intimidado. Movimentos e itens que forçariam o Pokémon a trocar também falham em funcionar.", - }, - rockyPayload: { - name: "Rocky Payload", - description: "Aumenta o poder dos movimentos do tipo Pedra.", - }, - windPower: { - name: "Wind Power", - description: "O Pokémon fica carregado quando é atingido por um movimento de vento, aumentando o poder do próximo movimento do tipo Elétrico que o Pokémon usa.", - }, - zeroToHero: { - name: "Zero to Hero", - description: "O Pokémon se transforma em sua Forma Herói quando é trocado.", - }, - commander: { - name: "Commander", - description: "Quando o Pokémon entra em batalha, ele entra na boca de um Dondozo aliado se ele estiver no campo. O Pokémon então emite comandos de lá.", - }, - electromorphosis: { - name: "Electromorphosis", - description: "O Pokémon fica carregado quando sofre dano, aumentando o poder do próximo movimento do tipo Elétrico que o Pokémon usa.", - }, - protosynthesis: { - name: "Protosynthesis", - description: "Aumenta o atributo mais proficiente do Pokémon sob sol intenso ou se o Pokémon estiver segurando Booster Energy.", - }, - quarkDrive: { - name: "Quark Drive", - description: "Aumenta o atributo mais proficiente do Pokémon em Terreno Elétrico ou se o Pokémon estiver segurando Booster Energy.", - }, - goodAsGold: { - name: "Good as Gold", - description: "Um corpo de ouro puro dá ao Pokémon imunidade completa aos movimentos de status de outros Pokémon.", - }, - vesselOfRuin: { - name: "Vessel of Ruin", - description: "O poder do recipiente de ruínas do Pokémon reduz os atributos de Ataque Especial de todos os Pokémon exceto o dele.", - }, - swordOfRuin: { - name: "Sword of Ruin", - description: "O poder da espada de ruínas do Pokémon reduz os atributos de Defesa de todos os Pokémon exceto o dele.", - }, - tabletsOfRuin: { - name: "Tablets of Ruin", - description: "O poder das tábuas de ruínas do Pokémon reduz os atributos de Ataque de todos os Pokémon exceto o dele.", - }, - beadsOfRuin: { - name: "Beads of Ruin", - description: "O poder das contas de ruínas do Pokémon reduz os atributos de Defesa Especial de todos os Pokémon exceto o dele.", - }, - orichalcumPulse: { - name: "Orichalcum Pulse", - description: "Torna a luz solar intensa quando o Pokémon entra em batalha. O antigo pulso vibrante do Pokémon também aumenta seu atributo de Ataque sob sol intenso.", - }, - hadronEngine: { - name: "Hadron Engine", - description: "Transforma o solo em Terreno Elétrico quando o Pokémon entra em batalha. O motor futurista dentro do Pokémon também aumenta seu atributo de Ataque Especial em Terreno Elétrico.", - }, - opportunist: { - name: "Opportunist", - description: "Se um atributo de um oponente for aumentado, o Pokémon aproveita a oportunidade para aumentar o mesmo atributo para si mesmo.", - }, - cudChew: { - name: "Cud Chew", - description: "Quando o Pokémon come uma Berry, ele a regurgita no final do próximo turno e come novamente.", - }, - sharpness: { - name: "Sharpness", - description: "Aumenta o poder dos movimentos de corte.", - }, - supremeOverlord: { - name: "Supreme Overlord", - description: "Quando o Pokémon entra em batalha, seus atributos de Ataque e Ataque Especial são levemente aumentados para cada um dos aliados em sua equipe que já foram derrotados.", - }, - costar: { - name: "Costar", - description: "Quando o Pokémon entra em batalha, ele copia as mudanças de atributos de um aliado.", - }, - toxicDebris: { - name: "Toxic Debris", - description: "Espalha espinhos venenosos aos pés da equipe adversária quando o Pokémon sofre dano de movimentos físicos.", - }, - armorTail: { - name: "Armor Tail", - description: "A cauda misteriosa que cobre a cabeça do Pokémon impede que oponentes usem movimentos de prioridade contra o Pokémon ou seus aliados.", - }, - earthEater: { - name: "Earth Eater", - description: "Se for atingido por um movimento do tipo Terra, o Pokémon restaura seu HP em vez de sofrer dano.", - }, - myceliumMight: { - name: "Mycelium Might", - description: "O Pokémon sempre agirá mais lentamente quando usar movimentos de status, mas esses movimentos não serão impedidos pela Habilidade do alvo.", - }, - mindsEye: { - name: "Mind's Eye", - description: "O Pokémon ignora mudanças na evasividade dos oponentes, sua precisão não pode ser reduzida, e ele pode atingir tipos Fantasma com movimentos dos tipos Normal e Lutador.", - }, - supersweetSyrup: { - name: "Supersweet Syrup", - description: "Um aroma doce e enjoativo se espalha pelo campo na primeira vez que o Pokémon entra em batalha, reduzindo a evasividade dos Pokémon oponentes.", - }, - hospitality: { - name: "Hospitality", - description: "Quando o Pokémon entra em batalha, ele banha seu aliado com hospitalidade, restaurando uma pequena quantidade do HP do aliado.", - }, - toxicChain: { - name: "Toxic Chain", - description: "O poder da cadeia tóxica do Pokémon pode envenenar gravemente qualquer alvo que o Pokémon atinja com um movimento.", - }, - embodyAspectTeal: { - name: "Embody Aspect", - description: "O coração do Pokémon se enche de memórias, fazendo com que a Máscara Teal brilhe e aumente o atributo de Velocidade do Pokémon.", - }, - embodyAspectWellspring: { - name: "Embody Aspect", - description: "O coração do Pokémon se enche de memórias, fazendo com que a Máscara Wellspring brilhe e aumente o atributo de Defesa Especial do Pokémon.", - }, - embodyAspectHearthflame: { - name: "Embody Aspect", - description: "O coração do Pokémon se enche de memórias, fazendo com que a Máscara Hearthflame brilhe e aumente o atributo de Ataque do Pokémon.", - }, - embodyAspectCornerstone: { - name: "Embody Aspect", - description: "O coração do Pokémon se enche de memórias, fazendo com que a Máscara Cornerstone brilhe e aumente o atributo de Defesa do Pokémon.", - }, - teraShift: { - name: "Tera Shift", - description: "Quando o Pokémon entra em batalha, ele absorve a energia ao seu redor e se transforma em sua Forma Terastal.", - }, - teraShell: { - name: "Tera Shell", - description: "A casca do Pokémon contém os poderes de cada tipo. Todos os movimentos que causam dano que atingem o Pokémon quando seu HP está cheio não serão muito eficazes.", - }, - teraformZero: { - name: "Teraform Zero", - description: "Quando Terapagos muda para sua Forma Estelar, ele usa seus poderes ocultos para eliminar todos os efeitos do clima e do terreno, reduzindo-os a zero.", - }, - poisonPuppeteer: { - name: "Poison Puppeteer", - description: "Pokémon envenenados pelos movimentos de Pecharunt também ficarão confusos.", - }, -} as const; diff --git a/src/locales/pt_BR/achv.json b/src/locales/pt_BR/achv.json new file mode 100644 index 00000000000..acdec1ae306 --- /dev/null +++ b/src/locales/pt_BR/achv.json @@ -0,0 +1,272 @@ +{ + "Achievements": { + "name": "Conquistas" + }, + "Locked": { + "name": "Não conquistado" + }, + "MoneyAchv": { + "description": "Acumule um total de ₽{{moneyAmount}}" + }, + "10K_MONEY": { + "name": "Chuva de Dinheiro" + }, + "100K_MONEY": { + "name": "Tô Rica!" + }, + "1M_MONEY": { + "name": "Quem Quer Ser Um Milionário?" + }, + "10M_MONEY": { + "name": "Tio Patinhas" + }, + "DamageAchv": { + "description": "Inflija {{damageAmount}} de dano em um único golpe" + }, + "250_DMG": { + "name": "Essa Doeu!" + }, + "1000_DMG": { + "name": "Essa Doeu Mais!" + }, + "2500_DMG": { + "name": "Essa Doeu Muito!" + }, + "10000_DMG": { + "name": "Essa Doeu Pra Caramba!" + }, + "HealAchv": { + "description": "Cure {{healAmount}} {{HP}} de uma vez só com um movimento, habilidade ou item segurado" + }, + "250_HEAL": { + "name": "Residente" + }, + "1000_HEAL": { + "name": "Enfermeiro", + "name_female": "Enfermeira" + }, + "2500_HEAL": { + "name": "Médico", + "name_female": "Médica" + }, + "10000_HEAL": { + "name": "Médico de Plantão", + "name_female": "Médica de Plantão" + }, + "LevelAchv": { + "description": "Aumente o nível de um Pokémon para o Nv{{level}}" + }, + "LV_100": { + "name": "Calma Que Tem Mais!" + }, + "LV_250": { + "name": "Treinador de Elite", + "name_female": "Treinadora de Elite" + }, + "LV_1000": { + "name": "Ao Infinito e Além!" + }, + "RibbonAchv": { + "description": "Acumule um total de {{ribbonAmount}} Fitas" + }, + "10_RIBBONS": { + "name": "Fita de Bronze" + }, + "25_RIBBONS": { + "name": "Fita de Prata" + }, + "50_RIBBONS": { + "name": "Fita de Ouro" + }, + "75_RIBBONS": { + "name": "Fita de Platina" + }, + "100_RIBBONS": { + "name": "Fita de Diamante" + }, + "TRANSFER_MAX_BATTLE_STAT": { + "name": "Trabalho em Equipe", + "description": "Use Baton Pass com pelo menos um atributo aumentado ao máximo" + }, + "MAX_FRIENDSHIP": { + "name": "Melhores Amigos", + "description": "Alcance a amizade máxima com um Pokémon" + }, + "MEGA_EVOLVE": { + "name": "Megamorfose", + "description": "Megaevolua um Pokémon" + }, + "GIGANTAMAX": { + "name": "Ficou Gigante!", + "description": "Gigantamax um Pokémon" + }, + "TERASTALLIZE": { + "name": "Terastalização", + "description": "Terastalize um Pokémon" + }, + "STELLAR_TERASTALLIZE": { + "name": "Estrela Cadente", + "description": "Terastalize um Pokémon para o tipo Estelar" + }, + "SPLICE": { + "name": "Fusão!", + "description": "Funda dois Pokémon com um Splicer de DNA" + }, + "MINI_BLACK_HOLE": { + "name": "Buraco Sem Fundo", + "description": "Adquira um Mini Buraco Negro" + }, + "CATCH_MYTHICAL": { + "name": "Mítico", + "description": "Capture um Pokémon Mítico" + }, + "CATCH_SUB_LEGENDARY": { + "name": "Quase Lendário", + "description": "Capture um Pokémon Semi-Lendário" + }, + "CATCH_LEGENDARY": { + "name": "Lendário", + "description": "Capture um Pokémon Lendário" + }, + "SEE_SHINY": { + "name": "Ué, Tá Brilhando?", + "description": "Encontre um Pokémon Shiny selvagem" + }, + "SHINY_PARTY": { + "name": "Tá Todo Mundo Brilhando!", + "description": "Tenha uma equipe formada por 6 Pokémon Shiny" + }, + "HATCH_MYTHICAL": { + "name": "Ovo Mítico", + "description": "Choque um Pokémon Mítico" + }, + "HATCH_SUB_LEGENDARY": { + "name": "Ovo Semi-Lendário", + "description": "Choque um Pokémon Semi-Lendário" + }, + "HATCH_LEGENDARY": { + "name": "Ovo Lendário", + "description": "Choque um Pokémon Lendário" + }, + "HATCH_SHINY": { + "name": "Ovo Shiny", + "description": "Choque um Pokémon Shiny" + }, + "HIDDEN_ABILITY": { + "name": "Potencial Oculto", + "description": "Capture um Pokémon com uma Habilidade Oculta" + }, + "PERFECT_IVS": { + "name": "Perfeição Certificada", + "description": "Obtenha IVs perfeitos em um Pokémon" + }, + "CLASSIC_VICTORY": { + "name": "Invencível", + "description": "Vença o jogo no modo clássico" + }, + "UNEVOLVED_CLASSIC_VICTORY": { + "name": "Tire as Crianças da Sala", + "description": "Vença o jogo no Modo Clássico com pelo menos um membro da equipe não evoluído." + }, + "MONO_GEN_ONE": { + "name": "O Início de Tudo", + "description": "Complete o desafio da geração um." + }, + "MONO_GEN_TWO": { + "name": "Geração 1.5", + "description": "Complete o desafio da geração dois." + }, + "MONO_GEN_THREE": { + "name": "Será que tem muita água?", + "description": "Complete o desafio da geração três." + }, + "MONO_GEN_FOUR": { + "name": "Essa foi a mais difícil?", + "description": "Complete o desafio da geração quatro." + }, + "MONO_GEN_FIVE": { + "name": "Nada original", + "description": "Complete o desafio da geração cinco." + }, + "MONO_GEN_SIX": { + "name": "Esse croissant tem recheio?", + "description": "Complete o desafio da geração seis." + }, + "MONO_GEN_SEVEN": { + "name": "Z-Move ou Se vira nos 30?", + "description": "Complete o desafio da geração sete." + }, + "MONO_GEN_EIGHT": { + "name": "Finalmente ele ganhou!", + "description": "Complete o desafio da geração oito." + }, + "MONO_GEN_NINE": { + "name": "Isso aqui tá muito fácil!", + "description": "Complete o desafio da geração nove." + }, + "MonoType": { + "description": "Complete o desafio de monotipo {{type}}." + }, + "MONO_NORMAL": { + "name": "Extra Ordinário" + }, + "MONO_FIGHTING": { + "name": "Briga de Rua" + }, + "MONO_FLYING": { + "name": "Rinha de Pidgeys" + }, + "MONO_POISON": { + "name": "Menina Veneno" + }, + "MONO_GROUND": { + "name": "Comendo Poeira" + }, + "MONO_ROCK": { + "name": "...Tanto Bate Até Que Fura" + }, + "MONO_BUG": { + "name": "Vida de Inseto" + }, + "MONO_GHOST": { + "name": "Fantasminha Camarada" + }, + "MONO_STEEL": { + "name": "Levantando Ferro" + }, + "MONO_FIRE": { + "name": "Tá Pegando Fogo, Bicho!" + }, + "MONO_WATER": { + "name": "Água Mole em Pedra Dura..." + }, + "MONO_GRASS": { + "name": "Jardim Botânico" + }, + "MONO_ELECTRIC": { + "name": "Choque de Realidade" + }, + "MONO_PSYCHIC": { + "name": "Preciso de Terapia" + }, + "MONO_ICE": { + "name": "Era do Gelo" + }, + "MONO_DRAGON": { + "name": "Caverna do Dragão" + }, + "MONO_DARK": { + "name": "É Só Uma Fase" + }, + "MONO_FAIRY": { + "name": "Clube das Winx" + }, + "FRESH_START": { + "name": "De Primeira!", + "description": "Complete o desafio de novo começo." + }, + "INVERSE_BATTLE": { + "name": "A torre da derrotA", + "description": "Complete o desafio da Batalha Inversa.\n.asrevnI ahlataB ad oifased o etelpmoC" + } +} \ No newline at end of file diff --git a/src/locales/pt_BR/achv.ts b/src/locales/pt_BR/achv.ts deleted file mode 100644 index 59aae596f83..00000000000 --- a/src/locales/pt_BR/achv.ts +++ /dev/null @@ -1,551 +0,0 @@ -import { AchievementTranslationEntries } from "#app/interfaces/locales.js"; - -// Achievement translations for the when the player character is male -export const PGMachv: AchievementTranslationEntries = { - "Achievements": { - name: "Conquistas", - }, - "Locked": { - name: "Não conquistado", - }, - - "MoneyAchv": { - description: "Acumule um total de ₽{{moneyAmount}}", - }, - "10K_MONEY": { - name: "Chuva de Dinheiro", - }, - "100K_MONEY": { - name: "Tô Rica!", - }, - "1M_MONEY": { - name: "Quem Quer Ser Um Milionário?", - }, - "10M_MONEY": { - name: "Tio Patinhas", - }, - - "DamageAchv": { - description: "Inflija {{damageAmount}} de dano em um único golpe", - }, - "250_DMG": { - name: "Essa Doeu!", - }, - "1000_DMG": { - name: "Essa Doeu Mais!", - }, - "2500_DMG": { - name: "Essa Doeu Muito!", - }, - "10000_DMG": { - name: "Essa Doeu Pra Caramba!", - }, - - "HealAchv": { - description: "Cure {{healAmount}} {{HP}} de uma vez só com um movimento, habilidade ou item segurado", - }, - "250_HEAL": { - name: "Residente", - }, - "1000_HEAL": { - name: "Enfermeiro", - }, - "2500_HEAL": { - name: "Médico", - }, - "10000_HEAL": { - name: "Médico de Plantão", - }, - - "LevelAchv": { - description: "Aumente o nível de um Pokémon para o Nv{{level}}", - }, - "LV_100": { - name: "Calma Que Tem Mais!", - }, - "LV_250": { - name: "Treinador de Elite", - }, - "LV_1000": { - name: "Ao Infinito e Além!", - }, - - "RibbonAchv": { - description: "Acumule um total de {{ribbonAmount}} Fitas", - }, - "10_RIBBONS": { - name: "Fita de Bronze", - }, - "25_RIBBONS": { - name: "Fita de Prata", - }, - "50_RIBBONS": { - name: "Fita de Ouro", - }, - "75_RIBBONS": { - name: "Fita de Platina", - }, - "100_RIBBONS": { - name: "Fita de Diamante", - }, - - "TRANSFER_MAX_BATTLE_STAT": { - name: "Trabalho em Equipe", - description: "Use Baton Pass com pelo menos um atributo aumentado ao máximo", - }, - "MAX_FRIENDSHIP": { - name: "Melhores Amigos", - description: "Alcance a amizade máxima com um Pokémon", - }, - "MEGA_EVOLVE": { - name: "Megamorfose", - description: "Megaevolua um Pokémon", - }, - "GIGANTAMAX": { - name: "Ficou Gigante!", - description: "Gigantamax um Pokémon", - }, - "TERASTALLIZE": { - name: "Terastalização", - description: "Terastalize um Pokémon", - }, - "STELLAR_TERASTALLIZE": { - name: "Estrela Cadente", - description: "Terastalize um Pokémon para o tipo Estelar", - }, - "SPLICE": { - name: "Fusão!", - description: "Funda dois Pokémon com um Splicer de DNA", - }, - "MINI_BLACK_HOLE": { - name: "Buraco Sem Fundo", - description: "Adquira um Mini Buraco Negro", - }, - "CATCH_MYTHICAL": { - name: "Mítico", - description: "Capture um Pokémon Mítico", - }, - "CATCH_SUB_LEGENDARY": { - name: "Quase Lendário", - description: "Capture um Pokémon Semi-Lendário", - }, - "CATCH_LEGENDARY": { - name: "Lendário", - description: "Capture um Pokémon Lendário", - }, - "SEE_SHINY": { - name: "Ué, Tá Brilhando?", - description: "Encontre um Pokémon Shiny selvagem", - }, - "SHINY_PARTY": { - name: "Tá Todo Mundo Brilhando!", - description: "Tenha uma equipe formada por 6 Pokémon Shiny", - }, - "HATCH_MYTHICAL": { - name: "Ovo Mítico", - description: "Choque um Pokémon Mítico", - }, - "HATCH_SUB_LEGENDARY": { - name: "Ovo Semi-Lendário", - description: "Choque um Pokémon Semi-Lendário", - }, - "HATCH_LEGENDARY": { - name: "Ovo Lendário", - description: "Choque um Pokémon Lendário", - }, - "HATCH_SHINY": { - name: "Ovo Shiny", - description: "Choque um Pokémon Shiny", - }, - "HIDDEN_ABILITY": { - name: "Potencial Oculto", - description: "Capture um Pokémon com uma Habilidade Oculta", - }, - "PERFECT_IVS": { - name: "Perfeição Certificada", - description: "Obtenha IVs perfeitos em um Pokémon", - }, - "CLASSIC_VICTORY": { - name: "Invencível", - description: "Vença o jogo no modo clássico", - }, - "UNEVOLVED_CLASSIC_VICTORY": { - name: "Tire as Crianças da Sala", - description: "Vença o jogo no Modo Clássico com pelo menos um membro da equipe não evoluído." - }, - - "MONO_GEN_ONE": { - - name: "O Início de Tudo", - description: "Complete o desafio da geração um.", - }, - "MONO_GEN_TWO": { - name: "Geração 1.5", - description: "Complete o desafio da geração dois.", - }, - "MONO_GEN_THREE": { - name: "Será que tem muita água?", - description: "Complete o desafio da geração três.", - }, - "MONO_GEN_FOUR": { - name: "Essa foi a mais difícil?", - description: "Complete o desafio da geração quatro.", - }, - "MONO_GEN_FIVE": { - name: "Nada original", - description: "Complete o desafio da geração cinco.", - }, - "MONO_GEN_SIX": { - name: "Esse croissant tem recheio?", - description: "Complete o desafio da geração seis.", - }, - "MONO_GEN_SEVEN": { - name: "Z-Move ou Se vira nos 30?", - description: "Complete o desafio da geração sete.", - }, - "MONO_GEN_EIGHT": { - name: "Finalmente ele ganhou!", - description: "Complete o desafio da geração oito.", - }, - "MONO_GEN_NINE": { - name: "Isso aqui tá muito fácil!", - description: "Complete o desafio da geração nove.", - }, - - "MonoType": { - description: "Complete o desafio de monotipo {{type}}.", - }, - "MONO_NORMAL": { - name: "Extra Ordinário", - }, - "MONO_FIGHTING": { - name: "Briga de Rua", - }, - "MONO_FLYING": { - name: "Rinha de Pidgeys", - }, - "MONO_POISON": { - name: "Menina Veneno", - }, - "MONO_GROUND": { - name: "Comendo Poeira", - }, - "MONO_ROCK": { - name: "...Tanto Bate Até Que Fura", - }, - "MONO_BUG": { - name: "Vida de Inseto", - }, - "MONO_GHOST": { - name: "Fantasminha Camarada", - }, - "MONO_STEEL": { - name: "Levantando Ferro", - }, - "MONO_FIRE": { - name: "Tá Pegando Fogo, Bicho!", - }, - "MONO_WATER": { - name: "Água Mole em Pedra Dura...", - }, - "MONO_GRASS": { - name: "Jardim Botânico", - }, - "MONO_ELECTRIC": { - name: "Choque de Realidade", - }, - "MONO_PSYCHIC": { - name: "Preciso de Terapia", - }, - "MONO_ICE": { - name: "Era do Gelo", - }, - "MONO_DRAGON": { - name: "Caverna do Dragão", - }, - "MONO_DARK": { - name: "É Só Uma Fase", - }, - "MONO_FAIRY": { - name: "Clube das Winx", - }, - "FRESH_START": { - name: "De Primeira!", - description: "Complete o desafio de novo começo." - }, -} as const; - -// Achievement translations for the when the player character is female -export const PGFachv: AchievementTranslationEntries = { - "Achievements": { - name: "Conquistas", - }, - "Locked": { - name: "Não conquistado", - }, - - "MoneyAchv": { - description: "Acumule um total de ₽{{moneyAmount}}", - }, - "10K_MONEY": { - name: "Chuva de Dinheiro", - }, - "100K_MONEY": { - name: "Tô Rica!", - }, - "1M_MONEY": { - name: "Quem Quer Ser Um Milionário?", - }, - "10M_MONEY": { - name: "Tio Patinhas", - }, - - "DamageAchv": { - description: "Inflija {{damageAmount}} de dano em um único golpe", - }, - "250_DMG": { - name: "Essa Doeu!", - }, - "1000_DMG": { - name: "Essa Doeu Mais!", - }, - "2500_DMG": { - name: "Essa Doeu Muito!", - }, - "10000_DMG": { - name: "Essa Doeu Pra Caramba!", - }, - - "HealAchv": { - description: "Cure {{healAmount}} {{HP}} de uma vez só com um movimento, habilidade ou item segurado", - }, - "250_HEAL": { - name: "Residente", - }, - "1000_HEAL": { - name: "Enfermeira", - }, - "2500_HEAL": { - name: "Médica", - }, - "10000_HEAL": { - name: "Médica de Plantão", - }, - - "LevelAchv": { - description: "Aumente o nível de um Pokémon para o Nv{{level}}", - }, - "LV_100": { - name: "Calma Que Tem Mais!", - }, - "LV_250": { - name: "Treinadora de Elite", - }, - "LV_1000": { - name: "Ao Infinito e Além!", - }, - - "RibbonAchv": { - description: "Acumule um total de {{ribbonAmount}} Fitas", - }, - "10_RIBBONS": { - name: "Fita de Bronze", - }, - "25_RIBBONS": { - name: "Fita de Prata", - }, - "50_RIBBONS": { - name: "Fita de Ouro", - }, - "75_RIBBONS": { - name: "Fita de Platina", - }, - "100_RIBBONS": { - name: "Fita de Diamante", - }, - - "TRANSFER_MAX_BATTLE_STAT": { - name: "Trabalho em Equipe", - description: "Use Baton Pass com pelo menos um atributo aumentado ao máximo", - }, - "MAX_FRIENDSHIP": { - name: "Melhores Amigos", - description: "Alcance a amizade máxima com um Pokémon", - }, - "MEGA_EVOLVE": { - name: "Megamorfose", - description: "Megaevolua um Pokémon", - }, - "GIGANTAMAX": { - name: "Ficou Gigante!", - description: "Gigantamax um Pokémon", - }, - "TERASTALLIZE": { - name: "Terastalização", - description: "Terastalize um Pokémon", - }, - "STELLAR_TERASTALLIZE": { - name: "Estrela Cadente", - description: "Terastalize um Pokémon para o tipo Estelar", - }, - "SPLICE": { - name: "Fusão!", - description: "Funda dois Pokémon com um Splicer de DNA", - }, - "MINI_BLACK_HOLE": { - name: "Buraco Sem Fundo", - description: "Adquira um Mini Buraco Negro", - }, - "CATCH_MYTHICAL": { - name: "Mítico", - description: "Capture um Pokémon Mítico", - }, - "CATCH_SUB_LEGENDARY": { - name: "Quase Lendário", - description: "Capture um Pokémon Semi-Lendário", - }, - "CATCH_LEGENDARY": { - name: "Lendário", - description: "Capture um Pokémon Lendário", - }, - "SEE_SHINY": { - name: "Ué, Tá Brilhando?", - description: "Encontre um Pokémon Shiny selvagem", - }, - "SHINY_PARTY": { - name: "Tá Todo Mundo Brilhando!", - description: "Tenha uma equipe formada por 6 Pokémon Shiny", - }, - "HATCH_MYTHICAL": { - name: "Ovo Mítico", - description: "Choque um Pokémon Mítico", - }, - "HATCH_SUB_LEGENDARY": { - name: "Ovo Semi-Lendário", - description: "Choque um Pokémon Semi-Lendário", - }, - "HATCH_LEGENDARY": { - name: "Ovo Lendário", - description: "Choque um Pokémon Lendário", - }, - "HATCH_SHINY": { - name: "Ovo Shiny", - description: "Choque um Pokémon Shiny", - }, - "HIDDEN_ABILITY": { - name: "Potencial Oculto", - description: "Capture um Pokémon com uma Habilidade Oculta", - }, - "PERFECT_IVS": { - name: "Perfeição Certificada", - description: "Obtenha IVs perfeitos em um Pokémon", - }, - "CLASSIC_VICTORY": { - name: "Invencível", - description: "Vença o jogo no modo clássico", - }, - "UNEVOLVED_CLASSIC_VICTORY": { - name: "Tire as Crianças da Sala", - description: "Vença o jogo no Modo Clássico com pelo menos um membro da equipe não evoluído." - }, - - "MONO_GEN_ONE": { - - name: "O Início de Tudo", - description: "Complete o desafio da geração um.", - }, - "MONO_GEN_TWO": { - name: "Geração 1.5", - description: "Complete o desafio da geração dois.", - }, - "MONO_GEN_THREE": { - name: "Será que tem muita água?", - description: "Complete o desafio da geração três.", - }, - "MONO_GEN_FOUR": { - name: "Essa foi a mais difícil?", - description: "Complete o desafio da geração quatro.", - }, - "MONO_GEN_FIVE": { - name: "Nada original", - description: "Complete o desafio da geração cinco.", - }, - "MONO_GEN_SIX": { - name: "Esse croissant tem recheio?", - description: "Complete o desafio da geração seis.", - }, - "MONO_GEN_SEVEN": { - name: "Z-Move ou Se vira nos 30?", - description: "Complete o desafio da geração sete.", - }, - "MONO_GEN_EIGHT": { - name: "Finalmente ele ganhou!", - description: "Complete o desafio da geração oito.", - }, - "MONO_GEN_NINE": { - name: "Isso aqui tá muito fácil!", - description: "Complete o desafio da geração nove.", - }, - - "MonoType": { - description: "Complete o desafio de monotipo {{type}}.", - }, - "MONO_NORMAL": { - name: "Extra Ordinário", - }, - "MONO_FIGHTING": { - name: "Briga de Rua", - }, - "MONO_FLYING": { - name: "Rinha de Pidgeys", - }, - "MONO_POISON": { - name: "Menina Veneno", - }, - "MONO_GROUND": { - name: "Comendo Poeira", - }, - "MONO_ROCK": { - name: "...Tanto Bate Até Que Fura", - }, - "MONO_BUG": { - name: "Vida de Inseto", - }, - "MONO_GHOST": { - name: "Fantasminha Camarada", - }, - "MONO_STEEL": { - name: "Levantando Ferro", - }, - "MONO_FIRE": { - name: "Tá Pegando Fogo, Bicho!", - }, - "MONO_WATER": { - name: "Água Mole em Pedra Dura...", - }, - "MONO_GRASS": { - name: "Jardim Botânico", - }, - "MONO_ELECTRIC": { - name: "Choque de Realidade", - }, - "MONO_PSYCHIC": { - name: "Preciso de Terapia", - }, - "MONO_ICE": { - name: "Era do Gelo", - }, - "MONO_DRAGON": { - name: "Caverna do Dragão", - }, - "MONO_DARK": { - name: "É Só Uma Fase", - }, - "MONO_FAIRY": { - name: "Clube das Winx", - }, - "FRESH_START": { - name: "De Primeira!", - description: "Complete o desafio de novo começo." - }, -} as const; diff --git a/src/locales/pt_BR/arena-flyout.ts b/src/locales/pt_BR/arena-flyout.json similarity index 82% rename from src/locales/pt_BR/arena-flyout.ts rename to src/locales/pt_BR/arena-flyout.json index 97382aa2b2f..e221fa6c0a5 100644 --- a/src/locales/pt_BR/arena-flyout.ts +++ b/src/locales/pt_BR/arena-flyout.json @@ -1,13 +1,8 @@ -import { SimpleTranslationEntries } from "#app/interfaces/locales"; - -export const arenaFlyout: SimpleTranslationEntries = { - // Title +{ "activeBattleEffects": "Efeitos de Batalha Ativos", "player": "Jogador", "neutral": "Neutro", "enemy": "Inimigo", - - // WeatherType "sunny": "Ensolarado", "rain": "Chuva", "sandstorm": "Tempestade de Areia", @@ -17,14 +12,10 @@ export const arenaFlyout: SimpleTranslationEntries = { "heavyRain": "Chuva Forte", "harshSun": "Sol Forte", "strongWinds": "Ventos Fortes", - - // TerrainType "misty": "Terreno Enevoado", "electric": "Terreno Elétrico", "grassy": "Terreno de Planta", "psychic": "Terreno Psíquico", - - // ArenaTagType "mudSport": "Mud Sport", "waterSport": "Water Sport", "spikes": "Spikes", @@ -45,5 +36,5 @@ export const arenaFlyout: SimpleTranslationEntries = { "matBlock": "Mat Block", "craftyShield": "Crafty Shield", "tailwind": "Tailwind", - "happyHour": "Happy Hour", -}; + "happyHour": "Happy Hour" +} diff --git a/src/locales/pt_BR/arena-tag.ts b/src/locales/pt_BR/arena-tag.json similarity index 90% rename from src/locales/pt_BR/arena-tag.ts rename to src/locales/pt_BR/arena-tag.json index ebdf886f9a6..20ef208c8fc 100644 --- a/src/locales/pt_BR/arena-tag.ts +++ b/src/locales/pt_BR/arena-tag.json @@ -1,6 +1,4 @@ -import { SimpleTranslationEntries } from "#app/interfaces/locales"; - -export const arenaTag: SimpleTranslationEntries = { +{ "yourTeam": "sua equipe", "opposingTeam": "a equipe adversária", "arenaOnRemove": "O efeito de {{moveName}} acabou.", @@ -22,8 +20,8 @@ export const arenaTag: SimpleTranslationEntries = { "conditionalProtectOnAddEnemy": "{{moveName}} protegeu a\nequipe adversária!", "conditionalProtectApply": "{{moveName}} protegeu {{pokemonNameWithAffix}}!", "matBlockOnAdd": "{{pokemonNameWithAffix}} pretende levantar um tapete\npara bloquear ataques!", - "noCritOnAddPlayer": "{{moveName}} protegeu sua\equipe de acertos críticos!", - "noCritOnAddEnemy": "{{moveName}} protegeu a\equipe adversária de acertos críticos", + "noCritOnAddPlayer": "{{moveName}} protegeu sua\nequipe de acertos críticos!", + "noCritOnAddEnemy": "{{moveName}} protegeu a\nequipe adversária de acertos críticos", "noCritOnRemove": "{{moveName}} de {{pokemonNameWithAffix}}\nacabou!", "wishTagOnAdd": "O desejo de {{pokemonNameWithAffix}}\nfoi concedido!", "mudSportOnAdd": "O poder de movimentos elétricos foi enfraquecido!", @@ -49,5 +47,5 @@ export const arenaTag: SimpleTranslationEntries = { "tailwindOnRemovePlayer": "O Tailwind de sua equipe acabou!", "tailwindOnRemoveEnemy": "O Tailwind da equipe adversária acabou!", "happyHourOnAdd": "Todos foram envolvidos por uma atmosfera alegre!", - "happyHourOnRemove": "A atmosfera retornou ao normal.", -} as const; + "happyHourOnRemove": "A atmosfera retornou ao normal." +} \ No newline at end of file diff --git a/src/locales/pt_BR/battle-info.json b/src/locales/pt_BR/battle-info.json new file mode 100644 index 00000000000..0fd211c5c85 --- /dev/null +++ b/src/locales/pt_BR/battle-info.json @@ -0,0 +1,3 @@ +{ + "generation": "Geração {{generation}}" +} \ No newline at end of file diff --git a/src/locales/pt_BR/battle-info.ts b/src/locales/pt_BR/battle-info.ts deleted file mode 100644 index 37cb7cb1aeb..00000000000 --- a/src/locales/pt_BR/battle-info.ts +++ /dev/null @@ -1,5 +0,0 @@ -import { SimpleTranslationEntries } from "#app/interfaces/locales"; - -export const battleInfo: SimpleTranslationEntries = { - "generation": "Geração {{generation}}", -} as const; diff --git a/src/locales/pt_BR/battle-message-ui-handler.json b/src/locales/pt_BR/battle-message-ui-handler.json new file mode 100644 index 00000000000..ee7062bccba --- /dev/null +++ b/src/locales/pt_BR/battle-message-ui-handler.json @@ -0,0 +1,8 @@ +{ + "ivBest": "Perfeito", + "ivFantastic": "Fantástico", + "ivVeryGood": "Muito Bom", + "ivPrettyGood": "Bom", + "ivDecent": "Regular", + "ivNoGood": "Ruim" +} \ No newline at end of file diff --git a/src/locales/pt_BR/battle-message-ui-handler.ts b/src/locales/pt_BR/battle-message-ui-handler.ts deleted file mode 100644 index a7b0fb1f13b..00000000000 --- a/src/locales/pt_BR/battle-message-ui-handler.ts +++ /dev/null @@ -1,10 +0,0 @@ -import { SimpleTranslationEntries } from "#app/interfaces/locales"; - -export const battleMessageUiHandler: SimpleTranslationEntries = { - "ivBest": "Perfeito", - "ivFantastic": "Fantástico", - "ivVeryGood": "Muito Bom", - "ivPrettyGood": "Bom", - "ivDecent": "Regular", - "ivNoGood": "Ruim", -} as const; diff --git a/src/locales/pt_BR/battle-scene.json b/src/locales/pt_BR/battle-scene.json new file mode 100644 index 00000000000..a0288475d69 --- /dev/null +++ b/src/locales/pt_BR/battle-scene.json @@ -0,0 +1,3 @@ +{ + "moneyOwned": "₽{{formattedMoney}}" +} \ No newline at end of file diff --git a/src/locales/pt_BR/battle.ts b/src/locales/pt_BR/battle.json similarity index 96% rename from src/locales/pt_BR/battle.ts rename to src/locales/pt_BR/battle.json index 24d4e8c928f..e34ce8efdca 100644 --- a/src/locales/pt_BR/battle.ts +++ b/src/locales/pt_BR/battle.json @@ -1,6 +1,4 @@ -import { SimpleTranslationEntries } from "#app/interfaces/locales"; - -export const battle: SimpleTranslationEntries = { +{ "bossAppeared": "{{bossName}} apareceu.", "trainerAppeared": "{{trainerName}}\nquer batalhar!", "trainerAppearedDouble": "{{trainerName}}\nquerem batalhar!", @@ -24,6 +22,7 @@ export const battle: SimpleTranslationEntries = { "hitResultSuperEffective": "É supereficaz!", "hitResultNotVeryEffective": "É pouco eficaz...", "hitResultNoEffect": "Isso não afeta {{pokemonName}}!", + "hitResultImmune": "{{pokemonName}} não é afetado!", "hitResultOneHitKO": "Foi um nocaute de um golpe!", "attackFailed": "Mas falhou!", "attackMissed": "{{pokemonNameWithAffix}} desviou do ataque!", @@ -39,7 +38,7 @@ export const battle: SimpleTranslationEntries = { "learnMoveNotLearned": "{{pokemonName}} não aprendeu {{moveName}}.", "learnMoveForgetQuestion": "Qual movimento quer esquecer?", "learnMoveForgetSuccess": "{{pokemonName}} esqueceu como usar {{moveName}}.", - "countdownPoof": "@d{32}1, @d{15}2, @d{15}e@d{15}… @d{15}… @d{15}… @d{15}@s{pb_bounce_1}Puf!", + "countdownPoof": "@d{32}1, @d{15}2, @d{15}e@d{15}… @d{15}… @d{15}… @d{15}@s{se/pb_bounce_1}Puf!", "learnMoveAnd": "E…", "levelCapUp": "O nível máximo aumentou\npara {{levelCap}}!", "moveNotImplemented": "{{moveName}} ainda não foi implementado e não pode ser usado.", @@ -95,5 +94,5 @@ export const battle: SimpleTranslationEntries = { "retryBattle": "Você gostaria de tentar novamente desde o início da batalha?", "unlockedSomething": "{{unlockedThing}}\nfoi desbloqueado.", "congratulations": "Parabéns!", - "beatModeFirstTime": "{{speciesName}} venceu o Modo {{gameMode}} pela primeira vez!\nVocê recebeu {{newModifier}}!", -} as const; + "beatModeFirstTime": "{{speciesName}} venceu o Modo {{gameMode}} pela primeira vez!\nVocê recebeu {{newModifier}}!" +} \ No newline at end of file diff --git a/src/locales/pt_BR/battler-tags.ts b/src/locales/pt_BR/battler-tags.json similarity index 97% rename from src/locales/pt_BR/battler-tags.ts rename to src/locales/pt_BR/battler-tags.json index 1758fed38d6..560da13cc6f 100644 --- a/src/locales/pt_BR/battler-tags.ts +++ b/src/locales/pt_BR/battler-tags.json @@ -1,6 +1,4 @@ -import { SimpleTranslationEntries } from "#app/interfaces/locales"; - -export const battlerTags: SimpleTranslationEntries = { +{ "trappedDesc": "o aprisionamento", "flinchedDesc": "a hesitação", "confusedDesc": "a confusão", @@ -69,5 +67,5 @@ export const battlerTags: SimpleTranslationEntries = { "saltCuredLapse": "{{pokemonNameWithAffix}} foi ferido pelo {{moveName}}!", "cursedOnAdd": "{{pokemonNameWithAffix}} cortou seus PS pela metade e amaldiçoou {{pokemonName}}!", "cursedLapse": "{{pokemonNameWithAffix}} foi ferido pelo Curse!", - "stockpilingOnAdd": "{{pokemonNameWithAffix}} estocou {{stockpiledCount}}!", -} as const; + "stockpilingOnAdd": "{{pokemonNameWithAffix}} estocou {{stockpiledCount}}!" +} \ No newline at end of file diff --git a/src/locales/pt_BR/berry.json b/src/locales/pt_BR/berry.json new file mode 100644 index 00000000000..0ca5d3de286 --- /dev/null +++ b/src/locales/pt_BR/berry.json @@ -0,0 +1,46 @@ +{ + "SITRUS": { + "name": "Fruta Sitrus", + "effect": "Restaura 25% dos PS se os PS estiverem abaixo de 50%" + }, + "LUM": { + "name": "Fruta Lum", + "effect": "Cura qualquer mudança de estado ou confusão" + }, + "ENIGMA": { + "name": "Fruta Enigma", + "effect": "Restaura 25% dos PS se atingido por um golpe supereficaz" + }, + "LIECHI": { + "name": "Fruta Liechi", + "effect": "Aumenta o Ataque se os PS estiverem abaixo de 25%" + }, + "GANLON": { + "name": "Fruta Ganlon", + "effect": "Aumenta a Defesa se os PS estiverem abaixo de 25%" + }, + "PETAYA": { + "name": "Fruta Petaya", + "effect": "Aumenta o Ataque Especial se os PS estiverem abaixo de 25%" + }, + "APICOT": { + "name": "Fruta Apicot", + "effect": "Aumenta a Defesa Especial se os PS estiverem abaixo de 25%" + }, + "SALAC": { + "name": "Fruta Salac", + "effect": "Aumenta a Velocidade se os PS estiverem abaixo de 25%" + }, + "LANSAT": { + "name": "Fruta Lansat", + "effect": "Aumenta a chance de acerto crítico se os PS estiverem abaixo de 25%" + }, + "STARF": { + "name": "Fruta Starf", + "effect": "Aumenta drasticamente um atributo aleatório se os PS estiverem abaixo de 25%" + }, + "LEPPA": { + "name": "Fruta Leppa", + "effect": "Restaura 10 PP de um movimento se seus PP acabarem" + } +} \ No newline at end of file diff --git a/src/locales/pt_BR/berry.ts b/src/locales/pt_BR/berry.ts deleted file mode 100644 index d409565168f..00000000000 --- a/src/locales/pt_BR/berry.ts +++ /dev/null @@ -1,48 +0,0 @@ -import { BerryTranslationEntries } from "#app/interfaces/locales"; - -export const berry: BerryTranslationEntries = { - "SITRUS": { - name: "Fruta Sitrus", - effect: "Restaura 25% dos PS se os PS estiverem abaixo de 50%", - }, - "LUM": { - name: "Fruta Lum", - effect: "Cura qualquer mudança de estado ou confusão", - }, - "ENIGMA": { - name: "Fruta Enigma", - effect: "Restaura 25% dos PS se atingido por um golpe supereficaz", - }, - "LIECHI": { - name: "Fruta Liechi", - effect: "Aumenta o Ataque se os PS estiverem abaixo de 25%", - }, - "GANLON": { - name: "Fruta Ganlon", - effect: "Aumenta a Defesa se os PS estiverem abaixo de 25%", - }, - "PETAYA": { - name: "Fruta Petaya", - effect: "Aumenta o Ataque Especial se os PS estiverem abaixo de 25%", - }, - "APICOT": { - name: "Fruta Apicot", - effect: "Aumenta a Defesa Especial se os PS estiverem abaixo de 25%", - }, - "SALAC": { - name: "Fruta Salac", - effect: "Aumenta a Velocidade se os PS estiverem abaixo de 25%", - }, - "LANSAT": { - name: "Fruta Lansat", - effect: "Aumenta a chance de acerto crítico se os PS estiverem abaixo de 25%", - }, - "STARF": { - name: "Fruta Starf", - effect: "Aumenta drasticamente um atributo aleatório se os PS estiverem abaixo de 25%", - }, - "LEPPA": { - name: "Fruta Leppa", - effect: "Restaura 10 PP de um movimento se seus PP acabarem", - }, -} as const; diff --git a/src/locales/pt_BR/bgm-name.ts b/src/locales/pt_BR/bgm-name.json similarity index 88% rename from src/locales/pt_BR/bgm-name.ts rename to src/locales/pt_BR/bgm-name.json index 01baf93c2a5..86d8ce3e790 100644 --- a/src/locales/pt_BR/bgm-name.ts +++ b/src/locales/pt_BR/bgm-name.json @@ -1,6 +1,4 @@ -import { SimpleTranslationEntries } from "#app/interfaces/locales"; - -export const bgmName: SimpleTranslationEntries = { +{ "music": "Música: ", "missing_entries": "{{name}}", "battle_kanto_champion": "B2W2 Batalha do Campeão de Kanto", @@ -47,6 +45,7 @@ export const bgmName: SimpleTranslationEntries = { "battle_legendary_lake_trio": "ORAS Batalha do Trio dos Lagos", "battle_legendary_sinnoh": "ORAS Batalha dos Lendários de Sinnoh", "battle_legendary_dia_pal": "ORAS Batalha do Dialga & Palkia", + "battle_legendary_origin_forme": "LA Origin Batalha com Dialga & Palkia", "battle_legendary_giratina": "ORAS Batalha do Giratina", "battle_legendary_arceus": "HGSS Batalha do Arceus", "battle_legendary_unova": "BW Batalha dos Lendários de Unova", @@ -61,6 +60,7 @@ export const bgmName: SimpleTranslationEntries = { "battle_legendary_zac_zam": "SWSH Batalha do Zacian & Zamazenta", "battle_legendary_glas_spec": "SWSH Batalha do Glastrier & Spectrier", "battle_legendary_calyrex": "SWSH Batalha do Calyrex", + "battle_legendary_riders": "SWSH Batalha com Ice & Shadow Rider Calyrex", "battle_legendary_birds_galar": "SWSH Batalha dos Pássaros Lendários de Galar", "battle_legendary_ruinous": "SV Batalha dos Lendários Ruinosos", "battle_legendary_kor_mir": "SV Batalha das Cavernas da Área Zero", @@ -80,13 +80,21 @@ export const bgmName: SimpleTranslationEntries = { "battle_galactic_grunt": "BDSP Batalha da Equipe Galáctica", "battle_plasma_grunt": "BW Batalha da Equipe Plasma", "battle_flare_grunt": "XY Batalha da Equipe Flare", + "battle_aether_grunt": "SM Batalha da Fundação Aether", + "battle_skull_grunt": "SM Batalha da Equipe Skull", + "battle_macro_grunt": "SWSH Batalha de Treinador", + "battle_galactic_admin": "BDSP Batalha com Admin da Equipe Galáctica", + "battle_skull_admin": "SM Batalha com Admin da Euipe Skull", + "battle_oleana": "SWSH Batalha da Oleana", "battle_rocket_boss": "USUM Batalha do Giovanni", "battle_aqua_magma_boss": "ORAS Batalha do Maxie & Archie", "battle_galactic_boss": "BDSP Batalha do Cyrus", "battle_plasma_boss": "B2W2 Batalha do Ghetsis", "battle_flare_boss": "XY Batalha do Lysandre", + "battle_aether_boss": "SM Batalha da Lusamine", + "battle_skull_boss": "SM Batalha do Guzma", + "battle_macro_boss": "SWSH Batalha do Rose", - // Biome Music "abyss": "PMD EoS Dark Crater", "badlands": "PMD EoS Barren Valley", "beach": "PMD EoS Drenched Bluff", @@ -102,18 +110,18 @@ export const bgmName: SimpleTranslationEntries = { "graveyard": "PMD EoS Mystifying Forest", "ice_cave": "PMD EoS Vast Ice Mountain", "island": "PMD EoS Craggy Coast", - "jungle": "Lmz - Jungle", // The composer thinks about a more creative name - "laboratory": "Firel - Laboratory", // The composer thinks about a more creative name + "jungle": "Lmz - Jungle", + "laboratory": "Firel - Laboratory", "lake": "PMD EoS Crystal Cave", "meadow": "PMD EoS Sky Peak Forest", - "metropolis": "Firel - Metropolis", // The composer thinks about a more creative name + "metropolis": "Firel - Metropolis", "mountain": "PMD EoS Mt. Horn", "plains": "PMD EoS Sky Peak Prairie", "power_plant": "PMD EoS Far Amp Plains", "ruins": "PMD EoS Deep Sealed Ruin", - "sea": "Andr06 - Marine Mystique", // Name defined by the composer - "seabed": "Firel - Seabed", // The composer thinks about a more creative name - "slum": "Andr06 - Sneaky Snom", // Name defined by the composer + "sea": "Andr06 - Marine Mystique", + "seabed": "Firel - Seabed", + "slum": "Andr06 - Sneaky Snom", "snowy_forest": "PMD EoS Sky Peak Snowfield", "space": "Firel - Aether", "swamp": "PMD EoS Surrounded Sea", @@ -122,8 +130,6 @@ export const bgmName: SimpleTranslationEntries = { "town": "PMD EoS Random Dungeon Theme 3", "volcano": "PMD EoS Steam Cave", "wasteland": "PMD EoS Hidden Highland", - - // Encounter "encounter_ace_trainer": "BW Encontro com Treinador (Treinador Ás)", "encounter_backpacker": "BW Encontro com Treinador (Mochileiro)", "encounter_clerk": "BW Encontro com Treinador (Funcionário)", @@ -138,9 +144,7 @@ export const bgmName: SimpleTranslationEntries = { "encounter_scientist": "BW Encontro com Treinador (Cientista)", "encounter_twins": "BW Encontro com Treinador (Gêmeos)", "encounter_youngster": "BW Encontro com Treinador (Jovem)", - - // Other "heal": "BW Centro Pokémon", "menu": "PMD EoS Bem-vindo ao Mundo dos Pokémon!", - "title": "PMD EoS Menu Principal", -} as const; + "title": "PMD EoS Menu Principal" +} diff --git a/src/locales/pt_BR/biome.ts b/src/locales/pt_BR/biome.json similarity index 86% rename from src/locales/pt_BR/biome.ts rename to src/locales/pt_BR/biome.json index 0217836ed20..d10f22eb487 100644 --- a/src/locales/pt_BR/biome.ts +++ b/src/locales/pt_BR/biome.json @@ -1,6 +1,4 @@ -import { SimpleTranslationEntries } from "#app/interfaces/locales"; - -export const biome: SimpleTranslationEntries = { +{ "unknownLocation": "em algum lugar do qual você não se lembra", "TOWN": "Cidade", "PLAINS": "Planície", @@ -36,5 +34,5 @@ export const biome: SimpleTranslationEntries = { "SNOWY_FOREST": "Floresta Nevada", "ISLAND": "Ilha", "LABORATORY": "Laboratório", - "END": "???", -} as const; + "END": "???" +} \ No newline at end of file diff --git a/src/locales/pt_BR/challenges.ts b/src/locales/pt_BR/challenges.json similarity index 72% rename from src/locales/pt_BR/challenges.ts rename to src/locales/pt_BR/challenges.json index 31f29da48f3..6b20a92f4f6 100644 --- a/src/locales/pt_BR/challenges.ts +++ b/src/locales/pt_BR/challenges.json @@ -1,6 +1,4 @@ -import { TranslationEntries } from "#app/interfaces/locales"; - -export const challenges: TranslationEntries = { +{ "title": "Desafios", "illegalEvolution": "{{pokemon}} não pode ser escolhido\nnesse desafio!", "singleGeneration": { @@ -15,7 +13,7 @@ export const challenges: TranslationEntries = { "gen_6": "sexta", "gen_7": "sétima", "gen_8": "oitava", - "gen_9": "nona", + "gen_9": "nona" }, "singleType": { "name": "Monotipo", @@ -26,6 +24,13 @@ export const challenges: TranslationEntries = { "name": "Novo Começo", "desc": "Você só pode usar os iniciais originais, como se tivesse acabado de começar o PokéRogue.", "value.0": "Desligado", - "value.1": "Ligado", + "value.1": "Ligado" + }, + "inverseBattle": { + "name": "Batalha Inversa", + "shortName": "Inversa", + "desc": "Fraquezas e resistências de tipos são invertidas e nenhum tipo é imune a outro tipo.\nDesativa as conquistas de outros desafios.", + "value.0": "Desligado", + "value.1": "Ligado" } -} as const; +} \ No newline at end of file diff --git a/src/locales/pt_BR/command-ui-handler.json b/src/locales/pt_BR/command-ui-handler.json new file mode 100644 index 00000000000..fcd8e7026b4 --- /dev/null +++ b/src/locales/pt_BR/command-ui-handler.json @@ -0,0 +1,7 @@ +{ + "fight": "Lutar", + "ball": "Bolas", + "pokemon": "Pokémon", + "run": "Fugir", + "actionMessage": "O que {{pokemonName}}\ndeve fazer?" +} \ No newline at end of file diff --git a/src/locales/pt_BR/command-ui-handler.ts b/src/locales/pt_BR/command-ui-handler.ts deleted file mode 100644 index cd8f7c4a378..00000000000 --- a/src/locales/pt_BR/command-ui-handler.ts +++ /dev/null @@ -1,9 +0,0 @@ -import { SimpleTranslationEntries } from "#app/interfaces/locales"; - -export const commandUiHandler: SimpleTranslationEntries = { - "fight": "Lutar", - "ball": "Bolas", - "pokemon": "Pokémon", - "run": "Fugir", - "actionMessage": "O que {{pokemonName}}\ndeve fazer?", -} as const; diff --git a/src/locales/pt_BR/common.json b/src/locales/pt_BR/common.json new file mode 100644 index 00000000000..a5ec4381f26 --- /dev/null +++ b/src/locales/pt_BR/common.json @@ -0,0 +1,8 @@ +{ + "start": "Iniciar", + "luckIndicator": "Sorte:", + "shinyOnHover": "Shiny", + "commonShiny": "Comum", + "rareShiny": "Raro", + "epicShiny": "Épico" +} \ No newline at end of file diff --git a/src/locales/pt_BR/common.ts b/src/locales/pt_BR/common.ts deleted file mode 100644 index 7161f5c9966..00000000000 --- a/src/locales/pt_BR/common.ts +++ /dev/null @@ -1,10 +0,0 @@ -import { SimpleTranslationEntries } from "#app/interfaces/locales"; - -export const common: SimpleTranslationEntries = { - "start": "Iniciar", - "luckIndicator": "Sorte:", - "shinyOnHover": "Shiny", - "commonShiny": "Comum", - "rareShiny": "Raro", - "epicShiny": "Épico", -} as const; diff --git a/src/locales/pt_BR/config.ts b/src/locales/pt_BR/config.ts index b48fcfdc8d8..9e8377149c1 100644 --- a/src/locales/pt_BR/config.ts +++ b/src/locales/pt_BR/config.ts @@ -1,116 +1,113 @@ -import { ability } from "./ability"; -import { abilityTriggers } from "./ability-trigger"; -import { PGFachv, PGMachv } from "./achv"; -import { arenaFlyout } from "./arena-flyout"; -import { arenaTag } from "./arena-tag"; -import { battle } from "./battle"; -import { battleInfo } from "./battle-info"; -import { battleMessageUiHandler } from "./battle-message-ui-handler"; -import { battlerTags } from "./battler-tags"; -import { berry } from "./berry"; -import { bgmName } from "./bgm-name"; -import { biome } from "./biome"; -import { challenges } from "./challenges"; -import { commandUiHandler } from "./command-ui-handler"; -import { common } from "./common.js"; -import { - PGFbattleSpecDialogue, - PGFdialogue, - PGFdoubleBattleDialogue, - PGFmiscDialogue, - PGMbattleSpecDialogue, - PGMdialogue, - PGMdoubleBattleDialogue, - PGMmiscDialogue -} from "./dialogue"; -import { egg } from "./egg"; -import { fightUiHandler } from "./fight-ui-handler"; -import { filterBar } from "./filter-bar"; -import { gameMode } from "./game-mode"; -import { gameStatsUiHandler } from "./game-stats-ui-handler"; -import { growth } from "./growth"; -import { menu } from "./menu"; -import { menuUiHandler } from "./menu-ui-handler"; -import { modifier } from "./modifier"; -import { modifierSelectUiHandler } from "./modifier-select-ui-handler"; -import { modifierType } from "./modifier-type"; -import { move } from "./move"; -import { moveTriggers } from "./move-trigger"; -import { nature } from "./nature"; -import { partyUiHandler } from "./party-ui-handler"; -import { pokeball } from "./pokeball"; -import { pokemon } from "./pokemon"; -import { battlePokemonForm, pokemonForm } from "./pokemon-form"; -import { pokemonInfo } from "./pokemon-info"; -import { pokemonInfoContainer } from "./pokemon-info-container"; -import { pokemonSummary } from "./pokemon-summary"; -import { saveSlotSelectUiHandler } from "./save-slot-select-ui-handler"; -import { settings } from "./settings.js"; -import { splashMessages } from "./splash-messages"; -import { starterSelectUiHandler } from "./starter-select-ui-handler"; -import { statusEffect } from "./status-effect"; -import { titles, trainerClasses, trainerNames } from "./trainers"; -import { tutorial } from "./tutorial"; -import { voucher } from "./voucher"; -import { terrain, weather } from "./weather"; +import common from "./common.json"; +import settings from "./settings.json"; +import ability from "./ability.json"; +import abilityTriggers from "./ability-trigger.json"; +import arenaFlyout from "./arena-flyout.json"; +import arenaTag from "./arena-tag.json"; +import achv from "./achv.json"; +import battle from "./battle.json"; +import battleScene from "./battle-scene.json"; +import battleInfo from "./battle-info.json"; +import battleMessageUiHandler from "./battle-message-ui-handler.json"; +import battlerTags from "./battler-tags.json"; +import berry from "./berry.json"; +import bgmName from "./bgm-name.json"; +import biome from "./biome.json"; +import challenges from "./challenges.json"; +import commandUiHandler from "./command-ui-handler.json"; +import dialogue from "./dialogue.json"; +import battleSpecDialogue from "./dialogue-final-boss.json"; +import miscDialogue from "./dialogue-misc.json"; +import doubleBattleDialogue from "./dialogue-double-battle.json"; +import egg from "./egg.json"; +import fightUiHandler from "./fight-ui-handler.json"; +import filterBar from "./filter-bar.json"; +import gameMode from "./game-mode.json"; +import gameStatsUiHandler from "./game-stats-ui-handler.json"; +import growth from "./growth.json"; +import menu from "./menu.json"; +import menuUiHandler from "./menu-ui-handler.json"; +import modifier from "./modifier.json"; +import modifierType from "./modifier-type.json"; +import move from "./move.json"; +import nature from "./nature.json"; +import partyUiHandler from "./party-ui-handler.json"; +import pokeball from "./pokeball.json"; +import pokemon from "./pokemon.json"; +import pokemonForm from "./pokemon-form.json"; +import battlePokemonForm from "./pokemon-form-battle.json"; +import pokemonInfo from "./pokemon-info.json"; +import pokemonInfoContainer from "./pokemon-info-container.json"; +import pokemonSummary from "./pokemon-summary.json"; +import saveSlotSelectUiHandler from "./save-slot-select-ui-handler.json"; +import splashMessages from "./splash-messages.json"; +import starterSelectUiHandler from "./starter-select-ui-handler.json"; +import statusEffect from "./status-effect.json"; +import trainerTitles from "./trainer-titles.json"; +import trainerClasses from "./trainer-classes.json"; +import trainerNames from "./trainer-names.json"; +import tutorial from "./tutorial.json"; +import voucher from "./voucher.json"; +import weather from "./weather.json"; +import terrain from "./terrain.json"; +import modifierSelectUiHandler from "./modifier-select-ui-handler.json"; +import moveTriggers from "./move-trigger.json"; +import runHistory from "./run-history.json"; export const ptBrConfig = { - ability: ability, - abilityTriggers: abilityTriggers, - arenaFlyout: arenaFlyout, - arenaTag: arenaTag, - battle: battle, - battleInfo: battleInfo, - battleMessageUiHandler: battleMessageUiHandler, - battlePokemonForm: battlePokemonForm, - battlerTags: battlerTags, - berry: berry, - bgmName: bgmName, - biome: biome, - challenges: challenges, - commandUiHandler: commandUiHandler, - common: common, - PGMachv: PGMachv, - PGFachv: PGFachv, - PGMdialogue: PGMdialogue, - PGFdialogue: PGFdialogue, - PGMbattleSpecDialogue: PGMbattleSpecDialogue, - PGFbattleSpecDialogue: PGFbattleSpecDialogue, - PGMmiscDialogue: PGMmiscDialogue, - PGFmiscDialogue: PGFmiscDialogue, - PGMdoubleBattleDialogue: PGMdoubleBattleDialogue, - PGFdoubleBattleDialogue: PGFdoubleBattleDialogue, - egg: egg, - fightUiHandler: fightUiHandler, - filterBar: filterBar, - gameMode: gameMode, - gameStatsUiHandler: gameStatsUiHandler, - growth: growth, - menu: menu, - menuUiHandler: menuUiHandler, - modifier: modifier, - modifierSelectUiHandler: modifierSelectUiHandler, - modifierType: modifierType, - move: move, - moveTriggers: moveTriggers, - nature: nature, - partyUiHandler: partyUiHandler, - pokeball: pokeball, - pokemon: pokemon, - pokemonForm: pokemonForm, - pokemonInfo: pokemonInfo, - pokemonInfoContainer: pokemonInfoContainer, - pokemonSummary: pokemonSummary, - saveSlotSelectUiHandler: saveSlotSelectUiHandler, - statusEffect: statusEffect, - terrain: terrain, - settings: settings, - splashMessages: splashMessages, - starterSelectUiHandler: starterSelectUiHandler, - titles: titles, - trainerClasses: trainerClasses, - trainerNames: trainerNames, - tutorial: tutorial, - voucher: voucher, - weather: weather + ability, + abilityTriggers, + arenaFlyout, + arenaTag, + battle, + battleScene, + battleInfo, + battleMessageUiHandler, + battlePokemonForm, + battlerTags, + berry, + bgmName, + biome, + challenges, + commandUiHandler, + common, + achv, + dialogue, + battleSpecDialogue, + miscDialogue, + doubleBattleDialogue, + egg, + fightUiHandler, + filterBar, + gameMode, + gameStatsUiHandler, + growth, + menu, + menuUiHandler, + modifier, + modifierType, + move, + nature, + pokeball, + pokemon, + pokemonForm, + pokemonInfo, + pokemonInfoContainer, + pokemonSummary, + saveSlotSelectUiHandler, + settings, + splashMessages, + starterSelectUiHandler, + statusEffect, + terrain, + titles: trainerTitles, + trainerClasses, + trainerNames, + tutorial, + voucher, + weather, + partyUiHandler, + modifierSelectUiHandler, + moveTriggers, + runHistory: runHistory, }; diff --git a/src/locales/pt_BR/dialogue-double-battle.json b/src/locales/pt_BR/dialogue-double-battle.json new file mode 100644 index 00000000000..4d1c7d90c9b --- /dev/null +++ b/src/locales/pt_BR/dialogue-double-battle.json @@ -0,0 +1,83 @@ +{ + "blue_red_double": { + "encounter": { + "1": "Blue: Ei Red, vamos mostrar do que somos feitos!\n$Red: ...\n$Blue: Este é o poder da Cidade de Pallet!" + }, + "victory": { + "1": "Blue: Essa foi uma ótima batalha!\n$Red: ..." + } + }, + "red_blue_double": { + "encounter": { + "1": "Red: ...!\n$Blue: Ele nunca fala muito.\n$Blue: Mas não se deixe enganar! Ele é um campeão, afinal!" + }, + "victory": { + "1": "Red: ...!\n$Blue: Da próxima vez, vamos vencer você!" + } + }, + "tate_liza_double": { + "encounter": { + "1": "Tate: Está surpreso?\n$Liza: Somos dois líderes de ginásio ao mesmo tempo!\n$Tate: Somos gêmeos!\n$Liza: Não precisamos falar para nos entender!\n$Tate: Duas vezes o poder...\n$Liza: Você consegue lidar com isso?" + }, + "victory": { + "1": "Tate: O quê? Nossa combinação foi perfeita!\n$Liza: Parece que precisamos treinar mais..." + } + }, + "liza_tate_double": { + "encounter": { + "1": "Liza: Hihihi... Está surpreso?\n$Tate: Sim, somos realmente dois líderes de ginásio ao mesmo tempo!\n$Liza: Este é meu irmão gêmeo Tate!\n$Tate: E esta é minha irmã gêmea Liza!\n$Liza: Não acha que somos uma combinação perfeita?" + }, + "victory": { + "1": "Liza: Nós somos...\n$Tate: ...não tão fortes quanto pensávamos?" + } + }, + "wallace_steven_double": { + "encounter": { + "1": "Steven: Wallace, vamos mostrar a eles o poder dos campeões!\n$Wallace: Vamos mostrar o poder de Hoenn!\n$Steven: Vamos lá!" + }, + "victory": { + "1": "Steven: Essa foi uma ótima batalha!\n$Wallace: Vamos vencer da próxima vez!" + } + }, + "steven_wallace_double": { + "encounter": { + "1": "Steven: Você tem algum Pokémon raro?\n$Wallace: Steven... Estamos aqui para uma batalha, não para mostrar nossos Pokémon.\n$Steven: Ah... Entendi... Vamos lá então!" + }, + "victory": { + "1": "Steven: Agora que terminamos a batalha, vamos mostrar nossos Pokémon!\n$Wallace: Steven..." + } + }, + "alder_iris_double": { + "encounter": { + "1": "Alder: Somos os treinadores mais fortes de Unova!\n$Iris: Lutas contra treinadores fortes são as melhores!" + }, + "victory": { + "1": "Alder: Uau! Você é super forte!\n$Iris: Vamos vencer da próxima vez!" + } + }, + "iris_alder_double": { + "encounter": { + "1": "Iris: Bem-vindo, Desafiante! Eu sou A Campeã de Unova!\n$Alder: Iris, você não está um pouco empolgada demais?", + "1_female": "Iris: Bem-vinda, Desafiante! Eu sou A Campeã de Unova!\n$Alder: Iris, você não está um pouco empolgada demais?" + }, + "victory": { + "1": "Iris: Uma derrota como essa não é fácil de engolir...\n$Alder: Mas só ficaremos mais fortes a cada derrota!" + } + }, + "piers_marnie_double": { + "encounter": { + "1": "Marnie: Irmão, vamos mostrar a eles o poder de Spikemuth!\n$Piers: Nós trazemos a escuridão!" + }, + "victory": { + "1": "Marnie: Você trouxe luz para nossa escuridão!\n$Piers: Está muito claro..." + } + }, + "marnie_piers_double": { + "encounter": { + "1": "Piers: Prontos para um show?\n$Marnie: Irmão... Eles estão aqui para lutar, não para cantar..." + }, + "victory": { + "1": "Piers: Agora esse foi um ótimo show!\n$Marnie: Irmão..." + } + } +} \ No newline at end of file diff --git a/src/locales/pt_BR/dialogue-final-boss.json b/src/locales/pt_BR/dialogue-final-boss.json new file mode 100644 index 00000000000..7009f00db5b --- /dev/null +++ b/src/locales/pt_BR/dialogue-final-boss.json @@ -0,0 +1,6 @@ +{ + "encounter": "Parece que a hora finalmente chegou novamente.\nVocê sabe por que veio aqui, não sabe?\n$Você foi atraído para cá, porque já esteve aqui antes.\nInúmeras vezes.\n$Embora talvez isso possa ser contado.\nPara ser preciso, este é de fato o seu {{cycleCount}}º ciclo.\n$A cada ciclo, sua mente retorna ao seu estado anterior.\nMesmo assim, de alguma forma, vestígios de seus antigos \"eus\" permanecem.\n$Até agora, você ainda não conseguiu, mas sinto uma presença diferente em você desta vez.\n\n$Você é o único aqui, embora pareça haver... outro.\n$Você finalmente vai se mostrar um desafio formidável para mim?\nO desafio que anseio há milênios?\n$Vamos começar.", + "encounter_female": "Parece que a hora finalmente chegou novamente.\nVocê sabe por que veio aqui, não sabe?\n$Você foi atraída para cá, porque já esteve aqui antes.\nInúmeras vezes.\n$Embora talvez isso possa ser contado.\nPara ser preciso, este é de fato o seu {{cycleCount}}º ciclo.\n$A cada ciclo, sua mente retorna ao seu estado anterior.\nMesmo assim, de alguma forma, vestígios de seus antigos \"eus\" permanecem.\n$Até agora, você ainda não conseguiu, mas sinto uma presença diferente em você desta vez.\n\n$Você é a única aqui, embora pareça haver... outro.\n$Você finalmente vai se mostrar um desafio formidável para mim?\nO desafio que anseio há milênios?\n$Vamos começar.", + "firstStageWin": "Entendo. A presença que senti era realmente real.\nParece que não preciso mais me segurar.\n$Não me decepcione.", + "secondStageWin": "…Magnífico." +} \ No newline at end of file diff --git a/src/locales/pt_BR/dialogue-misc.json b/src/locales/pt_BR/dialogue-misc.json new file mode 100644 index 00000000000..18eb2ba8c91 --- /dev/null +++ b/src/locales/pt_BR/dialogue-misc.json @@ -0,0 +1,6 @@ +{ + "ending": "@c{smile}Oh? Você venceu?@d{96} @c{smile_eclosed}Acho que eu deveria saber.\nMas, você está de volta agora.\n$@c{smile}Acabou.@d{64} Você quebrou o ciclo.\n$@c{serious_smile_fists}Você também realizou seu sonho, não é?\nVocê não perdeu nenhuma vez.\n$@c{neutral}Eu sou o único que vai lembrar o que você fez.@d{96}\nAcho que está tudo bem, não é?\n$@c{serious_smile_fists}Sua lenda sempre viverá em nossos corações.\n$@c{smile_eclosed}Enfim, já tive o suficiente deste lugar, não é? Vamos para casa.\n$@c{serious_smile_fists}Talvez quando voltarmos, possamos ter outra batalha?\nSe você estiver disposto.", + "ending_female": "@c{shock}Você está de volta?@d{32} Isso significa que…@d{96} você venceu?!\n@c{smile_ehalf}Eu deveria saber que você conseguiria.\n$@c{smile_eclosed}Claro… Eu sempre tive essa sensação.\n@c{smile}Acabou agora, certo? Você quebrou o ciclo.\n$@c{smile_ehalf}Você também realizou seu sonho, não foi?\nVocê não perdeu nenhuma vez.\n$Eu serei a única a lembrar o que você fez.\n@c{angry_mopen}Eu tentarei não esquecer!\n$@c{smile_wave_wink}Brincadeirinha!@d{64} @c{smile}Eu nunca esqueceria.@d{32}\nSua lenda viverá em nossos corações.\n$@c{smile_wave}De qualquer forma,@d{64} está ficando tarde…@d{96} Eu acho?\nÉ difícil dizer neste lugar.\n$Vamos para casa. @c{smile_wave_wink}Talvez amanhã possamos ter outra batalha, pelos velhos tempos?", + "ending_endless": "Parabéns por alcançar o final atual!\nMais conteúdo chegará em breve.", + "ending_name": "Desenvolvedores" +} \ No newline at end of file diff --git a/src/locales/pt_BR/dialogue.json b/src/locales/pt_BR/dialogue.json new file mode 100644 index 00000000000..2f39442ee5a --- /dev/null +++ b/src/locales/pt_BR/dialogue.json @@ -0,0 +1,2809 @@ +{ + "youngster": { + "encounter": { + "1": "Eai, quer batalhar?", + "2": "Você também é um treinador novo?", + "2_female": "Você também é uma treinadora nova?", + "3": "Eai, nunca te vi antes. Vamos batalhar!", + "4": "Acabei de perder, então estou tentando encontrar mais Pokémon.\nEspera! Você parece fraco! Vamos batalhar!", + "4_female": "Acabei de perder, então estou tentando encontrar mais Pokémon.\nEspera! Você parece fraca! Vamos batalhar!", + "5": "A gente já se conheceu antes? Não lembro muito bem. Enfim, prazer te conhecer!", + "6": "Beleza! Vamos nessa!", + "7": "Beleza! Lá vou eu! Vou te mostrar meu poder!", + "8": "Hahaha... Vou te mostrar o quão incríveis são meus Pokémon!", + "9": "Sem perder tempo com cumprimentos. Vamos logo, quando estiver pronto!", + "9_female": "Sem perder tempo com cumprimentos. Vamos logo, quando estiver pronta!", + "10": "Não baixe a guarda, ou você pode acabar chorando quando uma criança te vencer.", + "11": "Eu criei meus Pokémon com muito cuidado. Você não tem permissão para machucá-los!", + "12": "Que bom que você chegou! Não vai ser fácil daqui pra frente.", + "13": "As batalhas continuam para sempre! Bem-vinda ao mundo sem fim!", + "13_female": "As batalhas continuam para sempre! Bem-vindo ao mundo sem fim!" + }, + "victory": { + "1": "Uau! Você é forte!", + "2": "Eu não tive chance, né?", + "3": "Vou te encontrar de novo quando for mais velho e te vencer!", + "4": "Ugh. Não tenho mais Pokémon.", + "5": "Não acredito… NÃO ACREDITO! Como pude perder de novo…", + "5_female": "Não acredito… NÃO ACREDITO! Como pude de novo…", + "6": "Não! Eu perdi!", + "7": "Uau! Você é incrível! Estou surpreso!", + "8": "Pode ser… Como… Eu e meus Pokémon somos os mais fortes, porém…", + "9": "Não vou perder da próxima vez! Vamos batalhar de novo algum dia!", + "10": "Aff! Não vê que sou apenas uma criança? Não foi justo você ir com tudo!", + "11": "Seus Pokémon são incríveis! Troca comigo!", + "12": "Me empolguei um pouco antes, mas sobre qual trabalho eu estava falando?", + "13": "Ahaha! É isso aí! Você já está em casa nesse mundo!" + } + }, + "lass": { + "encounter": { + "1": "Vamos batalhar, pode ser?", + "2": "Você parece um treinador novo. Vamos batalhar!", + "2_female": "Você parece uma treinadora nova. Vamos batalhar!", + "3": "Não te reconheço. Que tal uma batalha?", + "4": "Vamos ter uma batalha Pokémon divertida!", + "5": "Vou te mostrar como realmente usar Pokémon!", + "6": "Uma batalha séria começa com um começo sério! Tem certeza que está pronto?", + "6_female": "Uma batalha séria começa com um começo sério! Tem certeza que está pronta?", + "7": "Você só é jovem uma vez. E só tem uma chance em cada batalha. Logo, você será apenas uma memória.", + "8": "Vai com calma comigo, tá? Mas vou lutar sério!", + "9": "A escola é chata. Não tenho nada para fazer. Só estou batalhando para passar o tempo." + }, + "victory": { + "1": "Isso foi impressionante! Tenho muito a aprender.", + "2": "Não pensei que você me venceria tão fácil…", + "3": "Espero que possamos ter uma revanche um dia.", + "4": "Isso foi incrivelmente divertido! Você me esgotou totalmente…", + "5": "Você realmente me ensinou uma lição! Você é incrível!", + "6": "Sério, eu perdi. Isso é, tipo, seriamente deprimente, mas você foi seriamente legal.", + "7": "Não preciso de memórias como essa. Deletando memória…", + "8": "Ei! Eu te disse para pegar leve comigo! Mesmo assim, você é legal quando fica sério.", + "8_female": "Ei! Eu te disse para pegar leve comigo! Mesmo assim, você é legal quando fica séria.", + "9": "Estou realmente cansando de batalhar… Deve haver algo novo para fazer…" + } + }, + "breeder": { + "encounter": { + "1": "Pokémon obedientes, Pokémon egoístas… Pokémon têm características únicas.", + "2": "Embora minha criação e comportamento sejam ruins, criei meus Pokémon bem.", + "3": "Hmm, você disciplina seus Pokémon? Mimar demais não é bom." + }, + "victory": { + "1": "É importante nutrir e treinar as características de cada Pokémon.", + "2": "Ao contrário do meu lado diabólico, esses são bons Pokémon.", + "3": "Muito elogio pode estragar tanto Pokémon quanto pessoas." + }, + "defeat": { + "1": "Você não deve ficar com raiva dos seus Pokémon, mesmo se perder uma batalha.", + "2": "Certo? Pokémon bons, né? Eu sou adequado para criar coisas.", + "3": "Não importa o quanto você ame seus Pokémon, ainda precisa discipliná-los quando se comportam mal." + } + }, + "breeder_female": { + "encounter": { + "1": "Pokémon nunca te traem. Eles retribuem todo o amor que você dá a eles.", + "2": "Quer uma dica para treinar bons Pokémon?", + "3": "Eu criei esses Pokémon muito especiais usando um método especial." + }, + "victory": { + "1": "Ugh… Não era para ser assim. Será que administrei a mistura errada?", + "2": "Como isso aconteceu com meus Pokémon… O que você está dando de comer aos seus Pokémon?", + "3": "Se eu perder, isso significa que eu estava só matando o tempo. Não machuca meu ego nem um pouco." + }, + "defeat": { + "1": "Isso prova que meus Pokémon aceitaram meu amor.", + "2": "O verdadeiro truque para treinar bons Pokémon é capturar bons Pokémon.", + "3": "Pokémon serão fortes ou fracos dependendo de como você os cria." + } + }, + "fisherman": { + "encounter": { + "1": "Anem! Você me fez perder uma fisgada!\nO que vai fazer sobre isso?", + "2": "Sai daqui! Você está assustando os Pokémon!", + "3": "Vamos ver se você consegue fisgar uma vitória!" + }, + "victory": { + "1": "Esqueça isso.", + "2": "Da próxima vez, eu vou pescar a vitória!", + "3": "Acho que subestimei a força das correntes dessa vez." + } + }, + "fisherman_female": { + "encounter": { + "1": "Uau! Peguei um grande!", + "2": "Linha lançada, pronta para pescar o sucesso!", + "3": "Pronta para fazer ondas!" + }, + "victory": { + "1": "Vou voltar com um anzol mais forte.", + "2": "Vou pescar a vitória na próxima vez.", + "3": "Estou só afiando meus anzóis para a revanche!" + } + }, + "swimmer": { + "encounter": { + "1": "Hora de mergulhar!", + "2": "Vamos surfar nas ondas da vitória!", + "3": "Pronto para fazer um splash!" + }, + "victory": { + "1": "Molhado na derrota!", + "2": "Uma onda de derrota!", + "3": "De volta à praia, eu acho." + } + }, + "backpacker": { + "encounter": { + "1": "Prepare-se, vamos começar!", + "2": "Vamos ver se você consegue acompanhar!", + "3": "Prepare-se, desafiante!", + "4": "Passei 20 anos tentando me encontrar… Mas onde estou?" + }, + "victory": { + "1": "Dessa vez tropecei!", + "2": "Ah, acho que estou perdido.", + "3": "Caminho sem saída!", + "4": "Espere um segundo! Ei! Você não sabe quem eu sou?" + } + }, + "ace_trainer": { + "encounter": { + "1": "Você parece bastante confiante.", + "2": "Seus Pokémon… Mostre-os para mim…", + "3": "Como sou um Treinador Ás, as pessoas acham que sou forte.", + "4": "Você sabe o que é preciso para ser um Treinador Ás?" + }, + "victory": { + "1": "Sim… Você tem bons Pokémon…", + "2": "O quê?! Mas sou um gênio das batalhas!", + "3": "Claro, você é o personagem principal!", + "3_female": "Claro, você é a personagem principal!", + "4": "OK! OK! Você poderia ser um Treinador Ás!", + "4_female": "OK! OK! Você poderia ser uma Treinador Ás!" + }, + "defeat": { + "1": "Estou dedicando corpo e alma às batalhas de Pokémon!", + "2": "Tudo dentro das minhas expectativas… Nada para se surpreender…", + "3": "Eu achava que cresceria para ser uma pessoa frágil que parecia que quebraria se você apertasse muito.", + "4": "Claro que sou forte e não perco. É importante ganhar com graça." + } + }, + "parasol_lady": { + "encounter": { + "1": "Hora de embelezar o campo de batalha com elegância e postura!" + }, + "victory": { + "1": "Minha elegância permanece inabalável!" + } + }, + "twins": { + "encounter": { + "1": "Prepare-se, porque quando nos unimos, é o dobro do problema!", + "2": "Dois corações, uma estratégia – vamos ver se você consegue acompanhar nosso poder de gêmeos!", + "3": "Espero que esteja pronto para o dobro do problema, porque estamos prestes a causar!", + "3_female": "Espero que esteja pronta para o dobro do problema, porque estamos prestes a causar!" + }, + "victory": { + "1": "Podemos ter perdido essa rodada, mas nosso vínculo permanece inquebrável!", + "2": "Nosso espírito de gêmeos não será apagado por muito tempo.", + "3": "Voltaremos mais fortes como uma dupla dinâmica!" + }, + "defeat": { + "1": "O poder dos gêmeos reina supremo!", + "2": "Dois corações, um triunfo!", + "3": "Dobro de sorrisos, dobro da dança da vitória!" + } + }, + "cyclist": { + "encounter": { + "1": "Prepare-se para comer poeira!", + "2": "Prepare-se, desafiante! Estou prestes a te deixar para trás!", + "3": "Pé no pedal, vamos ver se você consegue acompanhar!" + }, + "victory": { + "1": "As rodas podem estar paradas, mas a determinação continua a pedalar.", + "2": "Fui mais rápido!", + "3": "O caminho para a vitória tem muitas curvas e voltas para explorar." + } + }, + "black_belt": { + "encounter": { + "1": "Elogio sua coragem ao me desafiar! Pois eu sou o que tem o chute mais forte!", + "2": "Oh, entendo. Você gostaria de ser cortado em pedaços? Ou prefere o papel de saco de pancadas?", + "2_female": "Oh, entendo. Você gostaria de ser cortada em pedaços? Ou prefere o papel de saco de pancadas?" + }, + "victory": { + "1": "Oh. Os Pokémon fizeram a luta. Meu chute forte não ajudou em nada.", + "2": "Hmmm… Se eu ia perder de qualquer maneira, esperava ficar totalmente destruído no processo." + } + }, + "battle_girl": { + "encounter": { + "1": "Você não precisa tentar me impressionar. Você pode perder contra mim." + }, + "victory": { + "1": "É difícil dizer adeus, mas estamos ficando sem tempo…" + } + }, + "hiker": { + "encounter": { + "1": "Minha barriga de meia-idade me deu tanta gravidade quanto as montanhas que eu escalo!", + "2": "Herdei esse corpo ossudo dos meus pais… Sou como uma cadeia de montanhas viva…" + }, + "victory": { + "1": "Pelo menos não posso perder quando se trata de IMC!", + "2": "Não é suficiente… Nunca é suficiente. Meu colesterol ruim não está alto o suficiente…" + } + }, + "ranger": { + "encounter": { + "1": "Quando estou cercado pela natureza, a maioria das outras coisas deixa de importar.", + "2": "Quando estou vivendo sem natureza na minha vida, às vezes sinto uma crise de ansiedade se aproximando." + }, + "victory": { + "1": "Não importa para a vastidão da natureza se eu ganhar ou perder…", + "2": "Algo assim é bastante trivial comparado aos sentimentos sufocantes da vida na cidade." + }, + "defeat": { + "1": "Ganhei a batalha. Mas a vitória não é nada comparada à vastidão da natureza…", + "2": "Tenho certeza de que como você se sente não é tão ruim se comparar aos meus ataques de ansiedade…" + } + }, + "scientist": { + "encounter": { + "1": "Minha pesquisa levará este mundo à paz e alegria." + }, + "victory": { + "1": "Sou um gênio… Não devo perder para alguém como você…" + } + }, + "school_kid": { + "encounter": { + "1": "Heehee. Estou confiante nos meus cálculos e análises.", + "2": "Estou ganhando o máximo de experiência que posso porque quero ser um Líder de Ginásio um dia." + }, + "victory": { + "1": "Aff… Cálculo e análise talvez não sejam páreo para o acaso…", + "2": "Até experiências difíceis e desafiadoras têm seu propósito, eu acho." + } + }, + "artist": { + "encounter": { + "1": "Eu costumava ser popular, mas agora estou acabado." + }, + "victory": { + "1": "À medida que os tempos mudam, os valores também mudam. Percebi isso tarde demais." + } + }, + "guitarist": { + "encounter": { + "1": "Prepare-se para sentir o ritmo da derrota enquanto eu toco minha vitória!" + }, + "victory": { + "1": "Silenciado por agora, mas minha melodia de resiliência continuará a tocar." + } + }, + "worker": { + "encounter": { + "1": "Me incomoda que as pessoas sempre me entendam mal. Sou muito mais puro do que todos pensam." + }, + "victory": { + "1": "Eu realmente não quero que minha pele queime, então quero ficar na sombra enquanto trabalho." + } + }, + "worker_female": { + "encounter": { + "1": "Me incomoda que as pessoas sempre me entendam mal.\n$Sou muito mais pura do que todos pensam." + }, + "victory": { + "1": "Eu realmente não quero que minha pele queime, então quero ficar na sombra enquanto trabalho." + }, + "defeat": { + "1": "Meu corpo e mente nem sempre estão necessariamente em sincronia." + } + }, + "worker_double": { + "encounter": { + "1": "Vou te mostrar que podemos te quebrar. Estamos treinando no campo!" + }, + "victory": { + "1": "Que estranho… Como isso pode ser… Não deveria ter sido superado." + } + }, + "hex_maniac": { + "encounter": { + "1": "Normalmente, só escuto música clássica, mas se eu perder, acho que vou tentar um pouco de new age!", + "2": "Eu fico mais forte a cada lágrima que derramo." + }, + "victory": { + "1": "É o início da era de Aquário?", + "2": "Agora posso ficar ainda mais forte. Cresço com cada rancor." + }, + "defeat": { + "1": "New age se refere simplesmente aos compositores clássicos do século XX, certo?", + "2": "Não fique preso na tristeza ou frustração. Você pode usar seus rancores para se motivar.", + "2_female": "Não fique presa na tristeza ou frustração. Você pode usar seus rancores para se motivar." + } + }, + "psychic": { + "encounter": { + "1": "Oi! Concentre-se!" + }, + "victory": { + "1": "Perdi minha concentração!" + } + }, + "officer": { + "encounter": { + "1": "Prepare-se, porque a justiça está prestes a ser servida!", + "2": "Pronto para defender a lei e servir a justiça no campo de batalha!" + }, + "victory": { + "1": "O peso da justiça parece mais pesado do que nunca…", + "2": "As sombras da derrota pairam no distrito." + } + }, + "beauty": { + "encounter": { + "1": "Minha última batalha… É assim que eu gostaria que víssemos esta partida…" + }, + "victory": { + "1": "Foi divertido… Vamos ter outra última batalha algum dia…" + } + }, + "baker": { + "encounter": { + "1": "Espero que esteja pronto para saborear a derrota!", + "1_female": "Espero que esteja pronta para saborear a derrota!" + }, + "victory": { + "1": "Vou assar uma revanche." + } + }, + "biker": { + "encounter": { + "1": "Hora de acelerar e te deixar na poeira!" + }, + "victory": { + "1": "Vou me ajustar para a próxima corrida." + } + }, + "firebreather": { + "encounter": { + "1": "Minhas chamas irão te consumir!", + "2": "Minha alma está pegando fogo. Irei te mostrar como queima!", + "3": "Cola aqui e dá uma olhada!" + }, + "victory": { + "1": "Fui reduzido a cinzas…", + "2": "Uau! Isso foi quente!", + "3": "Ai! Queimei minha língua!" + } + }, + "sailor": { + "encounter": { + "1": "Mano, você vai andar na prancha se perder!", + "2": "Vem com tudo! Sou um marinheiro com orgulho!", + "3": "Ahoy marujo! Tá enjoado, é?!", + "3_female": "Ahoy maruja! Tá enjoada, é?!" + }, + "victory": { + "1": "Argh! Perdi pra uma criança!", + "2": "Sua vontade de ganhar me afogou!", + "3": "Estou achando que quem tá enjoado sou eu..." + } + }, + "archer": { + "encounter": { + "1": "Antes de você ir mais longe, vamos ver como você se sai contra nós, Equipe Rocket!", + "2": "Eu tenho recebido relatórios de que suas habilidades não são insignificantes. Vamos ver se são verdadeiros.", + "3": "Eu sou Archer, um Admin da Equipe Rocket. E não tenho piedade dos inimigos da nossa organização." + }, + "victory": { + "1": "Que vexame!", + "2": "Com minhas habilidades atuais, eu não estava à altura da tarefa, afinal.", + "3": "M-me perdoe, Giovanni... Por ser derrotado por um mero treinador..." + } + }, + "ariana": { + "encounter": { + "1": "Pera aí! Não podemos deixar alguém solto por aí. Isso é prejudicial para o orgulho da Equipe Rocket, entende?", + "2": "Eu não sei ou me importo se o que estou fazendo é certo ou errado... Eu apenas coloco minha fé em Giovanni e faço o que me é dito.", + "3": "Sua viagem termina aqui. Vou te derrubar!" + }, + "victory": { + "1": "Uau, você é forte. Que desperdício. Se você se juntasse à Equipe Rocket, poderia se tornar um Executivo.", + "1_female": "Uau, você é forte. Que desperdício. Se você se juntasse à Equipe Rocket, poderia se tornar uma Executiva.", + "2": "Eu... Eu estou arrasada...", + "3": "Aaaieeeee! Isso não pode estar acontecendo! Eu lutei muito, mas ainda perdi…" + } + }, + "proton": { + "encounter": { + "1": "O que você quer? Se você interromper nosso trabalho, não espere misericórdia!", + "2": "O que temos aqui? Costumam me chamar de o cara mais assustador e cruel da Equipe Rocket… Eu recomendo fortemente que você não interfira nos nossos negócios!", + "3": "Eu sou Proton, um Admin da Equipe Rocket. Estou aqui para acabar com a sua intromissão!" + }, + "victory": { + "1": "A fortaleza caiu!", + "2": "Você pode ter vencido desta vez… Mas tudo o que fez foi aumentar a ira da Equipe Rocket…", + "3": "Fui derrotado… Mas não esquecerei disso!" + } + }, + "petrel": { + "encounter": { + "1": "Muhahaha, estávamos esperando por você. Eu? Você não sabe quem eu sou? Sou eu, Giovanni. O majestoso Giovanni em pessoa! Wahahaha! ...Huh? Eu não pareço nada com Giovanni? Eu nem mesmo pareço com Giovanni? Como assim? Trabalhei tanto para imitá-lo!", + "2": "Eu sou Petrel, um Admin da Equipe Rocket. Não permitirei que você interfira em nossos planos!", + "3": "O Executivo da Rocket, Petrel, vai lidar com este intruso!" + }, + "victory": { + "1": "OK, OK. Vou te contar onde ele está.", + "2": "Eu... Eu não consegui fazer nada... Giovanni, por favor, me perdoe...", + "3": "Não, eu não posso deixar isso me afetar. Tenho que informar os outros…" + } + }, + "tabitha": { + "encounter": { + "1": "Hehehe! Então você veio até aqui! Mas você chegou tarde demais!", + "2": "Hehehe... Já chegou aqui, não é? Nós subestimamos você! Mas é isso! Eu sou um passo acima dos Capangas que você viu até agora. Não estou ganhando tempo. Vou te pulverizar!", + "3": "Vou te dar um gostinho da dor! Resigne-se a isso!" + }, + "victory": { + "1": "Hehehe! Você pode ter me derrotado, mas não tem chance contra o Chefe! Se você se perder agora, não terá que enfrentar uma surra sonora!", + "2": "Hehehe... Então, eu também perdi...", + "3": "Ahya! Como isso pode ser? Para um Admin como eu perder para um treinador qualquer...", + "3_female": "Ahya! Como isso pode ser? Para um Admin como eu perder para uma treinadora qualquer..." + } + }, + "courtney": { + "encounter": { + "1": "A coisa... A coisa que você segura... É o que... É o que nós da Equipe Magma procuramos...", + "2": "... Bem então... Deletando...", + "3": "...Ha. ...Analisando... ...Hah♪" + }, + "victory": { + "1": "... ...Mudar...o mundo.", + "2": "Como antecipado. Não antecipado. Você. Bloqueio de alvo... concluído. Iniciando... experimento. Você. Para sempre. Aha... ♪", + "3": "... De novo? Isso não foi antecipado. ...Eu sabia. Você... é interessante! ...Haha. ♪" + } + }, + "shelly": { + "encounter": { + "1": "Ahahahaha! Você vai se meter nos assuntos da Equipe Aqua? Você é absolutamente destemido, simplesmente ignorante ou ambos! Você é tão fofo que chega a ser nojento! Vou te derrubar", + "1_female": "Ahahahaha! Você vai se meter nos assuntos da Equipe Aqua? Você é absolutamente destemida, simplesmente ignorante ou ambos! Você é tão fofa que chega a ser nojenta! Vou te derrubar", + "2": "O que é isso? Quem é essa criança mimada?", + "3": "Relaxe. Seja paciente. Vou te esmagar em breve." + }, + "victory": { + "1": "Ahahahaha! Fomos surpreendidos inesperadamente! Estamos sem opções. Teremos que recuar. Mas esta não é a última vez que você verá a Equipe Aqua! Temos outros planos! Não se esqueça disso!", + "2": "Ahhh?! Fui muito fácil com você?!", + "3": "Uh. Você está me dizendo que melhorou seu jogo ainda mais durante a luta? Você é um pirralho com um futuro brilhante… Meu Pokémon e eu não temos mais forças para lutar… Vá em frente… Vá e seja destruído por Archie.", + "3_female": "Uh. Você está me dizendo que melhorou seu jogo ainda mais durante a luta? Você é uma pirralha com um futuro brilhante… Meu Pokémon e eu não temos mais forças para lutar… Vá em frente… Vá e seja destruída por Archie." + } + }, + "matt": { + "encounter": { + "1": "Hoohahaha! O que, você tem um parafuso solto ou algo assim? Olhe para você, pequena pessoa Makuhita!", + "2": "Oho! Você! Você é aquela criança engraçada!", + "3": "O que você está fazendo aqui? Você nos seguiu?" + }, + "victory": { + "1": "Muito bem, até que o Chefe tenha tempo para você, serei seu oponente!", + "2": "Posso sentir! Posso sentir, tudo bem! A força saindo de você! Mais! Eu ainda quero mais! Mas parece que estamos sem tempo...", + "3": "Isso foi divertido! Eu sabia que você me mostraria um bom tempo! Estou ansioso para enfrentá-lo novamente algum dia!", + "3_female": "Isso foi divertido! Eu sabia que você me mostraria um bom tempo! Estou ansioso para enfrentá-la novamente algum dia!" + } + }, + "mars": { + "encounter": { + "1": "Sou Mars, uma das principais Comandantes da Equipe Galáctica.", + "2": "A visão da Equipe Galáctica para o futuro é inabalável. A oposição será esmagada sem piedade!", + "3": "Sentindo-se nervoso? Você deveria estar!", + "3_female": "Sentindo-se nervosa? Você deveria estar!" + }, + "victory": { + "1": "Isso não pode estar acontecendo! Como eu perdi?!", + "2": "Você tem alguma habilidade, eu admito isso.", + "3": "Derrotada... Este foi um erro caro." + } + }, + "jupiter": { + "encounter": { + "1": "Júpiter, Comandante da Equipe Galáctica, ao seu serviço.", + "2": "A resistência é inútil. A Equipe Galáctica prevalecerá!", + "3": "Você está tremendo... já está com medo?" + }, + "victory": { + "1": "De jeito nenhum... Eu perdi?!", + "2": "Impressionante, você tem coragem!", + "3": "Perder assim... Que embaraço." + } + }, + "saturn": { + "encounter": { + "1": "Eu sou Saturno, Comandante da Equipe Galáctica.", + "2": "Nossa missão é absoluta. Qualquer obstáculo será obliterado!", + "3": "É medo o que vejo em seus olhos?" + }, + "victory": { + "1": "Impossível... Derrotado por você?!", + "2": "Você provou ser um adversário digno.", + "3": "Derrotado... Isso é inaceitável." + } + }, + "zinzolin": { + "encounter": { + "1": "Você poderia se tornar uma ameaça para a Equipe Plasma, então vamos eliminá-lo aqui e agora!", + "1_female": "Você poderia se tornar uma ameaça para a Equipe Plasma, então vamos eliminá-la aqui e agora!", + "2": "Oh, pelo amor de Deus... Eu não esperava ter que lutar neste frio congelante!", + "3": "Você é um treinador impressionante para ter chegado tão longe. Mas termina aqui.", + "3_female": "Você é uma treinadora impressionante para ter chegado tão longe. Mas termina aqui." + }, + "victory": { + "1": "Ghetsis... Eu falhei com você...", + "2": "Está amargamente frio. Estou tremendo. Estou sofrendo. Ainda assim, estou vitorioso.", + "3": "Hmph. Você é um treinador mais esperto do que eu esperava, mas não esperto o suficiente.", + "3_female": "Hmph. Você é uma treinadora mais esperta do que eu esperava, mas não esperta o suficiente." + } + }, + "rood": { + "encounter": { + "1": "Você é uma ameaça para a Equipe Plasma. Não podemos deixá-lo ir embora daqui e agora!", + "1_female": "Você é uma ameaça para a Equipe Plasma. Não podemos deixá-la ir embora daqui e agora!", + "2": "Oh, este vento gelado... Eu nunca pensei que teria que lutar aqui!", + "3": "Você é um treinador notável para ter chegado tão longe. Mas é aqui que termina.", + "3_female": "Você é uma treinadora notável para ter chegado tão longe. Mas é aqui que termina." + }, + "victory": { + "1": "Ghetsis... Eu falhei em minha missão...", + "2": "O frio é penetrante. Estou tremendo. Estou sofrendo. Ainda assim, triunfei.", + "3": "Hm. Você é um treinador talentoso, mas infelizmente não talentoso o suficiente.", + "3_female": "Hm. Você é uma treinadora talentosa, mas infelizmente não talentosa o suficiente." + } + }, + "xerosic": { + "encounter": { + "1": "Ah ha ha! Será um prazer. Vamos lá, pequeno treinador! Vamos ver o que você tem!", + "1_female": "Ah ha ha! Será um prazer. Vamos lá, pequena treinadora! Vamos ver o que você tem!", + "2": "Hmm... Você é mais poderoso do que parece. Eu me pergunto quanta energia há dentro de você.", + "2_female": "Hmm... Você é mais poderosa do que parece. Eu me pergunto quanta energia há dentro de você.", + "3": "Eu estava esperando por você! Preciso fazer uma pequena pesquisa sobre você! Vamos começar!" + }, + "victory": { + "1": "Ah, você é bastante forte. Oh sim—muito forte, de fato.", + "2": "Ding-ding-ding! Você conseguiu! Ao vencedor, os despojos!", + "2_female": "Ding-ding-ding! Você conseguiu! À vencedora, os despojos!", + "3": "Maravilhoso! Incrível! Você tem uma tremenda habilidade e coragem!" + } + }, + "bryony": { + "encounter": { + "1": "Eu sou Bryony, e será um prazer lutar com você. Mostre-me o que você tem.", + "2": "Impressionante... Você é mais poderoso do que parece. Vamos ver a verdadeira extensão de sua energia.", + "2_female": "Impressionante... Você é mais poderosa do que parece. Vamos ver a verdadeira extensão de sua energia.", + "3": "Eu antecipei sua chegada. É hora de um pequeno teste. Vamos começar?" + }, + "victory": { + "1": "Você é bastante forte. Oh sim—muito forte, de fato.", + "2": "Ding-ding-ding! Você se saiu bem. A vitória é sua.", + "3": "Maravilhoso! Notável! Sua habilidade e coragem são admiráveis." + } + }, + "rocket_grunt": { + "encounter": { + "1": "Se prepara pra encrenca!", + "2": "Estamos realizando um grande trabalho aqui! Cai fora, moleque!", + "2_female": "Estamos realizando um grande trabalho aqui! Cai fora, garota!", + "3": "Entregue seus Pokémon ou enfrente a ira da Equipe Rocket!", + "4": "Você está prestes a experimentar o verdadeiro terror da Equipe Rocket!", + "5": "Ei, moleque! Eu sou um tipo de cara da Equipe Rocket!", + "5_female": "Ei, garota! Eu sou um tipo de cara da Equipe Rocket!" + }, + "victory": { + "1": "Equipe Rocket decolando de novo!", + "2": "Oh não! Eu deixei a Chave de Elevação cair!", + "3": "Eu estraguei tudo!", + "4": "Meus associados não vão tolerar isso!", + "5": "Você diz o que? Equipe Rocket tchau-tchau a vai-vai? Quebrado é diz você?" + } + }, + "magma_grunt": { + "encounter": { + "1": "Se você se meter com a Equipe Magma, não teremos piedade!", + "2": "É melhor você não interferir em nossos planos! Estamos tornando o mundo um lugar melhor!", + "3": "Você está no caminho! A Equipe Magma não tem tempo para crianças como você!", + "4": "Espero que você tenha trazido marshmallows porque as coisas estão prestes a esquentar!", + "5": "Vamos usar o poder de um vulcão! Vai ser... explosivo! Entendeu? Heh heh!" + }, + "victory": { + "1": "Ahn? Eu perdi?!", + "2": "Não posso acreditar que perdi! Até pulei o almoço por isso.", + "3": "De jeito nenhum! Você é apenas uma criança!", + "4": "Urrrgh... Eu deveria ter me escondido em nosso esconderijo imediatamente...", + "5": "Você me venceu... Você acha que o chefe vai cortar meu salário por isso?" + } + }, + "aqua_grunt": { + "encounter": { + "1": "Não pegamos leve com quem se mete com a Equipe Aqua, nem mesmo crianças!", + "2": "Grrr... Você tem coragem de se intrometer com a Equipe Aqua!", + "3": "Você está prestes a se molhar! E não apenas por causa dos meus Pokémon aquáticos!", + "4": "Nós, da Equipe Aqua, existimos para o bem de todos!", + "5": "Prepare-se para ser levado pelas ondas do meu... uh, Pokémon! Sim, meu Pokémon!" + }, + "victory": { + "1": "Tá de brincadeira!", + "2": "Arrgh, eu não contei que seria atrapalhado por uma criança intrometida!", + "3": "Eu perdi?! Acho que vou ter que nadar de volta para o esconderijo agora...", + "4": "Oh, cara, que desastre... O chefe vai ficar furioso...", + "5": "Você me venceu... Você acha que o chefe vai me fazer andar na prancha por isso?" + } + }, + "galactic_grunt": { + "encounter": { + "1": "Não mexa com a Equipe Galáctica!", + "2": "Presencie o poder da nossa tecnologia e o futuro que vislumbramos!", + "3": "Em nome da Equipe Galáctica, eliminarei qualquer um que ficar em nosso caminho!", + "4": "Prepare-se para perder!", + "5": "Espero que você esteja pronto para uma surra cósmica!", + "5_female": "Espero que você esteja pronta para uma surra cósmica!" + }, + "victory": { + "1": "Fui amassado...", + "2": "Este contratempo não significa nada no grande esquema.", + "3": "Nossos planos são maiores que esta derrota.", + "4": "Como?!", + "5": "Nota para mim mesmo: praticar batalhas Pokémon, o mais rápido possível." + } + }, + "plasma_grunt": { + "encounter": { + "1": "Não toleramos pessoas que pensam diferente de nós!", + "2": "Se eu ganhar de você, liberte seus Pokémon!", + "3": "Se você atrapalhar a Equipe Plasma, eu cuidarei de você!", + "4": "A Equipe Plasma vai libertar os Pokémon de humanos egoístas como você!", + "5": "Nossos penteados são de outro mundo... mas nossas habilidades de batalha? Você descobrirá em breve." + }, + "victory": { + "1": "Plasmaaaaaaaaa!", + "2": "Como eu pude perder...", + "3": "...Que Pokémon fraco, vou ter que roubar alguns melhores!", + "4": "Grandes planos são sempre interrompidos.", + "5": "Isso é ruim... Ruim ruim ruim ruim ruim ruim ruim! Ruim para a Equipe Plasma! Ou Plasruim, para abreviar!" + } + }, + "flare_grunt": { + "encounter": { + "1": "Seus Pokémon não são páreo para a elegância da Equipe Flare.", + "2": "Espero que você tenha trazido seus óculos de sol, porque as coisas vão ficar brilhantes!", + "3": "A Equipe Flare vai purificar o mundo da imperfeição!", + "4": "Prepare-se para enfrentar o brilho da Equipe Flare!", + "5": "A moda é o mais importante para nós!" + }, + "victory": { + "1": "O futuro não parece brilhante para mim.", + "2": "Talvez haja mais na batalha do que eu pensei. De volta à prancheta.", + "3": "Gahh?! Eu perdi?!", + "4": "Mesmo na derrota, a elegância da Equipe Flare brilha.", + "5": "Você pode ter me vencido, mas quando eu perco, eu saio com estilo!" + } + }, + "aether_grunt": { + "encounter": { + "1": "Eu vou lutar com tudo o que tenho para te eliminar!", + "2": "Eu não me importo se você é uma criança ou o que. Eu vou te mandar voando se você nos ameaçar!", + "3": "Me mandaram afastar Treinadores, não importa quem sejam!", + "4": "Eu vou te mostrar o poder do Paraíso Aether!", + "5": "Agora que você descobriu a escuridão no coração do Paraíso Aether, precisamos que você desapareça convenientemente!" + }, + "victory": { + "1": "Aff! Você parece ter muita habilidade.", + "2": "O que isso significa? O que isso significa!", + "3": "Ei! Você é tão forte que não há como eu te afastar!", + "4": "Hmm... Parece que eu posso ter perdido.", + "5": "Aqui está uma resposta para você: Aiyee!" + } + }, + "faba": { + "encounter": { + "1": "Eu, o Chefe de Ramo Faba, vou te mostrar a dureza do mundo real!", + "2": "O homem chamado de última linha de defesa do Paraíso Aether vai batalhar com uma mera criança?", + "3": "Eu, Faba, sou o Chefe de Ramo do Paraíso Aether. O único no mundo, eu sou insubstituível." + }, + "victory": { + "1": "Aiyee!", + "2": "C-c-como assim?! Como uma criança...", + "3": "Isso é por que... Isso é por que eu não consigo gostar de crianças." + } + }, + "skull_grunt": { + "encounter": { + "1": "Nós não somos maus, somos apenas durões!", + "2": "Quer um pouco de nós? É assim que dizemos olá! Prazer em conhecê-los, otários!", + "3": "Somos só um bando de caras e minas com um grande interesse nos Pokémon dos outros!", + "4": "Por que você está tentando agir durão quando já somos durões como ossos aqui fora, mano?", + "5": "Equipe Skull na área! Não podemos pagar o aluguel! Nos divertimos muito, mas nossa juventude foi desperdiçada!" + }, + "victory": { + "1": "Ahn? Já acabou?", + "2": "Hora de dar o fora, mano! Vamos ter que dizer tchau, mano!", + "3": "Nem precisamos dos seus Pokémon fracotes mesmo!", + "4": "Que?! Esse muleque é muito forte! Não tem como negar!", + "5": "Então, o que? Eu sou pior que um Pokémon?! Eu já tenho problemas de autoestima, cara." + } + }, + "plumeria": { + "encounter": { + "1": " ...Hmph. Você não parece nada especial para mim.", + "2": "Esses Capangas gastam muito tempo tentando lidar com crianças como você...", + "3": "Mexe com qualquer um da Equipe Skull, e eu vou te mostrar o quão séria eu posso ficar." + }, + "victory": { + "1": "Aff! Você é bem forte. Tenho que admitir.", + "2": "Aff! Você é bem forte. Agora eu entendi por que meus Capangas gastam tanto tempo batalhando com crianças.", + "3": "Aff! Acho que eu só tenho que aceitar essa derrota." + } + }, + "macro_grunt": { + "encounter": { + "1": "Parece que aqui é o fim da linha para você!", + "2": "Você é um treinador, não é? Temo que isso não lhe dê o direito de interferir em nosso trabalho.", + "3": "Sou da Macro Cosmos Seguros! Já tem um seguro de vida?" + }, + "victory": { + "1": "Eu não tenho muita escolha a não ser recuar respeitosamente.", + "2": "Ter que desistir do meu dinheiro... Perder significa que estou de volta no vermelho...", + "3": "Ninguém pode vencer a Macro Cosmos quando se trata de nossa dedicação ao trabalho!" + } + }, + "oleana": { + "encounter": { + "1": "Eu não vou deixar ninguém interferir no plano do Sr. Rose!", + "2": "Então, você passou por todo o pessoal especial que eu ordenei para te parar. Eu não esperaria nada menos.", + "3": "Pelo presidente! Eu não vou perder!" + }, + "victory": { + "1": "*suspiro* Eu não consegui vencer... Oleana... você realmente é uma mulher sem esperança.", + "2": "Aff! Isso é inaceitável... O que eu estava pensando... Qualquer treinador que chega tão longe não seria um fracote...", + "3": "*suspiro* Eu sou uma Oleana cansada..." + } + }, + "rocket_boss_giovanni_1": { + "encounter": { + "1": "Tenho que admitir, estou impressionado que tenha chegado até aqui!" + }, + "victory": { + "1": "QUÊ! Isso não é possível!" + }, + "defeat": { + "1": "Guarde minhas palavras.\nNão ser capaz de medir sua própria força mostra que você ainda é uma criança." + } + }, + "rocket_boss_giovanni_2": { + "encounter": { + "1": "Meus antigos associados precisam de mim... Você vai ficar no meu caminho?" + }, + "victory": { + "1": "Como isso é possível...?\nO precioso sonho da Equipe Rocket se tornou pouco mais que uma ilusão..." + }, + "defeat": { + "1": "A Equipe Rocket renascerá, e eu dominarei o mundo!" + } + }, + "magma_boss_maxie_1": { + "encounter": { + "1": "Eu vou te enterrar com minhas próprias mãos.\nEspero que você aprecie essa honra!" + }, + "victory": { + "1": "Ugh! Você é... bastante capaz...\nEu fiquei para trás, mas apenas por um triz..." + }, + "defeat": { + "1": "A Equipe Magma vai prevalecer!" + } + }, + "magma_boss_maxie_2": { + "encounter": { + "1": "Você é o último obstáculo entre mim e meus objetivos.\nPrepare-se para meu ataque final! Fuhahaha!" + }, + "victory": { + "1": "Isso... Isso não é... Ngh..." + }, + "defeat": { + "1": "E agora... Eu transformarei este planeta em uma terra ideal para a humanidade." + } + }, + "aqua_boss_archie_1": { + "encounter": { + "1": "Eu sou o líder da Equipe Aqua, então temo que esse seja o fim da linha para você." + }, + "victory": { + "1": "Vamos nos encontrar de novo em algum lugar. Eu vou ter certeza de lembrar desse rosto." + }, + "defeat": { + "1": "Brilhante! Nada vai parar minha equipe agora!" + } + }, + "aqua_boss_archie_2": { + "encounter": { + "1": "Estive esperando tanto tempo por este dia.\nEste é o verdadeiro poder da minha equipe!" + }, + "victory": { + "1": "Como eu suspeitava..." + }, + "defeat": { + "1": "Eu vou voltar tudo neste mundo ao seu estado puro e original!!" + } + }, + "galactic_boss_cyrus_1": { + "encounter": { + "1": "Você foi compelido a vir aqui por tal sentimentalismo vazio\nEu farei você se arrepender de ter ouvido seu coração!", + "1_female": "Você foi compelida a vir aqui por tal sentimentalismo vazio\nEu farei você se arrepender de ter ouvido seu coração!" + }, + "victory": { + "1": "Interessante. E bastante curioso." + }, + "defeat": { + "1": "Eu criarei meu novo mundo..." + } + }, + "galactic_boss_cyrus_2": { + "encounter": { + "1": "Nos encontramos novamente. Parece que nossos destinos estão entrelaçados.\nMas aqui e agora, eu finalmente quebrarei esse vínculo!" + }, + "victory": { + "1": "Como? Como? COMO?!" + }, + "defeat": { + "1": "Até logo." + } + }, + "plasma_boss_ghetsis_1": { + "encounter": { + "1": "Ninguém pode me deter! Não importa quem seja ou o que faça!" + }, + "victory": { + "1": "Como isso é possível? Eu sou o criador da Equipe Plasma! Eu sou perfeito!" + }, + "defeat": { + "1": "Eu sou o governante perfeito de um novo mundo perfeito! Mwa ha ha!" + } + }, + "plasma_boss_ghetsis_2": { + "encounter": { + "1": "Vamos! Eu quero ver sua cara depois que você perder toda a esperança!" + }, + "victory": { + "1": "Meus cálculos... Não! Meus planos cuidadosos! O mundo deveria ser meu!" + }, + "defeat": { + "1": "Kyurem! Use Absofusion!" + } + }, + "flare_boss_lysandre_1": { + "encounter": { + "1": "Você está aqui para me deter? Mostre-me em batalha." + }, + "victory": { + "1": "Você está aqui para me deter. Mas eu peço que você espere." + }, + "defeat": { + "1": "Pokémon... não devem mais existir." + } + }, + "flare_boss_lysandre_2": { + "encounter": { + "1": "O futuro que você quer, ou o futuro que eu quero... Vamos ver qual é o mais merecedor, não é mesmo?" + }, + "victory": { + "1": "Uau!" + }, + "defeat": { + "1": "Tolos sem visão continuarão a poluir este belo mundo." + } + }, + "aether_boss_lusamine_1": { + "encounter": { + "1": "Você vai assustar minha fera querida! Parece que eu vou precisar te silenciar primeiro." + }, + "victory": { + "1": "Como... como você pode ser tão terrível!" + }, + "defeat": { + "1": "Aff..." + } + }, + "aether_boss_lusamine_2": { + "encounter": { + "1": "Por que você continua a me incomodar?! Estou cansada de você. Cansada até a alma!\n$Chega de papo furado... Com o poder de Nihilego, vou mostrar o quão errado você estava em vir aqui!" + }, + "victory": { + "1": "Aaauuuggghhhhhhhhh!!!" + }, + "defeat": { + "1": "Tudo o que eu quero é minha fera preciosa! Eu não me importo com nenhum de vocês!" + } + }, + "skull_boss_guzma_1": { + "encounter": { + "1": "O odiado chefe que te bate e te bate e nunca para...\n$É. O grande e mau Guzma está aqui!" + }, + "victory": { + "1": "Tss. Eu vou te bater um dia desses!" + }, + "defeat": { + "1": "E você veio até aqui só pra isso, né?" + } + }, + "skull_boss_guzma_2": { + "encounter": { + "1": "Não importa contra quem eu esteja, eu vou derrotá-los!\n$Isso é o que o grande e mau Guzma é!" + }, + "victory": { + "1": "Guzma!!! O que há de errado com você?!" + }, + "defeat": { + "1": "Vocês são tudo uns idiotas!" + } + }, + "macro_boss_rose_1": { + "encounter": { + "1": "Devo fornecer energia ilimitada para garantir a prosperidade eterna para todos...\n$É meu propósito, meu dever, meu destino!" + }, + "victory": { + "1": "Você ainda não entendeu, treinador...\n$Nós... Não, eu vou mudar o rumo da história!" + }, + "defeat": { + "1": "Você ainda não entende nada!" + } + }, + "macro_boss_rose_2": { + "encounter": { + "1": "Estou comprometido em resolver o problema de energia na região de Galar e, claro, em todo o mundo.\n$Minha experiência e conquistas que fizeram da Macro Cosmos um sucesso são a prova de que meus métodos funcionam.\n$Não pretendo mudar de ideia, mesmo que eu perca." + }, + "victory": { + "1": "Eu esqueci o quão incríveis são as batalhas Pokémon! Faz tanto tempo desde que eu batalhei...\n$Isso foi realmente satisfatório, eu aceito a derrota para esta batalha." + }, + "defeat": { + "1": "Eu suponho que deve parecer que estou fazendo algo terrível. Eu não espero que você entenda.\n$Mas eu devo fornecer à região de Galar energia ilimitada para garantir prosperidade eterna." + } + }, + "brock": { + "encounter": { + "1": "Minha especialidade em Pokémon do tipo Pedra vai te derrubar! Vamos lá!", + "2": "Minha vontade firme como pedra vai te sobrecarregar!", + "3": "Permita-me mostrar a verdadeira força dos meus Pokémon!" + }, + "victory": { + "1": "A força dos seus Pokémon superou minhas defesas de pedra!", + "2": "O mundo é enorme! Estou feliz por ter tido a chance de batalhar com você.", + "3": "Talvez eu deva voltar a perseguir meu sonho de ser Criador de Pokémon…" + }, + "defeat": { + "1": "A melhor defesa é um bom ataque!\nEssa é a minha maneira de fazer as coisas!", + "2": "Venha estudar rochas comigo da próxima vez para aprender melhor a combatê-las!", + "3": "Hah, todas as minhas viagens pelas regiões estão valendo a pena!" + } + }, + "misty": { + "encounter": { + "1": "Minha política é um ataque total com Pokémon do tipo Água!", + "2": "Oi, vou mostrar a força dos meus Pokémon aquáticos!", + "3": "Meu sonho era viajar e batalhar com treinadores poderosos…\nVocê será um desafio suficiente?" + }, + "victory": { + "1": "Você realmente é forte… Vou admitir que você é habilidoso…", + "1_female": "Você realmente é forte… Vou admitir que você é habilidosa…", + "2": "Hmm… Você sabe que só teve sorte, certo?!", + "3": "Uau, você é demais! Não acredito que me venceu!" + }, + "defeat": { + "1": "A poderosa Misty foi demais para você?", + "2": "Espero que você tenha visto as técnicas de natação elegantes dos meus Pokémon!", + "3": "Seus Pokémon não foram páreo para meus orgulhos e alegrias!" + } + }, + "lt_surge": { + "encounter": { + "1": "Meus Pokémon Elétricos me salvaram durante a guerra! Vou te mostrar como!", + "2": "Em sentido! Vou te chocar até você se render!", + "3": "Vou te eletrizar como faço com todos os meus inimigos na batalha!" + }, + "victory": { + "1": "Whoa! Seu time é de verdade, garoto!", + "1_female": "Whoa! Seu time é de verdade, garota!", + "2": "Uau, você é forte! Até meus truques elétricos perderam para você.", + "3": "Isso foi uma derrota absolutamente chocante!" + }, + "defeat": { + "1": "Oh sim! Quando se trata de Pokémon do tipo Elétrico, sou o número um do mundo!", + "2": "Hahaha! Foi uma batalha eletrizante, garoto!", + "2_female": "Hahaha! Foi uma batalha eletrizante, garota!", + "3": "Uma batalha de Pokémon é guerra, e eu te mostrei combate em primeira mão!" + } + }, + "erika": { + "encounter": { + "1": "Ah, o tempo está adorável aqui…\nOh, uma batalha? Muito bem então.", + "2": "Minhas habilidades de batalha Pokémon rivalizam com minhas habilidades de arranjo de flores.", + "3": "Oh, espero que o aroma agradável dos meus Pokémon não me faça dormir de novo…", + "4": "Ver flores em um jardim é tão calmante." + }, + "victory": { + "1": "Oh! Eu concedo a derrota.", + "2": "Aquela partida foi muito agradável.", + "3": "Ah, parece que perdi…", + "4": "Oh, meu Deus." + }, + "defeat": { + "1": "Tinha medo de adormecer…", + "2": "Oh, meu Deus, parece que meus Pokémon de Grama te dominaram.", + "3": "Essa batalha foi uma experiência tão calmante.", + "4": "Oh… É só isso?" + } + }, + "janine": { + "encounter": { + "1": "Estou dominando a arte dos ataques venenosos.\nVou lutar com você hoje!", + "2": "Meu pai confia que posso me defender.\nVou provar que ele está certo!", + "3": "Minhas técnicas de ninja só perdem para as do meu pai!\nVocê consegue acompanhar?" + }, + "victory": { + "1": "Ainda preciso de treinamento… Entendi.", + "2": "Sua técnica de batalha superou a minha.", + "3": "Vou me aplicar de verdade e melhorar minhas habilidades." + }, + "defeat": { + "1": "Hehe… o veneno drenou todas as suas forças para lutar.", + "2": "Ha! Você não teve chance contra minhas habilidades superiores de ninja!", + "3": "A fé do meu pai em mim não foi mal colocada." + } + }, + "sabrina": { + "encounter": { + "1": "Através da minha habilidade psíquica, tive uma visão da sua chegada!", + "2": "Não gosto de lutar, mas se você quiser, vou mostrar meus poderes!", + "3": "Posso sentir grande ambição em você. Vou ver se não é infundada." + }, + "victory": { + "1": "Seu poder… Ele supera o que eu previa…", + "2": "Não consegui prever seu poder com precisão.", + "3": "Mesmo com meus imensos poderes psíquicos, não consigo sentir outro tão forte quanto você." + }, + "defeat": { + "1": "Essa vitória… É exatamente como previ nas minhas visões!", + "2": "Talvez fosse outra pessoa que eu sentisse um grande desejo…", + "3": "Aprimore suas habilidades antes de entrar em batalha precipitadamente.\nVocê nunca sabe o que o futuro pode reservar se fizer isso…" + } + }, + "blaine": { + "encounter": { + "1": "Hah! Espero que tenha trazido uma Cura de Queimadura!", + "2": "Meus Pokémon de Fogo vão incinerar todos os desafiantes!", + "3": "Prepare-se para brincar com fogo!" + }, + "victory": { + "1": "Queimei até não restar nada! Nem cinzas sobraram!", + "2": "Não acendi as chamas alto o suficiente?", + "3": "Estou completamente exausto… Mas isso faz minha motivação para melhorar queimar ainda mais!" + }, + "defeat": { + "1": "Meu inferno ardente não pode ser apagado!", + "2": "Meus Pokémon foram fortalecidos com o calor desta vitória!", + "3": "Hah! Minha paixão queima mais do que a sua!" + } + }, + "giovanni": { + "encounter": { + "1": "Eu, o líder da Equipe Rocket, vou te fazer sentir um mundo de dor!", + "2": "Meu treinamento aqui será vital antes de enfrentar meus antigos associados novamente.", + "3": "Não acho que você está preparado para o nível de fracasso que está prestes a experimentar!", + "3_female": "Não acho que você está preparada para o nível de fracasso que está prestes a experimentar!" + }, + "victory": { + "1": "O QUE! Eu, perder?! Não tenho nada a dizer a você!", + "2": "Hmm… Você nunca entenderia o que quero alcançar.", + "3": "Esta derrota está apenas adiando o inevitável.\nVou ressurgir a Equipe Rocket das cinzas a tempo." + }, + "defeat": { + "1": "Não ser capaz de medir sua própria força mostra que você ainda é apenas uma criança.", + "2": "Não tente interferir comigo novamente.", + "3": "Espero que entenda o quão tolo foi me desafiar." + } + }, + "roxanne": { + "encounter": { + "1": "Você poderia gentilmente demonstrar como batalha?", + "2": "Você pode aprender muitas coisas batalhando com muitos treinadores.", + "3": "Oh, você me pegou estrategizando.\nGostaria de batalhar?" + }, + "victory": { + "1": "Oh, parece que perdi.\nEu entendo.", + "2": "Parece que ainda tenho muito mais a aprender quando se trata de batalhas.", + "3": "Vou levar o que aprendi aqui hoje a sério." + }, + "defeat": { + "1": "Aprendi muitas coisas com nossa batalha.\nEspero que você também tenha aprendido.", + "2": "Espero batalhar com você novamente.\nEspero que use o que aprendeu aqui.", + "3": "Venci devido a tudo o que aprendi." + } + }, + "brawly": { + "encounter": { + "1": "Oh cara, um desafiante!\nVamos ver o que você pode fazer!", + "1_female": "Oh cara, uma desafiante!\nVamos ver o que você pode fazer!", + "2": "Você parece uma grande onda.\nVamos batalhar!", + "3": "Hora de criar uma tempestade!\nVamos!" + }, + "victory": { + "1": "Uau, você me derrotou!", + "2": "Você surfou minha onda e me derrubou!", + "3": "Sinto-me perdido na Caverna Granito!" + }, + "defeat": { + "1": "Haha, eu surfei a grande onda!\nDesafie-me novamente algum dia.", + "2": "Surfe comigo novamente algum dia!", + "3": "Assim como as marés vão e vêm, espero que você volte para me desafiar novamente." + } + }, + "wattson": { + "encounter": { + "1": "Hora de levar um choque!\nWahahahaha!", + "2": "Vou fazer faíscas voarem!\nWahahahaha!", + "3": "Espero que tenha trazido Cura de Paralisia!\nWahahahaha!" + }, + "victory": { + "1": "Parece que estou sem carga!\nWahahahaha!", + "2": "Você me aterrissou completamente!\nWahahahaha!", + "3": "Obrigado pela emoção!\nWahahahaha!" + }, + "defeat": { + "1": "Você está totalmente carregado agora!\nWahahahaha!", + "1_female": "Você está totalmente carregada agora!\nWahahahaha!", + "2": "Espero ver você faíscando em batalhas futuras!\nWahahahaha!", + "3": "Wahahahaha! Que batalha eletrizante!" + } + }, + "flannery": { + "encounter": { + "1": "Meus Pokémon de fogo estão prontos para queimar a concorrência!\nVamos nessa!", + "2": "Prepare-se para sentir o calor da minha determinação!\nNão vou segurar nada!", + "3": "Minhas habilidades vão incinerar você!\nPrepare-se para a batalha mais quente da sua vida!" + }, + "victory": { + "1": "Essa derrota só faz minha determinação queimar mais!", + "2": "Essa perda não apagará minhas chamas!\nEstarei de volta mais forte!", + "3": "Vou usar essa experiência para reacender meu espírito competitivo!" + }, + "defeat": { + "1": "Minhas chamas nunca se apagarão!\nSou muito apaixonada por isso!", + "2": "Você foi incrível!\nVamos fazer isso de novo algum dia!", + "3": "Que batalha ardente!\nMal posso esperar pela próxima!" + } + }, + "norman": { + "encounter": { + "1": "Você está pronto para enfrentar a força pura do meu time?\nVou te mostrar o poder do equilíbrio!", + "2": "Minha experiência em batalha vai fazer você suar!\nPrepare-se!", + "3": "Treinei meu time rigorosamente.\nVamos ver se você consegue igualar!" + }, + "victory": { + "1": "Parece que subestimei você.\nFoi uma batalha dura.", + "2": "Você é forte, mas ainda há muito para aprender.", + "3": "Essa derrota não abalará minha determinação.\nEstarei de volta mais forte!" + }, + "defeat": { + "1": "Você lutou bravamente!\nEspero batalhar com você novamente.", + "2": "Sua força é incrível!\nNão posso esperar pela nossa próxima batalha.", + "3": "Foi uma honra batalhar com você!\nAté a próxima!" + } + }, + "winona": { + "encounter": { + "1": "Tenho sobrevoado os céus em busca de presas...\nE você é meu alvo!", + "2": "Não importa como será nossa batalha, meus Pokémon Voadores e eu triunfaremos com graça. Vamos batalhar!", + "3": "Espero que você não tenha medo de altura.\nVamos subir!" + }, + "victory": { + "1": "Você é o primeiro Treinador que vejo com mais graça do que eu.\nJogou excelentemente.", + "1_female": "Você é a primeira Treinadora que vejo com mais graça do que eu.\nJogou excelentemente.", + "2": "Oh, meus Pokémon Voadores despencaram!\nMuito bem.", + "3": "Embora eu tenha caído, meus Pokémon continuarão a voar!" + }, + "defeat": { + "1": "Meus Pokémon Voadores e eu sempre dançaremos com elegância!", + "2": "Espero que tenha gostado do nosso show.\nNossa dança graciosa terminou.", + "3": "Você não quer ver nossa coreografia elegante novamente?" + } + }, + "tate": { + "encounter": { + "1": "Hehehe... Ficou surpreso de me ver sem minha irmã?", + "1_female": "Hehehe... Ficou surpresa de me ver sem minha irmã?", + "2": "Posso ver o que você está pensando...\nVocê quer batalhar!", + "3": "Como você pode derrotar alguém...\nQue sabe todos os seus movimentos?" + }, + "victory": { + "1": "Não pode ser ajudado...\nSinto falta da Liza...", + "2": "Seu vínculo com seus Pokémon era mais forte que o meu.", + "3": "Se eu estivesse com Liza, teríamos vencido.\nConseguimos completar os pensamentos um do outro!" + }, + "defeat": { + "1": "Meus Pokémon e eu somos superiores!", + "2": "Se você não consegue nem me derrotar, nunca será capaz de derrotar Liza também.", + "3": "Tudo graças ao meu treinamento rigoroso com Liza.\nPosso me tornar um com os Pokémon." + } + }, + "liza": { + "encounter": { + "1": "Fufufu... Ficou surpreso de me ver sem meu irmão?", + "1_female": "Fufufu... Ficou surpresa de me ver sem meu irmão?", + "2": "Posso determinar o que você deseja...\nVocê quer batalhar, não quer?", + "3": "Como você pode derrotar alguém...\nQue é um com seus Pokémon?" + }, + "victory": { + "1": "Não pode ser ajudado...\nSinto falta do Tate...", + "2": "Seu vínculo com seus Pokémon...\nÉ mais forte que o meu.", + "3": "Se eu estivesse com Tate, teríamos vencido.\nPodemos terminar as frases um do outro!" + }, + "defeat": { + "1": "Meus Pokémon e eu somos vitoriosos.", + "2": "Se você não consegue nem me derrotar, nunca será capaz de derrotar Tate também.", + "3": "Tudo graças ao meu treinamento rigoroso com Tate.\nPosso me sincronizar com meus Pokémon." + } + }, + "juan": { + "encounter": { + "1": "Agora não é hora de agir timidamente.\nVamos batalhar!", + "2": "Ahahaha, você será testemunha da minha arte com Pokémon de Água!", + "3": "Um tufão se aproxima!\nVocê será capaz de me testar?", + "4": "Por favor, você será testemunha da nossa arte.\nUma grande ilusão de água esculpida por meus Pokémon e por mim!" + }, + "victory": { + "1": "Você pode ser um gênio que pode enfrentar Wallace!", + "2": "Eu me concentrei na elegância enquanto você treinava.\nÉ natural que você me derrotasse.", + "3": "Ahahaha!\nMuito bem, você venceu desta vez.", + "4": "De você, sinto o brilho brilhante da habilidade que superará tudo." + }, + "defeat": { + "1": "Meus Pokémon e eu esculpimos uma ilusão de Água e saímos vitoriosos.", + "2": "Ahahaha, eu venci, e você perdeu.", + "3": "Posso emprestar meu traje? Pode te ajudar a batalhar!\nAhahaha, estou brincando!", + "4": "Eu sou o vencedor! O que quer dizer, você perdeu." + } + }, + "crasher_wake": { + "encounter": { + "1": "Crash! Crash! Cuidado!\nDemolidor Wake… está… aqui!", + "2": "Crash! Crash! Demolidor Wake!", + "3": "Sou a onda de poder que vai te lavar!" + }, + "victory": { + "1": "Isso coloca um sorriso no meu rosto!\nGuhahaha! Foi uma explosão!", + "2": "Hunwah! Acabou e terminou!\nComo vou dizer isso...\nQuero mais! Queria batalhar muito mais!", + "3": "O QUÊ?!" + }, + "defeat": { + "1": "Siiiiim! Isso mesmo!", + "2": "Eu venci, mas quero mais! Queria batalhar muito mais!", + "3": "Até logo!" + } + }, + "falkner": { + "encounter": { + "1": "Vou mostrar o verdadeiro poder dos magníficos Pokémon pássaros!", + "2": "Ventos, fiquem comigo!", + "3": "Pai! Espero que esteja vendo minha batalha de cima!" + }, + "victory": { + "1": "Eu entendo... Vou sair graciosamente.", + "2": "Uma derrota é uma derrota. Você é realmente forte.", + "3": "...Droga! Sim, eu perdi." + }, + "defeat": { + "1": "Pai! Venci com seus amados Pokémon pássaros...", + "2": "Pokémon pássaros são os melhores afinal!", + "3": "Sinto que estou alcançando meu pai!" + } + }, + "nessa": { + "encounter": { + "1": "Não importa que tipo de plano sua mente refinada possa estar tramando, meu parceiro e eu vamos afundá-lo.", + "1_female": "Não importa que tipo de plano sua mente refinada possa estar tramando, meu parceiro e eu vamos afundá-la.", + "2": "Não estou aqui para conversar. Estou aqui para vencer!", + "3": "Este é um pequeno presente dos meus Pokémon... Espero que você possa recebê-lo!", + "3_female": "Este é um pequeno presente dos meus Pokémon... Espero que você possa recebê-la!" + }, + "victory": { + "1": "Você e seus Pokémon são demais...", + "2": "Como...? Como isso pode ser?!", + "3": "Fui totalmente arrastada!" + }, + "defeat": { + "1": "A onda furiosa ataca novamente!", + "2": "Hora de surfar na onda da vitória!", + "3": "Hehe!" + } + }, + "melony": { + "encounter": { + "1": "Não vou me segurar!", + "2": "Tudo bem, acho que devemos começar.", + "3": "Vou congelar você completamente!" + }, + "victory": { + "1": "Você... Você é muito bom, hein?", + "1_female": "Você... Você é muito boa, hein?", + "2": "Se você encontrar Gordie por aí, certifique-se de dar uma boa surra nele, ok?", + "3": "Acho que você levou a quebra de gelo um pouco literalmente demais..." + }, + "defeat": { + "1": "Agora você vê como as batalhas podem ser severas?", + "2": "Hee! Parece que ganhei de novo!", + "3": "Você está segurando?" + } + }, + "marlon": { + "encounter": { + "1": "Você parece forte! Vamos começar!", + "2": "Sou forte como a amplitude do oceano. Você vai ser varrido, com certeza.", + "2_female": "Sou forte como a amplitude do oceano. Você vai ser varrida, com certeza.", + "3": "Oh ho, então estou enfrentando você! Isso é fora do comum." + }, + "victory": { + "1": "Você foi incrível! Está criando alguns Pokémon incríveis. Você dominou a coisa de Treinador!", + "1_female": "Você foi incrível! Está criando alguns Pokémon incríveis. Você dominou a coisa de Treinadora!", + "2": "Você não apenas parece forte, você é forte de verdade! Eh, eu também fui varrido!", + "3": "Você é forte como uma onda impressionante!" + }, + "defeat": { + "1": "Você é forte, mas não é o suficiente para mudar o mar, ok!", + "2": "Hee! Parece que ganhei de novo!", + "3": "Doce, doce vitória!" + } + }, + "shauntal": { + "encounter": { + "1": "Com licença. Você é um desafiante, certo?\nSou a usuária de Pokémon do tipo Fantasma da Elite dos Quatro, Shauntal, e serei sua oponente.", + "1_female": "Com licença. Você é uma desafiante, certo?\nSou a usuária de Pokémon do tipo Fantasma da Elite dos Quatro, Shauntal, e serei sua oponente.", + "2": "Adoro escrever sobre Treinadores que vêm aqui e os Pokémon que treinam.\nPosso usar você e seus Pokémon como tema?", + "3": "Cada pessoa que trabalha com Pokémon tem uma história para contar.\nQue história está prestes a ser contada?" + }, + "victory": { + "1": "Uau. Estou sem palavras!", + "2": "D-desculpe! Primeiro, preciso me desculpar com meus Pokémon...\n\nLamento muito que você tenha tido uma experiência ruim por minha causa!", + "3": "Mesmo com isso, ainda sou uma da Elite dos Quatro!" + }, + "defeat": { + "1": "Hehe.", + "2": "Isso me deu um excelente material para meu próximo romance!", + "3": "E assim, outra história termina..." + } + }, + "marshal": { + "encounter": { + "1": "Meu mentor, Alder, vê seu potencial como Treinador e está interessado em você.\nMeu objetivo é testá-lo—levar você aos limites da sua força. Kiai!", + "1_female": "Meu mentor, Alder, vê seu potencial como Treinadora e está interessado em você.\nMeu objetivo é testá-la—levar você aos limites da sua força. Kiai!", + "2": "Vitória, vitória decisiva, é meu objetivo! Desafiante, aqui vou eu!", + "3": "Em mim mesmo, procuro desenvolver a força de um lutador e eliminar qualquer fraqueza em mim!\nPrevalecendo com a força de minhas convicções!" + }, + "victory": { + "1": "Ufa! Bem feito!", + "2": "À medida que suas batalhas continuarem, mire em alturas ainda maiores!", + "3": "A força demonstrada por você e seus Pokémon me impressionou profundamente..." + }, + "defeat": { + "1": "Hmm.", + "2": "Isso foi uma boa batalha.", + "3": "Haaah! Haaah! Haiyaaaah!" + } + }, + "cheren": { + "encounter": { + "1": "Você me lembra um velho amigo. Isso me deixa animado para essa batalha Pokémon!", + "2": "As batalhas Pokémon não têm sentido se você não pensa por que você batalha.\nOu melhor, isso torna as batalhas junto com Pokémon sem sentido.", + "3": "Meu nome é Cheren! Sou um Líder de Ginásio e professor! Prazer em conhecê-lo.", + "3_female": "Meu nome é Cheren! Sou um Líder de Ginásio e professor! Prazer em conhecê-la." + }, + "victory": { + "1": "Obrigado! Vi o que estava faltando em mim.", + "2": "Obrigado! Sinto que vi um pouco do caminho em direção aos meus ideais.", + "3": "Hmm... Isso é problemático." + }, + "defeat": { + "1": "Como Líder de Ginásio, meu objetivo é ser um obstáculo para você superar.", + "2": "Tudo bem!", + "3": "Cheguei onde estou porque os Pokémon estavam ao meu lado.\nTalvez precisemos pensar por que os Pokémon nos ajudam, não em termos de Pokémon e Treinadores, mas como uma relação entre seres vivos." + } + }, + "chili": { + "encounter": { + "1": "Ihuuu! Hora de brincar com FOGO!! Sou o mais forte dos nossos irmãos!", + "1_female": "Yeeeeeooow! Hora de brincar com FOGO!! Eu sou o mais forte de nós irmãos!", + "2": "Ta-da! O incendiário do tipo Fogo Chili—sou eu—será seu oponente!", + "2_female": "Tcharan! O escaldante Chili tipo Fogo (sou eu) será seu oponente!", + "3": "Vou mostrar o que eu e meus tipos de Fogo podemos fazer!", + "3_female": "Vou te mostrar o que eu e meus ardentes tipo Fogo podemos fazer!" + }, + "victory": { + "1": "Você me pegou. Estou... queimado...", + "1_female": "Você me pegou. Eu estou… queimado… esgotado…", + "2": "Uau! Você está pegando fogo!", + "2_female": "Uau! Você tá pegando fogo!", + "3": "Ai! Você me pegou!" + }, + "defeat": { + "1": "Estou pegando fogo! Jogue comigo, e você se queimará!", + "1_female": "Estou pegando fogo! Brinque comigo e você vai se queimar!", + "2": "Quando você brinca com fogo, você se queima!", + "3": "Quero dizer, vamos lá, seu oponente era eu! Você não tinha chance!", + "3_female": "Quero dizer, fala sério, seu oponente era eu! Você não teve chance!" + } + }, + "cilan": { + "encounter": { + "1": "Nada pessoal... Sem ressentimentos... Eu e meus Pokémon do tipo Grama vamos...\nUm... Vamos batalhar, aconteça o que acontecer.", + "1_female": "Nada pessoal... Sem ressentimentos... Eu e meus Pokémon do tipo Grama vamos...\n$Hum... Nós iremos batalhar, aconteça o que acontecer.", + "2": "Então, hum, se você está bem comigo, vou, hum, colocar tudo o que tenho em ser, er, você sabe, seu oponente.", + "2_female": "Então, hum, se você estiver bem comigo, eu vou, hum, dar tudo o que tenho para ser, hum, você sabe, seu oponente.", + "3": "OK… Então, hum, eu sou o Cilan, gosto de Pokémon do tipo Grama.", + "3_female": "OK... Então, eu sou Cilan, eu gosto de Pokémon do tipo Grama." + }, + "victory": { + "1": "Er... Acabou agora?", + "1_female": "Er… Já acabou?", + "2": "…Que surpresa. Você é muito forte, não é?\nAcho que meus irmãos também não teriam sido capazes de te derrotar...", + "2_female": "…Que surpresa. Você é muito forte, não é? \n$Eu acho que meus irmãos também não conseguiriam derrotar você…", + "3": "…Huh. Parece que meu timing estava, hum, errado?" + }, + "defeat": { + "1": "Huh? Ganhei?", + "1_female": "Hein? Eu ganhei?", + "2": "Acho...\nSuponho que ganhei, porque competi com meus irmãos Chili e Cress, e todos conseguimos ficar mais fortes.", + "2_female": "Eu acho... \n$Eu acho que ganhei, porque eu estava competindo com meus irmãos Chili e Cress, e todos nós conseguimos ficar mais fortes.", + "3": "Foi... uma experiência bastante emocionante...", + "3_female": "Foi… foi uma experiência bastante emocionante…" + } + }, + "roark": { + "encounter": { + "1": "Preciso ver seu potencial como Treinador. E, vou precisar ver a dureza dos Pokémon que batalham com você!", + "1_female": "Preciso ver seu potencial como Treinadora. E, vou precisar ver a dureza dos Pokémon que batalham com você!", + "2": "Vamos lá! Estes são meus Pokémon de pedra, meu orgulho e alegria!", + "3": "Pokémon do tipo Pedra são simplesmente os melhores!", + "4": "Preciso ver seu potencial como Treinador. E, vou precisar ver a dureza dos Pokémon que batalham com você!", + "4_female": "Preciso ver seu potencial como Treinadora. E, vou precisar ver a dureza dos Pokémon que batalham com você!" + }, + "victory": { + "1": "O-o que? Isso não pode ser! Meus Pokémon fortificados!", + "2": "...Perdemos o controle. Da próxima vez, gostaria de desafiá-lo a uma corrida de escavação de fósseis no subsolo.", + "2_female": "...Perdemos o controle. Da próxima vez, gostaria de desafiá-la a uma corrida de escavação de fósseis no subsolo.", + "3": "Com habilidade como a sua, é natural que você vença.", + "4": "O-o que?! Não pode ser! Nem isso foi suficiente?", + "5": "Eu estraguei tudo." + }, + "defeat": { + "1": "Veja? Estou orgulhoso do meu estilo de batalha rochoso!", + "2": "Obrigado! A batalha me deu confiança de que talvez eu consiga vencer meu pai!", + "3": "Sinto como se tivesse acabado de quebrar uma pedra muito teimosa!" + } + }, + "morty": { + "encounter": { + "1": "Com um pouco mais, eu poderia ver um futuro em que encontro o Pokémon lendário.\nVocê vai me ajudar a alcançar esse nível!", + "2": "Dizem que um Pokémon com cores de arco-íris aparecerá diante de um Treinador verdadeiramente poderoso.\nAcreditei nessa história, então treinei secretamente aqui a vida toda. Como resultado, agora posso ver o que os outros não podem.\nVejo uma sombra da pessoa que fará o Pokémon aparecer.\nAcredito que essa pessoa sou eu! Você vai me ajudar a alcançar esse nível!", + "3": "Quer você escolha acreditar ou não, o poder místico existe.", + "4": "Você pode testemunhar os frutos do meu treinamento.", + "5": "Você deve fazer sua alma se tornar uma com a dos Pokémon. Você pode fazer isso?", + "6": "Diga, você quer fazer parte do meu treinamento?" + }, + "victory": { + "1": "Ainda não sou bom o suficiente...", + "2": "Eu vejo... Sua jornada o levou a lugares distantes e você testemunhou muito mais do que eu.\nEu invejo você por isso...", + "2_female": "Eu vejo... Sua jornada a levou a lugares distantes e você testemunhou muito mais do que eu.\nEu invejo você por isso...", + "3": "Como isso é possível...", + "4": "Não acho que nossos potenciais sejam tão diferentes.\nMas você parece ter algo mais do que isso... Que seja.", + "5": "Acho que preciso de mais treinamento.", + "6": "Isso é uma pena." + }, + "defeat": { + "1": "Eu me movi... mais um passo adiante.", + "2": "Fufufu...", + "3": "O-o que?! Não pode ser! Nem isso foi suficiente?", + "4": "Sinto como se tivesse acabado de quebrar uma pedra muito teimosa!", + "5": "Ahahahah!", + "6": "Eu sabia que venceria!" + } + }, + "crispin": { + "encounter": { + "1": "Quero vencer, então é exatamente isso que vou fazer!", + "2": "Eu batalho porque quero batalhar! E sabe de uma coisa? É assim que deve ser!" + }, + "victory": { + "1": "Queria vencer... mas perdi!", + "2": "Eu perdi... porque não consegui vencer!" + }, + "defeat": { + "1": "Ei, espere um segundo. Eu acabei de vencer? Acho que acabei de vencer! Que satisfação!", + "2": "Uou! Isso foi incrível!" + } + }, + "amarys": { + "encounter": { + "1": "Quero ser a pessoa a ajudar alguém em particular. Sendo assim, não posso me dar ao luxo de perder.\n... Nossa batalha começa agora." + }, + "victory": { + "1": "Eu sou... não o suficiente, eu vejo." + }, + "defeat": { + "1": "A vitória pertence a mim. Bem lutado." + } + }, + "lacey": { + "encounter": { + "1": "Vou enfrentar você com meu time usual como membro da Elite dos Quatro." + }, + "victory": { + "1": "Foi uma excelente batalha. Estou ansiosa para o próximo desafio." + }, + "defeat": { + "1": "Fufufu... Nada mal.\nDesafiantes que derrotam a Elite dos Quatro são dignos de notar." + } + }, + "drayton": { + "encounter": { + "1": "Cara, eu amo cadeiras. Você não ama cadeiras? Que salva-vidas.\n$Não entendo por que todo mundo não fica sentado o tempo todo. Ficar de pé é cansativo!" + }, + "victory": { + "1": "Acho que deveria ter esperado por isso!" + }, + "defeat": { + "1": "Heh heh! Não ligue para mim, só pegando uma vitória aqui. Entendo se você estiver chateado, mas não vá dar uma de Kieran comigo, OK?", + "1_female": "Heh heh! Não ligue para mim, só pegando uma vitória aqui. Entendo se você estiver chateada, mas não vá dar uma de Kieran comigo, OK?" + } + }, + "ramos": { + "encounter": { + "1": "Você gostou do jardim de diversão que fiz com todas essas plantas resistentes minhas?\n$A força delas é um sinal da minha força como jardineiro e Líder de Ginásio! Você tem certeza de que está pronto para enfrentar tudo isso?", + "1_female": "Você gostou do jardim de diversão que fiz com todas essas plantas resistentes minhas?\n$A força delas é um sinal da minha força como jardineiro e Líder de Ginásio! Você tem certeza de que está pronta para enfrentar tudo isso?" + }, + "victory": { + "1": "Você acredita nos seus Pokémon... E eles acreditam em você também... Foi uma boa batalha, broto." + }, + "defeat": { + "1": "Hohoho... De fato. Pequenas lâminas frágeis de grama conseguem quebrar até mesmo concreto." + } + }, + "viola": { + "encounter": { + "1": "Seja as lágrimas de frustração que seguem uma derrota ou o florescer da alegria que vem com a vitória…\n$Ambos são ótimos temas para minha câmera! Fantástico! Isso vai ser simplesmente fantástico!\n$Agora venha para cima de mim!", + "2": "Minha lente está sempre focada na vitória – não vou deixar nada estragar esta foto!" + }, + "victory": { + "1": "Você e seus Pokémon me mostraram uma nova profundidade de campo! Fantástico! Simplesmente fantástico!", + "2": "O mundo que você vê através de uma lente, e o mundo que você vê com um Pokémon ao seu lado…\n$O mesmo mundo pode parecer completamente diferente dependendo do seu ponto de vista." + }, + "defeat": { + "1": "A foto do momento da minha vitória vai ser um verdadeiro sucesso!", + "2": "Sim! Tirei ótimas fotos!" + } + }, + "candice": { + "encounter": { + "1": "Você quer desafiar a Candice? Com certeza! Eu estava esperando por alguém forte!\n$Mas devo te avisar, sou forte porque sei como focar.", + "2": "Pokémon, moda, romance… É tudo uma questão de foco!\n$Vou te mostrar exatamente o que quero dizer. Prepare-se para perder!" + }, + "victory": { + "1": "Devo dizer, estou aquecida para você! Posso até te admirar um pouco.", + "2": "Uau! Você é ótimo! Ganhou meu respeito!\n$Acho que seu foco e vontade nos derrubaram totalmente.", + "2_female": "Uau! Você é ótima! Ganhou meu respeito!\n$Acho que seu foco e vontade nos derrubaram totalmente." + }, + "defeat": { + "1": "Eu senti sua vontade de vencer, mas eu não perco!", + "2": "Viu? O foco da Candice! O foco dos meus Pokémon também é ótimo!" + } + }, + "gardenia": { + "encounter": { + "1": "Você tem uma aura vencedora. Então, de qualquer forma, isso vai ser divertido. Vamos ter nossa batalha!" + }, + "victory": { + "1": "Incrível! Você é muito bom, não é?", + "1_female": "Incrível! Você é muito boa, não é?" + }, + "defeat": { + "1": "Sim! Meus Pokémon e eu somos perfeitamente bons!" + } + }, + "aaron": { + "encounter": { + "1": "Ok! Deixe-me enfrentar você!" + }, + "victory": { + "1": "Batalhar é um assunto profundo e complexo..." + }, + "defeat": { + "1": "Vencer um membro da Elite dos Quatro não é fácil." + } + }, + "cress": { + "encounter": { + "1": "Isso mesmo! Serei eu e meus estimados tipos Água que você deve enfrentar na batalha!" + }, + "victory": { + "1": "Perder? Eu? Não acredito nisso." + }, + "defeat": { + "1": "Este é o resultado apropriado quando eu sou seu oponente." + } + }, + "allister": { + "encounter": { + "1": "Sou Allister.\nA-aqui... vou eu..." + }, + "victory": { + "1": "Quase perdi minha máscara de tanto choque... Isso foi…\n$Uau. Posso ver sua habilidade pelo que ela é." + }, + "defeat": { + "1": "I-isso foi incrível!" + } + }, + "clay": { + "encounter": { + "1": "Harrumph! Me deixou esperando, não foi, garoto? Tudo bem, hora de ver o que você pode fazer!", + "1_female": "Harrumph! Me deixou esperando, não foi, garota? Tudo bem, hora de ver o que você pode fazer!" + }, + "victory": { + "1": "Cara, como é bom dar tudo de si e ainda assim ser derrotado!" + }, + "defeat": { + "1": "O que importa é como você reage à derrota.\n$É por isso que as pessoas que usam a derrota como combustível para melhorar são duras." + } + }, + "kofu": { + "encounter": { + "1": "Vou te servir um prato completo de Pokémon do tipo Água! Mas não tente comê-los!" + }, + "victory": { + "1": "Vaultin' Veluza! Você é animado, não é! Um pouco ANIMADO DEMAIS, se me permite dizer!", + "1_female": "Vaultin' Veluza! Você é animada, não é! Um pouco ANIMADA DEMAIS, se me permite dizer!" + }, + "defeat": { + "1": "Volte para me ver novamente, ouviu?" + } + }, + "tulip": { + "encounter": { + "1": "Permita-me usar minhas habilidades para deixar seus lindos Pokémon ainda mais bonitos!" + }, + "victory": { + "1": "Sua força tem uma magia que não pode ser apagada." + }, + "defeat": { + "1": "Você sabe, na minha linha de trabalho, pessoas que carecem de talento em uma área ou outra frequentemente desaparecem rapidamente - nunca mais se ouve falar delas." + } + }, + "sidney": { + "encounter": { + "1": "Gostei desse olhar que você me deu. Acho que você vai ser um bom desafio.\n$Isso é ótimo! Parece muito bom! Vamos nessa!\n$Você e eu, vamos curtir uma batalha que só pode acontecer aqui!" + }, + "victory": { + "1": "E aí, gostou? Eu perdi! Mas foi divertido, então não importa." + }, + "defeat": { + "1": "Sem ressentimentos, beleza?" + } + }, + "phoebe": { + "encounter": { + "1": "Enquanto treinava, adquiri a habilidade de me comunicar com Pokémon do tipo Fantasma. \n$Sim, o vínculo que desenvolvi com os Pokémon é extremamente forte. \n$Então, vamos lá, tente ver se você consegue até mesmo causar dano aos meus Pokémon!" + }, + "victory": { + "1": "Ah, droga. Eu perdi." + }, + "defeat": { + "1": "Estou ansiosa para batalhar com você de novo algum dia!" + } + }, + "glacia": { + "encounter": { + "1": "Tudo o que vi foram desafios de Treinadores fracos e seus Pokémon. \n$E você? Ficaria extremamente satisfeita se pudesse dar tudo de mim contra você!" + }, + "victory": { + "1": "Você e seus Pokémon… Como seus espíritos queimam!\n$O calor consumido é esmagador. \n$Não é surpresa que minhas habilidades geladas falharam em te machucar." + }, + "defeat": { + "1": "Uma batalha intensamente apaixonada, sem dúvida." + } + }, + "drake": { + "encounter": { + "1": "Para nós, batalhar com Pokémon como parceiros, você sabe o que é necessário? Você sabe o que precisa? \n$Se não souber, nunca prevalecerá contra mim!" + }, + "victory": { + "1": "Excelente, deve-se dizer." + }, + "defeat": { + "1": "Dei meu máximo nessa batalha!" + } + }, + "wallace": { + "encounter": { + "1": "Há algo em você… Uma diferença na sua postura. \n$Acho que sinto isso em você. Agora, me mostre. Mostre-me o poder que você tem com seus Pokémon. \n$E eu, por minha vez, apresentarei uma performance de ilusões na água com meus Pokémon!" + }, + "victory": { + "1": "Bravo. Agora percebo sua autenticidade e magnificência como Treinador de Pokémon. \n$Tenho muita alegria em ter conhecido você e seus Pokémon. Você se mostrou digno.", + "1_female": "Bravo. Agora percebo sua autenticidade e magnificência como Treinadora de Pokémon. \n$Tenho muita alegria em ter conhecido você e seus Pokémon. Você se mostrou digna." + }, + "defeat": { + "1": "Uma grande ilusão!" + } + }, + "lorelei": { + "encounter": { + "1": "Ninguém me supera quando se trata de Pokémon gelados! Movimentos congelantes são poderosos!\n$Seus Pokémon estarão à minha mercê quando estiverem congelados! Hahaha! Está pronto?", + "1_female": "Ninguém me supera quando se trata de Pokémon gelados! Movimentos congelantes são poderosos!\n$Seus Pokémon estarão à minha mercê quando estiverem congelados! Hahaha! Está pronta?" + }, + "victory": { + "1": "Como ousa!" + }, + "defeat": { + "1": "Não há nada que você possa fazer quando está congelado.", + "1_female": "Não há nada que você possa fazer quando está congelada." + } + }, + "will": { + "encounter": { + "1": "Treinei por todo o mundo, tornando meus Pokémon psíquicos poderosos.\n$Eu só posso melhorar! Perder não é uma opção!" + }, + "victory": { + "1": "Eu… Eu não… acredito…" + }, + "defeat": { + "1": "Isso foi por pouco. Me pergunto o que está faltando em você." + } + }, + "malva": { + "encounter": { + "1": "Sinto que meu coração pode explodir em chamas. \n$Estou ardendo de ódio por você, pirralho!", + "1_female": "Sinto que meu coração pode explodir em chamas. \n$Estou ardendo de ódio por você, pirralha!" + }, + "victory": { + "1": "Que novidade… Um novo desafiador derrotou Malva!", + "1_female": "Que novidade… Uma nova desafiadora derrotou Malva!" + }, + "defeat": { + "1": "Estou encantada! Sim, encantada por poder esmagar você sob meu calcanhar." + } + }, + "hala": { + "encounter": { + "1": "O velho Hala está aqui para fazer você gritar!" + }, + "victory": { + "1": "Pude sentir o poder que você ganhou na sua jornada." + }, + "defeat": { + "1": "Haha! Que batalha deliciosa!" + } + }, + "molayne": { + "encounter": { + "1": "Dei a posição de capitão ao meu primo Sophocles, mas estou confiante na minha habilidade. \n$Minha força é como a de uma supernova!" + }, + "victory": { + "1": "Certamente encontrei um Treinador interessante para enfrentar!", + "1_female": "Certamente encontrei uma Treinadora interessante para enfrentar!" + }, + "defeat": { + "1": "Ahaha. Que batalha interessante." + } + }, + "rika": { + "encounter": { + "1": "Eu diria que vou pegar leve com você, mas… estaria mentindo! Pense rápido!" + }, + "victory": { + "1": "Nada mal, garoto.", + "1_female": "Nada mal, garota." + }, + "defeat": { + "1": "Nahahaha! Você realmente é algo mais, garoto!", + "1_female": "Nahahaha! Você realmente é algo mais, garota!" + } + }, + "bruno": { + "encounter": { + "1": "Nós vamos te triturar com nosso poder superior! Hoo hah!" + }, + "victory": { + "1": "Por quê? Como eu poderia perder?" + }, + "defeat": { + "1": "Você pode me desafiar o quanto quiser, mas os resultados nunca vão mudar!" + } + }, + "bugsy": { + "encounter": { + "1": "Sou Bugsy! Eu nunca perco quando se trata de Pokémon do tipo Inseto!" + }, + "victory": { + "1": "Uau, incrível! Você é um especialista em Pokémon!\nMinha pesquisa ainda não está completa. OK, você venceu.", + "1_female": "Uau, incrível! Você é uma especialista em Pokémon!\nMinha pesquisa ainda não está completa. OK, você venceu." + }, + "defeat": { + "1": "Obrigado! Graças à nossa batalha, eu também pude fazer progressos na minha pesquisa!" + } + }, + "koga": { + "encounter": { + "1": "Fwahahahaha! Pokémon não são apenas sobre força bruta--você verá em breve!" + }, + "victory": { + "1": "Ah! Você provou seu valor!" + }, + "defeat": { + "1": "Você aprendeu a temer as técnicas do ninja?" + } + }, + "bertha": { + "encounter": { + "1": "Bem, você mostraria a esta velha senhora o quanto aprendeu?" + }, + "victory": { + "1": "Bem! Querida criança, devo dizer, isso foi muito impressionante. \n$Seus Pokémon acreditaram em você e fizeram o melhor para te dar a vitória. \n$Mesmo tendo perdido, me encontro com esse sorriso bobo!" + }, + "defeat": { + "1": "Hahahahah! Parece que esta velha senhora ganhou!" + } + }, + "lenora": { + "encounter": { + "1": "Bem, desafiador, vou pesquisar como você batalha com os Pokémon que criou com tanto carinho!", + "1_female": "Bem, desafiadora, vou pesquisar como você batalha com os Pokémon que criou com tanto carinho!" + }, + "victory": { + "1": "Minha teoria sobre você estava correta. Você é mais do que talentoso… Você é motivado! Eu te saúdo!", + "1_female": "Minha teoria sobre você estava correta. Você é mais do que talentosa… Você é motivada! Eu te saúdo!" + }, + "defeat": { + "1": "Ah ha ha! Se você perder, certifique-se de analisar o porquê e use esse conhecimento na próxima batalha!" + } + }, + "siebold": { + "encounter": { + "1": "Enquanto eu estiver vivo, continuarei em busca da culinária suprema... e dos oponentes mais fortes em batalha!" + }, + "victory": { + "1": "Guardarei minha memória de você e seus Pokémon para sempre em meu coração." + }, + "defeat": { + "1": "Nossa batalha Pokémon foi como alimento para minha alma. Isso vai me manter em frente. \n$É assim que vou prestar meus respeitos a você por dar tudo de si na batalha!" + } + }, + "roxie": { + "encounter": { + "1": "Prepare-se! Vou arrancar algum senso de você!" + }, + "victory": { + "1": "Selvagem! Sua razão já é mais tóxica que a minha!" + }, + "defeat": { + "1": "Ei, vamos lá! Seja sério! Você tem que dar mais de si!", + "1_female": "Ei, vamos lá! Seja séria! Você tem que dar mais de si!" + } + }, + "olivia": { + "encounter": { + "1": "Não precisa de introdução aqui. Hora de batalhar comigo, Olivia!" + }, + "victory": { + "1": "Realmente encantador… Tanto você quanto seus Pokémon…" + }, + "defeat": { + "1": "Mmm-hmm." + } + }, + "poppy": { + "encounter": { + "1": "Oooh! Você quer ter uma batalha Pokémon comigo?" + }, + "victory": { + "1": "Uagh?! Mmmuuuggghhh…" + }, + "defeat": { + "1": "Yaaay! Eu consegui! Eu der-ro-tei você! Você pode vir para… Para… Uma revanche? \n$Venha para uma revanche quando quiser!" + } + }, + "agatha": { + "encounter": { + "1": "Pokémon são para batalhas! Vou te mostrar como um verdadeiro Treinador batalha!" + }, + "victory": { + "1": "Oh meu! Você é algo especial, criança!" + }, + "defeat": { + "1": "Bahaha. É assim que uma batalha adequada é feita!" + } + }, + "flint": { + "encounter": { + "1": "Espero que você esteja aquecido, porque aqui vem o Big Bang!", + "1_female": "Espero que você esteja aquecida, porque aqui vem o Big Bang!" + }, + "victory": { + "1": "Incrível! Seus movimentos são tão quentes que fazem os meus parecerem mornos!" + }, + "defeat": { + "1": "Huh? Isso é tudo? Acho que você precisa de um pouco mais de paixão." + } + }, + "grimsley": { + "encounter": { + "1": "O vencedor leva tudo, e não sobra nada para o perdedor." + }, + "victory": { + "1": "Quando se perde, perde-se tudo… A próxima coisa que vou procurar será a vitória, também!" + }, + "defeat": { + "1": "Se alguém vence, a pessoa que lutou contra essa pessoa perde." + } + }, + "caitlin": { + "encounter": { + "1": "Sou eu que apareci quando a flor se abriu. Você que estava esperando…\n$Você parece um Treinador de Pokémon com força refinada e bondade profunda. \n$O que eu procuro no meu oponente é uma força soberba… \n$Por favor, libere seu poder ao máximo!", + "1_female": "Sou eu que apareci quando a flor se abriu. Você que estava esperando…\n$Você parece uma Treinadora de Pokémon com força refinada e bondade profunda. \n$O que eu procuro no meu oponente é uma força soberba… \n$Por favor, libere seu poder ao máximo!" + }, + "victory": { + "1": "Meus Pokémon e eu aprendemos muito! Agradeço a você." + }, + "defeat": { + "1": "Aspiro a reivindicar a vitória com elegância e graça." + } + }, + "diantha": { + "encounter": { + "1": "Batalhar contra você e seus Pokémon, todos vocês cheios de esperança para o futuro… \n$Honestamente, isso apenas me enche da energia que preciso para continuar enfrentando cada novo dia! Sim!" + }, + "victory": { + "1": "Testemunhar os espíritos nobres de você e seus Pokémon em batalha realmente tocou meu coração…" + }, + "defeat": { + "1": "Oh, fantástico! O que achou? Minha equipe foi bem legal, né?" + } + }, + "wikstrom": { + "encounter": { + "1": "Bem encontrado, jovem desafiador! Verdadeiramente sou a lâmina famosa de aço endurecido, Duque Wikstrom! \n$Que a batalha comece! En garde!", + "1_female": "Bem encontrado, jovem desafiadora! Verdadeiramente sou a lâmina famosa de aço endurecido, Duque Wikstrom! \n$Que a batalha comece! En garde!" + }, + "victory": { + "1": "Glorioso! A confiança que você compartilha com seu honrado Pokémon supera até mesmo a minha!", + "1_female": "Gloriosa! A confiança que você compartilha com seu honrado Pokémon supera até mesmo a minha!" + }, + "defeat": { + "1": "Que tipo de magia é essa? Meu coração bate incessantemente no meu peito! \n$Vencer contra um oponente tão digno dá asas à minha alma--assim eu voo!", + "1_female": "Que tipo de magia é essa? Meu coração bate incessantemente no meu peito! \n$Vencer contra uma oponente tão digna dá asas à minha alma--assim eu voo!" + } + }, + "acerola": { + "encounter": { + "1": "Batalhar é simplesmente divertido! Vamos lá, eu posso te derrotar!" + }, + "victory": { + "1": "Eu… Estou sem palavras! Como você conseguiu?!" + }, + "defeat": { + "1": "Ehaha! Que vitória incrível!" + } + }, + "larry_elite": { + "encounter": { + "1": "Olá… Sou eu, Larry.\n$Eu também sou membro da Elite dos Quatro, sim… Infelizmente para mim." + }, + "victory": { + "1": "Bem, isso tirou o vento debaixo das nossas asas…" + }, + "defeat": { + "1": "É hora de uma reunião com o chefe." + } + }, + "lance": { + "encounter": { + "1": "Estive esperando por você. Permita-me testar suas habilidades.", + "2": "Achei que você conseguiria chegar tão longe. Vamos começar." + }, + "victory": { + "1": "Você me pegou. Você é magnífico!", + "1_female": "Você me pegou. Você é magnífica!", + "2": "Nunca esperei que outro Treinador me derrotasse… Estou surpreso.", + "2_female": "Nunca esperei que outra Treinadora me derrotasse… Estou surpreso." + }, + "defeat": { + "1": "Isso foi por pouco. Quer tentar de novo?", + "2": "Não é que você seja fraco. Não se incomode com isso.", + "2_female": "Não é que você seja fraca. Não se incomode com isso." + } + }, + "karen": { + "encounter": { + "1": "Eu sou Karen. Você gostaria de um duelo com meus Pokémon do tipo Sombrio?", + "2": "Sou diferente daqueles que você já conheceu.", + "3": "Você montou uma equipe charmosa. Nossa batalha deve ser boa." + }, + "victory": { + "1": "Não! Eu não posso vencer. Como você ficou tão forte?", + "2": "Não me desviarei do meu caminho escolhido.", + "3": "O Campeão está ansioso para te conhecer." + }, + "defeat": { + "1": "Isso era o que eu esperava.", + "2": "Bem, isso foi relativamente divertido.", + "3": "Venha me visitar a qualquer momento." + } + }, + "milo": { + "encounter": { + "1": "Parece que você entende bem os Pokémon. \n$Isso vai ser uma batalha e tanto! \n$Vou ter que usar a Dynamax no meu Pokémon se eu quiser vencer!" + }, + "victory": { + "1": "O poder da Grama murchou… Que desafiador incrível!", + "1_female": "O poder da Grama murchou… Que desafiadora incrível!" + }, + "defeat": { + "1": "Isso realmente vai te deixar em choque e admiração." + } + }, + "lucian": { + "encounter": { + "1": "Só um momento, por favor. O livro que estou lendo está quase no clímax emocionante… \n$O herói obteve uma espada mística e está prestes a enfrentar sua prova final… Ah, tanto faz. \n$Já que você chegou tão longe, vou deixar isso de lado e batalhar com você. \n$Deixe-me ver se você alcançará tanta glória quanto o herói do meu livro!" + }, + "victory": { + "1": "Eu vejo… Parece que você me colocou em xeque-mate." + }, + "defeat": { + "1": "Tenho uma reputação a manter." + } + }, + "drasna": { + "encounter": { + "1": "Você deve ser um Treinador forte. Sim, bastante forte…\n$Isso é uma notícia maravilhosa! Enfrentar oponentes como você e sua equipe fará meus Pokémon crescerem como ervas daninhas!", + "1_female": "Você deve ser uma Treinadora forte. Sim, bastante forte…\n$Isso é uma notícia maravilhosa! Enfrentar oponentes como você e sua equipe fará meus Pokémon crescerem como ervas daninhas!" + }, + "victory": { + "1": "Oh, meu Deus. Isso foi uma batalha rápida… Espero que você volte novamente algum dia!" + }, + "defeat": { + "1": "Como isso é possível?" + } + }, + "kahili": { + "encounter": { + "1": "Então, aqui está você… Por que não vemos para quem os ventos favorecem hoje, você… ou eu?" + }, + "victory": { + "1": "É frustrante para mim como membro da Elite dos Quatro, mas parece que sua força é real." + }, + "defeat": { + "1": "Essa foi uma jogada de mestre!" + } + }, + "hassel": { + "encounter": { + "1": "Prepare-se para aprender em primeira mão como é a respiração ardente de uma batalha feroz!" + }, + "victory": { + "1": "A sorte sorriu para mim desta vez, mas… \n$Julgando pelo andamento da luta, quem sabe se serei tão sortudo na próxima vez." + }, + "defeat": { + "1": "Essa foi uma jogada de mestre!" + } + }, + "blue": { + "encounter": { + "1": "Você deve ser muito bom para chegar tão longe.", + "1_female": "Você deve ser muito boa para chegar tão longe." + }, + "victory": { + "1": "Só perdi para ele e agora para você… Ele? Hee, hee…" + }, + "defeat": { + "1": "Viu? Meu poder é o que me trouxe até aqui." + } + }, + "piers": { + "encounter": { + "1": "Prepare-se para uma mosh pit comigo e minha galera! Spikemuth, é hora de roquear!" + }, + "victory": { + "1": "Eu e minha equipe demos o nosso melhor. Vamos nos encontrar novamente para uma batalha algum dia…" + }, + "defeat": { + "1": "Minha garganta está desgastada de tanto gritar… Mas essa foi uma batalha empolgante!" + } + }, + "red": { + "encounter": { + "1": "…!" + }, + "victory": { + "1": "…?" + }, + "defeat": { + "1": "…!" + } + }, + "jasmine": { + "encounter": { + "1": "Oh… Seus Pokémon são impressionantes. Acho que vou gostar disso." + }, + "victory": { + "1": "Você é realmente forte. Vou ter que me esforçar muito mais também." + }, + "defeat": { + "1": "Eu nunca esperei ganhar." + } + }, + "lance_champion": { + "encounter": { + "1": "Ainda sou o Campeão. Não vou segurar nada." + }, + "victory": { + "1": "Esta é a emergência de um novo Campeão.", + "1_female": "Esta é a emergência de uma nova Campeã." + }, + "defeat": { + "1": "Defendi com sucesso meu Campeonato." + } + }, + "steven": { + "encounter": { + "1": "Diga-me… O que você viu na sua jornada com seus Pokémon? \n$O que você sentiu, encontrando tantos outros Treinadores por aí? \n$Viajar por esta terra rica… Isso despertou algo dentro de você? \n$Quero que você venha até mim com tudo o que aprendeu. \n$Meus Pokémon e eu responderemos com tudo o que sabemos!" + }, + "victory": { + "1": "Então eu, o Campeão, caio em derrota…" + }, + "defeat": { + "1": "Esse tempo foi bem gasto! Obrigado!" + } + }, + "cynthia": { + "encounter": { + "1": "Eu, Cynthia, aceito seu desafio! Não haverá nenhuma trégua da minha parte!" + }, + "victory": { + "1": "Não importa o quão divertida a batalha seja, ela sempre terminará algum dia…" + }, + "defeat": { + "1": "Mesmo que você perca, nunca perca o amor pelos Pokémon." + } + }, + "iris": { + "encounter": { + "1": "Sabe de uma coisa? Estou realmente ansiosa para ter batalhas sérias com Treinadores fortes! \n$Quero dizer, vamos lá! Os Treinadores que chegam aqui são Treinadores que desejam a vitória com todas as fibras do seu ser! \n$E eles estão batalhando ao lado de Pokémon que passaram por inúmeras batalhas difíceis! \n$Se eu batalhar com pessoas assim, não só eu ficarei mais forte, meus Pokémon também! \n$E nós vamos nos conhecer ainda melhor! OK! Prepare-se! \n$Sou Iris, a Campeã da Liga Pokémon, e vou te derrotar!" + }, + "victory": { + "1": "Aghhhh… Eu dei o meu melhor, mas nós perdemos…" + }, + "defeat": { + "1": "Yay! Nós vencemos!" + } + }, + "hau": { + "encounter": { + "1": "Eu me pergunto se um Treinador batalha de maneira diferente dependendo se ele é de uma região quente ou fria.\n$Vamos testar isso!" + }, + "victory": { + "1": "Isso foi incrível! Acho que entendi um pouco melhor seu estilo agora!" + }, + "defeat": { + "1": "Cara, essa foi uma batalha e tanto!" + } + }, + "geeta": { + "encounter": { + "1": "Decidi entrar na batalha mais uma vez. \n$Venha agora… Mostre-me os frutos do seu treinamento." + }, + "victory": { + "1": "Estou ansiosa para notícias de todas as suas conquistas!" + }, + "defeat": { + "1": "Qual o problema? Isso é tudo?" + } + }, + "nemona": { + "encounter": { + "1": "Yesss! Estou tão empolgada! Hora de soltar tudo!" + }, + "victory": { + "1": "Bem, isso foi ruim, mas ainda me diverti! Eu te pego na próxima!" + }, + "defeat": { + "1": "Bem, essa foi uma ótima batalha! Frutífera, com certeza." + } + }, + "leon": { + "encounter": { + "1": "Vamos ter um tempo absolutamente campeão!" + }, + "victory": { + "1": "Meu tempo como Campeão acabou… \n$Mas que tempo campeão foi! \n$Obrigado pela melhor batalha que já tive!" + }, + "defeat": { + "1": "Um tempo absolutamente campeão, foi!" + } + }, + "whitney": { + "encounter": { + "1": "Eai! Você não acha que os Pokémon são, tipo, super fofos?" + }, + "victory": { + "1": "Waaah! Waaah! Você é tão mau!", + "1_female": "Waaah! Waaah! Você é tão má!" + }, + "defeat": { + "1": "E é isso!" + } + }, + "chuck": { + "encounter": { + "1": "Hah! Você quer me desafiar? É corajoso ou apenas ignorante?", + "1_female": "Hah! Você quer me desafiar? É corajosa ou apenas ignorante?" + }, + "victory": { + "1": "Você é forte! Por favor, me faça seu aprendiz?" + }, + "defeat": { + "1": "Aí está. Você percebe o quanto sou mais poderoso que você?" + } + }, + "katy": { + "encounter": { + "1": "Não baixe a guarda, a menos que queira se ver jogado no chão!", + "1_female": "Não baixe a guarda, a menos que queira se ver jogada no chão!" + }, + "victory": { + "1": "Todos os meus adoráveis Pokémon caíram como moscas!" + }, + "defeat": { + "1": "Coma, meu adorável Vivillon!" + } + }, + "pryce": { + "encounter": { + "1": "A juventude sozinha não garante a vitória! Experiência é o que conta." + }, + "victory": { + "1": "Excelente! Isso foi perfeito. Tente não esquecer o que sente agora." + }, + "defeat": { + "1": "Exatamente como eu imaginei." + } + }, + "clair": { + "encounter": { + "1": "Você sabe quem eu sou? E ainda se atreve a me desafiar?" + }, + "victory": { + "1": "Eu me pergunto até onde você pode ir com seu nível de habilidade. Isso deve ser fascinante." + }, + "defeat": { + "1": "E é isso." + } + }, + "maylene": { + "encounter": { + "1": "Vim desafiá-lo agora e não vou segurar nada. \n$Por favor, prepare-se para a batalha!", + "1_female": "Vim desafiá-la agora e não vou segurar nada. \n$Por favor, prepare-se para a batalha!" + }, + "victory": { + "1": "Eu admito a derrota…" + }, + "defeat": { + "1": "Isso foi incrível." + } + }, + "fantina": { + "encounter": { + "1": "Você vai me desafiar, não é? Mas eu vou ganhar. \n$É o que a Líder do Ginásio de Hearthome faz, não?" + }, + "victory": { + "1": "Você é tão incrivelmente forte. Sei porque perdi." + }, + "defeat": { + "1": "Estou tão, tão, muito feliz!" + } + }, + "byron": { + "encounter": { + "1": "Treinador! Você é jovem, assim como meu filho, Roark. \n$Com mais Treinadores jovens assumindo o comando, o futuro dos Pokémon é brilhante! \n$Então, como uma parede para os jovens, aceitarei seu desafio!", + "1_female": "Treinadora! Você é jovem, assim como meu filho, Roark. \n$Com mais Treinadores jovens assumindo o comando, o futuro dos Pokémon é brilhante! \n$Então, como uma parede para os jovens, aceitarei seu desafio!" + }, + "victory": { + "1": "Hmm! Meus Pokémon robustos--derrotados!" + }, + "defeat": { + "1": "Gwahahaha! Como foram meus Pokémon robustos?!" + } + }, + "olympia": { + "encounter": { + "1": "Um costume antigo decidindo o destino de alguém. A batalha começa!" + }, + "victory": { + "1": "Crie seu próprio caminho. Não deixe nada te atrapalhar. Seu destino, seu futuro." + }, + "defeat": { + "1": "Nosso caminho está claro agora." + } + }, + "volkner": { + "encounter": { + "1": "Já que você chegou tão longe, deve ser bastante forte…\n$Espero que você seja o Treinador que me faça lembrar como é divertido batalhar!", + "1_female": "Já que você chegou tão longe, deve ser bastante forte…\n$Espero que você seja a Treinadora que me faça lembrar como é divertido batalhar!" + }, + "victory": { + "1": "Você me venceu…\n$Seu desejo e a maneira nobre como seus Pokémon batalharam por você… \n$Eu até me senti emocionado durante nossa luta. Foi uma batalha muito boa." + }, + "defeat": { + "1": "Não foi nada chocante…\n$Isso não é o que eu queria!" + } + }, + "burgh": { + "encounter": { + "1": "M'hm… Se eu ganhar esta batalha, sinto que posso desenhar um quadro diferente de qualquer outro. \n$OK! Posso ouvir minha musa da batalha claramente. Vamos direto ao ponto!", + "2": "Claro, estou realmente orgulhoso de todos os meus Pokémon! \n$Bem agora… Vamos direto ao ponto!" + }, + "victory": { + "1": "Acabou? Minha musa me abandonou?", + "2": "Hmm… Acabou! Você é incrível!" + }, + "defeat": { + "1": "Uau… É bonito de alguma forma, não é…", + "2": "Às vezes ouço as pessoas dizerem que foi uma vitória feia. \n$Acho que se você está dando o seu melhor, qualquer vitória é bonita." + } + }, + "elesa": { + "encounter": { + "1": "C'est fini! Quando tenho certeza disso, sinto um choque elétrico percorrer meu corpo! \n$Quero sentir essa sensação, então agora meus amados Pokémon vão fazer sua cabeça girar!" + }, + "victory": { + "1": "Eu queria fazer sua cabeça girar, mas você me surpreendeu." + }, + "defeat": { + "1": "Isso foi insatisfatório de alguma forma… Você dará tudo de si na próxima vez?" + } + }, + "skyla": { + "encounter": { + "1": "Finalmente é hora do confronto! Isso significa a batalha Pokémon que decide quem está no topo, certo? \n$Eu amo estar no topo! Porque você pode ver para sempre e sempre de lugares altos! \n$Então, que tal nós nos divertirmos?" + }, + "victory": { + "1": "Ser seu oponente na batalha é uma nova fonte de força para mim. Obrigada!" + }, + "defeat": { + "1": "Ganhar ou perder, você sempre ganha algo com uma batalha, certo?" + } + }, + "brycen": { + "encounter": { + "1": "Há também força em estar com outras pessoas e Pokémon. \n$Receber o apoio deles te fortalece. Vou te mostrar esse poder!" + }, + "victory": { + "1": "A maravilhosa combinação de você e seus Pokémon! Que amizade linda!" + }, + "defeat": { + "1": "Condições extremas realmente testam e treinam você!" + } + }, + "drayden": { + "encounter": { + "1": "O que eu quero encontrar é um jovem Treinador que possa me mostrar um futuro brilhante. \n$Vamos batalhar com tudo o que temos: sua habilidade, minha experiência e o amor com que criamos nossos Pokémon!" + }, + "victory": { + "1": "Esse sentimento intenso que me invade após uma derrota… Não sei como descrevê-lo." + }, + "defeat": { + "1": "Harrumph! Sei que sua habilidade é maior que isso!" + } + }, + "grant": { + "encounter": { + "1": "Só há uma coisa que desejo. \n$Que, superando um ao outro, encontremos um caminho para alturas ainda maiores." + }, + "victory": { + "1": "Você é uma parede que não consigo superar!" + }, + "defeat": { + "1": "Não desista. \n$Isso é tudo o que realmente importa. \n$As lições mais importantes da vida são simples." + } + }, + "korrina": { + "encounter": { + "1": "Hora da grande aparição de Lady Korrina!" + }, + "victory": { + "1": "É o seu próprio ser que permite que seus Pokémon evoluam!" + }, + "defeat": { + "1": "Que batalha explosiva!" + } + }, + "clemont": { + "encounter": { + "1": "Oh! Estou feliz por termos nos encontrado!" + }, + "victory": { + "1": "Sua paixão pela batalha me inspira!" + }, + "defeat": { + "1": "Parece que minha Máquina Treinadora-Crescer-Forte, Mach 2 está realmente funcionando!" + } + }, + "valerie": { + "encounter": { + "1": "Oh, se não é um jovem Treinador… É adorável conhecê-lo assim. \n$Então, suponho que você ganhou o direito a uma batalha, como recompensa por seus esforços. \n$Uma elusiva Fada pode parecer frágil como a brisa e delicado como uma flor, mas é forte.", + "1_female": "Oh, se não é uma jovem Treinadora… É adorável conhecê-la assim. \n$Então, suponho que você ganhou o direito a uma batalha, como recompensa por seus esforços. \n$Uma elusiva Fada pode parecer frágil como a brisa e delicado como uma flor, mas é forte." + }, + "victory": { + "1": "Espero que você encontre coisas para sorrir amanhã…" + }, + "defeat": { + "1": "Oh meu Deus, que pena…" + } + }, + "wulfric": { + "encounter": { + "1": "Sabe de uma coisa? Todos falamos muito sobre o que você aprende com as batalhas e os laços e tudo mais…\n$Mas realmente, eu só faço isso porque é divertido. \n$Quem se importa com o grandioso? Vamos batalhar!" + }, + "victory": { + "1": "Incrível! Sou duro como um iceberg, mas você me quebrou por completo!" + }, + "defeat": { + "1": "Lute comigo e é isso que acontece!" + } + }, + "kabu": { + "encounter": { + "1": "Todo Treinador e Pokémon treina duro em busca da vitória. \n$Mas isso significa que seu oponente também está se esforçando para vencer. \n$No final, a partida é decidida por qual lado é capaz de liberar seu verdadeiro potencial." + }, + "victory": { + "1": "Estou feliz por poder lutar com você hoje!" + }, + "defeat": { + "1": "É uma ótima maneira de sentir meu próprio crescimento!" + } + }, + "bea": { + "encounter": { + "1": "Você tem um espírito inabalável que não será movido, não importa como você seja atacado? \n$Acho que vou testar isso, certo?" + }, + "victory": { + "1": "Senti o espírito de luta de seus Pokémon enquanto você os liderava na batalha." + }, + "defeat": { + "1": "Essa foi a melhor partida que alguém poderia esperar." + } + }, + "opal": { + "encounter": { + "1": "Deixe-me ver como você e seu Pokémon parceiro se comportam!" + }, + "victory": { + "1": "Seu rosa ainda está faltando, mas você é um Treinador excelente com Pokémon excelentes.", + "1_female": "Seu rosa ainda está faltando, mas você é uma Treinadora excelente com Pokémon excelentes." + }, + "defeat": { + "1": "Muito ruim para você, eu acho." + } + }, + "bede": { + "encounter": { + "1": "Suponho que devo provar além de qualquer dúvida o quão patético você é e quão forte eu sou.", + "1_female": "Suponho que devo provar além de qualquer dúvida o quão patética você é e quão forte eu sou." + }, + "victory": { + "1": "Eu vejo… Bem, tudo bem. Eu não estava me esforçando muito de qualquer maneira." + }, + "defeat": { + "1": "Bom trabalho, eu suponho." + } + }, + "gordie": { + "encounter": { + "1": "Então, vamos acabar com isso." + }, + "victory": { + "1": "Eu só quero me enterrar em um buraco… Bem, acho que seria mais como cair daqui." + }, + "defeat": { + "1": "Batalhe como sempre faz, a vitória seguirá!" + } + }, + "marnie": { + "encounter": { + "1": "A verdade é que, quando tudo está dito e feito… Eu realmente só quero me tornar Campeã por mim mesma! \n$Então, não leve para o pessoal quando eu chutar seu traseiro!" + }, + "victory": { + "1": "OK, então eu perdi… Mas consegui ver muitos dos pontos bons de você e seus Pokémon!" + }, + "defeat": { + "1": "Espero que você tenha gostado das nossas táticas de batalha." + } + }, + "raihan": { + "encounter": { + "1": "Vou derrotar o Campeão, vencer todo o torneio e provar ao mundo o quão forte o grande Raihan realmente é!" + }, + "victory": { + "1": "Eu pareço bem mesmo quando perco. \n$É uma verdadeira maldição. \n$Acho que é hora de mais uma selfie!" + }, + "defeat": { + "1": "Vamos tirar uma selfie para lembrar disso." + } + }, + "brassius": { + "encounter": { + "1": "Pressuponho que você está pronto? Que nossa obra de arte colaborativa comece!", + "1_female": "Pressuponho que você está pronta? Que nossa obra de arte colaborativa comece!" + }, + "victory": { + "1": "Ahhh…avant-garde!" + }, + "defeat": { + "1": "Começarei uma nova peça imediatamente!" + } + }, + "iono": { + "encounter": { + "1": "Como você está se sentindo sobre esta batalha?\n$...\n$Vamos começar o show! Quão forte é o nosso desafiador? \n$Eu não sei! Vamos descobrir juntos!", + "1_female": "Como você está se sentindo sobre esta batalha?\n$...\n$Vamos começar o show! Quão forte é o nossa desafiadora? \n$Eu não sei! Vamos descobrir juntos!" + }, + "victory": { + "1": "Você é tão chamativo e brilhante quanto um Raio do Trovão de 10.000.000 volts, amigo!", + "1_female": "Você é tão chamativa e brilhante quanto um Raio do Trovão de 10.000.000 volts, amiga!" + }, + "defeat": { + "1": "Seus olhos são MEUS!" + } + }, + "larry": { + "encounter": { + "1": "Quando tudo está dito e feito, a simplicidade é mais forte." + }, + "victory": { + "1": "Uma porção de derrota, hein?" + }, + "defeat": { + "1": "Vou encerrar o dia." + } + }, + "ryme": { + "encounter": { + "1": "Vamos lá, baby! Me agite até os ossos!" + }, + "victory": { + "1": "Você é legal, meu amigo, você move minha ALMA!", + "1_female": "Você é legal, minha amiga, você move minha ALMA!" + }, + "defeat": { + "1": "Até mais, baby!" + } + }, + "grusha": { + "encounter": { + "1": "Tudo o que preciso fazer é garantir que o poder do meu Pokémon te arrependa até os ossos!" + }, + "victory": { + "1": "Sua paixão ardente... Eu meio que gosto, para ser honesto." + }, + "defeat": { + "1": "As coisas não esquentaram para você." + } + }, + "marnie_elite": { + "encounter": { + "1": "Você chegou até aqui, hein? Vamos ver se você pode lidar com meus Pokémon!", + "2": "Vou dar o meu melhor, mas não pense que vou pegar leve com você!" + }, + "victory": { + "1": "Não acredito que perdi... Mas você mereceu essa vitória. Bem feito!", + "2": "Parece que ainda tenho muito a aprender. Porém, grande batalha!" + }, + "defeat": { + "1": "Você lutou bem, mas eu tenho a vantagem! Melhor sorte na próxima vez!", + "2": "Parece que meu treinamento valeu a pena. Obrigado pela batalha!" + } + }, + "nessa_elite": { + "encounter": { + "1": "As marés estão mudando a meu favor. Pronto para ser levado pela corrente?", + "1_female": "As marés estão mudando a meu favor. Pronta para ser levada pela corrente?", + "2": "Vamos fazer ondas com esta batalha! Espero que esteja preparado!", + "2_female": "Vamos fazer ondas com esta batalha! Espero que esteja preparada!" + }, + "victory": { + "1": "Você navegou nessas águas perfeitamente... Bem feito!", + "2": "Parece que minhas correntes não foram páreo para você. Bom trabalho!" + }, + "defeat": { + "1": "A água sempre encontra um caminho. Essa foi uma batalha refrescante!", + "2": "Você lutou bem, mas o poder do oceano é imparável!" + } + }, + "bea_elite": { + "encounter": { + "1": "Prepare-se! Meu espírito de luta brilha intensamente!", + "2": "Vamos ver se você consegue acompanhar meu ritmo implacável!" + }, + "victory": { + "1": "Sua força... É impressionante. Você realmente merece essa vitória.", + "2": "Nunca senti essa intensidade antes. Trabalho incrível!" + }, + "defeat": { + "1": "Outra vitória para meu rigoroso regime de treinamento! Bem feito!", + "2": "Você tem força, mas eu treinei mais. Grande batalha!" + } + }, + "allister_elite": { + "encounter": { + "1": "As sombras caem... Você está pronto para enfrentar seus medos?", + "1_female": "As sombras caem... Você está pronta para enfrentar seus medos?", + "2": "Vamos ver se você pode lidar com a escuridão que eu comando." + }, + "victory": { + "1": "Você dissipou as sombras... Por enquanto. Bem feito.", + "2": "Sua luz atravessou minha escuridão. Ótimo trabalho." + }, + "defeat": { + "1": "As sombras falaram... Sua força não é suficiente.", + "2": "A escuridão triunfa... Talvez na próxima vez você veja a luz." + } + }, + "raihan_elite": { + "encounter": { + "1": "Tempestade se formando! Vamos ver se você aguenta essa luta!", + "2": "Prepare-se para enfrentar o olho da tempestade!" + }, + "victory": { + "1": "Você enfrentou a tempestade... Trabalho incrível!", + "2": "Você navegou nos ventos perfeitamente... Grande batalha!" + }, + "defeat": { + "1": "Outra tempestade enfrentada, outra vitória conquistada! Bem lutado!", + "2": "Você foi pego na minha tempestade! Melhor sorte na próxima vez!", + "2_female": "Você foi pega na minha tempestade! Melhor sorte na próxima vez!" + } + }, + "alder": { + "encounter": { + "1": "Se prepare para uma batalha contra o Treinador mais forte de Unova!" + }, + "victory": { + "1": "Muito bem! Você certamente é um talento incomparável." + }, + "defeat": { + "1": "Um vento fresco sopra em meu coração...\n$Que esforço extraordinário!" + } + }, + "kieran": { + "encounter": { + "1": "Através do trabalho duro, eu me torno cada vez mais forte!\n$Eu não perco." + }, + "victory": { + "1": "Eu não acredito...\n$Que batalha divertida e emocionante!" + }, + "defeat": { + "1": "Uau, que batalha!\n$Hora de você treinar ainda mais." + } + }, + "rival": { + "encounter": { + "1": "@c{smile}Eai, estava procurando você! Sabia que você estava ansioso para começar, mas esperava pelo menos um tchau…\n$@c{smile_eclosed}Então você está realmente perseguindo seu sonho, hein?\n Quase não consigo acreditar.\n$@c{serious_smile_fists}Já que estamos aqui, que tal uma batalha?\nAfinal, quero ter certeza de que você está pronto.\n$@c{serious_mopen_fists}Não se segure, quero que você dê tudo de si!" + }, + "victory": { + "1": "@c{shock}Caramba… Você me limpou.\nVocê é mesmo um novato?\n$@c{smile}Talvez tenha sido um pouco de sorte, mas…\nQuem sabe você consiga chegar até o fim.\n$Aliás, o professor me pediu para te dar esses itens. Eles parecem bem legais.\n$@c{serious_smile_fists}Boa sorte lá fora!" + } + }, + "rival_female": { + "encounter": { + "1": "@c{smile_wave}Aí está você! Procurei você em todo lugar!\n@c{angry_mopen}Esqueceu de se despedir da sua melhor amiga?\n$@c{smile_ehalf}Você está indo atrás do seu sonho, né?\nEsse dia realmente chegou, não é…\n$@c{smile}Enfim, vou te perdoar por ter me esquecido, mas com uma condição. @c{smile_wave_wink}Você tem que lutar comigo!\n$@c{angry_mopen}Dê o seu melhor! Não quer que sua aventura acabe antes de começar, né?" + }, + "victory": { + "1": "@c{shock}Você acabou de começar e já está tão forte?!@d{96}\n@c{angry}Você trapaceou, não foi?\n$@c{smile_wave_wink}Brincadeirinha!@d{64} @c{smile_eclosed}Eu perdi de forma justa… Tenho a sensação de que você vai se sair muito bem lá fora.\n$@c{smile}Aliás, o professor pediu para eu te dar alguns itens. Espero que sejam úteis!\n$@c{smile_wave}Dê o seu melhor, como sempre! Eu acredito em você!" + } + }, + "rival_2": { + "encounter": { + "1": "@c{smile}Eai, você também está aqui?\n@c{smile_eclosed}Ainda com um recorde perfeito, hein…?\n$@c{serious_mopen_fists}Sei que parece que eu te segui até aqui, mas isso não é totalmente verdade.\n$@c{serious_smile_fists}Sinceramente, tenho estado ansioso por uma revanche desde que você me venceu em casa.\n$Tenho treinado bastante, então vou dar uma luta difícil desta vez.\n$@c{serious_mopen_fists}Não se segure, assim como antes!\nVamos lá!" + }, + "victory": { + "1": "@c{neutral_eclosed}Ah. Acho que fui confiante demais.\n$@c{smile}Tudo bem, no entanto. Eu imaginei que isso poderia acontecer.\n@c{serious_mopen_fists}Isso só significa que preciso me esforçar mais para a próxima vez!\n\n$@c{smile}Ah, não que você precise realmente de ajuda, mas eu tinha um extra desses itens e pensei que você poderia querer.\n$@c{serious_smile_fists}Não espere outro depois deste!\nNão posso continuar dando vantagem ao meu oponente.\n$@c{smile}Enfim, cuide-se, e aproveite o evento!" + } + }, + "rival_2_female": { + "encounter": { + "1": "@c{smile_wave}Oh, que surpresa te encontrar aqui. Parece que você ainda está invicto. @c{angry_mopen}Hum… Nada mal!\n$@c{angry_mopen}Eu sei o que você está pensando, e não, eu não estava te espionando. @c{smile_eclosed}Acontece que eu estava na área.\n$@c{smile_ehalf}Estou feliz por você, mas só quero te avisar que está tudo bem perder às vezes.\n$@c{smile}Aprendemos com nossos erros, muitas vezes mais do que se continuássemos vencendo.\n$@c{angry_mopen}De qualquer forma, tenho treinado duro para nossa revanche, então é melhor você dar o seu melhor!" + }, + "victory": { + "1": "@c{neutral}Eu… não era para eu perder dessa vez…\n$@c{smile}Ah bem. Isso só significa que vou ter que treinar ainda mais para a próxima vez!\n$@c{smile_wave}Também consegui mais dois desses para você!\n@c{smile_wave_wink}Não precisa me agradecer~.\n$@c{angry_mopen}Estes são os últimos, hein! Você não vai ganhar mais nenhum presente de mim depois desse!\n$@c{smile_wave}Continue assim, e aproveite o evento!" + }, + "defeat": { + "1": "Está tudo bem perder às vezes…" + } + }, + "rival_3": { + "encounter": { + "1": "@c{smile}Eai, olha quem é! Faz um tempo.\n@c{neutral}Você… ainda está invicto? Hum.\n$@c{neutral_eclosed}As coisas têm sido meio… estranhas.\nNão é a mesma coisa em casa sem você.\n$@c{serious}Eu sei que é egoísta, mas preciso desabafar.\n@c{neutral_eclosed}Acho que você está se metendo em algo grande demais aqui.\n$@c{serious}Nunca perder é irrealista.\nPrecisamos perder às vezes para crescer.\n$@c{neutral_eclosed}Você teve uma grande jornada, mas ainda há muito pela frente, e só vai ficar mais difícil. @c{neutral}Você está preparado para isso?\n$@c{serious_mopen_fists}Se sim, prove para mim." + }, + "victory": { + "1": "@c{angry_mhalf}Isso é ridículo… Eu mal parei de treinar…\nComo ainda estamos tão distantes?" + } + }, + "rival_3_female": { + "encounter": { + "1": "@c{smile_wave}Quanto tempo! Ainda não perdeu, né.\n@c{angry}Você está começando a me irritar. @c{smile_wave_wink}Brincadeirinha!\n$@c{smile_ehalf}Mas sério, você não sente saudades de casa? Ou… de mim?\nEu… Eu quero dizer, sentimos muito a sua falta.\n$@c{smile_eclosed}Eu apoio o seu sonho e tudo mais, mas a realidade é que você vai perder mais cedo ou mais tarde.\n$@c{smile}E quando isso acontecer, estarei lá para você, como sempre.\n@c{angry_mopen}Agora, deixe-me mostrar o quão forte eu me tornei!" + }, + "victory": { + "1": "@c{shock}Depois de tudo isso… não foi o suficiente…?\nVocê nunca vai voltar a esse ritmo…" + }, + "defeat": { + "1": "Você deu o seu melhor, agora vamos para casa." + } + }, + "rival_4": { + "encounter": { + "1": "@c{neutral}Oi.\n$Não vou enrolar com você.\n@c{neutral_eclosed}Estou aqui para vencer, simples assim.\n$@c{serious_mhalf_fists}Aprendi a maximizar meu potencial dedicando todo o meu tempo ao treino.\n$@c{smile}Você ganha muito tempo extra quando corta o sono e a interação social desnecessários.\n$@c{serious_mopen_fists}Nada disso importa mais, não até eu vencer.\n$@c{neutral_eclosed}Cheguei ao ponto de não perder mais.\n@c{smile_eclosed}Acho que sua filosofia não estava tão errada afinal.\n$@c{angry_mhalf}Perder é para os fracos, e eu não sou mais fraco.\n$@c{serious_mopen_fists}Prepare-se." + }, + "victory": { + "1": "@c{neutral}O que…@d{64} O que é você?" + } + }, + "rival_4_female": { + "encounter": { + "1": "@c{neutral}Sou eu! Você não esqueceu de mim de novo… esqueceu?\n$@c{smile}Você deveria se orgulhar de até onde chegou. Parabéns!\nMas parece que é o fim da sua jornada.\n$@c{smile_eclosed}Você despertou algo em mim que eu nunca soube que existia.\nParece que agora tudo o que faço é treinar.\n$@c{smile_ehalf}Eu mal como ou durmo agora, só treino meus Pokémon o dia todo, ficando mais forte a cada vez.\n$@c{neutral}Na verdade, eu… mal me reconheço.\n$E agora, finalmente atingi o desempenho máximo.\nNão acho que alguém poderia me vencer agora.\n$E sabe de uma coisa? É tudo por sua causa.\n@c{smile_ehalf}Eu não sei se te agradeço ou te odeio.\n$@c{angry_mopen}Prepare-se." + }, + "victory": { + "1": "@c{neutral}O que…@d{64} O que é você?" + }, + "defeat": { + "1": "$@c{smile}Você deveria se orgulhar de até onde chegou." + } + }, + "rival_5": { + "encounter": { + "1": "@c{neutral}…" + }, + "victory": { + "1": "@c{neutral}…" + } + }, + "rival_5_female": { + "encounter": { + "1": "@c{neutral}…" + }, + "victory": { + "1": "@c{neutral}…" + }, + "defeat": { + "1": "$@c{smile_ehalf}…" + } + }, + "rival_6": { + "encounter": { + "1": "@c{smile_eclosed}Nos encontramos de novo.\n$@c{neutral}Tive um tempo para refletir sobre tudo isso.\nHá uma razão para tudo isso parecer tão estranho.\n$@c{neutral_eclosed}Seu sonho, minha vontade de te vencer…\nTudo faz parte de algo maior.\n$@c{serious}Isso não é sobre mim, nem sobre você… É sobre o mundo, @c{serious_mhalf_fists}e é meu propósito te levar ao limite.\n$@c{neutral_eclosed}Se cumpri esse propósito, não posso dizer, mas fiz tudo ao meu alcance.\n$@c{neutral}Este lugar em que acabamos é assustador… Mas de alguma forma me sinto indiferente, como se já tivesse estado aqui antes.\n$@c{serious_mhalf_fists}Você sente o mesmo, não sente?\n$@c{serious}…é como se algo aqui estivesse falando comigo.\nIsso é tudo o que o mundo conhece há muito tempo.\n$Aqueles momentos que apreciamos juntos que parecem tão recentes não passam de uma memória distante.\n$@c{neutral_eclosed}Quem pode dizer se eles foram realmente reais em primeiro lugar.\n$@c{serious_mopen_fists}Você precisa continuar empurrando, porque se não o fizer, isso nunca vai acabar. Você é o único que pode fazer isso.\n$@c{serious_smile_fists}Eu mal sei o que tudo isso significa, só sei que é verdade.\n$@c{serious_mopen_fists}Se você não pode me derrotar aqui e agora, você não terá chance." + }, + "victory": { + "1": "@c{smile_eclosed}Parece que meu trabalho aqui está feito.\n$Quero que você me prometa uma coisa.\n@c{smile}Depois que curar o mundo, por favor, volte para casa." + } + }, + "rival_6_female": { + "encounter": { + "1": "@c{smile_ehalf}Então somos só nós de novo.\n$@c{smile_eclosed}Sabe, continuo pensando nisso…\n$@c{smile_ehalf}Há algo nisso tudo, por que tudo parece tão estranho agora…\n$@c{smile}Você tem seu sonho, e eu tenho essa ambição em mim…\n$Não consigo evitar sentir que há um propósito maior em tudo isso, no que estamos fazendo, você e eu.\n$@c{smile_eclosed}Acho que devo te levar ao limite.\n$@c{smile_ehalf}Não tenho certeza se estou fazendo um bom trabalho nisso, mas tentei meu melhor até agora.\n$Há algo neste lugar estranho e terrível… Tudo parece tão claro…\n$Isso… é tudo o que o mundo conhece há muito tempo.\n$@c{smile_eclosed}É como se eu mal pudesse lembrar das memórias que apreciamos juntos.\n$@c{smile_ehalf}Elas foram reais? Elas parecem tão distantes agora…\n$@c{angry_mopen}Você precisa continuar empurrando, porque se não o fizer, isso nunca vai acabar. Você é o único que pode fazer isso.\n$@c{smile_ehalf}Eu… não sei o que tudo isso significa… mas sinto que é verdade.\n$@c{neutral}Se você não pode me derrotar aqui e agora, você não terá chance." + }, + "victory": { + "1": "@c{smile_ehalf}Eu… acho que cumpri meu propósito…\n$@c{smile_eclosed}Prometa-me… Depois que curar o mundo… Por favor… volte para casa.\n$@c{smile_ehalf}…Obrigada." + } + } +} diff --git a/src/locales/pt_BR/dialogue.ts b/src/locales/pt_BR/dialogue.ts deleted file mode 100644 index cb0c05fab45..00000000000 --- a/src/locales/pt_BR/dialogue.ts +++ /dev/null @@ -1,4307 +0,0 @@ -import { DialogueTranslationEntries, SimpleTranslationEntries } from "#app/interfaces/locales"; - -// Dialogue of the NPCs in the game when the player character is male (or unset) -export const PGMdialogue: DialogueTranslationEntries = { - "youngster": { - "encounter": { - 1: "Eai, quer batalhar?", - 2: "Você também é um treinador novo?", - 3: "Eai, nunca te vi antes. Vamos batalhar!", - 4: "Acabei de perder, então estou tentando encontrar mais Pokémon.\nEspera! Você parece fraco! Vamos batalhar!", - 5: "A gente já se conheceu antes? Não lembro muito bem. Enfim, prazer te conhecer!", - 6: "Beleza! Vamos nessa!", - 7: "Beleza! Lá vou eu! Vou te mostrar meu poder!", - 8: "Hahaha... Vou te mostrar o quão incríveis são meus Pokémon!", - 9: "Sem perder tempo com cumprimentos. Vamos logo, quando estiver pronto!", - 10: "Não baixe a guarda, ou você pode acabar chorando quando uma criança te vencer.", - 11: "Eu criei meus Pokémon com muito cuidado. Você não tem permissão para machucá-los!", - 12: "Que bom que você chegou! Não vai ser fácil daqui pra frente.", - 13: "As batalhas continuam para sempre! Bem-vindo ao mundo sem fim!" - }, - "victory": { - 1: "Uau! Você é forte!", - 2: "Eu não tive chance, né?", - 3: "Vou te encontrar de novo quando for mais velho e te vencer!", - 4: "Ugh. Não tenho mais Pokémon.", - 5: "Não acredito… NÃO ACREDITO! Como pude perder de novo…", - 6: "Não! Eu perdi!", - 7: "Uau! Você é incrível! Estou surpreso!", - 8: "Pode ser… Como… Eu e meus Pokémon somos os mais fortes, porém…", - 9: "Não vou perder da próxima vez! Vamos batalhar de novo algum dia!", - 10: "Aff! Não vê que sou apenas uma criança? Não foi justo você ir com tudo!", - 11: "Seus Pokémon são incríveis! Troca comigo!", - 12: "Me empolguei um pouco antes, mas sobre qual trabalho eu estava falando?", - 13: "Ahaha! É isso aí! Você já está em casa nesse mundo!" - } - }, - "lass": { - "encounter": { - 1: "Vamos batalhar, pode ser?", - 2: "Você parece um treinador novo. Vamos batalhar!", - 3: "Não te reconheço. Que tal uma batalha?", - 4: "Vamos ter uma batalha Pokémon divertida!", - 5: "Vou te mostrar como realmente usar Pokémon!", - 6: "Uma batalha séria começa com um começo sério! Tem certeza que está pronto?", - 7: "Você só é jovem uma vez. E só tem uma chance em cada batalha. Logo, você será apenas uma memória.", - 8: "Vai com calma comigo, tá? Mas vou lutar sério!", - 9: "A escola é chata. Não tenho nada para fazer. Só estou batalhando para passar o tempo." - }, - "victory": { - 1: "Isso foi impressionante! Tenho muito a aprender.", - 2: "Não pensei que você me venceria tão fácil…", - 3: "Espero que possamos ter uma revanche um dia.", - 4: "Isso foi incrivelmente divertido! Você me esgotou totalmente…", - 5: "Você realmente me ensinou uma lição! Você é incrível!", - 6: "Sério, eu perdi. Isso é, tipo, seriamente deprimente, mas você foi seriamente legal.", - 7: "Não preciso de memórias como essa. Deletando memória…", - 8: "Ei! Eu te disse para pegar leve comigo! Mesmo assim, você é legal quando fica sério.", - 9: "Estou realmente cansando de batalhar… Deve haver algo novo para fazer…" - } - }, - "breeder": { - "encounter": { - 1: "Pokémon obedientes, Pokémon egoístas… Pokémon têm características únicas.", - 2: "Embora minha criação e comportamento sejam ruins, criei meus Pokémon bem.", - 3: "Hmm, você disciplina seus Pokémon? Mimar demais não é bom." - }, - "victory": { - 1: "É importante nutrir e treinar as características de cada Pokémon.", - 2: "Ao contrário do meu lado diabólico, esses são bons Pokémon.", - 3: "Muito elogio pode estragar tanto Pokémon quanto pessoas." - }, - "defeat": { - 1: "Você não deve ficar com raiva dos seus Pokémon, mesmo se perder uma batalha.", - 2: "Certo? Pokémon bons, né? Eu sou adequado para criar coisas.", - 3: "Não importa o quanto você ame seus Pokémon, ainda precisa discipliná-los quando se comportam mal." - } - }, - "breeder_female": { - "encounter": { - 1: "Pokémon nunca te traem. Eles retribuem todo o amor que você dá a eles.", - 2: "Quer uma dica para treinar bons Pokémon?", - 3: "Eu criei esses Pokémon muito especiais usando um método especial." - }, - "victory": { - 1: "Ugh… Não era para ser assim. Será que administrei a mistura errada?", - 2: "Como isso aconteceu com meus Pokémon… O que você está dando de comer aos seus Pokémon?", - 3: "Se eu perder, isso significa que eu estava só matando o tempo. Não machuca meu ego nem um pouco." - }, - "defeat": { - 1: "Isso prova que meus Pokémon aceitaram meu amor.", - 2: "O verdadeiro truque para treinar bons Pokémon é capturar bons Pokémon.", - 3: "Pokémon serão fortes ou fracos dependendo de como você os cria." - } - }, - "fisherman": { - "encounter": { - 1: "Anem! Você me fez perder uma fisgada!\nO que vai fazer sobre isso?", - 2: "Sai daqui! Você está assustando os Pokémon!", - 3: "Vamos ver se você consegue fisgar uma vitória!", - }, - "victory": { - 1: "Esqueça isso.", - 2: "Da próxima vez, eu vou pescar a vitória!", - 3: "Acho que subestimei a força das correntes dessa vez.", - }, - }, - "fisherman_female": { - "encounter": { - 1: "Uau! Peguei um grande!", - 2: "Linha lançada, pronta para pescar o sucesso!", - 3: "Pronta para fazer ondas!" - }, - "victory": { - 1: "Vou voltar com um anzol mais forte.", - 2: "Vou pescar a vitória na próxima vez.", - 3: "Estou só afiando meus anzóis para a revanche!" - }, - }, - "swimmer": { - "encounter": { - 1: "Hora de mergulhar!", - 2: "Vamos surfar nas ondas da vitória!", - 3: "Pronto para fazer um splash!", - }, - "victory": { - 1: "Molhado na derrota!", - 2: "Uma onda de derrota!", - 3: "De volta à praia, eu acho.", - }, - }, - "backpacker": { - "encounter": { - 1: "Prepare-se, vamos começar!", - 2: "Vamos ver se você consegue acompanhar!", - 3: "Prepare-se, desafiante!", - 4: "Passei 20 anos tentando me encontrar… Mas onde estou?" - }, - "victory": { - 1: "Dessa vez tropecei!", - 2: "Ah, acho que estou perdido.", - 3: "Caminho sem saída!", - 4: "Espere um segundo! Ei! Você não sabe quem eu sou?" - }, - }, - "ace_trainer": { - "encounter": { - 1: "Você parece bastante confiante.", - 2: "Seus Pokémon… Mostre-os para mim…", - 3: "Como sou um Treinador Ás, as pessoas acham que sou forte.", - 4: "Você sabe o que é preciso para ser um Treinador Ás?" - }, - "victory": { - 1: "Sim… Você tem bons Pokémon…", - 2: "O quê?! Mas sou um gênio das batalhas!", - 3: "Claro, você é o personagem principal!", - 4: "OK! OK! Você poderia ser um Treinador Ás!" - }, - "defeat": { - 1: "Estou dedicando corpo e alma às batalhas de Pokémon!", - 2: "Tudo dentro das minhas expectativas… Nada para se surpreender…", - 3: "Eu achava que cresceria para ser uma pessoa frágil que parecia que quebraria se você apertasse muito.", - 4: "Claro que sou forte e não perco. É importante ganhar com graça." - } - }, - "parasol_lady": { - "encounter": { - 1: "Hora de embelezar o campo de batalha com elegância e postura!", - }, - "victory": { - 1: "Minha elegância permanece inabalável!", - } - }, - "twins": { - "encounter": { - 1: "Prepare-se, porque quando nos unimos, é o dobro do problema!", - 2: "Dois corações, uma estratégia – vamos ver se você consegue acompanhar nosso poder de gêmeos!", - 3: "Espero que esteja pronto para o dobro do problema, porque estamos prestes a causar!" - }, - "victory": { - 1: "Podemos ter perdido essa rodada, mas nosso vínculo permanece inquebrável!", - 2: "Nosso espírito de gêmeos não será apagado por muito tempo.", - 3: "Voltaremos mais fortes como uma dupla dinâmica!" - }, - "defeat": { - 1: "O poder dos gêmeos reina supremo!", - 2: "Dois corações, um triunfo!", - 3: "Dobro de sorrisos, dobro da dança da vitória!" - } - }, - "cyclist": { - "encounter": { - 1: "Prepare-se para comer poeira!", - 2: "Prepare-se, desafiante! Estou prestes a te deixar para trás!", - 3: "Pé no pedal, vamos ver se você consegue acompanhar!" - }, - "victory": { - 1: "As rodas podem estar paradas, mas a determinação continua a pedalar.", - 2: "Fui mais rápido!", - 3: "O caminho para a vitória tem muitas curvas e voltas para explorar." - }, - }, - "black_belt": { - "encounter": { - 1: "Elogio sua coragem ao me desafiar! Pois eu sou o que tem o chute mais forte!", - 2: "Oh, entendo. Você gostaria de ser cortado em pedaços? Ou prefere o papel de saco de pancadas?" - }, - "victory": { - 1: "Oh. Os Pokémon fizeram a luta. Meu chute forte não ajudou em nada.", - 2: "Hmmm… Se eu ia perder de qualquer maneira, esperava ficar totalmente destruído no processo." - }, - }, - "battle_girl": { - "encounter": { - 1: "Você não precisa tentar me impressionar. Você pode perder contra mim.", - }, - "victory": { - 1: "É difícil dizer adeus, mas estamos ficando sem tempo…", - }, - }, - "hiker": { - "encounter": { - 1: "Minha barriga de meia-idade me deu tanta gravidade quanto as montanhas que eu escalo!", - 2: "Herdei esse corpo ossudo dos meus pais… Sou como uma cadeia de montanhas viva…", - }, - "victory": { - 1: "Pelo menos não posso perder quando se trata de IMC!", - 2: "Não é suficiente… Nunca é suficiente. Meu colesterol ruim não está alto o suficiente…" - }, - }, - "ranger": { - "encounter": { - 1: "Quando estou cercado pela natureza, a maioria das outras coisas deixa de importar.", - 2: "Quando estou vivendo sem natureza na minha vida, às vezes sinto uma crise de ansiedade se aproximando." - }, - "victory": { - 1: "Não importa para a vastidão da natureza se eu ganhar ou perder…", - 2: "Algo assim é bastante trivial comparado aos sentimentos sufocantes da vida na cidade." - }, - "defeat": { - 1: "Ganhei a batalha. Mas a vitória não é nada comparada à vastidão da natureza…", - 2: "Tenho certeza de que como você se sente não é tão ruim se comparar aos meus ataques de ansiedade…" - } - }, - "scientist": { - "encounter": { - 1: "Minha pesquisa levará este mundo à paz e alegria.", - }, - "victory": { - 1: "Sou um gênio… Não devo perder para alguém como você…", - }, - }, - "school_kid": { - "encounter": { - 1: "Heehee. Estou confiante nos meus cálculos e análises.", - 2: "Estou ganhando o máximo de experiência que posso porque quero ser um Líder de Ginásio um dia." - }, - "victory": { - 1: "Aff… Cálculo e análise talvez não sejam páreo para o acaso…", - 2: "Até experiências difíceis e desafiadoras têm seu propósito, eu acho." - } - }, - "artist": { - "encounter": { - 1: "Eu costumava ser popular, mas agora estou acabado.", - }, - "victory": { - 1: "À medida que os tempos mudam, os valores também mudam. Percebi isso tarde demais.", - }, - }, - "guitarist": { - "encounter": { - 1: "Prepare-se para sentir o ritmo da derrota enquanto eu toco minha vitória!", - }, - "victory": { - 1: "Silenciado por agora, mas minha melodia de resiliência continuará a tocar.", - }, - }, - "worker": { - "encounter": { - 1: "Me incomoda que as pessoas sempre me entendam mal. Sou muito mais puro do que todos pensam.", - }, - "victory": { - 1: "Eu realmente não quero que minha pele queime, então quero ficar na sombra enquanto trabalho.", - }, - }, - "worker_female": { - "encounter": { - 1: `Me incomoda que as pessoas sempre me entendam mal. - $Sou muito mais pura do que todos pensam.` - }, - "victory": { - 1: "Eu realmente não quero que minha pele queime, então quero ficar na sombra enquanto trabalho." - }, - "defeat": { - 1: "Meu corpo e mente nem sempre estão necessariamente em sincronia." - } - }, - "worker_double": { - "encounter": { - 1: "Vou te mostrar que podemos te quebrar. Estamos treinando no campo!", - }, - "victory": { - 1: "Que estranho… Como isso pode ser… Não deveria ter sido superado.", - }, - }, - "hex_maniac": { - "encounter": { - 1: "Normalmente, só escuto música clássica, mas se eu perder, acho que vou tentar um pouco de new age!", - 2: "Eu fico mais forte a cada lágrima que derramo." - }, - "victory": { - 1: "É o início da era de Aquário?", - 2: "Agora posso ficar ainda mais forte. Cresço com cada rancor." - }, - "defeat": { - 1: "New age se refere simplesmente aos compositores clássicos do século XX, certo?", - 2: "Não fique preso na tristeza ou frustração. Você pode usar seus rancores para se motivar." - } - }, - "psychic": { - "encounter": { - 1: "Oi! Concentre-se!", - }, - "victory": { - 1: "Perdi minha concentração!", - }, - }, - "officer": { - "encounter": { - 1: "Prepare-se, porque a justiça está prestes a ser servida!", - 2: "Pronto para defender a lei e servir a justiça no campo de batalha!" - }, - "victory": { - 1: "O peso da justiça parece mais pesado do que nunca…", - 2: "As sombras da derrota pairam no distrito." - } - }, - "beauty": { - "encounter": { - 1: "Minha última batalha… É assim que eu gostaria que víssemos esta partida…", - }, - "victory": { - 1: "Foi divertido… Vamos ter outra última batalha algum dia…", - }, - }, - "baker": { - "encounter": { - 1: "Espero que esteja pronto para saborear a derrota!" - }, - "victory": { - 1: "Vou assar uma revanche." - }, - }, - "biker": { - "encounter": { - 1: "Hora de acelerar e te deixar na poeira!" - }, - "victory": { - 1: "Vou me ajustar para a próxima corrida." - }, - }, - "firebreather": { - "encounter": { - 1: "Minhas chamas irão te consumir!", - 2: "Minha alma está pegando fogo. Irei te mostrar como queima!", - 3: "Cola aqui e dá uma olhada!" - }, - "victory": { - 1: "Fui reduzido a cinzas…", - 2: "Uau! Isso foi quente!", - 3: "Ai! Queimei minha língua!" - }, - }, - "sailor": { - "encounter": { - 1: "Mano, você vai andar na prancha se perder!", - 2: "Vem com tudo! Sou um marinheiro com orgulho!", - 3: "Ahoy marujo! Tá enjoado, é?!" - }, - "victory": { - 1: "Argh! Perdi pra uma criança!", - 2: "Sua vontade de ganhar me afogou!", - 3: "Estou achando que quem tá enjoado sou eu..." - }, - }, - "archer": { - "encounter": { - 1: "Antes de você ir mais longe, vamos ver como você se sai contra nós, Equipe Rocket!", - 2: "Eu tenho recebido relatórios de que suas habilidades não são insignificantes. Vamos ver se são verdadeiros.", - 3: "Eu sou Archer, um Admin da Equipe Rocket. E não tenho piedade dos inimigos da nossa organização." - }, - "victory": { - 1: "Que vexame!", - 2: "Com minhas habilidades atuais, eu não estava à altura da tarefa, afinal.", - 3: "M-me perdoe, Giovanni... Por ser derrotado por um mero treinador..." - }, - }, - "ariana": { - "encounter": { - 1: "Pera aí! Não podemos deixar alguém solto por aí. Isso é prejudicial para o orgulho da Equipe Rocket, entende?", - 2: "Eu não sei ou me importo se o que estou fazendo é certo ou errado... Eu apenas coloco minha fé em Giovanni e faço o que me é dito.", - 3: "Sua viagem termina aqui. Vou te derrubar!" - }, - "victory": { - 1: "Uau, você é forte. Que desperdício. Se você se juntasse à Equipe Rocket, poderia se tornar um Executivo.", - 2: "Eu... Eu estou arrasada...", - 3: "Aaaieeeee! Isso não pode estar acontecendo! Eu lutei muito, mas ainda perdi…" - }, - }, - "proton": { - "encounter": { - 1: "O que você quer? Se você interromper nosso trabalho, não espere misericórdia!", - 2: "O que temos aqui? Costumam me chamar de o cara mais assustador e cruel da Equipe Rocket… Eu recomendo fortemente que você não interfira nos nossos negócios!", - 3: "Eu sou Proton, um Admin da Equipe Rocket. Estou aqui para acabar com a sua intromissão!" - }, - "victory": { - 1: "A fortaleza caiu!", - 2: "Você pode ter vencido desta vez… Mas tudo o que fez foi aumentar a ira da Equipe Rocket…", - 3: "Fui derrotado… Mas não esquecerei disso!" - }, - }, - "petrel": { - "encounter": { - 1: "Muhahaha, estávamos esperando por você. Eu? Você não sabe quem eu sou? Sou eu, Giovanni. O majestoso Giovanni em pessoa! Wahahaha! ...Huh? Eu não pareço nada com Giovanni? Eu nem mesmo pareço com Giovanni? Como assim? Trabalhei tanto para imitá-lo!", - 2: "Eu sou Petrel, um Admin da Equipe Rocket. Não permitirei que você interfira em nossos planos!", - 3: "O Executivo da Rocket, Petrel, vai lidar com este intruso!" - }, - "victory": { - 1: "OK, OK. Vou te contar onde ele está.", - 2: "Eu... Eu não consegui fazer nada... Giovanni, por favor, me perdoe...", - 3: "Não, eu não posso deixar isso me afetar. Tenho que informar os outros…" - }, - }, - "tabitha": { - "encounter": { - 1: "Hehehe! Então você veio até aqui! Mas você chegou tarde demais!", - 2: "Hehehe... Já chegou aqui, não é? Nós subestimamos você! Mas é isso! Eu sou um passo acima dos Capangas que você viu até agora. Não estou ganhando tempo. Vou te pulverizar!", - 3: "Vou te dar um gostinho da dor! Resigne-se a isso!" - }, - "victory": { - 1: "Hehehe! Você pode ter me derrotado, mas não tem chance contra o Chefe! Se você se perder agora, não terá que enfrentar uma surra sonora!", - 2: "Hehehe... Então, eu também perdi...", - 3: "Ahya! Como isso pode ser? Para um Admin como eu perder para um treinador qualquer..." - }, - }, - "courtney": { - "encounter": { - 1: "A coisa... A coisa que você segura... É o que... É o que nós da Equipe Magma procuramos...", - 2: "... Bem então... Deletando...", - 3: "...Ha. ...Analisando... ...Hah♪" - }, - "victory": { - 1: "... ...Mudar...o mundo.", - 2: "Como antecipado. Não antecipado. Você. Bloqueio de alvo... concluído. Iniciando... experimento. Você. Para sempre. Aha... ♪", - 3: "... De novo? Isso não foi antecipado. ...Eu sabia. Você... é interessante! ...Haha. ♪" - }, - }, - "shelly": { - "encounter": { - 1: "Ahahahaha! Você vai se meter nos assuntos da Equipe Aqua? Você é absolutamente destemido, simplesmente ignorante ou ambos! Você é tão fofo que chega a ser nojento! Vou te derrubar", - 2: "O que é isso? Quem é essa criança mimada?", - 3: "Relaxe. Seja paciente. Vou te esmagar em breve." - }, - "victory": { - 1: "Ahahahaha! Fomos surpreendidos inesperadamente! Estamos sem opções. Teremos que recuar. Mas esta não é a última vez que você verá a Equipe Aqua! Temos outros planos! Não se esqueça disso!", - 2: "Ahhh?! Fui muito fácil com você?!", - 3: "Uh. Você está me dizendo que melhorou seu jogo ainda mais durante a luta? Você é um pirralho com um futuro brilhante… Meu Pokémon e eu não temos mais forças para lutar… Vá em frente… Vá e seja destruído por Archie." - }, - }, - "matt": { - "encounter": { - 1: "Hoohahaha! O que, você tem um parafuso solto ou algo assim? Olhe para você, pequena pessoa Makuhita!", - 2: "Oho! Você! Você é aquela criança engraçada!", - 3: "O que você está fazendo aqui? Você nos seguiu?" - }, - "victory": { - 1: "Muito bem, até que o Chefe tenha tempo para você, serei seu oponente!", - 2: "Posso sentir! Posso sentir, tudo bem! A força saindo de você! Mais! Eu ainda quero mais! Mas parece que estamos sem tempo...", - 3: "Isso foi divertido! Eu sabia que você me mostraria um bom tempo! Estou ansioso para enfrentá-lo novamente algum dia!" - }, - }, - "mars": { - "encounter": { - 1: "Sou Mars, uma das principais Comandantes da Equipe Galáctica.", - 2: "A visão da Equipe Galáctica para o futuro é inabalável. A oposição será esmagada sem piedade!", - 3: "Sentindo-se nervoso? Você deveria estar!" - }, - "victory": { - 1: "Isso não pode estar acontecendo! Como eu perdi?!", - 2: "Você tem alguma habilidade, eu admito isso.", - 3: "Derrotada... Este foi um erro caro." - } - }, - "jupiter": { - "encounter": { - 1: "Júpiter, Comandante da Equipe Galáctica, ao seu serviço.", - 2: "A resistência é inútil. A Equipe Galáctica prevalecerá!", - 3: "Você está tremendo... já está com medo?" - }, - "victory": { - 1: "De jeito nenhum... Eu perdi?!", - 2: "Impressionante, você tem coragem!", - 3: "Perder assim... Que embaraço." - } - }, - "saturn": { - "encounter": { - 1: "Eu sou Saturno, Comandante da Equipe Galáctica.", - 2: "Nossa missão é absoluta. Qualquer obstáculo será obliterado!", - 3: "É medo o que vejo em seus olhos?" - }, - "victory": { - 1: "Impossível... Derrotado por você?!", - 2: "Você provou ser um adversário digno.", - 3: "Derrotado... Isso é inaceitável." - } - }, - "zinzolin": { - "encounter": { - 1: "Você poderia se tornar uma ameaça para a Equipe Plasma, então vamos eliminá-lo aqui e agora!", - 2: "Oh, pelo amor de Deus... Eu não esperava ter que lutar neste frio congelante!", - 3: "Você é um treinador impressionante para ter chegado tão longe. Mas termina aqui." - }, - "victory": { - 1: "Ghetsis... Eu falhei com você...", - 2: "Está amargamente frio. Estou tremendo. Estou sofrendo. Ainda assim, estou vitorioso.", - 3: "Hmph. Você é um treinador mais esperto do que eu esperava, mas não esperto o suficiente." - } - }, - "rood": { - "encounter": { - 1: "Você é uma ameaça para a Equipe Plasma. Não podemos deixá-lo ir embora daqui e agora!", - 2: "Oh, este vento gelado... Eu nunca pensei que teria que lutar aqui!", - 3: "Você é um treinador notável para ter chegado tão longe. Mas é aqui que termina." - }, - "victory": { - 1: "Ghetsis... Eu falhei em minha missão...", - 2: "O frio é penetrante. Estou tremendo. Estou sofrendo. Ainda assim, triunfei.", - 3: "Hm. Você é um treinador talentoso, mas infelizmente não talentoso o suficiente." - } - }, - "xerosic": { - "encounter": { - 1: "Ah ha ha! Será um prazer. Vamos lá, pequeno treinador! Vamos ver o que você tem!", - 2: "Hmm... Você é mais poderoso do que parece. Eu me pergunto quanta energia há dentro de você.", - 3: "Eu estava esperando por você! Preciso fazer uma pequena pesquisa sobre você! Vamos começar!" - }, - "victory": { - 1: "Ah, você é bastante forte. Oh sim—muito forte, de fato.", - 2: "Ding-ding-ding! Você conseguiu! Ao vencedor, os despojos!", - 3: "Maravilhoso! Incrível! Você tem uma tremenda habilidade e coragem!" - } - }, - "bryony": { - "encounter": { - 1: "Eu sou Bryony, e será um prazer lutar com você. Mostre-me o que você tem.", - 2: "Impressionante... Você é mais poderoso do que parece. Vamos ver a verdadeira extensão de sua energia.", - 3: "Eu antecipei sua chegada. É hora de um pequeno teste. Vamos começar?" - }, - "victory": { - 1: "Você é bastante forte. Oh sim—muito forte, de fato.", - 2: "Ding-ding-ding! Você se saiu bem. A vitória é sua.", - 3: "Maravilhoso! Notável! Sua habilidade e coragem são admiráveis." - } - }, - "rocket_grunt": { - "encounter": { - 1: "Se prepara pra encrenca!", - 2: "Estamos realizando um grande trabalho aqui! Cai fora, moleque!", - 3: "Entregue seus Pokémon ou enfrente a ira da Equipe Rocket!", - 4: "Você está prestes a experimentar o verdadeiro terror da Equipe Rocket!", - 5: "Ei, moleque! Eu sou um tipo de cara da Equipe Rocket!" //Uso de gramática incorreta é proposital - }, - "victory": { - 1: "Equipe Rocket decolando de novo!", - 2: "Oh não! Eu deixei a Chave de Elevação cair!", - 3: "Eu estraguei tudo!", - 4: "Meus associados não vão tolerar isso!", - 5: "Você diz o que? Equipe Rocket tchau-tchau a vai-vai? Quebrado é diz você?" //Uso de gramática incorreta é proposital - }, - }, - "magma_grunt": { - "encounter": { - 1: "Se você se meter com a Equipe Magma, não teremos piedade!", - 2: "É melhor você não interferir em nossos planos! Estamos tornando o mundo um lugar melhor!", - 3: "Você está no caminho! A Equipe Magma não tem tempo para crianças como você!", - 4: "Espero que você tenha trazido marshmallows porque as coisas estão prestes a esquentar!", - 5: "Vamos usar o poder de um vulcão! Vai ser... explosivo! Entendeu? Heh heh!" - }, - "victory": { - 1: "Ahn? Eu perdi?!", - 2: "Não posso acreditar que perdi! Até pulei o almoço por isso.", - 3: "De jeito nenhum! Você é apenas uma criança!", - 4: "Urrrgh... Eu deveria ter me escondido em nosso esconderijo imediatamente...", - 5: "Você me venceu... Você acha que o chefe vai cortar meu salário por isso?" - }, - }, - "aqua_grunt": { - "encounter": { - 1: "Não pegamos leve com quem se mete com a Equipe Aqua, nem mesmo crianças!", - 2: "Grrr... Você tem coragem de se intrometer com a Equipe Aqua!", - 3: "Você está prestes a se molhar! E não apenas por causa dos meus Pokémon aquáticos!", - 4: "Nós, da Equipe Aqua, existimos para o bem de todos!", - 5: "Prepare-se para ser levado pelas ondas do meu... uh, Pokémon! Sim, meu Pokémon!" - }, - "victory": { - 1: "Tá de brincadeira!", - 2: "Arrgh, eu não contei que seria atrapalhado por uma criança intrometida!", - 3: "Eu perdi?! Acho que vou ter que nadar de volta para o esconderijo agora...", - 4: "Oh, cara, que desastre... O chefe vai ficar furioso...", - 5: "Você me venceu... Você acha que o chefe vai me fazer andar na prancha por isso?" - }, - }, - "galactic_grunt": { - "encounter": { - 1: "Não mexa com a Equipe Galáctica!", - 2: "Presencie o poder da nossa tecnologia e o futuro que vislumbramos!", - 3: "Em nome da Equipe Galáctica, eliminarei qualquer um que ficar em nosso caminho!", - 4: "Prepare-se para perder!", - 5: "Espero que você esteja pronto para uma surra cósmica!" - }, - "victory": { - 1: "Fui amassado...", - 2: "Este contratempo não significa nada no grande esquema.", - 3: "Nossos planos são maiores que esta derrota.", - 4: "Como?!", - 5: "Nota para mim mesmo: praticar batalhas Pokémon, o mais rápido possível." - }, - }, - "plasma_grunt": { - "encounter": { - 1: "Não toleramos pessoas que pensam diferente de nós!", - 2: "Se eu ganhar de você, liberte seus Pokémon!", - 3: "Se você atrapalhar a Equipe Plasma, eu cuidarei de você!", - 4: "A Equipe Plasma vai libertar os Pokémon de humanos egoístas como você!", - 5: "Nossos penteados são de outro mundo... mas nossas habilidades de batalha? Você descobrirá em breve." - }, - "victory": { - 1: "Plasmaaaaaaaaa!", - 2: "Como eu pude perder...", - 3: "...Que Pokémon fraco, vou ter que roubar alguns melhores!", - 4: "Grandes planos são sempre interrompidos.", - 5: "Isso é ruim... Ruim ruim ruim ruim ruim ruim ruim! Ruim para a Equipe Plasma! Ou Plasruim, para abreviar!" - }, - }, - "flare_grunt": { - "encounter": { - 1: "Seus Pokémon não são páreo para a elegância da Equipe Flare.", - 2: "Espero que você tenha trazido seus óculos de sol, porque as coisas vão ficar brilhantes!", - 3: "A Equipe Flare vai purificar o mundo da imperfeição!", - 4: "Prepare-se para enfrentar o brilho da Equipe Flare!", - 5: "A moda é o mais importante para nós!" - }, - "victory": { - 1: "O futuro não parece brilhante para mim.", - 2: "Talvez haja mais na batalha do que eu pensei. De volta à prancheta.", - 3: "Gahh?! Eu perdi?!", - 4: "Mesmo na derrota, a elegância da Equipe Flare brilha.", - 5: "Você pode ter me vencido, mas quando eu perco, eu saio com estilo!" - }, - }, - "rocket_boss_giovanni_1": { - "encounter": { - 1: "Tenho que admitir, estou impressionado que tenha chegado até aqui!" - }, - "victory": { - 1: "QUÊ! Isso não é possível!" - }, - "defeat": { - 1: "Guarde minhas palavras.\nNão ser capaz de medir sua própria força mostra que você ainda é uma criança." - } - }, - "rocket_boss_giovanni_2": { - "encounter": { - 1: "Meus antigos associados precisam de mim... Você vai ficar no meu caminho?" - }, - "victory": { - 1: "Como isso é possível...?\nO precioso sonho da Equipe Rocket se tornou pouco mais que uma ilusão..." - }, - "defeat": { - 1: "A Equipe Rocket renascerá, e eu dominarei o mundo!" - } - }, - "magma_boss_maxie_1": { - "encounter": { - 1: "Eu vou te enterrar com minhas próprias mãos.\nEspero que você aprecie essa honra!" - }, - "victory": { - 1: "Ugh! Você é... bastante capaz...\nEu fiquei para trás, mas apenas por um triz..." - }, - "defeat": { - 1: "A Equipe Magma vai prevalecer!" - } - }, - "magma_boss_maxie_2": { - "encounter": { - 1: "Você é o último obstáculo entre mim e meus objetivos.\nPrepare-se para meu ataque final! Fuhahaha!" - }, - "victory": { - 1: "Isso... Isso não é... Ngh..." - }, - "defeat": { - 1: "E agora... Eu transformarei este planeta em uma terra ideal para a humanidade." - } - }, - "aqua_boss_archie_1": { - "encounter": { - 1: "Eu sou o líder da Equipe Aqua, então temo que esse seja o fim da linha para você." - }, - "victory": { - 1: "Vamos nos encontrar de novo em algum lugar. Eu vou ter certeza de lembrar desse rosto." - }, - "defeat": { - 1: "Brilhante! Nada vai parar minha equipe agora!" - } - }, - "aqua_boss_archie_2": { - "encounter": { - 1: "Estive esperando tanto tempo por este dia.\nEste é o verdadeiro poder da minha equipe!" - }, - "victory": { - 1: "Como eu suspeitava..." - }, - "defeat": { - 1: "Eu vou voltar tudo neste mundo ao seu estado puro e original!!" - } - }, - "galactic_boss_cyrus_1": { - "encounter": { - 1: "Você foi compelido a vir aqui por tal sentimentalismo vazio\nEu farei você se arrepender de ter ouvido seu coração!" - }, - "victory": { - 1: "Interessante. E bastante curioso." - }, - "defeat": { - 1: "Eu criarei meu novo mundo..." - } - }, - "galactic_boss_cyrus_2": { - "encounter": { - 1: "Nos encontramos novamente. Parece que nossos destinos estão entrelaçados.\nMas aqui e agora, eu finalmente quebrarei esse vínculo!" - }, - "victory": { - 1: "Como? Como? COMO?!" - }, - "defeat": { - 1: "Até logo." - } - }, - "plasma_boss_ghetsis_1": { - "encounter": { - 1: "Ninguém pode me deter! Não importa quem seja ou o que faça!" - }, - "victory": { - 1: "Como isso é possível? Eu sou o criador da Equipe Plasma! Eu sou perfeito!" - }, - "defeat": { - 1: "Eu sou o governante perfeito de um novo mundo perfeito! Mwa ha ha!" - } - }, - "plasma_boss_ghetsis_2": { - "encounter": { - 1: "Vamos! Eu quero ver sua cara depois que você perder toda a esperança!" - }, - "victory": { - 1: "Meus cálculos... Não! Meus planos cuidadosos! O mundo deveria ser meu!" - }, - "defeat": { - 1: "Kyurem! Use Absofusion!" - } - }, - "flare_boss_lysandre_1": { - "encounter": { - 1: "Você está aqui para me deter? Mostre-me em batalha." - }, - "victory": { - 1: "Você está aqui para me deter. Mas eu peço que você espere." - }, - "defeat": { - 1: "Pokémon... não devem mais existir." - } - }, - "flare_boss_lysandre_2": { - "encounter": { - 1: "O futuro que você quer, ou o futuro que eu quero... Vamos ver qual é o mais merecedor, não é mesmo?" - }, - "victory": { - 1: "Uau!" - }, - "defeat": { - 1: "Tolos sem visão continuarão a poluir este belo mundo." - } - }, - "brock": { - "encounter": { - 1: "Minha especialidade em Pokémon do tipo Pedra vai te derrubar! Vamos lá!", - 2: "Minha vontade firme como pedra vai te sobrecarregar!", - 3: "Permita-me mostrar a verdadeira força dos meus Pokémon!" - }, - "victory": { - 1: "A força dos seus Pokémon superou minhas defesas de pedra!", - 2: "O mundo é enorme! Estou feliz por ter tido a chance de batalhar com você.", - 3: "Talvez eu deva voltar a perseguir meu sonho de ser Criador de Pokémon…" - }, - "defeat": { - 1: "A melhor defesa é um bom ataque!\nEssa é a minha maneira de fazer as coisas!", - 2: "Venha estudar rochas comigo da próxima vez para aprender melhor a combatê-las!", - 3: "Hah, todas as minhas viagens pelas regiões estão valendo a pena!" - } - }, - "misty": { - "encounter": { - 1: "Minha política é um ataque total com Pokémon do tipo Água!", - 2: "Oi, vou mostrar a força dos meus Pokémon aquáticos!", - 3: "Meu sonho era viajar e batalhar com treinadores poderosos…\nVocê será um desafio suficiente?" - }, - "victory": { - 1: "Você realmente é forte… Vou admitir que você é habilidoso…", - 2: "Hmm… Você sabe que só teve sorte, certo?!", - 3: "Uau, você é demais! Não acredito que me venceu!" - }, - "defeat": { - 1: "A poderosa Misty foi demais para você?", - 2: "Espero que você tenha visto as técnicas de natação elegantes dos meus Pokémon!", - 3: "Seus Pokémon não foram páreo para meus orgulhos e alegrias!" - } - }, - "lt_surge": { - "encounter": { - 1: "Meus Pokémon Elétricos me salvaram durante a guerra! Vou te mostrar como!", - 2: "Em sentido! Vou te chocar até você se render!", - 3: "Vou te eletrizar como faço com todos os meus inimigos na batalha!" - }, - "victory": { - 1: "Whoa! Seu time é de verdade, garoto!", - 2: "Uau, você é forte! Até meus truques elétricos perderam para você.", - 3: "Isso foi uma derrota absolutamente chocante!" - }, - "defeat": { - 1: "Oh sim! Quando se trata de Pokémon do tipo Elétrico, sou o número um do mundo!", - 2: "Hahaha! Foi uma batalha eletrizante, garoto!", - 3: "Uma batalha de Pokémon é guerra, e eu te mostrei combate em primeira mão!" - } - }, - "erika": { - "encounter": { - 1: "Ah, o tempo está adorável aqui…\nOh, uma batalha? Muito bem então.", - 2: "Minhas habilidades de batalha Pokémon rivalizam com minhas habilidades de arranjo de flores.", - 3: "Oh, espero que o aroma agradável dos meus Pokémon não me faça dormir de novo…", - 4: "Ver flores em um jardim é tão calmante." - }, - "victory": { - 1: "Oh! Eu concedo a derrota.", - 2: "Aquela partida foi muito agradável.", - 3: "Ah, parece que perdi…", - 4: "Oh, meu Deus." - }, - "defeat": { - 1: "Tinha medo de adormecer…", - 2: "Oh, meu Deus, parece que meus Pokémon de Grama te dominaram.", - 3: "Essa batalha foi uma experiência tão calmante.", - 4: "Oh… É só isso?" - } - }, - "janine": { - "encounter": { - 1: "Estou dominando a arte dos ataques venenosos.\nVou lutar com você hoje!", - 2: "Meu pai confia que posso me defender.\nVou provar que ele está certo!", - 3: "Minhas técnicas de ninja só perdem para as do meu pai!\nVocê consegue acompanhar?" - }, - "victory": { - 1: "Ainda preciso de treinamento… Entendi.", - 2: "Sua técnica de batalha superou a minha.", - 3: "Vou me aplicar de verdade e melhorar minhas habilidades." - }, - "defeat": { - 1: "Hehe… o veneno drenou todas as suas forças para lutar.", - 2: "Ha! Você não teve chance contra minhas habilidades superiores de ninja!", - 3: "A fé do meu pai em mim não foi mal colocada." - } - }, - "sabrina": { - "encounter": { - 1: "Através da minha habilidade psíquica, tive uma visão da sua chegada!", - 2: "Não gosto de lutar, mas se você quiser, vou mostrar meus poderes!", - 3: "Posso sentir grande ambição em você. Vou ver se não é infundada." - }, - "victory": { - 1: "Seu poder… Ele supera o que eu previa…", - 2: "Não consegui prever seu poder com precisão.", - 3: "Mesmo com meus imensos poderes psíquicos, não consigo sentir outro tão forte quanto você." - }, - "defeat": { - 1: "Essa vitória… É exatamente como previ nas minhas visões!", - 2: "Talvez fosse outra pessoa que eu sentisse um grande desejo…", - 3: "Aprimore suas habilidades antes de entrar em batalha precipitadamente.\nVocê nunca sabe o que o futuro pode reservar se fizer isso…" - } - }, - "blaine": { - "encounter": { - 1: "Hah! Espero que tenha trazido uma Cura de Queimadura!", - 2: "Meus Pokémon de Fogo vão incinerar todos os desafiantes!", - 3: "Prepare-se para brincar com fogo!" - }, - "victory": { - 1: "Queimei até não restar nada! Nem cinzas sobraram!", - 2: "Não acendi as chamas alto o suficiente?", - 3: "Estou completamente exausto… Mas isso faz minha motivação para melhorar queimar ainda mais!" - }, - "defeat": { - 1: "Meu inferno ardente não pode ser apagado!", - 2: "Meus Pokémon foram fortalecidos com o calor desta vitória!", - 3: "Hah! Minha paixão queima mais do que a sua!" - } - }, - "giovanni": { - "encounter": { - 1: "Eu, o líder da Equipe Rocket, vou te fazer sentir um mundo de dor!", - 2: "Meu treinamento aqui será vital antes de enfrentar meus antigos associados novamente.", - 3: "Não acho que você está preparado para o nível de fracasso que está prestes a experimentar!" - }, - "victory": { - 1: "O QUE! Eu, perder?! Não tenho nada a dizer a você!", - 2: "Hmm… Você nunca entenderia o que quero alcançar.", - 3: "Esta derrota está apenas adiando o inevitável.\nVou ressurgir a Equipe Rocket das cinzas a tempo." - }, - "defeat": { - 1: "Não ser capaz de medir sua própria força mostra que você ainda é apenas uma criança.", - 2: "Não tente interferir comigo novamente.", - 3: "Espero que entenda o quão tolo foi me desafiar." - } - }, - "roxanne": { - "encounter": { - 1: "Você poderia gentilmente demonstrar como batalha?", - 2: "Você pode aprender muitas coisas batalhando com muitos treinadores.", - 3: "Oh, você me pegou estrategizando.\nGostaria de batalhar?" - }, - "victory": { - 1: "Oh, parece que perdi.\nEu entendo.", - 2: "Parece que ainda tenho muito mais a aprender quando se trata de batalhas.", - 3: "Vou levar o que aprendi aqui hoje a sério." - }, - "defeat": { - 1: "Aprendi muitas coisas com nossa batalha.\nEspero que você também tenha aprendido.", - 2: "Espero batalhar com você novamente.\nEspero que use o que aprendeu aqui.", - 3: "Venci devido a tudo o que aprendi." - } - }, - "brawly": { - "encounter": { - 1: "Oh cara, um desafiante!\nVamos ver o que você pode fazer!", - 2: "Você parece uma grande onda.\nVamos batalhar!", - 3: "Hora de criar uma tempestade!\nVamos!" - }, - "victory": { - 1: "Uau, você me derrotou!", - 2: "Você surfou minha onda e me derrubou!", - 3: "Sinto-me perdido na Caverna Granito!" - }, - "defeat": { - 1: "Haha, eu surfei a grande onda!\nDesafie-me novamente algum dia.", - 2: "Surfe comigo novamente algum dia!", - 3: "Assim como as marés vão e vêm, espero que você volte para me desafiar novamente." - } - }, - "wattson": { - "encounter": { - 1: "Hora de levar um choque!\nWahahahaha!", - 2: "Vou fazer faíscas voarem!\nWahahahaha!", - 3: "Espero que tenha trazido Cura de Paralisia!\nWahahahaha!" - }, - "victory": { - 1: "Parece que estou sem carga!\nWahahahaha!", - 2: "Você me aterrissou completamente!\nWahahahaha!", - 3: "Obrigado pela emoção!\nWahahahaha!" - }, - "defeat": { - 1: "Você está totalmente carregado agora!\nWahahahaha!", - 2: "Espero ver você faíscando em batalhas futuras!\nWahahahaha!", - 3: "Wahahahaha! Que batalha eletrizante!" - } - }, - "flannery": { - "encounter": { - 1: "Meus Pokémon de fogo estão prontos para queimar a concorrência!\nVamos nessa!", - 2: "Prepare-se para sentir o calor da minha determinação!\nNão vou segurar nada!", - 3: "Minhas habilidades vão incinerar você!\nPrepare-se para a batalha mais quente da sua vida!" - }, - "victory": { - 1: "Essa derrota só faz minha determinação queimar mais!", - 2: "Essa perda não apagará minhas chamas!\nEstarei de volta mais forte!", - 3: "Vou usar essa experiência para reacender meu espírito competitivo!" - }, - "defeat": { - 1: "Minhas chamas nunca se apagarão!\nSou muito apaixonada por isso!", - 2: "Você foi incrível!\nVamos fazer isso de novo algum dia!", - 3: "Que batalha ardente!\nMal posso esperar pela próxima!" - } - }, - "norman": { - "encounter": { - 1: "Você está pronto para enfrentar a força pura do meu time?\nVou te mostrar o poder do equilíbrio!", - 2: "Minha experiência em batalha vai fazer você suar!\nPrepare-se!", - 3: "Treinei meu time rigorosamente.\nVamos ver se você consegue igualar!" - }, - "victory": { - 1: "Parece que subestimei você.\nFoi uma batalha dura.", - 2: "Você é forte, mas ainda há muito para aprender.", - 3: "Essa derrota não abalará minha determinação.\nEstarei de volta mais forte!" - }, - "defeat": { - 1: "Você lutou bravamente!\nEspero batalhar com você novamente.", - 2: "Sua força é incrível!\nNão posso esperar pela nossa próxima batalha.", - 3: "Foi uma honra batalhar com você!\nAté a próxima!" - } - }, - "winona": { - "encounter": { - 1: "Tenho sobrevoado os céus em busca de presas...\nE você é meu alvo!", - 2: "Não importa como será nossa batalha, meus Pokémon Voadores e eu triunfaremos com graça. Vamos batalhar!", - 3: "Espero que você não tenha medo de altura.\nVamos subir!" - }, - "victory": { - 1: "Você é o primeiro Treinador que vejo com mais graça do que eu.\nJogou excelentemente.", - 2: "Oh, meus Pokémon Voadores despencaram!\nMuito bem.", - 3: "Embora eu tenha caído, meus Pokémon continuarão a voar!" - }, - "defeat": { - 1: "Meus Pokémon Voadores e eu sempre dançaremos com elegância!", - 2: "Espero que tenha gostado do nosso show.\nNossa dança graciosa terminou.", - 3: "Você não quer ver nossa coreografia elegante novamente?" - } - }, - "tate": { - "encounter": { - 1: "Hehehe... Ficou surpreso de me ver sem minha irmã?", - 2: "Posso ver o que você está pensando...\nVocê quer batalhar!", - 3: "Como você pode derrotar alguém...\nQue sabe todos os seus movimentos?" - }, - "victory": { - 1: "Não pode ser ajudado...\nSinto falta da Liza...", - 2: "Seu vínculo com seus Pokémon era mais forte que o meu.", - 3: "Se eu estivesse com Liza, teríamos vencido.\nConseguimos completar os pensamentos um do outro!" - }, - "defeat": { - 1: "Meus Pokémon e eu somos superiores!", - 2: "Se você não consegue nem me derrotar, nunca será capaz de derrotar Liza também.", - 3: "Tudo graças ao meu treinamento rigoroso com Liza.\nPosso me tornar um com os Pokémon." - } - }, - "liza": { - "encounter": { - 1: "Fufufu... Ficou surpreso de me ver sem meu irmão?", - 2: "Posso determinar o que você deseja...\nVocê quer batalhar, não quer?", - 3: "Como você pode derrotar alguém...\nQue é um com seus Pokémon?" - }, - "victory": { - 1: "Não pode ser ajudado...\nSinto falta do Tate...", - 2: "Seu vínculo com seus Pokémon...\nÉ mais forte que o meu.", - 3: "Se eu estivesse com Tate, teríamos vencido.\nPodemos terminar as frases um do outro!" - }, - "defeat": { - 1: "Meus Pokémon e eu somos vitoriosos.", - 2: "Se você não consegue nem me derrotar, nunca será capaz de derrotar Tate também.", - 3: "Tudo graças ao meu treinamento rigoroso com Tate.\nPosso me sincronizar com meus Pokémon." - } - }, - "juan": { - "encounter": { - 1: "Agora não é hora de agir timidamente.\nVamos batalhar!", - 2: "Ahahaha, você será testemunha da minha arte com Pokémon de Água!", - 3: "Um tufão se aproxima!\nVocê será capaz de me testar?", - 4: "Por favor, você será testemunha da nossa arte.\nUma grande ilusão de água esculpida por meus Pokémon e por mim!" - }, - "victory": { - 1: "Você pode ser um gênio que pode enfrentar Wallace!", - 2: "Eu me concentrei na elegância enquanto você treinava.\nÉ natural que você me derrotasse.", - 3: "Ahahaha!\nMuito bem, você venceu desta vez.", - 4: "De você, sinto o brilho brilhante da habilidade que superará tudo." - }, - "defeat": { - 1: "Meus Pokémon e eu esculpimos uma ilusão de Água e saímos vitoriosos.", - 2: "Ahahaha, eu venci, e você perdeu.", - 3: "Posso emprestar meu traje? Pode te ajudar a batalhar!\nAhahaha, estou brincando!", - 4: "Eu sou o vencedor! O que quer dizer, você perdeu." - } - }, - "crasher_wake": { - "encounter": { - 1: "Crash! Crash! Cuidado!\nDemolidor Wake… está… aqui!", - 2: "Crash! Crash! Demolidor Wake!", - 3: "Sou a onda de poder que vai te lavar!" - }, - "victory": { - 1: "Isso coloca um sorriso no meu rosto!\nGuhahaha! Foi uma explosão!", - 2: "Hunwah! Acabou e terminou!\nComo vou dizer isso...\nQuero mais! Queria batalhar muito mais!", - 3: "O QUÊ?!" - }, - "defeat": { - 1: "Siiiiim! Isso mesmo!", - 2: "Eu venci, mas quero mais! Queria batalhar muito mais!", - 3: "Até logo!" - } - }, - "falkner": { - "encounter": { - 1: "Vou mostrar o verdadeiro poder dos magníficos Pokémon pássaros!", - 2: "Ventos, fiquem comigo!", - 3: "Pai! Espero que esteja vendo minha batalha de cima!" - }, - "victory": { - 1: "Eu entendo... Vou sair graciosamente.", - 2: "Uma derrota é uma derrota. Você é realmente forte.", - 3: "...Droga! Sim, eu perdi." - }, - "defeat": { - 1: "Pai! Venci com seus amados Pokémon pássaros...", - 2: "Pokémon pássaros são os melhores afinal!", - 3: "Sinto que estou alcançando meu pai!" - } - }, - "nessa": { - "encounter": { - 1: "Não importa que tipo de plano sua mente refinada possa estar tramando, meu parceiro e eu vamos afundá-lo.", - 2: "Não estou aqui para conversar. Estou aqui para vencer!", - 3: "Este é um pequeno presente dos meus Pokémon... Espero que você possa recebê-lo!" - }, - "victory": { - 1: "Você e seus Pokémon são demais...", - 2: "Como...? Como isso pode ser?!", - 3: "Fui totalmente arrastada!" - }, - "defeat": { - 1: "A onda furiosa ataca novamente!", - 2: "Hora de surfar na onda da vitória!", - 3: "Hehe!" - } - }, - "melony": { - "encounter": { - 1: "Não vou me segurar!", - 2: "Tudo bem, acho que devemos começar.", - 3: "Vou congelar você completamente!" - }, - "victory": { - 1: "Você... Você é muito bom, hein?", - 2: "Se você encontrar Gordie por aí, certifique-se de dar uma boa surra nele, ok?", - 3: "Acho que você levou a quebra de gelo um pouco literalmente demais..." - }, - "defeat": { - 1: "Agora você vê como as batalhas podem ser severas?", - 2: "Hee! Parece que ganhei de novo!", - 3: "Você está segurando?" - } - }, - "marlon": { - "encounter": { - 1: "Você parece forte! Vamos começar!", - 2: "Sou forte como a amplitude do oceano. Você vai ser varrido, com certeza.", - 3: "Oh ho, então estou enfrentando você! Isso é fora do comum." - }, - "victory": { - 1: "Você foi incrível! Está criando alguns Pokémon incríveis. Você dominou a coisa de Treinador!", - 2: "Você não apenas parece forte, você é forte de verdade! Eh, eu também fui varrido!", - 3: "Você é forte como uma onda impressionante!" - }, - "defeat": { - 1: "Você é forte, mas não é o suficiente para mudar o mar, ok!", - 2: "Hee! Parece que ganhei de novo!", - 3: "Doce, doce vitória!" - } - }, - "shauntal": { - "encounter": { - 1: "Com licença. Você é um desafiante, certo?\nSou a usuária de Pokémon do tipo Fantasma da Elite dos Quatro, Shauntal, e serei sua oponente.", - 2: "Adoro escrever sobre Treinadores que vêm aqui e os Pokémon que treinam.\nPosso usar você e seus Pokémon como tema?", - 3: "Cada pessoa que trabalha com Pokémon tem uma história para contar.\nQue história está prestes a ser contada?" - }, - "victory": { - 1: "Uau. Estou sem palavras!", - 2: "D-desculpe! Primeiro, preciso me desculpar com meus Pokémon...\n\nLamento muito que você tenha tido uma experiência ruim por minha causa!", - 3: "Mesmo com isso, ainda sou uma da Elite dos Quatro!" - }, - "defeat": { - 1: "Hehe.", - 2: "Isso me deu um excelente material para meu próximo romance!", - 3: "E assim, outra história termina..." - } - }, - "marshal": { - "encounter": { - 1: "Meu mentor, Alder, vê seu potencial como Treinador e está interessado em você.\nMeu objetivo é testá-lo—levar você aos limites da sua força. Kiai!", - 2: "Vitória, vitória decisiva, é meu objetivo! Desafiante, aqui vou eu!", - 3: "Em mim mesmo, procuro desenvolver a força de um lutador e eliminar qualquer fraqueza em mim!\nPrevalecendo com a força de minhas convicções!" - }, - "victory": { - 1: "Ufa! Bem feito!", - 2: "À medida que suas batalhas continuarem, mire em alturas ainda maiores!", - 3: "A força demonstrada por você e seus Pokémon me impressionou profundamente..." - }, - "defeat": { - 1: "Hmm.", - 2: "Isso foi uma boa batalha.", - 3: "Haaah! Haaah! Haiyaaaah!" - } - }, - "cheren": { - "encounter": { - 1: "Você me lembra um velho amigo. Isso me deixa animado para essa batalha Pokémon!", - 2: "As batalhas Pokémon não têm sentido se você não pensa por que você batalha.\nOu melhor, isso torna as batalhas junto com Pokémon sem sentido.", - 3: "Meu nome é Cheren! Sou um Líder de Ginásio e professor! Prazer em conhecê-lo." - }, - "victory": { - 1: "Obrigado! Vi o que estava faltando em mim.", - 2: "Obrigado! Sinto que vi um pouco do caminho em direção aos meus ideais.", - 3: "Hmm... Isso é problemático." - }, - "defeat": { - 1: "Como Líder de Ginásio, meu objetivo é ser um obstáculo para você superar.", - 2: "Tudo bem!", - 3: "Cheguei onde estou porque os Pokémon estavam ao meu lado.\nTalvez precisemos pensar por que os Pokémon nos ajudam, não em termos de Pokémon e Treinadores, mas como uma relação entre seres vivos." - } - }, - "chili": { - "encounter": { - 1: "Ihuuu! Hora de brincar com FOGO!! Sou o mais forte dos nossos irmãos!", - 2: "Ta-da! O incendiário do tipo Fogo Chili—sou eu—será seu oponente!", - 3: "Vou mostrar o que eu e meus tipos de Fogo podemos fazer!" - }, - "victory": { - 1: "Você me pegou. Estou... queimado...", - 2: "Uau! Você está pegando fogo!", - 3: "Ai! Você me pegou!" - }, - "defeat": { - 1: "Estou pegando fogo! Jogue comigo, e você se queimará!", - 2: "Quando você brinca com fogo, você se queima!", - 3: "Quero dizer, vamos lá, seu oponente era eu! Você não tinha chance!" - } - }, - "cilan": { - "encounter": { - 1: "Nada pessoal... Sem ressentimentos... Eu e meus Pokémon do tipo Grama vamos...\nUm... Vamos batalhar, aconteça o que acontecer.", - 2: "Então, hum, se você está bem comigo, vou, hum, colocar tudo o que tenho em ser, er, você sabe, seu oponente.", - 3: "OK… Então, hum, eu sou o Cilan, gosto de Pokémon do tipo Grama." - }, - "victory": { - 1: "Er... Acabou agora?", - 2: "…Que surpresa. Você é muito forte, não é?\nAcho que meus irmãos também não teriam sido capazes de te derrotar...", - 3: "…Huh. Parece que meu timing estava, hum, errado?" - }, - "defeat": { - 1: "Huh? Ganhei?", - 2: "Acho...\nSuponho que ganhei, porque competi com meus irmãos Chili e Cress, e todos conseguimos ficar mais fortes.", - 3: "Foi... uma experiência bastante emocionante..." - } - }, - "roark": { - "encounter": { - 1: "Preciso ver seu potencial como Treinador. E, vou precisar ver a dureza dos Pokémon que batalham com você!", - 2: "Vamos lá! Estes são meus Pokémon de pedra, meu orgulho e alegria!", - 3: "Pokémon do tipo Pedra são simplesmente os melhores!", - 4: "Preciso ver seu potencial como Treinador. E, vou precisar ver a dureza dos Pokémon que batalham com você!" - }, - "victory": { - 1: "O-o que? Isso não pode ser! Meus Pokémon fortificados!", - 2: "...Perdemos o controle. Da próxima vez, gostaria de desafiá-lo a uma corrida de escavação de fósseis no subsolo.", - 3: "Com habilidade como a sua, é natural que você vença.", - 4: "O-o que?! Não pode ser! Nem isso foi suficiente?", - 5: "Eu estraguei tudo." - }, - "defeat": { - 1: "Veja? Estou orgulhoso do meu estilo de batalha rochoso!", - 2: "Obrigado! A batalha me deu confiança de que talvez eu consiga vencer meu pai!", - 3: "Sinto como se tivesse acabado de quebrar uma pedra muito teimosa!" - } - }, - "morty": { - "encounter": { - 1: "Com um pouco mais, eu poderia ver um futuro em que encontro o Pokémon lendário.\nVocê vai me ajudar a alcançar esse nível!", - 2: "Dizem que um Pokémon com cores de arco-íris aparecerá diante de um Treinador verdadeiramente poderoso.\nAcreditei nessa história, então treinei secretamente aqui a vida toda. Como resultado, agora posso ver o que os outros não podem.\nVejo uma sombra da pessoa que fará o Pokémon aparecer.\nAcredito que essa pessoa sou eu! Você vai me ajudar a alcançar esse nível!", - 3: "Quer você escolha acreditar ou não, o poder místico existe.", - 4: "Você pode testemunhar os frutos do meu treinamento.", - 5: "Você deve fazer sua alma se tornar uma com a dos Pokémon. Você pode fazer isso?", - 6: "Diga, você quer fazer parte do meu treinamento?" - }, - "victory": { - 1: "Ainda não sou bom o suficiente...", - 2: "Eu vejo... Sua jornada o levou a lugares distantes e você testemunhou muito mais do que eu.\nEu invejo você por isso...", - 3: "Como isso é possível...", - 4: "Não acho que nossos potenciais sejam tão diferentes.\nMas você parece ter algo mais do que isso... Que seja.", - 5: "Acho que preciso de mais treinamento.", - 6: "Isso é uma pena." - }, - "defeat": { - 1: "Eu me movi... mais um passo adiante.", - 2: "Fufufu...", - 3: "O-o que?! Não pode ser! Nem isso foi suficiente?", - 4: "Sinto como se tivesse acabado de quebrar uma pedra muito teimosa!", - 5: "Ahahahah!", - 6: "Eu sabia que venceria!" - } - }, - "crispin": { - "encounter": { - 1: "Quero vencer, então é exatamente isso que vou fazer!", - 2: "Eu batalho porque quero batalhar! E sabe de uma coisa? É assim que deve ser!" - }, - "victory": { - 1: "Queria vencer... mas perdi!", - 2: "Eu perdi... porque não consegui vencer!" - }, - "defeat": { - 1: "Ei, espere um segundo. Eu acabei de vencer? Acho que acabei de vencer! Que satisfação!", - 2: "Uou! Isso foi incrível!" - } - }, - "amarys": { - "encounter": { - 1: "Quero ser a pessoa a ajudar alguém em particular. Sendo assim, não posso me dar ao luxo de perder.\n... Nossa batalha começa agora." - }, - "victory": { - 1: "Eu sou... não o suficiente, eu vejo." - }, - "defeat": { - 1: "A vitória pertence a mim. Bem lutado." - } - }, - "lacey": { - "encounter": { - 1: "Vou enfrentar você com meu time usual como membro da Elite dos Quatro." - }, - "victory": { - 1: "Foi uma excelente batalha. Estou ansiosa para o próximo desafio." - }, - "defeat": { - 1: "Fufufu... Nada mal.\nDesafiantes que derrotam a Elite dos Quatro são dignos de notar." - } - }, - "drayton": { - "encounter": { - 1: `Cara, eu amo cadeiras. Você não ama cadeiras? Que salva-vidas. - $Não entendo por que todo mundo não fica sentado o tempo todo. Ficar de pé é cansativo!`, - }, - "victory": { - 1: "Acho que deveria ter esperado por isso!" - }, - "defeat": { - 1: "Heh heh! Não ligue para mim, só pegando uma vitória aqui. Entendo se você estiver chateado, mas não vá dar uma de Kieran comigo, OK?" - } - }, - "ramos": { - "encounter": { - 1: `Você gostou do jardim de diversão que fiz com todas essas plantas resistentes minhas? - $A força delas é um sinal da minha força como jardineiro e Líder de Ginásio! Você tem certeza de que está pronto para enfrentar tudo isso?`, - }, - "victory": { - 1: "Você acredita nos seus Pokémon... E eles acreditam em você também... Foi uma boa batalha, broto." - }, - "defeat": { - 1: "Hohoho... De fato. Pequenas lâminas frágeis de grama conseguem quebrar até mesmo concreto." - } - }, - "viola": { - "encounter": { - 1: `Seja as lágrimas de frustração que seguem uma derrota ou o florescer da alegria que vem com a vitória… - $Ambos são ótimos temas para minha câmera! Fantástico! Isso vai ser simplesmente fantástico! - $Agora venha para cima de mim!`, - 2: "Minha lente está sempre focada na vitória – não vou deixar nada estragar esta foto!" - }, - "victory": { - 1: "Você e seus Pokémon me mostraram uma nova profundidade de campo! Fantástico! Simplesmente fantástico!", - 2: `O mundo que você vê através de uma lente, e o mundo que você vê com um Pokémon ao seu lado… - $O mesmo mundo pode parecer completamente diferente dependendo do seu ponto de vista.` - }, - "defeat": { - 1: "A foto do momento da minha vitória vai ser um verdadeiro sucesso!", - 2: "Sim! Tirei ótimas fotos!" - } - }, - "candice": { - "encounter": { - 1: `Você quer desafiar a Candice? Com certeza! Eu estava esperando por alguém forte! - $Mas devo te avisar, sou forte porque sei como focar.`, - 2: `Pokémon, moda, romance… É tudo uma questão de foco! - $Vou te mostrar exatamente o que quero dizer. Prepare-se para perder!` - }, - "victory": { - 1: "Devo dizer, estou aquecida para você! Posso até te admirar um pouco.", - 2: `Uau! Você é ótimo! Ganhou meu respeito! - $Acho que seu foco e vontade nos derrubaram totalmente.` - }, - "defeat": { - 1: "Eu senti sua vontade de vencer, mas eu não perco!", - 2: "Viu? O foco da Candice! O foco dos meus Pokémon também é ótimo!" - } - }, - "gardenia": { - "encounter": { - 1: "Você tem uma aura vencedora. Então, de qualquer forma, isso vai ser divertido. Vamos ter nossa batalha!" - }, - "victory": { - 1: "Incrível! Você é muito bom, não é?" - }, - "defeat": { - 1: "Sim! Meus Pokémon e eu somos perfeitamente bons!" - } - }, - "aaron": { - "encounter": { - 1: "Ok! Deixe-me enfrentar você!" - }, - "victory": { - 1: "Batalhar é um assunto profundo e complexo..." - }, - "defeat": { - 1: "Vencer um membro da Elite dos Quatro não é fácil." - } - }, - "cress": { - "encounter": { - 1: "Isso mesmo! Serei eu e meus estimados tipos Água que você deve enfrentar na batalha!" - }, - "victory": { - 1: "Perder? Eu? Não acredito nisso." - }, - "defeat": { - 1: "Este é o resultado apropriado quando eu sou seu oponente." - } - }, - "allister": { - "encounter": { - 1: "Sou Allister.\nA-aqui... vou eu..." - }, - "victory": { - 1: `Quase perdi minha máscara de tanto choque... Isso foi… - $Uau. Posso ver sua habilidade pelo que ela é.`, - }, - "defeat": { - 1: "I-isso foi incrível!" - } - }, - "clay": { - "encounter": { - 1: "Harrumph! Me deixou esperando, não foi, garoto? Tudo bem, hora de ver o que você pode fazer!" - }, - "victory": { - 1: "Cara, como é bom dar tudo de si e ainda assim ser derrotado!" - }, - "defeat": { - 1: `O que importa é como você reage à derrota. - $É por isso que as pessoas que usam a derrota como combustível para melhorar são duras.`, - } - }, - "kofu": { - "encounter": { - 1: "Vou te servir um prato completo de Pokémon do tipo Água! Mas não tente comê-los!" - }, - "victory": { - 1: "Vaultin' Veluza! Você é animado, não é! Um pouco ANIMADO DEMAIS, se me permite dizer!" - }, - "defeat": { - 1: "Volte para me ver novamente, ouviu?" - } - }, - "tulip": { - "encounter": { - 1: "Permita-me usar minhas habilidades para deixar seus lindos Pokémon ainda mais bonitos!" - }, - "victory": { - 1: "Sua força tem uma magia que não pode ser apagada." - }, - "defeat": { - 1: "Você sabe, na minha linha de trabalho, pessoas que carecem de talento em uma área ou outra frequentemente desaparecem rapidamente - nunca mais se ouve falar delas." - } - }, - "sidney": { - "encounter": { - 1: `Gostei desse olhar que você me deu. Acho que você vai ser um bom desafio. - $Isso é ótimo! Parece muito bom! Vamos nessa! - $Você e eu, vamos curtir uma batalha que só pode acontecer aqui!`, - }, - "victory": { - 1: "E aí, gostou? Eu perdi! Mas foi divertido, então não importa." - }, - "defeat": { - 1: "Sem ressentimentos, beleza?" - } - }, - "phoebe": { - "encounter": { - 1: `Enquanto treinava, adquiri a habilidade de me comunicar com Pokémon do tipo Fantasma. - $Sim, o vínculo que desenvolvi com os Pokémon é extremamente forte. - $Então, vamos lá, tente ver se você consegue até mesmo causar dano aos meus Pokémon!`, - }, - "victory": { - 1: "Ah, droga. Eu perdi." - }, - "defeat": { - 1: "Estou ansiosa para batalhar com você de novo algum dia!" - } - }, - "glacia": { - "encounter": { - 1: `Tudo o que vi foram desafios de Treinadores fracos e seus Pokémon. - $E você? Ficaria extremamente satisfeita se pudesse dar tudo de mim contra você!`, - }, - "victory": { - 1: `Você e seus Pokémon… Como seus espíritos queimam! - $O calor consumido é esmagador. - $Não é surpresa que minhas habilidades geladas falharam em te machucar.`, - }, - "defeat": { - 1: "Uma batalha intensamente apaixonada, sem dúvida." - } - }, - "drake": { - "encounter": { - 1: `Para nós, batalhar com Pokémon como parceiros, você sabe o que é necessário? Você sabe o que precisa? - $Se não souber, nunca prevalecerá contra mim!`, - }, - "victory": { - 1: "Excelente, deve-se dizer." - }, - "defeat": { - 1: "Dei meu máximo nessa batalha!" - } - }, - "wallace": { - "encounter": { - 1: `Há algo em você… Uma diferença na sua postura. - $Acho que sinto isso em você. Agora, me mostre. Mostre-me o poder que você tem com seus Pokémon. - $E eu, por minha vez, apresentarei uma performance de ilusões na água com meus Pokémon!`, - }, - "victory": { - 1: `Bravo. Agora percebo sua autenticidade e magnificência como Treinador de Pokémon. - $Tenho muita alegria em ter conhecido você e seus Pokémon. Você se mostrou digno.`, - }, - "defeat": { - 1: "Uma grande ilusão!" - } - }, - "lorelei": { - "encounter": { - 1: `Ninguém me supera quando se trata de Pokémon gelados! Movimentos congelantes são poderosos! - $Seus Pokémon estarão à minha mercê quando estiverem congelados! Hahaha! Está pronto?`, - }, - "victory": { - 1: "Como ousa!" - }, - "defeat": { - 1: "Não há nada que você possa fazer quando está congelado." - } - }, - "will": { - "encounter": { - 1: `Treinei por todo o mundo, tornando meus Pokémon psíquicos poderosos. - $Eu só posso melhorar! Perder não é uma opção!`, - }, - "victory": { - 1: "Eu… Eu não… acredito…" - }, - "defeat": { - 1: "Isso foi por pouco. Me pergunto o que está faltando em você." - } - }, - "malva": { - "encounter": { - 1: `Sinto que meu coração pode explodir em chamas. - $Estou ardendo de ódio por você, pirralho!`, - }, - "victory": { - 1: "Que novidade… Um novo desafiador derrotou Malva!" - }, - "defeat": { - 1: "Estou encantada! Sim, encantada por poder esmagar você sob meu calcanhar." - } - }, - "hala": { - "encounter": { - 1: "O velho Hala está aqui para fazer você gritar!" - }, - "victory": { - 1: "Pude sentir o poder que você ganhou na sua jornada." - }, - "defeat": { - 1: "Haha! Que batalha deliciosa!" - } - }, - "molayne": { - "encounter": { - 1: `Dei a posição de capitão ao meu primo Sophocles, mas estou confiante na minha habilidade. - $Minha força é como a de uma supernova!`, - }, - "victory": { - 1: "Certamente encontrei um Treinador interessante para enfrentar!" - }, - "defeat": { - 1: "Ahaha. Que batalha interessante." - } - }, - "rika": { - "encounter": { - 1: "Eu diria que vou pegar leve com você, mas… estaria mentindo! Pense rápido!" - }, - "victory": { - 1: "Nada mal, garoto." - }, - "defeat": { - 1: "Nahahaha! Você realmente é algo mais, garoto!" - } - }, - "bruno": { - "encounter": { - 1: "Nós vamos te triturar com nosso poder superior! Hoo hah!" - }, - "victory": { - 1: "Por quê? Como eu poderia perder?" - }, - "defeat": { - 1: "Você pode me desafiar o quanto quiser, mas os resultados nunca vão mudar!" - } - }, - "bugsy": { - "encounter": { - 1: "Sou Bugsy! Eu nunca perco quando se trata de Pokémon do tipo Inseto!" - }, - "victory": { - 1: "Uau, incrível! Você é um especialista em Pokémon!\nMinha pesquisa ainda não está completa. OK, você venceu." - }, - "defeat": { - 1: "Obrigado! Graças à nossa batalha, eu também pude fazer progressos na minha pesquisa!" - } - }, - "koga": { - "encounter": { - 1: "Fwahahahaha! Pokémon não são apenas sobre força bruta--você verá em breve!" - }, - "victory": { - 1: "Ah! Você provou seu valor!" - }, - "defeat": { - 1: "Você aprendeu a temer as técnicas do ninja?" - } - }, - "bertha": { - "encounter": { - 1: "Bem, você mostraria a esta velha senhora o quanto aprendeu?" - }, - "victory": { - 1: `Bem! Querida criança, devo dizer, isso foi muito impressionante. - $Seus Pokémon acreditaram em você e fizeram o melhor para te dar a vitória. - $Mesmo tendo perdido, me encontro com esse sorriso bobo!`, - }, - "defeat": { - 1: "Hahahahah! Parece que esta velha senhora ganhou!" - } - }, - "lenora": { - "encounter": { - 1: "Bem, desafiador, vou pesquisar como você batalha com os Pokémon que criou com tanto carinho!" - }, - "victory": { - 1: "Minha teoria sobre você estava correta. Você é mais do que talentoso… Você é motivado! Eu te saúdo!" - }, - "defeat": { - 1: "Ah ha ha! Se você perder, certifique-se de analisar o porquê e use esse conhecimento na próxima batalha!" - } - }, - "siebold": { - "encounter": { - 1: "Enquanto eu estiver vivo, continuarei em busca da culinária suprema... e dos oponentes mais fortes em batalha!" - }, - "victory": { - 1: "Guardarei minha memória de você e seus Pokémon para sempre em meu coração." - }, - "defeat": { - 1: `Nossa batalha Pokémon foi como alimento para minha alma. Isso vai me manter em frente. - $É assim que vou prestar meus respeitos a você por dar tudo de si na batalha!`, - } - }, - "roxie": { - "encounter": { - 1: "Prepare-se! Vou arrancar algum senso de você!" - }, - "victory": { - 1: "Selvagem! Sua razão já é mais tóxica que a minha!" - }, - "defeat": { - 1: "Ei, vamos lá! Seja sério! Você tem que dar mais de si!" - } - }, - "olivia": { - "encounter": { - 1: "Não precisa de introdução aqui. Hora de batalhar comigo, Olivia!" - }, - "victory": { - 1: "Realmente encantador… Tanto você quanto seus Pokémon…" - }, - "defeat": { - 1: "Mmm-hmm." - } - }, - "poppy": { - "encounter": { - 1: "Oooh! Você quer ter uma batalha Pokémon comigo?" - }, - "victory": { - 1: "Uagh?! Mmmuuuggghhh…" - }, - "defeat": { - 1: `Yaaay! Eu consegui! Eu der-ro-tei você! Você pode vir para… Para… Uma revanche? - $Venha para uma revanche quando quiser!`, - } - }, - "agatha": { - "encounter": { - 1: "Pokémon são para batalhas! Vou te mostrar como um verdadeiro Treinador batalha!" - }, - "victory": { - 1: "Oh meu! Você é algo especial, criança!" - }, - "defeat": { - 1: "Bahaha. É assim que uma batalha adequada é feita!" - } - }, - "flint": { - "encounter": { - 1: "Espero que você esteja aquecido, porque aqui vem o Big Bang!" - }, - "victory": { - 1: "Incrível! Seus movimentos são tão quentes que fazem os meus parecerem mornos!" - }, - "defeat": { - 1: "Huh? Isso é tudo? Acho que você precisa de um pouco mais de paixão." - } - }, - "grimsley": { - "encounter": { - 1: "O vencedor leva tudo, e não sobra nada para o perdedor." - }, - "victory": { - 1: "Quando se perde, perde-se tudo… A próxima coisa que vou procurar será a vitória, também!" - }, - "defeat": { - 1: "Se alguém vence, a pessoa que lutou contra essa pessoa perde." - } - }, - "caitlin": { - "encounter": { - 1: `Sou eu que apareci quando a flor se abriu. Você que estava esperando… - $Você parece um Treinador de Pokémon com força refinada e bondade profunda. - $O que eu procuro no meu oponente é uma força soberba… - $Por favor, libere seu poder ao máximo!`, - }, - "victory": { - 1: "Meus Pokémon e eu aprendemos muito! Agradeço a você." - }, - "defeat": { - 1: "Aspiro a reivindicar a vitória com elegância e graça." - } - }, - "diantha": { - "encounter": { - 1: `Batalhar contra você e seus Pokémon, todos vocês cheios de esperança para o futuro… - $Honestamente, isso apenas me enche da energia que preciso para continuar enfrentando cada novo dia! Sim!`, - }, - "victory": { - 1: "Testemunhar os espíritos nobres de você e seus Pokémon em batalha realmente tocou meu coração…" - }, - "defeat": { - 1: "Oh, fantástico! O que achou? Minha equipe foi bem legal, né?" - } - }, - "wikstrom": { - "encounter": { - 1: `Bem encontrado, jovem desafiador! Verdadeiramente sou a lâmina famosa de aço endurecido, Duque Wikstrom! - $Que a batalha comece! En garde!`, - }, - "victory": { - 1: "Glorioso! A confiança que você compartilha com seu honrado Pokémon supera até mesmo a minha!" - }, - "defeat": { - 1: `Que tipo de magia é essa? Meu coração bate incessantemente no meu peito! - $Vencer contra um oponente tão digno dá asas à minha alma--assim eu voo!`, - } - }, - "acerola": { - "encounter": { - 1: "Batalhar é simplesmente divertido! Vamos lá, eu posso te derrotar!" - }, - "victory": { - 1: "Eu… Estou sem palavras! Como você conseguiu?!" - }, - "defeat": { - 1: "Ehaha! Que vitória incrível!" - } - }, - "larry_elite": { - "encounter": { - 1: `Olá… Sou eu, Larry. - $Eu também sou membro da Elite dos Quatro, sim… Infelizmente para mim.`, - }, - "victory": { - 1: "Bem, isso tirou o vento debaixo das nossas asas…" - }, - "defeat": { - 1: "É hora de uma reunião com o chefe." - } - }, - "lance": { - "encounter": { - 1: "Estive esperando por você. Permita-me testar suas habilidades.", - 2: "Achei que você conseguiria chegar tão longe. Vamos começar." - }, - "victory": { - 1: "Você me pegou. Você é magnífico!", - 2: "Nunca esperei que outro Treinador me derrotasse… Estou surpreso." - }, - "defeat": { - 1: "Isso foi por pouco. Quer tentar de novo?", - 2: "Não é que você seja fraco. Não se incomode com isso." - } - }, - "karen": { - "encounter": { - 1: "Eu sou Karen. Você gostaria de um duelo com meus Pokémon do tipo Sombrio?", - 2: "Sou diferente daqueles que você já conheceu.", - 3: "Você montou uma equipe charmosa. Nossa batalha deve ser boa." - }, - "victory": { - 1: "Não! Eu não posso vencer. Como você ficou tão forte?", - 2: "Não me desviarei do meu caminho escolhido.", - 3: "O Campeão está ansioso para te conhecer." - }, - "defeat": { - 1: "Isso era o que eu esperava.", - 2: "Bem, isso foi relativamente divertido.", - 3: "Venha me visitar a qualquer momento." - } - }, - "milo": { - "encounter": { - 1: `Parece que você entende bem os Pokémon. - $Isso vai ser uma batalha e tanto! - $Vou ter que usar a Dynamax no meu Pokémon se eu quiser vencer!`, - }, - "victory": { - 1: "O poder da Grama murchou… Que desafiador incrível!" - }, - "defeat": { - 1: "Isso realmente vai te deixar em choque e admiração." - } - }, - "lucian": { - "encounter": { - 1: `Só um momento, por favor. O livro que estou lendo está quase no clímax emocionante… - $O herói obteve uma espada mística e está prestes a enfrentar sua prova final… Ah, tanto faz. - $Já que você chegou tão longe, vou deixar isso de lado e batalhar com você. - $Deixe-me ver se você alcançará tanta glória quanto o herói do meu livro!`, - }, - "victory": { - 1: "Eu vejo… Parece que você me colocou em xeque-mate." - }, - "defeat": { - 1: "Tenho uma reputação a manter." - } - }, - "drasna": { - "encounter": { - 1: `Você deve ser um Treinador forte. Sim, bastante forte… - $Isso é uma notícia maravilhosa! Enfrentar oponentes como você e sua equipe fará meus Pokémon crescerem como ervas daninhas!`, - }, - "victory": { - 1: "Oh, meu Deus. Isso foi uma batalha rápida… Espero que você volte novamente algum dia!" - }, - "defeat": { - 1: "Como isso é possível?" - } - }, - "kahili": { - "encounter": { - 1: "Então, aqui está você… Por que não vemos para quem os ventos favorecem hoje, você… ou eu?" - }, - "victory": { - 1: "É frustrante para mim como membro da Elite dos Quatro, mas parece que sua força é real." - }, - "defeat": { - 1: "Essa foi uma jogada de mestre!" - } - }, - "hassel": { - "encounter": { - 1: "Prepare-se para aprender em primeira mão como é a respiração ardente de uma batalha feroz!" - }, - "victory": { - 1: `A sorte sorriu para mim desta vez, mas… - $Julgando pelo andamento da luta, quem sabe se serei tão sortudo na próxima vez.`, - }, - "defeat": { - 1: "Essa foi uma jogada de mestre!" - } - }, - "blue": { - "encounter": { - 1: "Você deve ser muito bom para chegar tão longe." - }, - "victory": { - 1: "Só perdi para ele e agora para você… Ele? Hee, hee…" - }, - "defeat": { - 1: "Viu? Meu poder é o que me trouxe até aqui." - } - }, - "piers": { - "encounter": { - 1: "Prepare-se para uma mosh pit comigo e minha galera! Spikemuth, é hora de roquear!" - }, - "victory": { - 1: "Eu e minha equipe demos o nosso melhor. Vamos nos encontrar novamente para uma batalha algum dia…" - }, - "defeat": { - 1: "Minha garganta está desgastada de tanto gritar… Mas essa foi uma batalha empolgante!" - } - }, - "red": { - "encounter": { - 1: "…!" - }, - "victory": { - 1: "…?" - }, - "defeat": { - 1: "…!" - } - }, - "jasmine": { - "encounter": { - 1: "Oh… Seus Pokémon são impressionantes. Acho que vou gostar disso." - }, - "victory": { - 1: "Você é realmente forte. Vou ter que me esforçar muito mais também." - }, - "defeat": { - 1: "Eu nunca esperei ganhar." - } - }, - "lance_champion": { - "encounter": { - 1: "Ainda sou o Campeão. Não vou segurar nada." - }, - "victory": { - 1: "Esta é a emergência de um novo Campeão." - }, - "defeat": { - 1: "Defendi com sucesso meu Campeonato." - } - }, - "steven": { - "encounter": { - 1: `Diga-me… O que você viu na sua jornada com seus Pokémon? - $O que você sentiu, encontrando tantos outros Treinadores por aí? - $Viajar por esta terra rica… Isso despertou algo dentro de você? - $Quero que você venha até mim com tudo o que aprendeu. - $Meus Pokémon e eu responderemos com tudo o que sabemos!`, - }, - "victory": { - 1: "Então eu, o Campeão, caio em derrota…" - }, - "defeat": { - 1: "Esse tempo foi bem gasto! Obrigado!" - } - }, - "cynthia": { - "encounter": { - 1: "Eu, Cynthia, aceito seu desafio! Não haverá nenhuma trégua da minha parte!" - }, - "victory": { - 1: "Não importa o quão divertida a batalha seja, ela sempre terminará algum dia…" - }, - "defeat": { - 1: "Mesmo que você perca, nunca perca o amor pelos Pokémon." - } - }, - "iris": { - "encounter": { - 1: `Sabe de uma coisa? Estou realmente ansiosa para ter batalhas sérias com Treinadores fortes! - $Quero dizer, vamos lá! Os Treinadores que chegam aqui são Treinadores que desejam a vitória com todas as fibras do seu ser! - $E eles estão batalhando ao lado de Pokémon que passaram por inúmeras batalhas difíceis! - $Se eu batalhar com pessoas assim, não só eu ficarei mais forte, meus Pokémon também! - $E nós vamos nos conhecer ainda melhor! OK! Prepare-se! - $Sou Iris, a Campeã da Liga Pokémon, e vou te derrotar!`, - }, - "victory": { - 1: "Aghhhh… Eu dei o meu melhor, mas nós perdemos…" - }, - "defeat": { - 1: "Yay! Nós vencemos!" - } - }, - "hau": { - "encounter": { - 1: `Eu me pergunto se um Treinador batalha de maneira diferente dependendo se ele é de uma região quente ou fria. - $Vamos testar isso!`, - }, - "victory": { - 1: "Isso foi incrível! Acho que entendi um pouco melhor seu estilo agora!" - }, - "defeat": { - 1: "Cara, essa foi uma batalha e tanto!" - } - }, - "geeta": { - "encounter": { - 1: `Decidi entrar na batalha mais uma vez. - $Venha agora… Mostre-me os frutos do seu treinamento.`, - }, - "victory": { - 1: "Estou ansiosa para notícias de todas as suas conquistas!" - }, - "defeat": { - 1: "Qual o problema? Isso é tudo?" - } - }, - "nemona": { - "encounter": { - 1: "Yesss! Estou tão empolgada! Hora de soltar tudo!" - }, - "victory": { - 1: "Bem, isso foi ruim, mas ainda me diverti! Eu te pego na próxima!" - }, - "defeat": { - 1: "Bem, essa foi uma ótima batalha! Frutífera, com certeza." - } - }, - "leon": { - "encounter": { - 1: "Vamos ter um tempo absolutamente campeão!" - }, - "victory": { - 1: `Meu tempo como Campeão acabou… - $Mas que tempo campeão foi! - $Obrigado pela melhor batalha que já tive!`, - }, - "defeat": { - 1: "Um tempo absolutamente campeão, foi!" - } - }, - "whitney": { - "encounter": { - 1: "Eai! Você não acha que os Pokémon são, tipo, super fofos?" - }, - "victory": { - 1: "Waaah! Waaah! Você é tão mau!" - }, - "defeat": { - 1: "E é isso!" - } - }, - "chuck": { - "encounter": { - 1: "Hah! Você quer me desafiar? É corajoso ou apenas ignorante?" - }, - "victory": { - 1: "Você é forte! Por favor, me faça seu aprendiz?" - }, - "defeat": { - 1: "Aí está. Você percebe o quanto sou mais poderoso que você?" - } - }, - "katy": { - "encounter": { - 1: "Não baixe a guarda, a menos que queira se ver jogado no chão!" - }, - "victory": { - 1: "Todos os meus adoráveis Pokémon caíram como moscas!" - }, - "defeat": { - 1: "Coma, meu adorável Vivillon!" - } - }, - "pryce": { - "encounter": { - 1: "A juventude sozinha não garante a vitória! Experiência é o que conta." - }, - "victory": { - 1: "Excelente! Isso foi perfeito. Tente não esquecer o que sente agora." - }, - "defeat": { - 1: "Exatamente como eu imaginei." - } - }, - "clair": { - "encounter": { - 1: "Você sabe quem eu sou? E ainda se atreve a me desafiar?" - }, - "victory": { - 1: "Eu me pergunto até onde você pode ir com seu nível de habilidade. Isso deve ser fascinante." - }, - "defeat": { - 1: "E é isso." - } - }, - "maylene": { - "encounter": { - 1: `Vim desafiá-lo agora e não vou segurar nada. - $Por favor, prepare-se para a batalha!`, - }, - "victory": { - 1: "Eu admito a derrota…" - }, - "defeat": { - 1: "Isso foi incrível." - } - }, - "fantina": { - "encounter": { - 1: `Você vai me desafiar, não é? Mas eu vou ganhar. - $É o que a Líder do Ginásio de Hearthome faz, não?`, - }, - "victory": { - 1: "Você é tão incrivelmente forte. Sei porque perdi." - }, - "defeat": { - 1: "Estou tão, tão, muito feliz!" - } - }, - "byron": { - "encounter": { - 1: `Treinador! Você é jovem, assim como meu filho, Roark. - $Com mais Treinadores jovens assumindo o comando, o futuro dos Pokémon é brilhante! - $Então, como uma parede para os jovens, aceitarei seu desafio!`, - }, - "victory": { - 1: "Hmm! Meus Pokémon robustos--derrotados!" - }, - "defeat": { - 1: "Gwahahaha! Como foram meus Pokémon robustos?!" - } - }, - "olympia": { - "encounter": { - 1: "Um costume antigo decidindo o destino de alguém. A batalha começa!" - }, - "victory": { - 1: "Crie seu próprio caminho. Não deixe nada te atrapalhar. Seu destino, seu futuro." - }, - "defeat": { - 1: "Nosso caminho está claro agora." - } - }, - "volkner": { - "encounter": { - 1: `Já que você chegou tão longe, deve ser bastante forte… - $Espero que você seja o Treinador que me faça lembrar como é divertido batalhar!`, - }, - "victory": { - 1: `Você me venceu… - $Seu desejo e a maneira nobre como seus Pokémon batalharam por você… - $Eu até me senti emocionado durante nossa luta. Foi uma batalha muito boa.`, - }, - "defeat": { - 1: `Não foi nada chocante… - $Isso não é o que eu queria!`, - } - }, - "burgh": { - "encounter": { - 1: `M'hm… Se eu ganhar esta batalha, sinto que posso desenhar um quadro diferente de qualquer outro. - $OK! Posso ouvir minha musa da batalha claramente. Vamos direto ao ponto!`, - 2: `Claro, estou realmente orgulhoso de todos os meus Pokémon! - $Bem agora… Vamos direto ao ponto!` - }, - "victory": { - 1: "Acabou? Minha musa me abandonou?", - 2: "Hmm… Acabou! Você é incrível!" - }, - "defeat": { - 1: "Uau… É bonito de alguma forma, não é…", - 2: `Às vezes ouço as pessoas dizerem que foi uma vitória feia. - $Acho que se você está dando o seu melhor, qualquer vitória é bonita.` - } - }, - "elesa": { - "encounter": { - 1: `C'est fini! Quando tenho certeza disso, sinto um choque elétrico percorrer meu corpo! - $Quero sentir essa sensação, então agora meus amados Pokémon vão fazer sua cabeça girar!`, - }, - "victory": { - 1: "Eu queria fazer sua cabeça girar, mas você me surpreendeu." - }, - "defeat": { - 1: "Isso foi insatisfatório de alguma forma… Você dará tudo de si na próxima vez?" - } - }, - "skyla": { - "encounter": { - 1: `Finalmente é hora do confronto! Isso significa a batalha Pokémon que decide quem está no topo, certo? - $Eu amo estar no topo! Porque você pode ver para sempre e sempre de lugares altos! - $Então, que tal nós nos divertirmos?`, - }, - "victory": { - 1: "Ser seu oponente na batalha é uma nova fonte de força para mim. Obrigada!" - }, - "defeat": { - 1: "Ganhar ou perder, você sempre ganha algo com uma batalha, certo?" - } - }, - "brycen": { - "encounter": { - 1: `Há também força em estar com outras pessoas e Pokémon. - $Receber o apoio deles te fortalece. Vou te mostrar esse poder!`, - }, - "victory": { - 1: "A maravilhosa combinação de você e seus Pokémon! Que amizade linda!" - }, - "defeat": { - 1: "Condições extremas realmente testam e treinam você!" - } - }, - "drayden": { - "encounter": { - 1: `O que eu quero encontrar é um jovem Treinador que possa me mostrar um futuro brilhante. - $Vamos batalhar com tudo o que temos: sua habilidade, minha experiência e o amor com que criamos nossos Pokémon!`, - }, - "victory": { - 1: "Esse sentimento intenso que me invade após uma derrota… Não sei como descrevê-lo." - }, - "defeat": { - 1: "Harrumph! Sei que sua habilidade é maior que isso!" - } - }, - "grant": { - "encounter": { - 1: `Só há uma coisa que desejo. - $Que, superando um ao outro, encontremos um caminho para alturas ainda maiores.`, - }, - "victory": { - 1: "Você é uma parede que não consigo superar!" - }, - "defeat": { - 1: `Não desista. - $Isso é tudo o que realmente importa. - $As lições mais importantes da vida são simples.`, - } - }, - "korrina": { - "encounter": { - 1: "Hora da grande aparição de Lady Korrina!" - }, - "victory": { - 1: "É o seu próprio ser que permite que seus Pokémon evoluam!" - }, - "defeat": { - 1: "Que batalha explosiva!" - } - }, - "clemont": { - "encounter": { - 1: "Oh! Estou feliz por termos nos encontrado!" - }, - "victory": { - 1: "Sua paixão pela batalha me inspira!" - }, - "defeat": { - 1: "Parece que minha Máquina Treinadora-Crescer-Forte, Mach 2 está realmente funcionando!" - } - }, - "valerie": { - "encounter": { - 1: `Oh, se não é um jovem Treinador… É adorável conhecê-lo assim. - $Então, suponho que você ganhou o direito a uma batalha, como recompensa por seus esforços. - $Uma elusiva Fada pode parecer frágil como a brisa e delicado como uma flor, mas é forte.`, - }, - "victory": { - 1: "Espero que você encontre coisas para sorrir amanhã…" - }, - "defeat": { - 1: "Oh meu Deus, que pena…" - } - }, - "wulfric": { - "encounter": { - 1: `Sabe de uma coisa? Todos falamos muito sobre o que você aprende com as batalhas e os laços e tudo mais… - $Mas realmente, eu só faço isso porque é divertido. - $Quem se importa com o grandioso? Vamos batalhar!`, - }, - "victory": { - 1: "Incrível! Sou duro como um iceberg, mas você me quebrou por completo!" - }, - "defeat": { - 1: "Lute comigo e é isso que acontece!" - } - }, - "kabu": { - "encounter": { - 1: `Todo Treinador e Pokémon treina duro em busca da vitória. - $Mas isso significa que seu oponente também está se esforçando para vencer. - $No final, a partida é decidida por qual lado é capaz de liberar seu verdadeiro potencial.`, - }, - "victory": { - 1: "Estou feliz por poder lutar com você hoje!" - }, - "defeat": { - 1: "É uma ótima maneira de sentir meu próprio crescimento!" - } - }, - "bea": { - "encounter": { - 1: `Você tem um espírito inabalável que não será movido, não importa como você seja atacado? - $Acho que vou testar isso, certo?`, - }, - "victory": { - 1: "Senti o espírito de luta de seus Pokémon enquanto você os liderava na batalha." - }, - "defeat": { - 1: "Essa foi a melhor partida que alguém poderia esperar." - } - }, - "opal": { - "encounter": { - 1: "Deixe-me ver como você e seu Pokémon parceiro se comportam!" - }, - "victory": { - 1: "Seu rosa ainda está faltando, mas você é um Treinador excelente com Pokémon excelentes." - }, - "defeat": { - 1: "Muito ruim para você, eu acho." - } - }, - "bede": { - "encounter": { - 1: "Suponho que devo provar além de qualquer dúvida o quão patético você é e quão forte eu sou." - }, - "victory": { - 1: "Eu vejo… Bem, tudo bem. Eu não estava me esforçando muito de qualquer maneira." - }, - "defeat": { - 1: "Bom trabalho, eu suponho." - } - }, - "gordie": { - "encounter": { - 1: "Então, vamos acabar com isso." - }, - "victory": { - 1: "Eu só quero me enterrar em um buraco… Bem, acho que seria mais como cair daqui." - }, - "defeat": { - 1: "Batalhe como sempre faz, a vitória seguirá!" - } - }, - "marnie": { - "encounter": { - 1: `A verdade é que, quando tudo está dito e feito… Eu realmente só quero me tornar Campeã por mim mesma! - $Então, não leve para o pessoal quando eu chutar seu traseiro!`, - }, - "victory": { - 1: "OK, então eu perdi… Mas consegui ver muitos dos pontos bons de você e seus Pokémon!" - }, - "defeat": { - 1: "Espero que você tenha gostado das nossas táticas de batalha." - } - }, - "raihan": { - "encounter": { - 1: "Vou derrotar o Campeão, vencer todo o torneio e provar ao mundo o quão forte o grande Raihan realmente é!" - }, - "victory": { - 1: `Eu pareço bem mesmo quando perco. - $É uma verdadeira maldição. - $Acho que é hora de mais uma selfie!`, - }, - "defeat": { - 1: "Vamos tirar uma selfie para lembrar disso." - } - }, - "brassius": { - "encounter": { - 1: "Pressuponho que você está pronto? Que nossa obra de arte colaborativa comece!" - }, - "victory": { - 1: "Ahhh…avant-garde!" - }, - "defeat": { - 1: "Começarei uma nova peça imediatamente!" - } - }, - "iono": { - "encounter": { - 1: `Como você está se sentindo sobre esta batalha? - $... - $Vamos começar o show! Quão forte é o nosso desafiador? - $Eu não sei! Vamos descobrir juntos!`, - }, - "victory": { - 1: "Você é tão chamativo e brilhante quanto um Raio do Trovão de 10.000.000 volts, amigo!" - }, - "defeat": { - 1: "Seus olhos são MEUS!" - } - }, - "larry": { - "encounter": { - 1: "Quando tudo está dito e feito, a simplicidade é mais forte." - }, - "victory": { - 1: "Uma porção de derrota, hein?" - }, - "defeat": { - 1: "Vou encerrar o dia." - } - }, - "ryme": { - "encounter": { - 1: "Vamos lá, baby! Me agite até os ossos!" - }, - "victory": { - 1: "Você é legal, meu amigo, você move minha ALMA!" - }, - "defeat": { - 1: "Até mais, baby!" - } - }, - "grusha": { - "encounter": { - 1: "Tudo o que preciso fazer é garantir que o poder do meu Pokémon te arrependa até os ossos!" - }, - "victory": { - 1: "Sua paixão ardente... Eu meio que gosto, para ser honesto." - }, - "defeat": { - 1: "As coisas não esquentaram para você." - } - }, - "marnie_elite": { - "encounter": { - 1: "Você chegou até aqui, hein? Vamos ver se você pode lidar com meus Pokémon!", - 2: "Vou dar o meu melhor, mas não pense que vou pegar leve com você!" - }, - "victory": { - 1: "Não acredito que perdi... Mas você mereceu essa vitória. Bem feito!", - 2: "Parece que ainda tenho muito a aprender. Porém, grande batalha!" - }, - "defeat": { - 1: "Você lutou bem, mas eu tenho a vantagem! Melhor sorte na próxima vez!", - 2: "Parece que meu treinamento valeu a pena. Obrigado pela batalha!" - } - }, - "nessa_elite": { - "encounter": { - 1: "As marés estão mudando a meu favor. Pronto para ser levado pela corrente?", - 2: "Vamos fazer ondas com esta batalha! Espero que esteja preparado!" - }, - "victory": { - 1: "Você navegou nessas águas perfeitamente... Bem feito!", - 2: "Parece que minhas correntes não foram páreo para você. Bom trabalho!" - }, - "defeat": { - 1: "A água sempre encontra um caminho. Essa foi uma batalha refrescante!", - 2: "Você lutou bem, mas o poder do oceano é imparável!" - } - }, - "bea_elite": { - "encounter": { - 1: "Prepare-se! Meu espírito de luta brilha intensamente!", - 2: "Vamos ver se você consegue acompanhar meu ritmo implacável!" - }, - "victory": { - 1: "Sua força... É impressionante. Você realmente merece essa vitória.", - 2: "Nunca senti essa intensidade antes. Trabalho incrível!" - }, - "defeat": { - 1: "Outra vitória para meu rigoroso regime de treinamento! Bem feito!", - 2: "Você tem força, mas eu treinei mais. Grande batalha!" - } - }, - "allister_elite": { - "encounter": { - 1: "As sombras caem... Você está pronto para enfrentar seus medos?", - 2: "Vamos ver se você pode lidar com a escuridão que eu comando." - }, - "victory": { - 1: "Você dissipou as sombras... Por enquanto. Bem feito.", - 2: "Sua luz atravessou minha escuridão. Ótimo trabalho." - }, - "defeat": { - 1: "As sombras falaram... Sua força não é suficiente.", - 2: "A escuridão triunfa... Talvez na próxima vez você veja a luz." - } - }, - "raihan_elite": { - "encounter": { - 1: "Tempestade se formando! Vamos ver se você aguenta essa luta!", - 2: "Prepare-se para enfrentar o olho da tempestade!" - }, - "victory": { - 1: "Você enfrentou a tempestade... Trabalho incrível!", - 2: "Você navegou nos ventos perfeitamente... Grande batalha!" - }, - "defeat": { - 1: "Outra tempestade enfrentada, outra vitória conquistada! Bem lutado!", - 2: "Você foi pego na minha tempestade! Melhor sorte na próxima vez!" - } - }, - "alder": { - "encounter": { - 1: "Se prepare para uma batalha contra o Treinador mais forte de Unova!" - }, - "victory": { - 1: "Muito bem! Você certamente é um talento incomparável." - }, - "defeat": { - 1: `Um vento fresco sopra em meu coração... - $Que esforço extraordinário!` - } - }, - "kieran": { - "encounter": { - 1: `Através do trabalho duro, eu me torno cada vez mais forte! - $Eu não perco.` - }, - "victory": { - 1: `Eu não acredito... - $Que batalha divertida e emocionante!` - }, - "defeat": { - 1: `Uau, que batalha! - $Hora de você treinar ainda mais.` - } - }, - "rival": { - "encounter": { - 1: `@c{smile}Eai, estava procurando você! Sabia que você estava ansioso para começar, mas esperava pelo menos um tchau… - $@c{smile_eclosed}Então você está realmente perseguindo seu sonho, hein?\n Quase não consigo acreditar. - $@c{serious_smile_fists}Já que estamos aqui, que tal uma batalha?\nAfinal, quero ter certeza de que você está pronto. - $@c{serious_mopen_fists}Não se segure, quero que você dê tudo de si!` - }, - "victory": { - 1: `@c{shock}Caramba… Você me limpou.\nVocê é mesmo um novato? - $@c{smile}Talvez tenha sido um pouco de sorte, mas…\nQuem sabe você consiga chegar até o fim. - $Aliás, o professor me pediu para te dar esses itens. Eles parecem bem legais. - $@c{serious_smile_fists}Boa sorte lá fora! - $@c{smile}Ah- e eu espero que você aproveite o evento!` - }, - }, - "rival_female": { - "encounter": { - 1: `@c{smile_wave}Aí está você! Procurei você em todo lugar!\n@c{angry_mopen}Esqueceu de se despedir da sua melhor amiga? - $@c{smile_ehalf}Você está indo atrás do seu sonho, né?\nEsse dia realmente chegou, não é… - $@c{smile}Enfim, vou te perdoar por ter me esquecido, mas com uma condição. @c{smile_wave_wink}Você tem que lutar comigo! - $@c{angry_mopen}Dê o seu melhor! Não quer que sua aventura acabe antes de começar, né?` - }, - "victory": { - 1: `@c{shock}Você acabou de começar e já está tão forte?!@d{96}\n@c{angry}Você trapaceou, não foi? - $@c{smile_wave_wink}Brincadeirinha!@d{64} @c{smile_eclosed}Eu perdi de forma justa… Tenho a sensação de que você vai se sair muito bem lá fora. - $@c{smile}Aliás, o professor pediu para eu te dar alguns itens. Espero que sejam úteis! - $@c{smile_wave}Dê o seu melhor, como sempre! Eu acredito em você! - $@c{smile}Ah- e eu espero que você aproveite o evento!` - }, - }, - "rival_2": { - "encounter": { - 1: `@c{smile}Eai, você também está aqui?\n@c{smile_eclosed}Ainda com um recorde perfeito, hein…? - $@c{serious_mopen_fists}Sei que parece que eu te segui até aqui, mas isso não é totalmente verdade. - $@c{serious_smile_fists}Sinceramente, tenho estado ansioso por uma revanche desde que você me venceu em casa. - $Tenho treinado bastante, então vou dar uma luta difícil desta vez. - $@c{serious_mopen_fists}Não se segure, assim como antes!\nVamos lá!` - }, - "victory": { - 1: `@c{neutral_eclosed}Ah. Acho que fui confiante demais. - $@c{smile}Tudo bem, no entanto. Eu imaginei que isso poderia acontecer.\n@c{serious_mopen_fists}Isso só significa que preciso me esforçar mais para a próxima vez!\n - $@c{smile}Ah, não que você precise realmente de ajuda, mas eu tinha um extra desses itens e pensei que você poderia querer. - $@c{serious_smile_fists}Não espere outro depois deste!\nNão posso continuar dando vantagem ao meu oponente. - $@c{smile}Enfim, cuide-se, e aproveite o evento!` - }, - }, - "rival_2_female": { - "encounter": { - 1: `@c{smile_wave}Oh, que surpresa te encontrar aqui. Parece que você ainda está invicto. @c{angry_mopen}Hum… Nada mal! - $@c{angry_mopen}Eu sei o que você está pensando, e não, eu não estava te espionando. @c{smile_eclosed}Acontece que eu estava na área. - $@c{smile_ehalf}Estou feliz por você, mas só quero te avisar que está tudo bem perder às vezes. - $@c{smile}Aprendemos com nossos erros, muitas vezes mais do que se continuássemos vencendo. - $@c{angry_mopen}De qualquer forma, tenho treinado duro para nossa revanche, então é melhor você dar o seu melhor!` - }, - "victory": { - 1: `@c{neutral}Eu… não era para eu perder dessa vez… - $@c{smile}Ah bem. Isso só significa que vou ter que treinar ainda mais para a próxima vez! - $@c{smile_wave}Também consegui mais dois desses para você!\n@c{smile_wave_wink}Não precisa me agradecer~. - $@c{angry_mopen}Estes são os últimos, hein! Você não vai ganhar mais nenhum presente de mim depois desse! - $@c{smile_wave}Continue assim, e aproveite o evento!` - }, - "defeat": { - 1: "Está tudo bem perder às vezes…" - } - }, - "rival_3": { - "encounter": { - 1: `@c{smile}Eai, olha quem é! Faz um tempo.\n@c{neutral}Você… ainda está invicto? Hum. - $@c{neutral_eclosed}As coisas têm sido meio… estranhas.\nNão é a mesma coisa em casa sem você. - $@c{serious}Eu sei que é egoísta, mas preciso desabafar.\n@c{neutral_eclosed}Acho que você está se metendo em algo grande demais aqui. - $@c{serious}Nunca perder é irrealista.\nPrecisamos perder às vezes para crescer. - $@c{neutral_eclosed}Você teve uma grande jornada, mas ainda há muito pela frente, e só vai ficar mais difícil. @c{neutral}Você está preparado para isso? - $@c{serious_mopen_fists}Se sim, prove para mim.` - }, - "victory": { - 1: "@c{angry_mhalf}Isso é ridículo… Eu mal parei de treinar…\nComo ainda estamos tão distantes?" - }, - }, - "rival_3_female": { - "encounter": { - 1: `@c{smile_wave}Quanto tempo! Ainda não perdeu, né.\n@c{angry}Você está começando a me irritar. @c{smile_wave_wink}Brincadeirinha! - $@c{smile_ehalf}Mas sério, você não sente saudades de casa? Ou… de mim?\nEu… Eu quero dizer, sentimos muito a sua falta. - $@c{smile_eclosed}Eu apoio o seu sonho e tudo mais, mas a realidade é que você vai perder mais cedo ou mais tarde. - $@c{smile}E quando isso acontecer, estarei lá para você, como sempre.\n@c{angry_mopen}Agora, deixe-me mostrar o quão forte eu me tornei!` - }, - "victory": { - 1: "@c{shock}Depois de tudo isso… não foi o suficiente…?\nVocê nunca vai voltar a esse ritmo…" - }, - "defeat": { - 1: "Você deu o seu melhor, agora vamos para casa." - } - }, - "rival_4": { - "encounter": { - 1: `@c{neutral}Oi. - $Não vou enrolar com você.\n@c{neutral_eclosed}Estou aqui para vencer, simples assim. - $@c{serious_mhalf_fists}Aprendi a maximizar meu potencial dedicando todo o meu tempo ao treino. - $@c{smile}Você ganha muito tempo extra quando corta o sono e a interação social desnecessários. - $@c{serious_mopen_fists}Nada disso importa mais, não até eu vencer. - $@c{neutral_eclosed}Cheguei ao ponto de não perder mais.\n@c{smile_eclosed}Acho que sua filosofia não estava tão errada afinal. - $@c{angry_mhalf}Perder é para os fracos, e eu não sou mais fraco. - $@c{serious_mopen_fists}Prepare-se.` - }, - "victory": { - 1: "@c{neutral}O que…@d{64} O que é você?" - }, - }, - "rival_4_female": { - "encounter": { - 1: `@c{neutral}Sou eu! Você não esqueceu de mim de novo… esqueceu? - $@c{smile}Você deveria se orgulhar de até onde chegou. Parabéns!\nMas parece que é o fim da sua jornada. - $@c{smile_eclosed}Você despertou algo em mim que eu nunca soube que existia.\nParece que agora tudo o que faço é treinar. - $@c{smile_ehalf}Eu mal como ou durmo agora, só treino meus Pokémon o dia todo, ficando mais forte a cada vez. - $@c{neutral}Na verdade, eu… mal me reconheço. - $E agora, finalmente atingi o desempenho máximo.\nNão acho que alguém poderia me vencer agora. - $E sabe de uma coisa? É tudo por sua causa.\n@c{smile_ehalf}Eu não sei se te agradeço ou te odeio. - $@c{angry_mopen}Prepare-se.` - }, - "victory": { - 1: "@c{neutral}O que…@d{64} O que é você?" - }, - "defeat": { - 1: "$@c{smile}Você deveria se orgulhar de até onde chegou." - } - }, - "rival_5": { - "encounter": { - 1: "@c{neutral}…" - }, - "victory": { - 1: "@c{neutral}…" - }, - }, - "rival_5_female": { - "encounter": { - 1: "@c{neutral}…" - }, - "victory": { - 1: "@c{neutral}…" - }, - "defeat": { - 1: "$@c{smile_ehalf}…" - } - }, - "rival_6": { - "encounter": { - 1: `@c{smile_eclosed}Nos encontramos de novo. - $@c{neutral}Tive um tempo para refletir sobre tudo isso.\nHá uma razão para tudo isso parecer tão estranho. - $@c{neutral_eclosed}Seu sonho, minha vontade de te vencer…\nTudo faz parte de algo maior. - $@c{serious}Isso não é sobre mim, nem sobre você… É sobre o mundo, @c{serious_mhalf_fists}e é meu propósito te levar ao limite. - $@c{neutral_eclosed}Se cumpri esse propósito, não posso dizer, mas fiz tudo ao meu alcance. - $@c{neutral}Este lugar em que acabamos é assustador… Mas de alguma forma me sinto indiferente, como se já tivesse estado aqui antes. - $@c{serious_mhalf_fists}Você sente o mesmo, não sente? - $@c{serious}…é como se algo aqui estivesse falando comigo.\nIsso é tudo o que o mundo conhece há muito tempo. - $Aqueles momentos que apreciamos juntos que parecem tão recentes não passam de uma memória distante. - $@c{neutral_eclosed}Quem pode dizer se eles foram realmente reais em primeiro lugar. - $@c{serious_mopen_fists}Você precisa continuar empurrando, porque se não o fizer, isso nunca vai acabar. Você é o único que pode fazer isso. - $@c{serious_smile_fists}Eu mal sei o que tudo isso significa, só sei que é verdade. - $@c{serious_mopen_fists}Se você não pode me derrotar aqui e agora, você não terá chance.` - }, - "victory": { - 1: `@c{smile_eclosed}Parece que meu trabalho aqui está feito. - $Quero que você me prometa uma coisa.\n@c{smile}Depois que curar o mundo, por favor, volte para casa.` - }, - }, - "rival_6_female": { - "encounter": { - 1: `@c{smile_ehalf}Então somos só nós de novo. - $@c{smile_eclosed}Sabe, continuo pensando nisso… - $@c{smile_ehalf}Há algo nisso tudo, por que tudo parece tão estranho agora… - $@c{smile}Você tem seu sonho, e eu tenho essa ambição em mim… - $Não consigo evitar sentir que há um propósito maior em tudo isso, no que estamos fazendo, você e eu. - $@c{smile_eclosed}Acho que devo te levar ao limite. - $@c{smile_ehalf}Não tenho certeza se estou fazendo um bom trabalho nisso, mas tentei meu melhor até agora. - $Há algo neste lugar estranho e terrível… Tudo parece tão claro… - $Isso… é tudo o que o mundo conhece há muito tempo. - $@c{smile_eclosed}É como se eu mal pudesse lembrar das memórias que apreciamos juntos. - $@c{smile_ehalf}Elas foram reais? Elas parecem tão distantes agora… - $@c{angry_mopen}Você precisa continuar empurrando, porque se não o fizer, isso nunca vai acabar. Você é o único que pode fazer isso. - $@c{smile_ehalf}Eu… não sei o que tudo isso significa… mas sinto que é verdade. - $@c{neutral}Se você não pode me derrotar aqui e agora, você não terá chance.` - }, - "victory": { - 1: `@c{smile_ehalf}Eu… acho que cumpri meu propósito… - $@c{smile_eclosed}Prometa-me… Depois que curar o mundo… Por favor… volte para casa. - $@c{smile_ehalf}…Obrigada.` - }, - }, -}; - - -// Dialogue of the NPCs in the game when the player character is female. For languages that do not have gendered pronouns, this can be set to PGMdialogue. -export const PGFdialogue: DialogueTranslationEntries = { - "youngster": { - "encounter": { - 1: "Eai, quer batalhar?", - 2: "Você também é uma treinadora nova?", - 3: "Eai, nunca te vi antes. Vamos batalhar!", - 4: "Acabei de perder, então estou tentando encontrar mais Pokémon.\nEspera! Você parece fraca! Vamos batalhar!", - 5: "A gente já se conheceu antes? Não lembro muito bem. Enfim, prazer te conhecer!", - 6: "Beleza! Vamos nessa!", - 7: "Beleza! Lá vou eu! Vou te mostrar meu poder!", - 8: "Hahaha... Vou te mostrar o quão incríveis são meus Pokémon!", - 9: "Sem perder tempo com cumprimentos. Vamos logo, quando estiver pronta!", - 10: "Não baixe a guarda, ou você pode acabar chorando quando uma criança te vencer.", - 11: "Eu criei meus Pokémon com muito cuidado. Você não tem permissão para machucá-los!", - 12: "Que bom que você chegou! Não vai ser fácil daqui pra frente.", - 13: "As batalhas continuam para sempre! Bem-vinda ao mundo sem fim!" - }, - "victory": { - 1: "Uau! Você é forte!", - 2: "Eu não tive chance, né?", - 3: "Vou te encontrar de novo quando for mais velho e te vencer!", - 4: "Ugh. Não tenho mais Pokémon.", - 5: "Não acredito… NÃO ACREDITO! Como pude de novo…", - 6: "Não! Eu perdi!", - 7: "Uau! Você é incrível! Estou surpreso!", - 8: "Pode ser… Como… Eu e meus Pokémon somos os mais fortes, porém…", - 9: "Não vou perder da próxima vez! Vamos batalhar de novo algum dia!", - 10: "Aff! Não vê que sou apenas uma criança? Não foi justo você ir com tudo!", - 11: "Seus Pokémon são incríveis! Troca comigo!", - 12: "Me empolguei um pouco antes, mas sobre qual trabalho eu estava falando?", - 13: "Ahaha! É isso aí! Você já está em casa nesse mundo!" - } - }, - "lass": { - "encounter": { - 1: "Vamos batalhar, pode ser?", - 2: "Você parece uma treinadora nova. Vamos batalhar!", - 3: "Não te reconheço. Que tal uma batalha?", - 4: "Vamos ter uma batalha Pokémon divertida!", - 5: "Vou te mostrar como realmente usar Pokémon!", - 6: "Uma batalha séria começa com um começo sério! Tem certeza que está pronta?", - 7: "Você só é jovem uma vez. E só tem uma chance em cada batalha. Logo, você será apenas uma memória.", - 8: "Vai com calma comigo, tá? Mas vou lutar sério!", - 9: "A escola é chata. Não tenho nada para fazer. Só estou batalhando para passar o tempo." - }, - "victory": { - 1: "Isso foi impressionante! Tenho muito a aprender.", - 2: "Não pensei que você me venceria tão fácil…", - 3: "Espero que possamos ter uma revanche um dia.", - 4: "Isso foi incrivelmente divertido! Você me esgotou totalmente…", - 5: "Você realmente me ensinou uma lição! Você é incrível!", - 6: "Sério, eu perdi. Isso é, tipo, seriamente deprimente, mas você foi seriamente legal.", - 7: "Não preciso de memórias como essa. Deletando memória…", - 8: "Ei! Eu te disse para pegar leve comigo! Mesmo assim, você é legal quando fica séria.", - 9: "Estou realmente cansando de batalhar… Deve haver algo novo para fazer…" - } - }, - "ace_trainer": { - "encounter": { - 1: "Você parece bastante confiante.", - 2: "Seus Pokémon… Mostre-os para mim…", - 3: "Como sou um Treinador Ás, as pessoas acham que sou forte.", - 4: "Você sabe o que é preciso para ser um Treinador Ás?" - }, - "victory": { - 1: "Sim… Você tem bons Pokémon…", - 2: "O quê?! Mas sou um gênio das batalhas!", - 3: "Claro, você é a personagem principal!", - 4: "OK! OK! Você poderia ser uma Treinador Ás!" - }, - "defeat": { - 1: "Estou dedicando corpo e alma às batalhas de Pokémon!", - 2: "Tudo dentro das minhas expectativas… Nada para se surpreender…", - 3: "Eu achava que cresceria para ser uma pessoa frágil que parecia que quebraria se você apertasse muito.", - 4: "Claro que sou forte e não perco. É importante ganhar com graça." - } - }, - "twins": { - "encounter": { - 1: "Prepare-se, porque quando nos unimos, é o dobro do problema!", - 2: "Dois corações, uma estratégia – vamos ver se você consegue acompanhar nosso poder de gêmeos!", - 3: "Espero que esteja pronta para o dobro do problema, porque estamos prestes a causar!" - }, - "victory": { - 1: "Podemos ter perdido essa rodada, mas nosso vínculo permanece inquebrável!", - 2: "Nosso espírito de gêmeos não será apagado por muito tempo.", - 3: "Voltaremos mais fortes como uma dupla dinâmica!" - }, - "defeat": { - 1: "O poder dos gêmeos reina supremo!", - 2: "Dois corações, um triunfo!", - 3: "Dobro de sorrisos, dobro da dança da vitória!" - } - }, - "black_belt": { - "encounter": { - 1: "Elogio sua coragem ao me desafiar! Pois eu sou o que tem o chute mais forte!", - 2: "Oh, entendo. Você gostaria de ser cortada em pedaços? Ou prefere o papel de saco de pancadas?" - }, - "victory": { - 1: "Oh. Os Pokémon fizeram a luta. Meu chute forte não ajudou em nada.", - 2: "Hmmm… Se eu ia perder de qualquer maneira, esperava ficar totalmente destruído no processo." - }, - }, - "hex_maniac": { - "encounter": { - 1: "Normalmente, só escuto música clássica, mas se eu perder, acho que vou tentar um pouco de new age!", - 2: "Eu fico mais forte a cada lágrima que derramo." - }, - "victory": { - 1: "É o início da era de Aquário?", - 2: "Agora posso ficar ainda mais forte. Cresço com cada rancor." - }, - "defeat": { - 1: "New age se refere simplesmente aos compositores clássicos do século XX, certo?", - 2: "Não fique presa na tristeza ou frustração. Você pode usar seus rancores para se motivar." - } - }, - "baker": { - "encounter": { - 1: "Espero que esteja pronta para saborear a derrota!" - }, - "victory": { - 1: "Vou assar uma revanche." - }, - }, - "sailor": { - "encounter": { - 1: "Mano, você vai andar na prancha se perder!", - 2: "Vem com tudo! Sou um marinheiro com orgulho!", - 3: "Ahoy maruja! Tá enjoada, é?!" - }, - "victory": { - 1: "Argh! Perdi pra uma criança!", - 2: "Sua vontade de ganhar me afogou!", - 3: "Estou achando que quem tá enjoado sou eu..." - }, - }, - "ariana": { - "encounter": { - 1: "Pera aí! Não podemos deixar alguém solto por aí. Isso é prejudicial para o orgulho da Equipe Rocket, entende?", - 2: "Eu não sei ou me importo se o que estou fazendo é certo ou errado... Eu apenas coloco minha fé em Giovanni e faço o que me é dito.", - 3: "Sua viagem termina aqui. Vou te derrubar!" - }, - "victory": { - 1: "Uau, você é forte. Que desperdício. Se você se juntasse à Equipe Rocket, poderia se tornar uma Executiva.", - 2: "Eu... Eu estou arrasada...", - 3: "Aaaieeeee! Isso não pode estar acontecendo! Eu lutei muito, mas ainda perdi…" - }, - }, - "tabitha": { - "encounter": { - 1: "Hehehe! Então você veio até aqui! Mas você chegou tarde demais!", - 2: "Hehehe... Já chegou aqui, não é? Nós subestimamos você! Mas é isso! Eu sou um passo acima dos Capangas que você viu até agora. Não estou ganhando tempo. Vou te pulverizar!", - 3: "Vou te dar um gostinho da dor! Resigne-se a isso!" - }, - "victory": { - 1: "Hehehe! Você pode ter me derrotado, mas não tem chance contra o Chefe! Se você se perder agora, não terá que enfrentar uma surra sonora!", - 2: "Hehehe... Então, eu também perdi...", - 3: "Ahya! Como isso pode ser? Para um Admin como eu perder para uma treinadora qualquer..." - }, - }, - "shelly": { - "encounter": { - 1: "Ahahahaha! Você vai se meter nos assuntos da Equipe Aqua? Você é absolutamente destemida, simplesmente ignorante ou ambos! Você é tão fofa que chega a ser nojenta! Vou te derrubar", - 2: "O que é isso? Quem é essa criança mimada?", - 3: "Relaxe. Seja paciente. Vou te esmagar em breve." - }, - "victory": { - 1: "Ahahahaha! Fomos surpreendidos inesperadamente! Estamos sem opções. Teremos que recuar. Mas esta não é a última vez que você verá a Equipe Aqua! Temos outros planos! Não se esqueça disso!", - 2: "Ahhh?! Fui muito fácil com você?!", - 3: "Uh. Você está me dizendo que melhorou seu jogo ainda mais durante a luta? Você é uma pirralha com um futuro brilhante… Meu Pokémon e eu não temos mais forças para lutar… Vá em frente… Vá e seja destruída por Archie." - }, - }, - "matt": { - "encounter": { - 1: "Hoohahaha! O que, você tem um parafuso solto ou algo assim? Olhe para você, pequena pessoa Makuhita!", - 2: "Oho! Você! Você é aquela criança engraçada!", - 3: "O que você está fazendo aqui? Você nos seguiu?" - }, - "victory": { - 1: "Muito bem, até que o Chefe tenha tempo para você, serei seu oponente!", - 2: "Posso sentir! Posso sentir, tudo bem! A força saindo de você! Mais! Eu ainda quero mais! Mas parece que estamos sem tempo...", - 3: "Isso foi divertido! Eu sabia que você me mostraria um bom tempo! Estou ansioso para enfrentá-la novamente algum dia!" - }, - }, - "mars": { - "encounter": { - 1: "Sou Mars, uma das principais Comandantes da Equipe Galáctica.", - 2: "A visão da Equipe Galáctica para o futuro é inabalável. A oposição será esmagada sem piedade!", - 3: "Sentindo-se nervosa? Você deveria estar!" - }, - "victory": { - 1: "Isso não pode estar acontecendo! Como eu perdi?!", - 2: "Você tem alguma habilidade, eu admito isso.", - 3: "Derrotada... Este foi um erro caro." - } - }, - "zinzolin": { - "encounter": { - 1: "Você poderia se tornar uma ameaça para a Equipe Plasma, então vamos eliminá-la aqui e agora!", - 2: "Oh, pelo amor de Deus... Eu não esperava ter que lutar neste frio congelante!", - 3: "Você é uma treinadora impressionante para ter chegado tão longe. Mas termina aqui." - }, - "victory": { - 1: "Ghetsis... Eu falhei com você...", - 2: "Está amargamente frio. Estou tremendo. Estou sofrendo. Ainda assim, estou vitorioso.", - 3: "Hmph. Você é uma treinadora mais esperta do que eu esperava, mas não esperta o suficiente." - } - }, - "rood": { - "encounter": { - 1: "Você é uma ameaça para a Equipe Plasma. Não podemos deixá-la ir embora daqui e agora!", - 2: "Oh, este vento gelado... Eu nunca pensei que teria que lutar aqui!", - 3: "Você é uma treinadora notável para ter chegado tão longe. Mas é aqui que termina." - }, - "victory": { - 1: "Ghetsis... Eu falhei em minha missão...", - 2: "O frio é penetrante. Estou tremendo. Estou sofrendo. Ainda assim, triunfei.", - 3: "Hm. Você é uma treinadora talentosa, mas infelizmente não talentosa o suficiente." - } - }, - "xerosic": { - "encounter": { - 1: "Ah ha ha! Será um prazer. Vamos lá, pequena treinadora! Vamos ver o que você tem!", - 2: "Hmm... Você é mais poderosa do que parece. Eu me pergunto quanta energia há dentro de você.", - 3: "Eu estava esperando por você! Preciso fazer uma pequena pesquisa sobre você! Vamos começar!" - }, - "victory": { - 1: "Ah, você é bastante forte. Oh sim—muito forte, de fato.", - 2: "Ding-ding-ding! Você conseguiu! À vencedora, os despojos!", - 3: "Maravilhoso! Incrível! Você tem uma tremenda habilidade e coragem!" - } - }, - "bryony": { - "encounter": { - 1: "Eu sou Bryony, e será um prazer lutar com você. Mostre-me o que você tem.", - 2: "Impressionante... Você é mais poderosa do que parece. Vamos ver a verdadeira extensão de sua energia.", - 3: "Eu antecipei sua chegada. É hora de um pequeno teste. Vamos começar?" - }, - "victory": { - 1: "Você é bastante forte. Oh sim—muito forte, de fato.", - 2: "Ding-ding-ding! Você se saiu bem. A vitória é sua.", - 3: "Maravilhoso! Notável! Sua habilidade e coragem são admiráveis." - } - }, - "rocket_grunt": { - "encounter": { - 1: "Se prepara pra encrenca!", - 2: "Estamos realizando um grande trabalho aqui! Cai fora, garota!", - 3: "Entregue seus Pokémon ou enfrente a ira da Equipe Rocket!", - 4: "Você está prestes a experimentar o verdadeiro terror da Equipe Rocket!", - 5: "Ei, garota! Eu sou um tipo de cara da Equipe Rocket!" // Uso de gramática incorreta é proposital - }, - "victory": { - 1: "Equipe Rocket decolando de novo!", - 2: "Oh não! Eu deixei a Chave de Elevação cair!", - 3: "Eu estraguei tudo!", - 4: "Meus associados não vão tolerar isso!", - 5: "Você diz o que? Equipe Rocket tchau-tchau a vai-vai? Quebrado é diz você?" // Uso de gramática incorreta é proposital - }, - }, - "galactic_grunt": { - "encounter": { - 1: "Não mexa com a Equipe Galáctica!", - 2: "Presencie o poder da nossa tecnologia e o futuro que vislumbramos!", - 3: "Em nome da Equipe Galáctica, eliminarei qualquer um que ficar em nosso caminho!", - 4: "Prepare-se para perder!", - 5: "Espero que você esteja pronta para uma surra cósmica!" - }, - "victory": { - 1: "Fui amassado...", - 2: "Este contratempo não significa nada no grande esquema.", - 3: "Nossos planos são maiores que esta derrota.", - 4: "Como?!", - 5: "Nota para mim mesmo: praticar batalhas Pokémon, o mais rápido possível." - }, - }, - "galactic_boss_cyrus_1": { - "encounter": { - 1: "Você foi compelida a vir aqui por tal sentimentalismo vazio\nEu farei você se arrepender de ter ouvido seu coração!" - }, - "victory": { - 1: "Interessante. E bastante curioso." - }, - "defeat": { - 1: "Eu criarei meu novo mundo..." - } - }, - "misty": { - "encounter": { - 1: "Minha política é um ataque total com Pokémon do tipo Água!", - 2: "Oi, vou mostrar a força dos meus Pokémon aquáticos!", - 3: "Meu sonho era viajar e batalhar com treinadores poderosos…\nVocê será um desafio suficiente?" - }, - "victory": { - 1: "Você realmente é forte… Vou admitir que você é habilidosa…", - 2: "Hmm… Você sabe que só teve sorte, certo?!", - 3: "Uau, você é demais! Não acredito que me venceu!" - }, - "defeat": { - 1: "A poderosa Misty foi demais para você?", - 2: "Espero que você tenha visto as técnicas de natação elegantes dos meus Pokémon!", - 3: "Seus Pokémon não foram páreo para meus orgulhos e alegrias!" - } - }, - "lt_surge": { - "encounter": { - 1: "Meus Pokémon Elétricos me salvaram durante a guerra! Vou te mostrar como!", - 2: "Em sentido! Vou te chocar até você se render!", - 3: "Vou te eletrizar como faço com todos os meus inimigos na batalha!" - }, - "victory": { - 1: "Whoa! Seu time é de verdade, garota!", - 2: "Uau, você é forte! Até meus truques elétricos perderam para você.", - 3: "Isso foi uma derrota absolutamente chocante!" - }, - "defeat": { - 1: "Oh sim! Quando se trata de Pokémon do tipo Elétrico, sou o número um do mundo!", - 2: "Hahaha! Foi uma batalha eletrizante, garota!", - 3: "Uma batalha de Pokémon é guerra, e eu te mostrei combate em primeira mão!" - } - }, - "giovanni": { - "encounter": { - 1: "Eu, o líder da Equipe Rocket, vou te fazer sentir um mundo de dor!", - 2: "Meu treinamento aqui será vital antes de enfrentar meus antigos associados novamente.", - 3: "Não acho que você está preparada para o nível de fracasso que está prestes a experimentar!" - }, - "victory": { - 1: "O QUE! Eu, perder?! Não tenho nada a dizer a você!", - 2: "Hmm… Você nunca entenderia o que quero alcançar.", - 3: "Esta derrota está apenas adiando o inevitável.\nVou ressurgir a Equipe Rocket das cinzas a tempo." - }, - "defeat": { - 1: "Não ser capaz de medir sua própria força mostra que você ainda é apenas uma criança.", - 2: "Não tente interferir comigo novamente.", - 3: "Espero que entenda o quão tolo foi me desafiar." - } - }, - "brawly": { - "encounter": { - 1: "Oh cara, uma desafiante!\nVamos ver o que você pode fazer!", - 2: "Você parece uma grande onda.\nVamos batalhar!", - 3: "Hora de criar uma tempestade!\nVamos!" - }, - "victory": { - 1: "Uau, você me derrotou!", - 2: "Você surfou minha onda e me derrubou!", - 3: "Sinto-me perdido na Caverna Granito!" - }, - "defeat": { - 1: "Haha, eu surfei a grande onda!\nDesafie-me novamente algum dia.", - 2: "Surfe comigo novamente algum dia!", - 3: "Assim como as marés vão e vêm, espero que você volte para me desafiar novamente." - } - }, - "wattson": { - "encounter": { - 1: "Hora de levar um choque!\nWahahahaha!", - 2: "Vou fazer faíscas voarem!\nWahahahaha!", - 3: "Espero que tenha trazido Cura de Paralisia!\nWahahahaha!" - }, - "victory": { - 1: "Parece que estou sem carga!\nWahahahaha!", - 2: "Você me aterrissou completamente!\nWahahahaha!", - 3: "Obrigado pela emoção!\nWahahahaha!" - }, - "defeat": { - 1: "Você está totalmente carregada agora!\nWahahahaha!", - 2: "Espero ver você faíscando em batalhas futuras!\nWahahahaha!", - 3: "Wahahahaha! Que batalha eletrizante!" - } - }, - "winona": { - "encounter": { - 1: "Tenho sobrevoado os céus em busca de presas...\nE você é meu alvo!", - 2: "Não importa como será nossa batalha, meus Pokémon Voadores e eu triunfaremos com graça. Vamos batalhar!", - 3: "Espero que você não tenha medo de altura.\nVamos subir!" - }, - "victory": { - 1: "Você é a primeira Treinadora que vejo com mais graça do que eu.\nJogou excelentemente.", - 2: "Oh, meus Pokémon Voadores despencaram!\nMuito bem.", - 3: "Embora eu tenha caído, meus Pokémon continuarão a voar!" - }, - "defeat": { - 1: "Meus Pokémon Voadores e eu sempre dançaremos com elegância!", - 2: "Espero que tenha gostado do nosso show.\nNossa dança graciosa terminou.", - 3: "Você não quer ver nossa coreografia elegante novamente?" - } - }, - "tate": { - "encounter": { - 1: "Hehehe... Ficou surpresa de me ver sem minha irmã?", - 2: "Posso ver o que você está pensando...\nVocê quer batalhar!", - 3: "Como você pode derrotar alguém...\nQue sabe todos os seus movimentos?" - }, - "victory": { - 1: "Não pode ser ajudado...\nSinto falta da Liza...", - 2: "Seu vínculo com seus Pokémon era mais forte que o meu.", - 3: "Se eu estivesse com Liza, teríamos vencido.\nConseguimos completar os pensamentos um do outro!" - }, - "defeat": { - 1: "Meus Pokémon e eu somos superiores!", - 2: "Se você não consegue nem me derrotar, nunca será capaz de derrotar Liza também.", - 3: "Tudo graças ao meu treinamento rigoroso com Liza.\nPosso me tornar um com os Pokémon." - } - }, - "liza": { - "encounter": { - 1: "Fufufu... Ficou surpresa de me ver sem meu irmão?", - 2: "Posso determinar o que você deseja...\nVocê quer batalhar, não quer?", - 3: "Como você pode derrotar alguém...\nQue é um com seus Pokémon?" - }, - "victory": { - 1: "Não pode ser ajudado...\nSinto falta do Tate...", - 2: "Seu vínculo com seus Pokémon...\nÉ mais forte que o meu.", - 3: "Se eu estivesse com Tate, teríamos vencido.\nPodemos terminar as frases um do outro!" - }, - "defeat": { - 1: "Meus Pokémon e eu somos vitoriosos.", - 2: "Se você não consegue nem me derrotar, nunca será capaz de derrotar Tate também.", - 3: "Tudo graças ao meu treinamento rigoroso com Tate.\nPosso me sincronizar com meus Pokémon." - } - }, - "nessa": { - "encounter": { - 1: "Não importa que tipo de plano sua mente refinada possa estar tramando, meu parceiro e eu vamos afundá-la.", - 2: "Não estou aqui para conversar. Estou aqui para vencer!", - 3: "Este é um pequeno presente dos meus Pokémon... Espero que você possa recebê-la!" - }, - "victory": { - 1: "Você e seus Pokémon são demais...", - 2: "Como...? Como isso pode ser?!", - 3: "Fui totalmente arrastada!" - }, - "defeat": { - 1: "A onda furiosa ataca novamente!", - 2: "Hora de surfar na onda da vitória!", - 3: "Hehe!" - } - }, - "melony": { - "encounter": { - 1: "Não vou me segurar!", - 2: "Tudo bem, acho que devemos começar.", - 3: "Vou congelar você completamente!" - }, - "victory": { - 1: "Você... Você é muito boa, hein?", - 2: "Se você encontrar Gordie por aí, certifique-se de dar uma boa surra nele, ok?", - 3: "Acho que você levou a quebra de gelo um pouco literalmente demais..." - }, - "defeat": { - 1: "Agora você vê como as batalhas podem ser severas?", - 2: "Hee! Parece que ganhei de novo!", - 3: "Você está segurando?" - } - }, - "marlon": { - "encounter": { - 1: "Você parece forte! Vamos começar!", - 2: "Sou forte como a amplitude do oceano. Você vai ser varrida, com certeza.", - 3: "Oh ho, então estou enfrentando você! Isso é fora do comum." - }, - "victory": { - 1: "Você foi incrível! Está criando alguns Pokémon incríveis. Você dominou a coisa de Treinadora!", - 2: "Você não apenas parece forte, você é forte de verdade! Eh, eu também fui varrido!", - 3: "Você é forte como uma onda impressionante!" - }, - "defeat": { - 1: "Você é forte, mas não é o suficiente para mudar o mar, ok!", - 2: "Hee! Parece que ganhei de novo!", - 3: "Doce, doce vitória!" - } - }, - "shauntal": { - "encounter": { - 1: "Com licença. Você é uma desafiante, certo?\nSou a usuária de Pokémon do tipo Fantasma da Elite dos Quatro, Shauntal, e serei sua oponente.", - 2: "Adoro escrever sobre Treinadores que vêm aqui e os Pokémon que treinam.\nPosso usar você e seus Pokémon como tema?", - 3: "Cada pessoa que trabalha com Pokémon tem uma história para contar.\nQue história está prestes a ser contada?" - }, - "victory": { - 1: "Uau. Estou sem palavras!", - 2: "D-desculpe! Primeiro, preciso me desculpar com meus Pokémon...\n\nLamento muito que você tenha tido uma experiência ruim por minha causa!", - 3: "Mesmo com isso, ainda sou uma da Elite dos Quatro!" - }, - "defeat": { - 1: "Hehe.", - 2: "Isso me deu um excelente material para meu próximo romance!", - 3: "E assim, outra história termina..." - } - }, - "marshal": { - "encounter": { - 1: "Meu mentor, Alder, vê seu potencial como Treinadora e está interessado em você.\nMeu objetivo é testá-la—levar você aos limites da sua força. Kiai!", - 2: "Vitória, vitória decisiva, é meu objetivo! Desafiante, aqui vou eu!", - 3: "Em mim mesmo, procuro desenvolver a força de um lutador e eliminar qualquer fraqueza em mim!\nPrevalecendo com a força de minhas convicções!" - }, - "victory": { - 1: "Ufa! Bem feito!", - 2: "À medida que suas batalhas continuarem, mire em alturas ainda maiores!", - 3: "A força demonstrada por você e seus Pokémon me impressionou profundamente..." - }, - "defeat": { - 1: "Hmm.", - 2: "Isso foi uma boa batalha.", - 3: "Haaah! Haaah! Haiyaaaah!" - } - }, - "cheren": { - "encounter": { - 1: "Você me lembra um velho amigo. Isso me deixa animado para essa batalha Pokémon!", - 2: "As batalhas Pokémon não têm sentido se você não pensa por que você batalha.\nOu melhor, isso torna as batalhas junto com Pokémon sem sentido.", - 3: "Meu nome é Cheren! Sou um Líder de Ginásio e professor! Prazer em conhecê-la." - }, - "victory": { - 1: "Obrigado! Vi o que estava faltando em mim.", - 2: "Obrigado! Sinto que vi um pouco do caminho em direção aos meus ideais.", - 3: "Hmm... Isso é problemático." - }, - "defeat": { - 1: "Como Líder de Ginásio, meu objetivo é ser um obstáculo para você superar.", - 2: "Tudo bem!", - 3: "Cheguei onde estou porque os Pokémon estavam ao meu lado.\nTalvez precisemos pensar por que os Pokémon nos ajudam, não em termos de Pokémon e Treinadores, mas como uma relação entre seres vivos." - } - }, - "roark": { - "encounter": { - 1: "Preciso ver seu potencial como Treinadora. E, vou precisar ver a dureza dos Pokémon que batalham com você!", - 2: "Vamos lá! Estes são meus Pokémon de pedra, meu orgulho e alegria!", - 3: "Pokémon do tipo Pedra são simplesmente os melhores!", - 4: "Preciso ver seu potencial como Treinadora. E, vou precisar ver a dureza dos Pokémon que batalham com você!" - }, - "victory": { - 1: "O-o que? Isso não pode ser! Meus Pokémon fortificados!", - 2: "...Perdemos o controle. Da próxima vez, gostaria de desafiá-la a uma corrida de escavação de fósseis no subsolo.", - 3: "Com habilidade como a sua, é natural que você vença.", - 4: "O-o que?! Não pode ser! Nem isso foi suficiente?", - 5: "Eu estraguei tudo." - }, - "defeat": { - 1: "Veja? Estou orgulhoso do meu estilo de batalha rochoso!", - 2: "Obrigado! A batalha me deu confiança de que talvez eu consiga vencer meu pai!", - 3: "Sinto como se tivesse acabado de quebrar uma pedra muito teimosa!" - } - }, - "morty": { - "encounter": { - 1: "Com um pouco mais, eu poderia ver um futuro em que encontro o Pokémon lendário.\nVocê vai me ajudar a alcançar esse nível!", - 2: "Dizem que um Pokémon com cores de arco-íris aparecerá diante de um Treinador verdadeiramente poderoso.\nAcreditei nessa história, então treinei secretamente aqui a vida toda. Como resultado, agora posso ver o que os outros não podem.\nVejo uma sombra da pessoa que fará o Pokémon aparecer.\nAcredito que essa pessoa sou eu! Você vai me ajudar a alcançar esse nível!", - 3: "Quer você escolha acreditar ou não, o poder místico existe.", - 4: "Você pode testemunhar os frutos do meu treinamento.", - 5: "Você deve fazer sua alma se tornar uma com a dos Pokémon. Você pode fazer isso?", - 6: "Diga, você quer fazer parte do meu treinamento?" - }, - "victory": { - 1: "Ainda não sou bom o suficiente...", - 2: "Eu vejo... Sua jornada a levou a lugares distantes e você testemunhou muito mais do que eu.\nEu invejo você por isso...", - 3: "Como isso é possível...", - 4: "Não acho que nossos potenciais sejam tão diferentes.\nMas você parece ter algo mais do que isso... Que seja.", - 5: "Acho que preciso de mais treinamento.", - 6: "Isso é uma pena." - }, - "defeat": { - 1: "Eu me movi... mais um passo adiante.", - 2: "Fufufu...", - 3: "O-o que?! Não pode ser! Nem isso foi suficiente?", - 4: "Sinto como se tivesse acabado de quebrar uma pedra muito teimosa!", - 5: "Ahahahah!", - 6: "Eu sabia que venceria!" - } - }, - "drayton": { - "encounter": { - 1: `Cara, eu amo cadeiras. Você não ama cadeiras? Que salva-vidas. - $Não entendo por que todo mundo não fica sentado o tempo todo. Ficar de pé é cansativo!`, - }, - "victory": { - 1: "Acho que deveria ter esperado por isso!" - }, - "defeat": { - 1: "Heh heh! Não ligue para mim, só pegando uma vitória aqui. Entendo se você estiver chateada, mas não vá dar uma de Kieran comigo, OK?" - } - }, - "ramos": { - "encounter": { - 1: `Você gostou do jardim de diversão que fiz com todas essas plantas resistentes minhas? - $A força delas é um sinal da minha força como jardineiro e Líder de Ginásio! Você tem certeza de que está pronta para enfrentar tudo isso?`, - }, - "victory": { - 1: "Você acredita nos seus Pokémon... E eles acreditam em você também... Foi uma boa batalha, broto." - }, - "defeat": { - 1: "Hohoho... De fato. Pequenas lâminas frágeis de grama conseguem quebrar até mesmo concreto." - } - }, - "candice": { - "encounter": { - 1: `Você quer desafiar a Candice? Com certeza! Eu estava esperando por alguém forte! - $Mas devo te avisar, sou forte porque sei como focar.`, - 2: `Pokémon, moda, romance… É tudo uma questão de foco! - $Vou te mostrar exatamente o que quero dizer. Prepare-se para perder!` - }, - "victory": { - 1: "Devo dizer, estou aquecida para você! Posso até te admirar um pouco.", - 2: `Uau! Você é ótima! Ganhou meu respeito! - $Acho que seu foco e vontade nos derrubaram totalmente.` - }, - "defeat": { - 1: "Eu senti sua vontade de vencer, mas eu não perco!", - 2: "Viu? O foco da Candice! O foco dos meus Pokémon também é ótimo!" - } - }, - "gardenia": { - "encounter": { - 1: "Você tem uma aura vencedora. Então, de qualquer forma, isso vai ser divertido. Vamos ter nossa batalha!" - }, - "victory": { - 1: "Incrível! Você é muito boa, não é?" - }, - "defeat": { - 1: "Sim! Meus Pokémon e eu somos perfeitamente bons!" - } - }, - "clay": { - "encounter": { - 1: "Harrumph! Me deixou esperando, não foi, garota? Tudo bem, hora de ver o que você pode fazer!" - }, - "victory": { - 1: "Cara, como é bom dar tudo de si e ainda assim ser derrotado!" - }, - "defeat": { - 1: `O que importa é como você reage à derrota. - $É por isso que as pessoas que usam a derrota como combustível para melhorar são duras.`, - } - }, - "kofu": { - "encounter": { - 1: "Vou te servir um prato completo de Pokémon do tipo Água! Mas não tente comê-los!" - }, - "victory": { - 1: "Vaultin' Veluza! Você é animada, não é! Um pouco ANIMADA DEMAIS, se me permite dizer!" - }, - "defeat": { - 1: "Volte para me ver novamente, ouviu?" - } - }, - "wallace": { - "encounter": { - 1: `Há algo em você… Uma diferença na sua postura. - $Acho que sinto isso em você. Agora, me mostre. Mostre-me o poder que você tem com seus Pokémon. - $E eu, por minha vez, apresentarei uma performance de ilusões na água com meus Pokémon!`, - }, - "victory": { - 1: `Bravo. Agora percebo sua autenticidade e magnificência como Treinadora de Pokémon. - $Tenho muita alegria em ter conhecido você e seus Pokémon. Você se mostrou digna.`, - }, - "defeat": { - 1: "Uma grande ilusão!" - } - }, - "lorelei": { - "encounter": { - 1: `Ninguém me supera quando se trata de Pokémon gelados! Movimentos congelantes são poderosos! - $Seus Pokémon estarão à minha mercê quando estiverem congelados! Hahaha! Está pronta?`, - }, - "victory": { - 1: "Como ousa!" - }, - "defeat": { - 1: "Não há nada que você possa fazer quando está congelada." - } - }, - "will": { - "encounter": { - 1: `Treinei por todo o mundo, tornando meus Pokémon psíquicos poderosos. - $Eu só posso melhorar! Perder não é uma opção!`, - }, - "victory": { - 1: "Eu… Eu não… acredito…" - }, - "defeat": { - 1: "Isso foi por pouco. Me pergunto o que está faltando em você." - } - }, - "malva": { - "encounter": { - 1: `Sinto que meu coração pode explodir em chamas. - $Estou ardendo de ódio por você, pirralha!`, - }, - "victory": { - 1: "Que novidade… Uma nova desafiadora derrotou Malva!" - }, - "defeat": { - 1: "Estou encantada! Sim, encantada por poder esmagar você sob meu calcanhar." - } - }, - "molayne": { - "encounter": { - 1: `Dei a posição de capitão ao meu primo Sophocles, mas estou confiante na minha habilidade. - $Minha força é como a de uma supernova!`, - }, - "victory": { - 1: "Certamente encontrei uma Treinadora interessante para enfrentar!" - }, - "defeat": { - 1: "Ahaha. Que batalha interessante." - } - }, - "rika": { - "encounter": { - 1: "Eu diria que vou pegar leve com você, mas… estaria mentindo! Pense rápido!" - }, - "victory": { - 1: "Nada mal, garota." - }, - "defeat": { - 1: "Nahahaha! Você realmente é algo mais, garota!" - } - }, - "bugsy": { - "encounter": { - 1: "Sou Bugsy! Eu nunca perco quando se trata de Pokémon do tipo Inseto!" - }, - "victory": { - 1: "Uau, incrível! Você é uma especialista em Pokémon!\nMinha pesquisa ainda não está completa. OK, você venceu." - }, - "defeat": { - 1: "Obrigado! Graças à nossa batalha, eu também pude fazer progressos na minha pesquisa!" - } - }, - "lenora": { - "encounter": { - 1: "Bem, desafiadora, vou pesquisar como você batalha com os Pokémon que criou com tanto carinho!" - }, - "victory": { - 1: "Minha teoria sobre você estava correta. Você é mais do que talentosa… Você é motivada! Eu te saúdo!" - }, - "defeat": { - 1: "Ah ha ha! Se você perder, certifique-se de analisar o porquê e use esse conhecimento na próxima batalha!" - } - }, - "roxie": { - "encounter": { - 1: "Prepare-se! Vou arrancar algum senso de você!" - }, - "victory": { - 1: "Selvagem! Sua razão já é mais tóxica que a minha!" - }, - "defeat": { - 1: "Ei, vamos lá! Seja séria! Você tem que dar mais de si!" - } - }, - "flint": { - "encounter": { - 1: "Espero que você esteja aquecida, porque aqui vem o Big Bang!" - }, - "victory": { - 1: "Incrível! Seus movimentos são tão quentes que fazem os meus parecerem mornos!" - }, - "defeat": { - 1: "Huh? Isso é tudo? Acho que você precisa de um pouco mais de paixão." - } - }, - "caitlin": { - "encounter": { - 1: `Sou eu que apareci quando a flor se abriu. Você que estava esperando… - $Você parece uma Treinadora de Pokémon com força refinada e bondade profunda. - $O que eu procuro no meu oponente é uma força soberba… - $Por favor, libere seu poder ao máximo!`, - }, - "victory": { - 1: "Meus Pokémon e eu aprendemos muito! Agradeço a você." - }, - "defeat": { - 1: "Aspiro a reivindicar a vitória com elegância e graça." - } - }, - "wikstrom": { - "encounter": { - 1: `Bem encontrado, jovem desafiadora! Verdadeiramente sou a lâmina famosa de aço endurecido, Duque Wikstrom! - $Que a batalha comece! En garde!`, - }, - "victory": { - 1: "Gloriosa! A confiança que você compartilha com seu honrado Pokémon supera até mesmo a minha!" - }, - "defeat": { - 1: `Que tipo de magia é essa? Meu coração bate incessantemente no meu peito! - $Vencer contra uma oponente tão digna dá asas à minha alma--assim eu voo!`, - } - }, - "acerola": { - "encounter": { - 1: "Batalhar é simplesmente divertido! Vamos lá, eu posso te derrotar!" - }, - "victory": { - 1: "Eu… Estou sem palavras! Como você conseguiu?!" - }, - "defeat": { - 1: "Ehaha! Que vitória incrível!" - } - }, - "lance": { - "encounter": { - 1: "Estive esperando por você. Permita-me testar suas habilidades.", - 2: "Achei que você conseguiria chegar tão longe. Vamos começar." - }, - "victory": { - 1: "Você me pegou. Você é magnífica!", - 2: "Nunca esperei que outra Treinadora me derrotasse… Estou surpreso." - }, - "defeat": { - 1: "Isso foi por pouco. Quer tentar de novo?", - 2: "Não é que você seja fraca. Não se incomode com isso." - } - }, - "milo": { - "encounter": { - 1: `Parece que você entende bem os Pokémon. - $Isso vai ser uma batalha e tanto! - $Vou ter que usar a Dynamax no meu Pokémon se eu quiser vencer!`, - }, - "victory": { - 1: "O poder da Grama murchou… Que desafiadora incrível!" - }, - "defeat": { - 1: "Isso realmente vai te deixar em choque e admiração." - } - }, - "drasna": { - "encounter": { - 1: `Você deve ser uma Treinadora forte. Sim, bastante forte… - $Isso é uma notícia maravilhosa! Enfrentar oponentes como você e sua equipe fará meus Pokémon crescerem como ervas daninhas!`, - }, - "victory": { - 1: "Oh, meu Deus. Isso foi uma batalha rápida… Espero que você volte novamente algum dia!" - }, - "defeat": { - 1: "Como isso é possível?" - } - }, - "blue": { - "encounter": { - 1: "Você deve ser muito boa para chegar tão longe." - }, - "victory": { - 1: "Só perdi para ele e agora para você… Ele? Hee, hee…" - }, - "defeat": { - 1: "Viu? Meu poder é o que me trouxe até aqui." - } - }, - "lance_champion": { - "encounter": { - 1: "Ainda sou o Campeão. Não vou segurar nada." - }, - "victory": { - 1: "Esta é a emergência de uma nova Campeã." - }, - "defeat": { - 1: "Defendi com sucesso meu Campeonato." - } - }, - "whitney": { - "encounter": { - 1: "Eai! Você não acha que os Pokémon são, tipo, super fofos?" - }, - "victory": { - 1: "Waaah! Waaah! Você é tão má!" - }, - "defeat": { - 1: "E é isso!" - } - }, - "chuck": { - "encounter": { - 1: "Hah! Você quer me desafiar? É corajosa ou apenas ignorante?" - }, - "victory": { - 1: "Você é forte! Por favor, me faça seu aprendiz?" - }, - "defeat": { - 1: "Aí está. Você percebe o quanto sou mais poderoso que você?" - } - }, - "katy": { - "encounter": { - 1: "Não baixe a guarda, a menos que queira se ver jogada no chão!" - }, - "victory": { - 1: "Todos os meus adoráveis Pokémon caíram como moscas!" - }, - "defeat": { - 1: "Coma, meu adorável Vivillon!" - } - }, - "maylene": { - "encounter": { - 1: `Vim desafiá-la agora e não vou segurar nada. - $Por favor, prepare-se para a batalha!`, - }, - "victory": { - 1: "Eu admito a derrota…" - }, - "defeat": { - 1: "Isso foi incrível." - } - }, - "byron": { - "encounter": { - 1: `Treinadora! Você é jovem, assim como meu filho, Roark. - $Com mais Treinadores jovens assumindo o comando, o futuro dos Pokémon é brilhante! - $Então, como uma parede para os jovens, aceitarei seu desafio!`, - }, - "victory": { - 1: "Hmm! Meus Pokémon robustos--derrotados!" - }, - "defeat": { - 1: "Gwahahaha! Como foram meus Pokémon robustos?!" - } - }, - "volkner": { - "encounter": { - 1: `Já que você chegou tão longe, deve ser bastante forte… - $Espero que você seja a Treinadora que me faça lembrar como é divertido batalhar!`, - }, - "victory": { - 1: `Você me venceu… - $Seu desejo e a maneira nobre como seus Pokémon batalharam por você… - $Eu até me senti emocionado durante nossa luta. Foi uma batalha muito boa.`, - }, - "defeat": { - 1: `Não foi nada chocante… - $Isso não é o que eu queria!`, - } - }, - "valerie": { - "encounter": { - 1: `Oh, se não é uma jovem Treinadora… É adorável conhecê-la assim. - $Então, suponho que você ganhou o direito a uma batalha, como recompensa por seus esforços. - $Uma elusiva Fada pode parecer frágil como a brisa e delicado como uma flor, mas é forte.`, - }, - "victory": { - 1: "Espero que você encontre coisas para sorrir amanhã…" - }, - "defeat": { - 1: "Oh meu Deus, que pena…" - } - }, - "wulfric": { - "encounter": { - 1: `Sabe de uma coisa? Todos falamos muito sobre o que você aprende com as batalhas e os laços e tudo mais… - $Mas realmente, eu só faço isso porque é divertido. - $Quem se importa com o grandioso? Vamos batalhar!`, - }, - "victory": { - 1: "Incrível! Sou duro como um iceberg, mas você me quebrou por completo!" - }, - "defeat": { - 1: "Lute comigo e é isso que acontece!" - } - }, - "kabu": { - "encounter": { - 1: `Todo Treinador e Pokémon treina duro em busca da vitória. - $Mas isso significa que seu oponente também está se esforçando para vencer. - $No final, a partida é decidida por qual lado é capaz de liberar seu verdadeiro potencial.`, - }, - "victory": { - 1: "Estou feliz por poder lutar com você hoje!" - }, - "defeat": { - 1: "É uma ótima maneira de sentir meu próprio crescimento!" - } - }, - "bea": { - "encounter": { - 1: `Você tem um espírito inabalável que não será movido, não importa como você seja atacado? - $Acho que vou testar isso, certo?`, - }, - "victory": { - 1: "Senti o espírito de luta de seus Pokémon enquanto você os liderava na batalha." - }, - "defeat": { - 1: "Essa foi a melhor partida que alguém poderia esperar." - } - }, - "opal": { - "encounter": { - 1: "Deixe-me ver como você e seu Pokémon parceiro se comportam!" - }, - "victory": { - 1: "Seu rosa ainda está faltando, mas você é uma Treinadora excelente com Pokémon excelentes." - }, - "defeat": { - 1: "Muito ruim para você, eu acho." - } - }, - "bede": { - "encounter": { - 1: "Suponho que devo provar além de qualquer dúvida o quão patética você é e quão forte eu sou." - }, - "victory": { - 1: "Eu vejo… Bem, tudo bem. Eu não estava me esforçando muito de qualquer maneira." - }, - "defeat": { - 1: "Bom trabalho, eu suponho." - } - }, - "brassius": { - "encounter": { - 1: "Pressuponho que você está pronta? Que nossa obra de arte colaborativa comece!" - }, - "victory": { - 1: "Ahhh…avant-garde!" - }, - "defeat": { - 1: "Começarei uma nova peça imediatamente!" - } - }, - "iono": { - "encounter": { - 1: `Como você está se sentindo sobre esta batalha? - $... - $Vamos começar o show! Quão forte é o nossa desafiadora? - $Eu não sei! Vamos descobrir juntos!`, - }, - "victory": { - 1: "Você é tão chamativa e brilhante quanto um Raio do Trovão de 10.000.000 volts, amiga!" - }, - "defeat": { - 1: "Seus olhos são MEUS!" - } - }, - "ryme": { - "encounter": { - 1: "Vamos lá, baby! Me agite até os ossos!" - }, - "victory": { - 1: "Você é legal, minha amiga, você move minha ALMA!" - }, - "defeat": { - 1: "Até mais, baby!" - } - }, - "nessa_elite": { - "encounter": { - 1: "As marés estão mudando a meu favor. Pronta para ser levada pela corrente?", - 2: "Vamos fazer ondas com esta batalha! Espero que esteja preparada!" - }, - "victory": { - 1: "Você navegou nessas águas perfeitamente... Bem feito!", - 2: "Parece que minhas correntes não foram páreo para você. Bom trabalho!" - }, - "defeat": { - 1: "A água sempre encontra um caminho. Essa foi uma batalha refrescante!", - 2: "Você lutou bem, mas o poder do oceano é imparável!" - } - }, - "allister_elite": { - "encounter": { - 1: "As sombras caem... Você está pronta para enfrentar seus medos?", - 2: "Vamos ver se você pode lidar com a escuridão que eu comando." - }, - "victory": { - 1: "Você dissipou as sombras... Por enquanto. Bem feito.", - 2: "Sua luz atravessou minha escuridão. Ótimo trabalho." - }, - "defeat": { - 1: "As sombras falaram... Sua força não é suficiente.", - 2: "A escuridão triunfa... Talvez na próxima vez você veja a luz." - } - }, - "raihan_elite": { - "encounter": { - 1: "Tempestade se formando! Vamos ver se você aguenta essa luta!", - 2: "Prepare-se para enfrentar o olho da tempestade!" - }, - "victory": { - 1: "Você enfrentou a tempestade... Trabalho incrível!", - 2: "Você navegou nos ventos perfeitamente... Grande batalha!" - }, - "defeat": { - 1: "Outra tempestade enfrentada, outra vitória conquistada! Bem lutado!", - 2: "Você foi pega na minha tempestade! Melhor sorte na próxima vez!" - } - }, - "rival": { - "encounter": { - 1: `@c{smile}Eai, estava procurando você! Sabia que você estava ansiosa para começar, mas esperava pelo menos um tchau… - $@c{smile_eclosed}Então você está realmente perseguindo seu sonho, hein?\n Quase não consigo acreditar. - $@c{serious_smile_fists}Já que estamos aqui, que tal uma batalha?\nAfinal, quero ter certeza de que você está pronta. - $@c{serious_mopen_fists}Não se segure, quero que você dê tudo de si!` - }, - "victory": { - 1: `@c{shock}Caramba… Você me limpou.\nVocê é mesmo uma novata? - $@c{smile}Talvez tenha sido um pouco de sorte, mas…\nQuem sabe você consiga chegar até o fim. - $Aliás, o professor me pediu para te dar esses itens. Eles parecem bem legais. - $@c{serious_smile_fists}Boa sorte lá fora! - $@c{smile}Ah- e eu espero que você aproveite o evento!` - }, - }, - "rival_female": { - "encounter": { - 1: `@c{smile_wave}Aí está você! Procurei você em todo lugar!\n@c{angry_mopen}Esqueceu de se despedir da sua melhor amiga? - $@c{smile_ehalf}Você está indo atrás do seu sonho, né?\nEsse dia realmente chegou, não é… - $@c{smile}Enfim, vou te perdoar por ter me esquecido, mas com uma condição. @c{smile_wave_wink}Você tem que lutar comigo! - $@c{angry_mopen}Dê o seu melhor! Não quer que sua aventura acabe antes de começar, né?` - }, - "victory": { - 1: `@c{shock}Você acabou de começar e já está tão forte?!@d{96}\n@c{angry}Você trapaceou, não foi? - $@c{smile_wave_wink}Brincadeirinha!@d{64} @c{smile_eclosed}Eu perdi de forma justa… Tenho a sensação de que você vai se sair muito bem lá fora. - $@c{smile}Aliás, o professor pediu para eu te dar alguns itens. Espero que sejam úteis! - $@c{smile_wave}Dê o seu melhor, como sempre! Eu acredito em você! - $@c{smile}Ah- e eu espero que você aproveite o evento!` - }, - }, - "rival_2": { - "encounter": { - 1: `@c{smile}Eai, você também está aqui?\n@c{smile_eclosed}Ainda com um recorde perfeito, hein…? - $@c{serious_mopen_fists}Sei que parece que eu te segui até aqui, mas isso não é totalmente verdade. - $@c{serious_smile_fists}Sinceramente, tenho estado ansioso por uma revanche desde que você me venceu em casa. - $Tenho treinado bastante, então vou dar uma luta difícil desta vez. - $@c{serious_mopen_fists}Não se segure, assim como antes!\nVamos lá!` - }, - "victory": { - 1: `@c{neutral_eclosed}Ah. Acho que fui confiante demais. - $@c{smile}Tudo bem, no entanto. Eu imaginei que isso poderia acontecer.\n@c{serious_mopen_fists}Isso só significa que preciso me esforçar mais para a próxima vez!\n - $@c{smile}Ah, não que você precise realmente de ajuda, mas eu tinha um extra desses itens e pensei que você poderia querer. - $@c{serious_smile_fists}Não espere outro depois deste!\nNão posso continuar dando vantagem ao meu oponente. - $@c{smile}Enfim, cuide-se, e aproveite o evento!` - }, - }, - "rival_2_female": { - "encounter": { - 1: `@c{smile_wave}Oh, que surpresa te encontrar aqui. Parece que você ainda está invicta. @c{angry_mopen}Hum… Nada mal! - $@c{angry_mopen}Eu sei o que você está pensando, e não, eu não estava te espionando. @c{smile_eclosed}Acontece que eu estava na área. - $@c{smile_ehalf}Estou feliz por você, mas só quero te avisar que está tudo bem perder às vezes. - $@c{smile}Aprendemos com nossos erros, muitas vezes mais do que se continuássemos vencendo. - $@c{angry_mopen}De qualquer forma, tenho treinado duro para nossa revanche, então é melhor você dar o seu melhor!` - }, - "victory": { - 1: `@c{neutral}Eu… não era para eu perder dessa vez… - $@c{smile}Ah bem. Isso só significa que vou ter que treinar ainda mais para a próxima vez! - $@c{smile_wave}Também consegui mais dois desses para você!\n@c{smile_wave_wink}Não precisa me agradecer~. - $@c{angry_mopen}Estes são os últimos, hein! Você não vai ganhar mais nenhum presente de mim depois desse! - $@c{smile_wave}Continue assim, e aproveite o evento!` - }, - "defeat": { - 1: "Está tudo bem perder às vezes…" - } - }, - "rival_3": { - "encounter": { - 1: `@c{smile}Eai, olha quem é! Faz um tempo.\n@c{neutral}Você… ainda está invicta? Hum. - $@c{neutral_eclosed}As coisas têm sido meio… estranhas.\nNão é a mesma coisa em casa sem você. - $@c{serious}Eu sei que é egoísta, mas preciso desabafar.\n@c{neutral_eclosed}Acho que você está se metendo em algo grande demais aqui. - $@c{serious}Nunca perder é irrealista.\nPrecisamos perder às vezes para crescer. - $@c{neutral_eclosed}Você teve uma grande jornada, mas ainda há muito pela frente, e só vai ficar mais difícil. @c{neutral}Você está preparada para isso? - $@c{serious_mopen_fists}Se sim, prove para mim.` - }, - "victory": { - 1: "@c{angry_mhalf}Isso é ridículo… Eu mal parei de treinar…\nComo ainda estamos tão distantes?" - }, - }, - "rival_3_female": { - "encounter": { - 1: `@c{smile_wave}Quanto tempo! Ainda não perdeu, né.\n@c{angry}Você está começando a me irritar. @c{smile_wave_wink}Brincadeirinha! - $@c{smile_ehalf}Mas sério, você não sente saudades de casa? Ou… de mim?\nEu… Eu quero dizer, sentimos muito a sua falta. - $@c{smile_eclosed}Eu apoio o seu sonho e tudo mais, mas a realidade é que você vai perder mais cedo ou mais tarde. - $@c{smile}E quando isso acontecer, estarei lá para você, como sempre.\n@c{angry_mopen}Agora, deixe-me mostrar o quão forte eu me tornei!` - }, - "victory": { - 1: "@c{shock}Depois de tudo isso… não foi o suficiente…?\nVocê nunca vai voltar a esse ritmo…" - }, - "defeat": { - 1: "Você deu o seu melhor, agora vamos para casa." - } - }, - "rival_4": { - "encounter": { - 1: `@c{neutral}Oi. - $Não vou enrolar com você.\n@c{neutral_eclosed}Estou aqui para vencer, simples assim. - $@c{serious_mhalf_fists}Aprendi a maximizar meu potencial dedicando todo o meu tempo ao treino. - $@c{smile}Você ganha muito tempo extra quando corta o sono e a interação social desnecessários. - $@c{serious_mopen_fists}Nada disso importa mais, não até eu vencer. - $@c{neutral_eclosed}Cheguei ao ponto de não perder mais.\n@c{smile_eclosed}Acho que sua filosofia não estava tão errada afinal. - $@c{angry_mhalf}Perder é para os fracos, e eu não sou mais fraco. - $@c{serious_mopen_fists}Prepare-se.` - }, - "victory": { - 1: "@c{neutral}O que…@d{64} O que é você?" - }, - }, - "rival_4_female": { - "encounter": { - 1: `@c{neutral}Sou eu! Você não esqueceu de mim de novo… esqueceu? - $@c{smile}Você deveria se orgulhar de até onde chegou. Parabéns!\nMas parece que é o fim da sua jornada. - $@c{smile_eclosed}Você despertou algo em mim que eu nunca soube que existia.\nParece que agora tudo o que faço é treinar. - $@c{smile_ehalf}Eu mal como ou durmo agora, só treino meus Pokémon o dia todo, ficando mais forte a cada vez. - $@c{neutral}Na verdade, eu… mal me reconheço. - $E agora, finalmente atingi o desempenho máximo.\nNão acho que alguém poderia me vencer agora. - $E sabe de uma coisa? É tudo por sua causa.\n@c{smile_ehalf}Eu não sei se te agradeço ou te odeio. - $@c{angry_mopen}Prepare-se.` - }, - "victory": { - 1: "@c{neutral}O que…@d{64} O que é você?" - }, - "defeat": { - 1: "$@c{smile}Você deveria se orgulhar de até onde chegou." - } - }, - "rival_5": { - "encounter": { - 1: "@c{neutral}…" - }, - "victory": { - 1: "@c{neutral}…" - }, - }, - "rival_5_female": { - "encounter": { - 1: "@c{neutral}…" - }, - "victory": { - 1: "@c{neutral}…" - }, - "defeat": { - 1: "$@c{smile_ehalf}…" - } - }, - "rival_6": { - "encounter": { - 1: `@c{smile_eclosed}Nos encontramos de novo. - $@c{neutral}Tive um tempo para refletir sobre tudo isso.\nHá uma razão para tudo isso parecer tão estranho. - $@c{neutral_eclosed}Seu sonho, minha vontade de te vencer…\nTudo faz parte de algo maior. - $@c{serious}Isso não é sobre mim, nem sobre você… É sobre o mundo, @c{serious_mhalf_fists}e é meu propósito te levar ao limite. - $@c{neutral_eclosed}Se cumpri esse propósito, não posso dizer, mas fiz tudo ao meu alcance. - $@c{neutral}Este lugar em que acabamos é assustador… Mas de alguma forma me sinto indiferente, como se já tivesse estado aqui antes. - $@c{serious_mhalf_fists}Você sente o mesmo, não sente? - $@c{serious}…é como se algo aqui estivesse falando comigo.\nIsso é tudo o que o mundo conhece há muito tempo. - $Aqueles momentos que apreciamos juntos que parecem tão recentes não passam de uma memória distante. - $@c{neutral_eclosed}Quem pode dizer se eles foram realmente reais em primeiro lugar. - $@c{serious_mopen_fists}Você precisa continuar empurrando, porque se não o fizer, isso nunca vai acabar. Você é a única que pode fazer isso. - $@c{serious_smile_fists}Eu mal sei o que tudo isso significa, só sei que é verdade. - $@c{serious_mopen_fists}Se você não pode me derrotar aqui e agora, você não terá chance.` - }, - "victory": { - 1: `@c{smile_eclosed}Parece que meu trabalho aqui está feito. - $Quero que você me prometa uma coisa.\n@c{smile}Depois que curar o mundo, por favor, volte para casa.` - }, - }, - "rival_6_female": { - "encounter": { - 1: `@c{smile_ehalf}Então somos só nós de novo. - $@c{smile_eclosed}Sabe, continuo pensando nisso… - $@c{smile_ehalf}Há algo nisso tudo, por que tudo parece tão estranho agora… - $@c{smile}Você tem seu sonho, e eu tenho essa ambição em mim… - $Não consigo evitar sentir que há um propósito maior em tudo isso, no que estamos fazendo, você e eu. - $@c{smile_eclosed}Acho que devo te levar ao limite. - $@c{smile_ehalf}Não tenho certeza se estou fazendo um bom trabalho nisso, mas tentei meu melhor até agora. - $Há algo neste lugar estranho e terrível… Tudo parece tão claro… - $Isso… é tudo o que o mundo conhece há muito tempo. - $@c{smile_eclosed}É como se eu mal pudesse lembrar das memórias que apreciamos juntos. - $@c{smile_ehalf}Elas foram reais? Elas parecem tão distantes agora… - $@c{angry_mopen}Você precisa continuar empurrando, porque se não o fizer, isso nunca vai acabar. Você é o único que pode fazer isso. - $@c{smile_ehalf}Eu… não sei o que tudo isso significa… mas sinto que é verdade. - $@c{neutral}Se você não pode me derrotar aqui e agora, você não terá chance.` - }, - "victory": { - 1: `@c{smile_ehalf}Eu… acho que cumpri meu propósito… - $@c{smile_eclosed}Prometa-me… Depois que curar o mundo… Por favor… volte para casa. - $@c{smile_ehalf}…Obrigada.` - }, - }, -}; - -// Dialogue of the endboss of the game when the player character is male (Or unset) -export const PGMbattleSpecDialogue: SimpleTranslationEntries = { - "encounter": `Parece que a hora finalmente chegou novamente.\nVocê sabe por que veio aqui, não sabe? - $Você foi atraído para cá, porque já esteve aqui antes.\nInúmeras vezes. - $Embora talvez isso possa ser contado.\nPara ser preciso, este é de fato o seu {{cycleCount}}º ciclo. - $A cada ciclo, sua mente retorna ao seu estado anterior.\nMesmo assim, de alguma forma, vestígios de seus antigos "eus" permanecem. - $Até agora, você ainda não conseguiu, mas sinto uma presença diferente em você desta vez.\n - $Você é o único aqui, embora pareça haver... outro. - $Você finalmente vai se mostrar um desafio formidável para mim?\nO desafio que anseio há milênios? - $Vamos começar.`, - "firstStageWin": `Entendo. A presença que senti era realmente real.\nParece que não preciso mais me segurar. - $Não me decepcione.`, - "secondStageWin": "…Magnífico." -}; - -// Dialogue of the endboss of the game when the player character is female. For languages that do not have gendered pronouns, this can be set to PGMbattleSpecDialogue. -export const PGFbattleSpecDialogue: SimpleTranslationEntries = { - "encounter": `Parece que a hora finalmente chegou novamente.\nVocê sabe por que veio aqui, não sabe? - $Você foi atraída para cá, porque já esteve aqui antes.\nInúmeras vezes. - $Embora talvez isso possa ser contado.\nPara ser preciso, este é de fato o seu {{cycleCount}}º ciclo. - $A cada ciclo, sua mente retorna ao seu estado anterior.\nMesmo assim, de alguma forma, vestígios de seus antigos "eus" permanecem. - $Até agora, você ainda não conseguiu, mas sinto uma presença diferente em você desta vez.\n - $Você é a única aqui, embora pareça haver... outro. - $Você finalmente vai se mostrar um desafio formidável para mim?\nO desafio que anseio há milênios? - $Vamos começar.`, - "firstStageWin": `Entendo. A presença que senti era realmente real.\nParece que não preciso mais me segurar. - $Não me decepcione.`, - "secondStageWin": "…Magnífico." -}; - -// Dialogue that does not fit into any other category (e.g. tutorial messages, or the end of the game). For when the player character is male -export const PGMmiscDialogue: SimpleTranslationEntries = { - "ending": - `@c{smile}Oh? Você venceu?@d{96} @c{smile_eclosed}Acho que eu deveria saber.\nMas, você está de volta agora. - $@c{smile}Acabou.@d{64} Você quebrou o ciclo. - $@c{serious_smile_fists}Você também realizou seu sonho, não é?\nVocê não perdeu nenhuma vez. - $@c{neutral}Eu sou o único que vai lembrar o que você fez.@d{96}\nAcho que está tudo bem, não é? - $@c{serious_smile_fists}Sua lenda sempre viverá em nossos corações. - $@c{smile_eclosed}Enfim, já tive o suficiente deste lugar, não é? Vamos para casa. - $@c{serious_smile_fists}Talvez quando voltarmos, possamos ter outra batalha?\nSe você estiver disposto.`, - "ending_female": - `@c{shock}Você está de volta?@d{32} Isso significa que…@d{96} você venceu?!\n@c{smile_ehalf}Eu deveria saber que você conseguiria. - $@c{smile_eclosed}Claro… Eu sempre tive essa sensação.\n@c{smile}Acabou agora, certo? Você quebrou o ciclo. - $@c{smile_ehalf}Você também realizou seu sonho, não foi?\nVocê não perdeu nenhuma vez. - $Eu serei a única a lembrar o que você fez.\n@c{angry_mopen}Eu tentarei não esquecer! - $@c{smile_wave_wink}Brincadeirinha!@d{64} @c{smile}Eu nunca esqueceria.@d{32}\nSua lenda viverá em nossos corações. - $@c{smile_wave}De qualquer forma,@d{64} está ficando tarde…@d{96} Eu acho?\nÉ difícil dizer neste lugar. - $Vamos para casa. @c{smile_wave_wink}Talvez amanhã possamos ter outra batalha, pelos velhos tempos?`, - "ending_endless": "Parabéns por alcançar o final atual!\nMais conteúdo chegará em breve.", - "ending_name": "Desenvolvedores" -}; - -// Dialogue that does not fit into any other category (e.g. tutorial messages, or the end of the game). For when the player character is female. For languages that do not have gendered pronouns, this can be set to PGMmiscDialogue. -export const PGFmiscDialogue: SimpleTranslationEntries = { - "ending": - `@c{smile}Oh? Você venceu?@d{96} @c{smile_eclosed}Acho que eu deveria saber.\nMas, você está de volta agora. - $@c{smile}Acabou.@d{64} Você quebrou o ciclo. - $@c{serious_smile_fists}Você também realizou seu sonho, não é?\nVocê não perdeu nenhuma vez. - $@c{neutral}Eu sou o único que vai lembrar o que você fez.@d{96}\nAcho que está tudo bem, não é? - $@c{serious_smile_fists}Sua lenda sempre viverá em nossos corações. - $@c{smile_eclosed}Enfim, já tive o suficiente deste lugar, não é? Vamos para casa. - $@c{serious_smile_fists}Talvez quando voltarmos, possamos ter outra batalha?\nSe você estiver disposta.`, - "ending_female": - `@c{shock}Você está de volta?@d{32} Isso significa que…@d{96} você venceu?!\n@c{smile_ehalf}Eu deveria saber que você conseguiria. - $@c{smile_eclosed}Claro… Eu sempre tive essa sensação.\n@c{smile}Acabou agora, certo? Você quebrou o ciclo. - $@c{smile_ehalf}Você também realizou seu sonho, não foi?\nVocê não perdeu nenhuma vez. - $Eu serei a única a lembrar o que você fez.\n@c{angry_mopen}Eu tentarei não esquecer! - $@c{smile_wave_wink}Brincadeirinha!@d{64} @c{smile}Eu nunca esqueceria.@d{32}\nSua lenda viverá em nossos corações. - $@c{smile_wave}De qualquer forma,@d{64} está ficando tarde…@d{96} Eu acho?\nÉ difícil dizer neste lugar. - $Vamos para casa. @c{smile_wave_wink}Talvez amanhã possamos ter outra batalha, pelos velhos tempos?`, - "ending_endless": "Parabéns por alcançar o final atual!\nMais conteúdo chegará em breve.", - "ending_name": "Desenvolvedores" -}; - - -// Dialogue of the named double battles in the game. For when the player is male (or unset). -export const PGMdoubleBattleDialogue: DialogueTranslationEntries = { - "blue_red_double": { - "encounter": { - 1: `Blue: Ei Red, vamos mostrar do que somos feitos! - $Red: ... - $Blue: Este é o poder da Cidade de Pallet!`, - }, - "victory": { - 1: `Blue: Essa foi uma ótima batalha! - $Red: ...`, - }, - }, - "red_blue_double": { - "encounter": { - 1: `Red: ...! - $Blue: Ele nunca fala muito. - $Blue: Mas não se deixe enganar! Ele é um campeão, afinal!`, - }, - "victory": { - 1: `Red: ...! - $Blue: Da próxima vez, vamos vencer você!`, - }, - }, - "tate_liza_double": { - "encounter": { - 1: `Tate: Está surpreso? - $Liza: Somos dois líderes de ginásio ao mesmo tempo! - $Tate: Somos gêmeos! - $Liza: Não precisamos falar para nos entender! - $Tate: Duas vezes o poder... - $Liza: Você consegue lidar com isso?`, - }, - "victory": { - 1: `Tate: O quê? Nossa combinação foi perfeita! - $Liza: Parece que precisamos treinar mais...`, - }, - }, - "liza_tate_double": { - "encounter": { - 1: `Liza: Hihihi... Está surpreso? - $Tate: Sim, somos realmente dois líderes de ginásio ao mesmo tempo! - $Liza: Este é meu irmão gêmeo Tate! - $Tate: E esta é minha irmã gêmea Liza! - $Liza: Não acha que somos uma combinação perfeita?` - }, - "victory": { - 1: `Liza: Nós somos... - $Tate: ...não tão fortes quanto pensávamos?`, - }, - }, - "wallace_steven_double": { - "encounter": { - 1: `Steven: Wallace, vamos mostrar a eles o poder dos campeões! - $Wallace: Vamos mostrar o poder de Hoenn! - $Steven: Vamos lá!`, - }, - "victory": { - 1: `Steven: Essa foi uma ótima batalha! - $Wallace: Vamos vencer da próxima vez!`, - }, - }, - "steven_wallace_double": { - "encounter": { - 1: `Steven: Você tem algum Pokémon raro? - $Wallace: Steven... Estamos aqui para uma batalha, não para mostrar nossos Pokémon. - $Steven: Ah... Entendi... Vamos lá então!`, - }, - "victory": { - 1: `Steven: Agora que terminamos a batalha, vamos mostrar nossos Pokémon! - $Wallace: Steven...`, - }, - }, - "alder_iris_double": { - "encounter": { - 1: `Alder: Somos os treinadores mais fortes de Unova! - $Iris: Lutas contra treinadores fortes são as melhores!`, - }, - "victory": { - 1: `Alder: Uau! Você é super forte! - $Iris: Vamos vencer da próxima vez!`, - }, - }, - "iris_alder_double": { - "encounter": { - 1: `Iris: Bem-vindo, Desafiante! Eu sou A Campeã de Unova! - $Alder: Iris, você não está um pouco empolgada demais?`, - }, - "victory": { - 1: `Iris: Uma derrota como essa não é fácil de engolir... - $Alder: Mas só ficaremos mais fortes a cada derrota!`, - }, - }, - "piers_marnie_double": { - "encounter": { - 1: `Marnie: Irmão, vamos mostrar a eles o poder de Spikemuth! - $Piers: Nós trazemos a escuridão!`, - }, - "victory": { - 1: `Marnie: Você trouxe luz para nossa escuridão! - $Piers: Está muito claro...`, - }, - }, - "marnie_piers_double": { - "encounter": { - 1: `Piers: Prontos para um show? - $Marnie: Irmão... Eles estão aqui para lutar, não para cantar...`, - }, - "victory": { - 1: `Piers: Agora esse foi um ótimo show! - $Marnie: Irmão...`, - }, - }, -}; - - -// Dialogue of the named double battles in the game. For when the player is female. For languages that do not have gendered pronouns, this can be set to PGMdoubleBattleDialogue. -export const PGFdoubleBattleDialogue: DialogueTranslationEntries = { - "blue_red_double": { - "encounter": { - 1: `Blue: Ei Red, vamos mostrar do que somos feitos! - $Red: ... - $Blue: Este é o poder da Cidade de Pallet!`, - }, - "victory": { - 1: `Blue: Essa foi uma ótima batalha! - $Red: ...`, - }, - }, - "red_blue_double": { - "encounter": { - 1: `Red: ...! - $Blue: Ele nunca fala muito. - $Blue: Mas não se deixe enganar! Ele é um campeão, afinal!`, - }, - "victory": { - 1: `Red: ...! - $Blue: Da próxima vez, vamos vencer você!`, - }, - }, - "tate_liza_double": { - "encounter": { - 1: `Tate: Está surpreso? - $Liza: Somos dois líderes de ginásio ao mesmo tempo! - $Tate: Somos gêmeos! - $Liza: Não precisamos falar para nos entender! - $Tate: Duas vezes o poder... - $Liza: Você consegue lidar com isso?`, - }, - "victory": { - 1: `Tate: O quê? Nossa combinação foi perfeita! - $Liza: Parece que precisamos treinar mais...`, - }, - }, - "liza_tate_double": { - "encounter": { - 1: `Liza: Hihihi... Está surpreso? - $Tate: Sim, somos realmente dois líderes de ginásio ao mesmo tempo! - $Liza: Este é meu irmão gêmeo Tate! - $Tate: E esta é minha irmã gêmea Liza! - $Liza: Não acha que somos uma combinação perfeita?` - }, - "victory": { - 1: `Liza: Nós somos... - $Tate: ...não tão fortes quanto pensávamos?`, - }, - }, - "wallace_steven_double": { - "encounter": { - 1: `Steven: Wallace, vamos mostrar a eles o poder dos campeões! - $Wallace: Vamos mostrar o poder de Hoenn! - $Steven: Vamos lá!`, - }, - "victory": { - 1: `Steven: Essa foi uma ótima batalha! - $Wallace: Vamos vencer da próxima vez!`, - }, - }, - "steven_wallace_double": { - "encounter": { - 1: `Steven: Você tem algum Pokémon raro? - $Wallace: Steven... Estamos aqui para uma batalha, não para mostrar nossos Pokémon. - $Steven: Ah... Entendi... Vamos lá então!`, - }, - "victory": { - 1: `Steven: Agora que terminamos a batalha, vamos mostrar nossos Pokémon! - $Wallace: Steven...`, - }, - }, - "alder_iris_double": { - "encounter": { - 1: `Alder: Somos os treinadores mais fortes de Unova! - $Iris: Lutas contra treinadores fortes são as melhores!`, - }, - "victory": { - 1: `Alder: Uau! Você é super forte! - $Iris: Vamos vencer da próxima vez!`, - }, - }, - "iris_alder_double": { - "encounter": { - 1: `Iris: Bem-vinda, Desafiante! Eu sou A Campeã de Unova! - $Alder: Iris, você não está um pouco empolgada demais?`, - }, - "victory": { - 1: `Iris: Uma derrota como essa não é fácil de engolir... - $Alder: Mas só ficaremos mais fortes a cada derrota!`, - }, - }, - "piers_marnie_double": { - "encounter": { - 1: `Marnie: Irmão, vamos mostrar a eles o poder de Spikemuth! - $Piers: Nós trazemos a escuridão!`, - }, - "victory": { - 1: `Marnie: Você trouxe luz para nossa escuridão! - $Piers: Está muito claro...`, - }, - }, - "marnie_piers_double": { - "encounter": { - 1: `Piers: Prontos para um show? - $Marnie: Irmão... Eles estão aqui para lutar, não para cantar...`, - }, - "victory": { - 1: `Piers: Agora esse foi um ótimo show! - $Marnie: Irmão...`, - }, - }, -}; diff --git a/src/locales/pt_BR/egg.ts b/src/locales/pt_BR/egg.json similarity index 88% rename from src/locales/pt_BR/egg.ts rename to src/locales/pt_BR/egg.json index fbd13bed4e3..a14217858b5 100644 --- a/src/locales/pt_BR/egg.ts +++ b/src/locales/pt_BR/egg.json @@ -1,6 +1,4 @@ -import { SimpleTranslationEntries } from "#app/interfaces/locales"; - -export const egg: SimpleTranslationEntries = { +{ "egg": "Ovo", "greatTier": "Raro", "ultraTier": "Épico", @@ -24,5 +22,5 @@ export const egg: SimpleTranslationEntries = { "rareEggMoveUnlock": "Movimento Raro de Ovo desbloqueado: {{moveName}}", "moveUPGacha": "Movimento\nde Ovo Bônus!", "shinyUPGacha": "Shiny Bônus!", - "legendaryUPGacha": "Bônus!", -} as const; + "legendaryUPGacha": "Bônus!" +} \ No newline at end of file diff --git a/src/locales/pt_BR/fight-ui-handler.json b/src/locales/pt_BR/fight-ui-handler.json new file mode 100644 index 00000000000..f5c4379126d --- /dev/null +++ b/src/locales/pt_BR/fight-ui-handler.json @@ -0,0 +1,7 @@ +{ + "pp": "PP", + "power": "Poder", + "accuracy": "Precisão", + "abilityFlyInText": " {{passive}}{{pokemonName}}\n{{abilityName}}", + "passive": "Passiva de " +} \ No newline at end of file diff --git a/src/locales/pt_BR/fight-ui-handler.ts b/src/locales/pt_BR/fight-ui-handler.ts deleted file mode 100644 index 6ce615ad5b1..00000000000 --- a/src/locales/pt_BR/fight-ui-handler.ts +++ /dev/null @@ -1,9 +0,0 @@ -import { SimpleTranslationEntries } from "#app/interfaces/locales"; - -export const fightUiHandler: SimpleTranslationEntries = { - "pp": "PP", - "power": "Poder", - "accuracy": "Precisão", - "abilityFlyInText": " {{passive}}{{pokemonName}}\n{{abilityName}}", - "passive": "Passiva de ", // The space at the end is important -} as const; diff --git a/src/locales/pt_BR/filter-bar.ts b/src/locales/pt_BR/filter-bar.json similarity index 88% rename from src/locales/pt_BR/filter-bar.ts rename to src/locales/pt_BR/filter-bar.json index 1e39c1445d4..05898796d9f 100644 --- a/src/locales/pt_BR/filter-bar.ts +++ b/src/locales/pt_BR/filter-bar.json @@ -1,6 +1,4 @@ -import { SimpleTranslationEntries } from "#app/interfaces/locales"; - -export const filterBar: SimpleTranslationEntries = { +{ "genFilter": "Ger.", "typeFilter": "Tipo", "caughtFilter": "Capturado", @@ -36,5 +34,5 @@ export const filterBar: SimpleTranslationEntries = { "sortByCost": "Custo", "sortByCandies": "# Doces", "sortByIVs": "IVs", - "sortByName": "Nome", -}; + "sortByName": "Nome" +} \ No newline at end of file diff --git a/src/locales/pt_BR/game-mode.json b/src/locales/pt_BR/game-mode.json new file mode 100644 index 00000000000..9aa0f286959 --- /dev/null +++ b/src/locales/pt_BR/game-mode.json @@ -0,0 +1,8 @@ +{ + "classic": "Clássico", + "endless": "Infinito", + "endlessSpliced": "Infinito (Fusões)", + "dailyRun": "Desafio Diário", + "unknown": "Desconhecido", + "challenge": "Desafio" +} \ No newline at end of file diff --git a/src/locales/pt_BR/game-mode.ts b/src/locales/pt_BR/game-mode.ts deleted file mode 100644 index 44396635c6c..00000000000 --- a/src/locales/pt_BR/game-mode.ts +++ /dev/null @@ -1,10 +0,0 @@ -import { SimpleTranslationEntries } from "#app/interfaces/locales"; - -export const gameMode: SimpleTranslationEntries = { - "classic": "Clássico", - "endless": "Infinito", - "endlessSpliced": "Infinito (Fusões)", - "dailyRun": "Desafio Diário", - "unknown": "Desconhecido", - "challenge": "Desafio", -} as const; diff --git a/src/locales/pt_BR/game-stats-ui-handler.ts b/src/locales/pt_BR/game-stats-ui-handler.json similarity index 86% rename from src/locales/pt_BR/game-stats-ui-handler.ts rename to src/locales/pt_BR/game-stats-ui-handler.json index 863f9e773f6..eb36f484cc3 100644 --- a/src/locales/pt_BR/game-stats-ui-handler.ts +++ b/src/locales/pt_BR/game-stats-ui-handler.json @@ -1,44 +1,42 @@ -import { SimpleTranslationEntries } from "#app/interfaces/locales"; - -export const gameStatsUiHandler: SimpleTranslationEntries = { - "stats": "Estatísticas", - "playTime": "Tempo de Jogo", - "totalBattles": "Total de Batalhas", - "starters": "Iniciais", - "shinyStarters": "Iniciais Shiny", - "speciesSeen": "Espécies Vistas", - "speciesCaught": "Capturadas", - "ribbonsOwned": "Fitas Obtidas", - "classicRuns": "Jogos Clássicos", - "classicWins": "Vitórias Clássicas", - "dailyRunAttempts": "Jogos de Desafio Diário", - "dailyRunWins": "Vitórias de Desafio Diário", - "endlessRuns": "Jogos Infinitos", - "highestWaveEndless": "Maior Onda (Infinito)", - "highestMoney": "Maior Dinheiro", - "highestDamage": "Maior Dano", - "highestHPHealed": "Maior PS Curado", - "pokemonEncountered": "Pokémon Encontrados", - "pokemonDefeated": "Pokémon Derrotados", - "pokemonCaught": "Pokémon Capturados", - "eggsHatched": "Ovos Chocados", - "subLegendsSeen": "Sub-Lendários Vistos", - "subLegendsCaught": "Sub-Lend. Capturados", - "subLegendsHatched": "Sub-Lendários Chocados", - "legendsSeen": "Lendários Vistos", - "legendsCaught": "Lendários Capturados", - "legendsHatched": "Lendários Chocados", - "mythicalsSeen": "Míticos Vistos", - "mythicalsCaught": "Míticos Capturados", - "mythicalsHatched": "Míticos Chocados", - "shiniesSeen": "Shinies Vistos", - "shiniesCaught": "Shinies Capturados", - "shiniesHatched": "Shinies Chocados", - "pokemonFused": "Pokémon Fundidos", - "trainersDefeated": "Treinadores Derrotados", - "eggsPulled": "Ovos Ganhos", - "rareEggsPulled": "Ovos Raros Ganhos", - "epicEggsPulled": "Ovos Épicos Ganhos", - "legendaryEggsPulled": "Ovos Lendários Ganhos", - "manaphyEggsPulled": "Ovos de Manaphy Ganhos", -} as const; +{ + "stats": "Estatísticas", + "playTime": "Tempo de Jogo", + "totalBattles": "Total de Batalhas", + "starters": "Iniciais", + "shinyStarters": "Iniciais Shiny", + "speciesSeen": "Espécies Vistas", + "speciesCaught": "Capturadas", + "ribbonsOwned": "Fitas Obtidas", + "classicRuns": "Jogos Clássicos", + "classicWins": "Vitórias Clássicas", + "dailyRunAttempts": "Jogos de Desafio Diário", + "dailyRunWins": "Vitórias de Desafio Diário", + "endlessRuns": "Jogos Infinitos", + "highestWaveEndless": "Maior Onda (Infinito)", + "highestMoney": "Maior Dinheiro", + "highestDamage": "Maior Dano", + "highestHPHealed": "Maior PS Curado", + "pokemonEncountered": "Pokémon Encontrados", + "pokemonDefeated": "Pokémon Derrotados", + "pokemonCaught": "Pokémon Capturados", + "eggsHatched": "Ovos Chocados", + "subLegendsSeen": "Sub-Lendários Vistos", + "subLegendsCaught": "Sub-Lend. Capturados", + "subLegendsHatched": "Sub-Lendários Chocados", + "legendsSeen": "Lendários Vistos", + "legendsCaught": "Lendários Capturados", + "legendsHatched": "Lendários Chocados", + "mythicalsSeen": "Míticos Vistos", + "mythicalsCaught": "Míticos Capturados", + "mythicalsHatched": "Míticos Chocados", + "shiniesSeen": "Shinies Vistos", + "shiniesCaught": "Shinies Capturados", + "shiniesHatched": "Shinies Chocados", + "pokemonFused": "Pokémon Fundidos", + "trainersDefeated": "Treinadores Derrotados", + "eggsPulled": "Ovos Ganhos", + "rareEggsPulled": "Ovos Raros Ganhos", + "epicEggsPulled": "Ovos Épicos Ganhos", + "legendaryEggsPulled": "Ovos Lendários Ganhos", + "manaphyEggsPulled": "Ovos de Manaphy Ganhos" +} \ No newline at end of file diff --git a/src/locales/pt_BR/growth.json b/src/locales/pt_BR/growth.json new file mode 100644 index 00000000000..d9b11dc23c3 --- /dev/null +++ b/src/locales/pt_BR/growth.json @@ -0,0 +1,8 @@ +{ + "Erratic": "Muito Rápido", + "Fast": "Rápido", + "Medium_Fast": "Meio Rápido", + "Medium_Slow": "Meio Lento", + "Slow": "Lento", + "Fluctuating": "Muito Lento" +} \ No newline at end of file diff --git a/src/locales/pt_BR/growth.ts b/src/locales/pt_BR/growth.ts deleted file mode 100644 index 7b268ae49ef..00000000000 --- a/src/locales/pt_BR/growth.ts +++ /dev/null @@ -1,10 +0,0 @@ -import { SimpleTranslationEntries } from "#app/interfaces/locales"; - -export const growth: SimpleTranslationEntries = { - "Erratic": "Muito Rápido", - "Fast": "Rápido", - "Medium_Fast": "Meio Rápido", - "Medium_Slow": "Meio Lento", - "Slow": "Lento", - "Fluctuating": "Muito Lento", -} as const; diff --git a/src/locales/pt_BR/menu-ui-handler.ts b/src/locales/pt_BR/menu-ui-handler.json similarity index 85% rename from src/locales/pt_BR/menu-ui-handler.ts rename to src/locales/pt_BR/menu-ui-handler.json index 431bb64310e..cc087c8335e 100644 --- a/src/locales/pt_BR/menu-ui-handler.ts +++ b/src/locales/pt_BR/menu-ui-handler.json @@ -1,10 +1,8 @@ -import { SimpleTranslationEntries } from "#app/interfaces/locales"; - -export const menuUiHandler: SimpleTranslationEntries = { +{ "GAME_SETTINGS": "Configurações", "ACHIEVEMENTS": "Conquistas", "STATS": "Estatísticas", - "VOUCHERS": "Vouchers", + "RUN_HISTORY": "Histórico de Jogos", "EGG_LIST": "Incubadora", "EGG_GACHA": "Gacha de ovos", "MANAGE_DATA": "Gerenciar dados", @@ -16,6 +14,8 @@ export const menuUiHandler: SimpleTranslationEntries = { "importSlotSelect": "Selecione um slot para importar.", "exportSession": "Exportar sessão", "exportSlotSelect": "Selecione um slot para exportar.", + "importRunHistory":"Importar Histórico de Jogos", + "exportRunHistory":"Exportar Histórico de Jogos", "importData": "Importar dados", "exportData": "Exportar dados", "consentPreferences": "Opções de Privacidade", @@ -26,4 +26,4 @@ export const menuUiHandler: SimpleTranslationEntries = { "cancel": "Cancelar", "losingProgressionWarning": "Você vai perder todo o progresso desde o início da batalha. Confirmar?", "noEggs": "Você não está chocando\nnenhum ovo no momento!" -} as const; +} \ No newline at end of file diff --git a/src/locales/pt_BR/menu.ts b/src/locales/pt_BR/menu.json similarity index 83% rename from src/locales/pt_BR/menu.ts rename to src/locales/pt_BR/menu.json index 927ccce518b..415796f91ed 100644 --- a/src/locales/pt_BR/menu.ts +++ b/src/locales/pt_BR/menu.json @@ -1,11 +1,4 @@ -import { SimpleTranslationEntries } from "#app/interfaces/locales"; - -/** - * The menu namespace holds most miscellaneous text that isn't directly part of the game's - * contents or directly related to Pokemon data. This includes menu navigation, settings, - * account interactions, descriptive text, etc. - */ -export const menu: SimpleTranslationEntries = { +{ "cancel": "Cancelar", "continue": "Continuar", "dailyRun": "Desafio Diário (Beta)", @@ -35,11 +28,11 @@ export const menu: SimpleTranslationEntries = { "sessionSuccess": "Sessão carregada com sucesso.", "failedToLoadSession": "Não foi possível carregar os dados da sua sessão.\nEles podem estar corrompidos.", "boyOrGirl": "Você é um menino ou uma menina?", - "evolving": "Que?\n{{pokemonName}} tá evoluindo!", + "evolving": "Quê?\n{{pokemonName}} tá evoluindo!", "stoppedEvolving": "{{pokemonName}} parou de evoluir.", "pauseEvolutionsQuestion": "Gostaria de pausar evoluções para {{pokemonName}}?\nEvoluções podem ser religadas na tela de equipe.", "evolutionsPaused": "Evoluções foram paradas para {{pokemonName}}.", - "evolutionDone": "Parabéns!\nSeu {{pokemonName}} evolui para {{evolvedPokemonName}}!", + "evolutionDone": "Parabéns!\nSeu {{pokemonName}} evoluiu para {{evolvedPokemonName}}!", "dailyRankings": "Classificação Diária", "weeklyRankings": "Classificação Semanal", "noRankings": "Sem Classificação", @@ -58,5 +51,5 @@ export const menu: SimpleTranslationEntries = { "renamePokemon": "Renomear Pokémon", "rename": "Renomear", "nickname": "Apelido", - "errorServerDown": "Opa! Não foi possível conectar-se ao servidor.\n\nVocê pode deixar essa janela aberta,\npois o jogo irá se reconectar automaticamente.", -} as const; + "errorServerDown": "Opa! Não foi possível conectar-se ao servidor.\n\nVocê pode deixar essa janela aberta,\npois o jogo irá se reconectar automaticamente." +} \ No newline at end of file diff --git a/src/locales/pt_BR/modifier-select-ui-handler.ts b/src/locales/pt_BR/modifier-select-ui-handler.json similarity index 76% rename from src/locales/pt_BR/modifier-select-ui-handler.ts rename to src/locales/pt_BR/modifier-select-ui-handler.json index fd9dfcf4c30..4aef7f145ae 100644 --- a/src/locales/pt_BR/modifier-select-ui-handler.ts +++ b/src/locales/pt_BR/modifier-select-ui-handler.json @@ -1,14 +1,12 @@ -import { SimpleTranslationEntries } from "#app/interfaces/locales"; - -export const modifierSelectUiHandler: SimpleTranslationEntries = { - "transfer": "Alterar", - "reroll": "Atualizar", - "lockRarities": "Travar Raridades", - "checkTeam": "Checar Time", - "transferDesc": "Transfira um item segurado de um Pokémon para outro.", - "rerollDesc": "Gaste dinheiro para atualizar as suas opções de itens.", - "lockRaritiesDesc": "Trava a raridade dos itens na atualização (afeta o custo da atualização).", - "checkTeamDesc": "Cheque seu time ou use um item de mudança de forma.", - "rerollCost": "₽{{formattedMoney}}", - "itemCost": "₽{{formattedMoney}}" -} as const; +{ + "transfer": "Alterar", + "reroll": "Atualizar", + "lockRarities": "Travar Raridades", + "checkTeam": "Checar Time", + "transferDesc": "Transfira um item segurado de um Pokémon para outro.", + "rerollDesc": "Gaste dinheiro para atualizar as suas opções de itens.", + "lockRaritiesDesc": "Trava a raridade dos itens na atualização (afeta o custo da atualização).", + "checkTeamDesc": "Cheque seu time ou use um item de mudança de forma.", + "rerollCost": "₽{{formattedMoney}}", + "itemCost": "₽{{formattedMoney}}" +} \ No newline at end of file diff --git a/src/locales/pt_BR/modifier-type.json b/src/locales/pt_BR/modifier-type.json new file mode 100644 index 00000000000..1787360b51e --- /dev/null +++ b/src/locales/pt_BR/modifier-type.json @@ -0,0 +1,609 @@ +{ + "ModifierType": { + "AddPokeballModifierType": { + "name": "{{modifierCount}}x {{pokeballName}}", + "description": "Ganhe {{modifierCount}}x {{pokeballName}} (Mochila: {{pokeballAmount}}) \nChance de captura: {{catchRate}}." + }, + "AddVoucherModifierType": { + "name": "{{modifierCount}}x {{voucherTypeName}}", + "description": "Ganhe {{modifierCount}}x {{voucherTypeName}}." + }, + "PokemonHeldItemModifierType": { + "extra": { + "inoperable": "{{pokemonName}} não pode\nsegurar esse item!", + "tooMany": "{{pokemonName}} tem muitos\nmuitos deste item!" + } + }, + "PokemonHpRestoreModifierType": { + "description": "Restaura {{restorePoints}} PS ou {{restorePercent}}% PS de um Pokémon, o que for maior.", + "extra": { + "fully": "Restaura totalmente os PS de um Pokémon.", + "fullyWithStatus": "Restaura totalmente os PS de um Pokémon e cura qualquer mudança de estado." + } + }, + "PokemonReviveModifierType": { + "description": "Reanima um Pokémon e restaura {{restorePercent}}% PS." + }, + "PokemonStatusHealModifierType": { + "description": "Cura uma mudança de estado de um Pokémon." + }, + "PokemonPpRestoreModifierType": { + "description": "Restaura {{restorePoints}} PP para um movimento de um Pokémon.", + "extra": { + "fully": "Restaura todos os PP para um movimento de um Pokémon." + } + }, + "PokemonAllMovePpRestoreModifierType": { + "description": "Restaura {{restorePoints}} PP para todos os movimentos de um Pokémon.", + "extra": { + "fully": "Restaura todos os PP para todos os movimentos de um Pokémon." + } + }, + "PokemonPpUpModifierType": { + "description": "Aumenta permanentemente os PP para o movimento de um Pokémon em {{upPoints}} para cada 5 PP máximos (máximo 3)." + }, + "PokemonNatureChangeModifierType": { + "name": "Hortelã {{natureName}}", + "description": "Muda a natureza do Pokémon para {{natureName}} e a desbloqueia permanentemente." + }, + "DoubleBattleChanceBoosterModifierType": { + "description": "Dobra as chances de encontrar uma batalha em dupla por {{battleCount}} batalhas." + }, + "TempBattleStatBoosterModifierType": { + "description": "Aumenta o atributo de {{tempBattleStatName}} para todos os membros da equipe por 5 batalhas." + }, + "AttackTypeBoosterModifierType": { + "description": "Aumenta o poder dos ataques do tipo {{moveType}} de um Pokémon em 20%." + }, + "PokemonLevelIncrementModifierType": { + "description": "Aumenta em {{levels}} o nível de um Pokémon." + }, + "AllPokemonLevelIncrementModifierType": { + "description": "Aumenta em {{levels}} o nível de todos os membros da equipe." + }, + "PokemonBaseStatBoosterModifierType": { + "description": "Aumenta o atributo base de {{statName}} em 10%. Quanto maior os IVs, maior o limite de aumento." + }, + "AllPokemonFullHpRestoreModifierType": { + "description": "Restaura totalmente os PS de todos os Pokémon." + }, + "AllPokemonFullReviveModifierType": { + "description": "Reanima todos os Pokémon, restaurando totalmente seus PS." + }, + "MoneyRewardModifierType": { + "description": "Garante uma quantidade {{moneyMultiplier}} de dinheiro (₽{{moneyAmount}}).", + "extra": { + "small": "pequena", + "moderate": "moderada", + "large": "grande" + } + }, + "ExpBoosterModifierType": { + "description": "Aumenta o ganho de pontos de experiência em {{boostPercent}}%." + }, + "PokemonExpBoosterModifierType": { + "description": "Aumenta o ganho de pontos de experiência de quem segura em {{boostPercent}}%." + }, + "PokemonFriendshipBoosterModifierType": { + "description": "Aumenta o ganho de amizade por vitória em 50%." + }, + "PokemonMoveAccuracyBoosterModifierType": { + "description": "Aumenta a precisão dos movimentos em {{accuracyAmount}} (máximo 100)." + }, + "PokemonMultiHitModifierType": { + "description": "Ataques acertam uma vez adicional ao custo de uma redução de poder de 60/75/82.5% por item, respectivamente." + }, + "TmModifierType": { + "name": "TM{{moveId}} - {{moveName}}", + "description": "Ensina {{moveName}} a um Pokémon." + }, + "TmModifierTypeWithInfo": { + "name": "TM{{moveId}} - {{moveName}}", + "description": "Ensina {{moveName}} a um Pokémon\n(Segure C ou Shift para mais informações)." + }, + "EvolutionItemModifierType": { + "description": "Faz certos Pokémon evoluírem." + }, + "FormChangeItemModifierType": { + "description": "Faz certos Pokémon mudarem de forma." + }, + "FusePokemonModifierType": { + "description": "Combina dois Pokémon (transfere Habilidade, divide os atributos base e tipos, compartilha os movimentos)." + }, + "TerastallizeModifierType": { + "name": "Fragmento Tera {{teraType}}", + "description": "Terastalize um Pokémon para o tipo {{teraType}} por 10 ondas." + }, + "ContactHeldItemTransferChanceModifierType": { + "description": "Quando atacar, tem {{chancePercent}}% de chance de roubar um item do oponente." + }, + "TurnHeldItemTransferModifierType": { + "description": "Todo turno, o Pokémon ganha um item aleatório do oponente." + }, + "EnemyAttackStatusEffectChanceModifierType": { + "description": "Ganha {{chancePercent}}% de chance de infligir {{statusEffect}} com ataques." + }, + "EnemyEndureChanceModifierType": { + "description": "Ganha {{chancePercent}}% de chance de sobreviver a um ataque que o faria desmaiar." + }, + "RARE_CANDY": { + "name": "Doce Raro" + }, + "RARER_CANDY": { + "name": "Doce Raríssimo" + }, + "MEGA_BRACELET": { + "name": "Mega Bracelete", + "description": "Mega Pedras ficam disponíveis." + }, + "DYNAMAX_BAND": { + "name": "Bracelete Dynamax", + "description": "Cogumáximos ficam disponíveis." + }, + "TERA_ORB": { + "name": "Orbe Tera", + "description": "Fragmentos Tera ficam disponíveis." + }, + "MAP": { + "name": "Mapa", + "description": "Permite escolher a próxima rota." + }, + "POTION": { + "name": "Poção" + }, + "SUPER_POTION": { + "name": "Super Poção" + }, + "HYPER_POTION": { + "name": "Hiper Poção" + }, + "MAX_POTION": { + "name": "Poção Máxima" + }, + "FULL_RESTORE": { + "name": "Restaurador" + }, + "REVIVE": { + "name": "Reanimador" + }, + "MAX_REVIVE": { + "name": "Reanimador Máximo" + }, + "FULL_HEAL": { + "name": "Cura Total" + }, + "SACRED_ASH": { + "name": "Cinza Sagrada" + }, + "REVIVER_SEED": { + "name": "Semente Reanimadora", + "description": "Após desmaiar por um ataque direto, reanima com 50% de PS." + }, + "WHITE_HERB": { + "name": "Erva Branca", + "description": "Restaura quaisquer atributos diminuídos em batalha." + }, + "ETHER": { + "name": "Éter" + }, + "MAX_ETHER": { + "name": "Éter Máximo" + }, + "ELIXIR": { + "name": "Elixir" + }, + "MAX_ELIXIR": { + "name": "Elixir Máximo" + }, + "PP_UP": { + "name": "Mais PP" + }, + "PP_MAX": { + "name": "PP Máximo" + }, + "LURE": { + "name": "Incenso" + }, + "SUPER_LURE": { + "name": "Super Incenso" + }, + "MAX_LURE": { + "name": "Incenso Máximo" + }, + "MEMORY_MUSHROOM": { + "name": "Cogumemória", + "description": "Relembra um movimento esquecido." + }, + "EXP_SHARE": { + "name": "Compart. de Exp.", + "description": "Distribui pontos de experiência para todos os membros da equipe." + }, + "EXP_BALANCE": { + "name": "Balanceador de Exp.", + "description": "Distribui pontos de experiência principalmente para os Pokémon mais fracos." + }, + "OVAL_CHARM": { + "name": "Amuleto Oval", + "description": "Quando vários Pokémon participam de uma batalha, cada um recebe 10% extra de pontos de experiência." + }, + "EXP_CHARM": { + "name": "Amuleto de Exp." + }, + "SUPER_EXP_CHARM": { + "name": "Super Amuleto de Exp." + }, + "GOLDEN_EXP_CHARM": { + "name": "Amuleto de Exp. Dourado" + }, + "LUCKY_EGG": { + "name": "Ovo da Sorte" + }, + "GOLDEN_EGG": { + "name": "Ovo Dourado" + }, + "SOOTHE_BELL": { + "name": "Guizo" + }, + "SCOPE_LENS": { + "name": "Lentes de Mira", + "description": "Estas lentes facilitam o foco em pontos fracos. Aumenta a chance de acerto crítico de quem a segurar." + }, + "LEEK": { + "name": "Alho-poró", + "description": "Esse talo de alho-poró muito longo e rígido aumenta a taxa de acerto crítico dos movimentos do Farfetch'd." + }, + "EVIOLITE": { + "name": "Eviolita", + "description": "Esse misterioso caroço evolutivo aumenta os atributos de Defesa e Def. Esp. quando segurado por um Pokémon que ainda pode evoluir." + }, + "SOUL_DEW": { + "name": "Joia da Alma", + "description": "Aumenta a influência da natureza de um Pokémon em seus atributos em 10% (cumulativo)." + }, + "NUGGET": { + "name": "Pepita" + }, + "BIG_NUGGET": { + "name": "Pepita Grande" + }, + "RELIC_GOLD": { + "name": "Relíquia de Ouro" + }, + "AMULET_COIN": { + "name": "Moeda Amuleto", + "description": "Aumenta a recompensa de dinheiro em 50%." + }, + "GOLDEN_PUNCH": { + "name": "Soco Dourado", + "description": "Concede 50% do dano causado em dinheiro." + }, + "COIN_CASE": { + "name": "Moedeira", + "description": "Após cada 10ª batalha, recebe 10% de seu dinheiro em juros." + }, + "LOCK_CAPSULE": { + "name": "Cápsula de Travamento", + "description": "Permite que você trave raridades de itens ao rolar novamente." + }, + "GRIP_CLAW": { + "name": "Garra-Aperto" + }, + "WIDE_LENS": { + "name": "Lente Ampla" + }, + "MULTI_LENS": { + "name": "Multi Lentes" + }, + "HEALING_CHARM": { + "name": "Amuleto de Cura", + "description": "Aumenta a eficácia dos movimentos e itens que restauram PS em 10% (exceto Reanimador)." + }, + "CANDY_JAR": { + "name": "Pote de Doces", + "description": "Aumenta o número de níveis adicionados pelo Doce Raro em 1." + }, + "BERRY_POUCH": { + "name": "Bolsa de Berries", + "description": "Adiciona uma chance de 30% de que uma berry usada não seja consumida." + }, + "FOCUS_BAND": { + "name": "Bandana", + "description": "Adiciona uma chance de 10% de sobreviver com 1 PS após ser danificado o suficiente para desmaiar." + }, + "QUICK_CLAW": { + "name": "Garra Rápida", + "description": "Adiciona uma chance de 10% de atacar primeiro, ignorando sua velocidade (após prioridades)." + }, + "KINGS_ROCK": { + "name": "Pedra do Rei", + "description": "Adiciona uma chance de 10% de movimentos fazerem o oponente hesitar." + }, + "LEFTOVERS": { + "name": "Sobras", + "description": "Cura 1/16 dos PS máximos de um Pokémon a cada turno." + }, + "SHELL_BELL": { + "name": "Concha-Sino", + "description": "Cura 1/8 do dano causado por um Pokémon." + }, + "TOXIC_ORB": { + "name": "Esfera Tóxica", + "description": "Uma esfera estranha que exala toxinas quando tocada e envenena seriamente quem a segurar." + }, + "FLAME_ORB": { + "name": "Esfera da Chama", + "description": "Uma esfera estranha que aquece quando tocada e queima quem a segurar." + }, + "BATON": { + "name": "Bastão", + "description": "Permite passar mudanças de atributo ao trocar Pokémon, ignorando armadilhas." + }, + "SHINY_CHARM": { + "name": "Amuleto Brilhante", + "description": "Aumenta drasticamente a chance de um Pokémon selvagem ser Shiny." + }, + "ABILITY_CHARM": { + "name": "Amuleto de Habilidade", + "description": "Aumenta drasticamente a chance de um Pokémon selvagem ter uma Habilidade Oculta." + }, + "IV_SCANNER": { + "name": "Scanner de IVs", + "description": "Permite escanear os IVs de Pokémon selvagens. 2 IVs são revelados por item. Os melhores IVs são mostrados primeiro." + }, + "DNA_SPLICERS": { + "name": "Splicer de DNA" + }, + "MINI_BLACK_HOLE": { + "name": "Mini Buraco Negro" + }, + "GOLDEN_POKEBALL": { + "name": "Poké Bola Dourada", + "description": "Adiciona 1 opção de item extra ao final de cada batalha." + }, + "ENEMY_DAMAGE_BOOSTER": { + "name": "Token de Dano", + "description": "Aumenta o dano em 5%." + }, + "ENEMY_DAMAGE_REDUCTION": { + "name": "Token de Proteção", + "description": "Reduz o dano recebido em 2,5%." + }, + "ENEMY_HEAL": { + "name": "Token de Recuperação", + "description": "Cura 2% dos PS máximos a cada turno." + }, + "ENEMY_ATTACK_POISON_CHANCE": { + "name": "Token de Veneno" + }, + "ENEMY_ATTACK_PARALYZE_CHANCE": { + "name": "Token de Paralisia" + }, + "ENEMY_ATTACK_BURN_CHANCE": { + "name": "Token de Queimadura" + }, + "ENEMY_STATUS_EFFECT_HEAL_CHANCE": { + "name": "Token de Cura Total", + "description": "Adiciona uma chance de 2.5% a cada turno de curar uma condição de status." + }, + "ENEMY_ENDURE_CHANCE": { + "name": "Token de Persistência" + }, + "ENEMY_FUSED_CHANCE": { + "name": "Token de Fusão", + "description": "Adiciona uma chance de 1% de que um Pokémon selvagem seja uma fusão." + } + }, + "SpeciesBoosterItem": { + "LIGHT_BALL": { + "name": "Bola de Luz", + "description": "Orbe intrigante que aumenta os atributos de Ataque e Ataque Esp. de Pikachu." + }, + "THICK_CLUB": { + "name": "Osso Grosso", + "description": "Este duro osso de origem desconhecida aumenta o atributo de Ataque de Cubone ou Marowak." + }, + "METAL_POWDER": { + "name": "Pó Metálico", + "description": "Extremamente fino, porém duro, este pó estranho aumenta o atributo de Defesa de Ditto." + }, + "QUICK_POWDER": { + "name": "Pó Veloz", + "description": "Extremamente fino, porém duro, este pó estranho aumenta o atributo de Velocidade de Ditto." + } + }, + "TempBattleStatBoosterItem": { + "x_attack": "Ataque X", + "x_defense": "Defesa X", + "x_sp_atk": "Ataque Esp. X", + "x_sp_def": "Defesa Esp. X", + "x_speed": "Velocidade X", + "x_accuracy": "Precisão X", + "dire_hit": "Direto" + }, + "TempBattleStatBoosterStatName": { + "ATK": "Ataque", + "DEF": "Defesa", + "SPATK": "Ataque Esp.", + "SPDEF": "Defesa Esp.", + "SPD": "Velocidade", + "ACC": "Precisão", + "CRIT": "Chance de Acerto Crítico", + "EVA": "Evasão", + "DEFAULT": "???" + }, + "AttackTypeBoosterItem": { + "silk_scarf": "Lenço de Seda", + "black_belt": "Faixa Preta", + "sharp_beak": "Bico Afiado", + "poison_barb": "Farpa Venenosa", + "soft_sand": "Areia Macia", + "hard_stone": "Pedra Dura", + "silver_powder": "Pó de Prata", + "spell_tag": "Talismã de Feitiço", + "metal_coat": "Revestimento Metálico", + "charcoal": "Carvão", + "mystic_water": "Água Mística", + "miracle_seed": "Semente Milagrosa", + "magnet": "Ímã", + "twisted_spoon": "Colher Torcida", + "never_melt_ice": "Gelo Eterno", + "dragon_fang": "Presa de Dragão", + "black_glasses": "Óculos Escuros", + "fairy_feather": "Pena de Fada" + }, + "BaseStatBoosterItem": { + "hp_up": "Mais PS", + "protein": "Proteína", + "iron": "Ferro", + "calcium": "Cálcio", + "zinc": "Zinco", + "carbos": "Carboidrato" + }, + "EvolutionItem": { + "NONE": "None", + "LINKING_CORD": "Cabo de Conexão", + "SUN_STONE": "Pedra do Sol", + "MOON_STONE": "Pedra da Lua", + "LEAF_STONE": "Pedra da Folha", + "FIRE_STONE": "Pedra do Fogo", + "WATER_STONE": "Pedra da Água", + "THUNDER_STONE": "Pedra do Trovão", + "ICE_STONE": "Pedra do Gelo", + "DUSK_STONE": "Pedra do Crepúsculo", + "DAWN_STONE": "Pedra da Alvorada", + "SHINY_STONE": "Pedra Brilhante", + "CRACKED_POT": "Vaso Quebrado", + "SWEET_APPLE": "Maçã Doce", + "TART_APPLE": "Maçã Azeda", + "STRAWBERRY_SWEET": "Doce de Morango", + "UNREMARKABLE_TEACUP": "Xícara Comum", + "CHIPPED_POT": "Pote Lascado", + "BLACK_AUGURITE": "Mineral Negro", + "GALARICA_CUFF": "Bracelete de Galar", + "GALARICA_WREATH": "Coroa de Galar", + "PEAT_BLOCK": "Bloco de Turfa", + "AUSPICIOUS_ARMOR": "Armadura Prometida", + "MALICIOUS_ARMOR": "Armadura Maldita", + "MASTERPIECE_TEACUP": "Xícara Excepcional", + "METAL_ALLOY": "Liga de Metal", + "SCROLL_OF_DARKNESS": "Pergaminho da Escuridão", + "SCROLL_OF_WATERS": "Pergaminho da Água", + "SYRUPY_APPLE": "Xarope de Maçã" + }, + "FormChangeItem": { + "NONE": "None", + "ABOMASITE": "Abomasita", + "ABSOLITE": "Absolita", + "AERODACTYLITE": "Aerodactylita", + "AGGRONITE": "Aggronita", + "ALAKAZITE": "Alakazita", + "ALTARIANITE": "Altarianita", + "AMPHAROSITE": "Ampharosita", + "AUDINITE": "Audinita", + "BANETTITE": "Banettita", + "BEEDRILLITE": "Beedrillita", + "BLASTOISINITE": "Blastoisinita", + "BLAZIKENITE": "Blazikenita", + "CAMERUPTITE": "Cameruptita", + "CHARIZARDITE_X": "Charizardita X", + "CHARIZARDITE_Y": "Charizardita Y", + "DIANCITE": "Diancita", + "GALLADITE": "Galladita", + "GARCHOMPITE": "Garchompita", + "GARDEVOIRITE": "Gardevoirita", + "GENGARITE": "Gengarita", + "GLALITITE": "Glalitita", + "GYARADOSITE": "Gyaradosita", + "HERACRONITE": "Heracronita", + "HOUNDOOMINITE": "Houndoominita", + "KANGASKHANITE": "Kangaskhanita", + "LATIASITE": "Latiasita", + "LATIOSITE": "Latiosita", + "LOPUNNITE": "Lopunnita", + "LUCARIONITE": "Lucarionita", + "MANECTITE": "Manectita", + "MAWILITE": "Mawilita", + "MEDICHAMITE": "Medichamita", + "METAGROSSITE": "Metagrossita", + "MEWTWONITE_X": "Mewtwonita X", + "MEWTWONITE_Y": "Mewtwonita Y", + "PIDGEOTITE": "Pidgeotita", + "PINSIRITE": "Pinsirita", + "RAYQUAZITE": "Rayquazita", + "SABLENITE": "Sablenita", + "SALAMENCITE": "Salamencita", + "SCEPTILITE": "Sceptilita", + "SCIZORITE": "Scizorita", + "SHARPEDONITE": "Sharpedonita", + "SLOWBRONITE": "Slowbronita", + "STEELIXITE": "Steelixita", + "SWAMPERTITE": "Swampertita", + "TYRANITARITE": "Tyranitarita", + "VENUSAURITE": "Venusaurita", + "BLUE_ORB": "Orbe Azul", + "RED_ORB": "Orbe Vermelha", + "SHARP_METEORITE": "Meteorito Afiado", + "HARD_METEORITE": "Meteorito Duro", + "SMOOTH_METEORITE": " Meteorito Liso", + "ADAMANT_CRYSTAL": "Cristal Adamante", + "LUSTROUS_GLOBE": "Globo Brilhante", + "GRISEOUS_CORE": "Núcleo Platinado", + "REVEAL_GLASS": "Espelho da Verdade", + "GRACIDEA": "Gracídea", + "MAX_MUSHROOMS": "Cogumáximo", + "DARK_STONE": "Pedra das Trevas", + "LIGHT_STONE": "Pedra da Luz", + "PRISON_BOTTLE": "Garrafa Prisão", + "N_LUNARIZER": "Lunarizador N", + "N_SOLARIZER": "Solarizador N", + "RUSTED_SWORD": "Espada Enferrujada", + "RUSTED_SHIELD": "Escudo Enferrujado", + "ICY_REINS_OF_UNITY": "Rédeas de Gelo da União", + "SHADOW_REINS_OF_UNITY": "Rédeas Sombrias da União", + "WELLSPRING_MASK": "Máscara Nascente", + "HEARTHFLAME_MASK": "Máscara Fornalha", + "CORNERSTONE_MASK": "Máscara Alicerce", + "SHOCK_DRIVE": "MagneDisco", + "BURN_DRIVE": "IgneDisco", + "CHILL_DRIVE": "CrioDisco", + "DOUSE_DRIVE": "HidroDisco", + "ULTRANECROZIUM_Z": "Ultranecrozium Z", + "FIST_PLATE": "Placa do Punho", + "SKY_PLATE": "Placa do Céu", + "TOXIC_PLATE": "Placa Tóxica", + "EARTH_PLATE": "Placa Terrestre", + "STONE_PLATE": "Placa de Pedra", + "INSECT_PLATE": "Placa de Insetos", + "SPOOKY_PLATE": "Placa Assustadora", + "IRON_PLATE": "Placa de Ferro", + "FLAME_PLATE": "Placa da Chama", + "SPLASH_PLATE": "Placa de Respingo", + "MEADOW_PLATE": "Placa da Planície", + "ZAP_PLATE": "Placa Elétrica", + "MIND_PLATE": "Placa Mental", + "ICICLE_PLATE": "Placa de Gelo", + "DRACO_PLATE": "Placa do Dragão", + "DREAD_PLATE": "Placa Sombria", + "PIXIE_PLATE": "Placa de Fada", + "BLANK_PLATE": "Placa em Branco", + "LEGEND_PLATE": "Placa Lendária", + "FIGHTING_MEMORY": "Memória de Lutador", + "FLYING_MEMORY": "Memória Voadora", + "POISON_MEMORY": "Memória Venenosa", + "GROUND_MEMORY": "Memória Terrestre", + "ROCK_MEMORY": "Memória da Rocha", + "BUG_MEMORY": "Memória de Insetos", + "GHOST_MEMORY": "Memória Fantasma", + "STEEL_MEMORY": "Memória de Aço", + "FIRE_MEMORY": "Memória de Fogo", + "WATER_MEMORY": "Memória da Água", + "GRASS_MEMORY": "Memória de Planta", + "ELECTRIC_MEMORY": "Memória Elétrica", + "PSYCHIC_MEMORY": "Memória Psíquica", + "ICE_MEMORY": "Memória de Gelo", + "DRAGON_MEMORY": "Memória do Dragão", + "DARK_MEMORY": "Memória Sombria", + "FAIRY_MEMORY": "Memória de Fada", + "BLANK_MEMORY": "Memória Vazia" + } +} diff --git a/src/locales/pt_BR/modifier-type.ts b/src/locales/pt_BR/modifier-type.ts deleted file mode 100644 index d907784a443..00000000000 --- a/src/locales/pt_BR/modifier-type.ts +++ /dev/null @@ -1,457 +0,0 @@ -import { ModifierTypeTranslationEntries } from "#app/interfaces/locales"; - -export const modifierType: ModifierTypeTranslationEntries = { - ModifierType: { - "AddPokeballModifierType": { - name: "{{modifierCount}}x {{pokeballName}}", - description: "Ganhe {{modifierCount}}x {{pokeballName}} (Mochila: {{pokeballAmount}}) \nChance de captura: {{catchRate}}.", - }, - "AddVoucherModifierType": { - name: "{{modifierCount}}x {{voucherTypeName}}", - description: "Ganhe {{modifierCount}}x {{voucherTypeName}}.", - }, - "PokemonHeldItemModifierType": { - extra: { - "inoperable": "{{pokemonName}} não pode\nsegurar esse item!", - "tooMany": "{{pokemonName}} tem muitos\nmuitos deste item!", - } - }, - "PokemonHpRestoreModifierType": { - description: "Restaura {{restorePoints}} PS ou {{restorePercent}}% PS de um Pokémon, o que for maior.", - extra: { - "fully": "Restaura totalmente os PS de um Pokémon.", - "fullyWithStatus": "Restaura totalmente os PS de um Pokémon e cura qualquer mudança de estado.", - } - }, - "PokemonReviveModifierType": { - description: "Reanima um Pokémon e restaura {{restorePercent}}% PS.", - }, - "PokemonStatusHealModifierType": { - description: "Cura uma mudança de estado de um Pokémon.", - }, - "PokemonPpRestoreModifierType": { - description: "Restaura {{restorePoints}} PP para um movimento de um Pokémon.", - extra: { - "fully": "Restaura todos os PP para um movimento de um Pokémon.", - } - }, - "PokemonAllMovePpRestoreModifierType": { - description: "Restaura {{restorePoints}} PP para todos os movimentos de um Pokémon.", - extra: { - "fully": "Restaura todos os PP para todos os movimentos de um Pokémon.", - } - }, - "PokemonPpUpModifierType": { - description: "Aumenta permanentemente os PP para o movimento de um Pokémon em {{upPoints}} para cada 5 PP máximos (máximo 3).", - }, - "PokemonNatureChangeModifierType": { - name: "Hortelã {{natureName}}", - description: "Muda a natureza do Pokémon para {{natureName}} e a desbloqueia permanentemente.", - }, - "DoubleBattleChanceBoosterModifierType": { - description: "Dobra as chances de encontrar uma batalha em dupla por {{battleCount}} batalhas.", - }, - "TempBattleStatBoosterModifierType": { - description: "Aumenta o atributo de {{tempBattleStatName}} para todos os membros da equipe por 5 batalhas.", - }, - "AttackTypeBoosterModifierType": { - description: "Aumenta o poder dos ataques do tipo {{moveType}} de um Pokémon em 20%.", - }, - "PokemonLevelIncrementModifierType": { - description: "Aumenta em {{levels}} o nível de um Pokémon.", - }, - "AllPokemonLevelIncrementModifierType": { - description: "Aumenta em {{levels}} o nível de todos os membros da equipe.", - }, - "PokemonBaseStatBoosterModifierType": { - description: "Aumenta o atributo base de {{statName}} em 10%. Quanto maior os IVs, maior o limite de aumento.", - }, - "AllPokemonFullHpRestoreModifierType": { - description: "Restaura totalmente os PS de todos os Pokémon.", - }, - "AllPokemonFullReviveModifierType": { - description: "Reanima todos os Pokémon, restaurando totalmente seus PS.", - }, - "MoneyRewardModifierType": { - description: "Garante uma quantidade {{moneyMultiplier}} de dinheiro (₽{{moneyAmount}}).", - extra: { - "small": "pequena", - "moderate": "moderada", - "large": "grande", - }, - }, - "ExpBoosterModifierType": { - description: "Aumenta o ganho de pontos de experiência em {{boostPercent}}%.", - }, - "PokemonExpBoosterModifierType": { - description: "Aumenta o ganho de pontos de experiência de quem segura em {{boostPercent}}%.", - }, - "PokemonFriendshipBoosterModifierType": { - description: "Aumenta o ganho de amizade por vitória em 50%.", - }, - "PokemonMoveAccuracyBoosterModifierType": { - description: "Aumenta a precisão dos movimentos em {{accuracyAmount}} (máximo 100).", - }, - "PokemonMultiHitModifierType": { - description: "Ataques acertam uma vez adicional ao custo de uma redução de poder de 60/75/82.5% por item, respectivamente.", - }, - "TmModifierType": { - name: "TM{{moveId}} - {{moveName}}", - description: "Ensina {{moveName}} a um Pokémon.", - }, - "TmModifierTypeWithInfo": { - name: "TM{{moveId}} - {{moveName}}", - description: "Ensina {{moveName}} a um Pokémon\n(Segure C ou Shift para mais informações).", - }, - "EvolutionItemModifierType": { - description: "Faz certos Pokémon evoluírem.", - }, - "FormChangeItemModifierType": { - description: "Faz certos Pokémon mudarem de forma.", - }, - "FusePokemonModifierType": { - description: "Combina dois Pokémon (transfere Habilidade, divide os atributos base e tipos, compartilha os movimentos).", - }, - "TerastallizeModifierType": { - name: "Fragmento Tera {{teraType}}", - description: "Terastalize um Pokémon para o tipo {{teraType}} por 10 ondas.", - }, - "ContactHeldItemTransferChanceModifierType": { - description: "Quando atacar, tem {{chancePercent}}% de chance de roubar um item do oponente.", - }, - "TurnHeldItemTransferModifierType": { - description: "Todo turno, o Pokémon ganha um item aleatório do oponente.", - }, - "EnemyAttackStatusEffectChanceModifierType": { - description: "Ganha {{chancePercent}}% de chance de infligir {{statusEffect}} com ataques.", - }, - "EnemyEndureChanceModifierType": { - description: "Ganha {{chancePercent}}% de chance de sobreviver a um ataque que o faria desmaiar.", - }, - - "RARE_CANDY": { name: "Doce Raro" }, - "RARER_CANDY": { name: "Doce Raríssimo" }, - - "MEGA_BRACELET": { name: "Mega Bracelete", description: "Mega Pedras ficam disponíveis." }, - "DYNAMAX_BAND": { name: "Bracelete Dynamax", description: "Cogumáximos ficam disponíveis." }, - "TERA_ORB": { name: "Orbe Tera", description: "Fragmentos Tera ficam disponíveis." }, - - "MAP": { name: "Mapa", description: "Permite escolher a próxima rota." }, - - "POTION": { name: "Poção" }, - "SUPER_POTION": { name: "Super Poção" }, - "HYPER_POTION": { name: "Hiper Poção" }, - "MAX_POTION": { name: "Poção Máxima" }, - "FULL_RESTORE": { name: "Restaurador" }, - - "REVIVE": { name: "Reanimador" }, - "MAX_REVIVE": { name: "Reanimador Máximo" }, - - "FULL_HEAL": { name: "Cura Total" }, - - "SACRED_ASH": { name: "Cinza Sagrada" }, - - "REVIVER_SEED": { name: "Semente Reanimadora", description: "Após desmaiar por um ataque direto, reanima com 50% de PS." }, - - "WHITE_HERB": { name: "Erva Branca", description: "Restaura quaisquer atributos diminuídos em batalha." }, - - "ETHER": { name: "Éter" }, - "MAX_ETHER": { name: "Éter Máximo" }, - - "ELIXIR": { name: "Elixir" }, - "MAX_ELIXIR": { name: "Elixir Máximo" }, - - "PP_UP": { name: "Mais PP" }, - "PP_MAX": { name: "PP Máximo" }, - - "LURE": { name: "Incenso" }, - "SUPER_LURE": { name: "Super Incenso" }, - "MAX_LURE": { name: "Incenso Máximo" }, - - "MEMORY_MUSHROOM": { name: "Cogumemória", description: "Relembra um movimento esquecido." }, - - "EXP_SHARE": { name: "Compart. de Exp.", description: "Distribui pontos de experiência para todos os membros da equipe." }, - "EXP_BALANCE": { name: "Balanceador de Exp.", description: "Distribui pontos de experiência principalmente para os Pokémon mais fracos." }, - - "OVAL_CHARM": { name: "Amuleto Oval", description: "Quando vários Pokémon participam de uma batalha, cada um recebe 10% extra de pontos de experiência." }, - - "EXP_CHARM": { name: "Amuleto de Exp." }, - "SUPER_EXP_CHARM": { name: "Super Amuleto de Exp." }, - "GOLDEN_EXP_CHARM": { name: "Amuleto de Exp. Dourado" }, - - "LUCKY_EGG": { name: "Ovo da Sorte" }, - "GOLDEN_EGG": { name: "Ovo Dourado" }, - - "SOOTHE_BELL": { name: "Guizo" }, - - "SCOPE_LENS": { name: "Lentes de Mira", description: "Estas lentes facilitam o foco em pontos fracos. Aumenta a chance de acerto crítico de quem a segurar." }, - "LEEK": { name: "Alho-poró", description: "Esse talo de alho-poró muito longo e rígido aumenta a taxa de acerto crítico dos movimentos do Farfetch'd." }, - - "EVIOLITE": { name: "Eviolita", description: "Esse misterioso caroço evolutivo aumenta os atributos de Defesa e Def. Esp. quando segurado por um Pokémon que ainda pode evoluir." }, - - "SOUL_DEW": { name: "Joia da Alma", description: "Aumenta a influência da natureza de um Pokémon em seus atributos em 10% (cumulativo)." }, - - "NUGGET": { name: "Pepita" }, - "BIG_NUGGET": { name: "Pepita Grande" }, - "RELIC_GOLD": { name: "Relíquia de Ouro" }, - - "AMULET_COIN": { name: "Moeda Amuleto", description: "Aumenta a recompensa de dinheiro em 50%." }, - "GOLDEN_PUNCH": { name: "Soco Dourado", description: "Concede 50% do dano causado em dinheiro." }, - "COIN_CASE": { name: "Moedeira", description: "Após cada 10ª batalha, recebe 10% de seu dinheiro em juros." }, - - "LOCK_CAPSULE": { name: "Cápsula de Travamento", description: "Permite que você trave raridades de itens ao rolar novamente." }, - - "GRIP_CLAW": { name: "Garra-Aperto" }, - "WIDE_LENS": { name: "Lente Ampla" }, - - "MULTI_LENS": { name: "Multi Lentes" }, - - "HEALING_CHARM": { name: "Amuleto de Cura", description: "Aumenta a eficácia dos movimentos e itens que restauram PS em 10% (exceto Reanimador)." }, - "CANDY_JAR": { name: "Pote de Doces", description: "Aumenta o número de níveis adicionados pelo Doce Raro em 1." }, - - "BERRY_POUCH": { name: "Bolsa de Berries", description: "Adiciona uma chance de 30% de que uma berry usada não seja consumida." }, - - "FOCUS_BAND": { name: "Bandana", description: "Adiciona uma chance de 10% de sobreviver com 1 PS após ser danificado o suficiente para desmaiar." }, - - "QUICK_CLAW": { name: "Garra Rápida", description: "Adiciona uma chance de 10% de atacar primeiro, ignorando sua velocidade (após prioridades)." }, - - "KINGS_ROCK": { name: "Pedra do Rei", description: "Adiciona uma chance de 10% de movimentos fazerem o oponente hesitar." }, - - "LEFTOVERS": { name: "Sobras", description: "Cura 1/16 dos PS máximos de um Pokémon a cada turno." }, - "SHELL_BELL": { name: "Concha-Sino", description: "Cura 1/8 do dano causado por um Pokémon." }, - - "TOXIC_ORB": { name: "Esfera Tóxica", description: "Uma esfera estranha que exala toxinas quando tocada e envenena seriamente quem a segurar." }, - "FLAME_ORB": { name: "Esfera da Chama", description: "Uma esfera estranha que aquece quando tocada e queima quem a segurar." }, - - "BATON": { name: "Bastão", description: "Permite passar mudanças de atributo ao trocar Pokémon, ignorando armadilhas." }, - - "SHINY_CHARM": { name: "Amuleto Brilhante", description: "Aumenta drasticamente a chance de um Pokémon selvagem ser Shiny." }, - "ABILITY_CHARM": { name: "Amuleto de Habilidade", description: "Aumenta drasticamente a chance de um Pokémon selvagem ter uma Habilidade Oculta." }, - - "IV_SCANNER": { name: "Scanner de IVs", description: "Permite escanear os IVs de Pokémon selvagens. 2 IVs são revelados por item. Os melhores IVs são mostrados primeiro." }, - - "DNA_SPLICERS": { name: "Splicer de DNA" }, - - "MINI_BLACK_HOLE": { name: "Mini Buraco Negro" }, - - "GOLDEN_POKEBALL": { name: "Poké Bola Dourada", description: "Adiciona 1 opção de item extra ao final de cada batalha." }, - - "ENEMY_DAMAGE_BOOSTER": { name: "Token de Dano", description: "Aumenta o dano em 5%." }, - "ENEMY_DAMAGE_REDUCTION": { name: "Token de Proteção", description: "Reduz o dano recebido em 2,5%." }, - "ENEMY_HEAL": { name: "Token de Recuperação", description: "Cura 2% dos PS máximos a cada turno." }, - "ENEMY_ATTACK_POISON_CHANCE": { name: "Token de Veneno" }, - "ENEMY_ATTACK_PARALYZE_CHANCE": { name: "Token de Paralisia" }, - "ENEMY_ATTACK_BURN_CHANCE": { name: "Token de Queimadura" }, - "ENEMY_STATUS_EFFECT_HEAL_CHANCE": { name: "Token de Cura Total", description: "Adiciona uma chance de 2.5% a cada turno de curar uma condição de status." }, - "ENEMY_ENDURE_CHANCE": { name: "Token de Persistência" }, - "ENEMY_FUSED_CHANCE": { name: "Token de Fusão", description: "Adiciona uma chance de 1% de que um Pokémon selvagem seja uma fusão." }, - }, - SpeciesBoosterItem: { - "LIGHT_BALL": { name: "Bola de Luz", description: "Orbe intrigante que aumenta os atributos de Ataque e Ataque Esp. de Pikachu." }, - "THICK_CLUB": { name: "Osso Grosso", description: "Este duro osso de origem desconhecida aumenta o atributo de Ataque de Cubone ou Marowak." }, - "METAL_POWDER": { name: "Pó Metálico", description: "Extremamente fino, porém duro, este pó estranho aumenta o atributo de Defesa de Ditto." }, - "QUICK_POWDER": { name: "Pó Veloz", description: "Extremamente fino, porém duro, este pó estranho aumenta o atributo de Velocidade de Ditto." } - }, - TempBattleStatBoosterItem: { - "x_attack": "Ataque X", - "x_defense": "Defesa X", - "x_sp_atk": "Ataque Esp. X", - "x_sp_def": "Defesa Esp. X", - "x_speed": "Velocidade X", - "x_accuracy": "Precisão X", - "dire_hit": "Direto", - }, - - TempBattleStatBoosterStatName: { - "ATK": "Ataque", - "DEF": "Defesa", - "SPATK": "Ataque Esp.", - "SPDEF": "Defesa Esp.", - "SPD": "Velocidade", - "ACC": "Precisão", - "CRIT": "Chance de Acerto Crítico", - "EVA": "Evasão", - "DEFAULT": "???", - }, - - AttackTypeBoosterItem: { - "silk_scarf": "Lenço de Seda", - "black_belt": "Faixa Preta", - "sharp_beak": "Bico Afiado", - "poison_barb": "Farpa Venenosa", - "soft_sand": "Areia Macia", - "hard_stone": "Pedra Dura", - "silver_powder": "Pó de Prata", - "spell_tag": "Talismã de Feitiço", - "metal_coat": "Revestimento Metálico", - "charcoal": "Carvão", - "mystic_water": "Água Mística", - "miracle_seed": "Semente Milagrosa", - "magnet": "Ímã", - "twisted_spoon": "Colher Torcida", - "never_melt_ice": "Gelo Eterno", - "dragon_fang": "Presa de Dragão", - "black_glasses": "Óculos Escuros", - "fairy_feather": "Pena de Fada", - }, - BaseStatBoosterItem: { - "hp_up": "Mais PS", - "protein": "Proteína", - "iron": "Ferro", - "calcium": "Cálcio", - "zinc": "Zinco", - "carbos": "Carboidrato", - }, - EvolutionItem: { - "NONE": "None", - - "LINKING_CORD": "Cabo de Conexão", - "SUN_STONE": "Pedra do Sol", - "MOON_STONE": "Pedra da Lua", - "LEAF_STONE": "Pedra da Folha", - "FIRE_STONE": "Pedra do Fogo", - "WATER_STONE": "Pedra da Água", - "THUNDER_STONE": "Pedra do Trovão", - "ICE_STONE": "Pedra do Gelo", - "DUSK_STONE": "Pedra do Crepúsculo", - "DAWN_STONE": "Pedra da Alvorada", - "SHINY_STONE": "Pedra Brilhante", - "CRACKED_POT": "Vaso Quebrado", - "SWEET_APPLE": "Maçã Doce", - "TART_APPLE": "Maçã Azeda", - "STRAWBERRY_SWEET": "Doce de Morango", - "UNREMARKABLE_TEACUP": "Xícara Comum", - - "CHIPPED_POT": "Pote Lascado", - "BLACK_AUGURITE": "Mineral Negro", - "GALARICA_CUFF": "Bracelete de Galar", - "GALARICA_WREATH": "Coroa de Galar", - "PEAT_BLOCK": "Bloco de Turfa", - "AUSPICIOUS_ARMOR": "Armadura Prometida", - "MALICIOUS_ARMOR": "Armadura Maldita", - "MASTERPIECE_TEACUP": "Xícara Excepcional", - "METAL_ALLOY": "Liga de Metal", - "SCROLL_OF_DARKNESS": "Pergaminho da Escuridão", - "SCROLL_OF_WATERS": "Pergaminho da Água", - "SYRUPY_APPLE": "Xarope de Maçã", - }, - FormChangeItem: { - "NONE": "None", - - "ABOMASITE": "Abomasita", - "ABSOLITE": "Absolita", - "AERODACTYLITE": "Aerodactylita", - "AGGRONITE": "Aggronita", - "ALAKAZITE": "Alakazita", - "ALTARIANITE": "Altarianita", - "AMPHAROSITE": "Ampharosita", - "AUDINITE": "Audinita", - "BANETTITE": "Banettita", - "BEEDRILLITE": "Beedrillita", - "BLASTOISINITE": "Blastoisinita", - "BLAZIKENITE": "Blazikenita", - "CAMERUPTITE": "Cameruptita", - "CHARIZARDITE X": "Charizardita X", - "CHARIZARDITE Y": "Charizardita Y", - "DIANCITE": "Diancita", - "GALLADITE": "Galladita", - "GARCHOMPITE": "Garchompita", - "GARDEVOIRITE": "Gardevoirita", - "GENGARITE": "Gengarita", - "GLALITITE": "Glalitita", - "GYARADOSITE": "Gyaradosita", - "HERACRONITE": "Heracronita", - "HOUNDOOMINITE": "Houndoominita", - "KANGASKHANITE": "Kangaskhanita", - "LATIASITE": "Latiasita", - "LATIOSITE": "Latiosita", - "LOPUNNITE": "Lopunnita", - "LUCARIONITE": "Lucarionita", - "MANECTITE": "Manectita", - "MAWILITE": "Mawilita", - "MEDICHAMITE": "Medichamita", - "METAGROSSITE": "Metagrossita", - "MEWTWONITE X": "Mewtwonita X", - "MEWTWONITE Y": "Mewtwonita Y", - "PIDGEOTITE": "Pidgeotita", - "PINSIRITE": "Pinsirita", - "SABLENITE": "Sablenita", - "RAYQUAZITE": "Rayquazita", - "SALAMENCITE": "Salamencita", - "SCEPTILITE": "Sceptilita", - "SCIZORITE": "Scizorita", - "SHARPEDONITE": "Sharpedonita", - "SLOWBRONITE": "Slowbronita", - "STEELIXITE": "Steelixita", - "SWAMPERTITE": "Swampertita", - "TYRANITARITE": "Tyranitarita", - "VENUSAURITE": "Venusaurita", - - "BLUE_ORB": "Orbe Azul", - "RED_ORB": "Orbe Vermelha", - "SHARP_METEORITE": "Meteorito Afiado", - "HARD_METEORITE": "Meteorito Duro", - "SMOOTH_METEORITE": " Meteorito Liso", - "ADAMANT_CRYSTAL": "Cristal Adamante", - "LUSTROUS_GLOBE": "Globo Brilhante", - "GRISEOUS_CORE": "Núcleo Platinado", - "REVEAL_GLASS": "Espelho da Verdade", - "GRACIDEA": "Gracídea", - "MAX_MUSHROOMS": "Cogumáximo", - "DARK_STONE": "Pedra das Trevas", - "LIGHT_STONE": "Pedra da Luz", - "PRISON_BOTTLE": "Garrafa Prisão", - "N_LUNARIZER": "Lunarizador N", - "N_SOLARIZER": "Solarizador N", - "RUSTED_SWORD": "Espada Enferrujada", - "RUSTED_SHIELD": "Escudo Enferrujado", - "ICY_REINS_OF_UNITY": "Rédeas de Gelo da União", - "SHADOW_REINS_OF_UNITY": "Rédeas Sombrias da União", - "WELLSPRING_MASK": "Máscara Nascente", - "HEARTHFLAME_MASK": "Máscara Fornalha", - "CORNERSTONE_MASK": "Máscara Alicerce", - "SHOCK_DRIVE": "MagneDisco", - "BURN_DRIVE": "IgneDisco", - "CHILL_DRIVE": "CrioDisco", - "DOUSE_DRIVE": "HidroDisco", - "ULTRANECROZIUM_Z": "Ultranecrozium Z", - - "FIST_PLATE": "Placa do Punho", - "SKY_PLATE": "Placa do Céu", - "TOXIC_PLATE": "Placa Tóxica", - "EARTH_PLATE": "Placa Terrestre", - "STONE_PLATE": "Placa de Pedra", - "INSECT_PLATE": "Placa de Insetos", - "SPOOKY_PLATE": "Placa Assustadora", - "IRON_PLATE": "Placa de Ferro", - "FLAME_PLATE": "Placa da Chama", - "SPLASH_PLATE": "Placa de Respingo", - "MEADOW_PLATE": "Placa da Planície", - "ZAP_PLATE": "Placa Elétrica", - "MIND_PLATE": "Placa Mental", - "ICICLE_PLATE": "Placa de Gelo", - "DRACO_PLATE": "Placa do Dragão", - "DREAD_PLATE": "Placa Sombria", - "PIXIE_PLATE": "Placa de Fada", - "BLANK_PLATE": "Placa em Branco", - "LEGEND_PLATE": "Placa Lendária", - "FIGHTING_MEMORY": "Memória de Lutador", - "FLYING_MEMORY": "Memória Voadora", - "POISON_MEMORY": "Memória Venenosa", - "GROUND_MEMORY": "Memória Terrestre", - "ROCK_MEMORY": "Memória da Rocha", - "BUG_MEMORY": "Memória de Insetos", - "GHOST_MEMORY": "Memória Fantasma", - "STEEL_MEMORY": "Memória de Aço", - "FIRE_MEMORY": "Memória de Fogo", - "WATER_MEMORY": "Memória da Água", - "GRASS_MEMORY": "Memória de Planta", - "ELECTRIC_MEMORY": "Memória Elétrica", - "PSYCHIC_MEMORY": "Memória Psíquica", - "ICE_MEMORY": "Memória de Gelo", - "DRAGON_MEMORY": "Memória do Dragão", - "DARK_MEMORY": "Memória Sombria", - "FAIRY_MEMORY": "Memória de Fada", - "BLANK_MEMORY": "Memória Vazia", - }, -} as const; diff --git a/src/locales/pt_BR/modifier.ts b/src/locales/pt_BR/modifier.json similarity index 77% rename from src/locales/pt_BR/modifier.ts rename to src/locales/pt_BR/modifier.json index 168665205c3..602a0be3a5b 100644 --- a/src/locales/pt_BR/modifier.ts +++ b/src/locales/pt_BR/modifier.json @@ -1,14 +1,12 @@ -import { SimpleTranslationEntries } from "#app/interfaces/locales"; - -export const modifier: SimpleTranslationEntries = { +{ "surviveDamageApply": "{{pokemonNameWithAffix}} aguentou o tranco\nusando sua {{typeName}}!", "turnHealApply": "{{pokemonNameWithAffix}} restaurou um pouco de PS usando\nsuas {{typeName}}!", "hitHealApply": "{{pokemonNameWithAffix}} restaurou um pouco de PS usando\nsua {{typeName}}!", - "pokemonInstantReviveApply": "{{pokemonNameWithAffix}} foi revivido\npor sua {{typeName}}!", + "pokemonInstantReviveApply": "{{pokemonNameWithAffix}} foi reanimado\npor sua {{typeName}}!", "pokemonResetNegativeStatStageApply": "Os atributos diminuídos de {{pokemonNameWithAffix}} foram\nrestaurados por seu(sua) {{typeName}}!", "moneyInterestApply": "Você recebeu um juros de ₽{{moneyAmount}}\nde sua {{typeName}}!", "turnHeldItemTransferApply": "{{itemName}} de {{pokemonNameWithAffix}} foi absorvido(a)\npelo {{typeName}} de {{pokemonName}}!", "contactHeldItemTransferApply": "{{itemName}} de {{pokemonNameWithAffix}} foi pego(a)\npela {{typeName}} de {{pokemonName}}!", "enemyTurnHealApply": "{{pokemonNameWithAffix}}\nrestaurou um pouco de seus PS!", - "bypassSpeedChanceApply": "{{pokemonName}} se move mais rápido que o normal graças à sua {{itemName}}!", -} as const; + "bypassSpeedChanceApply": "{{pokemonName}} se move mais rápido que o normal graças à sua {{itemName}}!" +} \ No newline at end of file diff --git a/src/locales/pt_BR/move-trigger.ts b/src/locales/pt_BR/move-trigger.json similarity index 95% rename from src/locales/pt_BR/move-trigger.ts rename to src/locales/pt_BR/move-trigger.json index 042d539338e..416740dba0d 100644 --- a/src/locales/pt_BR/move-trigger.ts +++ b/src/locales/pt_BR/move-trigger.json @@ -1,6 +1,4 @@ -import { SimpleTranslationEntries } from "#app/interfaces/locales"; - -export const moveTriggers: SimpleTranslationEntries = { +{ "hitWithRecoil": "{{pokemonName}} foi ferido pelo dano reverso!", "cutHpPowerUpMove": "{{pokemonName}} diminuiu seus PS para aumentar o poder do ataque!", "absorbedElectricity": "{{pokemonName}} absorveu eletricidade!", @@ -26,7 +24,7 @@ export const moveTriggers: SimpleTranslationEntries = { "soothingAromaWaftedThroughArea": "Um aroma suave se espalhou pelo ambiente!", "sprangUp": "{{pokemonName}} se levantou!", "choseDoomDesireAsDestiny": "{{pokemonName}} escolheu\no Desejo da Perdição como seu destino!", - "vanishedInstantly": "{{pokemonName}} desapareceu/nde repente!", + "vanishedInstantly": "{{pokemonName}} desapareceu\nde repente!", "tookTargetIntoSky": "{{pokemonName}} levou {{targetName}}\npara o céu!", "becameCloakedInFreezingLight": "{{pokemonName}} ficou envolto/nem uma luz congelante!", "becameCloakedInFreezingAir": "{{pokemonName}} ficou envolto/nem ar congelante!", @@ -61,6 +59,7 @@ export const moveTriggers: SimpleTranslationEntries = { "faintCountdown": "{{pokemonName}}\nirá desmaiar em {{turnCount}} turnos.", "copyType": "O tipo de {{pokemonName}}\nmudou para combinar com {{targetPokemonName}}!", "suppressAbilities": "A habilidade de {{pokemonName}}\nfoi suprimida!", + "revivalBlessing": "{{pokemonName}} foi reanimado!", "swapArenaTags": "{{pokemonName}} trocou os efeitos de batalha que afetam cada lado do campo!", - "exposedMove": "{{pokemonName}} identificou\n{{targetPokemonName}}!", -} as const; + "exposedMove": "{{pokemonName}} identificou\n{{targetPokemonName}}!" +} \ No newline at end of file diff --git a/src/locales/pt_BR/move.json b/src/locales/pt_BR/move.json new file mode 100644 index 00000000000..c463665f1ad --- /dev/null +++ b/src/locales/pt_BR/move.json @@ -0,0 +1,3810 @@ +{ + "pound": { + "name": "Pound", + "effect": "O alvo é golpeado com uma pata, uma cauda longa, ou com algo desse tipo." + }, + "karateChop": { + "name": "Karate Chop", + "effect": "O alvo é atacado com um golpe cortante. Golpes críticos ocorrem mais facilmente." + }, + "doubleSlap": { + "name": "Double Slap", + "effect": "O alvo é estapeado repetidamente, de duas a cinco vezes seguidas." + }, + "cometPunch": { + "name": "Comet Punch", + "effect": "O alvo é atingido com uma sequência de socos que acertam de duas a cinco vezes seguidas." + }, + "megaPunch": { + "name": "Mega Punch", + "effect": "O alvo é atingido por um soco desferido com grande força muscular." + }, + "payDay": { + "name": "Pay Day", + "effect": "Várias moedas são lançadas no alvo para causar dano. O Treinador recebe o dinheiro após a batalha." + }, + "firePunch": { + "name": "Fire Punch", + "effect": "O alvo é atingido por um punho flamejante. Isso pode deixar o alvo queimado." + }, + "icePunch": { + "name": "Ice Punch", + "effect": "O alvo é atingido por um punho gelado. Isso pode deixar o alvo congelado." + }, + "thunderPunch": { + "name": "Thunder Punch", + "effect": "O alvo é atingido por um punho eletrificado. Isso também pode deixar o alvo paralisado." + }, + "scratch": { + "name": "Scratch", + "effect": "Garras duras, pontiagudas e afiadas rasgam o alvo para causar dano." + }, + "viseGrip": { + "name": "Vise Grip", + "effect": "O alvo é agarrado e espremido de ambos os lados para causar dano." + }, + "guillotine": { + "name": "Guillotine", + "effect": "Um ataque violento e destruidor com grandes pinças. Se o golpe acertar, o alvo desmaiará instantaneamente." + }, + "razorWind": { + "name": "Razor Wind", + "effect": "Neste ataque de dois turnos, lâminas de vento golpeiam Pokémon adversários no segundo turno. Golpes críticos ocorrem mais facilmente." + }, + "swordsDance": { + "name": "Swords Dance", + "effect": "Uma dança frenética para elevar o espírito de luta. Aumenta bruscamente o Ataque do usuário." + }, + "cut": { + "name": "Cut", + "effect": "O alvo é cortado com uma foice ou garra." + }, + "gust": { + "name": "Gust", + "effect": "Uma rajada de vento é levantada por asas e lançada no alvo para causar dano." + }, + "wingAttack": { + "name": "Wing Attack", + "effect": "O alvo é atingido por asas grandes e imponentes, amplamente abertas para causar dano." + }, + "whirlwind": { + "name": "Whirlwind", + "effect": "O alvo é soprado para fora da batalha, dando lugar a outro Pokémon. Em batalhas selvagens, a batalha termina caso seja contra um único Pokémon." + }, + "fly": { + "name": "Fly", + "effect": "O usuário levanta vôo e ataca o alvo no próximo turno." + }, + "bind": { + "name": "Bind", + "effect": "Um longo corpo ou tentáculos são utilizados para prender o alvo e espremê-lo por quatro ou cinco turnos." + }, + "slam": { + "name": "Slam", + "effect": "O alvo é atingido com uma longa cauda, vinhas ou algo parecido para infligir dano." + }, + "vineWhip": { + "name": "Vine Whip", + "effect": "O usuário utiliza-se de vinhas finas como chicote para infligir dano." + }, + "stomp": { + "name": "Stomp", + "effect": "O alvo é pisoteado por um grande pé. Isso também pode fazer o alvo hesitar." + }, + "doubleKick": { + "name": "Double Kick", + "effect": "O alvo é atingido rapidamente com um chute duas vezes seguidas usando ambos os pés." + }, + "megaKick": { + "name": "Mega Kick", + "effect": "O alvo é atingido por um chute desferido com grande força muscular." + }, + "jumpKick": { + "name": "Jump Kick", + "effect": "O usuário pula alto, depois golpeia com um chute. Se o chute erra, o usuário se fere." + }, + "rollingKick": { + "name": "Rolling Kick", + "effect": "O usuário desfere um rápido chute giratório. Isso também pode fazer o alvo hesitar." + }, + "sandAttack": { + "name": "Sand Attack", + "effect": "Areia é lançada no rosto do alvo, reduzindo sua Precisão." + }, + "headbutt": { + "name": "Headbutt", + "effect": "O usuário direciona sua cabeça e ataca, avançando diretamente sobre o alvo. Isso também pode fazer o alvo hesitar." + }, + "hornAttack": { + "name": "Horn Attack", + "effect": "O alvo é perfurado por um chifre pontudo e afiado para infligir dano." + }, + "furyAttack": { + "name": "Fury Attack", + "effect": "O alvo é perfurado repetidamente por um chifre ou bico, de duas a cinco vezes seguidas." + }, + "hornDrill": { + "name": "Horn Drill", + "effect": "O usuário perfura o alvo com um chifre que gira como uma broca. Se o golpe acertar, o alvo desmaia instantaneamente." + }, + "tackle": { + "name": "Tackle", + "effect": "Um ataque físico cujo o usuário vai para cima do alvo e lhe atinge com todo o seu corpo." + }, + "bodySlam": { + "name": "Body Slam", + "effect": "O usuário se lança para cima do alvo com todo o peso de seu corpo. Isso pode deixar o alvo paralisado." + }, + "wrap": { + "name": "Wrap", + "effect": "Um longo corpo, vinhas ou algo assim, são usados para embrulhar e apertar o alvo por quatro ou cinco turnos." + }, + "takeDown": { + "name": "Take Down", + "effect": "Uma investida corporal imprudente para golpear o alvo. Isso também fere um pouco o usuário." + }, + "thrash": { + "name": "Thrash", + "effect": "O usuário fica furioso e ataca com violência de dois a três turnos. O usuário então se torna confuso." + }, + "doubleEdge": { + "name": "Double-Edge", + "effect": "Uma investida imprudente e muito perigosa. Isso também fere bastante o usuário." + }, + "tailWhip": { + "name": "Tail Whip", + "effect": "O usuário balança sua cauda de maneira fofa, baixando a guarda do Pokémon adversário e diminuindo sua Defesa." + }, + "poisonSting": { + "name": "Poison Sting", + "effect": "O usuário perfura o alvo com um ferrão venenoso. Isso também pode envenenar o alvo." + }, + "twineedle": { + "name": "Twineedle", + "effect": "O usuário causa dano duas vezes seguidas, perfurando o alvo com dois ferrões. Isso também pode envenenar o alvo." + }, + "pinMissile": { + "name": "Pin Missile", + "effect": "Espinhos afiados são lançados no alvo em rápida sucessão. Eles acertam de duas a cinco vezes seguidas." + }, + "leer": { + "name": "Leer", + "effect": "O usuário lança um olhar intimidador no Pokémon oponente, reduzindo sua Defesa." + }, + "bite": { + "name": "Bite", + "effect": "O alvo é mordido ferozmente com presas afiadas. Isso também pode fazer o alvo hesitar." + }, + "growl": { + "name": "Growl", + "effect": "O usuário rosna de maneira agradável, baixando a guarda do Pokémon adversário. Isso diminui o Ataque do oponente." + }, + "roar": { + "name": "Roar", + "effect": "O alvo se assusta, retorna para a sua Poké Bola e um outro Pokémon toma o seu lugar. O combate é encerrado contra um único Pokémon selvagem." + }, + "sing": { + "name": "Sing", + "effect": "Uma suave canção de ninar é cantada com uma voz calma, colocando o alvo em sono profundo." + }, + "supersonic": { + "name": "Supersonic", + "effect": "O usuário gera estranhas ondas sonoras de seu corpo que confundem o alvo." + }, + "sonicBoom": { + "name": "Sonic Boom", + "effect": "O alvo é atingido com uma onda de choque destrutiva que sempre causa dano de 20 PS." + }, + "disable": { + "name": "Disable", + "effect": "Por quatro turnos, este movimento impede que o alvo utilize o último movimento usado por ele." + }, + "acid": { + "name": "Acid", + "effect": "Os Pokémon adversários são atacados com um jato de um forte ácido. Isso pode diminuir a Defesa Especial." + }, + "ember": { + "name": "Ember", + "effect": "O alvo é atacado com pequenas chamas. Também pode deixar o alvo com uma queimadura." + }, + "flamethrower": { + "name": "Flamethrower", + "effect": "O usuário queima o alvo com uma grande explosão de fogo. Também pode deixar o alvo com uma queimadura." + }, + "mist": { + "name": "Mist", + "effect": "O usuário esconde a si mesmo e seus aliados em uma neblina branca que impede que seus atributos sejam reduzidos por cinco turnos." + }, + "waterGun": { + "name": "Water Gun", + "effect": "O alvo é atingido por um disparo forte de água." + }, + "hydroPump": { + "name": "Hydro Pump", + "effect": "O alvo é atingido por um enorme volume de água lançado sob uma forte pressão." + }, + "surf": { + "name": "Surf", + "effect": "O usuário ataca tudo ao seu redor, inundando os arredores com uma onda gigante." + }, + "iceBeam": { + "name": "Ice Beam", + "effect": "O alvo é atingido por um raio de energia congelante. Isso também pode deixar o alvo congelado." + }, + "blizzard": { + "name": "Blizzard", + "effect": "Uma enorme nevasca é invocada para atacar o Pokémon oponente. Também pode deixar o alvo congelado." + }, + "psybeam": { + "name": "Psybeam", + "effect": "O alvo é atacado por um feixe peculiar. Isso também pode deixar o alvo confuso." + }, + "bubbleBeam": { + "name": "Bubble Beam", + "effect": "Um jato de bolhas é borrifado com intensidade no alvo. Isso também pode diminuir a Velocidade do alvo." + }, + "auroraBeam": { + "name": "Aurora Beam", + "effect": "O alvo é atingido por um raio colorido como o arco-íris. Isso também pode diminuir o Ataque do alvo." + }, + "hyperBeam": { + "name": "Hyper Beam", + "effect": "O alvo é atingido por um raio poderoso. O usuário não poderá se mover no próximo turno." + }, + "peck": { + "name": "Peck", + "effect": "O alvo é atingido por um bico ou chifre pontudo." + }, + "drillPeck": { + "name": "Drill Peck", + "effect": "Um ataque giratório com um bico afiado que age como uma broca." + }, + "submission": { + "name": "Submission", + "effect": "O usuário agarra o alvo e, imprudentemente, mergulha em direção ao chão. Isso também fere um pouco o usuário." + }, + "lowKick": { + "name": "Low Kick", + "effect": "Um poderoso chute baixo que derruba o alvo. Quanto mais pesado o alvo for, maior o poder do movimento." + }, + "counter": { + "name": "Counter", + "effect": "Um movimento de retaliação que neutraliza qualquer ataque físico, causando o dobro do dano recebido." + }, + "seismicToss": { + "name": "Seismic Toss", + "effect": "O alvo é lançado usando o poder da gravidade. Isso causa dano igual ao nível do usuário." + }, + "strength": { + "name": "Strength", + "effect": "O alvo é atingido por um soco dado com o máximo de força." + }, + "absorb": { + "name": "Absorb", + "effect": "Um ataque que drena nutrientes. O usuário recupera PS pela metade do dano infligido ao alvo." + }, + "megaDrain": { + "name": "Mega Drain", + "effect": "Um ataque que drena nutrientes. O usuário recupera PS pela metade do dano infligido ao alvo." + }, + "leechSeed": { + "name": "Leech Seed", + "effect": "Uma semente é plantada no alvo. Isso rouba alguns pontos de PS do alvo a cada turno." + }, + "growth": { + "name": "Growth", + "effect": "O corpo do usuário cresce de uma vez só, aumentando seu Ataque e Ataque Especial." + }, + "razorLeaf": { + "name": "Razor Leaf", + "effect": "Folhas superafiadas são lançadas para cortar os Pokémon adversários. Golpes críticos ocorrem mais facilmente." + }, + "solarBeam": { + "name": "Solar Beam", + "effect": "Neste ataque de dois turnos, o usuário absorve luz, então dispara um raio focalizado no próximo turno." + }, + "poisonPowder": { + "name": "Poison Powder", + "effect": "O usuário espalha uma nuvem de poeira tóxica que envenena o alvo." + }, + "stunSpore": { + "name": "Stun Spore", + "effect": "O usuário espalha uma nuvem de esporos entorpecentes que paralisam o alvo." + }, + "sleepPowder": { + "name": "Sleep Powder", + "effect": "O usuário espalha uma grande nuvem de pó sonífero ao redor do alvo." + }, + "petalDance": { + "name": "Petal Dance", + "effect": "O usuário ataca o alvo espalhando pétalas de dois a três turnos. O usuário então fica confuso." + }, + "stringShot": { + "name": "String Shot", + "effect": "O Pokémon adversário é enrolado com uma seda expelida da boca do usuário, o que reduz duramente sua Velocidade." + }, + "dragonRage": { + "name": "Dragon Rage", + "effect": "Este ataque atinge o alvo com uma onda de choque de pura fúria. Este ataque sempre causa 40 PS de dano." + }, + "fireSpin": { + "name": "Fire Spin", + "effect": "O alvo fica preso dentro de um vórtice feroz de fogo que se prolonga por quatro ou cinco turnos." + }, + "thunderShock": { + "name": "Thunder Shock", + "effect": "Um choque elétrico que cai sobre o alvo causando dano. Isso também pode deixar o alvo paralisado." + }, + "thunderbolt": { + "name": "Thunderbolt", + "effect": "Uma forte explosão elétrica que cai sobre o alvo. Também pode deixar o alvo com paralisia." + }, + "thunderWave": { + "name": "Thunder Wave", + "effect": "O usuário lança um choque elétrico fraco que paralisa o alvo." + }, + "thunder": { + "name": "Thunder", + "effect": "Um raio cruel despenca no alvo para causar dano. Isso também pode deixar o alvo com paralisia." + }, + "rockThrow": { + "name": "Rock Throw", + "effect": "Para atacar, o usuário pega uma pequena rocha e joga no alvo." + }, + "earthquake": { + "name": "Earthquake", + "effect": "O usuário desencadeia um terremoto que atinge todos os Pokémon ao seu redor." + }, + "fissure": { + "name": "Fissure", + "effect": "O usuário abre uma fissura no chão e joga o alvo nela. O alvo desmaiará instantaneamente se esse ataque acertar." + }, + "dig": { + "name": "Dig", + "effect": "O usuário se entoca, então ataca no próximo turno." + }, + "toxic": { + "name": "Toxic", + "effect": "Um movimento que deixa o alvo seriamente envenenado. Seu dano venenoso aumenta a cada turno." + }, + "confusion": { + "name": "Confusion", + "effect": "O alvo é atingido por uma força telecinética fraca. Isso também pode deixar o alvo confuso." + }, + "psychic": { + "name": "Psychic", + "effect": "O alvo é atingido por uma força telecinética poderosa. Isso também pode diminuir a Defesa Especial do alvo." + }, + "hypnosis": { + "name": "Hypnosis", + "effect": "O usuário implanta uma sugestão hipnótica para fazer o alvo cair em um sono profundo." + }, + "meditate": { + "name": "Meditate", + "effect": "O usuário medita para despertar o poder profundo do seu corpo para aumentar seu Ataque." + }, + "agility": { + "name": "Agility", + "effect": "O usuário relaxa o corpo para se mover rapidamente. Isso aumenta bruscamente sua Velocidade." + }, + "quickAttack": { + "name": "Quick Attack", + "effect": "O usuário ataca o alvo em uma velocidade que o torna quase invisível. Esse movimento tem prioridade." + }, + "rage": { + "name": "Rage", + "effect": "Enquanto este movimento estiver em uso, o poder da ira aumenta o Ataque toda vez que o usuário for atingido em batalha." + }, + "teleport": { + "name": "Teleport", + "effect": "Use para fugir de qualquer Pokémon selvagem." + }, + "nightShade": { + "name": "Night Shade", + "effect": "O usuário faz com que o alvo veja uma miragem assustadora. Isso causa dano igual ao nível do usuário." + }, + "mimic": { + "name": "Mimic", + "effect": "O usuário copia o último movimento do alvo. O movimento pode ser usado durante a batalha até que o Pokémon seja trocado." + }, + "screech": { + "name": "Screech", + "effect": "Um grito estridente que reduz duramente o atributo de Defesa do alvo." + }, + "doubleTeam": { + "name": "Double Team", + "effect": "Movendo-se rapidamente, o usuário faz cópias ilusórias para aumentar sua Evasão." + }, + "recover": { + "name": "Recover", + "effect": "Restaurando suas células, o usuário restaura metade do seu máximo de PS." + }, + "harden": { + "name": "Harden", + "effect": "O usuário enrijece todos os músculos do seu corpo para aumentar seu atributo de Defesa." + }, + "minimize": { + "name": "Minimize", + "effect": "O usuário comprime seu corpo para se parecer menor, o que aumenta bruscamente sua Evasão." + }, + "smokescreen": { + "name": "Smokescreen", + "effect": "O usuário lança uma nuvem obscura de fumaça ou tinta. Isso diminui a Precisão do alvo." + }, + "confuseRay": { + "name": "Confuse Ray", + "effect": "O alvo é exposto a um raio sinistro que leva à confusão." + }, + "withdraw": { + "name": "Withdraw", + "effect": "O usuário retrai seu corpo para dentro de seu casco duro, aumentando o seu atributo de Defesa." + }, + "defenseCurl": { + "name": "Defense Curl", + "effect": "O usuário se enrola para esconder os pontos fracos e aumentar seu atributo de Defesa." + }, + "barrier": { + "name": "Barrier", + "effect": "O usuário ergue uma barreira robusta que aumenta bruscamente a sua Defesa." + }, + "lightScreen": { + "name": "Light Screen", + "effect": "Uma incrível parede de luz é erguida para reduzir o dano de ataques especiais por cinco turnos." + }, + "haze": { + "name": "Haze", + "effect": "O usuário cria uma névoa que elimina todas as alterações de atributos de todos os Pokémon em batalha." + }, + "reflect": { + "name": "Reflect", + "effect": "Uma incrível parede de luz é erguida para reduzir o dano de ataques físicos por cinco turnos." + }, + "focusEnergy": { + "name": "Focus Energy", + "effect": "O usuário respira fundo e concentra-se para que golpes críticos ocorram mais facilmente." + }, + "bide": { + "name": "Bide", + "effect": "O usuário resiste a ataques por dois turnos, e revida causando o dobro do dano recebido." + }, + "metronome": { + "name": "Metronome", + "effect": "O usuário balança um dedo e estimula seu cérebro para usar aleatoriamente quase qualquer movimento." + }, + "mirrorMove": { + "name": "Mirror Move", + "effect": "O usuário contra-ataca o alvo imitando seu último movimento utilizado." + }, + "selfDestruct": { + "name": "Self-Destruct", + "effect": "O usuário ataca tudo ao seu redor causando uma explosão. O usuário desmaia por usar esse golpe." + }, + "eggBomb": { + "name": "Egg Bomb", + "effect": "Um ovo grande é arremessado contra o alvo com força máxima para causar dano." + }, + "lick": { + "name": "Lick", + "effect": "O alvo é lambido com uma língua comprida, causando dano. Isso também pode deixar o alvo paralisado." + }, + "smog": { + "name": "Smog", + "effect": "O alvo é atacado com uma descarga de gases poluentes. Isso também pode envenenar o alvo." + }, + "sludge": { + "name": "Sludge", + "effect": "Lodo insalubre é no arremessado no alvo. Isso também pode causar envenenamento." + }, + "boneClub": { + "name": "Bone Club", + "effect": "O usuário golpeia o alvo com um osso. Isso também pode o fazer o alvo hesitar." + }, + "fireBlast": { + "name": "Fire Blast", + "effect": "O alvo é atacado com uma intensa explosão de fogo consumidor. Isso também pode deixar o alvo com uma queimadura." + }, + "waterfall": { + "name": "Waterfall", + "effect": "O usuário investe no alvo e pode fazê-lo hesitar." + }, + "clamp": { + "name": "Clamp", + "effect": "O alvo é apertado e imprensado pela concha densa e robusta do usuário por quatro ou cinco turnos." + }, + "swift": { + "name": "Swift", + "effect": "Raios em formato de estrela são disparados no Pokémon adversário. Esse ataque nunca erra." + }, + "skullBash": { + "name": "Skull Bash", + "effect": "O usuário retrai sua cabeça para aumentar a Defesa no primeiro turno e depois se choca com o alvo no próximo turno." + }, + "spikeCannon": { + "name": "Spike Cannon", + "effect": "Espinhos afiados são lançados no alvo em rápida sucessão. Eles acertam de duas a cinco vezes seguidas." + }, + "constrict": { + "name": "Constrict", + "effect": "O alvo é atacado com longos e sorrateiros tentáculos ou vinhas. Isso também pode diminuir a Velocidade do alvo." + }, + "amnesia": { + "name": "Amnesia", + "effect": "O usuário esvazia sua mente para esquecer suas preocupações. Aumenta bruscamente a Defesa Especial." + }, + "kinesis": { + "name": "Kinesis", + "effect": "O usuário distrai o alvo entortando uma colher. Isso diminui a Precisão do alvo." + }, + "softBoiled": { + "name": "Soft-Boiled", + "effect": "O usuário restaura os próprios PS pela metade dos seus PS máximos." + }, + "highJumpKick": { + "name": "High Jump Kick", + "effect": "O alvo é atacado com uma joelhada de um pulo. Caso erre, o usuário se machuca." + }, + "glare": { + "name": "Glare", + "effect": "O usuário intimida o alvo com o padrão em sua barriga para causar paralisia." + }, + "dreamEater": { + "name": "Dream Eater", + "effect": "O usuário se alimenta dos sonhos de um alvo adormecido. Ele absorve metade do dano causado para curar seus PS." + }, + "poisonGas": { + "name": "Poison Gas", + "effect": "Uma nuvem de gás venenoso é assoprada no rosto do Pokémon adversário. Isso pode envenenar os alvos." + }, + "barrage": { + "name": "Barrage", + "effect": "Objetos redondos são lançados no alvo para acertar de duas a cinco vezes seguidas." + }, + "leechLife": { + "name": "Leech Life", + "effect": "O usuário drena o sangue do alvo. Os PS do usuário são restaurados pela metade do dano recebido pelo alvo." + }, + "lovelyKiss": { + "name": "Lovely Kiss", + "effect": "Com uma face assustadora, o usuário tenta beijar o alvo à força. Se conseguir, o alvo cai no sono." + }, + "skyAttack": { + "name": "Sky Attack", + "effect": "Um movimento de dois turnos onde golpes críticos ocorrem mais facilmente. Também pode fazer o alvo hesitar." + }, + "transform": { + "name": "Transform", + "effect": "O usuário transforma-se em uma cópia do alvo, conseguindo os mesmos movimentos do adversário." + }, + "bubble": { + "name": "Bubble", + "effect": "Um jato de incontáveis bolhas é disparado no Pokémon adversário. Isso também pode diminuir a velocidade do alvo." + }, + "dizzyPunch": { + "name": "Dizzy Punch", + "effect": "O alvo é atingido com socos dados ritmicamente. Isso também pode deixar alvo confuso." + }, + "spore": { + "name": "Spore", + "effect": "O usuário espalha rajadas de esporos que induzem sono ao alvo." + }, + "flash": { + "name": "Flash", + "effect": "O usuário pisca uma luz brilhante que reduz a Precisão do alvo." + }, + "psywave": { + "name": "Psywave", + "effect": "O alvo é atacado com uma estranha onda psíquica. O ataque varia de intensidade." + }, + "splash": { + "name": "Splash", + "effect": "O usuário apenas debate-se no chão e espirra água ao seu redor sem efeito algum..." + }, + "acidArmor": { + "name": "Acid Armor", + "effect": "O usuário altera sua estrutura celular para se liquefazer, aumentando bruscamente o seu atributo de Defesa." + }, + "crabhammer": { + "name": "Crabhammer", + "effect": "O alvo é martelado com uma grande pinça. Golpes críticos acertam mais facilmente." + }, + "explosion": { + "name": "Explosion", + "effect": "O usuário ataca tudo o que estiver à sua volta causando uma tremenda explosão. O usuário desmaia ao usar esse movimento." + }, + "furySwipes": { + "name": "Fury Swipes", + "effect": "O alvo é atacado com garras afiadas ou foices rapidamente, de duas a cinco vezes seguidas." + }, + "bonemerang": { + "name": "Bonemerang", + "effect": "O usuário arremessa o osso que segura. O osso gira, atingindo o alvo duas vezes, indo e voltando." + }, + "rest": { + "name": "Rest", + "effect": "O usuário dorme por dois turnos. Isso restaura completamente os PS do usuário e cura quaisquer condições negativas." + }, + "rockSlide": { + "name": "Rock Slide", + "effect": "Pedras grandes são arremessadas no Pokémon oponente para causar dano. Isso também pode fazer o Pokémon oponente hesitar." + }, + "hyperFang": { + "name": "Hyper Fang", + "effect": "O usuário morde o alvo com força, usando as suas afiadas presas frontais. Isso também pode fazer o alvo hesitar." + }, + "sharpen": { + "name": "Sharpen", + "effect": "O usuário abaixa o número de polígonos, ficando mais pontiagudo. Isso aumenta o seu atributo de Ataque." + }, + "conversion": { + "name": "Conversion", + "effect": "O usuário muda seu tipo para o mesmo tipo do movimento no topo da lista dos movimentos que conhece no momento." + }, + "triAttack": { + "name": "Tri Attack", + "effect": "O usuário golpeia com um ataque de três raios simultâneos. Também pode queimar, congelar ou paralisar o alvo." + }, + "superFang": { + "name": "Super Fang", + "effect": "O usuário mastiga com força o alvo usando suas afiadas presas frontais. Isso corta os PS do alvo pela metade." + }, + "slash": { + "name": "Slash", + "effect": "O alvo é atacado com um açoite de garras ou lâminas. Golpes críticos ocorrem mais facilmente." + }, + "substitute": { + "name": "Substitute", + "effect": "O usuário faz uma cópia de si mesmo usando parte de seus PS. A cópia serve como uma isca para o usuário." + }, + "struggle": { + "name": "Struggle", + "effect": "Um ataque usado em desespero, apenas se o usuário não tiver PP. Isso também causa um pouco de dano no usuário." + }, + "sketch": { + "name": "Sketch", + "effect": "Permite que o usuário aprenda permanentemente o último movimento usado pelo alvo. Assim que for usado, o Esboço desaparece." + }, + "tripleKick": { + "name": "Triple Kick", + "effect": "Um ataque de três chutes consecutivos que se fortalece a cada golpe acertado." + }, + "thief": { + "name": "Thief", + "effect": "O usuário ataca e rouba o item segurado por seu alvo simultaneamente. O usuário não pode roubar algo se ele já segurar um item." + }, + "spiderWeb": { + "name": "Spider Web", + "effect": "O usuário enlaça o alvo com uma teia fina e grudenta, para que ele não possa fugir da batalha." + }, + "mindReader": { + "name": "Mind Reader", + "effect": "O usuário pressente os movimentos do alvo com sua mente para ter certeza que o seu próximo ataque não o erre." + }, + "nightmare": { + "name": "Nightmare", + "effect": "Um alvo que dorme terá um pesadelo que causará dano a cada turno." + }, + "flameWheel": { + "name": "Flame Wheel", + "effect": "O usuário se envolve em fogo e dispara em direção ao alvo. Isso também pode causar queimaduras no oponente." + }, + "snore": { + "name": "Snore", + "effect": "Um ataque que só pode ser usado se o usuário estiver dormindo. O barulho alto pode fazer o alvo hesitar." + }, + "curse": { + "name": "Curse", + "effect": "Um movimento que funciona diferente com o tipo Fantasma do que com outros tipos." + }, + "flail": { + "name": "Flail", + "effect": "O usuário agita os membros sem rumo para atacar. Quanto menores forem os PS do usuário, melhor será o movimento." + }, + "conversion2": { + "name": "Conversion 2", + "effect": "O usuário muda a própria tipagem para se fazer resistente ao tipo do último ataque usado pelo oponente." + }, + "aeroblast": { + "name": "Aeroblast", + "effect": "Um vortex de vento é atirado em direção ao alvo para causar dano. Golpes críticos ocorrem mais facilmente." + }, + "cottonSpore": { + "name": "Cotton Spore", + "effect": "O usuário solta esporos de algodão que grudam no Pokémon adversário. Isso prejudica bruscamente a Velocidade do oponente." + }, + "reversal": { + "name": "Reversal", + "effect": "Um ataque total que fica mais forte quanto menos PS o usuário possuir." + }, + "spite": { + "name": "Spite", + "effect": "O usuário libera todo o seu rancor no último movimento usado pelo oponente, cortando 4 PP do mesmo." + }, + "powderSnow": { + "name": "Powder Snow", + "effect": "O usuário ataca com uma brisa congelante de Neve em Pó. Isso talvez possa congelar o Pokémon adversário." + }, + "protect": { + "name": "Protect", + "effect": "Permite que o usuário desvie de todos os ataques. A sua chance de falhar aumenta, caso seja usado em sucessão." + }, + "machPunch": { + "name": "Mach Punch", + "effect": "O usuário soca numa velocidade incompreensível. Esse movimento tem prioridade." + }, + "scaryFace": { + "name": "Scary Face", + "effect": "O usuário assusta o alvo com uma cara assustadora para prejudicar duramente a velocidade do oponente." + }, + "feintAttack": { + "name": "Feint Attack", + "effect": "O usuário se aproxima do alvo amigavelmente, então ataca com um soco inesperado. Esse ataque nunca erra." + }, + "sweetKiss": { + "name": "Sweet Kiss", + "effect": "O usuário beija o alvo com uma fofura doce e angelical, causando confusão." + }, + "bellyDrum": { + "name": "Belly Drum", + "effect": "O usuário maximiza seu Ataque em troca de PS igual à metade do seu PS máximo." + }, + "sludgeBomb": { + "name": "Sludge Bomb", + "effect": "Lodo insalubre é no arremessado no alvo. Isso também pode causar envenenamento." + }, + "mudSlap": { + "name": "Mud-Slap", + "effect": "O usuário arremessa lama no rosto do adversário para causar dano e prejudicar sua precisão." + }, + "octazooka": { + "name": "Octazooka", + "effect": "O usuário ataca jogando tinta no rosto ou nos olhos do alvo. Isso pode prejudicar a Precisão do alvo." + }, + "spikes": { + "name": "Spikes", + "effect": "O usuário lança armadilhas de espinhos nos pés da equipe adversária. As armadilhas ferem os Pokémon que são trocados em batalha." + }, + "zapCannon": { + "name": "Zap Cannon", + "effect": "O usuário atira uma explosão elétrica como um canhão para infligir dano e causar paralisia." + }, + "foresight": { + "name": "Foresight", + "effect": "Permite que um alvo do tipo Fantasma seja atingido por ataques do tipo Normal e Lutador. Isso também permite que um alvo evasivo seja acertado." + }, + "destinyBond": { + "name": "Destiny Bond", + "effect": "Quando esse movimento é usado, caso o usuário desmaie, o Pokémon que acertou o nocaute também desmaiará. A chance de falhar aumenta se usado em sucessão." + }, + "perishSong": { + "name": "Perish Song", + "effect": "Qualquer Pokémon que ouvir essa Canção desmaiará em três turnos, a não ser que ele seja retirado da batalha." + }, + "icyWind": { + "name": "Icy Wind", + "effect": "O usuário ataca com uma rajada de ar arrepiante. Isso também prejudica a Velocidade do Pokémon adversário." + }, + "detect": { + "name": "Detect", + "effect": "Permite que o usuário desvie de todos os ataques. A sua chance de falhar aumenta, caso seja usado em sucessão." + }, + "boneRush": { + "name": "Bone Rush", + "effect": "O usuário atinge o alvo com um osso duro de duas a cinco vezes seguidas." + }, + "lockOn": { + "name": "Lock-On", + "effect": "O usuário foca sua mira no alvo. Isso garante que o próximo ataque não erre o alvo." + }, + "outrage": { + "name": "Outrage", + "effect": "O usuário fica furioso e ataca com violência de dois a três turnos. O usuário então se torna confuso." + }, + "sandstorm": { + "name": "Sandstorm", + "effect": "Uma tempestade de areia é invocada durante 5 turnos para ferir todos os combatentes, exceto os tipos Pedra, Terra e Aço. Isso aumenta a Defesa Especial dos tipo Pedra." + }, + "gigaDrain": { + "name": "Giga Drain", + "effect": "Um ataque que drena nutrientes. O usuário recupera PS pela metade do dano infligido ao alvo." + }, + "endure": { + "name": "Endure", + "effect": "O usuário resiste a qualquer ataque com pelo menos 1 PS. A chance de falhar aumenta caso seja usado em sucessão." + }, + "charm": { + "name": "Charm", + "effect": "O usuário contempla o alvo com um olhar charmoso, fazendo-o ficar menos atento. Isso prejudica duramente o Ataque do oponente." + }, + "rollout": { + "name": "Rollout", + "effect": "O usuário rola continuamente em direção ao alvo por cinco turnos. O ataque fica mais forte a cada acerto." + }, + "falseSwipe": { + "name": "False Swipe", + "effect": "Um ataque moderado que previne que o alvo desmaie. O alvo é deixado com pelo menos 1 de PS." + }, + "swagger": { + "name": "Swagger", + "effect": "O usuário enfurece e confunde o alvo. Entretanto, isso também aumenta bruscamente o Ataque do alvo." + }, + "milkDrink": { + "name": "Milk Drink", + "effect": "O usuário restaura os próprios PS pela metade dos seus PS máximos." + }, + "spark": { + "name": "Spark", + "effect": "O usuário direciona uma investida carregada com eletricidade no alvo. Isso pode paralisar o alvo." + }, + "furyCutter": { + "name": "Fury Cutter", + "effect": "O alvo é cortado com foices ou garras. Esse ataque se torna mais poderoso se usado em sucessão." + }, + "steelWing": { + "name": "Steel Wing", + "effect": "O alvo é atingido com asas de aço. Isso também pode aumentar a Defesa do usuário." + }, + "meanLook": { + "name": "Mean Look", + "effect": "O usuário encara o alvo com um olhar sombrio e opressor. O alvo se torna incapaz de fugir." + }, + "attract": { + "name": "Attract", + "effect": "Caso o adversário seja do gênero oposto ao usuário, o alvo se apaixona e se torna menos suscetível a atacar." + }, + "sleepTalk": { + "name": "Sleep Talk", + "effect": "Enquanto está dormindo, o usuário usa aleatoriamente um dos movimentos que tem conhecimento." + }, + "healBell": { + "name": "Heal Bell", + "effect": "O usuário toca um sino calmante para curar condições de estados de todos os Pokémon aliados na equipe." + }, + "return": { + "name": "Return", + "effect": "Um ataque poderoso que fica mais poderoso à medida que o usuário gosta de seu Treinador." + }, + "present": { + "name": "Present", + "effect": "O usuário ataca o alvo entregando um presente com uma armadilha oculta. Entretanto, às vezes cura os PS do alvo." + }, + "frustration": { + "name": "Frustration", + "effect": "Um ataque poderoso que fica mais poderoso à medida que o usuário desgosta de seu Treinador." + }, + "safeguard": { + "name": "Safeguard", + "effect": "O usuário cria um campo protetor que previne condições de estado por cinco turnos." + }, + "painSplit": { + "name": "Pain Split", + "effect": "O usuário adiciona os próprios PS aos PS do alvo, então compartilha igualmente os PS combinados com o alvo." + }, + "sacredFire": { + "name": "Sacred Fire", + "effect": "O usuário é arrasado com uma rajada de fogo místico de grande intensidade. Isso pode deixar o alvo queimado." + }, + "magnitude": { + "name": "Magnitude", + "effect": "O usuário ataca tudo ao seu redor com um grande tremor. Seu poder varia." + }, + "dynamicPunch": { + "name": "Dynamic Punch", + "effect": "O usuário soca o alvo com sua força totalmente concentrada. Em caso de acerto, confundirá o alvo." + }, + "megahorn": { + "name": "Megahorn", + "effect": "Usando seu impressionante chifre resistente, o usuário golpeia o alvo sem trégua." + }, + "dragonBreath": { + "name": "Dragon Breath", + "effect": "O usuário sopra uma poderosa rajada que causa dano. Isso também pode paralisar o alvo." + }, + "batonPass": { + "name": "Baton Pass", + "effect": "O usuário troca de lugar com um Pokémon da equipe em espera e passa para ele quaisquer mudanças de atributos." + }, + "encore": { + "name": "Encore", + "effect": "O usuário enaltece o alvo para que ele continue usando o movimento que ele usou por último durante três turnos." + }, + "pursuit": { + "name": "Pursuit", + "effect": "Um ataque que causa o dobro do dano caso seja usado em um alvo que esteja sendo trocado para fora da batalha." + }, + "rapidSpin": { + "name": "Rapid Spin", + "effect": "Um ataque giratório que pode anular movimentos como Enlaçar, Embrulho, Sanguessuga e Espinhos." + }, + "sweetScent": { + "name": "Sweet Scent", + "effect": "Um aroma doce que prejudica duramente a Evasão do Pokémon adversário." + }, + "ironTail": { + "name": "Iron Tail", + "effect": "O alvo é esmagado com uma cauda dura como aço. Isso também pode prejudicar a Defesa do alvo." + }, + "metalClaw": { + "name": "Metal Claw", + "effect": "O alvo é cortado com garras de metal. Isso também pode aumentar o Ataque do usuário." + }, + "vitalThrow": { + "name": "Vital Throw", + "effect": "O usuário sempre ataca por último. Em troca, esse arremesso nunca erra." + }, + "morningSun": { + "name": "Morning Sun", + "effect": "O usuário restaura os próprios PS. A quantidade de PS recuperada varia conforme o clima." + }, + "synthesis": { + "name": "Synthesis", + "effect": "O usuário restaura os próprios PS. A quantidade de PS recuperada varia conforme o clima." + }, + "moonlight": { + "name": "Moonlight", + "effect": "O usuário restaura os próprios PS. A quantidade de PS recuperada varia conforme o clima." + }, + "hiddenPower": { + "name": "Hidden Power", + "effect": "Um ataque único que varia em tipo dependendo do Pokémon que está utilizando." + }, + "crossChop": { + "name": "Cross Chop", + "effect": "O usuário dá um golpe duplo com seus antebraços cruzados. Golpes críticos ocorrem mais facilmente." + }, + "twister": { + "name": "Twister", + "effect": "O usuário rapidamente cria um tornado vicioso para rasgar os Pokémon adversários. Isso pode fazê-los hesitar." + }, + "rainDance": { + "name": "Rain Dance", + "effect": "O usuário invoca uma chuva intensa que continua caindo por cinco turnos, fortalecendo os movimentos do tipo Água. Também enfraquece os movimentos do tipo fogo." + }, + "sunnyDay": { + "name": "Sunny Day", + "effect": "O usuário intensifica o sol por cinco turnos, fortalecendo os ataques do tipo Fogo. Também enfraquece os movimentos do tipo água." + }, + "crunch": { + "name": "Crunch", + "effect": "O usuário mastiga o alvo com presas afiadas. Isso também pode prejudicar a Defesa do alvo." + }, + "mirrorCoat": { + "name": "Mirror Coat", + "effect": "Um movimento de retaliação que contra-ataca qualquer ataque especial, infligindo o dobro do dano recebido." + }, + "psychUp": { + "name": "Psych Up", + "effect": "O usuário hipnotiza a si mesmo para copiar qualquer mudança de atributo feita pelo alvo." + }, + "extremeSpeed": { + "name": "Extreme Speed", + "effect": "O usuário ataca o alvo numa velocidade invisível ao olho nu. Esse movimento tem prioridade." + }, + "ancientPower": { + "name": "Ancient Power", + "effect": "O usuário ataca com um poder pré-histórico. Isso também pode fortalecer todos os atributos do usuário de uma vez." + }, + "shadowBall": { + "name": "Shadow Ball", + "effect": "O usuário arremessa uma esfera sombria no alvo. Isso também pode prejudicar a Defesa Especial do alvo." + }, + "futureSight": { + "name": "Future Sight", + "effect": "Dois turnos após esse movimento ser usado, uma grande quantidade de energia psíquica atinge o alvo." + }, + "rockSmash": { + "name": "Rock Smash", + "effect": "O usuário ataca com um soco. Isso também pode prejudicar o atributo de Defesa do alvo." + }, + "whirlpool": { + "name": "Whirlpool", + "effect": "O usuário prende o alvo num violento redemoinho por quatro ou cinco turnos." + }, + "beatUp": { + "name": "Beat Up", + "effect": "O usuário reúne todos os Pokémon da equipe para atacar o alvo. Quanto maior o número de Pokémon na equipe, maior será o número de ataques." + }, + "fakeOut": { + "name": "Fake Out", + "effect": "Um ataque que acerta primeiro e faz o alvo hesitar. Só funciona no primeiro turno do usuário em batalha." + }, + "uproar": { + "name": "Uproar", + "effect": "O usuário ataca gritando por três turnos. Durante esse tempo, ninguém pode cair no sono." + }, + "stockpile": { + "name": "Stockpile", + "effect": "O usuário carrega seu poder e fortalece a Defesa e a Defesa Especial. O movimento pode ser usado três vezes." + }, + "spitUp": { + "name": "Spit Up", + "effect": "O poder carregado usando o movimento Estocagem é liberado de uma só vez em um ataque. Quanto mais poder é armazenado, maior a força do movimento." + }, + "swallow": { + "name": "Swallow", + "effect": "O poder carregado usando o movimento Estocagem é absorvido pelo usuário para curar PS. Quanto mais poder for armazenado, mais PS serão recuperados." + }, + "heatWave": { + "name": "Heat Wave", + "effect": "O usuário ataca exalando um sopro ardente nos Pokémon adversários. Isso também pode deixar esses Pokémon queimados." + }, + "hail": { + "name": "Hail", + "effect": "O usuário invoca uma tempestade de granizo durante cinco turnos. Isso fere todos os Pokémon, exceto os tipo Gelo." + }, + "torment": { + "name": "Torment", + "effect": "O usuário atormenta o alvo, fazendo-o incapaz de usar o mesmo movimento duas vezes seguidas." + }, + "flatter": { + "name": "Flatter", + "effect": "Bajulação é usada para confundir o oponente. Entretanto, isso também fortalece o Ataque Especial do alvo." + }, + "willOWisp": { + "name": "Will-O-Wisp", + "effect": "O usuário atira uma sinistra chama azulada no alvo para causar uma queimadura." + }, + "memento": { + "name": "Memento", + "effect": "O usuário desmaia quando usa esse movimento. Em troca, prejudica duramente o Ataque e o Ataque Especial do alvo." + }, + "facade": { + "name": "Facade", + "effect": "Um ataque que dobra de poder caso o usuário esteja envenenado, queimado ou paralisado." + }, + "focusPunch": { + "name": "Focus Punch", + "effect": "O usuário foca sua mente antes de dar um soco. Esse ataque falhará caso o usuário seja atingido antes de executá-lo." + }, + "smellingSalts": { + "name": "Smelling Salts", + "effect": "Esse ataque causa o dobro do dano em um alvo paralisado. Entretanto, isso também cura a paralisia do alvo." + }, + "followMe": { + "name": "Follow Me", + "effect": "O usuário chama a atenção para si mesmo, fazendo todos os alvos mirarem apenas nele." + }, + "naturePower": { + "name": "Nature Power", + "effect": "Um ataque que faz uso do poder da natureza. Seus efeitos variam dependendo do ambiente ao redor do usuário." + }, + "charge": { + "name": "Charge", + "effect": "O usuário fortalece o poder do golpe do tipo Elétrico usado no próximo turno. Isso também fortalece a Defesa Especial do usuário." + }, + "taunt": { + "name": "Taunt", + "effect": "O alvo é provocado e fica em fúria, fazendo-o usar apenas movimentos de ataque por três turnos." + }, + "helpingHand": { + "name": "Helping Hand", + "effect": "O usuário auxilia um aliado, fortalecendo o poder do ataque desse aliado." + }, + "trick": { + "name": "Trick", + "effect": "O usuário pega o alvo de surpresa e faz uma troca de itens com o alvo." + }, + "rolePlay": { + "name": "Role Play", + "effect": "O usuário imita o alvo completamente, copiando a Habilidade natural do alvo." + }, + "wish": { + "name": "Wish", + "effect": "Um turno após esse movimento ter sido usado, os PS do usuário ou de seu substituinte são restaurados pela metade dos PS máximos do usuário." + }, + "assist": { + "name": "Assist", + "effect": "O usuário na pressa usa aleatoriamente um dos movimentos conhecidos pelos outros Pokémon na equipe." + }, + "ingrain": { + "name": "Ingrain", + "effect": "O usuário planta suas raízes para curar seus PS por turno. Devido ao enraizamento, ele não pode sair da batalha." + }, + "superpower": { + "name": "Superpower", + "effect": "O usuário ataca o alvo com grande poder. Entretanto, isso também prejudica o Ataque e Defesa do usuário." + }, + "magicCoat": { + "name": "Magic Coat", + "effect": "Uma barreira que reflete de volta ao alvo movimentos como Semente Drenante e movimentos que reduzem atributos." + }, + "recycle": { + "name": "Recycle", + "effect": "O usuário recicla um item segurado que já foi usado em batalha para que possa ser usado de novo." + }, + "revenge": { + "name": "Revenge", + "effect": "Um movimento atacante que inflige o dobro do dano se o usuário foi ferido pelo adversário no mesmo turno." + }, + "brickBreak": { + "name": "Brick Break", + "effect": "O usuário ataca com um corte veloz. Isso também quebra barreiras como Tela de Luz e Refletir." + }, + "yawn": { + "name": "Yawn", + "effect": "O usuário dá um grande e preguiçoso bocejo que acalma o alvo, fazendo-o cair no sono no próximo turno." + }, + "knockOff": { + "name": "Knock Off", + "effect": "O usuário dá um tapa no item segurado pelo alvo e esse item não poderá mais ser usado naquela batalha. Caso possua um item, o alvo receberá mais dano." + }, + "endeavor": { + "name": "Endeavor", + "effect": "Um movimento de ataque que corta os PS do alvo para que se equalize aos PS do usuário." + }, + "eruption": { + "name": "Eruption", + "effect": "O usuário ataca o Pokémon adversário com uma fúria explosiva. Quanto menor for os PS do usuário, menor será o poder do movimento." + }, + "skillSwap": { + "name": "Skill Swap", + "effect": "O usuário utiliza seu poder psíquico para trocar de Habilidade com o alvo." + }, + "imprison": { + "name": "Imprison", + "effect": "Se os Pokémon adversários conhecerem algum movimento também conhecido pelo usuário, eles não poderão usá-lo." + }, + "refresh": { + "name": "Refresh", + "effect": "O usuário descansa para curar a si mesmo de envenenamentos, queimaduras ou paralisias." + }, + "grudge": { + "name": "Grudge", + "effect": "Se o usuário desmaiar, o rancor do usuário vai esgotar completamente os PP do movimento que o nocauteou." + }, + "snatch": { + "name": "Snatch", + "effect": "O usuário rouba o efeito de qualquer tentativa de usar um movimento de cura ou mudança de atributo." + }, + "secretPower": { + "name": "Secret Power", + "effect": "Os efeitos adicionais deste movimento variam dependendo do ambiente ao redor do usuário." + }, + "dive": { + "name": "Dive", + "effect": "Mergulhando no primeiro turno, o usuário emerge e ataca no próximo turno." + }, + "armThrust": { + "name": "Arm Thrust", + "effect": "O usuário solta uma sequência de golpes braçais com as palmas abertas, de duas a cinco vezes seguidas." + }, + "camouflage": { + "name": "Camouflage", + "effect": "O tipo do usuário é mudado dependendo do ambiente ao seu redor, como na margem da água, rodeado por grama ou dentro de uma caverna." + }, + "tailGlow": { + "name": "Tail Glow", + "effect": "O usuário direciona seu olhar à luzes piscantes para focar sua mente, aumentando drasticamente o seu Ataque Especial." + }, + "lusterPurge": { + "name": "Luster Purge", + "effect": "O usuário libera uma explosão de luz letal. Isso pode prejudicar a Defesa Especial do alvo." + }, + "mistBall": { + "name": "Mist Ball", + "effect": "Um amalgamado de penas nevoentas envolvem e ferem o alvo. Isso pode prejudicar o Ataque Especial do alvo." + }, + "featherDance": { + "name": "Feather Dance", + "effect": "O usuário cobre o corpo do alvo com uma grande massa de penas que prejudicam duramente o Ataque do alvo." + }, + "teeterDance": { + "name": "Teeter Dance", + "effect": "O usuário performa uma dança desajeitada que confunde os Pokémon ao seu redor." + }, + "blazeKick": { + "name": "Blaze Kick", + "effect": "O usuário lança um chute que acerta golpes críticos com mais facilidade. Isso também pode deixar o alvo queimado." + }, + "mudSport": { + "name": "Mud Sport", + "effect": "O usuário chuta lama ao redor do campo de batalha. Isso enfraquece os golpes do tipo Elétrico por cinco turnos." + }, + "iceBall": { + "name": "Ice Ball", + "effect": "O usuário ataca continuamente por cinco turnos. O ataque se torna mais forte cada vez que acerta." + }, + "needleArm": { + "name": "Needle Arm", + "effect": "O usuário ataca selvagemente balançando seus braços pontiagudos. Isso pode fazer o alvo hesitar." + }, + "slackOff": { + "name": "Slack Off", + "effect": "O usuário relaxa, restaurando os próprios PS pela metade dos seus PS máximos." + }, + "hyperVoice": { + "name": "Hyper Voice", + "effect": "O usuário libera um horrível grito estridente com o poder de infligir dano." + }, + "poisonFang": { + "name": "Poison Fang", + "effect": "O usuário morde o alvo com suas presas tóxicas. Isso pode envenenar seriamente o alvo." + }, + "crushClaw": { + "name": "Crush Claw", + "effect": "O usuário retalha o alvo com garras duras e afiadas. Isso pode prejudicar a Defesa do alvo." + }, + "blastBurn": { + "name": "Blast Burn", + "effect": "O alvo é arrasado por uma ardente explosão. O usuário não pode se mover no próximo turno." + }, + "hydroCannon": { + "name": "Hydro Cannon", + "effect": "O alvo é acertado por uma explosão aquática. O usuário não pode se mover no próximo turno." + }, + "meteorMash": { + "name": "Meteor Mash", + "effect": "O alvo é acertado por um soco forte disparado como um meteoro. Isso pode fortalecer o Ataque do usuário." + }, + "astonish": { + "name": "Astonish", + "effect": "O usuário ataca o alvo enquanto grita de forma alarmante. Isso pode fazer o alvo hesitar." + }, + "weatherBall": { + "name": "Weather Ball", + "effect": "Um ataque que varia de poder e tipo dependendo do clima." + }, + "aromatherapy": { + "name": "Aromatherapy", + "effect": "O usuário lança uma fragrância calmante que cura todos os estados negativos afetando a equipe do usuário." + }, + "fakeTears": { + "name": "Fake Tears", + "effect": "O usuário finge chorar para perturbar o alvo, duramente prejudicando a sua Defesa Especial." + }, + "airCutter": { + "name": "Air Cutter", + "effect": "O usuário lança uma rajada de vento afiado para cortar seus oponentes. Golpes críticos ocorrem mais facilmente." + }, + "overheat": { + "name": "Overheat", + "effect": "O usuário ataca o alvo com seu poder máximo; contudo, o efeito colateral diminui o Ataque Especial do usuário." + }, + "odorSleuth": { + "name": "Odor Sleuth", + "effect": "Permite que um alvo do tipo Fantasma seja atingido por ataques do tipo Normal e Lutador. Isso também permite que um alvo evasivo seja acertado." + }, + "rockTomb": { + "name": "Rock Tomb", + "effect": "Rochas são arremessadas no alvo. Isso também diminui a Velocidade do alvo, impedindo que se movimente." + }, + "silverWind": { + "name": "Silver Wind", + "effect": "O alvo é atacado com escamas pulverulentas sopradas pelo vento. Isso pode aumentar todos os atributos do usuário." + }, + "metalSound": { + "name": "Metal Sound", + "effect": "Um som horrível que lembra metal sendo raspado, isso prejudica duramente a Defesa Especial do alvo." + }, + "grassWhistle": { + "name": "Grass Whistle", + "effect": "O usuário toca uma agradável melodia que acalma o alvo, fazendo-o entrar em sono profundo." + }, + "tickle": { + "name": "Tickle", + "effect": "O usuário faz cócegas no alvo, o fazendo rir, reduzindo seus atributos de Ataque e Defesa." + }, + "cosmicPower": { + "name": "Cosmic Power", + "effect": "O usuário absorve energia mística do espaço para aumentar sua Defesa e Defesa Especial." + }, + "waterSpout": { + "name": "Water Spout", + "effect": "O usuário jorra água para ferir os Pokémon oponentes. Quanto menos PS o usuário tiver, menor será o poder do movimento." + }, + "signalBeam": { + "name": "Signal Beam", + "effect": "O usuário ataca com um raio de luz sinistro. Isso também pode confundir o alvo." + }, + "shadowPunch": { + "name": "Shadow Punch", + "effect": "O usuário dispara um soco dentre as sombras. Esse ataque nunca erra." + }, + "extrasensory": { + "name": "Extrasensory", + "effect": "O usuário ataca com um poder estranho e incompreensível. Isso também pode fazer o alvo hesitar." + }, + "skyUppercut": { + "name": "Sky Uppercut", + "effect": "O usuário ataca o alvo com um gancho de direita poderoso direcionado ao céu." + }, + "sandTomb": { + "name": "Sand Tomb", + "effect": "O usuário prende o alvo dentro de uma violenta tempestade de areia por quatro ou cinco turnos." + }, + "sheerCold": { + "name": "Sheer Cold", + "effect": "O alvo desmaia instantaneamente. É mais difícil de acertar se o usuário não for um tipo Gelo." + }, + "muddyWater": { + "name": "Muddy Water", + "effect": "O usuário ataca atirando água barrenta nos Pokémon adversários. Isso também pode diminuir a Precisão deles." + }, + "bulletSeed": { + "name": "Bullet Seed", + "effect": "O usuário atira sementes com grande força no alvo de duas a cinco vezes seguidas." + }, + "aerialAce": { + "name": "Aerial Ace", + "effect": "O usuário confunde o alvo com sua velocidade e então ataca. Esse ataque nunca erra." + }, + "icicleSpear": { + "name": "Icicle Spear", + "effect": "O usuário arremessa lanças afiadas de gelo no alvo de duas a cinco vezes seguidas." + }, + "ironDefense": { + "name": "Iron Defense", + "effect": "O usuário endurece a superfície de seu corpo como aço, bruscamente fortalecendo sua Defesa." + }, + "block": { + "name": "Block", + "effect": "O usuário bloqueia o caminho do alvo com seus braços amplamente abertos para prevenir escapatória." + }, + "howl": { + "name": "Howl", + "effect": "O usuário uiva alto para fortalecer seu espirito, o que aumenta seu Ataque." + }, + "dragonClaw": { + "name": "Dragon Claw", + "effect": "O usuário corta o alvo com grandes garras afiadas." + }, + "frenzyPlant": { + "name": "Frenzy Plant", + "effect": "O usuário esmaga o alvo com uma enorme árvore. O usuário não pode se mover no próximo turno." + }, + "bulkUp": { + "name": "Bulk Up", + "effect": "O usuário flexiona os seus músculos para fortalecer seu corpo, aumentando os seus atributos de Ataque e Defesa." + }, + "bounce": { + "name": "Bounce", + "effect": "O usuário pula alto e então cai em cima do alvo no segundo turno. Isso também pode deixar o alvo com paralisia." + }, + "mudShot": { + "name": "Mud Shot", + "effect": "O usuário ataca arremessando uma bola de lama ao alvo. Isso também diminui a Velocidade do alvo." + }, + "poisonTail": { + "name": "Poison Tail", + "effect": "O usuário acerta o alvo com sua cauda. Isso também pode envenenar o alvo. Golpes críticos ocorrem mais facilmente." + }, + "covet": { + "name": "Covet", + "effect": "O usuário, despretensiosamente, se aproxima do alvo e então rouba o item segurado pelo alvo." + }, + "voltTackle": { + "name": "Volt Tackle", + "effect": "O usuário eletrifica a si próprio e então ataca. Isso também fere muito o usuário. Pode deixar o alvo com paralisia." + }, + "magicalLeaf": { + "name": "Magical Leaf", + "effect": "O usuário espalha folhas peculiares que perseguem o alvo. Esse ataque nunca erra." + }, + "waterSport": { + "name": "Water Sport", + "effect": "O usuário encharca o campo de batalha. Isso enfraquece os movimentos do tipo Fogo por cinco turnos." + }, + "calmMind": { + "name": "Calm Mind", + "effect": "O usuário silenciosamente focaliza sua mente e acalma o seu espírito para aumentar ambos os atributos especiais." + }, + "leafBlade": { + "name": "Leaf Blade", + "effect": "O usuário empunha uma folha afiada como uma espada e ataca cortando o alvo. Golpes críticos acertam mais facilmente." + }, + "dragonDance": { + "name": "Dragon Dance", + "effect": "O usuário, energicamente, performa uma dança mística e poderosa para aumentar seu Ataque e Velocidade." + }, + "rockBlast": { + "name": "Rock Blast", + "effect": "O usuário arremessa rochas duras no alvo. Duas a cinco rochas são lançadas em sequência." + }, + "shockWave": { + "name": "Shock Wave", + "effect": "O usuário atinge o alvo com um repentino ataque de eletricidade. Esse ataque nunca erra." + }, + "waterPulse": { + "name": "Water Pulse", + "effect": "O usuário ataca o alvo com uma pulsante explosão de água. Talvez isso confunda o alvo." + }, + "doomDesire": { + "name": "Doom Desire", + "effect": "Dois turnos após esse movimento ter sido usado, o usuário explode o alvo com um feixe de luz concentrado." + }, + "psychoBoost": { + "name": "Psycho Boost", + "effect": "O usuário ataca o alvo com poder máximo. O efeito colateral do ataque prejudica duramente o Ataque Especial do usuário." + }, + "roost": { + "name": "Roost", + "effect": "O usuário pousa e descansa seu corpo. Isso restaura os PS do usuário pela metade do seu máximo de PS." + }, + "gravity": { + "name": "Gravity", + "effect": "Permite que Pokémon do tipo Voador ou Pokémon com a Habilidade Levitação possam ser atingidos por golpes do tipo Terra. Golpes que envolvam voar ficam inutilizados." + }, + "miracleEye": { + "name": "Miracle Eye", + "effect": "Permite que um alvo tipo Sombrio seja atingido por ataques do tipo Psíquico. Isso também permite que um alvo evasivo possa ser atingido." + }, + "wakeUpSlap": { + "name": "Wake-Up Slap", + "effect": "Esse ataque causa muito dano em um alvo que estiver dormindo; entretanto, isso também acorda o alvo." + }, + "hammerArm": { + "name": "Hammer Arm", + "effect": "O usuário balança seus braços e atinge com seus fortes e pesados punhos. Isso diminui a Velocidade do usuário." + }, + "gyroBall": { + "name": "Gyro Ball", + "effect": "O alvo é acertado com um giro em alta velocidade. Quanto mais lento for o usuário comparado ao alvo, maior será o poder do movimento." + }, + "healingWish": { + "name": "Healing Wish", + "effect": "O usuário desmaia. Em troca, o Pokémon que tomará seu lugar terá seus PS restaurados e condições negativas curadas." + }, + "brine": { + "name": "Brine", + "effect": "Se os PS do alvo estiverem pela metade ou menos, esse ataque terá o dobro do poder." + }, + "naturalGift": { + "name": "Natural Gift", + "effect": "O usuário canaliza o poder para atacar usando a Fruta que está segurando. A Fruta determina o tipo e o poder do movimento." + }, + "feint": { + "name": "Feint", + "effect": "Um ataque que acerta um alvo usando Proteção ou Detectar. Isso também extingue os efeitos desses movimentos." + }, + "pluck": { + "name": "Pluck", + "effect": "O usuário bica o alvo. Caso o alvo esteja segurando uma Fruta, o usuário a come e ganha seu efeito." + }, + "tailwind": { + "name": "Tailwind", + "effect": "O usuário forma um turbulento redemoinho que aumenta a Velocidade do usuário e de seus seus aliados por quatro turnos." + }, + "acupressure": { + "name": "Acupressure", + "effect": "O usuário aplica pressão em pontos de estresse, bruscamente fortalecendo um de seus atributos ou de seus aliados." + }, + "metalBurst": { + "name": "Metal Burst", + "effect": "O usuário revida com muito mais força contra o alvo que lhe infligiu dano por ultimo." + }, + "uTurn": { + "name": "U-turn", + "effect": "Depois de fazer o seu ataque, o usuário corre de volta para trocar de lugar com um Pokémon da própria equipe." + }, + "closeCombat": { + "name": "Close Combat", + "effect": "O usuário luta com o alvo de perto sem se defender. Isso diminui a Defesa e Defesa Especial do usuário." + }, + "payback": { + "name": "Payback", + "effect": "O usuário acumula poder, então ataca. Se o usuário se mover depois do alvo, o poder deste ataque será dobrado." + }, + "assurance": { + "name": "Assurance", + "effect": "Caso o alvo já tenha recebido dano no mesmo turno, o poder desse ataque é dobrado." + }, + "embargo": { + "name": "Embargo", + "effect": "Este movimento previne que o alvo use o seu item por cinco turnos. Seu Treinador também estará restrito de usar itens nele." + }, + "fling": { + "name": "Fling", + "effect": "O usuário arremessa seu item no alvo para atacar. O poder e o efeito deste movimento dependem do item utilizado." + }, + "psychoShift": { + "name": "Psycho Shift", + "effect": "Usando seu poder psíquico da sugestão, o usuário transfere suas condições de estado para o alvo." + }, + "trumpCard": { + "name": "Trump Card", + "effect": "Quanto menos PP este movimento tiver, maior será sua força." + }, + "healBlock": { + "name": "Heal Block", + "effect": "Por cinco turnos, o usuário previne que a equipe adversária use quaisquer movimentos, Habilidades, ou itens segurados para recuperar PS." + }, + "wringOut": { + "name": "Wring Out", + "effect": "O usuário torce o alvo com força bruta. Quando mais PS o alvo possuir, maior será o poder do movimento." + }, + "powerTrick": { + "name": "Power Trick", + "effect": "O usuário usufrui de seu poder psíquico para trocar os atributos de seu Ataque com sua Defesa." + }, + "gastroAcid": { + "name": "Gastro Acid", + "effect": "O usuário arremessa os ácidos de seu estômago no alvo. O fluido elimina o efeito da habilidade do alvo." + }, + "luckyChant": { + "name": "Lucky Chant", + "effect": "O usuário recita um encantamento em direção ao céu, prevenindo que os Pokémon oponentes acertem golpes críticos." + }, + "meFirst": { + "name": "Me First", + "effect": "O usuário corta a ação do alvo para roubar seu movimento e usá-lo com maior poder. Esse movimento falha caso não seja usado primeiro." + }, + "copycat": { + "name": "Copycat", + "effect": "O usuário imita o movimento imediatamente usado antes dele. O movimento falha caso nenhum outro movimento tenha sido usado." + }, + "powerSwap": { + "name": "Power Swap", + "effect": "O usuário usufrui de seu poder psíquico para trocar mudanças de atributos feitas ao seu Ataque e Ataque Especial com os do alvo." + }, + "guardSwap": { + "name": "Guard Swap", + "effect": "O usuário usufrui de seu poder psíquico para trocar mudanças de atributos feitas à sua Defesa e Defesa Especial com as do alvo." + }, + "punishment": { + "name": "Punishment", + "effect": "Quanto mais os atributos do alvo estiverem fortalecidos, maior será o poder desse movimento." + }, + "lastResort": { + "name": "Last Resort", + "effect": "Este movimento somente pode ser usado depois de o usuário ter usado todos os outros movimentos que ele conhece em batalha." + }, + "worrySeed": { + "name": "Worry Seed", + "effect": "Uma semente que causa preocupação é plantada no alvo. Isso previne o sono, fazendo a Habilidade do alvo se tornar Insônia." + }, + "suckerPunch": { + "name": "Sucker Punch", + "effect": "Esse movimento permite que o usuário ataque primeiro. Esse ataque falha caso o alvo não esteja preparando um ataque." + }, + "toxicSpikes": { + "name": "Toxic Spikes", + "effect": "O usuário planta uma armadilha de espinhos venenosos nos pés da equipe adversária. Os espinhos envenenam os Pokémon que entram em batalha." + }, + "heartSwap": { + "name": "Heart Swap", + "effect": "O usuário usufrui de seu poder psíquico para trocar mudanças de atributos com o oponente." + }, + "aquaRing": { + "name": "Aqua Ring", + "effect": "O usuário envolve-se em um véu feito de água. Ele recupera um pouco de PS a cada turno." + }, + "magnetRise": { + "name": "Magnet Rise", + "effect": "O usuário levita usando magnetismo gerado por eletricidade por cinco turnos." + }, + "flareBlitz": { + "name": "Flare Blitz", + "effect": "O usuário cobre o próprio corpo com chamas e avança no alvo. Isso também fere muito o usuário e pode deixar o alvo com uma queimadura." + }, + "forcePalm": { + "name": "Force Palm", + "effect": "O alvo é atacado com uma onda de choque. Isso também pode deixar o alvo com paralisia." + }, + "auraSphere": { + "name": "Aura Sphere", + "effect": "O usuário libera uma explosão de poder da aura de seu corpo no alvo. Esse ataque nunca erra." + }, + "rockPolish": { + "name": "Rock Polish", + "effect": "O usuário pule seu corpo para reduzir entraves. Isso pode aumentar bruscamente a Velocidade." + }, + "poisonJab": { + "name": "Poison Jab", + "effect": "O alvo é perfurado com um tentáculo ou braço banhado com veneno. Isso também pode envenenar o alvo." + }, + "darkPulse": { + "name": "Dark Pulse", + "effect": "O usuário descarrega uma horrível aura imbuída com pensamentos obscuros. Isso também pode fazer o alvo hesitar." + }, + "nightSlash": { + "name": "Night Slash", + "effect": "O usuário retalha o alvo no instante que surge uma oportunidade. Golpes críticos ocorrem mais facilmente." + }, + "aquaTail": { + "name": "Aqua Tail", + "effect": "O usuário ataca balançando sua cauda como se fosse uma violenta e furiosa tempestade." + }, + "seedBomb": { + "name": "Seed Bomb", + "effect": "O usuário atira uma barragem de sementes de casca dura acertando o alvo por cima." + }, + "airSlash": { + "name": "Air Slash", + "effect": "O usuário ataca com uma lâmina de ar que corta até mesmo o céu. Isso pode fazer o alvo hesitar." + }, + "xScissor": { + "name": "X-Scissor", + "effect": "O usuário cutila o alvo cruzando suas foices ou garras como se elas fossem um par de tesouras." + }, + "bugBuzz": { + "name": "Bug Buzz", + "effect": "O usuário gera uma dolorosa onda de som. Isso também pode diminuir o atributo de Defesa Especial do alvo." + }, + "dragonPulse": { + "name": "Dragon Pulse", + "effect": "O alvo é atacado com uma onda de choque gerada pela boca aberta do usuário." + }, + "dragonRush": { + "name": "Dragon Rush", + "effect": "O usuário ataca o alvo enquanto demonstra uma ameaça esmagadora. Isso também pode fazer o alvo hesitar." + }, + "powerGem": { + "name": "Power Gem", + "effect": "O usuário ataca com um raio de luz que brilha como se fosse feito de pedras preciosas." + }, + "drainPunch": { + "name": "Drain Punch", + "effect": "Um soco que drena energia. Os PS do usuário são curados pela metade do dano infligido ao alvo." + }, + "vacuumWave": { + "name": "Vacuum Wave", + "effect": "O usuário rodopia seus punhos para lançar uma onda de vácuo puro no alvo. Esse movimento tem prioridade." + }, + "focusBlast": { + "name": "Focus Blast", + "effect": "O usuário eleva seu foco mental e libera o seu poder. Isso também pode diminuir a Defesa Especial do alvo." + }, + "energyBall": { + "name": "Energy Ball", + "effect": "O usuário extrai o poder da natureza e dispara no alvo. Isso também pode diminuir a Defesa Especial do alvo." + }, + "braveBird": { + "name": "Brave Bird", + "effect": "O usuário dobra suas asas e avança de uma baixa altitude. Isso também fere muito o usuário." + }, + "earthPower": { + "name": "Earth Power", + "effect": "O usuário faz o solo debaixo do alvo emergir com poder. Isso também pode diminuir a Defesa Especial do alvo." + }, + "switcheroo": { + "name": "Switcheroo", + "effect": "O usuário troca de itens com o alvo mais rápido do que os olhos podem acompanhar." + }, + "gigaImpact": { + "name": "Giga Impact", + "effect": "O usuário investe no alvo usando absolutamente todo o seu poder. O usuário não poderá se mover no próximo turno." + }, + "nastyPlot": { + "name": "Nasty Plot", + "effect": "O usuário estimula seu cérebro com pensamentos malvados. Isso bruscamente aumenta o Ataque Especial do usuário." + }, + "bulletPunch": { + "name": "Bullet Punch", + "effect": "O usuário atinge o alvo com socos fortes tão rápidos como tiros. Esse movimento tem prioridade." + }, + "avalanche": { + "name": "Avalanche", + "effect": "Um ataque que inflige o dobro do dano caso o usuário já tenha sido ferido pelo alvo no mesmo turno." + }, + "iceShard": { + "name": "Ice Shard", + "effect": "O usuário congela rapidamente cristais de gelo e os arremessa no alvo. Esse movimento tem prioridade." + }, + "shadowClaw": { + "name": "Shadow Claw", + "effect": "O usuário corta com uma garra afiada feita de sombras. Golpes críticos ocorrem mais facilmente." + }, + "thunderFang": { + "name": "Thunder Fang", + "effect": "O usuário morde com presas eletrificadas. Isso também pode fazer o alvo hesitar ou deixá-lo paralisado." + }, + "iceFang": { + "name": "Ice Fang", + "effect": "O usuário morde com presas infundidas com gelo. Isso também pode fazer o alvo hesitar ou deixá-lo congelado." + }, + "fireFang": { + "name": "Fire Fang", + "effect": "O usuário morde com presas cobertas de fogo. Isso também pode fazer o alvo hesitar ou deixá-lo queimado." + }, + "shadowSneak": { + "name": "Shadow Sneak", + "effect": "O usuário estende a própria sombra e ataca o alvo por trás. Esse movimento tem prioridade." + }, + "mudBomb": { + "name": "Mud Bomb", + "effect": "O usuário lança uma bola concentrada de lama para atacar. Isso também pode diminuir a Precisão do alvo." + }, + "psychoCut": { + "name": "Psycho Cut", + "effect": "O usuário corta o alvo com lâminas materializadas com poder psíquico. Golpes críticos ocorrem mais facilmente." + }, + "zenHeadbutt": { + "name": "Zen Headbutt", + "effect": "O usuário foca sua força de vontade em sua cabeça e ataca o alvo. Isso também pode fazer o alvo hesitar." + }, + "mirrorShot": { + "name": "Mirror Shot", + "effect": "O usuário libera um clarão de energia vindo de seu corpo polido no alvo. Isso pode diminuir a Precisão do alvo." + }, + "flashCannon": { + "name": "Flash Cannon", + "effect": "O usuário reúne toda a sua energia de luz e lança de uma só vez. Isso também pode diminuir a Defesa Especial do alvo." + }, + "rockClimb": { + "name": "Rock Climb", + "effect": "O usuário ataca o alvo o esmagando com uma incrível força bruta. Isso pode confundir o alvo." + }, + "defog": { + "name": "Defog", + "effect": "Um vento forte que dispersa as barreiras do alvo como Refletir ou Tela de Luz. Isso também diminui a Evasiva do oponente." + }, + "trickRoom": { + "name": "Trick Room", + "effect": "O usuário cria uma área bizarra onde Pokémon mais lentos se movem primeiro por cinco turnos." + }, + "dracoMeteor": { + "name": "Draco Meteor", + "effect": "Cometas são invocados do céu e caem sobre o alvo. O efeito colateral do ataque duramente prejudica o atributo de Ataque Especial do usuário." + }, + "discharge": { + "name": "Discharge", + "effect": "O usuário atinge tudo ao seu redor liberando uma explosão de eletricidade. Isso também pode causar paralisia." + }, + "lavaPlume": { + "name": "Lava Plume", + "effect": "O usuário queima tudo ao seu redor com um inferno de chamas escarlate. Isso também pode causar uma queimadura em alvos atingidos." + }, + "leafStorm": { + "name": "Leaf Storm", + "effect": "O usuário cria uma tempestade de folhas ao redor do alvo. Isso diminui duramente o Ataque Especial do usuário." + }, + "powerWhip": { + "name": "Power Whip", + "effect": "O usuário rodopia suas vinhas ou tentáculos com vigor para chicotear o alvo cruelmente." + }, + "rockWrecker": { + "name": "Rock Wrecker", + "effect": "O usuário lança uma grande rocha no alvo. O usuário não pode se mover no próximo turno." + }, + "crossPoison": { + "name": "Cross Poison", + "effect": "Um ataque cortante com uma lâmina envenenada que pode envenenar o alvo. Golpes críticos ocorrem mais facilmente." + }, + "gunkShot": { + "name": "Gunk Shot", + "effect": "O usuário atira lixo repugnante no alvo. Isso também pode envenenar o alvo." + }, + "ironHead": { + "name": "Iron Head", + "effect": "O usuário acerta o alvo com sua cabeça dura como aço. Isso também pode fazer o alvo hesitar." + }, + "magnetBomb": { + "name": "Magnet Bomb", + "effect": "O usuário lança bombas de aço que grudam no alvo. Esse ataque nunca erra." + }, + "stoneEdge": { + "name": "Stone Edge", + "effect": "O usuário perfura o alvo por baixo com pedras afiadas. Golpes críticos ocorrem mais facilmente." + }, + "captivate": { + "name": "Captivate", + "effect": "Se algum dos Pokémon oponentes forem do gênero oposto do usuário, ele se encanta, o que diminui duramente o seu Ataque Especial." + }, + "stealthRock": { + "name": "Stealth Rock", + "effect": "O usuário planta armadilhas de pedras levitantes ao redor da equipe oponente. A armadilha fere os Pokémon oponentes que entrarem em campo." + }, + "grassKnot": { + "name": "Grass Knot", + "effect": "O usuário planta uma armadilha com grama e o alvo tropeça nela. Quanto mais pesado o alvo for, maior é o poder do movimento." + }, + "chatter": { + "name": "Chatter", + "effect": "O usuário ataca o alvo com ondas de som vindas de sua tagarelagem ensurdecedora. Isso confunde o alvo." + }, + "judgment": { + "name": "Judgment", + "effect": "O usuário libera incontáveis tiros de luz no alvo. A tipagem desse movimento varia dependendo do tipo de Placa que o usuário está segurando." + }, + "bugBite": { + "name": "Bug Bite", + "effect": "O usuário morde o alvo. Caso o alvo esteja segurando uma Fruta, o usuário a come e ganha seu efeito." + }, + "chargeBeam": { + "name": "Charge Beam", + "effect": "O usuário ataca com uma carga elétrica. O usuário pode usar a eletricidade que sobrar para fortalecer seu Ataque Especial." + }, + "woodHammer": { + "name": "Wood Hammer", + "effect": "O usuário usa seu corpo rígido para golpear o alvo. Isso também fere muito o usuário." + }, + "aquaJet": { + "name": "Aqua Jet", + "effect": "O usuário ataca o alvo em uma velocidade que o torna quase invisível. Esse movimento tem prioridade." + }, + "attackOrder": { + "name": "Attack Order", + "effect": "O usuário ordena que seus subordinados ataquem o alvo. Golpes críticos ocorrem mais facilmente." + }, + "defendOrder": { + "name": "Defend Order", + "effect": "O usuário ordena que seus subordinados protejam seu corpo, aumentando seus atributos de Defesa e Defesa Especial." + }, + "healOrder": { + "name": "Heal Order", + "effect": "O usuário ordena que seus subordinados o curem. O usuário restaura até metade de seus PS máximos." + }, + "headSmash": { + "name": "Head Smash", + "effect": "O usuário usa toda a sua força para acertar uma perigosa cabeçada destrutiva no alvo. Isso também fere terrivelmente o usuário." + }, + "doubleHit": { + "name": "Double Hit", + "effect": "O usuário golpeia o alvo com uma longa cauda, vinhas, ou um tentáculo. O alvo é acertado duas vezes seguidas." + }, + "roarOfTime": { + "name": "Roar of Time", + "effect": "O usuário bombardeia o alvo com tamanho poder que distorce até mesmo o tempo; porém, não se moverá no próximo turno." + }, + "spacialRend": { + "name": "Spacial Rend", + "effect": "O usuário rasga a existência do alvo junto com o espaço ao seu redor. Golpes críticos ocorrem mais facilmente." + }, + "lunarDance": { + "name": "Lunar Dance", + "effect": "O usuário desmaia. Em troca, o Pokémon que tomará seu lugar terá suas condições negativas e PS restaurados." + }, + "crushGrip": { + "name": "Crush Grip", + "effect": "O alvo é esmagado com grande força. Quanto mais PS o alvo possuir, maior será o poder desse movimento." + }, + "magmaStorm": { + "name": "Magma Storm", + "effect": "O alvo é preso dentro de um turbilhão de fogo que arde de quatro a cinco turnos." + }, + "darkVoid": { + "name": "Dark Void", + "effect": "Pokémon oponentes são sugados para dentro de um mundo de total escuridão que os faz dormir." + }, + "seedFlare": { + "name": "Seed Flare", + "effect": "O usuário emite uma onda de choque de seu corpo para atacar o alvo. Isso também pode diminuir duramente a Defesa Especial do alvo." + }, + "ominousWind": { + "name": "Ominous Wind", + "effect": "O usuário ataca o alvo com uma rajada de vento repulsivo. Talvez aumente todos os atributos do usuário de uma vez." + }, + "shadowForce": { + "name": "Shadow Force", + "effect": "O usuário desaparece, então atinge o alvo no próximo turno. Esse movimento acerta o alvo mesmo que ele proteja a si mesmo." + }, + "honeClaws": { + "name": "Hone Claws", + "effect": "O usuário afia suas garras para fortalecer seu Ataque e sua Precisão." + }, + "wideGuard": { + "name": "Wide Guard", + "effect": "O usuário e seus aliados são protegidos de ataques de longo alcance por um turno." + }, + "guardSplit": { + "name": "Guard Split", + "effect": "O usuário usufrui de seu poder psíquico para equalizar seus atributos de Defesa e Defesa Especial com o alvo." + }, + "powerSplit": { + "name": "Power Split", + "effect": "O usuário usufrui de seu poder psíquico para igualar seus atributos de Ataque e Ataque Especial com o alvo." + }, + "wonderRoom": { + "name": "Wonder Room", + "effect": "O usuário cria uma área bizarra onde os atributos de Defesa e Defesa Especial dos Pokémon são trocados por cinco turnos." + }, + "psyshock": { + "name": "Psyshock", + "effect": "O usuário materializa uma estranha onda psíquica para atacar o alvo. Esse ataque inflige dano físico." + }, + "venoshock": { + "name": "Venoshock", + "effect": "O usuário encharca o alvo com um líquido venenoso especial. O poder desse movimento dobra se o alvo estiver envenenado." + }, + "autotomize": { + "name": "Autotomize", + "effect": "O usuário perde parte de seu corpo para se tornar mais leve e bruscamente aumentar seu atributo de Velocidade." + }, + "ragePowder": { + "name": "Rage Powder", + "effect": "O usuário espalha uma nuvem de pó irritante para chamar a atenção para si mesmo. Oponentes miram apenas no usuário." + }, + "telekinesis": { + "name": "Telekinesis", + "effect": "O usuário faz o alvo flutuar usando o seu poder psíquico. O alvo fica propício a ser atingido por três turnos." + }, + "magicRoom": { + "name": "Magic Room", + "effect": "O usuário cria uma área bizarra onde os itens dos Pokémon perdem seus efeitos por cinco turnos." + }, + "smackDown": { + "name": "Smack Down", + "effect": "O usuário atira uma pedra ou algum projétil similar para atacar o oponente. Um Pokémon voador irá cair no chão quando for acertado." + }, + "stormThrow": { + "name": "Storm Throw", + "effect": "O usuário atinge o alvo com um golpe poderoso. Esse ataque sempre resulta em um golpe critico." + }, + "flameBurst": { + "name": "Flame Burst", + "effect": "O usuário ataca o alvo com uma chama explosiva. A explosão da chama também fere os Pokémon próximos ao alvo." + }, + "sludgeWave": { + "name": "Sludge Wave", + "effect": "O usuário atinge tudo à volta inundando a área com uma grande onda de sedimentos. Isso também pode envenenar os atingidos." + }, + "quiverDance": { + "name": "Quiver Dance", + "effect": "O usuário delicadamente executa uma linda dança mística. Isso fortalece os atributos de Ataque Especial, Defesa Especial e Velocidade do usuário." + }, + "heavySlam": { + "name": "Heavy Slam", + "effect": "O usuário golpeia o alvo com seu corpo pesado. Quanto mais pesado o usuário for comparado ao alvo, maior será o poder do movimento." + }, + "synchronoise": { + "name": "Synchronoise", + "effect": "Usando uma estranha onda de choque, o usuário inflige dano em qualquer Pokémon do mesmo tipo na área ao seu redor." + }, + "electroBall": { + "name": "Electro Ball", + "effect": "O usuário arremessa uma esfera elétrica no alvo. Quanto mais rápido for o usuário comparado ao alvo, maior será o poder do movimento." + }, + "soak": { + "name": "Soak", + "effect": "O usuário atira uma corrente de água no alvo e muda a tipagem do alvo para Água." + }, + "flameCharge": { + "name": "Flame Charge", + "effect": "Ocultando-se nas chamas, o usuário ataca. Então, concentrando mais poder, o usuário aumenta sua Velocidade." + }, + "coil": { + "name": "Coil", + "effect": "O usuário enrola seu corpo e se concentra. Isso aumenta seus atributos de Ataque, Defesa e Precisão." + }, + "lowSweep": { + "name": "Low Sweep", + "effect": "O usuário faz um ataque repentino nas pernas do alvo, diminuindo a Velocidade dele." + }, + "acidSpray": { + "name": "Acid Spray", + "effect": "O usuário cospe um fluido corrosivo no alvo. Isso duramente diminui a Defesa Especial do alvo." + }, + "foulPlay": { + "name": "Foul Play", + "effect": "O usuário vira o poder do alvo contra ele. Quanto maior for o atributo de Ataque do alvo, maior será o poder do movimento." + }, + "simpleBeam": { + "name": "Simple Beam", + "effect": "Essa misteriosa onda psíquica produzida pelo usuário muda a Habilidade do alvo para “Simples”." + }, + "entrainment": { + "name": "Entrainment", + "effect": "O usuário dança em um ritmo estranho que contagia o alvo que o imita, fazendo a Habilidade do alvo tornar-se a mesma que a do usuário." + }, + "afterYou": { + "name": "After You", + "effect": "O usuário auxilia o alvo e o faz usar seu movimento exatamente após o usuário." + }, + "round": { + "name": "Round", + "effect": "O usuário ataca o alvo com uma música. Outros podem entrar na Ronda e fazer o ataque dar um dano ainda maior." + }, + "echoedVoice": { + "name": "Echoed Voice", + "effect": "O usuário ataca o alvo com uma voz ecoante. Se esse movimento for usado um turno após o outro, ele infligirá dano maior." + }, + "chipAway": { + "name": "Chip Away", + "effect": "Procurando por uma brecha, o usuário ataca consistentemente. As mudanças de atributos do alvo não afetam o dano desse movimento." + }, + "clearSmog": { + "name": "Clear Smog", + "effect": "O usuário ataca arremessando um amontoado de lama especial. Todas as mudanças de atributos voltam ao normal." + }, + "storedPower": { + "name": "Stored Power", + "effect": "O usuário ataca o alvo com seu poder armazenado. Quanto mais os atributos do usuário estiverem fortalecidos, maior será o poder do movimento." + }, + "quickGuard": { + "name": "Quick Guard", + "effect": "O usuário protege a si mesmo e seus aliados de golpes de prioridade." + }, + "allySwitch": { + "name": "Ally Switch", + "effect": "O usuário teletransporta usando um estranho poder e troca de lugar com um de seus aliados." + }, + "scald": { + "name": "Scald", + "effect": "O usuário atira água fervente no seu alvo. Isso também pode deixar o alvo com queimadura." + }, + "shellSmash": { + "name": "Shell Smash", + "effect": "O usuário quebra a própria concha, diminuindo sua Defesa e Defesa Especial, mas bruscamente aumentando Ataque, Ataque Especial e Velocidade." + }, + "healPulse": { + "name": "Heal Pulse", + "effect": "O usuário emite um pulso curativo que restaura os PS do alvo pela metade de seus PS máximos." + }, + "hex": { + "name": "Hex", + "effect": "Esse ataque cruel inflige dano massivo a um alvo afetado por condições negativas." + }, + "skyDrop": { + "name": "Sky Drop", + "effect": "O usuário leva o alvo para o céu, então o solta durante o próximo turno. O alvo não pode atacar enquanto estiver no céu." + }, + "shiftGear": { + "name": "Shift Gear", + "effect": "O usuário roda suas engrenagens, aumentando seu Ataque e bruscamente aumentando sua Velocidade." + }, + "circleThrow": { + "name": "Circle Throw", + "effect": "O alvo é arremessado, e um Pokémon diferente é trazido para a batalha. Na natureza, isso termina uma batalha contra um único Pokémon." + }, + "incinerate": { + "name": "Incinerate", + "effect": "O usuário ataca o Pokémon oponente com fogo. Se um Pokémon estiver segurando um certo item, como uma Fruta, o item será queimado e inutilizado." + }, + "quash": { + "name": "Quash", + "effect": "O usuário reprime o alvo e o faz se mover por último." + }, + "acrobatics": { + "name": "Acrobatics", + "effect": "O usuário atinge o alvo rapidamente. Se o usuário não estiver segurando um item, esse ataque causa um dano massivo." + }, + "reflectType": { + "name": "Reflect Type", + "effect": "O usuário reflete o tipo do alvo, fazendo-o ter o mesmo tipo do alvo." + }, + "retaliate": { + "name": "Retaliate", + "effect": "O usuário se vinga por um aliado desmaiado. Se um aliado desmaiou no turno anterior, esse movimento ficará mais poderoso." + }, + "finalGambit": { + "name": "Final Gambit", + "effect": "O usuário arrisca tudo para atacar seu alvo. O usuário desmaia porém inflige dano igual aos seus PS perdidos." + }, + "bestow": { + "name": "Bestow", + "effect": "O usuário passa seu item ao alvo se o alvo não estiver segurando um item." + }, + "inferno": { + "name": "Inferno", + "effect": "O usuário ataca engolindo o alvo em intensas chamas. intense fire. Isso deixa o alvo com uma queimadura." + }, + "waterPledge": { + "name": "Water Pledge", + "effect": "Um pilar de água atinge o alvo. Quando combinado com seu equivalente do tipo fogo, seu dano aumenta e um arco-íris é formado." + }, + "firePledge": { + "name": "Fire Pledge", + "effect": "Um pilar de fogo atinge o alvo. Quando combinado com seu equivalente do tipo Planta, seu dano aumenta e um vasto mar de fogo aparece." + }, + "grassPledge": { + "name": "Grass Pledge", + "effect": "Um pilar de grama acerta o alvo. Quando combinado com seu equivalente do tipo Água, seu dano aumenta e um vasto pântano surge." + }, + "voltSwitch": { + "name": "Volt Switch", + "effect": "Depois de fazer o seu ataque, o usuário corre de volta para trocar de lugar com um Pokémon da própria equipe." + }, + "struggleBug": { + "name": "Struggle Bug", + "effect": "Enquanto resiste, o usuário ataca o Pokémon oponente. Isso diminui o Ataque Especial daqueles atingidos." + }, + "bulldoze": { + "name": "Bulldoze", + "effect": "O usuário atinge a todos ao seu redor pisoteando o chão. Isso diminui a Velocidade daqueles atingidos." + }, + "frostBreath": { + "name": "Frost Breath", + "effect": "O usuário sopra sua respiração gelada no alvo. Esse ataque sempre resulta em um acerto crítico." + }, + "dragonTail": { + "name": "Dragon Tail", + "effect": "O alvo é arremessado e um Pokémon diferente é trazido para o combate. Em batalhas selvagens, isso encerra a batalha contra um único Pokémon." + }, + "workUp": { + "name": "Work Up", + "effect": "O usuário se agita e seus atributos de Ataque e Ataque Especial são fortalecidos." + }, + "electroweb": { + "name": "Electroweb", + "effect": "O usuário ataca e captura os Pokémon adversários usando uma rede elétrica. Isso diminui a Velocidade deles." + }, + "wildCharge": { + "name": "Wild Charge", + "effect": "O usuário se cobre de eletricidade e colide com o seu alvo. Isso também fere um pouco o usuário." + }, + "drillRun": { + "name": "Drill Run", + "effect": "O usuário colide com seu alvo enquanto rotaciona seu corpo como uma broca. Golpes críticos acertam mais facilmente." + }, + "dualChop": { + "name": "Dual Chop", + "effect": "O usuário ataca o seu alvo o acertando com golpes brutais. O alvo é atingido duas vezes seguidas." + }, + "heartStamp": { + "name": "Heart Stamp", + "effect": "O usuário libera sua fúria em um golpe violento após enganar o alvo com sua atuação fofa. Isso também pode fazer o alvo hesitar." + }, + "hornLeech": { + "name": "Horn Leech", + "effect": "O usuário drena a energia do alvo com seus chifres. Os PS do usuário são restaurados pela metade do dano recebido pelo alvo." + }, + "sacredSword": { + "name": "Sacred Sword", + "effect": "O usuário ataca cortando com um longo chifre. As mudanças de atributos do alvo não afetam o dano desse ataque." + }, + "razorShell": { + "name": "Razor Shell", + "effect": "O usuário corta seu alvo com conchas afiadas. Isso pode também diminuir o atributo de Defesa do alvo." + }, + "heatCrash": { + "name": "Heat Crash", + "effect": "O usuário golpeia seu alvo com seu corpo envolto em chamas. Quanto mais pesado o usuário for comparado ao alvo, maior será o poder do movimento." + }, + "leafTornado": { + "name": "Leaf Tornado", + "effect": "O usuário ataca seu alvo cercando-o com folhas afiadas. Isso também pode diminuir a precisão do alvo." + }, + "steamroller": { + "name": "Steamroller", + "effect": "O usuário esmaga seu alvo rolando sobre ele com seu corpo enrolado como uma bola. Isso também pode fazer o alvo hesitar." + }, + "cottonGuard": { + "name": "Cotton Guard", + "effect": "O usuário protege a si mesmo envolvendo seu corpo em algodão macio, o que drasticamente aumenta o atributo de Defesa do usuário." + }, + "nightDaze": { + "name": "Night Daze", + "effect": "O usuário libera uma onda de choque escura como a noite no alvo. Isso também pode reduzir a Precisão do alvo." + }, + "psystrike": { + "name": "Psystrike", + "effect": "O usuário materializa uma estranha onda psíquica para atacar o alvo. Esse ataque inflige dano físico." + }, + "tailSlap": { + "name": "Tail Slap", + "effect": "O usuário ataca golpeando o alvo com sua cauda resistente. Isso acerta o alvo duas a cinco vezes seguidas." + }, + "hurricane": { + "name": "Hurricane", + "effect": "O usuário ataca prendendo seu oponente num violento turbilhão que voa alto no céu. Isso também pode confundir o alvo." + }, + "headCharge": { + "name": "Head Charge", + "effect": "O usuário ataca colidindo sua cabeça no alvo, usando sua pelagem protetora. Isso também fere um pouco o usuário." + }, + "gearGrind": { + "name": "Gear Grind", + "effect": "O usuário ataca arremessando engrenagens de aço no seu alvo duas vezes em sequência." + }, + "searingShot": { + "name": "Searing Shot", + "effect": "O usuário queima tudo ao seu redor com um inferno de chamas escarlate. Isso também pode causar uma queimadura em alvos atingidos." + }, + "technoBlast": { + "name": "Techno Blast", + "effect": "O usuário atira um raio de luz em seu alvo. O tipo do movimento muda dependendo do Disco que o usuário estiver segurando." + }, + "relicSong": { + "name": "Relic Song", + "effect": "O usuário canta uma antiga canção e ataca encantando o coração dos Pokémon adversários. Isso também pode induzir sono." + }, + "secretSword": { + "name": "Secret Sword", + "effect": "O usuário ataca cortando com seu longo chifre. O estranho poder contido no chifre inflige dano físico no alvo." + }, + "glaciate": { + "name": "Glaciate", + "effect": "O usuário ataca soprando ar congelante nos Pokémon oponentes. Isso diminui a Velocidade deles." + }, + "boltStrike": { + "name": "Bolt Strike", + "effect": "O usuário cobre a si mesmo com uma grande quantidade de eletricidade e avança no alvo. Isso também pode paralisar o alvo." + }, + "blueFlare": { + "name": "Blue Flare", + "effect": "O usuário ataca engolindo o alvo numa intensa, porém linda, chama azul. Isso também pode deixar o alvo com uma queimadura." + }, + "fieryDance": { + "name": "Fiery Dance", + "effect": "Coberto por chamas, o usuário dança e bate suas asas. Isso também pode aumentar o Ataque Especial do usuário." + }, + "freezeShock": { + "name": "Freeze Shock", + "effect": "No segundo turno, o usuário acerta o alvo com gelo eletricamente carregado. Isso também pode deixar o alvo paralisado." + }, + "iceBurn": { + "name": "Ice Burn", + "effect": "No segundo turno, um impiedoso vento gélido cerca o alvo. Isso pode deixar o alvo com uma queimadura." + }, + "snarl": { + "name": "Snarl", + "effect": "O usuário grita como se ele estivesse reclamando de algo, diminuindo o Ataque Especial do Pokémon oponente." + }, + "icicleCrash": { + "name": "Icicle Crash", + "effect": "O usuário ataca arremessando estacas de gelo no alvo violentamente. Isso também pode fazer o alvo hesitar." + }, + "vCreate": { + "name": "V-create", + "effect": "Com uma ardente chama em sua testa, o usuário joga seu corpo em direção ao alvo. Isso diminui a Defesa, Defesa Especial, e Velocidade do usuário." + }, + "fusionFlare": { + "name": "Fusion Flare", + "effect": "O usuário invoca uma chama gigante. Esse movimento é mais poderoso quando influenciado por um enorme raio." + }, + "fusionBolt": { + "name": "Fusion Bolt", + "effect": "O usuário conduz um raio gigantesco. Esse movimento é mais poderoso quando influenciado por uma enorme chama." + }, + "flyingPress": { + "name": "Flying Press", + "effect": "O usuário mergulha do céu em direção ao alvo. Esse movimento é simultaneamente do tipo Lutador e Voador." + }, + "matBlock": { + "name": "Mat Block", + "effect": "Usando uma esteira elevada como escudo, o usuário protege a si mesmo e a seus aliados de golpes que causam dano. Isso não previne condições negativas." + }, + "belch": { + "name": "Belch", + "effect": "O usuário expurga um arroto danificante no alvo. O usuário deve comer uma Fruta para usar esse movimento." + }, + "rototiller": { + "name": "Rototiller", + "effect": "O usuário ara o solo, facilitando o crescimento de plantas. Isso aumenta os atributos de Ataque e Ataque Especial dos Pokémon do tipo Planta." + }, + "stickyWeb": { + "name": "Sticky Web", + "effect": "O usuário tece uma teia viscosa ao redor da equipe adversária, o que diminui a Velocidade dos adversários após entrarem em campo." + }, + "fellStinger": { + "name": "Fell Stinger", + "effect": "Quando o usuário nocauteia um alvo com este movimento, o atributo de Ataque do usuário aumenta bruscamente." + }, + "phantomForce": { + "name": "Phantom Force", + "effect": "O usuário desaparece para algum lugar e então ataca o alvo no próximo turno. Esse movimento acerta mesmo se o alvo estiver se protegendo." + }, + "trickOrTreat": { + "name": "Trick-or-Treat", + "effect": "O usuário enche o alvo com o espírito do Halloween para celebrarem juntos. Isso adiciona o tipo Fantasma à tipagem do alvo." + }, + "nobleRoar": { + "name": "Noble Roar", + "effect": "Soltando um nobre rugido, o usuário intimida o alvo e diminui seus atributos de Ataque e Ataque Especial." + }, + "ionDeluge": { + "name": "Ion Deluge", + "effect": "O usuário dispersa partículas eletricamente carregadas, o que muda movimentos do tipo Normal para o tipo Elétrico." + }, + "parabolicCharge": { + "name": "Parabolic Charge", + "effect": "O usuário ataca tudo ao seu redor. Os PS do usuário são restaurados pela metade do dano recebido por aqueles que foram atingidos." + }, + "forestsCurse": { + "name": "Forest's Curse", + "effect": "O usuário conjura uma maldição da floresta no alvo. Isso adiciona o tipo Planta à tipagem do alvo." + }, + "petalBlizzard": { + "name": "Petal Blizzard", + "effect": "O usuário rotaciona uma violenta nevasca composta por pétalas e ataca tudo ao seu redor." + }, + "freezeDry": { + "name": "Freeze-Dry", + "effect": "O usuário rapidamente diminui a temperatura do alvo. Isso pode deixar o alvo congelado. Esse movimento é supereficaz contra tipos Água." + }, + "disarmingVoice": { + "name": "Disarming Voice", + "effect": "Liberando um grito encantador, o usuário inflige dano emocional nos Pokémon oponentes. Esse ataque nunca erra." + }, + "partingShot": { + "name": "Parting Shot", + "effect": "O usuário diminui os atributos de Ataque e Ataque Esp. do alvo com uma ameaça antes de ser trocado por outro Pokémon na equipe." + }, + "topsyTurvy": { + "name": "Topsy-Turvy", + "effect": "Todas as mudanças de atributos afetando o alvo viram de cabeça para baixo e se tornam o oposto do que eram." + }, + "drainingKiss": { + "name": "Draining Kiss", + "effect": "O usuário rouba a energia do alvo com um beijo. Os PS do usuário são restaurados além da metade do dano recebido pelo alvo." + }, + "craftyShield": { + "name": "Crafty Shield", + "effect": "O usuário protege a si mesmo e seus aliados de condições negativas com um misterioso poder. Isso não previne golpes que inflijam dano." + }, + "flowerShield": { + "name": "Flower Shield", + "effect": "Usando um misterioso poder, o usuário aumenta o atributo de Defesa de todos os Pokémon tipo Planta em batalha." + }, + "grassyTerrain": { + "name": "Grassy Terrain", + "effect": "O usuário transforma o campo de batalha em grama por cinco turnos. Isso restaura os PS dos Pokémon no solo um pouco a cada turno e fortalece golpes do tipo Grama." + }, + "mistyTerrain": { + "name": "Misty Terrain", + "effect": "Isto protege os Pokémon no solo de condições de estado e corta pela metade o dano dos movimentos do tipo Dragão por cinco turnos." + }, + "electrify": { + "name": "Electrify", + "effect": "Caso o alvo tenha sido energizado antes de usar um movimento durante aquele turno, o movimento do alvo se tornará do tipo Elétrico." + }, + "playRough": { + "name": "Play Rough", + "effect": "O usuário joga duro com o alvo e o ataca. Isso também pode diminuir o atributo de Ataque do alvo." + }, + "fairyWind": { + "name": "Fairy Wind", + "effect": "O usuário rotaciona um vento de fada e ataca o alvo com ele." + }, + "moonblast": { + "name": "Moonblast", + "effect": "Canalizando o poder da lua, o usuário ataca o alvo. Isso também pode diminuir o atributo de Ataque Especial do alvo." + }, + "boomburst": { + "name": "Boomburst", + "effect": "O usuário ataca tudo ao seu redor com o poder destrutivo de um terrível som explosivo." + }, + "fairyLock": { + "name": "Fairy Lock", + "effect": "Bloqueando o campo de batalha, o usuário previne que todos os Pokémon fujam durante o próximo turno." + }, + "kingsShield": { + "name": "King's Shield", + "effect": "O usuário assume uma posição defensiva enquanto protege a si mesmo de dano. Isto duramente diminui o Ataque de qualquer um que faça contato direto." + }, + "playNice": { + "name": "Play Nice", + "effect": "O usuário e o alvo se tornam amigos, fazendo com que o alvo perca sua vontade de lutar. Isso diminui o atributo de Ataque do alvo." + }, + "confide": { + "name": "Confide", + "effect": "O usuário conta um segredo para o alvo e o alvo perde sua habilidade de se concentrar. Isso diminui o Ataque Especial do alvo." + }, + "diamondStorm": { + "name": "Diamond Storm", + "effect": "O usuário provoca uma tempestade de diamantes para ferir os Pokémon oponentes. Isso também pode aumentar o atributo de Defesa do usuário." + }, + "steamEruption": { + "name": "Steam Eruption", + "effect": "O usuário imerge o alvo em vapor superaquecido. Isso também pode deixar o alvo com uma queimadura." + }, + "hyperspaceHole": { + "name": "Hyperspace Hole", + "effect": "Usando uma fenda espacial, o usuário aparece ao lado do alvo e ataca. Isso também acerta um alvo usando movimentos como Proteger ou Detectar." + }, + "waterShuriken": { + "name": "Water Shuriken", + "effect": "O usuário acerta o alvo jogando estrelas ninja de duas a cinco vezes seguidas. Esse movimento tem prioridade." + }, + "mysticalFire": { + "name": "Mystical Fire", + "effect": "O usuário ataca soprando um fogo ardente especial. Isso também diminui o Ataque Especial do alvo." + }, + "spikyShield": { + "name": "Spiky Shield", + "effect": "Além de proteger o alvo de ataques, este movimento também fere qualquer atacante que fizer contato direto." + }, + "aromaticMist": { + "name": "Aromatic Mist", + "effect": "Usando um misterioso aroma, o usuário aumenta o atributo de Defesa Especial de um Pokémon aliado." + }, + "eerieImpulse": { + "name": "Eerie Impulse", + "effect": "O corpo do usuário gera um impulso misterioso. O alvo exposto ao impulso tem seu Ataque Especial duramente diminuído." + }, + "venomDrench": { + "name": "Venom Drench", + "effect": "Pokémon oponentes são encharcados por um estranho líquido venenoso. Isso diminui o Ataque, Ataque Esp. e Velocidade de um alvo envenenado." + }, + "powder": { + "name": "Powder", + "effect": "O usuário cobre o alvo em pólvora. Se o alvo usar um movimento do tipo Fogo, a pólvora entra em combustão e causa dano ao alvo." + }, + "geomancy": { + "name": "Geomancy", + "effect": "O usuário absorve energia e bruscamente aumenta seus atributos de Ataque Especial, Defesa Especial e Velocidade no próximo turno." + }, + "magneticFlux": { + "name": "Magnetic Flux", + "effect": "O usuário manipula campos magnéticos, o que aumenta os atributos de Defesa e Defesa Especial de Pokémon aliados com as Habilidades “Mais” ou “Menos”." + }, + "happyHour": { + "name": "Happy Hour", + "effect": "Usar Happy Hour dobra a quantidade de prêmio em dinheiro recebido após a batalha." + }, + "electricTerrain": { + "name": "Electric Terrain", + "effect": "O usuário eletrifica o campo de batalha por cinco turnos, fortalecendo movimentos do tipo Elétrico. Pokémon no solo não podem mais cair no sono." + }, + "dazzlingGleam": { + "name": "Dazzling Gleam", + "effect": "O usuário causa dano ao Pokémon oponente emitindo um clarão poderoso." + }, + "celebrate": { + "name": "Celebrate", + "effect": "O Pokémon te dá parabéns pelo seu dia especial!" + }, + "holdHands": { + "name": "Hold Hands", + "effect": "O usuário e um aliado dão as mãos. Isso os deixam muito contentes." + }, + "babyDollEyes": { + "name": "Baby-Doll Eyes", + "effect": "O usuário encara o alvo com seus olhos adoráveis, o que diminui seu atributo de Ataque. Esse movimento tem prioridade." + }, + "nuzzle": { + "name": "Nuzzle", + "effect": "O usuário ataca esfregando suas bochechas eletrizadas contra o alvo. Isso também deixa o alvo paralisado." + }, + "holdBack": { + "name": "Hold Back", + "effect": "O usuário pega leve quando ataca e o alvo é deixado com pelo menos 1 PS." + }, + "infestation": { + "name": "Infestation", + "effect": "O alvo é infestado e atacado de quatro a cinco turnos. O alvo não pode fugir durante esse período." + }, + "powerUpPunch": { + "name": "Power-Up Punch", + "effect": "Golpear oponentes repetidamente faz os punhos do usuário enrijecerem. Acertar um alvo aumenta o Ataque." + }, + "oblivionWing": { + "name": "Oblivion Wing", + "effect": "O usuário absorve os PS de seu alvo. Os PS do usuário são restaurados além da metade do dano recebido pelo usuário." + }, + "thousandArrows": { + "name": "Thousand Arrows", + "effect": "Este movimento também acerta Pokémon adversários que estão no ar. Esses Pokémon são derrubados e caem no chão." + }, + "thousandWaves": { + "name": "Thousand Waves", + "effect": "O usuário ataca com tremores que se dispersam pelo chão. Alvos atingidos não podem fugir da batalha." + }, + "landsWrath": { + "name": "Land's Wrath", + "effect": "O usuário reúne a energia da terra e foca esse poder nos Pokémon oponentes para causar dano." + }, + "lightOfRuin": { + "name": "Light of Ruin", + "effect": "Usufruindo do poder da flor eterna, o usuário atira um poderoso raio de luz. Isso também fere muito o usuário." + }, + "originPulse": { + "name": "Origin Pulse", + "effect": "O usuário ataca o Pokémon adversário com inúmeros raios de luz resplandescente que brilham em uma cor de profundo azul." + }, + "precipiceBlades": { + "name": "Precipice Blades", + "effect": "O usuário ataca o Pokémon adversário manifestando o poder terrestre em espadas de pedra assustadoras." + }, + "dragonAscent": { + "name": "Dragon Ascent", + "effect": "Depois de alcançar grandes alturas, o usuário ataca o alvo mergulhando do céu em alta velocidade, porém isso diminui sua própria Defesa e Defesa Especial." + }, + "hyperspaceFury": { + "name": "Hyperspace Fury", + "effect": "Usando seus diversos braços, o usuário libera golpes furiosos que ignoram efeitos de movimentos como Proteção e Detectar. Diminui a Defesa do usuário." + }, + "breakneckBlitzPhysical": { + "name": "Breakneck Blitz", + "effect": "Utilizando o Poder Z, o usuário intensifica seu ímpeto e atinge o alvo em alta velocidade. Seu poder varia dependendo do movimento original." + }, + "breakneckBlitzSpecial": { + "name": "Breakneck Blitz", + "effect": "Dummy Data" + }, + "allOutPummelingPhysical": { + "name": "All-Out Pummeling", + "effect": "Utilizando o Poder Z, o usuário cria e arremessa uma esfera de energia no alvo com força total. Seu poder varia dependendo do movimento original." + }, + "allOutPummelingSpecial": { + "name": "All-Out Pummeling", + "effect": "Dummy Data" + }, + "supersonicSkystrikePhysical": { + "name": "Supersonic Skystrike", + "effect": "Utilizando o Poder Z, o usuário ascende e mergulha em direção ao alvo em alta velocidade. Seu poder varia dependendo do movimento original." + }, + "supersonicSkystrikeSpecial": { + "name": "Supersonic Skystrike", + "effect": "Dummy Data" + }, + "acidDownpourPhysical": { + "name": "Acid Downpour", + "effect": "Utilizando o Poder Z, o usuário cria um pântano venenoso e afoga o alvo com toda sua força. Seu poder varia dependendo do movimento original." + }, + "acidDownpourSpecial": { + "name": "Acid Downpour", + "effect": "Dummy Data" + }, + "tectonicRagePhysical": { + "name": "Tectonic Rage", + "effect": "Utilizando o Poder Z, o usuário abre uma cratera e mergulha nela com o alvo com força total. Seu poder varia dependendo do movimento original." + }, + "tectonicRageSpecial": { + "name": "Tectonic Rage", + "effect": "Dummy Data" + }, + "continentalCrushPhysical": { + "name": "Continental Crush", + "effect": "Utilizando o Poder Z, o usuário cria um meteoro que cai do céu em direção ao alvo com força total. Seu poder varia dependendo do movimento original." + }, + "continentalCrushSpecial": { + "name": "Continental Crush", + "effect": "Dummy Data" + }, + "savageSpinOutPhysical": { + "name": "Savage Spin-Out", + "effect": "Utilizando o Poder Z, o usuário restringe o alvo em um casulo de seda e ataca ele com força total. Seu poder varia dependendo do movimento original." + }, + "savageSpinOutSpecial": { + "name": "Savage Spin-Out", + "effect": "Dummy Data" + }, + "neverEndingNightmarePhysical": { + "name": "Never-Ending Nightmare", + "effect": "Utilizando o Poder Z, o usuário invoca espectros rancorosos que sufocam o alvo. Seu poder varia dependendo do movimento original." + }, + "neverEndingNightmareSpecial": { + "name": "Never-Ending Nightmare", + "effect": "Dummy Data" + }, + "corkscrewCrashPhysical": { + "name": "Corkscrew Crash", + "effect": "Utilizando o Poder Z, o usuário gira rapidamente e ataca o alvo com força total. Seu poder varia dependendo do movimento original." + }, + "corkscrewCrashSpecial": { + "name": "Corkscrew Crash", + "effect": "Dummy Data" + }, + "infernoOverdrivePhysical": { + "name": "Inferno Overdrive", + "effect": "Utilizando o Poder Z, o usuário cospe uma enorme labareda ardente contra o alvo com força total. Seu poder varia dependendo do movimento original." + }, + "infernoOverdriveSpecial": { + "name": "Inferno Overdrive", + "effect": "Dummy Data" + }, + "hydroVortexPhysical": { + "name": "Hydro Vortex", + "effect": "Utilizando o Poder Z, o usuário cria um intenso turbilhão que engole o alvo com força total. Seu poder varia dependendo do movimento original." + }, + "hydroVortexSpecial": { + "name": "Hydro Vortex", + "effect": "Dummy Data" + }, + "bloomDoomPhysical": { + "name": "Bloom Doom", + "effect": "Utilizando o Poder Z, o usuário absorve a energia vital do ambiente e ataca o alvo com força total. Seu poder varia dependendo do movimento original." + }, + "bloomDoomSpecial": { + "name": "Bloom Doom", + "effect": "Dummy Data" + }, + "gigavoltHavocPhysical": { + "name": "Gigavolt Havoc", + "effect": "Utilizando o Poder Z, o usuário concentra uma corrente elétrica carregada e atinge o alvo. Seu poder varia dependendo do movimento original." + }, + "gigavoltHavocSpecial": { + "name": "Gigavolt Havoc", + "effect": "Dummy Data" + }, + "shatteredPsychePhysical": { + "name": "Shattered Psyche", + "effect": "Utilizando o Poder Z, o usuário manipula a cabeça do alvo e destrói-o mentalmente. Seu poder varia dependendo do movimento original." + }, + "shatteredPsycheSpecial": { + "name": "Shattered Psyche", + "effect": "Dummy Data" + }, + "subzeroSlammerPhysical": { + "name": "Subzero Slammer", + "effect": "Utilizando o Poder Z, o usuário lança um raio de gelo que reduz a temperatura do alvo a zero. Seu poder varia dependendo do movimento original." + }, + "subzeroSlammerSpecial": { + "name": "Subzero Slammer", + "effect": "Dummy Data" + }, + "devastatingDrakePhysical": { + "name": "Devastating Drake", + "effect": "Utilizando o Poder Z, o usuário materializa sua aura, que ataca o alvo com força total. Seu poder varia dependendo do movimento original." + }, + "devastatingDrakeSpecial": { + "name": "Devastating Drake", + "effect": "Dummy Data" + }, + "blackHoleEclipsePhysical": { + "name": "Black Hole Eclipse", + "effect": "Utilizando o Poder Z, o usuário cria um buraco negro que engole o alvo. Seu poder varia dependendo do movimento original." + }, + "blackHoleEclipseSpecial": { + "name": "Black Hole Eclipse", + "effect": "Dummy Data" + }, + "twinkleTacklePhysical": { + "name": "Twinkle Tackle", + "effect": "Utilizando o Poder Z, o usuário cria uma dimensão graciosa que deixa o alvo a sua mercê. Seu poder varia dependendo do movimento original." + }, + "twinkleTackleSpecial": { + "name": "Twinkle Tackle", + "effect": "Dummy Data" + }, + "catastropika": { + "name": "Catastropika", + "effect": "Utilizando seu Poder Z, Pikachu acumula o máximo de eletricidade que seu corpo suporta e pula no alvo com força total." + }, + "shoreUp": { + "name": "Shore Up", + "effect": "Recupera metade dos PS do usuário. Durante uma Tempestade de Areia, recupera um pouco mais." + }, + "firstImpression": { + "name": "First Impression", + "effect": "Embora esse movimento seja poderoso, ele funciona apenas na primeira rodada em que o usuário está em batalha." + }, + "banefulBunker": { + "name": "Baneful Bunker", + "effect": "Além de proteger o usuário de ataques, este movimento também envenena qualquer um que fizer contato direto." + }, + "spiritShackle": { + "name": "Spirit Shackle", + "effect": "O usuário ataca enquanto fisga simultaneamente a sombra do alvo e impede ele de escapar." + }, + "darkestLariat": { + "name": "Darkest Lariat", + "effect": "O usuário balança os dois braços e acerta o alvo. As mudanças de atributos do alvo não afetam o dano deste ataque." + }, + "sparklingAria": { + "name": "Sparkling Aria", + "effect": "Libera borbulhas ao cantar. Se um Pokémon estiver queimado, ele será curado pelo toque das bolhas." + }, + "iceHammer": { + "name": "Ice Hammer", + "effect": "O usuário gira seu corpo e bate com seus fortes e pesados punhos. Isso diminui a Velocidade do usuário." + }, + "floralHealing": { + "name": "Floral Healing", + "effect": "O usuário restaura os PS do alvo até metade a dos seus PS máximo. Ele restaura mais HP quando o terreno é de grama." + }, + "highHorsepower": { + "name": "High Horsepower", + "effect": "O usuário ataca ferozmente o alvo usando todo o seu corpo." + }, + "strengthSap": { + "name": "Strength Sap", + "effect": "O usuário restaura seus PS em uma quantidade igual ao atributo de Ataque do alvo. Também diminui o atributo de Ataque do alvo." + }, + "solarBlade": { + "name": "Solar Blade", + "effect": "O usuário absorve luz e concentra-a em forma de lâmina com a energia absorvida no primeiro turno e atacando o alvo no próximo turno." + }, + "leafage": { + "name": "Leafage", + "effect": "O usuário ataca lançando folhas no alvo." + }, + "spotlight": { + "name": "Spotlight", + "effect": "O usuário direciona o foco no alvo para que apenas ele seja atacado durante o turno." + }, + "toxicThread": { + "name": "Toxic Thread", + "effect": "O usuário dispara fios venenosos para envenenar o alvo e diminuir sua Velocidade." + }, + "laserFocus": { + "name": "Laser Focus", + "effect": "O usuário se concentra intensamente. O ataque no próximo turno sempre resultará em um acerto crítico." + }, + "gearUp": { + "name": "Gear Up", + "effect": "O usuário engata suas engrenagens para aumentar os atributos de Ataque e Ataque Esp. de Pokémon aliados com as Habilidades Mais ou Menos." + }, + "throatChop": { + "name": "Throat Chop", + "effect": "O usuário acerta a garganta do alvo, e a dor resultante impede que o alvo use movimentos que emitam som por dois turnos." + }, + "pollenPuff": { + "name": "Pollen Puff", + "effect": "O usuário ataca o inimigo com uma bola de pólen explosiva. Se o alvo for um aliado, ele recebe uma bola de pólen que restaura seus PS em vez disso." + }, + "anchorShot": { + "name": "Anchor Shot", + "effect": "O usuário revolve o alvo com a corrente de sua âncora enquanto ataca. O alvo se torna incapaz de fugir." + }, + "psychicTerrain": { + "name": "Psychic Terrain", + "effect": "Protege o Pokémon no terreno de movimentos de prioridade e aumenta o poder dos movimentos do tipo Psíquico por cinco turnos." + }, + "lunge": { + "name": "Lunge", + "effect": "O usuário faz uma estocada no alvo, atacando com força total. Isso também diminui o Ataque do alvo." + }, + "fireLash": { + "name": "Fire Lash", + "effect": "O usuário atinge o alvo com um chicote em chamas. Também diminui a Defesa do alvo." + }, + "powerTrip": { + "name": "Power Trip", + "effect": "O usuário ostenta sua força e ataca o alvo. Quanto mais os atributos do usuário forem aumentados, maior será o poder do movimento." + }, + "burnUp": { + "name": "Burn Up", + "effect": "Para infligir um dano massivo, o usuário se exaure. Após usar esse movimento, o usuário não será mais do tipo Fogo." + }, + "speedSwap": { + "name": "Speed Swap", + "effect": "O usuário troca os atributos de Velocidade com o alvo." + }, + "smartStrike": { + "name": "Smart Strike", + "effect": "O usuário perfura o alvo com um chifre afiado. Esse ataque nunca erra." + }, + "purify": { + "name": "Purify", + "effect": "O usuário cura a condição de estado do alvo. Se o movimento for bem-sucedido, também recupera os PS do usuário." + }, + "revelationDance": { + "name": "Revelation Dance", + "effect": "O usuário ataca o alvo dançando intensamente. O tipo do usuário determina o tipo deste movimento." + }, + "coreEnforcer": { + "name": "Core Enforcer", + "effect": "Se os Pokémon nos quais o usuário causou dano já tiverem usado seus movimentos, esse movimento elimina o efeito da Habilidade do alvo." + }, + "tropKick": { + "name": "Trop Kick", + "effect": "O usuário desfere um chute intenso de origens tropicais no alvo. Também diminui o Ataque do alvo." + }, + "instruct": { + "name": "Instruct", + "effect": "O usuário instrui o alvo a usar novamente o seu último movimento usado." + }, + "beakBlast": { + "name": "Beak Blast", + "effect": "O usuário aquece o bico e depois ataca o alvo. Fazer contato direto com o Pokémon enquanto ele aquece o bico resultará em queimadura." + }, + "clangingScales": { + "name": "Clanging Scales", + "effect": "O usuário esfrega as escamas de todo o seu corpo e faz um estrondo para machucar o Pokémon oponente. A Defesa do usuário diminui após o ataque." + }, + "dragonHammer": { + "name": "Dragon Hammer", + "effect": "O usuário usa seu corpo como um martelo para atacar o alvo e causar dano." + }, + "brutalSwing": { + "name": "Brutal Swing", + "effect": "O usuário balança o corpo violentamente para infligir dano a tudo em seu redor." + }, + "auroraVeil": { + "name": "Aurora Veil", + "effect": "Esse movimento reduz o dano de movimentos físicos e especiais por cinco turnos. Só pode ser usado durante uma tempestade de granizo." + }, + "sinisterArrowRaid": { + "name": "Sinister Arrow Raid", + "effect": "Utilizando o Poder Z, Decidueye cria incontáveis flechas e dispara-as contra o alvo com força total." + }, + "maliciousMoonsault": { + "name": "Malicious Moonsault", + "effect": "Utilizando o Poder Z, Incineroar fortalece seu corpo e pula no alvo com força total." + }, + "oceanicOperetta": { + "name": "Oceanic Operetta", + "effect": "Utilizando o Poder Z, Primarina convoca uma quantidade massiva de água e lança contra o alvo com força total." + }, + "guardianOfAlola": { + "name": "Guardian of Alola", + "effect": "Utilizando o Poder Z, o Espírito Nativo canaliza a energia de Alola e ataca o alvo com força total. Reduz muito os PS do alvo." + }, + "soulStealing7StarStrike": { + "name": "Soul-Stealing 7-Star Strike", + "effect": "Quando um Marshadow obtém o Poder Z, ele ataca o alvo consecutivamente com socos e chutes usando força total." + }, + "stokedSparksurfer": { + "name": "Stoked Sparksurfer", + "effect": "Quando um Raichu de Alola obtém o Poder Z, ele lança um ataque contra o alvo com força total. Este movimento deixa o alvo paralisado." + }, + "pulverizingPancake": { + "name": "Pulverizing Pancake", + "effect": "O Poder Z desperta as capacidades máximas de seu Snorlax. O Pokémon movimenta seu enorme corpo velozmente e ataca o alvo com força total." + }, + "extremeEvoboost": { + "name": "Extreme Evoboost", + "effect": "Quando um Eevee obtém o Poder Z, ele absorve energia dos seus amigos evoluídos e aumenta os seus atributos bruscamente." + }, + "genesisSupernova": { + "name": "Genesis Supernova", + "effect": "Quando um Mew obtém o Poder Z, ele ataca o alvo com força total. O terreno será carregado com energia psíquica." + }, + "shellTrap": { + "name": "Shell Trap", + "effect": "O usuário arma uma cilada explosiva. Se o usuário for atingido fisicamente, a cilada irá explodir e causar de dano ao Pokémon oponente." + }, + "fleurCannon": { + "name": "Fleur Cannon", + "effect": "O usuário dispara um raio poderoso. O efeito colateral do ataque prejudica duramente o Ataque Especial do usuário." + }, + "psychicFangs": { + "name": "Psychic Fangs", + "effect": "O usuário morde o alvo com suas capacidades psíquicas. Pode destruir Tela de Luz e Refletir." + }, + "stompingTantrum": { + "name": "Stomping Tantrum", + "effect": "Guiado pela frustração, o usuário ataca o alvo. Se o movimento anterior falhou, o poder do movimento é dobrado." + }, + "shadowBone": { + "name": "Shadow Bone", + "effect": "O usuário ataca o alvo com um osso que contém um espírito. Pode diminuir a Defesa do alvo." + }, + "accelerock": { + "name": "Accelerock", + "effect": "O usuário colide contra o alvo em alta velocidade. Esse movimento sempre ataca primeiro." + }, + "liquidation": { + "name": "Liquidation", + "effect": "O usuário dispara no alvo um jato d'água poderoso. Diminui a Defesa do alvo." + }, + "prismaticLaser": { + "name": "Prismatic Laser", + "effect": "O usuário dispara lasers poderosos usando o poder de um prisma. O usuário não pode se mover no próximo turno." + }, + "spectralThief": { + "name": "Spectral Thief", + "effect": "O usuário se esconde na sombra do alvo, rouba seus aumentos de atributos e então, ataca-o." + }, + "sunsteelStrike": { + "name": "Sunsteel Strike", + "effect": "O usuário atinge o alvo com a força de um meteoro. Esse movimento pode ser usado no alvo independentemente de sua Habilidade." + }, + "moongeistBeam": { + "name": "Moongeist Beam", + "effect": "O usuário emite um raio pavoroso para atacar o alvo. Esse movimento pode ser usado no alvo independentemente de sua Habilidade." + }, + "tearfulLook": { + "name": "Tearful Look", + "effect": "O usuário fica manhoso e o alvo perde a vontade de lutar. Diminui o Ataque e o Ataque Esp. do alvo." + }, + "zingZap": { + "name": "Zing Zap", + "effect": "Uma forte explosão elétrica que cai sobre o alvo, eletrocutando-o e podendo fazê-lo hesitar." + }, + "naturesMadness": { + "name": "Nature's Madness", + "effect": "O usuário atinge o alvo com a força da natureza. Reduz os PS do alvo pela metade." + }, + "multiAttack": { + "name": "Multi-Attack", + "effect": "Se envolvendo em energia concentrada, o usuário acerta o alvo. A memória segurada determina o tipo do movimento." + }, + "tenMillionVoltThunderbolt": { + "name": "10,000,000 Volt Thunderbolt", + "effect": "Usando seu Poder Z, o Pikachu de boné acumula eletricidade e despeja-a. Golpes críticos acertam mais facilmente." + }, + "mindBlown": { + "name": "Mind Blown", + "effect": "O usuário ataca tudo ao seu redor fazendo sua própria cabeça explodir. Isso também causa dano ao usuário." + }, + "plasmaFists": { + "name": "Plasma Fists", + "effect": "O usuário ataca com punhos carregados eletricamente. Este movimento transforma movimentos do tipo Normal em movimentos do tipo Elétrico." + }, + "photonGeyser": { + "name": "Photon Geyser", + "effect": "O usuário ataca o alvo com um pilar de luz. Este movimento causa dano de Ataque ou Ataque Especial—o que for maior para o usuário." + }, + "lightThatBurnsTheSky": { + "name": "Light That Burns the Sky", + "effect": "Este ataque causa dano de Ataque ou Ataque Especial—o que for maior para o usuário, Necrozma. Este movimento ignora a Habilidade do alvo." + }, + "searingSunrazeSmash": { + "name": "Searing Sunraze Smash", + "effect": "Após obter o Z-Power, o usuário, Solgaleo, ataca o alvo com força total. Este movimento pode ignorar o efeito da Habilidade do alvo." + }, + "menacingMoonrazeMaelstrom": { + "name": "Menacing Moonraze Maelstrom", + "effect": "Após obter o Z-Power, o usuário, Lunala, ataca o alvo com força total. Este movimento pode ignorar o efeito da Habilidade do alvo." + }, + "letsSnuggleForever": { + "name": "Let's Snuggle Forever", + "effect": "Após obter o Z-Power, o usuário, Mimikyu, soca o alvo com força total." + }, + "splinteredStormshards": { + "name": "Splintered Stormshards", + "effect": "Após obter o Z-Power, o usuário, Lycanroc, ataca o alvo com força total. Este movimento nega o efeito no campo de batalha." + }, + "clangorousSoulblaze": { + "name": "Clangorous Soulblaze", + "effect": "Após obter o Z-Power, o usuário, Kommo-o, ataca os Pokémon adversários com força total. Este movimento aumenta os atributos do usuário." + }, + "zippyZap": { + "name": "Zippy Zap", + "effect": "O usuário ataca o alvo com rajadas de eletricidade em alta velocidade. Esse movimento sempre vai primeiro e resulta em um golpe crítico." + }, + "splishySplash": { + "name": "Splishy Splash", + "effect": "O usuário carrega uma onda enorme com eletricidade e atinge os Pokémon adversários com a onda. Isso também pode deixar os Pokémon adversários paralisados." + }, + "floatyFall": { + "name": "Floaty Fall", + "effect": "O usuário flutua no ar e então mergulha em um ângulo íngreme para atacar o alvo. Isso também pode fazer o alvo hesitar." + }, + "pikaPapow": { + "name": "Pika Papow", + "effect": "Quanto mais o Pikachu ama seu Treinador, maior o poder do movimento. Nunca erra." + }, + "bouncyBubble": { + "name": "Bouncy Bubble", + "effect": "O usuário ataca atirando bolhas de água no alvo. Em seguida, absorve água e restaura seu HP pelo mesmo valor de dano causado ao alvo." + }, + "buzzyBuzz": { + "name": "Buzzy Buzz", + "effect": "O usuário dispara um choque de eletricidade para atacar o alvo. Isso também deixa o alvo paralisado." + }, + "sizzlySlide": { + "name": "Sizzly Slide", + "effect": "O usuário se envolve em fogo e carrega contra o alvo. Isso também deixa o alvo queimado." + }, + "glitzyGlow": { + "name": "Glitzy Glow", + "effect": "O usuário bombardeia o alvo com força telecinética. Uma parede maravilhosa de luz é erguida para enfraquecer o poder dos movimentos especiais dos Pokémon adversários." + }, + "baddyBad": { + "name": "Baddy Bad", + "effect": "O usuário age mal e ataca o alvo. Uma parede maravilhosa de luz é erguida para enfraquecer o poder dos movimentos físicos dos Pokémon adversários." + }, + "sappySeed": { + "name": "Sappy Seed", + "effect": "O usuário cresce um caule gigantesco que espalha sementes para atacar o alvo. As sementes drenam o HP do alvo a cada turno." + }, + "freezyFrost": { + "name": "Freezy Frost", + "effect": "O usuário ataca com um cristal feito de névoa congelada fria. Isso elimina todas as mudanças de atributo entre todos os Pokémon envolvidos na batalha." + }, + "sparklySwirl": { + "name": "Sparkly Swirl", + "effect": "O usuário ataca o alvo envolvendo-o com um redemoinho de um aroma esmagador. Isso também cura todas as condições de status do grupo do usuário." + }, + "veeveeVolley": { + "name": "Veevee Volley", + "effect": "Quanto mais o Eevee ama seu Treinador, maior o poder do movimento. Nunca erra." + }, + "doubleIronBash": { + "name": "Double Iron Bash", + "effect": "O usuário gira, centrando a porca hexagonal em seu peito e depois ataca com seus braços duas vezes seguidas. Isso também pode fazer o alvo hesitar." + }, + "maxGuard": { + "name": "Max Guard", + "effect": "Este movimento permite ao usuário proteger-se de todos os ataques. Sua chance de falhar aumenta se for usado em sucessão." + }, + "dynamaxCannon": { + "name": "Dynamax Cannon", + "effect": "O usuário libera um forte feixe de seu núcleo. Este movimento causa até o dobro do dano se o alvo estiver com seu nível acima do limite." + }, + "snipeShot": { + "name": "Snipe Shot", + "effect": "O usuário ignora os efeitos dos movimentos e Habilidades dos Pokémon adversários que atraem movimentos, permitindo que este movimento atinja o alvo escolhido." + }, + "jawLock": { + "name": "Jaw Lock", + "effect": "Este movimento impede o usuário e o alvo de trocarem de lugar até que um deles desmaie. O efeito desaparece se qualquer um dos Pokémon deixar o campo." + }, + "stuffCheeks": { + "name": "Stuff Cheeks", + "effect": "O usuário come sua Fruta segurada, depois aumenta muito seu atributo de Defesa." + }, + "noRetreat": { + "name": "No Retreat", + "effect": "Este movimento aumenta todos os atributos do usuário, mas impede o usuário de trocar de lugar ou fugir." + }, + "tarShot": { + "name": "Tar Shot", + "effect": "O usuário derrama alcatrão pegajoso sobre o alvo, diminuindo o atributo de Velocidade do alvo. O alvo se torna mais fraco contra movimentos do tipo Fogo." + }, + "magicPowder": { + "name": "Magic Powder", + "effect": "O usuário espalha uma nuvem de pó mágico que muda o alvo para o tipo Psíquico." + }, + "dragonDarts": { + "name": "Dragon Darts", + "effect": "O usuário ataca duas vezes usando Dreepy. Se houver dois alvos, este movimento atinge cada alvo uma vez." + }, + "teatime": { + "name": "Teatime", + "effect": "O usuário faz hora do chá com todos os Pokémon na batalha. Cada Pokémon come sua Fruta segurada." + }, + "octolock": { + "name": "Octolock", + "effect": "O usuário prende o alvo e impede que ele fuja. Este movimento também diminui os atributos de Defesa e Def. Esp. do alvo a cada turno." + }, + "boltBeak": { + "name": "Bolt Beak", + "effect": "O usuário fere o alvo com seu bico eletrificado. Se o usuário atacar antes do alvo, o poder deste movimento é dobrado." + }, + "fishiousRend": { + "name": "Fishious Rend", + "effect": "O usuário fere o alvo com suas brânquias duras. Se o usuário atacar antes do alvo, o poder deste movimento é dobrado." + }, + "courtChange": { + "name": "Court Change", + "effect": "Com seu poder misterioso, o usuário troca os efeitos de cada lado do campo." + }, + "maxFlare": { + "name": "Max Flare", + "effect": "Este é um ataque do tipo Fogo que Pokémon Dynamax usam. O usuário intensifica o sol por cinco turnos." + }, + "maxFlutterby": { + "name": "Max Flutterby", + "effect": "Este é um ataque do tipo Inseto que Pokémon Dynamax usam. Isso diminui o atributo de Atq. Esp. do alvo." + }, + "maxLightning": { + "name": "Max Lightning", + "effect": "Este é um ataque do tipo Elétrico que Pokémon Dynamax usam. O usuário transforma o chão em Terreno Elétrico por cinco turnos." + }, + "maxStrike": { + "name": "Max Strike", + "effect": "Este é um ataque do tipo Normal que Pokémon Dynamax usam. Isso diminui o atributo de Velocidade do alvo." + }, + "maxKnuckle": { + "name": "Max Knuckle", + "effect": "Este é um ataque do tipo Lutador que Pokémon Dynamax usam. Isso aumenta os atributos de Ataque dos Pokémon aliados." + }, + "maxPhantasm": { + "name": "Max Phantasm", + "effect": "Este é um ataque do tipo Fantasma que Pokémon Dynamax usam. Isso diminui o atributo de Defesa do alvo." + }, + "maxHailstorm": { + "name": "Max Hailstorm", + "effect": "Este é um ataque do tipo Gelo que Pokémon Dynamax usam. O usuário convoca uma tempestade de granizo que dura cinco turnos." + }, + "maxOoze": { + "name": "Max Ooze", + "effect": "Este é um ataque do tipo Veneno que Pokémon Dynamax usam. Isso aumenta os atributos de Atq. Esp. dos Pokémon aliados." + }, + "maxGeyser": { + "name": "Max Geyser", + "effect": "Este é um ataque do tipo Água que Pokémon Dynamax usam. O usuário convoca uma chuva pesada que cai por cinco turnos." + }, + "maxAirstream": { + "name": "Max Airstream", + "effect": "Este é um ataque do tipo Voador que Pokémon Dynamax usam. Isso aumenta os atributos de Velocidade dos Pokémon aliados." + }, + "maxStarfall": { + "name": "Max Starfall", + "effect": "Este é um ataque do tipo Fada que Pokémon Dynamax usam. O usuário transforma o chão em Terreno de Nevoeiro por cinco turnos." + }, + "maxWyrmwind": { + "name": "Max Wyrmwind", + "effect": "Este é um ataque do tipo Dragão que Pokémon Dynamax usam. Isso diminui o atributo de Ataque do alvo." + }, + "maxMindstorm": { + "name": "Max Mindstorm", + "effect": "Este é um ataque do tipo Psíquico que Pokémon Dynamax usam. O usuário transforma o chão em Terreno Psíquico por cinco turnos." + }, + "maxRockfall": { + "name": "Max Rockfall", + "effect": "Este é um ataque do tipo Pedra que Pokémon Dynamax usam. O usuário convoca uma tempestade de areia que dura cinco turnos." + }, + "maxQuake": { + "name": "Max Quake", + "effect": "Este é um ataque do tipo Terra que Pokémon Dynamax usam. Isso aumenta os atributos de Def. Esp. dos Pokémon aliados." + }, + "maxDarkness": { + "name": "Max Darkness", + "effect": "Este é um ataque do tipo Sombrio que Pokémon Dynamax usam. Isso diminui o atributo de Def. Esp. do alvo." + }, + "maxOvergrowth": { + "name": "Max Overgrowth", + "effect": "Este é um ataque do tipo Grama que Pokémon Dynamax usam. O usuário transforma o chão em Terreno de Grama por cinco turnos." + }, + "maxSteelspike": { + "name": "Max Steelspike", + "effect": "Este é um ataque do tipo Aço que Pokémon Dynamax usam. Isso aumenta os atributos de Defesa dos Pokémon aliados." + }, + "clangorousSoul": { + "name": "Clangorous Soul", + "effect": "O usuário aumenta todos os seus atributos usando um pouco de seu HP." + }, + "bodyPress": { + "name": "Body Press", + "effect": "O usuário ataca pressionando seu corpo contra o alvo. Quanto maior a Defesa do usuário, mais dano pode infligir ao alvo." + }, + "decorate": { + "name": "Decorate", + "effect": "O usuário aumenta muito os atributos de Ataque e Atq. Esp. do alvo decorando o alvo." + }, + "drumBeating": { + "name": "Drum Beating", + "effect": "O usuário toca seu tambor, controlando as raízes do tambor para atacar o alvo. Isso também diminui o atributo de Velocidade do alvo." + }, + "snapTrap": { + "name": "Snap Trap", + "effect": "O usuário prende o alvo em uma armadilha rápida por quatro ou cinco turnos." + }, + "pyroBall": { + "name": "Pyro Ball", + "effect": "O usuário ataca acendendo uma pequena pedra e lançando-a como uma bola de fogo no alvo. Isso também pode deixar o alvo queimado." + }, + "behemothBlade": { + "name": "Behemoth Blade", + "effect": "O usuário empunha uma espada grande e poderosa usando todo o seu corpo e corta o alvo em um ataque vigoroso." + }, + "behemothBash": { + "name": "Behemoth Bash", + "effect": "O corpo do usuário se torna um escudo firme e atinge o alvo com força." + }, + "auraWheel": { + "name": "Aura Wheel", + "effect": "Morpeko ataca e aumenta sua Velocidade com a energia armazenada em suas bochechas. O tipo deste movimento muda dependendo da forma do usuário." + }, + "breakingSwipe": { + "name": "Breaking Swipe", + "effect": "O usuário balança sua cauda dura violentamente e ataca os Pokémon adversários. Isso também diminui os atributos de Ataque deles." + }, + "branchPoke": { + "name": "Branch Poke", + "effect": "O usuário ataca o alvo cutucando-o com um galho pontiagudo." + }, + "overdrive": { + "name": "Overdrive", + "effect": "O usuário ataca os Pokémon adversários vibrando uma guitarra ou baixo, causando um eco enorme e uma vibração forte." + }, + "appleAcid": { + "name": "Apple Acid", + "effect": "O usuário ataca o alvo com um líquido ácido criado a partir de maçãs azedas. Isso também diminui o atributo de Def. Esp. do alvo." + }, + "gravApple": { + "name": "Grav Apple", + "effect": "O usuário inflige dano derrubando uma maçã de cima. Isso também diminui o atributo de Defesa do alvo." + }, + "spiritBreak": { + "name": "Spirit Break", + "effect": "O usuário ataca o alvo com tanta força que poderia quebrar o espírito do alvo. Isso também diminui o atributo de Atq. Esp. do alvo." + }, + "strangeSteam": { + "name": "Strange Steam", + "effect": "O usuário ataca o alvo emitindo vapor. Isso também pode deixar o alvo confuso." + }, + "lifeDew": { + "name": "Life Dew", + "effect": "O usuário espalha água misteriosa ao redor e restaura o HP de si mesmo e de seus Pokémon aliados na batalha." + }, + "obstruct": { + "name": "Obstruct", + "effect": "Este movimento permite ao usuário proteger-se de todos os ataques. Sua chance de falhar aumenta se for usado em sucessão. Contato direto reduz severamente o atributo de Defesa do atacante." + }, + "falseSurrender": { + "name": "False Surrender", + "effect": "O usuário finge abaixar a cabeça, mas então esfaqueia o alvo com seus cabelos desgrenhados. Este ataque nunca erra." + }, + "meteorAssault": { + "name": "Meteor Assault", + "effect": "O usuário ataca selvagemente com seu alho-poró grosso. O usuário não pode se mover na próxima rodada, porque a força deste movimento o faz cambalear." + }, + "eternabeam": { + "name": "Eternabeam", + "effect": "Este é o ataque mais poderoso de Eternatus em sua forma original. O usuário não pode se mover na próxima rodada." + }, + "steelBeam": { + "name": "Steel Beam", + "effect": "O usuário dispara um feixe de aço que coletou de todo o seu corpo. Isso também causa dano ao usuário." + }, + "expandingForce": { + "name": "Expanding Force", + "effect": "O usuário ataca o alvo com seu poder psíquico. O poder deste movimento aumenta e danifica todos os Pokémon adversários no Terreno Psíquico." + }, + "steelRoller": { + "name": "Steel Roller", + "effect": "O usuário ataca enquanto destrói o terreno. Este movimento falha quando o chão não foi transformado em um terreno." + }, + "scaleShot": { + "name": "Scale Shot", + "effect": "O usuário ataca atirando escamas de duas a cinco vezes seguidas. Este movimento aumenta o atributo de Velocidade do usuário, mas diminui seu atributo de Defesa." + }, + "meteorBeam": { + "name": "Meteor Beam", + "effect": "Neste ataque de dois turnos, o usuário reúne energia espacial e aumenta seu atributo de Atq. Esp., depois ataca o alvo no próximo turno." + }, + "shellSideArm": { + "name": "Shell Side Arm", + "effect": "Este movimento causa dano físico ou especial, o que for mais eficaz. Isso também pode envenenar o alvo." + }, + "mistyExplosion": { + "name": "Misty Explosion", + "effect": "O usuário ataca tudo ao seu redor e desmaia ao usar este movimento. O poder deste movimento é aumentado no Terreno de Nevoeiro." + }, + "grassyGlide": { + "name": "Grassy Glide", + "effect": "Deslizando no chão, o usuário ataca o alvo. Este movimento sempre ataca primeiro no Terreno de Grama." + }, + "risingVoltage": { + "name": "Rising Voltage", + "effect": "O usuário ataca com a voltagem elétrica que sobe do chão. O poder deste movimento dobra quando o alvo está no Terreno Elétrico." + }, + "terrainPulse": { + "name": "Terrain Pulse", + "effect": "O usuário utiliza o poder do terreno para atacar. O tipo e o poder deste movimento mudam dependendo do terreno em que é usado." + }, + "skitterSmack": { + "name": "Skitter Smack", + "effect": "O usuário corre por trás do alvo para atacar. Isso também diminui o atributo de Atq. Esp. do alvo." + }, + "burningJealousy": { + "name": "Burning Jealousy", + "effect": "O usuário ataca com energia da inveja. Isso deixa todos os Pokémon adversários que tiveram seus atributos aumentados durante o turno com uma queimadura." + }, + "lashOut": { + "name": "Lash Out", + "effect": "O usuário ataca para desabafar sua frustração contra o alvo. Se os atributos do usuário foram diminuídos durante este turno, o poder deste movimento é dobrado." + }, + "poltergeist": { + "name": "Poltergeist", + "effect": "O usuário ataca o alvo controlando o item do alvo. O movimento falha se o alvo não tiver um item." + }, + "corrosiveGas": { + "name": "Corrosive Gas", + "effect": "O usuário envolve tudo ao seu redor com gás altamente ácido e derrete os itens que eles seguram." + }, + "coaching": { + "name": "Coaching", + "effect": "O usuário treina adequadamente seus Pokémon aliados, aumentando seus atributos de Ataque e Defesa." + }, + "flipTurn": { + "name": "Flip Turn", + "effect": "Após fazer seu ataque, o usuário corre para trocar de lugar com um Pokémon do grupo à espera." + }, + "tripleAxel": { + "name": "Triple Axel", + "effect": "Um ataque de três chutes consecutivos que se torna mais poderoso a cada acerto bem-sucedido." + }, + "dualWingbeat": { + "name": "Dual Wingbeat", + "effect": "O usuário atinge o alvo com suas asas. O alvo é atingido duas vezes seguidas." + }, + "scorchingSands": { + "name": "Scorching Sands", + "effect": "O usuário joga areia escaldante no alvo para atacar. Isso também pode deixar o alvo queimado." + }, + "jungleHealing": { + "name": "Jungle Healing", + "effect": "O usuário se torna um com a selva, restaurando HP e curando quaisquer condições de status de si mesmo e de seus Pokémon aliados na batalha." + }, + "wickedBlow": { + "name": "Wicked Blow", + "effect": "O usuário, tendo dominado o estilo Sombrio, atinge o alvo com um golpe feroz. Este ataque sempre resulta em um acerto crítico." + }, + "surgingStrikes": { + "name": "Surging Strikes", + "effect": "O usuário, tendo dominado o estilo Água, atinge o alvo com um movimento fluido três vezes seguidas. Estes ataques sempre resultam em acertos críticos." + }, + "thunderCage": { + "name": "Thunder Cage", + "effect": "O usuário prende o alvo em uma gaiola de eletricidade cintilante por quatro ou cinco turnos." + }, + "dragonEnergy": { + "name": "Dragon Energy", + "effect": "Convertendo sua força vital em poder, o usuário ataca os Pokémon adversários. Quanto menor o HP do usuário, menor o poder do movimento." + }, + "freezingGlare": { + "name": "Freezing Glare", + "effect": "O usuário dispara seu poder psíquico dos olhos para atacar. Isso também pode deixar o alvo congelado." + }, + "fieryWrath": { + "name": "Fiery Wrath", + "effect": "O usuário transforma sua ira em uma aura semelhante ao fogo para atacar. Isso também pode fazer os Pokémon adversários hesitarem." + }, + "thunderousKick": { + "name": "Thunderous Kick", + "effect": "O usuário oprime o alvo com movimento semelhante ao relâmpago antes de entregar um chute. Isso também diminui o atributo de Defesa do alvo." + }, + "glacialLance": { + "name": "Glacial Lance", + "effect": "O usuário ataca lançando uma lança de gelo envolta em nevasca nos Pokémon adversários." + }, + "astralBarrage": { + "name": "Astral Barrage", + "effect": "O usuário ataca enviando uma quantidade assustadora de pequenos fantasmas nos Pokémon adversários." + }, + "eerieSpell": { + "name": "Eerie Spell", + "effect": "O usuário ataca com seu tremendo poder psíquico. Isso também remove 3 PP do último movimento usado pelo alvo." + }, + "direClaw": { + "name": "Dire Claw", + "effect": "O usuário ataca o alvo com garras destruidoras. Isso também pode deixar o alvo envenenado, paralisado ou adormecido." + }, + "psyshieldBash": { + "name": "Psyshield Bash", + "effect": "Envoltando-se em energia psíquica, o usuário se choca contra o alvo. Isso também aumenta o atributo de Defesa do usuário." + }, + "powerShift": { + "name": "Power Shift", + "effect": "O usuário troca seus atributos de Ataque e Defesa." + }, + "stoneAxe": { + "name": "Stone Axe", + "effect": "O usuário balança seus machados de pedra no alvo. Fragmentos de pedra deixados para trás por este ataque flutuam ao redor do alvo." + }, + "springtideStorm": { + "name": "Springtide Storm", + "effect": "O usuário ataca envolvendo os Pokémon adversários em ventos ferozes repletos de amor e ódio. Isso também pode diminuir os atributos de Ataque deles." + }, + "mysticalPower": { + "name": "Mystical Power", + "effect": "O usuário ataca emitindo um poder misterioso. Isso também aumenta o atributo de Atq. Esp. do usuário." + }, + "ragingFury": { + "name": "Raging Fury", + "effect": "O usuário se enfurece espalhando chamas por dois ou três turnos. O usuário então fica confuso." + }, + "waveCrash": { + "name": "Wave Crash", + "effect": "O usuário se envolve em água e atinge o alvo com todo o corpo para infligir dano. Isso também causa muito dano ao usuário." + }, + "chloroblast": { + "name": "Chloroblast", + "effect": "O usuário lança sua clorofila acumulada para infligir dano no alvo. Isso também causa dano ao usuário." + }, + "mountainGale": { + "name": "Mountain Gale", + "effect": "O usuário arremessa pedaços gigantes de gelo no alvo para infligir dano. Isso também pode fazer o alvo hesitar." + }, + "victoryDance": { + "name": "Victory Dance", + "effect": "O usuário realiza uma dança intensa para inaugurar a vitória, aumentando seus atributos de Ataque, Defesa e Velocidade." + }, + "headlongRush": { + "name": "Headlong Rush", + "effect": "O usuário se choca contra o alvo em um ataque de corpo inteiro. Isso também diminui os atributos de Defesa e Def. Esp. do usuário." + }, + "barbBarrage": { + "name": "Barb Barrage", + "effect": "O usuário lança inúmeras barbas tóxicas para infligir dano. O poder deste movimento é dobrado se o alvo já estiver envenenado." + }, + "esperWing": { + "name": "Esper Wing", + "effect": "O usuário corta o alvo com asas enriquecidas com aura. Isso também aumenta o atributo de Velocidade do usuário. Este movimento tem uma chance aumentada de causar um acerto crítico." + }, + "bitterMalice": { + "name": "Bitter Malice", + "effect": "O usuário ataca o alvo com um ressentimento arrepiante. Isso também diminui o atributo de Ataque do alvo." + }, + "shelter": { + "name": "Shelter", + "effect": "O usuário torna sua pele tão dura quanto um escudo de ferro, aumentando muito seu atributo de Defesa." + }, + "tripleArrows": { + "name": "Triple Arrows", + "effect": "O usuário chuta e depois dispara três flechas. Este movimento tem uma chance aumentada de causar um acerto crítico e também pode diminuir o atributo de Defesa do alvo ou fazê-lo hesitar." + }, + "infernalParade": { + "name": "Infernal Parade", + "effect": "O usuário ataca com miríades de bolas de fogo. Isso também pode deixar o alvo queimado. O poder deste movimento é dobrado se o alvo tiver uma condição de status." + }, + "ceaselessEdge": { + "name": "Ceaseless Edge", + "effect": "O usuário corta sua lâmina de concha no alvo. Fragmentos de concha deixados para trás por este ataque permanecem espalhados sob o alvo como espinhos." + }, + "bleakwindStorm": { + "name": "Bleakwind Storm", + "effect": "O usuário ataca com ventos selvagemente frios que fazem tanto o corpo quanto o espírito tremerem. Isso também pode diminuir os atributos de Velocidade dos Pokémon adversários." + }, + "wildboltStorm": { + "name": "Wildbolt Storm", + "effect": "O usuário invoca uma tempestade trovejante e ataca selvagemente com relâmpagos e vento. Isso também pode deixar os Pokémon adversários paralisados." + }, + "sandsearStorm": { + "name": "Sandsear Storm", + "effect": "O usuário ataca envolvendo os Pokémon adversários em ventos ferozes e areia escaldante. Isso também pode deixá-los queimados." + }, + "lunarBlessing": { + "name": "Lunar Blessing", + "effect": "O usuário recebe uma bênção do crescente lunar, restaurando HP e curando condições de status para si mesmo e seus Pokémon aliados atualmente na batalha." + }, + "takeHeart": { + "name": "Take Heart", + "effect": "O usuário levanta o espírito, curando suas próprias condições de status e aumentando seus atributos de Atq. Esp. e Def. Esp." + }, + "gMaxWildfire": { + "name": "G-Max Wildfire", + "effect": "Um ataque do tipo Fogo que o Gigantamax Charizard usa. Este movimento continua causando dano aos oponentes por quatro turnos." + }, + "gMaxBefuddle": { + "name": "G-Max Befuddle", + "effect": "Um ataque do tipo Inseto que o Gigantamax Butterfree usa. Este movimento inflige as condições de envenenado, paralisado ou adormecido nos oponentes." + }, + "gMaxVoltCrash": { + "name": "G-Max Volt Crash", + "effect": "Um ataque do tipo Elétrico que o Gigantamax Pikachu usa. Este movimento paralisa os oponentes." + }, + "gMaxGoldRush": { + "name": "G-Max Gold Rush", + "effect": "Um ataque do tipo Normal que o Gigantamax Meowth usa. Este movimento confunde os oponentes e também ganha dinheiro extra." + }, + "gMaxChiStrike": { + "name": "G-Max Chi Strike", + "effect": "Um ataque do tipo Lutador que Gigantamax Machamp usa. Este movimento aumenta a chance de acertos críticos." + }, + "gMaxTerror": { + "name": "G-Max Terror", + "effect": "Um ataque do tipo Fantasma que Gigantamax Gengar usa. Este Pokémon pisa na sombra do Pokémon adversário para impedi-lo de escapar." + }, + "gMaxResonance": { + "name": "G-Max Resonance", + "effect": "Um ataque do tipo Gelo que Gigantamax Lapras usa. Este movimento reduz o dano recebido por cinco turnos." + }, + "gMaxCuddle": { + "name": "G-Max Cuddle", + "effect": "Um ataque do tipo Normal que Gigantamax Eevee usa. Este movimento apaixona os oponentes." + }, + "gMaxReplenish": { + "name": "G-Max Replenish", + "effect": "Um ataque do tipo Normal que Gigantamax Snorlax usa. Este movimento restaura Frutas que foram comidas." + }, + "gMaxMalodor": { + "name": "G-Max Malodor", + "effect": "Um ataque do tipo Veneno que Gigantamax Garbodor usa. Este movimento envenena os oponentes." + }, + "gMaxStonesurge": { + "name": "G-Max Stonesurge", + "effect": "Um ataque do tipo Água que Gigantamax Drednaw usa. Este movimento espalha pedras afiadas pelo campo." + }, + "gMaxWindRage": { + "name": "G-Max Wind Rage", + "effect": "Um ataque do tipo Voador que Gigantamax Corviknight usa. Este movimento remove os efeitos de movimentos como Reflect e Light Screen." + }, + "gMaxStunShock": { + "name": "G-Max Stun Shock", + "effect": "Um ataque do tipo Elétrico que Gigantamax Toxtricity usa. Este movimento envenena ou paralisa os oponentes." + }, + "gMaxFinale": { + "name": "G-Max Finale", + "effect": "Um ataque do tipo Fada que Gigantamax Alcremie usa. Este movimento cura os PS dos aliados." + }, + "gMaxDepletion": { + "name": "G-Max Depletion", + "effect": "Um ataque do tipo Dragão que Gigantamax Duraludon usa. Reduz o PP do último movimento usado." + }, + "gMaxGravitas": { + "name": "G-Max Gravitas", + "effect": "Um ataque do tipo Psíquico que Gigantamax Orbeetle usa. Este movimento muda a gravidade por cinco turnos." + }, + "gMaxVolcalith": { + "name": "G-Max Volcalith", + "effect": "Um ataque do tipo Pedra que Gigantamax Coalossal usa. Este movimento continua a causar dano aos oponentes por quatro turnos." + }, + "gMaxSandblast": { + "name": "G-Max Sandblast", + "effect": "Um ataque do tipo Terra que Gigantamax Sandaconda usa. Os oponentes ficam presos em uma tempestade de areia furiosa por quatro a cinco turnos." + }, + "gMaxSnooze": { + "name": "G-Max Snooze", + "effect": "Um ataque do tipo Sombrio que Gigantamax Grimmsnarl usa. O usuário solta um grande bocejo que faz com que os alvos adormeçam no próximo turno." + }, + "gMaxTartness": { + "name": "G-Max Tartness", + "effect": "Um ataque do tipo Planta que Gigantamax Flapple usa. Este movimento reduz a Evasão dos oponentes." + }, + "gMaxSweetness": { + "name": "G-Max Sweetness", + "effect": "Um ataque do tipo Planta que Gigantamax Appletun usa. Este movimento cura as condições de status dos aliados." + }, + "gMaxSmite": { + "name": "G-Max Smite", + "effect": "Um ataque do tipo Fada que Gigantamax Hatterene usa. Este movimento confunde os oponentes." + }, + "gMaxSteelsurge": { + "name": "G-Max Steelsurge", + "effect": "Um ataque do tipo Aço que Gigantamax Copperajah usa. Este movimento espalha estacas afiadas pelo campo." + }, + "gMaxMeltdown": { + "name": "G-Max Meltdown", + "effect": "Um ataque do tipo Aço que Gigantamax Melmetal usa. Este movimento impede os oponentes de usar o mesmo movimento duas vezes seguidas." + }, + "gMaxFoamBurst": { + "name": "G-Max Foam Burst", + "effect": "Um ataque do tipo Água que Gigantamax Kingler usa. Este movimento reduz drasticamente a Velocidade dos oponentes." + }, + "gMaxCentiferno": { + "name": "G-Max Centiferno", + "effect": "Um ataque do tipo Fogo que Gigantamax Centiskorch usa. Este movimento prende os oponentes em chamas por quatro a cinco turnos." + }, + "gMaxVineLash": { + "name": "G-Max Vine Lash", + "effect": "Um ataque do tipo Planta que Gigantamax Venusaur usa. Este movimento continua a causar dano aos oponentes por quatro turnos." + }, + "gMaxCannonade": { + "name": "G-Max Cannonade", + "effect": "Um ataque do tipo Água que Gigantamax Blastoise usa. Este movimento continua a causar dano aos oponentes por quatro turnos." + }, + "gMaxDrumSolo": { + "name": "G-Max Drum Solo", + "effect": "Um ataque do tipo Planta que Gigantamax Rillaboom usa. Este movimento pode ser usado no alvo independentemente de suas Habilidades." + }, + "gMaxFireball": { + "name": "G-Max Fireball", + "effect": "Um ataque do tipo Fogo que Gigantamax Cinderace usa. Este movimento pode ser usado no alvo independentemente de suas Habilidades." + }, + "gMaxHydrosnipe": { + "name": "G-Max Hydrosnipe", + "effect": "Um ataque do tipo Água que Gigantamax Inteleon usa. Este movimento pode ser usado no alvo independentemente de suas Habilidades." + }, + "gMaxOneBlow": { + "name": "G-Max One Blow", + "effect": "Um ataque do tipo Sombrio que Gigantamax Urshifu usa. Este movimento único pode ignorar o Max Guard." + }, + "gMaxRapidFlow": { + "name": "G-Max Rapid Flow", + "effect": "Um ataque do tipo Água que Gigantamax Urshifu usa. Este movimento rápido pode ignorar o Max Guard." + }, + "teraBlast": { + "name": "Tera Blast", + "effect": "Se o usuário estiver Terastalizado, ele libera energia de seu Tera Tipo. Este movimento causa dano usando o maior entre o Ataque ou Ataque Esp. do usuário." + }, + "silkTrap": { + "name": "Silk Trap", + "effect": "O usuário tece uma armadilha de seda, protegendo-se de dano enquanto reduz o atributo de Velocidade de qualquer atacante que faça contato direto." + }, + "axeKick": { + "name": "Axe Kick", + "effect": "O usuário ataca chutando para cima e depois abaixando o calcanhar sobre o alvo. Isso também pode confundir o alvo. Se errar, o usuário sofre dano." + }, + "lastRespects": { + "name": "Last Respects", + "effect": "O usuário ataca para vingar seus aliados. Quanto mais aliados derrotados, maior o poder do movimento." + }, + "luminaCrash": { + "name": "Lumina Crash", + "effect": "O usuário ataca liberando uma luz peculiar que afeta até a mente. Isso também reduz muito a Defesa Esp. do alvo." + }, + "orderUp": { + "name": "Order Up", + "effect": "O usuário ataca com elegância. Se o usuário tiver um Tatsugiri na boca, este movimento aumenta uma dos atributos do usuário com base na forma do Tatsugiri." + }, + "jetPunch": { + "name": "Jet Punch", + "effect": "O usuário convoca um turbilhão ao redor de seu punho e ataca com velocidade cegante. Este movimento sempre age primeiro." + }, + "spicyExtract": { + "name": "Spicy Extract", + "effect": "O usuário emite um extrato incrivelmente picante, aumentando muito o Ataque do alvo e reduzindo muito a Defesa do alvo." + }, + "spinOut": { + "name": "Spin Out", + "effect": "O usuário gira furiosamente ao esticar as pernas, causando dano ao alvo. Isso também reduz muito a Velocidade do usuário." + }, + "populationBomb": { + "name": "Population Bomb", + "effect": "Os companheiros do usuário se reúnem em massa para executar um ataque combinado que atinge o alvo de uma a dez vezes seguidas." + }, + "iceSpinner": { + "name": "Ice Spinner", + "effect": "O usuário cobre seus pés com gelo fino e gira ao redor, atingindo o alvo. O movimento giratório deste movimento também destrói o terreno." + }, + "glaiveRush": { + "name": "Glaive Rush", + "effect": "O usuário lança todo o seu corpo em uma carga imprudente. Após o uso deste movimento, ataques contra o usuário não podem errar e infligirão o dobro do dano até a próxima vez que o usuário agir." + }, + "revivalBlessing": { + "name": "Revival Blessing", + "effect": "O usuário concede uma bênção amorosa, reanimando um Pokémon da equipe que tenha desmaiado e restaurando metade do máximo de PS desse Pokémon." + }, + "saltCure": { + "name": "Salt Cure", + "effect": "O usuário cura o alvo com sal, causando dano a cada turno. Tipos de Aço e Água são mais fortemente afetados por este movimento." + }, + "tripleDive": { + "name": "Triple Dive", + "effect": "O usuário executa um mergulho triplo perfeitamente cronometrado, atingindo o alvo com respingos de água três vezes seguidas." + }, + "mortalSpin": { + "name": "Mortal Spin", + "effect": "O usuário realiza um ataque giratório que também pode eliminar os efeitos de movimentos como Bind, Wrap e Leech Seed. Isso também envenena os Pokémon oponentes." + }, + "doodle": { + "name": "Doodle", + "effect": "O usuário captura a essência do alvo em um esboço. Isso muda as Habilidades do usuário e de seus Pokémon aliados para a do alvo." + }, + "filletAway": { + "name": "Fillet Away", + "effect": "O usuário aumenta muito seus atributos de Ataque, Ataque Esp. e Velocidade ao usar seus próprios PS." + }, + "kowtowCleave": { + "name": "Kowtow Cleave", + "effect": "O usuário corta o alvo depois de se curvar para fazer o alvo baixar a guarda. Este ataque nunca erra." + }, + "flowerTrick": { + "name": "Flower Trick", + "effect": "O usuário lança um buquê de flores armado no alvo. Este ataque nunca erra e sempre resulta em um acerto crítico." + }, + "torchSong": { + "name": "Torch Song", + "effect": "O usuário exala chamas furiosas como se estivesse cantando uma canção, queimando o alvo. Isso também aumenta o atributo de Ataque Esp. do usuário." + }, + "aquaStep": { + "name": "Aqua Step", + "effect": "O usuário brinca com o alvo e o ataca usando passos de dança leves e fluidos. Isso também aumenta a Velocidade do usuário." + }, + "ragingBull": { + "name": "Raging Bull", + "effect": "O usuário realiza um ataque de investida como um touro enfurecido. O tipo deste movimento depende da forma do usuário. Ele também pode quebrar barreiras, como Light Screen e Reflect." + }, + "makeItRain": { + "name": "Make It Rain", + "effect": "O usuário ataca lançando uma massa de moedas. Isso também reduz o atributo de Ataque Esp. do usuário. Dinheiro é ganho após a batalha." + }, + "psyblade": { + "name": "Psyblade", + "effect": "O usuário fende o alvo com uma lâmina etérea. O poder deste movimento é aumentado em 50% se o usuário estiver no Electric Terrain." + }, + "hydroSteam": { + "name": "Hydro Steam", + "effect": "O usuário ataca o alvo com água fervente. O poder deste movimento não é reduzido sob sol forte, mas sim aumentado em 50%." + }, + "ruination": { + "name": "Ruination", + "effect": "O usuário invoca um desastre ruinoso. Isso corta os PS do alvo pela metade." + }, + "collisionCourse": { + "name": "Collision Course", + "effect": "O usuário se transforma e cai no chão, causando uma explosão pré-histórica massiva. O poder deste movimento é aumentado mais do que o usual se for um golpe super eficaz." + }, + "electroDrift": { + "name": "Electro Drift", + "effect": "O usuário avança a velocidades ultra-rápidas, perfurando o alvo com eletricidade futurista. O poder deste movimento é aumentado mais do que o usual se for um golpe super eficaz." + }, + "shedTail": { + "name": "Shed Tail", + "effect": "O usuário cria um substituto para si mesmo usando seus próprios PS antes de trocar de lugar com um Pokémon da equipe que está esperando." + }, + "chillyReception": { + "name": "Chilly Reception", + "effect": "O usuário conta uma piada terrivelmente ruim antes de trocar de lugar com um Pokémon da equipe que está esperando. Isso invoca uma nevasca que dura cinco turnos." + }, + "tidyUp": { + "name": "Tidy Up", + "effect": "O usuário arruma e remove os efeitos de Spikes, Stealth Rock, Sticky Web, Toxic Spikes e Substitute. Isso também aumenta os atributos de Ataque e Velocidade do usuário." + }, + "snowscape": { + "name": "Snowscape", + "effect": "O usuário invoca uma tempestade de neve que dura cinco turnos. Isso aumenta os atributos de Defesa dos tipos Gelo." + }, + "pounce": { + "name": "Pounce", + "effect": "O usuário ataca saltando sobre o alvo. Isso também reduz a Velocidade do alvo." + }, + "trailblaze": { + "name": "Trailblaze", + "effect": "O usuário ataca repentinamente como se estivesse saltando de dentro da grama alta. A agilidade do usuário aumenta sua Velocidade." + }, + "chillingWater": { + "name": "Chilling Water", + "effect": "O usuário ataca o alvo derramando sobre ele água tão fria que suga seu poder. Isso também reduz o atributo de Ataque do alvo." + }, + "hyperDrill": { + "name": "Hyper Drill", + "effect": "O usuário gira a parte pontiaguda de seu corpo em alta velocidade para perfurar o alvo. Este ataque pode atingir um alvo que esteja usando um movimento como Protect ou Detect." + }, + "twinBeam": { + "name": "Twin Beam", + "effect": "O usuário dispara feixes místicos de seus olhos para causar dano. O alvo é atingido duas vezes seguidas." + }, + "rageFist": { + "name": "Rage Fist", + "effect": "O usuário converte sua raiva em energia para atacar. Quanto mais vezes o usuário foi atingido por ataques, maior o poder do movimento." + }, + "armorCannon": { + "name": "Armor Cannon", + "effect": "O usuário dispara sua própria armadura como projéteis ardentes. Isso também reduz os atributos de Defesa e Defesa Esp. do usuário." + }, + "bitterBlade": { + "name": "Bitter Blade", + "effect": "O usuário concentra seus sentimentos amargos em relação ao mundo dos vivos em um ataque cortante. Os PS do usuário são restaurados em até metade do dano causado ao alvo." + }, + "doubleShock": { + "name": "Double Shock", + "effect": "O usuário descarrega toda a eletricidade de seu corpo para executar um ataque de alto dano. Após usar este movimento, o usuário não será mais do tipo Elétrico." + }, + "gigatonHammer": { + "name": "Gigaton Hammer", + "effect": "O usuário balança todo o seu corpo para atacar com seu enorme martelo. Este movimento não pode ser usado duas vezes seguidas." + }, + "comeuppance": { + "name": "Comeuppance", + "effect": "O usuário retalia com muito mais força contra o oponente que causou o último dano a ele." + }, + "aquaCutter": { + "name": "Aqua Cutter", + "effect": "O usuário expele água pressurizada para cortar o alvo como uma lâmina. Este movimento tem uma chance aumentada de resultar em um acerto crítico." + }, + "blazingTorque": { + "name": "Blazing Torque", + "effect": "O usuário acelera seu motor ardente no alvo. Isso também pode deixar o alvo queimado." + }, + "wickedTorque": { + "name": "Wicked Torque", + "effect": "O usuário acelera seu motor no alvo com intenção maliciosa. Isso pode fazer o alvo adormecer." + }, + "noxiousTorque": { + "name": "Noxious Torque", + "effect": "O usuário acelera seu motor venenoso no alvo. Isso também pode envenenar o alvo." + }, + "combatTorque": { + "name": "Combat Torque", + "effect": "O usuário acelera seu motor com força no alvo. Isso também pode deixar o alvo paralisado." + }, + "magicalTorque": { + "name": "Magical Torque", + "effect": "O usuário acelera seu motor de fadas no alvo. Isso também pode confundir o alvo." + }, + "bloodMoon": { + "name": "Blood Moon", + "effect": "O usuário libera toda a força de seu espírito de uma lua cheia que brilha tão vermelha quanto o sangue. Este movimento não pode ser usado duas vezes seguidas." + }, + "matchaGotcha": { + "name": "Matcha Gotcha", + "effect": "O usuário dispara um jato de chá que misturou. Os PS do usuário são restaurados em até metade do dano causado ao alvo. Isso também pode deixar o alvo queimado." + }, + "syrupBomb": { + "name": "Syrup Bomb", + "effect": "O usuário detona uma explosão de xarope de doces pegajoso, que reveste o alvo e faz o atributo de Velocidade do alvo cair a cada turno por três turnos." + }, + "ivyCudgel": { + "name": "Ivy Cudgel", + "effect": "O usuário golpeia com um porrete envolto em hera. O tipo deste movimento muda dependendo da máscara usada pelo usuário, e tem uma chance aumentada de resultar em um acerto crítico." + }, + "electroShot": { + "name": "Electro Shot", + "effect": "O usuário acumula eletricidade no primeiro turno, aumentando suo atributo de Ataque Esp., e então dispara um tiro de alta voltagem no próximo turno. O tiro será disparado imediatamente na chuva." + }, + "teraStarstorm": { + "name": "Tera Starstorm", + "effect": "Com o poder de seus cristais, o usuário bombardeia e elimina o alvo. Quando usado por Terapagos em sua Forma Estelar, este movimento causa dano a todos os Pokémon oponentes." + }, + "fickleBeam": { + "name": "Fickle Beam", + "effect": "O usuário dispara um feixe de luz para causar dano. Às vezes, todas as cabeças do usuário disparam feixes ao mesmo tempo, dobrando o poder do movimento." + }, + "burningBulwark": { + "name": "Burning Bulwark", + "effect": "A pele intensamente quente do usuário o protege de ataques e também queima qualquer atacante que faça contato direto." + }, + "thunderclap": { + "name": "Thunderclap", + "effect": "Este movimento permite que o usuário ataque primeiro com um choque de eletricidade. Este movimento falha se o alvo não estiver preparando um ataque." + }, + "mightyCleave": { + "name": "Mighty Cleave", + "effect": "O usuário empunha a luz que se acumulou no topo de sua cabeça para cortar o alvo. Este movimento atinge mesmo se o alvo se proteger." + }, + "tachyonCutter": { + "name": "Tachyon Cutter", + "effect": "O usuário ataca lançando lâminas de partículas no alvo duas vezes seguidas. Este ataque nunca erra." + }, + "hardPress": { + "name": "Hard Press", + "effect": "O alvo é esmagado com um braço, uma garra ou algo do tipo para causar dano. Quanto mais PS o alvo tiver, maior o poder do movimento." + }, + "dragonCheer": { + "name": "Dragon Cheer", + "effect": "O usuário eleva o moral de seus aliados com um grito dracônico, para que seus futuros ataques tenham uma chance aumentada de resultar em golpes críticos. Isso anima mais os tipos Dragão." + }, + "alluringVoice": { + "name": "Alluring Voice", + "effect": "O usuário ataca o alvo usando sua voz angelical. Isso também confunde o alvo se seus atributos tiverem sido aumentadas durante o turno." + }, + "temperFlare": { + "name": "Temper Flare", + "effect": "Impulsionado pelo desespero, o usuário ataca o alvo. O poder deste movimento é dobrado se o movimento anterior do usuário tiver falhado." + }, + "supercellSlam": { + "name": "Supercell Slam", + "effect": "O usuário eletrifica seu corpo e cai sobre o alvo para causar dano. Se este movimento errar, o usuário sofre dano." + }, + "psychicNoise": { + "name": "Psychic Noise", + "effect": "O usuário ataca o alvo com ondas sonoras desagradáveis. Por dois turnos, o alvo é impedido de recuperar PS através de movimentos, Habilidades ou itens mantidos." + }, + "upperHand": { + "name": "Upper Hand", + "effect": "O usuário reage ao movimento do alvo e o ataca com o calcanhar da palma da mão, fazendo o alvo hesitar. Este movimento falha se o alvo não estiver preparando um movimento de prioridade." + }, + "malignantChain": { + "name": "Malignant Chain", + "effect": "O usuário derrama toxinas no alvo envolvendo-o em uma corrente tóxica e corrosiva. Isso também pode deixar o alvo seriamente envenenado." + } +} diff --git a/src/locales/pt_BR/move.ts b/src/locales/pt_BR/move.ts deleted file mode 100644 index 1748f726682..00000000000 --- a/src/locales/pt_BR/move.ts +++ /dev/null @@ -1,3812 +0,0 @@ -import { MoveTranslationEntries } from "#app/interfaces/locales"; - -export const move: MoveTranslationEntries = { - "pound": { - name: "Pound", - effect: "O alvo é golpeado com uma pata, uma cauda longa, ou com algo desse tipo." - }, - "karateChop": { - name: "Karate Chop", - effect: "O alvo é atacado com um golpe cortante. Golpes críticos ocorrem mais facilmente." - }, - "doubleSlap": { - name: "Double Slap", - effect: "O alvo é estapeado repetidamente, de duas a cinco vezes seguidas." - }, - "cometPunch": { - name: "Comet Punch", - effect: "O alvo é atingido com uma sequência de socos que acertam de duas a cinco vezes seguidas." - }, - "megaPunch": { - name: "Mega Punch", - effect: "O alvo é atingido por um soco desferido com grande força muscular." - }, - "payDay": { - name: "Pay Day", - effect: "Várias moedas são lançadas no alvo para causar dano. O Treinador recebe o dinheiro após a batalha." - }, - "firePunch": { - name: "Fire Punch", - effect: "O alvo é atingido por um punho flamejante. Isso pode deixar o alvo queimado." - }, - "icePunch": { - name: "Ice Punch", - effect: "O alvo é atingido por um punho gelado. Isso pode deixar o alvo congelado." - }, - "thunderPunch": { - name: "Thunder Punch", - effect: "O alvo é atingido por um punho eletrificado. Isso também pode deixar o alvo paralisado." - }, - "scratch": { - name: "Scratch", - effect: "Garras duras, pontiagudas e afiadas rasgam o alvo para causar dano." - }, - "viceGrip": { - name: "Vice Grip", - effect: "O alvo é agarrado pelos lados e espremido." - }, - "guillotine": { - name: "Guillotine", - effect: "Um ataque violento e destruidor com grandes pinças. Se o golpe acertar, o alvo desmaiará instantaneamente." - }, - "razorWind": { - name: "Razor Wind", - effect: "Neste ataque de dois turnos, lâminas de vento golpeiam Pokémon adversários no segundo turno. Golpes críticos ocorrem mais facilmente." - }, - "swordsDance": { - name: "Swords Dance", - effect: "Uma dança frenética para elevar o espírito de luta. Aumenta bruscamente o Ataque do usuário." - }, - "cut": { - name: "Cut", - effect: "O alvo é cortado com uma foice ou garra." - }, - "gust": { - name: "Gust", - effect: "Uma rajada de vento é levantada por asas e lançada no alvo para causar dano." - }, - "wingAttack": { - name: "Wing Attack", - effect: "O alvo é atingido por asas grandes e imponentes, amplamente abertas para causar dano." - }, - "whirlwind": { - name: "Whirlwind", - effect: "O alvo é soprado para fora da batalha, dando lugar a outro Pokémon. Em batalhas selvagens, a batalha termina caso seja contra um único Pokémon." - }, - "fly": { - name: "Fly", - effect: "O usuário levanta vôo e ataca o alvo no próximo turno." - }, - "bind": { - name: "Bind", - effect: "Um longo corpo ou tentáculos são utilizados para prender o alvo e espremê-lo por quatro ou cinco turnos." - }, - "slam": { - name: "Slam", - effect: "O alvo é atingido com uma longa cauda, vinhas ou algo parecido para infligir dano." - }, - "vineWhip": { - name: "Vine Whip", - effect: "O usuário utiliza-se de vinhas finas como chicote para infligir dano." - }, - "stomp": { - name: "Stomp", - effect: "O alvo é pisoteado por um grande pé. Isso também pode fazer o alvo hesitar." - }, - "doubleKick": { - name: "Double Kick", - effect: "O alvo é atingido rapidamente com um chute duas vezes seguidas usando ambos os pés." - }, - "megaKick": { - name: "Mega Kick", - effect: "O alvo é atingido por um chute desferido com grande força muscular." - }, - "jumpKick": { - name: "Jump Kick", - effect: "O usuário pula alto, depois golpeia com um chute. Se o chute erra, o usuário se fere." - }, - "rollingKick": { - name: "Rolling Kick", - effect: "O usuário desfere um rápido chute giratório. Isso também pode fazer o alvo hesitar." - }, - "sandAttack": { - name: "Sand Attack", - effect: "Areia é lançada no rosto do alvo, reduzindo sua Precisão." - }, - "headbutt": { - name: "Headbutt", - effect: "O usuário direciona sua cabeça e ataca, avançando diretamente sobre o alvo. Isso também pode fazer o alvo hesitar." - }, - "hornAttack": { - name: "Horn Attack", - effect: "O alvo é perfurado por um chifre pontudo e afiado para infligir dano." - }, - "furyAttack": { - name: "Fury Attack", - effect: "O alvo é perfurado repetidamente por um chifre ou bico, de duas a cinco vezes seguidas." - }, - "hornDrill": { - name: "Horn Drill", - effect: "O usuário perfura o alvo com um chifre que gira como uma broca. Se o golpe acertar, o alvo desmaia instantaneamente." - }, - "tackle": { - name: "Tackle", - effect: "Um ataque físico cujo o usuário vai para cima do alvo e lhe atinge com todo o seu corpo." - }, - "bodySlam": { - name: "Body Slam", - effect: "O usuário se lança para cima do alvo com todo o peso de seu corpo. Isso pode deixar o alvo paralisado." - }, - "wrap": { - name: "Wrap", - effect: "Um longo corpo, vinhas ou algo assim, são usados para embrulhar e apertar o alvo por quatro ou cinco turnos." - }, - "takeDown": { - name: "Take Down", - effect: "Uma investida corporal imprudente para golpear o alvo. Isso também fere um pouco o usuário." - }, - "thrash": { - name: "Thrash", - effect: "O usuário fica furioso e ataca com violência de dois a três turnos. O usuário então se torna confuso." - }, - "doubleEdge": { - name: "Double-Edge", - effect: "Uma investida imprudente e muito perigosa. Isso também fere bastante o usuário." - }, - "tailWhip": { - name: "Tail Whip", - effect: "O usuário balança sua cauda de maneira fofa, baixando a guarda do Pokémon adversário e diminuindo sua Defesa." - }, - "poisonSting": { - name: "Poison Sting", - effect: "O usuário perfura o alvo com um ferrão venenoso. Isso também pode envenenar o alvo." - }, - "twineedle": { - name: "Twineedle", - effect: "O usuário causa dano duas vezes seguidas, perfurando o alvo com dois ferrões. Isso também pode envenenar o alvo." - }, - "pinMissile": { - name: "Pin Missile", - effect: "Espinhos afiados são lançados no alvo em rápida sucessão. Eles acertam de duas a cinco vezes seguidas." - }, - "leer": { - name: "Leer", - effect: "O usuário lança um olhar intimidador no Pokémon oponente, reduzindo sua Defesa." - }, - "bite": { - name: "Bite", - effect: "O alvo é mordido ferozmente com presas afiadas. Isso também pode fazer o alvo hesitar." - }, - "growl": { - name: "Growl", - effect: "O usuário rosna de maneira agradável, baixando a guarda do Pokémon adversário. Isso diminui o Ataque do oponente." - }, - "roar": { - name: "Roar", - effect: "O alvo se assusta, retorna para a sua Poké Bola e um outro Pokémon toma o seu lugar. O combate é encerrado contra um único Pokémon selvagem." - }, - "sing": { - name: "Sing", - effect: "Uma suave canção de ninar é cantada com uma voz calma, colocando o alvo em sono profundo." - }, - "supersonic": { - name: "Supersonic", - effect: "O usuário gera estranhas ondas sonoras de seu corpo que confundem o alvo." - }, - "sonicBoom": { - name: "Sonic Boom", - effect: "O alvo é atingido com uma onda de choque destrutiva que sempre causa dano de 20 PS." - }, - "disable": { - name: "Disable", - effect: "Por quatro turnos, este movimento impede que o alvo utilize o último movimento usado por ele." - }, - "acid": { - name: "Acid", - effect: "Os Pokémon adversários são atacados com um jato de um forte ácido. Isso pode diminuir a Defesa Especial." - }, - "ember": { - name: "Ember", - effect: "O alvo é atacado com pequenas chamas. Também pode deixar o alvo com uma queimadura." - }, - "flamethrower": { - name: "Flamethrower", - effect: "O usuário queima o alvo com uma grande explosão de fogo. Também pode deixar o alvo com uma queimadura." - }, - "mist": { - name: "Mist", - effect: "O usuário esconde a si mesmo e seus aliados em uma neblina branca que impede que seus atributos sejam reduzidos por cinco turnos." - }, - "waterGun": { - name: "Water Gun", - effect: "O alvo é atingido por um disparo forte de água." - }, - "hydroPump": { - name: "Hydro Pump", - effect: "O alvo é atingido por um enorme volume de água lançado sob uma forte pressão." - }, - "surf": { - name: "Surf", - effect: "O usuário ataca tudo ao seu redor, inundando os arredores com uma onda gigante." - }, - "iceBeam": { - name: "Ice Beam", - effect: "O alvo é atingido por um raio de energia congelante. Isso também pode deixar o alvo congelado." - }, - "blizzard": { - name: "Blizzard", - effect: "Uma enorme nevasca é invocada para atacar o Pokémon oponente. Também pode deixar o alvo congelado." - }, - "psybeam": { - name: "Psybeam", - effect: "O alvo é atacado por um feixe peculiar. Isso também pode deixar o alvo confuso." - }, - "bubbleBeam": { - name: "Bubble Beam", - effect: "Um jato de bolhas é borrifado com intensidade no alvo. Isso também pode diminuir a Velocidade do alvo." - }, - "auroraBeam": { - name: "Aurora Beam", - effect: "O alvo é atingido por um raio colorido como o arco-íris. Isso também pode diminuir o Ataque do alvo." - }, - "hyperBeam": { - name: "Hyper Beam", - effect: "O alvo é atingido por um raio poderoso. O usuário não poderá se mover no próximo turno." - }, - "peck": { - name: "Peck", - effect: "O alvo é atingido por um bico ou chifre pontudo." - }, - "drillPeck": { - name: "Drill Peck", - effect: "Um ataque giratório com um bico afiado que age como uma broca." - }, - "submission": { - name: "Submission", - effect: "O usuário agarra o alvo e, imprudentemente, mergulha em direção ao chão. Isso também fere um pouco o usuário." - }, - "lowKick": { - name: "Low Kick", - effect: "Um poderoso chute baixo que derruba o alvo. Quanto mais pesado o alvo for, maior o poder do movimento." - }, - "counter": { - name: "Counter", - effect: "Um movimento de retaliação que neutraliza qualquer ataque físico, causando o dobro do dano recebido." - }, - "seismicToss": { - name: "Seismic Toss", - effect: "O alvo é lançado usando o poder da gravidade. Isso causa dano igual ao nível do usuário." - }, - "strength": { - name: "Strength", - effect: "O alvo é atingido por um soco dado com o máximo de força." - }, - "absorb": { - name: "Absorb", - effect: "Um ataque que drena nutrientes. O usuário recupera PS pela metade do dano infligido ao alvo." - }, - "megaDrain": { - name: "Mega Drain", - effect: "Um ataque que drena nutrientes. O usuário recupera PS pela metade do dano infligido ao alvo." - }, - "leechSeed": { - name: "Leech Seed", - effect: "Uma semente é plantada no alvo. Isso rouba alguns pontos de PS do alvo a cada turno." - }, - "growth": { - name: "Growth", - effect: "O corpo do usuário cresce de uma vez só, aumentando seu Ataque e Ataque Especial." - }, - "razorLeaf": { - name: "Razor Leaf", - effect: "Folhas superafiadas são lançadas para cortar os Pokémon adversários. Golpes críticos ocorrem mais facilmente." - }, - "solarBeam": { - name: "Solar Beam", - effect: "Neste ataque de dois turnos, o usuário absorve luz, então dispara um raio focalizado no próximo turno." - }, - "poisonPowder": { - name: "Poison Powder", - effect: "O usuário espalha uma nuvem de poeira tóxica que envenena o alvo." - }, - "stunSpore": { - name: "Stun Spore", - effect: "O usuário espalha uma nuvem de esporos entorpecentes que paralisam o alvo." - }, - "sleepPowder": { - name: "Sleep Powder", - effect: "O usuário espalha uma grande nuvem de pó sonífero ao redor do alvo." - }, - "petalDance": { - name: "Petal Dance", - effect: "O usuário ataca o alvo espalhando pétalas de dois a três turnos. O usuário então fica confuso." - }, - "stringShot": { - name: "String Shot", - effect: "O Pokémon adversário é enrolado com uma seda expelida da boca do usuário, o que reduz duramente sua Velocidade." - }, - "dragonRage": { - name: "Dragon Rage", - effect: "Este ataque atinge o alvo com uma onda de choque de pura fúria. Este ataque sempre causa 40 PS de dano." - }, - "fireSpin": { - name: "Fire Spin", - effect: "O alvo fica preso dentro de um vórtice feroz de fogo que se prolonga por quatro ou cinco turnos." - }, - "thunderShock": { - name: "Thunder Shock", - effect: "Um choque elétrico que cai sobre o alvo causando dano. Isso também pode deixar o alvo paralisado." - }, - "thunderbolt": { - name: "Thunderbolt", - effect: "Uma forte explosão elétrica que cai sobre o alvo. Também pode deixar o alvo com paralisia." - }, - "thunderWave": { - name: "Thunder Wave", - effect: "O usuário lança um choque elétrico fraco que paralisa o alvo." - }, - "thunder": { - name: "Thunder", - effect: "Um raio cruel despenca no alvo para causar dano. Isso também pode deixar o alvo com paralisia." - }, - "rockThrow": { - name: "Rock Throw", - effect: "Para atacar, o usuário pega uma pequena rocha e joga no alvo." - }, - "earthquake": { - name: "Earthquake", - effect: "O usuário desencadeia um terremoto que atinge todos os Pokémon ao seu redor." - }, - "fissure": { - name: "Fissure", - effect: "O usuário abre uma fissura no chão e joga o alvo nela. O alvo desmaiará instantaneamente se esse ataque acertar." - }, - "dig": { - name: "Dig", - effect: "O usuário se entoca, então ataca no próximo turno." - }, - "toxic": { - name: "Toxic", - effect: "Um movimento que deixa o alvo seriamente envenenado. Seu dano venenoso aumenta a cada turno." - }, - "confusion": { - name: "Confusion", - effect: "O alvo é atingido por uma força telecinética fraca. Isso também pode deixar o alvo confuso." - }, - "psychic": { - name: "Psychic", - effect: "O alvo é atingido por uma força telecinética poderosa. Isso também pode diminuir a Defesa Especial do alvo." - }, - "hypnosis": { - name: "Hypnosis", - effect: "O usuário implanta uma sugestão hipnótica para fazer o alvo cair em um sono profundo." - }, - "meditate": { - name: "Meditate", - effect: "O usuário medita para despertar o poder profundo do seu corpo para aumentar seu Ataque." - }, - "agility": { - name: "Agility", - effect: "O usuário relaxa o corpo para se mover rapidamente. Isso aumenta bruscamente sua Velocidade." - }, - "quickAttack": { - name: "Quick Attack", - effect: "O usuário ataca o alvo em uma velocidade que o torna quase invisível. Esse movimento tem prioridade." - }, - "rage": { - name: "Rage", - effect: "Enquanto este movimento estiver em uso, o poder da ira aumenta o Ataque toda vez que o usuário for atingido em batalha." - }, - "teleport": { - name: "Teleport", - effect: "Use para fugir de qualquer Pokémon selvagem." - }, - "nightShade": { - name: "Night Shade", - effect: "O usuário faz com que o alvo veja uma miragem assustadora. Isso causa dano igual ao nível do usuário." - }, - "mimic": { - name: "Mimic", - effect: "O usuário copia o último movimento do alvo. O movimento pode ser usado durante a batalha até que o Pokémon seja trocado." - }, - "screech": { - name: "Screech", - effect: "Um grito estridente que reduz duramente o atributo de Defesa do alvo." - }, - "doubleTeam": { - name: "Double Team", - effect: "Movendo-se rapidamente, o usuário faz cópias ilusórias para aumentar sua Evasão." - }, - "recover": { - name: "Recover", - effect: "Restaurando suas células, o usuário restaura metade do seu máximo de PS." - }, - "harden": { - name: "Harden", - effect: "O usuário enrijece todos os músculos do seu corpo para aumentar seu atributo de Defesa." - }, - "minimize": { - name: "Minimize", - effect: "O usuário comprime seu corpo para se parecer menor, o que aumenta bruscamente sua Evasão." - }, - "smokescreen": { - name: "Smokescreen", - effect: "O usuário lança uma nuvem obscura de fumaça ou tinta. Isso diminui a Precisão do alvo." - }, - "confuseRay": { - name: "Confuse Ray", - effect: "O alvo é exposto a um raio sinistro que leva à confusão." - }, - "withdraw": { - name: "Withdraw", - effect: "O usuário retrai seu corpo para dentro de seu casco duro, aumentando o seu atributo de Defesa." - }, - "defenseCurl": { - name: "Defense Curl", - effect: "O usuário se enrola para esconder os pontos fracos e aumentar seu atributo de Defesa." - }, - "barrier": { - name: "Barrier", - effect: "O usuário ergue uma barreira robusta que aumenta bruscamente a sua Defesa." - }, - "lightScreen": { - name: "Light Screen", - effect: "Uma incrível parede de luz é erguida para reduzir o dano de ataques especiais por cinco turnos." - }, - "haze": { - name: "Haze", - effect: "O usuário cria uma névoa que elimina todas as alterações de atributos de todos os Pokémon em batalha." - }, - "reflect": { - name: "Reflect", - effect: "Uma incrível parede de luz é erguida para reduzir o dano de ataques físicos por cinco turnos." - }, - "focusEnergy": { - name: "Focus Energy", - effect: "O usuário respira fundo e concentra-se para que golpes críticos ocorram mais facilmente." - }, - "bide": { - name: "Bide", - effect: "O usuário resiste a ataques por dois turnos, e revida causando o dobro do dano recebido." - }, - "metronome": { - name: "Metronome", - effect: "O usuário balança um dedo e estimula seu cérebro para usar aleatoriamente quase qualquer movimento." - }, - "mirrorMove": { - name: "Mirror Move", - effect: "O usuário contra-ataca o alvo imitando seu último movimento utilizado." - }, - "selfDestruct": { - name: "Self-Destruct", - effect: "O usuário ataca tudo ao seu redor causando uma explosão. O usuário desmaia por usar esse golpe." - }, - "eggBomb": { - name: "Egg Bomb", - effect: "Um ovo grande é arremessado contra o alvo com força máxima para causar dano." - }, - "lick": { - name: "Lick", - effect: "O alvo é lambido com uma língua comprida, causando dano. Isso também pode deixar o alvo paralisado." - }, - "smog": { - name: "Smog", - effect: "O alvo é atacado com uma descarga de gases poluentes. Isso também pode envenenar o alvo." - }, - "sludge": { - name: "Sludge", - effect: "Lodo insalubre é no arremessado no alvo. Isso também pode causar envenenamento." - }, - "boneClub": { - name: "Bone Club", - effect: "O usuário golpeia o alvo com um osso. Isso também pode o fazer o alvo hesitar." - }, - "fireBlast": { - name: "Fire Blast", - effect: "O alvo é atacado com uma intensa explosão de fogo consumidor. Isso também pode deixar o alvo com uma queimadura." - }, - "waterfall": { - name: "Waterfall", - effect: "O usuário investe no alvo e pode fazê-lo hesitar." - }, - "clamp": { - name: "Clamp", - effect: "O alvo é apertado e imprensado pela concha densa e robusta do usuário por quatro ou cinco turnos." - }, - "swift": { - name: "Swift", - effect: "Raios em formato de estrela são disparados no Pokémon adversário. Esse ataque nunca erra." - }, - "skullBash": { - name: "Skull Bash", - effect: "O usuário retrai sua cabeça para aumentar a Defesa no primeiro turno e depois se choca com o alvo no próximo turno." - }, - "spikeCannon": { - name: "Spike Cannon", - effect: "Espinhos afiados são lançados no alvo em rápida sucessão. Eles acertam de duas a cinco vezes seguidas." - }, - "constrict": { - name: "Constrict", - effect: "O alvo é atacado com longos e sorrateiros tentáculos ou vinhas. Isso também pode diminuir a Velocidade do alvo." - }, - "amnesia": { - name: "Amnesia", - effect: "O usuário esvazia sua mente para esquecer suas preocupações. Aumenta bruscamente a Defesa Especial." - }, - "kinesis": { - name: "Kinesis", - effect: "O usuário distrai o alvo entortando uma colher. Isso diminui a Precisão do alvo." - }, - "softBoiled": { - name: "Soft-Boiled", - effect: "O usuário restaura os próprios PS pela metade dos seus PS máximos." - }, - "highJumpKick": { - name: "High Jump Kick", - effect: "O alvo é atacado com uma joelhada de um pulo. Caso erre, o usuário se machuca." - }, - "glare": { - name: "Glare", - effect: "O usuário intimida o alvo com o padrão em sua barriga para causar paralisia." - }, - "dreamEater": { - name: "Dream Eater", - effect: "O usuário se alimenta dos sonhos de um alvo adormecido. Ele absorve metade do dano causado para curar seus PS." - }, - "poisonGas": { - name: "Poison Gas", - effect: "Uma nuvem de gás venenoso é assoprada no rosto do Pokémon adversário. Isso pode envenenar os alvos." - }, - "barrage": { - name: "Barrage", - effect: "Objetos redondos são lançados no alvo para acertar de duas a cinco vezes seguidas." - }, - "leechLife": { - name: "Leech Life", - effect: "O usuário drena o sangue do alvo. Os PS do usuário são restaurados pela metade do dano recebido pelo alvo." - }, - "lovelyKiss": { - name: "Lovely Kiss", - effect: "Com uma face assustadora, o usuário tenta beijar o alvo à força. Se conseguir, o alvo cai no sono." - }, - "skyAttack": { - name: "Sky Attack", - effect: "Um movimento de dois turnos onde golpes críticos ocorrem mais facilmente. Também pode fazer o alvo hesitar." - }, - "transform": { - name: "Transform", - effect: "O usuário transforma-se em uma cópia do alvo, conseguindo os mesmos movimentos do adversário." - }, - "bubble": { - name: "Bubble", - effect: "Um jato de incontáveis bolhas é disparado no Pokémon adversário. Isso também pode diminuir a velocidade do alvo." - }, - "dizzyPunch": { - name: "Dizzy Punch", - effect: "O alvo é atingido com socos dados ritmicamente. Isso também pode deixar alvo confuso." - }, - "spore": { - name: "Spore", - effect: "O usuário espalha rajadas de esporos que induzem sono ao alvo." - }, - "flash": { - name: "Flash", - effect: "O usuário pisca uma luz brilhante que reduz a Precisão do alvo." - }, - "psywave": { - name: "Psywave", - effect: "O alvo é atacado com uma estranha onda psíquica. O ataque varia de intensidade." - }, - "splash": { - name: "Splash", - effect: "O usuário apenas debate-se no chão e espirra água ao seu redor sem efeito algum..." - }, - "acidArmor": { - name: "Acid Armor", - effect: "O usuário altera sua estrutura celular para se liquefazer, aumentando bruscamente o seu atributo de Defesa." - }, - "crabhammer": { - name: "Crabhammer", - effect: "O alvo é martelado com uma grande pinça. Golpes críticos acertam mais facilmente." - }, - "explosion": { - name: "Explosion", - effect: "O usuário ataca tudo o que estiver à sua volta causando uma tremenda explosão. O usuário desmaia ao usar esse movimento." - }, - "furySwipes": { - name: "Fury Swipes", - effect: "O alvo é atacado com garras afiadas ou foices rapidamente, de duas a cinco vezes seguidas." - }, - "bonemerang": { - name: "Bonemerang", - effect: "O usuário arremessa o osso que segura. O osso gira, atingindo o alvo duas vezes, indo e voltando." - }, - "rest": { - name: "Rest", - effect: "O usuário dorme por dois turnos. Isso restaura completamente os PS do usuário e cura quaisquer condições negativas." - }, - "rockSlide": { - name: "Rock Slide", - effect: "Pedras grandes são arremessadas no Pokémon oponente para causar dano. Isso também pode fazer o Pokémon oponente hesitar." - }, - "hyperFang": { - name: "Hyper Fang", - effect: "O usuário morde o alvo com força, usando as suas afiadas presas frontais. Isso também pode fazer o alvo hesitar." - }, - "sharpen": { - name: "Sharpen", - effect: "O usuário abaixa o número de polígonos, ficando mais pontiagudo. Isso aumenta o seu atributo de Ataque." - }, - "conversion": { - name: "Conversion", - effect: "O usuário muda seu tipo para o mesmo tipo do movimento no topo da lista dos movimentos que conhece no momento." - }, - "triAttack": { - name: "Tri Attack", - effect: "O usuário golpeia com um ataque de três raios simultâneos. Também pode queimar, congelar ou paralisar o alvo." - }, - "superFang": { - name: "Super Fang", - effect: "O usuário mastiga com força o alvo usando suas afiadas presas frontais. Isso corta os PS do alvo pela metade." - }, - "slash": { - name: "Slash", - effect: "O alvo é atacado com um açoite de garras ou lâminas. Golpes críticos ocorrem mais facilmente." - }, - "substitute": { - name: "Substitute", - effect: "O usuário faz uma cópia de si mesmo usando parte de seus PS. A cópia serve como uma isca para o usuário." - }, - "struggle": { - name: "Struggle", - effect: "Um ataque usado em desespero, apenas se o usuário não tiver PP. Isso também causa um pouco de dano no usuário." - }, - "sketch": { - name: "Sketch", - effect: "Permite que o usuário aprenda permanentemente o último movimento usado pelo alvo. Assim que for usado, o Esboço desaparece." - }, - "tripleKick": { - name: "Triple Kick", - effect: "Um ataque de três chutes consecutivos que se fortalece a cada golpe acertado." - }, - "thief": { - name: "Thief", - effect: "O usuário ataca e rouba o item segurado por seu alvo simultaneamente. O usuário não pode roubar algo se ele já segurar um item." - }, - "spiderWeb": { - name: "Spider Web", - effect: "O usuário enlaça o alvo com uma teia fina e grudenta, para que ele não possa fugir da batalha." - }, - "mindReader": { - name: "Mind Reader", - effect: "O usuário pressente os movimentos do alvo com sua mente para ter certeza que o seu próximo ataque não o erre." - }, - "nightmare": { - name: "Nightmare", - effect: "Um alvo que dorme terá um pesadelo que causará dano a cada turno." - }, - "flameWheel": { - name: "Flame Wheel", - effect: "O usuário se envolve em fogo e dispara em direção ao alvo. Isso também pode causar queimaduras no oponente." - }, - "snore": { - name: "Snore", - effect: "Um ataque que só pode ser usado se o usuário estiver dormindo. O barulho alto pode fazer o alvo hesitar." - }, - "curse": { - name: "Curse", - effect: "Um movimento que funciona diferente com o tipo Fantasma do que com outros tipos." - }, - "flail": { - name: "Flail", - effect: "O usuário agita os membros sem rumo para atacar. Quanto menores forem os PS do usuário, melhor será o movimento." - }, - "conversion2": { - name: "Conversion 2", - effect: "O usuário muda a própria tipagem para se fazer resistente ao tipo do último ataque usado pelo oponente." - }, - "aeroblast": { - name: "Aeroblast", - effect: "Um vortex de vento é atirado em direção ao alvo para causar dano. Golpes críticos ocorrem mais facilmente." - }, - "cottonSpore": { - name: "Cotton Spore", - effect: "O usuário solta esporos de algodão que grudam no Pokémon adversário. Isso prejudica bruscamente a Velocidade do oponente." - }, - "reversal": { - name: "Reversal", - effect: "Um ataque total que fica mais forte quanto menos PS o usuário possuir." - }, - "spite": { - name: "Spite", - effect: "O usuário libera todo o seu rancor no último movimento usado pelo oponente, cortando 4 PP do mesmo." - }, - "powderSnow": { - name: "Powder Snow", - effect: "O usuário ataca com uma brisa congelante de Neve em Pó. Isso talvez possa congelar o Pokémon adversário." - }, - "protect": { - name: "Protect", - effect: "Permite que o usuário desvie de todos os ataques. A sua chance de falhar aumenta, caso seja usado em sucessão." - }, - "machPunch": { - name: "Mach Punch", - effect: "O usuário soca numa velocidade incompreensível. Esse movimento tem prioridade." - }, - "scaryFace": { - name: "Scary Face", - effect: "O usuário assusta o alvo com uma cara assustadora para prejudicar duramente a velocidade do oponente." - }, - "feintAttack": { - name: "Feint Attack", - effect: "O usuário se aproxima do alvo amigavelmente, então ataca com um soco inesperado. Esse ataque nunca erra." - }, - "sweetKiss": { - name: "Sweet Kiss", - effect: "O usuário beija o alvo com uma fofura doce e angelical, causando confusão." - }, - "bellyDrum": { - name: "Belly Drum", - effect: "O usuário maximiza seu Ataque em troca de PS igual à metade do seu PS máximo." - }, - "sludgeBomb": { - name: "Sludge Bomb", - effect: "Lodo insalubre é no arremessado no alvo. Isso também pode causar envenenamento." - }, - "mudSlap": { - name: "Mud-Slap", - effect: "O usuário arremessa lama no rosto do adversário para causar dano e prejudicar sua precisão." - }, - "octazooka": { - name: "Octazooka", - effect: "O usuário ataca jogando tinta no rosto ou nos olhos do alvo. Isso pode prejudicar a Precisão do alvo." - }, - "spikes": { - name: "Spikes", - effect: "O usuário lança armadilhas de espinhos nos pés da equipe adversária. As armadilhas ferem os Pokémon que são trocados em batalha." - }, - "zapCannon": { - name: "Zap Cannon", - effect: "O usuário atira uma explosão elétrica como um canhão para infligir dano e causar paralisia." - }, - "foresight": { - name: "Foresight", - effect: "Permite que um alvo do tipo Fantasma seja atingido por ataques do tipo Normal e Lutador. Isso também permite que um alvo evasivo seja acertado." - }, - "destinyBond": { - name: "Destiny Bond", - effect: "Quando esse movimento é usado, caso o usuário desmaie, o Pokémon que acertou o nocaute também desmaiará. A chance de falhar aumenta se usado em sucessão." - }, - "perishSong": { - name: "Perish Song", - effect: "Qualquer Pokémon que ouvir essa Canção desmaiará em três turnos, a não ser que ele seja retirado da batalha." - }, - "icyWind": { - name: "Icy Wind", - effect: "O usuário ataca com uma rajada de ar arrepiante. Isso também prejudica a Velocidade do Pokémon adversário." - }, - "detect": { - name: "Detect", - effect: "Permite que o usuário desvie de todos os ataques. A sua chance de falhar aumenta, caso seja usado em sucessão." - }, - "boneRush": { - name: "Bone Rush", - effect: "O usuário atinge o alvo com um osso duro de duas a cinco vezes seguidas." - }, - "lockOn": { - name: "Lock-On", - effect: "O usuário foca sua mira no alvo. Isso garante que o próximo ataque não erre o alvo." - }, - "outrage": { - name: "Outrage", - effect: "O usuário fica furioso e ataca com violência de dois a três turnos. O usuário então se torna confuso." - }, - "sandstorm": { - name: "Sandstorm", - effect: "Uma tempestade de areia é invocada durante 5 turnos para ferir todos os combatentes, exceto os tipos Pedra, Terra e Aço. Isso aumenta a Defesa Especial dos tipo Pedra." - }, - "gigaDrain": { - name: "Giga Drain", - effect: "Um ataque que drena nutrientes. O usuário recupera PS pela metade do dano infligido ao alvo." - }, - "endure": { - name: "Endure", - effect: "O usuário resiste a qualquer ataque com pelo menos 1 PS. A chance de falhar aumenta caso seja usado em sucessão." - }, - "charm": { - name: "Charm", - effect: "O usuário contempla o alvo com um olhar charmoso, fazendo-o ficar menos atento. Isso prejudica duramente o Ataque do oponente." - }, - "rollout": { - name: "Rollout", - effect: "O usuário rola continuamente em direção ao alvo por cinco turnos. O ataque fica mais forte a cada acerto." - }, - "falseSwipe": { - name: "False Swipe", - effect: "Um ataque moderado que previne que o alvo desmaie. O alvo é deixado com pelo menos 1 de PS." - }, - "swagger": { - name: "Swagger", - effect: "O usuário enfurece e confunde o alvo. Entretanto, isso também aumenta bruscamente o Ataque do alvo." - }, - "milkDrink": { - name: "Milk Drink", - effect: "O usuário restaura os próprios PS pela metade dos seus PS máximos." - }, - "spark": { - name: "Spark", - effect: "O usuário direciona uma investida carregada com eletricidade no alvo. Isso pode paralisar o alvo." - }, - "furyCutter": { - name: "Fury Cutter", - effect: "O alvo é cortado com foices ou garras. Esse ataque se torna mais poderoso se usado em sucessão." - }, - "steelWing": { - name: "Steel Wing", - effect: "O alvo é atingido com asas de aço. Isso também pode aumentar a Defesa do usuário." - }, - "meanLook": { - name: "Mean Look", - effect: "O usuário encara o alvo com um olhar sombrio e opressor. O alvo se torna incapaz de fugir." - }, - "attract": { - name: "Attract", - effect: "Caso o adversário seja do gênero oposto ao usuário, o alvo se apaixona e se torna menos suscetível a atacar." - }, - "sleepTalk": { - name: "Sleep Talk", - effect: "Enquanto está dormindo, o usuário usa aleatoriamente um dos movimentos que tem conhecimento." - }, - "healBell": { - name: "Heal Bell", - effect: "O usuário toca um sino calmante para curar condições de estados de todos os Pokémon aliados na equipe." - }, - "return": { - name: "Return", - effect: "Um ataque poderoso que fica mais poderoso à medida que o usuário gosta de seu Treinador." - }, - "present": { - name: "Present", - effect: "O usuário ataca o alvo entregando um presente com uma armadilha oculta. Entretanto, às vezes cura os PS do alvo." - }, - "frustration": { - name: "Frustration", - effect: "Um ataque poderoso que fica mais poderoso à medida que o usuário desgosta de seu Treinador." - }, - "safeguard": { - name: "Safeguard", - effect: "O usuário cria um campo protetor que previne condições de estado por cinco turnos." - }, - "painSplit": { - name: "Pain Split", - effect: "O usuário adiciona os próprios PS aos PS do alvo, então compartilha igualmente os PS combinados com o alvo." - }, - "sacredFire": { - name: "Sacred Fire", - effect: "O usuário é arrasado com uma rajada de fogo místico de grande intensidade. Isso pode deixar o alvo queimado." - }, - "magnitude": { - name: "Magnitude", - effect: "O usuário ataca tudo ao seu redor com um grande tremor. Seu poder varia." - }, - "dynamicPunch": { - name: "Dynamic Punch", - effect: "O usuário soca o alvo com sua força totalmente concentrada. Em caso de acerto, confundirá o alvo." - }, - "megahorn": { - name: "Megahorn", - effect: "Usando seu impressionante chifre resistente, o usuário golpeia o alvo sem trégua." - }, - "dragonBreath": { - name: "Dragon Breath", - effect: "O usuário sopra uma poderosa rajada que causa dano. Isso também pode paralisar o alvo." - }, - "batonPass": { - name: "Baton Pass", - effect: "O usuário troca de lugar com um Pokémon da equipe em espera e passa para ele quaisquer mudanças de atributos." - }, - "encore": { - name: "Encore", - effect: "O usuário enaltece o alvo para que ele continue usando o movimento que ele usou por último durante três turnos." - }, - "pursuit": { - name: "Pursuit", - effect: "Um ataque que causa o dobro do dano caso seja usado em um alvo que esteja sendo trocado para fora da batalha." - }, - "rapidSpin": { - name: "Rapid Spin", - effect: "Um ataque giratório que pode anular movimentos como Enlaçar, Embrulho, Sanguessuga e Espinhos." - }, - "sweetScent": { - name: "Sweet Scent", - effect: "Um aroma doce que prejudica duramente a Evasão do Pokémon adversário." - }, - "ironTail": { - name: "Iron Tail", - effect: "O alvo é esmagado com uma cauda dura como aço. Isso também pode prejudicar a Defesa do alvo." - }, - "metalClaw": { - name: "Metal Claw", - effect: "O alvo é cortado com garras de metal. Isso também pode aumentar o Ataque do usuário." - }, - "vitalThrow": { - name: "Vital Throw", - effect: "O usuário sempre ataca por último. Em troca, esse arremesso nunca erra." - }, - "morningSun": { - name: "Morning Sun", - effect: "O usuário restaura os próprios PS. A quantidade de PS recuperada varia conforme o clima." - }, - "synthesis": { - name: "Synthesis", - effect: "O usuário restaura os próprios PS. A quantidade de PS recuperada varia conforme o clima." - }, - "moonlight": { - name: "Moonlight", - effect: "O usuário restaura os próprios PS. A quantidade de PS recuperada varia conforme o clima." - }, - "hiddenPower": { - name: "Hidden Power", - effect: "Um ataque único que varia em tipo dependendo do Pokémon que está utilizando." - }, - "crossChop": { - name: "Cross Chop", - effect: "O usuário dá um golpe duplo com seus antebraços cruzados. Golpes críticos ocorrem mais facilmente." - }, - "twister": { - name: "Twister", - effect: "O usuário rapidamente cria um tornado vicioso para rasgar os Pokémon adversários. Isso pode fazê-los hesitar." - }, - "rainDance": { - name: "Rain Dance", - effect: "O usuário invoca uma chuva intensa que continua caindo por cinco turnos, fortalecendo os movimentos do tipo Água. Também enfraquece os movimentos do tipo fogo." - }, - "sunnyDay": { - name: "Sunny Day", - effect: "O usuário intensifica o sol por cinco turnos, fortalecendo os ataques do tipo Fogo. Também enfraquece os movimentos do tipo água." - }, - "crunch": { - name: "Crunch", - effect: "O usuário mastiga o alvo com presas afiadas. Isso também pode prejudicar a Defesa do alvo." - }, - "mirrorCoat": { - name: "Mirror Coat", - effect: "Um movimento de retaliação que contra-ataca qualquer ataque especial, infligindo o dobro do dano recebido." - }, - "psychUp": { - name: "Psych Up", - effect: "O usuário hipnotiza a si mesmo para copiar qualquer mudança de atributo feita pelo alvo." - }, - "extremeSpeed": { - name: "Extreme Speed", - effect: "O usuário ataca o alvo numa velocidade invisível ao olho nu. Esse movimento tem prioridade." - }, - "ancientPower": { - name: "Ancient Power", - effect: "O usuário ataca com um poder pré-histórico. Isso também pode fortalecer todos os atributos do usuário de uma vez." - }, - "shadowBall": { - name: "Shadow Ball", - effect: "O usuário arremessa uma esfera sombria no alvo. Isso também pode prejudicar a Defesa Especial do alvo." - }, - "futureSight": { - name: "Future Sight", - effect: "Dois turnos após esse movimento ser usado, uma grande quantidade de energia psíquica atinge o alvo." - }, - "rockSmash": { - name: "Rock Smash", - effect: "O usuário ataca com um soco. Isso também pode prejudicar o atributo de Defesa do alvo." - }, - "whirlpool": { - name: "Whirlpool", - effect: "O usuário prende o alvo num violento redemoinho por quatro ou cinco turnos." - }, - "beatUp": { - name: "Beat Up", - effect: "O usuário reúne todos os Pokémon da equipe para atacar o alvo. Quanto maior o número de Pokémon na equipe, maior será o número de ataques." - }, - "fakeOut": { - name: "Fake Out", - effect: "Um ataque que acerta primeiro e faz o alvo hesitar. Só funciona no primeiro turno do usuário em batalha." - }, - "uproar": { - name: "Uproar", - effect: "O usuário ataca gritando por três turnos. Durante esse tempo, ninguém pode cair no sono." - }, - "stockpile": { - name: "Stockpile", - effect: "O usuário carrega seu poder e fortalece a Defesa e a Defesa Especial. O movimento pode ser usado três vezes." - }, - "spitUp": { - name: "Spit Up", - effect: "O poder carregado usando o movimento Estocagem é liberado de uma só vez em um ataque. Quanto mais poder é armazenado, maior a força do movimento." - }, - "swallow": { - name: "Swallow", - effect: "O poder carregado usando o movimento Estocagem é absorvido pelo usuário para curar PS. Quanto mais poder for armazenado, mais PS serão recuperados." - }, - "heatWave": { - name: "Heat Wave", - effect: "O usuário ataca exalando um sopro ardente nos Pokémon adversários. Isso também pode deixar esses Pokémon queimados." - }, - "hail": { - name: "Hail", - effect: "O usuário invoca uma tempestade de granizo durante cinco turnos. Isso fere todos os Pokémon, exceto os tipo Gelo." - }, - "torment": { - name: "Torment", - effect: "O usuário atormenta o alvo, fazendo-o incapaz de usar o mesmo movimento duas vezes seguidas." - }, - "flatter": { - name: "Flatter", - effect: "Bajulação é usada para confundir o oponente. Entretanto, isso também fortalece o Ataque Especial do alvo." - }, - "willOWisp": { - name: "Will-O-Wisp", - effect: "O usuário atira uma sinistra chama azulada no alvo para causar uma queimadura." - }, - "memento": { - name: "Memento", - effect: "O usuário desmaia quando usa esse movimento. Em troca, prejudica duramente o Ataque e o Ataque Especial do alvo." - }, - "facade": { - name: "Facade", - effect: "Um ataque que dobra de poder caso o usuário esteja envenenado, queimado ou paralisado." - }, - "focusPunch": { - name: "Focus Punch", - effect: "O usuário foca sua mente antes de dar um soco. Esse ataque falhará caso o usuário seja atingido antes de executá-lo." - }, - "smellingSalts": { - name: "Smelling Salts", - effect: "Esse ataque causa o dobro do dano em um alvo paralisado. Entretanto, isso também cura a paralisia do alvo." - }, - "followMe": { - name: "Follow Me", - effect: "O usuário chama a atenção para si mesmo, fazendo todos os alvos mirarem apenas nele." - }, - "naturePower": { - name: "Nature Power", - effect: "Um ataque que faz uso do poder da natureza. Seus efeitos variam dependendo do ambiente ao redor do usuário." - }, - "charge": { - name: "Charge", - effect: "O usuário fortalece o poder do golpe do tipo Elétrico usado no próximo turno. Isso também fortalece a Defesa Especial do usuário." - }, - "taunt": { - name: "Taunt", - effect: "O alvo é provocado e fica em fúria, fazendo-o usar apenas movimentos de ataque por três turnos." - }, - "helpingHand": { - name: "Helping Hand", - effect: "O usuário auxilia um aliado, fortalecendo o poder do ataque desse aliado." - }, - "trick": { - name: "Trick", - effect: "O usuário pega o alvo de surpresa e faz uma troca de itens com o alvo." - }, - "rolePlay": { - name: "Role Play", - effect: "O usuário imita o alvo completamente, copiando a Habilidade natural do alvo." - }, - "wish": { - name: "Wish", - effect: "Um turno após esse movimento ter sido usado, os PS do usuário ou de seu substituinte são restaurados pela metade dos PS máximos do usuário." - }, - "assist": { - name: "Assist", - effect: "O usuário na pressa usa aleatoriamente um dos movimentos conhecidos pelos outros Pokémon na equipe." - }, - "ingrain": { - name: "Ingrain", - effect: "O usuário planta suas raízes para curar seus PS por turno. Devido ao enraizamento, ele não pode sair da batalha." - }, - "superpower": { - name: "Superpower", - effect: "O usuário ataca o alvo com grande poder. Entretanto, isso também prejudica o Ataque e Defesa do usuário." - }, - "magicCoat": { - name: "Magic Coat", - effect: "Uma barreira que reflete de volta ao alvo movimentos como Semente Drenante e movimentos que reduzem atributos." - }, - "recycle": { - name: "Recycle", - effect: "O usuário recicla um item segurado que já foi usado em batalha para que possa ser usado de novo." - }, - "revenge": { - name: "Revenge", - effect: "Um movimento atacante que inflige o dobro do dano se o usuário foi ferido pelo adversário no mesmo turno." - }, - "brickBreak": { - name: "Brick Break", - effect: "O usuário ataca com um corte veloz. Isso também quebra barreiras como Tela de Luz e Refletir." - }, - "yawn": { - name: "Yawn", - effect: "O usuário dá um grande e preguiçoso bocejo que acalma o alvo, fazendo-o cair no sono no próximo turno." - }, - "knockOff": { - name: "Knock Off", - effect: "O usuário dá um tapa no item segurado pelo alvo e esse item não poderá mais ser usado naquela batalha. Caso possua um item, o alvo receberá mais dano." - }, - "endeavor": { - name: "Endeavor", - effect: "Um movimento de ataque que corta os PS do alvo para que se equalize aos PS do usuário." - }, - "eruption": { - name: "Eruption", - effect: "O usuário ataca o Pokémon adversário com uma fúria explosiva. Quanto menor for os PS do usuário, menor será o poder do movimento." - }, - "skillSwap": { - name: "Skill Swap", - effect: "O usuário utiliza seu poder psíquico para trocar de Habilidade com o alvo." - }, - "imprison": { - name: "Imprison", - effect: "Se os Pokémon adversários conhecerem algum movimento também conhecido pelo usuário, eles não poderão usá-lo." - }, - "refresh": { - name: "Refresh", - effect: "O usuário descansa para curar a si mesmo de envenenamentos, queimaduras ou paralisias." - }, - "grudge": { - name: "Grudge", - effect: "Se o usuário desmaiar, o rancor do usuário vai esgotar completamente os PP do movimento que o nocauteou." - }, - "snatch": { - name: "Snatch", - effect: "O usuário rouba o efeito de qualquer tentativa de usar um movimento de cura ou mudança de atributo." - }, - "secretPower": { - name: "Secret Power", - effect: "Os efeitos adicionais deste movimento variam dependendo do ambiente ao redor do usuário." - }, - "dive": { - name: "Dive", - effect: "Mergulhando no primeiro turno, o usuário emerge e ataca no próximo turno." - }, - "armThrust": { - name: "Arm Thrust", - effect: "O usuário solta uma sequência de golpes braçais com as palmas abertas, de duas a cinco vezes seguidas." - }, - "camouflage": { - name: "Camouflage", - effect: "O tipo do usuário é mudado dependendo do ambiente ao seu redor, como na margem da água, rodeado por grama ou dentro de uma caverna." - }, - "tailGlow": { - name: "Tail Glow", - effect: "O usuário direciona seu olhar à luzes piscantes para focar sua mente, aumentando drasticamente o seu Ataque Especial." - }, - "lusterPurge": { - name: "Luster Purge", - effect: "O usuário libera uma explosão de luz letal. Isso pode prejudicar a Defesa Especial do alvo." - }, - "mistBall": { - name: "Mist Ball", - effect: "Um amalgamado de penas nevoentas envolvem e ferem o alvo. Isso pode prejudicar o Ataque Especial do alvo." - }, - "featherDance": { - name: "Feather Dance", - effect: "O usuário cobre o corpo do alvo com uma grande massa de penas que prejudicam duramente o Ataque do alvo." - }, - "teeterDance": { - name: "Teeter Dance", - effect: "O usuário performa uma dança desajeitada que confunde os Pokémon ao seu redor." - }, - "blazeKick": { - name: "Blaze Kick", - effect: "O usuário lança um chute que acerta golpes críticos com mais facilidade. Isso também pode deixar o alvo queimado." - }, - "mudSport": { - name: "Mud Sport", - effect: "O usuário chuta lama ao redor do campo de batalha. Isso enfraquece os golpes do tipo Elétrico por cinco turnos." - }, - "iceBall": { - name: "Ice Ball", - effect: "O usuário ataca continuamente por cinco turnos. O ataque se torna mais forte cada vez que acerta." - }, - "needleArm": { - name: "Needle Arm", - effect: "O usuário ataca selvagemente balançando seus braços pontiagudos. Isso pode fazer o alvo hesitar." - }, - "slackOff": { - name: "Slack Off", - effect: "O usuário relaxa, restaurando os próprios PS pela metade dos seus PS máximos." - }, - "hyperVoice": { - name: "Hyper Voice", - effect: "O usuário libera um horrível grito estridente com o poder de infligir dano." - }, - "poisonFang": { - name: "Poison Fang", - effect: "O usuário morde o alvo com suas presas tóxicas. Isso pode envenenar seriamente o alvo." - }, - "crushClaw": { - name: "Crush Claw", - effect: "O usuário retalha o alvo com garras duras e afiadas. Isso pode prejudicar a Defesa do alvo." - }, - "blastBurn": { - name: "Blast Burn", - effect: "O alvo é arrasado por uma ardente explosão. O usuário não pode se mover no próximo turno." - }, - "hydroCannon": { - name: "Hydro Cannon", - effect: "O alvo é acertado por uma explosão aquática. O usuário não pode se mover no próximo turno." - }, - "meteorMash": { - name: "Meteor Mash", - effect: "O alvo é acertado por um soco forte disparado como um meteoro. Isso pode fortalecer o Ataque do usuário." - }, - "astonish": { - name: "Astonish", - effect: "O usuário ataca o alvo enquanto grita de forma alarmante. Isso pode fazer o alvo hesitar." - }, - "weatherBall": { - name: "Weather Ball", - effect: "Um ataque que varia de poder e tipo dependendo do clima." - }, - "aromatherapy": { - name: "Aromatherapy", - effect: "O usuário lança uma fragrância calmante que cura todos os estados negativos afetando a equipe do usuário." - }, - "fakeTears": { - name: "Fake Tears", - effect: "O usuário finge chorar para perturbar o alvo, duramente prejudicando a sua Defesa Especial." - }, - "airCutter": { - name: "Air Cutter", - effect: "O usuário lança uma rajada de vento afiado para cortar seus oponentes. Golpes críticos ocorrem mais facilmente." - }, - "overheat": { - name: "Overheat", - effect: "O usuário ataca o alvo com seu poder máximo; contudo, o efeito colateral diminui o Ataque Especial do usuário." - }, - "odorSleuth": { - name: "Odor Sleuth", - effect: "Permite que um alvo do tipo Fantasma seja atingido por ataques do tipo Normal e Lutador. Isso também permite que um alvo evasivo seja acertado." - }, - "rockTomb": { - name: "Rock Tomb", - effect: "Rochas são arremessadas no alvo. Isso também diminui a Velocidade do alvo, impedindo que se movimente." - }, - "silverWind": { - name: "Silver Wind", - effect: "O alvo é atacado com escamas pulverulentas sopradas pelo vento. Isso pode aumentar todos os atributos do usuário." - }, - "metalSound": { - name: "Metal Sound", - effect: "Um som horrível que lembra metal sendo raspado, isso prejudica duramente a Defesa Especial do alvo." - }, - "grassWhistle": { - name: "Grass Whistle", - effect: "O usuário toca uma agradável melodia que acalma o alvo, fazendo-o entrar em sono profundo." - }, - "tickle": { - name: "Tickle", - effect: "O usuário faz cócegas no alvo, o fazendo rir, reduzindo seus atributos de Ataque e Defesa." - }, - "cosmicPower": { - name: "Cosmic Power", - effect: "O usuário absorve energia mística do espaço para aumentar sua Defesa e Defesa Especial." - }, - "waterSpout": { - name: "Water Spout", - effect: "O usuário jorra água para ferir os Pokémon oponentes. Quanto menos PS o usuário tiver, menor será o poder do movimento." - }, - "signalBeam": { - name: "Signal Beam", - effect: "O usuário ataca com um raio de luz sinistro. Isso também pode confundir o alvo." - }, - "shadowPunch": { - name: "Shadow Punch", - effect: "O usuário dispara um soco dentre as sombras. Esse ataque nunca erra." - }, - "extrasensory": { - name: "Extrasensory", - effect: "O usuário ataca com um poder estranho e incompreensível. Isso também pode fazer o alvo hesitar." - }, - "skyUppercut": { - name: "Sky Uppercut", - effect: "O usuário ataca o alvo com um gancho de direita poderoso direcionado ao céu." - }, - "sandTomb": { - name: "Sand Tomb", - effect: "O usuário prende o alvo dentro de uma violenta tempestade de areia por quatro ou cinco turnos." - }, - "sheerCold": { - name: "Sheer Cold", - effect: "O alvo desmaia instantaneamente. É mais difícil de acertar se o usuário não for um tipo Gelo." - }, - "muddyWater": { - name: "Muddy Water", - effect: "O usuário ataca atirando água barrenta nos Pokémon adversários. Isso também pode diminuir a Precisão deles." - }, - "bulletSeed": { - name: "Bullet Seed", - effect: "O usuário atira sementes com grande força no alvo de duas a cinco vezes seguidas." - }, - "aerialAce": { - name: "Aerial Ace", - effect: "O usuário confunde o alvo com sua velocidade e então ataca. Esse ataque nunca erra." - }, - "icicleSpear": { - name: "Icicle Spear", - effect: "O usuário arremessa lanças afiadas de gelo no alvo de duas a cinco vezes seguidas." - }, - "ironDefense": { - name: "Iron Defense", - effect: "O usuário endurece a superfície de seu corpo como aço, bruscamente fortalecendo sua Defesa." - }, - "block": { - name: "Block", - effect: "O usuário bloqueia o caminho do alvo com seus braços amplamente abertos para prevenir escapatória." - }, - "howl": { - name: "Howl", - effect: "O usuário uiva alto para fortalecer seu espirito, o que aumenta seu Ataque." - }, - "dragonClaw": { - name: "Dragon Claw", - effect: "O usuário corta o alvo com grandes garras afiadas." - }, - "frenzyPlant": { - name: "Frenzy Plant", - effect: "O usuário esmaga o alvo com uma enorme árvore. O usuário não pode se mover no próximo turno." - }, - "bulkUp": { - name: "Bulk Up", - effect: "O usuário flexiona os seus músculos para fortalecer seu corpo, aumentando os seus atributos de Ataque e Defesa." - }, - "bounce": { - name: "Bounce", - effect: "O usuário pula alto e então cai em cima do alvo no segundo turno. Isso também pode deixar o alvo com paralisia." - }, - "mudShot": { - name: "Mud Shot", - effect: "O usuário ataca arremessando uma bola de lama ao alvo. Isso também diminui a Velocidade do alvo." - }, - "poisonTail": { - name: "Poison Tail", - effect: "O usuário acerta o alvo com sua cauda. Isso também pode envenenar o alvo. Golpes críticos ocorrem mais facilmente." - }, - "covet": { - name: "Covet", - effect: "O usuário, despretensiosamente, se aproxima do alvo e então rouba o item segurado pelo alvo." - }, - "voltTackle": { - name: "Volt Tackle", - effect: "O usuário eletrifica a si próprio e então ataca. Isso também fere muito o usuário. Pode deixar o alvo com paralisia." - }, - "magicalLeaf": { - name: "Magical Leaf", - effect: "O usuário espalha folhas peculiares que perseguem o alvo. Esse ataque nunca erra." - }, - "waterSport": { - name: "Water Sport", - effect: "O usuário encharca o campo de batalha. Isso enfraquece os movimentos do tipo Fogo por cinco turnos." - }, - "calmMind": { - name: "Calm Mind", - effect: "O usuário silenciosamente focaliza sua mente e acalma o seu espírito para aumentar ambos os atributos especiais." - }, - "leafBlade": { - name: "Leaf Blade", - effect: "O usuário empunha uma folha afiada como uma espada e ataca cortando o alvo. Golpes críticos acertam mais facilmente." - }, - "dragonDance": { - name: "Dragon Dance", - effect: "O usuário, energicamente, performa uma dança mística e poderosa para aumentar seu Ataque e Velocidade." - }, - "rockBlast": { - name: "Rock Blast", - effect: "O usuário arremessa rochas duras no alvo. Duas a cinco rochas são lançadas em sequência." - }, - "shockWave": { - name: "Shock Wave", - effect: "O usuário atinge o alvo com um repentino ataque de eletricidade. Esse ataque nunca erra." - }, - "waterPulse": { - name: "Water Pulse", - effect: "O usuário ataca o alvo com uma pulsante explosão de água. Talvez isso confunda o alvo." - }, - "doomDesire": { - name: "Doom Desire", - effect: "Dois turnos após esse movimento ter sido usado, o usuário explode o alvo com um feixe de luz concentrado." - }, - "psychoBoost": { - name: "Psycho Boost", - effect: "O usuário ataca o alvo com poder máximo. O efeito colateral do ataque prejudica duramente o Ataque Especial do usuário." - }, - "roost": { - name: "Roost", - effect: "O usuário pousa e descansa seu corpo. Isso restaura os PS do usuário pela metade do seu máximo de PS." - }, - "gravity": { - name: "Gravity", - effect: "Permite que Pokémon do tipo Voador ou Pokémon com a Habilidade Levitação possam ser atingidos por golpes do tipo Terra. Golpes que envolvam voar ficam inutilizados." - }, - "miracleEye": { - name: "Miracle Eye", - effect: "Permite que um alvo tipo Sombrio seja atingido por ataques do tipo Psíquico. Isso também permite que um alvo evasivo possa ser atingido." - }, - "wakeUpSlap": { - name: "Wake-Up Slap", - effect: "Esse ataque causa muito dano em um alvo que estiver dormindo; entretanto, isso também acorda o alvo." - }, - "hammerArm": { - name: "Hammer Arm", - effect: "O usuário balança seus braços e atinge com seus fortes e pesados punhos. Isso diminui a Velocidade do usuário." - }, - "gyroBall": { - name: "Gyro Ball", - effect: "O alvo é acertado com um giro em alta velocidade. Quanto mais lento for o usuário comparado ao alvo, maior será o poder do movimento." - }, - "healingWish": { - name: "Healing Wish", - effect: "O usuário desmaia. Em troca, o Pokémon que tomará seu lugar terá seus PS restaurados e condições negativas curadas." - }, - "brine": { - name: "Brine", - effect: "Se os PS do alvo estiverem pela metade ou menos, esse ataque terá o dobro do poder." - }, - "naturalGift": { - name: "Natural Gift", - effect: "O usuário canaliza o poder para atacar usando a Fruta que está segurando. A Fruta determina o tipo e o poder do movimento." - }, - "feint": { - name: "Feint", - effect: "Um ataque que acerta um alvo usando Proteção ou Detectar. Isso também extingue os efeitos desses movimentos." - }, - "pluck": { - name: "Pluck", - effect: "O usuário bica o alvo. Caso o alvo esteja segurando uma Fruta, o usuário a come e ganha seu efeito." - }, - "tailwind": { - name: "Tailwind", - effect: "O usuário forma um turbulento redemoinho que aumenta a Velocidade do usuário e de seus seus aliados por quatro turnos." - }, - "acupressure": { - name: "Acupressure", - effect: "O usuário aplica pressão em pontos de estresse, bruscamente fortalecendo um de seus atributos ou de seus aliados." - }, - "metalBurst": { - name: "Metal Burst", - effect: "O usuário revida com muito mais força contra o alvo que lhe infligiu dano por ultimo." - }, - "uTurn": { - name: "U-turn", - effect: "Depois de fazer o seu ataque, o usuário corre de volta para trocar de lugar com um Pokémon da própria equipe." - }, - "closeCombat": { - name: "Close Combat", - effect: "O usuário luta com o alvo de perto sem se defender. Isso diminui a Defesa e Defesa Especial do usuário." - }, - "payback": { - name: "Payback", - effect: "O usuário acumula poder, então ataca. Se o usuário se mover depois do alvo, o poder deste ataque será dobrado." - }, - "assurance": { - name: "Assurance", - effect: "Caso o alvo já tenha recebido dano no mesmo turno, o poder desse ataque é dobrado." - }, - "embargo": { - name: "Embargo", - effect: "Este movimento previne que o alvo use o seu item por cinco turnos. Seu Treinador também estará restrito de usar itens nele." - }, - "fling": { - name: "Fling", - effect: "O usuário arremessa seu item no alvo para atacar. O poder e o efeito deste movimento dependem do item utilizado." - }, - "psychoShift": { - name: "Psycho Shift", - effect: "Usando seu poder psíquico da sugestão, o usuário transfere suas condições de estado para o alvo." - }, - "trumpCard": { - name: "Trump Card", - effect: "Quanto menos PP este movimento tiver, maior será sua força." - }, - "healBlock": { - name: "Heal Block", - effect: "Por cinco turnos, o usuário previne que a equipe adversária use quaisquer movimentos, Habilidades, ou itens segurados para recuperar PS." - }, - "wringOut": { - name: "Wring Out", - effect: "O usuário torce o alvo com força bruta. Quando mais PS o alvo possuir, maior será o poder do movimento." - }, - "powerTrick": { - name: "Power Trick", - effect: "O usuário usufrui de seu poder psíquico para trocar os atributos de seu Ataque com sua Defesa." - }, - "gastroAcid": { - name: "Gastro Acid", - effect: "O usuário arremessa os ácidos de seu estômago no alvo. O fluido elimina o efeito da habilidade do alvo." - }, - "luckyChant": { - name: "Lucky Chant", - effect: "O usuário recita um encantamento em direção ao céu, prevenindo que os Pokémon oponentes acertem golpes críticos." - }, - "meFirst": { - name: "Me First", - effect: "O usuário corta a ação do alvo para roubar seu movimento e usá-lo com maior poder. Esse movimento falha caso não seja usado primeiro." - }, - "copycat": { - name: "Copycat", - effect: "O usuário imita o movimento imediatamente usado antes dele. O movimento falha caso nenhum outro movimento tenha sido usado." - }, - "powerSwap": { - name: "Power Swap", - effect: "O usuário usufrui de seu poder psíquico para trocar mudanças de atributos feitas ao seu Ataque e Ataque Especial com os do alvo." - }, - "guardSwap": { - name: "Guard Swap", - effect: "O usuário usufrui de seu poder psíquico para trocar mudanças de atributos feitas à sua Defesa e Defesa Especial com as do alvo." - }, - "punishment": { - name: "Punishment", - effect: "Quanto mais os atributos do alvo estiverem fortalecidos, maior será o poder desse movimento." - }, - "lastResort": { - name: "Last Resort", - effect: "Este movimento somente pode ser usado depois de o usuário ter usado todos os outros movimentos que ele conhece em batalha." - }, - "worrySeed": { - name: "Worry Seed", - effect: "Uma semente que causa preocupação é plantada no alvo. Isso previne o sono, fazendo a Habilidade do alvo se tornar Insônia." - }, - "suckerPunch": { - name: "Sucker Punch", - effect: "Esse movimento permite que o usuário ataque primeiro. Esse ataque falha caso o alvo não esteja preparando um ataque." - }, - "toxicSpikes": { - name: "Toxic Spikes", - effect: "O usuário planta uma armadilha de espinhos venenosos nos pés da equipe adversária. Os espinhos envenenam os Pokémon que entram em batalha." - }, - "heartSwap": { - name: "Heart Swap", - effect: "O usuário usufrui de seu poder psíquico para trocar mudanças de atributos com o oponente." - }, - "aquaRing": { - name: "Aqua Ring", - effect: "O usuário envolve-se em um véu feito de água. Ele recupera um pouco de PS a cada turno." - }, - "magnetRise": { - name: "Magnet Rise", - effect: "O usuário levita usando magnetismo gerado por eletricidade por cinco turnos." - }, - "flareBlitz": { - name: "Flare Blitz", - effect: "O usuário cobre o próprio corpo com chamas e avança no alvo. Isso também fere muito o usuário e pode deixar o alvo com uma queimadura." - }, - "forcePalm": { - name: "Force Palm", - effect: "O alvo é atacado com uma onda de choque. Isso também pode deixar o alvo com paralisia." - }, - "auraSphere": { - name: "Aura Sphere", - effect: "O usuário libera uma explosão de poder da aura de seu corpo no alvo. Esse ataque nunca erra." - }, - "rockPolish": { - name: "Rock Polish", - effect: "O usuário pule seu corpo para reduzir entraves. Isso pode aumentar bruscamente a Velocidade." - }, - "poisonJab": { - name: "Poison Jab", - effect: "O alvo é perfurado com um tentáculo ou braço banhado com veneno. Isso também pode envenenar o alvo." - }, - "darkPulse": { - name: "Dark Pulse", - effect: "O usuário descarrega uma horrível aura imbuída com pensamentos obscuros. Isso também pode fazer o alvo hesitar." - }, - "nightSlash": { - name: "Night Slash", - effect: "O usuário retalha o alvo no instante que surge uma oportunidade. Golpes críticos ocorrem mais facilmente." - }, - "aquaTail": { - name: "Aqua Tail", - effect: "O usuário ataca balançando sua cauda como se fosse uma violenta e furiosa tempestade." - }, - "seedBomb": { - name: "Seed Bomb", - effect: "O usuário atira uma barragem de sementes de casca dura acertando o alvo por cima." - }, - "airSlash": { - name: "Air Slash", - effect: "O usuário ataca com uma lâmina de ar que corta até mesmo o céu. Isso pode fazer o alvo hesitar." - }, - "xScissor": { - name: "X-Scissor", - effect: "O usuário cutila o alvo cruzando suas foices ou garras como se elas fossem um par de tesouras." - }, - "bugBuzz": { - name: "Bug Buzz", - effect: "O usuário gera uma dolorosa onda de som. Isso também pode diminuir o atributo de Defesa Especial do alvo." - }, - "dragonPulse": { - name: "Dragon Pulse", - effect: "O alvo é atacado com uma onda de choque gerada pela boca aberta do usuário." - }, - "dragonRush": { - name: "Dragon Rush", - effect: "O usuário ataca o alvo enquanto demonstra uma ameaça esmagadora. Isso também pode fazer o alvo hesitar." - }, - "powerGem": { - name: "Power Gem", - effect: "O usuário ataca com um raio de luz que brilha como se fosse feito de pedras preciosas." - }, - "drainPunch": { - name: "Drain Punch", - effect: "Um soco que drena energia. Os PS do usuário são curados pela metade do dano infligido ao alvo." - }, - "vacuumWave": { - name: "Vacuum Wave", - effect: "O usuário rodopia seus punhos para lançar uma onda de vácuo puro no alvo. Esse movimento tem prioridade." - }, - "focusBlast": { - name: "Focus Blast", - effect: "O usuário eleva seu foco mental e libera o seu poder. Isso também pode diminuir a Defesa Especial do alvo." - }, - "energyBall": { - name: "Energy Ball", - effect: "O usuário extrai o poder da natureza e dispara no alvo. Isso também pode diminuir a Defesa Especial do alvo." - }, - "braveBird": { - name: "Brave Bird", - effect: "O usuário dobra suas asas e avança de uma baixa altitude. Isso também fere muito o usuário." - }, - "earthPower": { - name: "Earth Power", - effect: "O usuário faz o solo debaixo do alvo emergir com poder. Isso também pode diminuir a Defesa Especial do alvo." - }, - "switcheroo": { - name: "Switcheroo", - effect: "O usuário troca de itens com o alvo mais rápido do que os olhos podem acompanhar." - }, - "gigaImpact": { - name: "Giga Impact", - effect: "O usuário investe no alvo usando absolutamente todo o seu poder. O usuário não poderá se mover no próximo turno." - }, - "nastyPlot": { - name: "Nasty Plot", - effect: "O usuário estimula seu cérebro com pensamentos malvados. Isso bruscamente aumenta o Ataque Especial do usuário." - }, - "bulletPunch": { - name: "Bullet Punch", - effect: "O usuário atinge o alvo com socos fortes tão rápidos como tiros. Esse movimento tem prioridade." - }, - "avalanche": { - name: "Avalanche", - effect: "Um ataque que inflige o dobro do dano caso o usuário já tenha sido ferido pelo alvo no mesmo turno." - }, - "iceShard": { - name: "Ice Shard", - effect: "O usuário congela rapidamente cristais de gelo e os arremessa no alvo. Esse movimento tem prioridade." - }, - "shadowClaw": { - name: "Shadow Claw", - effect: "O usuário corta com uma garra afiada feita de sombras. Golpes críticos ocorrem mais facilmente." - }, - "thunderFang": { - name: "Thunder Fang", - effect: "O usuário morde com presas eletrificadas. Isso também pode fazer o alvo hesitar ou deixá-lo paralisado." - }, - "iceFang": { - name: "Ice Fang", - effect: "O usuário morde com presas infundidas com gelo. Isso também pode fazer o alvo hesitar ou deixá-lo congelado." - }, - "fireFang": { - name: "Fire Fang", - effect: "O usuário morde com presas cobertas de fogo. Isso também pode fazer o alvo hesitar ou deixá-lo queimado." - }, - "shadowSneak": { - name: "Shadow Sneak", - effect: "O usuário estende a própria sombra e ataca o alvo por trás. Esse movimento tem prioridade." - }, - "mudBomb": { - name: "Mud Bomb", - effect: "O usuário lança uma bola concentrada de lama para atacar. Isso também pode diminuir a Precisão do alvo." - }, - "psychoCut": { - name: "Psycho Cut", - effect: "O usuário corta o alvo com lâminas materializadas com poder psíquico. Golpes críticos ocorrem mais facilmente." - }, - "zenHeadbutt": { - name: "Zen Headbutt", - effect: "O usuário foca sua força de vontade em sua cabeça e ataca o alvo. Isso também pode fazer o alvo hesitar." - }, - "mirrorShot": { - name: "Mirror Shot", - effect: "O usuário libera um clarão de energia vindo de seu corpo polido no alvo. Isso pode diminuir a Precisão do alvo." - }, - "flashCannon": { - name: "Flash Cannon", - effect: "O usuário reúne toda a sua energia de luz e lança de uma só vez. Isso também pode diminuir a Defesa Especial do alvo." - }, - "rockClimb": { - name: "Rock Climb", - effect: "O usuário ataca o alvo o esmagando com uma incrível força bruta. Isso pode confundir o alvo." - }, - "defog": { - name: "Defog", - effect: "Um vento forte que dispersa as barreiras do alvo como Refletir ou Tela de Luz. Isso também diminui a Evasiva do oponente." - }, - "trickRoom": { - name: "Trick Room", - effect: "O usuário cria uma área bizarra onde Pokémon mais lentos se movem primeiro por cinco turnos." - }, - "dracoMeteor": { - name: "Draco Meteor", - effect: "Cometas são invocados do céu e caem sobre o alvo. O efeito colateral do ataque duramente prejudica o atributo de Ataque Especial do usuário." - }, - "discharge": { - name: "Discharge", - effect: "O usuário atinge tudo ao seu redor liberando uma explosão de eletricidade. Isso também pode causar paralisia." - }, - "lavaPlume": { - name: "Lava Plume", - effect: "O usuário queima tudo ao seu redor com um inferno de chamas escarlate. Isso também pode causar uma queimadura em alvos atingidos." - }, - "leafStorm": { - name: "Leaf Storm", - effect: "O usuário cria uma tempestade de folhas ao redor do alvo. Isso diminui duramente o Ataque Especial do usuário." - }, - "powerWhip": { - name: "Power Whip", - effect: "O usuário rodopia suas vinhas ou tentáculos com vigor para chicotear o alvo cruelmente." - }, - "rockWrecker": { - name: "Rock Wrecker", - effect: "O usuário lança uma grande rocha no alvo. O usuário não pode se mover no próximo turno." - }, - "crossPoison": { - name: "Cross Poison", - effect: "Um ataque cortante com uma lâmina envenenada que pode envenenar o alvo. Golpes críticos ocorrem mais facilmente." - }, - "gunkShot": { - name: "Gunk Shot", - effect: "O usuário atira lixo repugnante no alvo. Isso também pode envenenar o alvo." - }, - "ironHead": { - name: "Iron Head", - effect: "O usuário acerta o alvo com sua cabeça dura como aço. Isso também pode fazer o alvo hesitar." - }, - "magnetBomb": { - name: "Magnet Bomb", - effect: "O usuário lança bombas de aço que grudam no alvo. Esse ataque nunca erra." - }, - "stoneEdge": { - name: "Stone Edge", - effect: "O usuário perfura o alvo por baixo com pedras afiadas. Golpes críticos ocorrem mais facilmente." - }, - "captivate": { - name: "Captivate", - effect: "Se algum dos Pokémon oponentes forem do gênero oposto do usuário, ele se encanta, o que diminui duramente o seu Ataque Especial." - }, - "stealthRock": { - name: "Stealth Rock", - effect: "O usuário planta armadilhas de pedras levitantes ao redor da equipe oponente. A armadilha fere os Pokémon oponentes que entrarem em campo." - }, - "grassKnot": { - name: "Grass Knot", - effect: "O usuário planta uma armadilha com grama e o alvo tropeça nela. Quanto mais pesado o alvo for, maior é o poder do movimento." - }, - "chatter": { - name: "Chatter", - effect: "O usuário ataca o alvo com ondas de som vindas de sua tagarelagem ensurdecedora. Isso confunde o alvo." - }, - "judgment": { - name: "Judgment", - effect: "O usuário libera incontáveis tiros de luz no alvo. A tipagem desse movimento varia dependendo do tipo de Placa que o usuário está segurando." - }, - "bugBite": { - name: "Bug Bite", - effect: "O usuário morde o alvo. Caso o alvo esteja segurando uma Fruta, o usuário a come e ganha seu efeito." - }, - "chargeBeam": { - name: "Charge Beam", - effect: "O usuário ataca com uma carga elétrica. O usuário pode usar a eletricidade que sobrar para fortalecer seu Ataque Especial." - }, - "woodHammer": { - name: "Wood Hammer", - effect: "O usuário usa seu corpo rígido para golpear o alvo. Isso também fere muito o usuário." - }, - "aquaJet": { - name: "Aqua Jet", - effect: "O usuário ataca o alvo em uma velocidade que o torna quase invisível. Esse movimento tem prioridade." - }, - "attackOrder": { - name: "Attack Order", - effect: "O usuário ordena que seus subordinados ataquem o alvo. Golpes críticos ocorrem mais facilmente." - }, - "defendOrder": { - name: "Defend Order", - effect: "O usuário ordena que seus subordinados protejam seu corpo, aumentando seus atributos de Defesa e Defesa Especial." - }, - "healOrder": { - name: "Heal Order", - effect: "O usuário ordena que seus subordinados o curem. O usuário restaura até metade de seus PS máximos." - }, - "headSmash": { - name: "Head Smash", - effect: "O usuário usa toda a sua força para acertar uma perigosa cabeçada destrutiva no alvo. Isso também fere terrivelmente o usuário." - }, - "doubleHit": { - name: "Double Hit", - effect: "O usuário golpeia o alvo com uma longa cauda, vinhas, ou um tentáculo. O alvo é acertado duas vezes seguidas." - }, - "roarOfTime": { - name: "Roar of Time", - effect: "O usuário bombardeia o alvo com tamanho poder que distorce até mesmo o tempo; porém, não se moverá no próximo turno." - }, - "spacialRend": { - name: "Spacial Rend", - effect: "O usuário rasga a existência do alvo junto com o espaço ao seu redor. Golpes críticos ocorrem mais facilmente." - }, - "lunarDance": { - name: "Lunar Dance", - effect: "O usuário desmaia. Em troca, o Pokémon que tomará seu lugar terá suas condições negativas e PS restaurados." - }, - "crushGrip": { - name: "Crush Grip", - effect: "O alvo é esmagado com grande força. Quanto mais PS o alvo possuir, maior será o poder desse movimento." - }, - "magmaStorm": { - name: "Magma Storm", - effect: "O alvo é preso dentro de um turbilhão de fogo que arde de quatro a cinco turnos." - }, - "darkVoid": { - name: "Dark Void", - effect: "Pokémon oponentes são sugados para dentro de um mundo de total escuridão que os faz dormir." - }, - "seedFlare": { - name: "Seed Flare", - effect: "O usuário emite uma onda de choque de seu corpo para atacar o alvo. Isso também pode diminuir duramente a Defesa Especial do alvo." - }, - "ominousWind": { - name: "Ominous Wind", - effect: "O usuário ataca o alvo com uma rajada de vento repulsivo. Talvez aumente todos os atributos do usuário de uma vez." - }, - "shadowForce": { - name: "Shadow Force", - effect: "O usuário desaparece, então atinge o alvo no próximo turno. Esse movimento acerta o alvo mesmo que ele proteja a si mesmo." - }, - "honeClaws": { - name: "Hone Claws", - effect: "O usuário afia suas garras para fortalecer seu Ataque e sua Precisão." - }, - "wideGuard": { - name: "Wide Guard", - effect: "O usuário e seus aliados são protegidos de ataques de longo alcance por um turno." - }, - "guardSplit": { - name: "Guard Split", - effect: "O usuário usufrui de seu poder psíquico para equalizar seus atributos de Defesa e Defesa Especial com o alvo." - }, - "powerSplit": { - name: "Power Split", - effect: "O usuário usufrui de seu poder psíquico para igualar seus atributos de Ataque e Ataque Especial com o alvo." - }, - "wonderRoom": { - name: "Wonder Room", - effect: "O usuário cria uma área bizarra onde os atributos de Defesa e Defesa Especial dos Pokémon são trocados por cinco turnos." - }, - "psyshock": { - name: "Psyshock", - effect: "O usuário materializa uma estranha onda psíquica para atacar o alvo. Esse ataque inflige dano físico." - }, - "venoshock": { - name: "Venoshock", - effect: "O usuário encharca o alvo com um líquido venenoso especial. O poder desse movimento dobra se o alvo estiver envenenado." - }, - "autotomize": { - name: "Autotomize", - effect: "O usuário perde parte de seu corpo para se tornar mais leve e bruscamente aumentar seu atributo de Velocidade." - }, - "ragePowder": { - name: "Rage Powder", - effect: "O usuário espalha uma nuvem de pó irritante para chamar a atenção para si mesmo. Oponentes miram apenas no usuário." - }, - "telekinesis": { - name: "Telekinesis", - effect: "O usuário faz o alvo flutuar usando o seu poder psíquico. O alvo fica propício a ser atingido por três turnos." - }, - "magicRoom": { - name: "Magic Room", - effect: "O usuário cria uma área bizarra onde os itens dos Pokémon perdem seus efeitos por cinco turnos." - }, - "smackDown": { - name: "Smack Down", - effect: "O usuário atira uma pedra ou algum projétil similar para atacar o oponente. Um Pokémon voador irá cair no chão quando for acertado." - }, - "stormThrow": { - name: "Storm Throw", - effect: "O usuário atinge o alvo com um golpe poderoso. Esse ataque sempre resulta em um golpe critico." - }, - "flameBurst": { - name: "Flame Burst", - effect: "O usuário ataca o alvo com uma chama explosiva. A explosão da chama também fere os Pokémon próximos ao alvo." - }, - "sludgeWave": { - name: "Sludge Wave", - effect: "O usuário atinge tudo à volta inundando a área com uma grande onda de sedimentos. Isso também pode envenenar os atingidos." - }, - "quiverDance": { - name: "Quiver Dance", - effect: "O usuário delicadamente executa uma linda dança mística. Isso fortalece os atributos de Ataque Especial, Defesa Especial e Velocidade do usuário." - }, - "heavySlam": { - name: "Heavy Slam", - effect: "O usuário golpeia o alvo com seu corpo pesado. Quanto mais pesado o usuário for comparado ao alvo, maior será o poder do movimento." - }, - "synchronoise": { - name: "Synchronoise", - effect: "Usando uma estranha onda de choque, o usuário inflige dano em qualquer Pokémon do mesmo tipo na área ao seu redor." - }, - "electroBall": { - name: "Electro Ball", - effect: "O usuário arremessa uma esfera elétrica no alvo. Quanto mais rápido for o usuário comparado ao alvo, maior será o poder do movimento." - }, - "soak": { - name: "Soak", - effect: "O usuário atira uma corrente de água no alvo e muda a tipagem do alvo para Água." - }, - "flameCharge": { - name: "Flame Charge", - effect: "Ocultando-se nas chamas, o usuário ataca. Então, concentrando mais poder, o usuário aumenta sua Velocidade." - }, - "coil": { - name: "Coil", - effect: "O usuário enrola seu corpo e se concentra. Isso aumenta seus atributos de Ataque, Defesa e Precisão." - }, - "lowSweep": { - name: "Low Sweep", - effect: "O usuário faz um ataque repentino nas pernas do alvo, diminuindo a Velocidade dele." - }, - "acidSpray": { - name: "Acid Spray", - effect: "O usuário cospe um fluido corrosivo no alvo. Isso duramente diminui a Defesa Especial do alvo." - }, - "foulPlay": { - name: "Foul Play", - effect: "O usuário vira o poder do alvo contra ele. Quanto maior for o atributo de Ataque do alvo, maior será o poder do movimento." - }, - "simpleBeam": { - name: "Simple Beam", - effect: "Essa misteriosa onda psíquica produzida pelo usuário muda a Habilidade do alvo para “Simples”." - }, - "entrainment": { - name: "Entrainment", - effect: "O usuário dança em um ritmo estranho que contagia o alvo que o imita, fazendo a Habilidade do alvo tornar-se a mesma que a do usuário." - }, - "afterYou": { - name: "After You", - effect: "O usuário auxilia o alvo e o faz usar seu movimento exatamente após o usuário." - }, - "round": { - name: "Round", - effect: "O usuário ataca o alvo com uma música. Outros podem entrar na Ronda e fazer o ataque dar um dano ainda maior." - }, - "echoedVoice": { - name: "Echoed Voice", - effect: "O usuário ataca o alvo com uma voz ecoante. Se esse movimento for usado um turno após o outro, ele infligirá dano maior." - }, - "chipAway": { - name: "Chip Away", - effect: "Procurando por uma brecha, o usuário ataca consistentemente. As mudanças de atributos do alvo não afetam o dano desse movimento." - }, - "clearSmog": { - name: "Clear Smog", - effect: "O usuário ataca arremessando um amontoado de lama especial. Todas as mudanças de atributos voltam ao normal." - }, - "storedPower": { - name: "Stored Power", - effect: "O usuário ataca o alvo com seu poder armazenado. Quanto mais os atributos do usuário estiverem fortalecidos, maior será o poder do movimento." - }, - "quickGuard": { - name: "Quick Guard", - effect: "O usuário protege a si mesmo e seus aliados de golpes de prioridade." - }, - "allySwitch": { - name: "Ally Switch", - effect: "O usuário teletransporta usando um estranho poder e troca de lugar com um de seus aliados." - }, - "scald": { - name: "Scald", - effect: "O usuário atira água fervente no seu alvo. Isso também pode deixar o alvo com queimadura." - }, - "shellSmash": { - name: "Shell Smash", - effect: "O usuário quebra a própria concha, diminuindo sua Defesa e Defesa Especial, mas bruscamente aumentando Ataque, Ataque Especial e Velocidade." - }, - "healPulse": { - name: "Heal Pulse", - effect: "O usuário emite um pulso curativo que restaura os PS do alvo pela metade de seus PS máximos." - }, - "hex": { - name: "Hex", - effect: "Esse ataque cruel inflige dano massivo a um alvo afetado por condições negativas." - }, - "skyDrop": { - name: "Sky Drop", - effect: "O usuário leva o alvo para o céu, então o solta durante o próximo turno. O alvo não pode atacar enquanto estiver no céu." - }, - "shiftGear": { - name: "Shift Gear", - effect: "O usuário roda suas engrenagens, aumentando seu Ataque e bruscamente aumentando sua Velocidade." - }, - "circleThrow": { - name: "Circle Throw", - effect: "O alvo é arremessado, e um Pokémon diferente é trazido para a batalha. Na natureza, isso termina uma batalha contra um único Pokémon." - }, - "incinerate": { - name: "Incinerate", - effect: "O usuário ataca o Pokémon oponente com fogo. Se um Pokémon estiver segurando um certo item, como uma Fruta, o item será queimado e inutilizado." - }, - "quash": { - name: "Quash", - effect: "O usuário reprime o alvo e o faz se mover por último." - }, - "acrobatics": { - name: "Acrobatics", - effect: "O usuário atinge o alvo rapidamente. Se o usuário não estiver segurando um item, esse ataque causa um dano massivo." - }, - "reflectType": { - name: "Reflect Type", - effect: "O usuário reflete o tipo do alvo, fazendo-o ter o mesmo tipo do alvo." - }, - "retaliate": { - name: "Retaliate", - effect: "O usuário se vinga por um aliado desmaiado. Se um aliado desmaiou no turno anterior, esse movimento ficará mais poderoso." - }, - "finalGambit": { - name: "Final Gambit", - effect: "O usuário arrisca tudo para atacar seu alvo. O usuário desmaia porém inflige dano igual aos seus PS perdidos." - }, - "bestow": { - name: "Bestow", - effect: "O usuário passa seu item ao alvo se o alvo não estiver segurando um item." - }, - "inferno": { - name: "Inferno", - effect: "O usuário ataca engolindo o alvo em intensas chamas. intense fire. Isso deixa o alvo com uma queimadura." - }, - "waterPledge": { - name: "Water Pledge", - effect: "Um pilar de água atinge o alvo. Quando combinado com seu equivalente do tipo fogo, seu dano aumenta e um arco-íris é formado." - }, - "firePledge": { - name: "Fire Pledge", - effect: "Um pilar de fogo atinge o alvo. Quando combinado com seu equivalente do tipo Planta, seu dano aumenta e um vasto mar de fogo aparece." - }, - "grassPledge": { - name: "Grass Pledge", - effect: "Um pilar de grama acerta o alvo. Quando combinado com seu equivalente do tipo Água, seu dano aumenta e um vasto pântano surge." - }, - "voltSwitch": { - name: "Volt Switch", - effect: "Depois de fazer o seu ataque, o usuário corre de volta para trocar de lugar com um Pokémon da própria equipe." - }, - "struggleBug": { - name: "Struggle Bug", - effect: "Enquanto resiste, o usuário ataca o Pokémon oponente. Isso diminui o Ataque Especial daqueles atingidos." - }, - "bulldoze": { - name: "Bulldoze", - effect: "O usuário atinge a todos ao seu redor pisoteando o chão. Isso diminui a Velocidade daqueles atingidos." - }, - "frostBreath": { - name: "Frost Breath", - effect: "O usuário sopra sua respiração gelada no alvo. Esse ataque sempre resulta em um acerto crítico." - }, - "dragonTail": { - name: "Dragon Tail", - effect: "O alvo é arremessado e um Pokémon diferente é trazido para o combate. Em batalhas selvagens, isso encerra a batalha contra um único Pokémon." - }, - "workUp": { - name: "Work Up", - effect: "O usuário se agita e seus atributos de Ataque e Ataque Especial são fortalecidos." - }, - "electroweb": { - name: "Electroweb", - effect: "O usuário ataca e captura os Pokémon adversários usando uma rede elétrica. Isso diminui a Velocidade deles." - }, - "wildCharge": { - name: "Wild Charge", - effect: "O usuário se cobre de eletricidade e colide com o seu alvo. Isso também fere um pouco o usuário." - }, - "drillRun": { - name: "Drill Run", - effect: "O usuário colide com seu alvo enquanto rotaciona seu corpo como uma broca. Golpes críticos acertam mais facilmente." - }, - "dualChop": { - name: "Dual Chop", - effect: "O usuário ataca o seu alvo o acertando com golpes brutais. O alvo é atingido duas vezes seguidas." - }, - "heartStamp": { - name: "Heart Stamp", - effect: "O usuário libera sua fúria em um golpe violento após enganar o alvo com sua atuação fofa. Isso também pode fazer o alvo hesitar." - }, - "hornLeech": { - name: "Horn Leech", - effect: "O usuário drena a energia do alvo com seus chifres. Os PS do usuário são restaurados pela metade do dano recebido pelo alvo." - }, - "sacredSword": { - name: "Sacred Sword", - effect: "O usuário ataca cortando com um longo chifre. As mudanças de atributos do alvo não afetam o dano desse ataque." - }, - "razorShell": { - name: "Razor Shell", - effect: "O usuário corta seu alvo com conchas afiadas. Isso pode também diminuir o atributo de Defesa do alvo." - }, - "heatCrash": { - name: "Heat Crash", - effect: "O usuário golpeia seu alvo com seu corpo envolto em chamas. Quanto mais pesado o usuário for comparado ao alvo, maior será o poder do movimento." - }, - "leafTornado": { - name: "Leaf Tornado", - effect: "O usuário ataca seu alvo cercando-o com folhas afiadas. Isso também pode diminuir a precisão do alvo." - }, - "steamroller": { - name: "Steamroller", - effect: "O usuário esmaga seu alvo rolando sobre ele com seu corpo enrolado como uma bola. Isso também pode fazer o alvo hesitar." - }, - "cottonGuard": { - name: "Cotton Guard", - effect: "O usuário protege a si mesmo envolvendo seu corpo em algodão macio, o que drasticamente aumenta o atributo de Defesa do usuário." - }, - "nightDaze": { - name: "Night Daze", - effect: "O usuário libera uma onda de choque escura como a noite no alvo. Isso também pode reduzir a Precisão do alvo." - }, - "psystrike": { - name: "Psystrike", - effect: "O usuário materializa uma estranha onda psíquica para atacar o alvo. Esse ataque inflige dano físico." - }, - "tailSlap": { - name: "Tail Slap", - effect: "O usuário ataca golpeando o alvo com sua cauda resistente. Isso acerta o alvo duas a cinco vezes seguidas." - }, - "hurricane": { - name: "Hurricane", - effect: "O usuário ataca prendendo seu oponente num violento turbilhão que voa alto no céu. Isso também pode confundir o alvo." - }, - "headCharge": { - name: "Head Charge", - effect: "O usuário ataca colidindo sua cabeça no alvo, usando sua pelagem protetora. Isso também fere um pouco o usuário." - }, - "gearGrind": { - name: "Gear Grind", - effect: "O usuário ataca arremessando engrenagens de aço no seu alvo duas vezes em sequência." - }, - "searingShot": { - name: "Searing Shot", - effect: "O usuário queima tudo ao seu redor com um inferno de chamas escarlate. Isso também pode causar uma queimadura em alvos atingidos." - }, - "technoBlast": { - name: "Techno Blast", - effect: "O usuário atira um raio de luz em seu alvo. O tipo do movimento muda dependendo do Disco que o usuário estiver segurando." - }, - "relicSong": { - name: "Relic Song", - effect: "O usuário canta uma antiga canção e ataca encantando o coração dos Pokémon adversários. Isso também pode induzir sono." - }, - "secretSword": { - name: "Secret Sword", - effect: "O usuário ataca cortando com seu longo chifre. O estranho poder contido no chifre inflige dano físico no alvo." - }, - "glaciate": { - name: "Glaciate", - effect: "O usuário ataca soprando ar congelante nos Pokémon oponentes. Isso diminui a Velocidade deles." - }, - "boltStrike": { - name: "Bolt Strike", - effect: "O usuário cobre a si mesmo com uma grande quantidade de eletricidade e avança no alvo. Isso também pode paralisar o alvo." - }, - "blueFlare": { - name: "Blue Flare", - effect: "O usuário ataca engolindo o alvo numa intensa, porém linda, chama azul. Isso também pode deixar o alvo com uma queimadura." - }, - "fieryDance": { - name: "Fiery Dance", - effect: "Coberto por chamas, o usuário dança e bate suas asas. Isso também pode aumentar o Ataque Especial do usuário." - }, - "freezeShock": { - name: "Freeze Shock", - effect: "No segundo turno, o usuário acerta o alvo com gelo eletricamente carregado. Isso também pode deixar o alvo paralisado." - }, - "iceBurn": { - name: "Ice Burn", - effect: "No segundo turno, um impiedoso vento gélido cerca o alvo. Isso pode deixar o alvo com uma queimadura." - }, - "snarl": { - name: "Snarl", - effect: "O usuário grita como se ele estivesse reclamando de algo, diminuindo o Ataque Especial do Pokémon oponente." - }, - "icicleCrash": { - name: "Icicle Crash", - effect: "O usuário ataca arremessando estacas de gelo no alvo violentamente. Isso também pode fazer o alvo hesitar." - }, - "vCreate": { - name: "V-create", - effect: "Com uma ardente chama em sua testa, o usuário joga seu corpo em direção ao alvo. Isso diminui a Defesa, Defesa Especial, e Velocidade do usuário." - }, - "fusionFlare": { - name: "Fusion Flare", - effect: "O usuário invoca uma chama gigante. Esse movimento é mais poderoso quando influenciado por um enorme raio." - }, - "fusionBolt": { - name: "Fusion Bolt", - effect: "O usuário conduz um raio gigantesco. Esse movimento é mais poderoso quando influenciado por uma enorme chama." - }, - "flyingPress": { - name: "Flying Press", - effect: "O usuário mergulha do céu em direção ao alvo. Esse movimento é simultaneamente do tipo Lutador e Voador." - }, - "matBlock": { - name: "Mat Block", - effect: "Usando uma esteira elevada como escudo, o usuário protege a si mesmo e a seus aliados de golpes que causam dano. Isso não previne condições negativas." - }, - "belch": { - name: "Belch", - effect: "O usuário expurga um arroto danificante no alvo. O usuário deve comer uma Fruta para usar esse movimento." - }, - "rototiller": { - name: "Rototiller", - effect: "O usuário ara o solo, facilitando o crescimento de plantas. Isso aumenta os atributos de Ataque e Ataque Especial dos Pokémon do tipo Planta." - }, - "stickyWeb": { - name: "Sticky Web", - effect: "O usuário tece uma teia viscosa ao redor da equipe adversária, o que diminui a Velocidade dos adversários após entrarem em campo." - }, - "fellStinger": { - name: "Fell Stinger", - effect: "Quando o usuário nocauteia um alvo com este movimento, o atributo de Ataque do usuário aumenta bruscamente." - }, - "phantomForce": { - name: "Phantom Force", - effect: "O usuário desaparece para algum lugar e então ataca o alvo no próximo turno. Esse movimento acerta mesmo se o alvo estiver se protegendo." - }, - "trickOrTreat": { - name: "Trick-or-Treat", - effect: "O usuário enche o alvo com o espírito do Halloween para celebrarem juntos. Isso adiciona o tipo Fantasma à tipagem do alvo." - }, - "nobleRoar": { - name: "Noble Roar", - effect: "Soltando um nobre rugido, o usuário intimida o alvo e diminui seus atributos de Ataque e Ataque Especial." - }, - "ionDeluge": { - name: "Ion Deluge", - effect: "O usuário dispersa partículas eletricamente carregadas, o que muda movimentos do tipo Normal para o tipo Elétrico." - }, - "parabolicCharge": { - name: "Parabolic Charge", - effect: "O usuário ataca tudo ao seu redor. Os PS do usuário são restaurados pela metade do dano recebido por aqueles que foram atingidos." - }, - "forestsCurse": { - name: "Forest's Curse", - effect: "O usuário conjura uma maldição da floresta no alvo. Isso adiciona o tipo Planta à tipagem do alvo." - }, - "petalBlizzard": { - name: "Petal Blizzard", - effect: "O usuário rotaciona uma violenta nevasca composta por pétalas e ataca tudo ao seu redor." - }, - "freezeDry": { - name: "Freeze-Dry", - effect: "O usuário rapidamente diminui a temperatura do alvo. Isso pode deixar o alvo congelado. Esse movimento é supereficaz contra tipos Água." - }, - "disarmingVoice": { - name: "Disarming Voice", - effect: "Liberando um grito encantador, o usuário inflige dano emocional nos Pokémon oponentes. Esse ataque nunca erra." - }, - "partingShot": { - name: "Parting Shot", - effect: "O usuário diminui os atributos de Ataque e Ataque Esp. do alvo com uma ameaça antes de ser trocado por outro Pokémon na equipe." - }, - "topsyTurvy": { - name: "Topsy-Turvy", - effect: "Todas as mudanças de atributos afetando o alvo viram de cabeça para baixo e se tornam o oposto do que eram." - }, - "drainingKiss": { - name: "Draining Kiss", - effect: "O usuário rouba a energia do alvo com um beijo. Os PS do usuário são restaurados além da metade do dano recebido pelo alvo." - }, - "craftyShield": { - name: "Crafty Shield", - effect: "O usuário protege a si mesmo e seus aliados de condições negativas com um misterioso poder. Isso não previne golpes que inflijam dano." - }, - "flowerShield": { - name: "Flower Shield", - effect: "Usando um misterioso poder, o usuário aumenta o atributo de Defesa de todos os Pokémon tipo Planta em batalha." - }, - "grassyTerrain": { - name: "Grassy Terrain", - effect: "O usuário transforma o campo de batalha em grama por cinco turnos. Isso restaura os PS dos Pokémon no solo um pouco a cada turno e fortalece golpes do tipo Grama." - }, - "mistyTerrain": { - name: "Misty Terrain", - effect: "Isto protege os Pokémon no solo de condições de estado e corta pela metade o dano dos movimentos do tipo Dragão por cinco turnos." - }, - "electrify": { - name: "Electrify", - effect: "Caso o alvo tenha sido energizado antes de usar um movimento durante aquele turno, o movimento do alvo se tornará do tipo Elétrico." - }, - "playRough": { - name: "Play Rough", - effect: "O usuário joga duro com o alvo e o ataca. Isso também pode diminuir o atributo de Ataque do alvo." - }, - "fairyWind": { - name: "Fairy Wind", - effect: "O usuário rotaciona um vento de fada e ataca o alvo com ele." - }, - "moonblast": { - name: "Moonblast", - effect: "Canalizando o poder da lua, o usuário ataca o alvo. Isso também pode diminuir o atributo de Ataque Especial do alvo." - }, - "boomburst": { - name: "Boomburst", - effect: "O usuário ataca tudo ao seu redor com o poder destrutivo de um terrível som explosivo." - }, - "fairyLock": { - name: "Fairy Lock", - effect: "Bloqueando o campo de batalha, o usuário previne que todos os Pokémon fujam durante o próximo turno." - }, - "kingsShield": { - name: "King's Shield", - effect: "O usuário assume uma posição defensiva enquanto protege a si mesmo de dano. Isto duramente diminui o Ataque de qualquer um que faça contato direto." - }, - "playNice": { - name: "Play Nice", - effect: "O usuário e o alvo se tornam amigos, fazendo com que o alvo perca sua vontade de lutar. Isso diminui o atributo de Ataque do alvo." - }, - "confide": { - name: "Confide", - effect: "O usuário conta um segredo para o alvo e o alvo perde sua habilidade de se concentrar. Isso diminui o Ataque Especial do alvo." - }, - "diamondStorm": { - name: "Diamond Storm", - effect: "O usuário provoca uma tempestade de diamantes para ferir os Pokémon oponentes. Isso também pode aumentar o atributo de Defesa do usuário." - }, - "steamEruption": { - name: "Steam Eruption", - effect: "O usuário imerge o alvo em vapor superaquecido. Isso também pode deixar o alvo com uma queimadura." - }, - "hyperspaceHole": { - name: "Hyperspace Hole", - effect: "Usando uma fenda espacial, o usuário aparece ao lado do alvo e ataca. Isso também acerta um alvo usando movimentos como Proteger ou Detectar." - }, - "waterShuriken": { - name: "Water Shuriken", - effect: "O usuário acerta o alvo jogando estrelas ninja de duas a cinco vezes seguidas. Esse movimento tem prioridade." - }, - "mysticalFire": { - name: "Mystical Fire", - effect: "O usuário ataca soprando um fogo ardente especial. Isso também diminui o Ataque Especial do alvo." - }, - "spikyShield": { - name: "Spiky Shield", - effect: "Além de proteger o alvo de ataques, este movimento também fere qualquer atacante que fizer contato direto." - }, - "aromaticMist": { - name: "Aromatic Mist", - effect: "Usando um misterioso aroma, o usuário aumenta o atributo de Defesa Especial de um Pokémon aliado." - }, - "eerieImpulse": { - name: "Eerie Impulse", - effect: "O corpo do usuário gera um impulso misterioso. O alvo exposto ao impulso tem seu Ataque Especial duramente diminuído." - }, - "venomDrench": { - name: "Venom Drench", - effect: "Pokémon oponentes são encharcados por um estranho líquido venenoso. Isso diminui o Ataque, Ataque Esp. e Velocidade de um alvo envenenado." - }, - "powder": { - name: "Powder", - effect: "O usuário cobre o alvo em pólvora. Se o alvo usar um movimento do tipo Fogo, a pólvora entra em combustão e causa dano ao alvo." - }, - "geomancy": { - name: "Geomancy", - effect: "O usuário absorve energia e bruscamente aumenta seus atributos de Ataque Especial, Defesa Especial e Velocidade no próximo turno." - }, - "magneticFlux": { - name: "Magnetic Flux", - effect: "O usuário manipula campos magnéticos, o que aumenta os atributos de Defesa e Defesa Especial de Pokémon aliados com as Habilidades “Mais” ou “Menos”." - }, - "happyHour": { - name: "Happy Hour", - effect: "Usar Happy Hour dobra a quantidade de prêmio em dinheiro recebido após a batalha." - }, - "electricTerrain": { - name: "Electric Terrain", - effect: "O usuário eletrifica o campo de batalha por cinco turnos, fortalecendo movimentos do tipo Elétrico. Pokémon no solo não podem mais cair no sono." - }, - "dazzlingGleam": { - name: "Dazzling Gleam", - effect: "O usuário causa dano ao Pokémon oponente emitindo um clarão poderoso." - }, - "celebrate": { - name: "Celebrate", - effect: "O Pokémon te dá parabéns pelo seu dia especial!" - }, - "holdHands": { - name: "Hold Hands", - effect: "O usuário e um aliado dão as mãos. Isso os deixam muito contentes." - }, - "babyDollEyes": { - name: "Baby-Doll Eyes", - effect: "O usuário encara o alvo com seus olhos adoráveis, o que diminui seu atributo de Ataque. Esse movimento tem prioridade." - }, - "nuzzle": { - name: "Nuzzle", - effect: "O usuário ataca esfregando suas bochechas eletrizadas contra o alvo. Isso também deixa o alvo paralisado." - }, - "holdBack": { - name: "Hold Back", - effect: "O usuário pega leve quando ataca e o alvo é deixado com pelo menos 1 PS." - }, - "infestation": { - name: "Infestation", - effect: "O alvo é infestado e atacado de quatro a cinco turnos. O alvo não pode fugir durante esse período." - }, - "powerUpPunch": { - name: "Power-Up Punch", - effect: "Golpear oponentes repetidamente faz os punhos do usuário enrijecerem. Acertar um alvo aumenta o Ataque." - }, - "oblivionWing": { - name: "Oblivion Wing", - effect: "O usuário absorve os PS de seu alvo. Os PS do usuário são restaurados além da metade do dano recebido pelo usuário." - }, - "thousandArrows": { - name: "Thousand Arrows", - effect: "Este movimento também acerta Pokémon adversários que estão no ar. Esses Pokémon são derrubados e caem no chão." - }, - "thousandWaves": { - name: "Thousand Waves", - effect: "O usuário ataca com tremores que se dispersam pelo chão. Alvos atingidos não podem fugir da batalha." - }, - "landsWrath": { - name: "Land's Wrath", - effect: "O usuário reúne a energia da terra e foca esse poder nos Pokémon oponentes para causar dano." - }, - "lightOfRuin": { - name: "Light of Ruin", - effect: "Usufruindo do poder da flor eterna, o usuário atira um poderoso raio de luz. Isso também fere muito o usuário." - }, - "originPulse": { - name: "Origin Pulse", - effect: "O usuário ataca o Pokémon adversário com inúmeros raios de luz resplandescente que brilham em uma cor de profundo azul." - }, - "precipiceBlades": { - name: "Precipice Blades", - effect: "O usuário ataca o Pokémon adversário manifestando o poder terrestre em espadas de pedra assustadoras." - }, - "dragonAscent": { - name: "Dragon Ascent", - effect: "Depois de alcançar grandes alturas, o usuário ataca o alvo mergulhando do céu em alta velocidade, porém isso diminui sua própria Defesa e Defesa Especial." - }, - "hyperspaceFury": { - name: "Hyperspace Fury", - effect: "Usando seus diversos braços, o usuário libera golpes furiosos que ignoram efeitos de movimentos como Proteção e Detectar. Diminui a Defesa do usuário." - }, - "breakneckBlitzPhysical": { - name: "Breakneck Blitz", - effect: "Utilizando o Poder Z, o usuário intensifica seu ímpeto e atinge o alvo em alta velocidade. Seu poder varia dependendo do movimento original." - }, - "breakneckBlitzSpecial": { - name: "Breakneck Blitz", - effect: "Dummy Data" - }, - "allOutPummelingPhysical": { - name: "All-Out Pummeling", - effect: "Utilizando o Poder Z, o usuário cria e arremessa uma esfera de energia no alvo com força total. Seu poder varia dependendo do movimento original." - }, - "allOutPummelingSpecial": { - name: "All-Out Pummeling", - effect: "Dummy Data" - }, - "supersonicSkystrikePhysical": { - name: "Supersonic Skystrike", - effect: "Utilizando o Poder Z, o usuário ascende e mergulha em direção ao alvo em alta velocidade. Seu poder varia dependendo do movimento original." - }, - "supersonicSkystrikeSpecial": { - name: "Supersonic Skystrike", - effect: "Dummy Data" - }, - "acidDownpourPhysical": { - name: "Acid Downpour", - effect: "Utilizando o Poder Z, o usuário cria um pântano venenoso e afoga o alvo com toda sua força. Seu poder varia dependendo do movimento original." - }, - "acidDownpourSpecial": { - name: "Acid Downpour", - effect: "Dummy Data" - }, - "tectonicRagePhysical": { - name: "Tectonic Rage", - effect: "Utilizando o Poder Z, o usuário abre uma cratera e mergulha nela com o alvo com força total. Seu poder varia dependendo do movimento original." - }, - "tectonicRageSpecial": { - name: "Tectonic Rage", - effect: "Dummy Data" - }, - "continentalCrushPhysical": { - name: "Continental Crush", - effect: "Utilizando o Poder Z, o usuário cria um meteoro que cai do céu em direção ao alvo com força total. Seu poder varia dependendo do movimento original." - }, - "continentalCrushSpecial": { - name: "Continental Crush", - effect: "Dummy Data" - }, - "savageSpinOutPhysical": { - name: "Savage Spin-Out", - effect: "Utilizando o Poder Z, o usuário restringe o alvo em um casulo de seda e ataca ele com força total. Seu poder varia dependendo do movimento original." - }, - "savageSpinOutSpecial": { - name: "Savage Spin-Out", - effect: "Dummy Data" - }, - "neverEndingNightmarePhysical": { - name: "Never-Ending Nightmare", - effect: "Utilizando o Poder Z, o usuário invoca espectros rancorosos que sufocam o alvo. Seu poder varia dependendo do movimento original." - }, - "neverEndingNightmareSpecial": { - name: "Never-Ending Nightmare", - effect: "Dummy Data" - }, - "corkscrewCrashPhysical": { - name: "Corkscrew Crash", - effect: "Utilizando o Poder Z, o usuário gira rapidamente e ataca o alvo com força total. Seu poder varia dependendo do movimento original." - }, - "corkscrewCrashSpecial": { - name: "Corkscrew Crash", - effect: "Dummy Data" - }, - "infernoOverdrivePhysical": { - name: "Inferno Overdrive", - effect: "Utilizando o Poder Z, o usuário cospe uma enorme labareda ardente contra o alvo com força total. Seu poder varia dependendo do movimento original." - }, - "infernoOverdriveSpecial": { - name: "Inferno Overdrive", - effect: "Dummy Data" - }, - "hydroVortexPhysical": { - name: "Hydro Vortex", - effect: "Utilizando o Poder Z, o usuário cria um intenso turbilhão que engole o alvo com força total. Seu poder varia dependendo do movimento original." - }, - "hydroVortexSpecial": { - name: "Hydro Vortex", - effect: "Dummy Data" - }, - "bloomDoomPhysical": { - name: "Bloom Doom", - effect: "Utilizando o Poder Z, o usuário absorve a energia vital do ambiente e ataca o alvo com força total. Seu poder varia dependendo do movimento original." - }, - "bloomDoomSpecial": { - name: "Bloom Doom", - effect: "Dummy Data" - }, - "gigavoltHavocPhysical": { - name: "Gigavolt Havoc", - effect: "Utilizando o Poder Z, o usuário concentra uma corrente elétrica carregada e atinge o alvo. Seu poder varia dependendo do movimento original." - }, - "gigavoltHavocSpecial": { - name: "Gigavolt Havoc", - effect: "Dummy Data" - }, - "shatteredPsychePhysical": { - name: "Shattered Psyche", - effect: "Utilizando o Poder Z, o usuário manipula a cabeça do alvo e destrói-o mentalmente. Seu poder varia dependendo do movimento original." - }, - "shatteredPsycheSpecial": { - name: "Shattered Psyche", - effect: "Dummy Data" - }, - "subzeroSlammerPhysical": { - name: "Subzero Slammer", - effect: "Utilizando o Poder Z, o usuário lança um raio de gelo que reduz a temperatura do alvo a zero. Seu poder varia dependendo do movimento original." - }, - "subzeroSlammerSpecial": { - name: "Subzero Slammer", - effect: "Dummy Data" - }, - "devastatingDrakePhysical": { - name: "Devastating Drake", - effect: "Utilizando o Poder Z, o usuário materializa sua aura, que ataca o alvo com força total. Seu poder varia dependendo do movimento original." - }, - "devastatingDrakeSpecial": { - name: "Devastating Drake", - effect: "Dummy Data" - }, - "blackHoleEclipsePhysical": { - name: "Black Hole Eclipse", - effect: "Utilizando o Poder Z, o usuário cria um buraco negro que engole o alvo. Seu poder varia dependendo do movimento original." - }, - "blackHoleEclipseSpecial": { - name: "Black Hole Eclipse", - effect: "Dummy Data" - }, - "twinkleTacklePhysical": { - name: "Twinkle Tackle", - effect: "Utilizando o Poder Z, o usuário cria uma dimensão graciosa que deixa o alvo a sua mercê. Seu poder varia dependendo do movimento original." - }, - "twinkleTackleSpecial": { - name: "Twinkle Tackle", - effect: "Dummy Data" - }, - "catastropika": { - name: "Catastropika", - effect: "Utilizando seu Poder Z, Pikachu acumula o máximo de eletricidade que seu corpo suporta e pula no alvo com força total." - }, - "shoreUp": { - name: "Shore Up", - effect: "Recupera metade dos PS do usuário. Durante uma Tempestade de Areia, recupera um pouco mais." - }, - "firstImpression": { - name: "First Impression", - effect: "Embora esse movimento seja poderoso, ele funciona apenas na primeira rodada em que o usuário está em batalha." - }, - "banefulBunker": { - name: "Baneful Bunker", - effect: "Além de proteger o usuário de ataques, este movimento também envenena qualquer um que fizer contato direto." - }, - "spiritShackle": { - name: "Spirit Shackle", - effect: "O usuário ataca enquanto fisga simultaneamente a sombra do alvo e impede ele de escapar." - }, - "darkestLariat": { - name: "Darkest Lariat", - effect: "O usuário balança os dois braços e acerta o alvo. As mudanças de atributos do alvo não afetam o dano deste ataque." - }, - "sparklingAria": { - name: "Sparkling Aria", - effect: "Libera borbulhas ao cantar. Se um Pokémon estiver queimado, ele será curado pelo toque das bolhas." - }, - "iceHammer": { - name: "Ice Hammer", - effect: "O usuário gira seu corpo e bate com seus fortes e pesados punhos. Isso diminui a Velocidade do usuário." - }, - "floralHealing": { - name: "Floral Healing", - effect: "O usuário restaura os PS do alvo até metade a dos seus PS máximo. Ele restaura mais HP quando o terreno é de grama." - }, - "highHorsepower": { - name: "High Horsepower", - effect: "O usuário ataca ferozmente o alvo usando todo o seu corpo." - }, - "strengthSap": { - name: "Strength Sap", - effect: "O usuário restaura seus PS em uma quantidade igual ao atributo de Ataque do alvo. Também diminui o atributo de Ataque do alvo." - }, - "solarBlade": { - name: "Solar Blade", - effect: "O usuário absorve luz e concentra-a em forma de lâmina com a energia absorvida no primeiro turno e atacando o alvo no próximo turno." - }, - "leafage": { - name: "Leafage", - effect: "O usuário ataca lançando folhas no alvo." - }, - "spotlight": { - name: "Spotlight", - effect: "O usuário direciona o foco no alvo para que apenas ele seja atacado durante o turno." - }, - "toxicThread": { - name: "Toxic Thread", - effect: "O usuário dispara fios venenosos para envenenar o alvo e diminuir sua Velocidade." - }, - "laserFocus": { - name: "Laser Focus", - effect: "O usuário se concentra intensamente. O ataque no próximo turno sempre resultará em um acerto crítico." - }, - "gearUp": { - name: "Gear Up", - effect: "O usuário engata suas engrenagens para aumentar os atributos de Ataque e Ataque Esp. de Pokémon aliados com as Habilidades Mais ou Menos." - }, - "throatChop": { - name: "Throat Chop", - effect: "O usuário acerta a garganta do alvo, e a dor resultante impede que o alvo use movimentos que emitam som por dois turnos." - }, - "pollenPuff": { - name: "Pollen Puff", - effect: "O usuário ataca o inimigo com uma bola de pólen explosiva. Se o alvo for um aliado, ele recebe uma bola de pólen que restaura seus PS em vez disso." - }, - "anchorShot": { - name: "Anchor Shot", - effect: "O usuário revolve o alvo com a corrente de sua âncora enquanto ataca. O alvo se torna incapaz de fugir." - }, - "psychicTerrain": { - name: "Psychic Terrain", - effect: "Protege o Pokémon no terreno de movimentos de prioridade e aumenta o poder dos movimentos do tipo Psíquico por cinco turnos." - }, - "lunge": { - name: "Lunge", - effect: "O usuário faz uma estocada no alvo, atacando com força total. Isso também diminui o Ataque do alvo." - }, - "fireLash": { - name: "Fire Lash", - effect: "O usuário atinge o alvo com um chicote em chamas. Também diminui a Defesa do alvo." - }, - "powerTrip": { - name: "Power Trip", - effect: "O usuário ostenta sua força e ataca o alvo. Quanto mais os atributos do usuário forem aumentados, maior será o poder do movimento." - }, - "burnUp": { - name: "Burn Up", - effect: "Para infligir um dano massivo, o usuário se exaure. Após usar esse movimento, o usuário não será mais do tipo Fogo." - }, - "speedSwap": { - name: "Speed Swap", - effect: "O usuário troca os atributos de Velocidade com o alvo." - }, - "smartStrike": { - name: "Smart Strike", - effect: "O usuário perfura o alvo com um chifre afiado. Esse ataque nunca erra." - }, - "purify": { - name: "Purify", - effect: "O usuário cura a condição de estado do alvo. Se o movimento for bem-sucedido, também recupera os PS do usuário." - }, - "revelationDance": { - name: "Revelation Dance", - effect: "O usuário ataca o alvo dançando intensamente. O tipo do usuário determina o tipo deste movimento." - }, - "coreEnforcer": { - name: "Core Enforcer", - effect: "Se os Pokémon nos quais o usuário causou dano já tiverem usado seus movimentos, esse movimento elimina o efeito da Habilidade do alvo." - }, - "tropKick": { - name: "Trop Kick", - effect: "O usuário desfere um chute intenso de origens tropicais no alvo. Também diminui o Ataque do alvo." - }, - "instruct": { - name: "Instruct", - effect: "O usuário instrui o alvo a usar novamente o seu último movimento usado." - }, - "beakBlast": { - name: "Beak Blast", - effect: "O usuário aquece o bico e depois ataca o alvo. Fazer contato direto com o Pokémon enquanto ele aquece o bico resultará em queimadura." - }, - "clangingScales": { - name: "Clanging Scales", - effect: "O usuário esfrega as escamas de todo o seu corpo e faz um estrondo para machucar o Pokémon oponente. A Defesa do usuário diminui após o ataque." - }, - "dragonHammer": { - name: "Dragon Hammer", - effect: "O usuário usa seu corpo como um martelo para atacar o alvo e causar dano." - }, - "brutalSwing": { - name: "Brutal Swing", - effect: "O usuário balança o corpo violentamente para infligir dano a tudo em seu redor." - }, - "auroraVeil": { - name: "Aurora Veil", - effect: "Esse movimento reduz o dano de movimentos físicos e especiais por cinco turnos. Só pode ser usado durante uma tempestade de granizo." - }, - "sinisterArrowRaid": { - name: "Sinister Arrow Raid", - effect: "Utilizando o Poder Z, Decidueye cria incontáveis flechas e dispara-as contra o alvo com força total." - }, - "maliciousMoonsault": { - name: "Malicious Moonsault", - effect: "Utilizando o Poder Z, Incineroar fortalece seu corpo e pula no alvo com força total." - }, - "oceanicOperetta": { - name: "Oceanic Operetta", - effect: "Utilizando o Poder Z, Primarina convoca uma quantidade massiva de água e lança contra o alvo com força total." - }, - "guardianOfAlola": { - name: "Guardian of Alola", - effect: "Utilizando o Poder Z, o Espírito Nativo canaliza a energia de Alola e ataca o alvo com força total. Reduz muito os PS do alvo." - }, - "soulStealing7StarStrike": { - name: "Soul-Stealing 7-Star Strike", - effect: "Quando um Marshadow obtém o Poder Z, ele ataca o alvo consecutivamente com socos e chutes usando força total." - }, - "stokedSparksurfer": { - name: "Stoked Sparksurfer", - effect: "Quando um Raichu de Alola obtém o Poder Z, ele lança um ataque contra o alvo com força total. Este movimento deixa o alvo paralisado." - }, - "pulverizingPancake": { - name: "Pulverizing Pancake", - effect: "O Poder Z desperta as capacidades máximas de seu Snorlax. O Pokémon movimenta seu enorme corpo velozmente e ataca o alvo com força total." - }, - "extremeEvoboost": { - name: "Extreme Evoboost", - effect: "Quando um Eevee obtém o Poder Z, ele absorve energia dos seus amigos evoluídos e aumenta os seus atributos bruscamente." - }, - "genesisSupernova": { - name: "Genesis Supernova", - effect: "Quando um Mew obtém o Poder Z, ele ataca o alvo com força total. O terreno será carregado com energia psíquica." - }, - "shellTrap": { - name: "Shell Trap", - effect: "O usuário arma uma cilada explosiva. Se o usuário for atingido fisicamente, a cilada irá explodir e causar de dano ao Pokémon oponente." - }, - "fleurCannon": { - name: "Fleur Cannon", - effect: "O usuário dispara um raio poderoso. O efeito colateral do ataque prejudica duramente o Ataque Especial do usuário." - }, - "psychicFangs": { - name: "Psychic Fangs", - effect: "O usuário morde o alvo com suas capacidades psíquicas. Pode destruir Tela de Luz e Refletir." - }, - "stompingTantrum": { - name: "Stomping Tantrum", - effect: "Guiado pela frustração, o usuário ataca o alvo. Se o movimento anterior falhou, o poder do movimento é dobrado." - }, - "shadowBone": { - name: "Shadow Bone", - effect: "O usuário ataca o alvo com um osso que contém um espírito. Pode diminuir a Defesa do alvo." - }, - "accelerock": { - name: "Accelerock", - effect: "O usuário colide contra o alvo em alta velocidade. Esse movimento sempre ataca primeiro." - }, - "liquidation": { - name: "Liquidation", - effect: "O usuário dispara no alvo um jato d'água poderoso. Diminui a Defesa do alvo." - }, - "prismaticLaser": { - name: "Prismatic Laser", - effect: "O usuário dispara lasers poderosos usando o poder de um prisma. O usuário não pode se mover no próximo turno." - }, - "spectralThief": { - name: "Spectral Thief", - effect: "O usuário se esconde na sombra do alvo, rouba seus aumentos de atributos e então, ataca-o." - }, - "sunsteelStrike": { - name: "Sunsteel Strike", - effect: "O usuário atinge o alvo com a força de um meteoro. Esse movimento pode ser usado no alvo independentemente de sua Habilidade." - }, - "moongeistBeam": { - name: "Moongeist Beam", - effect: "O usuário emite um raio pavoroso para atacar o alvo. Esse movimento pode ser usado no alvo independentemente de sua Habilidade." - }, - "tearfulLook": { - name: "Tearful Look", - effect: "O usuário fica manhoso e o alvo perde a vontade de lutar. Diminui o Ataque e o Ataque Esp. do alvo." - }, - "zingZap": { - name: "Zing Zap", - effect: "Uma forte explosão elétrica que cai sobre o alvo, eletrocutando-o e podendo fazê-lo hesitar." - }, - "naturesMadness": { - name: "Nature's Madness", - effect: "O usuário atinge o alvo com a força da natureza. Reduz os PS do alvo pela metade." - }, - "multiAttack": { - name: "Multi-Attack", - effect: "Se envolvendo em energia concentrada, o usuário acerta o alvo. A memória segurada determina o tipo do movimento." - }, - "tenMillionVoltThunderbolt": { - name: "10,000,000 Volt Thunderbolt", - effect: "Usando seu Poder Z, o Pikachu de boné acumula eletricidade e despeja-a. Golpes críticos acertam mais facilmente." - }, - "mindBlown": { - name: "Mind Blown", - effect: "O usuário ataca tudo ao seu redor fazendo sua própria cabeça explodir. Isso também causa dano ao usuário." - }, - "plasmaFists": { - name: "Plasma Fists", - effect: "O usuário ataca com punhos carregados eletricamente. Este movimento transforma movimentos do tipo Normal em movimentos do tipo Elétrico." - }, - "photonGeyser": { - name: "Photon Geyser", - effect: "O usuário ataca o alvo com um pilar de luz. Este movimento causa dano de Ataque ou Ataque Especial—o que for maior para o usuário." - }, - "lightThatBurnsTheSky": { - name: "Light That Burns the Sky", - effect: "Este ataque causa dano de Ataque ou Ataque Especial—o que for maior para o usuário, Necrozma. Este movimento ignora a Habilidade do alvo." - }, - "searingSunrazeSmash": { - name: "Searing Sunraze Smash", - effect: "Após obter o Z-Power, o usuário, Solgaleo, ataca o alvo com força total. Este movimento pode ignorar o efeito da Habilidade do alvo." - }, - "menacingMoonrazeMaelstrom": { - name: "Menacing Moonraze Maelstrom", - effect: "Após obter o Z-Power, o usuário, Lunala, ataca o alvo com força total. Este movimento pode ignorar o efeito da Habilidade do alvo." - }, - "letsSnuggleForever": { - name: "Let's Snuggle Forever", - effect: "Após obter o Z-Power, o usuário, Mimikyu, soca o alvo com força total." - }, - "splinteredStormshards": { - name: "Splintered Stormshards", - effect: "Após obter o Z-Power, o usuário, Lycanroc, ataca o alvo com força total. Este movimento nega o efeito no campo de batalha." - }, - "clangorousSoulblaze": { - name: "Clangorous Soulblaze", - effect: "Após obter o Z-Power, o usuário, Kommo-o, ataca os Pokémon adversários com força total. Este movimento aumenta os atributos do usuário." - }, - "zippyZap": { - name: "Zippy Zap", - effect: "O usuário ataca o alvo com rajadas de eletricidade em alta velocidade. Esse movimento sempre vai primeiro e aumenta a Evasão do usuário." - }, - "splishySplash": { - name: "Splishy Splash", - effect: "O usuário carrega uma onda enorme com eletricidade e atinge os Pokémon adversários com a onda. Isso também pode deixar os Pokémon adversários paralisados." - }, - "floatyFall": { - name: "Floaty Fall", - effect: "O usuário flutua no ar e então mergulha em um ângulo íngreme para atacar o alvo. Isso também pode fazer o alvo hesitar." - }, - "pikaPapow": { - name: "Pika Papow", - effect: "Quanto mais o Pikachu ama seu Treinador, maior o poder do movimento. Nunca erra." - }, - "bouncyBubble": { - name: "Bouncy Bubble", - effect: "O usuário ataca atirando bolhas de água no alvo. Em seguida, absorve água e restaura seu HP pelo mesmo valor de dano causado ao alvo." - }, - "buzzyBuzz": { - name: "Buzzy Buzz", - effect: "O usuário dispara um choque de eletricidade para atacar o alvo. Isso também deixa o alvo paralisado." - }, - "sizzlySlide": { - name: "Sizzly Slide", - effect: "O usuário se envolve em fogo e carrega contra o alvo. Isso também deixa o alvo queimado." - }, - "glitzyGlow": { - name: "Glitzy Glow", - effect: "O usuário bombardeia o alvo com força telecinética. Uma parede maravilhosa de luz é erguida para enfraquecer o poder dos movimentos especiais dos Pokémon adversários." - }, - "baddyBad": { - name: "Baddy Bad", - effect: "O usuário age mal e ataca o alvo. Uma parede maravilhosa de luz é erguida para enfraquecer o poder dos movimentos físicos dos Pokémon adversários." - }, - "sappySeed": { - name: "Sappy Seed", - effect: "O usuário cresce um caule gigantesco que espalha sementes para atacar o alvo. As sementes drenam o HP do alvo a cada turno." - }, - "freezyFrost": { - name: "Freezy Frost", - effect: "O usuário ataca com um cristal feito de névoa congelada fria. Isso elimina todas as mudanças de atributo entre todos os Pokémon envolvidos na batalha." - }, - "sparklySwirl": { - name: "Sparkly Swirl", - effect: "O usuário ataca o alvo envolvendo-o com um redemoinho de um aroma esmagador. Isso também cura todas as condições de status do grupo do usuário." - }, - "veeveeVolley": { - name: "Veevee Volley", - effect: "Quanto mais o Eevee ama seu Treinador, maior o poder do movimento. Nunca erra." - }, - "doubleIronBash": { - name: "Double Iron Bash", - effect: "O usuário gira, centrando a porca hexagonal em seu peito e depois ataca com seus braços duas vezes seguidas. Isso também pode fazer o alvo hesitar." - }, - "maxGuard": { - name: "Max Guard", - effect: "Este movimento permite ao usuário proteger-se de todos os ataques. Sua chance de falhar aumenta se for usado em sucessão." - }, - "dynamaxCannon": { - name: "Dynamax Cannon", - effect: "O usuário libera um forte feixe de seu núcleo. Este movimento causa até o dobro do dano se o alvo estiver com seu nível acima do limite." - }, - "snipeShot": { - name: "Snipe Shot", - effect: "O usuário ignora os efeitos dos movimentos e Habilidades dos Pokémon adversários que atraem movimentos, permitindo que este movimento atinja o alvo escolhido." - }, - "jawLock": { - name: "Jaw Lock", - effect: "Este movimento impede o usuário e o alvo de trocarem de lugar até que um deles desmaie. O efeito desaparece se qualquer um dos Pokémon deixar o campo." - }, - "stuffCheeks": { - name: "Stuff Cheeks", - effect: "O usuário come sua Fruta segurada, depois aumenta muito seu atributo de Defesa." - }, - "noRetreat": { - name: "No Retreat", - effect: "Este movimento aumenta todos os atributos do usuário, mas impede o usuário de trocar de lugar ou fugir." - }, - "tarShot": { - name: "Tar Shot", - effect: "O usuário derrama alcatrão pegajoso sobre o alvo, diminuindo o atributo de Velocidade do alvo. O alvo se torna mais fraco contra movimentos do tipo Fogo." - }, - "magicPowder": { - name: "Magic Powder", - effect: "O usuário espalha uma nuvem de pó mágico que muda o alvo para o tipo Psíquico." - }, - "dragonDarts": { - name: "Dragon Darts", - effect: "O usuário ataca duas vezes usando Dreepy. Se houver dois alvos, este movimento atinge cada alvo uma vez." - }, - "teatime": { - name: "Teatime", - effect: "O usuário faz hora do chá com todos os Pokémon na batalha. Cada Pokémon come sua Fruta segurada." - }, - "octolock": { - name: "Octolock", - effect: "O usuário prende o alvo e impede que ele fuja. Este movimento também diminui os atributos de Defesa e Def. Esp. do alvo a cada turno." - }, - "boltBeak": { - name: "Bolt Beak", - effect: "O usuário fere o alvo com seu bico eletrificado. Se o usuário atacar antes do alvo, o poder deste movimento é dobrado." - }, - "fishiousRend": { - name: "Fishious Rend", - effect: "O usuário fere o alvo com suas brânquias duras. Se o usuário atacar antes do alvo, o poder deste movimento é dobrado." - }, - "courtChange": { - name: "Court Change", - effect: "Com seu poder misterioso, o usuário troca os efeitos de cada lado do campo." - }, - "maxFlare": { - name: "Max Flare", - effect: "Este é um ataque do tipo Fogo que Pokémon Dynamax usam. O usuário intensifica o sol por cinco turnos." - }, - "maxFlutterby": { - name: "Max Flutterby", - effect: "Este é um ataque do tipo Inseto que Pokémon Dynamax usam. Isso diminui o atributo de Atq. Esp. do alvo." - }, - "maxLightning": { - name: "Max Lightning", - effect: "Este é um ataque do tipo Elétrico que Pokémon Dynamax usam. O usuário transforma o chão em Terreno Elétrico por cinco turnos." - }, - "maxStrike": { - name: "Max Strike", - effect: "Este é um ataque do tipo Normal que Pokémon Dynamax usam. Isso diminui o atributo de Velocidade do alvo." - }, - "maxKnuckle": { - name: "Max Knuckle", - effect: "Este é um ataque do tipo Lutador que Pokémon Dynamax usam. Isso aumenta os atributos de Ataque dos Pokémon aliados." - }, - "maxPhantasm": { - name: "Max Phantasm", - effect: "Este é um ataque do tipo Fantasma que Pokémon Dynamax usam. Isso diminui o atributo de Defesa do alvo." - }, - "maxHailstorm": { - name: "Max Hailstorm", - effect: "Este é um ataque do tipo Gelo que Pokémon Dynamax usam. O usuário convoca uma tempestade de granizo que dura cinco turnos." - }, - "maxOoze": { - name: "Max Ooze", - effect: "Este é um ataque do tipo Veneno que Pokémon Dynamax usam. Isso aumenta os atributos de Atq. Esp. dos Pokémon aliados." - }, - "maxGeyser": { - name: "Max Geyser", - effect: "Este é um ataque do tipo Água que Pokémon Dynamax usam. O usuário convoca uma chuva pesada que cai por cinco turnos." - }, - "maxAirstream": { - name: "Max Airstream", - effect: "Este é um ataque do tipo Voador que Pokémon Dynamax usam. Isso aumenta os atributos de Velocidade dos Pokémon aliados." - }, - "maxStarfall": { - name: "Max Starfall", - effect: "Este é um ataque do tipo Fada que Pokémon Dynamax usam. O usuário transforma o chão em Terreno de Nevoeiro por cinco turnos." - }, - "maxWyrmwind": { - name: "Max Wyrmwind", - effect: "Este é um ataque do tipo Dragão que Pokémon Dynamax usam. Isso diminui o atributo de Ataque do alvo." - }, - "maxMindstorm": { - name: "Max Mindstorm", - effect: "Este é um ataque do tipo Psíquico que Pokémon Dynamax usam. O usuário transforma o chão em Terreno Psíquico por cinco turnos." - }, - "maxRockfall": { - name: "Max Rockfall", - effect: "Este é um ataque do tipo Pedra que Pokémon Dynamax usam. O usuário convoca uma tempestade de areia que dura cinco turnos." - }, - "maxQuake": { - name: "Max Quake", - effect: "Este é um ataque do tipo Terra que Pokémon Dynamax usam. Isso aumenta os atributos de Def. Esp. dos Pokémon aliados." - }, - "maxDarkness": { - name: "Max Darkness", - effect: "Este é um ataque do tipo Sombrio que Pokémon Dynamax usam. Isso diminui o atributo de Def. Esp. do alvo." - }, - "maxOvergrowth": { - name: "Max Overgrowth", - effect: "Este é um ataque do tipo Grama que Pokémon Dynamax usam. O usuário transforma o chão em Terreno de Grama por cinco turnos." - }, - "maxSteelspike": { - name: "Max Steelspike", - effect: "Este é um ataque do tipo Aço que Pokémon Dynamax usam. Isso aumenta os atributos de Defesa dos Pokémon aliados." - }, - "clangorousSoul": { - name: "Clangorous Soul", - effect: "O usuário aumenta todos os seus atributos usando um pouco de seu HP." - }, - "bodyPress": { - name: "Body Press", - effect: "O usuário ataca pressionando seu corpo contra o alvo. Quanto maior a Defesa do usuário, mais dano pode infligir ao alvo." - }, - "decorate": { - name: "Decorate", - effect: "O usuário aumenta muito os atributos de Ataque e Atq. Esp. do alvo decorando o alvo." - }, - "drumBeating": { - name: "Drum Beating", - effect: "O usuário toca seu tambor, controlando as raízes do tambor para atacar o alvo. Isso também diminui o atributo de Velocidade do alvo." - }, - "snapTrap": { - name: "Snap Trap", - effect: "O usuário prende o alvo em uma armadilha rápida por quatro ou cinco turnos." - }, - "pyroBall": { - name: "Pyro Ball", - effect: "O usuário ataca acendendo uma pequena pedra e lançando-a como uma bola de fogo no alvo. Isso também pode deixar o alvo queimado." - }, - "behemothBlade": { - name: "Behemoth Blade", - effect: "O usuário empunha uma espada grande e poderosa usando todo o seu corpo e corta o alvo em um ataque vigoroso." - }, - "behemothBash": { - name: "Behemoth Bash", - effect: "O corpo do usuário se torna um escudo firme e atinge o alvo com força." - }, - "auraWheel": { - name: "Aura Wheel", - effect: "Morpeko ataca e aumenta sua Velocidade com a energia armazenada em suas bochechas. O tipo deste movimento muda dependendo da forma do usuário." - }, - "breakingSwipe": { - name: "Breaking Swipe", - effect: "O usuário balança sua cauda dura violentamente e ataca os Pokémon adversários. Isso também diminui os atributos de Ataque deles." - }, - "branchPoke": { - name: "Branch Poke", - effect: "O usuário ataca o alvo cutucando-o com um galho pontiagudo." - }, - "overdrive": { - name: "Overdrive", - effect: "O usuário ataca os Pokémon adversários vibrando uma guitarra ou baixo, causando um eco enorme e uma vibração forte." - }, - "appleAcid": { - name: "Apple Acid", - effect: "O usuário ataca o alvo com um líquido ácido criado a partir de maçãs azedas. Isso também diminui o atributo de Def. Esp. do alvo." - }, - "gravApple": { - name: "Grav Apple", - effect: "O usuário inflige dano derrubando uma maçã de cima. Isso também diminui o atributo de Defesa do alvo." - }, - "spiritBreak": { - name: "Spirit Break", - effect: "O usuário ataca o alvo com tanta força que poderia quebrar o espírito do alvo. Isso também diminui o atributo de Atq. Esp. do alvo." - }, - "strangeSteam": { - name: "Strange Steam", - effect: "O usuário ataca o alvo emitindo vapor. Isso também pode deixar o alvo confuso." - }, - "lifeDew": { - name: "Life Dew", - effect: "O usuário espalha água misteriosa ao redor e restaura o HP de si mesmo e de seus Pokémon aliados na batalha." - }, - "obstruct": { - name: "Obstruct", - effect: "Este movimento permite ao usuário proteger-se de todos os ataques. Sua chance de falhar aumenta se for usado em sucessão. Contato direto reduz severamente o atributo de Defesa do atacante." - }, - "falseSurrender": { - name: "False Surrender", - effect: "O usuário finge abaixar a cabeça, mas então esfaqueia o alvo com seus cabelos desgrenhados. Este ataque nunca erra." - }, - "meteorAssault": { - name: "Meteor Assault", - effect: "O usuário ataca selvagemente com seu alho-poró grosso. O usuário não pode se mover na próxima rodada, porque a força deste movimento o faz cambalear." - }, - "eternabeam": { - name: "Eternabeam", - effect: "Este é o ataque mais poderoso de Eternatus em sua forma original. O usuário não pode se mover na próxima rodada." - }, - "steelBeam": { - name: "Steel Beam", - effect: "O usuário dispara um feixe de aço que coletou de todo o seu corpo. Isso também causa dano ao usuário." - }, - "expandingForce": { - name: "Expanding Force", - effect: "O usuário ataca o alvo com seu poder psíquico. O poder deste movimento aumenta e danifica todos os Pokémon adversários no Terreno Psíquico." - }, - "steelRoller": { - name: "Steel Roller", - effect: "O usuário ataca enquanto destrói o terreno. Este movimento falha quando o chão não foi transformado em um terreno." - }, - "scaleShot": { - name: "Scale Shot", - effect: "O usuário ataca atirando escamas de duas a cinco vezes seguidas. Este movimento aumenta o atributo de Velocidade do usuário, mas diminui seu atributo de Defesa." - }, - "meteorBeam": { - name: "Meteor Beam", - effect: "Neste ataque de dois turnos, o usuário reúne energia espacial e aumenta seu atributo de Atq. Esp., depois ataca o alvo no próximo turno." - }, - "shellSideArm": { - name: "Shell Side Arm", - effect: "Este movimento causa dano físico ou especial, o que for mais eficaz. Isso também pode envenenar o alvo." - }, - "mistyExplosion": { - name: "Misty Explosion", - effect: "O usuário ataca tudo ao seu redor e desmaia ao usar este movimento. O poder deste movimento é aumentado no Terreno de Nevoeiro." - }, - "grassyGlide": { - name: "Grassy Glide", - effect: "Deslizando no chão, o usuário ataca o alvo. Este movimento sempre ataca primeiro no Terreno de Grama." - }, - "risingVoltage": { - name: "Rising Voltage", - effect: "O usuário ataca com a voltagem elétrica que sobe do chão. O poder deste movimento dobra quando o alvo está no Terreno Elétrico." - }, - "terrainPulse": { - name: "Terrain Pulse", - effect: "O usuário utiliza o poder do terreno para atacar. O tipo e o poder deste movimento mudam dependendo do terreno em que é usado." - }, - "skitterSmack": { - name: "Skitter Smack", - effect: "O usuário corre por trás do alvo para atacar. Isso também diminui o atributo de Atq. Esp. do alvo." - }, - "burningJealousy": { - name: "Burning Jealousy", - effect: "O usuário ataca com energia da inveja. Isso deixa todos os Pokémon adversários que tiveram seus atributos aumentados durante o turno com uma queimadura." - }, - "lashOut": { - name: "Lash Out", - effect: "O usuário ataca para desabafar sua frustração contra o alvo. Se os atributos do usuário foram diminuídos durante este turno, o poder deste movimento é dobrado." - }, - "poltergeist": { - name: "Poltergeist", - effect: "O usuário ataca o alvo controlando o item do alvo. O movimento falha se o alvo não tiver um item." - }, - "corrosiveGas": { - name: "Corrosive Gas", - effect: "O usuário envolve tudo ao seu redor com gás altamente ácido e derrete os itens que eles seguram." - }, - "coaching": { - name: "Coaching", - effect: "O usuário treina adequadamente seus Pokémon aliados, aumentando seus atributos de Ataque e Defesa." - }, - "flipTurn": { - name: "Flip Turn", - effect: "Após fazer seu ataque, o usuário corre para trocar de lugar com um Pokémon do grupo à espera." - }, - "tripleAxel": { - name: "Triple Axel", - effect: "Um ataque de três chutes consecutivos que se torna mais poderoso a cada acerto bem-sucedido." - }, - "dualWingbeat": { - name: "Dual Wingbeat", - effect: "O usuário atinge o alvo com suas asas. O alvo é atingido duas vezes seguidas." - }, - "scorchingSands": { - name: "Scorching Sands", - effect: "O usuário joga areia escaldante no alvo para atacar. Isso também pode deixar o alvo queimado." - }, - "jungleHealing": { - name: "Jungle Healing", - effect: "O usuário se torna um com a selva, restaurando HP e curando quaisquer condições de status de si mesmo e de seus Pokémon aliados na batalha." - }, - "wickedBlow": { - name: "Wicked Blow", - effect: "O usuário, tendo dominado o estilo Sombrio, atinge o alvo com um golpe feroz. Este ataque sempre resulta em um acerto crítico." - }, - "surgingStrikes": { - name: "Surging Strikes", - effect: "O usuário, tendo dominado o estilo Água, atinge o alvo com um movimento fluido três vezes seguidas. Estes ataques sempre resultam em acertos críticos." - }, - "thunderCage": { - name: "Thunder Cage", - effect: "O usuário prende o alvo em uma gaiola de eletricidade cintilante por quatro ou cinco turnos." - }, - "dragonEnergy": { - name: "Dragon Energy", - effect: "Convertendo sua força vital em poder, o usuário ataca os Pokémon adversários. Quanto menor o HP do usuário, menor o poder do movimento." - }, - "freezingGlare": { - name: "Freezing Glare", - effect: "O usuário dispara seu poder psíquico dos olhos para atacar. Isso também pode deixar o alvo congelado." - }, - "fieryWrath": { - name: "Fiery Wrath", - effect: "O usuário transforma sua ira em uma aura semelhante ao fogo para atacar. Isso também pode fazer os Pokémon adversários hesitarem." - }, - "thunderousKick": { - name: "Thunderous Kick", - effect: "O usuário oprime o alvo com movimento semelhante ao relâmpago antes de entregar um chute. Isso também diminui o atributo de Defesa do alvo." - }, - "glacialLance": { - name: "Glacial Lance", - effect: "O usuário ataca lançando uma lança de gelo envolta em nevasca nos Pokémon adversários." - }, - "astralBarrage": { - name: "Astral Barrage", - effect: "O usuário ataca enviando uma quantidade assustadora de pequenos fantasmas nos Pokémon adversários." - }, - "eerieSpell": { - name: "Eerie Spell", - effect: "O usuário ataca com seu tremendo poder psíquico. Isso também remove 3 PP do último movimento usado pelo alvo." - }, - "direClaw": { - name: "Dire Claw", - effect: "O usuário ataca o alvo com garras destruidoras. Isso também pode deixar o alvo envenenado, paralisado ou adormecido." - }, - "psyshieldBash": { - name: "Psyshield Bash", - effect: "Envoltando-se em energia psíquica, o usuário se choca contra o alvo. Isso também aumenta o atributo de Defesa do usuário." - }, - "powerShift": { - name: "Power Shift", - effect: "O usuário troca seus atributos de Ataque e Defesa." - }, - "stoneAxe": { - name: "Stone Axe", - effect: "O usuário balança seus machados de pedra no alvo. Fragmentos de pedra deixados para trás por este ataque flutuam ao redor do alvo." - }, - "springtideStorm": { - name: "Springtide Storm", - effect: "O usuário ataca envolvendo os Pokémon adversários em ventos ferozes repletos de amor e ódio. Isso também pode diminuir os atributos de Ataque deles." - }, - "mysticalPower": { - name: "Mystical Power", - effect: "O usuário ataca emitindo um poder misterioso. Isso também aumenta o atributo de Atq. Esp. do usuário." - }, - "ragingFury": { - name: "Raging Fury", - effect: "O usuário se enfurece espalhando chamas por dois ou três turnos. O usuário então fica confuso." - }, - "waveCrash": { - name: "Wave Crash", - effect: "O usuário se envolve em água e atinge o alvo com todo o corpo para infligir dano. Isso também causa muito dano ao usuário." - }, - "chloroblast": { - name: "Chloroblast", - effect: "O usuário lança sua clorofila acumulada para infligir dano no alvo. Isso também causa dano ao usuário." - }, - "mountainGale": { - name: "Mountain Gale", - effect: "O usuário arremessa pedaços gigantes de gelo no alvo para infligir dano. Isso também pode fazer o alvo hesitar." - }, - "victoryDance": { - name: "Victory Dance", - effect: "O usuário realiza uma dança intensa para inaugurar a vitória, aumentando seus atributos de Ataque, Defesa e Velocidade." - }, - "headlongRush": { - name: "Headlong Rush", - effect: "O usuário se choca contra o alvo em um ataque de corpo inteiro. Isso também diminui os atributos de Defesa e Def. Esp. do usuário." - }, - "barbBarrage": { - name: "Barb Barrage", - effect: "O usuário lança inúmeras barbas tóxicas para infligir dano. O poder deste movimento é dobrado se o alvo já estiver envenenado." - }, - "esperWing": { - name: "Esper Wing", - effect: "O usuário corta o alvo com asas enriquecidas com aura. Isso também aumenta o atributo de Velocidade do usuário. Este movimento tem uma chance aumentada de causar um acerto crítico." - }, - "bitterMalice": { - name: "Bitter Malice", - effect: "O usuário ataca o alvo com um ressentimento arrepiante. Isso também diminui o atributo de Ataque do alvo." - }, - "shelter": { - name: "Shelter", - effect: "O usuário torna sua pele tão dura quanto um escudo de ferro, aumentando muito seu atributo de Defesa." - }, - "tripleArrows": { - name: "Triple Arrows", - effect: "O usuário chuta e depois dispara três flechas. Este movimento tem uma chance aumentada de causar um acerto crítico e também pode diminuir o atributo de Defesa do alvo ou fazê-lo hesitar." - }, - "infernalParade": { - name: "Infernal Parade", - effect: "O usuário ataca com miríades de bolas de fogo. Isso também pode deixar o alvo queimado. O poder deste movimento é dobrado se o alvo tiver uma condição de status." - }, - "ceaselessEdge": { - name: "Ceaseless Edge", - effect: "O usuário corta sua lâmina de concha no alvo. Fragmentos de concha deixados para trás por este ataque permanecem espalhados sob o alvo como espinhos." - }, - "bleakwindStorm": { - name: "Bleakwind Storm", - effect: "O usuário ataca com ventos selvagemente frios que fazem tanto o corpo quanto o espírito tremerem. Isso também pode diminuir os atributos de Velocidade dos Pokémon adversários." - }, - "wildboltStorm": { - name: "Wildbolt Storm", - effect: "O usuário invoca uma tempestade trovejante e ataca selvagemente com relâmpagos e vento. Isso também pode deixar os Pokémon adversários paralisados." - }, - "sandsearStorm": { - name: "Sandsear Storm", - effect: "O usuário ataca envolvendo os Pokémon adversários em ventos ferozes e areia escaldante. Isso também pode deixá-los queimados." - }, - "lunarBlessing": { - name: "Lunar Blessing", - effect: "O usuário recebe uma bênção do crescente lunar, restaurando HP e curando condições de status para si mesmo e seus Pokémon aliados atualmente na batalha." - }, - "takeHeart": { - name: "Take Heart", - effect: "O usuário levanta o espírito, curando suas próprias condições de status e aumentando seus atributos de Atq. Esp. e Def. Esp." - }, - "gMaxWildfire": { - name: "G-Max Wildfire", - effect: "Um ataque do tipo Fogo que o Gigantamax Charizard usa. Este movimento continua causando dano aos oponentes por quatro turnos." - }, - "gMaxBefuddle": { - name: "G-Max Befuddle", - effect: "Um ataque do tipo Inseto que o Gigantamax Butterfree usa. Este movimento inflige as condições de envenenado, paralisado ou adormecido nos oponentes." - }, - "gMaxVoltCrash": { - name: "G-Max Volt Crash", - effect: "Um ataque do tipo Elétrico que o Gigantamax Pikachu usa. Este movimento paralisa os oponentes." - }, - "gMaxGoldRush": { - name: "G-Max Gold Rush", - effect: "Um ataque do tipo Normal que o Gigantamax Meowth usa. Este movimento confunde os oponentes e também ganha dinheiro extra." - }, - "gMaxChiStrike": { - name: "G-Max Chi Strike", - effect: "Um ataque do tipo Lutador que Gigantamax Machamp usa. Este movimento aumenta a chance de acertos críticos." - }, - "gMaxTerror": { - name: "G-Max Terror", - effect: "Um ataque do tipo Fantasma que Gigantamax Gengar usa. Este Pokémon pisa na sombra do Pokémon adversário para impedi-lo de escapar." - }, - "gMaxResonance": { - name: "G-Max Resonance", - effect: "Um ataque do tipo Gelo que Gigantamax Lapras usa. Este movimento reduz o dano recebido por cinco turnos." - }, - "gMaxCuddle": { - name: "G-Max Cuddle", - effect: "Um ataque do tipo Normal que Gigantamax Eevee usa. Este movimento apaixona os oponentes." - }, - "gMaxReplenish": { - name: "G-Max Replenish", - effect: "Um ataque do tipo Normal que Gigantamax Snorlax usa. Este movimento restaura Frutas que foram comidas." - }, - "gMaxMalodor": { - name: "G-Max Malodor", - effect: "Um ataque do tipo Veneno que Gigantamax Garbodor usa. Este movimento envenena os oponentes." - }, - "gMaxStonesurge": { - name: "G-Max Stonesurge", - effect: "Um ataque do tipo Água que Gigantamax Drednaw usa. Este movimento espalha pedras afiadas pelo campo." - }, - "gMaxWindRage": { - name: "G-Max Wind Rage", - effect: "Um ataque do tipo Voador que Gigantamax Corviknight usa. Este movimento remove os efeitos de movimentos como Reflect e Light Screen." - }, - "gMaxStunShock": { - name: "G-Max Stun Shock", - effect: "Um ataque do tipo Elétrico que Gigantamax Toxtricity usa. Este movimento envenena ou paralisa os oponentes." - }, - "gMaxFinale": { - name: "G-Max Finale", - effect: "Um ataque do tipo Fada que Gigantamax Alcremie usa. Este movimento cura os PS dos aliados." - }, - "gMaxDepletion": { - name: "G-Max Depletion", - effect: "Um ataque do tipo Dragão que Gigantamax Duraludon usa. Reduz o PP do último movimento usado." - }, - "gMaxGravitas": { - name: "G-Max Gravitas", - effect: "Um ataque do tipo Psíquico que Gigantamax Orbeetle usa. Este movimento muda a gravidade por cinco turnos." - }, - "gMaxVolcalith": { - name: "G-Max Volcalith", - effect: "Um ataque do tipo Pedra que Gigantamax Coalossal usa. Este movimento continua a causar dano aos oponentes por quatro turnos." - }, - "gMaxSandblast": { - name: "G-Max Sandblast", - effect: "Um ataque do tipo Terra que Gigantamax Sandaconda usa. Os oponentes ficam presos em uma tempestade de areia furiosa por quatro a cinco turnos." - }, - "gMaxSnooze": { - name: "G-Max Snooze", - effect: "Um ataque do tipo Sombrio que Gigantamax Grimmsnarl usa. O usuário solta um grande bocejo que faz com que os alvos adormeçam no próximo turno." - }, - "gMaxTartness": { - name: "G-Max Tartness", - effect: "Um ataque do tipo Planta que Gigantamax Flapple usa. Este movimento reduz a Evasão dos oponentes." - }, - "gMaxSweetness": { - name: "G-Max Sweetness", - effect: "Um ataque do tipo Planta que Gigantamax Appletun usa. Este movimento cura as condições de status dos aliados." - }, - "gMaxSmite": { - name: "G-Max Smite", - effect: "Um ataque do tipo Fada que Gigantamax Hatterene usa. Este movimento confunde os oponentes." - }, - "gMaxSteelsurge": { - name: "G-Max Steelsurge", - effect: "Um ataque do tipo Aço que Gigantamax Copperajah usa. Este movimento espalha estacas afiadas pelo campo." - }, - "gMaxMeltdown": { - name: "G-Max Meltdown", - effect: "Um ataque do tipo Aço que Gigantamax Melmetal usa. Este movimento impede os oponentes de usar o mesmo movimento duas vezes seguidas." - }, - "gMaxFoamBurst": { - name: "G-Max Foam Burst", - effect: "Um ataque do tipo Água que Gigantamax Kingler usa. Este movimento reduz drasticamente a Velocidade dos oponentes." - }, - "gMaxCentiferno": { - name: "G-Max Centiferno", - effect: "Um ataque do tipo Fogo que Gigantamax Centiskorch usa. Este movimento prende os oponentes em chamas por quatro a cinco turnos." - }, - "gMaxVineLash": { - name: "G-Max Vine Lash", - effect: "Um ataque do tipo Planta que Gigantamax Venusaur usa. Este movimento continua a causar dano aos oponentes por quatro turnos." - }, - "gMaxCannonade": { - name: "G-Max Cannonade", - effect: "Um ataque do tipo Água que Gigantamax Blastoise usa. Este movimento continua a causar dano aos oponentes por quatro turnos." - }, - "gMaxDrumSolo": { - name: "G-Max Drum Solo", - effect: "Um ataque do tipo Planta que Gigantamax Rillaboom usa. Este movimento pode ser usado no alvo independentemente de suas Habilidades." - }, - "gMaxFireball": { - name: "G-Max Fireball", - effect: "Um ataque do tipo Fogo que Gigantamax Cinderace usa. Este movimento pode ser usado no alvo independentemente de suas Habilidades." - }, - "gMaxHydrosnipe": { - name: "G-Max Hydrosnipe", - effect: "Um ataque do tipo Água que Gigantamax Inteleon usa. Este movimento pode ser usado no alvo independentemente de suas Habilidades." - }, - "gMaxOneBlow": { - name: "G-Max One Blow", - effect: "Um ataque do tipo Sombrio que Gigantamax Urshifu usa. Este movimento único pode ignorar o Max Guard." - }, - "gMaxRapidFlow": { - name: "G-Max Rapid Flow", - effect: "Um ataque do tipo Água que Gigantamax Urshifu usa. Este movimento rápido pode ignorar o Max Guard." - }, - "teraBlast": { - name: "Tera Blast", - effect: "Se o usuário estiver Terastalizado, ele libera energia de seu Tera Tipo. Este movimento causa dano usando o maior entre o Ataque ou Ataque Esp. do usuário." - }, - "silkTrap": { - name: "Silk Trap", - effect: "O usuário tece uma armadilha de seda, protegendo-se de dano enquanto reduz o atributo de Velocidade de qualquer atacante que faça contato direto." - }, - "axeKick": { - name: "Axe Kick", - effect: "O usuário ataca chutando para cima e depois abaixando o calcanhar sobre o alvo. Isso também pode confundir o alvo. Se errar, o usuário sofre dano." - }, - "lastRespects": { - name: "Last Respects", - effect: "O usuário ataca para vingar seus aliados. Quanto mais aliados derrotados, maior o poder do movimento." - }, - "luminaCrash": { - name: "Lumina Crash", - effect: "O usuário ataca liberando uma luz peculiar que afeta até a mente. Isso também reduz muito a Defesa Esp. do alvo." - }, - "orderUp": { - name: "Order Up", - effect: "O usuário ataca com elegância. Se o usuário tiver um Tatsugiri na boca, este movimento aumenta uma dos atributos do usuário com base na forma do Tatsugiri." - }, - "jetPunch": { - name: "Jet Punch", - effect: "O usuário convoca um turbilhão ao redor de seu punho e ataca com velocidade cegante. Este movimento sempre age primeiro." - }, - "spicyExtract": { - name: "Spicy Extract", - effect: "O usuário emite um extrato incrivelmente picante, aumentando muito o Ataque do alvo e reduzindo muito a Defesa do alvo." - }, - "spinOut": { - name: "Spin Out", - effect: "O usuário gira furiosamente ao esticar as pernas, causando dano ao alvo. Isso também reduz muito a Velocidade do usuário." - }, - "populationBomb": { - name: "Population Bomb", - effect: "Os companheiros do usuário se reúnem em massa para executar um ataque combinado que atinge o alvo de uma a dez vezes seguidas." - }, - "iceSpinner": { - name: "Ice Spinner", - effect: "O usuário cobre seus pés com gelo fino e gira ao redor, atingindo o alvo. O movimento giratório deste movimento também destrói o terreno." - }, - "glaiveRush": { - name: "Glaive Rush", - effect: "O usuário lança todo o seu corpo em uma carga imprudente. Após o uso deste movimento, ataques contra o usuário não podem errar e infligirão o dobro do dano até a próxima vez que o usuário agir." - }, - "revivalBlessing": { - name: "Revival Blessing", - effect: "O usuário concede uma bênção amorosa, reanimando um Pokémon da equipe que tenha desmaiado e restaurando metade do máximo de PS desse Pokémon." - }, - "saltCure": { - name: "Salt Cure", - effect: "O usuário cura o alvo com sal, causando dano a cada turno. Tipos de Aço e Água são mais fortemente afetados por este movimento." - }, - "tripleDive": { - name: "Triple Dive", - effect: "O usuário executa um mergulho triplo perfeitamente cronometrado, atingindo o alvo com respingos de água três vezes seguidas." - }, - "mortalSpin": { - name: "Mortal Spin", - effect: "O usuário realiza um ataque giratório que também pode eliminar os efeitos de movimentos como Bind, Wrap e Leech Seed. Isso também envenena os Pokémon oponentes." - }, - "doodle": { - name: "Doodle", - effect: "O usuário captura a essência do alvo em um esboço. Isso muda as Habilidades do usuário e de seus Pokémon aliados para a do alvo." - }, - "filletAway": { - name: "Fillet Away", - effect: "O usuário aumenta muito seus atributos de Ataque, Ataque Esp. e Velocidade ao usar seus próprios PS." - }, - "kowtowCleave": { - name: "Kowtow Cleave", - effect: "O usuário corta o alvo depois de se curvar para fazer o alvo baixar a guarda. Este ataque nunca erra." - }, - "flowerTrick": { - name: "Flower Trick", - effect: "O usuário lança um buquê de flores armado no alvo. Este ataque nunca erra e sempre resulta em um acerto crítico." - }, - "torchSong": { - name: "Torch Song", - effect: "O usuário exala chamas furiosas como se estivesse cantando uma canção, queimando o alvo. Isso também aumenta o atributo de Ataque Esp. do usuário." - }, - "aquaStep": { - name: "Aqua Step", - effect: "O usuário brinca com o alvo e o ataca usando passos de dança leves e fluidos. Isso também aumenta a Velocidade do usuário." - }, - "ragingBull": { - name: "Raging Bull", - effect: "O usuário realiza um ataque de investida como um touro enfurecido. O tipo deste movimento depende da forma do usuário. Ele também pode quebrar barreiras, como Light Screen e Reflect." - }, - "makeItRain": { - name: "Make It Rain", - effect: "O usuário ataca lançando uma massa de moedas. Isso também reduz o atributo de Ataque Esp. do usuário. Dinheiro é ganho após a batalha." - }, - "psyblade": { - name: "Psyblade", - effect: "O usuário fende o alvo com uma lâmina etérea. O poder deste movimento é aumentado em 50% se o usuário estiver no Electric Terrain." - }, - "hydroSteam": { - name: "Hydro Steam", - effect: "O usuário ataca o alvo com água fervente. O poder deste movimento não é reduzido sob sol forte, mas sim aumentado em 50%." - }, - "ruination": { - name: "Ruination", - effect: "O usuário invoca um desastre ruinoso. Isso corta os PS do alvo pela metade." - }, - "collisionCourse": { - name: "Collision Course", - effect: "O usuário se transforma e cai no chão, causando uma explosão pré-histórica massiva. O poder deste movimento é aumentado mais do que o usual se for um golpe super eficaz." - }, - "electroDrift": { - name: "Electro Drift", - effect: "O usuário avança a velocidades ultra-rápidas, perfurando o alvo com eletricidade futurista. O poder deste movimento é aumentado mais do que o usual se for um golpe super eficaz." - }, - "shedTail": { - name: "Shed Tail", - effect: "O usuário cria um substituto para si mesmo usando seus próprios PS antes de trocar de lugar com um Pokémon da equipe que está esperando." - }, - "chillyReception": { - name: "Chilly Reception", - effect: "O usuário conta uma piada terrivelmente ruim antes de trocar de lugar com um Pokémon da equipe que está esperando. Isso invoca uma nevasca que dura cinco turnos." - }, - "tidyUp": { - name: "Tidy Up", - effect: "O usuário arruma e remove os efeitos de Spikes, Stealth Rock, Sticky Web, Toxic Spikes e Substitute. Isso também aumenta os atributos de Ataque e Velocidade do usuário." - }, - "snowscape": { - name: "Snowscape", - effect: "O usuário invoca uma tempestade de neve que dura cinco turnos. Isso aumenta os atributos de Defesa dos tipos Gelo." - }, - "pounce": { - name: "Pounce", - effect: "O usuário ataca saltando sobre o alvo. Isso também reduz a Velocidade do alvo." - }, - "trailblaze": { - name: "Trailblaze", - effect: "O usuário ataca repentinamente como se estivesse saltando de dentro da grama alta. A agilidade do usuário aumenta sua Velocidade." - }, - "chillingWater": { - name: "Chilling Water", - effect: "O usuário ataca o alvo derramando sobre ele água tão fria que suga seu poder. Isso também reduz o atributo de Ataque do alvo." - }, - "hyperDrill": { - name: "Hyper Drill", - effect: "O usuário gira a parte pontiaguda de seu corpo em alta velocidade para perfurar o alvo. Este ataque pode atingir um alvo que esteja usando um movimento como Protect ou Detect." - }, - "twinBeam": { - name: "Twin Beam", - effect: "O usuário dispara feixes místicos de seus olhos para causar dano. O alvo é atingido duas vezes seguidas." - }, - "rageFist": { - name: "Rage Fist", - effect: "O usuário converte sua raiva em energia para atacar. Quanto mais vezes o usuário foi atingido por ataques, maior o poder do movimento." - }, - "armorCannon": { - name: "Armor Cannon", - effect: "O usuário dispara sua própria armadura como projéteis ardentes. Isso também reduz os atributos de Defesa e Defesa Esp. do usuário." - }, - "bitterBlade": { - name: "Bitter Blade", - effect: "O usuário concentra seus sentimentos amargos em relação ao mundo dos vivos em um ataque cortante. Os PS do usuário são restaurados em até metade do dano causado ao alvo." - }, - "doubleShock": { - name: "Double Shock", - effect: "O usuário descarrega toda a eletricidade de seu corpo para executar um ataque de alto dano. Após usar este movimento, o usuário não será mais do tipo Elétrico." - }, - "gigatonHammer": { - name: "Gigaton Hammer", - effect: "O usuário balança todo o seu corpo para atacar com seu enorme martelo. Este movimento não pode ser usado duas vezes seguidas." - }, - "comeuppance": { - name: "Comeuppance", - effect: "O usuário retalia com muito mais força contra o oponente que causou o último dano a ele." - }, - "aquaCutter": { - name: "Aqua Cutter", - effect: "O usuário expele água pressurizada para cortar o alvo como uma lâmina. Este movimento tem uma chance aumentada de resultar em um acerto crítico." - }, - "blazingTorque": { - name: "Blazing Torque", - effect: "O usuário acelera seu motor ardente no alvo. Isso também pode deixar o alvo queimado." - }, - "wickedTorque": { - name: "Wicked Torque", - effect: "O usuário acelera seu motor no alvo com intenção maliciosa. Isso pode fazer o alvo adormecer." - }, - "noxiousTorque": { - name: "Noxious Torque", - effect: "O usuário acelera seu motor venenoso no alvo. Isso também pode envenenar o alvo." - }, - "combatTorque": { - name: "Combat Torque", - effect: "O usuário acelera seu motor com força no alvo. Isso também pode deixar o alvo paralisado." - }, - "magicalTorque": { - name: "Magical Torque", - effect: "O usuário acelera seu motor de fadas no alvo. Isso também pode confundir o alvo." - }, - "bloodMoon": { - name: "Blood Moon", - effect: "O usuário libera toda a força de seu espírito de uma lua cheia que brilha tão vermelha quanto o sangue. Este movimento não pode ser usado duas vezes seguidas." - }, - "matchaGotcha": { - name: "Matcha Gotcha", - effect: "O usuário dispara um jato de chá que misturou. Os PS do usuário são restaurados em até metade do dano causado ao alvo. Isso também pode deixar o alvo queimado." - }, - "syrupBomb": { - name: "Syrup Bomb", - effect: "O usuário detona uma explosão de xarope de doces pegajoso, que reveste o alvo e faz o atributo de Velocidade do alvo cair a cada turno por três turnos." - }, - "ivyCudgel": { - name: "Ivy Cudgel", - effect: "O usuário golpeia com um porrete envolto em hera. O tipo deste movimento muda dependendo da máscara usada pelo usuário, e tem uma chance aumentada de resultar em um acerto crítico." - }, - "electroShot": { - name: "Electro Shot", - effect: "O usuário acumula eletricidade no primeiro turno, aumentando suo atributo de Ataque Esp., e então dispara um tiro de alta voltagem no próximo turno. O tiro será disparado imediatamente na chuva." - }, - "teraStarstorm": { - name: "Tera Starstorm", - effect: "Com o poder de seus cristais, o usuário bombardeia e elimina o alvo. Quando usado por Terapagos em sua Forma Estelar, este movimento causa dano a todos os Pokémon oponentes." - }, - "fickleBeam": { - name: "Fickle Beam", - effect: "O usuário dispara um feixe de luz para causar dano. Às vezes, todas as cabeças do usuário disparam feixes ao mesmo tempo, dobrando o poder do movimento." - }, - "burningBulwark": { - name: "Burning Bulwark", - effect: "A pele intensamente quente do usuário o protege de ataques e também queima qualquer atacante que faça contato direto." - }, - "thunderclap": { - name: "Thunderclap", - effect: "Este movimento permite que o usuário ataque primeiro com um choque de eletricidade. Este movimento falha se o alvo não estiver preparando um ataque." - }, - "mightyCleave": { - name: "Mighty Cleave", - effect: "O usuário empunha a luz que se acumulou no topo de sua cabeça para cortar o alvo. Este movimento atinge mesmo se o alvo se proteger." - }, - "tachyonCutter": { - name: "Tachyon Cutter", - effect: "O usuário ataca lançando lâminas de partículas no alvo duas vezes seguidas. Este ataque nunca erra." - }, - "hardPress": { - name: "Hard Press", - effect: "O alvo é esmagado com um braço, uma garra ou algo do tipo para causar dano. Quanto mais PS o alvo tiver, maior o poder do movimento." - }, - "dragonCheer": { - name: "Dragon Cheer", - effect: "O usuário eleva o moral de seus aliados com um grito dracônico, para que seus futuros ataques tenham uma chance aumentada de resultar em golpes críticos. Isso anima mais os tipos Dragão." - }, - "alluringVoice": { - name: "Alluring Voice", - effect: "O usuário ataca o alvo usando sua voz angelical. Isso também confunde o alvo se seus atributos tiverem sido aumentadas durante o turno." - }, - "temperFlare": { - name: "Temper Flare", - effect: "Impulsionado pelo desespero, o usuário ataca o alvo. O poder deste movimento é dobrado se o movimento anterior do usuário tiver falhado." - }, - "supercellSlam": { - name: "Supercell Slam", - effect: "O usuário eletrifica seu corpo e cai sobre o alvo para causar dano. Se este movimento errar, o usuário sofre dano." - }, - "psychicNoise": { - name: "Psychic Noise", - effect: "O usuário ataca o alvo com ondas sonoras desagradáveis. Por dois turnos, o alvo é impedido de recuperar PS através de movimentos, Habilidades ou itens mantidos." - }, - "upperHand": { - name: "Upper Hand", - effect: "O usuário reage ao movimento do alvo e o ataca com o calcanhar da palma da mão, fazendo o alvo hesitar. Este movimento falha se o alvo não estiver preparando um movimento de prioridade." - }, - "malignantChain": { - name: "Malignant Chain", - effect: "O usuário derrama toxinas no alvo envolvendo-o em uma corrente tóxica e corrosiva. Isso também pode deixar o alvo seriamente envenenado." - } -} as const; diff --git a/src/locales/pt_BR/nature.ts b/src/locales/pt_BR/nature.json similarity index 77% rename from src/locales/pt_BR/nature.ts rename to src/locales/pt_BR/nature.json index fc906fde6ef..5678c74061c 100644 --- a/src/locales/pt_BR/nature.ts +++ b/src/locales/pt_BR/nature.json @@ -1,6 +1,4 @@ -import { SimpleTranslationEntries } from "#app/interfaces/locales"; - -export const nature: SimpleTranslationEntries = { +{ "Hardy": "Destemida", "Lonely": "Solitária", "Brave": "Valente", @@ -25,5 +23,5 @@ export const nature: SimpleTranslationEntries = { "Gentle": "Gentil", "Sassy": "Atrevida", "Careful": "Cuidadosa", - "Quirky": "Peculiar", -} as const; + "Quirky": "Peculiar" +} \ No newline at end of file diff --git a/src/locales/pt_BR/party-ui-handler.ts b/src/locales/pt_BR/party-ui-handler.json similarity index 88% rename from src/locales/pt_BR/party-ui-handler.ts rename to src/locales/pt_BR/party-ui-handler.json index 08132b4bfc0..435bc916ac6 100644 --- a/src/locales/pt_BR/party-ui-handler.ts +++ b/src/locales/pt_BR/party-ui-handler.json @@ -1,6 +1,4 @@ -import { SimpleTranslationEntries } from "#app/interfaces/locales"; - -export const partyUiHandler: SimpleTranslationEntries = { +{ "SEND_OUT": "Trocar", "SUMMARY": "Sumário", "CANCEL": "Cancelar", @@ -15,9 +13,8 @@ export const partyUiHandler: SimpleTranslationEntries = { "ALL": "Tudo", "PASS_BATON": "Passar Bastão", "UNPAUSE_EVOLUTION": "Ativar Evolução", - "REVIVE": "Reviver", + "REVIVE": "Reanimar", "RENAME": "Renomear", - "choosePokemon": "Escolha um Pokémon.", "doWhatWithThisPokemon": "O que você deseja fazer?", "noEnergy": "{{pokemonName}} não pode\nmais batalhar!", @@ -34,13 +31,9 @@ export const partyUiHandler: SimpleTranslationEntries = { "changeQuantity": "Selecione um item para transferir.\nUse < e > para mudar a quantidade.", "selectAnotherPokemonToSplice": "Selecione outro Pokémon para fundir.", "cancel": "Voltar", - - // Slot TM text "able": "Capaz", "notAble": "Incapaz", "learned": "Aprendido", - - // Releasing messages "goodbye": "Adeus, {{pokemonName}}!", "byebye": "Tchau, {{pokemonName}}!", "farewell": "Até mais, {{pokemonName}}!", @@ -50,5 +43,5 @@ export const partyUiHandler: SimpleTranslationEntries = { "illNeverForgetYou": "Nunca vou esquecer de você, {{pokemonName}}!", "untilWeMeetAgain": "Até nos encontrarmos novamente, {{pokemonName}}!", "sayonara": "Sayonara, {{pokemonName}}!", - "smellYaLater": "Te vejo depois, {{pokemonName}}!", -} as const; + "smellYaLater": "Te vejo depois, {{pokemonName}}!" +} \ No newline at end of file diff --git a/src/locales/pt_BR/pokeball.json b/src/locales/pt_BR/pokeball.json new file mode 100644 index 00000000000..3a059654bb3 --- /dev/null +++ b/src/locales/pt_BR/pokeball.json @@ -0,0 +1,8 @@ +{ + "pokeBall": "Poké Bola", + "greatBall": "Grande Bola", + "ultraBall": "Ultra Bola", + "rogueBall": "Bola Rogue", + "masterBall": "Bola Mestra", + "luxuryBall": "Bola Luxo" +} \ No newline at end of file diff --git a/src/locales/pt_BR/pokeball.ts b/src/locales/pt_BR/pokeball.ts deleted file mode 100644 index ee29b9612e6..00000000000 --- a/src/locales/pt_BR/pokeball.ts +++ /dev/null @@ -1,10 +0,0 @@ -import { SimpleTranslationEntries } from "#app/interfaces/locales"; - -export const pokeball: SimpleTranslationEntries = { - "pokeBall": "Poké Bola", - "greatBall": "Grande Bola", - "ultraBall": "Ultra Bola", - "rogueBall": "Bola Rogue", - "masterBall": "Bola Mestra", - "luxuryBall": "Bola Luxo", -} as const; diff --git a/src/locales/pt_BR/pokemon-form-battle.json b/src/locales/pt_BR/pokemon-form-battle.json new file mode 100644 index 00000000000..6ea7947fb66 --- /dev/null +++ b/src/locales/pt_BR/pokemon-form-battle.json @@ -0,0 +1,14 @@ +{ + "mega": "Mega {{pokemonName}}", + "mega-x": "Mega {{pokemonName}} X", + "mega-y": "Mega {{pokemonName}} Y", + "primal": "{{pokemonName}} Primordial", + "gigantamax": "G-Max {{pokemonName}}", + "eternamax": "E-Max {{pokemonName}}", + "megaChange": "{{preName}} Mega Evoluiu\npara {{pokemonName}}!", + "gigantamaxChange": "{{preName}} Gigantamaxou\npara {{pokemonName}}!", + "eternamaxChange": "{{preName}} Eternamaxou\npara {{pokemonName}}!", + "revertChange": "{{pokemonName}} voltou\npara sua forma original!", + "formChange": "{{preName}} mudou de forma!", + "disguiseChange": "O seu disfarce serviu-lhe de isca!" +} \ No newline at end of file diff --git a/src/locales/pt_BR/pokemon-form.ts b/src/locales/pt_BR/pokemon-form.json similarity index 70% rename from src/locales/pt_BR/pokemon-form.ts rename to src/locales/pt_BR/pokemon-form.json index 062fc165ae0..aa8f32a5d36 100644 --- a/src/locales/pt_BR/pokemon-form.ts +++ b/src/locales/pt_BR/pokemon-form.json @@ -1,25 +1,4 @@ -import { SimpleTranslationEntries } from "#app/interfaces/locales"; - -export const battlePokemonForm: SimpleTranslationEntries = { - "mega": "Mega {{pokemonName}}", - "mega-x": "Mega {{pokemonName}} X", - "mega-y": "Mega {{pokemonName}} Y", - "primal": "{{pokemonName}} Primordial", - "gigantamax": "G-Max {{pokemonName}}", - "eternamax": "E-Max {{pokemonName}}", - - "megaChange": "{{preName}} Mega Evoluiu\npara {{pokemonName}}!", - "gigantamaxChange": "{{preName}} Gigantamaxou\npara {{pokemonName}}!", - "eternamaxChange": "{{preName}} Eternamaxou\npara {{pokemonName}}!", - "revertChange": "{{pokemonName}} voltou\npara sua forma original!", - "formChange": "{{preName}} mudou de forma!", - "disguiseChange": "O seu disfarce serviu-lhe de isca!", -} as const; - -export const pokemonForm: SimpleTranslationEntries = { - - // Starters forms - // 1G +{ "pikachuCosplay": "Cosplay", "pikachuCoolCosplay": "Cosplay Legal", "pikachuBeautyCosplay": "Cosplay Bonito", @@ -28,8 +7,7 @@ export const pokemonForm: SimpleTranslationEntries = { "pikachuToughCosplay": "Cosplay Forte", "pikachuPartner": "Parceiro", "eeveePartner": "Parceiro", - // 2G - "pichuSpiky": "Spiky", + "pichuSpiky": "Orelha Espetada", "unownA": "A", "unownB": "B", "unownC": "C", @@ -58,12 +36,10 @@ export const pokemonForm: SimpleTranslationEntries = { "unownZ": "Z", "unownExclamation": "!", "unownQuestion": "?", - // 3G "castformSunny": "Ensolarado", "castformRainy": "Chuvoso", "castformSnowy": "Nevado", "deoxysNormal": "Normal", - // 4G "burmyPlant": "Vegetal", "burmySandy": "Arenoso", "burmyTrash": "Lixo", @@ -74,9 +50,8 @@ export const pokemonForm: SimpleTranslationEntries = { "rotomFrost": "Congelante", "rotomFan": "Ventilador", "rotomMow": "Corte", - "giratinaAltered": "Altered", - "shayminLand": "Land", - // 5G + "giratinaAltered": "Alterado", + "shayminLand": "Terrestre", "basculinRedStriped": "Listras Vermelhas", "basculinBlueStriped": "Listras Azuis", "basculinWhiteStriped": "Listras Brancas", @@ -84,12 +59,12 @@ export const pokemonForm: SimpleTranslationEntries = { "deerlingSummer": "Verão", "deerlingAutumn": "Outono", "deerlingWinter": "Inverno", - "tornadusIncarnate": "Incarnate", - "thundurusIncarnate": "Incarnate", - "landorusIncarnate": "Incarnate", - "keldeoOrdinary": "Ordinary", - "meloettaAria": "Aria", - // 6G + "tornadusIncarnate": "Materializado", + "thundurusIncarnate": "Materializado", + "landorusIncarnate": "Materializado", + "keldeoOrdinary": "Comum", + "meloettaAria": "Ária", + "meloettaPirouette": "Pirueta", "froakieBattleBond": "Vínculo de Batalha", "scatterbugMeadow": "Prado", "scatterbugIcySnow": "Neve Congelada", @@ -135,7 +110,6 @@ export const pokemonForm: SimpleTranslationEntries = { "zygarde50Pc": "Forma 50% Agrupada", "zygarde10Pc": "Forma 10% Agrupada", "zygardeComplete": "Forma Completa", - // 7G "oricorioBaile": "Flamenco", "oricorioPompom": "Pompom", "oricorioPau": "Hula", @@ -159,18 +133,16 @@ export const pokemonForm: SimpleTranslationEntries = { "mimikyuBusted": "Descoberto", "magearnaOriginal": "Original", "marshadowZenith": "Zênite", - // 8G "sinisteaPhony": "Falsificado", "sinisteaAntique": "Autêntico", "eiscueNoIce": "Descongelado", "indeedeeMale": "Macho", "indeedeeFemale": "Fêmea", - "morpekoFullBelly": "Full Belly", - "zacianHeroOfManyBattles": "Hero Of Many Battles", - "zamazentaHeroOfManyBattles": "Hero Of Many Battles", + "morpekoFullBelly": "Saciado", + "zacianHeroOfManyBattles": "Herói Veterano", + "zamazentaHeroOfManyBattles": "Herói Veterano", "zarudeDada": "Papa", - "enamorusIncarnate": "Incarnate", - // 9G + "enamorusIncarnate": "Materializado", "squawkabillyGreenPlumage": "Plumas Verdes", "squawkabillyBluePlumage": "Plumas Azuis", "squawkabillyYellowPlumage": "Plumas Amarelas", @@ -180,20 +152,19 @@ export const pokemonForm: SimpleTranslationEntries = { "tatsugiriStretchy": "Reto", "gimmighoulChest": "Baú", "gimmighoulRoaming": "Perambulante", - "koraidonApexBuild": "Apex Build", - "koraidonLimitedBuild": "Limited Build", - "koraidonSprintingBuild": "Sprinting Build", - "koraidonSwimmingBuild": "Swimming Build", - "koraidonGlidingBuild": "Gliding Build", - "miraidonUltimateMode": "Ultimate Mode", - "miraidonLowPowerMode": "Low Power Mode", - "miraidonDriveMode": "Drive Mode", - "miraidonAquaticMode": "Aquatic Mode", - "miraidonGlideMode": "Glide Mode", + "koraidonApexBuild": "Forma Plena", + "koraidonLimitedBuild": "Forma Limitada", + "koraidonSprintingBuild": "Forma de Corrida", + "koraidonSwimmingBuild": "Forma de Nado", + "koraidonGlidingBuild": "Forma de Voo", + "miraidonUltimateMode": "Modo Pleno", + "miraidonLowPowerMode": "Modo Limitado", + "miraidonDriveMode": "Modo Terrestre", + "miraidonAquaticMode": "Modo Aquático", + "miraidonGlideMode": "Modo Aéreo", "poltchageistCounterfeit": "Imitação", "poltchageistArtisan": "Artesão", "paldeaTaurosCombat": "Combate", "paldeaTaurosBlaze": "Chamas", - "paldeaTaurosAqua": "Aquático", - -} as const; + "paldeaTaurosAqua": "Aquático" +} diff --git a/src/locales/pt_BR/pokemon-info-container.json b/src/locales/pt_BR/pokemon-info-container.json new file mode 100644 index 00000000000..dcf1fc4e0b5 --- /dev/null +++ b/src/locales/pt_BR/pokemon-info-container.json @@ -0,0 +1,7 @@ +{ + "moveset": "Movimentos", + "gender": "Gênero:", + "ability": "Habilidade:", + "nature": "Natureza:", + "form": "Forma:" +} \ No newline at end of file diff --git a/src/locales/pt_BR/pokemon-info-container.ts b/src/locales/pt_BR/pokemon-info-container.ts deleted file mode 100644 index 5789e60b274..00000000000 --- a/src/locales/pt_BR/pokemon-info-container.ts +++ /dev/null @@ -1,9 +0,0 @@ -import { SimpleTranslationEntries } from "#app/interfaces/locales"; - -export const pokemonInfoContainer: SimpleTranslationEntries = { - "moveset": "Movimentos", - "gender": "Gênero:", - "ability": "Habilidade:", - "nature": "Natureza:", - "form": "Forma:", -} as const; diff --git a/src/locales/pt_BR/pokemon-info.ts b/src/locales/pt_BR/pokemon-info.json similarity index 82% rename from src/locales/pt_BR/pokemon-info.ts rename to src/locales/pt_BR/pokemon-info.json index a4af3f3e34a..a7a46b7a24e 100644 --- a/src/locales/pt_BR/pokemon-info.ts +++ b/src/locales/pt_BR/pokemon-info.json @@ -1,7 +1,5 @@ -import { PokemonInfoTranslationEntries } from "#app/interfaces/locales"; - -export const pokemonInfo: PokemonInfoTranslationEntries = { - Stat: { +{ + "Stat": { "HP": "PS", "HPshortened": "PS", "ATK": "Ataque", @@ -16,9 +14,9 @@ export const pokemonInfo: PokemonInfoTranslationEntries = { "SPDshortened": "Veloc.", "ACC": "Precisão", "EVA": "Evasão", + "HPStat": "PS" }, - - Type: { + "Type": { "UNKNOWN": "Desconhecido", "NORMAL": "Normal", "FIGHTING": "Lutador", @@ -39,5 +37,5 @@ export const pokemonInfo: PokemonInfoTranslationEntries = { "DARK": "Sombrio", "FAIRY": "Fada", "STELLAR": "Estelar" - }, -} as const; + } +} diff --git a/src/locales/pt_BR/pokemon-summary.ts b/src/locales/pt_BR/pokemon-summary.json similarity index 77% rename from src/locales/pt_BR/pokemon-summary.ts rename to src/locales/pt_BR/pokemon-summary.json index a492e701c94..62add589847 100644 --- a/src/locales/pt_BR/pokemon-summary.ts +++ b/src/locales/pt_BR/pokemon-summary.json @@ -1,6 +1,4 @@ -import { TranslationEntries } from "#app/interfaces/locales"; - -export const pokemonSummary: TranslationEntries = { +{ "pokemonInfo": "Info. Pokémon", "status": "Status", "powerAccuracyCategory": "Poder\nPrecisão\nCategoria", @@ -11,10 +9,9 @@ export const pokemonSummary: TranslationEntries = { "expPoints": "Pontos EXP.", "nextLv": "Próx. Nv.", "cancel": "Cancelar", - "memoString": "Natureza {{natureFragment}},\n{{metFragment}}", "metFragment": { "normal": "encontrado no Nv.{{level}},\n{{biome}}.", - "apparently": "aparentemente encontrado no Nv.{{level}},\n{{biome}}.", - }, -} as const; + "apparently": "aparentemente encontrado no Nv.{{level}},\n{{biome}}." + } +} \ No newline at end of file diff --git a/src/locales/pt_BR/pokemon.ts b/src/locales/pt_BR/pokemon.json similarity index 99% rename from src/locales/pt_BR/pokemon.ts rename to src/locales/pt_BR/pokemon.json index b3151eabb29..f780d2accbd 100644 --- a/src/locales/pt_BR/pokemon.ts +++ b/src/locales/pt_BR/pokemon.json @@ -1,6 +1,4 @@ -import { SimpleTranslationEntries } from "#app/interfaces/locales"; - -export const pokemon: SimpleTranslationEntries = { +{ "bulbasaur": "Bulbasaur", "ivysaur": "Ivysaur", "venusaur": "Venusaur", @@ -1082,5 +1080,5 @@ export const pokemon: SimpleTranslationEntries = { "hisui_decidueye": "Decidueye", "paldea_tauros": "Tauros", "paldea_wooper": "Wooper", - "bloodmoon_ursaluna": "Ursaluna", -} as const; + "bloodmoon_ursaluna": "Ursaluna" +} \ No newline at end of file diff --git a/src/locales/pt_BR/run-history.json b/src/locales/pt_BR/run-history.json new file mode 100644 index 00000000000..74cc2c35d28 --- /dev/null +++ b/src/locales/pt_BR/run-history.json @@ -0,0 +1,37 @@ +{ + "victory": "Vitória!", + "defeatedWild": "Derrotado por ", + "defeatedTrainer": "Derrotado por ", + "defeatedTrainerDouble": "Derrotado por Dupla", + "defeatedRival": "Derrotado por Rival", + "defeated": "Derrotado", + "defeatedWild_female": "Derrotada por ", + "defeatedTrainer_female": "Derrotada por ", + "defeatedTrainerDouble_female": "Derrotada por Dupla", + "defeatedRival_female": "Derrotada por Rival", + "defeated_female": "Derrotada", + "luck": "Sorte", + "score": "Pontuação", + "mode": "Modo", + "challengeRules": "Regra(s)", + "challengeMonoGen1": "Ger. 1", + "challengeMonoGen2": "Ger. 2", + "challengeMonoGen3": "Ger. 3", + "challengeMonoGen4": "Ger. 4", + "challengeMonoGen5": "Ger. 5", + "challengeMonoGen6": "Ger. 6", + "challengeMonoGen7": "Ger. 7", + "challengeMonoGen8": "Ger. 8", + "challengeMonoGen9": "Ger. 9", + "playerItems": "Itens do Jogador", + "personalBest": "Recorde Pessoal!", + "SPDshortened": "Vel.", + "runInfo": "Info. do Jogo", + "money": "Dinheiro", + "runLength": "Duração do Jogo", + "viewHeldItems": "Itens Segurados", + "hallofFameText": "Bem-vindo ao Hall da Fama!", + "hallofFameText_female": "Bem-vinda ao Hall da Fama!", + "viewHallOfFame": "Veja o Hall da Fama!", + "viewEndingSplash": "Veja a arte final!" +} \ No newline at end of file diff --git a/src/locales/pt_BR/save-slot-select-ui-handler.json b/src/locales/pt_BR/save-slot-select-ui-handler.json new file mode 100644 index 00000000000..31fe28de691 --- /dev/null +++ b/src/locales/pt_BR/save-slot-select-ui-handler.json @@ -0,0 +1,7 @@ +{ + "overwriteData": "Substituir os dados desse slot?", + "loading": "Carregando...", + "wave": "Onda", + "lv": "Nv", + "empty": "Vazio" +} \ No newline at end of file diff --git a/src/locales/pt_BR/save-slot-select-ui-handler.ts b/src/locales/pt_BR/save-slot-select-ui-handler.ts deleted file mode 100644 index 6dee8a1a16a..00000000000 --- a/src/locales/pt_BR/save-slot-select-ui-handler.ts +++ /dev/null @@ -1,9 +0,0 @@ -import { SimpleTranslationEntries } from "#app/interfaces/locales"; - -export const saveSlotSelectUiHandler: SimpleTranslationEntries = { - "overwriteData": "Substituir os dados desse slot?", - "loading": "Carregando...", - "wave": "Onda", - "lv": "Nv", - "empty": "Vazio", -} as const; diff --git a/src/locales/pt_BR/settings.ts b/src/locales/pt_BR/settings.json similarity index 90% rename from src/locales/pt_BR/settings.ts rename to src/locales/pt_BR/settings.json index 14646b59742..58ccb45f86d 100644 --- a/src/locales/pt_BR/settings.ts +++ b/src/locales/pt_BR/settings.json @@ -1,6 +1,4 @@ -import { SimpleTranslationEntries } from "#app/interfaces/locales.js"; - -export const settings: SimpleTranslationEntries = { +{ "boy": "Menino", "girl": "Menina", "general": "Geral", @@ -62,8 +60,10 @@ export const settings: SimpleTranslationEntries = { "playerGender": "Gênero do Jogador", "typeHints": "Dicas de Tipo", "masterVolume": "Volume Mestre", - "bgmVolume": "Volume de BGM", - "seVolume": "Volume de SE", + "bgmVolume": "Músicas", + "fieldVolume": "Ambiente", + "seVolume": "Ef. Sonoros", + "uiVolume": "Interface", "musicPreference": "Preferência de Música", "mixed": "Misto", "gamepadPleasePlug": "Conecte um controle ou pressione um botão", @@ -97,6 +97,11 @@ export const settings: SimpleTranslationEntries = { "controller": "Controle", "gamepadSupport": "Suporte para Controle", "showBgmBar": "Exibir Nomes das Músicas", - "moveTouchControls": "Move Touch Controls", - "shopOverlayOpacity": "Opacidade da Loja" -} as const; + "moveTouchControls": "Mover Controles de Toque", + "shopOverlayOpacity": "Opacidade da Loja", + "shopCursorTarget": "Alvo do Cursor da Loja", + "items": "Itens", + "reroll": "Atualizar", + "shop": "Loja", + "checkTeam": "Checar Time" +} diff --git a/src/locales/pt_BR/splash-messages.ts b/src/locales/pt_BR/splash-messages.json similarity index 89% rename from src/locales/pt_BR/splash-messages.ts rename to src/locales/pt_BR/splash-messages.json index b621456a9ec..55c0b1b9e74 100644 --- a/src/locales/pt_BR/splash-messages.ts +++ b/src/locales/pt_BR/splash-messages.json @@ -1,6 +1,4 @@ -import { SimpleTranslationEntries } from "#app/interfaces/locales"; - -export const splashMessages: SimpleTranslationEntries = { +{ "battlesWon": "Batalhas Ganhas!", "joinTheDiscord": "Junte-se ao Discord!", "infiniteLevels": "Níveis Infinitos!", @@ -34,5 +32,5 @@ export const splashMessages: SimpleTranslationEntries = { "alsoTryRadicalRed": "Também Jogue Radical Red!", "eeveeExpo": "Eevee Expo!", "ynoproject": "YNOproject!", - "breedersInSpace": "Criadores Pokémon no Espaço!", -} as const; + "breedersInSpace": "Criadores Pokémon no Espaço!" +} \ No newline at end of file diff --git a/src/locales/pt_BR/starter-select-ui-handler.ts b/src/locales/pt_BR/starter-select-ui-handler.json similarity index 79% rename from src/locales/pt_BR/starter-select-ui-handler.ts rename to src/locales/pt_BR/starter-select-ui-handler.json index f76762ffe9f..1d83e43f12c 100644 --- a/src/locales/pt_BR/starter-select-ui-handler.ts +++ b/src/locales/pt_BR/starter-select-ui-handler.json @@ -1,11 +1,4 @@ -import { SimpleTranslationEntries } from "#app/interfaces/locales"; - -/** - * The menu namespace holds most miscellaneous text that isn't directly part of the game's - * contents or directly related to Pokemon data. This includes menu navigation, settings, - * account interactions, descriptive text, etc. - */ -export const starterSelectUiHandler: SimpleTranslationEntries = { +{ "confirmStartTeam": "Começar com esses Pokémon?", "confirmExit": "Deseja sair?", "invalidParty": "Essa equipe de iniciais não é válida!", @@ -49,4 +42,4 @@ export const starterSelectUiHandler: SimpleTranslationEntries = { "locked": "Bloqueada", "disabled": "Desativada", "uncaught": "Não capturado" -}; +} \ No newline at end of file diff --git a/src/locales/pt_BR/status-effect.json b/src/locales/pt_BR/status-effect.json new file mode 100644 index 00000000000..5a851a0bdeb --- /dev/null +++ b/src/locales/pt_BR/status-effect.json @@ -0,0 +1,65 @@ +{ + "none": { + "name": "Nenhum", + "description": "", + "obtain": "", + "obtainSource": "", + "activation": "", + "overlap": "", + "heal": "" + }, + "poison": { + "name": "Envenenamento", + "description": "envenenamento", + "obtain": "{{pokemonNameWithAffix}}\nfoi envenenado!", + "obtainSource": "{{pokemonNameWithAffix}}\nfoi envenenado por {{sourceText}}!", + "activation": "{{pokemonNameWithAffix}} foi ferido\ncom o veneno!", + "overlap": "{{pokemonNameWithAffix}} já\nestá envenenado!", + "heal": "{{pokemonNameWithAffix}} se\ncurou do envenenamento!" + }, + "toxic": { + "name": "Toxic", + "description": "envenenamento", + "obtain": "{{pokemonNameWithAffix}}\nfoi seriamente envenenado!", + "obtainSource": "{{pokemonNameWithAffix}} foi seriamente\nenvenenado por {{sourceText}}!", + "activation": "{{pokemonNameWithAffix}} foi ferido\ncom o veneno!", + "overlap": "{{pokemonNameWithAffix}} já\nestá envenenado!", + "heal": "{{pokemonNameWithAffix}} se\ncurou do envenenamento!" + }, + "paralysis": { + "name": "Paralisia", + "description": "paralisia", + "obtain": "{{pokemonNameWithAffix}} foi paralisado,\nTalvez ele não consiga se mover!", + "obtainSource": "{{pokemonNameWithAffix}} foi paralisado por {{sourceText}},\nTalvez ele não consiga se mover!", + "activation": "{{pokemonNameWithAffix}} está paralisado!\nEle não consegue se mover!", + "overlap": "{{pokemonNameWithAffix}} já\nestá paralisado!", + "heal": "{{pokemonNameWithAffix}} foi\ncurado da paralisia!" + }, + "sleep": { + "name": "Dormindo", + "description": "dormindo", + "obtain": "{{pokemonNameWithAffix}}\nadormeceu!", + "obtainSource": "{{pokemonNameWithAffix}}\ndormiu devido a {{sourceText}}!", + "activation": "{{pokemonNameWithAffix}} está dormindo profundamente.", + "overlap": "{{pokemonNameWithAffix}} já\nestá dormindo!", + "heal": "{{pokemonNameWithAffix}} acordou!" + }, + "freeze": { + "name": "Congelamento", + "description": "congelando", + "obtain": "{{pokemonNameWithAffix}}\nfoi congelado!", + "obtainSource": "{{pokemonNameWithAffix}}\nfoi congelado por {{sourceText}}!", + "activation": "{{pokemonNameWithAffix}} está\ncongelado!", + "overlap": "{{pokemonNameWithAffix}} já\nestá congelado!", + "heal": "{{pokemonNameWithAffix}} foi\ndescongelado!" + }, + "burn": { + "name": "Queimadura", + "description": "queimadura", + "obtain": "{{pokemonNameWithAffix}}\nfoi queimado!", + "obtainSource": "{{pokemonNameWithAffix}}\nfoi queimado por {{sourceText}}!", + "activation": "{{pokemonNameWithAffix}} foi ferido\npor sua queimadura!", + "overlap": "{{pokemonNameWithAffix}} já\nestá queimado!", + "heal": "{{pokemonNameWithAffix}} foi\ncurado de sua queimadura!" + } +} \ No newline at end of file diff --git a/src/locales/pt_BR/status-effect.ts b/src/locales/pt_BR/status-effect.ts deleted file mode 100644 index d99e2bd5ec1..00000000000 --- a/src/locales/pt_BR/status-effect.ts +++ /dev/null @@ -1,67 +0,0 @@ -import { StatusEffectTranslationEntries } from "#app/interfaces/locales.js"; - -export const statusEffect: StatusEffectTranslationEntries = { - none: { - name: "Nenhum", - description: "", - obtain: "", - obtainSource: "", - activation: "", - overlap: "", - heal: "" - }, - poison: { - name: "Envenenamento", - description: "envenenamento", - obtain: "{{pokemonNameWithAffix}}\nfoi envenenado!", - obtainSource: "{{pokemonNameWithAffix}}\nfoi envenenado por {{sourceText}}!", - activation: "{{pokemonNameWithAffix}} foi ferido\ncom o veneno!", - overlap: "{{pokemonNameWithAffix}} já\nestá envenenado!", - heal: "{{pokemonNameWithAffix}} se\ncurou do envenenamento!" - }, - toxic: { - name: "Toxic", - description: "envenenamento", - obtain: "{{pokemonNameWithAffix}}\nfoi seriamente envenenado!", - obtainSource: "{{pokemonNameWithAffix}} foi seriamente\nenvenenado por {{sourceText}}!", - activation: "{{pokemonNameWithAffix}} foi ferido\ncom o veneno!", - overlap: "{{pokemonNameWithAffix}} já\nestá envenenado!", - heal: "{{pokemonNameWithAffix}} se\ncurou do envenenamento!" - }, - paralysis: { - name: "Paralisia", - description: "paralisia", - obtain: "{{pokemonNameWithAffix}} foi paralisado,\nTalvez ele não consiga se mover!", - obtainSource: "{{pokemonNameWithAffix}} foi paralisado por {{sourceText}},\nTalvez ele não consiga se mover!", - activation: "{{pokemonNameWithAffix}} está paralisado!\nEle não consegue se mover!", - overlap: "{{pokemonNameWithAffix}} já\nestá paralisado!", - heal: "{{pokemonNameWithAffix}} foi\ncurado da paralisia!" - }, - sleep: { - name: "Dormindo", - description: "dormindo", - obtain: "{{pokemonNameWithAffix}}\nadormeceu!", - obtainSource: "{{pokemonNameWithAffix}}\ndormiu devido a {{sourceText}}!", - activation: "{{pokemonNameWithAffix}} está dormindo profundamente.", - overlap: "{{pokemonNameWithAffix}} já\nestá dormindo!", - heal: "{{pokemonNameWithAffix}} acordou!" - }, - freeze: { - name: "Congelamento", - description: "congelando", - obtain: "{{pokemonNameWithAffix}}\nfoi congelado!", - obtainSource: "{{pokemonNameWithAffix}}\nfoi congelado por {{sourceText}}!", - activation: "{{pokemonNameWithAffix}} está\ncongelado!", - overlap: "{{pokemonNameWithAffix}} já\nestá congelado!", - heal: "{{pokemonNameWithAffix}} foi\ndescongelado!" - }, - burn: { - name: "Queimadura", - description: "queimadura", - obtain: "{{pokemonNameWithAffix}}\nfoi queimado!", - obtainSource: "{{pokemonNameWithAffix}}\nfoi queimado por {{sourceText}}!", - activation: "{{pokemonNameWithAffix}} foi ferido\npor sua queimadura!", - overlap: "{{pokemonNameWithAffix}} já\nestá queimado!", - heal: "{{pokemonNameWithAffix}} foi\ncurado de sua queimadura!" - }, -} as const; diff --git a/src/locales/pt_BR/terrain.json b/src/locales/pt_BR/terrain.json new file mode 100644 index 00000000000..73df2b441ac --- /dev/null +++ b/src/locales/pt_BR/terrain.json @@ -0,0 +1,16 @@ +{ + "misty": "Enevoado", + "mistyStartMessage": "Uma névoa se espalhou pelo campo de batalha!", + "mistyClearMessage": "A névou sumiu do campo de batalha.", + "mistyBlockMessage": "{{pokemonNameWithAffix}} se envolveu com uma névoa protetora!", + "electric": "Elétrico", + "electricStartMessage": "Uma corrente elétrica se espalhou pelo campo de batalha!", + "electricClearMessage": "A eletricidade sumiu do campo de batalha.", + "grassy": "de Plantas", + "grassyStartMessage": "Grama cresceu para cobrir o campo de batalha!", + "grassyClearMessage": "A grama sumiu do campo de batalha.", + "psychic": "Psíquico", + "psychicStartMessage": "O campo de batalha ficou esquisito!", + "psychicClearMessage": "A esquisitice sumiu do campo de batalha!", + "defaultBlockMessage": "{{pokemonNameWithAffix}} está protegido pelo Terreno {{terrainName}}!" +} \ No newline at end of file diff --git a/src/locales/pt_BR/trainer-classes.json b/src/locales/pt_BR/trainer-classes.json new file mode 100644 index 00000000000..482265d00c6 --- /dev/null +++ b/src/locales/pt_BR/trainer-classes.json @@ -0,0 +1,131 @@ +{ + "ace_trainer": "Treinador Ás", + "ace_trainer_female": "Treinadora Ás", + "ace_duo": "Dupla Ás", + "artist": "Artista", + "artist_female": "Artista", + "backers": "Torcedores", + "backpacker": "Mochileiro", + "backpacker_female": "Mochileira", + "backpackers": "Mochileiros", + "baker": "Padeira", + "battle_girl": "Lutadora", + "beauty": "Modelo", + "beginners": "Iniciantes", + "biker": "Motoqueiro", + "black_belt": "Faixa Preta", + "breeder": "Criador", + "breeder_female": "Criadora", + "breeders": "Criadores", + "clerk": "Funcionário", + "clerk_female": "Funcionária", + "colleagues": "Funcionários", + "crush_kin": "Casal Lutador", + "cyclist": "Ciclista", + "cyclist_female": "Ciclista", + "cyclists": "Ciclistas", + "dancer": "Dançarino", + "dancer_female": "Dançarina", + "depot_agent": "Ferroviário", + "doctor": "Doutor", + "doctor_female": "Doutora", + "firebreather": "Cospe-Fogo", + "fisherman": "Pescador", + "fisherman_female": "Pescadora", + "gentleman": "Cavalheiro", + "guitarist": "Guitarrista", + "guitarist_female": "Guitarrista", + "harlequin": "Arlequim", + "hiker": "Montanhista", + "hooligans": "Bandoleiro", + "hoopster": "Jogador de Basquete", + "infielder": "Jogador de Baseball", + "janitor": "Faxineiro", + "lady": "Dama", + "lass": "Senhorita", + "linebacker": "Zagueiro", + "maid": "Doméstica", + "madame": "Madame", + "medical_team": "Equipe Médica", + "musician": "Músico", + "hex_maniac": "Ocultista", + "nurse": "Enfermeira", + "nursery_aide": "Professora do Berçário", + "officer": "Policial", + "parasol_lady": "Moça de Sombrinha", + "pilot": "Piloto", + "pokéfan": "Pokefã", + "pokéfan_female": "Pokéfã", + "pokéfan_family": "Família Pokefã", + "preschooler": "Menino do Prezinho", + "preschooler_female": "Menina do Prezinho", + "preschoolers": "Alunos do Prezinho", + "psychic": "Médium", + "psychic_female": "Médium", + "psychics": "Médiuns", + "pokémon_ranger": "Guarda Pokémon", + "pokémon_ranger_female": "Guarda Pokémon", + "pokémon_rangers": "Guardas Pokémon", + "ranger": "Guarda", + "restaurant_staff": "Equipe do Restaurante", + "rich": "Burguês", + "rich_female": "Burguesa", + "rich_boy": "Riquinho", + "rich_couple": "Casal Burguês", + "rich_kid": "Garoto Rico", + "rich_kid_female": "Garota Rica", + "rich_kids": "Garotos Ricos", + "roughneck": "Arruaceiro", + "sailor": "Marinheiro", + "scientist": "Cientista", + "scientist_female": "Cientista", + "scientists": "Cientistas", + "smasher": "Tenista", + "snow_worker": "Operário da Neve", + "snow_worker_female": "Operária da Neve", + "striker": "Atacante", + "school_kid": "Estudante", + "school_kid_female": "Estudante", + "school_kids": "Estudantes", + "swimmer": "Nadador", + "swimmer_female": "Nadadora", + "swimmers": "Nadadores", + "twins": "Gêmeos", + "veteran": "Veterano", + "veteran_female": "Veterana", + "veteran_duo": "Dupla Veterana", + "waiter": "Garçom", + "waitress": "Garçonete", + "worker": "Operário", + "worker_female": "Operária", + "workers": "Operários", + "youngster": "Jovem", + "rocket_grunt": "Capanga da Equipe Rocket", + "rocket_grunts": "Capangas da Equipe Rocket", + "rocket_grunt_female": "Capanga da Equipe Rocket", + "magma_grunt": "Capanga da Equipe Magma", + "magma_grunt_female": "Capanga da Equipe Magma", + "magma_grunts": "Capangas da Equipe Magma", + "aqua_grunt": "Capanga da Equipe Aqua", + "aqua_grunt_female": "Capanga da Equipe Aqua", + "aqua_grunts": "Capangas da Equipe Aqua", + "galactic_grunt": "Capanga da Equipe Galáctica", + "galactic_grunt_female": "Capanga da Equipe Galáctica", + "galactic_grunts": "Capangas da Equipe Galáctica", + "plasma_grunt": "Capanga da Equipe Plasma", + "plasma_grunt_female": "Capanga da Equipe Plasma", + "plasma_grunts": "Capangas da Equipe Plasma", + "flare_grunt": "Capanga da Equipe Flare", + "flare_grunt_female": "Capanga da Equipe Flare", + "flare_grunts": "Capangas da Equipe Flare", + "aether_grunt": "Funcionário da Fundação Aether", + "aether_grunt_female": "Funcionária da Fundação Aether", + "aether_grunts": "Funcionários da Fundação Aether", + "skull_grunt": "Capanga da Equipe Skull", + "skull_grunt_female": "Capanga da Equipe Skull", + "skull_grunts": "Capangas da Equipe Skull", + "macro_grunt": "Treinador da Macro Cosmos", + "macro_grunt_female": "Treinadora da Macro Cosmos", + "macro_grunts": "Treinadores da Macro Cosmos" + +} diff --git a/src/locales/pt_BR/trainer-names.json b/src/locales/pt_BR/trainer-names.json new file mode 100644 index 00000000000..5500e2ddb46 --- /dev/null +++ b/src/locales/pt_BR/trainer-names.json @@ -0,0 +1,162 @@ +{ + "brock": "Brock", + "misty": "Misty", + "lt_surge": "Ten. Surge", + "erika": "Erika", + "janine": "Janine", + "sabrina": "Sabrina", + "blaine": "Blaine", + "giovanni": "Giovanni", + "falkner": "Falkner", + "bugsy": "Bugsy", + "whitney": "Whitney", + "morty": "Morty", + "chuck": "Chuck", + "jasmine": "Jasmine", + "pryce": "Pryce", + "clair": "Clair", + "roxanne": "Roxanne", + "brawly": "Brawly", + "wattson": "Wattson", + "flannery": "Flannery", + "norman": "Norman", + "winona": "Winona", + "tate": "Tate", + "liza": "Liza", + "juan": "Juan", + "roark": "Roark", + "gardenia": "Gardenia", + "maylene": "Maylene", + "crasher_wake": "Demolidor Wake", + "fantina": "Fantina", + "byron": "Byron", + "candice": "Candice", + "volkner": "Volkner", + "cilan": "Cilan", + "chili": "Chili", + "cress": "Cress", + "cheren": "Cheren", + "lenora": "Lenora", + "roxie": "Roxie", + "burgh": "Burgh", + "elesa": "Elesa", + "clay": "Clay", + "skyla": "Skyla", + "brycen": "Brycen", + "drayden": "Drayden", + "marlon": "Marlon", + "viola": "Viola", + "grant": "Grant", + "korrina": "Korrina", + "ramos": "Ramos", + "clemont": "Clemont", + "valerie": "Valerie", + "olympia": "Olympia", + "wulfric": "Wulfric", + "milo": "Milo", + "nessa": "Nessa", + "kabu": "Kabu", + "bea": "Bea", + "allister": "Allister", + "opal": "Opal", + "bede": "Bede", + "gordie": "Gordie", + "melony": "Melony", + "piers": "Piers", + "marnie": "Marnie", + "raihan": "Raihan", + "katy": "Katy", + "brassius": "Brassius", + "iono": "Iono", + "kofu": "Kofu", + "larry": "Larry", + "ryme": "Ryme", + "tulip": "Tulip", + "grusha": "Grusha", + "lorelei": "Lorelei", + "bruno": "Bruno", + "agatha": "Agatha", + "lance": "Lance", + "will": "Will", + "koga": "Koga", + "karen": "Karen", + "sidney": "Sidney", + "phoebe": "Phoebe", + "glacia": "Glacia", + "drake": "Drake", + "aaron": "Aaron", + "bertha": "Bertha", + "flint": "Flint", + "lucian": "Lucian", + "shauntal": "Shauntal", + "marshal": "Marshal", + "grimsley": "Grimsley", + "caitlin": "Caitlin", + "malva": "Malva", + "siebold": "Siebold", + "wikstrom": "Wikstrom", + "drasna": "Drasna", + "hala": "Hala", + "molayne": "Molayne", + "olivia": "Olivia", + "acerola": "Acerola", + "kahili": "Kahili", + "rika": "Rika", + "poppy": "Poppy", + "hassel": "Hassel", + "crispin": "Crispin", + "amarys": "Amarys", + "lacey": "Lacey", + "drayton": "Drayton", + "blue": "Blue", + "red": "Red", + "steven": "Steven", + "wallace": "Wallace", + "cynthia": "Cynthia", + "alder": "Alder", + "iris": "Iris", + "diantha": "Diantha", + "hau": "Hau", + "geeta": "Geeta", + "nemona": "Nemona", + "kieran": "Kieran", + "leon": "Leon", + "rival": "Finn", + "rival_female": "Ivy", + "archer": "Archer", + "ariana": "Ariana", + "proton": "Proton", + "petrel": "Petrel", + "tabitha": "Tabitha", + "courtney": "Courtney", + "shelly": "Shelly", + "matt": "Matt", + "mars": "Mars", + "jupiter": "Jupiter", + "saturn": "Saturn", + "zinzolin": "Zinzolin", + "rood": "Rood", + "xerosic": "Xerosic", + "bryony": "Bryony", + "faba": "Faba", + "plumeria": "Plumeria", + "oleana": "Oleana", + "maxie": "Maxie", + "archie": "Archie", + "cyrus": "Cyrus", + "ghetsis": "Ghetsis", + "lysandre": "Lysandre", + "lusamine": "Lusamine", + "guzma": "Guzma", + "rose": "Rose", + "blue_red_double": "Blue & Red", + "red_blue_double": "Red & Blue", + "tate_liza_double": "Tate & Liza", + "liza_tate_double": "Liza & Tate", + "steven_wallace_double": "Steven & Wallace", + "wallace_steven_double": "Wallace & Steven", + "alder_iris_double": "Alder & Iris", + "iris_alder_double": "Iris & Alder", + "marnie_piers_double": "Marnie & Piers", + "piers_marnie_double": "Piers & Marnie" +} diff --git a/src/locales/pt_BR/trainer-titles.json b/src/locales/pt_BR/trainer-titles.json new file mode 100644 index 00000000000..701c2e143fa --- /dev/null +++ b/src/locales/pt_BR/trainer-titles.json @@ -0,0 +1,38 @@ +{ + "elite_four": "Elite dos Quatro", + "elite_four_female": "Elite dos Quatro", + "gym_leader": "Líder de Ginásio", + "gym_leader_female": "Líder de Ginásio", + "gym_leader_double": "Líderes de Ginásio", + "champion": "Campeão", + "champion_female": "Campeã", + "champion_double": "Dupla Campeã", + "rival": "Rival", + "professor": "Professor", + "frontier_brain": "Cérebro da Fronteira", + "rocket_boss": "Chefe da Equipe Rocket", + "magma_boss": "Chefe da Equipe Magma", + "aqua_boss": "Chefe da Equipe Aqua", + "galactic_boss": "Chefe da Equipe Galáctica", + "plasma_boss": "Chefe da Equipe Plasma", + "flare_boss": "Chefe da Equipe Flare", + "aether_boss": "Presidente Aether", + "skull_boss": "Chefe da Equipe Skull", + "macro_boss": "Presidente da Macro Cosmos", + + "rocket_admin": "Admin da Equipe Rocket", + "rocket_admin_female": "Admin da Equipe Rocket", + "magma_admin": "Admin da Equipe Magma", + "magma_admin_female": "Admin da Equipe Magma", + "aqua_admin": "Admin da Equipe Aqua", + "aqua_admin_female": "Admin da Equipe Aqua", + "galactic_commander": "Comandante da Equipe Galáctica", + "galactic_commander_female": "Comandante da Equipe Galáctica", + "plasma_sage": "Sábio da Equipe Plasma", + "plasma_admin": "Admin da Equipe Plasma", + "flare_admin": "Admin da Equipe Flare", + "flare_admin_female": "Admin da Equipe Flare", + "aether_admin": "Admin da Fundação Aether", + "skull_admin": "Admin da Equipe Skull", + "macro_admin": "Macro Cosmos" +} diff --git a/src/locales/pt_BR/trainers.ts b/src/locales/pt_BR/trainers.ts deleted file mode 100644 index 41932cd1b9a..00000000000 --- a/src/locales/pt_BR/trainers.ts +++ /dev/null @@ -1,322 +0,0 @@ -import { SimpleTranslationEntries } from "#app/interfaces/locales"; - -// Titles of special trainers like gym leaders, elite four, and the champion -export const titles: SimpleTranslationEntries = { - "elite_four": "Elite dos Quatro", - "elite_four_female": "Elite dos Quatro", - "gym_leader": "Líder de Ginásio", - "gym_leader_female": "Líder de Ginásio", - "gym_leader_double": "Líderes de Ginásio", - "champion": "Campeão", - "champion_female": "Campeã", - "champion_double": "Dupla Campeã", - "rival": "Rival", - "professor": "Professor", - "frontier_brain": "Cérebro da Fronteira", - "rocket_boss": "Chefe da Equipe Rocket", - "magma_boss": "Chefe da Equipe Magma", - "aqua_boss": "Chefe da Equipe Aqua", - "galactic_boss": "Chefe da Equipe Galáctica", - "plasma_boss": "Chefe da Equipe Plasma", - "flare_boss": "Chefe da Equipe Flare", - - "rocket_admin": "Admin da Equipe Rocket", - "rocket_admin_female": "Admin da Equipe Rocket", - "magma_admin": "Admin da Equipe Magma", - "magma_admin_female": "Admin da Equipe Magma", - "aqua_admin": "Admin da Equipe Aqua", - "aqua_admin_female": "Admin da Equipe Aqua", - "galactic_commander": "Comandante da Equipe Galáctica", - "galactic_commander_female": "Comandante da Equipe Galáctica", - "plasma_sage": "Sábio da Equipe Plasma", - "plasma_admin": "Admin da Equipe Plasma", - "flare_admin": "Admin da Equipe Flare", - "flare_admin_female": "Admin da Equipe Flare", - // Maybe if we add the evil teams we can add "Team Rocket" and "Team Aqua" etc. here as well as "Team Rocket Boss" and "Team Aqua Admin" etc. -} as const; - -// Titles of trainers like "Youngster" or "Lass" -export const trainerClasses: SimpleTranslationEntries = { - "ace_trainer": "Treinador Ás", - "ace_trainer_female": "Treinadora Ás", - "ace_duo": "Dupla Ás", - "artist": "Artista", - "artist_female": "Artista", - "backpackers": "Mochileiros", - "backers": "Torcedores", - "backpacker": "Mochileiro", - "backpacker_female": "Mochileira", - "baker": "Padeira", - "battle_girl": "Lutadora", - "beauty": "Modelo", - "beginners": "Iniciantes", - "biker": "Motoqueiro", - "black_belt": "Faixa Preta", - "breeder": "Criador", - "breeder_female": "Criadora", - "breeders": "Criadores", - "clerk": "Funcionário", - "clerk_female": "Funcionária", - "colleagues": "Funcionários", - "crush_kin": "Casal Lutador", - "cyclist": "Ciclista", - "cyclist_female": "Ciclista", - "cyclists": "Ciclistas", - "dancer": "Dançarino", - "dancer_female": "Dançarina", - "depot_agent": "Ferroviário", - "doctor": "Doutor", - "doctor_female": "Doutora", - "firebreather": "Cospe-Fogo", - "fishermen": "Pescador", - "fishermen_female": "Pescadora", - "gentleman": "Cavalheiro", - "guitarist": "Guitarrista", - "guitarist_female": "Guitarrista", - "harlequin": "Arlequim", - "hiker": "Montanhista", - "hooligans": "Bandoleiro", - "hoopster": "Jogador de Basquete", - "infielder": "Jogador de Baseball", - "janitor": "Faxineiro", - "lady": "Dama", - "lass": "Senhorita", - "linebacker": "Zagueiro", - "maid": "Doméstica", - "madame": "Madame", - "medical_team": "Equipe Médica", - "musician": "Músico", - "hex_maniac": "Ocultista", - "nurse": "Enfermeira", - "nursery_aide": "Professora do Berçário", - "officer": "Policial", - "parasol_lady": "Moça de Sombrinha", - "pilot": "Piloto", - "pokéfan": "Pokefã", - "pokéfan_female": "Pokéfã", - "pokéfan_family": "Família Pokefã", - "preschooler": "Menino do Prezinho", - "preschooler_female": "Menina do Prezinho", - "preschoolers": "Alunos do Prezinho", - "psychic": "Médium", - "psychic_female": "Médium", - "psychics": "Médiuns", - "pokémon_ranger": "Guarda Pokémon", - "pokémon_ranger_female": "Guarda Pokémon", - "pokémon_rangers": "Guardas Pokémon", - "ranger": "Guarda", - "restaurant_staff": "Equipe do Restaurante", - "rich": "Burguês", - "rich_female": "Burguesa", - "rich_boy": "Riquinho", - "rich_couple": "Casal Burguês", - "rich_kid": "Garoto Rico", - "rich_kid_female": "Garota Rica", - "rich_kids": "Garotos Ricos", - "roughneck": "Arruaceiro", - "sailor": "Marinheiro", - "scientist": "Cientista", - "scientist_female": "Cientista", - "scientists": "Cientistas", - "smasher": "Tenista", - "snow_worker": "Operário da Neve", - "snow_worker_female": "Operária da Neve", - "striker": "Atacante", - "school_kid": "Estudante", - "school_kid_female": "Estudante", - "school_kids": "Estudantes", - "swimmer": "Nadador", - "swimmer_female": "Nadadora", - "swimmers": "Nadadores", - "twins": "Gêmeos", - "veteran": "Veterano", - "veteran_female": "Veterana", - "veteran_duo": "Dupla Veterana", - "waiter": "Garçom", - "waitress": "Garçonete", - "worker": "Operário", - "worker_female": "Operária", - "workers": "Operários", - "youngster": "Jovem", - "rocket_grunt": "Capanga da Equipe Rocket", - "rocket_grunt_female": "Capanga da Equipe Rocket", - "rocket_grunts": "Capangas da Equipe Rocket", - "magma_grunt": "Capanga da Equipe Magma", - "magma_grunt_female": "Capanga da Equipe Magma", - "magma_grunts": "Capangas da Equipe Magma", - "aqua_grunt": "Capanga da Equipe Aqua", - "aqua_grunt_female": "Capanga da Equipe Aqua", - "aqua_grunts": "Capangas da Equipe Aqua", - "galactic_grunt": "Capanga da Equipe Galáctica", - "galactic_grunt_female": "Capanga da Equipe Galáctica", - "galactic_grunts": "Capangas da Equipe Galáctica", - "plasma_grunt": "Capanga da Equipe Plasma", - "plasma_grunt_female": "Capanga da Equipe Plasma", - "plasma_grunts": "Capangas da Equipe Plasma", - "flare_grunt": "Capanga da Equipe Flare", - "flare_grunt_female": "Capanga da Equipe Flare", - "flare_grunts": "Capangas da Equipe Flare", -} as const; - -// Names of special trainers like gym leaders, elite four, and the champion -export const trainerNames: SimpleTranslationEntries = { - "brock": "Brock", - "misty": "Misty", - "lt_surge": "Ten. Surge", - "erika": "Erika", - "janine": "Janine", - "sabrina": "Sabrina", - "blaine": "Blaine", - "giovanni": "Giovanni", - "falkner": "Falkner", - "bugsy": "Bugsy", - "whitney": "Whitney", - "morty": "Morty", - "chuck": "Chuck", - "jasmine": "Jasmine", - "pryce": "Pryce", - "clair": "Clair", - "roxanne": "Roxanne", - "brawly": "Brawly", - "wattson": "Wattson", - "flannery": "Flannery", - "norman": "Norman", - "winona": "Winona", - "tate": "Tate", - "liza": "Liza", - "juan": "Juan", - "roark": "Roark", - "gardenia": "Gardenia", - "maylene": "Maylene", - "crasher_wake": "Demolidor Wake", - "fantina": "Fantina", - "byron": "Byron", - "candice": "Candice", - "volkner": "Volkner", - "cilan": "Cilan", - "chili": "Chili", - "cress": "Cress", - "cheren": "Cheren", - "lenora": "Lenora", - "roxie": "Roxie", - "burgh": "Burgh", - "elesa": "Elesa", - "clay": "Clay", - "skyla": "Skyla", - "brycen": "Brycen", - "drayden": "Drayden", - "marlon": "Marlon", - "viola": "Viola", - "grant": "Grant", - "korrina": "Korrina", - "ramos": "Ramos", - "clemont": "Clemont", - "valerie": "Valerie", - "olympia": "Olympia", - "wulfric": "Wulfric", - "milo": "Milo", - "nessa": "Nessa", - "kabu": "Kabu", - "bea": "Bea", - "allister": "Allister", - "opal": "Opal", - "bede": "Bede", - "gordie": "Gordie", - "melony": "Melony", - "piers": "Piers", - "marnie": "Marnie", - "raihan": "Raihan", - "katy": "Katy", - "brassius": "Brassius", - "iono": "Iono", - "kofu": "Kofu", - "larry": "Larry", - "ryme": "Ryme", - "tulip": "Tulip", - "grusha": "Grusha", - "lorelei": "Lorelei", - "bruno": "Bruno", - "agatha": "Agatha", - "lance": "Lance", - "will": "Will", - "koga": "Koga", - "karen": "Karen", - "sidney": "Sidney", - "phoebe": "Phoebe", - "glacia": "Glacia", - "drake": "Drake", - "aaron": "Aaron", - "bertha": "Bertha", - "flint": "Flint", - "lucian": "Lucian", - "shauntal": "Shauntal", - "marshal": "Marshal", - "grimsley": "Grimsley", - "caitlin": "Caitlin", - "malva": "Malva", - "siebold": "Siebold", - "wikstrom": "Wikstrom", - "drasna": "Drasna", - "hala": "Hala", - "molayne": "Molayne", - "olivia": "Olivia", - "acerola": "Acerola", - "kahili": "Kahili", - "rika": "Rika", - "poppy": "Poppy", - "hassel": "Hassel", - "crispin": "Crispin", - "amarys": "Amarys", - "lacey": "Lacey", - "drayton": "Drayton", - "blue": "Blue", - "red": "Red", - "steven": "Steven", - "wallace": "Wallace", - "cynthia": "Cynthia", - "alder": "Alder", - "iris": "Iris", - "diantha": "Diantha", - "hau": "Hau", - "geeta": "Geeta", - "nemona": "Nemona", - "kieran": "Kieran", - "leon": "Leon", - "rival": "Finn", - "rival_female": "Ivy", - - // Evil Team Admins - "archer": "Archer", - "ariana": "Ariana", - "proton": "Proton", - "petrel": "Petrel", - "tabitha": "Tabitha", - "courtney": "Courtney", - "shelly": "Shelly", - "matt": "Matt", - "mars": "Mars", - "jupiter": "Jupiter", - "saturn": "Saturn", - "zinzolin": "Zinzolin", - "rood": "Rood", - "xerosic": "Xerosic", - "bryony": "Bryony", - - "maxie": "Maxie", - "archie": "Archie", - "cyrus": "Cyrus", - "ghetsis": "Ghetsis", - "lysandre": "Lysandre", - - // Double Names - "blue_red_double": "Blue & Red", - "red_blue_double": "Red & Blue", - "tate_liza_double": "Tate & Liza", - "liza_tate_double": "Liza & Tate", - "steven_wallace_double": "Steven & Wallace", - "wallace_steven_double": "Wallace & Steven", - "alder_iris_double": "Alder & Iris", - "iris_alder_double": "Iris & Alder", - "marnie_piers_double": "Marnie & Piers", - "piers_marnie_double": "Piers & Marnie", -} as const; diff --git a/src/locales/pt_BR/tutorial.json b/src/locales/pt_BR/tutorial.json new file mode 100644 index 00000000000..e347ca6fbee --- /dev/null +++ b/src/locales/pt_BR/tutorial.json @@ -0,0 +1,10 @@ +{ + "intro": "Bem-vindo ao PokéRogue! Este é um jogo Pokémon feito por fãs focado em batalhas com elementos roguelite.\n$Este jogo não é monetizado e não reivindicamos propriedade de Pokémon nem dos ativos protegidos\n$por direitos autorais usados.\n$O jogo é um trabalho em andamento, mas é totalmente jogável.\n$Para relatórios de bugs, use a comunidade no Discord.\n$Se o jogo estiver rodando lentamente, certifique-se de que a 'Aceleração de hardware' esteja ativada \n$nas configurações do seu navegador.", + "accessMenu": "Para acessar o menu, pressione M ou Esc.\n$O menu contém configurações e diversas funções.", + "menu": "A partir deste menu, você pode acessar as configurações. \n$Nas configurações, você pode alterar a velocidade do jogo,\n$o estilo da janela, entre outras opções. \n$Existem também vários outros recursos disponíveis aqui.\n$Não deixe de conferir todos eles!", + "starterSelect": "Aqui você pode escolher seus iniciais apertando a tecla Z ou\na Barra de Espaço.\n$Esses serão os primeiro Pokémon da sua equipe.\n$Cada inicial tem seu custo. Sua equipe pode ter até 6\nmembros, desde que a soma dos custos não ultrapasse 10. \n$Você pode escolher o gênero, a habilidade\ne até a forma do seu inicial.\n$Essas opções dependem das variantes dessa\nespécie que você já capturou ou chocou. \n$Os IVs de cada inicial são os melhores de todos os Pokémon\ndaquela espécie que você já capturou ou chocou.\n$Sempre capture vários Pokémon de várias espécies!", + "pokerus": "Todo dia, 3 Pokémon iniciais ficam com uma borda roxa.\n$Caso veja um inicial que você possui com uma dessa, tente\nadicioná-lo a sua equipe. Lembre-se de olhar seu sumário!", + "statChange": "As mudanças de atributos se mantém após a batalha desde que o Pokémon não seja trocado.\n$Seus Pokémon voltam a suas Poké Bolas antes de batalhas contra treinadores e de entrar em um novo bioma.\n$Para ver as mudanças de atributos dos Pokémon em campo, mantena C ou Shift pressionado durante a batalha.", + "selectItem": "Após cada batalha, você pode escolher entre 3 itens aleatórios.\n$Você pode escolher apenas um deles.\n$Esses itens variam entre consumíveis, itens de segurar e itens passivos permanentes.\n$A maioria dos efeitos de itens não consumíveis podem ser acumulados.\n$Alguns itens só aparecerão se puderem ser usados, como os itens de evolução.\n$Você também pode transferir itens de segurar entre os Pokémon utilizando a opção \"Alterar\".\n$A opção de transferir irá aparecer no canto inferior direito assim que você obter um item de segurar.\n$Você pode comprar itens consumíveis com dinheiro, e sua variedade aumentará conforme você for mais longe.\n$Certifique-se de comprá-los antes de escolher seu item aleatório. Ao escolhê-lo, a próxima batalha começará.", + "eggGacha": "Aqui você pode trocar seus vouchers\npor ovos de Pokémon.\n$Ovos ficam mais próximos de chocar após cada batalha.\nOvos mais raros demoram mais para chocar.\n$Pokémon chocados não serão adicionados a sua equipe,\nmas sim aos seus iniciais.\n$Pokémon chocados geralmente possuem IVs melhores\nque Pokémon selvagens.\n$Alguns Pokémon só podem ser obtidos através de seus ovos.\n$Temos 3 máquinas, cada uma com seu bônus específico,\nentão escolha a que mais lhe convém!" +} diff --git a/src/locales/pt_BR/tutorial.ts b/src/locales/pt_BR/tutorial.ts deleted file mode 100644 index a64a7458881..00000000000 --- a/src/locales/pt_BR/tutorial.ts +++ /dev/null @@ -1,52 +0,0 @@ -import { SimpleTranslationEntries } from "#app/interfaces/locales"; - -export const tutorial: SimpleTranslationEntries = { - "intro": `Bem-vindo ao PokéRogue! Este é um jogo Pokémon feito por fãs focado em batalhas com elementos roguelite. - $Este jogo não é monetizado e não reivindicamos propriedade de Pokémon nem dos ativos protegidos - $por direitos autorais usados. - $O jogo é um trabalho em andamento, mas é totalmente jogável. - $Para relatórios de bugs, use a comunidade no Discord. - $Se o jogo estiver rodando lentamente, certifique-se de que a 'Aceleração de hardware' esteja ativada - $nas configurações do seu navegador.`, - - "accessMenu": `Para acessar o menu, pressione M ou Esc. - $O menu contém configurações e diversas funções.`, - - "menu": `A partir deste menu, você pode acessar as configurações. - $Nas configurações, você pode alterar a velocidade do jogo, - $o estilo da janela, entre outras opções. - $Existem também vários outros recursos disponíveis aqui. - $Não deixe de conferir todos eles!`, - - "starterSelect": `Aqui você pode escolher seus iniciais apertando a tecla Z ou\na Barra de Espaço. - $Esses serão os primeiro Pokémon da sua equipe. - $Cada inicial tem seu custo. Sua equipe pode ter até 6\nmembros, desde que a soma dos custos não ultrapasse 10. - $Você pode escolher o gênero, a habilidade\ne até a forma do seu inicial. - $Essas opções dependem das variantes dessa\nespécie que você já capturou ou chocou. - $Os IVs de cada inicial são os melhores de todos os Pokémon\ndaquela espécie que você já capturou ou chocou. - $Sempre capture vários Pokémon de várias espécies!`, - - "pokerus": `Todo dia, 3 Pokémon iniciais ficam com uma borda roxa. - $Caso veja um inicial que você possui com uma dessa, tente\nadicioná-lo a sua equipe. Lembre-se de olhar seu sumário!`, - - "statChange": `As mudanças de atributos se mantém após a batalha desde que o Pokémon não seja trocado. - $Seus Pokémon voltam a suas Poké Bolas antes de batalhas contra treinadores e de entrar em um novo bioma. - $Para ver as mudanças de atributos dos Pokémon em campo, mantena C ou Shift pressionado durante a batalha.`, - - "selectItem": `Após cada batalha, você pode escolher entre 3 itens aleatórios. - $Você pode escolher apenas um deles. - $Esses itens variam entre consumíveis, itens de segurar e itens passivos permanentes. - $A maioria dos efeitos de itens não consumíveis podem ser acumulados. - $Alguns itens só aparecerão se puderem ser usados, como os itens de evolução. - $Você também pode transferir itens de segurar entre os Pokémon utilizando a opção "Transfer". - $A opção de transferir irá aparecer no canto inferior direito assim que você obter um item de segurar. - $Você pode comprar itens consumíveis com dinheiro, e sua variedade aumentará conforme você for mais longe. - $Certifique-se de comprá-los antes de escolher seu item aleatório. Ao escolhê-lo, a próxima batalha começará.`, - - "eggGacha": `Aqui você pode trocar seus vouchers\npor ovos de Pokémon. - $Ovos ficam mais próximos de chocar após cada batalha.\nOvos mais raros demoram mais para chocar. - $Pokémon chocados não serão adicionados a sua equipe,\nmas sim aos seus iniciais. - $Pokémon chocados geralmente possuem IVs melhores\nque Pokémon selvagens. - $Alguns Pokémon só podem ser obtidos através de seus ovos. - $Temos 3 máquinas, cada uma com seu bônus específico,\nentão escolha a que mais lhe convém!`, -} as const; diff --git a/src/locales/pt_BR/voucher.ts b/src/locales/pt_BR/voucher.json similarity index 65% rename from src/locales/pt_BR/voucher.ts rename to src/locales/pt_BR/voucher.json index 8c115caa810..c33dfa20e0f 100644 --- a/src/locales/pt_BR/voucher.ts +++ b/src/locales/pt_BR/voucher.json @@ -1,11 +1,9 @@ -import { SimpleTranslationEntries } from "#app/interfaces/locales"; - -export const voucher: SimpleTranslationEntries = { - "vouchers": "Vouchers", - "eggVoucher": "Voucher de Ovo", - "eggVoucherPlus": "Voucher de Ovo Plus", - "eggVoucherPremium": "Voucher de Ovo Premium", - "eggVoucherGold": "Voucher de Ovo Dourado", - "locked": "Bloqueado", - "defeatTrainer": "Derrote {{trainerName}}" -} as const; +{ + "vouchers": "Vouchers", + "eggVoucher": "Voucher de Ovo", + "eggVoucherPlus": "Voucher de Ovo Plus", + "eggVoucherPremium": "Voucher de Ovo Premium", + "eggVoucherGold": "Voucher de Ovo Dourado", + "locked": "Bloqueado", + "defeatTrainer": "Derrote {{trainerName}}" +} \ No newline at end of file diff --git a/src/locales/pt_BR/weather.ts b/src/locales/pt_BR/weather.json similarity index 57% rename from src/locales/pt_BR/weather.ts rename to src/locales/pt_BR/weather.json index a99708afff4..54b929da0b9 100644 --- a/src/locales/pt_BR/weather.ts +++ b/src/locales/pt_BR/weather.json @@ -1,66 +1,32 @@ -import { SimpleTranslationEntries } from "#app/interfaces/locales"; - -/** - * The weather namespace holds text displayed when weather is active during a battle - */ -export const weather: SimpleTranslationEntries = { +{ "sunnyStartMessage": "A luz do sol ficou clara!", "sunnyLapseMessage": "A luz do sol está forte.", "sunnyClearMessage": "A luz do sol sumiu.", - "rainStartMessage": "Começou a chover!", "rainLapseMessage": "A chuva continua forte.", "rainClearMessage": "A chuva parou.", - "sandstormStartMessage": "Uma tempestade de areia se formou!", "sandstormLapseMessage": "A tempestade de areia é violenta.", "sandstormClearMessage": "A tempestade de areia diminuiu.", "sandstormDamageMessage": "{{pokemonNameWithAffix}} é atingido\npela tempestade de areia!", - "hailStartMessage": "Começou a chover granizo!", "hailLapseMessage": "Granizo cai do céu.", "hailClearMessage": "O granizo parou.", "hailDamageMessage": "{{pokemonNameWithAffix}} é atingido\npelo granizo!", - "snowStartMessage": "Começou a nevar!", "snowLapseMessage": "A neve continua caindo.", "snowClearMessage": "Parou de nevar.", - "fogStartMessage": "Uma névoa densa se formou!", "fogLapseMessage": "A névoa continua forte.", "fogClearMessage": "A névoa sumiu.", - "heavyRainStartMessage": "Um temporal começou!", "heavyRainLapseMessage": "O temporal continua forte.", "heavyRainClearMessage": "O temporal parou.", - "harshSunStartMessage": "A luz do sol está escaldante!", "harshSunLapseMessage": "A luz do sol é intensa.", "harshSunClearMessage": "A luz do sol enfraqueceu.", - "strongWindsStartMessage": "Ventos fortes apareceram!", "strongWindsLapseMessage": "Os ventos fortes continuam.", "strongWindsEffectMessage": "A corrente de ar misteriosa enfraqueceu o ataque!", - "strongWindsClearMessage": "Os ventos fortes diminuíram.", -}; - -export const terrain: SimpleTranslationEntries = { - "misty": "Enevoado", - "mistyStartMessage": "Uma névoa se espalhou pelo campo de batalha!", - "mistyClearMessage": "A névou sumiu do campo de batalha.", - "mistyBlockMessage": "{{pokemonNameWithAffix}} se envolveu com uma névoa protetora!", - - "electric": "Elétrico", - "electricStartMessage": "Uma corrente elétrica se espalhou pelo campo de batalha!", - "electricClearMessage": "A eletricidade sumiu do campo de batalha.", - - "grassy": "de Plantas", - "grassyStartMessage": "Grama cresceu para cobrir o campo de batalha!", - "grassyClearMessage": "A grama sumiu do campo de batalha.", - - "psychic": "Psíquico", - "psychicStartMessage": "O campo de batalha ficou esquisito!", - "psychicClearMessage": "A esquisitice sumiu do campo de batalha!", - - "defaultBlockMessage": "{{pokemonNameWithAffix}} está protegido pelo Terreno {{terrainName}}!" -}; + "strongWindsClearMessage": "Os ventos fortes diminuíram." +} \ No newline at end of file diff --git a/src/locales/zh_CN/ability-trigger.ts b/src/locales/zh_CN/ability-trigger.json similarity index 92% rename from src/locales/zh_CN/ability-trigger.ts rename to src/locales/zh_CN/ability-trigger.json index 0d69a78f0f7..f4289b598a0 100644 --- a/src/locales/zh_CN/ability-trigger.ts +++ b/src/locales/zh_CN/ability-trigger.json @@ -1,7 +1,5 @@ -import { SimpleTranslationEntries } from "#app/interfaces/locales"; - -export const abilityTriggers: SimpleTranslationEntries = { - "blockRecoilDamage" : "{{pokemonName}}的{{abilityName}}\n抵消了反作用力!", +{ + "blockRecoilDamage": "{{pokemonName}}的{{abilityName}}\n抵消了反作用力!", "badDreams": "{{pokemonName}}被折磨着!", "costar": "{{pokemonName}}复制了{{allyName}}的能力变化!", "iceFaceAvoidedDamage": "{{pokemonNameWithAffix}}因为{{abilityName}}\n避免了伤害!", @@ -9,8 +7,8 @@ export const abilityTriggers: SimpleTranslationEntries = { "poisonHeal": "{{pokemonName}}因{{abilityName}}\n回复了少许HP!", "trace": "{{pokemonName}}复制了{{targetName}}的\n{{abilityName}}!", "windPowerCharged": "受{{moveName}}的影响,{{pokemonName}}提升了能力!", - "quickDraw":"因为速击效果发动,\n{{pokemonName}}比平常出招更快了!", - "disguiseAvoidedDamage" : "{{pokemonNameWithAffix}}的画皮脱落了!", + "quickDraw": "因为速击效果发动,\n{{pokemonName}}比平常出招更快了!", + "disguiseAvoidedDamage": "{{pokemonNameWithAffix}}的画皮脱落了!", "blockItemTheft": "{{pokemonNameWithAffix}}的{{abilityName}}\n阻止了对方夺取道具!", "typeImmunityHeal": "{{pokemonNameWithAffix}}因{{abilityName}}\n回复了少许HP!", "nonSuperEffectiveImmunity": "{{pokemonNameWithAffix}}因{{abilityName}}\n避免了伤害!", @@ -46,6 +44,7 @@ export const abilityTriggers: SimpleTranslationEntries = { "postFaintContactDamage": "{{pokemonNameWithAffix}}的{{abilityName}}\n使对方受到了伤害!", "postFaintHpDamage": "{{pokemonNameWithAffix}}的{{abilityName}}\n使对方受到了伤害!", "postSummonPressure": "从{{pokemonNameWithAffix}}的身上\n感到了一种压迫感!", + "weatherEffectDisappeared": "天气的影响消失了!", "postSummonMoldBreaker": "{{pokemonNameWithAffix}}\n打破了常规!", "postSummonAnticipation": "{{pokemonNameWithAffix}}\n发抖了!", "postSummonTurboblaze": "{{pokemonNameWithAffix}}\n正在释放炽焰气场!", @@ -59,5 +58,5 @@ export const abilityTriggers: SimpleTranslationEntries = { "postSummonSwordOfRuin": "{{pokemonNameWithAffix}}的灾祸之剑\n令周围的宝可梦的{{statName}}减弱了!", "postSummonTabletsOfRuin": "{{pokemonNameWithAffix}}的灾祸之简\n令周围的宝可梦的{{statName}}减弱了!", "postSummonBeadsOfRuin": "{{pokemonNameWithAffix}}的灾祸之玉\n令周围的宝可梦的{{statName}}减弱了!", - "preventBerryUse": "{{pokemonNameWithAffix}}因太紧张\n而无法食用树果!", -} as const; + "preventBerryUse": "{{pokemonNameWithAffix}}因太紧张\n而无法食用树果!" +} \ No newline at end of file diff --git a/src/locales/zh_CN/ability.json b/src/locales/zh_CN/ability.json new file mode 100644 index 00000000000..7c70c84f55c --- /dev/null +++ b/src/locales/zh_CN/ability.json @@ -0,0 +1,1242 @@ +{ + "stench": { + "name": "恶臭", + "description": "通过释放臭臭的气味,在攻击的时\n候,有时会使对手畏缩。" + }, + "drizzle": { + "name": "降雨", + "description": "出场时,会将天气变为下雨。" + }, + "speedBoost": { + "name": "加速", + "description": "每一回合速度会变快。" + }, + "battleArmor": { + "name": "战斗盔甲", + "description": "被坚硬的甲壳守护着,不会被对手\n的攻击击中要害。" + }, + "sturdy": { + "name": "结实", + "description": "在HP全满时,即使受到招式攻击\n,也不会被一击打倒。一击必杀的\n招式也没有效果。" + }, + "damp": { + "name": "湿气", + "description": "通过把周围都弄湿,使谁都无法使\n用自爆等爆炸类的招式。" + }, + "limber": { + "name": "柔软", + "description": "因为身体柔软,不会变为麻痹状态\n。" + }, + "sandVeil": { + "name": "沙隐", + "description": "在沙暴的时候,闪避率会提高。" + }, + "static": { + "name": "静电", + "description": "身上带有静电,有时会让接触到的\n对手麻痹。" + }, + "voltAbsorb": { + "name": "蓄电", + "description": "受到电属性的招式攻击时,不会受\n到伤害,而是会回复。" + }, + "waterAbsorb": { + "name": "储水", + "description": "受到水属性的招式攻击时,不会受\n到伤害,而是会回复。" + }, + "oblivious": { + "name": "迟钝", + "description": "因为感觉迟钝,不会变为着迷和被\n挑衅状态。对威吓也毫不动摇。" + }, + "cloudNine": { + "name": "无关天气", + "description": "任何天气的影响都会消失。" + }, + "compoundEyes": { + "name": "复眼", + "description": "因为拥有复眼,招式的命中率会提\n高。" + }, + "insomnia": { + "name": "不眠", + "description": "因为有着睡不着的体质,所以不会\n陷入睡眠状态。" + }, + "colorChange": { + "name": "变色", + "description": "自己的属性会变为从对手处所受招\n式的属性。" + }, + "immunity": { + "name": "免疫", + "description": "因为体内拥有免疫能力,不会变为\n中毒状态。" + }, + "flashFire": { + "name": "引火", + "description": "受到火属性的招式攻击时,吸收火\n焰,自己使出的火属性招式会变强\n。" + }, + "shieldDust": { + "name": "鳞粉", + "description": "被鳞粉守护着,不会受到招式的追\n加效果影响。" + }, + "ownTempo": { + "name": "我行我素", + "description": "因为我行我素,不会变为混乱状态\n。对威吓也毫不动摇。" + }, + "suctionCups": { + "name": "吸盘", + "description": "用吸盘牢牢贴在地面上,让替换宝\n可梦的招式和道具无效。" + }, + "intimidate": { + "name": "威吓", + "description": "出场时威吓对手,让其退缩,降低\n对手的攻击。" + }, + "shadowTag": { + "name": "踩影", + "description": "踩住对手的影子使其无法逃走或替\n换。" + }, + "roughSkin": { + "name": "粗糙皮肤", + "description": "受到攻击时,用粗糙的皮肤弄伤接\n触到自己的对手。" + }, + "wonderGuard": { + "name": "神奇守护", + "description": "不可思议的力量,只有效果绝佳的\n招式才能击中。" + }, + "levitate": { + "name": "飘浮", + "description": "从地面浮起,从而不会受到地面属\n性招式的攻击。" + }, + "effectSpore": { + "name": "孢子", + "description": "受到攻击时,有时会把接触到自己\n的对手变为中毒、麻痹或睡眠状态\n。" + }, + "synchronize": { + "name": "同步", + "description": "将自己的中毒、麻痹或灼伤状态传\n染给对手。" + }, + "clearBody": { + "name": "恒净之躯", + "description": "不会因为对手的招式或特性而被降\n低能力。" + }, + "naturalCure": { + "name": "自然回复", + "description": "回到同行队伍后,异常状态就会被\n治愈。" + }, + "lightningRod": { + "name": "避雷针", + "description": "将电属性的招式吸引到自己身上,\n不会受到伤害,而是会提高特攻。" + }, + "sereneGrace": { + "name": "天恩", + "description": "托天恩的福,招式的追加效果容易\n出现。" + }, + "swiftSwim": { + "name": "悠游自如", + "description": "下雨天气时,速度会提高。" + }, + "chlorophyll": { + "name": "叶绿素", + "description": "晴朗天气时,速度会提高。" + }, + "illuminate": { + "name": "发光", + "description": "通过让周围变亮来保持命中率不会\n被降低。" + }, + "trace": { + "name": "复制", + "description": "出场时,复制对手的特性,变为与\n之相同的特性。" + }, + "hugePower": { + "name": "大力士", + "description": "物理攻击的威力会变为2倍。" + }, + "poisonPoint": { + "name": "毒刺", + "description": "有时会让接触到自己的对手变为中\n毒状态。" + }, + "innerFocus": { + "name": "精神力", + "description": "拥有经过锻炼的精神,而不会因对\n手的攻击而畏缩。对威吓也毫不动\n摇。" + }, + "magmaArmor": { + "name": "熔岩铠甲", + "description": "将炽热的熔岩覆盖在身上,不会变\n为冰冻状态。" + }, + "waterVeil": { + "name": "水幕", + "description": "将水幕裹在身上,不会变为灼伤状\n态。" + }, + "magnetPull": { + "name": "磁力", + "description": "用磁力吸住钢属性的宝可梦,使其\n无法逃走。" + }, + "soundproof": { + "name": "隔音", + "description": "通过屏蔽声音,不受到声音招式的\n影响。" + }, + "rainDish": { + "name": "雨盘", + "description": "下雨天气时,会缓缓回复HP。" + }, + "sandStream": { + "name": "扬沙", + "description": "出场时,会把天气变为沙暴。" + }, + "pressure": { + "name": "压迫感", + "description": "给予对手压迫感,大量减少其使用\n招式的PP。" + }, + "thickFat": { + "name": "厚脂肪", + "description": "因为被厚厚的脂肪保护着,会让火\n属性和冰属性的招式伤害减半。" + }, + "earlyBird": { + "name": "早起", + "description": "即使变为睡眠状态,也能以2倍的\n速度提早醒来。" + }, + "flameBody": { + "name": "火焰之躯", + "description": "有时会让接触到自己的对手变为灼\n伤状态。" + }, + "runAway": { + "name": "逃跑", + "description": "一定能从野生宝可梦那儿逃走。" + }, + "keenEye": { + "name": "锐利目光", + "description": "多亏了锐利的目光,命中率不会被\n降低。" + }, + "hyperCutter": { + "name": "怪力钳", + "description": "因为拥有以力量自豪的钳子,不会\n被对手降低攻击。" + }, + "pickup": { + "name": "捡拾", + "description": "有时会捡来对手用过的道具,冒险\n过程中也会捡到。" + }, + "truant": { + "name": "懒惰", + "description": "如果使出招式,下一回合就会休息\n。" + }, + "hustle": { + "name": "活力", + "description": "自己的攻击变高,但命中率会降低\n。" + }, + "cuteCharm": { + "name": "迷人之躯", + "description": "有时会让接触到自己的对手着迷。" + }, + "plus": { + "name": "正电", + "description": "出场的伙伴之间如果有正电或负电\n特性的宝可梦,自己的特攻会提高\n。" + }, + "minus": { + "name": "负电", + "description": "出场的伙伴之间如果有正电或负电\n特性的宝可梦,自己的特攻会提高\n。" + }, + "forecast": { + "name": "阴晴不定", + "description": "受天气的影响,会变为水属性、火\n属性或冰属性中的某一个。" + }, + "stickyHold": { + "name": "黏着", + "description": "因为道具是粘在黏性身体上的,所\n以不会被对手夺走。" + }, + "shedSkin": { + "name": "蜕皮", + "description": "通过蜕去身上的皮,有时会治愈异\n常状态。" + }, + "guts": { + "name": "毅力", + "description": "如果变为异常状态,会拿出毅力,\n攻击会提高。" + }, + "marvelScale": { + "name": "神奇鳞片", + "description": "如果变为异常状态,神奇鳞片会发\n生反应,防御会提高。" + }, + "liquidOoze": { + "name": "污泥浆", + "description": "吸收了污泥浆的对手会因强烈的恶\n臭而受到伤害,减少HP。" + }, + "overgrow": { + "name": "茂盛", + "description": "HP减少的时候,草属性的招式威\n力会提高。" + }, + "blaze": { + "name": "猛火", + "description": "HP减少的时候,火属性的招式威\n力会提高。" + }, + "torrent": { + "name": "激流", + "description": "HP减少的时候,水属性的招式威\n力会提高。" + }, + "swarm": { + "name": "虫之预感", + "description": "HP减少的时候,虫属性的招式威\n力会提高。" + }, + "rockHead": { + "name": "坚硬脑袋", + "description": "即使使出会受反作用力伤害的招式\n,HP也不会减少。" + }, + "drought": { + "name": "日照", + "description": "出场时,会将天气变为晴朗。" + }, + "arenaTrap": { + "name": "沙穴", + "description": "在战斗中让对手无法逃走。" + }, + "vitalSpirit": { + "name": "干劲", + "description": "通过激发出干劲,不会变为睡眠状\n态。" + }, + "whiteSmoke": { + "name": "白色烟雾", + "description": "被白色烟雾保护着,不会被对手降\n低能力。" + }, + "purePower": { + "name": "瑜伽之力", + "description": "因瑜伽的力量,物理攻击的威力会\n变为2倍。" + }, + "shellArmor": { + "name": "硬壳盔甲", + "description": "被坚硬的壳保护着,对手的攻击不\n会击中要害。" + }, + "airLock": { + "name": "气闸", + "description": "所有天气的影响都会消失。" + }, + "tangledFeet": { + "name": "蹒跚", + "description": "在混乱状态时,闪避率会提高。" + }, + "motorDrive": { + "name": "电气引擎", + "description": "受到电属性的招式攻击时,不会受\n到伤害,而是速度会提高。" + }, + "rivalry": { + "name": "斗争心", + "description": "面对性别相同的对手,会燃起斗争\n心,变得更强。而面对性别不同的\n,则会变弱。" + }, + "steadfast": { + "name": "不屈之心", + "description": "每次畏缩时,不屈之心就会燃起,\n速度也会提高。" + }, + "snowCloak": { + "name": "雪隐", + "description": "下雪天气时,闪避率会提高。" + }, + "gluttony": { + "name": "贪吃鬼", + "description": "原本HP变得很少时才会吃树果,\n在HP还有一半时就会把它吃掉。" + }, + "angerPoint": { + "name": "愤怒穴位", + "description": "要害被击中时,会大发雷霆,攻击\n力变为最大。" + }, + "unburden": { + "name": "轻装", + "description": "失去所持有的道具时,速度会提高\n。" + }, + "heatproof": { + "name": "耐热", + "description": "耐热的体质会让火属性的招式伤害\n减半。" + }, + "simple": { + "name": "单纯", + "description": "能力变化会变为平时的2倍。" + }, + "drySkin": { + "name": "干燥皮肤", + "description": "下雨天气时和受到水属性的招式时\n,HP会回复。晴朗天气时和受到\n火属性的招式时,HP会减少。" + }, + "download": { + "name": "下载", + "description": "比较对手的防御和特防,根据较低\n的那项能力相应地提高自己的攻击\n或特攻。" + }, + "ironFist": { + "name": "铁拳", + "description": "使用拳类招式的威力会提高。" + }, + "poisonHeal": { + "name": "毒疗", + "description": "变为中毒状态时,HP不会减少,\n反而会增加起来。" + }, + "adaptability": { + "name": "适应力", + "description": "与自身同属性的招式威力会提高。" + }, + "skillLink": { + "name": "连续攻击", + "description": "如果使用连续招式,总是能使出最\n高次数。" + }, + "hydration": { + "name": "湿润之躯", + "description": "下雨天气时,异常状态会治愈。" + }, + "solarPower": { + "name": "太阳之力", + "description": "晴朗天气时,特攻会提高,而每回\n合HP会减少。" + }, + "quickFeet": { + "name": "飞毛腿", + "description": "变为异常状态时,速度会提高。" + }, + "normalize": { + "name": "一般皮肤", + "description": "无论是什么属性的招式,全部会变\n为一般属性。威力会少量提高。" + }, + "sniper": { + "name": "狙击手", + "description": "击中要害时,威力会变得更强。" + }, + "magicGuard": { + "name": "魔法防守", + "description": "不会受到攻击以外的伤害。" + }, + "noGuard": { + "name": "无防守", + "description": "由于无防守战术,双方使出的招式\n都必定会击中。" + }, + "stall": { + "name": "慢出", + "description": "使出招式的顺序必定会变为最后。" + }, + "technician": { + "name": "技术高手", + "description": "攻击时可以将低威力招式的威力提\n高。" + }, + "leafGuard": { + "name": "叶子防守", + "description": "晴朗天气时,不会变为异常状态。" + }, + "klutz": { + "name": "笨拙", + "description": "无法使用持有的道具。" + }, + "moldBreaker": { + "name": "破格", + "description": "可以不受对手特性的干扰,向对手\n使出招式。" + }, + "superLuck": { + "name": "超幸运", + "description": "因为拥有超幸运,攻击容易击中对\n手的要害。" + }, + "aftermath": { + "name": "引爆", + "description": "变为濒死时,会对接触到自己的对\n手造成伤害。" + }, + "anticipation": { + "name": "危险预知", + "description": "可以察觉到对手拥有的危险招式。" + }, + "forewarn": { + "name": "预知梦", + "description": "出场时,只读取1个对手拥有的招\n式。" + }, + "unaware": { + "name": "纯朴", + "description": "可以无视对手能力的变化,进行攻\n击。" + }, + "tintedLens": { + "name": "有色眼镜", + "description": "可以将效果不好的招式以通常的威\n力使出。" + }, + "filter": { + "name": "过滤", + "description": "受到效果绝佳的攻击时,可以减弱\n其威力。" + }, + "slowStart": { + "name": "慢启动", + "description": "在5回合内,攻击和速度减半。" + }, + "scrappy": { + "name": "胆量", + "description": "一般属性和格斗属性的招式可以击\n中幽灵属性的宝可梦。对威吓也毫\n不动摇。" + }, + "stormDrain": { + "name": "引水", + "description": "将水属性的招式引到自己身上,不\n会受到伤害,而是会提高特攻。" + }, + "iceBody": { + "name": "冰冻之躯", + "description": "下雪天气时,会缓缓回复HP。" + }, + "solidRock": { + "name": "坚硬岩石", + "description": "受到效果绝佳的攻击时,可以减弱\n其威力。" + }, + "snowWarning": { + "name": "降雪", + "description": "出场时,会将天气变为下雪。" + }, + "honeyGather": { + "name": "采蜜", + "description": "The Pokémon gat\nhers Honey afte\nr a battle. The\n Honey is then \nsold for money." + }, + "frisk": { + "name": "察觉", + "description": "出场时,可以察觉对手的特性。" + }, + "reckless": { + "name": "舍身", + "description": "自己会因反作用力受伤的招式,其\n威力会提高。" + }, + "multitype": { + "name": "多属性", + "description": "自己的属性会根据持有的石板而改\n变。" + }, + "flowerGift": { + "name": "花之礼", + "description": "晴朗天气时,自己与同伴的攻击和\n特防能力会提高。" + }, + "badDreams": { + "name": "梦魇", + "description": "给予睡眠状态的对手伤害。" + }, + "pickpocket": { + "name": "顺手牵羊", + "description": "盗取接触到自己的对手的道具。" + }, + "sheerForce": { + "name": "强行", + "description": "招式的追加效果消失,但因此能以\n更高的威力使出招式。" + }, + "contrary": { + "name": "唱反调", + "description": "能力的变化发生逆转,原本提高时\n会降低,而原本降低时会提高。" + }, + "unnerve": { + "name": "紧张感", + "description": "让对手紧张,使其无法食用树果。" + }, + "defiant": { + "name": "不服输", + "description": "被对手降低能力时,攻击会大幅提\n高。" + }, + "defeatist": { + "name": "软弱", + "description": "HP减半时,会变得软弱,攻击和\n特攻会减半。" + }, + "cursedBody": { + "name": "诅咒之躯", + "description": "受到攻击时,有时会把对手的招式\n变为定身法状态。" + }, + "healer": { + "name": "治愈之心", + "description": "有时会治愈异常状态的同伴。" + }, + "friendGuard": { + "name": "友情防守", + "description": "可以减少我方的伤害。" + }, + "weakArmor": { + "name": "碎裂铠甲", + "description": "受到物理招式的伤害时,防御会降\n低,速度会大幅提高。" + }, + "heavyMetal": { + "name": "重金属", + "description": "自身的重量会变为2倍。" + }, + "lightMetal": { + "name": "轻金属", + "description": "自身的重量会减半。" + }, + "multiscale": { + "name": "多重鳞片", + "description": "HP全满时,受到的伤害会变少。" + }, + "toxicBoost": { + "name": "中毒激升", + "description": "变为中毒状态时,物理招式的威力\n会提高。" + }, + "flareBoost": { + "name": "受热激升", + "description": "变为灼伤状态时,特殊招式的威力\n会提高。" + }, + "harvest": { + "name": "收获", + "description": "可以多次制作出已被使用掉的树果\n。" + }, + "telepathy": { + "name": "心灵感应", + "description": "读取我方的攻击,并闪避其招式伤\n害。" + }, + "moody": { + "name": "心情不定", + "description": "每一回合,能力中的某项会大幅提\n高,而某项会降低。" + }, + "overcoat": { + "name": "防尘", + "description": "不会受到沙暴的伤害。也不会受到\n粉末类和孢子类招式的影响。" + }, + "poisonTouch": { + "name": "毒手", + "description": "只通过接触就有可能让对手变为中\n毒状态。" + }, + "regenerator": { + "name": "再生力", + "description": "退回同行队伍后,HP会少量回复\n。" + }, + "bigPecks": { + "name": "健壮胸肌", + "description": "不会受到防御降低的效果。" + }, + "sandRush": { + "name": "拨沙", + "description": "沙暴天气时,速度会提高。" + }, + "wonderSkin": { + "name": "奇迹皮肤", + "description": "成为不易受到变化招式攻击的身体\n。" + }, + "analytic": { + "name": "分析", + "description": "如果在最后使出招式,招式的威力\n会提高。" + }, + "illusion": { + "name": "幻觉", + "description": "假扮成同行队伍中的最后一只宝可\n梦出场,迷惑对手。" + }, + "imposter": { + "name": "变身者", + "description": "变身为当前面对的宝可梦。" + }, + "infiltrator": { + "name": "穿透", + "description": "可以穿透对手的壁障或替身进行攻\n击。" + }, + "mummy": { + "name": "木乃伊", + "description": "被对手接触到后,会将对手变为木\n乃伊。" + }, + "moxie": { + "name": "自信过度", + "description": "如果打倒对手,就会充满自信,攻\n击会提高。" + }, + "justified": { + "name": "正义之心", + "description": "受到恶属性的招式攻击时,因为正\n义感,攻击会提高。" + }, + "rattled": { + "name": "胆怯", + "description": "受到恶属性、幽灵属性和虫属性的\n攻击或威吓时,会因胆怯而速度提\n高。" + }, + "magicBounce": { + "name": "魔法镜", + "description": "可以不受到由对手使出的变化招式\n影响,并将其反弹。" + }, + "sapSipper": { + "name": "食草", + "description": "受到草属性的招式攻击时,不会受\n到伤害,而是攻击会提高。" + }, + "prankster": { + "name": "恶作剧之心", + "description": "可以率先使出变化招式。" + }, + "sandForce": { + "name": "沙之力", + "description": "沙暴天气时,岩石属性、地面属性\n和钢属性的招式威力会提高。" + }, + "ironBarbs": { + "name": "铁刺", + "description": "用铁刺给予接触到自己的对手伤害\n。" + }, + "zenMode": { + "name": "达摩模式", + "description": "HP变为一半以下时,样子会改变\n。" + }, + "victoryStar": { + "name": "胜利之星", + "description": "自己和同伴的命中率会提高。" + }, + "turboblaze": { + "name": "涡轮火焰", + "description": "可以不受对手特性的干扰,向对手\n使出招式。" + }, + "teravolt": { + "name": "兆级电压", + "description": "可以不受对手特性的干扰,向对手\n使出招式。" + }, + "aromaVeil": { + "name": "芳香幕", + "description": "可以防住向自己和同伴发出的心灵\n攻击。" + }, + "flowerVeil": { + "name": "花幕", + "description": "我方的草属性宝可梦能力不会降低\n,也不会变为异常状态。" + }, + "cheekPouch": { + "name": "颊囊", + "description": "无论是哪种树果,食用后,HP都\n会回复。" + }, + "protean": { + "name": "变幻自如", + "description": "变为与自己使出的招式相同的属性\n。每次出场战斗仅生效一次。" + }, + "furCoat": { + "name": "毛皮大衣", + "description": "对手给予的物理招式的伤害会减半\n。" + }, + "magician": { + "name": "魔术师", + "description": "夺走被自己的招式击中的对手的道\n具。" + }, + "bulletproof": { + "name": "防弹", + "description": "可以防住对手的球和弹类招式。" + }, + "competitive": { + "name": "好胜", + "description": "如果被对手降低能力,特攻会大幅\n提高。" + }, + "strongJaw": { + "name": "强壮之颚", + "description": "因为颚部强壮,啃咬类招式的威力\n会提高。" + }, + "refrigerate": { + "name": "冰冻皮肤", + "description": "一般属性的招式会变为冰属性。威\n力会少量提高。" + }, + "sweetVeil": { + "name": "甜幕", + "description": "自己和同伴的宝可梦不会变为睡眠\n状态。" + }, + "stanceChange": { + "name": "战斗切换", + "description": "如果使出攻击招式,会变为刀剑形\n态,如果使出招式“王者盾牌”,\n会变为盾牌形态。" + }, + "galeWings": { + "name": "疾风之翼", + "description": "HP全满时,飞行属性的招式可以\n率先使出。" + }, + "megaLauncher": { + "name": "超级发射器", + "description": "波动和波导类招式的威力会提高。" + }, + "grassPelt": { + "name": "草之毛皮", + "description": "在青草场地时,防御会提高。" + }, + "symbiosis": { + "name": "共生", + "description": "同伴使用道具时,会把自己持有的\n道具传递给同伴。" + }, + "toughClaws": { + "name": "硬爪", + "description": "接触到对手的招式威力会提高。" + }, + "pixilate": { + "name": "妖精皮肤", + "description": "一般属性的招式会变为妖精属性。\n威力会少量提高。" + }, + "gooey": { + "name": "黏滑", + "description": "对于用攻击接触到自己的对手,会\n降低其速度。" + }, + "aerilate": { + "name": "飞行皮肤", + "description": "一般属性的招式会变为飞行属性。\n威力会少量提高。" + }, + "parentalBond": { + "name": "亲子爱", + "description": "亲子俩可以合计攻击2次。" + }, + "darkAura": { + "name": "暗黑气场", + "description": "全体的恶属性招式变强。" + }, + "fairyAura": { + "name": "妖精气场", + "description": "全体的妖精属性招式变强。" + }, + "auraBreak": { + "name": "气场破坏", + "description": "让气场的效果发生逆转,降低威力\n。" + }, + "primordialSea": { + "name": "始源之海", + "description": "变为不会受到火属性攻击的天气。" + }, + "desolateLand": { + "name": "终结之地", + "description": "变为不会受到水属性攻击的天气。" + }, + "deltaStream": { + "name": "德尔塔气流", + "description": "变为令飞行属性的弱点消失的天气\n。" + }, + "stamina": { + "name": "持久力", + "description": "受到攻击时,防御会提高。" + }, + "wimpOut": { + "name": "跃跃欲逃", + "description": "HP变为一半时,会慌慌张张逃走\n,退回同行队伍中。" + }, + "emergencyExit": { + "name": "危险回避", + "description": "HP变为一半时,为了回避危险,\n会退回到同行队伍中。" + }, + "waterCompaction": { + "name": "遇水凝固", + "description": "受到水属性的招式攻击时,防御会\n大幅提高。" + }, + "merciless": { + "name": "不仁不义", + "description": "攻击中毒状态的对手时,必定会击\n中要害。" + }, + "shieldsDown": { + "name": "界限盾壳", + "description": "HP变为一半时,壳会坏掉,变得\n有攻击性。" + }, + "stakeout": { + "name": "蹲守", + "description": "可以对替换出场的对手以2倍的伤\n害进行攻击。" + }, + "waterBubble": { + "name": "水泡", + "description": "降低自己受到的火属性招式的威力\n,不会灼伤。" + }, + "steelworker": { + "name": "钢能力者", + "description": "钢属性的招式威力会提高。" + }, + "berserk": { + "name": "怒火冲天", + "description": "因对手的攻击HP变为一半时,特\n攻会提高。" + }, + "slushRush": { + "name": "拨雪", + "description": "下雪天气时,速度会提高。" + }, + "longReach": { + "name": "远隔", + "description": "可以不接触对手就使出所有的招式\n。" + }, + "liquidVoice": { + "name": "湿润之声", + "description": "所有的声音招式都变为水属性。" + }, + "triage": { + "name": "先行治疗", + "description": "可以率先使出回复招式。" + }, + "galvanize": { + "name": "电气皮肤", + "description": "一般属性的招式会变为电属性。威\n力会少量提高。" + }, + "surgeSurfer": { + "name": "冲浪之尾", + "description": "电气场地时,速度会变为2倍。" + }, + "schooling": { + "name": "鱼群", + "description": "HP多的时候会聚起来变强。HP\n剩余量变少时,群体会分崩离析。" + }, + "disguise": { + "name": "画皮", + "description": "通过画皮覆盖住身体,可以防住1\n次攻击。" + }, + "battleBond": { + "name": "牵绊变身", + "description": "打倒对手时,与训练家的牵绊会增\n强,自己的攻击、特攻、速度会提\n高。" + }, + "powerConstruct": { + "name": "群聚变形", + "description": "HP变为一半时,细胞们会赶来支\n援,变为完全体形态。" + }, + "corrosion": { + "name": "腐蚀", + "description": "可以使钢属性和毒属性的宝可梦也\n陷入中毒状态。" + }, + "comatose": { + "name": "绝对睡眠", + "description": "总是半梦半醒的状态,绝对不会醒\n来。可以就这么睡着进行攻击。" + }, + "queenlyMajesty": { + "name": "女王的威严", + "description": "向对手施加威慑力,使其无法对我\n方使出先制招式。" + }, + "innardsOut": { + "name": "飞出的内在物", + "description": "被对手打倒的时候,会给予对手相\n当于HP剩余量的伤害。" + }, + "dancer": { + "name": "舞者", + "description": "有谁使出跳舞招式时,自己也能就\n这么接着使出跳舞招式。" + }, + "battery": { + "name": "蓄电池", + "description": "会提高我方的特殊招式的威力。" + }, + "fluffy": { + "name": "毛茸茸", + "description": "会将对手所给予的接触类招式的伤\n害减半,但火属性招式的伤害会变\n为2倍。" + }, + "dazzling": { + "name": "鲜艳之躯", + "description": "让对手吓一跳,使其无法对我方使\n出先制招式。" + }, + "soulHeart": { + "name": "魂心", + "description": "宝可梦每次变为濒死状态时,特攻\n会提高。" + }, + "tanglingHair": { + "name": "卷发", + "description": "对于用攻击接触到自己的对手,会\n降低其速度。" + }, + "receiver": { + "name": "接球手", + "description": "继承被打倒的同伴的特性,变为相\n同的特性。" + }, + "powerOfAlchemy": { + "name": "化学之力", + "description": "继承被打倒的同伴的特性,变为相\n同的特性。" + }, + "beastBoost": { + "name": "异兽提升", + "description": "打倒对手的时候,自己最高的那项\n能力会提高。" + }, + "rksSystem": { + "name": "AR系统", + "description": "根据持有的存储碟,自己的属性会\n改变。" + }, + "electricSurge": { + "name": "电气制造者", + "description": "出场时,会布下电气场地。" + }, + "psychicSurge": { + "name": "精神制造者", + "description": "出场时,会布下精神场地。" + }, + "mistySurge": { + "name": "薄雾制造者", + "description": "出场时,会布下薄雾场地。" + }, + "grassySurge": { + "name": "青草制造者", + "description": "出场时,会布下青草场地。" + }, + "fullMetalBody": { + "name": "金属防护", + "description": "不会因为对手的招式或特性而被降\n低能力。" + }, + "shadowShield": { + "name": "幻影防守", + "description": "HP全满时,受到的伤害会变少。" + }, + "prismArmor": { + "name": "棱镜装甲", + "description": "受到效果绝佳的攻击时,可以减弱\n其威力。" + }, + "neuroforce": { + "name": "脑核之力", + "description": "效果绝佳的攻击,威力会变得更强\n。" + }, + "intrepidSword": { + "name": "不挠之剑", + "description": "首次出场时,攻击会提高。" + }, + "dauntlessShield": { + "name": "不屈之盾", + "description": "首次出场时,防御会提高。" + }, + "libero": { + "name": "自由者", + "description": "变为与自己使出的招式相同的属性\n。每次出场战斗仅生效一次。" + }, + "ballFetch": { + "name": "捡球", + "description": "没有携带道具时,会拾取第1个投\n出后捕捉失败的精灵球。" + }, + "cottonDown": { + "name": "棉絮", + "description": "受到攻击后撒下棉絮,降低除自己\n以外的所有宝可梦的速度。" + }, + "propellerTail": { + "name": "螺旋尾鳍", + "description": "能无视具有吸引对手招式效果的特\n性或招式的影响。" + }, + "mirrorArmor": { + "name": "镜甲", + "description": "只反弹自己受到的能力降低效果。" + }, + "gulpMissile": { + "name": "一口导弹", + "description": "冲浪或潜水时会叼来猎物。受到伤\n害时,会吐出猎物进行攻击。" + }, + "stalwart": { + "name": "坚毅", + "description": "能无视具有吸引对手招式效果的特\n性或招式的影响。" + }, + "steamEngine": { + "name": "蒸汽机", + "description": "受到水属性或火属性的招式攻击时\n,速度会巨幅提高。" + }, + "punkRock": { + "name": "庞克摇滚", + "description": "声音招式的威力会提高。受到的声\n音招式伤害会减半。" + }, + "sandSpit": { + "name": "吐沙", + "description": "受到攻击时,会刮起沙暴。" + }, + "iceScales": { + "name": "冰鳞粉", + "description": "由于有冰鳞粉的守护,受到的特殊\n攻击伤害会减半。" + }, + "ripen": { + "name": "熟成", + "description": "使树果成熟,效果变为2倍。" + }, + "iceFace": { + "name": "结冻头", + "description": "头部的冰会代替自己承受物理攻击\n,但是样子会改变。下雪时,冰会\n恢复原状。" + }, + "powerSpot": { + "name": "能量点", + "description": "只要处在相邻位置,招式的威力就\n会提高。" + }, + "mimicry": { + "name": "拟态", + "description": "宝可梦的属性会根据场地的状态而\n变化。" + }, + "screenCleaner": { + "name": "除障", + "description": "出场时,敌方和我方的光墙、反射\n壁和极光幕的效果会消失。" + }, + "steelySpirit": { + "name": "钢之意志", + "description": "我方的钢属性攻击威力会提高。" + }, + "perishBody": { + "name": "灭亡之躯", + "description": "受到接触类招式攻击时,双方都会\n在3回合后变为濒死状态。替换后\n效果消失。" + }, + "wanderingSpirit": { + "name": "游魂", + "description": "与使用接触类招式攻击自己的宝可\n梦互换特性。" + }, + "gorillaTactics": { + "name": "一猩一意", + "description": "虽然攻击会提高,但是只能使出一\n开始所选的招式。" + }, + "neutralizingGas": { + "name": "化学变化气体", + "description": "特性为化学变化气体的宝可梦在场\n时,场上所有宝可梦的特性效果都\n会消失或者无法生效。" + }, + "pastelVeil": { + "name": "粉彩护幕", + "description": "自己和同伴都不会陷入中毒的异常\n状态。" + }, + "hungerSwitch": { + "name": "饱了又饿", + "description": "每回合结束时会在满腹花纹与空腹\n花纹之间交替改变样子。" + }, + "quickDraw": { + "name": "速击", + "description": "有时能比对手先一步行动。" + }, + "unseenFist": { + "name": "无形拳", + "description": "如果使出的是接触到对手的招式,\n就可以无视守护效果进行攻击。" + }, + "curiousMedicine": { + "name": "怪药", + "description": "出场时会从贝壳撒药,将我方的能\n力变化复原。" + }, + "transistor": { + "name": "电晶体", + "description": "电属性的招式威力会提高。" + }, + "dragonsMaw": { + "name": "龙颚", + "description": "龙属性的招式威力会提高。" + }, + "chillingNeigh": { + "name": "苍白嘶鸣", + "description": "打倒对手时会用冰冷的声音嘶鸣并\n提高攻击。" + }, + "grimNeigh": { + "name": "漆黑嘶鸣", + "description": "打倒对手时会用恐怖的声音嘶鸣并\n提高特攻。" + }, + "asOneGlastrier": { + "name": "人马一体", + "description": "兼备蕾冠王的紧张感和雪暴马的苍\n白嘶鸣这两种特性。" + }, + "asOneSpectrier": { + "name": "人马一体", + "description": "兼备蕾冠王的紧张感和灵幽马的漆\n黑嘶鸣这两种特性。" + }, + "lingeringAroma": { + "name": "甩不掉的气味", + "description": "被对手接触到后,甩不掉的气味会\n沾上对手。" + }, + "seedSower": { + "name": "掉出种子", + "description": "受到攻击时,会将脚下变成青草场\n地。" + }, + "thermalExchange": { + "name": "热交换", + "description": "受到火属性的招式攻击时,攻击会\n提高,且不会陷入灼伤状态。" + }, + "angerShell": { + "name": "愤怒甲壳", + "description": "因被对手攻击而HP变为一半时,\n会因愤怒降低防御和特防。但攻击\n、特攻、速度会提高。" + }, + "purifyingSalt": { + "name": "洁净之盐", + "description": "因洁净的盐而不会陷入异常状态。\n会让幽灵属性的招式伤害减半。" + }, + "wellBakedBody": { + "name": "焦香之躯", + "description": "受到火属性的招式攻击时,不会受\n到伤害,而是会大幅提高防御。" + }, + "windRider": { + "name": "乘风", + "description": "吹起了顺风或受到风的招式攻击时\n,不会受到伤害,而是会提高攻击\n。" + }, + "guardDog": { + "name": "看门犬", + "description": "受到威吓时,攻击会提高。让替换\n宝可梦的招式和道具无效。" + }, + "rockyPayload": { + "name": "搬岩", + "description": "岩石属性的招式威力会提高。" + }, + "windPower": { + "name": "风力发电", + "description": "受到风的招式攻击时,会变为充电\n状态。" + }, + "zeroToHero": { + "name": "全能变身", + "description": "回到同行队伍后,会变为全能形态\n。" + }, + "commander": { + "name": "发号施令", + "description": "出场时,若我方当中有吃吼霸,就\n会进入其口中,并从其口中发出指\n令。" + }, + "electromorphosis": { + "name": "电力转换", + "description": "受到伤害时,会变为充电状态。" + }, + "protosynthesis": { + "name": "古代活性", + "description": "携带着驱劲能量或天气为晴朗时,\n数值最高的能力会提高。" + }, + "quarkDrive": { + "name": "夸克充能", + "description": "携带着驱劲能量或在电气场地上时\n,数值最高的能力会提高。" + }, + "goodAsGold": { + "name": "黄金之躯", + "description": "不会氧化的坚固黄金身躯不会受到\n对手的变化招式的影响。" + }, + "vesselOfRuin": { + "name": "灾祸之鼎", + "description": "以能呼唤灾厄的鼎的力量降低除自\n己以外的宝可梦的特攻。" + }, + "swordOfRuin": { + "name": "灾祸之剑", + "description": "以能呼唤灾厄的剑的力量降低除自\n己以外的宝可梦的防御。" + }, + "tabletsOfRuin": { + "name": "灾祸之简", + "description": "以能呼唤灾厄的简的力量降低除自\n己以外的宝可梦的攻击。" + }, + "beadsOfRuin": { + "name": "灾祸之玉", + "description": "以能呼唤灾厄的勾玉的力量降低除\n自己以外的宝可梦的特防。" + }, + "orichalcumPulse": { + "name": "绯红脉动", + "description": "出场时,会将天气变为晴朗。日照\n强烈时,会通过古代的脉动升高攻\n击。" + }, + "hadronEngine": { + "name": "强子引擎", + "description": "出场时,会布下电气场地。处于电\n气场地时,会通过未来的机关升高\n特攻。" + }, + "opportunist": { + "name": "跟风", + "description": "对手的能力提高时,自己也会趁机\n同样地提高能力。" + }, + "cudChew": { + "name": "反刍", + "description": "吃了树果后,会在下一回合结束时\n从胃反刍出来再吃1次。" + }, + "sharpness": { + "name": "锋锐", + "description": "提高切割对手的招式的威力。" + }, + "supremeOverlord": { + "name": "大将", + "description": "出场时,攻击和特攻会按照目前被\n打倒的同伴数量逐渐提升,被打倒\n越多,提升越多。" + }, + "costar": { + "name": "同台共演", + "description": "出场时,复制同伴的能力变化。" + }, + "toxicDebris": { + "name": "毒满地", + "description": "受到物理招式的伤害时,会在对手\n脚下散布毒菱。" + }, + "armorTail": { + "name": "尾甲", + "description": "包裹头部的神秘尾巴使对手无法对\n我方使出先制招式。" + }, + "earthEater": { + "name": "食土", + "description": "受到地面属性的招式攻击时,不会\n受到伤害,而是会得到回复。" + }, + "myceliumMight": { + "name": "菌丝之力", + "description": "使出变化招式时,虽然行动必定会\n变慢,但能不受对手的特性妨碍。" + }, + "mindsEye": { + "name": "心眼", + "description": "一般属性和格斗属性的招式可以击\n中幽灵属性的宝可梦。无视对手的\n闪避率的变化,且命中率不会被降\n低。" + }, + "supersweetSyrup": { + "name": "甘露之蜜", + "description": "首次出场时,会散发出甜腻的蜜的\n香味来降低对手的闪避率。" + }, + "hospitality": { + "name": "款待", + "description": "出场时款待同伴,回复其少量HP\n。" + }, + "toxicChain": { + "name": "毒锁链", + "description": "凭借含有毒素的锁链的力量,有时\n能让被招式击中的对手陷入剧毒状\n态。" + }, + "embodyAspectTeal": { + "name": "面影辉映", + "description": "将回忆映于心中,让碧草面具发出\n光辉,提高自己的速度。" + }, + "embodyAspectWellspring": { + "name": "面影辉映", + "description": "将回忆映于心中,让水井面具发出\n光辉,提高自己的特防。" + }, + "embodyAspectHearthflame": { + "name": "面影辉映", + "description": "将回忆映于心中,让火灶面具发出\n光辉,提高自己的攻击。" + }, + "embodyAspectCornerstone": { + "name": "面影辉映", + "description": "将回忆映于心中,让础石面具发出\n光辉,提高自己的防御。" + }, + "teraShift": { + "name": "太晶变形", + "description": "出场时,会吸收周围的能量,变为\n太晶形态。" + }, + "teraShell": { + "name": "太晶甲壳", + "description": "甲壳蕴藏着全部属性的力量,会将\n自己HP全满时受到的伤害全都变\n为效果不好。" + }, + "teraformZero": { + "name": "归零化境", + "description": "太乐巴戈斯变为星晶形态时,蕴藏\n在它身上的力量会将天气和场地的\n影响全部归零。" + }, + "poisonPuppeteer": { + "name": "毒傀儡", + "description": "因桃歹郎的招式而陷入中毒状态的\n对手同时也会陷入混乱状态。" + } +} \ No newline at end of file diff --git a/src/locales/zh_CN/ability.ts b/src/locales/zh_CN/ability.ts deleted file mode 100644 index 82bc403ad84..00000000000 --- a/src/locales/zh_CN/ability.ts +++ /dev/null @@ -1,1244 +0,0 @@ -import { AbilityTranslationEntries } from "#app/interfaces/locales.js"; - -export const ability: AbilityTranslationEntries = { - stench: { - name: "恶臭", - description: "通过释放臭臭的气味,在攻击的时\n候,有时会使对手畏缩。", - }, - drizzle: { - name: "降雨", - description: "出场时,会将天气变为下雨。", - }, - speedBoost: { - name: "加速", - description: "每一回合速度会变快。", - }, - battleArmor: { - name: "战斗盔甲", - description: "被坚硬的甲壳守护着,不会被对手\n的攻击击中要害。", - }, - sturdy: { - name: "结实", - description: "在HP全满时,即使受到招式攻击\n,也不会被一击打倒。一击必杀的\n招式也没有效果。", - }, - damp: { - name: "湿气", - description: "通过把周围都弄湿,使谁都无法使\n用自爆等爆炸类的招式。", - }, - limber: { - name: "柔软", - description: "因为身体柔软,不会变为麻痹状态\n。", - }, - sandVeil: { - name: "沙隐", - description: "在沙暴的时候,闪避率会提高。", - }, - static: { - name: "静电", - description: "身上带有静电,有时会让接触到的\n对手麻痹。", - }, - voltAbsorb: { - name: "蓄电", - description: "受到电属性的招式攻击时,不会受\n到伤害,而是会回复。", - }, - waterAbsorb: { - name: "储水", - description: "受到水属性的招式攻击时,不会受\n到伤害,而是会回复。", - }, - oblivious: { - name: "迟钝", - description: "因为感觉迟钝,不会变为着迷和被\n挑衅状态。对威吓也毫不动摇。", - }, - cloudNine: { - name: "无关天气", - description: "任何天气的影响都会消失。", - }, - compoundEyes: { - name: "复眼", - description: "因为拥有复眼,招式的命中率会提\n高。", - }, - insomnia: { - name: "不眠", - description: "因为有着睡不着的体质,所以不会\n陷入睡眠状态。", - }, - colorChange: { - name: "变色", - description: "自己的属性会变为从对手处所受招\n式的属性。", - }, - immunity: { - name: "免疫", - description: "因为体内拥有免疫能力,不会变为\n中毒状态。", - }, - flashFire: { - name: "引火", - description: "受到火属性的招式攻击时,吸收火\n焰,自己使出的火属性招式会变强\n。", - }, - shieldDust: { - name: "鳞粉", - description: "被鳞粉守护着,不会受到招式的追\n加效果影响。", - }, - ownTempo: { - name: "我行我素", - description: "因为我行我素,不会变为混乱状态\n。对威吓也毫不动摇。", - }, - suctionCups: { - name: "吸盘", - description: "用吸盘牢牢贴在地面上,让替换宝\n可梦的招式和道具无效。", - }, - intimidate: { - name: "威吓", - description: "出场时威吓对手,让其退缩,降低\n对手的攻击。", - }, - shadowTag: { - name: "踩影", - description: "踩住对手的影子使其无法逃走或替\n换。", - }, - roughSkin: { - name: "粗糙皮肤", - description: "受到攻击时,用粗糙的皮肤弄伤接\n触到自己的对手。", - }, - wonderGuard: { - name: "神奇守护", - description: "不可思议的力量,只有效果绝佳的\n招式才能击中。", - }, - levitate: { - name: "飘浮", - description: "从地面浮起,从而不会受到地面属\n性招式的攻击。", - }, - effectSpore: { - name: "孢子", - description: "受到攻击时,有时会把接触到自己\n的对手变为中毒、麻痹或睡眠状态\n。", - }, - synchronize: { - name: "同步", - description: "将自己的中毒、麻痹或灼伤状态传\n染给对手。", - }, - clearBody: { - name: "恒净之躯", - description: "不会因为对手的招式或特性而被降\n低能力。", - }, - naturalCure: { - name: "自然回复", - description: "回到同行队伍后,异常状态就会被\n治愈。", - }, - lightningRod: { - name: "避雷针", - description: "将电属性的招式吸引到自己身上,\n不会受到伤害,而是会提高特攻。", - }, - sereneGrace: { - name: "天恩", - description: "托天恩的福,招式的追加效果容易\n出现。", - }, - swiftSwim: { - name: "悠游自如", - description: "下雨天气时,速度会提高。", - }, - chlorophyll: { - name: "叶绿素", - description: "晴朗天气时,速度会提高。", - }, - illuminate: { - name: "发光", - description: "通过让周围变亮来保持命中率不会\n被降低。", - }, - trace: { - name: "复制", - description: "出场时,复制对手的特性,变为与\n之相同的特性。", - }, - hugePower: { - name: "大力士", - description: "物理攻击的威力会变为2倍。", - }, - poisonPoint: { - name: "毒刺", - description: "有时会让接触到自己的对手变为中\n毒状态。", - }, - innerFocus: { - name: "精神力", - description: "拥有经过锻炼的精神,而不会因对\n手的攻击而畏缩。对威吓也毫不动\n摇。", - }, - magmaArmor: { - name: "熔岩铠甲", - description: "将炽热的熔岩覆盖在身上,不会变\n为冰冻状态。", - }, - waterVeil: { - name: "水幕", - description: "将水幕裹在身上,不会变为灼伤状\n态。", - }, - magnetPull: { - name: "磁力", - description: "用磁力吸住钢属性的宝可梦,使其\n无法逃走。", - }, - soundproof: { - name: "隔音", - description: "通过屏蔽声音,不受到声音招式的\n影响。", - }, - rainDish: { - name: "雨盘", - description: "下雨天气时,会缓缓回复HP。", - }, - sandStream: { - name: "扬沙", - description: "出场时,会把天气变为沙暴。", - }, - pressure: { - name: "压迫感", - description: "给予对手压迫感,大量减少其使用\n招式的PP。", - }, - thickFat: { - name: "厚脂肪", - description: "因为被厚厚的脂肪保护着,会让火\n属性和冰属性的招式伤害减半。", - }, - earlyBird: { - name: "早起", - description: "即使变为睡眠状态,也能以2倍的\n速度提早醒来。", - }, - flameBody: { - name: "火焰之躯", - description: "有时会让接触到自己的对手变为灼\n伤状态。", - }, - runAway: { - name: "逃跑", - description: "一定能从野生宝可梦那儿逃走。", - }, - keenEye: { - name: "锐利目光", - description: "多亏了锐利的目光,命中率不会被\n降低。", - }, - hyperCutter: { - name: "怪力钳", - description: "因为拥有以力量自豪的钳子,不会\n被对手降低攻击。", - }, - pickup: { - name: "捡拾", - description: "有时会捡来对手用过的道具,冒险\n过程中也会捡到。", - }, - truant: { - name: "懒惰", - description: "如果使出招式,下一回合就会休息\n。", - }, - hustle: { - name: "活力", - description: "自己的攻击变高,但命中率会降低\n。", - }, - cuteCharm: { - name: "迷人之躯", - description: "有时会让接触到自己的对手着迷。", - }, - plus: { - name: "正电", - description: "出场的伙伴之间如果有正电或负电\n特性的宝可梦,自己的特攻会提高\n。", - }, - minus: { - name: "负电", - description: "出场的伙伴之间如果有正电或负电\n特性的宝可梦,自己的特攻会提高\n。", - }, - forecast: { - name: "阴晴不定", - description: "受天气的影响,会变为水属性、火\n属性或冰属性中的某一个。", - }, - stickyHold: { - name: "黏着", - description: "因为道具是粘在黏性身体上的,所\n以不会被对手夺走。", - }, - shedSkin: { - name: "蜕皮", - description: "通过蜕去身上的皮,有时会治愈异\n常状态。", - }, - guts: { - name: "毅力", - description: "如果变为异常状态,会拿出毅力,\n攻击会提高。", - }, - marvelScale: { - name: "神奇鳞片", - description: "如果变为异常状态,神奇鳞片会发\n生反应,防御会提高。", - }, - liquidOoze: { - name: "污泥浆", - description: "吸收了污泥浆的对手会因强烈的恶\n臭而受到伤害,减少HP。", - }, - overgrow: { - name: "茂盛", - description: "HP减少的时候,草属性的招式威\n力会提高。", - }, - blaze: { - name: "猛火", - description: "HP减少的时候,火属性的招式威\n力会提高。", - }, - torrent: { - name: "激流", - description: "HP减少的时候,水属性的招式威\n力会提高。", - }, - swarm: { - name: "虫之预感", - description: "HP减少的时候,虫属性的招式威\n力会提高。", - }, - rockHead: { - name: "坚硬脑袋", - description: "即使使出会受反作用力伤害的招式\n,HP也不会减少。", - }, - drought: { - name: "日照", - description: "出场时,会将天气变为晴朗。", - }, - arenaTrap: { - name: "沙穴", - description: "在战斗中让对手无法逃走。", - }, - vitalSpirit: { - name: "干劲", - description: "通过激发出干劲,不会变为睡眠状\n态。", - }, - whiteSmoke: { - name: "白色烟雾", - description: "被白色烟雾保护着,不会被对手降\n低能力。", - }, - purePower: { - name: "瑜伽之力", - description: "因瑜伽的力量,物理攻击的威力会\n变为2倍。", - }, - shellArmor: { - name: "硬壳盔甲", - description: "被坚硬的壳保护着,对手的攻击不\n会击中要害。", - }, - airLock: { - name: "气闸", - description: "所有天气的影响都会消失。", - }, - tangledFeet: { - name: "蹒跚", - description: "在混乱状态时,闪避率会提高。", - }, - motorDrive: { - name: "电气引擎", - description: "受到电属性的招式攻击时,不会受\n到伤害,而是速度会提高。", - }, - rivalry: { - name: "斗争心", - description: "面对性别相同的对手,会燃起斗争\n心,变得更强。而面对性别不同的\n,则会变弱。", - }, - steadfast: { - name: "不屈之心", - description: "每次畏缩时,不屈之心就会燃起,\n速度也会提高。", - }, - snowCloak: { - name: "雪隐", - description: "下雪天气时,闪避率会提高。", - }, - gluttony: { - name: "贪吃鬼", - description: "原本HP变得很少时才会吃树果,\n在HP还有一半时就会把它吃掉。", - }, - angerPoint: { - name: "愤怒穴位", - description: "要害被击中时,会大发雷霆,攻击\n力变为最大。", - }, - unburden: { - name: "轻装", - description: "失去所持有的道具时,速度会提高\n。", - }, - heatproof: { - name: "耐热", - description: "耐热的体质会让火属性的招式伤害\n减半。", - }, - simple: { - name: "单纯", - description: "能力变化会变为平时的2倍。", - }, - drySkin: { - name: "干燥皮肤", - description: "下雨天气时和受到水属性的招式时\n,HP会回复。晴朗天气时和受到\n火属性的招式时,HP会减少。", - }, - download: { - name: "下载", - description: "比较对手的防御和特防,根据较低\n的那项能力相应地提高自己的攻击\n或特攻。", - }, - ironFist: { - name: "铁拳", - description: "使用拳类招式的威力会提高。", - }, - poisonHeal: { - name: "毒疗", - description: "变为中毒状态时,HP不会减少,\n反而会增加起来。", - }, - adaptability: { - name: "适应力", - description: "与自身同属性的招式威力会提高。", - }, - skillLink: { - name: "连续攻击", - description: "如果使用连续招式,总是能使出最\n高次数。", - }, - hydration: { - name: "湿润之躯", - description: "下雨天气时,异常状态会治愈。", - }, - solarPower: { - name: "太阳之力", - description: "晴朗天气时,特攻会提高,而每回\n合HP会减少。", - }, - quickFeet: { - name: "飞毛腿", - description: "变为异常状态时,速度会提高。", - }, - normalize: { - name: "一般皮肤", - description: "无论是什么属性的招式,全部会变\n为一般属性。威力会少量提高。", - }, - sniper: { - name: "狙击手", - description: "击中要害时,威力会变得更强。", - }, - magicGuard: { - name: "魔法防守", - description: "不会受到攻击以外的伤害。", - }, - noGuard: { - name: "无防守", - description: "由于无防守战术,双方使出的招式\n都必定会击中。", - }, - stall: { - name: "慢出", - description: "使出招式的顺序必定会变为最后。", - }, - technician: { - name: "技术高手", - description: "攻击时可以将低威力招式的威力提\n高。", - }, - leafGuard: { - name: "叶子防守", - description: "晴朗天气时,不会变为异常状态。", - }, - klutz: { - name: "笨拙", - description: "无法使用持有的道具。", - }, - moldBreaker: { - name: "破格", - description: "可以不受对手特性的干扰,向对手\n使出招式。", - }, - superLuck: { - name: "超幸运", - description: "因为拥有超幸运,攻击容易击中对\n手的要害。", - }, - aftermath: { - name: "引爆", - description: "变为濒死时,会对接触到自己的对\n手造成伤害。", - }, - anticipation: { - name: "危险预知", - description: "可以察觉到对手拥有的危险招式。", - }, - forewarn: { - name: "预知梦", - description: "出场时,只读取1个对手拥有的招\n式。", - }, - unaware: { - name: "纯朴", - description: "可以无视对手能力的变化,进行攻\n击。", - }, - tintedLens: { - name: "有色眼镜", - description: "可以将效果不好的招式以通常的威\n力使出。", - }, - filter: { - name: "过滤", - description: "受到效果绝佳的攻击时,可以减弱\n其威力。", - }, - slowStart: { - name: "慢启动", - description: "在5回合内,攻击和速度减半。", - }, - scrappy: { - name: "胆量", - description: "一般属性和格斗属性的招式可以击\n中幽灵属性的宝可梦。对威吓也毫\n不动摇。", - }, - stormDrain: { - name: "引水", - description: "将水属性的招式引到自己身上,不\n会受到伤害,而是会提高特攻。", - }, - iceBody: { - name: "冰冻之躯", - description: "下雪天气时,会缓缓回复HP。", - }, - solidRock: { - name: "坚硬岩石", - description: "受到效果绝佳的攻击时,可以减弱\n其威力。", - }, - snowWarning: { - name: "降雪", - description: "出场时,会将天气变为下雪。", - }, - honeyGather: { - name: "采蜜", - description: "The Pokémon gat\nhers Honey afte\nr a battle. The\n Honey is then \nsold for money.", - }, - frisk: { - name: "察觉", - description: "出场时,可以察觉对手的特性。", - }, - reckless: { - name: "舍身", - description: "自己会因反作用力受伤的招式,其\n威力会提高。", - }, - multitype: { - name: "多属性", - description: "自己的属性会根据持有的石板而改\n变。", - }, - flowerGift: { - name: "花之礼", - description: "晴朗天气时,自己与同伴的攻击和\n特防能力会提高。", - }, - badDreams: { - name: "梦魇", - description: "给予睡眠状态的对手伤害。", - }, - pickpocket: { - name: "顺手牵羊", - description: "盗取接触到自己的对手的道具。", - }, - sheerForce: { - name: "强行", - description: "招式的追加效果消失,但因此能以\n更高的威力使出招式。", - }, - contrary: { - name: "唱反调", - description: "能力的变化发生逆转,原本提高时\n会降低,而原本降低时会提高。", - }, - unnerve: { - name: "紧张感", - description: "让对手紧张,使其无法食用树果。", - }, - defiant: { - name: "不服输", - description: "被对手降低能力时,攻击会大幅提\n高。", - }, - defeatist: { - name: "软弱", - description: "HP减半时,会变得软弱,攻击和\n特攻会减半。", - }, - cursedBody: { - name: "诅咒之躯", - description: "受到攻击时,有时会把对手的招式\n变为定身法状态。", - }, - healer: { - name: "治愈之心", - description: "有时会治愈异常状态的同伴。", - }, - friendGuard: { - name: "友情防守", - description: "可以减少我方的伤害。", - }, - weakArmor: { - name: "碎裂铠甲", - description: "受到物理招式的伤害时,防御会降\n低,速度会大幅提高。", - }, - heavyMetal: { - name: "重金属", - description: "自身的重量会变为2倍。", - }, - lightMetal: { - name: "轻金属", - description: "自身的重量会减半。", - }, - multiscale: { - name: "多重鳞片", - description: "HP全满时,受到的伤害会变少。", - }, - toxicBoost: { - name: "中毒激升", - description: "变为中毒状态时,物理招式的威力\n会提高。", - }, - flareBoost: { - name: "受热激升", - description: "变为灼伤状态时,特殊招式的威力\n会提高。", - }, - harvest: { - name: "收获", - description: "可以多次制作出已被使用掉的树果\n。", - }, - telepathy: { - name: "心灵感应", - description: "读取我方的攻击,并闪避其招式伤\n害。", - }, - moody: { - name: "心情不定", - description: "每一回合,能力中的某项会大幅提\n高,而某项会降低。", - }, - overcoat: { - name: "防尘", - description: "不会受到沙暴的伤害。也不会受到\n粉末类和孢子类招式的影响。", - }, - poisonTouch: { - name: "毒手", - description: "只通过接触就有可能让对手变为中\n毒状态。", - }, - regenerator: { - name: "再生力", - description: "退回同行队伍后,HP会少量回复\n。", - }, - bigPecks: { - name: "健壮胸肌", - description: "不会受到防御降低的效果。", - }, - sandRush: { - name: "拨沙", - description: "沙暴天气时,速度会提高。", - }, - wonderSkin: { - name: "奇迹皮肤", - description: "成为不易受到变化招式攻击的身体\n。", - }, - analytic: { - name: "分析", - description: "如果在最后使出招式,招式的威力\n会提高。", - }, - illusion: { - name: "幻觉", - description: "假扮成同行队伍中的最后一只宝可\n梦出场,迷惑对手。", - }, - imposter: { - name: "变身者", - description: "变身为当前面对的宝可梦。", - }, - infiltrator: { - name: "穿透", - description: "可以穿透对手的壁障或替身进行攻\n击。", - }, - mummy: { - name: "木乃伊", - description: "被对手接触到后,会将对手变为木\n乃伊。", - }, - moxie: { - name: "自信过度", - description: "如果打倒对手,就会充满自信,攻\n击会提高。", - }, - justified: { - name: "正义之心", - description: "受到恶属性的招式攻击时,因为正\n义感,攻击会提高。", - }, - rattled: { - name: "胆怯", - description: "受到恶属性、幽灵属性和虫属性的\n攻击或威吓时,会因胆怯而速度提\n高。", - }, - magicBounce: { - name: "魔法镜", - description: "可以不受到由对手使出的变化招式\n影响,并将其反弹。", - }, - sapSipper: { - name: "食草", - description: "受到草属性的招式攻击时,不会受\n到伤害,而是攻击会提高。", - }, - prankster: { - name: "恶作剧之心", - description: "可以率先使出变化招式。", - }, - sandForce: { - name: "沙之力", - description: "沙暴天气时,岩石属性、地面属性\n和钢属性的招式威力会提高。", - }, - ironBarbs: { - name: "铁刺", - description: "用铁刺给予接触到自己的对手伤害\n。", - }, - zenMode: { - name: "达摩模式", - description: "HP变为一半以下时,样子会改变\n。", - }, - victoryStar: { - name: "胜利之星", - description: "自己和同伴的命中率会提高。", - }, - turboblaze: { - name: "涡轮火焰", - description: "可以不受对手特性的干扰,向对手\n使出招式。", - }, - teravolt: { - name: "兆级电压", - description: "可以不受对手特性的干扰,向对手\n使出招式。", - }, - aromaVeil: { - name: "芳香幕", - description: "可以防住向自己和同伴发出的心灵\n攻击。", - }, - flowerVeil: { - name: "花幕", - description: "我方的草属性宝可梦能力不会降低\n,也不会变为异常状态。", - }, - cheekPouch: { - name: "颊囊", - description: "无论是哪种树果,食用后,HP都\n会回复。", - }, - protean: { - name: "变幻自如", - description: "变为与自己使出的招式相同的属性\n。每次出场战斗仅生效一次。", - }, - furCoat: { - name: "毛皮大衣", - description: "对手给予的物理招式的伤害会减半\n。", - }, - magician: { - name: "魔术师", - description: "夺走被自己的招式击中的对手的道\n具。", - }, - bulletproof: { - name: "防弹", - description: "可以防住对手的球和弹类招式。", - }, - competitive: { - name: "好胜", - description: "如果被对手降低能力,特攻会大幅\n提高。", - }, - strongJaw: { - name: "强壮之颚", - description: "因为颚部强壮,啃咬类招式的威力\n会提高。", - }, - refrigerate: { - name: "冰冻皮肤", - description: "一般属性的招式会变为冰属性。威\n力会少量提高。", - }, - sweetVeil: { - name: "甜幕", - description: "自己和同伴的宝可梦不会变为睡眠\n状态。", - }, - stanceChange: { - name: "战斗切换", - description: "如果使出攻击招式,会变为刀剑形\n态,如果使出招式“王者盾牌”,\n会变为盾牌形态。", - }, - galeWings: { - name: "疾风之翼", - description: "HP全满时,飞行属性的招式可以\n率先使出。", - }, - megaLauncher: { - name: "超级发射器", - description: "波动和波导类招式的威力会提高。", - }, - grassPelt: { - name: "草之毛皮", - description: "在青草场地时,防御会提高。", - }, - symbiosis: { - name: "共生", - description: "同伴使用道具时,会把自己持有的\n道具传递给同伴。", - }, - toughClaws: { - name: "硬爪", - description: "接触到对手的招式威力会提高。", - }, - pixilate: { - name: "妖精皮肤", - description: "一般属性的招式会变为妖精属性。\n威力会少量提高。", - }, - gooey: { - name: "黏滑", - description: "对于用攻击接触到自己的对手,会\n降低其速度。", - }, - aerilate: { - name: "飞行皮肤", - description: "一般属性的招式会变为飞行属性。\n威力会少量提高。", - }, - parentalBond: { - name: "亲子爱", - description: "亲子俩可以合计攻击2次。", - }, - darkAura: { - name: "暗黑气场", - description: "全体的恶属性招式变强。", - }, - fairyAura: { - name: "妖精气场", - description: "全体的妖精属性招式变强。", - }, - auraBreak: { - name: "气场破坏", - description: "让气场的效果发生逆转,降低威力\n。", - }, - primordialSea: { - name: "始源之海", - description: "变为不会受到火属性攻击的天气。", - }, - desolateLand: { - name: "终结之地", - description: "变为不会受到水属性攻击的天气。", - }, - deltaStream: { - name: "德尔塔气流", - description: "变为令飞行属性的弱点消失的天气\n。", - }, - stamina: { - name: "持久力", - description: "受到攻击时,防御会提高。", - }, - wimpOut: { - name: "跃跃欲逃", - description: "HP变为一半时,会慌慌张张逃走\n,退回同行队伍中。", - }, - emergencyExit: { - name: "危险回避", - description: "HP变为一半时,为了回避危险,\n会退回到同行队伍中。", - }, - waterCompaction: { - name: "遇水凝固", - description: "受到水属性的招式攻击时,防御会\n大幅提高。", - }, - merciless: { - name: "不仁不义", - description: "攻击中毒状态的对手时,必定会击\n中要害。", - }, - shieldsDown: { - name: "界限盾壳", - description: "HP变为一半时,壳会坏掉,变得\n有攻击性。", - }, - stakeout: { - name: "蹲守", - description: "可以对替换出场的对手以2倍的伤\n害进行攻击。", - }, - waterBubble: { - name: "水泡", - description: "降低自己受到的火属性招式的威力\n,不会灼伤。", - }, - steelworker: { - name: "钢能力者", - description: "钢属性的招式威力会提高。", - }, - berserk: { - name: "怒火冲天", - description: "因对手的攻击HP变为一半时,特\n攻会提高。", - }, - slushRush: { - name: "拨雪", - description: "下雪天气时,速度会提高。", - }, - longReach: { - name: "远隔", - description: "可以不接触对手就使出所有的招式\n。", - }, - liquidVoice: { - name: "湿润之声", - description: "所有的声音招式都变为水属性。", - }, - triage: { - name: "先行治疗", - description: "可以率先使出回复招式。", - }, - galvanize: { - name: "电气皮肤", - description: "一般属性的招式会变为电属性。威\n力会少量提高。", - }, - surgeSurfer: { - name: "冲浪之尾", - description: "电气场地时,速度会变为2倍。", - }, - schooling: { - name: "鱼群", - description: "HP多的时候会聚起来变强。HP\n剩余量变少时,群体会分崩离析。", - }, - disguise: { - name: "画皮", - description: "通过画皮覆盖住身体,可以防住1\n次攻击。", - }, - battleBond: { - name: "牵绊变身", - description: "打倒对手时,与训练家的牵绊会增\n强,自己的攻击、特攻、速度会提\n高。", - }, - powerConstruct: { - name: "群聚变形", - description: "HP变为一半时,细胞们会赶来支\n援,变为完全体形态。", - }, - corrosion: { - name: "腐蚀", - description: "可以使钢属性和毒属性的宝可梦也\n陷入中毒状态。", - }, - comatose: { - name: "绝对睡眠", - description: "总是半梦半醒的状态,绝对不会醒\n来。可以就这么睡着进行攻击。", - }, - queenlyMajesty: { - name: "女王的威严", - description: "向对手施加威慑力,使其无法对我\n方使出先制招式。", - }, - innardsOut: { - name: "飞出的内在物", - description: "被对手打倒的时候,会给予对手相\n当于HP剩余量的伤害。", - }, - dancer: { - name: "舞者", - description: "有谁使出跳舞招式时,自己也能就\n这么接着使出跳舞招式。", - }, - battery: { - name: "蓄电池", - description: "会提高我方的特殊招式的威力。", - }, - fluffy: { - name: "毛茸茸", - description: "会将对手所给予的接触类招式的伤\n害减半,但火属性招式的伤害会变\n为2倍。", - }, - dazzling: { - name: "鲜艳之躯", - description: "让对手吓一跳,使其无法对我方使\n出先制招式。", - }, - soulHeart: { - name: "魂心", - description: "宝可梦每次变为濒死状态时,特攻\n会提高。", - }, - tanglingHair: { - name: "卷发", - description: "对于用攻击接触到自己的对手,会\n降低其速度。", - }, - receiver: { - name: "接球手", - description: "继承被打倒的同伴的特性,变为相\n同的特性。", - }, - powerOfAlchemy: { - name: "化学之力", - description: "继承被打倒的同伴的特性,变为相\n同的特性。", - }, - beastBoost: { - name: "异兽提升", - description: "打倒对手的时候,自己最高的那项\n能力会提高。", - }, - rksSystem: { - name: "AR系统", - description: "根据持有的存储碟,自己的属性会\n改变。", - }, - electricSurge: { - name: "电气制造者", - description: "出场时,会布下电气场地。", - }, - psychicSurge: { - name: "精神制造者", - description: "出场时,会布下精神场地。", - }, - mistySurge: { - name: "薄雾制造者", - description: "出场时,会布下薄雾场地。", - }, - grassySurge: { - name: "青草制造者", - description: "出场时,会布下青草场地。", - }, - fullMetalBody: { - name: "金属防护", - description: "不会因为对手的招式或特性而被降\n低能力。", - }, - shadowShield: { - name: "幻影防守", - description: "HP全满时,受到的伤害会变少。", - }, - prismArmor: { - name: "棱镜装甲", - description: "受到效果绝佳的攻击时,可以减弱\n其威力。", - }, - neuroforce: { - name: "脑核之力", - description: "效果绝佳的攻击,威力会变得更强\n。", - }, - intrepidSword: { - name: "不挠之剑", - description: "首次出场时,攻击会提高。", - }, - dauntlessShield: { - name: "不屈之盾", - description: "首次出场时,防御会提高。", - }, - libero: { - name: "自由者", - description: "变为与自己使出的招式相同的属性\n。每次出场战斗仅生效一次。", - }, - ballFetch: { - name: "捡球", - description: "没有携带道具时,会拾取第1个投\n出后捕捉失败的精灵球。", - }, - cottonDown: { - name: "棉絮", - description: "受到攻击后撒下棉絮,降低除自己\n以外的所有宝可梦的速度。", - }, - propellerTail: { - name: "螺旋尾鳍", - description: "能无视具有吸引对手招式效果的特\n性或招式的影响。", - }, - mirrorArmor: { - name: "镜甲", - description: "只反弹自己受到的能力降低效果。", - }, - gulpMissile: { - name: "一口导弹", - description: "冲浪或潜水时会叼来猎物。受到伤\n害时,会吐出猎物进行攻击。", - }, - stalwart: { - name: "坚毅", - description: "能无视具有吸引对手招式效果的特\n性或招式的影响。", - }, - steamEngine: { - name: "蒸汽机", - description: "受到水属性或火属性的招式攻击时\n,速度会巨幅提高。", - }, - punkRock: { - name: "庞克摇滚", - description: "声音招式的威力会提高。受到的声\n音招式伤害会减半。", - }, - sandSpit: { - name: "吐沙", - description: "受到攻击时,会刮起沙暴。", - }, - iceScales: { - name: "冰鳞粉", - description: "由于有冰鳞粉的守护,受到的特殊\n攻击伤害会减半。", - }, - ripen: { - name: "熟成", - description: "使树果成熟,效果变为2倍。", - }, - iceFace: { - name: "结冻头", - description: "头部的冰会代替自己承受物理攻击\n,但是样子会改变。下雪时,冰会\n恢复原状。", - }, - powerSpot: { - name: "能量点", - description: "只要处在相邻位置,招式的威力就\n会提高。", - }, - mimicry: { - name: "拟态", - description: "宝可梦的属性会根据场地的状态而\n变化。", - }, - screenCleaner: { - name: "除障", - description: "出场时,敌方和我方的光墙、反射\n壁和极光幕的效果会消失。", - }, - steelySpirit: { - name: "钢之意志", - description: "我方的钢属性攻击威力会提高。", - }, - perishBody: { - name: "灭亡之躯", - description: "受到接触类招式攻击时,双方都会\n在3回合后变为濒死状态。替换后\n效果消失。", - }, - wanderingSpirit: { - name: "游魂", - description: "与使用接触类招式攻击自己的宝可\n梦互换特性。", - }, - gorillaTactics: { - name: "一猩一意", - description: "虽然攻击会提高,但是只能使出一\n开始所选的招式。", - }, - neutralizingGas: { - name: "化学变化气体", - description: "特性为化学变化气体的宝可梦在场\n时,场上所有宝可梦的特性效果都\n会消失或者无法生效。", - }, - pastelVeil: { - name: "粉彩护幕", - description: "自己和同伴都不会陷入中毒的异常\n状态。", - }, - hungerSwitch: { - name: "饱了又饿", - description: "每回合结束时会在满腹花纹与空腹\n花纹之间交替改变样子。", - }, - quickDraw: { - name: "速击", - description: "有时能比对手先一步行动。", - }, - unseenFist: { - name: "无形拳", - description: "如果使出的是接触到对手的招式,\n就可以无视守护效果进行攻击。", - }, - curiousMedicine: { - name: "怪药", - description: "出场时会从贝壳撒药,将我方的能\n力变化复原。", - }, - transistor: { - name: "电晶体", - description: "电属性的招式威力会提高。", - }, - dragonsMaw: { - name: "龙颚", - description: "龙属性的招式威力会提高。", - }, - chillingNeigh: { - name: "苍白嘶鸣", - description: "打倒对手时会用冰冷的声音嘶鸣并\n提高攻击。", - }, - grimNeigh: { - name: "漆黑嘶鸣", - description: "打倒对手时会用恐怖的声音嘶鸣并\n提高特攻。", - }, - asOneGlastrier: { - name: "人马一体", - description: "兼备蕾冠王的紧张感和雪暴马的苍\n白嘶鸣这两种特性。", - }, - asOneSpectrier: { - name: "人马一体", - description: "兼备蕾冠王的紧张感和灵幽马的漆\n黑嘶鸣这两种特性。", - }, - lingeringAroma: { - name: "甩不掉的气味", - description: "被对手接触到后,甩不掉的气味会\n沾上对手。", - }, - seedSower: { - name: "掉出种子", - description: "受到攻击时,会将脚下变成青草场\n地。", - }, - thermalExchange: { - name: "热交换", - description: "受到火属性的招式攻击时,攻击会\n提高,且不会陷入灼伤状态。", - }, - angerShell: { - name: "愤怒甲壳", - description: "因被对手攻击而HP变为一半时,\n会因愤怒降低防御和特防。但攻击\n、特攻、速度会提高。", - }, - purifyingSalt: { - name: "洁净之盐", - description: "因洁净的盐而不会陷入异常状态。\n会让幽灵属性的招式伤害减半。", - }, - wellBakedBody: { - name: "焦香之躯", - description: "受到火属性的招式攻击时,不会受\n到伤害,而是会大幅提高防御。", - }, - windRider: { - name: "乘风", - description: "吹起了顺风或受到风的招式攻击时\n,不会受到伤害,而是会提高攻击\n。", - }, - guardDog: { - name: "看门犬", - description: "受到威吓时,攻击会提高。让替换\n宝可梦的招式和道具无效。", - }, - rockyPayload: { - name: "搬岩", - description: "岩石属性的招式威力会提高。", - }, - windPower: { - name: "风力发电", - description: "受到风的招式攻击时,会变为充电\n状态。", - }, - zeroToHero: { - name: "全能变身", - description: "回到同行队伍后,会变为全能形态\n。", - }, - commander: { - name: "发号施令", - description: "出场时,若我方当中有吃吼霸,就\n会进入其口中,并从其口中发出指\n令。", - }, - electromorphosis: { - name: "电力转换", - description: "受到伤害时,会变为充电状态。", - }, - protosynthesis: { - name: "古代活性", - description: "携带着驱劲能量或天气为晴朗时,\n数值最高的能力会提高。", - }, - quarkDrive: { - name: "夸克充能", - description: "携带着驱劲能量或在电气场地上时\n,数值最高的能力会提高。", - }, - goodAsGold: { - name: "黄金之躯", - description: "不会氧化的坚固黄金身躯不会受到\n对手的变化招式的影响。", - }, - vesselOfRuin: { - name: "灾祸之鼎", - description: "以能呼唤灾厄的鼎的力量降低除自\n己以外的宝可梦的特攻。", - }, - swordOfRuin: { - name: "灾祸之剑", - description: "以能呼唤灾厄的剑的力量降低除自\n己以外的宝可梦的防御。", - }, - tabletsOfRuin: { - name: "灾祸之简", - description: "以能呼唤灾厄的简的力量降低除自\n己以外的宝可梦的攻击。", - }, - beadsOfRuin: { - name: "灾祸之玉", - description: "以能呼唤灾厄的勾玉的力量降低除\n自己以外的宝可梦的特防。", - }, - orichalcumPulse: { - name: "绯红脉动", - description: "出场时,会将天气变为晴朗。日照\n强烈时,会通过古代的脉动升高攻\n击。", - }, - hadronEngine: { - name: "强子引擎", - description: "出场时,会布下电气场地。处于电\n气场地时,会通过未来的机关升高\n特攻。", - }, - opportunist: { - name: "跟风", - description: "对手的能力提高时,自己也会趁机\n同样地提高能力。", - }, - cudChew: { - name: "反刍", - description: "吃了树果后,会在下一回合结束时\n从胃反刍出来再吃1次。", - }, - sharpness: { - name: "锋锐", - description: "提高切割对手的招式的威力。", - }, - supremeOverlord: { - name: "大将", - description: "出场时,攻击和特攻会按照目前被\n打倒的同伴数量逐渐提升,被打倒\n越多,提升越多。", - }, - costar: { - name: "同台共演", - description: "出场时,复制同伴的能力变化。", - }, - toxicDebris: { - name: "毒满地", - description: "受到物理招式的伤害时,会在对手\n脚下散布毒菱。", - }, - armorTail: { - name: "尾甲", - description: "包裹头部的神秘尾巴使对手无法对\n我方使出先制招式。", - }, - earthEater: { - name: "食土", - description: "受到地面属性的招式攻击时,不会\n受到伤害,而是会得到回复。", - }, - myceliumMight: { - name: "菌丝之力", - description: "使出变化招式时,虽然行动必定会\n变慢,但能不受对手的特性妨碍。", - }, - mindsEye: { - name: "心眼", - description: "一般属性和格斗属性的招式可以击\n中幽灵属性的宝可梦。无视对手的\n闪避率的变化,且命中率不会被降\n低。", - }, - supersweetSyrup: { - name: "甘露之蜜", - description: "首次出场时,会散发出甜腻的蜜的\n香味来降低对手的闪避率。", - }, - hospitality: { - name: "款待", - description: "出场时款待同伴,回复其少量HP\n。", - }, - toxicChain: { - name: "毒锁链", - description: "凭借含有毒素的锁链的力量,有时\n能让被招式击中的对手陷入剧毒状\n态。", - }, - embodyAspectTeal: { - name: "面影辉映", - description: "将回忆映于心中,让碧草面具发出\n光辉,提高自己的速度。", - }, - embodyAspectWellspring: { - name: "面影辉映", - description: "将回忆映于心中,让水井面具发出\n光辉,提高自己的特防。", - }, - embodyAspectHearthflame: { - name: "面影辉映", - description: "将回忆映于心中,让火灶面具发出\n光辉,提高自己的攻击。", - }, - embodyAspectCornerstone: { - name: "面影辉映", - description: "将回忆映于心中,让础石面具发出\n光辉,提高自己的防御。", - }, - teraShift: { - name: "太晶变形", - description: "出场时,会吸收周围的能量,变为\n太晶形态。", - }, - teraShell: { - name: "太晶甲壳", - description: "甲壳蕴藏着全部属性的力量,会将\n自己HP全满时受到的伤害全都变\n为效果不好。", - }, - teraformZero: { - name: "归零化境", - description: "太乐巴戈斯变为星晶形态时,蕴藏\n在它身上的力量会将天气和场地的\n影响全部归零。", - }, - poisonPuppeteer: { - name: "毒傀儡", - description: "因桃歹郎的招式而陷入中毒状态的\n对手同时也会陷入混乱状态。", - }, -} as const; diff --git a/src/locales/zh_CN/achv.json b/src/locales/zh_CN/achv.json new file mode 100644 index 00000000000..8de0c48a2c3 --- /dev/null +++ b/src/locales/zh_CN/achv.json @@ -0,0 +1,276 @@ +{ + "Achievements": { + "name": "成就" + }, + "Locked": { + "name": "未解锁" + }, + + "MoneyAchv": { + "description": "累计获得 ₽{{moneyAmount}}" + }, + "10K_MONEY": { + "name": "小有积蓄" + }, + "100K_MONEY": { + "name": "大户人家" + }, + "1M_MONEY": { + "name": "百万富翁" + }, + "10M_MONEY": { + "name": "暴发户" + }, + + "DamageAchv": { + "description": "在单次攻击中造成 {{damageAmount}} 点伤害" + }, + "250_DMG": { + "name": "重拳出击" + }, + "1000_DMG": { + "name": "神拳猛击" + }, + "2500_DMG": { + "name": "夺少?" + }, + "10000_DMG": { + "name": "一拳超人" + }, + + "HealAchv": { + "description": "通过技能、能力或携带的道具一次性治疗 {{healAmount}} {{HP}}点" + }, + "250_HEAL": { + "name": "新手奶妈" + }, + "1000_HEAL": { + "name": "治疗担当" + }, + "2500_HEAL": { + "name": "牧师" + }, + "10000_HEAL": { + "name": "泉水" + }, + + "LevelAchv": { + "description": "将一只宝可梦提升到 Lv{{level}}" + }, + "LV_100": { + "name": "别急,后面还有" + }, + "LV_250": { + "name": "精英" + }, + "LV_1000": { + "name": "天外有天" + }, + + "RibbonAchv": { + "description": "累计获得 {{ribbonAmount}} 个勋章" + }, + "10_RIBBONS": { + "name": "宝可梦联盟冠军" + }, + "25_RIBBONS": { + "name": "超级球联盟冠军" + }, + "50_RIBBONS": { + "name": "高级球联盟冠军" + }, + "75_RIBBONS": { + "name": "肉鸽球联盟冠军" + }, + "100_RIBBONS": { + "name": "大师球联盟冠军" + }, + + "TRANSFER_MAX_BATTLE_STAT": { + "name": "团队协作", + "description": "在一项属性强化至最大时用接力棒传递给其他宝可梦" + }, + "MAX_FRIENDSHIP": { + "name": "亲密无间", + "description": "使一只宝可梦的亲密度达到最大值" + }, + "MEGA_EVOLVE": { + "name": "大变身", + "description": "超级进化一只宝可梦" + }, + "GIGANTAMAX": { + "name": "这位更是重量级", + "description": "极巨化一只宝可梦" + }, + "TERASTALLIZE": { + "name": "本系爱好者", + "description": "太晶化一只宝可梦" + }, + "STELLAR_TERASTALLIZE": { + "name": "隐藏属性", + "description": "星晶化一只宝可梦" + }, + "SPLICE": { + "name": "无限融合", + "description": "使用基因之楔将两只宝可梦融合在一起" + }, + "MINI_BLACK_HOLE": { + "name": "一大洞的道具", + "description": "获得一个迷你黑洞" + }, + "CATCH_MYTHICAL": { + "name": "神秘礼物", + "description": "捕捉一只幻之宝可梦" + }, + "CATCH_SUB_LEGENDARY": { + "name": "二级传说", + "description": "捕捉一只二级传说宝可梦" + }, + "CATCH_LEGENDARY": { + "name": "传说", + "description": "捕捉一只传说宝可梦" + }, + "SEE_SHINY": { + "name": "闪耀夺目", + "description": "在野外找到一只闪光宝可梦" + }, + "SHINY_PARTY": { + "name": "呕心沥血", + "description": "拥有一支由闪光宝可梦组成的满员队伍" + }, + "HATCH_MYTHICAL": { + "name": "幻兽蛋", + "description": "从蛋中孵化出一只幻之宝可梦" + }, + "HATCH_SUB_LEGENDARY": { + "name": "二级传说蛋", + "description": "从蛋中孵化出一只二级传说宝可梦" + }, + "HATCH_LEGENDARY": { + "name": "传说蛋", + "description": "从蛋中孵化出一只传说宝可梦" + }, + "HATCH_SHINY": { + "name": "金色传说!", + "description": "从蛋中孵化出一只闪光宝可梦" + }, + "HIDDEN_ABILITY": { + "name": "隐藏实力", + "description": "捕捉一只拥有隐藏特性的宝可梦" + }, + "PERFECT_IVS": { + "name": "合格证", + "description": "获得一只拥有完美个体值的宝可梦" + }, + "CLASSIC_VICTORY": { + "name": "战无不胜", + "description": "在经典模式中通关游戏" + }, + "UNEVOLVED_CLASSIC_VICTORY": { + "name": "带孩子来上班", + "description": "通关经典模式时队伍中至少有一名未进化的宝可梦" + }, + + "MONO_GEN_ONE": { + "name": "最初的劲敌", + "description": "完成仅限第一世代的挑战" + }, + "MONO_GEN_TWO": { + "name": "1.5世代", + "description": "完成仅限第二世代的挑战" + }, + "MONO_GEN_THREE": { + "name": "“水太多了”", + "description": "完成仅限第三世代的挑战" + }, + "MONO_GEN_FOUR": { + "name": "她真是最强冠军吗?", + "description": "完成仅限第四世代的挑战" + }, + "MONO_GEN_FIVE": { + "name": "完全原创", + "description": "完成仅限第五世代的挑战" + }, + "MONO_GEN_SIX": { + "name": "女大公", + "description": "完成仅限第六世代的挑战" + }, + "MONO_GEN_SEVEN": { + "name": "首届冠军", + "description": "完成仅限第七世代的挑战" + }, + "MONO_GEN_EIGHT": { + "name": "冠军时刻!", + "description": "完成仅限第八世代的挑战" + }, + "MONO_GEN_NINE": { + "name": "她又放水了", + "description": "完成仅限第九世代的挑战" + }, + + "MonoType": { + "description": "完成 {{type}} 单属性挑战" + }, + "MONO_NORMAL": { + "name": "异乎寻常的寻常" + }, + "MONO_FIGHTING": { + "name": "我有真功夫" + }, + "MONO_FLYING": { + "name": "愤怒的小鸟" + }, + "MONO_POISON": { + "name": "关都地区特色" + }, + "MONO_GROUND": { + "name": "地震预报" + }, + "MONO_ROCK": { + "name": "坚如磐石" + }, + "MONO_BUG": { + "name": "音箱蟀侠" + }, + "MONO_GHOST": { + "name": "捉鬼敢死队" + }, + "MONO_STEEL": { + "name": "铁巨人" + }, + "MONO_FIRE": { + "name": "搓火球解决一切" + }, + "MONO_WATER": { + "name": "当雨来临,倾盆而下" + }, + "MONO_GRASS": { + "name": "别踏这个青" + }, + "MONO_ELECTRIC": { + "name": "瞄准大岩蛇的角!" + }, + "MONO_PSYCHIC": { + "name": "脑洞大开" + }, + "MONO_ICE": { + "name": "如履薄冰" + }, + "MONO_DRAGON": { + "name": "准神俱乐部" + }, + "MONO_DARK": { + "name": "总有叛逆期" + }, + "MONO_FAIRY": { + "name": "林克,醒醒!" + }, + "FRESH_START": { + "name": "初次尝试!", + "description": "完成初次尝试挑战" + }, + "INVERSE_BATTLE": { + "name": "镜子子镜", + "description": "完成逆转之战挑战\n战挑战之转逆成完" + } +} diff --git a/src/locales/zh_CN/achv.ts b/src/locales/zh_CN/achv.ts deleted file mode 100644 index 303beeffea3..00000000000 --- a/src/locales/zh_CN/achv.ts +++ /dev/null @@ -1,278 +0,0 @@ -import { AchievementTranslationEntries } from "#app/interfaces/locales.js"; - -// Achievement translations for the when the player character is male -export const PGMachv: AchievementTranslationEntries = { - "Achievements": { - name: "成就", - }, - "Locked": { - name: "未解锁", - }, - - "MoneyAchv": { - description: "累计获得 ₽{{moneyAmount}}", - }, - "10K_MONEY": { - name: "小有积蓄", - }, - "100K_MONEY": { - name: "大户人家", - }, - "1M_MONEY": { - name: "百万富翁", - }, - "10M_MONEY": { - name: "暴发户", - }, - - "DamageAchv": { - description: "在单次攻击中造成 {{damageAmount}} 点伤害", - }, - "250_DMG": { - name: "重拳出击", - }, - "1000_DMG": { - name: "神拳猛击", - }, - "2500_DMG": { - name: "夺少?", - }, - "10000_DMG": { - name: "一拳超人", - }, - - "HealAchv": { - description: "通过技能、能力或携带的道具一次性治疗 {{healAmount}} {{HP}}点", - }, - "250_HEAL": { - name: "新手奶妈", - }, - "1000_HEAL": { - name: "治疗担当", - }, - "2500_HEAL": { - name: "牧师", - }, - "10000_HEAL": { - name: "泉水", - }, - - "LevelAchv": { - description: "将一只宝可梦提升到 Lv{{level}}", - }, - "LV_100": { - name: "别急,后面还有", - }, - "LV_250": { - name: "精英", - }, - "LV_1000": { - name: "天外有天", - }, - - "RibbonAchv": { - description: "累计获得 {{ribbonAmount}} 个勋章", - }, - "10_RIBBONS": { - name: "宝可梦联盟冠军", - }, - "25_RIBBONS": { - name: "超级球联盟冠军", - }, - "50_RIBBONS": { - name: "高级球联盟冠军", - }, - "75_RIBBONS": { - name: "肉鸽球联盟冠军", - }, - "100_RIBBONS": { - name: "大师球联盟冠军", - }, - - "TRANSFER_MAX_BATTLE_STAT": { - name: "团队协作", - description: "在一项属性强化至最大时用接力棒传递给其他宝可梦", - }, - "MAX_FRIENDSHIP": { - name: "亲密无间", - description: "使一只宝可梦的亲密度达到最大值", - }, - "MEGA_EVOLVE": { - name: "大变身", - description: "超级进化一只宝可梦", - }, - "GIGANTAMAX": { - name: "这位更是重量级", - description: "极巨化一只宝可梦", - }, - "TERASTALLIZE": { - name: "本系爱好者", - description: "太晶化一只宝可梦", - }, - "STELLAR_TERASTALLIZE": { - name: "隐藏属性", - description: "星晶化一只宝可梦", - }, - "SPLICE": { - name: "无限融合", - description: "使用基因之楔将两只宝可梦融合在一起", - }, - "MINI_BLACK_HOLE": { - name: "一大洞的道具", - description: "获得一个迷你黑洞", - }, - "CATCH_MYTHICAL": { - name: "神秘礼物", - description: "捕捉一只幻之宝可梦", - }, - "CATCH_SUB_LEGENDARY": { - name: "二级传说", - description: "捕捉一只二级传说宝可梦", - }, - "CATCH_LEGENDARY": { - name: "传说", - description: "捕捉一只传说宝可梦", - }, - "SEE_SHINY": { - name: "闪耀夺目", - description: "在野外找到一只闪光宝可梦", - }, - "SHINY_PARTY": { - name: "呕心沥血", - description: "拥有一支由闪光宝可梦组成的满员队伍", - }, - "HATCH_MYTHICAL": { - name: "幻兽蛋", - description: "从蛋中孵化出一只幻之宝可梦", - }, - "HATCH_SUB_LEGENDARY": { - name: "二级传说蛋", - description: "从蛋中孵化出一只二级传说宝可梦", - }, - "HATCH_LEGENDARY": { - name: "传说蛋", - description: "从蛋中孵化出一只传说宝可梦", - }, - "HATCH_SHINY": { - name: "金色传说!", - description: "从蛋中孵化出一只闪光宝可梦", - }, - "HIDDEN_ABILITY": { - name: "隐藏实力", - description: "捕捉一只拥有隐藏特性的宝可梦", - }, - "PERFECT_IVS": { - name: "合格证", - description: "获得一只拥有完美个体值的宝可梦", - }, - "CLASSIC_VICTORY": { - name: "战无不胜", - description: "在经典模式中通关游戏", - }, - "UNEVOLVED_CLASSIC_VICTORY": { - name: "带孩子来上班", - description: "通关经典模式时队伍中至少有一名未进化的宝可梦" - }, - - "MONO_GEN_ONE": { - name: "最初的劲敌", - description: "完成仅限第一世代的挑战", - }, - "MONO_GEN_TWO": { - name: "1.5世代", - description: "完成仅限第二世代的挑战", - }, - "MONO_GEN_THREE": { - name: "“水太多了”", - description: "完成仅限第三世代的挑战", - }, - "MONO_GEN_FOUR": { - name: "她真是最强冠军吗?", - description: "完成仅限第四世代的挑战", - }, - "MONO_GEN_FIVE": { - name: "完全原创", - description: "完成仅限第五世代的挑战", - }, - "MONO_GEN_SIX": { - name: "女大公", - description: "完成仅限第六世代的挑战", - }, - "MONO_GEN_SEVEN": { - name: "首届冠军", - description: "完成仅限第七世代的挑战", - }, - "MONO_GEN_EIGHT": { - name: "冠军时刻!", - description: "完成仅限第八世代的挑战", - }, - "MONO_GEN_NINE": { - name: "她又放水了", - description: "完成仅限第九世代的挑战", - }, - - "MonoType": { - description: "完成 {{type}} 单属性挑战", - }, - "MONO_NORMAL": { - name: "异乎寻常的寻常", - }, - "MONO_FIGHTING": { - name: "我有真功夫", - }, - "MONO_FLYING": { - name: "愤怒的小鸟", - }, - "MONO_POISON": { - name: "关都地区特色", - }, - "MONO_GROUND": { - name: "地震预报", - }, - "MONO_ROCK": { - name: "坚如磐石", - }, - "MONO_BUG": { - name: "音箱蟀侠", - }, - "MONO_GHOST": { - name: "捉鬼敢死队", - }, - "MONO_STEEL": { - name: "铁巨人", - }, - "MONO_FIRE": { - name: "搓火球解决一切", - }, - "MONO_WATER": { - name: "当雨来临,倾盆而下", - }, - "MONO_GRASS": { - name: "别踏这个青", - }, - "MONO_ELECTRIC": { - name: "瞄准大岩蛇的角!", - }, - "MONO_PSYCHIC": { - name: "脑洞大开", - }, - "MONO_ICE": { - name: "如履薄冰", - }, - "MONO_DRAGON": { - name: "准神俱乐部", - }, - "MONO_DARK": { - name: "总有叛逆期", - }, - "MONO_FAIRY": { - name: "林克,醒醒!", - }, - "FRESH_START": { - name: "初次尝试!", - description: "完成初次尝试挑战" - } -} as const; - -// Achievement translations for the when the player character is female (it for now uses the same translations as the male version) -export const PGFachv: AchievementTranslationEntries = PGMachv; diff --git a/src/locales/zh_CN/arena-flyout.ts b/src/locales/zh_CN/arena-flyout.json similarity index 81% rename from src/locales/zh_CN/arena-flyout.ts rename to src/locales/zh_CN/arena-flyout.json index e30642e7d21..7ddc304f404 100644 --- a/src/locales/zh_CN/arena-flyout.ts +++ b/src/locales/zh_CN/arena-flyout.json @@ -1,13 +1,8 @@ -import { SimpleTranslationEntries } from "#app/interfaces/locales"; - -export const arenaFlyout: SimpleTranslationEntries = { - // Title +{ "activeBattleEffects": "当前战斗效果", "player": "我方", "neutral": "全局", "enemy": "敌方", - - // WeatherType "sunny": "大晴天", "rain": "下雨", "sandstorm": "沙暴", @@ -17,14 +12,10 @@ export const arenaFlyout: SimpleTranslationEntries = { "heavyRain": "大雨", "harshSun": "大日照", "strongWinds": "乱流", - - // TerrainType "misty": "薄雾场地", "electric": "电气场地", "grassy": "青草场地", "psychic": "精神场地", - - // ArenaTagType "mudSport": "玩泥巴", "waterSport": "玩水", "spikes": "撒菱", @@ -45,5 +36,5 @@ export const arenaFlyout: SimpleTranslationEntries = { "matBlock": "掀榻榻米", "craftyShield": "戏法防守", "tailwind": "顺风", - "happyHour": "快乐时光", -}; + "happyHour": "快乐时光" +} \ No newline at end of file diff --git a/src/locales/zh_CN/arena-tag.ts b/src/locales/zh_CN/arena-tag.json similarity index 94% rename from src/locales/zh_CN/arena-tag.ts rename to src/locales/zh_CN/arena-tag.json index 974ef36d7af..5a36b3ae1f7 100644 --- a/src/locales/zh_CN/arena-tag.ts +++ b/src/locales/zh_CN/arena-tag.json @@ -1,6 +1,4 @@ -import { SimpleTranslationEntries } from "#app/interfaces/locales"; - -export const arenaTag: SimpleTranslationEntries = { +{ "yourTeam": "我方队伍", "opposingTeam": "敌方队伍", "arenaOnRemove": "{{moveName}}的效果消失了!", @@ -49,5 +47,5 @@ export const arenaTag: SimpleTranslationEntries = { "tailwindOnRemovePlayer": "我方的顺风停止了!", "tailwindOnRemoveEnemy": "敌方的顺风停止了!", "happyHourOnAdd": "大家被欢乐的\n气氛包围了!", - "happyHourOnRemove": "气氛回复到平常了。", -} as const; + "happyHourOnRemove": "气氛回复到平常了。" +} \ No newline at end of file diff --git a/src/locales/zh_CN/battle-info.json b/src/locales/zh_CN/battle-info.json new file mode 100644 index 00000000000..884a01eb8a7 --- /dev/null +++ b/src/locales/zh_CN/battle-info.json @@ -0,0 +1,3 @@ +{ + "generation": "第{{generation}}世代" +} \ No newline at end of file diff --git a/src/locales/zh_CN/battle-info.ts b/src/locales/zh_CN/battle-info.ts deleted file mode 100644 index 684ce4bc26a..00000000000 --- a/src/locales/zh_CN/battle-info.ts +++ /dev/null @@ -1,5 +0,0 @@ -import { SimpleTranslationEntries } from "#app/interfaces/locales"; - -export const battleInfo: SimpleTranslationEntries = { - "generation": "第{{generation}}世代", -} as const; diff --git a/src/locales/zh_CN/battle-message-ui-handler.json b/src/locales/zh_CN/battle-message-ui-handler.json new file mode 100644 index 00000000000..2aa750a9776 --- /dev/null +++ b/src/locales/zh_CN/battle-message-ui-handler.json @@ -0,0 +1,8 @@ +{ + "ivBest": "最棒", + "ivFantastic": "了不起", + "ivVeryGood": "非常好", + "ivPrettyGood": "相当好", + "ivDecent": "一般般", + "ivNoGood": "也许不行" +} \ No newline at end of file diff --git a/src/locales/zh_CN/battle-message-ui-handler.ts b/src/locales/zh_CN/battle-message-ui-handler.ts deleted file mode 100644 index fb6e74cf66b..00000000000 --- a/src/locales/zh_CN/battle-message-ui-handler.ts +++ /dev/null @@ -1,10 +0,0 @@ -import { SimpleTranslationEntries } from "#app/interfaces/locales"; - -export const battleMessageUiHandler: SimpleTranslationEntries = { - "ivBest": "最棒", - "ivFantastic": "了不起", - "ivVeryGood": "非常好", - "ivPrettyGood": "相当好", - "ivDecent": "一般般", - "ivNoGood": "也许不行", -} as const; diff --git a/src/locales/zh_CN/battle-scene.json b/src/locales/zh_CN/battle-scene.json new file mode 100644 index 00000000000..a0288475d69 --- /dev/null +++ b/src/locales/zh_CN/battle-scene.json @@ -0,0 +1,3 @@ +{ + "moneyOwned": "₽{{formattedMoney}}" +} \ No newline at end of file diff --git a/src/locales/zh_CN/battle.ts b/src/locales/zh_CN/battle.json similarity index 96% rename from src/locales/zh_CN/battle.ts rename to src/locales/zh_CN/battle.json index 5a73fbba09f..84f468a4a4b 100644 --- a/src/locales/zh_CN/battle.ts +++ b/src/locales/zh_CN/battle.json @@ -1,6 +1,4 @@ -import { SimpleTranslationEntries } from "#app/interfaces/locales"; - -export const battle: SimpleTranslationEntries = { +{ "bossAppeared": "{{bossName}} 出现了。", "trainerAppeared": "{{trainerName}}\n想要和你对战!", "trainerAppearedDouble": "{{trainerName}}\n想要和你对战!", @@ -24,6 +22,7 @@ export const battle: SimpleTranslationEntries = { "hitResultSuperEffective": "效果拔群!", "hitResultNotVeryEffective": "收效甚微…", "hitResultNoEffect": "对{{pokemonName}}没有效果!!", + "hitResultImmune": "对于{{pokemonName}},\n完全没有效果!", "hitResultOneHitKO": "一击必杀!", "attackFailed": "但是失败了!", "attackMissed": "没有命中{{pokemonNameWithAffix}}!", @@ -39,7 +38,7 @@ export const battle: SimpleTranslationEntries = { "learnMoveNotLearned": "{{pokemonName}}没有学会{{moveName}}。", "learnMoveForgetQuestion": "要忘记哪个技能?", "learnMoveForgetSuccess": "{{pokemonName}}忘记了\n如何使用{{moveName}}。", - "countdownPoof": "@d{32}1, @d{15}2 @d{15}… @d{15}… @d{15}@s{pb_bounce_1}空!", + "countdownPoof": "@d{32}1, @d{15}2 @d{15}… @d{15}… @d{15}@s{se/pb_bounce_1}空!", "learnMoveAnd": "然后……", "levelCapUp": "等级上限提升到{{levelCap}}!", "moveNotImplemented": "{{moveName}}尚未实装,无法选择。", @@ -87,5 +86,5 @@ export const battle: SimpleTranslationEntries = { "retryBattle": "你要从对战开始时重试么?", "unlockedSomething": "{{unlockedThing}}\n已解锁。", "congratulations": "恭喜!", - "beatModeFirstTime": "{{speciesName}}首次击败了{{gameMode}}!\n你获得了{{newModifier}}!", -} as const; + "beatModeFirstTime": "{{speciesName}}首次击败了{{gameMode}}!\n你获得了{{newModifier}}!" +} \ No newline at end of file diff --git a/src/locales/zh_CN/battler-tags.ts b/src/locales/zh_CN/battler-tags.json similarity index 97% rename from src/locales/zh_CN/battler-tags.ts rename to src/locales/zh_CN/battler-tags.json index 7af764cf117..81838b5023a 100644 --- a/src/locales/zh_CN/battler-tags.ts +++ b/src/locales/zh_CN/battler-tags.json @@ -1,6 +1,4 @@ -import { SimpleTranslationEntries } from "#app/interfaces/locales"; - -export const battlerTags: SimpleTranslationEntries = { +{ "trappedDesc": "束缚", "flinchedDesc": "畏缩", "confusedDesc": "混乱", @@ -69,5 +67,5 @@ export const battlerTags: SimpleTranslationEntries = { "saltCuredLapse": "{{pokemonNameWithAffix}}\n受到了{{moveName}}的伤害!", "cursedOnAdd": "{{pokemonNameWithAffix}}削减了自己的体力,\n并诅咒了{{pokemonName}}!", "cursedLapse": "{{pokemonNameWithAffix}}\n正受到诅咒!", - "stockpilingOnAdd": "{{pokemonNameWithAffix}}蓄力了{{stockpiledCount}}次!", -} as const; + "stockpilingOnAdd": "{{pokemonNameWithAffix}}蓄力了{{stockpiledCount}}次!" +} \ No newline at end of file diff --git a/src/locales/zh_CN/berry.json b/src/locales/zh_CN/berry.json new file mode 100644 index 00000000000..4a739343655 --- /dev/null +++ b/src/locales/zh_CN/berry.json @@ -0,0 +1,46 @@ +{ + "SITRUS": { + "name": "文柚果", + "effect": "HP低于50%时,回复最大HP的25%" + }, + "LUM": { + "name": "木子果", + "effect": "治愈任何异常状态和混乱状态" + }, + "ENIGMA": { + "name": "谜芝果", + "effect": "受到效果绝佳的招式攻击时,回复25%最大HP" + }, + "LIECHI": { + "name": "枝荔果", + "effect": "HP低于25%时,攻击提升一个等级" + }, + "GANLON": { + "name": "龙睛果", + "effect": "HP低于25%时,防御提升一个等级" + }, + "PETAYA": { + "name": "龙火果", + "effect": "HP低于25%时,特攻提升一个等级" + }, + "APICOT": { + "name": "杏仔果", + "effect": "HP低于25%时,特防提升一个等级" + }, + "SALAC": { + "name": "沙鳞果", + "effect": "HP低于25%时,速度提升一个等级" + }, + "LANSAT": { + "name": "兰萨果", + "effect": "HP低于25%时,击中要害率提升两个等级" + }, + "STARF": { + "name": "星桃果", + "effect": "HP低于25%时,提高随机一项能力两个等级" + }, + "LEPPA": { + "name": "苹野果", + "effect": "有招式的PP降到0时,恢复该招式10PP" + } +} \ No newline at end of file diff --git a/src/locales/zh_CN/berry.ts b/src/locales/zh_CN/berry.ts deleted file mode 100644 index c13393f23a3..00000000000 --- a/src/locales/zh_CN/berry.ts +++ /dev/null @@ -1,48 +0,0 @@ -import { BerryTranslationEntries } from "#app/interfaces/locales"; - -export const berry: BerryTranslationEntries = { - "SITRUS": { - name: "文柚果", - effect: "HP低于50%时,回复最大HP的25%", - }, - "LUM": { - name: "木子果", - effect: "治愈任何异常状态和混乱状态", - }, - "ENIGMA": { - name: "谜芝果", - effect: "受到效果绝佳的招式攻击时,回复25%最大HP", - }, - "LIECHI": { - name: "枝荔果", - effect: "HP低于25%时,攻击提升一个等级", - }, - "GANLON": { - name: "龙睛果", - effect: "HP低于25%时,防御提升一个等级", - }, - "PETAYA": { - name: "龙火果", - effect: "HP低于25%时,特攻提升一个等级", - }, - "APICOT": { - name: "杏仔果", - effect: "HP低于25%时,特防提升一个等级", - }, - "SALAC": { - name: "沙鳞果", - effect: "HP低于25%时,速度提升一个等级", - }, - "LANSAT": { - name: "兰萨果", - effect: "HP低于25%时,击中要害率提升两个等级", - }, - "STARF": { - name: "星桃果", - effect: "HP低于25%时,提高随机一项能力两个等级", - }, - "LEPPA": { - name: "苹野果", - effect: "有招式的PP降到0时,恢复该招式10PP", - }, -} as const; diff --git a/src/locales/zh_CN/bgm-name.ts b/src/locales/zh_CN/bgm-name.json similarity index 90% rename from src/locales/zh_CN/bgm-name.ts rename to src/locales/zh_CN/bgm-name.json index 6039a259fd3..d0508a49661 100644 --- a/src/locales/zh_CN/bgm-name.ts +++ b/src/locales/zh_CN/bgm-name.json @@ -1,8 +1,6 @@ -import { SimpleTranslationEntries } from "#app/interfaces/locales"; - -export const bgmName: SimpleTranslationEntries = { +{ "music": "BGM: ", - "missing_entries" : "{{name}}", + "missing_entries": "{{name}}", "battle_kanto_champion": "黑2白2「决战!关都冠军」", "battle_johto_champion": "黑2白2「决战!城都冠军」", "battle_hoenn_champion_g5": "黑2白2「决战!丰缘冠军」", @@ -80,13 +78,21 @@ export const bgmName: SimpleTranslationEntries = { "battle_galactic_grunt": "晶灿钻石·明亮珍珠「战斗!银河队」", "battle_plasma_grunt": "黑白「战斗!等离子团」", "battle_flare_grunt": "XY「战斗!闪焰队」", + "battle_aether_grunt": "日月「战斗!以太基金会」", + "battle_skull_grunt": "日月「战斗!骷髅队」", + "battle_macro_grunt": "剑盾「战斗!马洛科蒙集团」", + "battle_galactic_admin": "晶灿钻石·明亮珍珠「战斗!银河队干部」", + "battle_skull_admin": "日月「战斗!骷髅队干部」", + "battle_oleana": "剑盾「战斗!奥利薇」", "battle_rocket_boss": "究极日月「战斗!坂木」", "battle_aqua_magma_boss": "Ω红宝石α蓝宝石「战斗!水梧桐・赤焰松」", "battle_galactic_boss": "晶灿钻石·明亮珍珠「战斗!赤日」", "battle_plasma_boss": "黑2白2「战斗!魁奇思」", "battle_flare_boss": "XY「战斗!弗拉达利」", + "battle_aether_boss": "日月「战斗!露莎米奈」", + "battle_skull_boss": "日月「战斗!古兹马」", + "battle_macro_boss": "剑盾「战斗!洛兹」", - // Biome Music "abyss": "空之探险队「黑暗小丘」", "badlands": "空之探险队「枯竭之谷」", "beach": "空之探险队「潮湿岩地」", @@ -102,18 +108,18 @@ export const bgmName: SimpleTranslationEntries = { "graveyard": "空之探险队「神秘森林」", "ice_cave": "空之探险队「大冰山」", "island": "空之探险队「沿岸岩地」", - "jungle": "Lmz - 丛林", // The composer thinks about a more creative name - "laboratory": "Firel - 研究所", // The composer thinks about a more creative name + "jungle": "Lmz - 丛林", + "laboratory": "Firel - 研究所", "lake": "空之探险队「水晶洞窟」", "meadow": "空之探险队「天空顶端(森林)」", - "metropolis": "Firel - 城市", // The composer thinks about a more creative name + "metropolis": "Firel - 城市", "mountain": "空之探险队「角山」", "plains": "空之探险队「天空顶端(草原)」", "power_plant": "空之探险队「电气平原 深处」", "ruins": "空之探险队「封印岩地 深处」", - "sea": "Andr06 - Marine Mystique", // Name defined by the composer - "seabed": "Firel - 海底", // The composer thinks about a more creative name - "slum": "Andr06 - Sneaky Snom", // Name defined by the composer + "sea": "Andr06 - Marine Mystique", + "seabed": "Firel - 海底", + "slum": "Andr06 - Sneaky Snom", "snowy_forest": "空之探险队「天空顶端(雪山)」", "space": "Firel - 太空", "swamp": "空之探险队「封闭之海」", @@ -122,8 +128,6 @@ export const bgmName: SimpleTranslationEntries = { "town": "空之探险队「随机迷宫3」", "volcano": "空之探险队「热水洞窟」", "wasteland": "空之探险队「梦幻高原」", - - // Encounter "encounter_ace_trainer": "黑白 「视线!精英训练师」", "encounter_backpacker": "黑白 「视线!背包客」", "encounter_clerk": "黑白 「视线!上班族」", @@ -138,9 +142,7 @@ export const bgmName: SimpleTranslationEntries = { "encounter_scientist": "黑白 「视线!科学家」", "encounter_twins": "黑白 「视线!双胞胎」", "encounter_youngster": "黑白 「视线!短裤小子」", - - // Other "heal": "黑白「宝可梦回复」", "menu": "空之探险队「欢迎来到宝可梦的世界」", - "title": "空之探险队「主题曲」", -} as const; + "title": "空之探险队「主题曲」" +} diff --git a/src/locales/zh_CN/biome.ts b/src/locales/zh_CN/biome.json similarity index 85% rename from src/locales/zh_CN/biome.ts rename to src/locales/zh_CN/biome.json index 9026dc7fbee..114b0638e0b 100644 --- a/src/locales/zh_CN/biome.ts +++ b/src/locales/zh_CN/biome.json @@ -1,6 +1,4 @@ -import { SimpleTranslationEntries } from "#app/interfaces/locales"; - -export const biome: SimpleTranslationEntries = { +{ "unknownLocation": "未知领域", "TOWN": "城镇", "PLAINS": "平原", @@ -36,5 +34,5 @@ export const biome: SimpleTranslationEntries = { "SNOWY_FOREST": "冰雪森林", "ISLAND": "岛屿", "LABORATORY": "研究所", - "END": "???", -} as const; + "END": "???" +} \ No newline at end of file diff --git a/src/locales/zh_CN/challenges.ts b/src/locales/zh_CN/challenges.json similarity index 72% rename from src/locales/zh_CN/challenges.ts rename to src/locales/zh_CN/challenges.json index de14d2f6486..9351ec96285 100644 --- a/src/locales/zh_CN/challenges.ts +++ b/src/locales/zh_CN/challenges.json @@ -1,6 +1,4 @@ -import { TranslationEntries } from "#app/interfaces/locales"; - -export const challenges: TranslationEntries = { +{ "title": "适用挑战条件", "illegalEvolution": "{{pokemon}}变成了\n不符合此挑战条件的宝可梦!", "singleGeneration": { @@ -15,7 +13,7 @@ export const challenges: TranslationEntries = { "gen_6": "六", "gen_7": "七", "gen_8": "八", - "gen_9": "九", + "gen_9": "九" }, "singleType": { "name": "单属性", @@ -26,6 +24,13 @@ export const challenges: TranslationEntries = { "name": "初次尝试", "desc": "你只能使用御三家,就像是你第一次玩宝可梦肉鸽一样。", "value.0": "关闭", - "value.1": "开启", + "value.1": "开启" }, -} as const; + "inverseBattle": { + "name": "逆转之战", + "shortName": "逆转之战", + "desc": "属性相克关系被反转,且没有任何属性对其他属性免疫。\n禁用其他挑战的成就。", + "value.0": "关闭", + "value.1": "开启" + } +} \ No newline at end of file diff --git a/src/locales/zh_CN/command-ui-handler.json b/src/locales/zh_CN/command-ui-handler.json new file mode 100644 index 00000000000..b65ba643e05 --- /dev/null +++ b/src/locales/zh_CN/command-ui-handler.json @@ -0,0 +1,7 @@ +{ + "fight": "战斗", + "ball": "精灵球", + "pokemon": "宝可梦", + "run": "逃跑", + "actionMessage": "要让\n{{pokemonName}} 做什么?" +} \ No newline at end of file diff --git a/src/locales/zh_CN/command-ui-handler.ts b/src/locales/zh_CN/command-ui-handler.ts deleted file mode 100644 index 57397a930df..00000000000 --- a/src/locales/zh_CN/command-ui-handler.ts +++ /dev/null @@ -1,9 +0,0 @@ -import { SimpleTranslationEntries } from "#app/interfaces/locales"; - -export const commandUiHandler: SimpleTranslationEntries = { - "fight": "战斗", - "ball": "精灵球", - "pokemon": "宝可梦", - "run": "逃跑", - "actionMessage": "要让\n{{pokemonName}} 做什么?", -} as const; diff --git a/src/locales/zh_CN/common.json b/src/locales/zh_CN/common.json new file mode 100644 index 00000000000..bf639f0875c --- /dev/null +++ b/src/locales/zh_CN/common.json @@ -0,0 +1,8 @@ +{ + "start": "开始", + "luckIndicator": "幸运:", + "shinyOnHover": "闪光", + "commonShiny": "常见", + "rareShiny": "稀有", + "epicShiny": "史诗" +} \ No newline at end of file diff --git a/src/locales/zh_CN/common.ts b/src/locales/zh_CN/common.ts deleted file mode 100644 index 7c2c73eb3c0..00000000000 --- a/src/locales/zh_CN/common.ts +++ /dev/null @@ -1,10 +0,0 @@ -import { SimpleTranslationEntries } from "#app/interfaces/locales"; - -export const common: SimpleTranslationEntries = { - "start": "开始", - "luckIndicator": "幸运:", - "shinyOnHover": "闪光", - "commonShiny": "常见", - "rareShiny": "稀有", - "epicShiny": "史诗", -} as const; diff --git a/src/locales/zh_CN/config.ts b/src/locales/zh_CN/config.ts index 24c8b870ffa..44a190d8c11 100644 --- a/src/locales/zh_CN/config.ts +++ b/src/locales/zh_CN/config.ts @@ -1,116 +1,113 @@ -import { ability } from "./ability"; -import { abilityTriggers } from "./ability-trigger"; -import { arenaFlyout } from "./arena-flyout"; -import { arenaTag } from "./arena-tag"; -import { PGFachv, PGMachv } from "./achv"; -import { battle } from "./battle"; -import { battleInfo } from "./battle-info"; -import { battleMessageUiHandler } from "./battle-message-ui-handler"; -import { battlerTags } from "./battler-tags"; -import { berry } from "./berry"; -import { bgmName } from "./bgm-name"; -import { biome } from "./biome"; -import { challenges } from "./challenges"; -import { commandUiHandler } from "./command-ui-handler"; -import { - PGFbattleSpecDialogue, - PGFdialogue, - PGFdoubleBattleDialogue, - PGFmiscDialogue, - PGMbattleSpecDialogue, - PGMdialogue, - PGMdoubleBattleDialogue, - PGMmiscDialogue -} from "./dialogue"; -import { egg } from "./egg"; -import { fightUiHandler } from "./fight-ui-handler"; -import { filterBar } from "./filter-bar"; -import { gameMode } from "./game-mode"; -import { gameStatsUiHandler } from "./game-stats-ui-handler"; -import { growth } from "./growth"; -import { menu } from "./menu"; -import { menuUiHandler } from "./menu-ui-handler"; -import { modifier } from "./modifier"; -import { modifierType } from "./modifier-type"; -import { move } from "./move"; -import { nature } from "./nature"; -import { pokeball } from "./pokeball"; -import { pokemon } from "./pokemon"; -import { pokemonForm, battlePokemonForm } from "./pokemon-form"; -import { pokemonInfo } from "./pokemon-info"; -import { pokemonInfoContainer } from "./pokemon-info-container"; -import { pokemonSummary } from "./pokemon-summary"; -import { saveSlotSelectUiHandler } from "./save-slot-select-ui-handler"; -import { splashMessages } from "./splash-messages"; -import { starterSelectUiHandler } from "./starter-select-ui-handler"; -import { statusEffect } from "./status-effect"; -import { titles, trainerClasses, trainerNames } from "./trainers"; -import { tutorial } from "./tutorial"; -import { voucher } from "./voucher"; -import { terrain, weather } from "./weather"; -import { partyUiHandler } from "./party-ui-handler"; -import { settings } from "./settings.js"; -import { common } from "./common.js"; -import { modifierSelectUiHandler } from "./modifier-select-ui-handler"; -import { moveTriggers } from "./move-trigger"; +import common from "./common.json"; +import settings from "./settings.json"; +import ability from "./ability.json"; +import abilityTriggers from "./ability-trigger.json"; +import arenaFlyout from "./arena-flyout.json"; +import arenaTag from "./arena-tag.json"; +import achv from "./achv.json"; +import battle from "./battle.json"; +import battleScene from "./battle-scene.json"; +import battleInfo from "./battle-info.json"; +import battleMessageUiHandler from "./battle-message-ui-handler.json"; +import battlerTags from "./battler-tags.json"; +import berry from "./berry.json"; +import bgmName from "./bgm-name.json"; +import biome from "./biome.json"; +import challenges from "./challenges.json"; +import commandUiHandler from "./command-ui-handler.json"; +import dialogue from "./dialogue.json"; +import battleSpecDialogue from "./dialogue-final-boss.json"; +import miscDialogue from "./dialogue-misc.json"; +import doubleBattleDialogue from "./dialogue-double-battle.json"; +import egg from "./egg.json"; +import fightUiHandler from "./fight-ui-handler.json"; +import filterBar from "./filter-bar.json"; +import gameMode from "./game-mode.json"; +import gameStatsUiHandler from "./game-stats-ui-handler.json"; +import growth from "./growth.json"; +import menu from "./menu.json"; +import menuUiHandler from "./menu-ui-handler.json"; +import modifier from "./modifier.json"; +import modifierType from "./modifier-type.json"; +import move from "./move.json"; +import nature from "./nature.json"; +import partyUiHandler from "./party-ui-handler.json"; +import pokeball from "./pokeball.json"; +import pokemon from "./pokemon.json"; +import pokemonForm from "./pokemon-form.json"; +import battlePokemonForm from "./pokemon-form-battle.json"; +import pokemonInfo from "./pokemon-info.json"; +import pokemonInfoContainer from "./pokemon-info-container.json"; +import pokemonSummary from "./pokemon-summary.json"; +import saveSlotSelectUiHandler from "./save-slot-select-ui-handler.json"; +import splashMessages from "./splash-messages.json"; +import starterSelectUiHandler from "./starter-select-ui-handler.json"; +import statusEffect from "./status-effect.json"; +import trainerTitles from "./trainer-titles.json"; +import trainerClasses from "./trainer-classes.json"; +import trainerNames from "./trainer-names.json"; +import tutorial from "./tutorial.json"; +import voucher from "./voucher.json"; +import weather from "./weather.json"; +import terrain from "./terrain.json"; +import modifierSelectUiHandler from "./modifier-select-ui-handler.json"; +import moveTriggers from "./move-trigger.json"; +import runHistory from "./run-history.json"; export const zhCnConfig = { - ability: ability, - abilityTriggers: abilityTriggers, - arenaFlyout: arenaFlyout, - arenaTag: arenaTag, - battle: battle, - battleInfo: battleInfo, - battleMessageUiHandler: battleMessageUiHandler, - battlePokemonForm: battlePokemonForm, - battlerTags: battlerTags, - berry: berry, - bgmName: bgmName, - biome: biome, - challenges: challenges, - commandUiHandler: commandUiHandler, - common: common, - PGMachv: PGMachv, - PGFachv: PGFachv, - PGMdialogue: PGMdialogue, - PGFdialogue: PGFdialogue, - PGMbattleSpecDialogue: PGMbattleSpecDialogue, - PGFbattleSpecDialogue: PGFbattleSpecDialogue, - PGMmiscDialogue: PGMmiscDialogue, - PGFmiscDialogue: PGFmiscDialogue, - PGMdoubleBattleDialogue: PGMdoubleBattleDialogue, - PGFdoubleBattleDialogue: PGFdoubleBattleDialogue, - egg: egg, - fightUiHandler: fightUiHandler, - filterBar: filterBar, - gameMode: gameMode, - gameStatsUiHandler: gameStatsUiHandler, - growth: growth, - menu: menu, - menuUiHandler: menuUiHandler, - modifier: modifier, - modifierType: modifierType, - move: move, - nature: nature, - pokeball: pokeball, - pokemon: pokemon, - pokemonForm: pokemonForm, - pokemonInfo: pokemonInfo, - pokemonInfoContainer: pokemonInfoContainer, - pokemonSummary: pokemonSummary, - saveSlotSelectUiHandler: saveSlotSelectUiHandler, - settings: settings, - splashMessages: splashMessages, - starterSelectUiHandler: starterSelectUiHandler, - statusEffect: statusEffect, - terrain: terrain, - titles: titles, - trainerClasses: trainerClasses, - trainerNames: trainerNames, - tutorial: tutorial, - voucher: voucher, - weather: weather, - partyUiHandler: partyUiHandler, - modifierSelectUiHandler: modifierSelectUiHandler, - moveTriggers: moveTriggers + ability, + abilityTriggers, + arenaFlyout, + arenaTag, + battle, + battleScene, + battleInfo, + battleMessageUiHandler, + battlePokemonForm, + battlerTags, + berry, + bgmName, + biome, + challenges, + commandUiHandler, + common, + achv, + dialogue, + battleSpecDialogue, + miscDialogue, + doubleBattleDialogue, + egg, + fightUiHandler, + filterBar, + gameMode, + gameStatsUiHandler, + growth, + menu, + menuUiHandler, + modifier, + modifierType, + move, + nature, + pokeball, + pokemon, + pokemonForm, + pokemonInfo, + pokemonInfoContainer, + pokemonSummary, + saveSlotSelectUiHandler, + settings, + splashMessages, + starterSelectUiHandler, + statusEffect, + terrain, + titles: trainerTitles, + trainerClasses, + trainerNames, + tutorial, + voucher, + weather, + partyUiHandler, + modifierSelectUiHandler, + moveTriggers, + runHistory, }; diff --git a/src/locales/zh_CN/dialogue-double-battle.json b/src/locales/zh_CN/dialogue-double-battle.json new file mode 100644 index 00000000000..5ab6bf49890 --- /dev/null +++ b/src/locales/zh_CN/dialogue-double-battle.json @@ -0,0 +1,82 @@ +{ + "blue_red_double": { + "encounter": { + "1": "青绿:嘿,赤红,\n让这家伙看看我们是什么来头!$赤红: ...$青绿: 见识下真新镇的实力!" + }, + "victory": { + "1": "青绿:打得真不错$赤红: ..." + } + }, + "red_blue_double": { + "encounter": { + "1": "赤红: ...!$青绿: 他人狠话不多。$青绿: 但别被他耍了,\n毕竟他可是个冠军!" + }, + "victory": { + "1": "赤红: ...!$青绿: 下次我们一定会赢你!" + } + }, + "tate_liza_double": { + "encounter": { + "1": "小枫:嘿嘿嘿……你惊讶吗?$小南: 这里有两个道馆馆主?$小枫: 我们是双胞胎!$小南: 我们无需交谈,因为……$我们可以通晓彼此的想法$小枫: 我们的组合……$小南: 你能打败吗?" + }, + "victory": { + "1": "小枫:什么?我们的组合……$小南:被瓦解了!" + } + }, + "liza_tate_double": { + "encounter": { + "1": "小南:呵呵呵……你惊讶吧?$小枫:这里有两个道馆馆主?$小南:我们可以通晓……$小枫:彼此的想法……$小南:全在我们脑中!$小枫:我们的组合……$小南:你能打败吗?" + }, + "victory": { + "1": "小枫:你和你的宝可梦……$小南:简直像亲兄弟姐妹!" + } + }, + "wallace_steven_double": { + "encounter": { + "1": "大吾:米可利, 展现冠军的实力吧!$米可利:我们将展示丰缘的实力!$大吾:要上了!" + }, + "victory": { + "1": "大吾:打得真不错!$米可利:我们下次会赢的!" + } + }, + "steven_wallace_double": { + "encounter": { + "1": "大吾:你有什么稀有的宝可梦吗?$米可利:大吾……我们是来对战的,\n不是来炫耀宝可梦的。$大吾:哦……知道了… 那么要上了!" + }, + "victory": { + "1": "大吾:战斗结束了,\n来看看我的稀有宝可梦!$米可利:大吾……" + } + }, + "alder_iris_double": { + "encounter": { + "1": "阿戴克:我们俩是合众最强的训练家!$艾莉丝:与最强来一场最激烈的战斗吧!" + }, + "victory": { + "1": "阿戴克:哇哦!你真是超级厉害!$艾莉丝:我们下次会赢的啦!" + } + }, + "iris_alder_double": { + "encounter": { + "1": "艾莉丝:欢迎!挑战者,\n合众地区最强的冠军大驾光临!$阿戴克:艾莉丝,你是不是有点太兴奋了…" + }, + "victory": { + "1": "艾莉丝:这样的失败可不好受啊…$阿戴克:但是只有失败才能让我们变强!" + } + }, + "piers_marnie_double": { + "encounter": { + "1": "玛俐:哥哥,给他们展现尖钉镇的实力!$聂梓:我们带来黑暗!" + }, + "victory": { + "1": "玛俐:你的强光亮瞎我们的黑暗了啦……$聂梓:实在太亮了…" + } + }, + "marnie_piers_double": { + "encounter": { + "1": "聂梓: 台下准备好了吗!$玛俐: 哥哥,我们是来对战的,\n不是来唱歌的……" + }, + "victory": { + "1": "聂梓:这首歌献给大家!$玛俐:哥哥……" + } + } +} \ No newline at end of file diff --git a/src/locales/zh_CN/dialogue-final-boss.json b/src/locales/zh_CN/dialogue-final-boss.json new file mode 100644 index 00000000000..edbc302dcd4 --- /dev/null +++ b/src/locales/zh_CN/dialogue-final-boss.json @@ -0,0 +1,5 @@ +{ + "encounter": "看来终于又到了那个时候。\n你知道自己为何会来到这里,不是吗?\n$你被吸引到这里,因为你以前就来过这里。\n无数次。\n$尽管,或许可以数一数。\n准确地说,这实际上是你的第{{cycleCount}}次循环。\n$每一次循环,你的思想都会恢复到之前的状态。\n即便如此,不知何故,你之前自我的残留仍然存在。\n$直到现在,你仍未成功,\n但我感觉这次你身上有一种异样的气息。\n$你是这里唯一的人,尽管感觉上还有……另一个人。\n$你最终会成为对我来的一个硬茬吗?\n我渴望了数千年的挑战?\n$我们,开始。", + "firstStageWin": "我明白了。我所感觉到的气息确实是真实的。\n看来我不再需要保留实力了。\n$别让我失望。", + "secondStageWin": "…漂亮。" +} \ No newline at end of file diff --git a/src/locales/zh_CN/dialogue-misc.json b/src/locales/zh_CN/dialogue-misc.json new file mode 100644 index 00000000000..e9ac66b7955 --- /dev/null +++ b/src/locales/zh_CN/dialogue-misc.json @@ -0,0 +1,4 @@ +{ + "ending": "@c{smile}哦?你赢了?@d{96} @c{smile_eclosed}我应该早猜到了\n你回来了。\n$@c{smile}结束了。@d{64} 你终结了这个循环。\n$@c{serious_smile_fists}你也完成了自己的梦想,不是吗?\n你甚至一次都没失败。\n$@c{neutral}我是唯一能够记得你所作所为的人@d{96}\n我觉得这应该也还行吧?\n$@c{serious_smile_fists}你的传奇将永远留存于我们心中。\n$@c{smile_eclosed}不管了,我真是受够这个地方了,你也一样吗?我们回家吧。\n$@c{serious_smile_fists}可能等我们回家以后,再打一场?\n要是你想的话", + "ending_female": "@c{shock}你回来了?@d{32} 也就是说…@d{96} 你赢了呀!?\n@c{smile_ehalf}我应该早料到了。\n$@c{smile_eclosed}当然…我一直有这种感觉\n@c{smile}一切都结束了,对么? 你打破了循环。\n$@c{smile_ehalf}你也完成了自己的梦想,不是吗?\n你甚至一次都没失败。\n$我是唯一能够记得你所作所为的人\n@c{angry_mopen}我会努力不忘掉哒!\n$@c{smile_wave_wink}开玩笑啦,@d{64} @c{smile}我才不会忘呢。@d{32}\n你的传奇将永远留存于我们心中。\n$@c{smile_wave}不管了,@d{64} 时候不早了@d{96} ,应该吧?\n在这地方还真搞不清楚。\n$一起回家吧。 @c{smile_wave_wink}可能明天,我们再来打一场,为了重温回忆嘛~" +} \ No newline at end of file diff --git a/src/locales/zh_CN/dialogue.json b/src/locales/zh_CN/dialogue.json new file mode 100644 index 00000000000..5a4615fac54 --- /dev/null +++ b/src/locales/zh_CN/dialogue.json @@ -0,0 +1,2691 @@ +{ + "youngster": { + "encounter": { + "1": "嘿,想来对战吗?", + "2": "你也是新人训练师吗?", + "3": "嘿,我之前没见过你。我们来对战吧!", + "4": "我刚输了,所以我正在寻找更多的宝可梦。$等等!你看起来很弱!\n来吧,我们对战吧!", + "5": "我们见过面吗?我记不太清了。$嗯,不管怎样,很高兴见到你!", + "6": "好的!我们上吧!", + "7": "好的!我来啦!我会向你展示我的实力!", + "8": "嚯嚯嚯...我会向你展示我的宝可梦有多厉害!", + "9": "不要浪费时间打招呼。你准备好了就放马过来!", + "10": "别掉以轻心,$否则你可能会被小朋友打到哭鼻子哦。", + "11": "我精心培养了我的宝可梦。不许你伤害它们!", + "12": "恭喜你成功了!从这以后可不轻松哦。", + "13": "战斗永无止境!欢迎来到没有尽头的世界!" + }, + "victory": { + "1": "哇!你很强!", + "2": "我根本没机会赢,对吧?", + "3": "我会等长大了再来打败你!", + "4": "呃。我没有更多宝可梦了。", + "5": "不可能…不可能!我怎么可能又输了…", + "6": "不!我输了!", + "7": "哇!你真是太不可思议了!我既惊讶又钦佩!", + "8": "这怎么…怎么可能…$明明我和我的宝可梦是最强大的…", + "9": "下次我不会输了!我们找时间再对战吧!", + "10": "天哪!你看不出我还只是个小孩子吗!$你那样全力以赴太赖了!", + "11": "你的宝可梦更棒啊!和我交换吧!", + "12": "我之前有点上头,我说了什么来着?", + "13": "啊哈哈!就是这样!$对!你已经熟悉这个世界了!" + } + }, + "lass": { + "encounter": { + "1": "我们来对战吧,好吗?", + "2": "你看起来像是个新人训练师。我们来战斗吧!", + "3": "我不认识你。来对战怎么样?", + "4": "让我们来进行一场有趣的宝可梦对战吧!", + "5": "我会向你展示如何真正使用宝可梦!", + "6": "一场认真的对战从始于认真的开场白!$你确定你准备好了吗?", + "7": "花无重开日,人无再少年。$你在对战中只有一次机会。$很快,你就只能活在回忆中了。", + "8": "你最好对我手下留情,好吗?$当然我会认真对战的!", + "9": "学校很无聊,我无事可做。$*哈欠*…我只是来对战打发时间。" + }, + "victory": { + "1": "那真是令人印象深刻!我还有很多要学习。", + "2": "我没想到你会这么轻易地打败我…", + "3": "我希望有一天,我们能再进行一场对战。", + "4": "那真是场非常有趣的对战!$你让我精疲力尽了…", + "5": "你给我上了一课!你真是太棒了!", + "6": "说真的,我输了。$这,怎么说,真的好难过,但你也真的很厉害。", + "7": "我不需要像这样的记忆。删除记忆中…", + "8": "嘿!我告诉过你要对我手下留情!$不过,当你认真的时候,你真的很酷。", + "9": "实际上,我开始厌倦对战了…$一定有新的事情可以做…" + } + }, + "breeder": { + "encounter": { + "1": "听话的宝可梦,自私的宝可梦…$宝可梦有独特的性格呢。", + "2": "尽管我出生贫寒,但我的宝可梦培养的很好。", + "3": "嗯,你有没有管教你的宝可梦?$过度溺爱是不好的。" + }, + "victory": { + "1": "对每个宝可梦因材施教是很重要的。", + "2": "不像一无是处的我…这些宝可梦都很优秀。", + "3": "过度的赞美会宠坏宝可梦和人。" + }, + "defeat": { + "1": "即使输了,也不应该对你的宝可梦发火。", + "2": "相当好的宝可梦,对吧?我很会养东西。", + "3": "无论你多么爱你的宝可梦,$你仍要在它没做好时管教它们。" + } + }, + "breeder_female": { + "encounter": { + "1": "宝可梦永远不会背叛你。$它们会回报你对它们的爱。", + "2": "要我教教你训练优秀宝可梦的技巧吗?", + "3": "特别的宝可梦有特别的培育技巧。" + }, + "victory": { + "1": "呃…事情不应该是这样的。$我是不是用错了能量方块?", + "2": "这怎么会发生在我的宝可梦身上…$你给你的宝可梦喂了什么?", + "3": "如果我输了,我告诉你我只是在消磨时间。$你根本不会伤害到我的自尊心。" + }, + "defeat": { + "1": "这证明了我的宝可梦已经接受了我的爱。", + "2": "训出好宝可梦的真正技巧是捉到好的宝可梦。", + "3": "宝可梦的强弱取决于你的饲养方式。" + } + }, + "fisherman": { + "encounter": { + "1": "啊!你让我错过了一次咬钩!$你打算怎么办?", + "2": "走开!你吓跑了宝可梦!", + "3": "让我看看你能否赢得胜利!" + }, + "victory": { + "1": "算了吧。", + "2": "下一次,我将卷土重来,凯旋而归!", + "3": "我想这次我低估了海流。" + } + }, + "fisherman_female": { + "encounter": { + "1": "哇!我钓到了一条大鱼!", + "2": "线已收好,准备提竿!", + "3": "准备制造波浪!" + }, + "victory": { + "1": "我会带着更强大的鱼钩回来。", + "2": "下次我会赢得胜利。", + "3": "我只是在为回归磨利我的鱼钩!" + } + }, + "swimmer": { + "encounter": { + "1": "是时候潜水了!", + "2": "让我们一起乘风破浪,赢得胜利!", + "3": "该一鸣惊人了!" + }, + "victory": { + "1": "沉浸在失败中!", + "2": "失败的波浪!", + "3": "后浪死在沙滩上,我猜。" + } + }, + "backpacker": { + "encounter": { + "1": "收拾行李,开始游戏!", + "2": "让我看看你是否能跟上!", + "3": "全副武装,挑战者!", + "4": "我花了20年时间试图找到自己……但我在哪里?" + }, + "victory": { + "1": "这次绊倒了!", + "2": "哦,我觉得我迷路了。", + "3": "死路!", + "4": "等一下!嘿!你不知道我是谁吗?" + } + }, + "ace_trainer": { + "encounter": { + "1": "你看起来挺自信的。", + "2": "你的宝可梦…… 让我看看……", + "3": "因为我是王牌训练师,人们认为我很强。", + "4": "你知道成为王牌训练师需要什么吗?" + }, + "victory": { + "1": "是的…… 你的宝可梦很棒……", + "2": "什么?!我是战斗天才啊!", + "3": "理所应当,你才是主角!", + "4": "好好好!你可以成为王牌训练师!" + }, + "defeat": { + "1": "我将把我的身体和灵魂全都奉献给宝可梦对战!", + "2": "一切都在我的预料之中… \n没有什么好惊讶的…", + "3": "我觉得我长大后有点玻璃心,$你太压力我我会跨的……", + "4": "我当然很强大,不会输。$而且重要的是我要优雅地赢。" + } + }, + "parasol_lady": { + "encounter": { + "1": "是时候用优雅和从容来为战斗添彩了!" + }, + "victory": { + "1": "我的优雅依然完好无损!" + } + }, + "twins": { + "encounter": { + "1": "准备好咯,因为我们联手,\n麻烦双倍!", + "2": "两颗心,一条绳$让我们看看你能否跟上我们双胞胎的力量!", + "3": "希望你准备好了面对双倍的麻烦,$因为我们即将燃起来啦!" + }, + "victory": { + "1": "虽然我们在这一轮输了,$但我们的羁绊依然坚不可摧!", + "2": "我们的双胞胎精神,才不会就此熄灭。", + "3": "我们会作为充满活力的二人组,$卷土重来,变得更强!" + }, + "defeat": { + "1": "双胞胎的力量至高无上!", + "2": "两颗心,一起赢!", + "3": "笑容成双,共舞成双!" + } + }, + "cyclist": { + "encounter": { + "1": "准备好在我后面吃土吧!", + "2": "挑战者,准备好!我要把你打的落花流水!", + "3": "全速前进,让我看看你能不能跟的上!" + }, + "victory": { + "1": "轮子可能不转了,但我的决心没有停下。", + "2": "被超越了!", + "3": "通往胜利的道路还有许多曲折等待探索。" + } + }, + "black_belt": { + "encounter": { + "1": "我赞扬你挑战我的勇气!$因为我是踢力最强的人!", + "2": "哦,我明白了。你想被切成碎片吗?$或者你更喜欢当个沙袋?" + }, + "victory": { + "1": "哦。是宝可梦在战斗。$我强大的踢击一点忙都没帮上。", + "2": "嗯…如果我无论如何都会输,我希望能被彻底打败。" + } + }, + "battle_girl": { + "encounter": { + "1": "你不必试图勾引我。你可以输给我。" + }, + "victory": { + "1": "很难说再见,但我们快没时间了……" + } + }, + "hiker": { + "encounter": { + "1": "人到中年后,我的身体和我爬过的山一样强壮!", + "2": "我从父母那里遗传了这副魁梧的身材…$就像一座活生生的山脉…" + }, + "victory": { + "1": "至少在BMI方面我不能输!", + "2": "这还不够……永远不够。$我的坏胆固醇还不够高……" + } + }, + "ranger": { + "encounter": { + "1": "当我身处大自然中,其他事情都不重要了。", + "2": "如果我生活中没有大自然,有时就会突然感到焦虑。" + }, + "victory": { + "1": "无论我是赢是输,\n对广阔的大自然来说并不重要……", + "2": "与城市生活的窒息感相比,\n这种事情微不足道。" + }, + "defeat": { + "1": "我赢了。但与浩瀚的大自然相比,\n胜利算不了什么…", + "2": "与我的焦虑症相比,我觉得你也不会怎样…" + } + }, + "scientist": { + "encounter": { + "1": "我的研究将引导这个世界走向和平与欢乐。" + }, + "victory": { + "1": "我是个天才…我不应该输给你这样的人…" + } + }, + "school_kid": { + "encounter": { + "1": "……嘿嘿。我对计算和分析很有信心。", + "2": "我正在尽可能地积累经验,$因为我希望有一天能成为道馆馆主。" + }, + "victory": { + "1": "哦…计算和分析也许和个例不太匹配呀…", + "2": "我想,即使是艰难困苦的经历,也有存在的意义。" + } + }, + "artist": { + "encounter": { + "1": "我以前很受欢迎,但现在已经彻底过气了。" + }, + "victory": { + "1": "随着时代的变迁,价值观也在变化。$我意识到这一点已经太晚了。" + } + }, + "guitarist": { + "encounter": { + "1": "当我弹奏着走向胜利的旋律时,$准备好感受失败的节奏吧!" + }, + "victory": { + "1": "暂时沉默了,但我不屈的旋律将继续演奏。" + } + }, + "worker": { + "encounter": { + "1": "人们总误解我,这让我很烦。$我比大家想象的要干净得多。" + }, + "victory": { + "1": "我真的不想晒伤皮肤,所以我想在阴凉处工作。" + } + }, + "worker_female": { + "encounter": { + "1": "人们总是误解我,这让我很烦。 $我比大家想象的要干净得多。" + }, + "victory": { + "1": "我真的不想晒伤皮肤,\n所以我想在阴凉处工作。" + }, + "defeat": { + "1": "我的身体和心灵并不总同步。" + } + }, + "worker_double": { + "encounter": { + "1": "你会知道我们怎么击败你的。我们在工地训练过!" + }, + "victory": { + "1": "真奇怪…怎么会这样…我不应该被打败的。" + } + }, + "hex_maniac": { + "encounter": { + "1": "我通常只听古典音乐,但如果我输了,$我想我应该试试新时代的音乐!", + "2": "我的每一滴眼泪都让我变得更加坚强。" + }, + "victory": { + "1": "乐坛新时代的曙光就此出现了吗?", + "2": "现在我变得更强了。我随着他人怨恨而成长。" + }, + "defeat": { + "1": "“新时代”指的是二十世纪的古典作曲家,对吧?", + "2": "不要纠结于悲伤或沮丧。$你可以用悲愤来激励自己。" + } + }, + "psychic": { + "encounter": { + "1": "嘿!集中!" + }, + "victory": { + "1": "呃呃呃!" + } + }, + "officer": { + "encounter": { + "1": "准备好,因为正义即将得到伸张!", + "2": "准备好维护法律,在战场上伸张正义!" + }, + "victory": { + "1": "正义的分量比以往还要沉重……", + "2": "失败的阴影,在警局中徘徊。" + } + }, + "beauty": { + "encounter": { + "1": "我最后的战斗…我就是这么看待这场对战的…" + }, + "victory": { + "1": "很有趣…有时间再来一场最后的战斗…" + } + }, + "baker": { + "encounter": { + "1": "希望你准备好品尝失败的滋味!" + }, + "victory": { + "1": "我会卷土重来的。" + } + }, + "biker": { + "encounter": { + "1": "是时候加速,把你甩在后面了!" + }, + "victory": { + "1": "我会为下一场比赛调整状态。" + } + }, + "firebreather": { + "encounter": { + "1": "我的火焰会吞噬你!", + "2": "我的灵魂在燃烧,我要让你看看它有多滚烫!", + "3": "快来看看吧!" + }, + "victory": { + "1": "我燃成灰了…", + "2": "哟! 好烫!", + "3": "嗷! 我的鼻尖烧焦了!" + } + }, + "sailor": { + "encounter": { + "1": "伙计,如果你输了,你就得挨板子!", + "2": "来吧!这关系到我作为水手的尊严!", + "3": "你好啊!你晕船么?" + }, + "victory": { + "1": "啊,被孩子打败了。", + "2": "你的精神让我沉沦!", + "3": "好像是我晕船了…" + } + }, + "archer": { + "encounter": { + "1": "在你继续前进之前,\n让我看看你要如何和对付火箭队。", + "2": "我收到报告说你的实力与众不同,\n就让我来看看这是否属实吧。", + "3": "我是阿波罗,火箭对的干部。\n我不会对组织的敌人手软。" + }, + "victory": { + "1": "大失误……", + "2": "以我现在的实力,无法胜任我的任务……", + "3": "原……谅我,坂木。\n我竟被一名训练师打败了。." + } + }, + "ariana": { + "encounter": { + "1": "站住!我们可不能放过你!\n$这会损伤火箭对的名誉,明白吗?", + "2": "我不知道也不想知道我的所作所为正确与否…\n$我只要遵从坂木老大的指令就可以了!", + "3": "你的旅途到此为止了,我会把你狠狠扳倒!" + }, + "victory": { + "1": "切,你好强,可恶。\n$如果你加入火箭队,肯定能成为干部。", + "2": "好……好崩溃……", + "3": "嗯啊啊!这不可能!我使出全力还是输了!" + } + }, + "proton": { + "encounter": { + "1": "你想干什么?如果你要妨碍我们的事业,我可不会手下留情。", + "2": "你在这干什么?别人总说我是火箭队里最残忍和恐怖的人…\n$我强烈推荐你别来碍我们的事!", + "3": "我是兰斯,火箭队的干部。就让来扫除你对我们的阻挠。" + }, + "victory": { + "1": "我的防线崩溃了……", + "2": "你虽然这次赢了,但是这只是让火箭队的怒火继续燃烧!", + "3": "我输了…但是我不会忘记的。" + } + }, + "petrel": { + "encounter": { + "1": "哇哈哈哈,我们一直在等你。我?你不知道我是谁?是我,坂木啊。\n$伟大的坂木大人本人!哇哈哈哈!…啊?我听起来不像坂木吗?\n$我连看起来都不像?怎么会呢,我可认真的变装了!", + "2": "我是拉姆达,火箭队的干部。我不会允许你干涉我们的计划!", + "3": "火箭队干部拉姆达来会会这个入侵者!" + }, + "victory": { + "1": "好好好,我会说他在哪的", + "2": "我……我什么也做不了……坂木,请原谅我……", + "3": "不,我不能慌了神,必须通知其他人…" + } + }, + "tabitha": { + "encounter": { + "1": "呵呵呵!原来你都一路来到这里了!但你来晚了!", + "2": "呵呵呵……你终于来了?我们小瞧你了,没不过事! \n$我比你见过的所有队员都要厉害,我可不会拖延时间。\n$我会把你碾碎!", + "3": "我要让你尝尝痛苦的滋味!认命吧!" + }, + "victory": { + "1": "呵呵呵!虽然你打败了我,但你根本没机会打败老大!\n$如果你现在输了,你就不用面对那样严厉的鞭笞了!", + "2": "呵呵呵……所以,我也输了……", + "3": "啊哈!怎么会这样?像我这样的干部\n竟然输给了一个随处可见的训练师……" + } + }, + "courtney": { + "encounter": { + "1": "那个东西……你所拥有的那个东西……\n那就是……那就是我们熔岩队所寻找的东西……", + "2": "……那么……删除记忆……", + "3": "……哈……分析中……啊哈♪" + }, + "victory": { + "1": "……改变……世界。", + "2": "如预期。出乎意料。目标锁定…锁定你……完成。\n$开始……实验。材料是你…永远…啊哈……♪", + "3": "……又来了?出乎意料……我就知道。你……很有趣!……啊哈哈!♪" + } + }, + "shelly": { + "encounter": { + "1": "啊哈哈哈哈!你要插手海洋队的事?\n$你要么是绝对无畏,要么就是无知,或者两者兼有!\n$你太可爱了,太恶心了!我要把你打倒!", + "2": "怎么回事?这个小鬼头是谁?", + "3": "冷静点,耐心点。我很快就会把你击溃。" + }, + "victory": { + "1": "啊哈哈哈哈!我们意外地被人干扰了!我们别无选择。\n$不得不撤退了,但这会不是你最后一次面对海洋队!\n$我们还有其他计划!别忘了!", + "2": "啊?!我是不是对你太温柔了?!", + "3": "呃…难道在对战中你也一刻不停地在变强吗?\n$你真是个前途光明的小鬼……\n我和我的宝可梦已经没有任何力量去战斗了……\n$继续吧……准备去被水梧桐摧毁吧。" + } + }, + "matt": { + "encounter": { + "1": "嚯!哈哈哈!怎么,你是不是脑子不正常了?\n看看你,像个幕下力士!", + "2": "“哦吼!你!你真是个有趣的孩子!", + "3": "你在这里干什么?你跟踪我们了吗?" + }, + "victory": { + "1": "好吧,在老大有时间对付你之前,我来成为你的对手!", + "2": "我能感觉到!我感觉到了,没错!你身上散发出的力量!\n$更多!还想要更多!但看起来我们没时间了……", + "3": "真有趣!我就知道你会让我尽兴的!\n我期待有一天再次面对你!" + } + }, + "mars": { + "encounter": { + "1": "我是伙星,银河队的顶级干部之一。", + "2": "银河队对未来的愿景坚定不移。\n反对者将被无情地粉碎!", + "3": "“紧张吗?你是该感到紧张了!" + }, + "victory": { + "1": "这不可能!我怎么会输?!", + "2": "你很有本事,我承认。", + "3": "输了……犯了一个代价高昂的大错。" + } + }, + "jupiter": { + "encounter": { + "1": "岁星,银河队干部,为您效劳。", + "2": "抵抗是徒劳的。银河队必将获胜!", + "3": "你在发抖啊……已经害怕了吗?" + }, + "victory": { + "1": "不会吧……我输了?!", + "2": "厉害,你胆子真大!", + "3": "输成这样……真丢人。" + } + }, + "saturn": { + "encounter": { + "1": "我是镇星,银河队的干部。", + "2": "我们的使命是绝对的,任何阻碍都将被消灭!", + "3": "我从你的眼中看到的是恐惧吗?" + }, + "victory": { + "1": "不可能……被你打败了?!", + "2": "你证明了自己是一个值得尊敬的对手。", + "3": "失败的苦涩……难以接受……。" + } + }, + "zinzolin": { + "encounter": { + "1": "你可能会对等离子队构成威胁,所以我们现在就消灭你!", + "2": "哦,天哪……我没想到要在这么冷的天气里战斗!", + "3": "能走到今天这一步,你真是个了不起的训练师。\n但一切到此结束。" + }, + "victory": { + "1": "魁奇思大人……我让你失望了……", + "2": "好冷,我不仅发抖,还要遭罪。", + "3": "哼。你比我想象的要聪明,但还不够。" + } + }, + "rood": { + "encounter": { + "1": "你对等离子队是个威胁。我们现在不能让你离开这里!", + "2": "哦,这寒风……我从没想过我必须在这里战斗!", + "3": "能走到今天这一步,你是一位了不起的训练师,但这就是你的结局了。" + }, + "victory": { + "1": "魁奇思大人……我的任务失败了", + "2": "寒风刺骨。我瑟瑟发抖。我痛苦不堪。", + "3": "嗯,你是很有才。但是要打败等离子队还不够……!" + } + }, + "xerosic": { + "encounter": { + "1": "啊哈哈!我很乐意。\n来吧,小训练师!让我们看看你有什么本事!", + "2": "嗯……你比看上去更强大。\n我想知道你体内有多少能量。", + "3": "我一直在等你!我需要对你做一点研究!\n来吧,我们开始吧!" + }, + "victory": { + "1": "啊,你好强大啊……嗯……确实非常强大。", + "2": "叮叮叮!你成功了!\n战利品归胜利者!", + "3": "太棒了!太神奇了!\n你的技巧和勇气都无与伦比!" + } + }, + "bryony": { + "encounter": { + "1": "我是芭菈,能与你一战是我的荣幸。\n让我看看你的实力。", + "2": "令人印象深刻……你比你看上去的还要强大。\n让我们看看你真正的实力。", + "3": "我预料到了你的到来。\n是时候进行一个小实验了,我们开始吧?" + }, + "victory": { + "1": "你很强大。哦,嗯嗯!确实非常强大", + "2": "叮叮叮!你做得很好。胜利属于你。", + "3": "太棒了!了不起!你的技巧和勇气值得称赞。" + } + }, + "rocket_grunt": { + "encounter": { + "1": "你要有麻烦了!", + "2": "我们要干大事了!\n闪一边去,小子!", + "3": "把你的宝可梦交过来,\n不然就尝尝火箭队的厉害!", + "4": "你准备好感受火箭队真正的恐怖了吗!", + "5": "喂,小子!俺可是火箭队滴!" + }, + "victory": { + "1": "好讨厌的感觉啊!", + "2": "哎呀!不小心丢掉电梯钥匙啦!", + "3": "我搞砸了。", + "4": "我的伙计们不会放过你……!", + "5": "你说啥?俺们火箭队要玩完了?" + } + }, + "magma_grunt": { + "encounter": { + "1": "如果你挡在熔岩队路上,那就别指望我们手下留情!", + "2": "你最好别妨碍我们的计划!\n我们会让世界变得更美好!", + "3": "少碍事!熔岩队没时间理你这样的小孩!", + "4": "你有棉花糖没?我来给你好好烤烤!", + "5": "我们会利用火山的力量!\n它马上要…爆发了!懂吗?嘿嘿嘿……" + }, + "victory": { + "1": "哈?我输了?!", + "2": "我怎么会输!我为了训练饭都不吃了!", + "3": "不会吧,不就是一个小孩!", + "4": "呃啊…我得赶快逃回基地…", + "5": "你打败我了…你觉得老大会扣我工资吗?" + } + }, + "aqua_grunt": { + "encounter": { + "1": "即使是小孩,如果要和海洋队作对,也别指望我们手下留情!", + "2": "嚯…你好大的胆子,敢惹我们海洋队!", + "3": "不仅是我的水系宝可梦,整片大海即将淹没你!", + "4": "我们海洋队,是为了大义!", + "5": "准备好被我的…呃…我宝可梦的海流冲走吧!" + }, + "victory": { + "1": "你在开玩笑吧?", + "2": "害,没想到这种小屁孩也要管我的闲事!", + "3": "我输了?看来我得自己游回基地了。", + "4": "不是吧,怎么会,老大要生气了……", + "5": "你打败了我…老大不会要让我上跳板吧……" + } + }, + "galactic_grunt": { + "encounter": { + "1": "别惹银河队!", + "2": "见识下我们的科技,和我们所设想的未来!", + "3": "以银河队之名,我会扫清一切挡路的人!", + "4": "准备输的一败涂地吧!", + "5": "希望你做好被宇宙力量碾压的准备。" + }, + "victory": { + "1": "停机了…", + "2": "从长远来看,这次的挫折不用在意。", + "3": "小失败不会影响我们的宏图伟业!", + "4": "咋回事!?", + "5": "个人记录:提升对战水平,优先级,高……" + } + }, + "plasma_grunt": { + "encounter": { + "1": "异端不共戴天!", + "2": "要是我赢了你!就把你的宝可梦放生!", + "3": "要是敢和等离子队作对,我来好好关照你!", + "4": "等离子队会从你们这种自私的人手里解放宝可梦!", + "5": "我们的发型帅的一批,而我们的战斗水平呢,\n马上让你见识一下。" + }, + "victory": { + "1": "等离子子子子子子!", + "2": "我怎么会输……", + "3": "…没用的家伙!我得去偷个厉害点的宝可梦!", + "4": "伟大的事业总会被人阻挠…", + "5": "烂完了…烂烂烂烂烂!等离子队烂了!\n说短点就是,等烂子队!" + } + }, + "flare_grunt": { + "encounter": { + "1": "你的宝可梦无法与闪焰队的优雅相提并论", + "2": "带个墨镜吧,别被我闪瞎狗眼了!", + "3": "闪焰队将净化这个不完美的世界!", + "4": "准备面对闪焰队的美!", + "5": "时尚对我们来说最重要!" + }, + "victory": { + "1": "我的未来看起来并不明亮…", + "2": "这战斗比我想的更难搞,我得重头训练了。", + "3": "啊啊?我输了?!", + "4": "就算是在失败当中,闪焰队依旧优雅动人!", + "5": "你虽然打败了我,但是我输的也这么潇洒!" + } + }, + "aether_grunt": { + "encounter": { + "1": "我会用尽全力消灭你!", + "2": "我才不管你是不是小孩!\n只要和我们作对,我就把你打飞!", + "3": "上头要我拦下所有训练师,无论是谁!", + "4": "给你展现一下以太乐园的力量!", + "5": "既然你已经触达到了以太基金会的黑暗,\n那我要请你就此消失了。" + }, + "victory": { + "1": "哼!看来你有点实力。", + "2": "这什么情况!什么情况!", + "3": "啊!你怎么这么强!我这下可没法阻止你!", + "4": "嗯……看来我输了……", + "5": "我惊掉大牙了……" + } + }, + "faba": { + "encounter": { + "1": "我,分部长扎奥博, \n给你见识下现实世界的残酷吧!", + "2": "堂堂以太乐园的最后防线,\n我扎奥博竟然要跟个毛头小子对战。", + "3": "我,扎奥博,以太基金会分部长。\n世上唯一,无可替代!" + }, + "victory": { + "1": "哎咿呀!", + "2": "怎……怎么可能!这孩子!", + "3": "这就是……这就是为啥我讨厌小孩子!" + } + }, + "skull_grunt": { + "encounter": { + "1": "我们并不坏,YO,我们是硬汉!", + "2": "YO!咋样!我们就这样打招呼!\n混个脸熟呗,崽子!", + "3": "咱们就是一帮对别人的宝可梦\n比较感兴趣的哥们和姐们!", + "4": "别装B了,你有我们拽吗,老弟?", + "5": "骷髅队在此!没钱住房子!\n天天找乐子!青春混到死!" + }, + "victory": { + "1": "哈?这就完了?", + "2": "该逃跑了YO!闪一边去YO!", + "3": "你这种弱鸡宝可梦反正我们也不要!", + "4": "啥!? 这小屁孩也太牛B了!", + "5": "MAN!我能说什么,\n我的人生比宝可梦还烂。" + } + }, + "plumeria": { + "encounter": { + "1": " …哼嗯,你看起来也没啥特别的。", + "2": "这帮呆子对付你也花了太长时间了吧……", + "3": "要是惹了骷髅队的人!我就不和你开玩笑了!" + }, + "victory": { + "1": "哼嗯!你很强,我承认。", + "2": "哼,你是挺强的。现在我知道\n为啥那帮手下要花那么久对付一个小孩了。", + "3": "哼嗯!看来我得承认我输了。" + } + }, + "macro_grunt": { + "encounter": { + "1": "你的对战生涯到此为止了。", + "2": "你是一名训练师吧\n你没有干涉我们工作的权力!", + "3": "我是马洛科蒙集团的,要买马洛科蒙人寿保险吗。" + }, + "victory": { + "1": "除了礼貌地撤退我似乎别无选择…", + "2": "没法留住我的零花钱了,我又要财政赤字了…", + "3": "没人能比马洛科蒙集团的我们工作更卷!" + } + }, + "oleana": { + "encounter": { + "1": "我不会让你方案洛兹先生的计划!", + "2": "看来你打倒了所有我安排的训练师,本身也没对他们有啥期待…", + "3": "为了总裁!我不会输的!" + }, + "victory": { + "1": "*叹气*我赢不了。\n奥利薇,你真是个没用的女人", + "2": "呃啊!不可饶恕...我在想什么。\n走到这里的训练师果然不会轻易屈服!", + "3": "*叹气*奥利薇累累了……" + } + }, + "rocket_boss_giovanni_1": { + "encounter": { + "1": "我不得不说,能来到这里,你的确很不简单!" + }, + "victory": { + "1": "什么!这不可能!" + }, + "defeat": { + "1": "记住我的话。无法衡量自己的力量,说明你还是个孩子。" + } + }, + "rocket_boss_giovanni_2": { + "encounter": { + "1": "我的老伙计还需要我…你要挡我的路吗?" + }, + "victory": { + "1": "这怎么可能…?\n火箭队的梦想…就这么成为泡影了…" + }, + "defeat": { + "1": "火箭队会重生,而我会统治世界!" + } + }, + "magma_boss_maxie_1": { + "encounter": { + "1": "我会亲手埋葬你,希望你能喜欢!" + }, + "victory": { + "1": "啊!你…很厉害…我落后了…一点…" + }, + "defeat": { + "1": "熔岩队必胜!" + } + }, + "magma_boss_maxie_2": { + "encounter": { + "1": "你是我实现目标最后的障碍。\n准备好迎接我最强的一击吧!哈哈哈哈!" + }, + "victory": { + "1": "这…这不…呃" + }, + "defeat": { + "1": "现在…我要把这个星球变成人类的理想国度!" + } + }, + "aqua_boss_archie_1": { + "encounter": { + "1": "我是海洋队的老大,所以,你的路大概走到头了。" + }, + "victory": { + "1": "下次再见吧。我会记住你的脸的。" + }, + "defeat": { + "1": "天才!我的队伍不会再退缩了!" + } + }, + "aqua_boss_archie_2": { + "encounter": { + "1": "我等这一天很久了。\n这就是我的真实力量!" + }, + "victory": { + "1": "果然很强……啊!" + }, + "defeat": { + "1": "我会让这世界上的一切回归到最初的纯净状态!!" + } + }, + "galactic_boss_cyrus_1": { + "encounter": { + "1": "但在这之前,让我见识见识你那敢向银河队叫板的实力吧。" + }, + "victory": { + "1": "有意思,简直太有意思了。" + }, + "defeat": { + "1": "我要创造我的新世界…" + } + }, + "galactic_boss_cyrus_2": { + "encounter": { + "1": "是啊,我和你还真是有缘呢。\n不过,这段孽缘…就让我在此斩断吧!" + }, + "victory": { + "1": "怎么可能!怎么可能!怎么可能!" + }, + "defeat": { + "1": "永别了。" + } + }, + "plasma_boss_ghetsis_1": { + "encounter": { + "1": "无论是谁做了什么!都无法阻止我!" + }, + "victory": { + "1": "怎么回事?我可是建立了等离子队的完美的人啊!\n是要改变世界的完美的统治者!" + }, + "defeat": { + "1": "我是坐拥世界的完美统治者!哇哈哈哈!" + } + }, + "plasma_boss_ghetsis_2": { + "encounter": { + "1": "来吧!让我看看你彻底绝望时的那张脸!" + }, + "victory": { + "1": "不!我的伟大目标!我要完全支配世界啊!" + }, + "defeat": { + "1": "酋雷姆!融合吧!" + } + }, + "flare_boss_lysandre_1": { + "encounter": { + "1": "你想要阻止我?在对战中展示给我看吧!" + }, + "victory": { + "1": "看来你的确是想要阻止我。但是,先等一下。" + }, + "defeat": { + "1": "宝可梦…不该存在。" + } + }, + "flare_boss_lysandre_2": { + "encounter": { + "1": "你我的未来…究竟哪个才正确,\n就让我们来问问各自的宝可梦吧!" + }, + "victory": { + "1": "哇啊啊啊!" + }, + "defeat": { + "1": "没有远见的蠢货会继续玷污这个美丽的世界。" + } + }, + "aether_boss_lusamine_1": { + "encounter": { + "1": "你吓到我可爱的异兽了!我要让你先闭嘴!" + }, + "victory": { + "1": "你…你怎么这么不听话!" + }, + "defeat": { + "1": "哼嗯…" + } + }, + "aether_boss_lusamine_2": { + "encounter": { + "1": "为什么你要一直妨碍我!\n我受够你了,完完全全受够了! \n$不用说废话了…有了虚吾伊德的力量。\n我会让你明白,你来这里是有多么错误!" + }, + "victory": { + "1": "呃呃啊啊啊啊呜呜呜啊啊!" + }, + "defeat": { + "1": "我只要和我可爱的异兽在一起就好了!你们怎么样都无所谓了!" + } + }, + "skull_boss_guzma_1": { + "encounter": { + "1": "摧毁,摧毁,\n不管摧毁几次也从不手软\n$惹人厌的古兹马大爷在此。" + }, + "victory": { + "1": "切,我一定要找时间干掉你!" + }, + "defeat": { + "1": "大老远跑来就这,昂?" + } + }, + "skull_boss_guzma_2": { + "encounter": { + "1": "不管谁与我作对,我都会干掉他们!\n$这就是大坏蛋古兹马的全部!" + }, + "victory": { + "1": "古兹马!!你在干什么啊!!!" + }, + "defeat": { + "1": "你们真够蠢的!" + } + }, + "macro_boss_rose_1": { + "encounter": { + "1": "我必须为所有人提供无限的能源,实现繁荣。$这是我的目的,我的责任,我的使命!" + }, + "victory": { + "1": "你还是没有明白,训练师\n$我们…不,我要推动历史的进程啊!" + }, + "defeat": { + "1": "你完全不理解!" + } + }, + "macro_boss_rose_2": { + "encounter": { + "1": "我致力于解决伽勒尔的能源问题\n——当然也是全世界的能源问题。\n$我的经验与成果,造就了马洛科蒙集团,证明了我的正确与成功!\n$就算输了,我也不会改变主意的……" + }, + "victory": { + "1": "我都忘记宝可梦对战的魅力了!我太久没有着手对战了…\n$这的确让人很满足,我接受我的失败!" + }, + "defeat": { + "1": "我承认我做的事情非常渗人,我也不指望你能理解。\n$但我必须为伽勒尔地区提供无限的能源,确保永久的繁荣。" + } + }, + "brock": { + "encounter": { + "1": "我对岩石属性宝可梦的专精会击败你!来吧!", + "2": "我磐石般的意志将压倒你!", + "3": "让我展示给你看看,我宝可梦真正的力量!" + }, + "victory": { + "1": "你宝可梦的力量战胜了我坚如磐石的防御!", + "2": "世界很大!很高兴有机会和你战斗。", + "3": "也许我应该回去追寻我成为宝可梦饲养员的梦想……" + }, + "defeat": { + "1": "最好的进攻就是坚固的防守!$那是我做事的方式!", + "2": "下次来和我一起研究岩石属性,$更好地了解如何与它们对战!", + "3": "哈哈,我在各地的旅行有所回报了!" + } + }, + "misty": { + "encounter": { + "1": "我的战策就是使用水属性宝可梦全面进攻!", + "2": "嗨,我会让你见识我的水属性宝可梦的力量!", + "3": "我的梦想是踏上旅程,与强大的训练师战斗……$你能满足我吗?" + }, + "victory": { + "1": "你真的很强……我承认,你有技术的……", + "2": "哼……你知道你只是运气好,对吧?!", + "3": "哇,你太过分了!不敢相信你打败我了!" + }, + "defeat": { + "1": "强大的小霞对你来说,太过分了吗?", + "2": "我希望你看到了我宝可梦优雅的游泳技巧!", + "3": "你的宝可梦无法匹敌我的心腹和骄傲!" + } + }, + "lt_surge": { + "encounter": { + "1": "我的电属性宝可梦在战争中救了我!$我来给你展示一下!", + "2": "立正!我要电到你投降!", + "3": "我会像对待敌军一样,狠狠电你!" + }, + "victory": { + "1": "哇!你的队伍有真家伙,小子!", + "2": "啊啊,你很强!连我的电击技巧都输给了你。", + "3": "这失败真是把我给电麻了!" + }, + "defeat": { + "1": "哦耶!我的电属性宝可梦是世界第一!", + "2": "哈哈哈!真是一场电动人心的战斗,小子!", + "3": "宝可梦对战等于战争,$我向你展示了军队中的格斗技巧!" + } + }, + "erika": { + "encounter": { + "1": "啊,这里天气真好…$哦,对战?那好吧。", + "2": "我在宝可梦对战上的造诣,$可以与我的插花技巧相媲美。", + "3": "哦,希望我宝可梦的宜人香气\n不会再让我睡着…", + "4": "看看花园里的花朵,如此令人心旷神怡。" + }, + "victory": { + "1": "哦!我认输啦~", + "2": "这场比赛非常愉快。", + "3": "啊,看来我输了…", + "4": "哦,我的天哪。" + }, + "defeat": { + "1": "我怕我会打瞌睡…", + "2": "哦,我天。看来我的草属性宝可梦击败了你。", + "3": "那场战斗是如此令人心旷神怡。", + "4": "哦…这就完啦?" + } + }, + "janine": { + "encounter": { + "1": "我正在掌握毒属性攻击的艺术。$今天我来和你过过招!", + "2": "父亲相信我能独当一面。$我来证明他说的对!", + "3": "我的忍术,仅次于我的父亲!$你能跟的上吗?" + }, + "victory": { + "1": "就算现在,我仍然需要继续训练…我明白了。", + "2": "你的战斗技巧,超过了我。", + "3": "我要好好努力提高我的技术。" + }, + "defeat": { + "1": "呵呵…毒液耗尽了你所有的力量。", + "2": "哈!你根本无法抵挡我卓越的忍技!", + "3": "我没有辜负父亲对我的信任。" + } + }, + "sabrina": { + "encounter": { + "1": "我的超能力预见了你的到来!", + "2": "我不喜欢战斗,但如果你想,$我会展示我的实力!", + "3": "我能感觉到你的雄心壮志。$我倒要看看你是不是虚有其表。" + }, + "victory": { + "1": "你的力量……远远超出了我的预知……", + "2": "我没有准确预测到你的实力。", + "3": "即使我强大的超能力也无法感知到你这样强大的人。" + }, + "defeat": { + "1": "这场胜利……和我看到的未来一样啊!", + "2": "也许我预感到有强大实力的人,是另一个……", + "3": "在你奋不顾身投入战斗之前,\n磨练你的能力。$如果你这样做,你才未来可期……" + } + }, + "blaine": { + "encounter": { + "1": "哈!希望你带了烧伤治疗药!", + "2": "我火热的宝可梦将所有挑战者都焚烧殆尽!", + "3": "准备好玩火吧!" + }, + "victory": { + "1": "我已经焚烧殆尽了!甚至连灰烬都没有留下!", + "2": "我没有把火焰煽得足够高吗?", + "3": "我燃尽了……但这让我进步的动力燃烧得更旺了!" + }, + "defeat": { + "1": "我的熊熊烈火无法被扑灭!", + "2": "我的宝可梦因这次胜利而变得更加强大!", + "3": "哈!我的激情燃得比你的更热烈!" + } + }, + "giovanni": { + "encounter": { + "1": "我,火箭队的领袖,\n会让你的世界感受到痛苦!", + "2": "我在这里的训练在我再次面对老朋友之前至关重要。", + "3": "我认为你还没有准备好迎接你即将经历的失败!" + }, + "victory": { + "1": "什么!我输了?! 我没什么可和你说的!", + "2": "哼……你永远无法理解我希望实现的目标。", + "3": "这次失败只是暂时的。$我将找准时机,让火箭队浴火重生。" + }, + "defeat": { + "1": "不知自己几斤几两,\n说明你仍然只是一个孩子。", + "2": "不要再试图干涉我。", + "3": "我希望你明白挑战我是多么愚蠢。" + } + }, + "roxanne": { + "encounter": { + "1": "您能否展示一下您是如何战斗的么?", + "2": "你可以和更多训练师战斗来学到很多东西。", + "3": "哦,被你抓到我正在用功了~$你想战斗吗?" + }, + "victory": { + "1": "哦,看来我输了。$我明白了。", + "2": "看来我在战斗方面还有更多东西要学。", + "3": "我会把今天在这里学到的东西铭记于心。" + }, + "defeat": { + "1": "从我们的对战中,我学到了很多。$希望你也是。", + "2": "我期待再次与你战斗。$希望你能运用在此学到的东西。", + "3": "我凭借我所学到的一切赢得了胜利。" + } + }, + "brawly": { + "encounter": { + "1": "哦,伙计,挑战者!$让我看看你的能耐!", + "2": "你看起来很厉害嘛。$来对战吧!", + "3": "是时候掀起风暴了!$我们上吧!" + }, + "victory": { + "1": "哦哇,你把我冲走了!", + "2": "你驾驭了我的海浪,把我打败了!", + "3": "我觉得我就像是在武斗洞窟里迷路了!" + }, + "defeat": { + "1": "哈哈,我驾驭了大浪!$有时间再挑战我吧。", + "2": "再和我一起冲浪吧!", + "3": "就像潮水的涨落,\n我希望你也能再来挑战我。" + } + }, + "wattson": { + "encounter": { + "1": "是时候被电击了!$哈哈哈!", + "2": "我要让火星子飞蹦!$哈哈哈!", + "3": "我希望你带了麻痹药!$哇哈哈哈!" + }, + "victory": { + "1": "看来我的电量用完了!$哇哈哈哈!", + "2": "你完全接地了是吧!$哇哈哈哈!", + "3": "谢谢你给我电了一下!$哇哈哈哈!" + }, + "defeat": { + "1": "电充充满,有时间再挑战我吧!$哇哈哈哈!", + "2": "我希望你觉得我们的战斗激情似电!$哇哈哈哈!", + "3": "你没想到我赢了吧?$哇哈哈哈!" + } + }, + "flannery": { + "encounter": { + "1": "很高兴见到你!等等,不对……$我要粉碎你!", + "2": "我才当道馆主没多久,\n但我会让你灰飞烟灭!", + "3": "是时候展示爷爷教给我的招式了!来对战吧!" + }, + "victory": { + "1": "你让我想起了我的爷爷……$难怪我输了。", + "2": "我是不是太努力了?$我应该放松,不能太上头了。", + "3": "失败才不会呛到我。$是时候重新点燃训练了!" + }, + "defeat": { + "1": "我希望我让祖父感到骄傲了……$有时间我们再战斗吧。", + "2": "我……我简直不敢相信我赢了!$按照自己的方式做事奏效了!", + "3": "早点用炽热的招式再来交手吧!" + } + }, + "norman": { + "encounter": { + "1": "我没想到你能一路来到这里。$我们来对战吧。", + "2": "作为道馆主,我会尽一切努力赢得胜利。$我们开始吧!", + "3": "你最好全力以赴。$对战的时候到了!" + }, + "victory": { + "1": "我输给了你……?$但规则就是规则。", + "2": "难道我不该从城都搬家吗……?", + "3": "我不敢相信。$这是一场好对战。" + }, + "defeat": { + "1": "我们都尽力了。$希望我们不久之后能再对战。", + "2": "你应该尝试挑战我的孩子。$可能会有一些收获!", + "3": "谢谢你精彩的战斗。$下次好运。" + } + }, + "winona": { + "encounter": { + "1": "我一直在天空中翱翔寻找猎物…$而你就是我的目标!", + "2": "不管战况如何,我都会和我的飞行宝可梦$以优雅的姿态获胜。来战斗吧!", + "3": "我希望你不怕高。$我们一起升上高空吧!" + }, + "victory": { + "1": "你是我见过的第一位比我更有风度的训练师。$打的非常出色。", + "2": "哦,我的飞行系宝可梦都已经坠落了!$好吧。", + "3": "尽管我倒下了,我的宝可梦将继续翱翔!" + }, + "defeat": { + "1": "我与我的飞行系宝可梦,\n将永远优雅地起舞!", + "2": "我希望你喜欢我们的演出。$我们优雅的舞蹈已经落幕。", + "3": "你愿意再来观看我们优雅的编舞吗?" + } + }, + "tate": { + "encounter": { + "1": "嘿嘿嘿…$看到我没和妹妹在一起,很惊讶么?", + "2": "我可以读懂你在想什么…$你想要战斗!", + "3": "你如何击败一个…$读懂你一举一动的人?" + }, + "victory": { + "1": "赢不了啊…$我想小南了…", + "2": "你和宝可梦之间的联系比我们更强。", + "3": "如果我和小南联手,我们会赢的。$我们可以了解彼此的想法!" + }, + "defeat": { + "1": "我和我的宝可梦无与伦比!", + "2": "如果你连我都打不过,\n你肯定也打不过小南。", + "3": "这多亏了我和小南的严格训练。$我可以与宝可梦一心同体。" + } + }, + "liza": { + "encounter": { + "1": "呵呵呵…$看到我没和哥哥一起,很惊讶吗?", + "2": "我可以读懂你渴望什么…$你想战斗,不是吗?", + "3": "你如何击败一个…$与宝可梦们一心同体的人?" + }, + "victory": { + "1": "赢不了啊…$我想小枫了…", + "2": "你和宝可梦之间的联系…$比我强。", + "3": "如果我和小枫在一起,我们会赢的。$我们甚至可以接上彼此的话!" + }, + "defeat": { + "1": "我和我的宝可梦势不可挡。", + "2": "如果你连我都打不过,\n你肯定也打不过小枫。", + "3": "这多亏了我和小枫的严格训练。$我可以与我的宝可梦一心同体。" + } + }, + "juan": { + "encounter": { + "1": "别害羞啊。$我们来战斗吧!", + "2": "啊哈哈哈,敬请期待\n我和水属性宝可梦的盛大演出!", + "3": "我就是正在逼近的风暴!$你能经受住考验吗?", + "4": "请你见证我们的表演。$由我和宝可梦共同创造的宏伟水之幻境!" + }, + "victory": { + "1": "你可能是一个能挑战米可利的天才!", + "2": "我专注于优雅,而你刻苦锻炼。$你能击败我是很正常的。", + "3": "啊哈哈哈!$好吧,这次你赢了。", + "4": "从你身上,我感受到了技巧的光辉,\n它将战胜一切。" + }, + "defeat": { + "1": "宝可梦和我创造的水之幻境,让我取得了胜利。", + "2": "啊哈哈哈,我赢了,你输了。", + "3": "要我把我的服装借给你吗?\n可能能帮到你对战啊!$啊哈哈哈,我开玩笑的!", + "4": "我是赢家!也就是说,你输了。" + } + }, + "crasher_wake": { + "encounter": { + "1": "极限! 极限! 看好了!$极限假面…就此…登场!", + "2": "极限! 极限! 极限假面!", + "3": "我是滔滔巨浪,将你冲走!" + }, + "victory": { + "1": "我真是笑得合不拢嘴啊!$哈哈哈!那真是太有趣了!", + "2": "呼哇!结束收尾了!$我该怎么说呢……$我还想再对战!我还想再继续战斗!", + "3": "啊啊啊啊啊!?" + }, + "defeat": { + "1": "耶!就是这样!", + "2": "我赢了,但我还想要更多!\n我还想再更多地战斗!", + "3": "再见!" + } + }, + "falkner": { + "encounter": { + "1": "我将向你展示华丽的飞行宝可梦真正的力量!", + "2": "风啊,伴我同行!", + "3": "爸爸!我希望你能在空中注视着我的战斗!" + }, + "victory": { + "1": "明白了……我会礼貌地退场。", + "2": "输了就是输了。你确实很强大。", + "3": "…行吧! 嗯, 我输了。" + }, + "defeat": { + "1": "爸爸!我用你珍爱的飞行宝可梦赢了……", + "2": "飞行系宝可梦才是最强的!", + "3": "感觉我正在追赶上我的父亲!" + } + }, + "nessa": { + "encounter": { + "1": "无论你的小脑瓜子在搞什么阴谋诡计,$我和我的搭档都会确保它石沉大海。", + "2": "我来这里可不是为了闲聊,\n而是为了赢!", + "3": "这是我的宝可梦给你的一点小礼物……\n我希望你能接受!" + }, + "victory": { + "1": "你和你的宝可梦太过分了……", + "2": "怎么……?这怎么可能?!", + "3": "我完全被冲走了!" + }, + "defeat": { + "1": "汹涌的海浪再次袭来!", + "2": "是时候乘风破浪,取得胜利了!", + "3": "诶嘿嘿!" + } + }, + "melony": { + "encounter": { + "1": "我不会手下留情!", + "2": "好吧,我想我们应该开始了。", + "3": "我会把你冻得结结实实的!" + }, + "victory": { + "1": "你……你可厉害了,是不是?", + "2": "如果你找到玛瓜,一定要好好教训他,好吗?", + "3": "你的破冰方式有点过于直接了呢……" + }, + "defeat": { + "1": "现在你知道战斗有多残酷了吧?", + "2": "嘿!看来我又赢了!", + "3": "你是在保留实力吗?" + } + }, + "marlon": { + "encounter": { + "1": "你看起来很强!来吧!让我们开始吧!", + "2": "我的强大像大海一样无边无际。$你会被我冲走,绝对的。", + "3": "哦豁,由我来面对你!这可不得了咯!" + }, + "victory": { + "1": "你太厉害了!\n你培养了一些非常强大的宝可梦啊,$你已经掌握了训练师的精髓!", + "2": "你不仅仅是看起来,\n你是真的强,真的!$呃,我也被冲走了!", + "3": "你像凶猛的波浪一样强壮!" + }, + "defeat": { + "1": "你很强,但这还不足以动摇大海,懂?", + "2": "嘻!看来我又赢了!", + "3": "甜蜜的胜利!" + } + }, + "shauntal": { + "encounter": { + "1": "打扰了。你是挑战者,对吗?$我是四天王的幽灵系宝可梦使用者,$婉龙,我将是你的对手。", + "2": "我非常喜欢描写来到这里的训练师,\n以及他们训练的宝可梦。$我可以用你和你的宝可梦作为主题吗?", + "3": "每个与宝可梦相处的人都有故事要讲。$接下来要讲的故事是怎样的呢?" + }, + "victory": { + "1": "哇。我惊呆了!", + "2": "对…对不起!我必须先向我的宝可梦道歉……$都是因为我让你们有了不好的经历,真的很抱歉!", + "3": "你要知道,我仍然是四天王之一!" + }, + "defeat": { + "1": "额呵呵。", + "2": "给了我下一部小说的绝佳素材!", + "3": "就这样,又一篇故事来到尾声……" + } + }, + "marshal": { + "encounter": { + "1": "我的师傅,阿戴克,\n看到了你作为训练师的潜力,$对你很有兴趣。$我要来考验你——挖掘你力量的极限。\n丹田发力!", + "2": "胜利,决定性的胜利,\n正是我所求!挑战者,我来了!", + "3": "在我的心中,我寻求着成为战士的力量,\n克服自身的所有弱点!$以我的信念,取胜!" + }, + "victory": { + "1": "呼!干得好!", + "2": "不要停止战斗,追求更高的目标!", + "3": "你和你宝可梦展现的力量\n给我留下了深刻的印象……" + }, + "defeat": { + "1": "嗯…", + "2": "这真是场好战斗。", + "3": "哈啊!哈啊!嗨呀啊!" + } + }, + "cheren": { + "encounter": { + "1": "你让我想起了一位老朋友。$这让我对这场宝可梦战斗感到兴奋!", + "2": "不考虑清楚这一点,\n宝可梦对战就没有了意义。$这就是失去了和宝可梦一同战斗的意义。", + "3": "我的名字是黑连!我是道馆馆主,\n也是老师!$很高兴认识你。" + }, + "victory": { + "1": "谢谢……我又能发现自己的不足了。", + "2": "谢谢…接近理想的道路…我好像隐约看到了。", + "3": "嗯……这值得思考。" + }, + "defeat": { + "1": "作为道馆馆主,我要成为你要跨越的壁垒!", + "2": "好吧!", + "3": "正因为有宝可梦,我们才能走到这里。$为什么宝可梦会帮助我们,\n这个恐怕不仅是宝可梦与训练家…$而是生命与生命之间的问题。" + } + }, + "chili": { + "encounter": { + "1": "咿呀!是时候玩火了!!我是三兄弟中最强的!", + "2": "嗒哒!如火似焰的伯特——就是我\n——你接下来的对手!", + "3": "我将向你展示,\n我和我炽热的火系宝可梦的能耐!" + }, + "victory": { + "1": "被你干掉了。我……燃尽了……", + "2": "哇吼!你燃起来了!", + "3": "啊!被你干碎了!" + }, + "defeat": { + "1": "我燃起来啦!和我玩儿,你就会被烫伤!", + "2": "你要是玩儿火,就会被烫伤!", + "3": "我说,拜托,\n你的对手是我,没机会赢的!" + } + }, + "cilan": { + "encounter": { + "1": "无关个人情感…也不会有艰难的感受…$我和我的草属性宝可梦会…$呃…不管什么样的对手我们都会应战的。", + "2": "所以,呃,如果你愿意的话,我会,\n呃,尽我所能做好,呃,你知道的,你的对手。", + "3": "好吧……所以,我是天桐,\n我喜欢草属性宝可梦。" + }, + "victory": { + "1": "呃……已经结束了吗?", + "2": "…真是太意外了。你真…强。$看起来就算是伯特或寇恩都赢不了你…", + "3": "…嗯。看起来我来的…不是时候?" + }, + "defeat": { + "1": "哈?我赢了?", + "2": "我想…$我想我赢了,因为我一直在和我的兄弟伯特和寇恩竞争,\n我们都变得更强了。", + "3": "…这…这是一次非常吓人的经历呢…" + } + }, + "roark": { + "encounter": { + "1": "我需要看看你作为训练师的潜力。$还有,我要看看与你并肩作战的宝可梦的坚韧!", + "2": "来吧!这些是我的岩石系宝可梦,我的骄傲!", + "3": "岩石属性宝可梦就是最强的!", + "4": "我要看看你作为训练师的潜力。$还要看看与你并肩作战的宝可梦的坚韧!" + }, + "victory": { + "1": "什么?不可能!我强化的宝可梦们!", + "2": "……我大脑过载了。$下次邀请你参加地下的化石挖掘比赛。", + "3": "有你这种技术,赢得胜利是很正常的。", + "4": "什么?!连这也不够?", + "5": "我搞砸了。" + }, + "defeat": { + "1": "看?我为我的摇滚战斗风格感到骄傲!", + "2": "谢谢!这场战斗给了我自信,$我感觉能够打败我父亲了!", + "3": "我感觉就像我砸穿了一块顽石!" + } + }, + "morty": { + "encounter": { + "1": "只要我再多努力一点,我就能看到我遇到传说中的宝可梦的未来!$你会帮助我达到那个水平!", + "2": "据说,彩虹色的宝可梦会\n出现在真正强大的训练师面前。 $我一直相信着这个美丽的传说,\n所以,从出生开始,\n就在这里进行着秘密的修行。$因为这样,其他人看不到的东西\n我也能够看得到…$我看到的,是那个将传说中的宝可梦\n召唤到这片大地上的人的影子。$我一直相信,那就是我自己!\n希望你也能助我一臂之力!", + "3": "无论你相信还是不相信,神秘的力量确实存在。", + "4": "你可以见证我训练的成果。", + "5": "你必须让你与宝可梦的灵魂合二为一。你能做到吗?", + "6": "嘿,你想成为我训练的一部分吗?" + }, + "victory": { + "1": "我还不够好……", + "2": "我明白了…你的旅程…去了遥远的地方,你见过的比我多得多。$我羡慕你…", + "3": "这怎么可能……", + "4": "我认为我们的潜力没什么不同。$但是,我觉得你并不简单,似乎还有什么……", + "5": "我想我需要更多的训练。", + "6": "那太遗憾了" + }, + "defeat": { + "1": "我又向前迈进了一步。", + "2": "呵呵呵……", + "3": "什…么?!那还不够?", + "4": "我感觉就像我砸穿了一块顽石!", + "5": "哈哈哈啊!", + "6": "我知道我会赢!" + } + }, + "crispin": { + "encounter": { + "1": "我想赢,所以接下来我正要赢!", + "2": "我想对战就对战!懂吗!就应该这样!" + }, + "victory": { + "1": "我想赢……但我还是输了!", + "2": "我输了……因为我赢不了!" + }, + "defeat": { + "1": "嘿,等一下。我是不是赢了?$我觉得我赢了!太满足了!", + "2": "哇哦!那太棒了!" + } + }, + "amarys": { + "encounter": { + "1": "我想帮助某个人。因此,我不能输。$…我们的战斗现在开始。" + }, + "victory": { + "1": "我还不够,我明白了。" + }, + "defeat": { + "1": "胜利属于我。打得好。" + } + }, + "lacey": { + "encounter": { + "1": "我将用我平时的队伍\n作为四天王的一员面对你。" + }, + "victory": { + "1": "打得真好呀~" + }, + "defeat": { + "1": "让我们为你宝可梦的努力给予热烈的掌声!" + } + }, + "drayton": { + "encounter": { + "1": "哥们,我喜欢椅子。\n你喜欢椅子吗?简直是救星。$我不明白为什么大家不一直坐着。\n站着多累人!" + }, + "victory": { + "1": "我早该想到的!" + }, + "defeat": { + "1": "嘿嘿嘿!别介意我,\n我只是在这里小赢一下。$如果你不开心,我懂,\n但别因为我对乌栗发火,OK?" + } + }, + "ramos": { + "encounter": { + "1": "我用那些强壮的植物\n盖出来的游乐场精彩吗?$它们的力量象征着我这个园丁兼道馆馆主的实力,\n你真的确定能够与之抗衡吗?" + }, + "victory": { + "1": "你信任你的宝可梦,\n它们也信任你…不错的战斗,小豆芽。" + }, + "defeat": { + "1": "呵呵呵…确实,\n脆弱的小草甚至能穿透混凝土。" + } + }, + "viola": { + "encounter": { + "1": "败阵时的后悔,胜利的瞬间…$都是最棒的影象!很好呀,很好呀!$那么来吧!", + "2": "我的镜头总会聚焦在胜利上,\n我不会让任何事情破坏这个画面!" + }, + "victory": { + "1": "你和你的宝可梦向我展示了一个全新的镜头机位!\n很好呀,很好呀!", + "2": "你通过镜头看到的世界,\n和你与宝可梦并肩作战时看到的世界…$视角不同,即使是同一个世界看起来也完全不同。" + }, + "defeat": { + "1": "我胜利那一刻的照片,\n将是一个真正的赢家,对吧!", + "2": "是的!我拍了些很棒的照片!" + } + }, + "candice": { + "encounter": { + "1": "向小菘我挑战吗?好啊!\n我就是在等待强者$但是我也气势高昂,很强哦?", + "2": "宝可梦也好,时尚也好,恋爱也好,\n无论做什么都气势高昂!$就说到这儿吧,让你见识一下我的气势,\n要做好觉悟哦!" + }, + "victory": { + "1": "好厉害!我有点尊敬你了。", + "2": "好厉害!我有点尊敬你了!$嗯,感觉是被你的气势给压倒了。" + }, + "defeat": { + "1": "你的气势我看到了,但我还是不会输的!", + "2": "怎么样?小菘我的气势!\n宝可梦们的气势满满哦!" + } + }, + "gardenia": { + "encounter": { + "1": "你身上有一种胜利的气息。\n那么不管怎样,$这应该会是场有趣的战斗。\n让我们对战吧!" + }, + "victory": { + "1": "太棒了!你可擅长对战了,不是吗?" + }, + "defeat": { + "1": "太好了!我的宝可梦和我都很棒!" + } + }, + "aaron": { + "encounter": { + "1": "好的!让我来接受你的挑战!" + }, + "victory": { + "1": "战斗是一件深刻而复杂的事情……" + }, + "defeat": { + "1": "战胜一位四天王并不容易。" + } + }, + "cress": { + "encounter": { + "1": "没!错!你必须面对\n与我和我高贵的水属性的战斗!" + }, + "victory": { + "1": "输了?我?我不敢相信。" + }, + "defeat": { + "1": "当你的对手是我时,这是必然的结果。" + } + }, + "allister": { + "encounter": { + "1": "我是欧尼奥。$我…我来了……" + }, + "victory": { + "1": "我差点被吓得丢了面具…那真是…$哇。我可以看清你真正的实力。" + }, + "defeat": { + "1": "这真是太棒了!" + } + }, + "clay": { + "encounter": { + "1": "咳咳! 让我好等,不是吗,孩子?$好吧,是时候看看你能做到什么了!" + }, + "victory": { + "1": "真是的……我先说好,\n我可没有手下留情。" + }, + "defeat": { + "1": "最重要的是输掉的时候该怎么办。$只要你能在失败中找到教训,\n就能够不断地成长!" + } + }, + "kofu": { + "encounter": { + "1": "我会给你上一整道水系宝可梦大餐!\n但别真吃了它们!" + }, + "victory": { + "1": "吃了吗!你真是活力又新鲜啊,\n不是吗!$就是有点太鲜活了!" + }, + "defeat": { + "1": "你要再来找我,听见了吗?" + } + }, + "tulip": { + "encounter": { + "1": "请让我运用我的化妆技巧,$让你可爱的小宝可梦变得更美丽!" + }, + "victory": { + "1": "你妆点的力量宛如魔法加固,\n完全冲洗不掉啊。" + }, + "defeat": { + "1": "你知道吗,在我这行,\n那些没天赋的人往往会很快消失,$再也不会被提起。" + } + }, + "sidney": { + "encounter": { + "1": "你给我的印象不错,\n我猜这会是一场精彩的对战。$很棒!看起来真的很棒!$你和我,让我们享受一场\n只能在这里上演的战斗吧!" + }, + "victory": { + "1": "嗯,你觉得怎样?我输了!\n嗯,不过这很有趣,所以无所谓啊。" + }, + "defeat": { + "1": "别介意,OK?" + } + }, + "phoebe": { + "encounter": { + "1": "过去我在修行时得到了\n能与幽灵宝可梦亲密交流的能力。$没错,我和宝可梦之间\n有著强烈的羁绊。$那么,来试试看你有没有能力\n伤到我的宝可梦吧!" + }, + "victory": { + "1": "哦,天呀。我输了。" + }, + "defeat": { + "1": "我期待着下次再和你战斗!" + } + }, + "glacia": { + "encounter": { + "1": "我在这儿见到的尽是些\n弱不禁风的训练家和宝可梦。$你又如何呢?如果你能让我不得不用\n上全力的话就再好不过了!" + }, + "victory": { + "1": "你和你的宝可梦…\n你们的灵魂燃烧得多么热烈啊!$这股激烈的热能仿佛能征服一切。\n$难怪我的冰属性技巧也奈何不了你了。" + }, + "defeat": { + "1": "一场充满激情的战斗,确实。" + } + }, + "drake": { + "encounter": { + "1": "对于我们这些将宝可梦视为\n同伴一同战斗的训练家来说,$你知道怎样才能赢得胜利吗?\n你知道获得胜利的条件吗?$如果你不知道,\n那么你永远也无法战胜我!" + }, + "victory": { + "1": "干得漂亮,就是这样。" + }, + "defeat": { + "1": "我在这场战斗中全力以赴了!" + } + }, + "wallace": { + "encounter": { + "1": "你的气质变了,\n我能感觉到这一点。$现在,把你和你的宝可梦\n的力量展现给我看吧。$作为回礼,就由我和我的宝可梦\n演出一场水之幻影吧!" + }, + "victory": { + "1": "精彩。此刻,我能从你身上感觉到\n身为宝可梦训练家的可靠与高贵。$我真荣幸能遇到你和你的宝可梦。" + }, + "defeat": { + "1": "伟大的幻影!" + } + }, + "lorelei": { + "encounter": { + "1": "只要能让我用冰属性宝可梦,\n就绝对没人能赢得过我!\n能冻住对方可是很厉害的哦!$因为如果被冻住,你的宝可梦就无法动弹了!\n啊哈哈!你做好觉悟了吧!" + }, + "victory": { + "1": "你怎么敢!" + }, + "defeat": { + "1": "一旦你被冻结,你就什么都做不了。" + } + }, + "will": { + "encounter": { + "1": "我曾经环游世界,\n日以继夜地做着超能力宝可梦的修行之旅。$我会不断变强!没理由会在这里输掉!" + }, + "victory": { + "1": "……不会吧……" + }, + "defeat": { + "1": "就差一点。\n我想知道你缺少了什么。" + } + }, + "malva": { + "encounter": { + "1": "我的内心可是一直燃烧着呢。$燃烧着对你的怒火!" + }, + "victory": { + "1": "挑战者出色地击败了四天王之一,帕琦拉。" + }, + "defeat": { + "1": "真开心啊,能将你彻底粉碎!" + } + }, + "hala": { + "encounter": { + "1": "老哈拉让你放开嗓子!" + }, + "victory": { + "1": "我能感受到你在旅途中获得的力量。" + }, + "defeat": { + "1": "啊哈哈。多么有趣的战斗。" + } + }, + "rika": { + "encounter": { + "1": "我要对你手下留情,但……骗你的啦!$好好动脑!" + }, + "victory": { + "1": "不错,小子。" + }, + "defeat": { + "1": "啊哈哈哈哈!你真的很特别,小子!" + } + }, + "molayne": { + "encounter": { + "1": "我将队长的位置让给了我的表弟马玛内,\n但我对自己的能力很有信心。 $我的力量就像超新星一样!" + }, + "victory": { + "1": "我发现了一个有趣的训练师对手!" + }, + "defeat": { + "1": "啊哈哈。多么有趣的战斗。" + } + }, + "bruno": { + "encounter": { + "1": "我们将用势不可挡的力量磨灭你!呼哈!" + }, + "victory": { + "1": "为什么?我怎么会输?" + }, + "defeat": { + "1": "你可以随意挑战我,\n但结果永远不会改变!" + } + }, + "bugsy": { + "encounter": { + "1": "我是阿笔!\n对虫系宝可梦的熟悉不会输给任何人的!" + }, + "victory": { + "1": "哇,太棒了!\n你是个宝可梦专家!$我的研究还没有完成。\n好吧,你赢了。" + }, + "defeat": { + "1": "谢谢!多亏了我们的战斗,\n我的研究也取得了进展!" + } + }, + "koga": { + "encounter": { + "1": "哇哈哈哈哈!$宝可梦不仅仅是关于蛮力,拭目以待吧!" + }, + "victory": { + "1": "啊!你证明了自己!" + }, + "defeat": { + "1": "懂不懂要对忍者的技巧心神畏惧?" + } + }, + "bertha": { + "encounter": { + "1": "啊,让老婆婆看看你学到了什么?" + }, + "victory": { + "1": "好吧,亲爱的孩子,\n不得不说,那令人印象深刻。$你的宝可梦相信你并尽最大努力为你赢得胜利。$尽管我输了,\n我也止不住笑呢!" + }, + "defeat": { + "1": "哈哈哈!看来老婆婆我赢了!" + } + }, + "lenora": { + "encounter": { + "1": "那么,挑战者,让我来研究$你与你精心养育的宝可梦要如何战斗!" + }, + "victory": { + "1": "我关于你的理论是正确的。$你不仅仅是有天赋……你很努力!\n我向你致敬!" + }, + "defeat": { + "1": "啊哈哈!如果你输了,\n一定要分析原因,$并在下一场战斗中运用那些知识!" + } + }, + "siebold": { + "encounter": { + "1": "只要我活着,我将不断努力寻求终极美食…$以及和最强的对手战斗!" + }, + "victory": { + "1": "您的事迹,我志米铭记在心。" + }, + "defeat": { + "1": "我们的宝可梦战斗就像我灵魂的养料。\n它将让我继续前进。$这就是我将向你表示敬意的方式,\n感谢你在战斗中全力以赴!" + } + }, + "roxie": { + "encounter": { + "1": "准备好了吗!我要给你上一课!" + }, + "victory": { + "1": "够野的!你的想法比我的还要毒!" + }, + "defeat": { + "1": "嘿,拜托!认真点!\n你要加把劲啊!" + } + }, + "olivia": { + "encounter": { + "1": "没什么开场白。\n是时候和我丽姿,战斗了!" + }, + "victory": { + "1": "真的很可爱……你和你的宝可梦……" + }, + "defeat": { + "1": "嗯哼。" + } + }, + "poppy": { + "encounter": { + "1": "哦!你想和我进行宝可梦对战么?" + }, + "victory": { + "1": "呜哇?!嘛……" + }, + "defeat": { + "1": "耶!我做到了!我击~败~了~你!\n你可以来…打…复仇之战?$只要你想,随时来打复仇之战吧!" + } + }, + "agatha": { + "encounter": { + "1": "宝可梦是为战斗而生的! \n让我来告诉你什么是真正的战斗吧!" + }, + "victory": { + "1": "呵呵!你可真是了不起!" + }, + "defeat": { + "1": "额哈哈哈,真正的战斗就是该这样。" + } + }, + "flint": { + "encounter": { + "1": "希望你已经热身完毕,\n因为这里即将大爆炸!" + }, + "victory": { + "1": "不可思议!$你的动作如此火热,让我看起来温吞吞的!" + }, + "defeat": { + "1": "嗯?就这吗?\n我觉得你得再激情点。" + } + }, + "grimsley": { + "encounter": { + "1": "一无所有,\n或者,赢下所有!" + }, + "victory": { + "1": "一旦失败,\n就意味着失去一切……$下一次我要追寻胜利!" + }, + "defeat": { + "1": "如果有人赢了,\n和他对战的人就会输。" + } + }, + "caitlin": { + "encounter": { + "1": "当花儿绽开时、我便出现。\n成为你在等待的人…$你似乎同时具备实力和善意$我所寻找的是拥有卓越力量的对手…$请用出你的全力吧!" + }, + "victory": { + "1": "我和我的宝可梦学到了很多!非常感谢。" + }, + "defeat": { + "1": "我渴望以优雅的姿态取得胜利。" + } + }, + "diantha": { + "encounter": { + "1": "与你的宝可梦对战\n让你充满了未来的希望…$说真的,这让我更有活力地面对新的一天,确实如此!" + }, + "victory": { + "1": "拥有高尚灵魂的训练家和宝可梦的身姿,\n让我的心激烈地震颤…" + }, + "defeat": { + "1": "哦,太棒了!你觉得怎么样?\n我的队伍很酷吧~对吧?" + } + }, + "wikstrom": { + "encounter": { + "1": "年轻的挑战者,幸会!\n我乃是著名的钢铁之刃,公爵雁铠! $让我们开始战斗吧!预备!" + }, + "victory": { + "1": "辉煌!你与你尊贵的\n宝可梦之间的信任居然胜过了我!" + }, + "defeat": { + "1": "哦哦哦!这是怎么回事,\n我的心止不住地在震颤! $与如此有价值的对手的胜利\n让我的灵魂飞翔——我心翱翔!" + } + }, + "acerola": { + "encounter": { + "1": "对战只是找个乐子!来吧,我来会会你!" + }, + "victory": { + "1": "我……我说不出话!你是怎么做到的?!" + }, + "defeat": { + "1": "哈哈!真是吓人倒怪的胜利呀!" + } + }, + "larry_elite": { + "encounter": { + "1": "……你好,我是青木。$麻烦的是我还要兼任四天王。" + }, + "victory": { + "1": "好吧,我们翅膀下的疾风止于你这了啊…" + }, + "defeat": { + "1": "是时候和老板开会了。" + } + }, + "lance": { + "encounter": { + "1": "我一直在等你。让我来试试你有几斤几两。", + "2": "我知道你能走这么远。让我们开始吧。" + }, + "victory": { + "1": "被你拿下了啊。你太出色了!", + "2": "我从没想到会有另一个训练师打败我……$我很惊讶。" + }, + "defeat": { + "1": "就差一点。想再试一次吗?", + "2": "我没觉得你弱,别因此困扰。" + } + }, + "karen": { + "encounter": { + "1": "我是梨花,你想和我的恶属性宝可梦$来一场对决吗?", + "2": "我和你见过的那些人不一样。", + "3": "你组建了一支迷人的队伍。$我们的战斗应该会是场精彩的比赛。" + }, + "victory": { + "1": "不!我赢不了。你是怎么做到变得这么强的?", + "2": "我不会偏离我所选择的道路。", + "3": "冠军正期待与你见面。" + }, + "defeat": { + "1": "意料之中。", + "2": "嗯,还算有点意思。", + "3": "随时欢迎你来找我。" + } + }, + "milo": { + "encounter": { + "1": "看起来你显然很了解宝可梦。$这会是一场激烈的战斗!$如果我想赢,我得让我的宝可梦极巨化!" + }, + "victory": { + "1": "草的力量凋谢了…多么不可思议的挑战者!" + }, + "defeat": { + "1": "这必将让你大吃一惊。" + } + }, + "lucian": { + "encounter": { + "1": "请稍等,我正在读的书\n正要进入最精彩的部分…$英雄获得了一把神秘之剑,\n即将面临最后的考验…啊,算了。$既然你能走到这一步,\n我就不说这些了,和你战斗吧。$让我看看你是否\n能像我书中的主角一样荣耀!" + }, + "victory": { + "1": "我明白了…看来你把我逼入了绝境。" + }, + "defeat": { + "1": "我得维护我的名誉。" + } + }, + "drasna": { + "encounter": { + "1": "你很厉害吧,\n而且相当相当地厉害呢。$我很高兴,能和这样的对手交手,\n就能更好地培养宝可梦们了。" + }, + "victory": { + "1": "哎呀,就这么结束了,\n不好意思,可以的话欢迎再来。" + }, + "defeat": { + "1": "怎么会这样?" + } + }, + "kahili": { + "encounter": { + "1": "那么,既然来了……\n要不来看看今天的风更青睐谁?$是你……还是我?" + }, + "victory": { + "1": "让我这个四天王都感到沮丧,$看来你的力量货真价实。" + }, + "defeat": { + "1": "那真是一记好球!" + } + }, + "hassel": { + "encounter": { + "1": "让你亲身感受一下什么叫做猛烈的对战气息吧!" + }, + "victory": { + "1": "这次幸运之神对你微笑了,但是……$谁知道你下次还会不会这么幸运。" + }, + "defeat": { + "1": "那挺厉害的吧!" + } + }, + "blue": { + "encounter": { + "1": "能走到这里,你一定非常优秀。" + }, + "victory": { + "1": "我只输给过他,现在又是你……?$你问他是谁?哈哈哈……" + }, + "defeat": { + "1": "看吧?我的实力就是我来到这里的原因。" + } + }, + "piers": { + "encounter": { + "1": "准备好和我的队伍来个大狂欢吧!$尖钉镇,是时候嗨起来了!" + }, + "victory": { + "1": "我和我的队伍已经尽力了。$找个时间再来对战吧……" + }, + "defeat": { + "1": "我的喉咙因为呼喊而变得沙哑……$但这是一场激动人心的战斗!" + } + }, + "red": { + "encounter": { + "1": "…!" + }, + "victory": { + "1": "…?" + }, + "defeat": { + "1": "…!" + } + }, + "jasmine": { + "encounter": { + "1": "哦……你的宝可梦给人印象深刻。$我想我会享受这场战斗的。" + }, + "victory": { + "1": "你真的很强。我也得加把劲了。" + }, + "defeat": { + "1": "我从没想到会赢。" + } + }, + "lance_champion": { + "encounter": { + "1": "我依旧是冠军,所以我不会留情的。" + }, + "victory": { + "1": "这就是新冠军的崛起。" + }, + "defeat": { + "1": "我成功捍卫了冠军的头衔。" + } + }, + "steven": { + "encounter": { + "1": "告诉我…你在和宝可梦的旅途过程中看到了什么?$邂逅了那么多的训练师,\n你都会有什么样的感受呢?$在这丰饶的大地上旅行…\n有没有唤醒你内在的某种东西?$你不如就用一场对战来告诉我你心中的答案吧。$我也会和我的宝可梦用这种方式\n将我们所知道的告诉你的!" + }, + "victory": { + "1": "没想到连我这个联盟冠军\n都败在你的手上了呢…" + }, + "defeat": { + "1": "正如我所期待的。谢谢!" + } + }, + "cynthia": { + "encounter": { + "1": "我,竹兰,接受你的挑战!\n我是不会手软的!" + }, + "victory": { + "1": "无论对战多么有趣,\n它总会有结束的时候……" + }, + "defeat": { + "1": "即使你输了,\n也永远不要失去你对宝可梦的热爱。" + } + }, + "iris": { + "encounter": { + "1": "你知道吗?\n我真的很期待和强大的训练师进行认真的战斗!$我的意思是,来吧!\n到达这里的是那些渴望胜利的训练师,$他们与经历过无数艰难\n战斗的宝可梦一起战斗!$如果我和那样的人战斗,\n不仅我会变得更强,我的宝可梦也会!$我们也会更好地了解彼此!\n好!做好准备吧!$我是艾莉丝,宝可梦联盟冠军,\n我,将打败你!" + }, + "victory": { + "1": "啊……我尽力了,但我们输了……" + }, + "defeat": { + "1": "耶!我们赢了!" + } + }, + "hau": { + "encounter": { + "1": "我想知道,训练师是否会根据他们是\n来自温暖地区还是寒冷地区而以不同的方式战斗。$让我们来测试一下!" + }, + "victory": { + "1": "那太棒了!我觉得我现在有点了解你的感觉了!" + }, + "defeat": { + "1": "老铁,这才叫战斗!" + } + }, + "geeta": { + "encounter": { + "1": "我决定再试一次。$来吧…让我看看你的训练成果。" + }, + "victory": { + "1": "我期待着你的成就!" + }, + "defeat": { + "1": "怎么,这就结束了?" + } + }, + "nemona": { + "encounter": { + "1": "耶!我太兴奋了!让我们稍微放轻松!" + }, + "victory": { + "1": "好吧,太糟了,但我还是玩得很开心!$下次我一定会赢你!" + }, + "defeat": { + "1": "好吧,那是一场很棒的战斗!$肯定是会有收获的啦。" + } + }, + "leon": { + "encounter": { + "1": "来享受一段冠军时刻吧!" + }, + "victory": { + "1": "我的冠军生涯结束了……$但这是多么美好的冠军时刻啊!$谢谢你给了我最精彩的一战!" + }, + "defeat": { + "1": "名副其实的冠军时刻!" + } + }, + "whitney": { + "encounter": { + "1": "嘿!你不认为宝可梦超级可爱吗?" + }, + "victory": { + "1": "哇啊!哇啊!你太坏了!" + }, + "defeat": { + "1": "就是这样!" + } + }, + "chuck": { + "encounter": { + "1": "哈!你想挑战我?你是勇敢还是无知?" + }, + "victory": { + "1": "你很强!能不能收我为徒?" + }, + "defeat": { + "1": "搞定。你明白我比你强得多了吗?" + } + }, + "katy": { + "encounter": { + "1": "不要放松警惕,除非你想被虫丝绊倒哦!" + }, + "victory": { + "1": "我可爱的宝可梦们都像苍蝇一样坠落了!" + }, + "defeat": { + "1": "开饭啦,我可爱的彩粉蝶!" + } + }, + "pryce": { + "encounter": { + "1": "年轻不代表能获得胜利!经验才是关键。" + }, + "victory": { + "1": "无与伦比!赢得完美,试着不要忘记你现在的感受。" + }, + "defeat": { + "1": "正如我所料。" + } + }, + "clair": { + "encounter": { + "1": "你知道我是谁吗?知道还敢挑战我?" + }, + "victory": { + "1": "我想知道以你现在的水平能走多远,有趣。" + }, + "defeat": { + "1": "就是这样。" + } + }, + "maylene": { + "encounter": { + "1": "我现在要挑战你,我不会保留任何实力。$请准备好战斗!" + }, + "victory": { + "1": "是我输了…" + }, + "defeat": { + "1": "太棒了。" + } + }, + "fantina": { + "encounter": { + "1": "你来挑战吧。我会胜利。$这就是家缘市的道馆馆主。" + }, + "victory": { + "1": "你是最强的,我认输了。" + }, + "defeat": { + "1": "我非常,非常高兴!" + } + }, + "byron": { + "encounter": { + "1": "和我儿子瓢太一样的年轻人啊!$我相信培养年轻人\n关系到宝可梦光明的未来!$为此就让我来成为\n年轻人必须跨越的堡垒吧!" + }, + "victory": { + "1": "唔!我千锤百炼的宝可梦!" + }, + "defeat": { + "1": "哈哈哈哈!怎么样!我千锤百炼的宝可梦!" + } + }, + "olympia": { + "encounter": { + "1": "战斗是决定命运的古老传统。让我们开始吧!" + }, + "victory": { + "1": "创造你自己的道路。$不要让任何东西阻挡你的路、你的命运、你的未来。" + }, + "defeat": { + "1": "我们的道路现在已经清晰了。" + } + }, + "volkner": { + "encounter": { + "1": "能留到最后的训练家想必肯定是很强的…$希望你会是能让我回忆起\n宝可梦对战乐趣的训练家!" + }, + "victory": { + "1": "我输了…$你的心意,宝可梦的不顾一切。$战斗的时候就让我热血沸腾。" + }, + "defeat": { + "1": "完全没感觉…$和我希望的完全不一样!" + } + }, + "burgh": { + "encounter": { + "1": "唔…我有预感,\n只要赢了这场战斗就能画出更好的画来…$嗯!战斗充满了幻象!那么,马上开始吧。", + "2": "当然,我对我所有的宝可梦都相当骄傲! $现在…让我们马上开始吧!" + }, + "victory": { + "1": "结束了吗?我的女神抛弃我了吗?", + "2": "啊唔,输了……你还真是很强啊。" + }, + "defeat": { + "1": "唔啊……好……好美啊!", + "2": "偶尔也有一些不是很好看的胜利,$但只要努力了,\n不管怎么样的战斗,都是很美丽的。" + } + }, + "elesa": { + "encounter": { + "1": "最后一击!\n在确信这一点的时候全身会流淌过电流!$为追求这个快感,\n我要用可爱的宝可梦们让你头晕眼花。" + }, + "victory": { + "1": "本想让你头晕的,\n结果我倒反被你电到了。" + }, + "defeat": { + "1": "感觉还不够啊……下次能使出全力来吗?" + } + }, + "skyla": { + "encounter": { + "1": "终于到决战了!\n这是决定顶点的宝可梦对战吧?$我最喜欢顶点了!\n在高的地方能看到很远很远!$好了!就让我和你好好地玩一场吧!" + }, + "victory": { + "1": "和你的战斗让我更强了……谢谢。" + }, + "defeat": { + "1": "不管是赢了还是输了,战斗都能得到一些东西。" + } + }, + "brycen": { + "encounter": { + "1": "有其他的人和宝可梦在一起,$这份支持会让自己更强…\n让我来给你展示一下这样的强大吧!" + }, + "victory": { + "1": "你和你的宝可梦!配合得天衣无缝!\n华丽的友情!" + }, + "defeat": { + "1": "尝试极限!锻炼!" + } + }, + "drayden": { + "encounter": { + "1": "现在我寻求的是\n能让我看到光明未来的年轻训练家。$你有多少实力,就让我用我的经验,\n我对宝可梦倾注的爱来验证吧!" + }, + "victory": { + "1": "失败后涌现的这灼热的意志…\n该怎么说呢…" + }, + "defeat": { + "1": "啊啊啊!你的实力就这种程度吗!" + } + }, + "grant": { + "encounter": { + "1": "我只期待一件事。. $通过超越彼此,\n我们找到通往更高境界的道路。" + }, + "victory": { + "1": "你是一堵我无法逾越的墙!" + }, + "defeat": { + "1": "不要放弃。\n这就是人生的真谛。$大道至简。" + } + }, + "korrina": { + "encounter": { + "1": "小女子科尔尼来大显身手啦!" + }, + "victory": { + "1": "正因为有你,\n才能让你的宝可梦进化!" + }, + "defeat": { + "1": "好劲爆的战斗呀!" + } + }, + "clemont": { + "encounter": { + "1": "哦!我很高兴我们能见面!" + }, + "victory": { + "1": "你对战斗的热情激励了我!" + }, + "defeat": { + "1": "看来我的训练师成长强化机-马克2号,\n真的起作用了!" + } + }, + "valerie": { + "encounter": { + "1": "哦,这不是一个年轻的训练师吗……\n能这样遇见你真是太好了。 $我想你已经获得了这场战斗的资格,\n作为对你努力的奖励。 $难以捉摸的妖精可能看起来像微风一样脆弱,\n像花朵一样精致,但很坚强。" + }, + "victory": { + "1": "我希望明天你也能找到一些值得会心微笑的事物……" + }, + "defeat": { + "1": "哦,天哪,这太遗憾了……" + } + }, + "wulfric": { + "encounter": { + "1": "你知道吗?\n我们都说战斗能学到东西,羁绊之类的,$但实际上,我这么做只是因为有趣。 $谁在乎那些华而不实的东西?\n我们来战斗吧!" + }, + "victory": { + "1": "杰出!我像冰山一样坚硬,但你彻底击溃了我!" + }, + "defeat": { + "1": "和我干的结果就是这样!" + } + }, + "kabu": { + "encounter": { + "1": "每个训练师和宝可梦都在努力追求胜利。$但这意味着你的对手也在努力赢得胜利。$最终,比赛是由哪一方\n能够发挥出他们真正的潜力来决定的。" + }, + "victory": { + "1": "我很高兴今天能和你战斗!" + }, + "defeat": { + "1": "这是我感觉自己的成长的好方式!" + } + }, + "bea": { + "encounter": { + "1": "你有没有一种不可动摇的精神,\n受到什么攻击都安如磐石? $就让我来试试吧?" + }, + "victory": { + "1": "我感受到了你的宝可梦\n在战斗中被你指挥时的战斗之魂。" + }, + "defeat": { + "1": "每个人都希望能有一场这样的好比赛。" + } + }, + "opal": { + "encounter": { + "1": "让我看看你和你的宝可梦的表现如何!" + }, + "victory": { + "1": "你不够粉嫩呀,\n但你是一个优秀的训练师,$还拥有着优秀的宝可梦。" + }, + "defeat": { + "1": "对你来说太惨了,我觉得。" + } + }, + "bede": { + "encounter": { + "1": "就让我来证明你有多可怜,我有多强大。" + }, + "victory": { + "1": "我懂了……好吧。其实我还没拿出全力呢。" + }, + "defeat": { + "1": "我觉得我打的不错。" + } + }, + "gordie": { + "encounter": { + "1": "好了,我们来做个了结吧!" + }, + "victory": { + "1": "我只想要挖一个洞爬进去……$好吧,现在更像是掉了进去。" + }, + "defeat": { + "1": "像往常一样战斗,胜利就会随之而来!" + } + }, + "marnie": { + "encounter": { + "1": "事实上,言而总之… \n人家自己也想当冠军呀! $所以别认为我在针对你!" + }, + "victory": { + "1": "好吧,我还是输了……\n但是我看到了很多你和你宝可梦的优点哦" + }, + "defeat": { + "1": "希望你喜欢我们的战斗策略。" + } + }, + "raihan": { + "encounter": { + "1": "我打算击败冠军,赢得锦标赛,\n并向世界证明奇巴纳大人有多强!" + }, + "victory": { + "1": "就算输了我也好帅。$真是罪孽深重啊。$看来得再来张自拍了!" + }, + "defeat": { + "1": "为了纪念此刻,来张自拍吧!" + } + }, + "brassius": { + "encounter": { + "1": "你应该准备好了吧,\n一起完成这美丽的艺术作品吧!" + }, + "victory": { + "1": "啊……前卫!" + }, + "defeat": { + "1": "我将立即开始新的创作!" + } + }, + "iono": { + "encounter": { + "1": "谁在奇述!是我奇树!\n做好准备了吗!$...$直播开始!\n今天的小挑战者有多强?$奇树不知道哦~\n让我们一起来看看吧!" + }, + "victory": { + "1": "你的闪耀如1000万伏特!朋友!" + }, + "defeat": { + "1": "奇树奇树捕获你的眼球!" + } + }, + "larry": { + "encounter": { + "1": "归根结底,普普通通就是最强。" + }, + "victory": { + "1": "哼,给我上了一道“战败”。" + }, + "defeat": { + "1": "下班打卡,走了" + } + }, + "ryme": { + "encounter": { + "1": "宝贝, 一起! \n摇滚摇到骨子里!" + }, + "victory": { + "1": "你好酷!我佩服!\n我的灵魂为你哭!" + }, + "defeat": { + "1": "再会, 宝贝!" + } + }, + "grusha": { + "encounter": { + "1": "我保证我宝可梦的力量\n会让你感到寒冷彻骨!" + }, + "victory": { + "1": "你燃烧的热情……老实说,我有点喜欢。" + }, + "defeat": { + "1": "你没有升温。" + } + }, + "marnie_elite": { + "encounter": { + "1": "你已经走到这一步了?$哼~ 看看你能不能对付我的宝可梦!", + "2": "我将全力以赴, 别觉得我会手下留情哦~" + }, + "victory": { + "1": "不敢相信…我输掉了… $但是你确实赢得好,干得漂亮捏~", + "2": "看来我还要多多学习呀,\n不过你打的很不错哦~" + }, + "defeat": { + "1": "你打得不错,但是我更胜一筹!$祝你下次好运啦~", + "2": "看来我的练习有所回报了。\n感谢一战!" + } + }, + "nessa_elite": { + "encounter": { + "1": "海流正在朝着对我有利的方向转变。$准备好被卷走了吗?", + "2": "让我们在这场战斗中掀起波澜!$我希望你做好准备!" + }, + "victory": { + "1": "你完美地渡过了这片水域......干得好!", + "2": "看来我现在无法与你匹敌。干得好!" + }, + "defeat": { + "1": "水总能找到出路。\n真是爽快的一战!", + "2": "你打得很好,\n但海洋的力量是不可阻挡的!" + } + }, + "bea_elite": { + "encounter": { + "1": "做好准备!我的斗志熊熊燃烧!", + "2": "让我们看看你是否能跟上我永不停歇的节奏!" + }, + "victory": { + "1": "你的实力......令人印象深刻。\n你真的值得这场胜利。", + "2": "我以前从未感受过这种强度。\n太棒了!" + }, + "defeat": { + "1": "我的高强度训练又带来胜利了!\n干得好!", + "2": "你有实力,但我的训练更努力。\n精彩的战斗!" + } + }, + "allister_elite": { + "encounter": { + "1": "黑暗降临...你准备好面对你的恐惧了吗?", + "2": "让我们看看你能否应对我所操控的黑暗。" + }, + "victory": { + "1": "你已经驱散了阴影......\n暂时。干得很好。", + "2": "你的光芒刺穿了我的黑暗。干得好。" + }, + "defeat": { + "1": "黑影在轻语...\n你的力量还不够。", + "2": "黑暗获胜了......\n也许下次你会看到光明。" + } + }, + "raihan_elite": { + "encounter": { + "1": "虽然没法打败丹帝夺冠,\n让我觉得很遗憾……$但是有你这家伙当对手,\b倒是也还不赖啊!", + "2": "准备好面对龙之风暴!" + }, + "victory": { + "1": "你的气势就像暴风一样,\n连我都甘拜下风了!", + "2": "你完美地驾驭了我的风暴……打得好!" + }, + "defeat": { + "1": "又一场龙之风暴袭来,又一场胜利!打得好!", + "2": "你被我的龙之风暴卷入了!祝你下次好运!" + } + }, + "alder": { + "encounter": { + "1": "准备好和合众最强的训练家交手吧!" + }, + "victory": { + "1": "精彩!简直就是天下无双!" + }, + "defeat": { + "1": "战斗结束后,我的心像是吹过了温和的风……\n$真是厉害!" + } + }, + "kieran": { + "encounter": { + "1": "我的努力让我越来越强!\n$所以我不会输。" + }, + "victory": { + "1": "不可能……\n$真是一场有趣又激动人心的战斗啊!" + }, + "defeat": { + "1": "哇塞,好一场战斗!\n$你得多练练了。" + } + }, + "rival": { + "encounter": { + "1": "@c{smile}嘿,我在找你呢!我知道你急着上路,\n但至少说个再见吧…$@c{smile_eclosed}所以你终于要开始追逐梦想了?\n我几乎不敢相信。$@c{serious_smile_fists}来都来了,来一场对战怎么样?\n毕竟,我想看看你是不是准备周全了。$@c{serious_mopen_fists}不要手下留情,我想让你全力以赴!" + }, + "victory": { + "1": "@c{shock}哇…你彻底击败了我。\n你是真初学者吗?$@c{smile}也许是靠点运气,但是…\n谁知道,你可能真的能一路走下去。$顺便说一下,博士让我给你这些东西。它们看起来可牛了。$@c{serious_smile_fists}祝你好运!" + } + }, + "rival_female": { + "encounter": { + "1": "@c{smile_wave}你在这儿啊!我到处找你呢!$@c{angry_mopen}你忘了和你最好的朋友说再见了吗?$@c{smile_ehalf}你要去追逐梦想了,对吧?\n从今天开始,是不是…$@c{smile}不管怎样,忘了我的事就原谅你吧,\n但有个条件。@c{smile_wave_wink}你必须和我对战!$@c{angry_mopen}全力以赴!\n你也不想让你的冒险在开始之前就结束了,对吧?" + }, + "victory": { + "1": "@c{shock}你刚开始就已经这么强了?!@d{96}$@c{angry}你是不是开了?$@c{smile_wave_wink}只是开个玩笑啦!@d{64} @c{smile_eclosed}我输地心服口服了…\n我感觉你出去挺有天赋的。$@c{smile}顺便说一下,博士想让我给你一些东西。\n希望它们能帮上忙!$@c{smile_wave}像往常一样尽力而为!\n我相信你!" + } + }, + "rival_2": { + "encounter": { + "1": "@c{smile}嘿,你也在这里吗?$@c{smile_eclosed}一路过关斩将,是吧?$@c{serious_mopen_fists}我知道看起来好像我尾随着你来到这里,\n怎么可能啦。$@c{serious_smile_fists}说真的,自从你在老家打败我后,\n我就一直很渴望再比一场。$我自己也进行了很多训练,\n所以这次我肯定会好好打一场。$@c{serious_mopen_fists}不要手下留情,就像以前一样!$让我们开始吧!" + }, + "victory": { + "1": "@c{neutral_eclosed}哦。我过于自信了。$@c{smile}不过没关系。我猜到可能会这样。$@c{serious_mopen_fists}这只意味着我下次需要更努力!$$@c{smile}呃,不是特意帮你,我正好有多余的这个,\n我觉得你可能想要。$$@c{serious_smile_fists}不过这次之后别指望再有了!$我不能一直给我的对手优势。$@c{smile}反正,保重!" + } + }, + "rival_2_female": { + "encounter": { + "1": "@c{smile_wave}哦,真巧,在这里遇见你。\n看来你还没输过嘛。@c{angry_mopen}哈……好家伙!$@c{angry_mopen}我知道你在想什么,\n不,我才不会跟踪你什么呢。 @c{smile_eclosed}我只是碰巧在附近。$@c{smile_ehalf}我为你感到高兴,但我只想让你知道\n有时输了是可以接受的。$@c{smile}我们从错误中学到的东西\n往往比我们一直成功时学到的还要多。$@c{angry_mopen}无论如何,我为了我们的复赛已经努力训练了\n所以你最好全力以赴!" + }, + "victory": { + "1": "@c{neutral}我……没打算会输来着……$@c{smile}嗷……好吧。看来我要再更加努力训练了!$@c{smile_wave}我还给你带了个这个$@c{smile_wave_wink}不用谢我哦~.$@c{angry_mopen}不过,这是最后一个啦!\n你可别想再从我这赚小便宜了~$@c{smile_wave}要保重哦!" + }, + "defeat": { + "1": "输了有时候也不要紧的…" + } + }, + "rival_3": { + "encounter": { + "1": "@c{smile}嘿,看看这是谁!好久不见啊。$@c{neutral}你……还是没输过?哈…$@c{neutral_eclosed}这有点……不太对劲。$没有你一起,回家的感觉有很不一样。$@c{serious}虽然我知道这挺别扭的,但我就直说了。$@c{neutral_eclosed}我觉得你有点儿难以理喻。$@c{serious}没有人能够战无不胜。$失败乃成功之母。$@c{neutral_eclosed}你已经赢得了够好的成绩,\n但前面道阻且长,只会愈发艰难。 @c{neutral}你做好准备了没?$@c{serious_mopen_fists}如果做好了,证明给我看吧。" + }, + "victory": { + "1": "@c{angry_mhalf}这太离谱了……我几乎从没停下训练……$我们之间的差距怎么还是这么大?" + } + }, + "rival_3_female": { + "encounter": { + "1": "@c{smile_wave}好久不见!还没输过,对吧。$@c{angry}我觉得你点烦了。@c{smile_wave_wink}开玩笑啦!$@c{smile_ehalf}但说真的,你现在不想家吗?\n不想…我吗?$我……我的意思是,我们真的很想你。$@c{smile_eclosed}我支持你的一切,包括你的梦想。\n但现实就是你早晚会经历失败。$@c{smile}当你失败的时候,我想像往常一样陪在你身边。$@c{angry_mopen}现在,给你看看我变得多强了吧!" + }, + "victory": { + "1": "@c{shock}都这样了……还是不够吗?$这样下去,你就永远不会回来了……" + }, + "defeat": { + "1": "你尽力了,现在让我们回家吧。" + } + }, + "rival_4": { + "encounter": { + "1": "@c{neutral}嘿。$我不会对你说什么拐弯抹角的客套话。$@c{neutral_eclosed}我来,就是为了赢,简单明了。$@c{serious_mhalf_fists}我将所有时间都投入到训练中,\n掌握了如何发挥我的潜力。$@c{smile}当你削减掉不必要的睡眠和社交后,\n你会得到很多额外的时间。$@c{serious_mopen_fists}但在我获胜之前,这些都不重要了。$@c{neutral_eclosed}我甚至已经到达了战无不败的境地。$@c{smile_eclosed}我觉得你的思路倒是也没毛病。$@c{angry_mhalf}失败是属于弱者的,\n我已经不再软弱了。$@c{serious_mopen_fists}准备好吧。" + }, + "victory": { + "1": "@c{neutral}你…@d{64} 你是人吗?" + } + }, + "rival_4_female": { + "encounter": { + "1": "@c{neutral}是我哦!没又把我忘了吧……是吗?$@c{smile}你应该为自己走了这么远感到骄傲。恭喜你!$但看来你的旅程到此为止了。$@c{smile_eclosed}你唤醒了我体内一些我从未有过的东西。\n就像我现在满脑子除了训练还是训练。$@c{smile_ehalf}我几乎已经没空吃饭睡觉了,\n我没日没夜训练我的宝可梦,每次都能变得更强。$@c{neutral}事实上,我……几乎不认识自己了。$现在,我终于达到了巅峰。\n我感觉我已经战无不胜了。$而且你知道吗?这一切都是因为你。$@c{smile_ehalf}我不知道到底是该感谢你还是恨你。$@c{angry_mopen}做好准备…" + }, + "victory": { + "1": "@c{neutral}你…@d{64} 你是人吗?" + }, + "defeat": { + "1": "@c{smile}你应该为自己走了这么远感到骄傲。" + } + }, + "rival_5": { + "encounter": { + "1": "@c{neutral}…" + }, + "victory": { + "1": "@c{neutral}…" + } + }, + "rival_5_female": { + "encounter": { + "1": "@c{neutral}…" + }, + "victory": { + "1": "@c{neutral}…" + }, + "defeat": { + "1": "$@c{smile_ehalf}…" + } + }, + "rival_6": { + "encounter": { + "1": "@c{smile_eclosed}又见面了。$@c{neutral}我花了点时间思考反思\n有理由说明为什么这一切都显得如此奇妙。$@c{neutral_eclosed}你所追逐的梦想,我想击败你的决心…$这都是某种庞大使命的一部分。$@c{serious}这不仅仅是关于我和你… 而是关于这个世界, @c{serious_mhalf_fists}我的使命就是将你推向极限。$@c{neutral_eclosed}我是否达成了那个使命,我说不上来,但我已尽我所能。$@c{neutral}我们最终到达的这个地方看起来很可怕\n 然而不知何故,我心中毫无畏惧,好像我早就来过这里。$@c{serious_mhalf_fists}你也有同样的感觉,对吧?$@c{serious}……这里好像有什么东西在呼唤我。\n这是世界早已记录的一切。$那些我们经历过的时光,那些记忆犹新的过去,\n其实只是遥远的回忆。$@c{neutral_eclosed}谁能保证它们是否真的发生过。$@c{serious_mopen_fists}你必须继续前进,不然的话,这一切将永无止境。\n这件事而只有你能办成。$@c{serious_smile_fists}我不清楚这一切意味着什么,但我知道……$@c{serious_mopen_fists}如果现在你不能就此击败我,\n你将毫无机会可言。" + }, + "victory": { + "1": "@c{smile_eclosed}看来我的使命在这里已经完成了。\n我想让你答应我一件事。$@c{smile}在你拯救世界之后,要回家。" + } + }, + "rival_6_female": { + "encounter": { + "1": "@c{smile_ehalf}又只有我们两个人了。$@c{smile_eclosed}你知道吗,我在心里想啊想,\n想了好久……$@c{smile_ehalf}这一切背后是有什么原因吗,\n为什么一切现在看起来都这么奇怪……$@c{smile}你有你的梦想,而我内心有这个抱负……$我不禁感觉这一切背后有一个更庞大的力量,$掌控者我们所做的一切,你和我之间。$@c{smile_eclosed}我想我注定要推动你……到你的极限。$@c{smile_ehalf}我不清楚我是否一直做得很好,\n但到现在为止,我已经尽力了。$这个奇怪而可怕的地方……\n一切看起来都那么清晰……$这是世界早已记录的一切。$@c{smile_eclosed}我好像记不清我们一起度过的日子了。$@c{smile_ehalf}那些回忆到底是真的吗?\n怎么感觉这么久远……$@c{angry_mopen}你得继续前进,不然的话,这一切将永无止境。\n你是唯一能做到这件事的。$@c{smile_ehalf}我……不知道这一切意味着什么……\n但我明白$@c{neutral}如果你现在不能就此击败我,\n你将毫无机会可言。" + }, + "victory": { + "1": "@c{smile_ehalf}我……\n我想我完成了我的使命……$@c{smile_eclosed}答应我……在你拯救世界之后\n……要……平安到家。$@c{smile_ehalf}……谢谢你。" + } + } +} diff --git a/src/locales/zh_CN/dialogue.ts b/src/locales/zh_CN/dialogue.ts deleted file mode 100644 index 29afb56c40e..00000000000 --- a/src/locales/zh_CN/dialogue.ts +++ /dev/null @@ -1,2703 +0,0 @@ -import {DialogueTranslationEntries, SimpleTranslationEntries} from "#app/interfaces/locales"; - -// Dialogue of the NPCs in the game when the player character is male (or unset) -export const PGMdialogue: DialogueTranslationEntries = { - "youngster": { - "encounter": { - 1: "嘿,想来对战吗?", - 2: "你也是新人训练师吗?", - 3: "嘿,我之前没见过你。我们来对战吧!", - 4: "我刚输了,所以我正在寻找更多的宝可梦。$等等!你看起来很弱!\n来吧,我们对战吧!", - 5: "我们见过面吗?我记不太清了。$嗯,不管怎样,很高兴见到你!", - 6: "好的!我们上吧!", - 7: "好的!我来啦!我会向你展示我的实力!", - 8: "嚯嚯嚯...我会向你展示我的宝可梦有多厉害!", - 9: "不要浪费时间打招呼。你准备好了就放马过来!", - 10: "别掉以轻心,$否则你可能会被小朋友打到哭鼻子哦。", - 11: "我精心培养了我的宝可梦。不许你伤害它们!", - 12: "恭喜你成功了!从这以后可不轻松哦。", - 13: "战斗永无止境!欢迎来到没有尽头的世界!", - }, - "victory": { - 1: "哇!你很强!", - 2: "我根本没机会赢,对吧?", - 3: "我会等长大了再来打败你!", - 4: "呃。我没有更多宝可梦了。", - 5: "不可能…不可能!我怎么可能又输了…", - 6: "不!我输了!", - 7: "哇!你真是太不可思议了!我既惊讶又钦佩!", - 8: "这怎么…怎么可能…$明明我和我的宝可梦是最强大的…", - 9: "下次我不会输了!我们找时间再对战吧!", - 10: "天哪!你看不出我还只是个小孩子吗!$你那样全力以赴太赖了!", - 11: "你的宝可梦更棒啊!和我交换吧!", - 12: "我之前有点上头,我说了什么来着?", - 13: "啊哈哈!就是这样!$对!你已经熟悉这个世界了!", - } - }, - "lass": { - "encounter": { - 1: "我们来对战吧,好吗?", - 2: "你看起来像是个新人训练师。我们来战斗吧!", - 3: "我不认识你。来对战怎么样?", - 4: "让我们来进行一场有趣的宝可梦对战吧!", - 5: "我会向你展示如何真正使用宝可梦!", - 6: "一场认真的对战从始于认真的开场白!$你确定你准备好了吗?", - 7: "花无重开日,人无再少年。$你在对战中只有一次机会。$很快,你就只能活在回忆中了。", - 8: "你最好对我手下留情,好吗?$当然我会认真对战的!", - 9: "学校很无聊,我无事可做。$*哈欠*…我只是来对战打发时间。", - }, - "victory": { - 1: "那真是令人印象深刻!我还有很多要学习。", - 2: "我没想到你会这么轻易地打败我…", - 3: "我希望有一天,我们能再进行一场对战。", - 4: "那真是场非常有趣的对战!$你让我精疲力尽了…", - 5: "你给我上了一课!你真是太棒了!", - 6: "说真的,我输了。$这,怎么说,真的好难过,但你也真的很厉害。", - 7: "我不需要像这样的记忆。删除记忆中…", - 8: "嘿!我告诉过你要对我手下留情!$不过,当你认真的时候,你真的很酷。", - 9: "实际上,我开始厌倦对战了…$一定有新的事情可以做…", - } - }, - "breeder": { - "encounter": { - 1: "听话的宝可梦,自私的宝可梦…$宝可梦有独特的性格呢。", - 2: "尽管我出生贫寒,但我的宝可梦培养的很好。", - 3: "嗯,你有没有管教你的宝可梦?$过度溺爱是不好的。", - }, - "victory": { - 1: "对每个宝可梦因材施教是很重要的。", - 2: "不像一无是处的我…这些宝可梦都很优秀。", - 3: "过度的赞美会宠坏宝可梦和人。", - }, - "defeat": { - 1: "即使输了,也不应该对你的宝可梦发火。", - 2: "相当好的宝可梦,对吧?我很会养东西。", - 3: "无论你多么爱你的宝可梦,$你仍要在它没做好时管教它们。", - } - }, - "breeder_female": { - "encounter": { - 1: "宝可梦永远不会背叛你。$它们会回报你对它们的爱。", - 2: "要我教教你训练优秀宝可梦的技巧吗?", - 3: "特别的宝可梦有特别的培育技巧。", - }, - "victory": { - 1: "呃…事情不应该是这样的。$我是不是用错了能量方块?", - 2: "这怎么会发生在我的宝可梦身上…$你给你的宝可梦喂了什么?", - 3: "如果我输了,我告诉你我只是在消磨时间。$你根本不会伤害到我的自尊心。", - }, - "defeat": { - 1: "这证明了我的宝可梦已经接受了我的爱。", - 2: "训出好宝可梦的真正技巧是捉到好的宝可梦。", - 3: "宝可梦的强弱取决于你的饲养方式。", - } - }, - "fisherman": { - "encounter": { - 1: "啊!你让我错过了一次咬钩!$你打算怎么办?", - 2: "走开!你吓跑了宝可梦!", - 3: "让我看看你能否赢得胜利!", - }, - "victory": { - 1: "算了吧。", - 2: "下一次,我将卷土重来,凯旋而归!", - 3: "我想这次我低估了海流。", - }, - }, - "fisherman_female": { - "encounter": { - 1: "哇!我钓到了一条大鱼!", - 2: "线已收好,准备提竿!", - 3: "准备制造波浪!", - }, - "victory": { - 1: "我会带着更强大的鱼钩回来。", - 2: "下次我会赢得胜利。", - 3: "我只是在为回归磨利我的鱼钩!", - }, - }, - "swimmer": { - "encounter": { - 1: "是时候潜水了!", - 2: "让我们一起乘风破浪,赢得胜利!", - 3: "该一鸣惊人了!", - }, - "victory": { - 1: "沉浸在失败中!", - 2: "失败的波浪!", - 3: "后浪死在沙滩上,我猜。", - }, - }, - "backpacker": { - "encounter": { - 1: "收拾行李,开始游戏!", - 2: "让我看看你是否能跟上!", - 3: "全副武装,挑战者!", - 4: "我花了20年时间试图找到自己……但我在哪里?", - }, - "victory": { - 1: "这次绊倒了!", - 2: "哦,我觉得我迷路了。", - 3: "死路!", - 4: "等一下!嘿!你不知道我是谁吗?", - }, - }, - "ace_trainer": { - "encounter": { - 1: "你看起来挺自信的。", - 2: "你的宝可梦…… 让我看看……", - 3: "因为我是王牌训练师,人们认为我很强。", - 4: "你知道成为王牌训练师需要什么吗?", - }, - "victory": { - 1: "是的…… 你的宝可梦很棒……", - 2: "什么?!我是战斗天才啊!", - 3: "理所应当,你才是主角!", - 4: "好好好!你可以成为王牌训练师!", - }, - "defeat": { - 1: "我将把我的身体和灵魂全都奉献给宝可梦对战!", - 2: "一切都在我的预料之中… \n没有什么好惊讶的…", - 3: "我觉得我长大后有点玻璃心,$你太压力我我会跨的……", - 4: "我当然很强大,不会输。$而且重要的是我要优雅地赢。", - } - }, - "parasol_lady": { - "encounter": { - 1: "是时候用优雅和从容来为战斗添彩了!", - }, - "victory": { - 1: "我的优雅依然完好无损!", - } - }, - "twins": { - "encounter": { - 1: "准备好咯,因为我们联手,\n麻烦双倍!", - 2: "两颗心,一条绳$让我们看看你能否跟上我们双胞胎的力量!", - 3: "希望你准备好了面对双倍的麻烦,$因为我们即将燃起来啦!", - }, - "victory": { - 1: "虽然我们在这一轮输了,$但我们的羁绊依然坚不可摧!", - 2: "我们的双胞胎精神,才不会就此熄灭。", - 3: "我们会作为充满活力的二人组,$卷土重来,变得更强!", - }, - "defeat": { - 1: "双胞胎的力量至高无上!", - 2: "两颗心,一起赢!", - 3: "笑容成双,共舞成双!", - } - }, - "cyclist": { - "encounter": { - 1: "准备好在我后面吃土吧!", - 2: "挑战者,准备好!我要把你打的落花流水!", - 3: "全速前进,让我看看你能不能跟的上!", - }, - "victory": { - 1: "轮子可能不转了,但我的决心没有停下。", - 2: "被超越了!", - 3: "通往胜利的道路还有许多曲折等待探索。", - }, - }, - "black_belt": { - "encounter": { - 1: "我赞扬你挑战我的勇气!$因为我是踢力最强的人!", - 2: "哦,我明白了。你想被切成碎片吗?$或者你更喜欢当个沙袋?", - }, - "victory": { - 1: "哦。是宝可梦在战斗。$我强大的踢击一点忙都没帮上。", - 2: "嗯…如果我无论如何都会输,我希望能被彻底打败。", - }, - }, - "battle_girl": { - "encounter": { - 1: "你不必试图勾引我。你可以输给我。", - }, - "victory": { - 1: "很难说再见,但我们快没时间了……", - }, - }, - "hiker": { - "encounter": { - 1: "人到中年后,我的身体和我爬过的山一样强壮!", - 2: "我从父母那里遗传了这副魁梧的身材…$就像一座活生生的山脉…", - }, - "victory": { - 1: "至少在BMI方面我不能输!", - 2: "这还不够……永远不够。$我的坏胆固醇还不够高……", - }, - }, - "ranger": { - "encounter": { - 1: "当我身处大自然中,其他事情都不重要了。", - 2: "如果我生活中没有大自然,有时就会突然感到焦虑。", - }, - "victory": { - 1: "无论我是赢是输,\n对广阔的大自然来说并不重要……", - 2: "与城市生活的窒息感相比,\n这种事情微不足道。", - }, - "defeat": { - 1: "我赢了。但与浩瀚的大自然相比,\n胜利算不了什么…", - 2: "与我的焦虑症相比,我觉得你也不会怎样…", - } - }, - "scientist": { - "encounter": { - 1: "我的研究将引导这个世界走向和平与欢乐。", - }, - "victory": { - 1: "我是个天才…我不应该输给你这样的人…", - }, - }, - "school_kid": { - "encounter": { - 1: "……嘿嘿。我对计算和分析很有信心。", - 2: "我正在尽可能地积累经验,$因为我希望有一天能成为道馆馆主。", - }, - "victory": { - 1: "哦…计算和分析也许和个例不太匹配呀…", - 2: "我想,即使是艰难困苦的经历,也有存在的意义。", - } - }, - "artist": { - "encounter": { - 1: "我以前很受欢迎,但现在已经彻底过气了。", - }, - "victory": { - 1: "随着时代的变迁,价值观也在变化。$我意识到这一点已经太晚了。", - }, - }, - "guitarist": { - "encounter": { - 1: "当我弹奏着走向胜利的旋律时,$准备好感受失败的节奏吧!", - }, - "victory": { - 1: "暂时沉默了,但我不屈的旋律将继续演奏。", - }, - }, - "worker": { - "encounter": { - 1: "人们总误解我,这让我很烦。$我比大家想象的要干净得多。", - }, - "victory": { - 1: "我真的不想晒伤皮肤,所以我想在阴凉处工作。", - }, - }, - "worker_female": { - "encounter": { - 1: "人们总是误解我,这让我很烦。 $我比大家想象的要干净得多。", - }, - "victory": { - 1: "我真的不想晒伤皮肤,\n所以我想在阴凉处工作。", - }, - "defeat": { - 1: "我的身体和心灵并不总同步。", - }, - }, - "worker_double": { - "encounter": { - 1: "你会知道我们怎么击败你的。我们在工地训练过!", - }, - "victory": { - 1: "真奇怪…怎么会这样…我不应该被打败的。", - }, - }, - "hex_maniac": { - "encounter": { - 1: "我通常只听古典音乐,但如果我输了,$我想我应该试试新时代的音乐!", - 2: "我的每一滴眼泪都让我变得更加坚强。", - }, - "victory": { - 1: "乐坛新时代的曙光就此出现了吗?", - 2: "现在我变得更强了。我随着他人怨恨而成长。", - }, - "defeat": { - 1: "“新时代”指的是二十世纪的古典作曲家,对吧?", - 2: "不要纠结于悲伤或沮丧。$你可以用悲愤来激励自己。", - } - }, - "psychic": { - "encounter": { - 1: "嘿!集中!", - }, - "victory": { - 1: "呃呃呃!", - }, - }, - "officer": { - "encounter": { - 1: "准备好,因为正义即将得到伸张!", - 2: "准备好维护法律,在战场上伸张正义!", - }, - "victory": { - 1: "正义的分量比以往还要沉重……", - 2: "失败的阴影,在警局中徘徊。", - } - }, - "beauty": { - "encounter": { - 1: "我最后的战斗…我就是这么看待这场对战的…", - }, - "victory": { - 1: "很有趣…有时间再来一场最后的战斗…", - }, - }, - "baker": { - "encounter": { - 1: "希望你准备好品尝失败的滋味!", - }, - "victory": { - 1: "我会卷土重来的。", - }, - }, - "biker": { - "encounter": { - 1: "是时候加速,把你甩在后面了!", - }, - "victory": { - 1: "我会为下一场比赛调整状态。", - }, - }, - "firebreather": { - "encounter": { - 1: "我的火焰会吞噬你!", - 2: "我的灵魂在燃烧,我要让你看看它有多滚烫!", - 3: "快来看看吧!" - }, - "victory": { - 1: "我燃成灰了…", - 2: "哟! 好烫!", - 3: "嗷! 我的鼻尖烧焦了!" - }, - }, - "sailor": { - "encounter": { - 1: "伙计,如果你输了,你就得挨板子!", - 2: "来吧!这关系到我作为水手的尊严!", - 3: "你好啊!你晕船么?" - }, - "victory": { - 1: "啊,被孩子打败了。", - 2: "你的精神让我沉沦!", - 3: "好像是我晕船了…" - }, - }, - "archer": { - "encounter": { - 1: "在你继续前进之前,\n让我看看你要如何和对付火箭队。", - 2: "我收到报告说你的实力与众不同,\n就让我来看看这是否属实吧。", - 3: "我是阿波罗,火箭对的干部。\n我不会对组织的敌人手软。" - }, - "victory": { - 1: "大失误……", - 2: "以我现在的实力,无法胜任我的任务……", - 3: "原……谅我,坂木。\n我竟被一名训练师打败了。." - }, - }, - "ariana": { - "encounter": { - 1: `站住!我们可不能放过你!" - $这会损伤火箭对的名誉,明白吗?`, - 2: `我不知道也不想知道我的所作所为正确与否… - $我只要遵从坂木老大的指令就可以了!`, - 3: "你的旅途到此为止了,我会把你狠狠扳倒!" - }, - "victory": { - 1: `切,你好强,可恶。 - $如果你加入火箭队,肯定能成为干部。`, - 2: "好……好崩溃……", - 3: "嗯啊啊!这不可能!我使出全力还是输了!" - }, - }, - "proton": { - "encounter": { - 1: "你想干什么?如果你要妨碍我们的事业,我可不会手下留情。", - 2: `你在这干什么?别人总说我是火箭队里最残忍和恐怖的人… - $我强烈推荐你别来碍我们的事!`, - 3: "我是兰斯,火箭队的干部。就让来扫除你对我们的阻挠。" - }, - "victory": { - 1: "我的防线崩溃了……", - 2: "你虽然这次赢了,但是这只是让火箭队的怒火继续燃烧!", - 3: "我输了…但是我不会忘记的。" - }, - }, - - "petrel": { - "encounter": { - 1: `哇哈哈哈,我们一直在等你。我?你不知道我是谁?是我,坂木啊。 - $伟大的坂木大人本人!哇哈哈哈!…啊?我听起来不像坂木吗? - $我连看起来都不像?怎么会呢,我可认真的变装了!`, - 2: "我是拉姆达,火箭队的干部。我不会允许你干涉我们的计划!", - 3: "火箭队干部拉姆达来会会这个入侵者!" - }, - "victory": { - 1: "好好好,我会说他在哪的", - 2: "我……我什么也做不了……坂木,请原谅我……", - 3: "不,我不能慌了神,必须通知其他人…" - }, - }, - "tabitha": { - "encounter": { - 1: "呵呵呵!原来你都一路来到这里了!但你来晚了!", - 2: `呵呵呵……你终于来了?我们小瞧你了,没不过事! - $我比你见过的所有队员都要厉害,我可不会拖延时间。 - $我会把你碾碎!`, - 3: "我要让你尝尝痛苦的滋味!认命吧!" - }, - "victory": { - 1: `呵呵呵!虽然你打败了我,但你根本没机会打败老大! - $如果你现在输了,你就不用面对那样严厉的鞭笞了!`, - 2: "呵呵呵……所以,我也输了……", - 3: "啊哈!怎么会这样?像我这样的干部\n竟然输给了一个随处可见的训练师……" - }, - }, - "courtney": { - "encounter": { - 1: "那个东西……你所拥有的那个东西……\n那就是……那就是我们熔岩队所寻找的东西……", - 2: "……那么……删除记忆……", - 3: "……哈……分析中……啊哈♪" - }, - "victory": { - 1: "……改变……世界。", - 2: `如预期。出乎意料。目标锁定…锁定你……完成。 - $开始……实验。材料是你…永远…啊哈……♪`, - 3: "……又来了?出乎意料……我就知道。你……很有趣!……啊哈哈!♪" - }, - }, - "shelly": { - "encounter": { - 1: `啊哈哈哈哈!你要插手海洋队的事? - $你要么是绝对无畏,要么就是无知,或者两者兼有! - $你太可爱了,太恶心了!我要把你打倒!`, - 2: "怎么回事?这个小鬼头是谁?", - 3: "冷静点,耐心点。我很快就会把你击溃。" - }, - "victory": { - 1: `啊哈哈哈哈!我们意外地被人干扰了!我们别无选择。 - $不得不撤退了,但这会不是你最后一次面对海洋队! - $我们还有其他计划!别忘了!`, - 2: "啊?!我是不是对你太温柔了?!", - 3: `呃…难道在对战中你也一刻不停地在变强吗? - $你真是个前途光明的小鬼……\n我和我的宝可梦已经没有任何力量去战斗了…… - $继续吧……准备去被水梧桐摧毁吧。` - }, - }, - "matt": { - "encounter": { - 1: "嚯!哈哈哈!怎么,你是不是脑子不正常了?\n看看你,像个幕下力士!", - 2: "“哦吼!你!你真是个有趣的孩子!", - 3: "你在这里干什么?你跟踪我们了吗?" - }, - "victory": { - 1: "好吧,在老大有时间对付你之前,我来成为你的对手!", - 2: `我能感觉到!我感觉到了,没错!你身上散发出的力量! - $更多!还想要更多!但看起来我们没时间了……`, - 3: "真有趣!我就知道你会让我尽兴的!\n我期待有一天再次面对你!" - }, - }, - "mars": { - "encounter": { - 1: "我是伙星,银河队的顶级干部之一。", - 2: "银河队对未来的愿景坚定不移。\n反对者将被无情地粉碎!", - 3: "“紧张吗?你是该感到紧张了!" - }, - "victory": { - 1: "这不可能!我怎么会输?!", - 2: "你很有本事,我承认。", - 3: "输了……犯了一个代价高昂的大错。" - } - }, - "jupiter": { - "encounter": { - 1: "岁星,银河队干部,为您效劳。", - 2: "抵抗是徒劳的。银河队必将获胜!", - 3: "你在发抖啊……已经害怕了吗?" - }, - "victory": { - 1: "不会吧……我输了?!", - 2: "厉害,你胆子真大!", - 3: "输成这样……真丢人。" - } - }, - "saturn": { - "encounter": { - 1: "我是镇星,银河队的干部。", - 2: "我们的使命是绝对的,任何阻碍都将被消灭!", - 3: "我从你的眼中看到的是恐惧吗?" - }, - "victory": { - 1: "不可能……被你打败了?!", - 2: "你证明了自己是一个值得尊敬的对手。", - 3: "失败的苦涩……难以接受……。" - }}, - "zinzolin": { - "encounter": { - 1: "你可能会对等离子队构成威胁,所以我们现在就消灭你!", - 2: "哦,天哪……我没想到要在这么冷的天气里战斗!", - 3: "能走到今天这一步,你真是个了不起的训练师。\n但一切到此结束。" - }, - "victory": { - 1: "魁奇思大人……我让你失望了……", - 2: "好冷,我不仅发抖,还要遭罪。", - 3: "哼。你比我想象的要聪明,但还不够。" - } - }, - "rood": { - "encounter": { - 1: "你对等离子队是个威胁。我们现在不能让你离开这里!", - 2: "哦,这寒风……我从没想过我必须在这里战斗!", - 3: "能走到今天这一步,你是一位了不起的训练师,但这就是你的结局了。" - }, - "victory": { - 1: "魁奇思大人……我的任务失败了", - 2: "寒风刺骨。我瑟瑟发抖。我痛苦不堪。", - 3: "嗯,你是很有才。但是要打败等离子队还不够……!" - } - }, - "xerosic": { - "encounter": { - 1: "啊哈哈!我很乐意。\n来吧,小训练师!让我们看看你有什么本事!", - 2: "嗯……你比看上去更强大。\n我想知道你体内有多少能量。", - 3: "我一直在等你!我需要对你做一点研究!\n来吧,我们开始吧!" - }, - "victory": { - 1: "啊,你好强大啊……嗯……确实非常强大。", - 2: "叮叮叮!你成功了!\n战利品归胜利者!", - 3: "太棒了!太神奇了!\n你的技巧和勇气都无与伦比!" - } - }, - "bryony": { - "encounter": { - 1: "我是芭菈,能与你一战是我的荣幸。\n让我看看你的实力。", - 2: "令人印象深刻……你比你看上去的还要强大。\n让我们看看你真正的实力。", - 3: "我预料到了你的到来。\n是时候进行一个小实验了,我们开始吧?" - }, - "victory": { - 1: "你很强大。哦,嗯嗯!确实非常强大", - 2: "叮叮叮!你做得很好。胜利属于你。", - 3: "太棒了!了不起!你的技巧和勇气值得称赞。" - } - }, - "rocket_grunt": { - "encounter": { - 1: "你要有麻烦了!", - 2: "我们要干大事了!\n闪一边去,小子!", - 3: "把你的宝可梦交过来,\n不然就尝尝火箭队的厉害!", - 4: "你准备好感受火箭队真正的恐怖了吗!", - 5: "喂,小子!俺可是火箭队滴!" //Use of wrong grammar is deliberate - }, - "victory": { - 1: "好讨厌的感觉啊!", - 2: "哎呀!不小心丢掉电梯钥匙啦!", - 3: "我搞砸了。", - 4: "我的伙计们不会放过你……!", - 5: "你说啥?俺们火箭队要玩完了?" //Use of wrong grammar is deliberate. - }, - }, - "magma_grunt": { - "encounter": { - 1: "如果你挡在熔岩队路上,那就别指望我们手下留情!", - 2: "你最好别妨碍我们的计划!\n我们会让世界变得更美好!", - 3: "少碍事!熔岩队没时间理你这样的小孩!", - 4: "你有棉花糖没?我来给你好好烤烤!", - 5: "我们会利用火山的力量!\n它马上要…爆发了!懂吗?嘿嘿嘿……" - }, - "victory": { - 1: "哈?我输了?!", - 2: "我怎么会输!我为了训练饭都不吃了!", - 3: "不会吧,不就是一个小孩!", - 4: "呃啊…我得赶快逃回基地…", - 5: "你打败我了…你觉得老大会扣我工资吗?" - }, - }, - "aqua_grunt": { - "encounter": { - 1: "即使是小孩,如果要和海洋队作对,也别指望我们手下留情!", - 2: "嚯…你好大的胆子,敢惹我们海洋队!", - 3: "不仅是我的水系宝可梦,整片大海即将淹没你!", - 4: "我们海洋队,是为了大义!", - 5: "准备好被我的…呃…我宝可梦的海流冲走吧!" - }, - "victory": { - 1: "你在开玩笑吧?", - 2: "害,没想到这种小屁孩也要管我的闲事!", - 3: "我输了?看来我得自己游回基地了。", - 4: "不是吧,怎么会,老大要生气了……", - 5: "你打败了我…老大不会要让我上跳板吧……" - }, - }, - "galactic_grunt": { - "encounter": { - 1: "别惹银河队!", - 2: "见识下我们的科技,和我们所设想的未来!", - 3: "以银河队之名,我会扫清一切挡路的人!", - 4: "准备输的一败涂地吧!", - 5: "希望你做好被宇宙力量碾压的准备。" - }, - "victory": { - 1: "停机了…", - 2: "从长远来看,这次的挫折不用在意。", - 3: "小失败不会影响我们的宏图伟业!", - 4: "咋回事!?", - 5: "个人记录:提升对战水平,优先级,高……" - }, - }, - "plasma_grunt": { - "encounter": { - 1: "异端不共戴天!", - 2: "要是我赢了你!就把你的宝可梦放生!", - 3: "要是敢和等离子队作对,我来好好关照你!", - 4: "等离子队会从你们这种自私的人手里解放宝可梦!", - 5: "我们的发型帅的一批,而我们的战斗水平呢,\n马上让你见识一下。" - }, - "victory": { - 1: "等离子子子子子子!", - 2: "我怎么会输……", - 3: "…没用的家伙!我得去偷个厉害点的宝可梦!", - 4: "伟大的事业总会被人阻挠…", - 5: "烂完了…烂烂烂烂烂!等离子队烂了!\n说短点就是,等烂子队!" - }, - }, - "flare_grunt": { - "encounter": { - 1: "你的宝可梦无法与闪焰队的优雅相提并论", - 2: "带个墨镜吧,别被我闪瞎狗眼了!", - 3: "闪焰队将净化这个不完美的世界!", - 4: "准备面对闪焰队的美!", - 5: "时尚对我们来说最重要!" - }, - "victory": { - 1: "我的未来看起来并不明亮…", - 2: "这战斗比我想的更难搞,我得重头训练了。", - 3: "啊啊?我输了?!", - 4: "就算是在失败当中,闪焰队依旧优雅动人!", - 5: "你虽然打败了我,但是我输的也这么潇洒!" - }, - }, - "rocket_boss_giovanni_1": { - "encounter": { - 1: "我不得不说,能来到这里,你的确很不简单!" - }, - "victory": { - 1: "什么!这不可能!" - }, - "defeat": { - 1: "记住我的话。无法衡量自己的力量,说明你还是个孩子。" - } - }, - "rocket_boss_giovanni_2": { - "encounter": { - 1: "我的老伙计还需要我…你要挡我的路吗?" - }, - "victory": { - 1: "这怎么可能…?\n火箭队的梦想…就这么成为泡影了…" - }, - "defeat": { - 1: "火箭队会重生,而我会统治世界!" - } - }, - "magma_boss_maxie_1": { - "encounter": { - 1: "我会亲手埋葬你,希望你能喜欢!" - }, - "victory": { - 1: "啊!你…很厉害…我落后了…一点…" - }, - "defeat": { - 1: "熔岩队必胜!" - } - }, - "magma_boss_maxie_2": { - "encounter": { - 1: "你是我实现目标最后的障碍。\n准备好迎接我最强的一击吧!哈哈哈哈!" - }, - "victory": { - 1: "这…这不…呃" - }, - "defeat": { - 1: "现在…我要把这个星球变成人类的理想国度!" - } - }, - "aqua_boss_archie_1": { - "encounter": { - 1: "我是海洋队的老大,所以,你的路大概走到头了。" - }, - "victory": { - 1: "下次再见吧。我会记住你的脸的。" - }, - "defeat": { - 1: "天才!我的队伍不会再退缩了!" - } - }, - "aqua_boss_archie_2": { - "encounter": { - 1: "我等这一天很久了。\n这就是我的真实力量!" - }, - "victory": { - 1: "果然很强……啊!" - }, - "defeat": { - 1: "我会让这世界上的一切回归到最初的纯净状态!!" - } - }, - "galactic_boss_cyrus_1": { - "encounter": { - 1: "但在这之前,让我见识见识你那敢向银河队叫板的实力吧。" - }, - "victory": { - 1: "有意思,简直太有意思了。" - }, - "defeat": { - 1: "我要创造我的新世界…" - } - }, - "galactic_boss_cyrus_2": { - "encounter": { - 1: "是啊,我和你还真是有缘呢。\n不过,这段孽缘…就让我在此斩断吧!" - }, - "victory": { - 1: "怎么可能!怎么可能!怎么可能!" - }, - "defeat": { - 1: "永别了。" - } - }, - "plasma_boss_ghetsis_1": { - "encounter": { - 1: "无论是谁做了什么!都无法阻止我!" - }, - "victory": { - 1: "怎么回事?我可是建立了等离子队的完美的人啊!\n是要改变世界的完美的统治者!" - }, - "defeat": { - 1: "我是坐拥世界的完美统治者!哇哈哈哈!" - } - }, - "plasma_boss_ghetsis_2": { - "encounter": { - 1: "来吧!让我看看你彻底绝望时的那张脸!" - }, - "victory": { - 1: "不!我的伟大目标!我要完全支配世界啊!" - }, - "defeat": { - 1: "酋雷姆!融合吧!" - } - }, - "flare_boss_lysandre_1": { - "encounter": { - 1: "你想要阻止我?在对战中展示给我看吧!" - }, - "victory": { - 1: "看来你的确是想要阻止我。但是,先等一下。" - }, - "defeat": { - 1: "宝可梦…不该存在。" - } - }, - "flare_boss_lysandre_2": { - "encounter": { - 1: "你我的未来…究竟哪个才正确,\n就让我们来问问各自的宝可梦吧!" - }, - "victory": { - 1: "哇啊啊啊!" - }, - "defeat": { - 1: "没有远见的蠢货会继续玷污这个美丽的世界。" - } - }, - "brock": { - "encounter": { - 1: "我对岩石属性宝可梦的专精会击败你!来吧!", - 2: "我磐石般的意志将压倒你!", - 3: "让我展示给你看看,我宝可梦真正的力量!", - }, - "victory": { - 1: "你宝可梦的力量战胜了我坚如磐石的防御!", - 2: "世界很大!很高兴有机会和你战斗。", - 3: "也许我应该回去追寻我成为宝可梦饲养员的梦想……", - }, - "defeat": { - 1: "最好的进攻就是坚固的防守!$那是我做事的方式!", - 2: "下次来和我一起研究岩石属性,$更好地了解如何与它们对战!", - 3: "哈哈,我在各地的旅行有所回报了!", - }, - }, - "misty": { - "encounter": { - 1: "我的战策就是使用水属性宝可梦全面进攻!", - 2: "嗨,我会让你见识我的水属性宝可梦的力量!", - 3: "我的梦想是踏上旅程,与强大的训练师战斗……$你能满足我吗?", - }, - "victory": { - 1: "你真的很强……我承认,你有技术的……", - 2: "哼……你知道你只是运气好,对吧?!", - 3: "哇,你太过分了!不敢相信你打败我了!", - }, - "defeat": { - 1: "强大的小霞对你来说,太过分了吗?", - 2: "我希望你看到了我宝可梦优雅的游泳技巧!", - 3: "你的宝可梦无法匹敌我的心腹和骄傲!", - }, - }, - "lt_surge": { - "encounter": { - 1: "我的电属性宝可梦在战争中救了我!$我来给你展示一下!", - 2: "立正!我要电到你投降!", - 3: "我会像对待敌军一样,狠狠电你!", - }, - "victory": { - 1: "哇!你的队伍有真家伙,小子!", - 2: "啊啊,你很强!连我的电击技巧都输给了你。", - 3: "这失败真是把我给电麻了!", - }, - "defeat": { - 1: "哦耶!我的电属性宝可梦是世界第一!", - 2: "哈哈哈!真是一场电动人心的战斗,小子!", - 3: "宝可梦对战等于战争,$我向你展示了军队中的格斗技巧!", - }, - }, - "erika": { - "encounter": { - 1: "啊,这里天气真好…$哦,对战?那好吧。", - 2: "我在宝可梦对战上的造诣,$可以与我的插花技巧相媲美。", - 3: "哦,希望我宝可梦的宜人香气\n不会再让我睡着…", - 4: "看看花园里的花朵,如此令人心旷神怡。", - }, - "victory": { - 1: "哦!我认输啦~", - 2: "这场比赛非常愉快。", - 3: "啊,看来我输了…", - 4: "哦,我的天哪。", - }, - "defeat": { - 1: "我怕我会打瞌睡…", - 2: "哦,我天。看来我的草属性宝可梦击败了你。", - 3: "那场战斗是如此令人心旷神怡。", - 4: "哦…这就完啦?", - }, - }, - "janine": { - "encounter": { - 1: "我正在掌握毒属性攻击的艺术。$今天我来和你过过招!", - 2: "父亲相信我能独当一面。$我来证明他说的对!", - 3: "我的忍术,仅次于我的父亲!$你能跟的上吗?", - }, - "victory": { - 1: "就算现在,我仍然需要继续训练…我明白了。", - 2: "你的战斗技巧,超过了我。", - 3: "我要好好努力提高我的技术。", - }, - "defeat": { - 1: "呵呵…毒液耗尽了你所有的力量。", - 2: "哈!你根本无法抵挡我卓越的忍技!", - 3: "我没有辜负父亲对我的信任。", - }, - }, - "sabrina": { - "encounter": { - 1: "我的超能力预见了你的到来!", - 2: "我不喜欢战斗,但如果你想,$我会展示我的实力!", - 3: "我能感觉到你的雄心壮志。$我倒要看看你是不是虚有其表。", - }, - "victory": { - 1: "你的力量……远远超出了我的预知……", - 2: "我没有准确预测到你的实力。", - 3: "即使我强大的超能力也无法感知到你这样强大的人。", - }, - "defeat": { - 1: "这场胜利……和我看到的未来一样啊!", - 2: "也许我预感到有强大实力的人,是另一个……", - 3: "在你奋不顾身投入战斗之前,\n磨练你的能力。$如果你这样做,你才未来可期……", - }, - }, - "blaine": { - "encounter": { - 1: "哈!希望你带了烧伤治疗药!", - 2: "我火热的宝可梦将所有挑战者都焚烧殆尽!", - 3: "准备好玩火吧!", - }, - "victory": { - 1: "我已经焚烧殆尽了!甚至连灰烬都没有留下!", - 2: "我没有把火焰煽得足够高吗?", - 3: "我燃尽了……但这让我进步的动力燃烧得更旺了!", - }, - "defeat": { - 1: "我的熊熊烈火无法被扑灭!", - 2: "我的宝可梦因这次胜利而变得更加强大!", - 3: "哈!我的激情燃得比你的更热烈!", - }, - }, - "giovanni": { - "encounter": { - 1: "我,火箭队的领袖,\n会让你的世界感受到痛苦!", - 2: "我在这里的训练在我再次面对老朋友之前至关重要。", - 3: "我认为你还没有准备好迎接你即将经历的失败!", - }, - "victory": { - 1: "什么!我输了?! 我没什么可和你说的!", - 2: "哼……你永远无法理解我希望实现的目标。", - 3: "这次失败只是暂时的。$我将找准时机,让火箭队浴火重生。", - }, - "defeat": { - 1: "不知自己几斤几两,\n说明你仍然只是一个孩子。", - 2: "不要再试图干涉我。", - 3: "我希望你明白挑战我是多么愚蠢。", - }, - }, - "roxanne": { - "encounter": { - 1: "您能否展示一下您是如何战斗的么?", - 2: "你可以和更多训练师战斗来学到很多东西。", - 3: "哦,被你抓到我正在用功了~$你想战斗吗?", - }, - "victory": { - 1: "哦,看来我输了。$我明白了。", - 2: "看来我在战斗方面还有更多东西要学。", - 3: "我会把今天在这里学到的东西铭记于心。", - }, - "defeat": { - 1: "从我们的对战中,我学到了很多。$希望你也是。", - 2: "我期待再次与你战斗。$希望你能运用在此学到的东西。", - 3: "我凭借我所学到的一切赢得了胜利。", - }, - }, - "brawly": { - "encounter": { - 1: "哦,伙计,挑战者!$让我看看你的能耐!", - 2: "你看起来很厉害嘛。$来对战吧!", - 3: "是时候掀起风暴了!$我们上吧!", - }, - "victory": { - 1: "哦哇,你把我冲走了!", - 2: "你驾驭了我的海浪,把我打败了!", - 3: "我觉得我就像是在武斗洞窟里迷路了!", - }, - "defeat": { - 1: "哈哈,我驾驭了大浪!$有时间再挑战我吧。", - 2: "再和我一起冲浪吧!", - 3: "就像潮水的涨落,\n我希望你也能再来挑战我。", - }, - }, - "wattson": { - "encounter": { - 1: "是时候被电击了!$哈哈哈!", - 2: "我要让火星子飞蹦!$哈哈哈!", - 3: "我希望你带了麻痹药!$哇哈哈哈!", - }, - "victory": { - 1: "看来我的电量用完了!$哇哈哈哈!", - 2: "你完全接地了是吧!$哇哈哈哈!", - 3: "谢谢你给我电了一下!$哇哈哈哈!", - }, - "defeat": { - 1: "电充充满,有时间再挑战我吧!$哇哈哈哈!", - 2: "我希望你觉得我们的战斗激情似电!$哇哈哈哈!", - 3: "你没想到我赢了吧?$哇哈哈哈!", - }, - }, - "flannery": { - "encounter": { - 1: "很高兴见到你!等等,不对……$我要粉碎你!", - 2: "我才当道馆主没多久,\n但我会让你灰飞烟灭!", - 3: "是时候展示爷爷教给我的招式了!来对战吧!", - }, - "victory": { - 1: "你让我想起了我的爷爷……$难怪我输了。", - 2: "我是不是太努力了?$我应该放松,不能太上头了。", - 3: "失败才不会呛到我。$是时候重新点燃训练了!", - }, - "defeat": { - 1: "我希望我让祖父感到骄傲了……$有时间我们再战斗吧。", - 2: "我……我简直不敢相信我赢了!$按照自己的方式做事奏效了!", - 3: "早点用炽热的招式再来交手吧!", - }, - }, - "norman": { - "encounter": { - 1: "我没想到你能一路来到这里。$我们来对战吧。", - 2: "作为道馆主,我会尽一切努力赢得胜利。$我们开始吧!", - 3: "你最好全力以赴。$对战的时候到了!", - }, - "victory": { - 1: "我输给了你……?$但规则就是规则。", - 2: "难道我不该从城都搬家吗……?", - 3: "我不敢相信。$这是一场好对战。", - }, - "defeat": { - 1: "我们都尽力了。$希望我们不久之后能再对战。", - 2: "你应该尝试挑战我的孩子。$可能会有一些收获!", - 3: "谢谢你精彩的战斗。$下次好运。", - }, - }, - "winona": { - "encounter": { - 1: "我一直在天空中翱翔寻找猎物…$而你就是我的目标!", - 2: "不管战况如何,我都会和我的飞行宝可梦$以优雅的姿态获胜。来战斗吧!", - 3: "我希望你不怕高。$我们一起升上高空吧!", - }, - "victory": { - 1: "你是我见过的第一位比我更有风度的训练师。$打的非常出色。", - 2: "哦,我的飞行系宝可梦都已经坠落了!$好吧。", - 3: "尽管我倒下了,我的宝可梦将继续翱翔!", - }, - "defeat": { - 1: "我与我的飞行系宝可梦,\n将永远优雅地起舞!", - 2: "我希望你喜欢我们的演出。$我们优雅的舞蹈已经落幕。", - 3: "你愿意再来观看我们优雅的编舞吗?", - } - }, - "tate": { - "encounter": { - 1: "嘿嘿嘿…$看到我没和妹妹在一起,很惊讶么?", - 2: "我可以读懂你在想什么…$你想要战斗!", - 3: "你如何击败一个…$读懂你一举一动的人?", - }, - "victory": { - 1: "赢不了啊…$我想小南了…", - 2: "你和宝可梦之间的联系比我们更强。", - 3: "如果我和小南联手,我们会赢的。$我们可以了解彼此的想法!", - }, - "defeat": { - 1: "我和我的宝可梦无与伦比!", - 2: "如果你连我都打不过,\n你肯定也打不过小南。", - 3: "这多亏了我和小南的严格训练。$我可以与宝可梦一心同体。", - }, - }, - "liza": { - "encounter": { - 1: "呵呵呵…$看到我没和哥哥一起,很惊讶吗?", - 2: "我可以读懂你渴望什么…$你想战斗,不是吗?", - 3: "你如何击败一个…$与宝可梦们一心同体的人?", - }, - "victory": { - 1: "赢不了啊…$我想小枫了…", - 2: "你和宝可梦之间的联系…$比我强。", - 3: "如果我和小枫在一起,我们会赢的。$我们甚至可以接上彼此的话!", - }, - "defeat": { - 1: "我和我的宝可梦势不可挡。", - 2: "如果你连我都打不过,\n你肯定也打不过小枫。", - 3: "这多亏了我和小枫的严格训练。$我可以与我的宝可梦一心同体。", - }, - }, - "juan": { - "encounter": { - 1: "别害羞啊。$我们来战斗吧!", - 2: "啊哈哈哈,敬请期待\n我和水属性宝可梦的盛大演出!", - 3: "我就是正在逼近的风暴!$你能经受住考验吗?", - 4: "请你见证我们的表演。$由我和宝可梦共同创造的宏伟水之幻境!", - }, - "victory": { - 1: "你可能是一个能挑战米可利的天才!", - 2: "我专注于优雅,而你刻苦锻炼。$你能击败我是很正常的。", - 3: "啊哈哈哈!$好吧,这次你赢了。", - 4: "从你身上,我感受到了技巧的光辉,\n它将战胜一切。", - }, - "defeat": { - 1: "宝可梦和我创造的水之幻境,让我取得了胜利。", - 2: "啊哈哈哈,我赢了,你输了。", - 3: "要我把我的服装借给你吗?\n可能能帮到你对战啊!$啊哈哈哈,我开玩笑的!", - 4: "我是赢家!也就是说,你输了。", - }, - }, - "crasher_wake": { - "encounter": { - 1: "极限! 极限! 看好了!$极限假面…就此…登场!", - 2: "极限! 极限! 极限假面!", - 3: "我是滔滔巨浪,将你冲走!", - }, - "victory": { - 1: "我真是笑得合不拢嘴啊!$哈哈哈!那真是太有趣了!", - 2: "呼哇!结束收尾了!$我该怎么说呢……$我还想再对战!我还想再继续战斗!", - 3: "啊啊啊啊啊!?", - }, - "defeat": { - 1: "耶!就是这样!", - 2: "我赢了,但我还想要更多!\n我还想再更多地战斗!", - 3: "再见!", - }, - }, - "falkner": { - "encounter": { - 1: "我将向你展示华丽的飞行宝可梦真正的力量!", - 2: "风啊,伴我同行!", - 3: "爸爸!我希望你能在空中注视着我的战斗!", - }, - "victory": { - 1: "明白了……我会礼貌地退场。", - 2: "输了就是输了。你确实很强大。", - 3: "…行吧! 嗯, 我输了。", - }, - "defeat": { - 1: "爸爸!我用你珍爱的飞行宝可梦赢了……", - 2: "飞行系宝可梦才是最强的!", - 3: "感觉我正在追赶上我的父亲!", - }, - }, - "nessa": { - "encounter": { - 1: "无论你的小脑瓜子在搞什么阴谋诡计,$我和我的搭档都会确保它石沉大海。", - 2: "我来这里可不是为了闲聊,\n而是为了赢!", - 3: "这是我的宝可梦给你的一点小礼物……\n我希望你能接受!", - }, - "victory": { - 1: "你和你的宝可梦太过分了……", - 2: "怎么……?这怎么可能?!", - 3: "我完全被冲走了!", - }, - "defeat": { - 1: "汹涌的海浪再次袭来!", - 2: "是时候乘风破浪,取得胜利了!", - 3: "诶嘿嘿!", - }, - }, - "melony": { - "encounter": { - 1: "我不会手下留情!", - 2: "好吧,我想我们应该开始了。", - 3: "我会把你冻得结结实实的!", - }, - "victory": { - 1: "你……你可厉害了,是不是?", - 2: "如果你找到玛瓜,一定要好好教训他,好吗?", - 3: "你的破冰方式有点过于直接了呢……", - }, - "defeat": { - 1: "现在你知道战斗有多残酷了吧?", - 2: "嘿!看来我又赢了!", - 3: "你是在保留实力吗?", - }, - }, - "marlon": { - "encounter": { - 1: "你看起来很强!来吧!让我们开始吧!", - 2: "我的强大像大海一样无边无际。$你会被我冲走,绝对的。", - 3: "哦豁,由我来面对你!这可不得了咯!", - }, - "victory": { - 1: "你太厉害了!\n你培养了一些非常强大的宝可梦啊,$你已经掌握了训练师的精髓!", - 2: "你不仅仅是看起来,\n你是真的强,真的!$呃,我也被冲走了!", - 3: "你像凶猛的波浪一样强壮!", - }, - "defeat": { - 1: "你很强,但这还不足以动摇大海,懂?", - 2: "嘻!看来我又赢了!", - 3: "甜蜜的胜利!", - }, - }, - "shauntal": { - "encounter": { - 1: "打扰了。你是挑战者,对吗?$我是四天王的幽灵系宝可梦使用者,$婉龙,我将是你的对手。", - 2: "我非常喜欢描写来到这里的训练师,\n以及他们训练的宝可梦。$我可以用你和你的宝可梦作为主题吗?", - 3: "每个与宝可梦相处的人都有故事要讲。$接下来要讲的故事是怎样的呢?", - }, - "victory": { - 1: "哇。我惊呆了!", - 2: "对…对不起!我必须先向我的宝可梦道歉……$都是因为我让你们有了不好的经历,真的很抱歉!", - 3: "你要知道,我仍然是四天王之一!", - }, - "defeat": { - 1: "额呵呵。", - 2: "给了我下一部小说的绝佳素材!", - 3: "就这样,又一篇故事来到尾声……", - }, - }, - "marshal": { - "encounter": { - 1: "我的师傅,阿戴克,\n看到了你作为训练师的潜力,$对你很有兴趣。$我要来考验你——挖掘你力量的极限。\n丹田发力!", - 2: "胜利,决定性的胜利,\n正是我所求!挑战者,我来了!", - 3: "在我的心中,我寻求着成为战士的力量,\n克服自身的所有弱点!$以我的信念,取胜!", - }, - "victory": { - 1: "呼!干得好!", - 2: "不要停止战斗,追求更高的目标!", - 3: "你和你宝可梦展现的力量\n给我留下了深刻的印象……", - }, - "defeat": { - 1: "嗯…", - 2: "这真是场好战斗。", - 3: "哈啊!哈啊!嗨呀啊!", - } - }, - "cheren": { - "encounter": { - 1: "你让我想起了一位老朋友。$这让我对这场宝可梦战斗感到兴奋!", - 2: "不考虑清楚这一点,\n宝可梦对战就没有了意义。$这就是失去了和宝可梦一同战斗的意义。", - 3: "我的名字是黑连!我是道馆馆主,\n也是老师!$很高兴认识你。", - }, - "victory": { - 1: "谢谢……我又能发现自己的不足了。", - 2: "谢谢…接近理想的道路…我好像隐约看到了。", - 3: "嗯……这值得思考。", - }, - "defeat": { - 1: "作为道馆馆主,我要成为你要跨越的壁垒!", - 2: "好吧!", - 3: "正因为有宝可梦,我们才能走到这里。$为什么宝可梦会帮助我们,\n这个恐怕不仅是宝可梦与训练家…$而是生命与生命之间的问题。", - } - }, - "chili": { - "encounter": { - 1: "咿呀!是时候玩火了!!我是三兄弟中最强的!", - 2: "嗒哒!如火似焰的伯特——就是我\n——你接下来的对手!", - 3: "我将向你展示,\n我和我炽热的火系宝可梦的能耐!", - }, - "victory": { - 1: "被你干掉了。我……燃尽了……", - 2: "哇吼!你燃起来了!", - 3: "啊!被你干碎了!", - }, - "defeat": { - 1: "我燃起来啦!和我玩儿,你就会被烫伤!", - 2: "你要是玩儿火,就会被烫伤!", - 3: "我说,拜托,\n你的对手是我,没机会赢的!", - } - }, - "cilan": { - "encounter": { - 1: "无关个人情感…也不会有艰难的感受…$我和我的草属性宝可梦会…$呃…不管什么样的对手我们都会应战的。", - 2: "所以,呃,如果你愿意的话,我会,\n呃,尽我所能做好,呃,你知道的,你的对手。", - 3: "好吧……所以,我是天桐,\n我喜欢草属性宝可梦。", - }, - "victory": { - 1: "呃……已经结束了吗?", - 2: "…真是太意外了。你真…强。$看起来就算是伯特或寇恩都赢不了你…", - 3: "…嗯。看起来我来的…不是时候?", - }, - "defeat": { - 1: "哈?我赢了?", - 2: "我想…$我想我赢了,因为我一直在和我的兄弟伯特和寇恩竞争,\n我们都变得更强了。", - 3: "…这…这是一次非常吓人的经历呢…", - } - }, - "roark": { - "encounter": { - 1: "我需要看看你作为训练师的潜力。$还有,我要看看与你并肩作战的宝可梦的坚韧!", - 2: "来吧!这些是我的岩石系宝可梦,我的骄傲!", - 3: "岩石属性宝可梦就是最强的!", - 4: "我要看看你作为训练师的潜力。$还要看看与你并肩作战的宝可梦的坚韧!", - }, - "victory": { - 1: "什么?不可能!我强化的宝可梦们!", - 2: "……我大脑过载了。$下次邀请你参加地下的化石挖掘比赛。", - 3: "有你这种技术,赢得胜利是很正常的。", - 4: "什么?!连这也不够?", - 5: "我搞砸了。", - }, - "defeat": { - 1: "看?我为我的摇滚战斗风格感到骄傲!", - 2: "谢谢!这场战斗给了我自信,$我感觉能够打败我父亲了!", - 3: "我感觉就像我砸穿了一块顽石!", - } - }, - "morty": { - "encounter": { - 1: "只要我再多努力一点,我就能看到我遇到传说中的宝可梦的未来!$你会帮助我达到那个水平!", - 2: "据说,彩虹色的宝可梦会\n出现在真正强大的训练师面前。 $我一直相信着这个美丽的传说,\n所以,从出生开始,\n就在这里进行着秘密的修行。$因为这样,其他人看不到的东西\n我也能够看得到…$我看到的,是那个将传说中的宝可梦\n召唤到这片大地上的人的影子。$我一直相信,那就是我自己!\n希望你也能助我一臂之力!", - 3: "无论你相信还是不相信,神秘的力量确实存在。", - 4: "你可以见证我训练的成果。", - 5: "你必须让你与宝可梦的灵魂合二为一。你能做到吗?", - 6: "嘿,你想成为我训练的一部分吗?", - }, - "victory": { - 1: "我还不够好……", - 2: "我明白了…你的旅程…去了遥远的地方,你见过的比我多得多。$我羡慕你…", - 3: "这怎么可能……", - 4: "我认为我们的潜力没什么不同。$但是,我觉得你并不简单,似乎还有什么……", - 5: "我想我需要更多的训练。", - 6: "那太遗憾了", - }, - "defeat": { - 1: "我又向前迈进了一步。", - 2: "呵呵呵……", - 3: "什…么?!那还不够?", - 4: "我感觉就像我砸穿了一块顽石!", - 5: "哈哈哈啊!", - 6: "我知道我会赢!", - } - }, - "crispin": { - "encounter": { - 1: "我想赢,所以接下来我正要赢!", - 2: "我想对战就对战!懂吗!就应该这样!", - }, - "victory": { - 1: "我想赢……但我还是输了!", - 2: "我输了……因为我赢不了!", - }, - "defeat": { - 1: "嘿,等一下。我是不是赢了?$我觉得我赢了!太满足了!", - 2: "哇哦!那太棒了!", - } - }, - "amarys": { - "encounter": { - 1: "我想帮助某个人。因此,我不能输。$…我们的战斗现在开始。", - }, - "victory": { - 1: "我还不够,我明白了。", - }, - "defeat": { - 1: "胜利属于我。打得好。", - } - }, - "lacey": { - "encounter": { - 1: "我将用我平时的队伍\n作为四天王的一员面对你。", - }, - "victory": { - 1: "打得真好呀~", - }, - "defeat": { - 1: "让我们为你宝可梦的努力给予热烈的掌声!", - } - }, - "drayton": { - "encounter": { - 1: "哥们,我喜欢椅子。\n你喜欢椅子吗?简直是救星。$我不明白为什么大家不一直坐着。\n站着多累人!", - }, - "victory": { - 1: "我早该想到的!", - }, - "defeat": { - 1: "嘿嘿嘿!别介意我,\n我只是在这里小赢一下。$如果你不开心,我懂,\n但别因为我对乌栗发火,OK?", - } - }, - "ramos": { - "encounter": { - 1: "我用那些强壮的植物\n盖出来的游乐场精彩吗?$它们的力量象征着我这个园丁兼道馆馆主的实力,\n你真的确定能够与之抗衡吗?", - }, - "victory": { - 1: "你信任你的宝可梦,\n它们也信任你…不错的战斗,小豆芽。", - }, - "defeat": { - 1: "呵呵呵…确实,\n脆弱的小草甚至能穿透混凝土。", - } - }, - "viola": { - "encounter": { - 1: "败阵时的后悔,胜利的瞬间…$都是最棒的影象!很好呀,很好呀!$那么来吧!", - 2: "我的镜头总会聚焦在胜利上,\n我不会让任何事情破坏这个画面!", - }, - "victory": { - 1: "你和你的宝可梦向我展示了一个全新的镜头机位!\n很好呀,很好呀!", - 2: "你通过镜头看到的世界,\n和你与宝可梦并肩作战时看到的世界…$视角不同,即使是同一个世界看起来也完全不同。", - }, - "defeat": { - 1: "我胜利那一刻的照片,\n将是一个真正的赢家,对吧!", - 2: "是的!我拍了些很棒的照片!", - }, - }, - "candice": { - "encounter": { - 1: "向小菘我挑战吗?好啊!\n我就是在等待强者$但是我也气势高昂,很强哦?", - 2: "宝可梦也好,时尚也好,恋爱也好,\n无论做什么都气势高昂!$就说到这儿吧,让你见识一下我的气势,\n要做好觉悟哦!", - }, - "victory": { - 1: "好厉害!我有点尊敬你了。", - 2: "好厉害!我有点尊敬你了!$嗯,感觉是被你的气势给压倒了。", - }, - "defeat": { - 1: "你的气势我看到了,但我还是不会输的!", - 2: "怎么样?小菘我的气势!\n宝可梦们的气势满满哦!", - } - }, - "gardenia": { - "encounter": { - 1: "你身上有一种胜利的气息。\n那么不管怎样,$这应该会是场有趣的战斗。\n让我们对战吧!", - }, - "victory": { - 1: "太棒了!你可擅长对战了,不是吗?", - }, - "defeat": { - 1: "太好了!我的宝可梦和我都很棒!", - }, - }, - "aaron": { - "encounter": { - 1: "好的!让我来接受你的挑战!", - }, - "victory": { - 1: "战斗是一件深刻而复杂的事情……", - }, - "defeat": { - 1: "战胜一位四天王并不容易。", - }, - }, - "cress": { - "encounter": { - 1: "没!错!你必须面对\n与我和我高贵的水属性的战斗!", - }, - "victory": { - 1: "输了?我?我不敢相信。", - }, - "defeat": { - 1: "当你的对手是我时,这是必然的结果。", - } - }, - "allister": { - "encounter": { - 1: "我是欧尼奥。$我…我来了……", - }, - "victory": { - 1: "我差点被吓得丢了面具…那真是…$哇。我可以看清你真正的实力。", - }, - "defeat": { - 1: "这真是太棒了!", - } - }, - "clay": { - "encounter": { - 1: "咳咳! 让我好等,不是吗,孩子?$好吧,是时候看看你能做到什么了!", - }, - "victory": { - 1: "真是的……我先说好,\n我可没有手下留情。", - }, - "defeat": { - 1: "最重要的是输掉的时候该怎么办。$只要你能在失败中找到教训,\n就能够不断地成长!", - } - }, - "kofu": { - "encounter": { - 1: "我会给你上一整道水系宝可梦大餐!\n但别真吃了它们!", - }, - "victory": { - 1: "吃了吗!你真是活力又新鲜啊,\n不是吗!$就是有点太鲜活了!", - }, - "defeat": { - 1: "你要再来找我,听见了吗?", - } - }, - "tulip": { - "encounter": { - 1: "请让我运用我的化妆技巧,$让你可爱的小宝可梦变得更美丽!", - }, - "victory": { - 1: "你妆点的力量宛如魔法加固,\n完全冲洗不掉啊。", - }, - "defeat": { - 1: "你知道吗,在我这行,\n那些没天赋的人往往会很快消失,$再也不会被提起。", - } - }, - "sidney": { - "encounter": { - 1: "你给我的印象不错,\n我猜这会是一场精彩的对战。$很棒!看起来真的很棒!$你和我,让我们享受一场\n只能在这里上演的战斗吧!", - }, - "victory": { - 1: "嗯,你觉得怎样?我输了!\n嗯,不过这很有趣,所以无所谓啊。", - }, - "defeat": { - 1: "别介意,OK?", - } - }, - "phoebe": { - "encounter": { - 1: "过去我在修行时得到了\n能与幽灵宝可梦亲密交流的能力。$没错,我和宝可梦之间\n有著强烈的羁绊。$那么,来试试看你有没有能力\n伤到我的宝可梦吧!", - }, - "victory": { - 1: "哦,天呀。我输了。", - }, - "defeat": { - 1: "我期待着下次再和你战斗!", - }, - }, - "glacia": { - "encounter": { - 1: "我在这儿见到的尽是些\n弱不禁风的训练家和宝可梦。$你又如何呢?如果你能让我不得不用\n上全力的话就再好不过了!", - }, - "victory": { - 1: "你和你的宝可梦…\n你们的灵魂燃烧得多么热烈啊!$这股激烈的热能仿佛能征服一切。\n$难怪我的冰属性技巧也奈何不了你了。", - }, - "defeat": { - 1: "一场充满激情的战斗,确实。", - }, - }, - "drake": { - "encounter": { - 1: "对于我们这些将宝可梦视为\n同伴一同战斗的训练家来说,$你知道怎样才能赢得胜利吗?\n你知道获得胜利的条件吗?$如果你不知道,\n那么你永远也无法战胜我!", - }, - "victory": { - 1: "干得漂亮,就是这样。", - }, - "defeat": { - 1: "我在这场战斗中全力以赴了!", - }, - }, - "wallace": { - "encounter": { - 1: "你的气质变了,\n我能感觉到这一点。$现在,把你和你的宝可梦\n的力量展现给我看吧。$作为回礼,就由我和我的宝可梦\n演出一场水之幻影吧!", - }, - "victory": { - 1: "精彩。此刻,我能从你身上感觉到\n身为宝可梦训练家的可靠与高贵。$我真荣幸能遇到你和你的宝可梦。", - }, - "defeat": { - 1: "伟大的幻影!", - }, - }, - "lorelei": { - "encounter": { - 1: "只要能让我用冰属性宝可梦,\n就绝对没人能赢得过我!\n能冻住对方可是很厉害的哦!$因为如果被冻住,你的宝可梦就无法动弹了!\n啊哈哈!你做好觉悟了吧!", - }, - "victory": { - 1: "你怎么敢!", - }, - "defeat": { - 1: "一旦你被冻结,你就什么都做不了。", - }, - }, - "will": { - "encounter": { - 1: "我曾经环游世界,\n日以继夜地做着超能力宝可梦的修行之旅。$我会不断变强!没理由会在这里输掉!", - }, - "victory": { - 1: "……不会吧……", - }, - "defeat": { - 1: "就差一点。\n我想知道你缺少了什么。", - }, - }, - "malva": { - "encounter": { - 1: "我的内心可是一直燃烧着呢。$燃烧着对你的怒火!", - }, - "victory": { - 1: "挑战者出色地击败了四天王之一,帕琦拉。", - }, - "defeat": { - 1: "真开心啊,能将你彻底粉碎!", - }, - }, - "hala": { - "encounter": { - 1: "老哈拉让你放开嗓子!", - }, - "victory": { - 1: "我能感受到你在旅途中获得的力量。", - }, - "defeat": { - 1: "啊哈哈。多么有趣的战斗。", - }, - }, - "rika": { - "encounter": { - 1: "我要对你手下留情,但……骗你的啦!$好好动脑!", - }, - "victory": { - 1: "不错,小子。", - }, - "defeat": { - 1: "啊哈哈哈哈!你真的很特别,小子!", - }, - }, - "molayne": { - "encounter": { - 1: "我将队长的位置让给了我的表弟马玛内,\n但我对自己的能力很有信心。 $我的力量就像超新星一样!", - }, - "victory": { - 1: "我发现了一个有趣的训练师对手!", - }, - "defeat": { - 1: "啊哈哈。多么有趣的战斗。", - } - }, - "bruno": { - "encounter": { - 1: "我们将用势不可挡的力量磨灭你!呼哈!", - }, - "victory": { - 1: "为什么?我怎么会输?", - }, - "defeat": { - 1: "你可以随意挑战我,\n但结果永远不会改变!", - } - }, - "bugsy": { - "encounter": { - 1: "我是阿笔!\n对虫系宝可梦的熟悉不会输给任何人的!", - }, - "victory": { - 1: "哇,太棒了!\n你是个宝可梦专家!$我的研究还没有完成。\n好吧,你赢了。", - }, - "defeat": { - 1: "谢谢!多亏了我们的战斗,\n我的研究也取得了进展!", - } - }, - "koga": { - "encounter": { - 1: "哇哈哈哈哈!$宝可梦不仅仅是关于蛮力,拭目以待吧!", - }, - "victory": { - 1: "啊!你证明了自己!", - }, - "defeat": { - 1: "懂不懂要对忍者的技巧心神畏惧?", - } - }, - "bertha": { - "encounter": { - 1: "啊,让老婆婆看看你学到了什么?", - }, - "victory": { - 1: "好吧,亲爱的孩子,\n不得不说,那令人印象深刻。$你的宝可梦相信你并尽最大努力为你赢得胜利。$尽管我输了,\n我也止不住笑呢!", - }, - "defeat": { - 1: "哈哈哈!看来老婆婆我赢了!", - } - }, - "lenora": { - "encounter": { - 1: "那么,挑战者,让我来研究$你与你精心养育的宝可梦要如何战斗!", - }, - "victory": { - 1: "我关于你的理论是正确的。$你不仅仅是有天赋……你很努力!\n我向你致敬!", - }, - "defeat": { - 1: "啊哈哈!如果你输了,\n一定要分析原因,$并在下一场战斗中运用那些知识!", - } - }, - "siebold": { - "encounter": { - 1: "只要我活着,我将不断努力寻求终极美食…$以及和最强的对手战斗!", - }, - "victory": { - 1: "您的事迹,我志米铭记在心。", - }, - "defeat": { - 1: "我们的宝可梦战斗就像我灵魂的养料。\n它将让我继续前进。$这就是我将向你表示敬意的方式,\n感谢你在战斗中全力以赴!", - } - }, - "roxie": { - "encounter": { - 1: "准备好了吗!我要给你上一课!", - }, - "victory": { - 1: "够野的!你的想法比我的还要毒!", - }, - "defeat": { - 1: "嘿,拜托!认真点!\n你要加把劲啊!", - } - }, - "olivia": { - "encounter": { - 1: "没什么开场白。\n是时候和我丽姿,战斗了!", - }, - "victory": { - 1: "真的很可爱……你和你的宝可梦……", - }, - "defeat": { - 1: "嗯哼。", - } - }, - "poppy": { - "encounter": { - 1: "哦!你想和我进行宝可梦对战么?", - }, - "victory": { - 1: "呜哇?!嘛……", - }, - "defeat": { - 1: "耶!我做到了!我击~败~了~你!\n你可以来…打…复仇之战?$只要你想,随时来打复仇之战吧!", - } - }, - "agatha": { - "encounter": { - 1: "宝可梦是为战斗而生的! \n让我来告诉你什么是真正的战斗吧!" - }, - "victory": { - 1: "呵呵!你可真是了不起!" - }, - "defeat": { - 1: "额哈哈哈,真正的战斗就是该这样。" - } - }, - "flint": { - "encounter": { - 1: "希望你已经热身完毕,\n因为这里即将大爆炸!", - }, - "victory": { - 1: "不可思议!$你的动作如此火热,让我看起来温吞吞的!", - }, - "defeat": { - 1: "嗯?就这吗?\n我觉得你得再激情点。", - }, - }, - "grimsley": { - "encounter": { - 1: "一无所有,\n或者,赢下所有!", - }, - "victory": { - 1: "一旦失败,\n就意味着失去一切……$下一次我要追寻胜利!", - }, - "defeat": { - 1: "如果有人赢了,\n和他对战的人就会输。", - } - }, - "caitlin": { - "encounter": { - 1: "当花儿绽开时、我便出现。\n成为你在等待的人…$你似乎同时具备实力和善意$我所寻找的是拥有卓越力量的对手…$请用出你的全力吧!", - }, - "victory": { - 1: "我和我的宝可梦学到了很多!非常感谢。", - }, - "defeat": { - 1: "我渴望以优雅的姿态取得胜利。", - }, - }, - "diantha": { - "encounter": { - 1: "与你的宝可梦对战\n让你充满了未来的希望…$说真的,这让我更有活力地面对新的一天,确实如此!", - }, - "victory": { - 1: "拥有高尚灵魂的训练家和宝可梦的身姿,\n让我的心激烈地震颤…", - }, - "defeat": { - 1: "哦,太棒了!你觉得怎么样?\n我的队伍很酷吧~对吧?", - }, - }, - "wikstrom": { - "encounter": { - 1: "年轻的挑战者,幸会!\n我乃是著名的钢铁之刃,公爵雁铠! $让我们开始战斗吧!预备!", - }, - "victory": { - 1: "辉煌!你与你尊贵的\n宝可梦之间的信任居然胜过了我!", - }, - "defeat": { - 1: "哦哦哦!这是怎么回事,\n我的心止不住地在震颤! $与如此有价值的对手的胜利\n让我的灵魂飞翔——我心翱翔!", - } - }, - "acerola": { - "encounter": { - 1: "对战只是找个乐子!来吧,我来会会你!", - }, - "victory": { - 1: "我……我说不出话!你是怎么做到的?!", - }, - "defeat": { - 1: "哈哈!真是吓人倒怪的胜利呀!", - } - }, - "larry_elite": { - "encounter": { - 1: "……你好,我是青木。$麻烦的是我还要兼任四天王。", - }, - "victory": { - 1: "好吧,我们翅膀下的疾风止于你这了啊…", - }, - "defeat": { - 1: "是时候和老板开会了。", - } - }, - "lance": { - "encounter": { - 1: "我一直在等你。让我来试试你有几斤几两。", - 2: "我知道你能走这么远。让我们开始吧。", - }, - "victory": { - 1: "被你拿下了啊。你太出色了!", - 2: "我从没想到会有另一个训练师打败我……$我很惊讶。", - }, - "defeat": { - 1: "就差一点。想再试一次吗?", - 2: "我没觉得你弱,别因此困扰。", - } - }, - "karen": { - "encounter": { - 1: "我是梨花,你想和我的恶属性宝可梦$来一场对决吗?", - 2: "我和你见过的那些人不一样。", - 3: "你组建了一支迷人的队伍。$我们的战斗应该会是场精彩的比赛。", - }, - "victory": { - 1: "不!我赢不了。你是怎么做到变得这么强的?", - 2: "我不会偏离我所选择的道路。", - 3: "冠军正期待与你见面。", - }, - "defeat": { - 1: "意料之中。", - 2: "嗯,还算有点意思。", - 3: "随时欢迎你来找我。", - } - }, - "milo": { - "encounter": { - 1: "看起来你显然很了解宝可梦。$这会是一场激烈的战斗!$如果我想赢,我得让我的宝可梦极巨化!", - }, - "victory": { - 1: "草的力量凋谢了…多么不可思议的挑战者!", - }, - "defeat": { - 1: "这必将让你大吃一惊。", - } - }, - "lucian": { - "encounter": { - 1: "请稍等,我正在读的书\n正要进入最精彩的部分…$英雄获得了一把神秘之剑,\n即将面临最后的考验…啊,算了。$既然你能走到这一步,\n我就不说这些了,和你战斗吧。$让我看看你是否\n能像我书中的主角一样荣耀!", - }, - "victory": { - 1: "我明白了…看来你把我逼入了绝境。", - }, - "defeat": { - 1: "我得维护我的名誉。", - } - }, - "drasna": { - "encounter": { - 1: "你很厉害吧,\n而且相当相当地厉害呢。$我很高兴,能和这样的对手交手,\n就能更好地培养宝可梦们了。", - }, - "victory": { - 1: "哎呀,就这么结束了,\n不好意思,可以的话欢迎再来。", - }, - "defeat": { - 1: "怎么会这样?", - } - }, - "kahili": { - "encounter": { - 1: "那么,既然来了……\n要不来看看今天的风更青睐谁?$是你……还是我?", - }, - "victory": { - 1: "让我这个四天王都感到沮丧,$看来你的力量货真价实。", - }, - "defeat": { - 1: "那真是一记好球!", - } - }, - "hassel": { - "encounter": { - 1: "让你亲身感受一下什么叫做猛烈的对战气息吧!", - }, - "victory": { - 1: "这次幸运之神对你微笑了,但是……$谁知道你下次还会不会这么幸运。", - }, - "defeat": { - 1: "那挺厉害的吧!", - } - }, - "blue": { - "encounter": { - 1: "能走到这里,你一定非常优秀。", - }, - "victory": { - 1: "我只输给过他,现在又是你……?$你问他是谁?哈哈哈……", - }, - "defeat": { - 1: "看吧?我的实力就是我来到这里的原因。", - } - }, - "piers": { - "encounter": { - 1: "准备好和我的队伍来个大狂欢吧!$尖钉镇,是时候嗨起来了!", - }, - "victory": { - 1: "我和我的队伍已经尽力了。$找个时间再来对战吧……", - }, - "defeat": { - 1: "我的喉咙因为呼喊而变得沙哑……$但这是一场激动人心的战斗!", - }, - }, - "red": { - "encounter": { - 1: "…!", - }, - "victory": { - 1: "…?", - }, - "defeat": { - 1: "…!", - }, - }, - "jasmine": { - "encounter": { - 1: "哦……你的宝可梦给人印象深刻。$我想我会享受这场战斗的。", - }, - "victory": { - 1: "你真的很强。我也得加把劲了。", - }, - "defeat": { - 1: "我从没想到会赢。", - }, - }, - "lance_champion": { - "encounter": { - 1: "我依旧是冠军,所以我不会留情的。", - }, - "victory": { - 1: "这就是新冠军的崛起。", - }, - "defeat": { - 1: "我成功捍卫了冠军的头衔。", - } - }, - "steven": { - "encounter": { - 1: "告诉我…你在和宝可梦的旅途过程中看到了什么?$邂逅了那么多的训练师,\n你都会有什么样的感受呢?$在这丰饶的大地上旅行…\n有没有唤醒你内在的某种东西?$你不如就用一场对战来告诉我你心中的答案吧。$我也会和我的宝可梦用这种方式\n将我们所知道的告诉你的!", - }, - "victory": { - 1: "没想到连我这个联盟冠军\n都败在你的手上了呢…", - }, - "defeat": { - 1: "正如我所期待的。谢谢!", - } - }, - "cynthia": { - "encounter": { - 1: "我,竹兰,接受你的挑战!\n我是不会手软的!", - }, - "victory": { - 1: "无论对战多么有趣,\n它总会有结束的时候……", - }, - "defeat": { - 1: "即使你输了,\n也永远不要失去你对宝可梦的热爱。", - } - }, - "iris": { - "encounter": { - 1: "你知道吗?\n我真的很期待和强大的训练师进行认真的战斗!$我的意思是,来吧!\n到达这里的是那些渴望胜利的训练师,$他们与经历过无数艰难\n战斗的宝可梦一起战斗!$如果我和那样的人战斗,\n不仅我会变得更强,我的宝可梦也会!$我们也会更好地了解彼此!\n好!做好准备吧!$我是艾莉丝,宝可梦联盟冠军,\n我,将打败你!", - }, - "victory": { - 1: "啊……我尽力了,但我们输了……", - }, - "defeat": { - 1: "耶!我们赢了!", - } - }, - "hau": { - "encounter": { - 1: "我想知道,训练师是否会根据他们是\n来自温暖地区还是寒冷地区而以不同的方式战斗。$让我们来测试一下!", - }, - "victory": { - 1: "那太棒了!我觉得我现在有点了解你的感觉了!", - }, - "defeat": { - 1: "老铁,这才叫战斗!", - }, - }, - "geeta": { - "encounter": { - 1: "我决定再试一次。$来吧…让我看看你的训练成果。", - }, - "victory": { - 1: "我期待着你的成就!", - }, - "defeat": { - 1: "怎么,这就结束了?", - } - }, - "nemona": { - "encounter": { - 1: "耶!我太兴奋了!让我们稍微放轻松!", - }, - "victory": { - 1: "好吧,太糟了,但我还是玩得很开心!$下次我一定会赢你!", - }, - "defeat": { - 1: "好吧,那是一场很棒的战斗!$肯定是会有收获的啦。", - } - }, - "leon": { - "encounter": { - 1: "来享受一段冠军时刻吧!", - }, - "victory": { - 1: "我的冠军生涯结束了……$但这是多么美好的冠军时刻啊!$谢谢你给了我最精彩的一战!", - }, - "defeat": { - 1: "名副其实的冠军时刻!", - } - }, - "whitney": { - "encounter": { - 1: "嘿!你不认为宝可梦超级可爱吗?", - }, - "victory": { - 1: "哇啊!哇啊!你太坏了!", - }, - "defeat": { - 1: "就是这样!", - } - }, - "chuck": { - "encounter": { - 1: "哈!你想挑战我?你是勇敢还是无知?", - }, - "victory": { - 1: "你很强!能不能收我为徒?", - }, - "defeat": { - 1: "搞定。你明白我比你强得多了吗?", - }, - }, - "katy": { - "encounter": { - 1: "不要放松警惕,除非你想被虫丝绊倒哦!", - }, - "victory": { - 1: "我可爱的宝可梦们都像苍蝇一样坠落了!", - }, - "defeat": { - 1: "开饭啦,我可爱的彩粉蝶!", - }, - }, - "pryce": { - "encounter": { - 1: "年轻不代表能获得胜利!经验才是关键。", - }, - "victory": { - 1: "无与伦比!赢得完美,试着不要忘记你现在的感受。", - }, - "defeat": { - 1: "正如我所料。", - }, - }, - "clair": { - "encounter": { - 1: "你知道我是谁吗?知道还敢挑战我?", - }, - "victory": { - 1: "我想知道以你现在的水平能走多远,有趣。", - }, - "defeat": { - 1: "就是这样。", - } - }, - "maylene": { - "encounter": { - 1: "我现在要挑战你,我不会保留任何实力。$请准备好战斗!", - }, - "victory": { - 1: "是我输了…", - }, - "defeat": { - 1: "太棒了。", - }, - }, - "fantina": { - "encounter": { - 1: "你来挑战吧。我会胜利。$这就是家缘市的道馆馆主。", - }, - "victory": { - 1: "你是最强的,我认输了。", - }, - "defeat": { - 1: "我非常,非常高兴!", - }, - }, - "byron": { - "encounter": { - 1: "和我儿子瓢太一样的年轻人啊!$我相信培养年轻人\n关系到宝可梦光明的未来!$为此就让我来成为\n年轻人必须跨越的堡垒吧!", - }, - "victory": { - 1: "唔!我千锤百炼的宝可梦!", - }, - "defeat": { - 1: "哈哈哈哈!怎么样!我千锤百炼的宝可梦!", - } - }, - "olympia": { - "encounter": { - 1: "战斗是决定命运的古老传统。让我们开始吧!", - }, - "victory": { - 1: "创造你自己的道路。$不要让任何东西阻挡你的路、你的命运、你的未来。", - }, - "defeat": { - 1: "我们的道路现在已经清晰了。", - } - }, - "volkner": { - "encounter": { - 1: "能留到最后的训练家想必肯定是很强的…$希望你会是能让我回忆起\n宝可梦对战乐趣的训练家!", - }, - "victory": { - 1: "我输了…$你的心意,宝可梦的不顾一切。$战斗的时候就让我热血沸腾。", - }, - "defeat": { - 1: "完全没感觉…$和我希望的完全不一样!", - }, - }, - "burgh": { - "encounter": { - 1: "唔…我有预感,\n只要赢了这场战斗就能画出更好的画来…$嗯!战斗充满了幻象!那么,马上开始吧。", - 2: "当然,我对我所有的宝可梦都相当骄傲! $现在…让我们马上开始吧!", - }, - "victory": { - 1: "结束了吗?我的女神抛弃我了吗?", - 2: "啊唔,输了……你还真是很强啊。", - }, - "defeat": { - 1: "唔啊……好……好美啊!", - 2: "偶尔也有一些不是很好看的胜利,$但只要努力了,\n不管怎么样的战斗,都是很美丽的。", - }, - }, - "elesa": { - "encounter": { - 1: "最后一击!\n在确信这一点的时候全身会流淌过电流!$为追求这个快感,\n我要用可爱的宝可梦们让你头晕眼花。", - }, - "victory": { - 1: "本想让你头晕的,\n结果我倒反被你电到了。", - }, - "defeat": { - 1: "感觉还不够啊……下次能使出全力来吗?", - }, - }, - "skyla": { - "encounter": { - 1: "终于到决战了!\n这是决定顶点的宝可梦对战吧?$我最喜欢顶点了!\n在高的地方能看到很远很远!$好了!就让我和你好好地玩一场吧!", - }, - "victory": { - 1: "和你的战斗让我更强了……谢谢。", - }, - "defeat": { - 1: "不管是赢了还是输了,战斗都能得到一些东西。", - }, - }, - "brycen": { - "encounter": { - 1: "有其他的人和宝可梦在一起,$这份支持会让自己更强…\n让我来给你展示一下这样的强大吧!", - }, - "victory": { - 1: "你和你的宝可梦!配合得天衣无缝!\n华丽的友情!", - }, - "defeat": { - 1: "尝试极限!锻炼!", - }, - }, - "drayden": { - "encounter": { - 1: "现在我寻求的是\n能让我看到光明未来的年轻训练家。$你有多少实力,就让我用我的经验,\n我对宝可梦倾注的爱来验证吧!", - }, - "victory": { - 1: "失败后涌现的这灼热的意志…\n该怎么说呢…", - }, - "defeat": { - 1: "啊啊啊!你的实力就这种程度吗!", - }, - }, - "grant": { - "encounter": { - 1: "我只期待一件事。. $通过超越彼此,\n我们找到通往更高境界的道路。", - }, - "victory": { - 1: "你是一堵我无法逾越的墙!", - }, - "defeat": { - 1: "不要放弃。\n这就是人生的真谛。$大道至简。", - } - }, - "korrina": { - "encounter": { - 1: "小女子科尔尼来大显身手啦!", - }, - "victory": { - 1: "正因为有你,\n才能让你的宝可梦进化!", - }, - "defeat": { - 1: "好劲爆的战斗呀!", - }, - }, - "clemont": { - "encounter": { - 1: "哦!我很高兴我们能见面!", - }, - "victory": { - 1: "你对战斗的热情激励了我!", - }, - "defeat": { - 1: "看来我的训练师成长强化机-马克2号,\n真的起作用了!", - } - }, - "valerie": { - "encounter": { - 1: "哦,这不是一个年轻的训练师吗……\n能这样遇见你真是太好了。 $我想你已经获得了这场战斗的资格,\n作为对你努力的奖励。 $难以捉摸的妖精可能看起来像微风一样脆弱,\n像花朵一样精致,但很坚强。", - }, - "victory": { - 1: "我希望明天你也能找到一些值得会心微笑的事物……", - }, - "defeat": { - 1: "哦,天哪,这太遗憾了……", - }, - }, - "wulfric": { - "encounter": { - 1: "你知道吗?\n我们都说战斗能学到东西,羁绊之类的,$但实际上,我这么做只是因为有趣。 $谁在乎那些华而不实的东西?\n我们来战斗吧!", - }, - "victory": { - 1: "杰出!我像冰山一样坚硬,但你彻底击溃了我!", - }, - "defeat": { - 1: "和我干的结果就是这样!", - }, - }, - "kabu": { - "encounter": { - 1: "每个训练师和宝可梦都在努力追求胜利。$但这意味着你的对手也在努力赢得胜利。$最终,比赛是由哪一方\n能够发挥出他们真正的潜力来决定的。", - }, - "victory": { - 1: "我很高兴今天能和你战斗!", - }, - "defeat": { - 1: "这是我感觉自己的成长的好方式!", - }, - }, - "bea": { - "encounter": { - 1: "你有没有一种不可动摇的精神,\n受到什么攻击都安如磐石? $就让我来试试吧?", - }, - "victory": { - 1: "我感受到了你的宝可梦\n在战斗中被你指挥时的战斗之魂。", - }, - "defeat": { - 1: "每个人都希望能有一场这样的好比赛。", - } - }, - "opal": { - "encounter": { - 1: "让我看看你和你的宝可梦的表现如何!", - }, - "victory": { - 1: "你不够粉嫩呀,\n但你是一个优秀的训练师,$还拥有着优秀的宝可梦。", - }, - "defeat": { - 1: "对你来说太惨了,我觉得。", - }, - }, - "bede": { - "encounter": { - 1: "就让我来证明你有多可怜,我有多强大。", - }, - "victory": { - 1: "我懂了……好吧。其实我还没拿出全力呢。", - }, - "defeat": { - 1: "我觉得我打的不错。", - }, - }, - "gordie": { - "encounter": { - 1: "好了,我们来做个了结吧!", - }, - "victory": { - 1: "我只想要挖一个洞爬进去……$好吧,现在更像是掉了进去。", - }, - "defeat": { - 1: "像往常一样战斗,胜利就会随之而来!", - } - }, - "marnie": { - "encounter": { - 1: "事实上,言而总之… \n人家自己也想当冠军呀! $所以别认为我在针对你!", - }, - "victory": { - 1: "好吧,我还是输了……\n但是我看到了很多你和你宝可梦的优点哦", - }, - "defeat": { - 1: "希望你喜欢我们的战斗策略。", - }, - }, - "raihan": { - "encounter": { - 1: "我打算击败冠军,赢得锦标赛,\n并向世界证明奇巴纳大人有多强!", - }, - "victory": { - 1: "就算输了我也好帅。$真是罪孽深重啊。$看来得再来张自拍了!", - }, - "defeat": { - 1: "为了纪念此刻,来张自拍吧!", - } - }, - "brassius": { - "encounter": { - 1: "你应该准备好了吧,\一起完成这美丽的艺术作品吧!", - }, - "victory": { - 1: "啊……前卫!", - }, - "defeat": { - 1: "我将立即开始新的创作!", - } - }, - "iono": { - "encounter": { - 1: "谁在奇述!是我奇树!\n做好准备了吗!$...$直播开始!\n今天的小挑战者有多强?$奇树不知道哦~\n让我们一起来看看吧!", - }, - "victory": { - 1: "你的闪耀如1000万伏特!朋友!", - }, - "defeat": { - 1: "奇树奇树捕获你的眼球!", - } - }, - "larry": { - "encounter": { - 1: "归根结底,普普通通就是最强。", - }, - "victory": { - 1: "哼,给我上了一道“战败”。", - }, - "defeat": { - 1: "下班打卡,走了", - }, - }, - "ryme": { - "encounter": { - 1: "宝贝, 一起! \n摇滚摇到骨子里!", - }, - "victory": { - 1: "你好酷!我佩服!\n我的灵魂为你哭!", - }, - "defeat": { - 1: "再会, 宝贝!", - }, - }, - "grusha": { - "encounter": { - 1: "我保证我宝可梦的力量\n会让你感到寒冷彻骨!", - }, - "victory": { - 1: "你燃烧的热情……老实说,我有点喜欢。", - }, - "defeat": { - 1: "你没有升温。", - }, - }, - "marnie_elite": { - "encounter": { - 1: "你已经走到这一步了?$哼~ 看看你能不能对付我的宝可梦!", - 2: "我将全力以赴, 别觉得我会手下留情哦~", - }, - "victory": { - 1: "不敢相信…我输掉了… $但是你确实赢得好,干得漂亮捏~", - 2: "看来我还要多多学习呀,\n不过你打的很不错哦~", - }, - "defeat": { - 1: "你打得不错,但是我更胜一筹!$祝你下次好运啦~", - 2: "看来我的练习有所回报了。\n感谢一战!", - }, - }, - "nessa_elite": { - "encounter": { - 1: "海流正在朝着对我有利的方向转变。$准备好被卷走了吗?", - 2: "让我们在这场战斗中掀起波澜!$我希望你做好准备!", - }, - "victory": { - 1: "你完美地渡过了这片水域......干得好!", - 2: "看来我现在无法与你匹敌。干得好!", - }, - "defeat": { - 1: "水总能找到出路。\n真是爽快的一战!", - 2: "你打得很好,\n但海洋的力量是不可阻挡的!", - }, - }, - "bea_elite": { - "encounter": { - 1: "做好准备!我的斗志熊熊燃烧!", - 2: "让我们看看你是否能跟上我永不停歇的节奏!", - }, - "victory": { - 1: "你的实力......令人印象深刻。\n你真的值得这场胜利。", - 2: "我以前从未感受过这种强度。\n太棒了!", - }, - "defeat": { - 1: "我的高强度训练又带来胜利了!\n干得好!", - 2: "你有实力,但我的训练更努力。\n精彩的战斗!", - }, - }, - "allister_elite": { - "encounter": { - 1: "黑暗降临...你准备好面对你的恐惧了吗?", - 2: "让我们看看你能否应对我所操控的黑暗。", - }, - "victory": { - 1: "你已经驱散了阴影......\n暂时。干得很好。", - 2: "你的光芒刺穿了我的黑暗。干得好。", - }, - "defeat": { - 1: "黑影在轻语...\n你的力量还不够。", - 2: "黑暗获胜了......\n也许下次你会看到光明。", - }, - }, - "raihan_elite": { - "encounter": { - 1: "虽然没法打败丹帝夺冠,\n让我觉得很遗憾……$但是有你这家伙当对手,\b倒是也还不赖啊!", - 2: "准备好面对龙之风暴!", - }, - "victory": { - 1: "你的气势就像暴风一样,\n连我都甘拜下风了!", - 2: "你完美地驾驭了我的风暴……打得好!", - }, - "defeat": { - 1: "又一场龙之风暴袭来,又一场胜利!打得好!", - 2: "你被我的龙之风暴卷入了!祝你下次好运!", - } - }, - "alder": { - "encounter": { - 1: "准备好和合众最强的训练家交手吧!" - }, - "victory": { - 1: "精彩!简直就是天下无双!" - }, - "defeat": { - 1: `战斗结束后,我的心像是吹过了温和的风…… - $真是厉害!` - } - }, - "kieran": { - "encounter": { - 1: `我的努力让我越来越强! - $所以我不会输。` - }, - "victory": { - 1: `不可能…… - $真是一场有趣又激动人心的战斗啊!` - }, - "defeat": { - 1: `哇塞,好一场战斗! - $你得多练练了。` - } - }, - "rival": { - "encounter": { - 1: "@c{smile}嘿,我在找你呢!我知道你急着上路,\n但至少说个再见吧…$@c{smile_eclosed}所以你终于要开始追逐梦想了?\n我几乎不敢相信。$@c{serious_smile_fists}来都来了,来一场对战怎么样?\n毕竟,我想看看你是不是准备周全了。$@c{serious_mopen_fists}不要手下留情,我想让你全力以赴!", - }, - "victory": { - 1: "@c{shock}哇…你彻底击败了我。\n你是真初学者吗?$@c{smile}也许是靠点运气,但是…\n谁知道,你可能真的能一路走下去。$顺便说一下,博士让我给你这些东西。它们看起来可牛了。$@c{serious_smile_fists}祝你好运!$@c{smile}哦!我希望你能喜欢这次的活动! ", - }, - }, - "rival_female": { - "encounter": { - 1: "@c{smile_wave}你在这儿啊!我到处找你呢!$@c{angry_mopen}你忘了和你最好的朋友说再见了吗?$@c{smile_ehalf}你要去追逐梦想了,对吧?\n从今天开始,是不是…$@c{smile}不管怎样,忘了我的事就原谅你吧,\n但有个条件。@c{smile_wave_wink}你必须和我对战!$@c{angry_mopen}全力以赴!\n你也不想让你的冒险在开始之前就结束了,对吧?", - }, - "victory": { - 1: "@c{shock}你刚开始就已经这么强了?!@d{96}$@c{angry}你是不是开了?$@c{smile_wave_wink}只是开个玩笑啦!@d{64} @c{smile_eclosed}我输地心服口服了…\n我感觉你出去挺有天赋的。$@c{smile}顺便说一下,博士想让我给你一些东西。\n希望它们能帮上忙!$@c{smile_wave}像往常一样尽力而为!\n我相信你!$@c{smile}哦!我希望你能喜欢这次的活动! ", - }, - }, - "rival_2": { - "encounter": { - 1: "@c{smile}嘿,你也在这里吗?$@c{smile_eclosed}一路过关斩将,是吧?$@c{serious_mopen_fists}我知道看起来好像我尾随着你来到这里,\n怎么可能啦。$@c{serious_smile_fists}说真的,自从你在老家打败我后,\n我就一直很渴望再比一场。$我自己也进行了很多训练,\n所以这次我肯定会好好打一场。$@c{serious_mopen_fists}不要手下留情,就像以前一样!$让我们开始吧!", - }, - "victory": { - 1: "@c{neutral_eclosed}哦。我过于自信了。$@c{smile}不过没关系。我猜到可能会这样。$@c{serious_mopen_fists}这只意味着我下次需要更努力!$$@c{smile}呃,不是特意帮你,我正好有多余的这个,\n我觉得你可能想要。$$@c{serious_smile_fists}不过这次之后别指望再有了!$我不能一直给我的对手优势。$@c{smile}反正,保重,要享受活动哦!", - }, - }, - "rival_2_female": { - "encounter": { - 1: "@c{smile_wave}哦,真巧,在这里遇见你。\n看来你还没输过嘛。@c{angry_mopen}哈……好家伙!$@c{angry_mopen}我知道你在想什么,\n不,我才不会跟踪你什么呢。 @c{smile_eclosed}我只是碰巧在附近。$@c{smile_ehalf}我为你感到高兴,但我只想让你知道\n有时输了是可以接受的。$@c{smile}我们从错误中学到的东西\n往往比我们一直成功时学到的还要多。$@c{angry_mopen}无论如何,我为了我们的复赛已经努力训练了\n所以你最好全力以赴!", - }, - "victory": { - 1: "@c{neutral}我……没打算会输来着……$@c{smile}嗷……好吧。看来我要再更加努力训练了!$@c{smile_wave}我还给你带了个这个$@c{smile_wave_wink}不用谢我哦~.$@c{angry_mopen}不过,这是最后一个啦!\n你可别想再从我这赚小便宜了~$@c{smile_wave}要保重哦,要享受活动哦!", - }, - "defeat": { - 1: "输了有时候也不要紧的…", - } - }, - "rival_3": { - "encounter": { - 1: "@c{smile}嘿,看看这是谁!好久不见啊。$@c{neutral}你……还是没输过?哈…$@c{neutral_eclosed}这有点……不太对劲。$没有你一起,回家的感觉有很不一样。$@c{serious}虽然我知道这挺别扭的,但我就直说了。$@c{neutral_eclosed}我觉得你有点儿难以理喻。$@c{serious}没有人能够战无不胜。$失败乃成功之母。$@c{neutral_eclosed}你已经赢得了够好的成绩,\n但前面道阻且长,只会愈发艰难。 @c{neutral}你做好准备了没?$@c{serious_mopen_fists}如果做好了,证明给我看吧。", - }, - "victory": { - 1: "@c{angry_mhalf}这太离谱了……我几乎从没停下训练……$我们之间的差距怎么还是这么大?", - }, - }, - "rival_3_female": { - "encounter": { - 1: "@c{smile_wave}好久不见!还没输过,对吧。$@c{angry}我觉得你点烦了。@c{smile_wave_wink}开玩笑啦!$@c{smile_ehalf}但说真的,你现在不想家吗?\n不想…我吗?$我……我的意思是,我们真的很想你。$@c{smile_eclosed}我支持你的一切,包括你的梦想。\n但现实就是你早晚会经历失败。$@c{smile}当你失败的时候,我想像往常一样陪在你身边。$@c{angry_mopen}现在,给你看看我变得多强了吧!", - }, - "victory": { - 1: "@c{shock}都这样了……还是不够吗?$这样下去,你就永远不会回来了……", - }, - "defeat": { - 1: "你尽力了,现在让我们回家吧。", - }, - }, - "rival_4": { - "encounter": { - 1: "@c{neutral}嘿。$我不会对你说什么拐弯抹角的客套话。$@c{neutral_eclosed}我来,就是为了赢,简单明了。$@c{serious_mhalf_fists}我将所有时间都投入到训练中,\n掌握了如何发挥我的潜力。$@c{smile}当你削减掉不必要的睡眠和社交后,\n你会得到很多额外的时间。$@c{serious_mopen_fists}但在我获胜之前,这些都不重要了。$@c{neutral_eclosed}我甚至已经到达了战无不败的境地。$@c{smile_eclosed}我觉得你的思路倒是也没毛病。$@c{angry_mhalf}失败是属于弱者的,\n我已经不再软弱了。$@c{serious_mopen_fists}准备好吧。", - }, - "victory": { - 1: "@c{neutral}你…@d{64} 你是人吗?", - }, - }, - "rival_4_female": { - "encounter": { - 1: "@c{neutral}是我哦!没又把我忘了吧……是吗?$@c{smile}你应该为自己走了这么远感到骄傲。恭喜你!$但看来你的旅程到此为止了。$@c{smile_eclosed}你唤醒了我体内一些我从未有过的东西。\n就像我现在满脑子除了训练还是训练。$@c{smile_ehalf}我几乎已经没空吃饭睡觉了,\n我没日没夜训练我的宝可梦,每次都能变得更强。$@c{neutral}事实上,我……几乎不认识自己了。$现在,我终于达到了巅峰。\n我感觉我已经战无不胜了。$而且你知道吗?这一切都是因为你。$@c{smile_ehalf}我不知道到底是该感谢你还是恨你。$@c{angry_mopen}做好准备…", - }, - "victory": { - 1: "@c{neutral}你…@d{64} 你是人吗?", - }, - "defeat": { - 1: "@c{smile}你应该为自己走了这么远感到骄傲。", - } - }, - "rival_5": { - "encounter": { - 1: "@c{neutral}…" - }, - "victory": { - 1: "@c{neutral}…" - }, - }, - "rival_5_female": { - "encounter": { - 1: "@c{neutral}…" - }, - "victory": { - 1: "@c{neutral}…" - - }, - "defeat": { - 1: "$@c{smile_ehalf}…" - } - }, - "rival_6": { - "encounter": { - 1: "@c{smile_eclosed}又见面了。$@c{neutral}我花了点时间思考反思\n有理由说明为什么这一切都显得如此奇妙。$@c{neutral_eclosed}你所追逐的梦想,我想击败你的决心…$这都是某种庞大使命的一部分。$@c{serious}这不仅仅是关于我和你… 而是关于这个世界, @c{serious_mhalf_fists}我的使命就是将你推向极限。$@c{neutral_eclosed}我是否达成了那个使命,我说不上来,但我已尽我所能。$@c{neutral}我们最终到达的这个地方看起来很可怕\n 然而不知何故,我心中毫无畏惧,好像我早就来过这里。$@c{serious_mhalf_fists}你也有同样的感觉,对吧?$@c{serious}……这里好像有什么东西在呼唤我。\n这是世界早已记录的一切。$那些我们经历过的时光,那些记忆犹新的过去,\n其实只是遥远的回忆。$@c{neutral_eclosed}谁能保证它们是否真的发生过。$@c{serious_mopen_fists}你必须继续前进,不然的话,这一切将永无止境。\n这件事而只有你能办成。$@c{serious_smile_fists}我不清楚这一切意味着什么,但我知道……$@c{serious_mopen_fists}如果现在你不能就此击败我,\n你将毫无机会可言。", - }, - "victory": { - 1: "@c{smile_eclosed}看来我的使命在这里已经完成了。\n我想让你答应我一件事。$@c{smile}在你拯救世界之后,要回家。", - }, - }, - "rival_6_female": { - "encounter": { - 1: "@c{smile_ehalf}又只有我们两个人了。$@c{smile_eclosed}你知道吗,我在心里想啊想,\n想了好久……$@c{smile_ehalf}这一切背后是有什么原因吗,\n为什么一切现在看起来都这么奇怪……$@c{smile}你有你的梦想,而我内心有这个抱负……$我不禁感觉这一切背后有一个更庞大的力量,$掌控者我们所做的一切,你和我之间。$@c{smile_eclosed}我想我注定要推动你……到你的极限。$@c{smile_ehalf}我不清楚我是否一直做得很好,\n但到现在为止,我已经尽力了。$这个奇怪而可怕的地方……\n一切看起来都那么清晰……$这是世界早已记录的一切。$@c{smile_eclosed}我好像记不清我们一起度过的日子了。$@c{smile_ehalf}那些回忆到底是真的吗?\n怎么感觉这么久远……$@c{angry_mopen}你得继续前进,不然的话,这一切将永无止境。\n你是唯一能做到这件事的。$@c{smile_ehalf}我……不知道这一切意味着什么……\n但我明白$@c{neutral}如果你现在不能就此击败我,\n你将毫无机会可言。", - }, - "victory": { - 1: "@c{smile_ehalf}我……\n我想我完成了我的使命……$@c{smile_eclosed}答应我……在你拯救世界之后\n……要……平安到家。$@c{smile_ehalf}……谢谢你。", - - }, - }, -}; - - -// Dialogue of the NPCs in the game when the player character is female. For languages that do not have gendered pronouns, this can be set to PGMdialogue. -export const PGFdialogue: DialogueTranslationEntries = PGMdialogue; - -// Dialogue of the endboss of the game when the player character is male (Or unset) -export const PGMbattleSpecDialogue: SimpleTranslationEntries = { - "encounter": `看来终于又到了那个时候。\n你知道自己为何会来到这里,不是吗? - $你被吸引到这里,因为你以前就来过这里。\n无数次。 - $尽管,或许可以数一数。\n准确地说,这实际上是你的第{{cycleCount}}次循环。 - $每一次循环,你的思想都会恢复到之前的状态。\n即便如此,不知何故,你之前自我的残留仍然存在。 - $直到现在,你仍未成功,\n但我感觉这次你身上有一种异样的气息。 - $你是这里唯一的人,尽管感觉上还有……另一个人。 - $你最终会成为对我来的一个硬茬吗?\n我渴望了数千年的挑战? - $我们,开始。`, - "firstStageWin": `我明白了。我所感觉到的气息确实是真实的。\n看来我不再需要保留实力了。 - $别让我失望。`, - "secondStageWin": "…漂亮。" -}; - -// Dialogue of the endboss of the game when the player character is female. For languages that do not have gendered pronouns, this can be set to PGMbattleSpecDialogue. -export const PGFbattleSpecDialogue: SimpleTranslationEntries = PGMbattleSpecDialogue; - -// Dialogue that does not fit into any other category (e.g. tutorial messages, or the end of the game). For when the player character is male -export const PGMmiscDialogue: SimpleTranslationEntries = { - "ending": - `@c{smile}哦?你赢了?@d{96} @c{smile_eclosed}我应该早猜到了\n你回来了。 - $@c{smile}结束了。@d{64} 你终结了这个循环。 - $@c{serious_smile_fists}你也完成了自己的梦想,不是吗?\n你甚至一次都没失败。 - $@c{neutral}我是唯一能够记得你所作所为的人@d{96}\n我觉得这应该也还行吧? - $@c{serious_smile_fists}你的传奇将永远留存于我们心中。 - $@c{smile_eclosed}不管了,我真是受够这个地方了,你也一样吗?我们回家吧。 - $@c{serious_smile_fists}可能等我们回家以后,再打一场?\n要是你想的话`, - "ending_female": - `@c{shock}你回来了?@d{32} 也就是说…@d{96} 你赢了呀!?\n@c{smile_ehalf}我应该早料到了。 - $@c{smile_eclosed}当然…我一直有这种感觉\n@c{smile}一切都结束了,对么? 你打破了循环。 - $@c{smile_ehalf}你也完成了自己的梦想,不是吗?\n你甚至一次都没失败。 - $我是唯一能够记得你所作所为的人\n@c{angry_mopen}我会努力不忘掉哒! - $@c{smile_wave_wink}开玩笑啦,@d{64} @c{smile}我才不会忘呢。@d{32}\n你的传奇将永远留存于我们心中。 - $@c{smile_wave}不管了,@d{64} 时候不早了@d{96} ,应该吧?\n在这地方还真搞不清楚。 - $一起回家吧。 @c{smile_wave_wink}可能明天,我们再来打一场,为了重温回忆嘛~`, -}; -// Dialogue that does not fit into any other category (e.g. tutorial messages, or the end of the game). For when the player character is female. For languages that do not have gendered pronouns, this can be set to PGMmiscDialogue. -export const PGFmiscDialogue: SimpleTranslationEntries = PGMmiscDialogue; - - -// Dialogue of the named double battles in the game. For when the player is male (or unset). -export const PGMdoubleBattleDialogue: DialogueTranslationEntries = { - "blue_red_double": { - "encounter": { - 1: "青绿:嘿,赤红,\n让这家伙看看我们是什么来头!$赤红: ...$青绿: 见识下真新镇的实力!", - }, - "victory": { - 1: "青绿:打得真不错$赤红: ...", - }, - }, - "red_blue_double": { - "encounter": { - 1: "赤红: ...!$青绿: 他人狠话不多。$青绿: 但别被他耍了,\n毕竟他可是个冠军!", - }, - "victory": { - 1: "赤红: ...!$青绿: 下次我们一定会赢你!", - }, - }, - "tate_liza_double": { - "encounter": { - 1: "小枫:嘿嘿嘿……你惊讶吗?$小南: 这里有两个道馆馆主?$小枫: 我们是双胞胎!$小南: 我们无需交谈,因为……$我们可以通晓彼此的想法$小枫: 我们的组合……$小南: 你能打败吗?", - }, - "victory": { - 1: "小枫:什么?我们的组合……$小南:被瓦解了!", - }, - }, - "liza_tate_double": { - "encounter": { - 1: "小南:呵呵呵……你惊讶吧?$小枫:这里有两个道馆馆主?$小南:我们可以通晓……$小枫:彼此的想法……$小南:全在我们脑中!$小枫:我们的组合……$小南:你能打败吗?", - }, - "victory": { - 1: "小枫:你和你的宝可梦……$小南:简直像亲兄弟姐妹!", - }, - }, - "wallace_steven_double": { - "encounter": { - 1: "大吾:米可利, 展现冠军的实力吧!$米可利:我们将展示丰缘的实力!$大吾:要上了!", - }, - "victory": { - 1: "大吾:打得真不错!$米可利:我们下次会赢的!", - }, - }, - "steven_wallace_double": { - "encounter": { - 1: "大吾:你有什么稀有的宝可梦吗?$米可利:大吾……我们是来对战的,\n不是来炫耀宝可梦的。$大吾:哦……知道了… 那么要上了!", - }, - "victory": { - 1: "大吾:战斗结束了,\n来看看我的稀有宝可梦!$米可利:大吾……", - }, - }, - "alder_iris_double": { - "encounter": { - 1: "阿戴克:我们俩是合众最强的训练家!$艾莉丝:与最强来一场最激烈的战斗吧!", - }, - "victory": { - 1: "阿戴克:哇哦!你真是超级厉害!$艾莉丝:我们下次会赢的啦!", - }, - }, - "iris_alder_double": { - "encounter": { - 1: "艾莉丝:欢迎!挑战者,\n合众地区最强的冠军大驾光临!$阿戴克:艾莉丝,你是不是有点太兴奋了…", - }, - "victory": { - 1: "艾莉丝:这样的失败可不好受啊…$阿戴克:但是只有失败才能让我们变强!", - }, - }, - "piers_marnie_double": { - "encounter": { - 1: "玛俐:哥哥,给他们展现尖钉镇的实力!$聂梓:我们带来黑暗!", - }, - "victory": { - 1: "玛俐:你的强光亮瞎我们的黑暗了啦……$聂梓:实在太亮了…", - }, - }, - "marnie_piers_double": { - "encounter": { - 1: "聂梓: 台下准备好了吗!$玛俐: 哥哥,我们是来对战的,\n不是来唱歌的……", - }, - "victory": { - 1: "聂梓:这首歌献给大家!$玛俐:哥哥……", - }, - }, -}; - -// Dialogue of the named double battles in the game. For when the player is female. For languages that do not have gendered pronouns, this can be set to PGMdoubleBattleDialogue. -export const PGFdoubleBattleDialogue: DialogueTranslationEntries = PGMdoubleBattleDialogue; diff --git a/src/locales/zh_CN/egg.ts b/src/locales/zh_CN/egg.json similarity index 87% rename from src/locales/zh_CN/egg.ts rename to src/locales/zh_CN/egg.json index 454cdb0af52..5a299368873 100644 --- a/src/locales/zh_CN/egg.ts +++ b/src/locales/zh_CN/egg.json @@ -1,6 +1,4 @@ -import { SimpleTranslationEntries } from "#app/interfaces/locales"; - -export const egg: SimpleTranslationEntries = { +{ "egg": "蛋", "greatTier": "稀有", "ultraTier": "史诗", @@ -24,5 +22,5 @@ export const egg: SimpleTranslationEntries = { "rareEggMoveUnlock": "稀有蛋招式已解锁: {{moveName}}", "moveUPGacha": "蛋招式UP!", "shinyUPGacha": "闪光UP!", - "legendaryUPGacha": "UP!", -} as const; + "legendaryUPGacha": "UP!" +} \ No newline at end of file diff --git a/src/locales/zh_CN/fight-ui-handler.json b/src/locales/zh_CN/fight-ui-handler.json new file mode 100644 index 00000000000..8496bf2c1ea --- /dev/null +++ b/src/locales/zh_CN/fight-ui-handler.json @@ -0,0 +1,7 @@ +{ + "pp": "PP", + "power": "威力", + "accuracy": "命中", + "abilityFlyInText": " {{pokemonName}} 的 {{passive}}{{abilityName}}", + "passive": "被动 " +} \ No newline at end of file diff --git a/src/locales/zh_CN/fight-ui-handler.ts b/src/locales/zh_CN/fight-ui-handler.ts deleted file mode 100644 index 07865250d9f..00000000000 --- a/src/locales/zh_CN/fight-ui-handler.ts +++ /dev/null @@ -1,9 +0,0 @@ -import { SimpleTranslationEntries } from "#app/interfaces/locales"; - -export const fightUiHandler: SimpleTranslationEntries = { - "pp": "PP", - "power": "威力", - "accuracy": "命中", - "abilityFlyInText": " {{pokemonName}} 的 {{passive}}{{abilityName}}", - "passive": "被动 ", // The space at the end is important -} as const; diff --git a/src/locales/zh_CN/filter-bar.ts b/src/locales/zh_CN/filter-bar.json similarity index 87% rename from src/locales/zh_CN/filter-bar.ts rename to src/locales/zh_CN/filter-bar.json index 3ca59de4e2c..1726d40d268 100644 --- a/src/locales/zh_CN/filter-bar.ts +++ b/src/locales/zh_CN/filter-bar.json @@ -1,6 +1,4 @@ -import { SimpleTranslationEntries } from "#app/interfaces/locales"; - -export const filterBar: SimpleTranslationEntries = { +{ "genFilter": "世代", "typeFilter": "属性", "caughtFilter": "捕获", @@ -36,5 +34,5 @@ export const filterBar: SimpleTranslationEntries = { "sortByCost": "费用", "sortByCandies": "糖果", "sortByIVs": "个体", - "sortByName": "名称", -}; + "sortByName": "名称" +} \ No newline at end of file diff --git a/src/locales/zh_CN/game-mode.json b/src/locales/zh_CN/game-mode.json new file mode 100644 index 00000000000..810f943b400 --- /dev/null +++ b/src/locales/zh_CN/game-mode.json @@ -0,0 +1,8 @@ +{ + "classic": "经典模式", + "endless": "无尽模式", + "endlessSpliced": "融合无尽模式", + "dailyRun": "每日挑战", + "unknown": "未知", + "challenge": "挑战模式" +} diff --git a/src/locales/zh_CN/game-mode.ts b/src/locales/zh_CN/game-mode.ts deleted file mode 100644 index ed96ac4c78e..00000000000 --- a/src/locales/zh_CN/game-mode.ts +++ /dev/null @@ -1,10 +0,0 @@ -import { SimpleTranslationEntries } from "#app/interfaces/locales"; - -export const gameMode: SimpleTranslationEntries = { - "classic": "经典模式", - "endless": "无尽模式", - "endlessSpliced": "融合无尽模式", - "dailyRun": "每日挑战", - "unknown": "未知", - "challenge": "挑战模式", -} as const; diff --git a/src/locales/zh_CN/game-stats-ui-handler.ts b/src/locales/zh_CN/game-stats-ui-handler.json similarity index 87% rename from src/locales/zh_CN/game-stats-ui-handler.ts rename to src/locales/zh_CN/game-stats-ui-handler.json index 9fb3b9f5af8..94f767e14e3 100644 --- a/src/locales/zh_CN/game-stats-ui-handler.ts +++ b/src/locales/zh_CN/game-stats-ui-handler.json @@ -1,44 +1,42 @@ -import { SimpleTranslationEntries } from "#app/interfaces/locales"; - -export const gameStatsUiHandler: SimpleTranslationEntries = { - "stats": "统计", - "playTime": "游戏时间", - "totalBattles": "总战斗次数", - "starters": "初始宝可梦", - "shinyStarters": "闪光初始宝可梦", - "speciesSeen": "遇到的种类", - "speciesCaught": "捕捉的种类", - "ribbonsOwned": "拥有缎带数", - "classicRuns": "经典模式次数", - "classicWins": "经典模式通关次数", - "dailyRunAttempts": "每日挑战次数", - "dailyRunWins": "每日挑战通关次数", - "endlessRuns": "无尽模式挑战次数", - "highestWaveEndless": "最高层数(无尽)", - "highestMoney": "最多金钱", - "highestDamage": "最高伤害", - "highestHPHealed": "最多治疗", - "pokemonEncountered": "遇敌数量", - "pokemonDefeated": "打倒数量", - "pokemonCaught": "捕捉数量", - "eggsHatched": "孵蛋数量", - "subLegendsSeen": "遇到的二级神宝可梦", - "subLegendsCaught": "捕捉的二级神宝可梦", - "subLegendsHatched": "孵化的二级神宝可梦", - "legendsSeen": "遇到的传说宝可梦", - "legendsCaught": "捕捉的传说宝可梦", - "legendsHatched": "孵化的传说宝可梦", - "mythicalsSeen": "遇到的幻兽宝可梦", - "mythicalsCaught": "捕捉的幻兽宝可梦", - "mythicalsHatched": "孵化的幻兽宝可梦", - "shiniesSeen": "遇到的闪光宝可梦", - "shiniesCaught": "捕捉的闪光宝可梦", - "shiniesHatched": "孵化的闪光宝可梦", - "pokemonFused": "融合宝可梦次数", - "trainersDefeated": "打败的训练师数", - "eggsPulled": "总扭蛋次数", - "rareEggsPulled": "稀有扭蛋数", - "epicEggsPulled": "史诗扭蛋数", - "legendaryEggsPulled": "传说扭蛋数", - "manaphyEggsPulled": "玛娜霏扭蛋数", -} as const; +{ + "stats": "统计", + "playTime": "游戏时间", + "totalBattles": "总战斗次数", + "starters": "初始宝可梦", + "shinyStarters": "闪光初始宝可梦", + "speciesSeen": "遇到的种类", + "speciesCaught": "捕捉的种类", + "ribbonsOwned": "拥有缎带数", + "classicRuns": "经典模式次数", + "classicWins": "经典模式通关次数", + "dailyRunAttempts": "每日挑战次数", + "dailyRunWins": "每日挑战通关次数", + "endlessRuns": "无尽模式挑战次数", + "highestWaveEndless": "最高层数(无尽)", + "highestMoney": "最多金钱", + "highestDamage": "最高伤害", + "highestHPHealed": "最多治疗", + "pokemonEncountered": "遇敌数量", + "pokemonDefeated": "打倒数量", + "pokemonCaught": "捕捉数量", + "eggsHatched": "孵蛋数量", + "subLegendsSeen": "遇到的二级神宝可梦", + "subLegendsCaught": "捕捉的二级神宝可梦", + "subLegendsHatched": "孵化的二级神宝可梦", + "legendsSeen": "遇到的传说宝可梦", + "legendsCaught": "捕捉的传说宝可梦", + "legendsHatched": "孵化的传说宝可梦", + "mythicalsSeen": "遇到的幻兽宝可梦", + "mythicalsCaught": "捕捉的幻兽宝可梦", + "mythicalsHatched": "孵化的幻兽宝可梦", + "shiniesSeen": "遇到的闪光宝可梦", + "shiniesCaught": "捕捉的闪光宝可梦", + "shiniesHatched": "孵化的闪光宝可梦", + "pokemonFused": "融合宝可梦次数", + "trainersDefeated": "打败的训练师数", + "eggsPulled": "总扭蛋次数", + "rareEggsPulled": "稀有扭蛋数", + "epicEggsPulled": "史诗扭蛋数", + "legendaryEggsPulled": "传说扭蛋数", + "manaphyEggsPulled": "玛娜霏扭蛋数" +} diff --git a/src/locales/zh_CN/growth.ts b/src/locales/zh_CN/growth.json similarity index 50% rename from src/locales/zh_CN/growth.ts rename to src/locales/zh_CN/growth.json index 9362810c4f8..4ae2f5e5743 100644 --- a/src/locales/zh_CN/growth.ts +++ b/src/locales/zh_CN/growth.json @@ -1,10 +1,8 @@ -import { SimpleTranslationEntries } from "#app/interfaces/locales"; - -export const growth: SimpleTranslationEntries = { - "Erratic": "非常快", - "Fast": "快", - "Medium_Fast": "较快", - "Medium_Slow": "较慢", - "Slow": "慢", - "Fluctuating": "非常慢" -} as const; +{ + "Erratic": "非常快", + "Fast": "快", + "Medium_Fast": "较快", + "Medium_Slow": "较慢", + "Slow": "慢", + "Fluctuating": "非常慢" +} \ No newline at end of file diff --git a/src/locales/zh_CN/menu-ui-handler.ts b/src/locales/zh_CN/menu-ui-handler.json similarity index 84% rename from src/locales/zh_CN/menu-ui-handler.ts rename to src/locales/zh_CN/menu-ui-handler.json index 467099ddbed..c8ecaa6dd98 100644 --- a/src/locales/zh_CN/menu-ui-handler.ts +++ b/src/locales/zh_CN/menu-ui-handler.json @@ -1,10 +1,8 @@ -import { SimpleTranslationEntries } from "#app/interfaces/locales"; - -export const menuUiHandler: SimpleTranslationEntries = { +{ "GAME_SETTINGS": "游戏设置", "ACHIEVEMENTS": "成就", "STATS": "数据统计", - "VOUCHERS": "兑换券", + "RUN_HISTORY": "历史记录", "EGG_LIST": "蛋列表", "EGG_GACHA": "扭蛋机", "MANAGE_DATA": "管理数据", @@ -16,6 +14,8 @@ export const menuUiHandler: SimpleTranslationEntries = { "importSlotSelect": "选择要导入到的存档位。", "exportSession": "导出存档", "exportSlotSelect": "选择要导出的存档位。", + "importRunHistory":"导入历史记录", + "exportRunHistory":"导出历史记录", "importData": "导入数据", "exportData": "导出数据", "consentPreferences": "同意偏好", @@ -26,4 +26,4 @@ export const menuUiHandler: SimpleTranslationEntries = { "cancel": "取消", "losingProgressionWarning": "你将失去自战斗开始以来的所有进度。\n是否继续?", "noEggs": "当前没有任何蛋\n正在孵化中!" -} as const; +} \ No newline at end of file diff --git a/src/locales/zh_CN/menu.ts b/src/locales/zh_CN/menu.json similarity index 87% rename from src/locales/zh_CN/menu.ts rename to src/locales/zh_CN/menu.json index 332457c949f..59146d30ee9 100644 --- a/src/locales/zh_CN/menu.ts +++ b/src/locales/zh_CN/menu.json @@ -1,11 +1,4 @@ -import { SimpleTranslationEntries } from "#app/interfaces/locales"; - -/** - * The menu namespace holds most miscellaneous text that isn't directly part of the game's - * contents or directly related to Pokemon data. This includes menu navigation, settings, - * account interactions, descriptive text, etc. - */ -export const menu: SimpleTranslationEntries = { +{ "cancel": "取消", "continue": "继续", "dailyRun": "每日挑战 (Beta)", @@ -58,5 +51,5 @@ export const menu: SimpleTranslationEntries = { "renamePokemon": "给宝可梦起名", "rename": "起名", "nickname": "昵称", - "errorServerDown": "糟糕!访问服务器时发生了错误。\n\n你可以保持页面开启,\n游戏会自动重新连接。", -} as const; + "errorServerDown": "糟糕!访问服务器时发生了错误。\n\n你可以保持页面开启,\n游戏会自动重新连接。" +} \ No newline at end of file diff --git a/src/locales/zh_CN/modifier-select-ui-handler.ts b/src/locales/zh_CN/modifier-select-ui-handler.json similarity index 73% rename from src/locales/zh_CN/modifier-select-ui-handler.ts rename to src/locales/zh_CN/modifier-select-ui-handler.json index a836f07e910..b3475737dfd 100644 --- a/src/locales/zh_CN/modifier-select-ui-handler.ts +++ b/src/locales/zh_CN/modifier-select-ui-handler.json @@ -1,14 +1,12 @@ -import { SimpleTranslationEntries } from "#app/interfaces/locales"; - -export const modifierSelectUiHandler: SimpleTranslationEntries = { - "transfer": "交换道具", - "reroll": "刷新商店", - "lockRarities": "锁定稀有度", - "checkTeam": "查看队伍", - "transferDesc": "将宝可梦携带的道具交换给其他宝可梦", - "rerollDesc": "花钱刷新道具", - "lockRaritiesDesc": "在刷新时锁定道具稀有度(影响刷新费用)", - "checkTeamDesc": "检查队伍或使用形态改变道具", - "rerollCost": "₽{{formattedMoney}}", - "itemCost": "₽{{formattedMoney}}" -} as const; +{ + "transfer": "交换道具", + "reroll": "刷新商店", + "lockRarities": "锁定稀有度", + "checkTeam": "查看队伍", + "transferDesc": "将宝可梦携带的道具交换给其他宝可梦", + "rerollDesc": "花钱刷新道具", + "lockRaritiesDesc": "在刷新时锁定道具稀有度(影响刷新费用)", + "checkTeamDesc": "检查队伍或使用形态改变道具", + "rerollCost": "₽{{formattedMoney}}", + "itemCost": "₽{{formattedMoney}}" +} \ No newline at end of file diff --git a/src/locales/zh_CN/modifier-type.json b/src/locales/zh_CN/modifier-type.json new file mode 100644 index 00000000000..e9172985092 --- /dev/null +++ b/src/locales/zh_CN/modifier-type.json @@ -0,0 +1,609 @@ +{ + "ModifierType": { + "AddPokeballModifierType": { + "name": "{{modifierCount}}x {{pokeballName}}", + "description": "获得 {{pokeballName}} x{{modifierCount}} (已有:{{pokeballAmount}}) \n捕捉倍率:{{catchRate}}。" + }, + "AddVoucherModifierType": { + "name": "{{modifierCount}}x {{voucherTypeName}}", + "description": "获得 {{voucherTypeName}} x{{modifierCount}}。" + }, + "PokemonHeldItemModifierType": { + "extra": { + "inoperable": "{{pokemonName}} 无法携带\n这个物品!", + "tooMany": "{{pokemonName}} 已有太多\n这个物品!" + } + }, + "PokemonHpRestoreModifierType": { + "description": "为一只宝可梦回复{{restorePoints}}HP或{{restorePercent}}%HP,取较大值。", + "extra": { + "fully": "为一只宝可梦回复全部HP。", + "fullyWithStatus": "为一只宝可梦回复全部HP并消除所有负面\n状态。" + } + }, + "PokemonReviveModifierType": { + "description": "复活一只宝可梦并回复 {{restorePercent}}% HP。" + }, + "PokemonStatusHealModifierType": { + "description": "为一只宝可梦消除所有负面状态。" + }, + "PokemonPpRestoreModifierType": { + "description": "为一只宝可梦的一个招式回复 {{restorePoints}} PP。", + "extra": { + "fully": "完全回复一只宝可梦一个招式的PP。" + } + }, + "PokemonAllMovePpRestoreModifierType": { + "description": "为一只宝可梦的所有招式回复 {{restorePoints}} PP。", + "extra": { + "fully": "为一只宝可梦的所有招式回复所有PP。" + } + }, + "PokemonPpUpModifierType": { + "description": "选择一只宝可梦的一个招式使用\n使其PP最大值提升基础的20% (最多3次)。" + }, + "PokemonNatureChangeModifierType": { + "name": "{{natureName}}薄荷", + "description": "将一只宝可梦的性格改为{{natureName}}并为\n该宝可梦永久解锁该性格。" + }, + "DoubleBattleChanceBoosterModifierType": { + "description": "接下来的{{battleCount}}场战斗是双打的概率翻倍。" + }, + "TempBattleStatBoosterModifierType": { + "description": "为所有成员宝可梦提升一级{{tempBattleStatName}},持续5场战斗。" + }, + "AttackTypeBoosterModifierType": { + "description": "一只宝可梦的{{moveType}}系招式威力提升20%。" + }, + "PokemonLevelIncrementModifierType": { + "description": "使一只宝可梦的等级提升{{levels}}级。" + }, + "AllPokemonLevelIncrementModifierType": { + "description": "使一只寶可夢的等級提升{{levels}}級。" + }, + "PokemonBaseStatBoosterModifierType": { + "description": "增加10%持有者的{{statName}},\n个体值越高堆叠上限越高。" + }, + "AllPokemonFullHpRestoreModifierType": { + "description": "所有宝可梦完全回复HP。" + }, + "AllPokemonFullReviveModifierType": { + "description": "复活所有濒死的宝可梦,\n并完全回复HP。" + }, + "MoneyRewardModifierType": { + "description": "获得{{moneyMultiplier}}金钱(₽{{moneyAmount}})。", + "extra": { + "small": "少量", + "moderate": "中等", + "large": "大量" + } + }, + "ExpBoosterModifierType": { + "description": "经验值获取量增加{{boostPercent}}%。" + }, + "PokemonExpBoosterModifierType": { + "description": "持有者经验值获取量增加{{boostPercent}}%。" + }, + "PokemonFriendshipBoosterModifierType": { + "description": "每场战斗获得的好感度提升50%。" + }, + "PokemonMoveAccuracyBoosterModifierType": { + "description": "招式命中率增加{{accuracyAmount}}(最大100)。" + }, + "PokemonMultiHitModifierType": { + "description": "攻击以40/25/12.5%的伤害造成2/3/4次伤害" + }, + "TmModifierType": { + "name": "招式学习器\n{{moveId}} - {{moveName}}", + "description": "教会一只宝可梦{{moveName}}。" + }, + "TmModifierTypeWithInfo": { + "name": "招式学习器\n{{moveId}} - {{moveName}}", + "description": "教会一只宝可梦{{moveName}}\n(按住C或者Shift查看更多信息)。" + }, + "EvolutionItemModifierType": { + "description": "使某些宝可梦进化。" + }, + "FormChangeItemModifierType": { + "description": "使某些宝可梦更改形态。" + }, + "FusePokemonModifierType": { + "description": "融合两只宝可梦 (改变特性, 平分基础点数\n和属性, 共享招式池)。" + }, + "TerastallizeModifierType": { + "name": "{{teraType}}太晶碎块", + "description": "持有者获得{{teraType}}太晶化,\n持续10场战斗。" + }, + "ContactHeldItemTransferChanceModifierType": { + "description": "攻击时{{chancePercent}}%概率\n偷取对手物品。" + }, + "TurnHeldItemTransferModifierType": { + "description": "持有者每回合从对手那里\n获得一个持有的物品。" + }, + "EnemyAttackStatusEffectChanceModifierType": { + "description": "攻击时{{chancePercent}}%概率造成{{statusEffect}}。" + }, + "EnemyEndureChanceModifierType": { + "description": "敌方增加{{chancePercent}}%的概率\n在本回合不会倒下。" + }, + "RARE_CANDY": { + "name": "神奇糖果" + }, + "RARER_CANDY": { + "name": "超神奇糖果" + }, + "MEGA_BRACELET": { + "name": "MEGA手镯", + "description": "能让携带着MEGA石战斗的宝可梦\n进行MEGA进化。" + }, + "DYNAMAX_BAND": { + "name": "极巨腕带", + "description": "能让携带着极巨菇菇战斗的宝可梦\n进行超极巨化。" + }, + "TERA_ORB": { + "name": "太晶珠", + "description": "能让携带着太晶碎块战斗的宝可梦\n进行太晶化。" + }, + "MAP": { + "name": "地图", + "description": "有概率允许你在切换地区时\n选择目的地。" + }, + "POTION": { + "name": "伤药" + }, + "SUPER_POTION": { + "name": "好伤药" + }, + "HYPER_POTION": { + "name": "厉害伤药" + }, + "MAX_POTION": { + "name": "全满药" + }, + "FULL_RESTORE": { + "name": "全复药" + }, + "REVIVE": { + "name": "活力碎片" + }, + "MAX_REVIVE": { + "name": "活力块" + }, + "FULL_HEAL": { + "name": "万灵药" + }, + "SACRED_ASH": { + "name": "圣灰" + }, + "REVIVER_SEED": { + "name": "复活种子", + "description": "受到技能攻击伤害濒死时,\n恢复该宝可梦的HP至1/2。" + }, + "WHITE_HERB": { + "name": "白色香草", + "description": "当携带它的宝可梦能力降低时,\n仅能回到之前的状态1次。" + }, + "ETHER": { + "name": "PP单项小补剂" + }, + "MAX_ETHER": { + "name": "PP单项全补剂" + }, + "ELIXIR": { + "name": "PP多项小补剂" + }, + "MAX_ELIXIR": { + "name": "PP多项全补剂" + }, + "PP_UP": { + "name": "PP提升剂" + }, + "PP_MAX": { + "name": "PP极限提升剂" + }, + "LURE": { + "name": "引虫香水" + }, + "SUPER_LURE": { + "name": "白银香水" + }, + "MAX_LURE": { + "name": "黄金香水" + }, + "MEMORY_MUSHROOM": { + "name": "回忆蘑菇", + "description": "回忆一个宝可梦已经遗忘的招式。" + }, + "EXP_SHARE": { + "name": "学习装置", + "description": "未参加对战的宝可梦获得20%的经验值。" + }, + "EXP_BALANCE": { + "name": "均衡型学习装置", + "description": "经验值会更多分给队伍中等级最低的宝可梦。" + }, + "OVAL_CHARM": { + "name": "圆形护符", + "description": "当多只宝可梦参与战斗,分别获得总经验值\n10%的额外经验值。" + }, + "EXP_CHARM": { + "name": "经验护符" + }, + "SUPER_EXP_CHARM": { + "name": "超级经验护符" + }, + "GOLDEN_EXP_CHARM": { + "name": "黄金经验护符" + }, + "LUCKY_EGG": { + "name": "幸运蛋" + }, + "GOLDEN_EGG": { + "name": "金蛋" + }, + "SOOTHE_BELL": { + "name": "安抚之铃" + }, + "SCOPE_LENS": { + "name": "焦点镜", + "description": "能看见弱点的镜片。携带它的宝可梦的招式\n会变得容易击中要害。" + }, + "LEEK": { + "name": "大葱", + "description": "非常长且坚硬的茎。让大葱鸭携带后,\n招式会变得容易击中要害。" + }, + "EVIOLITE": { + "name": "进化奇石", + "description": "携带后,还能进化的宝可梦的\n防御和特防就会提高。" + }, + "SOUL_DEW": { + "name": "心之水滴", + "description": "增加10%宝可梦性格对数值的影响 (加算)。" + }, + "NUGGET": { + "name": "金珠" + }, + "BIG_NUGGET": { + "name": "巨大金珠" + }, + "RELIC_GOLD": { + "name": "古代金币" + }, + "AMULET_COIN": { + "name": "护符金币", + "description": "获得的金钱增加20%。" + }, + "GOLDEN_PUNCH": { + "name": "黄金拳头", + "description": "将50%造成的伤害转换为金钱。" + }, + "COIN_CASE": { + "name": "代币盒", + "description": "每10场战斗, 获得自己金钱10%的利息。" + }, + "LOCK_CAPSULE": { + "name": "上锁的容器", + "description": "允许在商店中刷新物品时,\n锁定物品的稀有度。" + }, + "GRIP_CLAW": { + "name": "紧缠钩爪" + }, + "WIDE_LENS": { + "name": "广角镜" + }, + "MULTI_LENS": { + "name": "多重镜" + }, + "HEALING_CHARM": { + "name": "治愈护符", + "description": "HP回复量增加10% (不含复活)。" + }, + "CANDY_JAR": { + "name": "糖果罐", + "description": "神奇糖果提供的升级额外增加1级。" + }, + "BERRY_POUCH": { + "name": "树果袋", + "description": "使用树果时有30%的几率不会消耗树果。" + }, + "FOCUS_BAND": { + "name": "气势头带", + "description": "携带该道具的宝可梦有10%几率在受到攻击\n而将陷入濒死状态时,保留1点HP不陷入濒死状态。" + }, + "QUICK_CLAW": { + "name": "先制之爪", + "description": "有10%的几率无视速度优先使出招式\n(先制技能优先)。" + }, + "KINGS_ROCK": { + "name": "王者之证", + "description": "使用任意原本不会造成畏缩状态的攻击,\n有10%几率使目标陷入畏缩状态。" + }, + "LEFTOVERS": { + "name": "吃剩的东西", + "description": "携带后,在每个回合结束时恢复\n最大HP的1/16。" + }, + "SHELL_BELL": { + "name": "贝壳之铃", + "description": "携带后,在攻击对方成功造成伤害时,\n携带者的HP会恢复其所造成伤害的1/8。" + }, + "TOXIC_ORB": { + "name": "剧毒宝珠", + "description": "触碰后会放出毒的神奇宝珠。\n携带后,在战斗时会变成剧毒状态。" + }, + "FLAME_ORB": { + "name": "火焰宝珠", + "description": "触碰后会放出热量的神奇宝珠。\n携带后,在战斗时会变成灼伤状态。" + }, + "BATON": { + "name": "接力棒", + "description": "允许在切换宝可梦时保留能力变化, 对陷阱\n同样生效。" + }, + "SHINY_CHARM": { + "name": "闪耀护符", + "description": "显著增加野生宝可梦的闪光概率。" + }, + "ABILITY_CHARM": { + "name": "特性护符", + "description": "显著增加野生宝可梦有隐藏特性的概率。" + }, + "IV_SCANNER": { + "name": "个体值探测器", + "description": "允许扫描野生宝可梦的个体值。每多拥有一个\n多显示两项个体值,优先显示最高项。" + }, + "DNA_SPLICERS": { + "name": "基因之楔" + }, + "MINI_BLACK_HOLE": { + "name": "迷你黑洞" + }, + "GOLDEN_POKEBALL": { + "name": "黄金精灵球", + "description": "在每场战斗结束后,增加一个额外物品选项。" + }, + "ENEMY_DAMAGE_BOOSTER": { + "name": "伤害硬币", + "description": "造成5%额外伤害(乘算)。" + }, + "ENEMY_DAMAGE_REDUCTION": { + "name": "防御硬币", + "description": "受到2.5%更少伤害(乘算)。" + }, + "ENEMY_HEAL": { + "name": "回复硬币", + "description": "每回合回复2%最大HP。" + }, + "ENEMY_ATTACK_POISON_CHANCE": { + "name": "剧毒硬币" + }, + "ENEMY_ATTACK_PARALYZE_CHANCE": { + "name": "麻痹硬币" + }, + "ENEMY_ATTACK_BURN_CHANCE": { + "name": "灼烧硬币" + }, + "ENEMY_STATUS_EFFECT_HEAL_CHANCE": { + "name": "万灵药硬币", + "description": "增加2.5%每回合治愈异常状态的概率。" + }, + "ENEMY_ENDURE_CHANCE": { + "name": "忍受硬币" + }, + "ENEMY_FUSED_CHANCE": { + "name": "融合硬币", + "description": "增加1%野生融合宝可梦出现概率。" + } + }, + "SpeciesBoosterItem": { + "LIGHT_BALL": { + "name": "电气球", + "description": "让皮卡丘携带后,\n攻击和特攻就会提高的神奇之球。" + }, + "THICK_CLUB": { + "name": "粗骨头", + "description": "某种坚硬的骨头。\n让卡拉卡拉或嘎啦嘎啦携带后,攻击就会提高。" + }, + "METAL_POWDER": { + "name": "金属粉", + "description": "让百变怪携带后,防御就会提高的神奇粉末。\n非常细腻坚硬。" + }, + "QUICK_POWDER": { + "name": "速度粉", + "description": "让百变怪携带后,速度就会提高的神奇粉末。\n非常细腻坚硬。" + } + }, + "TempBattleStatBoosterItem": { + "x_attack": "力量强化", + "x_defense": "防御强化", + "x_sp_atk": "特攻强化", + "x_sp_def": "特防强化", + "x_speed": "速度强化", + "x_accuracy": "命中强化", + "dire_hit": "要害攻击" + }, + "TempBattleStatBoosterStatName": { + "ATK": "攻击", + "DEF": "防御", + "SPATK": "特攻", + "SPDEF": "特防", + "SPD": "速度", + "ACC": "命中", + "CRIT": "会心", + "EVA": "闪避", + "DEFAULT": "???" + }, + "AttackTypeBoosterItem": { + "silk_scarf": "丝绸围巾", + "black_belt": "黑带", + "sharp_beak": "锐利鸟嘴", + "poison_barb": "毒针", + "soft_sand": "柔软沙子", + "hard_stone": "硬石头", + "silver_powder": "银粉", + "spell_tag": "诅咒之符", + "metal_coat": "金属膜", + "charcoal": "木炭", + "mystic_water": "神秘水滴", + "miracle_seed": "奇迹种子", + "magnet": "磁铁", + "twisted_spoon": "弯曲的汤匙", + "never_melt_ice": "不融冰", + "dragon_fang": "龙之牙", + "black_glasses": "黑色眼镜", + "fairy_feather": "妖精之羽" + }, + "BaseStatBoosterItem": { + "hp_up": "HP增强剂", + "protein": "攻击增强剂", + "iron": "防御增强剂", + "calcium": "特攻增强剂", + "zinc": "特防增强剂", + "carbos": "速度增强剂" + }, + "EvolutionItem": { + "NONE": "无", + "LINKING_CORD": "联系绳", + "SUN_STONE": "日之石", + "MOON_STONE": "月之石", + "LEAF_STONE": "叶之石", + "FIRE_STONE": "火之石", + "WATER_STONE": "水之石", + "THUNDER_STONE": "雷之石", + "ICE_STONE": "冰之石", + "DUSK_STONE": "暗之石", + "DAWN_STONE": "觉醒之石", + "SHINY_STONE": "光之石", + "CRACKED_POT": "破裂的茶壶", + "SWEET_APPLE": "甜甜苹果", + "TART_APPLE": "酸酸苹果", + "STRAWBERRY_SWEET": "草莓糖饰", + "UNREMARKABLE_TEACUP": "凡作茶碗", + "CHIPPED_POT": "缺损的茶壶", + "BLACK_AUGURITE": "黑奇石", + "GALARICA_CUFF": "伽勒豆蔻手环", + "GALARICA_WREATH": "伽勒豆蔻花圈", + "PEAT_BLOCK": "泥炭块", + "AUSPICIOUS_ARMOR": "庆祝之铠", + "MALICIOUS_ARMOR": "咒术之铠", + "MASTERPIECE_TEACUP": "杰作茶碗", + "METAL_ALLOY": "复合金属", + "SCROLL_OF_DARKNESS": "恶之挂轴", + "SCROLL_OF_WATERS": "水之挂轴", + "SYRUPY_APPLE": "蜜汁苹果" + }, + "FormChangeItem": { + "NONE": "无", + "ABOMASITE": "暴雪王进化石", + "ABSOLITE": "阿勃梭鲁进化石", + "AERODACTYLITE": "化石翼龙进化石", + "AGGRONITE": "波士可多拉进化石", + "ALAKAZITE": "胡地进化石", + "ALTARIANITE": "七夕青鸟进化石", + "AMPHAROSITE": "电龙进化石", + "AUDINITE": "差不多娃娃进化石", + "BANETTITE": "诅咒娃娃进化石", + "BEEDRILLITE": "大针蜂进化石", + "BLASTOISINITE": "水箭龟进化石", + "BLAZIKENITE": "火焰鸡进化石", + "CAMERUPTITE": "喷火驼进化石", + "CHARIZARDITE_X": "喷火龙进化石X", + "CHARIZARDITE_Y": "喷火龙进化石Y", + "DIANCITE": "蒂安希进化石", + "GALLADITE": "艾路雷朵进化石", + "GARCHOMPITE": "烈咬陆鲨进化石", + "GARDEVOIRITE": "沙奈朵进化石", + "GENGARITE": "耿鬼进化石", + "GLALITITE": "冰鬼护进化石", + "GYARADOSITE": "暴鲤龙进化石", + "HERACRONITE": "赫拉克罗斯进化石", + "HOUNDOOMINITE": "黑鲁加进化石", + "KANGASKHANITE": "袋兽进化石", + "LATIASITE": "拉帝亚斯进化石", + "LATIOSITE": "拉帝欧斯进化石", + "LOPUNNITE": "长耳兔进化石", + "LUCARIONITE": "路卡利欧进化石", + "MANECTITE": "雷电兽进化石", + "MAWILITE": "大嘴娃进化石", + "MEDICHAMITE": "恰雷姆进化石", + "METAGROSSITE": "巨金怪进化石", + "MEWTWONITE_X": "超梦进化石X", + "MEWTWONITE_Y": "超梦进化石Y", + "PIDGEOTITE": "大比鸟进化石", + "PINSIRITE": "凯罗斯进化石", + "RAYQUAZITE": "烈空坐进化石", + "SABLENITE": "勾魂眼进化石", + "SALAMENCITE": "暴飞龙进化石", + "SCEPTILITE": "蜥蜴王进化石", + "SCIZORITE": "巨钳螳螂进化石", + "SHARPEDONITE": "巨牙鲨进化石", + "SLOWBRONITE": "呆壳兽进化石", + "STEELIXITE": "大钢蛇进化石", + "SWAMPERTITE": "巨沼怪进化石", + "TYRANITARITE": "班基拉斯进化石", + "VENUSAURITE": "妙蛙花进化石", + "BLUE_ORB": "靛蓝色宝珠", + "RED_ORB": "朱红色宝珠", + "SHARP_METEORITE": "锐利陨石", + "HARD_METEORITE": "坚硬陨石", + "SMOOTH_METEORITE": "光滑陨石", + "ADAMANT_CRYSTAL": "大金刚宝玉", + "LUSTROUS_GLOBE": "大白宝玉", + "GRISEOUS_CORE": "大白金宝玉", + "REVEAL_GLASS": "现形镜", + "GRACIDEA": "葛拉西蒂亚花", + "MAX_MUSHROOMS": "极巨菇菇", + "DARK_STONE": "黑暗石", + "LIGHT_STONE": "光明石", + "PRISON_BOTTLE": "惩戒之壶", + "N_LUNARIZER": "奈克洛露奈合体器", + "N_SOLARIZER": "奈克洛索尔合体器", + "RUSTED_SWORD": "腐朽的剑", + "RUSTED_SHIELD": "腐朽的盾", + "ICY_REINS_OF_UNITY": "牵绊缰绳(冰)", + "SHADOW_REINS_OF_UNITY": "牵绊缰绳(幽灵)", + "WELLSPRING_MASK": "水井面具", + "HEARTHFLAME_MASK": "火灶面具", + "CORNERSTONE_MASK": "础石面具", + "SHOCK_DRIVE": "闪电卡带", + "BURN_DRIVE": "火焰卡带", + "CHILL_DRIVE": "冰冻卡带", + "DOUSE_DRIVE": "水流卡带", + "ULTRANECROZIUM_Z": "究极奈克洛Z", + "FIST_PLATE": "拳头石板", + "SKY_PLATE": "蓝天石板", + "TOXIC_PLATE": "剧毒石板", + "EARTH_PLATE": "大地石板", + "STONE_PLATE": "岩石石板", + "INSECT_PLATE": "玉虫石板", + "SPOOKY_PLATE": "妖怪石板", + "IRON_PLATE": "钢铁石板", + "FLAME_PLATE": "火球石板", + "SPLASH_PLATE": "水滴石板", + "MEADOW_PLATE": "碧绿石板", + "ZAP_PLATE": "雷电石板", + "MIND_PLATE": "神奇石板", + "ICICLE_PLATE": "冰柱石板", + "DRACO_PLATE": "龙之石板", + "DREAD_PLATE": "恶颜石板", + "PIXIE_PLATE": "妖精石板", + "BLANK_PLATE": "净空石板", + "LEGEND_PLATE": "传说石板", + "FIGHTING_MEMORY": "战斗存储碟", + "FLYING_MEMORY": "飞翔存储碟", + "POISON_MEMORY": "毒存储碟", + "GROUND_MEMORY": "大地存储碟", + "ROCK_MEMORY": "岩石存储碟", + "BUG_MEMORY": "虫子存储碟", + "GHOST_MEMORY": "幽灵存储碟", + "STEEL_MEMORY": "钢铁存储碟", + "FIRE_MEMORY": "火焰存储碟", + "WATER_MEMORY": "清水存储碟", + "GRASS_MEMORY": "青草存储碟", + "ELECTRIC_MEMORY": "电子存储碟", + "PSYCHIC_MEMORY": "精神存储碟", + "ICE_MEMORY": "冰雪存储碟", + "DRAGON_MEMORY": "龙存储碟", + "DARK_MEMORY": "黑暗存储碟", + "FAIRY_MEMORY": "妖精存储碟", + "BLANK_MEMORY": "空白存储碟" + } +} \ No newline at end of file diff --git a/src/locales/zh_CN/modifier-type.ts b/src/locales/zh_CN/modifier-type.ts deleted file mode 100644 index bd87f7d8254..00000000000 --- a/src/locales/zh_CN/modifier-type.ts +++ /dev/null @@ -1,457 +0,0 @@ -import { ModifierTypeTranslationEntries } from "#app/interfaces/locales"; - -export const modifierType: ModifierTypeTranslationEntries = { - ModifierType: { - "AddPokeballModifierType": { - name: "{{modifierCount}}x {{pokeballName}}", - description: "获得 {{pokeballName}} x{{modifierCount}} (已有:{{pokeballAmount}}) \n捕捉倍率:{{catchRate}}。", - }, - "AddVoucherModifierType": { - name: "{{modifierCount}}x {{voucherTypeName}}", - description: "获得 {{voucherTypeName}} x{{modifierCount}}。", - }, - "PokemonHeldItemModifierType": { - extra: { - "inoperable": "{{pokemonName}} 无法携带\n这个物品!", - "tooMany": "{{pokemonName}} 已有太多\n这个物品!", - } - }, - "PokemonHpRestoreModifierType": { - description: "为一只宝可梦回复{{restorePoints}}HP或{{restorePercent}}%HP,取较大值。", - extra: { - "fully": "为一只宝可梦回复全部HP。", - "fullyWithStatus": "为一只宝可梦回复全部HP并消除所有负面\n状态。", - } - }, - "PokemonReviveModifierType": { - description: "复活一只宝可梦并回复 {{restorePercent}}% HP。", - }, - "PokemonStatusHealModifierType": { - description: "为一只宝可梦消除所有负面状态。", - }, - "PokemonPpRestoreModifierType": { - description: "为一只宝可梦的一个招式回复 {{restorePoints}} PP。", - extra: { - "fully": "完全回复一只宝可梦一个招式的PP。", - } - }, - "PokemonAllMovePpRestoreModifierType": { - description: "为一只宝可梦的所有招式回复 {{restorePoints}} PP。", - extra: { - "fully": "为一只宝可梦的所有招式回复所有PP。", - } - }, - "PokemonPpUpModifierType": { - description: "选择一只宝可梦的一个招式使用\n使其PP最大值提升基础的20% (最多3次)。", - }, - "PokemonNatureChangeModifierType": { - name: "{{natureName}}薄荷", - description: "将一只宝可梦的性格改为{{natureName}}并为\n该宝可梦永久解锁该性格。", - }, - "DoubleBattleChanceBoosterModifierType": { - description: "接下来的{{battleCount}}场战斗是双打的概率翻倍。", - }, - "TempBattleStatBoosterModifierType": { - description: "为所有成员宝可梦提升一级{{tempBattleStatName}},持续5场战斗。", - }, - "AttackTypeBoosterModifierType": { - description: "一只宝可梦的{{moveType}}系招式威力提升20%。", - }, - "PokemonLevelIncrementModifierType": { - description: "使一只宝可梦的等级提升{{levels}}级。", - }, - "AllPokemonLevelIncrementModifierType": { - description: "使一只寶可夢的等級提升{{levels}}級。", - }, - "PokemonBaseStatBoosterModifierType": { - description: "增加10%持有者的{{statName}},\n个体值越高堆叠上限越高。", - }, - "AllPokemonFullHpRestoreModifierType": { - description: "所有宝可梦完全回复HP。", - }, - "AllPokemonFullReviveModifierType": { - description: "复活所有濒死的宝可梦,\n并完全回复HP。", - }, - "MoneyRewardModifierType": { - description: "获得{{moneyMultiplier}}金钱(₽{{moneyAmount}})。", - extra: { - "small": "少量", - "moderate": "中等", - "large": "大量", - }, - }, - "ExpBoosterModifierType": { - description: "经验值获取量增加{{boostPercent}}%。", - }, - "PokemonExpBoosterModifierType": { - description: "持有者经验值获取量增加{{boostPercent}}%。", - }, - "PokemonFriendshipBoosterModifierType": { - description: "每场战斗获得的好感度提升50%。", - }, - "PokemonMoveAccuracyBoosterModifierType": { - description: "招式命中率增加{{accuracyAmount}}(最大100)。", - }, - "PokemonMultiHitModifierType": { - description: "攻击以40/25/12.5%的伤害造成2/3/4次伤害", - }, - "TmModifierType": { - name: "招式学习器\n{{moveId}} - {{moveName}}", - description: "教会一只宝可梦{{moveName}}。", - }, - "TmModifierTypeWithInfo": { - name: "招式学习器\n{{moveId}} - {{moveName}}", - description: "教会一只宝可梦{{moveName}}\n(按住C或者Shift查看更多信息)。", - }, - "EvolutionItemModifierType": { - description: "使某些宝可梦进化。", - }, - "FormChangeItemModifierType": { - description: "使某些宝可梦更改形态。", - }, - "FusePokemonModifierType": { - description: "融合两只宝可梦 (改变特性, 平分基础点数\n和属性, 共享招式池)。", - }, - "TerastallizeModifierType": { - name: "{{teraType}}太晶碎块", - description: "持有者获得{{teraType}}太晶化,\n持续10场战斗。", - }, - "ContactHeldItemTransferChanceModifierType": { - description: "攻击时{{chancePercent}}%概率\n偷取对手物品。", - }, - "TurnHeldItemTransferModifierType": { - description: "持有者每回合从对手那里\n获得一个持有的物品。", - }, - "EnemyAttackStatusEffectChanceModifierType": { - description: "攻击时{{chancePercent}}%概率造成{{statusEffect}}。", - }, - "EnemyEndureChanceModifierType": { - description: "敌方增加{{chancePercent}}%的概率\n在本回合不会倒下。", - }, - - "RARE_CANDY": { name: "神奇糖果" }, - "RARER_CANDY": { name: "超神奇糖果" }, - - "MEGA_BRACELET": { name: "MEGA手镯", description: "能让携带着MEGA石战斗的宝可梦\n进行MEGA进化。" }, - "DYNAMAX_BAND": { name: "极巨腕带", description: "能让携带着极巨菇菇战斗的宝可梦\n进行超极巨化。" }, - "TERA_ORB": { name: "太晶珠", description: "能让携带着太晶碎块战斗的宝可梦\n进行太晶化。" }, - - "MAP": { name: "地图", description: "有概率允许你在切换地区时\n选择目的地。"}, - - "POTION": { name: "伤药" }, - "SUPER_POTION": { name: "好伤药" }, - "HYPER_POTION": { name: "厉害伤药" }, - "MAX_POTION": { name: "全满药" }, - "FULL_RESTORE": { name: "全复药" }, - - "REVIVE": { name: "活力碎片" }, - "MAX_REVIVE": { name: "活力块" }, - - "FULL_HEAL": { name: "万灵药" }, - - "SACRED_ASH": { name: "圣灰" }, - - "REVIVER_SEED": { name: "复活种子", description: "受到技能攻击伤害濒死时,\n恢复该宝可梦的HP至1/2。" }, - - "WHITE_HERB": { name: "白色香草", description: "当携带它的宝可梦能力降低时,\n仅能回到之前的状态1次。" }, - - "ETHER": { name: "PP单项小补剂" }, - "MAX_ETHER": { name: "PP单项全补剂" }, - - "ELIXIR": { name: "PP多项小补剂" }, - "MAX_ELIXIR": { name: "PP多项全补剂" }, - - "PP_UP": { name: "PP提升剂" }, - "PP_MAX": { name: "PP极限提升剂" }, - - "LURE": { name: "引虫香水" }, - "SUPER_LURE": { name: "白银香水" }, - "MAX_LURE": { name: "黄金香水" }, - - "MEMORY_MUSHROOM": { name: "回忆蘑菇", description: "回忆一个宝可梦已经遗忘的招式。" }, - - "EXP_SHARE": { name: "学习装置", description: "未参加对战的宝可梦获得20%的经验值。" }, - "EXP_BALANCE": { name: "均衡型学习装置", description: "经验值会更多分给队伍中等级最低的宝可梦。" }, - - "OVAL_CHARM": { name: "圆形护符", description: "当多只宝可梦参与战斗,分别获得总经验值\n10%的额外经验值。" }, - - "EXP_CHARM": { name: "经验护符" }, - "SUPER_EXP_CHARM": { name: "超级经验护符" }, - "GOLDEN_EXP_CHARM": { name: "黄金经验护符" }, - - "LUCKY_EGG": { name: "幸运蛋" }, - "GOLDEN_EGG": { name: "金蛋" }, - - "SOOTHE_BELL": { name: "安抚之铃" }, - - "SCOPE_LENS": { name: "焦点镜", description: "能看见弱点的镜片。携带它的宝可梦的招式\n会变得容易击中要害。" }, - "LEEK": { name: "大葱", description: "非常长且坚硬的茎。让大葱鸭携带后,\n招式会变得容易击中要害。" }, - - "EVIOLITE": { name: "进化奇石", description: "携带后,还能进化的宝可梦的\n防御和特防就会提高。" }, - - "SOUL_DEW": { name: "心之水滴", description: "增加10%宝可梦性格对数值的影响 (加算)。" }, - - "NUGGET": { name: "金珠" }, - "BIG_NUGGET": { name: "巨大金珠" }, - "RELIC_GOLD": { name: "古代金币" }, - - "AMULET_COIN": { name: "护符金币", description: "获得的金钱增加20%。" }, - "GOLDEN_PUNCH": { name: "黄金拳头", description: "将50%造成的伤害转换为金钱。" }, - "COIN_CASE": { name: "代币盒", description: "每10场战斗, 获得自己金钱10%的利息。" }, - - "LOCK_CAPSULE": { name: "上锁的容器", description: "允许在商店中刷新物品时,\n锁定物品的稀有度。" }, - - "GRIP_CLAW": { name: "紧缠钩爪" }, - "WIDE_LENS": { name: "广角镜" }, - - "MULTI_LENS": { name: "多重镜" }, - - "HEALING_CHARM": { name: "治愈护符", description: "HP回复量增加10% (不含复活)。" }, - "CANDY_JAR": { name: "糖果罐", description: "神奇糖果提供的升级额外增加1级。" }, - - "BERRY_POUCH": { name: "树果袋", description: "使用树果时有30%的几率不会消耗树果。" }, - - "FOCUS_BAND": { name: "气势头带", description: "携带该道具的宝可梦有10%几率在受到攻击\n而将陷入濒死状态时,保留1点HP不陷入濒死状态。" }, - - "QUICK_CLAW": { name: "先制之爪", description: "有10%的几率无视速度优先使出招式\n(先制技能优先)。" }, - - "KINGS_ROCK": { name: "王者之证", description: "使用任意原本不会造成畏缩状态的攻击,\n有10%几率使目标陷入畏缩状态。" }, - - "LEFTOVERS": { name: "吃剩的东西", description: "携带后,在每个回合结束时恢复\n最大HP的1/16。" }, - "SHELL_BELL": { name: "贝壳之铃", description: "携带后,在攻击对方成功造成伤害时,\n携带者的HP会恢复其所造成伤害的1/8。" }, - - "TOXIC_ORB": { name: "剧毒宝珠", description: "触碰后会放出毒的神奇宝珠。\n携带后,在战斗时会变成剧毒状态。" }, - "FLAME_ORB": { name: "火焰宝珠", description: "触碰后会放出热量的神奇宝珠。\n携带后,在战斗时会变成灼伤状态。" }, - - "BATON": { name: "接力棒", description: "允许在切换宝可梦时保留能力变化, 对陷阱\n同样生效。" }, - - "SHINY_CHARM": { name: "闪耀护符", description: "显著增加野生宝可梦的闪光概率。" }, - "ABILITY_CHARM": { name: "特性护符", description: "显著增加野生宝可梦有隐藏特性的概率。" }, - - "IV_SCANNER": { name: "个体值探测器", description: "允许扫描野生宝可梦的个体值。每多拥有一个\n多显示两项个体值,优先显示最高项。" }, - - "DNA_SPLICERS": { name: "基因之楔" }, - - "MINI_BLACK_HOLE": { name: "迷你黑洞" }, - - "GOLDEN_POKEBALL": { name: "黄金精灵球", description: "在每场战斗结束后,增加一个额外物品选项。" }, - - "ENEMY_DAMAGE_BOOSTER": { name: "伤害硬币", description: "造成5%额外伤害(乘算)。" }, - "ENEMY_DAMAGE_REDUCTION": { name: "防御硬币", description: "受到2.5%更少伤害(乘算)。" }, - "ENEMY_HEAL": { name: "回复硬币", description: "每回合回复2%最大HP。" }, - "ENEMY_ATTACK_POISON_CHANCE": { name: "剧毒硬币" }, - "ENEMY_ATTACK_PARALYZE_CHANCE": { name: "麻痹硬币" }, - "ENEMY_ATTACK_BURN_CHANCE": { name: "灼烧硬币" }, - "ENEMY_STATUS_EFFECT_HEAL_CHANCE": { name: "万灵药硬币", description: "增加2.5%每回合治愈异常状态的概率。" }, - "ENEMY_ENDURE_CHANCE": { name: "忍受硬币" }, - "ENEMY_FUSED_CHANCE": { name: "融合硬币", description: "增加1%野生融合宝可梦出现概率。" }, - }, - SpeciesBoosterItem: { - "LIGHT_BALL": { name: "电气球", description: "让皮卡丘携带后,\n攻击和特攻就会提高的神奇之球。" }, - "THICK_CLUB": { name: "粗骨头", description: "某种坚硬的骨头。\n让卡拉卡拉或嘎啦嘎啦携带后,攻击就会提高。" }, - "METAL_POWDER": { name: "金属粉", description: "让百变怪携带后,防御就会提高的神奇粉末。\n非常细腻坚硬。" }, - "QUICK_POWDER": { name: "速度粉", description: "让百变怪携带后,速度就会提高的神奇粉末。\n非常细腻坚硬。" } - }, - TempBattleStatBoosterItem: { - "x_attack": "力量强化", - "x_defense": "防御强化", - "x_sp_atk": "特攻强化", - "x_sp_def": "特防强化", - "x_speed": "速度强化", - "x_accuracy": "命中强化", - "dire_hit": "要害攻击", - }, - - TempBattleStatBoosterStatName: { - "ATK": "攻击", - "DEF": "防御", - "SPATK": "特攻", - "SPDEF": "特防", - "SPD": "速度", - "ACC": "命中", - "CRIT": "会心", - "EVA": "闪避", - "DEFAULT": "???", - }, - - AttackTypeBoosterItem: { - "silk_scarf": "丝绸围巾", - "black_belt": "黑带", - "sharp_beak": "锐利鸟嘴", - "poison_barb": "毒针", - "soft_sand": "柔软沙子", - "hard_stone": "硬石头", - "silver_powder": "银粉", - "spell_tag": "诅咒之符", - "metal_coat": "金属膜", - "charcoal": "木炭", - "mystic_water": "神秘水滴", - "miracle_seed": "奇迹种子", - "magnet": "磁铁", - "twisted_spoon": "弯曲的汤匙", - "never_melt_ice": "不融冰", - "dragon_fang": "龙之牙", - "black_glasses": "黑色眼镜", - "fairy_feather": "妖精之羽", - }, - BaseStatBoosterItem: { - "hp_up": "HP增强剂", - "protein": "攻击增强剂", - "iron": "防御增强剂", - "calcium": "特攻增强剂", - "zinc": "特防增强剂", - "carbos": "速度增强剂", - }, - EvolutionItem: { - "NONE": "无", - - "LINKING_CORD": "联系绳", - "SUN_STONE": "日之石", - "MOON_STONE": "月之石", - "LEAF_STONE": "叶之石", - "FIRE_STONE": "火之石", - "WATER_STONE": "水之石", - "THUNDER_STONE": "雷之石", - "ICE_STONE": "冰之石", - "DUSK_STONE": "暗之石", - "DAWN_STONE": "觉醒之石", - "SHINY_STONE": "光之石", - "CRACKED_POT": "破裂的茶壶", - "SWEET_APPLE": "甜甜苹果", - "TART_APPLE": "酸酸苹果", - "STRAWBERRY_SWEET": "草莓糖饰", - "UNREMARKABLE_TEACUP": "凡作茶碗", - - "CHIPPED_POT": "缺损的茶壶", - "BLACK_AUGURITE": "黑奇石", - "GALARICA_CUFF": "伽勒豆蔻手环", - "GALARICA_WREATH": "伽勒豆蔻花圈", - "PEAT_BLOCK": "泥炭块", - "AUSPICIOUS_ARMOR": "庆祝之铠", - "MALICIOUS_ARMOR": "咒术之铠", - "MASTERPIECE_TEACUP": "杰作茶碗", - "METAL_ALLOY": "复合金属", - "SCROLL_OF_DARKNESS": "恶之挂轴", - "SCROLL_OF_WATERS": "水之挂轴", - "SYRUPY_APPLE": "蜜汁苹果", - }, - FormChangeItem: { - "NONE": "无", - - "ABOMASITE": "暴雪王进化石", - "ABSOLITE": "阿勃梭鲁进化石", - "AERODACTYLITE": "化石翼龙进化石", - "AGGRONITE": "波士可多拉进化石", - "ALAKAZITE": "胡地进化石", - "ALTARIANITE": "七夕青鸟进化石", - "AMPHAROSITE": "电龙进化石", - "AUDINITE": "差不多娃娃进化石", - "BANETTITE": "诅咒娃娃进化石", - "BEEDRILLITE": "大针蜂进化石", - "BLASTOISINITE": "水箭龟进化石", - "BLAZIKENITE": "火焰鸡进化石", - "CAMERUPTITE": "喷火驼进化石", - "CHARIZARDITE_X": "喷火龙进化石X", - "CHARIZARDITE_Y": "喷火龙进化石Y", - "DIANCITE": "蒂安希进化石", - "GALLADITE": "艾路雷朵进化石", - "GARCHOMPITE": "烈咬陆鲨进化石", - "GARDEVOIRITE": "沙奈朵进化石", - "GENGARITE": "耿鬼进化石", - "GLALITITE": "冰鬼护进化石", - "GYARADOSITE": "暴鲤龙进化石", - "HERACRONITE": "赫拉克罗斯进化石", - "HOUNDOOMINITE": "黑鲁加进化石", - "KANGASKHANITE": "袋兽进化石", - "LATIASITE": "拉帝亚斯进化石", - "LATIOSITE": "拉帝欧斯进化石", - "LOPUNNITE": "长耳兔进化石", - "LUCARIONITE": "路卡利欧进化石", - "MANECTITE": "雷电兽进化石", - "MAWILITE": "大嘴娃进化石", - "MEDICHAMITE": "恰雷姆进化石", - "METAGROSSITE": "巨金怪进化石", - "MEWTWONITE_X": "超梦进化石X", - "MEWTWONITE_Y": "超梦进化石Y", - "PIDGEOTITE": "大比鸟进化石", - "PINSIRITE": "凯罗斯进化石", - "RAYQUAZITE": "烈空坐进化石", - "SABLENITE": "勾魂眼进化石", - "SALAMENCITE": "暴飞龙进化石", - "SCEPTILITE": "蜥蜴王进化石", - "SCIZORITE": "巨钳螳螂进化石", - "SHARPEDONITE": "巨牙鲨进化石", - "SLOWBRONITE": "呆壳兽进化石", - "STEELIXITE": "大钢蛇进化石", - "SWAMPERTITE": "巨沼怪进化石", - "TYRANITARITE": "班基拉斯进化石", - "VENUSAURITE": "妙蛙花进化石", - - "BLUE_ORB": "靛蓝色宝珠", - "RED_ORB": "朱红色宝珠", - "SHARP_METEORITE": "锐利陨石", - "HARD_METEORITE": "坚硬陨石", - "SMOOTH_METEORITE": "光滑陨石", - "ADAMANT_CRYSTAL": "大金刚宝玉", - "LUSTROUS_GLOBE": "大白宝玉", - "GRISEOUS_CORE": "大白金宝玉", - "REVEAL_GLASS": "现形镜", - "GRACIDEA": "葛拉西蒂亚花", - "MAX_MUSHROOMS": "极巨菇菇", - "DARK_STONE": "黑暗石", - "LIGHT_STONE": "光明石", - "PRISON_BOTTLE": "惩戒之壶", - "N_LUNARIZER": "奈克洛露奈合体器", - "N_SOLARIZER": "奈克洛索尔合体器", - "RUSTED_SWORD": "腐朽的剑", - "RUSTED_SHIELD": "腐朽的盾", - "ICY_REINS_OF_UNITY": "牵绊缰绳(冰)", - "SHADOW_REINS_OF_UNITY": "牵绊缰绳(幽灵)", - "WELLSPRING_MASK": "水井面具", - "HEARTHFLAME_MASK": "火灶面具", - "CORNERSTONE_MASK": "础石面具", - "SHOCK_DRIVE": "闪电卡带", - "BURN_DRIVE": "火焰卡带", - "CHILL_DRIVE": "冰冻卡带", - "DOUSE_DRIVE": "水流卡带", - "ULTRANECROZIUM_Z": "究极奈克洛Z", - - "FIST_PLATE": "拳头石板", - "SKY_PLATE": "蓝天石板", - "TOXIC_PLATE": "剧毒石板", - "EARTH_PLATE": "大地石板", - "STONE_PLATE": "岩石石板", - "INSECT_PLATE": "玉虫石板", - "SPOOKY_PLATE": "妖怪石板", - "IRON_PLATE": "钢铁石板", - "FLAME_PLATE": "火球石板", - "SPLASH_PLATE": "水滴石板", - "MEADOW_PLATE": "碧绿石板", - "ZAP_PLATE": "雷电石板", - "MIND_PLATE": "神奇石板", - "ICICLE_PLATE": "冰柱石板", - "DRACO_PLATE": "龙之石板", - "DREAD_PLATE": "恶颜石板", - "PIXIE_PLATE": "妖精石板", - "BLANK_PLATE": "净空石板", - "LEGEND_PLATE": "传说石板", - "FIGHTING_MEMORY": "战斗存储碟", - "FLYING_MEMORY": "飞翔存储碟", - "POISON_MEMORY": "毒存储碟", - "GROUND_MEMORY": "大地存储碟", - "ROCK_MEMORY": "岩石存储碟", - "BUG_MEMORY": "虫子存储碟", - "GHOST_MEMORY": "幽灵存储碟", - "STEEL_MEMORY": "钢铁存储碟", - "FIRE_MEMORY": "火焰存储碟", - "WATER_MEMORY": "清水存储碟", - "GRASS_MEMORY": "青草存储碟", - "ELECTRIC_MEMORY": "电子存储碟", - "PSYCHIC_MEMORY": "精神存储碟", - "ICE_MEMORY": "冰雪存储碟", - "DRAGON_MEMORY": "龙存储碟", - "DARK_MEMORY": "黑暗存储碟", - "FAIRY_MEMORY": "妖精存储碟", - "BLANK_MEMORY": "空白存储碟", - }, -} as const; diff --git a/src/locales/zh_CN/modifier.ts b/src/locales/zh_CN/modifier.json similarity index 85% rename from src/locales/zh_CN/modifier.ts rename to src/locales/zh_CN/modifier.json index 6900e99dfb6..707fab20ecc 100644 --- a/src/locales/zh_CN/modifier.ts +++ b/src/locales/zh_CN/modifier.json @@ -1,6 +1,4 @@ -import { SimpleTranslationEntries } from "#app/interfaces/locales"; - -export const modifier: SimpleTranslationEntries = { +{ "surviveDamageApply": "{{pokemonNameWithAffix}}用{{typeName}}\n撑住了!", "turnHealApply": "{{pokemonNameWithAffix}}用{{typeName}}\n回复了体力!", "hitHealApply": "{{pokemonNameWithAffix}}用{{typeName}}\n回复了体力!", @@ -10,5 +8,5 @@ export const modifier: SimpleTranslationEntries = { "turnHeldItemTransferApply": "{{pokemonNameWithAffix}}的{{itemName}}被\n{{pokemonName}}的{{typeName}}吸收了!", "contactHeldItemTransferApply": "{{pokemonNameWithAffix}}的{{itemName}}被\n{{pokemonName}}的{{typeName}}夺取了!", "enemyTurnHealApply": "{{pokemonNameWithAffix}}\n回复了一些体力!", - "bypassSpeedChanceApply": "{{pokemonName}}用了{{itemName}}后,行动变快了!", -} as const; + "bypassSpeedChanceApply": "{{pokemonName}}用了{{itemName}}后,行动变快了!" +} \ No newline at end of file diff --git a/src/locales/zh_CN/move-trigger.ts b/src/locales/zh_CN/move-trigger.json similarity index 94% rename from src/locales/zh_CN/move-trigger.ts rename to src/locales/zh_CN/move-trigger.json index 3bbab276a87..5a76f402783 100644 --- a/src/locales/zh_CN/move-trigger.ts +++ b/src/locales/zh_CN/move-trigger.json @@ -1,7 +1,5 @@ -import { SimpleTranslationEntries } from "#app/interfaces/locales"; - -export const moveTriggers: SimpleTranslationEntries = { - "hitWithRecoil" : "{{pokemonName}}\n受到了反作用力造成的伤害!", +{ + "hitWithRecoil": "{{pokemonName}}\n受到了反作用力造成的伤害!", "cutHpPowerUpMove": "{{pokemonName}}\n削减了体力并提升了招式威力!", "absorbedElectricity": "{{pokemonName}}\n吸收了电力!", "switchedStatChanges": "{{pokemonName}}和对手互换了\n自己的能力变化!", @@ -61,6 +59,7 @@ export const moveTriggers: SimpleTranslationEntries = { "faintCountdown": "{{pokemonName}}\n将在{{turnCount}}回合后灭亡!", "copyType": "{{pokemonName}}\n变成了{{targetPokemonName}}的属性!", "suppressAbilities": "{{pokemonName}}的特性\n变得无效了!", + "revivalBlessing": "{{pokemonName}}复活了!", "swapArenaTags": "{{pokemonName}}\n交换了双方的场地效果!", - "exposedMove": "{{pokemonName}}识破了\n{{targetPokemonName}}的原型!", -} as const; + "exposedMove": "{{pokemonName}}识破了\n{{targetPokemonName}}的原型!" +} \ No newline at end of file diff --git a/src/locales/zh_CN/move.json b/src/locales/zh_CN/move.json new file mode 100644 index 00000000000..5974271abb2 --- /dev/null +++ b/src/locales/zh_CN/move.json @@ -0,0 +1,3810 @@ +{ + "pound": { + "name": "拍击", + "effect": "使用长长的尾巴或手等拍打对手进行攻击" + }, + "karateChop": { + "name": "空手劈", + "effect": "用锋利的手刀劈向对手进行攻击。\n容易击中要害" + }, + "doubleSlap": { + "name": "连环巴掌", + "effect": "用连环巴掌拍打对手进行攻击。\n连续攻击2~5次" + }, + "cometPunch": { + "name": "连续拳", + "effect": "用拳头怒涛般的殴打对手进行攻击。\n连续攻击2~5次" + }, + "megaPunch": { + "name": "百万吨重拳", + "effect": "用充满力量的拳头攻击对手" + }, + "payDay": { + "name": "聚宝功", + "effect": "向对手的身体投掷小金币进行攻击。\n战斗后可以拿到钱" + }, + "firePunch": { + "name": "火焰拳", + "effect": "用充满火焰的拳头攻击对手。\n有时会让对手陷入灼伤状态" + }, + "icePunch": { + "name": "冰冻拳", + "effect": "用充满寒气的拳头攻击对手。\n有时会让对手陷入冰冻状态" + }, + "thunderPunch": { + "name": "雷电拳", + "effect": "用充满电流的拳头攻击对手。\n有时会让对手陷入麻痹状态" + }, + "scratch": { + "name": "抓", + "effect": "用坚硬且无比锋利的爪子抓对手进行攻击" + }, + "viseGrip": { + "name": "夹住", + "effect": "将对手从两侧夹住,给予伤害" + }, + "guillotine": { + "name": "极落钳", + "effect": "用大钳子或剪刀等夹断对手进行攻击。\n只要命中就会一击昏厥" + }, + "razorWind": { + "name": "旋风刀", + "effect": "制造风之刃,于第2回合攻击对手。\n容易击中要害" + }, + "swordsDance": { + "name": "剑舞", + "effect": "激烈地跳起战舞提高气势。\n大幅提高自己的攻击" + }, + "cut": { + "name": "居合劈", + "effect": "用镰刀或爪子等切斩对手进行攻击" + }, + "gust": { + "name": "起风", + "effect": "用翅膀将刮起的狂风袭向对手进行攻击" + }, + "wingAttack": { + "name": "翅膀攻击", + "effect": "大大地展开美丽的翅膀,\n将其撞向对手进行攻击" + }, + "whirlwind": { + "name": "吹飞", + "effect": "吹飞对手,强制拉后备宝可梦上场。\n如果对手为野生宝可梦,\n战斗将直接结束" + }, + "fly": { + "name": "飞翔", + "effect": "第1回合飞上天空,第2回合攻击对手" + }, + "bind": { + "name": "绑紧", + "effect": "使用长长的身体或藤蔓等,\n在4~5回合内绑紧对手进行攻击" + }, + "slam": { + "name": "摔打", + "effect": "使用长长的尾巴或藤蔓等摔打对手\n进行攻击" + }, + "vineWhip": { + "name": "藤鞭", + "effect": "用如同鞭子般弯曲而细长的藤蔓摔\n打对手进行攻击" + }, + "stomp": { + "name": "踩踏", + "effect": "用大脚踩踏对手进行攻击。\n有时会使对手畏缩" + }, + "doubleKick": { + "name": "二连踢", + "effect": "用2只脚踢飞对手进行攻击。\n连续2次给予伤害" + }, + "megaKick": { + "name": "百万吨重踢", + "effect": "使出力大无穷的重踢踢飞对手进行攻击" + }, + "jumpKick": { + "name": "飞踢", + "effect": "使出高高的腾空踢攻击对手。\n如果踢偏则自己会受到伤害" + }, + "rollingKick": { + "name": "回旋踢", + "effect": "一边使身体快速旋转,\n一边踢飞对手进行攻击。\n有时会使对手畏缩" + }, + "sandAttack": { + "name": "泼沙", + "effect": "向对手脸上泼沙子,从而降低命中率" + }, + "headbutt": { + "name": "头锤", + "effect": "将头伸出,笔直地扑向对手进行攻击。\n有时会使对手畏缩" + }, + "hornAttack": { + "name": "角撞", + "effect": "用尖锐的角攻击对手" + }, + "furyAttack": { + "name": "乱击", + "effect": "用角或喙刺向对手进行攻击。\n连续攻击2~5次" + }, + "hornDrill": { + "name": "角钻", + "effect": "用旋转的角刺入对手进行攻击。\n只要命中就会一击昏厥" + }, + "tackle": { + "name": "撞击", + "effect": "用整个身体撞向对手进行攻击" + }, + "bodySlam": { + "name": "泰山压顶", + "effect": "用整个身体压住对手进行攻击。\n有时会让对手陷入麻痹状态" + }, + "wrap": { + "name": "紧束", + "effect": "使用长长的身体或藤蔓等,\n在4~5回合内紧束对手进行攻击" + }, + "takeDown": { + "name": "猛撞", + "effect": "以惊人的气势撞向对手进行攻击。\n自己也会受到少许伤害" + }, + "thrash": { + "name": "大闹一番", + "effect": "在2~3回合内,乱打一气地攻击对手。\n大闹一番后自己会陷入混乱" + }, + "doubleEdge": { + "name": "舍身冲撞", + "effect": "拼命地猛撞向对手进行攻击。\n自己也会受到不小的伤害" + }, + "tailWhip": { + "name": "摇尾巴", + "effect": "可爱地左右摇晃尾巴,\n诱使对手疏忽大意。会降低对手的防御" + }, + "poisonSting": { + "name": "毒针", + "effect": "将有毒的针刺入对手进行攻击。\n有时会让对手陷入中毒状态" + }, + "twineedle": { + "name": "双针", + "effect": "将2根针刺入对手,连续2次给予伤害。\n有时会让对手陷入中毒状态" + }, + "pinMissile": { + "name": "飞弹针", + "effect": "向对手发射锐针进行攻击。\n连续攻击2~5次" + }, + "leer": { + "name": "瞪眼", + "effect": "用犀利的眼神使其害怕,\n从而降低对手的防御" + }, + "bite": { + "name": "咬住", + "effect": "用尖锐的牙咬住对手进行攻击。\n有时会使对手畏缩" + }, + "growl": { + "name": "叫声", + "effect": "让对手听可爱的叫声,\n引开注意力使其疏忽,\n从而降低对手的攻击" + }, + "roar": { + "name": "吼叫", + "effect": "放走对手,强制拉后备宝可梦上场。\n如果对手为野生宝可梦,\n战斗将直接结束" + }, + "sing": { + "name": "唱歌", + "effect": "让对手听舒适、美妙的歌声,\n从而陷入睡眠状态" + }, + "supersonic": { + "name": "超音波", + "effect": "从身体发出特殊的音波,\n从而使对手混乱" + }, + "sonicBoom": { + "name": "音爆", + "effect": "将冲击波撞向对手进行攻击。\n必定会给予20的伤害" + }, + "disable": { + "name": "定身法", + "effect": "阻碍对手行动,之前使出的招式将\n在4回合内无法使用" + }, + "acid": { + "name": "溶解液", + "effect": "将强酸泼向对手进行攻击。\n有时会降低对手的特防" + }, + "ember": { + "name": "火花", + "effect": "向对手发射小型火焰进行攻击。\n有时会让对手陷入灼伤状态" + }, + "flamethrower": { + "name": "喷射火焰", + "effect": "向对手发射烈焰进行攻击。\n有时会让对手陷入灼伤状态" + }, + "mist": { + "name": "白雾", + "effect": "用白雾覆盖身体。在5回合内不会\n让对手降低自己的能力" + }, + "waterGun": { + "name": "水枪", + "effect": "向对手猛烈地喷射水流进行攻击" + }, + "hydroPump": { + "name": "水炮", + "effect": "向对手猛烈地喷射大量水流进行攻击" + }, + "surf": { + "name": "冲浪", + "effect": "利用大浪攻击自己周围所有的宝可梦" + }, + "iceBeam": { + "name": "冰冻光束", + "effect": "向对手发射冰冻光束进行攻击。\n有时会让对手陷入冰冻状态" + }, + "blizzard": { + "name": "暴风雪", + "effect": "将猛烈的暴风雪刮向对手进行攻击。\n有时会让对手陷入冰冻状态" + }, + "psybeam": { + "name": "幻象光线", + "effect": "向对手发射神奇的光线进行攻击。\n有时会使对手混乱" + }, + "bubbleBeam": { + "name": "泡沫光线", + "effect": "向对手猛烈地喷射泡沫进行攻击。\n有时会降低对手的速度" + }, + "auroraBeam": { + "name": "极光束", + "effect": "向对手发射虹色光束进行攻击。\n有时会降低对手的攻击" + }, + "hyperBeam": { + "name": "破坏光线", + "effect": "向对手发射强烈的光线进行攻击。\n下一回合自己将无法动弹" + }, + "peck": { + "name": "啄", + "effect": "用尖锐的喙或角刺向对手进行攻击" + }, + "drillPeck": { + "name": "啄钻", + "effect": "一边旋转,一边将尖喙刺入对手进行攻击" + }, + "submission": { + "name": "深渊翻滚", + "effect": "将对手连同自己一起摔向地面进行攻击。\n自己也会受到少许伤害" + }, + "lowKick": { + "name": "踢倒", + "effect": "用力踢对手的脚,使其摔倒进行攻击。\n对手越重,威力越大" + }, + "counter": { + "name": "双倍奉还", + "effect": "从对手那里受到物理攻击的伤害将\n以2倍返还给同一个对手" + }, + "seismicToss": { + "name": "地球上投", + "effect": "利用引力将对手甩飞出去。\n给予对手和自己等级相同的伤害" + }, + "strength": { + "name": "怪力", + "effect": "使出浑身力气殴打对手进行攻击" + }, + "absorb": { + "name": "吸取", + "effect": "吸取对手的养分进行攻击。\n可以回复给予对手伤害的一半HP" + }, + "megaDrain": { + "name": "超级吸取", + "effect": "吸取对手的养分进行攻击。\n可以回复给予对手伤害的一半HP" + }, + "leechSeed": { + "name": "寄生种子", + "effect": "植入寄生种子后,将在每回合一点\n一点吸取对手的HP,\n从而用来回复自己的HP" + }, + "growth": { + "name": "生长", + "effect": "让身体一下子长大,从而提高攻击和特攻" + }, + "razorLeaf": { + "name": "飞叶快刀", + "effect": "飞出叶片,切斩对手进行攻击。\n容易击中要害" + }, + "solarBeam": { + "name": "日光束", + "effect": "第1回合收集满满的日光,\n第2回合发射光束进行攻击" + }, + "poisonPowder": { + "name": "毒粉", + "effect": "撒出毒粉,从而让对手陷入中毒状态" + }, + "stunSpore": { + "name": "麻痹粉", + "effect": "撒出麻痹粉,从而让对手陷入麻痹状态" + }, + "sleepPowder": { + "name": "催眠粉", + "effect": "撒出催眠粉,从而让对手陷入睡眠状态" + }, + "petalDance": { + "name": "花瓣舞", + "effect": "在2~3回合内,散落花瓣攻击对手。\n之后自己会陷入混乱" + }, + "stringShot": { + "name": "吐丝", + "effect": "用口中吐出的丝缠绕对手,\n从而大幅降低对手的速度" + }, + "dragonRage": { + "name": "龙之怒", + "effect": "将愤怒的冲击波撞向对手进行攻击。\n必定会给予40的伤害" + }, + "fireSpin": { + "name": "火焰旋涡", + "effect": "将对手困在激烈的火焰旋涡中,\n在4~5回合内进行攻击" + }, + "thunderShock": { + "name": "电击", + "effect": "发出电流刺激对手进行攻击。\n有时会让对手陷入麻痹状态" + }, + "thunderbolt": { + "name": "十万伏特", + "effect": "向对手发出强力电击进行攻击。\n有时会让对手陷入麻痹状态" + }, + "thunderWave": { + "name": "电磁波", + "effect": "向对手发出微弱的电击,\n从而让对手陷入麻痹状态" + }, + "thunder": { + "name": "打雷", + "effect": "向对手劈下暴雷进行攻击。\n有时会让对手陷入麻痹状态" + }, + "rockThrow": { + "name": "落石", + "effect": "拿起小岩石,投掷对手进行攻击" + }, + "earthquake": { + "name": "地震", + "effect": "利用地震的冲击,攻击自己周围所\n有的宝可梦" + }, + "fissure": { + "name": "地裂", + "effect": "让对手掉落于地裂的裂缝中进行攻击。\n只要命中就会一击昏厥" + }, + "dig": { + "name": "挖洞", + "effect": "第1回合钻入地底,第2回合攻击对手" + }, + "toxic": { + "name": "剧毒", + "effect": "让对手陷入剧毒状态。\n随着回合的推进,中毒伤害会增加" + }, + "confusion": { + "name": "念力", + "effect": "向对手发送微弱的念力进行攻击。\n有时会使对手混乱" + }, + "psychic": { + "name": "精神强念", + "effect": "向对手发送强大的念力进行攻击。\n有时会降低对手的特防" + }, + "hypnosis": { + "name": "催眠术", + "effect": "施以诱导睡意的暗示,\n让对手陷入睡眠状态" + }, + "meditate": { + "name": "瑜伽姿势", + "effect": "唤醒身体深处沉睡的力量,\n从而提高自己的攻击" + }, + "agility": { + "name": "高速移动", + "effect": "让身体放松变得轻盈,\n以便高速移动。大幅提高自己的速度" + }, + "quickAttack": { + "name": "电光一闪", + "effect": "以迅雷不及掩耳之势扑向对手。\n必定能够先制攻击" + }, + "rage": { + "name": "愤怒", + "effect": "如果在使出招式后受到攻击的话,\n会因愤怒的力量而提高攻击" + }, + "teleport": { + "name": "瞬间移动", + "effect": "当有后备宝可梦时使用,\n就可以进行替换。\n野生的宝可梦使用则会逃走" + }, + "nightShade": { + "name": "黑夜魔影", + "effect": "显示恐怖幻影,只给予对手和自己\n等级相同的伤害" + }, + "mimic": { + "name": "模仿", + "effect": "可以将对手最后使用的招式,\n在战斗内变成自己的招式" + }, + "screech": { + "name": "刺耳声", + "effect": "发出不由自主想要捂起耳朵的刺耳声,\n从而大幅降低对手的防御" + }, + "doubleTeam": { + "name": "影子分身", + "effect": "通过快速移动来制造分身,\n扰乱对手,从而提高闪避率" + }, + "recover": { + "name": "自我再生", + "effect": "让细胞再生,从而回复自己最大H\nP的一半" + }, + "harden": { + "name": "变硬", + "effect": "全身使劲,让身体变硬,\n从而提高自己的防御" + }, + "minimize": { + "name": "变小", + "effect": "蜷缩身体显得很小,从而大幅提高\n自己的闪避率" + }, + "smokescreen": { + "name": "烟幕", + "effect": "向对手喷出烟或墨汁等,\n从而降低对手的命中率" + }, + "confuseRay": { + "name": "奇异之光", + "effect": "显示奇怪的光,扰乱对手。\n使对手混乱" + }, + "withdraw": { + "name": "缩入壳中", + "effect": "缩入壳里保护身体,从而提高自己的防御" + }, + "defenseCurl": { + "name": "变圆", + "effect": "将身体蜷曲变圆,从而提高自己的防御" + }, + "barrier": { + "name": "屏障", + "effect": "制造坚固的壁障,从而大幅提高自\n己的防御" + }, + "lightScreen": { + "name": "光墙", + "effect": "利用神奇的墙壁,在5回合内减弱\n从对手那里受到的特殊攻击的伤害" + }, + "haze": { + "name": "黑雾", + "effect": "升起黑雾,将正在场上战斗的全体\n宝可梦的能力变回原点" + }, + "reflect": { + "name": "反射壁", + "effect": "利用神奇的墙壁,在5回合内减弱\n从对手那里受到的物理攻击的伤害" + }, + "focusEnergy": { + "name": "聚气", + "effect": "深深地吸口气,集中精神。\n自己的攻击会变得容易击中要害" + }, + "bide": { + "name": "忍耐", + "effect": "在2回合内忍受攻击,\n受到的伤害会2倍返还给对手" + }, + "metronome": { + "name": "挥指", + "effect": "挥动手指刺激自己的大脑,\n从许多的招式中随机使出1个" + }, + "mirrorMove": { + "name": "鹦鹉学舌", + "effect": "模仿对手使用的招式,\n自己也使用相同招式" + }, + "selfDestruct": { + "name": "玉石俱碎", + "effect": "引发爆炸,攻击自己周围所有的宝可梦。\n使用后陷入昏厥" + }, + "eggBomb": { + "name": "炸蛋", + "effect": "向对手用力投掷大大的蛋进行攻击" + }, + "lick": { + "name": "舌舔", + "effect": "用长长的舌头,舔遍对手进行攻击。\n有时会让对手陷入麻痹状态" + }, + "smog": { + "name": "浊雾", + "effect": "将肮脏的浓雾吹向对手进行攻击。\n有时会让对手陷入中毒状态" + }, + "sludge": { + "name": "污泥攻击", + "effect": "用污泥投掷对手进行攻击。\n有时会让对手陷入中毒状态" + }, + "boneClub": { + "name": "骨棒", + "effect": "用手中的骨头殴打对手进行攻击。\n有时会使对手畏缩" + }, + "fireBlast": { + "name": "大字爆炎", + "effect": "用大字形状的火焰烧尽对手。\n有时会让对手陷入灼伤状态" + }, + "waterfall": { + "name": "攀瀑", + "effect": "以惊人的气势扑向对手。\n有时会使对手畏缩" + }, + "clamp": { + "name": "贝壳夹击", + "effect": "用非常坚固且厚实的贝壳,\n在4~5回合内夹住对手进行攻击" + }, + "swift": { + "name": "高速星星", + "effect": "发射星形的光攻击对手。\n攻击必定会命中" + }, + "skullBash": { + "name": "火箭头锤", + "effect": "第1回合把头缩进去,\n从而提高防御。第2回合攻击对手" + }, + "spikeCannon": { + "name": "尖刺加农炮", + "effect": "向对手发射锐针进行攻击。\n连续攻击2~5次" + }, + "constrict": { + "name": "缠绕", + "effect": "用触手或青藤等缠绕进行攻击。\n有时会降低对手的速度" + }, + "amnesia": { + "name": "瞬间失忆", + "effect": "将头脑清空,瞬间忘记某事,\n从而大幅提高自己的特防" + }, + "kinesis": { + "name": "折弯汤匙", + "effect": "折弯汤匙引开注意,从而降低对手\n的命中率" + }, + "softBoiled": { + "name": "生蛋", + "effect": "回复自己最大HP的一半" + }, + "highJumpKick": { + "name": "飞膝踢", + "effect": "跳起后用膝盖撞对手进行攻击。\n如果撞偏则自己会受到伤害" + }, + "glare": { + "name": "大蛇瞪眼", + "effect": "用腹部的花纹使对手害怕,\n从而让其陷入麻痹状态" + }, + "dreamEater": { + "name": "食梦", + "effect": "吃掉正在睡觉的对手的梦进行攻击。\n回复对手所受到伤害的一半HP" + }, + "poisonGas": { + "name": "毒瓦斯", + "effect": "将毒瓦斯吹到对手的脸上,\n从而让对手陷入中毒状态" + }, + "barrage": { + "name": "投球", + "effect": "向对手投掷圆形物体进行攻击。\n连续攻击2~5次" + }, + "leechLife": { + "name": "吸血", + "effect": "吸取血液攻击对手。可以回复给予\n对手伤害的一半HP" + }, + "lovelyKiss": { + "name": "恶魔之吻", + "effect": "用恐怖的脸强吻对手。\n让对手陷入睡眠状态" + }, + "skyAttack": { + "name": "神鸟猛击", + "effect": "第2回合攻击对手。偶尔使对手畏缩。\n也容易击中要害" + }, + "transform": { + "name": "变身", + "effect": "变身成对手宝可梦的样子,\n能够使用和对手完全相同的招式" + }, + "bubble": { + "name": "泡沫", + "effect": "向对手用力吹起无数泡泡进行攻击。\n有时会降低对手的速度" + }, + "dizzyPunch": { + "name": "迷昏拳", + "effect": "有节奏地出拳攻击对手。\n有时会使对手混乱" + }, + "spore": { + "name": "蘑菇孢子", + "effect": "沙沙沙地撒满具有催眠效果的孢子,\n从而让对手陷入睡眠状态" + }, + "flash": { + "name": "闪光", + "effect": "使出光芒,从而降低对手的命中率。\n也可在阴暗的洞窟里照亮四周" + }, + "psywave": { + "name": "精神波", + "effect": "向对手发射神奇的念波进行攻击。\n每次使用,伤害都会改变" + }, + "splash": { + "name": "跃起", + "effect": "也不攻击只是一蹦一蹦地跳,\n什么都不会发生…" + }, + "acidArmor": { + "name": "溶化", + "effect": "通过细胞的变化进行液化,\n从而大幅提高自己的防御" + }, + "crabhammer": { + "name": "蟹钳锤", + "effect": "用大钳子敲打对手进行攻击。\n容易击中要害" + }, + "explosion": { + "name": "大爆炸", + "effect": "引发大爆炸,\n攻击自己周围所有的宝可梦。\n使用后自己会陷入昏厥" + }, + "furySwipes": { + "name": "乱抓", + "effect": "用爪子或镰刀等抓对手进行攻击。\n连续攻击2~5次" + }, + "bonemerang": { + "name": "骨头回力镖", + "effect": "用手中的骨头投掷对手,\n来回连续2次给予伤害" + }, + "rest": { + "name": "睡觉", + "effect": "连续睡上2回合。回复自己的全部\nHP以及治愈所有异常状态" + }, + "rockSlide": { + "name": "岩崩", + "effect": "将大岩石猛烈地撞向对手进行攻击。\n有时会使对手畏缩" + }, + "hyperFang": { + "name": "终结门牙", + "effect": "用锋利的门牙牢牢地咬住对手进行攻击。\n有时会使对手畏缩" + }, + "sharpen": { + "name": "棱角化", + "effect": "增加身体的角,变得棱棱角角,\n从而提高自己的攻击" + }, + "conversion": { + "name": "纹理", + "effect": "将自己的属性转换成和已学会的招\n式中第一个招式相同的属性" + }, + "triAttack": { + "name": "三重攻击", + "effect": "用3种光线进行攻击。\n有时会让对手陷入麻痹、\n灼伤或冰冻的状态" + }, + "superFang": { + "name": "愤怒门牙", + "effect": "用锋利的门牙猛烈地咬住对手进行攻击。\n对手的HP减半" + }, + "slash": { + "name": "劈开", + "effect": "用爪子或镰刀等劈开对手进行攻击。\n容易击中要害" + }, + "substitute": { + "name": "替身", + "effect": "削减少许自己的HP,\n制造分身。分身将成为自己的替身" + }, + "struggle": { + "name": "挣扎", + "effect": "当自己的PP耗尽时,\n努力挣扎攻击对手。\n自己也会受到少许伤害" + }, + "sketch": { + "name": "写生", + "effect": "将对手使用的招式变成自己的招式。\n使用1次后写生消失" + }, + "tripleKick": { + "name": "三连踢", + "effect": "连续3次踢对手进行攻击。\n每踢中一次,威力就会提高" + }, + "thief": { + "name": "小偷", + "effect": "攻击的同时盗取对手的道具。" + }, + "spiderWeb": { + "name": "蛛网", + "effect": "将黏糊糊的细丝一层一层缠住对手,\n使其不能从战斗中逃走" + }, + "mindReader": { + "name": "心之眼", + "effect": "用心感受对手的行动,\n下次攻击必定会击中对手" + }, + "nightmare": { + "name": "恶梦", + "effect": "让在睡眠状态下的对手做恶梦,\n每回合会缓缓减少HP" + }, + "flameWheel": { + "name": "火焰轮", + "effect": "让火焰覆盖全身,猛撞向对手进行攻击。\n有时会让对手陷入灼伤状态" + }, + "snore": { + "name": "打鼾", + "effect": "在自己睡觉时,发出噪音进行攻击。\n有时会使对手畏缩" + }, + "curse": { + "name": "诅咒", + "effect": "使用该招式的宝可梦,\n其属性是幽灵属性或其他属性时,\n效果会不一样" + }, + "flail": { + "name": "抓狂", + "effect": "抓狂般乱打进行攻击。\n自己的HP越少,招式的威力越大" + }, + "conversion2": { + "name": "纹理2", + "effect": "为了可以抵抗对手最后使用的招式,\n从而使自己的属性发生变化" + }, + "aeroblast": { + "name": "气旋攻击", + "effect": "发射空气旋涡进行攻击。\n容易击中要害" + }, + "cottonSpore": { + "name": "棉孢子", + "effect": "将棉花般柔软的孢子紧贴对手,\n从而大幅降低对手的速度" + }, + "reversal": { + "name": "绝处逢生", + "effect": "竭尽全力进行攻击。自己的HP越少,\n招式的威力越大" + }, + "spite": { + "name": "怨恨", + "effect": "对对手最后使用的招式怀有怨恨,\n减少4PP该招式" + }, + "powderSnow": { + "name": "细雪", + "effect": "将冰冷的细雪吹向对手进行攻击。\n有时会让对手陷入冰冻状态" + }, + "protect": { + "name": "守住", + "effect": "完全抵挡对手的攻击。\n连续使出则容易失败" + }, + "machPunch": { + "name": "音速拳", + "effect": "以迅雷不及掩耳之势出拳。\n必定能够先制攻击" + }, + "scaryFace": { + "name": "可怕面孔", + "effect": "用恐怖的表情瞪着对手,\n使其害怕,从而大幅降低对手的速度" + }, + "feintAttack": { + "name": "出奇一击", + "effect": "悄悄地靠近对手,趁其不备进行殴打。\n攻击必定会命中" + }, + "sweetKiss": { + "name": "天使之吻", + "effect": "像天使般可爱地亲吻对手,\n从而使对手混乱" + }, + "bellyDrum": { + "name": "腹鼓", + "effect": "将自己的HP减少到最大HP的一半,\n从而最大限度提高自己的攻击" + }, + "sludgeBomb": { + "name": "污泥炸弹", + "effect": "用污泥投掷对手进行攻击。\n有时会让对手陷入中毒状态" + }, + "mudSlap": { + "name": "掷泥", + "effect": "向对手的脸等投掷泥块进行攻击。\n会降低对手的命中率" + }, + "octazooka": { + "name": "章鱼桶炮", + "effect": "向对手的脸等喷出墨汁进行攻击。\n有时会降低对手的命中率" + }, + "spikes": { + "name": "撒菱", + "effect": "在对手的脚下扔撒菱。\n对替换出场的对手的宝可梦给予伤害" + }, + "zapCannon": { + "name": "电磁炮", + "effect": "发射大炮一样的电流进行攻击。\n让对手陷入麻痹状态" + }, + "foresight": { + "name": "识破", + "effect": "使出后对幽灵属性宝可梦没有效果\n的招式以及闪避率高的对手,\n变得能够打中" + }, + "destinyBond": { + "name": "同命", + "effect": "使出招式后,当受到对手攻击\n陷入昏厥时,对手也会一同昏厥。\n连续使出则会失败" + }, + "perishSong": { + "name": "终焉之歌", + "effect": "倾听歌声的宝可梦经过3回合陷入昏厥。\n替换后效果消失" + }, + "icyWind": { + "name": "冰冻之风", + "effect": "将结冰的冷气吹向对手进行攻击。\n会降低对手的速度" + }, + "detect": { + "name": "看穿", + "effect": "完全抵挡对手的攻击。\n连续使出则容易失败" + }, + "boneRush": { + "name": "骨棒乱打", + "effect": "用坚硬的骨头殴打对手进行攻击。\n连续攻击2~5次" + }, + "lockOn": { + "name": "锁定", + "effect": "紧紧瞄准对手,下次攻击必定会打中" + }, + "outrage": { + "name": "逆鳞", + "effect": "在2~3回合内,乱打一气地进行攻击。\n大闹一番后自己会陷入混乱" + }, + "sandstorm": { + "name": "沙暴", + "effect": "在5回合内扬起沙暴,\n除岩石、地面和钢属性以外的宝可梦,\n都会受到伤害。岩石属性的特防还会提高" + }, + "gigaDrain": { + "name": "终极吸取", + "effect": "吸取对手的养分进行攻击。\n可以回复给予对手伤害的一半HP" + }, + "endure": { + "name": "挺住", + "effect": "即使受到攻击,也至少会留下1HP。\n连续使出则容易失败" + }, + "charm": { + "name": "撒娇", + "effect": "可爱地凝视,诱使对手疏忽大意,\n从而大幅降低对手的攻击" + }, + "rollout": { + "name": "滚动", + "effect": "在5回合内连续滚动攻击对手。\n招式每次击中,威力就会提高" + }, + "falseSwipe": { + "name": "点到为止", + "effect": "对手的HP至少会留下1HP,\n如此般手下留情地攻击" + }, + "swagger": { + "name": "虚张声势", + "effect": "激怒对手,使其混乱。\n因为愤怒,对手的攻击会大幅提高" + }, + "milkDrink": { + "name": "喝牛奶", + "effect": "回复自己最大HP的一半" + }, + "spark": { + "name": "电光", + "effect": "让电流覆盖全身,猛撞向对手进行攻击。\n有时会让对手陷入麻痹状态" + }, + "furyCutter": { + "name": "连斩", + "effect": "用镰刀或爪子等切斩对手进行攻击。\n连续击中,威力就会提高" + }, + "steelWing": { + "name": "钢翼", + "effect": "用坚硬的翅膀敲打对手进行攻击。\n有时会提高自己的防御" + }, + "meanLook": { + "name": "黑色目光", + "effect": "用好似要勾人心魂的黑色目光一动\n不动地凝视对手,使其不能从战斗中逃走" + }, + "attract": { + "name": "迷人", + "effect": "♂诱惑♀或♀诱惑♂,让对手着迷。\n对手将很难使出招式" + }, + "sleepTalk": { + "name": "梦话", + "effect": "从自己已学会的招式中任意使出1个。\n只能在自己睡觉时使用" + }, + "healBell": { + "name": "治愈铃声", + "effect": "让同伴听舒适的铃音,\n从而治愈我方全员的异常状态" + }, + "return": { + "name": "报恩", + "effect": "为了训练家而全力攻击对手。\n亲密度越高,威力越大" + }, + "present": { + "name": "礼物", + "effect": "递给对手设有圈套的盒子进行攻击。\n也有可能回复对手HP" + }, + "frustration": { + "name": "迁怒", + "effect": "为了发泄不满而全力攻击对手。\n亲密度越低,威力越大" + }, + "safeguard": { + "name": "神秘守护", + "effect": "在5回合内被神奇的力量守护,\n从而不会陷入异常状态" + }, + "painSplit": { + "name": "分担痛楚", + "effect": "将自己的HP和对手的HP相加,\n然后自己和对手友好地平分" + }, + "sacredFire": { + "name": "神圣之火", + "effect": "用神秘的火焰烧尽对手进行攻击。\n有时会让对手陷入灼伤状态" + }, + "magnitude": { + "name": "震级", + "effect": "晃动地面,攻击自己周围所有的宝可梦。\n招式的威力会有各种变化" + }, + "dynamicPunch": { + "name": "爆裂拳", + "effect": "使出浑身力气出拳进行攻击。\n必定会使对手混乱" + }, + "megahorn": { + "name": "超级角击", + "effect": "用坚硬且华丽的角狠狠地刺入对手\n进行攻击" + }, + "dragonBreath": { + "name": "龙息", + "effect": "将强烈的气息吹向对手进行攻击。\n有时会让对手陷入麻痹状态" + }, + "batonPass": { + "name": "接棒", + "effect": "和后备宝可梦进行替换。\n换上的宝可梦能直接继承其能力的变化" + }, + "encore": { + "name": "再来一次", + "effect": "让对手接受再来一次,\n连续3次使出最后使用的招式" + }, + "pursuit": { + "name": "追打", + "effect": "当对手替换宝可梦上场时\n使出此招式的话,\n能够以2倍的威力进行攻击" + }, + "rapidSpin": { + "name": "高速旋转", + "effect": "通过旋转来攻击对手。\n可以摆脱绑紧、紧束、寄生种子等招式。\n还能提高自己的速度" + }, + "sweetScent": { + "name": "甜甜香气", + "effect": "用香气大幅降低对手的闪避率" + }, + "ironTail": { + "name": "铁尾", + "effect": "使用坚硬的尾巴摔打对手进行攻击。\n有时会降低对手的防御" + }, + "metalClaw": { + "name": "金属爪", + "effect": "用钢铁之爪劈开对手进行攻击。\n有时会提高自己的攻击" + }, + "vitalThrow": { + "name": "借力摔", + "effect": "会在对手之后进行攻击。\n但是自己的攻击必定会命中" + }, + "morningSun": { + "name": "晨光", + "effect": "回复自己的HP。根据天气的不同,\n回复量也会有所变化" + }, + "synthesis": { + "name": "光合作用", + "effect": "回复自己的HP。根据天气的不同,\n回复量也会有所变化" + }, + "moonlight": { + "name": "月光", + "effect": "回复自己的HP。根据天气的不同,\n回复量也会有所变化" + }, + "hiddenPower": { + "name": "觉醒力量", + "effect": "招式的属性会随着使用此招式的宝\n可梦而改变" + }, + "crossChop": { + "name": "十字劈", + "effect": "用两手呈十字劈打对手进行攻击。\n容易击中要害" + }, + "twister": { + "name": "龙卷风", + "effect": "兴起龙卷风,将对手卷入进行攻击。\n有时会使对手畏缩" + }, + "rainDance": { + "name": "求雨", + "effect": "在5回合内一直降雨,\n从而提高水属性的招式威力。\n火属性的招式威力则降低" + }, + "sunnyDay": { + "name": "大晴天", + "effect": "在5回合内让日照变得强烈,\n从而提高火属性的招式威力。\n水属性的招式威力则降低" + }, + "crunch": { + "name": "咬碎", + "effect": "用利牙咬碎对手进行攻击。\n有时会降低对手的防御" + }, + "mirrorCoat": { + "name": "镜面反射", + "effect": "从对手那里受到特殊攻击的伤害将\n以2倍返还给同一个对手" + }, + "psychUp": { + "name": "自我暗示", + "effect": "向自己施以自我暗示,\n将能力变化的状态变得和对手一样" + }, + "extremeSpeed": { + "name": "神速", + "effect": "以迅雷不及掩耳之势猛\n撞向对手进行攻击。\n必定能够先制攻击" + }, + "ancientPower": { + "name": "原始之力", + "effect": "用原始之力进行攻击。\n有时会提高自己所有的能力" + }, + "shadowBall": { + "name": "暗影球", + "effect": "投掷一团黑影进行攻击。\n有时会降低对手的特防" + }, + "futureSight": { + "name": "预知未来", + "effect": "在使用招式2回合后,\n向对手发送一团念力进行攻击" + }, + "rockSmash": { + "name": "碎岩", + "effect": "用拳头进行攻击。有时会降低对手的防御" + }, + "whirlpool": { + "name": "潮旋", + "effect": "将对手困在激烈的水流旋涡中,\n在4~5回合内进行攻击" + }, + "beatUp": { + "name": "围攻", + "effect": "我方全员进行攻击。同行的宝可梦越多,\n招式的攻击次数越多" + }, + "fakeOut": { + "name": "击掌奇袭", + "effect": "进行先制攻击,使对手畏缩。\n要在出场后立刻使出才能成功" + }, + "uproar": { + "name": "吵闹", + "effect": "在3回合内大吵大闹攻击对手。\n在此期间谁都不能入眠" + }, + "stockpile": { + "name": "蓄力", + "effect": "积蓄力量,提高自己的防御和特防。\n最多积蓄3次" + }, + "spitUp": { + "name": "喷出", + "effect": "将积蓄的力量撞向对手进行攻击。\n积蓄得越多,威力越大" + }, + "swallow": { + "name": "吞下", + "effect": "将积蓄的力量吞下,\n从而回复自己的HP。\n积蓄得越多,回复越大" + }, + "heatWave": { + "name": "热风", + "effect": "将炎热的气息吹向对手进行攻击。\n有时会让对手陷入灼伤状态" + }, + "hail": { + "name": "冰雹", + "effect": "在5回合内一直降冰雹,\n除冰属性的宝可梦以外,\n给予全体宝可梦伤害" + }, + "torment": { + "name": "无理取闹", + "effect": "向对手无理取闹,令其不能连续2\n次使出相同招式" + }, + "flatter": { + "name": "吹捧", + "effect": "吹捧对手,使其混乱。\n同时还会提高对手的特攻" + }, + "willOWisp": { + "name": "磷火", + "effect": "放出怪异的火焰,从而让对手陷入\n灼伤状态" + }, + "memento": { + "name": "临别礼物", + "effect": "虽然会使自己陷入昏厥,\n但是能够大幅降低对手的攻击和特攻" + }, + "facade": { + "name": "硬撑", + "effect": "当自己处于中毒、麻痹、灼伤状态时,\n向对手使出此招式的话,\n威力会变成2倍" + }, + "focusPunch": { + "name": "真气拳", + "effect": "集中精神出拳。在招式使出前若受\n到攻击则会失败" + }, + "smellingSalts": { + "name": "清醒", + "effect": "对于麻痹状态下的对手,\n威力会变成2倍。\n但相反对手的麻痹也会被治愈" + }, + "followMe": { + "name": "看我嘛", + "effect": "引起对手的注意,将对手的攻击全\n部转移到自己身上" + }, + "naturePower": { + "name": "自然之力", + "effect": "用自然之力进行攻击。\n根据所使用场所的不同,\n使出的招式也会有所变化" + }, + "charge": { + "name": "充电", + "effect": "变为充电状态,提高下次使出的电\n属性的招式威力。自己的特防也会提高" + }, + "taunt": { + "name": "挑衅", + "effect": "使对手愤怒。在3回合内让对手只\n能使出给予伤害的招式" + }, + "helpingHand": { + "name": "帮助", + "effect": "帮助伙伴。被帮助的宝可梦,\n其招式威力变得比平时大" + }, + "trick": { + "name": "戏法", + "effect": "抓住对手的空隙,交换自己和对手\n的持有物" + }, + "rolePlay": { + "name": "扮演", + "effect": "扮演对手,让自己的特性变得和对手相同" + }, + "wish": { + "name": "祈愿", + "effect": "在下一回合回复自己或是替换出场\n的宝可梦最大HP的一半" + }, + "assist": { + "name": "借助", + "effect": "向同伴紧急求助,从我方宝可梦已\n学会的招式中随机使用1个" + }, + "ingrain": { + "name": "扎根", + "effect": "在大地上扎根,每回合回复自己的HP。\n因为扎根了,所以不能替换宝可梦" + }, + "superpower": { + "name": "蛮力", + "effect": "发挥惊人的力量攻击对手。\n自己的攻击和防御会降低" + }, + "magicCoat": { + "name": "魔法反射", + "effect": "当对手使出会变成异常状态的招式\n或寄生种子等时,会将对手的招式\n反射回去" + }, + "recycle": { + "name": "回收利用", + "effect": "使战斗中已经消耗掉的\n自己的持有物再生,\n并可以再次使用" + }, + "revenge": { + "name": "报复", + "effect": "如果受到对手的招式攻击,\n就能给予对手2倍的伤害" + }, + "brickBreak": { + "name": "劈瓦", + "effect": "将手刀猛烈地挥下攻击对手。\n还可以破坏光墙和反射壁等" + }, + "yawn": { + "name": "哈欠", + "effect": "打个大哈欠引起睡意。\n在下一回合让对手陷入睡眠状态" + }, + "knockOff": { + "name": "拍落", + "effect": "拍落对手的持有物,直到战斗结束\n都不能使用。对手携带道具时会增加伤害" + }, + "endeavor": { + "name": "蛮干", + "effect": "给予伤害,使对手的HP变得和自\n己的HP一样" + }, + "eruption": { + "name": "喷火", + "effect": "爆发怒火攻击对手。自己的HP越少,\n招式的威力越小" + }, + "skillSwap": { + "name": "特性互换", + "effect": "利用超能力互换自己和对手的特性" + }, + "imprison": { + "name": "封印", + "effect": "如果对手有和自己相同的招式,\n那么只有对手无法使用该招式" + }, + "refresh": { + "name": "焕然一新", + "effect": "让身体休息,治愈自己身上所中的\n毒、麻痹、灼伤的异常状态" + }, + "grudge": { + "name": "怨念", + "effect": "因对手的招式而陷入昏厥时给对手\n施加怨念,让该招式的PP变成0" + }, + "snatch": { + "name": "抢夺", + "effect": "将对手打算使用的回复招式或能力\n变化招式夺为己用" + }, + "secretPower": { + "name": "秘密之力", + "effect": "根据使用场所不同,该招式的追加\n效果也会有所变化" + }, + "dive": { + "name": "潜水", + "effect": "第1回合潜入水中,第2回合浮上\n来进行攻击" + }, + "armThrust": { + "name": "猛推", + "effect": "用张开着的双手猛推对手进行攻击。\n连续攻击2~5次" + }, + "camouflage": { + "name": "保护色", + "effect": "根据所在场所不同,如水边、草丛\n和洞窟等,可以改变自己的属性" + }, + "tailGlow": { + "name": "萤火", + "effect": "凝视闪烁的光芒,集中自己的精神,\n从而巨幅提高特攻" + }, + "lusterPurge": { + "name": "洁净光芒", + "effect": "释放耀眼的光芒进行攻击。\n有时会降低对手的特防" + }, + "mistBall": { + "name": "薄雾球", + "effect": "用围绕着雾状羽毛的球进行攻击。\n有时会降低对手的特攻" + }, + "featherDance": { + "name": "羽毛舞", + "effect": "撒出羽毛,笼罩在对手的周围。\n大幅降低对手的攻击" + }, + "teeterDance": { + "name": "摇晃舞", + "effect": "摇摇晃晃地跳起舞蹈,\n让自己周围的宝可梦陷入混乱状态" + }, + "blazeKick": { + "name": "火焰踢", + "effect": "攻击对手后,有时会使其陷入灼伤状态。\n也容易击中要害" + }, + "mudSport": { + "name": "玩泥巴", + "effect": "一旦使用此招式,\n周围就会弄得到处是泥。\n在5回合内减弱电属性的招式" + }, + "iceBall": { + "name": "冰球", + "effect": "在5回合内攻击对手。\n招式每次击中,威力就会提高" + }, + "needleArm": { + "name": "尖刺臂", + "effect": "用带刺的手臂猛烈地挥舞进行攻击。\n有时会使对手畏缩" + }, + "slackOff": { + "name": "偷懒", + "effect": "偷懒休息。回复自己最大HP的一半" + }, + "hyperVoice": { + "name": "巨声", + "effect": "给予对手又吵又响的巨大震动进行攻击" + }, + "poisonFang": { + "name": "剧毒牙", + "effect": "用有毒的牙齿咬住对手进行攻击。\n有时会使对手中剧毒" + }, + "crushClaw": { + "name": "撕裂爪", + "effect": "用坚硬的锐爪劈开对手进行攻击。\n有时会降低对手的防御" + }, + "blastBurn": { + "name": "爆炸烈焰", + "effect": "用爆炸的火焰烧尽对手进行攻击。\n下一回合自己将无法动弹" + }, + "hydroCannon": { + "name": "加农水炮", + "effect": "向对手喷射水炮进行攻击。\n下一回合自己将无法动弹" + }, + "meteorMash": { + "name": "彗星拳", + "effect": "使出彗星般的拳头攻击对手。\n有时会提高自己的攻击" + }, + "astonish": { + "name": "惊吓", + "effect": "用尖叫声等突然惊吓对手进行攻击。\n有时会使对手畏缩" + }, + "weatherBall": { + "name": "气象球", + "effect": "根据使用时的天气,招式属性和威\n力会改变" + }, + "aromatherapy": { + "name": "芳香治疗", + "effect": "让同伴闻沁人心脾的香气,\n从而治愈我方全员的异常状态" + }, + "fakeTears": { + "name": "假哭", + "effect": "装哭流泪。使对手不知所措,\n从而大幅降低对手的特防" + }, + "airCutter": { + "name": "空气利刃", + "effect": "用锐利的风切斩对手进行攻击。\n容易击中要害" + }, + "overheat": { + "name": "过热", + "effect": "使出全部力量攻击对手。\n使用之后会因为反作用力,\n自己的特攻大幅降低" + }, + "odorSleuth": { + "name": "气味侦测", + "effect": "使出后对幽灵属性宝可梦没有效果\n的招式以及闪避率高的对手,\n变得能够打中" + }, + "rockTomb": { + "name": "岩石封锁", + "effect": "投掷岩石进行攻击。封住对手的行动,\n从而降低速度" + }, + "silverWind": { + "name": "银色旋风", + "effect": "在风中掺入鳞粉攻击对手。\n有时会提高自己的全部能力" + }, + "metalSound": { + "name": "金属音", + "effect": "让对手听摩擦金属般讨厌的声音。\n大幅降低对手的特防" + }, + "grassWhistle": { + "name": "草笛", + "effect": "让对手听舒适的笛声,\n从而陷入睡眠状态" + }, + "tickle": { + "name": "挠痒", + "effect": "给对手挠痒,使其发笑,\n从而降低对手的攻击和防御" + }, + "cosmicPower": { + "name": "宇宙力量", + "effect": "汲取宇宙中神秘的力量,\n从而提高自己的防御和特防" + }, + "waterSpout": { + "name": "喷水", + "effect": "掀起潮水进行攻击。自己的HP越少,\n招式的威力越小" + }, + "signalBeam": { + "name": "信号光束", + "effect": "发射神奇的光线进行攻击。\n有时会使对手混乱" + }, + "shadowPunch": { + "name": "暗影拳", + "effect": "使出混影之拳。攻击必定会命中" + }, + "extrasensory": { + "name": "神通力", + "effect": "发出看不见的神奇力量进行攻击。\n有时会使对手畏缩" + }, + "skyUppercut": { + "name": "冲天拳", + "effect": "用冲向天空般高高的上勾拳顶起对\n手进行攻击" + }, + "sandTomb": { + "name": "流沙深渊", + "effect": "将对手困在铺天盖地的沙暴中,\n在4~5回合内进行攻击" + }, + "sheerCold": { + "name": "绝对零度", + "effect": "给对手一击昏厥。如果是冰属性以\n外的宝可梦使用,就会难以打中" + }, + "muddyWater": { + "name": "浊流", + "effect": "向对手喷射浑浊的水进行攻击。\n有时会降低对手的命中率" + }, + "bulletSeed": { + "name": "种子机关枪", + "effect": "向对手猛烈地发射种子进行攻击。\n连续攻击2~5次" + }, + "aerialAce": { + "name": "燕返", + "effect": "以敏捷的动作戏弄对手后进行切斩。\n攻击必定会命中" + }, + "icicleSpear": { + "name": "冰锥", + "effect": "向对手发射锋利的冰柱进行攻击。\n连续攻击2~5次" + }, + "ironDefense": { + "name": "铁壁", + "effect": "将皮肤变得坚硬如铁,\n从而大幅提高自己的防御" + }, + "block": { + "name": "挡路", + "effect": "张开双手进行阻挡,封住对手的退路,\n使其不能逃走" + }, + "howl": { + "name": "长嚎", + "effect": "大声吼叫提高气势,从而提高自己\n和同伴的攻击" + }, + "dragonClaw": { + "name": "龙爪", + "effect": "用尖锐的巨爪劈开对手进行攻击" + }, + "frenzyPlant": { + "name": "疯狂植物", + "effect": "用大树摔打对手进行攻击。\n下一回合自己将无法动弹" + }, + "bulkUp": { + "name": "健美", + "effect": "使出全身力气绷紧肌肉,\n从而提高自己的攻击和防御" + }, + "bounce": { + "name": "弹跳", + "effect": "弹跳到高高的空中,第2回合攻击对手。\n有时会让对手陷入麻痹状态" + }, + "mudShot": { + "name": "泥巴射击", + "effect": "向对手投掷泥块进行攻击。\n同时降低对手的速度" + }, + "poisonTail": { + "name": "毒尾", + "effect": "用尾巴拍打。\n有时会让对手陷入中毒状态,\n也容易击中要害" + }, + "covet": { + "name": "渴望", + "effect": "一边可爱地撒娇,\n一边靠近对手进行攻击,\n还能夺取对手携带的道具" + }, + "voltTackle": { + "name": "伏特攻击", + "effect": "让电流覆盖全身猛撞向对手。\n自己也会受到不小的伤害。\n有时会让对手陷入麻痹状态" + }, + "magicalLeaf": { + "name": "魔法叶", + "effect": "散落可以追踪对手的神奇叶片。\n攻击必定会命中" + }, + "waterSport": { + "name": "玩水", + "effect": "用水湿透周围。在5回合内减弱火\n属性的招式" + }, + "calmMind": { + "name": "冥想", + "effect": "静心凝神,从而提高自己的特攻和特防" + }, + "leafBlade": { + "name": "叶刃", + "effect": "像用剑一般操纵叶片切斩对手进行攻击。\n容易击中要害" + }, + "dragonDance": { + "name": "龙之舞", + "effect": "激烈地跳起神秘且强有力的舞蹈。\n从而提高自己的攻击和速度" + }, + "rockBlast": { + "name": "岩石爆击", + "effect": "向对手发射坚硬的岩石进行攻击。\n连续攻击2~5次" + }, + "shockWave": { + "name": "电击波", + "effect": "向对手快速发出电击。\n攻击必定会命中" + }, + "waterPulse": { + "name": "水之波动", + "effect": "用水的震动攻击对手。\n有时会使对手混乱" + }, + "doomDesire": { + "name": "破灭之愿", + "effect": "使用招式2回合后,会用无数道光\n束攻击对手" + }, + "psychoBoost": { + "name": "精神突进", + "effect": "使出全部力量攻击对手。\n使用之后会因为反作用力,\n自己的特攻大幅降低" + }, + "roost": { + "name": "羽栖", + "effect": "降到地面,使身体休息。\n回复自己最大HP的一半" + }, + "gravity": { + "name": "重力", + "effect": "在5回合内,飘浮特性和飞行属性\n的宝可梦会被地面属性的招式击中。\n飞向空中的招式也将无法使用" + }, + "miracleEye": { + "name": "奇迹之眼", + "effect": "使出后对恶属性宝可梦没有效果的\n招式以及闪避率高的对手,\n变得能够打中" + }, + "wakeUpSlap": { + "name": "唤醒巴掌", + "effect": "给予睡眠状态下的对手较大的伤害。\n但相反对手会从睡眠中醒过来" + }, + "hammerArm": { + "name": "臂锤", + "effect": "挥舞强力而沉重的拳头,\n给予对手伤害。自己的速度会降低" + }, + "gyroBall": { + "name": "陀螺球", + "effect": "让身体高速旋转并撞击对手。\n速度比对手越慢,威力越大" + }, + "healingWish": { + "name": "治愈之愿", + "effect": "虽然自己陷入昏厥,但可以治愈后\n备上场的宝可梦的异常状态以及回复HP" + }, + "brine": { + "name": "盐水", + "effect": "当对手的HP负伤到一半左右时,\n招式威力会变成2倍" + }, + "naturalGift": { + "name": "自然之恩", + "effect": "从树果上获得力量进行攻击。\n根据携带的树果,招式属性和威力会改变" + }, + "feint": { + "name": "佯攻", + "effect": "能够攻击正在使用守住或看穿等招\n式的对手。解除其守护效果" + }, + "pluck": { + "name": "啄食", + "effect": "用喙进行攻击。当对手携带树果时,\n可以食用并获得其效果" + }, + "tailwind": { + "name": "顺风", + "effect": "刮起猛烈的旋风,在4回合内提高\n我方全员的速度" + }, + "acupressure": { + "name": "点穴", + "effect": "通过点穴让身体舒筋活络。\n大幅提高某1项能力" + }, + "metalBurst": { + "name": "金属爆炸", + "effect": "使出招式前,将最后受到的招式的\n伤害大力返还给对手" + }, + "uTurn": { + "name": "急速折返", + "effect": "在攻击之后急速返回,\n和后备宝可梦进行替换" + }, + "closeCombat": { + "name": "近身战", + "effect": "放弃守护,向对手的怀里突击。\n自己的防御和特防会降低" + }, + "payback": { + "name": "以牙还牙", + "effect": "蓄力攻击。如果能在对手之后攻击,\n招式的威力会变成2倍" + }, + "assurance": { + "name": "恶意追击", + "effect": "如果此回合内对手已经受到伤害的话,\n招式威力会变成2倍" + }, + "embargo": { + "name": "查封", + "effect": "让对手在5回合内不能使用宝可梦\n携带的道具。训练家也不能给那只\n宝可梦使用道具" + }, + "fling": { + "name": "投掷", + "effect": "快速投掷携带的道具进行攻击。\n根据道具不同,威力和效果会改变" + }, + "psychoShift": { + "name": "精神转移", + "effect": "利用超能力施以暗示,\n从而将自己受到的异常状态转移给对手" + }, + "trumpCard": { + "name": "王牌", + "effect": "王牌招式的剩余PP越少,\n招式的威力越大" + }, + "healBlock": { + "name": "回复封锁", + "effect": "在5回合内无法通过招式、特性或\n携带的道具来回复HP" + }, + "wringOut": { + "name": "绞紧", + "effect": "用力勒紧对手进行攻击。\n对手的HP越多,威力越大" + }, + "powerTrick": { + "name": "力量戏法", + "effect": "利用超能力交换自己的攻击和防御的力量" + }, + "gastroAcid": { + "name": "胃液", + "effect": "将胃液吐向对手的身体。\n沾上的胃液会消除对手的特性效果" + }, + "luckyChant": { + "name": "幸运咒语", + "effect": "向天许愿,从而在5回合内不会被\n对手的攻击打中要害" + }, + "meFirst": { + "name": "抢先一步", + "effect": "提高威力,\n抢先使出对手想要使出的招式。\n如果不先使出则会失败" + }, + "copycat": { + "name": "仿效", + "effect": "模仿对手刚才使出的招式,\n并使出相同招式。\n如果对手还没出招则会失败" + }, + "powerSwap": { + "name": "力量互换", + "effect": "利用超能力互换自己和对手的攻击\n以及特攻的能力变化" + }, + "guardSwap": { + "name": "防守互换", + "effect": "利用超能力互换自己和对手的防御\n以及特防的能力变化" + }, + "punishment": { + "name": "惩罚", + "effect": "根据能力变化,对手提高的力量越大,\n招式的威力越大" + }, + "lastResort": { + "name": "珍藏", + "effect": "当战斗中已学会的招式全部使用过后,\n才能开始使出珍藏的招式" + }, + "worrySeed": { + "name": "烦恼种子", + "effect": "种植心神不宁的种子。\n使对手不能入眠,并将特性变成不眠" + }, + "suckerPunch": { + "name": "突袭", + "effect": "可以比对手先攻击。对手使出的招\n式如果不是攻击招式则会失败" + }, + "toxicSpikes": { + "name": "毒菱", + "effect": "在对手的脚下撒毒菱。\n使对手替换出场的宝可梦中毒" + }, + "heartSwap": { + "name": "心灵互换", + "effect": "利用超能力互换自己和对手之间的\n能力变化" + }, + "aquaRing": { + "name": "水流环", + "effect": "在自己身体的周围覆盖用水制造的幕。\n每回合回复HP" + }, + "magnetRise": { + "name": "电磁飘浮", + "effect": "利用电气产生的磁力浮在空中。\n在5回合内可以飘浮" + }, + "flareBlitz": { + "name": "闪焰冲锋", + "effect": "让火焰覆盖全身猛撞向对手。\n自己也会受到不小的伤害。\n有时会让对手陷入灼伤状态" + }, + "forcePalm": { + "name": "发劲", + "effect": "向对手的身体发出冲击波进行攻击。\n有时会让对手陷入麻痹状态" + }, + "auraSphere": { + "name": "波导弹", + "effect": "从体内产生出波导之力,\n然后向对手发出。攻击必定会命中" + }, + "rockPolish": { + "name": "岩石打磨", + "effect": "打磨自己的身体,减少空气阻力。\n可以大幅提高自己的速度" + }, + "poisonJab": { + "name": "毒击", + "effect": "用带毒的触手或手臂刺入对手。\n有时会让对手陷入中毒状态" + }, + "darkPulse": { + "name": "恶之波动", + "effect": "从体内发出充满恶意的恐怖气场。\n有时会使对手畏缩" + }, + "nightSlash": { + "name": "暗袭要害", + "effect": "抓住瞬间的空隙切斩对手。\n容易击中要害" + }, + "aquaTail": { + "name": "水流尾", + "effect": "如惊涛骇浪般挥动大尾巴攻击对手" + }, + "seedBomb": { + "name": "种子炸弹", + "effect": "将外壳坚硬的大种子,\n从上方砸下攻击对手" + }, + "airSlash": { + "name": "空气之刃", + "effect": "用连天空也能劈开的空气之刃进行攻击。\n有时会使对手畏缩" + }, + "xScissor": { + "name": "十字剪", + "effect": "将镰刀或爪子像剪刀般地交叉,\n顺势劈开对手" + }, + "bugBuzz": { + "name": "虫鸣", + "effect": "利用振动发出音波进行攻击。\n有时会降低对手的特防" + }, + "dragonPulse": { + "name": "龙之波动", + "effect": "从大大的口中掀起冲击波攻击对手" + }, + "dragonRush": { + "name": "龙之俯冲", + "effect": "释放出骇人的杀气,一边威慑一边\n撞击对手。有时会使对手畏缩" + }, + "powerGem": { + "name": "力量宝石", + "effect": "发射如宝石般闪耀的光芒攻击对手" + }, + "drainPunch": { + "name": "吸取拳", + "effect": "用拳头吸取对手的力量。\n可以回复给予对手伤害的一半HP" + }, + "vacuumWave": { + "name": "真空波", + "effect": "挥动拳头,掀起真空波。\n必定能够先制攻击" + }, + "focusBlast": { + "name": "真气弹", + "effect": "提高气势,释放出全部力量。\n有时会降低对手的特防" + }, + "energyBall": { + "name": "能量球", + "effect": "发射从自然收集的生命力量。\n有时会降低对手的特防" + }, + "braveBird": { + "name": "勇鸟猛攻", + "effect": "收拢翅膀,通过低空飞行突击对手。\n自己也会受到不小的伤害" + }, + "earthPower": { + "name": "大地之力", + "effect": "向对手脚下释放出大地之力。\n有时会降低对手的特防" + }, + "switcheroo": { + "name": "掉包", + "effect": "用一闪而过的速度交换自己和对手\n的持有物" + }, + "gigaImpact": { + "name": "终极冲击", + "effect": "使出自己浑身力量突击对手。\n下一回合自己将无法动弹" + }, + "nastyPlot": { + "name": "诡计", + "effect": "谋划诡计,激活头脑。\n大幅提高自己的特攻" + }, + "bulletPunch": { + "name": "子弹拳", + "effect": "向对手使出如子弹般快速而坚硬的拳头。\n必定能够先制攻击" + }, + "avalanche": { + "name": "雪崩", + "effect": "如果受到对手的招式攻击,\n就能给予该对手2倍威力的攻击" + }, + "iceShard": { + "name": "冰砾", + "effect": "瞬间制作冰块,快速地扔向对手。\n必定能够先制攻击" + }, + "shadowClaw": { + "name": "暗影爪", + "effect": "以影子做成的锐爪,劈开对手。\n容易击中要害" + }, + "thunderFang": { + "name": "雷电牙", + "effect": "用蓄满电流的牙齿咬住对手。\n有时会使对手畏缩或陷入麻痹状态" + }, + "iceFang": { + "name": "冰冻牙", + "effect": "用藏有冷气的牙齿咬住对手。\n有时会使对手畏缩或陷入冰冻状态" + }, + "fireFang": { + "name": "火焰牙", + "effect": "用覆盖着火焰的牙齿咬住对手。\n有时会使对手畏缩或陷入灼伤状态" + }, + "shadowSneak": { + "name": "影子偷袭", + "effect": "伸长影子,从对手的背后进行攻击。\n必定能够先制攻击" + }, + "mudBomb": { + "name": "泥巴炸弹", + "effect": "向对手发射坚硬的泥弹进行攻击。\n有时会降低对手的命中率" + }, + "psychoCut": { + "name": "精神利刃", + "effect": "用实体化的心之利刃劈开对手。\n容易击中要害" + }, + "zenHeadbutt": { + "name": "意念头锤", + "effect": "将思念的力量集中在前额进行攻击。\n有时会使对手畏缩" + }, + "mirrorShot": { + "name": "镜光射击", + "effect": "抛光自己的身体,\n向对手释放出闪光之力。\n有时会降低对手的命中率" + }, + "flashCannon": { + "name": "加农光炮", + "effect": "将身体的光芒聚集在一点释放出去。\n有时会降低对手的特防" + }, + "rockClimb": { + "name": "攀岩", + "effect": "发动猛撞攻击,有时会使对手混乱。\n是宝可表的秘传招式之一" + }, + "defog": { + "name": "清除浓雾", + "effect": "用强风吹开对手的反射壁或光墙等。\n也会降低对手的闪避率" + }, + "trickRoom": { + "name": "戏法空间", + "effect": "制造出离奇的空间。在5回合内速\n度慢的宝可梦可以先行动" + }, + "dracoMeteor": { + "name": "流星群", + "effect": "从天空中向对手落下陨石。\n使用之后因为反作用力,\n自己的特攻会大幅降低" + }, + "discharge": { + "name": "放电", + "effect": "用耀眼的电击攻击\n自己周围所有的宝可梦。\n有时会陷入麻痹状态" + }, + "lavaPlume": { + "name": "喷烟", + "effect": "用熊熊烈火攻击自己周围所有的宝可梦。\n有时会陷入灼伤状态" + }, + "leafStorm": { + "name": "飞叶风暴", + "effect": "用尖尖的叶片向对手卷起风暴。\n使用之后因为反作用力自己的特攻会\n大幅降低" + }, + "powerWhip": { + "name": "强力鞭打", + "effect": "激烈地挥舞青藤或触手摔打对手进行攻击" + }, + "rockWrecker": { + "name": "岩石炮", + "effect": "向对手发射巨大的岩石进行攻击。\n下一回合自己将无法动弹" + }, + "crossPoison": { + "name": "十字毒刃", + "effect": "用毒刃劈开对手。有时会让对手陷\n入中毒状态,也容易击中要害" + }, + "gunkShot": { + "name": "垃圾射击", + "effect": "用肮脏的垃圾撞向对手进行攻击。\n有时会让对手陷入中毒状态" + }, + "ironHead": { + "name": "铁头", + "effect": "用钢铁般坚硬的头部进行攻击。\n有时会使对手畏缩" + }, + "magnetBomb": { + "name": "磁铁炸弹", + "effect": "发射吸住对手的钢铁炸弹。\n攻击必定会命中" + }, + "stoneEdge": { + "name": "尖石攻击", + "effect": "用尖尖的岩石刺入对手进行攻击。\n容易击中要害" + }, + "captivate": { + "name": "诱惑", + "effect": "♂诱惑♀或♀诱惑♂,\n从而大幅降低对手的特攻" + }, + "stealthRock": { + "name": "隐形岩", + "effect": "将无数岩石悬浮在对手的周围,\n从而对替换出场的对手的宝可梦给予伤害" + }, + "grassKnot": { + "name": "打草结", + "effect": "用草缠住并绊倒对手。\n对手越重,威力越大" + }, + "chatter": { + "name": "喋喋不休", + "effect": "用非常烦人的,\n喋喋不休的音波攻击对手。\n使对手混乱" + }, + "judgment": { + "name": "制裁光砾", + "effect": "向对手放出无数的光弹。\n属性会根据自己携带的石板不同而改变" + }, + "bugBite": { + "name": "虫咬", + "effect": "咬住进行攻击。当对手携带树果时,\n可以食用并获得其效果" + }, + "chargeBeam": { + "name": "充电光束", + "effect": "向对手发射电击光束。\n由于蓄满电流,有时会提高自己的特攻" + }, + "woodHammer": { + "name": "木槌", + "effect": "用坚硬的躯体撞击对手进行攻击。\n自己也会受到不小的伤害" + }, + "aquaJet": { + "name": "水流喷射", + "effect": "以迅雷不及掩耳之势扑向对手。\n必定能够先制攻击" + }, + "attackOrder": { + "name": "攻击指令", + "effect": "召唤手下,让其朝对手发起攻击。\n容易击中要害" + }, + "defendOrder": { + "name": "防御指令", + "effect": "召唤手下,让其附在自己的身体上。\n可以提高自己的防御和特防" + }, + "healOrder": { + "name": "回复指令", + "effect": "召唤手下疗伤。回复自己最大HP的一半" + }, + "headSmash": { + "name": "双刃头锤", + "effect": "拼命使出浑身力气,\n向对手进行头锤攻击。\n自己也会受到非常大的伤害" + }, + "doubleHit": { + "name": "二连击", + "effect": "使用尾巴等拍打对手进行攻击。\n连续2次给予伤害" + }, + "roarOfTime": { + "name": "时光咆哮", + "effect": "释放出扭曲时间般的强大力量攻击对手。\n下一回合自己将无法动弹" + }, + "spacialRend": { + "name": "亚空裂斩", + "effect": "将对手连同周围的空间一起撕裂并\n给予伤害。容易击中要害" + }, + "lunarDance": { + "name": "新月舞", + "effect": "虽然自己陷入昏厥,但可以治愈后\n备上场的宝可梦的全部状态" + }, + "crushGrip": { + "name": "捏碎", + "effect": "用骇人的力量捏碎对手。\n对手剩余的HP越多,威力越大" + }, + "magmaStorm": { + "name": "熔岩风暴", + "effect": "将对手困在熊熊燃烧的火焰中,\n在4~5回合内进行攻击" + }, + "darkVoid": { + "name": "暗黑洞", + "effect": "将对手强制拖入黑暗的世界,\n从而让对手陷入睡眠状态" + }, + "seedFlare": { + "name": "种子闪光", + "effect": "从身体里产生冲击波。\n有时会大幅降低对手的特防" + }, + "ominousWind": { + "name": "奇异之风", + "effect": "突然刮起毛骨悚然的暴风攻击对手。\n有时会提高自己的全部能力" + }, + "shadowForce": { + "name": "暗影潜袭", + "effect": "第1回合消失踪影,第2回合攻击对手。\n即使对手正受保护,\n也能击中" + }, + "honeClaws": { + "name": "磨爪", + "effect": "将爪子磨得更加锋利。\n提高自己的攻击和命中率" + }, + "wideGuard": { + "name": "广域防守", + "effect": "在1回合内防住击打我方全员的攻击" + }, + "guardSplit": { + "name": "防守平分", + "effect": "利用超能力将自己和对手的防御和\n特防相加,再进行平分" + }, + "powerSplit": { + "name": "力量平分", + "effect": "利用超能力将自己和对手的攻击和\n特攻相加,再进行平分" + }, + "wonderRoom": { + "name": "奇妙空间", + "effect": "制造出离奇的空间。在5回合内互\n换所有宝可梦的防御和特防" + }, + "psyshock": { + "name": "精神冲击", + "effect": "将神奇的念波实体化攻击对手。\n给予物理伤害" + }, + "venoshock": { + "name": "毒液冲击", + "effect": "将特殊的毒液泼向对手。\n对处于中毒状态的对手,威力会变成2倍" + }, + "autotomize": { + "name": "身体轻量化", + "effect": "削掉身体上没用的部分。\n大幅提高自己的速度,同时体重也会变轻" + }, + "ragePowder": { + "name": "愤怒粉", + "effect": "将令人烦躁的粉末撒在自己身上,\n用以吸引对手的注意。\n使对手的攻击全部指向自己" + }, + "telekinesis": { + "name": "意念移物", + "effect": "利用超能力使对手浮起来。\n在3回合内攻击会变得容易打中对手" + }, + "magicRoom": { + "name": "魔法空间", + "effect": "制造出离奇的空间。在5回合内所\n有宝可梦携带道具的效果都会消失" + }, + "smackDown": { + "name": "击落", + "effect": "扔石头或炮弹,攻击飞行的对手。\n对手会被击落,掉到地面" + }, + "stormThrow": { + "name": "山岚摔", + "effect": "向对手使出强烈的一击。\n攻击必定会击中要害" + }, + "flameBurst": { + "name": "烈焰溅射", + "effect": "如果击中,爆裂的火焰会攻击到对手。\n爆裂出的火焰还会飞溅到旁边的对手" + }, + "sludgeWave": { + "name": "污泥波", + "effect": "用污泥波攻击自己周围所有的宝可梦。\n有时会陷入中毒状态" + }, + "quiverDance": { + "name": "蝶舞", + "effect": "轻巧地跳起神秘而又美丽的舞蹈。\n提高自己的特攻、特防和速度" + }, + "heavySlam": { + "name": "重磅冲撞", + "effect": "用沉重的身体撞向对手进行攻击。\n自己比对手越重,威力越大" + }, + "synchronoise": { + "name": "同步干扰", + "effect": "用神奇电波对周围所有和自己属性\n相同的宝可梦给予伤害" + }, + "electroBall": { + "name": "电球", + "effect": "用电气团撞向对手。\n自己比对手速度越快,\n威力越大" + }, + "soak": { + "name": "浸水", + "effect": "将大量的水泼向对手,\n从而使其变成水属性" + }, + "flameCharge": { + "name": "蓄能焰袭", + "effect": "让火焰覆盖全身,攻击对手。\n积蓄力量来提高自己的速度" + }, + "coil": { + "name": "盘蜷", + "effect": "盘蜷着集中精神。提高自己的攻击\n、防御和命中率" + }, + "lowSweep": { + "name": "下盘踢", + "effect": "以敏捷的动作瞄准对手的脚进行攻击。\n会降低对手的速度" + }, + "acidSpray": { + "name": "酸液炸弹", + "effect": "喷出能溶化对手的液体进行攻击。\n会大幅降低对手的特防" + }, + "foulPlay": { + "name": "欺诈", + "effect": "利用对手的力量进行攻击。\n正和自己战斗的对手,其攻击越高,\n伤害越大" + }, + "simpleBeam": { + "name": "单纯光束", + "effect": "向对手发送谜之念波。\n接收到念波的对手,其特性会变为单纯" + }, + "entrainment": { + "name": "找伙伴", + "effect": "用神奇的节奏跳舞。使对手模仿自\n己的动作,从而将特性变成一样" + }, + "afterYou": { + "name": "您先请", + "effect": "支援我方或对手的行动,\n使其紧接着此招式之后行动" + }, + "round": { + "name": "轮唱", + "effect": "用歌声攻击对手。大家一起轮唱便\n可以接连使出,威力也会提高" + }, + "echoedVoice": { + "name": "回声", + "effect": "用回声攻击对手。如果每回合都有\n宝可梦接着使用该招式,\n威力就会提高" + }, + "chipAway": { + "name": "逐步击破", + "effect": "看准机会稳步攻击。\n无视对手的能力变化,\n直接给予伤害" + }, + "clearSmog": { + "name": "清除之烟", + "effect": "向对手投掷特殊的泥块进行攻击。\n使其能力变回原点" + }, + "storedPower": { + "name": "辅助力量", + "effect": "用蓄积起来的力量攻击对手。\n自己的能力提高得越多,威力就越大" + }, + "quickGuard": { + "name": "快速防守", + "effect": "守护自己和同伴,以防对手的先制攻击" + }, + "allySwitch": { + "name": "交换场地", + "effect": "用神奇的力量瞬间移动,\n互换自己和同伴所在的位置。\n连续使出则容易失败" + }, + "scald": { + "name": "热水", + "effect": "向对手喷射煮得翻滚的开水进行攻击。\n有时会让对手陷入灼伤状态" + }, + "shellSmash": { + "name": "破壳", + "effect": "打破外壳,降低自己的防御和特防,\n但大幅提高攻击、特攻和速度" + }, + "healPulse": { + "name": "治愈波动", + "effect": "放出治愈波动,从而回复对手最大\nHP的一半" + }, + "hex": { + "name": "祸不单行", + "effect": "接二连三地进行攻击。\n对处于异常状态的对手给予较大的伤害" + }, + "skyDrop": { + "name": "自由落体", + "effect": "第1回合将对手带到空中,\n第2回合将其摔下进行攻击。\n被带到空中的对手不能动弹" + }, + "shiftGear": { + "name": "换档", + "effect": "转动齿轮,不仅提高自己的攻击,\n还会大幅提高速度" + }, + "circleThrow": { + "name": "巴投", + "effect": "扔飞对手,强制拉后备宝可梦上场。\n如果对手为野生宝可梦,\n战斗将直接结束" + }, + "incinerate": { + "name": "烧净", + "effect": "用火焰攻击对手。对手携带树果等时,\n会烧掉,使其不能使用" + }, + "quash": { + "name": "延后", + "effect": "压制对手,从而将其行动顺序放到最后" + }, + "acrobatics": { + "name": "杂技", + "effect": "轻巧地攻击对手。自己没有携带道具时,\n会给予较大的伤害" + }, + "reflectType": { + "name": "镜面属性", + "effect": "反射对手的属性,让自己也变成一\n样的属性" + }, + "retaliate": { + "name": "报仇", + "effect": "为倒下的同伴报仇。如果上一回合\n有同伴倒下,威力就会提高" + }, + "finalGambit": { + "name": "搏命", + "effect": "拼命攻击对手。虽然自己陷入昏厥,\n但会给予对手和自己目前HP等\n量的伤害" + }, + "bestow": { + "name": "传递礼物", + "effect": "当对手未携带道具时,\n能够将自己携带的道具交给对手" + }, + "inferno": { + "name": "烈火深渊", + "effect": "用烈焰包裹住对手进行攻击。\n让对手陷入灼伤状态" + }, + "waterPledge": { + "name": "水之誓约", + "effect": "用水柱进行攻击。如果和火组合,\n威力就会提高,天空中会挂上彩虹" + }, + "firePledge": { + "name": "火之誓约", + "effect": "用火柱进行攻击。如果和草组合,\n威力就会提高,周围会变成火海" + }, + "grassPledge": { + "name": "草之誓约", + "effect": "用草柱进行攻击。如果和水组合,\n威力就会提高,周围会变成湿地" + }, + "voltSwitch": { + "name": "伏特替换", + "effect": "在攻击之后急速返回,\n和后备宝可梦进行替换" + }, + "struggleBug": { + "name": "虫之抵抗", + "effect": "抵抗并攻击对手。会降低对手的特攻" + }, + "bulldoze": { + "name": "重踏", + "effect": "用力踩踏地面并攻击自己周围所有\n的宝可梦。会降低对方的速度" + }, + "frostBreath": { + "name": "冰息", + "effect": "将冰冷的气息吹向对手进行攻击。\n必定会击中要害" + }, + "dragonTail": { + "name": "龙尾", + "effect": "弹飞对手,强制拉后备宝可梦上场。\n如果对手为野生宝可梦,\n战斗将直接结束" + }, + "workUp": { + "name": "自我激励", + "effect": "激励自己,从而提高攻击和特攻" + }, + "electroweb": { + "name": "电网", + "effect": "用电网捉住对手进行攻击。\n会降低对手的速度" + }, + "wildCharge": { + "name": "疯狂伏特", + "effect": "让电流覆盖全身,撞向对手进行攻击。\n自己也会受到少许伤害" + }, + "drillRun": { + "name": "直冲钻", + "effect": "像钢钻一样,\n一边旋转身体一边撞击对手。\n容易击中要害" + }, + "dualChop": { + "name": "二连劈", + "effect": "用身体坚硬的部分拍打对手进行攻击。\n连续2次给予伤害" + }, + "heartStamp": { + "name": "爱心印章", + "effect": "以可爱的动作使对手疏忽,\n乘机给出强烈的一击。有时会使对手畏缩" + }, + "hornLeech": { + "name": "木角", + "effect": "将角刺入,吸取对手的养分。\n可以回复给予对手伤害的一半HP" + }, + "sacredSword": { + "name": "圣剑", + "effect": "用剑切斩对手进行攻击。\n无视对手的能力变化,直接给予伤害" + }, + "razorShell": { + "name": "贝壳刃", + "effect": "用锋利的贝壳切斩对手进行攻击。\n有时会降低对手的防御" + }, + "heatCrash": { + "name": "高温重压", + "effect": "用燃烧的身体撞向对手进行攻击。\n自己比对手越重,威力越大" + }, + "leafTornado": { + "name": "青草搅拌器", + "effect": "用锋利的叶片包裹住对手进行攻击。\n有时会降低对手的命中率" + }, + "steamroller": { + "name": "疯狂滚压", + "effect": "旋转揉成团的身体压扁对手。\n有时会使对手畏缩" + }, + "cottonGuard": { + "name": "棉花防守", + "effect": "用软绵绵的绒毛包裹住自己的身体\n进行守护。巨幅提高自己的防御" + }, + "nightDaze": { + "name": "暗黑爆破", + "effect": "放出黑暗的冲击波攻击对手。\n有时会降低对手的命中率" + }, + "psystrike": { + "name": "精神击破", + "effect": "将神奇的念波实体化攻击对手。\n给予物理伤害" + }, + "tailSlap": { + "name": "扫尾拍打", + "effect": "用坚硬的尾巴拍打对手进行攻击。\n连续攻击2~5次" + }, + "hurricane": { + "name": "暴风", + "effect": "用强烈的风席卷对手进行攻击。\n有时会使对手混乱" + }, + "headCharge": { + "name": "爆炸头突击", + "effect": "用厉害的爆炸头猛撞向对手进行攻击。\n自己也会受到少许伤害" + }, + "gearGrind": { + "name": "齿轮飞盘", + "effect": "向对手投掷钢铁齿轮进行攻击。\n连续2次给予伤害" + }, + "searingShot": { + "name": "火焰弹", + "effect": "用熊熊烈火攻击自己周围所有的宝可梦。\n有时会陷入灼伤状态" + }, + "technoBlast": { + "name": "高科技光炮", + "effect": "向对手放出光弹。属性会根据自己\n携带的卡带不同而改变" + }, + "relicSong": { + "name": "古老之歌", + "effect": "让对手听古老之歌,打动对手的内\n心进行攻击。有时会让对手陷入睡眠状态" + }, + "secretSword": { + "name": "神秘之剑", + "effect": "用长角切斩对手进行攻击。\n角上拥有的神奇力量将给予物理伤害" + }, + "glaciate": { + "name": "冰封世界", + "effect": "将冰冻的冷气吹向对手进行攻击。\n会降低对手的速度" + }, + "boltStrike": { + "name": "雷击", + "effect": "让强大的电流覆盖全身,\n猛撞向对手进行攻击。\n有时会让对手陷入麻痹状态" + }, + "blueFlare": { + "name": "青焰", + "effect": "用美丽而激烈的青焰\n包裹住对手进行攻击。\n有时会让对手陷入灼伤状态" + }, + "fieryDance": { + "name": "火之舞", + "effect": "让火焰覆盖全身,振翅攻击对手。\n有时会提高自己的特攻" + }, + "freezeShock": { + "name": "冰冻伏特", + "effect": "用覆盖着电流的冰块,\n在第2回合撞向对手。\n有时会让对手陷入麻痹状态" + }, + "iceBurn": { + "name": "极寒冷焰", + "effect": "用能够冻结一切的强烈冷气,\n在第2回合包裹住对手。有时会让对手\n陷入灼伤状态" + }, + "snarl": { + "name": "大声咆哮", + "effect": "没完没了地大声斥责,\n从而降低对手的特攻" + }, + "icicleCrash": { + "name": "冰柱坠击", + "effect": "用大冰柱激烈地撞向对手进行攻击。\n有时会使对手畏缩" + }, + "vCreate": { + "name": "V热焰", + "effect": "从前额产生灼热的火焰,\n舍身撞击对手。防御、特防和速度会降低" + }, + "fusionFlare": { + "name": "交错火焰", + "effect": "释放出巨大的火焰。受到巨大的闪\n电影响时,招式威力会提高" + }, + "fusionBolt": { + "name": "交错闪电", + "effect": "释放出巨大的闪电。受到巨大的火\n焰影响时,招式威力会提高" + }, + "flyingPress": { + "name": "飞身重压", + "effect": "从空中俯冲向对手。此招式同时带\n有格斗属性和飞行属性" + }, + "matBlock": { + "name": "掀榻榻米", + "effect": "将掀起来的榻榻米当作盾牌,\n防住自己和同伴免受招式伤害。\n变化招式无法防住" + }, + "belch": { + "name": "打嗝", + "effect": "朝着对手打嗝,并给予伤害。\n如果不吃树果则无法使出" + }, + "rototiller": { + "name": "耕地", + "effect": "翻耕土地,使草木更容易成长。\n会提高草属性宝可梦的攻击和特攻" + }, + "stickyWeb": { + "name": "黏黏网", + "effect": "在对手周围围上黏黏的网,\n降低替换出场的对手的速度" + }, + "fellStinger": { + "name": "致命针刺", + "effect": "如果使用此招式打倒对手,\n攻击会巨幅提高" + }, + "phantomForce": { + "name": "潜灵奇袭", + "effect": "第1回合消失在某处,\n第2回合攻击对手。\n可以无视守护进行攻击" + }, + "trickOrTreat": { + "name": "万圣夜", + "effect": "邀请对手参加万圣夜。\n使对手被追加幽灵属性" + }, + "nobleRoar": { + "name": "战吼", + "effect": "发出战吼威吓对手,从而降低对手\n的攻击和特攻" + }, + "ionDeluge": { + "name": "等离子浴", + "effect": "将带电粒子扩散开来,\n使一般属性的招式变成电属性" + }, + "parabolicCharge": { + "name": "抛物面充电", + "effect": "给周围全体宝可梦造成伤害。\n可以回复给予伤害的一半HP" + }, + "forestsCurse": { + "name": "森林咒术", + "effect": "向对手施加森林咒术。\n中了咒术的对手会被追加草属性" + }, + "petalBlizzard": { + "name": "落英缤纷", + "effect": "猛烈地刮起飞雪般的落花,\n攻击周围所有的宝可梦,并给予伤害" + }, + "freezeDry": { + "name": "冷冻干燥", + "effect": "急剧冷冻对手,有时会让对手陷入\n冰冻状态。对于水属性宝可梦也是\n效果绝佳" + }, + "disarmingVoice": { + "name": "魅惑之声", + "effect": "发出魅惑的叫声,\n给予对手精神上的伤害。\n攻击必定会命中" + }, + "partingShot": { + "name": "抛下狠话", + "effect": "抛下狠话威吓对手,降低攻击和特攻后,\n和后备宝可梦进行替换" + }, + "topsyTurvy": { + "name": "颠倒", + "effect": "颠倒对手身上的所有能力变化,\n变成和原来相反的状态" + }, + "drainingKiss": { + "name": "吸取之吻", + "effect": "用一个吻吸取对手的HP。\n回复给予对手伤害的一半以上的HP" + }, + "craftyShield": { + "name": "戏法防守", + "effect": "使用神奇的力量防住\n攻击我方的变化招式。\n但无法防住伤害招式的攻击" + }, + "flowerShield": { + "name": "鲜花防守", + "effect": "使用神奇的力量提高在场的所有草\n属性宝可梦的防御" + }, + "grassyTerrain": { + "name": "青草场地", + "effect": "在5回合内变成青草场地。\n地面上的宝可梦每回合都能回复。\n草属性的招式威力还会提高" + }, + "mistyTerrain": { + "name": "薄雾场地", + "effect": "在5回合内,地面上的宝可梦不会\n陷入异常状态。龙属性招式的伤害\n也会减半" + }, + "electrify": { + "name": "输电", + "effect": "对手使出招式前,如果输电,\n则该回合对手的招式变成电属性" + }, + "playRough": { + "name": "嬉闹", + "effect": "与对手嬉闹并攻击。有时会降低对\n手的攻击" + }, + "fairyWind": { + "name": "妖精之风", + "effect": "刮起妖精之风,吹向对手进行攻击" + }, + "moonblast": { + "name": "月亮之力", + "effect": "借用月亮的力量攻击对手。\n有时会降低对手的特攻" + }, + "boomburst": { + "name": "爆音波", + "effect": "通过震耳欲聋的爆炸声产生的破坏力,\n攻击自己周围所有的宝可梦" + }, + "fairyLock": { + "name": "妖精之锁", + "effect": "通过封锁,下一回合所有的宝可梦\n都无法逃走" + }, + "kingsShield": { + "name": "王者盾牌", + "effect": "防住对手攻击的同时,\n自己变为防御姿态。\n能够降低所接触到的对手的攻击" + }, + "playNice": { + "name": "和睦相处", + "effect": "和对手和睦相处,使其失去战斗的气力,\n从而降低对手的攻击" + }, + "confide": { + "name": "密语", + "effect": "和对手进行密语,使其失去集中力,\n从而降低对手的特攻" + }, + "diamondStorm": { + "name": "钻石风暴", + "effect": "掀起钻石风暴给予伤害。\n有时会大幅提高自己的防御" + }, + "steamEruption": { + "name": "蒸汽爆炸", + "effect": "将滚烫的蒸汽喷向对手。\n有时会让对手灼伤" + }, + "hyperspaceHole": { + "name": "异次元洞", + "effect": "通过异次元洞,突然出现在对手的\n侧面进行攻击。还可以无视守住和\n看穿等招式" + }, + "waterShuriken": { + "name": "飞水手里剑", + "effect": "用粘液制成的手里剑,\n连续攻击2~5次。必定能够先制攻击" + }, + "mysticalFire": { + "name": "魔法火焰", + "effect": "从口中喷出特别灼热的火焰进行攻击。\n降低对手的特攻" + }, + "spikyShield": { + "name": "尖刺防守", + "effect": "防住对手攻击的同时,\n削减接触到自己的对手的体力" + }, + "aromaticMist": { + "name": "芳香薄雾", + "effect": "通过神奇的芳香,提高我方宝可梦的特防" + }, + "eerieImpulse": { + "name": "怪异电波", + "effect": "从身体放射出怪异电波,\n让对手沐浴其中,从而大幅降低其特攻" + }, + "venomDrench": { + "name": "毒液陷阱", + "effect": "将特殊的毒液泼向对手。\n对处于中毒状态的对手,其攻击、\n特攻和速度都会降低" + }, + "powder": { + "name": "粉尘", + "effect": "如果被撒到粉尘的对手使用火招式,\n则会爆炸并给予伤害" + }, + "geomancy": { + "name": "大地掌控", + "effect": "第1回合吸收能量,第2回合大幅\n提高特攻、特防和速度" + }, + "magneticFlux": { + "name": "磁场操控", + "effect": "通过操控磁场,会提高特性为正电\n和负电的宝可梦的防御和特防" + }, + "happyHour": { + "name": "欢乐时光", + "effect": "如果使用欢乐时光,战斗后得到的\n钱会翻倍" + }, + "electricTerrain": { + "name": "电气场地", + "effect": "在5回合内变成电气场地。\n地面上的宝可梦将无法入眠。\n电属性的招式威力还会提高" + }, + "dazzlingGleam": { + "name": "魔法闪耀", + "effect": "向对手发射强光,并给予伤害" + }, + "celebrate": { + "name": "庆祝", + "effect": "宝可梦为十分开心的你庆祝" + }, + "holdHands": { + "name": "牵手", + "effect": "我方宝可梦之间牵手。\n能带来非常幸福的心情" + }, + "babyDollEyes": { + "name": "圆瞳", + "effect": "用圆瞳凝视对手,从而降低其攻击。\n必定能够先制攻击" + }, + "nuzzle": { + "name": "蹭蹭脸颊", + "effect": "将带电的脸颊蹭蹭对手进行攻击。\n让对手陷入麻痹状态" + }, + "holdBack": { + "name": "手下留情", + "effect": "在攻击的时候手下留情,\n从而使对手的HP至少会留下1HP" + }, + "infestation": { + "name": "纠缠不休", + "effect": "在4~5回合内死缠烂打地进行攻击。\n在此期间对手将无法逃走" + }, + "powerUpPunch": { + "name": "增强拳", + "effect": "通过反复击打对手,使自己的拳头\n慢慢变硬。打中对手攻击就会提高" + }, + "oblivionWing": { + "name": "归天之翼", + "effect": "从锁定的对手身上吸取HP。\n回复给予对手伤害的一半以上的HP" + }, + "thousandArrows": { + "name": "千箭齐发", + "effect": "可以击中浮在空中的宝可梦。\n空中的对手被击落后,会掉到地面" + }, + "thousandWaves": { + "name": "千波激荡", + "effect": "从地面掀起波浪进行攻击。\n被掀入波浪中的对手,\n将无法从战斗中逃走" + }, + "landsWrath": { + "name": "大地神力", + "effect": "聚集大地的力量,\n将此力量集中攻击对手,\n并给予伤害" + }, + "lightOfRuin": { + "name": "破灭之光", + "effect": "借用永恒之花的力量,\n发射出强力光线。\n自己也会受到非常大的伤害" + }, + "originPulse": { + "name": "根源波动", + "effect": "用无数青白色且闪耀的光线攻击对手" + }, + "precipiceBlades": { + "name": "断崖之剑", + "effect": "将大地的力量变化为利刃攻击对手" + }, + "dragonAscent": { + "name": "画龙点睛", + "effect": "从天空中急速下降攻击对手。\n自己的防御和特防会降低" + }, + "hyperspaceFury": { + "name": "异次元猛攻", + "effect": "用许多手臂,无视对手的守住或看\n穿等招式进行连续攻击,\n自己的防御会降低" + }, + "breakneckBlitzPhysical": { + "name": "一般Z究极无敌大冲撞", + "effect": "通过Z力量气势猛烈地全力撞上对手。\n威力会根据原来的招式而改变" + }, + "breakneckBlitzSpecial": { + "name": "一般Z究极无敌大冲撞", + "effect": "通过Z力量气势猛烈地全力撞上对手。\n威力会根据原来的招式而改变" + }, + "allOutPummelingPhysical": { + "name": "格斗Z全力无双激烈拳", + "effect": "通过Z力量制造出能量弹,\n全力撞向对手。\n威力会根据原来的招式而改变" + }, + "allOutPummelingSpecial": { + "name": "格斗Z全力无双激烈拳", + "effect": "通过Z力量制造出能量弹,\n全力撞向对手。\n威力会根据原来的招式而改变" + }, + "supersonicSkystrikePhysical": { + "name": "飞行Z极速俯冲轰烈撞", + "effect": "通过Z力量猛烈地飞向天空,\n朝对手全力落下。\n威力会根据原来的招式而改变" + }, + "supersonicSkystrikeSpecial": { + "name": "飞行Z极速俯冲轰烈撞", + "effect": "通过Z力量猛烈地飞向天空,\n朝对手全力落下。\n威力会根据原来的招式而改变" + }, + "acidDownpourPhysical": { + "name": "毒Z强酸剧毒灭绝雨", + "effect": "通过Z力量使毒沼涌起,\n全力让对手沉下去。\n威力会根据原来的招式而改变" + }, + "acidDownpourSpecial": { + "name": "毒Z强酸剧毒灭绝雨", + "effect": "通过Z力量使毒沼涌起,\n全力让对手沉下去。\n威力会根据原来的招式而改变" + }, + "tectonicRagePhysical": { + "name": "地面Z地隆啸天大终结", + "effect": "通过Z力量潜入地里最深处,\n全力撞上对手。\n威力会根据原来的招式而改变" + }, + "tectonicRageSpecial": { + "name": "地面Z地隆啸天大终结", + "effect": "通过Z力量潜入地里最深处,\n全力撞上对手。\n威力会根据原来的招式而改变" + }, + "continentalCrushPhysical": { + "name": "岩石Z毁天灭地巨岩坠", + "effect": "通过Z力量召唤大大的岩山,\n全力撞向对手。\n威力会根据原来的招式而改变" + }, + "continentalCrushSpecial": { + "name": "岩石Z毁天灭地巨岩坠", + "effect": "通过Z力量召唤大大的岩山,\n全力撞向对手。\n威力会根据原来的招式而改变" + }, + "savageSpinOutPhysical": { + "name": "虫Z绝对捕食回旋斩", + "effect": "通过Z力量将吐出的丝线全力束缚对手。\n威力会根据原来的招式而改变" + }, + "savageSpinOutSpecial": { + "name": "虫Z绝对捕食回旋斩", + "effect": "通过Z力量将吐出的丝线全力束缚对手。\n威力会根据原来的招式而改变" + }, + "neverEndingNightmarePhysical": { + "name": "幽灵Z无尽暗夜之诱惑", + "effect": "通过Z力量召唤强烈的怨念,\n全力降临到对手身上。\n威力会根据原来的招式而改变" + }, + "neverEndingNightmareSpecial": { + "name": "幽灵Z无尽暗夜之诱惑", + "effect": "通过Z力量召唤强烈的怨念,\n全力降临到对手身上。\n威力会根据原来的招式而改变" + }, + "corkscrewCrashPhysical": { + "name": "钢Z超绝螺旋连击", + "effect": "通过Z力量进行高速旋转,\n全力撞上对手。\n威力会根据原来的招式而改变" + }, + "corkscrewCrashSpecial": { + "name": "钢Z超绝螺旋连击", + "effect": "通过Z力量进行高速旋转,\n全力撞上对手。\n威力会根据原来的招式而改变" + }, + "infernoOverdrivePhysical": { + "name": "火Z超强极限爆焰弹", + "effect": "通过Z力量喷出熊熊烈火,\n全力撞向对手。\n威力会根据原来的招式而改变" + }, + "infernoOverdriveSpecial": { + "name": "火Z超强极限爆焰弹", + "effect": "通过Z力量喷出熊熊烈火,\n全力撞向对手。\n威力会根据原来的招式而改变" + }, + "hydroVortexPhysical": { + "name": "水Z超级水流大漩涡", + "effect": "通过Z力量制造大大的潮旋,\n全力吞没对手。\n威力会根据原来的招式而改变" + }, + "hydroVortexSpecial": { + "name": "水Z超级水流大漩涡", + "effect": "通过Z力量制造大大的潮旋,\n全力吞没对手。\n威力会根据原来的招式而改变" + }, + "bloomDoomPhysical": { + "name": "草Z绚烂缤纷花怒放", + "effect": "通过Z力量借助花草的能量,\n全力攻击对手。\n威力会根据原来的招式而改变" + }, + "bloomDoomSpecial": { + "name": "草Z绚烂缤纷花怒放", + "effect": "通过Z力量借助花草的能量,\n全力攻击对手。\n威力会根据原来的招式而改变" + }, + "gigavoltHavocPhysical": { + "name": "电Z终极伏特狂雷闪", + "effect": "通过Z力量将蓄积的强大电流全力\n撞向对手。威力会根据原来的招式而改变" + }, + "gigavoltHavocSpecial": { + "name": "电Z终极伏特狂雷闪", + "effect": "通过Z力量将蓄积的强大电流全力\n撞向对手。威力会根据原来的招式而改变" + }, + "shatteredPsychePhysical": { + "name": "超能力Z至高精神破坏波", + "effect": "通过Z力量操纵对手,\n全力使其感受到痛苦。\n威力会根据原来的招式而改变" + }, + "shatteredPsycheSpecial": { + "name": "超能力Z至高精神破坏波", + "effect": "通过Z力量操纵对手,\n全力使其感受到痛苦。\n威力会根据原来的招式而改变" + }, + "subzeroSlammerPhysical": { + "name": "冰Z激狂大地万里冰", + "effect": "通过Z力量急剧降低气温,\n全力冰冻对手。\n威力会根据原来的招式而改变" + }, + "subzeroSlammerSpecial": { + "name": "冰Z激狂大地万里冰", + "effect": "通过Z力量急剧降低气温,\n全力冰冻对手。\n威力会根据原来的招式而改变" + }, + "devastatingDrakePhysical": { + "name": "龙Z究极巨龙震天地", + "effect": "通过Z力量将气场实体化,\n向对手全力发动袭击。\n威力会根据原来的招式而改变" + }, + "devastatingDrakeSpecial": { + "name": "龙Z究极巨龙震天地", + "effect": "通过Z力量将气场实体化,\n向对手全力发动袭击。\n威力会根据原来的招式而改变" + }, + "blackHoleEclipsePhysical": { + "name": "恶Z黑洞吞噬万物灭", + "effect": "通过Z力量收集恶能量,\n全力将对手吸入。\n威力会根据原来的招式而改变" + }, + "blackHoleEclipseSpecial": { + "name": "恶Z黑洞吞噬万物灭", + "effect": "通过Z力量收集恶能量,\n全力将对手吸入。\n威力会根据原来的招式而改变" + }, + "twinkleTacklePhysical": { + "name": "妖精Z可爱星星飞天撞", + "effect": "通过Z力量制造魅惑空间,\n全力捉弄对手。\n威力会根据原来的招式而改变" + }, + "twinkleTackleSpecial": { + "name": "妖精Z可爱星星飞天撞", + "effect": "通过Z力量制造魅惑空间,\n全力捉弄对手。\n威力会根据原来的招式而改变" + }, + "catastropika": { + "name": "皮卡丘Z皮卡皮卡必杀击", + "effect": "通过Z力量,皮卡丘全身覆盖最强电力,\n全力猛扑对手" + }, + "shoreUp": { + "name": "集沙", + "effect": "回复自己最大HP的一半。\n在沙暴中回复得更多" + }, + "firstImpression": { + "name": "迎头一击", + "effect": "威力很高的招式,但只有在出场战斗时,\n立刻使出才能成功" + }, + "banefulBunker": { + "name": "碉堡", + "effect": "防住对手攻击的同时,\n让接触到自己的对手中毒" + }, + "spiritShackle": { + "name": "缝影", + "effect": "攻击的同时,缝住对手的影子,\n使其无法逃走" + }, + "darkestLariat": { + "name": "DD金勾臂", + "effect": "旋转双臂打向对手。\n无视对手的能力变化,\n直接给予伤害" + }, + "sparklingAria": { + "name": "泡影的咏叹调", + "effect": "随着唱歌会放出很多气球。\n受到此招式攻击时,灼伤会被治愈" + }, + "iceHammer": { + "name": "冰锤", + "effect": "挥舞强力而沉重的拳头,\n给予对手伤害。自己的速度会降低" + }, + "floralHealing": { + "name": "花疗", + "effect": "回复对手最大HP的一半。\n在青草场地时,效果会提高" + }, + "highHorsepower": { + "name": "十万马力", + "effect": "使出全身力量,猛攻对手" + }, + "strengthSap": { + "name": "吸取力量", + "effect": "给自己回复和对手攻击力\n相同数值的HP,\n然后降低对手的攻击" + }, + "solarBlade": { + "name": "日光刃", + "effect": "第1回合收集满满的日光,\n第2回合将此力量集中在剑上进行攻击" + }, + "leafage": { + "name": "树叶", + "effect": "将叶片打向对手,进行攻击" + }, + "spotlight": { + "name": "聚光灯", + "effect": "给宝可梦打上聚光灯,\n该回合只能瞄准该宝可梦" + }, + "toxicThread": { + "name": "毒丝", + "effect": "将混有毒的丝吐向对手。\n使其中毒,从而降低对手的速度" + }, + "laserFocus": { + "name": "磨砺", + "effect": "集中精神,下次攻击必定会击中要害" + }, + "gearUp": { + "name": "辅助齿轮", + "effect": "启动齿轮,提高特性为正电和负电\n的宝可梦的攻击和特攻" + }, + "throatChop": { + "name": "深渊突刺", + "effect": "受到此招式攻击的对手,\n会因为地狱般的痛苦,在2回合内,\n变得无法使出声音类招式" + }, + "pollenPuff": { + "name": "花粉团", + "effect": "对敌人使用是会爆炸的团子。\n对我方使用则是给予回复的团子" + }, + "anchorShot": { + "name": "掷锚", + "effect": "将锚缠住对手进行攻击。\n使对手无法逃走" + }, + "psychicTerrain": { + "name": "精神场地", + "effect": "在5回合内,地面上的宝可梦不会\n受到先制招式的攻击。\n超能力属性的招式威力会提高" + }, + "lunge": { + "name": "猛扑", + "effect": "全力猛扑对手进行攻击。\n从而降低对手的攻击" + }, + "fireLash": { + "name": "火焰鞭", + "effect": "用燃烧的鞭子抽打对手。\n受到攻击的对手防御会降低" + }, + "powerTrip": { + "name": "嚣张", + "effect": "耀武扬威地攻击对手,\n自己的能力提高得越多,威力就越大" + }, + "burnUp": { + "name": "燃尽", + "effect": "将自己全身燃烧起火焰来,\n给予对手大大的伤害。\n自己的火属性将会消失" + }, + "speedSwap": { + "name": "速度互换", + "effect": "将对手和自己的速度进行互换" + }, + "smartStrike": { + "name": "修长之角", + "effect": "用尖尖的角刺入对手进行攻击。\n攻击必定会命中" + }, + "purify": { + "name": "净化", + "effect": "治愈对手的异常状态。\n治愈后可以回复自己的HP" + }, + "revelationDance": { + "name": "觉醒之舞", + "effect": "全力跳舞进行攻击。此招式的属性\n将变得和自己的属性相同" + }, + "coreEnforcer": { + "name": "核心惩罚者", + "effect": "如果给予过伤害的对手已经结束行动,\n其特性就会被消除" + }, + "tropKick": { + "name": "热带踢", + "effect": "向对手使出来自南国的火热脚踢。\n从而降低对手的攻击" + }, + "instruct": { + "name": "号令", + "effect": "向对手下达指示,让其再次使出刚\n才的招式" + }, + "beakBlast": { + "name": "鸟嘴加农炮", + "effect": "先加热鸟嘴后再进行攻击。\n鸟嘴在加热时对手触碰的话,\n就会使其灼伤" + }, + "clangingScales": { + "name": "鳞片噪音", + "effect": "摩擦全身鳞片,\n发出响亮的声音进行攻击。\n攻击后自己的防御会降低" + }, + "dragonHammer": { + "name": "龙锤", + "effect": "将身体当作锤子,向对手发动袭击,\n给予伤害" + }, + "brutalSwing": { + "name": "狂舞挥打", + "effect": "用自己的身体狂舞挥打,\n给予对手伤害" + }, + "auroraVeil": { + "name": "极光幕", + "effect": "在5回合内减弱物理和特殊的伤害。\n只有下雪时才能使出" + }, + "sinisterArrowRaid": { + "name": "狙射树枭Z遮天蔽日暗影箭", + "effect": "通过Z力量制造出无数箭的狙射树\n枭将全力射穿对手进行攻击" + }, + "maliciousMoonsault": { + "name": "炽焰咆哮虎Z极恶飞跃粉碎击", + "effect": "通过Z力量得到强壮肉体的炽焰咆\n哮虎将全力撞向对手进行攻击" + }, + "oceanicOperetta": { + "name": "西狮海壬Z海神庄严交响乐", + "effect": "通过Z力量召唤大量水的西狮海壬\n将全力攻击对手" + }, + "guardianOfAlola": { + "name": "卡璞Z巨人卫士・阿罗拉", + "effect": "通过Z力量得到阿罗拉之力的土地\n神宝可梦将全力进行攻击。\n对手的剩余HP会减少很多" + }, + "soulStealing7StarStrike": { + "name": "玛夏多Z七星夺魂腿", + "effect": "得到Z力量的玛夏多将全力使出拳\n头和脚踢的连续招式叩打对手" + }, + "stokedSparksurfer": { + "name": "阿罗雷Z驾雷驭电戏冲浪", + "effect": "得到Z力量的阿罗拉地区的雷丘将\n全力进行攻击。从而让对手陷入麻痹状态" + }, + "pulverizingPancake": { + "name": "卡比兽Z认真起来大爆击", + "effect": "通过Z力量使得认真起来的卡比兽\n跃动巨大身躯,全力向对手发动袭击" + }, + "extremeEvoboost": { + "name": "伊布Z九彩昇华齐聚顶", + "effect": "得到Z力量的伊布将借助进化后伙\n伴们的力量,大幅提高能力" + }, + "genesisSupernova": { + "name": "梦幻Z起源超新星大爆炸", + "effect": "得到Z力量的梦幻将全力攻击对手。\n脚下会变成精神场地" + }, + "shellTrap": { + "name": "陷阱甲壳", + "effect": "设下甲壳陷阱。如果对手使出物理招式,\n陷阱就会爆炸并给予对手伤害" + }, + "fleurCannon": { + "name": "花朵加农炮", + "effect": "放出强力光束后,自己的特攻会大幅降低" + }, + "psychicFangs": { + "name": "精神之牙", + "effect": "利用精神力量咬住对手进行攻击。\n还可以破坏光墙和反射壁等" + }, + "stompingTantrum": { + "name": "跺脚", + "effect": "化悔恨为力量进行攻击。\n如果上一回合招式没有打中,\n威力就会翻倍" + }, + "shadowBone": { + "name": "暗影之骨", + "effect": "用附有灵魂的骨头殴打对手进行攻击。\n有时会降低对手的防御" + }, + "accelerock": { + "name": "冲岩", + "effect": "迅速撞向对手进行攻击。\n必定能够先制攻击" + }, + "liquidation": { + "name": "水流裂破", + "effect": "用水之力量撞向对手进行攻击。\n有时会降低对手的防御" + }, + "prismaticLaser": { + "name": "棱镜镭射", + "effect": "用棱镜的力量发射强烈光线。\n下一回合自己将无法动弹" + }, + "spectralThief": { + "name": "暗影偷盗", + "effect": "潜入对手的影子进行攻击。\n会夺取对手的能力提升" + }, + "sunsteelStrike": { + "name": "流星闪冲", + "effect": "以流星般的气势猛撞对手。\n可以无视对手的特性进行攻击" + }, + "moongeistBeam": { + "name": "暗影之光", + "effect": "放出奇怪的光线攻击对手。\n可以无视对手的特性进行攻击" + }, + "tearfulLook": { + "name": "泪眼汪汪", + "effect": "变得泪眼汪汪,让对手丧失斗志。\n从而降低对手的攻击和特攻" + }, + "zingZap": { + "name": "麻麻刺刺", + "effect": "撞向对手,并发出强电,\n使其感到麻麻刺刺的。有时会使对手畏缩" + }, + "naturesMadness": { + "name": "自然之怒", + "effect": "向对手释放自然之怒。\n对手的HP会减半" + }, + "multiAttack": { + "name": "多属性攻击", + "effect": "一边覆盖高能量,\n一边撞向对手进行攻击。\n根据存储碟不同,\n属性会改变" + }, + "tenMillionVoltThunderbolt": { + "name": "智皮卡Z千万伏特", + "effect": "戴着帽子的皮卡丘将通过Z力量增\n强的电击全力释放给对手。\n容易击中要害" + }, + "mindBlown": { + "name": "惊爆大头", + "effect": "让自己的头爆炸,来攻击周围的一切。\n自己也会受到伤害" + }, + "plasmaFists": { + "name": "等离子闪电拳", + "effect": "用覆盖着电流的拳头进行攻击。\n使一般属性的招式变成电属性" + }, + "photonGeyser": { + "name": "光子喷涌", + "effect": "用光柱来进行攻击。比较自己的攻\n击和特攻,用数值相对较高的一项\n给予对方伤害" + }, + "lightThatBurnsTheSky": { + "name": "究极奈克洛Z焚天灭世炽光爆", + "effect": "奈克洛兹玛会无视对手的特性效果,\n在攻击和特攻之间,\n用数值相对较高的一项给予对方伤害" + }, + "searingSunrazeSmash": { + "name": "索尔迦雷欧Z日光回旋下苍穹", + "effect": "得到Z力量的索尔迦雷欧\n将全力进行攻击。\n可以无视对手的特性效果" + }, + "menacingMoonrazeMaelstrom": { + "name": "露奈雅拉Z月华飞溅落灵霄", + "effect": "得到Z力量的露奈雅拉将全力进行攻击。\n可以无视对手的特性效果" + }, + "letsSnuggleForever": { + "name": "谜拟丘Z亲密无间大乱揍", + "effect": "得到Z力量的谜拟Q将全力进行乱揍攻击" + }, + "splinteredStormshards": { + "name": "鬃岩狼人Z狼啸石牙飓风暴", + "effect": "得到Z力量的鬃岩狼人将全力进行攻击。\n而且会消除场地状态" + }, + "clangorousSoulblaze": { + "name": "杖尾鳞甲龙Z炽魂热舞烈音爆", + "effect": "得到Z力量的杖尾鳞甲龙\n将全力攻击对手。\n并且自己的能力会提高" + }, + "zippyZap": { + "name": "电电加速", + "effect": "迅猛无比的电击。必定能够先制攻击,击中对方的要害。" + }, + "splishySplash": { + "name": "滔滔冲浪", + "effect": "往巨浪中注入电能后冲撞对手进行攻击。\n有时会让对手陷入麻痹状态" + }, + "floatyFall": { + "name": "飘飘坠落", + "effect": "轻飘飘地浮起来后,再猛地俯冲下\n去进行攻击。有时会使对手畏缩" + }, + "pikaPapow": { + "name": "闪闪雷光", + "effect": "皮卡丘越喜欢训练家,\n电击的威力就越强。攻击必定会命中" + }, + "bouncyBubble": { + "name": "活活气泡", + "effect": "投掷水球进行攻击。吸水后能回复\n等同于造成的伤害的HP" + }, + "buzzyBuzz": { + "name": "麻麻电击", + "effect": "放出电击攻击对手。让对手陷入麻痹状态" + }, + "sizzlySlide": { + "name": "熊熊火爆", + "effect": "用燃起大火的身体猛烈地冲撞对手。\n让对手陷入灼伤状态" + }, + "glitzyGlow": { + "name": "哗哗气场", + "effect": "利用念力强攻,粉碎对方信心。\n制造一道能减弱对手特殊攻击的神奇墙壁" + }, + "baddyBad": { + "name": "坏坏领域", + "effect": "恶行恶相地进行攻击。\n制造一道能减弱对手物理攻击的神奇墙壁" + }, + "sappySeed": { + "name": "茁茁炸弹", + "effect": "长出巨大的藤蔓,播撒种子进行攻击。\n种子每回合都会吸取对手的HP" + }, + "freezyFrost": { + "name": "冰冰霜冻", + "effect": "利用冰冷的黑雾结晶进行攻击。\n使全体宝可梦的能力变回原点" + }, + "sparklySwirl": { + "name": "亮亮风暴", + "effect": "利用芬芳刺鼻的龙卷风吞噬对方。\n能治愈我方宝可梦的异常状态" + }, + "veeveeVolley": { + "name": "砰砰击破", + "effect": "伊布越喜欢训练家,冲撞的威力就越强。\n攻击必定会命中" + }, + "doubleIronBash": { + "name": "钢拳双击", + "effect": "以胸口的螺帽为中心旋转,\n并连续2次挥动手臂打击对手。\n有时会使对手畏缩" + }, + "maxGuard": { + "name": "极巨防壁", + "effect": "完全抵挡对手的攻击。\n连续使出则容易失败" + }, + "dynamaxCannon": { + "name": "极巨炮", + "effect": "将凝缩在体内的能量从核心放出进行攻击,\n对手等级比当前波次的等级上限越高,造成的伤害越高,最多两倍。" + }, + "snipeShot": { + "name": "狙击", + "effect": "能无视具有吸引对手招式效果的特\n性或招式的影响。可以向选定的对\n手进行攻击" + }, + "jawLock": { + "name": "紧咬不放", + "effect": "使双方直到一方昏厥为止\n无法替换宝可梦。\n其中一方退场则可以解除效果" + }, + "stuffCheeks": { + "name": "大快朵颐", + "effect": "吃掉携带的树果,大幅提高防御" + }, + "noRetreat": { + "name": "背水一战", + "effect": "提高自己的所有能力,\n但无法替换或逃走" + }, + "tarShot": { + "name": "沥青射击", + "effect": "泼洒黏糊糊的沥青,降低对手的速度。\n火属性会变成对手的弱点" + }, + "magicPowder": { + "name": "魔法粉", + "effect": "向对手喷洒魔法粉,使对手变为超\n能力属性" + }, + "dragonDarts": { + "name": "龙箭", + "effect": "让多龙梅西亚进行2次攻击。\n如果对手有2只宝可梦,则对它们各进\n行1次攻击" + }, + "teatime": { + "name": "茶会", + "effect": "举办一场茶会,场上的所有宝可梦\n都会吃掉自己携带的树果" + }, + "octolock": { + "name": "蛸固", + "effect": "让对手无法逃走。对手被固定后,\n每回合都会降低防御和特防" + }, + "boltBeak": { + "name": "电喙", + "effect": "用带电的喙啄刺对手。\n如果比对手先出手攻击,\n招式的威力会变成2倍" + }, + "fishiousRend": { + "name": "鳃咬", + "effect": "用坚硬的腮咬住对手。\n如果比对手先出手攻击,\n招式的威力会变成2倍" + }, + "courtChange": { + "name": "换场", + "effect": "用神奇的力量交换双方的场地效果" + }, + "maxFlare": { + "name": "极巨火爆", + "effect": "极巨化宝可梦使出的火属性攻击。\n可在5回合内让日照变得强烈" + }, + "maxFlutterby": { + "name": "极巨虫蛊", + "effect": "极巨化宝可梦使出的虫属性攻击。\n会降低对手的特攻" + }, + "maxLightning": { + "name": "极巨闪电", + "effect": "极巨化宝可梦使出的电属性攻击。\n可在5回合内将脚下变成电气场地" + }, + "maxStrike": { + "name": "极巨攻击", + "effect": "极巨化宝可梦使出的一般属性攻击。\n会降低对手的速度" + }, + "maxKnuckle": { + "name": "极巨拳斗", + "effect": "极巨化宝可梦使出的格斗属性攻击。\n会提高我方的攻击" + }, + "maxPhantasm": { + "name": "极巨幽魂", + "effect": "极巨化宝可梦使出的幽灵属性攻击。\n会降低对手的防御" + }, + "maxHailstorm": { + "name": "极巨寒冰", + "effect": "极巨化宝可梦使出的冰属性攻击。\n在5回合内会下雪" + }, + "maxOoze": { + "name": "极巨酸毒", + "effect": "极巨化宝可梦使出的毒属性攻击。\n会提高我方的特攻" + }, + "maxGeyser": { + "name": "极巨水流", + "effect": "极巨化宝可梦使出的水属性攻击。\n可在5回合内降下大雨" + }, + "maxAirstream": { + "name": "极巨飞冲", + "effect": "极巨化宝可梦使出的飞行属性攻击。\n会提高我方的速度" + }, + "maxStarfall": { + "name": "极巨妖精", + "effect": "极巨化宝可梦使出的妖精属性攻击。\n可在5回合内将脚下变成薄雾场地" + }, + "maxWyrmwind": { + "name": "极巨龙骑", + "effect": "极巨化宝可梦使出的龙属性攻击。\n会降低对手的攻击" + }, + "maxMindstorm": { + "name": "极巨超能", + "effect": "极巨化宝可梦使出的超能力属性攻击。\n可在5回合内将脚下变成精神场地" + }, + "maxRockfall": { + "name": "极巨岩石", + "effect": "极巨化宝可梦使出的岩石属性攻击。\n可在5回合内卷起沙暴" + }, + "maxQuake": { + "name": "极巨大地", + "effect": "极巨化宝可梦使出的地面属性攻击。\n会提高我方的特防" + }, + "maxDarkness": { + "name": "极巨恶霸", + "effect": "极巨化宝可梦使出的恶属性攻击。\n会降低对手的特防" + }, + "maxOvergrowth": { + "name": "极巨草原", + "effect": "极巨化宝可梦使出的草属性攻击。\n可在5回合内将脚下变成青草场地" + }, + "maxSteelspike": { + "name": "极巨钢铁", + "effect": "极巨化宝可梦使出的钢属性攻击。\n会提高我方的防御" + }, + "clangorousSoul": { + "name": "魂舞烈音爆", + "effect": "削减少许自己的HP,\n使所有能力都提高" + }, + "bodyPress": { + "name": "扑击", + "effect": "用身体撞向对手进行攻击。\n防御越高,给予的伤害就越高" + }, + "decorate": { + "name": "装饰", + "effect": "通过装饰,大幅提高对方的攻击和特攻" + }, + "drumBeating": { + "name": "鼓击", + "effect": "用鼓点来控制鼓的根部进行攻击,\n从而降低对手的速度" + }, + "snapTrap": { + "name": "捕兽夹", + "effect": "使用捕兽夹,在4~5回合内,\n夹住对手进行攻击" + }, + "pyroBall": { + "name": "火焰球", + "effect": "点燃小石子,形成火球攻击对手。\n有时会使对手陷入灼伤状态" + }, + "behemothBlade": { + "name": "巨兽斩", + "effect": "以全身力气举起强大的剑,\n猛烈地劈向对手进行攻击" + }, + "behemothBash": { + "name": "巨兽弹", + "effect": "将全身变化为坚固的盾,\n猛烈地撞向对手进行攻击" + }, + "auraWheel": { + "name": "气场轮", + "effect": "用储存在颊囊里的能量进行攻击,\n并提高自己的速度。其属性会随着\n莫鲁贝可的样子而改变" + }, + "breakingSwipe": { + "name": "广域破坏", + "effect": "用坚韧的尾巴猛扫对手进行攻击,\n从而降低对手的攻击" + }, + "branchPoke": { + "name": "木枝突刺", + "effect": "使用尖锐的树枝刺向对手进行攻击" + }, + "overdrive": { + "name": "破音", + "effect": "奏响吉他和贝斯,释放出发出巨响\n的剧烈震动攻击对手" + }, + "appleAcid": { + "name": "苹果酸", + "effect": "使用从酸苹果中提取出来的酸性液\n体进行攻击。降低对手的特防" + }, + "gravApple": { + "name": "万有引力", + "effect": "从高处落下苹果,给予对手伤害。\n可降低对手的防御" + }, + "spiritBreak": { + "name": "灵魂冲击", + "effect": "用足以让对手一蹶不振的气势进行攻击。\n会降低对手的特攻" + }, + "strangeSteam": { + "name": "神奇蒸汽", + "effect": "喷出烟雾攻击对手。有时会使对手混乱" + }, + "lifeDew": { + "name": "生命水滴", + "effect": "喷洒出神奇的水,回复自己和场上\n同伴的HP" + }, + "obstruct": { + "name": "拦堵", + "effect": "完全抵挡对手的攻击。\n连续使出则容易失败。一旦触碰,\n防御就会大幅降低" + }, + "falseSurrender": { + "name": "假跪真撞", + "effect": "装作低头认错的样子,\n用凌乱的头发进行突刺。攻击必定会命中" + }, + "meteorAssault": { + "name": "流星突击", + "effect": "大力挥舞粗壮的茎进行攻击。\n但同时自己也会被晃晕,下一回合自己\n将无法动弹" + }, + "eternabeam": { + "name": "无极光束", + "effect": "无极汰那变回原来的样子后,\n发动的最强攻击。\n下一回合自己将无法动弹" + }, + "steelBeam": { + "name": "铁蹄光线", + "effect": "将从全身聚集的钢铁化为光束,\n激烈地发射出去。自己也会受到伤害" + }, + "expandingForce": { + "name": "广域战力", + "effect": "利用精神力量攻击对手。\n在精神场地上威力会有所提高,\n能对所有对手造成伤害" + }, + "steelRoller": { + "name": "铁滚轮", + "effect": "在破坏场地的同时攻击对手。\n如果脚下没有任何场地状态存在,\n使出此招式时便会失败" + }, + "scaleShot": { + "name": "鳞射", + "effect": "发射鳞片进行攻击。连续攻击2~5次。\n速度会提高但防御会降低" + }, + "meteorBeam": { + "name": "流星光束", + "effect": "第1回合聚集宇宙之力提高特攻,\n第2回合攻击对手" + }, + "shellSideArm": { + "name": "臂贝武器", + "effect": "从物理攻击和特殊攻击中选择可造\n成较多伤害的方式进行攻击。\n有时会让对手陷入中毒状态" + }, + "mistyExplosion": { + "name": "薄雾炸裂", + "effect": "对自己周围的所有宝可梦进行攻击,\n但使出后,自己会陷入昏厥。\n在薄雾场地上,招式威力会提高" + }, + "grassyGlide": { + "name": "青草滑梯", + "effect": "仿佛在地面上滑行般地攻击对手。\n在青草场地上,必定能够先制攻击" + }, + "risingVoltage": { + "name": "电力上升", + "effect": "用从地面升腾而起的电击进行攻击。\n当对手处于电气场地上时,\n招式威力会变成2倍" + }, + "terrainPulse": { + "name": "大地波动", + "effect": "借助场地的力量进行攻击。\n视使出招式时场地状态不同,\n招式的属性和威力会有所变化" + }, + "skitterSmack": { + "name": "爬击", + "effect": "从对手背后爬近后进行攻击。\n会降低对手的特攻" + }, + "burningJealousy": { + "name": "妒火", + "effect": "用嫉妒的能量攻击对手。\n会让在该回合内能力有所提高\n的宝可梦陷入灼伤状态" + }, + "lashOut": { + "name": "泄愤", + "effect": "攻击对手以发泄对其感到的恼怒情绪。\n如果在该回合内自身能力遭到降低,\n招式的威力会变成2倍" + }, + "poltergeist": { + "name": "灵骚", + "effect": "操纵对手的持有物进行攻击。\n当对手没有携带道具时,使出此招式时\n便会失败" + }, + "corrosiveGas": { + "name": "腐蚀气体", + "effect": "用具有强酸性的气体包裹住自己周\n围所有的宝可梦,并融化其所携带的道具" + }, + "coaching": { + "name": "指导", + "effect": "通过进行正确合理的指导,\n提高我方全员的攻击和防御" + }, + "flipTurn": { + "name": "快速折返", + "effect": "在攻击之后急速返回,\n和后备宝可梦进行替换" + }, + "tripleAxel": { + "name": "三旋击", + "effect": "连续3次踢对手进行攻击。\n每踢中一次,威力就会提高" + }, + "dualWingbeat": { + "name": "双翼", + "effect": "将翅膀撞向对手进行攻击。\n连续2次给予伤害" + }, + "scorchingSands": { + "name": "热沙大地", + "effect": "将滚烫的沙子砸向对手进行攻击。\n有时会让对手陷入灼伤状态" + }, + "jungleHealing": { + "name": "丛林治疗", + "effect": "与丛林融为一体,回复自己和场上\n同伴的HP和状态" + }, + "wickedBlow": { + "name": "暗冥强击", + "effect": "将恶之流派修炼至大成的猛烈一击。\n必定会击中要害" + }, + "surgingStrikes": { + "name": "水流连打", + "effect": "将水之流派修炼至大成的仿若行云\n流水般的3次连击。必定会击中要害" + }, + "thunderCage": { + "name": "雷电囚笼", + "effect": "将对手困在电流四溅的囚笼中,\n在4~5回合内进行攻击" + }, + "dragonEnergy": { + "name": "巨龙威能", + "effect": "把生命力转换为力量攻击对手。\n自己的HP越少,招式的威力越小" + }, + "freezingGlare": { + "name": "冰冷视线", + "effect": "从双眼发射精神力量进行攻击。\n有时会让对手陷入冰冻状态" + }, + "fieryWrath": { + "name": "怒火中烧", + "effect": "将愤怒转化为火焰般的气场进行攻击。\n有时会使对手畏缩" + }, + "thunderousKick": { + "name": "雷鸣蹴击", + "effect": "以雷电般的动作\n戏耍对手的同时使出脚踢。\n可降低对手的防御" + }, + "glacialLance": { + "name": "雪矛", + "effect": "向对手投掷掀起暴风雪的冰矛进行攻击" + }, + "astralBarrage": { + "name": "星碎", + "effect": "用大量的小灵体向对手发起攻击" + }, + "eerieSpell": { + "name": "诡异咒语", + "effect": "用强大的精神力量攻击。\n让对手最后使用的招式减少3PP" + }, + "direClaw": { + "name": "克命爪", + "effect": "以破灭之爪进行攻击。\n有时还会让对手陷入中毒、麻痹、\n睡眠之中的一种状态" + }, + "psyshieldBash": { + "name": "屏障猛攻", + "effect": "让意念的能量覆盖全身,\n撞向对手进行攻击。会提高自己的防御" + }, + "powerShift": { + "name": "力量转换", + "effect": "将自己的攻击与防御互相交换" + }, + "stoneAxe": { + "name": "岩斧", + "effect": "用岩石之斧进行攻击。\n散落的岩石碎片会飘浮在对手周围" + }, + "springtideStorm": { + "name": "阳春风暴", + "effect": "用交织着爱与恨的烈风席卷对手\n进行攻击。有时会降低对手的攻击" + }, + "mysticalPower": { + "name": "神秘之力", + "effect": "放出不可思议的力量攻击。\n会提高自己的特攻" + }, + "ragingFury": { + "name": "大愤慨", + "effect": "在2~3回合内,一边放出火焰,\n一边疯狂乱打。大闹一番后自己会\n陷入混乱" + }, + "waveCrash": { + "name": "波动冲", + "effect": "让水覆盖全身后撞向对手。\n自己也会受到不少伤害" + }, + "chloroblast": { + "name": "叶绿爆震", + "effect": "将自己的叶绿素凝聚起来后放出去\n进行攻击。自己也会受到伤害" + }, + "mountainGale": { + "name": "冰山风", + "effect": "将冰山般巨大的冰块砸向对手进行攻击。\n有时会使对手畏缩" + }, + "victoryDance": { + "name": "胜利之舞", + "effect": "激烈地跳起唤来胜利的舞蹈,\n提高自己的攻击、防御和速度" + }, + "headlongRush": { + "name": "突飞猛扑", + "effect": "向对手使出灌注了全心全力的撞击。\n自己的防御和特防会降低" + }, + "barbBarrage": { + "name": "毒千针", + "effect": "用无数的毒针进行攻击。\n有时还会让对手陷入中毒状态。\n攻击处于中毒状态的对手时,\n威力会变成2倍" + }, + "esperWing": { + "name": "气场之翼", + "effect": "用经过气场强化的翅膀撕裂对手。\n容易击中要害。会提高自己的速度" + }, + "bitterMalice": { + "name": "冤冤相报", + "effect": "用令人毛骨悚然的怨念进行攻击。\n会降低对手的攻击" + }, + "shelter": { + "name": "闭关", + "effect": "将皮肤变得坚硬如铁盾,\n从而大幅提高自己的防御" + }, + "tripleArrows": { + "name": "三连箭", + "effect": "使出一记腿技后同时发射3箭。\n有时会降低对手的防御或使对手畏缩。\n容易击中要害" + }, + "infernalParade": { + "name": "群魔乱舞", + "effect": "用无数的火球进行攻击。有时会让对手陷\n入灼伤状态。攻击处于异常状态\n的对手时,威力会变成2倍" + }, + "ceaselessEdge": { + "name": "秘剑・千重涛", + "effect": "用贝壳之剑进行攻击。\n散落的贝壳碎片会散落\n在对手脚下成为撒菱" + }, + "bleakwindStorm": { + "name": "枯叶风暴", + "effect": "用足以让身心都止不住颤抖的冰冷\n狂风进行攻击。有时会降低对手的速度" + }, + "wildboltStorm": { + "name": "鸣雷风暴", + "effect": "呼唤雷云引起风暴,用雷与风进行\n激烈的攻击。有时会让对手陷入麻痹状态" + }, + "sandsearStorm": { + "name": "热沙风暴", + "effect": "用灼热的沙子和强烈的风席卷对手\n进行攻击。有时会让对手陷入灼伤状态" + }, + "lunarBlessing": { + "name": "新月祈祷", + "effect": "向新月献上祈祷,回复自己和场上\n同伴的HP和状态" + }, + "takeHeart": { + "name": "勇气填充", + "effect": "鼓起冲劲,治愈自己的异常状态,\n同时提高自己的特攻和特防" + }, + "gMaxWildfire": { + "name": "超极巨深渊灭焰", + "effect": "超极巨化的喷火龙使出的火属性攻击。\n可在4回合内给予对手伤害" + }, + "gMaxBefuddle": { + "name": "超极巨蝶影蛊惑", + "effect": "超极巨化的巴大蝶使出的虫属性攻击。\n会让对手陷入中毒、麻痹或睡眠状态" + }, + "gMaxVoltCrash": { + "name": "超极巨万雷轰顶", + "effect": "超极巨化的皮卡丘使出的电属性攻击。\n会让对手陷入麻痹状态" + }, + "gMaxGoldRush": { + "name": "超极巨特大金币", + "effect": "超极巨化的喵喵使出的一般属性攻击。\n会让对手陷入混乱状态,\n并可获得金钱" + }, + "gMaxChiStrike": { + "name": "超极巨会心一击", + "effect": "超极巨化的怪力使出的格斗属性攻击。\n会变得容易击中要害" + }, + "gMaxTerror": { + "name": "超极巨幻影幽魂", + "effect": "超极巨化的耿鬼使出的幽灵属性攻击。\n会踩住对手的影子,\n让其无法被替换" + }, + "gMaxResonance": { + "name": "超极巨极光旋律", + "effect": "超极巨化的拉普拉斯使出的冰属性攻击。\n可在5回合内减弱受到的伤害" + }, + "gMaxCuddle": { + "name": "超极巨热情拥抱", + "effect": "超极巨化的伊布使出的一般属性攻击。\n会让对手陷入着迷状态" + }, + "gMaxReplenish": { + "name": "超极巨资源再生", + "effect": "超极巨化的卡比兽使出的一般属性攻击。\n会让吃掉的树果再生" + }, + "gMaxMalodor": { + "name": "超极巨臭气冲天", + "effect": "超极巨化的灰尘山使出的毒属性攻击。\n会让对手陷入中毒状态" + }, + "gMaxStonesurge": { + "name": "超极巨岩阵以待", + "effect": "超极巨化的暴噬龟使出的水属性攻击。\n会发射无数锐利的岩石" + }, + "gMaxWindRage": { + "name": "超极巨旋风袭卷", + "effect": "超极巨化的钢铠鸦使出的飞行属性攻击。\n可消除反射壁和光墙" + }, + "gMaxStunShock": { + "name": "超极巨异毒电场", + "effect": "超极巨化的颤弦蝾螈使出的电属性攻击。\n会让对手陷入中毒或麻痹状态" + }, + "gMaxFinale": { + "name": "超极巨幸福圆满", + "effect": "超极巨化的霜奶仙使出的妖精属性攻击。\n可回复我方的HP" + }, + "gMaxDepletion": { + "name": "超极巨劣化衰变", + "effect": "超极巨化的铝钢龙使出的龙属性攻击。\n可减少对手最后使用的招式的PP" + }, + "gMaxGravitas": { + "name": "超极巨天道七星", + "effect": "超极巨化的以欧路普使出的超能力\n属性攻击。在5回合内重力会产生变化" + }, + "gMaxVolcalith": { + "name": "超极巨炎石喷发", + "effect": "超极巨化的巨炭山使出的岩石属性攻击。\n可在4回合内给予对手伤害" + }, + "gMaxSandblast": { + "name": "超极巨沙尘漫天", + "effect": "超极巨化的沙螺蟒使出的地面属性攻击。\n在4~5回合内会狂刮沙暴" + }, + "gMaxSnooze": { + "name": "超极巨睡魔降临", + "effect": "超极巨化的长毛巨魔使出的恶属性攻击。\n会通过打大哈欠让对手产生睡意" + }, + "gMaxTartness": { + "name": "超极巨酸不溜丢", + "effect": "超极巨化的苹裹龙使出的草属性攻击。\n会降低对手的闪避率" + }, + "gMaxSweetness": { + "name": "超极巨琼浆玉液", + "effect": "超极巨化的丰蜜龙使出的草属性攻击。\n会治愈我方的异常状态" + }, + "gMaxSmite": { + "name": "超极巨天谴雷诛", + "effect": "超极巨化的布莉姆温使出的\n妖精属性攻击。\n会让对手陷入混乱状态" + }, + "gMaxSteelsurge": { + "name": "超极巨钢铁阵法", + "effect": "超极巨化的大王铜象使出的钢属性攻击。\n会发射无数锐利的刺" + }, + "gMaxMeltdown": { + "name": "超极巨液金熔击", + "effect": "超极巨化的美录梅塔使出的钢属性攻击。\n会让对手无法连续使出相同的招式" + }, + "gMaxFoamBurst": { + "name": "超极巨激漩泡涡", + "effect": "超极巨化的巨钳蟹使出的水属性攻击。\n会大幅降低对手的速度" + }, + "gMaxCentiferno": { + "name": "超极巨百火焚野", + "effect": "超极巨化的焚焰蚣使出的火属性攻击。\n可在4~5回合内将对手困在火焰中" + }, + "gMaxVineLash": { + "name": "超极巨灰飞鞭灭", + "effect": "超极巨化的妙蛙花使出的草属性攻击。\n可在4回合内给予对手伤害" + }, + "gMaxCannonade": { + "name": "超极巨水炮轰灭", + "effect": "超极巨化的水箭龟使出的水属性攻击。\n可在4回合内给予对手伤害" + }, + "gMaxDrumSolo": { + "name": "超极巨狂擂乱打", + "effect": "超极巨化的轰擂金刚猩使出的\n草属性攻击。\n不会受到对手特性的干扰" + }, + "gMaxFireball": { + "name": "超极巨破阵火球", + "effect": "超极巨化的闪焰王牌使出的火属性攻击。\n不会受到对手特性的干扰" + }, + "gMaxHydrosnipe": { + "name": "超极巨狙击神射", + "effect": "超极巨化的千面避役使出的水属性攻击。\n不会受到对手特性的干扰" + }, + "gMaxOneBlow": { + "name": "超极巨夺命一击", + "effect": "超极巨化的武道熊师使出的恶属性攻击。\n是可以无视极巨防壁的一击" + }, + "gMaxRapidFlow": { + "name": "超极巨流水连击", + "effect": "超极巨化的武道熊师使出的水属性攻击。\n是可以无视极巨防壁的连击" + }, + "teraBlast": { + "name": "太晶爆发", + "effect": "太晶化时,会放出太晶属性的能量攻击。\n比较自己的攻击和特攻,\n用数值相对较高的一项给予对方伤害。\n(其他属性)/用攻击和特攻数\n值较高的一项给予伤害。\n对正处于太晶化的对手效果绝佳。\n自己的攻击和特攻会降低。(星晶" + }, + "silkTrap": { + "name": "线阱", + "effect": "用丝设置陷阱。防住对方攻击的同时,\n能够降低所接触到的对手的速度" + }, + "axeKick": { + "name": "下压踢", + "effect": "将踢起的脚跟往下劈向对手进行攻击。\n有时会使对手混乱。\n如果劈偏则自己会受到伤害" + }, + "lastRespects": { + "name": "扫墓", + "effect": "为了化解伙伴的悔恨而进行攻击。\n被打倒的我方宝可梦越多,\n招式的威力越高" + }, + "luminaCrash": { + "name": "琉光冲激", + "effect": "放出连精神都能影响到的奇妙怪光\n进行攻击。会大幅降低对方的特防" + }, + "orderUp": { + "name": "上菜", + "effect": "以潇洒的身手进行攻击。\n若口中有米立龙,会按其样子提高能力" + }, + "jetPunch": { + "name": "喷射拳", + "effect": "将激流覆盖于拳头,以肉眼无法辨\n识的速度打出拳击。必定能够先制攻击" + }, + "spicyExtract": { + "name": "辣椒精华", + "effect": "放出极为辛辣的精华。\n对手的攻击会大幅提高,防御会大幅降低" + }, + "spinOut": { + "name": "疾速转轮", + "effect": "通过往腿上增加负荷,\n以激烈的旋转给予对手伤害。\n自己的速度会大幅降低" + }, + "populationBomb": { + "name": "鼠数儿", + "effect": "伙伴们会纷纷赶来集合,\n以群体行动给予对手攻击。\n连续命中1~10次" + }, + "iceSpinner": { + "name": "冰旋", + "effect": "脚上覆盖薄冰,旋转着撞击对手。\n通过旋转的动作破坏场地" + }, + "glaiveRush": { + "name": "巨剑突击", + "effect": "有勇无谋的舍身突击。使出招式后,\n对手的攻击必定会命中,\n且伤害会变成2倍" + }, + "revivalBlessing": { + "name": "复生祈祷", + "effect": "通过以慈爱之心祈祷,\n让陷入昏厥的后备宝可梦\n以回复一半HP的状态复活" + }, + "saltCure": { + "name": "盐腌", + "effect": "使对手陷入盐腌状态,\n每回合给予对手伤害。\n对手为钢或水属性时会更痛苦" + }, + "tripleDive": { + "name": "三连钻", + "effect": "以默契的跳跃溅起水花击向对手。\n连续3次给予伤害" + }, + "mortalSpin": { + "name": "晶光转转", + "effect": "通过旋转来攻击对手。\n可以摆脱绑紧、紧束、寄生种子等招式。\n还能让对手陷入中毒状态" + }, + "doodle": { + "name": "描绘", + "effect": "把握并映射出对手的本质,\n让自己和同伴宝可梦的特性\n变得和对手相同" + }, + "filletAway": { + "name": "甩肉", + "effect": "削减自己的HP,大幅提高攻击和\n特攻以及速度" + }, + "kowtowCleave": { + "name": "仆刀", + "effect": "下跪让对手大意后发起袭击劈向对手。\n攻击必定会命中" + }, + "flowerTrick": { + "name": "千变万花", + "effect": "将做了手脚的花束扔向对手进行攻击。\n必定会命中,且会击中要害" + }, + "torchSong": { + "name": "闪焰高歌", + "effect": "如唱歌一样喷出熊熊燃烧的火焰\n烧焦对手。会提高自己的特攻" + }, + "aquaStep": { + "name": "流水旋舞", + "effect": "以盈盈欲滴的轻快步伐戏耍对手并\n给予其伤害。会提高自己的速度" + }, + "ragingBull": { + "name": "怒牛", + "effect": "狂怒暴牛的猛烈冲撞。\n招式的属性随形态改变,\n光墙和反射壁等招式也能破坏" + }, + "makeItRain": { + "name": "淘金潮", + "effect": "扔出大量硬币攻击。自己的特攻会降低,\n战斗后还可以拿到钱" + }, + "psyblade": { + "name": "精神剑", + "effect": "用无形的利刃劈开对手。\n处于电气场地时,\n招式威力会变成1.5倍" + }, + "hydroSteam": { + "name": "水蒸气", + "effect": "将煮得翻滚的开水猛烈地喷向对手。\n日照强烈时,招式威力不但不会降低,\n还会变成1.5倍" + }, + "ruination": { + "name": "大灾难", + "effect": "引发毁灭性的灾厄,使对手的HP减半" + }, + "collisionCourse": { + "name": "全开猛撞", + "effect": "边变形边凶暴地落下,\n并引发起古老的大爆炸。若针对到弱点,\n威力会进一步" + }, + "electroDrift": { + "name": "闪电猛冲", + "effect": "边变形边高速奔走,并以未知的电\n击贯穿对手。若针对到弱点,\n威力会进一步" + }, + "shedTail": { + "name": "断尾", + "effect": "削减自己的HP,制造分身后会返回,\n并和后备宝可梦进行替换" + }, + "chillyReception": { + "name": "冷笑话", + "effect": "留下冷场的冷笑话后,\n和后备宝可梦进行替换。\n在5回合内会下雪" + }, + "tidyUp": { + "name": "大扫除", + "effect": "将撒菱、隐形岩、黏黏网、毒菱、\n替身全部扫除掉。自己的攻击和速\n度会提高" + }, + "snowscape": { + "name": "雪景", + "effect": "在5回合内会下雪。冰属性的防御会提高" + }, + "pounce": { + "name": "虫扑", + "effect": "飞扑向对手攻击。会降低对手的速度" + }, + "trailblaze": { + "name": "起草", + "effect": "跳出草丛进行攻击。通过轻快的步\n伐会提高自己的速度" + }, + "chillingWater": { + "name": "泼冷水", + "effect": "泼洒冰冷得足以让对手失去活力的\n水进行攻击。会降低对手的攻击" + }, + "hyperDrill": { + "name": "强力钻", + "effect": "急速旋转尖锐的身体部位贯穿对手。\n可以无视守住和看穿等招式" + }, + "twinBeam": { + "name": "双光束", + "effect": "从两眼发射出神奇的光线攻击。\n连续2次给予伤害" + }, + "rageFist": { + "name": "愤怒之拳", + "effect": "将愤怒化为力量攻击。\n受到攻击的次数越多,招式的威力越高" + }, + "armorCannon": { + "name": "铠农炮", + "effect": "熊熊燃烧自己的铠甲,\n将其做成炮弹射出攻击。\n自己的防御和特防会降低" + }, + "bitterBlade": { + "name": "悔念剑", + "effect": "将对世间的留恋聚集于剑尖,\n并斩击对手。可以回复给予对手伤害的\n一半HP" + }, + "doubleShock": { + "name": "电光双击", + "effect": "将全身所有的电力放出,\n给予对手大大的伤害。\n自己的电属性将会消失" + }, + "gigatonHammer": { + "name": "巨力锤", + "effect": "连同身体转起巨大的锤子进行攻击。\n这个招式无法连续使出2次" + }, + "comeuppance": { + "name": "复仇", + "effect": "使出招式前,将最后受到的招式的\n伤害大力返还给对手" + }, + "aquaCutter": { + "name": "水波刀", + "effect": "如刀刃般喷射出加压的水切开对手。\n容易击中要害" + }, + "blazingTorque": { + "name": "灼热暴冲", + "effect": "攻击目标造成伤害,有30%的几\n率使目标陷入灼伤状态。" + }, + "wickedTorque": { + "name": "黑暗暴冲", + "effect": "攻击目标造成伤害,有30%的几\n率使目标陷入睡眠状态。" + }, + "noxiousTorque": { + "name": "剧毒暴冲", + "effect": "攻击目标造成伤害,有30%的几\n率使目标陷入中毒状态。" + }, + "combatTorque": { + "name": "格斗暴冲", + "effect": "攻击目标造成伤害,有30%的几\n率使目标陷入麻痹状态。\n此招式可以命中幽灵属性的宝可梦。" + }, + "magicalTorque": { + "name": "魔法暴冲", + "effect": "攻击目标造成伤害,有30%的几\n率使目标陷入混乱状态。" + }, + "bloodMoon": { + "name": "血月", + "effect": "从赤红如血的满月发射出全部的气势。\n这个招式无法连续使出2次" + }, + "matchaGotcha": { + "name": "刷刷茶炮", + "effect": "发射经搅拌的茶的大炮,\n可以回复给予对手伤害的一半HP,\n有时会让对手陷入灼伤状态" + }, + "syrupBomb": { + "name": "糖浆炸弹", + "effect": "使粘稠的麦芽糖浆爆炸,\n让对手陷入满身糖状态,\n在3回合内持续降\n低其速度" + }, + "ivyCudgel": { + "name": "棘藤棒", + "effect": "用缠有藤蔓的棍棒殴打。\n属性会随所戴的面具而改变。\n容易击中要害" + }, + "electroShot": { + "name": "电光束", + "effect": "第1回合收集电力提高特攻,\n第2回合将高压的电力发射出去。\n下雨天气时能立刻发射" + }, + "teraStarstorm": { + "name": "晶光星群", + "effect": "照射出结晶的力量来驱逐敌人。\n太乐巴戈斯在星晶形态下使出时,\n能对所有对手造成伤害" + }, + "fickleBeam": { + "name": "随机光", + "effect": "发射光线进行攻击。有时其他的头\n也会合力发射镭射,让招式威力变成2倍" + }, + "burningBulwark": { + "name": "火焰守护", + "effect": "用超高温的体毛防住对手攻击的同时,\n让接触到自己的对手灼伤" + }, + "thunderclap": { + "name": "迅雷", + "effect": "可以比对手先使出电击进行攻击。\n对手使出的招式如果不是攻击招式\n则会失败" + }, + "mightyCleave": { + "name": "强刃攻击", + "effect": "用积蓄在头部的光来斩切对手。\n可以无视守护进行攻击" + }, + "tachyonCutter": { + "name": "迅子利刃", + "effect": "接连发射出粒子的利刃,\n连续2次给予伤害。攻击必定会命中" + }, + "hardPress": { + "name": "硬压", + "effect": "用手臂或钳子压迫对手。\n对手剩余的HP越多,威力越大" + }, + "dragonCheer": { + "name": "龙声鼓舞", + "effect": "以龙之鼓舞提高士气,\n让我方的招式变得容易击中要害。\n对龙属性的鼓舞效果会更强" + }, + "alluringVoice": { + "name": "魅诱之声", + "effect": "用天使般的歌声攻击对手。\n会让此回合内能力有提高的\n宝可梦陷入混乱状态" + }, + "temperFlare": { + "name": "豁出去", + "effect": "以自暴自弃的气势进行攻击。\n如果上一回合招式没有命中,\n威力就会翻倍" + }, + "supercellSlam": { + "name": "闪电强袭", + "effect": "让身体带电后压向对手。\n如果没有命中则自己会受到伤害" + }, + "psychicNoise": { + "name": "精神噪音", + "effect": "用令对手不舒服的音波进行攻击。\n让对手在2回合内无法通过招式、\n特性或携带的道具回复HP" + }, + "upperHand": { + "name": "快手还击", + "effect": "察觉到对手的动作后用掌根攻击,\n让对手畏缩。如果对手使出的招式\n不是先制攻击,则会失败" + }, + "malignantChain": { + "name": "邪毒锁链", + "effect": "用由毒形成的锁链缠住对手注入毒\n素加以侵蚀。有时会让对手陷入剧毒状态" + } +} diff --git a/src/locales/zh_CN/move.ts b/src/locales/zh_CN/move.ts deleted file mode 100644 index 0c022559329..00000000000 --- a/src/locales/zh_CN/move.ts +++ /dev/null @@ -1,3812 +0,0 @@ -import { MoveTranslationEntries } from "#app/interfaces/locales"; - -export const move: MoveTranslationEntries = { - "pound": { - name: "拍击", - effect: "使用长长的尾巴或手等拍打对手进行攻击", - }, - "karateChop": { - name: "空手劈", - effect: "用锋利的手刀劈向对手进行攻击。\n容易击中要害", - }, - "doubleSlap": { - name: "连环巴掌", - effect: "用连环巴掌拍打对手进行攻击。\n连续攻击2~5次", - }, - "cometPunch": { - name: "连续拳", - effect: "用拳头怒涛般的殴打对手进行攻击。\n连续攻击2~5次", - }, - "megaPunch": { - name: "百万吨重拳", - effect: "用充满力量的拳头攻击对手", - }, - "payDay": { - name: "聚宝功", - effect: "向对手的身体投掷小金币进行攻击。\n战斗后可以拿到钱", - }, - "firePunch": { - name: "火焰拳", - effect: "用充满火焰的拳头攻击对手。\n有时会让对手陷入灼伤状态", - }, - "icePunch": { - name: "冰冻拳", - effect: "用充满寒气的拳头攻击对手。\n有时会让对手陷入冰冻状态", - }, - "thunderPunch": { - name: "雷电拳", - effect: "用充满电流的拳头攻击对手。\n有时会让对手陷入麻痹状态", - }, - "scratch": { - name: "抓", - effect: "用坚硬且无比锋利的爪子抓对手进行攻击", - }, - "viseGrip": { - name: "夹住", - effect: "将对手从两侧夹住,给予伤害", - }, - "guillotine": { - name: "极落钳", - effect: "用大钳子或剪刀等夹断对手进行攻击。\n只要命中就会一击昏厥", - }, - "razorWind": { - name: "旋风刀", - effect: "制造风之刃,于第2回合攻击对手。\n容易击中要害", - }, - "swordsDance": { - name: "剑舞", - effect: "激烈地跳起战舞提高气势。\n大幅提高自己的攻击", - }, - "cut": { - name: "居合劈", - effect: "用镰刀或爪子等切斩对手进行攻击", - }, - "gust": { - name: "起风", - effect: "用翅膀将刮起的狂风袭向对手进行攻击", - }, - "wingAttack": { - name: "翅膀攻击", - effect: "大大地展开美丽的翅膀,\n将其撞向对手进行攻击", - }, - "whirlwind": { - name: "吹飞", - effect: "吹飞对手,强制拉后备宝可梦上场。\n如果对手为野生宝可梦,\n战斗将直接结束", - }, - "fly": { - name: "飞翔", - effect: "第1回合飞上天空,第2回合攻击对手", - }, - "bind": { - name: "绑紧", - effect: "使用长长的身体或藤蔓等,\n在4~5回合内绑紧对手进行攻击", - }, - "slam": { - name: "摔打", - effect: "使用长长的尾巴或藤蔓等摔打对手\n进行攻击", - }, - "vineWhip": { - name: "藤鞭", - effect: "用如同鞭子般弯曲而细长的藤蔓摔\n打对手进行攻击", - }, - "stomp": { - name: "踩踏", - effect: "用大脚踩踏对手进行攻击。\n有时会使对手畏缩", - }, - "doubleKick": { - name: "二连踢", - effect: "用2只脚踢飞对手进行攻击。\n连续2次给予伤害", - }, - "megaKick": { - name: "百万吨重踢", - effect: "使出力大无穷的重踢踢飞对手进行攻击", - }, - "jumpKick": { - name: "飞踢", - effect: "使出高高的腾空踢攻击对手。\n如果踢偏则自己会受到伤害", - }, - "rollingKick": { - name: "回旋踢", - effect: "一边使身体快速旋转,\n一边踢飞对手进行攻击。\n有时会使对手畏缩", - }, - "sandAttack": { - name: "泼沙", - effect: "向对手脸上泼沙子,从而降低命中率", - }, - "headbutt": { - name: "头锤", - effect: "将头伸出,笔直地扑向对手进行攻击。\n有时会使对手畏缩", - }, - "hornAttack": { - name: "角撞", - effect: "用尖锐的角攻击对手", - }, - "furyAttack": { - name: "乱击", - effect: "用角或喙刺向对手进行攻击。\n连续攻击2~5次", - }, - "hornDrill": { - name: "角钻", - effect: "用旋转的角刺入对手进行攻击。\n只要命中就会一击昏厥", - }, - "tackle": { - name: "撞击", - effect: "用整个身体撞向对手进行攻击", - }, - "bodySlam": { - name: "泰山压顶", - effect: "用整个身体压住对手进行攻击。\n有时会让对手陷入麻痹状态", - }, - "wrap": { - name: "紧束", - effect: "使用长长的身体或藤蔓等,\n在4~5回合内紧束对手进行攻击", - }, - "takeDown": { - name: "猛撞", - effect: "以惊人的气势撞向对手进行攻击。\n自己也会受到少许伤害", - }, - "thrash": { - name: "大闹一番", - effect: "在2~3回合内,乱打一气地攻击对手。\n大闹一番后自己会陷入混乱", - }, - "doubleEdge": { - name: "舍身冲撞", - effect: "拼命地猛撞向对手进行攻击。\n自己也会受到不小的伤害", - }, - "tailWhip": { - name: "摇尾巴", - effect: "可爱地左右摇晃尾巴,\n诱使对手疏忽大意。会降低对手的防御", - }, - "poisonSting": { - name: "毒针", - effect: "将有毒的针刺入对手进行攻击。\n有时会让对手陷入中毒状态", - }, - "twineedle": { - name: "双针", - effect: "将2根针刺入对手,连续2次给予伤害。\n有时会让对手陷入中毒状态", - }, - "pinMissile": { - name: "飞弹针", - effect: "向对手发射锐针进行攻击。\n连续攻击2~5次", - }, - "leer": { - name: "瞪眼", - effect: "用犀利的眼神使其害怕,\n从而降低对手的防御", - }, - "bite": { - name: "咬住", - effect: "用尖锐的牙咬住对手进行攻击。\n有时会使对手畏缩", - }, - "growl": { - name: "叫声", - effect: "让对手听可爱的叫声,\n引开注意力使其疏忽,\n从而降低对手的攻击", - }, - "roar": { - name: "吼叫", - effect: "放走对手,强制拉后备宝可梦上场。\n如果对手为野生宝可梦,\n战斗将直接结束", - }, - "sing": { - name: "唱歌", - effect: "让对手听舒适、美妙的歌声,\n从而陷入睡眠状态", - }, - "supersonic": { - name: "超音波", - effect: "从身体发出特殊的音波,\n从而使对手混乱", - }, - "sonicBoom": { - name: "音爆", - effect: "将冲击波撞向对手进行攻击。\n必定会给予20的伤害", - }, - "disable": { - name: "定身法", - effect: "阻碍对手行动,之前使出的招式将\n在4回合内无法使用", - }, - "acid": { - name: "溶解液", - effect: "将强酸泼向对手进行攻击。\n有时会降低对手的特防", - }, - "ember": { - name: "火花", - effect: "向对手发射小型火焰进行攻击。\n有时会让对手陷入灼伤状态", - }, - "flamethrower": { - name: "喷射火焰", - effect: "向对手发射烈焰进行攻击。\n有时会让对手陷入灼伤状态", - }, - "mist": { - name: "白雾", - effect: "用白雾覆盖身体。在5回合内不会\n让对手降低自己的能力", - }, - "waterGun": { - name: "水枪", - effect: "向对手猛烈地喷射水流进行攻击", - }, - "hydroPump": { - name: "水炮", - effect: "向对手猛烈地喷射大量水流进行攻击", - }, - "surf": { - name: "冲浪", - effect: "利用大浪攻击自己周围所有的宝可梦", - }, - "iceBeam": { - name: "冰冻光束", - effect: "向对手发射冰冻光束进行攻击。\n有时会让对手陷入冰冻状态", - }, - "blizzard": { - name: "暴风雪", - effect: "将猛烈的暴风雪刮向对手进行攻击。\n有时会让对手陷入冰冻状态", - }, - "psybeam": { - name: "幻象光线", - effect: "向对手发射神奇的光线进行攻击。\n有时会使对手混乱", - }, - "bubbleBeam": { - name: "泡沫光线", - effect: "向对手猛烈地喷射泡沫进行攻击。\n有时会降低对手的速度", - }, - "auroraBeam": { - name: "极光束", - effect: "向对手发射虹色光束进行攻击。\n有时会降低对手的攻击", - }, - "hyperBeam": { - name: "破坏光线", - effect: "向对手发射强烈的光线进行攻击。\n下一回合自己将无法动弹", - }, - "peck": { - name: "啄", - effect: "用尖锐的喙或角刺向对手进行攻击", - }, - "drillPeck": { - name: "啄钻", - effect: "一边旋转,一边将尖喙刺入对手进行攻击", - }, - "submission": { - name: "深渊翻滚", - effect: "将对手连同自己一起摔向地面进行攻击。\n自己也会受到少许伤害", - }, - "lowKick": { - name: "踢倒", - effect: "用力踢对手的脚,使其摔倒进行攻击。\n对手越重,威力越大", - }, - "counter": { - name: "双倍奉还", - effect: "从对手那里受到物理攻击的伤害将\n以2倍返还给同一个对手", - }, - "seismicToss": { - name: "地球上投", - effect: "利用引力将对手甩飞出去。\n给予对手和自己等级相同的伤害", - }, - "strength": { - name: "怪力", - effect: "使出浑身力气殴打对手进行攻击", - }, - "absorb": { - name: "吸取", - effect: "吸取对手的养分进行攻击。\n可以回复给予对手伤害的一半HP", - }, - "megaDrain": { - name: "超级吸取", - effect: "吸取对手的养分进行攻击。\n可以回复给予对手伤害的一半HP", - }, - "leechSeed": { - name: "寄生种子", - effect: "植入寄生种子后,将在每回合一点\n一点吸取对手的HP,\n从而用来回复自己的HP", - }, - "growth": { - name: "生长", - effect: "让身体一下子长大,从而提高攻击和特攻", - }, - "razorLeaf": { - name: "飞叶快刀", - effect: "飞出叶片,切斩对手进行攻击。\n容易击中要害", - }, - "solarBeam": { - name: "日光束", - effect: "第1回合收集满满的日光,\n第2回合发射光束进行攻击", - }, - "poisonPowder": { - name: "毒粉", - effect: "撒出毒粉,从而让对手陷入中毒状态", - }, - "stunSpore": { - name: "麻痹粉", - effect: "撒出麻痹粉,从而让对手陷入麻痹状态", - }, - "sleepPowder": { - name: "催眠粉", - effect: "撒出催眠粉,从而让对手陷入睡眠状态", - }, - "petalDance": { - name: "花瓣舞", - effect: "在2~3回合内,散落花瓣攻击对手。\n之后自己会陷入混乱", - }, - "stringShot": { - name: "吐丝", - effect: "用口中吐出的丝缠绕对手,\n从而大幅降低对手的速度", - }, - "dragonRage": { - name: "龙之怒", - effect: "将愤怒的冲击波撞向对手进行攻击。\n必定会给予40的伤害", - }, - "fireSpin": { - name: "火焰旋涡", - effect: "将对手困在激烈的火焰旋涡中,\n在4~5回合内进行攻击", - }, - "thunderShock": { - name: "电击", - effect: "发出电流刺激对手进行攻击。\n有时会让对手陷入麻痹状态", - }, - "thunderbolt": { - name: "十万伏特", - effect: "向对手发出强力电击进行攻击。\n有时会让对手陷入麻痹状态", - }, - "thunderWave": { - name: "电磁波", - effect: "向对手发出微弱的电击,\n从而让对手陷入麻痹状态", - }, - "thunder": { - name: "打雷", - effect: "向对手劈下暴雷进行攻击。\n有时会让对手陷入麻痹状态", - }, - "rockThrow": { - name: "落石", - effect: "拿起小岩石,投掷对手进行攻击", - }, - "earthquake": { - name: "地震", - effect: "利用地震的冲击,攻击自己周围所\n有的宝可梦", - }, - "fissure": { - name: "地裂", - effect: "让对手掉落于地裂的裂缝中进行攻击。\n只要命中就会一击昏厥", - }, - "dig": { - name: "挖洞", - effect: "第1回合钻入地底,第2回合攻击对手", - }, - "toxic": { - name: "剧毒", - effect: "让对手陷入剧毒状态。\n随着回合的推进,中毒伤害会增加", - }, - "confusion": { - name: "念力", - effect: "向对手发送微弱的念力进行攻击。\n有时会使对手混乱", - }, - "psychic": { - name: "精神强念", - effect: "向对手发送强大的念力进行攻击。\n有时会降低对手的特防", - }, - "hypnosis": { - name: "催眠术", - effect: "施以诱导睡意的暗示,\n让对手陷入睡眠状态", - }, - "meditate": { - name: "瑜伽姿势", - effect: "唤醒身体深处沉睡的力量,\n从而提高自己的攻击", - }, - "agility": { - name: "高速移动", - effect: "让身体放松变得轻盈,\n以便高速移动。大幅提高自己的速度", - }, - "quickAttack": { - name: "电光一闪", - effect: "以迅雷不及掩耳之势扑向对手。\n必定能够先制攻击", - }, - "rage": { - name: "愤怒", - effect: "如果在使出招式后受到攻击的话,\n会因愤怒的力量而提高攻击", - }, - "teleport": { - name: "瞬间移动", - effect: "当有后备宝可梦时使用,\n就可以进行替换。\n野生的宝可梦使用则会逃走", - }, - "nightShade": { - name: "黑夜魔影", - effect: "显示恐怖幻影,只给予对手和自己\n等级相同的伤害", - }, - "mimic": { - name: "模仿", - effect: "可以将对手最后使用的招式,\n在战斗内变成自己的招式", - }, - "screech": { - name: "刺耳声", - effect: "发出不由自主想要捂起耳朵的刺耳声,\n从而大幅降低对手的防御", - }, - "doubleTeam": { - name: "影子分身", - effect: "通过快速移动来制造分身,\n扰乱对手,从而提高闪避率", - }, - "recover": { - name: "自我再生", - effect: "让细胞再生,从而回复自己最大H\nP的一半", - }, - "harden": { - name: "变硬", - effect: "全身使劲,让身体变硬,\n从而提高自己的防御", - }, - "minimize": { - name: "变小", - effect: "蜷缩身体显得很小,从而大幅提高\n自己的闪避率", - }, - "smokescreen": { - name: "烟幕", - effect: "向对手喷出烟或墨汁等,\n从而降低对手的命中率", - }, - "confuseRay": { - name: "奇异之光", - effect: "显示奇怪的光,扰乱对手。\n使对手混乱", - }, - "withdraw": { - name: "缩入壳中", - effect: "缩入壳里保护身体,从而提高自己的防御", - }, - "defenseCurl": { - name: "变圆", - effect: "将身体蜷曲变圆,从而提高自己的防御", - }, - "barrier": { - name: "屏障", - effect: "制造坚固的壁障,从而大幅提高自\n己的防御", - }, - "lightScreen": { - name: "光墙", - effect: "利用神奇的墙壁,在5回合内减弱\n从对手那里受到的特殊攻击的伤害", - }, - "haze": { - name: "黑雾", - effect: "升起黑雾,将正在场上战斗的全体\n宝可梦的能力变回原点", - }, - "reflect": { - name: "反射壁", - effect: "利用神奇的墙壁,在5回合内减弱\n从对手那里受到的物理攻击的伤害", - }, - "focusEnergy": { - name: "聚气", - effect: "深深地吸口气,集中精神。\n自己的攻击会变得容易击中要害", - }, - "bide": { - name: "忍耐", - effect: "在2回合内忍受攻击,\n受到的伤害会2倍返还给对手", - }, - "metronome": { - name: "挥指", - effect: "挥动手指刺激自己的大脑,\n从许多的招式中随机使出1个", - }, - "mirrorMove": { - name: "鹦鹉学舌", - effect: "模仿对手使用的招式,\n自己也使用相同招式", - }, - "selfDestruct": { - name: "玉石俱碎", - effect: "引发爆炸,攻击自己周围所有的宝可梦。\n使用后陷入昏厥", - }, - "eggBomb": { - name: "炸蛋", - effect: "向对手用力投掷大大的蛋进行攻击", - }, - "lick": { - name: "舌舔", - effect: "用长长的舌头,舔遍对手进行攻击。\n有时会让对手陷入麻痹状态", - }, - "smog": { - name: "浊雾", - effect: "将肮脏的浓雾吹向对手进行攻击。\n有时会让对手陷入中毒状态", - }, - "sludge": { - name: "污泥攻击", - effect: "用污泥投掷对手进行攻击。\n有时会让对手陷入中毒状态", - }, - "boneClub": { - name: "骨棒", - effect: "用手中的骨头殴打对手进行攻击。\n有时会使对手畏缩", - }, - "fireBlast": { - name: "大字爆炎", - effect: "用大字形状的火焰烧尽对手。\n有时会让对手陷入灼伤状态", - }, - "waterfall": { - name: "攀瀑", - effect: "以惊人的气势扑向对手。\n有时会使对手畏缩", - }, - "clamp": { - name: "贝壳夹击", - effect: "用非常坚固且厚实的贝壳,\n在4~5回合内夹住对手进行攻击", - }, - "swift": { - name: "高速星星", - effect: "发射星形的光攻击对手。\n攻击必定会命中", - }, - "skullBash": { - name: "火箭头锤", - effect: "第1回合把头缩进去,\n从而提高防御。第2回合攻击对手", - }, - "spikeCannon": { - name: "尖刺加农炮", - effect: "向对手发射锐针进行攻击。\n连续攻击2~5次", - }, - "constrict": { - name: "缠绕", - effect: "用触手或青藤等缠绕进行攻击。\n有时会降低对手的速度", - }, - "amnesia": { - name: "瞬间失忆", - effect: "将头脑清空,瞬间忘记某事,\n从而大幅提高自己的特防", - }, - "kinesis": { - name: "折弯汤匙", - effect: "折弯汤匙引开注意,从而降低对手\n的命中率", - }, - "softBoiled": { - name: "生蛋", - effect: "回复自己最大HP的一半", - }, - "highJumpKick": { - name: "飞膝踢", - effect: "跳起后用膝盖撞对手进行攻击。\n如果撞偏则自己会受到伤害", - }, - "glare": { - name: "大蛇瞪眼", - effect: "用腹部的花纹使对手害怕,\n从而让其陷入麻痹状态", - }, - "dreamEater": { - name: "食梦", - effect: "吃掉正在睡觉的对手的梦进行攻击。\n回复对手所受到伤害的一半HP", - }, - "poisonGas": { - name: "毒瓦斯", - effect: "将毒瓦斯吹到对手的脸上,\n从而让对手陷入中毒状态", - }, - "barrage": { - name: "投球", - effect: "向对手投掷圆形物体进行攻击。\n连续攻击2~5次", - }, - "leechLife": { - name: "吸血", - effect: "吸取血液攻击对手。可以回复给予\n对手伤害的一半HP", - }, - "lovelyKiss": { - name: "恶魔之吻", - effect: "用恐怖的脸强吻对手。\n让对手陷入睡眠状态", - }, - "skyAttack": { - name: "神鸟猛击", - effect: "第2回合攻击对手。偶尔使对手畏缩。\n也容易击中要害", - }, - "transform": { - name: "变身", - effect: "变身成对手宝可梦的样子,\n能够使用和对手完全相同的招式", - }, - "bubble": { - name: "泡沫", - effect: "向对手用力吹起无数泡泡进行攻击。\n有时会降低对手的速度", - }, - "dizzyPunch": { - name: "迷昏拳", - effect: "有节奏地出拳攻击对手。\n有时会使对手混乱", - }, - "spore": { - name: "蘑菇孢子", - effect: "沙沙沙地撒满具有催眠效果的孢子,\n从而让对手陷入睡眠状态", - }, - "flash": { - name: "闪光", - effect: "使出光芒,从而降低对手的命中率。\n也可在阴暗的洞窟里照亮四周", - }, - "psywave": { - name: "精神波", - effect: "向对手发射神奇的念波进行攻击。\n每次使用,伤害都会改变", - }, - "splash": { - name: "跃起", - effect: "也不攻击只是一蹦一蹦地跳,\n什么都不会发生…", - }, - "acidArmor": { - name: "溶化", - effect: "通过细胞的变化进行液化,\n从而大幅提高自己的防御", - }, - "crabhammer": { - name: "蟹钳锤", - effect: "用大钳子敲打对手进行攻击。\n容易击中要害", - }, - "explosion": { - name: "大爆炸", - effect: "引发大爆炸,\n攻击自己周围所有的宝可梦。\n使用后自己会陷入昏厥", - }, - "furySwipes": { - name: "乱抓", - effect: "用爪子或镰刀等抓对手进行攻击。\n连续攻击2~5次", - }, - "bonemerang": { - name: "骨头回力镖", - effect: "用手中的骨头投掷对手,\n来回连续2次给予伤害", - }, - "rest": { - name: "睡觉", - effect: "连续睡上2回合。回复自己的全部\nHP以及治愈所有异常状态", - }, - "rockSlide": { - name: "岩崩", - effect: "将大岩石猛烈地撞向对手进行攻击。\n有时会使对手畏缩", - }, - "hyperFang": { - name: "终结门牙", - effect: "用锋利的门牙牢牢地咬住对手进行攻击。\n有时会使对手畏缩", - }, - "sharpen": { - name: "棱角化", - effect: "增加身体的角,变得棱棱角角,\n从而提高自己的攻击", - }, - "conversion": { - name: "纹理", - effect: "将自己的属性转换成和已学会的招\n式中第一个招式相同的属性", - }, - "triAttack": { - name: "三重攻击", - effect: "用3种光线进行攻击。\n有时会让对手陷入麻痹、\n灼伤或冰冻的状态", - }, - "superFang": { - name: "愤怒门牙", - effect: "用锋利的门牙猛烈地咬住对手进行攻击。\n对手的HP减半", - }, - "slash": { - name: "劈开", - effect: "用爪子或镰刀等劈开对手进行攻击。\n容易击中要害", - }, - "substitute": { - name: "替身", - effect: "削减少许自己的HP,\n制造分身。分身将成为自己的替身", - }, - "struggle": { - name: "挣扎", - effect: "当自己的PP耗尽时,\n努力挣扎攻击对手。\n自己也会受到少许伤害", - }, - "sketch": { - name: "写生", - effect: "将对手使用的招式变成自己的招式。\n使用1次后写生消失", - }, - "tripleKick": { - name: "三连踢", - effect: "连续3次踢对手进行攻击。\n每踢中一次,威力就会提高", - }, - "thief": { - name: "小偷", - effect: "攻击的同时盗取对手的道具。", - }, - "spiderWeb": { - name: "蛛网", - effect: "将黏糊糊的细丝一层一层缠住对手,\n使其不能从战斗中逃走", - }, - "mindReader": { - name: "心之眼", - effect: "用心感受对手的行动,\n下次攻击必定会击中对手", - }, - "nightmare": { - name: "恶梦", - effect: "让在睡眠状态下的对手做恶梦,\n每回合会缓缓减少HP", - }, - "flameWheel": { - name: "火焰轮", - effect: "让火焰覆盖全身,猛撞向对手进行攻击。\n有时会让对手陷入灼伤状态", - }, - "snore": { - name: "打鼾", - effect: "在自己睡觉时,发出噪音进行攻击。\n有时会使对手畏缩", - }, - "curse": { - name: "诅咒", - effect: "使用该招式的宝可梦,\n其属性是幽灵属性或其他属性时,\n效果会不一样", - }, - "flail": { - name: "抓狂", - effect: "抓狂般乱打进行攻击。\n自己的HP越少,招式的威力越大", - }, - "conversion2": { - name: "纹理2", - effect: "为了可以抵抗对手最后使用的招式,\n从而使自己的属性发生变化", - }, - "aeroblast": { - name: "气旋攻击", - effect: "发射空气旋涡进行攻击。\n容易击中要害", - }, - "cottonSpore": { - name: "棉孢子", - effect: "将棉花般柔软的孢子紧贴对手,\n从而大幅降低对手的速度", - }, - "reversal": { - name: "绝处逢生", - effect: "竭尽全力进行攻击。自己的HP越少,\n招式的威力越大", - }, - "spite": { - name: "怨恨", - effect: "对对手最后使用的招式怀有怨恨,\n减少4PP该招式", - }, - "powderSnow": { - name: "细雪", - effect: "将冰冷的细雪吹向对手进行攻击。\n有时会让对手陷入冰冻状态", - }, - "protect": { - name: "守住", - effect: "完全抵挡对手的攻击。\n连续使出则容易失败", - }, - "machPunch": { - name: "音速拳", - effect: "以迅雷不及掩耳之势出拳。\n必定能够先制攻击", - }, - "scaryFace": { - name: "可怕面孔", - effect: "用恐怖的表情瞪着对手,\n使其害怕,从而大幅降低对手的速度", - }, - "feintAttack": { - name: "出奇一击", - effect: "悄悄地靠近对手,趁其不备进行殴打。\n攻击必定会命中", - }, - "sweetKiss": { - name: "天使之吻", - effect: "像天使般可爱地亲吻对手,\n从而使对手混乱", - }, - "bellyDrum": { - name: "腹鼓", - effect: "将自己的HP减少到最大HP的一半,\n从而最大限度提高自己的攻击", - }, - "sludgeBomb": { - name: "污泥炸弹", - effect: "用污泥投掷对手进行攻击。\n有时会让对手陷入中毒状态", - }, - "mudSlap": { - name: "掷泥", - effect: "向对手的脸等投掷泥块进行攻击。\n会降低对手的命中率", - }, - "octazooka": { - name: "章鱼桶炮", - effect: "向对手的脸等喷出墨汁进行攻击。\n有时会降低对手的命中率", - }, - "spikes": { - name: "撒菱", - effect: "在对手的脚下扔撒菱。\n对替换出场的对手的宝可梦给予伤害", - }, - "zapCannon": { - name: "电磁炮", - effect: "发射大炮一样的电流进行攻击。\n让对手陷入麻痹状态", - }, - "foresight": { - name: "识破", - effect: "使出后对幽灵属性宝可梦没有效果\n的招式以及闪避率高的对手,\n变得能够打中", - }, - "destinyBond": { - name: "同命", - effect: "使出招式后,当受到对手攻击\n陷入昏厥时,对手也会一同昏厥。\n连续使出则会失败", - }, - "perishSong": { - name: "终焉之歌", - effect: "倾听歌声的宝可梦经过3回合陷入昏厥。\n替换后效果消失", - }, - "icyWind": { - name: "冰冻之风", - effect: "将结冰的冷气吹向对手进行攻击。\n会降低对手的速度", - }, - "detect": { - name: "看穿", - effect: "完全抵挡对手的攻击。\n连续使出则容易失败", - }, - "boneRush": { - name: "骨棒乱打", - effect: "用坚硬的骨头殴打对手进行攻击。\n连续攻击2~5次", - }, - "lockOn": { - name: "锁定", - effect: "紧紧瞄准对手,下次攻击必定会打中", - }, - "outrage": { - name: "逆鳞", - effect: "在2~3回合内,乱打一气地进行攻击。\n大闹一番后自己会陷入混乱", - }, - "sandstorm": { - name: "沙暴", - effect: "在5回合内扬起沙暴,\n除岩石、地面和钢属性以外的宝可梦,\n都会受到伤害。岩石属性的特防还会提高", - }, - "gigaDrain": { - name: "终极吸取", - effect: "吸取对手的养分进行攻击。\n可以回复给予对手伤害的一半HP", - }, - "endure": { - name: "挺住", - effect: "即使受到攻击,也至少会留下1HP。\n连续使出则容易失败", - }, - "charm": { - name: "撒娇", - effect: "可爱地凝视,诱使对手疏忽大意,\n从而大幅降低对手的攻击", - }, - "rollout": { - name: "滚动", - effect: "在5回合内连续滚动攻击对手。\n招式每次击中,威力就会提高", - }, - "falseSwipe": { - name: "点到为止", - effect: "对手的HP至少会留下1HP,\n如此般手下留情地攻击", - }, - "swagger": { - name: "虚张声势", - effect: "激怒对手,使其混乱。\n因为愤怒,对手的攻击会大幅提高", - }, - "milkDrink": { - name: "喝牛奶", - effect: "回复自己最大HP的一半", - }, - "spark": { - name: "电光", - effect: "让电流覆盖全身,猛撞向对手进行攻击。\n有时会让对手陷入麻痹状态", - }, - "furyCutter": { - name: "连斩", - effect: "用镰刀或爪子等切斩对手进行攻击。\n连续击中,威力就会提高", - }, - "steelWing": { - name: "钢翼", - effect: "用坚硬的翅膀敲打对手进行攻击。\n有时会提高自己的防御", - }, - "meanLook": { - name: "黑色目光", - effect: "用好似要勾人心魂的黑色目光一动\n不动地凝视对手,使其不能从战斗中逃走", - }, - "attract": { - name: "迷人", - effect: "♂诱惑♀或♀诱惑♂,让对手着迷。\n对手将很难使出招式", - }, - "sleepTalk": { - name: "梦话", - effect: "从自己已学会的招式中任意使出1个。\n只能在自己睡觉时使用", - }, - "healBell": { - name: "治愈铃声", - effect: "让同伴听舒适的铃音,\n从而治愈我方全员的异常状态", - }, - "return": { - name: "报恩", - effect: "为了训练家而全力攻击对手。\n亲密度越高,威力越大", - }, - "present": { - name: "礼物", - effect: "递给对手设有圈套的盒子进行攻击。\n也有可能回复对手HP", - }, - "frustration": { - name: "迁怒", - effect: "为了发泄不满而全力攻击对手。\n亲密度越低,威力越大", - }, - "safeguard": { - name: "神秘守护", - effect: "在5回合内被神奇的力量守护,\n从而不会陷入异常状态", - }, - "painSplit": { - name: "分担痛楚", - effect: "将自己的HP和对手的HP相加,\n然后自己和对手友好地平分", - }, - "sacredFire": { - name: "神圣之火", - effect: "用神秘的火焰烧尽对手进行攻击。\n有时会让对手陷入灼伤状态", - }, - "magnitude": { - name: "震级", - effect: "晃动地面,攻击自己周围所有的宝可梦。\n招式的威力会有各种变化", - }, - "dynamicPunch": { - name: "爆裂拳", - effect: "使出浑身力气出拳进行攻击。\n必定会使对手混乱", - }, - "megahorn": { - name: "超级角击", - effect: "用坚硬且华丽的角狠狠地刺入对手\n进行攻击", - }, - "dragonBreath": { - name: "龙息", - effect: "将强烈的气息吹向对手进行攻击。\n有时会让对手陷入麻痹状态", - }, - "batonPass": { - name: "接棒", - effect: "和后备宝可梦进行替换。\n换上的宝可梦能直接继承其能力的变化", - }, - "encore": { - name: "再来一次", - effect: "让对手接受再来一次,\n连续3次使出最后使用的招式", - }, - "pursuit": { - name: "追打", - effect: "当对手替换宝可梦上场时\n使出此招式的话,\n能够以2倍的威力进行攻击", - }, - "rapidSpin": { - name: "高速旋转", - effect: "通过旋转来攻击对手。\n可以摆脱绑紧、紧束、寄生种子等招式。\n还能提高自己的速度", - }, - "sweetScent": { - name: "甜甜香气", - effect: "用香气大幅降低对手的闪避率", - }, - "ironTail": { - name: "铁尾", - effect: "使用坚硬的尾巴摔打对手进行攻击。\n有时会降低对手的防御", - }, - "metalClaw": { - name: "金属爪", - effect: "用钢铁之爪劈开对手进行攻击。\n有时会提高自己的攻击", - }, - "vitalThrow": { - name: "借力摔", - effect: "会在对手之后进行攻击。\n但是自己的攻击必定会命中", - }, - "morningSun": { - name: "晨光", - effect: "回复自己的HP。根据天气的不同,\n回复量也会有所变化", - }, - "synthesis": { - name: "光合作用", - effect: "回复自己的HP。根据天气的不同,\n回复量也会有所变化", - }, - "moonlight": { - name: "月光", - effect: "回复自己的HP。根据天气的不同,\n回复量也会有所变化", - }, - "hiddenPower": { - name: "觉醒力量", - effect: "招式的属性会随着使用此招式的宝\n可梦而改变", - }, - "crossChop": { - name: "十字劈", - effect: "用两手呈十字劈打对手进行攻击。\n容易击中要害", - }, - "twister": { - name: "龙卷风", - effect: "兴起龙卷风,将对手卷入进行攻击。\n有时会使对手畏缩", - }, - "rainDance": { - name: "求雨", - effect: "在5回合内一直降雨,\n从而提高水属性的招式威力。\n火属性的招式威力则降低", - }, - "sunnyDay": { - name: "大晴天", - effect: "在5回合内让日照变得强烈,\n从而提高火属性的招式威力。\n水属性的招式威力则降低", - }, - "crunch": { - name: "咬碎", - effect: "用利牙咬碎对手进行攻击。\n有时会降低对手的防御", - }, - "mirrorCoat": { - name: "镜面反射", - effect: "从对手那里受到特殊攻击的伤害将\n以2倍返还给同一个对手", - }, - "psychUp": { - name: "自我暗示", - effect: "向自己施以自我暗示,\n将能力变化的状态变得和对手一样", - }, - "extremeSpeed": { - name: "神速", - effect: "以迅雷不及掩耳之势猛\n撞向对手进行攻击。\n必定能够先制攻击", - }, - "ancientPower": { - name: "原始之力", - effect: "用原始之力进行攻击。\n有时会提高自己所有的能力", - }, - "shadowBall": { - name: "暗影球", - effect: "投掷一团黑影进行攻击。\n有时会降低对手的特防", - }, - "futureSight": { - name: "预知未来", - effect: "在使用招式2回合后,\n向对手发送一团念力进行攻击", - }, - "rockSmash": { - name: "碎岩", - effect: "用拳头进行攻击。有时会降低对手的防御", - }, - "whirlpool": { - name: "潮旋", - effect: "将对手困在激烈的水流旋涡中,\n在4~5回合内进行攻击", - }, - "beatUp": { - name: "围攻", - effect: "我方全员进行攻击。同行的宝可梦越多,\n招式的攻击次数越多", - }, - "fakeOut": { - name: "击掌奇袭", - effect: "进行先制攻击,使对手畏缩。\n要在出场后立刻使出才能成功", - }, - "uproar": { - name: "吵闹", - effect: "在3回合内大吵大闹攻击对手。\n在此期间谁都不能入眠", - }, - "stockpile": { - name: "蓄力", - effect: "积蓄力量,提高自己的防御和特防。\n最多积蓄3次", - }, - "spitUp": { - name: "喷出", - effect: "将积蓄的力量撞向对手进行攻击。\n积蓄得越多,威力越大", - }, - "swallow": { - name: "吞下", - effect: "将积蓄的力量吞下,\n从而回复自己的HP。\n积蓄得越多,回复越大", - }, - "heatWave": { - name: "热风", - effect: "将炎热的气息吹向对手进行攻击。\n有时会让对手陷入灼伤状态", - }, - "hail": { - name: "冰雹", - effect: "在5回合内一直降冰雹,\n除冰属性的宝可梦以外,\n给予全体宝可梦伤害", - }, - "torment": { - name: "无理取闹", - effect: "向对手无理取闹,令其不能连续2\n次使出相同招式", - }, - "flatter": { - name: "吹捧", - effect: "吹捧对手,使其混乱。\n同时还会提高对手的特攻", - }, - "willOWisp": { - name: "磷火", - effect: "放出怪异的火焰,从而让对手陷入\n灼伤状态", - }, - "memento": { - name: "临别礼物", - effect: "虽然会使自己陷入昏厥,\n但是能够大幅降低对手的攻击和特攻", - }, - "facade": { - name: "硬撑", - effect: "当自己处于中毒、麻痹、灼伤状态时,\n向对手使出此招式的话,\n威力会变成2倍", - }, - "focusPunch": { - name: "真气拳", - effect: "集中精神出拳。在招式使出前若受\n到攻击则会失败", - }, - "smellingSalts": { - name: "清醒", - effect: "对于麻痹状态下的对手,\n威力会变成2倍。\n但相反对手的麻痹也会被治愈", - }, - "followMe": { - name: "看我嘛", - effect: "引起对手的注意,将对手的攻击全\n部转移到自己身上", - }, - "naturePower": { - name: "自然之力", - effect: "用自然之力进行攻击。\n根据所使用场所的不同,\n使出的招式也会有所变化", - }, - "charge": { - name: "充电", - effect: "变为充电状态,提高下次使出的电\n属性的招式威力。自己的特防也会提高", - }, - "taunt": { - name: "挑衅", - effect: "使对手愤怒。在3回合内让对手只\n能使出给予伤害的招式", - }, - "helpingHand": { - name: "帮助", - effect: "帮助伙伴。被帮助的宝可梦,\n其招式威力变得比平时大", - }, - "trick": { - name: "戏法", - effect: "抓住对手的空隙,交换自己和对手\n的持有物", - }, - "rolePlay": { - name: "扮演", - effect: "扮演对手,让自己的特性变得和对手相同", - }, - "wish": { - name: "祈愿", - effect: "在下一回合回复自己或是替换出场\n的宝可梦最大HP的一半", - }, - "assist": { - name: "借助", - effect: "向同伴紧急求助,从我方宝可梦已\n学会的招式中随机使用1个", - }, - "ingrain": { - name: "扎根", - effect: "在大地上扎根,每回合回复自己的HP。\n因为扎根了,所以不能替换宝可梦", - }, - "superpower": { - name: "蛮力", - effect: "发挥惊人的力量攻击对手。\n自己的攻击和防御会降低", - }, - "magicCoat": { - name: "魔法反射", - effect: "当对手使出会变成异常状态的招式\n或寄生种子等时,会将对手的招式\n反射回去", - }, - "recycle": { - name: "回收利用", - effect: "使战斗中已经消耗掉的\n自己的持有物再生,\n并可以再次使用", - }, - "revenge": { - name: "报复", - effect: "如果受到对手的招式攻击,\n就能给予对手2倍的伤害", - }, - "brickBreak": { - name: "劈瓦", - effect: "将手刀猛烈地挥下攻击对手。\n还可以破坏光墙和反射壁等", - }, - "yawn": { - name: "哈欠", - effect: "打个大哈欠引起睡意。\n在下一回合让对手陷入睡眠状态", - }, - "knockOff": { - name: "拍落", - effect: "拍落对手的持有物,直到战斗结束\n都不能使用。对手携带道具时会增加伤害", - }, - "endeavor": { - name: "蛮干", - effect: "给予伤害,使对手的HP变得和自\n己的HP一样", - }, - "eruption": { - name: "喷火", - effect: "爆发怒火攻击对手。自己的HP越少,\n招式的威力越小", - }, - "skillSwap": { - name: "特性互换", - effect: "利用超能力互换自己和对手的特性", - }, - "imprison": { - name: "封印", - effect: "如果对手有和自己相同的招式,\n那么只有对手无法使用该招式", - }, - "refresh": { - name: "焕然一新", - effect: "让身体休息,治愈自己身上所中的\n毒、麻痹、灼伤的异常状态", - }, - "grudge": { - name: "怨念", - effect: "因对手的招式而陷入昏厥时给对手\n施加怨念,让该招式的PP变成0", - }, - "snatch": { - name: "抢夺", - effect: "将对手打算使用的回复招式或能力\n变化招式夺为己用", - }, - "secretPower": { - name: "秘密之力", - effect: "根据使用场所不同,该招式的追加\n效果也会有所变化", - }, - "dive": { - name: "潜水", - effect: "第1回合潜入水中,第2回合浮上\n来进行攻击", - }, - "armThrust": { - name: "猛推", - effect: "用张开着的双手猛推对手进行攻击。\n连续攻击2~5次", - }, - "camouflage": { - name: "保护色", - effect: "根据所在场所不同,如水边、草丛\n和洞窟等,可以改变自己的属性", - }, - "tailGlow": { - name: "萤火", - effect: "凝视闪烁的光芒,集中自己的精神,\n从而巨幅提高特攻", - }, - "lusterPurge": { - name: "洁净光芒", - effect: "释放耀眼的光芒进行攻击。\n有时会降低对手的特防", - }, - "mistBall": { - name: "薄雾球", - effect: "用围绕着雾状羽毛的球进行攻击。\n有时会降低对手的特攻", - }, - "featherDance": { - name: "羽毛舞", - effect: "撒出羽毛,笼罩在对手的周围。\n大幅降低对手的攻击", - }, - "teeterDance": { - name: "摇晃舞", - effect: "摇摇晃晃地跳起舞蹈,\n让自己周围的宝可梦陷入混乱状态", - }, - "blazeKick": { - name: "火焰踢", - effect: "攻击对手后,有时会使其陷入灼伤状态。\n也容易击中要害", - }, - "mudSport": { - name: "玩泥巴", - effect: "一旦使用此招式,\n周围就会弄得到处是泥。\n在5回合内减弱电属性的招式", - }, - "iceBall": { - name: "冰球", - effect: "在5回合内攻击对手。\n招式每次击中,威力就会提高", - }, - "needleArm": { - name: "尖刺臂", - effect: "用带刺的手臂猛烈地挥舞进行攻击。\n有时会使对手畏缩", - }, - "slackOff": { - name: "偷懒", - effect: "偷懒休息。回复自己最大HP的一半", - }, - "hyperVoice": { - name: "巨声", - effect: "给予对手又吵又响的巨大震动进行攻击", - }, - "poisonFang": { - name: "剧毒牙", - effect: "用有毒的牙齿咬住对手进行攻击。\n有时会使对手中剧毒", - }, - "crushClaw": { - name: "撕裂爪", - effect: "用坚硬的锐爪劈开对手进行攻击。\n有时会降低对手的防御", - }, - "blastBurn": { - name: "爆炸烈焰", - effect: "用爆炸的火焰烧尽对手进行攻击。\n下一回合自己将无法动弹", - }, - "hydroCannon": { - name: "加农水炮", - effect: "向对手喷射水炮进行攻击。\n下一回合自己将无法动弹", - }, - "meteorMash": { - name: "彗星拳", - effect: "使出彗星般的拳头攻击对手。\n有时会提高自己的攻击", - }, - "astonish": { - name: "惊吓", - effect: "用尖叫声等突然惊吓对手进行攻击。\n有时会使对手畏缩", - }, - "weatherBall": { - name: "气象球", - effect: "根据使用时的天气,招式属性和威\n力会改变", - }, - "aromatherapy": { - name: "芳香治疗", - effect: "让同伴闻沁人心脾的香气,\n从而治愈我方全员的异常状态", - }, - "fakeTears": { - name: "假哭", - effect: "装哭流泪。使对手不知所措,\n从而大幅降低对手的特防", - }, - "airCutter": { - name: "空气利刃", - effect: "用锐利的风切斩对手进行攻击。\n容易击中要害", - }, - "overheat": { - name: "过热", - effect: "使出全部力量攻击对手。\n使用之后会因为反作用力,\n自己的特攻大幅降低", - }, - "odorSleuth": { - name: "气味侦测", - effect: "使出后对幽灵属性宝可梦没有效果\n的招式以及闪避率高的对手,\n变得能够打中", - }, - "rockTomb": { - name: "岩石封锁", - effect: "投掷岩石进行攻击。封住对手的行动,\n从而降低速度", - }, - "silverWind": { - name: "银色旋风", - effect: "在风中掺入鳞粉攻击对手。\n有时会提高自己的全部能力", - }, - "metalSound": { - name: "金属音", - effect: "让对手听摩擦金属般讨厌的声音。\n大幅降低对手的特防", - }, - "grassWhistle": { - name: "草笛", - effect: "让对手听舒适的笛声,\n从而陷入睡眠状态", - }, - "tickle": { - name: "挠痒", - effect: "给对手挠痒,使其发笑,\n从而降低对手的攻击和防御", - }, - "cosmicPower": { - name: "宇宙力量", - effect: "汲取宇宙中神秘的力量,\n从而提高自己的防御和特防", - }, - "waterSpout": { - name: "喷水", - effect: "掀起潮水进行攻击。自己的HP越少,\n招式的威力越小", - }, - "signalBeam": { - name: "信号光束", - effect: "发射神奇的光线进行攻击。\n有时会使对手混乱", - }, - "shadowPunch": { - name: "暗影拳", - effect: "使出混影之拳。攻击必定会命中", - }, - "extrasensory": { - name: "神通力", - effect: "发出看不见的神奇力量进行攻击。\n有时会使对手畏缩", - }, - "skyUppercut": { - name: "冲天拳", - effect: "用冲向天空般高高的上勾拳顶起对\n手进行攻击", - }, - "sandTomb": { - name: "流沙深渊", - effect: "将对手困在铺天盖地的沙暴中,\n在4~5回合内进行攻击", - }, - "sheerCold": { - name: "绝对零度", - effect: "给对手一击昏厥。如果是冰属性以\n外的宝可梦使用,就会难以打中", - }, - "muddyWater": { - name: "浊流", - effect: "向对手喷射浑浊的水进行攻击。\n有时会降低对手的命中率", - }, - "bulletSeed": { - name: "种子机关枪", - effect: "向对手猛烈地发射种子进行攻击。\n连续攻击2~5次", - }, - "aerialAce": { - name: "燕返", - effect: "以敏捷的动作戏弄对手后进行切斩。\n攻击必定会命中", - }, - "icicleSpear": { - name: "冰锥", - effect: "向对手发射锋利的冰柱进行攻击。\n连续攻击2~5次", - }, - "ironDefense": { - name: "铁壁", - effect: "将皮肤变得坚硬如铁,\n从而大幅提高自己的防御", - }, - "block": { - name: "挡路", - effect: "张开双手进行阻挡,封住对手的退路,\n使其不能逃走", - }, - "howl": { - name: "长嚎", - effect: "大声吼叫提高气势,从而提高自己\n和同伴的攻击", - }, - "dragonClaw": { - name: "龙爪", - effect: "用尖锐的巨爪劈开对手进行攻击", - }, - "frenzyPlant": { - name: "疯狂植物", - effect: "用大树摔打对手进行攻击。\n下一回合自己将无法动弹", - }, - "bulkUp": { - name: "健美", - effect: "使出全身力气绷紧肌肉,\n从而提高自己的攻击和防御", - }, - "bounce": { - name: "弹跳", - effect: "弹跳到高高的空中,第2回合攻击对手。\n有时会让对手陷入麻痹状态", - }, - "mudShot": { - name: "泥巴射击", - effect: "向对手投掷泥块进行攻击。\n同时降低对手的速度", - }, - "poisonTail": { - name: "毒尾", - effect: "用尾巴拍打。\n有时会让对手陷入中毒状态,\n也容易击中要害", - }, - "covet": { - name: "渴望", - effect: "一边可爱地撒娇,\n一边靠近对手进行攻击,\n还能夺取对手携带的道具", - }, - "voltTackle": { - name: "伏特攻击", - effect: "让电流覆盖全身猛撞向对手。\n自己也会受到不小的伤害。\n有时会让对手陷入麻痹状态", - }, - "magicalLeaf": { - name: "魔法叶", - effect: "散落可以追踪对手的神奇叶片。\n攻击必定会命中", - }, - "waterSport": { - name: "玩水", - effect: "用水湿透周围。在5回合内减弱火\n属性的招式", - }, - "calmMind": { - name: "冥想", - effect: "静心凝神,从而提高自己的特攻和特防", - }, - "leafBlade": { - name: "叶刃", - effect: "像用剑一般操纵叶片切斩对手进行攻击。\n容易击中要害", - }, - "dragonDance": { - name: "龙之舞", - effect: "激烈地跳起神秘且强有力的舞蹈。\n从而提高自己的攻击和速度", - }, - "rockBlast": { - name: "岩石爆击", - effect: "向对手发射坚硬的岩石进行攻击。\n连续攻击2~5次", - }, - "shockWave": { - name: "电击波", - effect: "向对手快速发出电击。\n攻击必定会命中", - }, - "waterPulse": { - name: "水之波动", - effect: "用水的震动攻击对手。\n有时会使对手混乱", - }, - "doomDesire": { - name: "破灭之愿", - effect: "使用招式2回合后,会用无数道光\n束攻击对手", - }, - "psychoBoost": { - name: "精神突进", - effect: "使出全部力量攻击对手。\n使用之后会因为反作用力,\n自己的特攻大幅降低", - }, - "roost": { - name: "羽栖", - effect: "降到地面,使身体休息。\n回复自己最大HP的一半", - }, - "gravity": { - name: "重力", - effect: "在5回合内,飘浮特性和飞行属性\n的宝可梦会被地面属性的招式击中。\n飞向空中的招式也将无法使用", - }, - "miracleEye": { - name: "奇迹之眼", - effect: "使出后对恶属性宝可梦没有效果的\n招式以及闪避率高的对手,\n变得能够打中", - }, - "wakeUpSlap": { - name: "唤醒巴掌", - effect: "给予睡眠状态下的对手较大的伤害。\n但相反对手会从睡眠中醒过来", - }, - "hammerArm": { - name: "臂锤", - effect: "挥舞强力而沉重的拳头,\n给予对手伤害。自己的速度会降低", - }, - "gyroBall": { - name: "陀螺球", - effect: "让身体高速旋转并撞击对手。\n速度比对手越慢,威力越大", - }, - "healingWish": { - name: "治愈之愿", - effect: "虽然自己陷入昏厥,但可以治愈后\n备上场的宝可梦的异常状态以及回复HP", - }, - "brine": { - name: "盐水", - effect: "当对手的HP负伤到一半左右时,\n招式威力会变成2倍", - }, - "naturalGift": { - name: "自然之恩", - effect: "从树果上获得力量进行攻击。\n根据携带的树果,招式属性和威力会改变", - }, - "feint": { - name: "佯攻", - effect: "能够攻击正在使用守住或看穿等招\n式的对手。解除其守护效果", - }, - "pluck": { - name: "啄食", - effect: "用喙进行攻击。当对手携带树果时,\n可以食用并获得其效果", - }, - "tailwind": { - name: "顺风", - effect: "刮起猛烈的旋风,在4回合内提高\n我方全员的速度", - }, - "acupressure": { - name: "点穴", - effect: "通过点穴让身体舒筋活络。\n大幅提高某1项能力", - }, - "metalBurst": { - name: "金属爆炸", - effect: "使出招式前,将最后受到的招式的\n伤害大力返还给对手", - }, - "uTurn": { - name: "急速折返", - effect: "在攻击之后急速返回,\n和后备宝可梦进行替换", - }, - "closeCombat": { - name: "近身战", - effect: "放弃守护,向对手的怀里突击。\n自己的防御和特防会降低", - }, - "payback": { - name: "以牙还牙", - effect: "蓄力攻击。如果能在对手之后攻击,\n招式的威力会变成2倍", - }, - "assurance": { - name: "恶意追击", - effect: "如果此回合内对手已经受到伤害的话,\n招式威力会变成2倍", - }, - "embargo": { - name: "查封", - effect: "让对手在5回合内不能使用宝可梦\n携带的道具。训练家也不能给那只\n宝可梦使用道具", - }, - "fling": { - name: "投掷", - effect: "快速投掷携带的道具进行攻击。\n根据道具不同,威力和效果会改变", - }, - "psychoShift": { - name: "精神转移", - effect: "利用超能力施以暗示,\n从而将自己受到的异常状态转移给对手", - }, - "trumpCard": { - name: "王牌", - effect: "王牌招式的剩余PP越少,\n招式的威力越大", - }, - "healBlock": { - name: "回复封锁", - effect: "在5回合内无法通过招式、特性或\n携带的道具来回复HP", - }, - "wringOut": { - name: "绞紧", - effect: "用力勒紧对手进行攻击。\n对手的HP越多,威力越大", - }, - "powerTrick": { - name: "力量戏法", - effect: "利用超能力交换自己的攻击和防御的力量", - }, - "gastroAcid": { - name: "胃液", - effect: "将胃液吐向对手的身体。\n沾上的胃液会消除对手的特性效果", - }, - "luckyChant": { - name: "幸运咒语", - effect: "向天许愿,从而在5回合内不会被\n对手的攻击打中要害", - }, - "meFirst": { - name: "抢先一步", - effect: "提高威力,\n抢先使出对手想要使出的招式。\n如果不先使出则会失败", - }, - "copycat": { - name: "仿效", - effect: "模仿对手刚才使出的招式,\n并使出相同招式。\n如果对手还没出招则会失败", - }, - "powerSwap": { - name: "力量互换", - effect: "利用超能力互换自己和对手的攻击\n以及特攻的能力变化", - }, - "guardSwap": { - name: "防守互换", - effect: "利用超能力互换自己和对手的防御\n以及特防的能力变化", - }, - "punishment": { - name: "惩罚", - effect: "根据能力变化,对手提高的力量越大,\n招式的威力越大", - }, - "lastResort": { - name: "珍藏", - effect: "当战斗中已学会的招式全部使用过后,\n才能开始使出珍藏的招式", - }, - "worrySeed": { - name: "烦恼种子", - effect: "种植心神不宁的种子。\n使对手不能入眠,并将特性变成不眠", - }, - "suckerPunch": { - name: "突袭", - effect: "可以比对手先攻击。对手使出的招\n式如果不是攻击招式则会失败", - }, - "toxicSpikes": { - name: "毒菱", - effect: "在对手的脚下撒毒菱。\n使对手替换出场的宝可梦中毒", - }, - "heartSwap": { - name: "心灵互换", - effect: "利用超能力互换自己和对手之间的\n能力变化", - }, - "aquaRing": { - name: "水流环", - effect: "在自己身体的周围覆盖用水制造的幕。\n每回合回复HP", - }, - "magnetRise": { - name: "电磁飘浮", - effect: "利用电气产生的磁力浮在空中。\n在5回合内可以飘浮", - }, - "flareBlitz": { - name: "闪焰冲锋", - effect: "让火焰覆盖全身猛撞向对手。\n自己也会受到不小的伤害。\n有时会让对手陷入灼伤状态", - }, - "forcePalm": { - name: "发劲", - effect: "向对手的身体发出冲击波进行攻击。\n有时会让对手陷入麻痹状态", - }, - "auraSphere": { - name: "波导弹", - effect: "从体内产生出波导之力,\n然后向对手发出。攻击必定会命中", - }, - "rockPolish": { - name: "岩石打磨", - effect: "打磨自己的身体,减少空气阻力。\n可以大幅提高自己的速度", - }, - "poisonJab": { - name: "毒击", - effect: "用带毒的触手或手臂刺入对手。\n有时会让对手陷入中毒状态", - }, - "darkPulse": { - name: "恶之波动", - effect: "从体内发出充满恶意的恐怖气场。\n有时会使对手畏缩", - }, - "nightSlash": { - name: "暗袭要害", - effect: "抓住瞬间的空隙切斩对手。\n容易击中要害", - }, - "aquaTail": { - name: "水流尾", - effect: "如惊涛骇浪般挥动大尾巴攻击对手", - }, - "seedBomb": { - name: "种子炸弹", - effect: "将外壳坚硬的大种子,\n从上方砸下攻击对手", - }, - "airSlash": { - name: "空气之刃", - effect: "用连天空也能劈开的空气之刃进行攻击。\n有时会使对手畏缩", - }, - "xScissor": { - name: "十字剪", - effect: "将镰刀或爪子像剪刀般地交叉,\n顺势劈开对手", - }, - "bugBuzz": { - name: "虫鸣", - effect: "利用振动发出音波进行攻击。\n有时会降低对手的特防", - }, - "dragonPulse": { - name: "龙之波动", - effect: "从大大的口中掀起冲击波攻击对手", - }, - "dragonRush": { - name: "龙之俯冲", - effect: "释放出骇人的杀气,一边威慑一边\n撞击对手。有时会使对手畏缩", - }, - "powerGem": { - name: "力量宝石", - effect: "发射如宝石般闪耀的光芒攻击对手", - }, - "drainPunch": { - name: "吸取拳", - effect: "用拳头吸取对手的力量。\n可以回复给予对手伤害的一半HP", - }, - "vacuumWave": { - name: "真空波", - effect: "挥动拳头,掀起真空波。\n必定能够先制攻击", - }, - "focusBlast": { - name: "真气弹", - effect: "提高气势,释放出全部力量。\n有时会降低对手的特防", - }, - "energyBall": { - name: "能量球", - effect: "发射从自然收集的生命力量。\n有时会降低对手的特防", - }, - "braveBird": { - name: "勇鸟猛攻", - effect: "收拢翅膀,通过低空飞行突击对手。\n自己也会受到不小的伤害", - }, - "earthPower": { - name: "大地之力", - effect: "向对手脚下释放出大地之力。\n有时会降低对手的特防", - }, - "switcheroo": { - name: "掉包", - effect: "用一闪而过的速度交换自己和对手\n的持有物", - }, - "gigaImpact": { - name: "终极冲击", - effect: "使出自己浑身力量突击对手。\n下一回合自己将无法动弹", - }, - "nastyPlot": { - name: "诡计", - effect: "谋划诡计,激活头脑。\n大幅提高自己的特攻", - }, - "bulletPunch": { - name: "子弹拳", - effect: "向对手使出如子弹般快速而坚硬的拳头。\n必定能够先制攻击", - }, - "avalanche": { - name: "雪崩", - effect: "如果受到对手的招式攻击,\n就能给予该对手2倍威力的攻击", - }, - "iceShard": { - name: "冰砾", - effect: "瞬间制作冰块,快速地扔向对手。\n必定能够先制攻击", - }, - "shadowClaw": { - name: "暗影爪", - effect: "以影子做成的锐爪,劈开对手。\n容易击中要害", - }, - "thunderFang": { - name: "雷电牙", - effect: "用蓄满电流的牙齿咬住对手。\n有时会使对手畏缩或陷入麻痹状态", - }, - "iceFang": { - name: "冰冻牙", - effect: "用藏有冷气的牙齿咬住对手。\n有时会使对手畏缩或陷入冰冻状态", - }, - "fireFang": { - name: "火焰牙", - effect: "用覆盖着火焰的牙齿咬住对手。\n有时会使对手畏缩或陷入灼伤状态", - }, - "shadowSneak": { - name: "影子偷袭", - effect: "伸长影子,从对手的背后进行攻击。\n必定能够先制攻击", - }, - "mudBomb": { - name: "泥巴炸弹", - effect: "向对手发射坚硬的泥弹进行攻击。\n有时会降低对手的命中率", - }, - "psychoCut": { - name: "精神利刃", - effect: "用实体化的心之利刃劈开对手。\n容易击中要害", - }, - "zenHeadbutt": { - name: "意念头锤", - effect: "将思念的力量集中在前额进行攻击。\n有时会使对手畏缩", - }, - "mirrorShot": { - name: "镜光射击", - effect: "抛光自己的身体,\n向对手释放出闪光之力。\n有时会降低对手的命中率", - }, - "flashCannon": { - name: "加农光炮", - effect: "将身体的光芒聚集在一点释放出去。\n有时会降低对手的特防", - }, - "rockClimb": { - name: "攀岩", - effect: "发动猛撞攻击,有时会使对手混乱。\n是宝可表的秘传招式之一", - }, - "defog": { - name: "清除浓雾", - effect: "用强风吹开对手的反射壁或光墙等。\n也会降低对手的闪避率", - }, - "trickRoom": { - name: "戏法空间", - effect: "制造出离奇的空间。在5回合内速\n度慢的宝可梦可以先行动", - }, - "dracoMeteor": { - name: "流星群", - effect: "从天空中向对手落下陨石。\n使用之后因为反作用力,\n自己的特攻会大幅降低", - }, - "discharge": { - name: "放电", - effect: "用耀眼的电击攻击\n自己周围所有的宝可梦。\n有时会陷入麻痹状态", - }, - "lavaPlume": { - name: "喷烟", - effect: "用熊熊烈火攻击自己周围所有的宝可梦。\n有时会陷入灼伤状态", - }, - "leafStorm": { - name: "飞叶风暴", - effect: "用尖尖的叶片向对手卷起风暴。\n使用之后因为反作用力自己的特攻会\n大幅降低", - }, - "powerWhip": { - name: "强力鞭打", - effect: "激烈地挥舞青藤或触手摔打对手进行攻击", - }, - "rockWrecker": { - name: "岩石炮", - effect: "向对手发射巨大的岩石进行攻击。\n下一回合自己将无法动弹", - }, - "crossPoison": { - name: "十字毒刃", - effect: "用毒刃劈开对手。有时会让对手陷\n入中毒状态,也容易击中要害", - }, - "gunkShot": { - name: "垃圾射击", - effect: "用肮脏的垃圾撞向对手进行攻击。\n有时会让对手陷入中毒状态", - }, - "ironHead": { - name: "铁头", - effect: "用钢铁般坚硬的头部进行攻击。\n有时会使对手畏缩", - }, - "magnetBomb": { - name: "磁铁炸弹", - effect: "发射吸住对手的钢铁炸弹。\n攻击必定会命中", - }, - "stoneEdge": { - name: "尖石攻击", - effect: "用尖尖的岩石刺入对手进行攻击。\n容易击中要害", - }, - "captivate": { - name: "诱惑", - effect: "♂诱惑♀或♀诱惑♂,\n从而大幅降低对手的特攻", - }, - "stealthRock": { - name: "隐形岩", - effect: "将无数岩石悬浮在对手的周围,\n从而对替换出场的对手的宝可梦给予伤害", - }, - "grassKnot": { - name: "打草结", - effect: "用草缠住并绊倒对手。\n对手越重,威力越大", - }, - "chatter": { - name: "喋喋不休", - effect: "用非常烦人的,\n喋喋不休的音波攻击对手。\n使对手混乱", - }, - "judgment": { - name: "制裁光砾", - effect: "向对手放出无数的光弹。\n属性会根据自己携带的石板不同而改变", - }, - "bugBite": { - name: "虫咬", - effect: "咬住进行攻击。当对手携带树果时,\n可以食用并获得其效果", - }, - "chargeBeam": { - name: "充电光束", - effect: "向对手发射电击光束。\n由于蓄满电流,有时会提高自己的特攻", - }, - "woodHammer": { - name: "木槌", - effect: "用坚硬的躯体撞击对手进行攻击。\n自己也会受到不小的伤害", - }, - "aquaJet": { - name: "水流喷射", - effect: "以迅雷不及掩耳之势扑向对手。\n必定能够先制攻击", - }, - "attackOrder": { - name: "攻击指令", - effect: "召唤手下,让其朝对手发起攻击。\n容易击中要害", - }, - "defendOrder": { - name: "防御指令", - effect: "召唤手下,让其附在自己的身体上。\n可以提高自己的防御和特防", - }, - "healOrder": { - name: "回复指令", - effect: "召唤手下疗伤。回复自己最大HP的一半", - }, - "headSmash": { - name: "双刃头锤", - effect: "拼命使出浑身力气,\n向对手进行头锤攻击。\n自己也会受到非常大的伤害", - }, - "doubleHit": { - name: "二连击", - effect: "使用尾巴等拍打对手进行攻击。\n连续2次给予伤害", - }, - "roarOfTime": { - name: "时光咆哮", - effect: "释放出扭曲时间般的强大力量攻击对手。\n下一回合自己将无法动弹", - }, - "spacialRend": { - name: "亚空裂斩", - effect: "将对手连同周围的空间一起撕裂并\n给予伤害。容易击中要害", - }, - "lunarDance": { - name: "新月舞", - effect: "虽然自己陷入昏厥,但可以治愈后\n备上场的宝可梦的全部状态", - }, - "crushGrip": { - name: "捏碎", - effect: "用骇人的力量捏碎对手。\n对手剩余的HP越多,威力越大", - }, - "magmaStorm": { - name: "熔岩风暴", - effect: "将对手困在熊熊燃烧的火焰中,\n在4~5回合内进行攻击", - }, - "darkVoid": { - name: "暗黑洞", - effect: "将对手强制拖入黑暗的世界,\n从而让对手陷入睡眠状态", - }, - "seedFlare": { - name: "种子闪光", - effect: "从身体里产生冲击波。\n有时会大幅降低对手的特防", - }, - "ominousWind": { - name: "奇异之风", - effect: "突然刮起毛骨悚然的暴风攻击对手。\n有时会提高自己的全部能力", - }, - "shadowForce": { - name: "暗影潜袭", - effect: "第1回合消失踪影,第2回合攻击对手。\n即使对手正受保护,\n也能击中", - }, - "honeClaws": { - name: "磨爪", - effect: "将爪子磨得更加锋利。\n提高自己的攻击和命中率", - }, - "wideGuard": { - name: "广域防守", - effect: "在1回合内防住击打我方全员的攻击", - }, - "guardSplit": { - name: "防守平分", - effect: "利用超能力将自己和对手的防御和\n特防相加,再进行平分", - }, - "powerSplit": { - name: "力量平分", - effect: "利用超能力将自己和对手的攻击和\n特攻相加,再进行平分", - }, - "wonderRoom": { - name: "奇妙空间", - effect: "制造出离奇的空间。在5回合内互\n换所有宝可梦的防御和特防", - }, - "psyshock": { - name: "精神冲击", - effect: "将神奇的念波实体化攻击对手。\n给予物理伤害", - }, - "venoshock": { - name: "毒液冲击", - effect: "将特殊的毒液泼向对手。\n对处于中毒状态的对手,威力会变成2倍", - }, - "autotomize": { - name: "身体轻量化", - effect: "削掉身体上没用的部分。\n大幅提高自己的速度,同时体重也会变轻", - }, - "ragePowder": { - name: "愤怒粉", - effect: "将令人烦躁的粉末撒在自己身上,\n用以吸引对手的注意。\n使对手的攻击全部指向自己", - }, - "telekinesis": { - name: "意念移物", - effect: "利用超能力使对手浮起来。\n在3回合内攻击会变得容易打中对手", - }, - "magicRoom": { - name: "魔法空间", - effect: "制造出离奇的空间。在5回合内所\n有宝可梦携带道具的效果都会消失", - }, - "smackDown": { - name: "击落", - effect: "扔石头或炮弹,攻击飞行的对手。\n对手会被击落,掉到地面", - }, - "stormThrow": { - name: "山岚摔", - effect: "向对手使出强烈的一击。\n攻击必定会击中要害", - }, - "flameBurst": { - name: "烈焰溅射", - effect: "如果击中,爆裂的火焰会攻击到对手。\n爆裂出的火焰还会飞溅到旁边的对手", - }, - "sludgeWave": { - name: "污泥波", - effect: "用污泥波攻击自己周围所有的宝可梦。\n有时会陷入中毒状态", - }, - "quiverDance": { - name: "蝶舞", - effect: "轻巧地跳起神秘而又美丽的舞蹈。\n提高自己的特攻、特防和速度", - }, - "heavySlam": { - name: "重磅冲撞", - effect: "用沉重的身体撞向对手进行攻击。\n自己比对手越重,威力越大", - }, - "synchronoise": { - name: "同步干扰", - effect: "用神奇电波对周围所有和自己属性\n相同的宝可梦给予伤害", - }, - "electroBall": { - name: "电球", - effect: "用电气团撞向对手。\n自己比对手速度越快,\n威力越大", - }, - "soak": { - name: "浸水", - effect: "将大量的水泼向对手,\n从而使其变成水属性", - }, - "flameCharge": { - name: "蓄能焰袭", - effect: "让火焰覆盖全身,攻击对手。\n积蓄力量来提高自己的速度", - }, - "coil": { - name: "盘蜷", - effect: "盘蜷着集中精神。提高自己的攻击\n、防御和命中率", - }, - "lowSweep": { - name: "下盘踢", - effect: "以敏捷的动作瞄准对手的脚进行攻击。\n会降低对手的速度", - }, - "acidSpray": { - name: "酸液炸弹", - effect: "喷出能溶化对手的液体进行攻击。\n会大幅降低对手的特防", - }, - "foulPlay": { - name: "欺诈", - effect: "利用对手的力量进行攻击。\n正和自己战斗的对手,其攻击越高,\n伤害越大", - }, - "simpleBeam": { - name: "单纯光束", - effect: "向对手发送谜之念波。\n接收到念波的对手,其特性会变为单纯", - }, - "entrainment": { - name: "找伙伴", - effect: "用神奇的节奏跳舞。使对手模仿自\n己的动作,从而将特性变成一样", - }, - "afterYou": { - name: "您先请", - effect: "支援我方或对手的行动,\n使其紧接着此招式之后行动", - }, - "round": { - name: "轮唱", - effect: "用歌声攻击对手。大家一起轮唱便\n可以接连使出,威力也会提高", - }, - "echoedVoice": { - name: "回声", - effect: "用回声攻击对手。如果每回合都有\n宝可梦接着使用该招式,\n威力就会提高", - }, - "chipAway": { - name: "逐步击破", - effect: "看准机会稳步攻击。\n无视对手的能力变化,\n直接给予伤害", - }, - "clearSmog": { - name: "清除之烟", - effect: "向对手投掷特殊的泥块进行攻击。\n使其能力变回原点", - }, - "storedPower": { - name: "辅助力量", - effect: "用蓄积起来的力量攻击对手。\n自己的能力提高得越多,威力就越大", - }, - "quickGuard": { - name: "快速防守", - effect: "守护自己和同伴,以防对手的先制攻击", - }, - "allySwitch": { - name: "交换场地", - effect: "用神奇的力量瞬间移动,\n互换自己和同伴所在的位置。\n连续使出则容易失败", - }, - "scald": { - name: "热水", - effect: "向对手喷射煮得翻滚的开水进行攻击。\n有时会让对手陷入灼伤状态", - }, - "shellSmash": { - name: "破壳", - effect: "打破外壳,降低自己的防御和特防,\n但大幅提高攻击、特攻和速度", - }, - "healPulse": { - name: "治愈波动", - effect: "放出治愈波动,从而回复对手最大\nHP的一半", - }, - "hex": { - name: "祸不单行", - effect: "接二连三地进行攻击。\n对处于异常状态的对手给予较大的伤害", - }, - "skyDrop": { - name: "自由落体", - effect: "第1回合将对手带到空中,\n第2回合将其摔下进行攻击。\n被带到空中的对手不能动弹", - }, - "shiftGear": { - name: "换档", - effect: "转动齿轮,不仅提高自己的攻击,\n还会大幅提高速度", - }, - "circleThrow": { - name: "巴投", - effect: "扔飞对手,强制拉后备宝可梦上场。\n如果对手为野生宝可梦,\n战斗将直接结束", - }, - "incinerate": { - name: "烧净", - effect: "用火焰攻击对手。对手携带树果等时,\n会烧掉,使其不能使用", - }, - "quash": { - name: "延后", - effect: "压制对手,从而将其行动顺序放到最后", - }, - "acrobatics": { - name: "杂技", - effect: "轻巧地攻击对手。自己没有携带道具时,\n会给予较大的伤害", - }, - "reflectType": { - name: "镜面属性", - effect: "反射对手的属性,让自己也变成一\n样的属性", - }, - "retaliate": { - name: "报仇", - effect: "为倒下的同伴报仇。如果上一回合\n有同伴倒下,威力就会提高", - }, - "finalGambit": { - name: "搏命", - effect: "拼命攻击对手。虽然自己陷入昏厥,\n但会给予对手和自己目前HP等\n量的伤害", - }, - "bestow": { - name: "传递礼物", - effect: "当对手未携带道具时,\n能够将自己携带的道具交给对手", - }, - "inferno": { - name: "烈火深渊", - effect: "用烈焰包裹住对手进行攻击。\n让对手陷入灼伤状态", - }, - "waterPledge": { - name: "水之誓约", - effect: "用水柱进行攻击。如果和火组合,\n威力就会提高,天空中会挂上彩虹", - }, - "firePledge": { - name: "火之誓约", - effect: "用火柱进行攻击。如果和草组合,\n威力就会提高,周围会变成火海", - }, - "grassPledge": { - name: "草之誓约", - effect: "用草柱进行攻击。如果和水组合,\n威力就会提高,周围会变成湿地", - }, - "voltSwitch": { - name: "伏特替换", - effect: "在攻击之后急速返回,\n和后备宝可梦进行替换", - }, - "struggleBug": { - name: "虫之抵抗", - effect: "抵抗并攻击对手。会降低对手的特攻", - }, - "bulldoze": { - name: "重踏", - effect: "用力踩踏地面并攻击自己周围所有\n的宝可梦。会降低对方的速度", - }, - "frostBreath": { - name: "冰息", - effect: "将冰冷的气息吹向对手进行攻击。\n必定会击中要害", - }, - "dragonTail": { - name: "龙尾", - effect: "弹飞对手,强制拉后备宝可梦上场。\n如果对手为野生宝可梦,\n战斗将直接结束", - }, - "workUp": { - name: "自我激励", - effect: "激励自己,从而提高攻击和特攻", - }, - "electroweb": { - name: "电网", - effect: "用电网捉住对手进行攻击。\n会降低对手的速度", - }, - "wildCharge": { - name: "疯狂伏特", - effect: "让电流覆盖全身,撞向对手进行攻击。\n自己也会受到少许伤害", - }, - "drillRun": { - name: "直冲钻", - effect: "像钢钻一样,\n一边旋转身体一边撞击对手。\n容易击中要害", - }, - "dualChop": { - name: "二连劈", - effect: "用身体坚硬的部分拍打对手进行攻击。\n连续2次给予伤害", - }, - "heartStamp": { - name: "爱心印章", - effect: "以可爱的动作使对手疏忽,\n乘机给出强烈的一击。有时会使对手畏缩", - }, - "hornLeech": { - name: "木角", - effect: "将角刺入,吸取对手的养分。\n可以回复给予对手伤害的一半HP", - }, - "sacredSword": { - name: "圣剑", - effect: "用剑切斩对手进行攻击。\n无视对手的能力变化,直接给予伤害", - }, - "razorShell": { - name: "贝壳刃", - effect: "用锋利的贝壳切斩对手进行攻击。\n有时会降低对手的防御", - }, - "heatCrash": { - name: "高温重压", - effect: "用燃烧的身体撞向对手进行攻击。\n自己比对手越重,威力越大", - }, - "leafTornado": { - name: "青草搅拌器", - effect: "用锋利的叶片包裹住对手进行攻击。\n有时会降低对手的命中率", - }, - "steamroller": { - name: "疯狂滚压", - effect: "旋转揉成团的身体压扁对手。\n有时会使对手畏缩", - }, - "cottonGuard": { - name: "棉花防守", - effect: "用软绵绵的绒毛包裹住自己的身体\n进行守护。巨幅提高自己的防御", - }, - "nightDaze": { - name: "暗黑爆破", - effect: "放出黑暗的冲击波攻击对手。\n有时会降低对手的命中率", - }, - "psystrike": { - name: "精神击破", - effect: "将神奇的念波实体化攻击对手。\n给予物理伤害", - }, - "tailSlap": { - name: "扫尾拍打", - effect: "用坚硬的尾巴拍打对手进行攻击。\n连续攻击2~5次", - }, - "hurricane": { - name: "暴风", - effect: "用强烈的风席卷对手进行攻击。\n有时会使对手混乱", - }, - "headCharge": { - name: "爆炸头突击", - effect: "用厉害的爆炸头猛撞向对手进行攻击。\n自己也会受到少许伤害", - }, - "gearGrind": { - name: "齿轮飞盘", - effect: "向对手投掷钢铁齿轮进行攻击。\n连续2次给予伤害", - }, - "searingShot": { - name: "火焰弹", - effect: "用熊熊烈火攻击自己周围所有的宝可梦。\n有时会陷入灼伤状态", - }, - "technoBlast": { - name: "高科技光炮", - effect: "向对手放出光弹。属性会根据自己\n携带的卡带不同而改变", - }, - "relicSong": { - name: "古老之歌", - effect: "让对手听古老之歌,打动对手的内\n心进行攻击。有时会让对手陷入睡眠状态", - }, - "secretSword": { - name: "神秘之剑", - effect: "用长角切斩对手进行攻击。\n角上拥有的神奇力量将给予物理伤害", - }, - "glaciate": { - name: "冰封世界", - effect: "将冰冻的冷气吹向对手进行攻击。\n会降低对手的速度", - }, - "boltStrike": { - name: "雷击", - effect: "让强大的电流覆盖全身,\n猛撞向对手进行攻击。\n有时会让对手陷入麻痹状态", - }, - "blueFlare": { - name: "青焰", - effect: "用美丽而激烈的青焰\n包裹住对手进行攻击。\n有时会让对手陷入灼伤状态", - }, - "fieryDance": { - name: "火之舞", - effect: "让火焰覆盖全身,振翅攻击对手。\n有时会提高自己的特攻", - }, - "freezeShock": { - name: "冰冻伏特", - effect: "用覆盖着电流的冰块,\n在第2回合撞向对手。\n有时会让对手陷入麻痹状态", - }, - "iceBurn": { - name: "极寒冷焰", - effect: "用能够冻结一切的强烈冷气,\n在第2回合包裹住对手。有时会让对手\n陷入灼伤状态", - }, - "snarl": { - name: "大声咆哮", - effect: "没完没了地大声斥责,\n从而降低对手的特攻", - }, - "icicleCrash": { - name: "冰柱坠击", - effect: "用大冰柱激烈地撞向对手进行攻击。\n有时会使对手畏缩", - }, - "vCreate": { - name: "V热焰", - effect: "从前额产生灼热的火焰,\n舍身撞击对手。防御、特防和速度会降低", - }, - "fusionFlare": { - name: "交错火焰", - effect: "释放出巨大的火焰。受到巨大的闪\n电影响时,招式威力会提高", - }, - "fusionBolt": { - name: "交错闪电", - effect: "释放出巨大的闪电。受到巨大的火\n焰影响时,招式威力会提高", - }, - "flyingPress": { - name: "飞身重压", - effect: "从空中俯冲向对手。此招式同时带\n有格斗属性和飞行属性", - }, - "matBlock": { - name: "掀榻榻米", - effect: "将掀起来的榻榻米当作盾牌,\n防住自己和同伴免受招式伤害。\n变化招式无法防住", - }, - "belch": { - name: "打嗝", - effect: "朝着对手打嗝,并给予伤害。\n如果不吃树果则无法使出", - }, - "rototiller": { - name: "耕地", - effect: "翻耕土地,使草木更容易成长。\n会提高草属性宝可梦的攻击和特攻", - }, - "stickyWeb": { - name: "黏黏网", - effect: "在对手周围围上黏黏的网,\n降低替换出场的对手的速度", - }, - "fellStinger": { - name: "致命针刺", - effect: "如果使用此招式打倒对手,\n攻击会巨幅提高", - }, - "phantomForce": { - name: "潜灵奇袭", - effect: "第1回合消失在某处,\n第2回合攻击对手。\n可以无视守护进行攻击", - }, - "trickOrTreat": { - name: "万圣夜", - effect: "邀请对手参加万圣夜。\n使对手被追加幽灵属性", - }, - "nobleRoar": { - name: "战吼", - effect: "发出战吼威吓对手,从而降低对手\n的攻击和特攻", - }, - "ionDeluge": { - name: "等离子浴", - effect: "将带电粒子扩散开来,\n使一般属性的招式变成电属性", - }, - "parabolicCharge": { - name: "抛物面充电", - effect: "给周围全体宝可梦造成伤害。\n可以回复给予伤害的一半HP", - }, - "forestsCurse": { - name: "森林咒术", - effect: "向对手施加森林咒术。\n中了咒术的对手会被追加草属性", - }, - "petalBlizzard": { - name: "落英缤纷", - effect: "猛烈地刮起飞雪般的落花,\n攻击周围所有的宝可梦,并给予伤害", - }, - "freezeDry": { - name: "冷冻干燥", - effect: "急剧冷冻对手,有时会让对手陷入\n冰冻状态。对于水属性宝可梦也是\n效果绝佳", - }, - "disarmingVoice": { - name: "魅惑之声", - effect: "发出魅惑的叫声,\n给予对手精神上的伤害。\n攻击必定会命中", - }, - "partingShot": { - name: "抛下狠话", - effect: "抛下狠话威吓对手,降低攻击和特攻后,\n和后备宝可梦进行替换", - }, - "topsyTurvy": { - name: "颠倒", - effect: "颠倒对手身上的所有能力变化,\n变成和原来相反的状态", - }, - "drainingKiss": { - name: "吸取之吻", - effect: "用一个吻吸取对手的HP。\n回复给予对手伤害的一半以上的HP", - }, - "craftyShield": { - name: "戏法防守", - effect: "使用神奇的力量防住\n攻击我方的变化招式。\n但无法防住伤害招式的攻击", - }, - "flowerShield": { - name: "鲜花防守", - effect: "使用神奇的力量提高在场的所有草\n属性宝可梦的防御", - }, - "grassyTerrain": { - name: "青草场地", - effect: "在5回合内变成青草场地。\n地面上的宝可梦每回合都能回复。\n草属性的招式威力还会提高", - }, - "mistyTerrain": { - name: "薄雾场地", - effect: "在5回合内,地面上的宝可梦不会\n陷入异常状态。龙属性招式的伤害\n也会减半", - }, - "electrify": { - name: "输电", - effect: "对手使出招式前,如果输电,\n则该回合对手的招式变成电属性", - }, - "playRough": { - name: "嬉闹", - effect: "与对手嬉闹并攻击。有时会降低对\n手的攻击", - }, - "fairyWind": { - name: "妖精之风", - effect: "刮起妖精之风,吹向对手进行攻击", - }, - "moonblast": { - name: "月亮之力", - effect: "借用月亮的力量攻击对手。\n有时会降低对手的特攻", - }, - "boomburst": { - name: "爆音波", - effect: "通过震耳欲聋的爆炸声产生的破坏力,\n攻击自己周围所有的宝可梦", - }, - "fairyLock": { - name: "妖精之锁", - effect: "通过封锁,下一回合所有的宝可梦\n都无法逃走", - }, - "kingsShield": { - name: "王者盾牌", - effect: "防住对手攻击的同时,\n自己变为防御姿态。\n能够降低所接触到的对手的攻击", - }, - "playNice": { - name: "和睦相处", - effect: "和对手和睦相处,使其失去战斗的气力,\n从而降低对手的攻击", - }, - "confide": { - name: "密语", - effect: "和对手进行密语,使其失去集中力,\n从而降低对手的特攻", - }, - "diamondStorm": { - name: "钻石风暴", - effect: "掀起钻石风暴给予伤害。\n有时会大幅提高自己的防御", - }, - "steamEruption": { - name: "蒸汽爆炸", - effect: "将滚烫的蒸汽喷向对手。\n有时会让对手灼伤", - }, - "hyperspaceHole": { - name: "异次元洞", - effect: "通过异次元洞,突然出现在对手的\n侧面进行攻击。还可以无视守住和\n看穿等招式", - }, - "waterShuriken": { - name: "飞水手里剑", - effect: "用粘液制成的手里剑,\n连续攻击2~5次。必定能够先制攻击", - }, - "mysticalFire": { - name: "魔法火焰", - effect: "从口中喷出特别灼热的火焰进行攻击。\n降低对手的特攻", - }, - "spikyShield": { - name: "尖刺防守", - effect: "防住对手攻击的同时,\n削减接触到自己的对手的体力", - }, - "aromaticMist": { - name: "芳香薄雾", - effect: "通过神奇的芳香,提高我方宝可梦的特防", - }, - "eerieImpulse": { - name: "怪异电波", - effect: "从身体放射出怪异电波,\n让对手沐浴其中,从而大幅降低其特攻", - }, - "venomDrench": { - name: "毒液陷阱", - effect: "将特殊的毒液泼向对手。\n对处于中毒状态的对手,其攻击、\n特攻和速度都会降低", - }, - "powder": { - name: "粉尘", - effect: "如果被撒到粉尘的对手使用火招式,\n则会爆炸并给予伤害", - }, - "geomancy": { - name: "大地掌控", - effect: "第1回合吸收能量,第2回合大幅\n提高特攻、特防和速度", - }, - "magneticFlux": { - name: "磁场操控", - effect: "通过操控磁场,会提高特性为正电\n和负电的宝可梦的防御和特防", - }, - "happyHour": { - name: "欢乐时光", - effect: "如果使用欢乐时光,战斗后得到的\n钱会翻倍", - }, - "electricTerrain": { - name: "电气场地", - effect: "在5回合内变成电气场地。\n地面上的宝可梦将无法入眠。\n电属性的招式威力还会提高", - }, - "dazzlingGleam": { - name: "魔法闪耀", - effect: "向对手发射强光,并给予伤害", - }, - "celebrate": { - name: "庆祝", - effect: "宝可梦为十分开心的你庆祝", - }, - "holdHands": { - name: "牵手", - effect: "我方宝可梦之间牵手。\n能带来非常幸福的心情", - }, - "babyDollEyes": { - name: "圆瞳", - effect: "用圆瞳凝视对手,从而降低其攻击。\n必定能够先制攻击", - }, - "nuzzle": { - name: "蹭蹭脸颊", - effect: "将带电的脸颊蹭蹭对手进行攻击。\n让对手陷入麻痹状态", - }, - "holdBack": { - name: "手下留情", - effect: "在攻击的时候手下留情,\n从而使对手的HP至少会留下1HP", - }, - "infestation": { - name: "纠缠不休", - effect: "在4~5回合内死缠烂打地进行攻击。\n在此期间对手将无法逃走", - }, - "powerUpPunch": { - name: "增强拳", - effect: "通过反复击打对手,使自己的拳头\n慢慢变硬。打中对手攻击就会提高", - }, - "oblivionWing": { - name: "归天之翼", - effect: "从锁定的对手身上吸取HP。\n回复给予对手伤害的一半以上的HP", - }, - "thousandArrows": { - name: "千箭齐发", - effect: "可以击中浮在空中的宝可梦。\n空中的对手被击落后,会掉到地面", - }, - "thousandWaves": { - name: "千波激荡", - effect: "从地面掀起波浪进行攻击。\n被掀入波浪中的对手,\n将无法从战斗中逃走", - }, - "landsWrath": { - name: "大地神力", - effect: "聚集大地的力量,\n将此力量集中攻击对手,\n并给予伤害", - }, - "lightOfRuin": { - name: "破灭之光", - effect: "借用永恒之花的力量,\n发射出强力光线。\n自己也会受到非常大的伤害", - }, - "originPulse": { - name: "根源波动", - effect: "用无数青白色且闪耀的光线攻击对手", - }, - "precipiceBlades": { - name: "断崖之剑", - effect: "将大地的力量变化为利刃攻击对手", - }, - "dragonAscent": { - name: "画龙点睛", - effect: "从天空中急速下降攻击对手。\n自己的防御和特防会降低", - }, - "hyperspaceFury": { - name: "异次元猛攻", - effect: "用许多手臂,无视对手的守住或看\n穿等招式进行连续攻击,\n自己的防御会降低", - }, - "breakneckBlitzPhysical": { - name: "一般Z究极无敌大冲撞", - effect: "通过Z力量气势猛烈地全力撞上对手。\n威力会根据原来的招式而改变", - }, - "breakneckBlitzSpecial": { - name: "一般Z究极无敌大冲撞", - effect: "通过Z力量气势猛烈地全力撞上对手。\n威力会根据原来的招式而改变", - }, - "allOutPummelingPhysical": { - name: "格斗Z全力无双激烈拳", - effect: "通过Z力量制造出能量弹,\n全力撞向对手。\n威力会根据原来的招式而改变", - }, - "allOutPummelingSpecial": { - name: "格斗Z全力无双激烈拳", - effect: "通过Z力量制造出能量弹,\n全力撞向对手。\n威力会根据原来的招式而改变", - }, - "supersonicSkystrikePhysical": { - name: "飞行Z极速俯冲轰烈撞", - effect: "通过Z力量猛烈地飞向天空,\n朝对手全力落下。\n威力会根据原来的招式而改变", - }, - "supersonicSkystrikeSpecial": { - name: "飞行Z极速俯冲轰烈撞", - effect: "通过Z力量猛烈地飞向天空,\n朝对手全力落下。\n威力会根据原来的招式而改变", - }, - "acidDownpourPhysical": { - name: "毒Z强酸剧毒灭绝雨", - effect: "通过Z力量使毒沼涌起,\n全力让对手沉下去。\n威力会根据原来的招式而改变", - }, - "acidDownpourSpecial": { - name: "毒Z强酸剧毒灭绝雨", - effect: "通过Z力量使毒沼涌起,\n全力让对手沉下去。\n威力会根据原来的招式而改变", - }, - "tectonicRagePhysical": { - name: "地面Z地隆啸天大终结", - effect: "通过Z力量潜入地里最深处,\n全力撞上对手。\n威力会根据原来的招式而改变", - }, - "tectonicRageSpecial": { - name: "地面Z地隆啸天大终结", - effect: "通过Z力量潜入地里最深处,\n全力撞上对手。\n威力会根据原来的招式而改变", - }, - "continentalCrushPhysical": { - name: "岩石Z毁天灭地巨岩坠", - effect: "通过Z力量召唤大大的岩山,\n全力撞向对手。\n威力会根据原来的招式而改变", - }, - "continentalCrushSpecial": { - name: "岩石Z毁天灭地巨岩坠", - effect: "通过Z力量召唤大大的岩山,\n全力撞向对手。\n威力会根据原来的招式而改变", - }, - "savageSpinOutPhysical": { - name: "虫Z绝对捕食回旋斩", - effect: "通过Z力量将吐出的丝线全力束缚对手。\n威力会根据原来的招式而改变", - }, - "savageSpinOutSpecial": { - name: "虫Z绝对捕食回旋斩", - effect: "通过Z力量将吐出的丝线全力束缚对手。\n威力会根据原来的招式而改变", - }, - "neverEndingNightmarePhysical": { - name: "幽灵Z无尽暗夜之诱惑", - effect: "通过Z力量召唤强烈的怨念,\n全力降临到对手身上。\n威力会根据原来的招式而改变", - }, - "neverEndingNightmareSpecial": { - name: "幽灵Z无尽暗夜之诱惑", - effect: "通过Z力量召唤强烈的怨念,\n全力降临到对手身上。\n威力会根据原来的招式而改变", - }, - "corkscrewCrashPhysical": { - name: "钢Z超绝螺旋连击", - effect: "通过Z力量进行高速旋转,\n全力撞上对手。\n威力会根据原来的招式而改变", - }, - "corkscrewCrashSpecial": { - name: "钢Z超绝螺旋连击", - effect: "通过Z力量进行高速旋转,\n全力撞上对手。\n威力会根据原来的招式而改变", - }, - "infernoOverdrivePhysical": { - name: "火Z超强极限爆焰弹", - effect: "通过Z力量喷出熊熊烈火,\n全力撞向对手。\n威力会根据原来的招式而改变", - }, - "infernoOverdriveSpecial": { - name: "火Z超强极限爆焰弹", - effect: "通过Z力量喷出熊熊烈火,\n全力撞向对手。\n威力会根据原来的招式而改变", - }, - "hydroVortexPhysical": { - name: "水Z超级水流大漩涡", - effect: "通过Z力量制造大大的潮旋,\n全力吞没对手。\n威力会根据原来的招式而改变", - }, - "hydroVortexSpecial": { - name: "水Z超级水流大漩涡", - effect: "通过Z力量制造大大的潮旋,\n全力吞没对手。\n威力会根据原来的招式而改变", - }, - "bloomDoomPhysical": { - name: "草Z绚烂缤纷花怒放", - effect: "通过Z力量借助花草的能量,\n全力攻击对手。\n威力会根据原来的招式而改变", - }, - "bloomDoomSpecial": { - name: "草Z绚烂缤纷花怒放", - effect: "通过Z力量借助花草的能量,\n全力攻击对手。\n威力会根据原来的招式而改变", - }, - "gigavoltHavocPhysical": { - name: "电Z终极伏特狂雷闪", - effect: "通过Z力量将蓄积的强大电流全力\n撞向对手。威力会根据原来的招式而改变", - }, - "gigavoltHavocSpecial": { - name: "电Z终极伏特狂雷闪", - effect: "通过Z力量将蓄积的强大电流全力\n撞向对手。威力会根据原来的招式而改变", - }, - "shatteredPsychePhysical": { - name: "超能力Z至高精神破坏波", - effect: "通过Z力量操纵对手,\n全力使其感受到痛苦。\n威力会根据原来的招式而改变", - }, - "shatteredPsycheSpecial": { - name: "超能力Z至高精神破坏波", - effect: "通过Z力量操纵对手,\n全力使其感受到痛苦。\n威力会根据原来的招式而改变", - }, - "subzeroSlammerPhysical": { - name: "冰Z激狂大地万里冰", - effect: "通过Z力量急剧降低气温,\n全力冰冻对手。\n威力会根据原来的招式而改变", - }, - "subzeroSlammerSpecial": { - name: "冰Z激狂大地万里冰", - effect: "通过Z力量急剧降低气温,\n全力冰冻对手。\n威力会根据原来的招式而改变", - }, - "devastatingDrakePhysical": { - name: "龙Z究极巨龙震天地", - effect: "通过Z力量将气场实体化,\n向对手全力发动袭击。\n威力会根据原来的招式而改变", - }, - "devastatingDrakeSpecial": { - name: "龙Z究极巨龙震天地", - effect: "通过Z力量将气场实体化,\n向对手全力发动袭击。\n威力会根据原来的招式而改变", - }, - "blackHoleEclipsePhysical": { - name: "恶Z黑洞吞噬万物灭", - effect: "通过Z力量收集恶能量,\n全力将对手吸入。\n威力会根据原来的招式而改变", - }, - "blackHoleEclipseSpecial": { - name: "恶Z黑洞吞噬万物灭", - effect: "通过Z力量收集恶能量,\n全力将对手吸入。\n威力会根据原来的招式而改变", - }, - "twinkleTacklePhysical": { - name: "妖精Z可爱星星飞天撞", - effect: "通过Z力量制造魅惑空间,\n全力捉弄对手。\n威力会根据原来的招式而改变", - }, - "twinkleTackleSpecial": { - name: "妖精Z可爱星星飞天撞", - effect: "通过Z力量制造魅惑空间,\n全力捉弄对手。\n威力会根据原来的招式而改变", - }, - "catastropika": { - name: "皮卡丘Z皮卡皮卡必杀击", - effect: "通过Z力量,皮卡丘全身覆盖最强电力,\n全力猛扑对手", - }, - "shoreUp": { - name: "集沙", - effect: "回复自己最大HP的一半。\n在沙暴中回复得更多", - }, - "firstImpression": { - name: "迎头一击", - effect: "威力很高的招式,但只有在出场战斗时,\n立刻使出才能成功", - }, - "banefulBunker": { - name: "碉堡", - effect: "防住对手攻击的同时,\n让接触到自己的对手中毒", - }, - "spiritShackle": { - name: "缝影", - effect: "攻击的同时,缝住对手的影子,\n使其无法逃走", - }, - "darkestLariat": { - name: "DD金勾臂", - effect: "旋转双臂打向对手。\n无视对手的能力变化,\n直接给予伤害", - }, - "sparklingAria": { - name: "泡影的咏叹调", - effect: "随着唱歌会放出很多气球。\n受到此招式攻击时,灼伤会被治愈", - }, - "iceHammer": { - name: "冰锤", - effect: "挥舞强力而沉重的拳头,\n给予对手伤害。自己的速度会降低", - }, - "floralHealing": { - name: "花疗", - effect: "回复对手最大HP的一半。\n在青草场地时,效果会提高", - }, - "highHorsepower": { - name: "十万马力", - effect: "使出全身力量,猛攻对手", - }, - "strengthSap": { - name: "吸取力量", - effect: "给自己回复和对手攻击力\n相同数值的HP,\n然后降低对手的攻击", - }, - "solarBlade": { - name: "日光刃", - effect: "第1回合收集满满的日光,\n第2回合将此力量集中在剑上进行攻击", - }, - "leafage": { - name: "树叶", - effect: "将叶片打向对手,进行攻击", - }, - "spotlight": { - name: "聚光灯", - effect: "给宝可梦打上聚光灯,\n该回合只能瞄准该宝可梦", - }, - "toxicThread": { - name: "毒丝", - effect: "将混有毒的丝吐向对手。\n使其中毒,从而降低对手的速度", - }, - "laserFocus": { - name: "磨砺", - effect: "集中精神,下次攻击必定会击中要害", - }, - "gearUp": { - name: "辅助齿轮", - effect: "启动齿轮,提高特性为正电和负电\n的宝可梦的攻击和特攻", - }, - "throatChop": { - name: "深渊突刺", - effect: "受到此招式攻击的对手,\n会因为地狱般的痛苦,在2回合内,\n变得无法使出声音类招式", - }, - "pollenPuff": { - name: "花粉团", - effect: "对敌人使用是会爆炸的团子。\n对我方使用则是给予回复的团子", - }, - "anchorShot": { - name: "掷锚", - effect: "将锚缠住对手进行攻击。\n使对手无法逃走", - }, - "psychicTerrain": { - name: "精神场地", - effect: "在5回合内,地面上的宝可梦不会\n受到先制招式的攻击。\n超能力属性的招式威力会提高", - }, - "lunge": { - name: "猛扑", - effect: "全力猛扑对手进行攻击。\n从而降低对手的攻击", - }, - "fireLash": { - name: "火焰鞭", - effect: "用燃烧的鞭子抽打对手。\n受到攻击的对手防御会降低", - }, - "powerTrip": { - name: "嚣张", - effect: "耀武扬威地攻击对手,\n自己的能力提高得越多,威力就越大", - }, - "burnUp": { - name: "燃尽", - effect: "将自己全身燃烧起火焰来,\n给予对手大大的伤害。\n自己的火属性将会消失", - }, - "speedSwap": { - name: "速度互换", - effect: "将对手和自己的速度进行互换", - }, - "smartStrike": { - name: "修长之角", - effect: "用尖尖的角刺入对手进行攻击。\n攻击必定会命中", - }, - "purify": { - name: "净化", - effect: "治愈对手的异常状态。\n治愈后可以回复自己的HP", - }, - "revelationDance": { - name: "觉醒之舞", - effect: "全力跳舞进行攻击。此招式的属性\n将变得和自己的属性相同", - }, - "coreEnforcer": { - name: "核心惩罚者", - effect: "如果给予过伤害的对手已经结束行动,\n其特性就会被消除", - }, - "tropKick": { - name: "热带踢", - effect: "向对手使出来自南国的火热脚踢。\n从而降低对手的攻击", - }, - "instruct": { - name: "号令", - effect: "向对手下达指示,让其再次使出刚\n才的招式", - }, - "beakBlast": { - name: "鸟嘴加农炮", - effect: "先加热鸟嘴后再进行攻击。\n鸟嘴在加热时对手触碰的话,\n就会使其灼伤", - }, - "clangingScales": { - name: "鳞片噪音", - effect: "摩擦全身鳞片,\n发出响亮的声音进行攻击。\n攻击后自己的防御会降低", - }, - "dragonHammer": { - name: "龙锤", - effect: "将身体当作锤子,向对手发动袭击,\n给予伤害", - }, - "brutalSwing": { - name: "狂舞挥打", - effect: "用自己的身体狂舞挥打,\n给予对手伤害", - }, - "auroraVeil": { - name: "极光幕", - effect: "在5回合内减弱物理和特殊的伤害。\n只有下雪时才能使出", - }, - "sinisterArrowRaid": { - name: "狙射树枭Z遮天蔽日暗影箭", - effect: "通过Z力量制造出无数箭的狙射树\n枭将全力射穿对手进行攻击", - }, - "maliciousMoonsault": { - name: "炽焰咆哮虎Z极恶飞跃粉碎击", - effect: "通过Z力量得到强壮肉体的炽焰咆\n哮虎将全力撞向对手进行攻击", - }, - "oceanicOperetta": { - name: "西狮海壬Z海神庄严交响乐", - effect: "通过Z力量召唤大量水的西狮海壬\n将全力攻击对手", - }, - "guardianOfAlola": { - name: "卡璞Z巨人卫士・阿罗拉", - effect: "通过Z力量得到阿罗拉之力的土地\n神宝可梦将全力进行攻击。\n对手的剩余HP会减少很多", - }, - "soulStealing7StarStrike": { - name: "玛夏多Z七星夺魂腿", - effect: "得到Z力量的玛夏多将全力使出拳\n头和脚踢的连续招式叩打对手", - }, - "stokedSparksurfer": { - name: "阿罗雷Z驾雷驭电戏冲浪", - effect: "得到Z力量的阿罗拉地区的雷丘将\n全力进行攻击。从而让对手陷入麻痹状态", - }, - "pulverizingPancake": { - name: "卡比兽Z认真起来大爆击", - effect: "通过Z力量使得认真起来的卡比兽\n跃动巨大身躯,全力向对手发动袭击", - }, - "extremeEvoboost": { - name: "伊布Z九彩昇华齐聚顶", - effect: "得到Z力量的伊布将借助进化后伙\n伴们的力量,大幅提高能力", - }, - "genesisSupernova": { - name: "梦幻Z起源超新星大爆炸", - effect: "得到Z力量的梦幻将全力攻击对手。\n脚下会变成精神场地", - }, - "shellTrap": { - name: "陷阱甲壳", - effect: "设下甲壳陷阱。如果对手使出物理招式,\n陷阱就会爆炸并给予对手伤害", - }, - "fleurCannon": { - name: "花朵加农炮", - effect: "放出强力光束后,自己的特攻会大幅降低", - }, - "psychicFangs": { - name: "精神之牙", - effect: "利用精神力量咬住对手进行攻击。\n还可以破坏光墙和反射壁等", - }, - "stompingTantrum": { - name: "跺脚", - effect: "化悔恨为力量进行攻击。\n如果上一回合招式没有打中,\n威力就会翻倍", - }, - "shadowBone": { - name: "暗影之骨", - effect: "用附有灵魂的骨头殴打对手进行攻击。\n有时会降低对手的防御", - }, - "accelerock": { - name: "冲岩", - effect: "迅速撞向对手进行攻击。\n必定能够先制攻击", - }, - "liquidation": { - name: "水流裂破", - effect: "用水之力量撞向对手进行攻击。\n有时会降低对手的防御", - }, - "prismaticLaser": { - name: "棱镜镭射", - effect: "用棱镜的力量发射强烈光线。\n下一回合自己将无法动弹", - }, - "spectralThief": { - name: "暗影偷盗", - effect: "潜入对手的影子进行攻击。\n会夺取对手的能力提升", - }, - "sunsteelStrike": { - name: "流星闪冲", - effect: "以流星般的气势猛撞对手。\n可以无视对手的特性进行攻击", - }, - "moongeistBeam": { - name: "暗影之光", - effect: "放出奇怪的光线攻击对手。\n可以无视对手的特性进行攻击", - }, - "tearfulLook": { - name: "泪眼汪汪", - effect: "变得泪眼汪汪,让对手丧失斗志。\n从而降低对手的攻击和特攻", - }, - "zingZap": { - name: "麻麻刺刺", - effect: "撞向对手,并发出强电,\n使其感到麻麻刺刺的。有时会使对手畏缩", - }, - "naturesMadness": { - name: "自然之怒", - effect: "向对手释放自然之怒。\n对手的HP会减半", - }, - "multiAttack": { - name: "多属性攻击", - effect: "一边覆盖高能量,\n一边撞向对手进行攻击。\n根据存储碟不同,\n属性会改变", - }, - "tenMillionVoltThunderbolt": { - name: "智皮卡Z千万伏特", - effect: "戴着帽子的皮卡丘将通过Z力量增\n强的电击全力释放给对手。\n容易击中要害", - }, - "mindBlown": { - name: "惊爆大头", - effect: "让自己的头爆炸,来攻击周围的一切。\n自己也会受到伤害", - }, - "plasmaFists": { - name: "等离子闪电拳", - effect: "用覆盖着电流的拳头进行攻击。\n使一般属性的招式变成电属性", - }, - "photonGeyser": { - name: "光子喷涌", - effect: "用光柱来进行攻击。比较自己的攻\n击和特攻,用数值相对较高的一项\n给予对方伤害", - }, - "lightThatBurnsTheSky": { - name: "究极奈克洛Z焚天灭世炽光爆", - effect: "奈克洛兹玛会无视对手的特性效果,\n在攻击和特攻之间,\n用数值相对较高的一项给予对方伤害", - }, - "searingSunrazeSmash": { - name: "索尔迦雷欧Z日光回旋下苍穹", - effect: "得到Z力量的索尔迦雷欧\n将全力进行攻击。\n可以无视对手的特性效果", - }, - "menacingMoonrazeMaelstrom": { - name: "露奈雅拉Z月华飞溅落灵霄", - effect: "得到Z力量的露奈雅拉将全力进行攻击。\n可以无视对手的特性效果", - }, - "letsSnuggleForever": { - name: "谜拟丘Z亲密无间大乱揍", - effect: "得到Z力量的谜拟Q将全力进行乱揍攻击", - }, - "splinteredStormshards": { - name: "鬃岩狼人Z狼啸石牙飓风暴", - effect: "得到Z力量的鬃岩狼人将全力进行攻击。\n而且会消除场地状态", - }, - "clangorousSoulblaze": { - name: "杖尾鳞甲龙Z炽魂热舞烈音爆", - effect: "得到Z力量的杖尾鳞甲龙\n将全力攻击对手。\n并且自己的能力会提高", - }, - "zippyZap": { - name: "电电加速", - effect: "迅猛无比的电击。必定能够先制攻击,\n并且提高自己的闪避率。", - }, - "splishySplash": { - name: "滔滔冲浪", - effect: "往巨浪中注入电能后冲撞对手进行攻击。\n有时会让对手陷入麻痹状态", - }, - "floatyFall": { - name: "飘飘坠落", - effect: "轻飘飘地浮起来后,再猛地俯冲下\n去进行攻击。有时会使对手畏缩", - }, - "pikaPapow": { - name: "闪闪雷光", - effect: "皮卡丘越喜欢训练家,\n电击的威力就越强。攻击必定会命中", - }, - "bouncyBubble": { - name: "活活气泡", - effect: "投掷水球进行攻击。吸水后能回复\n等同于造成的伤害的HP", - }, - "buzzyBuzz": { - name: "麻麻电击", - effect: "放出电击攻击对手。让对手陷入麻痹状态", - }, - "sizzlySlide": { - name: "熊熊火爆", - effect: "用燃起大火的身体猛烈地冲撞对手。\n让对手陷入灼伤状态", - }, - "glitzyGlow": { - name: "哗哗气场", - effect: "利用念力强攻,粉碎对方信心。\n制造一道能减弱对手特殊攻击的神奇墙壁", - }, - "baddyBad": { - name: "坏坏领域", - effect: "恶行恶相地进行攻击。\n制造一道能减弱对手物理攻击的神奇墙壁", - }, - "sappySeed": { - name: "茁茁炸弹", - effect: "长出巨大的藤蔓,播撒种子进行攻击。\n种子每回合都会吸取对手的HP", - }, - "freezyFrost": { - name: "冰冰霜冻", - effect: "利用冰冷的黑雾结晶进行攻击。\n使全体宝可梦的能力变回原点", - }, - "sparklySwirl": { - name: "亮亮风暴", - effect: "利用芬芳刺鼻的龙卷风吞噬对方。\n能治愈我方宝可梦的异常状态", - }, - "veeveeVolley": { - name: "砰砰击破", - effect: "伊布越喜欢训练家,冲撞的威力就越强。\n攻击必定会命中", - }, - "doubleIronBash": { - name: "钢拳双击", - effect: "以胸口的螺帽为中心旋转,\n并连续2次挥动手臂打击对手。\n有时会使对手畏缩", - }, - "maxGuard": { - name: "极巨防壁", - effect: "完全抵挡对手的攻击。\n连续使出则容易失败", - }, - "dynamaxCannon": { - name: "极巨炮", - effect: "将凝缩在体内的能量从核心放出进行攻击,\n对手等级比当前波次的等级上限越高,造成的伤害越高,最多两倍。", - }, - "snipeShot": { - name: "狙击", - effect: "能无视具有吸引对手招式效果的特\n性或招式的影响。可以向选定的对\n手进行攻击", - }, - "jawLock": { - name: "紧咬不放", - effect: "使双方直到一方昏厥为止\n无法替换宝可梦。\n其中一方退场则可以解除效果", - }, - "stuffCheeks": { - name: "大快朵颐", - effect: "吃掉携带的树果,大幅提高防御", - }, - "noRetreat": { - name: "背水一战", - effect: "提高自己的所有能力,\n但无法替换或逃走", - }, - "tarShot": { - name: "沥青射击", - effect: "泼洒黏糊糊的沥青,降低对手的速度。\n火属性会变成对手的弱点", - }, - "magicPowder": { - name: "魔法粉", - effect: "向对手喷洒魔法粉,使对手变为超\n能力属性", - }, - "dragonDarts": { - name: "龙箭", - effect: "让多龙梅西亚进行2次攻击。\n如果对手有2只宝可梦,则对它们各进\n行1次攻击", - }, - "teatime": { - name: "茶会", - effect: "举办一场茶会,场上的所有宝可梦\n都会吃掉自己携带的树果", - }, - "octolock": { - name: "蛸固", - effect: "让对手无法逃走。对手被固定后,\n每回合都会降低防御和特防", - }, - "boltBeak": { - name: "电喙", - effect: "用带电的喙啄刺对手。\n如果比对手先出手攻击,\n招式的威力会变成2倍", - }, - "fishiousRend": { - name: "鳃咬", - effect: "用坚硬的腮咬住对手。\n如果比对手先出手攻击,\n招式的威力会变成2倍", - }, - "courtChange": { - name: "换场", - effect: "用神奇的力量交换双方的场地效果", - }, - "maxFlare": { - name: "极巨火爆", - effect: "极巨化宝可梦使出的火属性攻击。\n可在5回合内让日照变得强烈", - }, - "maxFlutterby": { - name: "极巨虫蛊", - effect: "极巨化宝可梦使出的虫属性攻击。\n会降低对手的特攻", - }, - "maxLightning": { - name: "极巨闪电", - effect: "极巨化宝可梦使出的电属性攻击。\n可在5回合内将脚下变成电气场地", - }, - "maxStrike": { - name: "极巨攻击", - effect: "极巨化宝可梦使出的一般属性攻击。\n会降低对手的速度", - }, - "maxKnuckle": { - name: "极巨拳斗", - effect: "极巨化宝可梦使出的格斗属性攻击。\n会提高我方的攻击", - }, - "maxPhantasm": { - name: "极巨幽魂", - effect: "极巨化宝可梦使出的幽灵属性攻击。\n会降低对手的防御", - }, - "maxHailstorm": { - name: "极巨寒冰", - effect: "极巨化宝可梦使出的冰属性攻击。\n在5回合内会下雪", - }, - "maxOoze": { - name: "极巨酸毒", - effect: "极巨化宝可梦使出的毒属性攻击。\n会提高我方的特攻", - }, - "maxGeyser": { - name: "极巨水流", - effect: "极巨化宝可梦使出的水属性攻击。\n可在5回合内降下大雨", - }, - "maxAirstream": { - name: "极巨飞冲", - effect: "极巨化宝可梦使出的飞行属性攻击。\n会提高我方的速度", - }, - "maxStarfall": { - name: "极巨妖精", - effect: "极巨化宝可梦使出的妖精属性攻击。\n可在5回合内将脚下变成薄雾场地", - }, - "maxWyrmwind": { - name: "极巨龙骑", - effect: "极巨化宝可梦使出的龙属性攻击。\n会降低对手的攻击", - }, - "maxMindstorm": { - name: "极巨超能", - effect: "极巨化宝可梦使出的超能力属性攻击。\n可在5回合内将脚下变成精神场地", - }, - "maxRockfall": { - name: "极巨岩石", - effect: "极巨化宝可梦使出的岩石属性攻击。\n可在5回合内卷起沙暴", - }, - "maxQuake": { - name: "极巨大地", - effect: "极巨化宝可梦使出的地面属性攻击。\n会提高我方的特防", - }, - "maxDarkness": { - name: "极巨恶霸", - effect: "极巨化宝可梦使出的恶属性攻击。\n会降低对手的特防", - }, - "maxOvergrowth": { - name: "极巨草原", - effect: "极巨化宝可梦使出的草属性攻击。\n可在5回合内将脚下变成青草场地", - }, - "maxSteelspike": { - name: "极巨钢铁", - effect: "极巨化宝可梦使出的钢属性攻击。\n会提高我方的防御", - }, - "clangorousSoul": { - name: "魂舞烈音爆", - effect: "削减少许自己的HP,\n使所有能力都提高", - }, - "bodyPress": { - name: "扑击", - effect: "用身体撞向对手进行攻击。\n防御越高,给予的伤害就越高", - }, - "decorate": { - name: "装饰", - effect: "通过装饰,大幅提高对方的攻击和特攻", - }, - "drumBeating": { - name: "鼓击", - effect: "用鼓点来控制鼓的根部进行攻击,\n从而降低对手的速度", - }, - "snapTrap": { - name: "捕兽夹", - effect: "使用捕兽夹,在4~5回合内,\n夹住对手进行攻击", - }, - "pyroBall": { - name: "火焰球", - effect: "点燃小石子,形成火球攻击对手。\n有时会使对手陷入灼伤状态", - }, - "behemothBlade": { - name: "巨兽斩", - effect: "以全身力气举起强大的剑,\n猛烈地劈向对手进行攻击", - }, - "behemothBash": { - name: "巨兽弹", - effect: "将全身变化为坚固的盾,\n猛烈地撞向对手进行攻击", - }, - "auraWheel": { - name: "气场轮", - effect: "用储存在颊囊里的能量进行攻击,\n并提高自己的速度。其属性会随着\n莫鲁贝可的样子而改变", - }, - "breakingSwipe": { - name: "广域破坏", - effect: "用坚韧的尾巴猛扫对手进行攻击,\n从而降低对手的攻击", - }, - "branchPoke": { - name: "木枝突刺", - effect: "使用尖锐的树枝刺向对手进行攻击", - }, - "overdrive": { - name: "破音", - effect: "奏响吉他和贝斯,释放出发出巨响\n的剧烈震动攻击对手", - }, - "appleAcid": { - name: "苹果酸", - effect: "使用从酸苹果中提取出来的酸性液\n体进行攻击。降低对手的特防", - }, - "gravApple": { - name: "万有引力", - effect: "从高处落下苹果,给予对手伤害。\n可降低对手的防御", - }, - "spiritBreak": { - name: "灵魂冲击", - effect: "用足以让对手一蹶不振的气势进行攻击。\n会降低对手的特攻", - }, - "strangeSteam": { - name: "神奇蒸汽", - effect: "喷出烟雾攻击对手。有时会使对手混乱", - }, - "lifeDew": { - name: "生命水滴", - effect: "喷洒出神奇的水,回复自己和场上\n同伴的HP", - }, - "obstruct": { - name: "拦堵", - effect: "完全抵挡对手的攻击。\n连续使出则容易失败。一旦触碰,\n防御就会大幅降低", - }, - "falseSurrender": { - name: "假跪真撞", - effect: "装作低头认错的样子,\n用凌乱的头发进行突刺。攻击必定会命中", - }, - "meteorAssault": { - name: "流星突击", - effect: "大力挥舞粗壮的茎进行攻击。\n但同时自己也会被晃晕,下一回合自己\n将无法动弹", - }, - "eternabeam": { - name: "无极光束", - effect: "无极汰那变回原来的样子后,\n发动的最强攻击。\n下一回合自己将无法动弹", - }, - "steelBeam": { - name: "铁蹄光线", - effect: "将从全身聚集的钢铁化为光束,\n激烈地发射出去。自己也会受到伤害", - }, - "expandingForce": { - name: "广域战力", - effect: "利用精神力量攻击对手。\n在精神场地上威力会有所提高,\n能对所有对手造成伤害", - }, - "steelRoller": { - name: "铁滚轮", - effect: "在破坏场地的同时攻击对手。\n如果脚下没有任何场地状态存在,\n使出此招式时便会失败", - }, - "scaleShot": { - name: "鳞射", - effect: "发射鳞片进行攻击。连续攻击2~5次。\n速度会提高但防御会降低", - }, - "meteorBeam": { - name: "流星光束", - effect: "第1回合聚集宇宙之力提高特攻,\n第2回合攻击对手", - }, - "shellSideArm": { - name: "臂贝武器", - effect: "从物理攻击和特殊攻击中选择可造\n成较多伤害的方式进行攻击。\n有时会让对手陷入中毒状态", - }, - "mistyExplosion": { - name: "薄雾炸裂", - effect: "对自己周围的所有宝可梦进行攻击,\n但使出后,自己会陷入昏厥。\n在薄雾场地上,招式威力会提高", - }, - "grassyGlide": { - name: "青草滑梯", - effect: "仿佛在地面上滑行般地攻击对手。\n在青草场地上,必定能够先制攻击", - }, - "risingVoltage": { - name: "电力上升", - effect: "用从地面升腾而起的电击进行攻击。\n当对手处于电气场地上时,\n招式威力会变成2倍", - }, - "terrainPulse": { - name: "大地波动", - effect: "借助场地的力量进行攻击。\n视使出招式时场地状态不同,\n招式的属性和威力会有所变化", - }, - "skitterSmack": { - name: "爬击", - effect: "从对手背后爬近后进行攻击。\n会降低对手的特攻", - }, - "burningJealousy": { - name: "妒火", - effect: "用嫉妒的能量攻击对手。\n会让在该回合内能力有所提高\n的宝可梦陷入灼伤状态", - }, - "lashOut": { - name: "泄愤", - effect: "攻击对手以发泄对其感到的恼怒情绪。\n如果在该回合内自身能力遭到降低,\n招式的威力会变成2倍", - }, - "poltergeist": { - name: "灵骚", - effect: "操纵对手的持有物进行攻击。\n当对手没有携带道具时,使出此招式时\n便会失败", - }, - "corrosiveGas": { - name: "腐蚀气体", - effect: "用具有强酸性的气体包裹住自己周\n围所有的宝可梦,并融化其所携带的道具", - }, - "coaching": { - name: "指导", - effect: "通过进行正确合理的指导,\n提高我方全员的攻击和防御", - }, - "flipTurn": { - name: "快速折返", - effect: "在攻击之后急速返回,\n和后备宝可梦进行替换", - }, - "tripleAxel": { - name: "三旋击", - effect: "连续3次踢对手进行攻击。\n每踢中一次,威力就会提高", - }, - "dualWingbeat": { - name: "双翼", - effect: "将翅膀撞向对手进行攻击。\n连续2次给予伤害", - }, - "scorchingSands": { - name: "热沙大地", - effect: "将滚烫的沙子砸向对手进行攻击。\n有时会让对手陷入灼伤状态", - }, - "jungleHealing": { - name: "丛林治疗", - effect: "与丛林融为一体,回复自己和场上\n同伴的HP和状态", - }, - "wickedBlow": { - name: "暗冥强击", - effect: "将恶之流派修炼至大成的猛烈一击。\n必定会击中要害", - }, - "surgingStrikes": { - name: "水流连打", - effect: "将水之流派修炼至大成的仿若行云\n流水般的3次连击。必定会击中要害", - }, - "thunderCage": { - name: "雷电囚笼", - effect: "将对手困在电流四溅的囚笼中,\n在4~5回合内进行攻击", - }, - "dragonEnergy": { - name: "巨龙威能", - effect: "把生命力转换为力量攻击对手。\n自己的HP越少,招式的威力越小", - }, - "freezingGlare": { - name: "冰冷视线", - effect: "从双眼发射精神力量进行攻击。\n有时会让对手陷入冰冻状态", - }, - "fieryWrath": { - name: "怒火中烧", - effect: "将愤怒转化为火焰般的气场进行攻击。\n有时会使对手畏缩", - }, - "thunderousKick": { - name: "雷鸣蹴击", - effect: "以雷电般的动作\n戏耍对手的同时使出脚踢。\n可降低对手的防御", - }, - "glacialLance": { - name: "雪矛", - effect: "向对手投掷掀起暴风雪的冰矛进行攻击", - }, - "astralBarrage": { - name: "星碎", - effect: "用大量的小灵体向对手发起攻击", - }, - "eerieSpell": { - name: "诡异咒语", - effect: "用强大的精神力量攻击。\n让对手最后使用的招式减少3PP", - }, - "direClaw": { - name: "克命爪", - effect: "以破灭之爪进行攻击。\n有时还会让对手陷入中毒、麻痹、\n睡眠之中的一种状态", - }, - "psyshieldBash": { - name: "屏障猛攻", - effect: "让意念的能量覆盖全身,\n撞向对手进行攻击。会提高自己的防御", - }, - "powerShift": { - name: "力量转换", - effect: "将自己的攻击与防御互相交换", - }, - "stoneAxe": { - name: "岩斧", - effect: "用岩石之斧进行攻击。\n散落的岩石碎片会飘浮在对手周围", - }, - "springtideStorm": { - name: "阳春风暴", - effect: "用交织着爱与恨的烈风席卷对手\n进行攻击。有时会降低对手的攻击", - }, - "mysticalPower": { - name: "神秘之力", - effect: "放出不可思议的力量攻击。\n会提高自己的特攻", - }, - "ragingFury": { - name: "大愤慨", - effect: "在2~3回合内,一边放出火焰,\n一边疯狂乱打。大闹一番后自己会\n陷入混乱", - }, - "waveCrash": { - name: "波动冲", - effect: "让水覆盖全身后撞向对手。\n自己也会受到不少伤害", - }, - "chloroblast": { - name: "叶绿爆震", - effect: "将自己的叶绿素凝聚起来后放出去\n进行攻击。自己也会受到伤害", - }, - "mountainGale": { - name: "冰山风", - effect: "将冰山般巨大的冰块砸向对手进行攻击。\n有时会使对手畏缩", - }, - "victoryDance": { - name: "胜利之舞", - effect: "激烈地跳起唤来胜利的舞蹈,\n提高自己的攻击、防御和速度", - }, - "headlongRush": { - name: "突飞猛扑", - effect: "向对手使出灌注了全心全力的撞击。\n自己的防御和特防会降低", - }, - "barbBarrage": { - name: "毒千针", - effect: "用无数的毒针进行攻击。\n有时还会让对手陷入中毒状态。\n攻击处于中毒状态的对手时,\n威力会变成2倍", - }, - "esperWing": { - name: "气场之翼", - effect: "用经过气场强化的翅膀撕裂对手。\n容易击中要害。会提高自己的速度", - }, - "bitterMalice": { - name: "冤冤相报", - effect: "用令人毛骨悚然的怨念进行攻击。\n会降低对手的攻击", - }, - "shelter": { - name: "闭关", - effect: "将皮肤变得坚硬如铁盾,\n从而大幅提高自己的防御", - }, - "tripleArrows": { - name: "三连箭", - effect: "使出一记腿技后同时发射3箭。\n有时会降低对手的防御或使对手畏缩。\n容易击中要害", - }, - "infernalParade": { - name: "群魔乱舞", - effect: "用无数的火球进行攻击。有时会让对手陷\n入灼伤状态。攻击处于异常状态\n的对手时,威力会变成2倍", - }, - "ceaselessEdge": { - name: "秘剑・千重涛", - effect: "用贝壳之剑进行攻击。\n散落的贝壳碎片会散落\n在对手脚下成为撒菱", - }, - "bleakwindStorm": { - name: "枯叶风暴", - effect: "用足以让身心都止不住颤抖的冰冷\n狂风进行攻击。有时会降低对手的速度", - }, - "wildboltStorm": { - name: "鸣雷风暴", - effect: "呼唤雷云引起风暴,用雷与风进行\n激烈的攻击。有时会让对手陷入麻痹状态", - }, - "sandsearStorm": { - name: "热沙风暴", - effect: "用灼热的沙子和强烈的风席卷对手\n进行攻击。有时会让对手陷入灼伤状态", - }, - "lunarBlessing": { - name: "新月祈祷", - effect: "向新月献上祈祷,回复自己和场上\n同伴的HP和状态", - }, - "takeHeart": { - name: "勇气填充", - effect: "鼓起冲劲,治愈自己的异常状态,\n同时提高自己的特攻和特防", - }, - "gMaxWildfire": { - name: "超极巨深渊灭焰", - effect: "超极巨化的喷火龙使出的火属性攻击。\n可在4回合内给予对手伤害", - }, - "gMaxBefuddle": { - name: "超极巨蝶影蛊惑", - effect: "超极巨化的巴大蝶使出的虫属性攻击。\n会让对手陷入中毒、麻痹或睡眠状态", - }, - "gMaxVoltCrash": { - name: "超极巨万雷轰顶", - effect: "超极巨化的皮卡丘使出的电属性攻击。\n会让对手陷入麻痹状态", - }, - "gMaxGoldRush": { - name: "超极巨特大金币", - effect: "超极巨化的喵喵使出的一般属性攻击。\n会让对手陷入混乱状态,\n并可获得金钱", - }, - "gMaxChiStrike": { - name: "超极巨会心一击", - effect: "超极巨化的怪力使出的格斗属性攻击。\n会变得容易击中要害", - }, - "gMaxTerror": { - name: "超极巨幻影幽魂", - effect: "超极巨化的耿鬼使出的幽灵属性攻击。\n会踩住对手的影子,\n让其无法被替换", - }, - "gMaxResonance": { - name: "超极巨极光旋律", - effect: "超极巨化的拉普拉斯使出的冰属性攻击。\n可在5回合内减弱受到的伤害", - }, - "gMaxCuddle": { - name: "超极巨热情拥抱", - effect: "超极巨化的伊布使出的一般属性攻击。\n会让对手陷入着迷状态", - }, - "gMaxReplenish": { - name: "超极巨资源再生", - effect: "超极巨化的卡比兽使出的一般属性攻击。\n会让吃掉的树果再生", - }, - "gMaxMalodor": { - name: "超极巨臭气冲天", - effect: "超极巨化的灰尘山使出的毒属性攻击。\n会让对手陷入中毒状态", - }, - "gMaxStonesurge": { - name: "超极巨岩阵以待", - effect: "超极巨化的暴噬龟使出的水属性攻击。\n会发射无数锐利的岩石", - }, - "gMaxWindRage": { - name: "超极巨旋风袭卷", - effect: "超极巨化的钢铠鸦使出的飞行属性攻击。\n可消除反射壁和光墙", - }, - "gMaxStunShock": { - name: "超极巨异毒电场", - effect: "超极巨化的颤弦蝾螈使出的电属性攻击。\n会让对手陷入中毒或麻痹状态", - }, - "gMaxFinale": { - name: "超极巨幸福圆满", - effect: "超极巨化的霜奶仙使出的妖精属性攻击。\n可回复我方的HP", - }, - "gMaxDepletion": { - name: "超极巨劣化衰变", - effect: "超极巨化的铝钢龙使出的龙属性攻击。\n可减少对手最后使用的招式的PP", - }, - "gMaxGravitas": { - name: "超极巨天道七星", - effect: "超极巨化的以欧路普使出的超能力\n属性攻击。在5回合内重力会产生变化", - }, - "gMaxVolcalith": { - name: "超极巨炎石喷发", - effect: "超极巨化的巨炭山使出的岩石属性攻击。\n可在4回合内给予对手伤害", - }, - "gMaxSandblast": { - name: "超极巨沙尘漫天", - effect: "超极巨化的沙螺蟒使出的地面属性攻击。\n在4~5回合内会狂刮沙暴", - }, - "gMaxSnooze": { - name: "超极巨睡魔降临", - effect: "超极巨化的长毛巨魔使出的恶属性攻击。\n会通过打大哈欠让对手产生睡意", - }, - "gMaxTartness": { - name: "超极巨酸不溜丢", - effect: "超极巨化的苹裹龙使出的草属性攻击。\n会降低对手的闪避率", - }, - "gMaxSweetness": { - name: "超极巨琼浆玉液", - effect: "超极巨化的丰蜜龙使出的草属性攻击。\n会治愈我方的异常状态", - }, - "gMaxSmite": { - name: "超极巨天谴雷诛", - effect: "超极巨化的布莉姆温使出的\n妖精属性攻击。\n会让对手陷入混乱状态", - }, - "gMaxSteelsurge": { - name: "超极巨钢铁阵法", - effect: "超极巨化的大王铜象使出的钢属性攻击。\n会发射无数锐利的刺", - }, - "gMaxMeltdown": { - name: "超极巨液金熔击", - effect: "超极巨化的美录梅塔使出的钢属性攻击。\n会让对手无法连续使出相同的招式", - }, - "gMaxFoamBurst": { - name: "超极巨激漩泡涡", - effect: "超极巨化的巨钳蟹使出的水属性攻击。\n会大幅降低对手的速度", - }, - "gMaxCentiferno": { - name: "超极巨百火焚野", - effect: "超极巨化的焚焰蚣使出的火属性攻击。\n可在4~5回合内将对手困在火焰中", - }, - "gMaxVineLash": { - name: "超极巨灰飞鞭灭", - effect: "超极巨化的妙蛙花使出的草属性攻击。\n可在4回合内给予对手伤害", - }, - "gMaxCannonade": { - name: "超极巨水炮轰灭", - effect: "超极巨化的水箭龟使出的水属性攻击。\n可在4回合内给予对手伤害", - }, - "gMaxDrumSolo": { - name: "超极巨狂擂乱打", - effect: "超极巨化的轰擂金刚猩使出的\n草属性攻击。\n不会受到对手特性的干扰", - }, - "gMaxFireball": { - name: "超极巨破阵火球", - effect: "超极巨化的闪焰王牌使出的火属性攻击。\n不会受到对手特性的干扰", - }, - "gMaxHydrosnipe": { - name: "超极巨狙击神射", - effect: "超极巨化的千面避役使出的水属性攻击。\n不会受到对手特性的干扰", - }, - "gMaxOneBlow": { - name: "超极巨夺命一击", - effect: "超极巨化的武道熊师使出的恶属性攻击。\n是可以无视极巨防壁的一击", - }, - "gMaxRapidFlow": { - name: "超极巨流水连击", - effect: "超极巨化的武道熊师使出的水属性攻击。\n是可以无视极巨防壁的连击", - }, - "teraBlast": { - name: "太晶爆发", - effect: "太晶化时,会放出太晶属性的能量攻击。\n比较自己的攻击和特攻,\n用数值相对较高的一项给予对方伤害。\n(其他属性)/用攻击和特攻数\n值较高的一项给予伤害。\n对正处于太晶化的对手效果绝佳。\n自己的攻击和特攻会降低。(星晶", - }, - "silkTrap": { - name: "线阱", - effect: "用丝设置陷阱。防住对方攻击的同时,\n能够降低所接触到的对手的速度", - }, - "axeKick": { - name: "下压踢", - effect: "将踢起的脚跟往下劈向对手进行攻击。\n有时会使对手混乱。\n如果劈偏则自己会受到伤害", - }, - "lastRespects": { - name: "扫墓", - effect: "为了化解伙伴的悔恨而进行攻击。\n被打倒的我方宝可梦越多,\n招式的威力越高", - }, - "luminaCrash": { - name: "琉光冲激", - effect: "放出连精神都能影响到的奇妙怪光\n进行攻击。会大幅降低对方的特防", - }, - "orderUp": { - name: "上菜", - effect: "以潇洒的身手进行攻击。\n若口中有米立龙,会按其样子提高能力", - }, - "jetPunch": { - name: "喷射拳", - effect: "将激流覆盖于拳头,以肉眼无法辨\n识的速度打出拳击。必定能够先制攻击", - }, - "spicyExtract": { - name: "辣椒精华", - effect: "放出极为辛辣的精华。\n对手的攻击会大幅提高,防御会大幅降低", - }, - "spinOut": { - name: "疾速转轮", - effect: "通过往腿上增加负荷,\n以激烈的旋转给予对手伤害。\n自己的速度会大幅降低", - }, - "populationBomb": { - name: "鼠数儿", - effect: "伙伴们会纷纷赶来集合,\n以群体行动给予对手攻击。\n连续命中1~10次", - }, - "iceSpinner": { - name: "冰旋", - effect: "脚上覆盖薄冰,旋转着撞击对手。\n通过旋转的动作破坏场地", - }, - "glaiveRush": { - name: "巨剑突击", - effect: "有勇无谋的舍身突击。使出招式后,\n对手的攻击必定会命中,\n且伤害会变成2倍", - }, - "revivalBlessing": { - name: "复生祈祷", - effect: "通过以慈爱之心祈祷,\n让陷入昏厥的后备宝可梦\n以回复一半HP的状态复活", - }, - "saltCure": { - name: "盐腌", - effect: "使对手陷入盐腌状态,\n每回合给予对手伤害。\n对手为钢或水属性时会更痛苦", - }, - "tripleDive": { - name: "三连钻", - effect: "以默契的跳跃溅起水花击向对手。\n连续3次给予伤害", - }, - "mortalSpin": { - name: "晶光转转", - effect: "通过旋转来攻击对手。\n可以摆脱绑紧、紧束、寄生种子等招式。\n还能让对手陷入中毒状态", - }, - "doodle": { - name: "描绘", - effect: "把握并映射出对手的本质,\n让自己和同伴宝可梦的特性\n变得和对手相同", - }, - "filletAway": { - name: "甩肉", - effect: "削减自己的HP,大幅提高攻击和\n特攻以及速度", - }, - "kowtowCleave": { - name: "仆刀", - effect: "下跪让对手大意后发起袭击劈向对手。\n攻击必定会命中", - }, - "flowerTrick": { - name: "千变万花", - effect: "将做了手脚的花束扔向对手进行攻击。\n必定会命中,且会击中要害", - }, - "torchSong": { - name: "闪焰高歌", - effect: "如唱歌一样喷出熊熊燃烧的火焰\n烧焦对手。会提高自己的特攻", - }, - "aquaStep": { - name: "流水旋舞", - effect: "以盈盈欲滴的轻快步伐戏耍对手并\n给予其伤害。会提高自己的速度", - }, - "ragingBull": { - name: "怒牛", - effect: "狂怒暴牛的猛烈冲撞。\n招式的属性随形态改变,\n光墙和反射壁等招式也能破坏", - }, - "makeItRain": { - name: "淘金潮", - effect: "扔出大量硬币攻击。自己的特攻会降低,\n战斗后还可以拿到钱", - }, - "psyblade": { - name: "精神剑", - effect: "用无形的利刃劈开对手。\n处于电气场地时,\n招式威力会变成1.5倍", - }, - "hydroSteam": { - name: "水蒸气", - effect: "将煮得翻滚的开水猛烈地喷向对手。\n日照强烈时,招式威力不但不会降低,\n还会变成1.5倍", - }, - "ruination": { - name: "大灾难", - effect: "引发毁灭性的灾厄,使对手的HP减半", - }, - "collisionCourse": { - name: "全开猛撞", - effect: "边变形边凶暴地落下,\n并引发起古老的大爆炸。若针对到弱点,\n威力会进一步", - }, - "electroDrift": { - name: "闪电猛冲", - effect: "边变形边高速奔走,并以未知的电\n击贯穿对手。若针对到弱点,\n威力会进一步", - }, - "shedTail": { - name: "断尾", - effect: "削减自己的HP,制造分身后会返回,\n并和后备宝可梦进行替换", - }, - "chillyReception": { - name: "冷笑话", - effect: "留下冷场的冷笑话后,\n和后备宝可梦进行替换。\n在5回合内会下雪", - }, - "tidyUp": { - name: "大扫除", - effect: "将撒菱、隐形岩、黏黏网、毒菱、\n替身全部扫除掉。自己的攻击和速\n度会提高", - }, - "snowscape": { - name: "雪景", - effect: "在5回合内会下雪。冰属性的防御会提高", - }, - "pounce": { - name: "虫扑", - effect: "飞扑向对手攻击。会降低对手的速度", - }, - "trailblaze": { - name: "起草", - effect: "跳出草丛进行攻击。通过轻快的步\n伐会提高自己的速度", - }, - "chillingWater": { - name: "泼冷水", - effect: "泼洒冰冷得足以让对手失去活力的\n水进行攻击。会降低对手的攻击", - }, - "hyperDrill": { - name: "强力钻", - effect: "急速旋转尖锐的身体部位贯穿对手。\n可以无视守住和看穿等招式", - }, - "twinBeam": { - name: "双光束", - effect: "从两眼发射出神奇的光线攻击。\n连续2次给予伤害", - }, - "rageFist": { - name: "愤怒之拳", - effect: "将愤怒化为力量攻击。\n受到攻击的次数越多,招式的威力越高", - }, - "armorCannon": { - name: "铠农炮", - effect: "熊熊燃烧自己的铠甲,\n将其做成炮弹射出攻击。\n自己的防御和特防会降低", - }, - "bitterBlade": { - name: "悔念剑", - effect: "将对世间的留恋聚集于剑尖,\n并斩击对手。可以回复给予对手伤害的\n一半HP", - }, - "doubleShock": { - name: "电光双击", - effect: "将全身所有的电力放出,\n给予对手大大的伤害。\n自己的电属性将会消失", - }, - "gigatonHammer": { - name: "巨力锤", - effect: "连同身体转起巨大的锤子进行攻击。\n这个招式无法连续使出2次", - }, - "comeuppance": { - name: "复仇", - effect: "使出招式前,将最后受到的招式的\n伤害大力返还给对手", - }, - "aquaCutter": { - name: "水波刀", - effect: "如刀刃般喷射出加压的水切开对手。\n容易击中要害", - }, - "blazingTorque": { - name: "灼热暴冲", - effect: "攻击目标造成伤害,有30%的几\n率使目标陷入灼伤状态。", - }, - "wickedTorque": { - name: "黑暗暴冲", - effect: "攻击目标造成伤害,有30%的几\n率使目标陷入睡眠状态。", - }, - "noxiousTorque": { - name: "剧毒暴冲", - effect: "攻击目标造成伤害,有30%的几\n率使目标陷入中毒状态。", - }, - "combatTorque": { - name: "格斗暴冲", - effect: "攻击目标造成伤害,有30%的几\n率使目标陷入麻痹状态。\n此招式可以命中幽灵属性的宝可梦。", - }, - "magicalTorque": { - name: "魔法暴冲", - effect: "攻击目标造成伤害,有30%的几\n率使目标陷入混乱状态。", - }, - "bloodMoon": { - name: "血月", - effect: "从赤红如血的满月发射出全部的气势。\n这个招式无法连续使出2次", - }, - "matchaGotcha": { - name: "刷刷茶炮", - effect: "发射经搅拌的茶的大炮,\n可以回复给予对手伤害的一半HP,\n有时会让对手陷入灼伤状态", - }, - "syrupBomb": { - name: "糖浆炸弹", - effect: "使粘稠的麦芽糖浆爆炸,\n让对手陷入满身糖状态,\n在3回合内持续降\n低其速度", - }, - "ivyCudgel": { - name: "棘藤棒", - effect: "用缠有藤蔓的棍棒殴打。\n属性会随所戴的面具而改变。\n容易击中要害", - }, - "electroShot": { - name: "电光束", - effect: "第1回合收集电力提高特攻,\n第2回合将高压的电力发射出去。\n下雨天气时能立刻发射", - }, - "teraStarstorm": { - name: "晶光星群", - effect: "照射出结晶的力量来驱逐敌人。\n太乐巴戈斯在星晶形态下使出时,\n能对所有对手造成伤害", - }, - "fickleBeam": { - name: "随机光", - effect: "发射光线进行攻击。有时其他的头\n也会合力发射镭射,让招式威力变成2倍", - }, - "burningBulwark": { - name: "火焰守护", - effect: "用超高温的体毛防住对手攻击的同时,\n让接触到自己的对手灼伤", - }, - "thunderclap": { - name: "迅雷", - effect: "可以比对手先使出电击进行攻击。\n对手使出的招式如果不是攻击招式\n则会失败", - }, - "mightyCleave": { - name: "强刃攻击", - effect: "用积蓄在头部的光来斩切对手。\n可以无视守护进行攻击", - }, - "tachyonCutter": { - name: "迅子利刃", - effect: "接连发射出粒子的利刃,\n连续2次给予伤害。攻击必定会命中", - }, - "hardPress": { - name: "硬压", - effect: "用手臂或钳子压迫对手。\n对手剩余的HP越多,威力越大", - }, - "dragonCheer": { - name: "龙声鼓舞", - effect: "以龙之鼓舞提高士气,\n让我方的招式变得容易击中要害。\n对龙属性的鼓舞效果会更强", - }, - "alluringVoice": { - name: "魅诱之声", - effect: "用天使般的歌声攻击对手。\n会让此回合内能力有提高的\n宝可梦陷入混乱状态", - }, - "temperFlare": { - name: "豁出去", - effect: "以自暴自弃的气势进行攻击。\n如果上一回合招式没有命中,\n威力就会翻倍", - }, - "supercellSlam": { - name: "闪电强袭", - effect: "让身体带电后压向对手。\n如果没有命中则自己会受到伤害", - }, - "psychicNoise": { - name: "精神噪音", - effect: "用令对手不舒服的音波进行攻击。\n让对手在2回合内无法通过招式、\n特性或携带的道具回复HP", - }, - "upperHand": { - name: "快手还击", - effect: "察觉到对手的动作后用掌根攻击,\n让对手畏缩。如果对手使出的招式\n不是先制攻击,则会失败", - }, - "malignantChain": { - name: "邪毒锁链", - effect: "用由毒形成的锁链缠住对手注入毒\n素加以侵蚀。有时会让对手陷入剧毒状态", - } -} as const; diff --git a/src/locales/zh_CN/nature.ts b/src/locales/zh_CN/nature.json similarity index 80% rename from src/locales/zh_CN/nature.ts rename to src/locales/zh_CN/nature.json index d4447e8b03d..60b34c9363a 100644 --- a/src/locales/zh_CN/nature.ts +++ b/src/locales/zh_CN/nature.json @@ -1,6 +1,4 @@ -import { SimpleTranslationEntries } from "#app/interfaces/locales"; - -export const nature: SimpleTranslationEntries = { +{ "Hardy": "勤奋", "Lonely": "怕寂寞", "Brave": "勇敢", @@ -26,4 +24,4 @@ export const nature: SimpleTranslationEntries = { "Sassy": "自大", "Careful": "慎重", "Quirky": "浮躁" -} as const; +} \ No newline at end of file diff --git a/src/locales/zh_CN/party-ui-handler.ts b/src/locales/zh_CN/party-ui-handler.json similarity index 89% rename from src/locales/zh_CN/party-ui-handler.ts rename to src/locales/zh_CN/party-ui-handler.json index 7d70ddd1503..db364d29ab2 100644 --- a/src/locales/zh_CN/party-ui-handler.ts +++ b/src/locales/zh_CN/party-ui-handler.json @@ -1,6 +1,4 @@ -import { SimpleTranslationEntries } from "#app/interfaces/locales"; - -export const partyUiHandler: SimpleTranslationEntries = { +{ "SEND_OUT": "上场", "SUMMARY": "概要", "CANCEL": "取消", @@ -17,7 +15,6 @@ export const partyUiHandler: SimpleTranslationEntries = { "UNPAUSE_EVOLUTION": "解除进化暂停", "REVIVE": "复活", "RENAME": "起名", - "choosePokemon": "选择一只宝可梦。", "doWhatWithThisPokemon": "要对宝可梦做什么?", "noEnergy": "{{pokemonName}}没有力气战斗了!", @@ -34,13 +31,9 @@ export const partyUiHandler: SimpleTranslationEntries = { "changeQuantity": "选择一件道具来交换。\n使用 ← 和 → 来指定数量。", "selectAnotherPokemonToSplice": "选择另一只宝可梦来融合。", "cancel": "取消", - - // Slot TM text "able": "能学会!", "notAble": "无法学习", "learned": "已习得", - - // Releasing messages "goodbye": "再见,{{pokemonName}}!", "byebye": "拜拜,{{pokemonName}}!", "farewell": "再会了,{{pokemonName}}!", @@ -50,5 +43,5 @@ export const partyUiHandler: SimpleTranslationEntries = { "illNeverForgetYou": "我不会忘记你的,{{pokemonName}}!", "untilWeMeetAgain": "下次再见了,{{pokemonName}}!", "sayonara": "撒由那拉,{{pokemonName}}!", - "smellYaLater": "拜拜了您嘞,{{pokemonName}}!", -} as const; + "smellYaLater": "拜拜了您嘞,{{pokemonName}}!" +} \ No newline at end of file diff --git a/src/locales/zh_CN/pokeball.json b/src/locales/zh_CN/pokeball.json new file mode 100644 index 00000000000..4f2a959f904 --- /dev/null +++ b/src/locales/zh_CN/pokeball.json @@ -0,0 +1,8 @@ +{ + "pokeBall": "精灵球", + "greatBall": "超级球", + "ultraBall": "高级球", + "rogueBall": "肉鸽球", + "masterBall": "大师球", + "luxuryBall": "豪华球" +} \ No newline at end of file diff --git a/src/locales/zh_CN/pokeball.ts b/src/locales/zh_CN/pokeball.ts deleted file mode 100644 index b8df88983bb..00000000000 --- a/src/locales/zh_CN/pokeball.ts +++ /dev/null @@ -1,10 +0,0 @@ -import { SimpleTranslationEntries } from "#app/interfaces/locales"; - -export const pokeball: SimpleTranslationEntries = { - "pokeBall": "精灵球", - "greatBall": "超级球", - "ultraBall": "高级球", - "rogueBall": "肉鸽球", - "masterBall": "大师球", - "luxuryBall": "豪华球", -} as const; diff --git a/src/locales/zh_CN/pokemon-form-battle.json b/src/locales/zh_CN/pokemon-form-battle.json new file mode 100644 index 00000000000..9db2cbc0154 --- /dev/null +++ b/src/locales/zh_CN/pokemon-form-battle.json @@ -0,0 +1,14 @@ +{ + "mega": "Mega {{pokemonName}}", + "mega-x": "Mega {{pokemonName}} X", + "mega-y": "Mega {{pokemonName}} Y", + "primal": "原始{{pokemonName}}", + "gigantamax": "超极巨{{pokemonName}}", + "eternamax": "无极巨{{pokemonName}}", + "megaChange": "{{preName}}超级进化成了\n{{pokemonName}}!", + "gigantamaxChange": "{{preName}}超极巨化成了\n{{pokemonName}}!", + "eternamaxChange": "{{preName}}无极巨化成了\n{{pokemonName}}!", + "revertChange": "{{pokemonName}}变回了\n原本的样子!", + "formChange": "{{preName}}变成其他样子了。", + "disguiseChange": "它的画皮被当作诱饵使用了!" +} \ No newline at end of file diff --git a/src/locales/zh_CN/pokemon-form.ts b/src/locales/zh_CN/pokemon-form.json similarity index 78% rename from src/locales/zh_CN/pokemon-form.ts rename to src/locales/zh_CN/pokemon-form.json index ea0c611e5aa..09ec54be804 100644 --- a/src/locales/zh_CN/pokemon-form.ts +++ b/src/locales/zh_CN/pokemon-form.json @@ -1,24 +1,4 @@ -import { SimpleTranslationEntries } from "#app/interfaces/locales"; - -export const battlePokemonForm: SimpleTranslationEntries = { - "mega": "Mega {{pokemonName}}", - "mega-x": "Mega {{pokemonName}} X", - "mega-y": "Mega {{pokemonName}} Y", - "primal": "原始{{pokemonName}}", - "gigantamax": "超极巨{{pokemonName}}", - "eternamax": "无极巨{{pokemonName}}", - - "megaChange": "{{preName}}超级进化成了\n{{pokemonName}}!", - "gigantamaxChange": "{{preName}}超极巨化成了\n{{pokemonName}}!", - "eternamaxChange": "{{preName}}无极巨化成了\n{{pokemonName}}!", - "revertChange": "{{pokemonName}}变回了\n原本的样子!", - "formChange": "{{preName}}变成其他样子了。", - "disguiseChange": "它的画皮被当作诱饵使用了!", -} as const; - -export const pokemonForm: SimpleTranslationEntries = { - // Starters forms - // 1G +{ "pikachuCosplay": "服装", "pikachuCoolCosplay": "摇滚巨星", "pikachuBeautyCosplay": "贵妇", @@ -27,7 +7,6 @@ export const pokemonForm: SimpleTranslationEntries = { "pikachuToughCosplay": "面罩摔跤手", "pikachuPartner": "搭档", "eeveePartner": "搭档", - // 2G "pichuSpiky": "刺刺耳", "unownA": "A", "unownB": "B", @@ -57,12 +36,10 @@ export const pokemonForm: SimpleTranslationEntries = { "unownZ": "Z", "unownExclamation": "!", "unownQuestion": "?", - // 3G "castformSunny": "晴天", "castformRainy": "雨天", "castformSnowy": "雪天", "deoxysNormal": "普通", - // 4G "burmyPlant": "草木蓑衣", "burmySandy": "砂土蓑衣", "burmyTrash": "垃圾蓑衣", @@ -75,7 +52,6 @@ export const pokemonForm: SimpleTranslationEntries = { "rotomMow": "切割", "giratinaAltered": "别种", "shayminLand": "陆上", - // 5G "basculinRedStriped": "红条纹", "basculinBlueStriped": "蓝条纹", "basculinWhiteStriped": "白条纹", @@ -88,7 +64,7 @@ export const pokemonForm: SimpleTranslationEntries = { "landorusIncarnate": "化身", "keldeoOrdinary": "通常", "meloettaAria": "歌声", - // 6G + "meloettaPirouette": "舞步形态", "froakieBattleBond": "牵绊变身", "scatterbugMeadow": "花园花纹", "scatterbugIcySnow": "冰雪花纹", @@ -134,7 +110,6 @@ export const pokemonForm: SimpleTranslationEntries = { "zygarde50Pc": "50%形态 群聚变形", "zygarde10Pc": "10%形态 群聚变形", "zygardeComplete": "完全体形态", - // 7G "oricorioBaile": "热辣热辣风格", "oricorioPompom": "啪滋啪滋风格", "oricorioPau": "呼拉呼拉风格", @@ -158,7 +133,6 @@ export const pokemonForm: SimpleTranslationEntries = { "mimikyuBusted": "现形", "magearnaOriginal": "500年前的颜色", "marshadowZenith": "全力", - // 8G "sinisteaPhony": "赝品", "sinisteaAntique": "真品", "eiscueNoIce": "解冻头", @@ -169,7 +143,6 @@ export const pokemonForm: SimpleTranslationEntries = { "zamazentaHeroOfManyBattles": "百战勇者", "zarudeDada": "老爹", "enamorusIncarnate": "化身", - // 9G "squawkabillyGreenPlumage": "绿羽毛", "squawkabillyBluePlumage": "蓝羽毛", "squawkabillyYellowPlumage": "黄羽毛", @@ -180,19 +153,18 @@ export const pokemonForm: SimpleTranslationEntries = { "gimmighoulChest": "宝箱形态", "gimmighoulRoaming": "徒步形态", "koraidonApexBuild": "顶尖形态", - "koraidonLimitedBuild":"限制形态", - "koraidonSprintingBuild":"冲刺形态", - "koraidonSwimmingBuild":"游泳形态", - "koraidonGlidingBuild":"滑翔形态", - "miraidonUltimateMode":"极限模式", - "miraidonLowPowerMode":"节能模式", - "miraidonDriveMode":"驾驶模式", - "miraidonAquaticMode":"水上模式", - "miraidonGlideMode":"滑翔模式", + "koraidonLimitedBuild": "限制形态", + "koraidonSprintingBuild": "冲刺形态", + "koraidonSwimmingBuild": "游泳形态", + "koraidonGlidingBuild": "滑翔形态", + "miraidonUltimateMode": "极限模式", + "miraidonLowPowerMode": "节能模式", + "miraidonDriveMode": "驾驶模式", + "miraidonAquaticMode": "水上模式", + "miraidonGlideMode": "滑翔模式", "poltchageistCounterfeit": "冒牌货", "poltchageistArtisan": "高档货", "paldeaTaurosCombat": "斗战种", "paldeaTaurosBlaze": "火炽种", - "paldeaTaurosAqua": "水澜种", - -} as const; + "paldeaTaurosAqua": "水澜种" +} \ No newline at end of file diff --git a/src/locales/zh_CN/pokemon-info-container.json b/src/locales/zh_CN/pokemon-info-container.json new file mode 100644 index 00000000000..15b5f4a2da5 --- /dev/null +++ b/src/locales/zh_CN/pokemon-info-container.json @@ -0,0 +1,6 @@ +{ + "moveset": "招式", + "gender": "性别:", + "ability": "特性:", + "nature": "性格:" +} \ No newline at end of file diff --git a/src/locales/zh_CN/pokemon-info-container.ts b/src/locales/zh_CN/pokemon-info-container.ts deleted file mode 100644 index eca518c3806..00000000000 --- a/src/locales/zh_CN/pokemon-info-container.ts +++ /dev/null @@ -1,8 +0,0 @@ -import { SimpleTranslationEntries } from "#app/interfaces/locales"; - -export const pokemonInfoContainer: SimpleTranslationEntries = { - "moveset": "招式", - "gender": "性别:", - "ability": "特性:", - "nature": "性格:", -} as const; diff --git a/src/locales/zh_CN/pokemon-info.ts b/src/locales/zh_CN/pokemon-info.json similarity index 76% rename from src/locales/zh_CN/pokemon-info.ts rename to src/locales/zh_CN/pokemon-info.json index f7aaf3a33cb..5194189c806 100644 --- a/src/locales/zh_CN/pokemon-info.ts +++ b/src/locales/zh_CN/pokemon-info.json @@ -1,43 +1,40 @@ -import { PokemonInfoTranslationEntries } from "#app/interfaces/locales"; - -export const pokemonInfo: PokemonInfoTranslationEntries = { - Stat: { - "HP": "最大HP", - "HPshortened": "最大HP", - "ATK": "攻击", - "ATKshortened": "攻击", - "DEF": "防御", - "DEFshortened": "防御", - "SPATK": "特攻", - "SPATKshortened": "特攻", - "SPDEF": "特防", - "SPDEFshortened": "特防", - "SPD": "速度", - "SPDshortened": "速度", - "ACC": "命中率", - "EVA": "回避率" - }, - - Type: { - "UNKNOWN": "未知", - "NORMAL": "一般", - "FIGHTING": "格斗", - "FLYING": "飞行", - "POISON": "毒", - "GROUND": "地面", - "ROCK": "岩石", - "BUG": "虫", - "GHOST": "幽灵", - "STEEL": "钢", - "FIRE": "火", - "WATER": "水", - "GRASS": "草", - "ELECTRIC": "电", - "PSYCHIC": "超能力", - "ICE": "冰", - "DRAGON": "龙", - "DARK": "恶", - "FAIRY": "妖精", - "STELLAR": "星晶", - }, -} as const; +{ + "Stat": { + "HP": "最大HP", + "HPshortened": "最大HP", + "ATK": "攻击", + "ATKshortened": "攻击", + "DEF": "防御", + "DEFshortened": "防御", + "SPATK": "特攻", + "SPATKshortened": "特攻", + "SPDEF": "特防", + "SPDEFshortened": "特防", + "SPD": "速度", + "SPDshortened": "速度", + "ACC": "命中率", + "EVA": "回避率" + }, + "Type": { + "UNKNOWN": "未知", + "NORMAL": "一般", + "FIGHTING": "格斗", + "FLYING": "飞行", + "POISON": "毒", + "GROUND": "地面", + "ROCK": "岩石", + "BUG": "虫", + "GHOST": "幽灵", + "STEEL": "钢", + "FIRE": "火", + "WATER": "水", + "GRASS": "草", + "ELECTRIC": "电", + "PSYCHIC": "超能力", + "ICE": "冰", + "DRAGON": "龙", + "DARK": "恶", + "FAIRY": "妖精", + "STELLAR": "星晶" + } +} \ No newline at end of file diff --git a/src/locales/zh_CN/pokemon-summary.ts b/src/locales/zh_CN/pokemon-summary.json similarity index 74% rename from src/locales/zh_CN/pokemon-summary.ts rename to src/locales/zh_CN/pokemon-summary.json index 24f0fbeed97..159b0a38315 100644 --- a/src/locales/zh_CN/pokemon-summary.ts +++ b/src/locales/zh_CN/pokemon-summary.json @@ -1,6 +1,4 @@ -import { TranslationEntries } from "#app/interfaces/locales"; - -export const pokemonSummary: TranslationEntries = { +{ "pokemonInfo": "宝可梦信息", "status": "状态", "powerAccuracyCategory": "威力\n命中率\n类别", @@ -11,9 +9,8 @@ export const pokemonSummary: TranslationEntries = { "expPoints": "经验值", "nextLv": "下一级", "cancel": "取消", - "memoString": "{{natureFragment}} 性格,\n{{metFragment}}", "metFragment": { - "apparently": "命中注定般地相遇于Lv.{{level}},\n{{biome}}。", - }, -} as const; + "apparently": "命中注定般地相遇于Lv.{{level}},\n{{biome}}。" + } +} \ No newline at end of file diff --git a/src/locales/zh_CN/pokemon.ts b/src/locales/zh_CN/pokemon.json similarity index 99% rename from src/locales/zh_CN/pokemon.ts rename to src/locales/zh_CN/pokemon.json index 5ff670637f4..1e70dc29e70 100644 --- a/src/locales/zh_CN/pokemon.ts +++ b/src/locales/zh_CN/pokemon.json @@ -1,6 +1,4 @@ -import { SimpleTranslationEntries } from "#app/interfaces/locales"; - -export const pokemon: SimpleTranslationEntries = { +{ "bulbasaur": "妙蛙种子", "ivysaur": "妙蛙草", "venusaur": "妙蛙花", @@ -1082,5 +1080,5 @@ export const pokemon: SimpleTranslationEntries = { "hisui_decidueye": "狙射树枭", "paldea_tauros": "肯泰罗", "paldea_wooper": "乌波", - "bloodmoon_ursaluna": "月月熊", -} as const; + "bloodmoon_ursaluna": "月月熊" +} \ No newline at end of file diff --git a/src/locales/zh_CN/run-history.json b/src/locales/zh_CN/run-history.json new file mode 100644 index 00000000000..08f430364fc --- /dev/null +++ b/src/locales/zh_CN/run-history.json @@ -0,0 +1,37 @@ +{ + "victory": "胜利!", + "defeatedWild": "被打败", + "defeatedTrainer": "被打败", + "defeatedTrainerDouble": "被组合打败", + "defeatedRival": "被劲敌打败", + "defeated": "被打败", + "defeatedWild_female": "被打败", + "defeatedTrainer_female": "被打败", + "defeatedTrainerDouble_female": "被组合打败", + "defeatedRival_female": "被劲敌打败", + "defeated_female": "被打败", + "luck": "幸运", + "score": "分数", + "mode": "模式", + "challengeRules": "规则", + "challengeMonoGen1": "一代", + "challengeMonoGen2": "二代", + "challengeMonoGen3": "三代", + "challengeMonoGen4": "四代", + "challengeMonoGen5": "五代", + "challengeMonoGen6": "六代", + "challengeMonoGen7": "七代", + "challengeMonoGen8": "八代", + "challengeMonoGen9": "九代", + "playerItems": "玩家道具", + "personalBest": "个人最佳!", + "SPDshortened": "速率", + "runInfo": "游戏记录", + "money": "金钱", + "runLength": "游戏时长", + "viewHeldItems": "持有道具", + "hallofFameText": "欢迎来到名人堂!", + "hallofFameText_female": "欢迎来到名人堂!", + "viewHallOfFame": "浏览名人堂!", + "viewEndingSplash": "浏览结算画面" +} \ No newline at end of file diff --git a/src/locales/zh_CN/save-slot-select-ui-handler.json b/src/locales/zh_CN/save-slot-select-ui-handler.json new file mode 100644 index 00000000000..a6c5348a39c --- /dev/null +++ b/src/locales/zh_CN/save-slot-select-ui-handler.json @@ -0,0 +1,7 @@ +{ + "overwriteData": "要覆盖该槽位的存档吗?", + "loading": "正在加载中...", + "wave": "层数", + "lv": "Lv", + "empty": "空" +} \ No newline at end of file diff --git a/src/locales/zh_CN/save-slot-select-ui-handler.ts b/src/locales/zh_CN/save-slot-select-ui-handler.ts deleted file mode 100644 index 001ecbe2d00..00000000000 --- a/src/locales/zh_CN/save-slot-select-ui-handler.ts +++ /dev/null @@ -1,9 +0,0 @@ -import { SimpleTranslationEntries } from "#app/interfaces/locales"; - -export const saveSlotSelectUiHandler: SimpleTranslationEntries = { - "overwriteData": "要覆盖该槽位的存档吗?", - "loading": "正在加载中...", - "wave": "层数", - "lv": "Lv", - "empty": "空", -} as const; diff --git a/src/locales/zh_CN/settings.ts b/src/locales/zh_CN/settings.json similarity index 93% rename from src/locales/zh_CN/settings.ts rename to src/locales/zh_CN/settings.json index 422b1bd591d..3ae0fa8204c 100644 --- a/src/locales/zh_CN/settings.ts +++ b/src/locales/zh_CN/settings.json @@ -1,6 +1,4 @@ -import { SimpleTranslationEntries } from "#app/interfaces/locales.js"; - -export const settings: SimpleTranslationEntries = { +{ "boy": "男孩", "girl": "女孩", "general": "常规", @@ -63,6 +61,7 @@ export const settings: SimpleTranslationEntries = { "typeHints": "属性提示", "masterVolume": "主音量", "bgmVolume": "音乐", + "fieldVolume": "场景音量", "seVolume": "音效", "musicPreference": "音乐偏好", "mixed": "全曲混合", @@ -98,5 +97,10 @@ export const settings: SimpleTranslationEntries = { "gamepadSupport": "手柄支持", "showBgmBar": "显示音乐名称", "moveTouchControls": "移动触摸控制", - "shopOverlayOpacity": "商店显示不透明度" -} as const; + "shopOverlayOpacity": "商店显示不透明度", + "shopCursorTarget": "商店指针位置", + "items": "道具", + "reroll": "刷新", + "shop": "购买", + "checkTeam": "检查队伍" +} diff --git a/src/locales/zh_CN/splash-messages.ts b/src/locales/zh_CN/splash-messages.json similarity index 89% rename from src/locales/zh_CN/splash-messages.ts rename to src/locales/zh_CN/splash-messages.json index 01efb45cd5a..f679c43cdb9 100644 --- a/src/locales/zh_CN/splash-messages.ts +++ b/src/locales/zh_CN/splash-messages.json @@ -1,6 +1,4 @@ -import { SimpleTranslationEntries } from "#app/interfaces/locales"; - -export const splashMessages: SimpleTranslationEntries = { +{ "battlesWon": "场胜利!", "joinTheDiscord": "加入Discord!", "infiniteLevels": "等级无限!", @@ -34,5 +32,5 @@ export const splashMessages: SimpleTranslationEntries = { "alsoTryRadicalRed": "也玩玩看激进红!", "eeveeExpo": "伊布博览会!", "ynoproject": "Yume Nikki 页游项目!", - "breedersInSpace": "饲养员也能上太空?", -} as const; + "breedersInSpace": "饲养员也能上太空?" +} \ No newline at end of file diff --git a/src/locales/zh_CN/starter-select-ui-handler.ts b/src/locales/zh_CN/starter-select-ui-handler.json similarity index 78% rename from src/locales/zh_CN/starter-select-ui-handler.ts rename to src/locales/zh_CN/starter-select-ui-handler.json index 2b4fc4434da..d184d5f7c63 100644 --- a/src/locales/zh_CN/starter-select-ui-handler.ts +++ b/src/locales/zh_CN/starter-select-ui-handler.json @@ -1,11 +1,4 @@ -import { SimpleTranslationEntries } from "#app/interfaces/locales"; - -/** - * The menu namespace holds most miscellaneous text that isn't directly part of the game's - * contents or directly related to Pokemon data. This includes menu navigation, settings, - * account interactions, descriptive text, etc. - */ -export const starterSelectUiHandler: SimpleTranslationEntries = { +{ "confirmStartTeam": "使用这些宝可梦开始游戏吗?", "confirmExit": "确定要退出吗?", "invalidParty": "初始队伍不可用!", @@ -49,4 +42,4 @@ export const starterSelectUiHandler: SimpleTranslationEntries = { "locked": "未解锁", "disabled": "已禁用", "uncaught": "未捕获" -}; +} \ No newline at end of file diff --git a/src/locales/zh_CN/status-effect.json b/src/locales/zh_CN/status-effect.json new file mode 100644 index 00000000000..f7fb9092107 --- /dev/null +++ b/src/locales/zh_CN/status-effect.json @@ -0,0 +1,65 @@ +{ + "none": { + "name": "无", + "description": "", + "obtain": "", + "obtainSource": "", + "activation": "", + "overlap": "", + "heal": "" + }, + "poison": { + "name": "中毒", + "description": "中毒", + "obtain": "{{pokemonNameWithAffix}}中毒了!", + "obtainSource": "{{pokemonNameWithAffix}}因{{sourceText}}中毒了!", + "activation": "{{pokemonNameWithAffix}}受到了毒的伤害!", + "overlap": "{{pokemonNameWithAffix}}已经中毒了!", + "heal": "{{pokemonNameWithAffix}}中的毒彻底清除了!" + }, + "toxic": { + "name": "剧毒", + "description": "中毒", + "obtain": "{{pokemonNameWithAffix}}中了剧毒!", + "obtainSource": "{{pokemonNameWithAffix}}因{{sourceText}}中了剧毒!", + "activation": "{{pokemonNameWithAffix}}受到了毒的伤害!", + "overlap": "{{pokemonNameWithAffix}}已经中毒了!", + "heal": "{{pokemonNameWithAffix}}中的毒彻底清除了!" + }, + "paralysis": { + "name": "麻痹", + "description": "麻痹", + "obtain": "{{pokemonNameWithAffix}}麻痹了,很难使出招式!", + "obtainSource": "{{pokemonNameWithAffix}}被{{sourceText}}麻痹了,很难使出招式!", + "activation": "{{pokemonNameWithAffix}}因身体麻痹而无法行动!", + "overlap": "{{pokemonNameWithAffix}}已经麻痹了!", + "heal": "{{pokemonNameWithAffix}}的麻痹治愈了!" + }, + "sleep": { + "name": "睡眠", + "description": "睡眠", + "obtain": "{{pokemonNameWithAffix}}睡着了!", + "obtainSource": "{{pokemonNameWithAffix}}因{{sourceText}}睡着了!", + "activation": "{{pokemonNameWithAffix}}正在呼呼大睡。", + "overlap": "{{pokemonNameWithAffix}}已经睡着了!", + "heal": "{{pokemonNameWithAffix}}醒了!" + }, + "freeze": { + "name": "冰冻", + "description": "冰冻", + "obtain": "{{pokemonNameWithAffix}}冻住了!", + "obtainSource": "{{pokemonNameWithAffix}}因{{sourceText}}冻住了!", + "activation": "{{pokemonNameWithAffix}}因冻住了而无法行动!", + "overlap": "{{pokemonNameWithAffix}}已经冻住了!", + "heal": "{{pokemonNameWithAffix}}治愈了冰冻状态!" + }, + "burn": { + "name": "灼伤", + "description": "灼伤", + "obtain": "{{pokemonNameWithAffix}}被灼伤了!", + "obtainSource": "{{pokemonNameWithAffix}}因{{sourceText}}被灼伤了!", + "activation": "{{pokemonNameWithAffix}}受到了灼伤的伤害!", + "overlap": "{{pokemonNameWithAffix}}已经被灼伤了!", + "heal": "{{pokemonNameWithAffix}}的灼伤治愈了!" + } +} \ No newline at end of file diff --git a/src/locales/zh_CN/status-effect.ts b/src/locales/zh_CN/status-effect.ts deleted file mode 100644 index b9df1733bc1..00000000000 --- a/src/locales/zh_CN/status-effect.ts +++ /dev/null @@ -1,67 +0,0 @@ -import { StatusEffectTranslationEntries } from "#app/interfaces/locales.js"; - -export const statusEffect: StatusEffectTranslationEntries = { - none: { - name: "无", - description: "", - obtain: "", - obtainSource: "", - activation: "", - overlap: "", - heal: "" - }, - poison: { - name: "中毒", - description: "中毒", - obtain: "{{pokemonNameWithAffix}}中毒了!", - obtainSource: "{{pokemonNameWithAffix}}因{{sourceText}}中毒了!", - activation: "{{pokemonNameWithAffix}}受到了毒的伤害!", - overlap: "{{pokemonNameWithAffix}}已经中毒了!", - heal: "{{pokemonNameWithAffix}}中的毒彻底清除了!" - }, - toxic: { - name: "剧毒", - description: "中毒", - obtain: "{{pokemonNameWithAffix}}中了剧毒!", - obtainSource: "{{pokemonNameWithAffix}}因{{sourceText}}中了剧毒!", - activation: "{{pokemonNameWithAffix}}受到了毒的伤害!", - overlap: "{{pokemonNameWithAffix}}已经中毒了!", - heal: "{{pokemonNameWithAffix}}中的毒彻底清除了!" - }, - paralysis: { - name: "麻痹", - description: "麻痹", - obtain: "{{pokemonNameWithAffix}}麻痹了,很难使出招式!", - obtainSource: "{{pokemonNameWithAffix}}被{{sourceText}}麻痹了,很难使出招式!", - activation: "{{pokemonNameWithAffix}}因身体麻痹而无法行动!", - overlap: "{{pokemonNameWithAffix}}已经麻痹了!", - heal: "{{pokemonNameWithAffix}}的麻痹治愈了!" - }, - sleep: { - name: "睡眠", - description: "睡眠", - obtain: "{{pokemonNameWithAffix}}睡着了!", - obtainSource: "{{pokemonNameWithAffix}}因{{sourceText}}睡着了!", - activation: "{{pokemonNameWithAffix}}正在呼呼大睡。", - overlap: "{{pokemonNameWithAffix}}已经睡着了!", - heal: "{{pokemonNameWithAffix}}醒了!" - }, - freeze: { - name: "冰冻", - description: "冰冻", - obtain: "{{pokemonNameWithAffix}}冻住了!", - obtainSource: "{{pokemonNameWithAffix}}因{{sourceText}}冻住了!", - activation: "{{pokemonNameWithAffix}}因冻住了而无法行动!", - overlap: "{{pokemonNameWithAffix}}已经冻住了!", - heal: "{{pokemonNameWithAffix}}治愈了冰冻状态!" - }, - burn: { - name: "灼伤", - description: "灼伤", - obtain: "{{pokemonNameWithAffix}}被灼伤了!", - obtainSource: "{{pokemonNameWithAffix}}因{{sourceText}}被灼伤了!", - activation: "{{pokemonNameWithAffix}}受到了灼伤的伤害!", - overlap: "{{pokemonNameWithAffix}}已经被灼伤了!", - heal: "{{pokemonNameWithAffix}}的灼伤治愈了!" - }, -} as const; diff --git a/src/locales/zh_CN/terrain.json b/src/locales/zh_CN/terrain.json new file mode 100644 index 00000000000..b56a9ce9ee8 --- /dev/null +++ b/src/locales/zh_CN/terrain.json @@ -0,0 +1,16 @@ +{ + "misty": "薄雾", + "mistyStartMessage": "脚下雾气缭绕!", + "mistyClearMessage": "脚下的雾气消失不见了!", + "mistyBlockMessage": "{{pokemonNameWithAffix}}正受到薄雾场地的保护!", + "electric": "电气", + "electricStartMessage": "脚下电光飞闪!", + "electricClearMessage": "脚下的电光消失不见了!", + "grassy": "青草", + "grassyStartMessage": "脚下青草如茵!", + "grassyClearMessage": "脚下的青草消失不见了!", + "psychic": "精神", + "psychicStartMessage": "脚下传来了奇妙的感觉!", + "psychicClearMessage": "脚下的奇妙感觉消失了!", + "defaultBlockMessage": "{{pokemonNameWithAffix}}正受到{{terrainName}}的的保护!" +} \ No newline at end of file diff --git a/src/locales/zh_CN/trainer-classes.json b/src/locales/zh_CN/trainer-classes.json new file mode 100644 index 00000000000..3a50acf5c01 --- /dev/null +++ b/src/locales/zh_CN/trainer-classes.json @@ -0,0 +1,130 @@ +{ + "ace_trainer": "精英训练家", + "ace_trainer_female": "精英训练家", + "ace_duo": "精英组合", + "artist": "艺术家", + "artist_female": "艺术家", + "backers": "啦啦队", + "backpacker": "背包客", + "backpacker_female": "背包客", + "backpackers": "背包客组合", + "baker": "面包师", + "battle_girl": "对战少女", + "beauty": "大姐姐", + "beginners": "新人训练家组合", + "biker": "飙车族", + "black_belt": "空手道王", + "breeder": "宝可梦培育家", + "breeder_female": "宝可梦培育家", + "breeders": "宝可梦培育家组合", + "clerk": "商务人士", + "clerk_female": "职场OL", + "colleagues": "商务伙伴", + "crush_kin": "格斗姐弟", + "cyclist": "自行车手", + "cyclist_female": "自行车手", + "cyclists": "自行车手组合", + "dancer": "舞者", + "dancer_female": "舞者", + "depot_agent": "铁路员工", + "doctor": "医生", + "doctor_female": "医生", + "firebreather": "吹火人", + "fisherman": "垂钓者", + "fisherman_female": "垂钓者", + "gentleman": "绅士", + "guitarist": "吉他手", + "guitarist_female": "吉他手", + "harlequin": "滑稽演员", + "hiker": "登山男", + "hooligans": "坏组合", + "hoopster": "篮球选手", + "infielder": "棒球选手", + "janitor": "清洁员", + "lady": "千金小姐", + "lass": "迷你裙", + "linebacker": "美式橄榄球选手", + "maid": "女仆", + "madame": "女士", + "medical_team": "医疗团队", + "musician": "音乐家", + "hex_maniac": "灵异迷", + "nurse": "护士", + "nursery_aide": "幼儿园老师", + "officer": "警察", + "parasol_lady": "阳伞姐姐", + "pilot": "飞行员", + "pokéfan": "发烧友俱乐部", + "pokéfan_female": "发烧友俱乐部", + "pokéfan_family": "同好夫妇", + "preschooler": "幼儿园小朋友", + "preschooler_female": "幼儿园小朋友", + "preschoolers": "幼儿园小朋友组合", + "psychic": "超能力者", + "psychic_female": "超能力者", + "psychics": "超能力者组合", + "pokémon_ranger": "宝可梦巡护员", + "pokémon_ranger_female": "宝可梦巡护员", + "pokémon_rangers": "宝可梦巡护员组合", + "ranger": "巡护员", + "restaurant_staff": "服务生组合", + "rich": "富豪", + "rich_female": "富豪太太", + "rich_boy": "富家少爷", + "rich_couple": "富豪夫妇", + "rich_kid": "富家小孩", + "rich_kid_female": "富家小孩", + "rich_kids": "富家小孩组合", + "roughneck": "光头男", + "sailor": "水手", + "scientist": "研究员", + "scientist_female": "研究员", + "scientists": "研究员组合", + "smasher": "网球选手", + "snow_worker": "雪地工人", + "snow_worker_female": "雪地工人", + "striker": "足球选手", + "school_kid": "补习班学生", + "school_kid_female": "补习班学生", + "school_kids": "补习班学生组合", + "swimmer": "泳裤小伙子", + "swimmer_female": "比基尼大姐姐", + "swimmers": "泳装情侣", + "twins": "双胞胎", + "veteran": "资深训练家", + "veteran_female": "资深训练家", + "veteran_duo": "资深组合", + "waiter": "服务生", + "waitress": "女服务生", + "worker": "工人", + "worker_female": "工人", + "workers": "工人组合", + "youngster": "短裤小子", + "rocket_grunt": "火箭队手下", + "rocket_grunt_female": "火箭队手下", + "rocket_grunts": "火箭队手下们", + "magma_grunt": "熔岩队手下", + "magma_grunt_female": "熔岩队手下", + "magma_grunts": "熔岩队手下们", + "aqua_grunt": "海洋队手下", + "aqua_grunt_female": "海洋队手下", + "aqua_grunts": "海洋队手下们", + "galactic_grunt": "银河队手下", + "galactic_grunt_female": "银河队手下", + "galactic_grunts": "银河队手下们", + "plasma_grunt": "等离子队手下", + "plasma_grunt_female": "等离子队手下", + "plasma_grunts": "等离子队手下们", + "flare_grunt": "闪焰队手下", + "flare_grunt_female": "闪焰队手下", + "flare_grunts": "闪焰队手下们", + "aether_grunt": "以太基金会职员", + "aether_grunt_female": "以太基金会职员", + "aether_grunts": "以太基金会职员", + "skull_grunt": "骷髅队手下", + "skull_grunt_female": "骷髅队手下", + "skull_grunts": "骷髅队手下", + "macro_grunt": "马洛科蒙训练师", + "macro_grunt_female": "马洛科蒙训练师", + "macro_grunts": "马洛科蒙训练师" +} diff --git a/src/locales/zh_CN/trainer-names.json b/src/locales/zh_CN/trainer-names.json new file mode 100644 index 00000000000..9e03a514ff7 --- /dev/null +++ b/src/locales/zh_CN/trainer-names.json @@ -0,0 +1,164 @@ +{ + "brock": "小刚", + "misty": "小霞", + "lt_surge": "马志士", + "erika": "莉佳", + "janine": "阿杏", + "sabrina": "娜姿", + "blaine": "夏伯", + "giovanni": "坂木", + "falkner": "阿速", + "bugsy": "阿笔", + "whitney": "小茜", + "morty": "松叶", + "chuck": "阿四", + "jasmine": "阿蜜", + "pryce": "柳伯", + "clair": "小椿", + "roxanne": "杜娟", + "brawly": "藤树", + "wattson": "铁旋", + "flannery": "亚莎", + "norman": "千里", + "winona": "娜琪", + "tate": "小枫", + "liza": "小南", + "juan": "亚当", + "roark": "瓢太", + "gardenia": "菜种", + "maylene": "阿李", + "crasher_wake": "吉宪", + "fantina": "梅丽莎", + "byron": "东瓜", + "faba": "扎奥博", + "plumeria": "布尔美丽", + "oleana": "奥莉薇", + + "candice": "小菘", + "volkner": "电次", + "cilan": "天桐", + "chili": "伯特", + "cress": "寇恩", + "cheren": "黑连", + "lenora": "芦荟", + "roxie": "霍米加", + "burgh": "亚堤", + "elesa": "小菊儿", + "clay": "菊老大", + "skyla": "风露", + "brycen": "哈奇库", + "drayden": "夏卡", + "marlon": "西子伊", + "viola": "紫罗兰", + "grant": "查克洛", + "korrina": "可尔妮", + "ramos": "福爷", + "clemont": "希特隆", + "valerie": "玛绣", + "olympia": "葛吉花", + "wulfric": "得抚", + "milo": "亚洛", + "nessa": "露璃娜", + "kabu": "卡芜", + "bea": "彩豆", + "allister": "欧尼奥", + "opal": "波普菈", + "bede": "彼特", + "gordie": "玛瓜", + "melony": "美蓉", + "piers": "聂梓", + "marnie": "玛俐", + "raihan": "奇巴纳", + "katy": "阿枫", + "brassius": "寇沙", + "iono": "奇树", + "kofu": "海岱", + "larry": "青木", + "ryme": "莱姆", + "tulip": "莉普", + "grusha": "古鲁夏", + "lorelei": "科拿", + "bruno": "希巴", + "agatha": "菊子", + "lance": "阿渡", + "will": "一树", + "koga": "阿桔", + "karen": "梨花", + "sidney": "花月", + "phoebe": "芙蓉", + "glacia": "波妮", + "drake": "源治", + "aaron": "阿柳", + "bertha": "菊野", + "flint": "大叶", + "lucian": "悟松", + "shauntal": "婉龙", + "marshal": "连武", + "grimsley": "越橘", + "caitlin": "嘉德丽雅", + "malva": "帕琦拉", + "siebold": "志米", + "wikstrom": "雁铠", + "drasna": "朵拉塞娜", + "hala": "哈拉", + "molayne": "马睿因", + "olivia": "丽姿", + "acerola": "阿塞萝拉", + "kahili": "卡希丽", + "rika": "辛俐", + "poppy": "波琵", + "hassel": "八朔", + "crispin": "赤松", + "amarys": "纳莉", + "lacey": "紫竽", + "drayton": "杜若", + "blue": "青绿", + "red": "赤红", + "steven": "大吾", + "wallace": "米可利", + "cynthia": "竹兰", + "alder": "阿戴克", + "iris": "艾莉丝", + "diantha": "卡露妮", + "hau": "哈乌", + "leon": "丹帝", + "geeta": "也慈", + "nemona": "妮莫", + "kieran": "乌栗", + "rival": "芬恩", + "rival_female": "艾薇", + "archer": "阿波罗", + "ariana": "雅典娜", + "proton": "兰斯", + "petrel": "拉姆达", + "tabitha": "火村", + "courtney": "火雁", + "shelly": "阿泉", + "matt": "阿潮", + "mars": "伙星", + "jupiter": "碎星", + "saturn": "镇星", + "zinzolin": "维奥", + "rood": "罗德", + "xerosic": "库瑟洛斯奇", + "bryony": "芭菈", + "maxie": "赤焰松", + "archie": "水梧桐", + "cyrus": "赤日", + "ghetsis": "魁奇思", + "lysandre": "弗拉达利", + "lusamine": "露莎米奈", + "guzma": "古兹马", + "rose": "洛兹", + + "blue_red_double": "青绿 & 赤红", + "red_blue_double": "赤红 & 青绿", + "tate_liza_double": "小枫 & 小南", + "liza_tate_double": "小南 & 小枫", + "steven_wallace_double": "大吾 & 米可利", + "wallace_steven_double": "米可利 & 大吾", + "alder_iris_double": "阿戴克 & 艾莉丝", + "iris_alder_double": "艾莉丝 & 阿戴克", + "marnie_piers_double": "玛俐 & 聂梓", + "piers_marnie_double": "聂梓 & 玛俐" +} diff --git a/src/locales/zh_CN/trainer-titles.json b/src/locales/zh_CN/trainer-titles.json new file mode 100644 index 00000000000..07654ec8fc3 --- /dev/null +++ b/src/locales/zh_CN/trainer-titles.json @@ -0,0 +1,38 @@ +{ + "elite_four": "四天王", + "elite_four_female": "四天王", + "gym_leader": "道馆馆主", + "gym_leader_female": "道馆馆主", + "gym_leader_double": "道馆馆主搭档", + "champion": "冠军", + "champion_female": "冠军", + "champion_double": "冠军搭档", + "rival": "劲敌", + "professor": "博士", + "frontier_brain": "开拓头脑", + "rocket_boss": "火箭队老大", + "magma_boss": "熔岩队老大", + "aqua_boss": "海洋队老大", + "galactic_boss": "银河队老大", + "plasma_boss": "等离子队老大", + "flare_boss": "闪焰队老大", + "aether_boss": "以太基金会理事长", + "skull_boss": "骷髅队老大", + "macro_boss": "马洛科蒙总裁", + + "rocket_admin": "火箭队干部", + "rocket_admin_female": "火箭队干部", + "magma_admin": "熔岩队干部", + "magma_admin_female": "熔岩队干部", + "aqua_admin": "海洋队干部", + "aqua_admin_female": "海洋队干部", + "galactic_commander": "银河队干部", + "galactic_commander_female": "银河队干部", + "plasma_sage": "等离子队贤人", + "plasma_admin": "等离子队干部", + "flare_admin": "闪焰队干部", + "flare_admin_female": "闪焰队干部", + "aether_admin": "以太基金会干部", + "skull_admin": "骷髅队干部", + "macro_admin": "马洛科蒙干部" +} diff --git a/src/locales/zh_CN/trainers.ts b/src/locales/zh_CN/trainers.ts deleted file mode 100644 index ab7b3fce6ac..00000000000 --- a/src/locales/zh_CN/trainers.ts +++ /dev/null @@ -1,380 +0,0 @@ -import {SimpleTranslationEntries} from "#app/interfaces/locales"; - -// Titles of special trainers like gym leaders, elite four, and the champion -export const titles: SimpleTranslationEntries = { - "elite_four": "四天王", - "elite_four_female": "四天王", - "gym_leader": "道馆馆主", - "gym_leader_female": "道馆馆主", - "gym_leader_double": "道馆馆主搭档", - "champion": "冠军", - "champion_female": "冠军", - "champion_double": "冠军搭档", - "rival": "劲敌", - "professor": "博士", - "frontier_brain": "开拓头脑", - "rocket_boss": "火箭队老大", - "magma_boss": "熔岩队老大", - "aqua_boss": "海洋队老大", - "galactic_boss": "银河队老大", - "plasma_boss": "等离子队老大", - "flare_boss": "闪焰队老大", - - "rocket_admin": "火箭队干部", - "rocket_admin_female": "火箭队干部", - "magma_admin": "熔岩队干部", - "magma_admin_female": "熔岩队干部", - "aqua_admin": "海洋队干部", - "aqua_admin_female": "海洋队干部", - "galactic_commander": "银河队干部", - "galactic_commander_female": "银河队干部", - "plasma_sage": "等离子队贤人", - "plasma_admin": "等离子队干部", - "flare_admin": "闪焰队干部", - "flare_admin_female": "闪焰队干部", - // Maybe if we add the evil teams we can add "Team Rocket" and "Team Aqua" etc. here as well as "Team Rocket Boss" and "Team Aqua Admin" etc. -} as const; - -// Titles of trainers like "Youngster" or "Lass" -export const trainerClasses: SimpleTranslationEntries = { - "ace_trainer": "精英训练家", - "ace_trainer_female": "精英训练家", - "ace_duo": "精英组合", - "artist": "艺术家", - "artist_female": "艺术家", - "backers": "啦啦队", - "backpacker": "背包客", - "backpacker_female": "背包客", - "backpackers": "背包客组合", - "baker": "面包师", - "battle_girl": "对战少女", - "beauty": "大姐姐", - "beginners": "新人训练家组合", - "biker": "飙车族", - "black_belt": "空手道王", - "breeder": "宝可梦培育家", - "breeder_female": "宝可梦培育家", - "breeders": "宝可梦培育家组合", - "clerk": "商务人士", - "clerk_female": "职场OL", - "colleagues": "商务伙伴", - "crush_kin": "格斗姐弟", - "cyclist": "自行车手", - "cyclist_female": "自行车手", - "cyclists": "自行车手组合", - "dancer": "舞者", - "dancer_female": "舞者", - "depot_agent": "铁路员工", - "doctor": "医生", - "doctor_female": "医生", - "firebreather": "吹火人", - "fisherman": "垂钓者", - "fisherman_female": "垂钓者", - "gentleman": "绅士", - "guitarist": "吉他手", - "guitarist_female": "吉他手", - "harlequin": "滑稽演员", - "hiker": "登山男", - "hooligans": "坏组合", - "hoopster": "篮球选手", - "infielder": "棒球选手", - "janitor": "清洁员", - "lady": "千金小姐", - "lass": "迷你裙", - "linebacker": "美式橄榄球选手", - "maid": "女仆", - "madame": "女士", - "medical_team": "医疗团队", - "musician": "音乐家", - "hex_maniac": "灵异迷", - "nurse": "护士", - "nursery_aide": "幼儿园老师", - "officer": "警察", - "parasol_lady": "阳伞姐姐", - "pilot": "飞行员", - "pokéfan": "发烧友俱乐部", - "pokéfan_female": "发烧友俱乐部", - "pokéfan_family": "同好夫妇", - "preschooler": "幼儿园小朋友", - "preschooler_female": "幼儿园小朋友", - "preschoolers": "幼儿园小朋友组合", - "psychic": "超能力者", - "psychic_female": "超能力者", - "psychics": "超能力者组合", - "pokémon_ranger": "宝可梦巡护员", - "pokémon_ranger_female": "宝可梦巡护员", - "pokémon_rangers": "宝可梦巡护员组合", - "ranger": "巡护员", - "restaurant_staff": "服务生组合", - "rich": "富豪", - "rich_female": "富豪太太", - "rich_boy": "富家少爷", - "rich_couple": "富豪夫妇", - "rich_kid": "富家小孩", - "rich_kid_female": "富家小孩", - "rich_kids": "富家小孩组合", - "roughneck": "光头男", - "sailor": "水手", - "scientist": "研究员", - "scientist_female": "研究员", - "scientists": "研究员组合", - "smasher": "网球选手", - "snow_worker": "雪地工人", - "snow_worker_female": "雪地工人", - "striker": "足球选手", - "school_kid": "补习班学生", - "school_kid_female": "补习班学生", - "school_kids": "补习班学生组合", - "swimmer": "泳裤小伙子", - "swimmer_female": "比基尼大姐姐", - "swimmers": "泳装情侣", - "twins": "双胞胎", - "veteran": "资深训练家", - "veteran_female": "资深训练家", - "veteran_duo": "资深组合", - "waiter": "服务生", - "waitress": "女服务生", - "worker": "工人", - "worker_female": "工人", - "workers": "工人组合", - "youngster": "短裤小子", - "rocket_grunt": "火箭队手下", - "rocket_grunt_female": "火箭队手下", - "rocket_grunts": "火箭队手下们", - "magma_grunt": "熔岩队手下", - "magma_grunt_female": "熔岩队手下", - "magma_grunts": "熔岩队手下们", - "aqua_grunt": "海洋队手下", - "aqua_grunt_female": "海洋队手下", - "aqua_grunts": "海洋队手下们", - "galactic_grunt": "银河队手下", - "galactic_grunt_female": "银河队手下", - "galactic_grunts": "银河队手下们", - "plasma_grunt": "等离子队手下", - "plasma_grunt_female": "等离子队手下", - "plasma_grunts": "等离子队手下们", - "flare_grunt": "闪焰队手下", - "flare_grunt_female": "闪焰队手下", - "flare_grunts": "闪焰队手下们", -} as const; - -// Names of special trainers like gym leaders, elite four, and the champion -export const trainerNames: SimpleTranslationEntries = { - // ---- 馆主 Gym leader ---- - // 关都地区 Kanto Region - "brock": "小刚", - "misty": "小霞", - "lt_surge": "马志士", - "erika": "莉佳", - "janine": "阿杏", - "sabrina": "娜姿", - "blaine": "夏伯", - "giovanni": "坂木", - - // 城都地区 Johto Region - "falkner": "阿速", - "bugsy": "阿笔", - "whitney": "小茜", - "morty": "松叶", - "chuck": "阿四", - "jasmine": "阿蜜", - "pryce": "柳伯", - "clair": "小椿", - - // 丰缘地区 Hoenn Region - "roxanne": "杜娟", - "brawly": "藤树", - "wattson": "铁旋", - "flannery": "亚莎", - "norman": "千里", - "winona": "娜琪", - "tate": "小枫", - "liza": "小南", - "juan": "亚当", - - // 神奥地区 Sinnoh Region - "roark": "瓢太", - "gardenia": "菜种", - "maylene": "阿李", - "crasher_wake": "吉宪", - "fantina": "梅丽莎", - "byron": "东瓜", - "candice": "小菘", - "volkner": "电次", - - // 合众地区 Unova Region - "cilan": "天桐", - "chili": "伯特", - "cress": "寇恩", - "cheren": "黑连", - "lenora": "芦荟", - "roxie": "霍米加", - "burgh": "亚堤", - "elesa": "小菊儿", - "clay": "菊老大", - "skyla": "风露", - "brycen": "哈奇库", - "drayden": "夏卡", - "marlon": "西子伊", - - // 卡洛斯地区 Kalos Region - "viola": "紫罗兰", - "grant": "查克洛", - "korrina": "可尔妮", - "ramos": "福爷", - "clemont": "希特隆", - "valerie": "玛绣", - "olympia": "葛吉花", - "wulfric": "得抚", - - // 伽勒尔地区 Galar Region - "milo": "亚洛", - "nessa": "露璃娜", - "kabu": "卡芜", - "bea": "彩豆", - "allister": "欧尼奥", - "opal": "波普菈", - "bede": "彼特", - "gordie": "玛瓜", - "melony": "美蓉", - "piers": "聂梓", - "marnie": "玛俐", - "raihan": "奇巴纳", - - // 帕底亚地区 Paldea Region - "katy": "阿枫", - "brassius": "寇沙", - "iono": "奇树", - "kofu": "海岱", - "larry": "青木", - "ryme": "莱姆", - "tulip": "莉普", - "grusha": "古鲁夏", - - // ---- 四天王 Elite Four ---- - // 关都地区 Kanto Region - "lorelei": "科拿", - "bruno": "希巴", - "agatha": "菊子", - "lance": "阿渡", - - // 城都地区 Johto Region - "will": "一树", - "koga": "阿桔", - "karen": "梨花", - - // 丰都地区 Hoenn Region - "sidney": "花月", - "phoebe": "芙蓉", - "glacia": "波妮", - "drake": "源治", - - // 神奥地区 Sinnoh Region - "aaron": "阿柳", - "bertha": "菊野", - "flint": "大叶", - "lucian": "悟松", - - // 合众地区 Unova Region - "shauntal": "婉龙", - "marshal": "连武", - "grimsley": "越橘", - "caitlin": "嘉德丽雅", - - // 卡洛斯地区 Kalos Region - "malva": "帕琦拉", - "siebold": "志米", - "wikstrom": "雁铠", - "drasna": "朵拉塞娜", - - // 阿罗拉地区 Alola Region - "hala": "哈拉", - "molayne": "马睿因", - "olivia": "丽姿", - "acerola": "阿塞萝拉", - "kahili": "卡希丽", - - // 帕底亚地区 Paldea Region - "rika": "辛俐", - "poppy": "波琵", - "hassel": "八朔", - - // 蓝莓学院 Blueberry Academy - "crispin": "赤松", - "amarys": "纳莉", - "lacey": "紫竽", - "drayton": "杜若", - - // ---- 冠军 Champion ---- - // 关都地区 Kanto Region - "blue": "青绿", - "red": "赤红", - - // 丰缘地区 Hoenn Region - "steven": "大吾", - "wallace": "米可利", - - // 神奥地区 Sinnoh Region - "cynthia": "竹兰", - - // 合众地区 Unova Region - "alder": "阿戴克", - "iris": "艾莉丝", - - // 卡洛斯地区 Kalos Region - "diantha": "卡露妮", - - // 阿罗拉地区 Alola Region - "hau": "哈乌", - - // 伽勒尔地区 Galar Region - "leon": "丹帝", - - // 帕底亚地区 paldea Region - "geeta": "也慈", - "nemona": "妮莫", - - // 蓝莓学院 Blueberry academy - "kieran": "乌栗", - - // 劲敌 rival - "rival": "芬恩", - "rival_female": "艾薇", - - // Evil Team Admins - "archer": "阿波罗", - "ariana": "雅典娜", - "proton": "兰斯", - "petrel": "拉姆达", - "tabitha": "火村", - "courtney": "火雁", - "shelly": "阿泉", - "matt": "阿潮", - "mars": "伙星", - "jupiter": "碎星", - "saturn": "镇星", - "zinzolin": "维奥", - "rood": "罗德", - "xerosic": "库瑟洛斯奇", - "bryony": "芭菈", - - // ---- 组织老大 Bosses ---- - "maxie": "赤焰松", - "archie": "水梧桐", - "cyrus": "赤日", - "ghetsis": "魁奇思", - "lysandre": "弗拉达利", - - - // Double Names - "blue_red_double": "青绿 & 赤红", - "red_blue_double": "赤红 & 青绿", - "tate_liza_double": "小枫 & 小南", - "liza_tate_double": "小南 & 小枫", - "steven_wallace_double": "大吾 & 米可利", - "wallace_steven_double": "米可利 & 大吾", - "alder_iris_double": "阿戴克 & 艾莉丝", - "iris_alder_double": "艾莉丝 & 阿戴克", - "marnie_piers_double": "玛俐 & 聂梓", - "piers_marnie_double": "聂梓 & 玛俐", -} as const; diff --git a/src/locales/zh_CN/tutorial.json b/src/locales/zh_CN/tutorial.json new file mode 100644 index 00000000000..2f76b2ba2b5 --- /dev/null +++ b/src/locales/zh_CN/tutorial.json @@ -0,0 +1,10 @@ +{ + "intro": "欢迎来到PokéRogue!这是一款以战斗为核心的\n融合了roguelite元素的宝可梦同人游戏。\n$本游戏未进行商业化,我们没有\nPokémon或Pokémon使用的版\n$权资产的所有权。\n$游戏仍在开发中,但已可完整游玩。如需报\n告错误,请通过 Discord 社区。\n$如果游戏运行缓慢,请确保在浏览器设置中\n打开了“硬件加速”。", + "accessMenu": "在等待输入时,按 M 或 Escape 键可访\n问菜单。菜单包含设置和各种功能。", + "menu": "在此菜单中,您可以访问设置。\n$在设置中,您可以更改游戏速度、窗口样式\n和其他选项。\n$这里还有各种其他功能,请务必全部查看!", + "starterSelect": "在此页面中,您可以通过按Z或空格键选择\n您的初始宝可梦。这些是您最初的队伍成员。\n$每个初始宝可梦都有一个费用值。您的队伍\n最多可以拥有6名成员,只要总费用不超过10。\n$您还可以根据您捕获或孵化的变种选择性别\n、特性和形态。\n$一个物种个体值是您捕获或孵化的所有宝可\n梦中最好的,所以尽量获得更多同种宝可梦!", + "pokerus": "每天随机3个可选的初始宝可梦会有紫色边\n框。\n$如果您看到您拥有的初始宝可梦带有紫色边\n框,请尝试将其添加到您的队伍中。请务必\n$查看其概况!", + "statChange": "只要您的宝可梦没有被召回,属性变化就会\n在战斗中持续存在。\n$在训练家战斗之前和进入新的宝可梦群落之\n前,您的宝可梦会被召回。\n$您还可以通过按住C或Shift键来查看\n场上宝可梦的能力变化。", + "selectItem": "每次战斗后,您都可以从多个随机物品中\n选择其中一个。\n$这些物品包括消耗品、宝可梦携带物品和永\n久被动道具。\n$大多数非消耗品的效果会以各种方式叠加。\n$某些物品只有在可以使用时才会出现,例如\n进化物品。\n$您还可以使用转移选项在宝可梦之间转移携\n带物品。\n$一旦您获得了携带物品,转移选项就会出现\n在右下角。\n$您可以用金钱购买消耗品,并且随着您游戏\n的深入,将会有更多种类的消耗品可供选择。\n$请务必在选择随机物品之前购买这些消耗品\n因为一旦您选择,游戏就会进入下一场战斗。", + "eggGacha": "在此页面中,您可以使用您的兑换券兑换宝\n可梦蛋。\n$蛋需要孵化,并且在每场战斗后都会减少孵\n化周期。稀有蛋需要更长时间才能孵化。\n$孵化的宝可梦不会被添加到您的队伍中,它\n们将被添加到您的初始宝可梦中。\n$从蛋中孵化的宝可梦通常比野生宝可梦具有\n更好的个体值。\n$有些宝可梦只能从蛋中获得。\n$有 3 种不同的扭蛋机可供选择,每种扭蛋机\n都有不同的奖励,请选择最适合您的!" +} \ No newline at end of file diff --git a/src/locales/zh_CN/tutorial.ts b/src/locales/zh_CN/tutorial.ts deleted file mode 100644 index e9c428aac9f..00000000000 --- a/src/locales/zh_CN/tutorial.ts +++ /dev/null @@ -1,44 +0,0 @@ -import { SimpleTranslationEntries } from "#app/interfaces/locales"; - -export const tutorial: SimpleTranslationEntries = { - "intro": `欢迎来到PokéRogue!这是一款以战斗为核心的\n融合了roguelite元素的宝可梦同人游戏。 - $本游戏未进行商业化,我们没有\nPokémon或Pokémon使用的版 - $权资产的所有权。 - $游戏仍在开发中,但已可完整游玩。如需报\n告错误,请通过 Discord 社区。 - $如果游戏运行缓慢,请确保在浏览器设置中\n打开了“硬件加速”。`, - - "accessMenu": "在等待输入时,按 M 或 Escape 键可访\n问菜单。菜单包含设置和各种功能。", - - "menu": `在此菜单中,您可以访问设置。 - $在设置中,您可以更改游戏速度、窗口样式\n和其他选项。 - $这里还有各种其他功能,请务必全部查看!`, - - "starterSelect": `在此页面中,您可以通过按Z或空格键选择\n您的初始宝可梦。这些是您最初的队伍成员。 - $每个初始宝可梦都有一个费用值。您的队伍\n最多可以拥有6名成员,只要总费用不超过10。 - $您还可以根据您捕获或孵化的变种选择性别\n、特性和形态。 - $一个物种个体值是您捕获或孵化的所有宝可\n梦中最好的,所以尽量获得更多同种宝可梦!`, - - "pokerus": `每天随机3个可选的初始宝可梦会有紫色边\n框。 - $如果您看到您拥有的初始宝可梦带有紫色边\n框,请尝试将其添加到您的队伍中。请务必 - $查看其概况!`, - - "statChange": `只要您的宝可梦没有被召回,属性变化就会\n在战斗中持续存在。 - $在训练家战斗之前和进入新的宝可梦群落之\n前,您的宝可梦会被召回。 - $您还可以通过按住C或Shift键来查看\n场上宝可梦的能力变化。`, - - "selectItem": `每次战斗后,您都可以从多个随机物品中\n选择其中一个。 - $这些物品包括消耗品、宝可梦携带物品和永\n久被动道具。 - $大多数非消耗品的效果会以各种方式叠加。 - $某些物品只有在可以使用时才会出现,例如\n进化物品。 - $您还可以使用转移选项在宝可梦之间转移携\n带物品。 - $一旦您获得了携带物品,转移选项就会出现\n在右下角。 - $您可以用金钱购买消耗品,并且随着您游戏\n的深入,将会有更多种类的消耗品可供选择。 - $请务必在选择随机物品之前购买这些消耗品\n因为一旦您选择,游戏就会进入下一场战斗。`, - - "eggGacha": `在此页面中,您可以使用您的兑换券兑换宝\n可梦蛋。 - $蛋需要孵化,并且在每场战斗后都会减少孵\n化周期。稀有蛋需要更长时间才能孵化。 - $孵化的宝可梦不会被添加到您的队伍中,它\n们将被添加到您的初始宝可梦中。 - $从蛋中孵化的宝可梦通常比野生宝可梦具有\n更好的个体值。 - $有些宝可梦只能从蛋中获得。 - $有 3 种不同的扭蛋机可供选择,每种扭蛋机\n都有不同的奖励,请选择最适合您的!`, -} as const; diff --git a/src/locales/zh_CN/voucher.ts b/src/locales/zh_CN/voucher.json similarity index 63% rename from src/locales/zh_CN/voucher.ts rename to src/locales/zh_CN/voucher.json index 613c96c6da8..c913affda7d 100644 --- a/src/locales/zh_CN/voucher.ts +++ b/src/locales/zh_CN/voucher.json @@ -1,11 +1,9 @@ -import { SimpleTranslationEntries } from "#app/interfaces/locales"; - -export const voucher: SimpleTranslationEntries = { - "vouchers": "兑换券", - "eggVoucher": "初级扭蛋券", - "eggVoucherPlus": "中级扭蛋券", - "eggVoucherPremium": "高级扭蛋券", - "eggVoucherGold": "黄金扭蛋券", - "locked": "锁定", - "defeatTrainer": "你打败了{{trainerName}}" -} as const; +{ + "vouchers": "兑换券", + "eggVoucher": "初级扭蛋券", + "eggVoucherPlus": "中级扭蛋券", + "eggVoucherPremium": "高级扭蛋券", + "eggVoucherGold": "黄金扭蛋券", + "locked": "锁定", + "defeatTrainer": "你打败了{{trainerName}}" +} \ No newline at end of file diff --git a/src/locales/zh_CN/weather.ts b/src/locales/zh_CN/weather.json similarity index 56% rename from src/locales/zh_CN/weather.ts rename to src/locales/zh_CN/weather.json index ea4deffbd55..65f677044ac 100644 --- a/src/locales/zh_CN/weather.ts +++ b/src/locales/zh_CN/weather.json @@ -1,66 +1,31 @@ -import { SimpleTranslationEntries } from "#app/interfaces/locales"; - -/** - * The weather namespace holds text displayed when weather is active during a battle - */ -export const weather: SimpleTranslationEntries = { +{ "sunnyStartMessage": "日照变强了!", "sunnyLapseMessage": "日照很强。", "sunnyClearMessage": "日照复原了。", - "rainStartMessage": "开始下雨了!", "rainLapseMessage": "雨继续下。", "rainClearMessage": "雨停了。", - "sandstormStartMessage": "开始刮沙暴了!", "sandstormLapseMessage": "沙暴肆虐。", "sandstormClearMessage": "沙暴停止了!", "sandstormDamageMessage": "沙暴袭击了{{pokemonNameWithAffix}}!", - "hailStartMessage": "开始下冰雹了!", "hailLapseMessage": "冰雹继续肆虐。", "hailClearMessage": "冰雹不再下了。", "hailDamageMessage": "冰雹袭击了{{pokemonNameWithAffix}}!", - "snowStartMessage": "开始下雪了!", "snowLapseMessage": "雪继续下。", "snowClearMessage": "雪停了。", - "fogStartMessage": "起雾了!", "fogLapseMessage": "雾很浓。", "fogClearMessage": "雾散了。", - "heavyRainStartMessage": "开始下起了暴雨!", "heavyRainLapseMessage": "暴雨势头不减。", "heavyRainClearMessage": "暴雨停了。", - "harshSunStartMessage": "日照变得非常强了!", "harshSunLapseMessage": "强日照势头不减。", "harshSunClearMessage": "日照复原了。", - "strongWindsStartMessage": "吹起了神秘的乱流!", "strongWindsLapseMessage": "神秘的乱流势头不减。", - "strongWindsEffectMessage": "The mysterious air current weakened the attack!", "strongWindsClearMessage": "神秘的乱流停止了。" -}; - -export const terrain: SimpleTranslationEntries = { - "misty": "薄雾", - "mistyStartMessage": "脚下雾气缭绕!", - "mistyClearMessage": "脚下的雾气消失不见了!", - "mistyBlockMessage": "{{pokemonNameWithAffix}}正受到薄雾场地的保护!", - - "electric": "电气", - "electricStartMessage": "脚下电光飞闪!", - "electricClearMessage": "脚下的电光消失不见了!", - - "grassy": "青草", - "grassyStartMessage": "脚下青草如茵!", - "grassyClearMessage": "脚下的青草消失不见了!", - - "psychic": "精神", - "psychicStartMessage": "脚下传来了奇妙的感觉!", - "psychicClearMessage": "脚下的奇妙感觉消失了!", - - "defaultBlockMessage": "{{pokemonNameWithAffix}}正受到{{terrainName}}的的保护!" -}; +} \ No newline at end of file diff --git a/src/locales/zh_TW/ability-trigger.json b/src/locales/zh_TW/ability-trigger.json new file mode 100644 index 00000000000..3286d97b10c --- /dev/null +++ b/src/locales/zh_TW/ability-trigger.json @@ -0,0 +1,11 @@ +{ + "blockRecoilDamage": "{{pokemonName}} 的 {{abilityName}}\n抵消了反作用力!", + "badDreams": "{{pokemonName}} 被折磨着!", + "costar": "{{pokemonName}} 複製了 {{allyName}} 的\n能力變化!", + "iceFaceAvoidedDamage": "{{pokemonNameWithAffix}} 因爲 {{abilityName}}\n避免了傷害!", + "trace": "{{pokemonName}} 複製了 {{targetName}} 的\n{{abilityName}}!", + "windPowerCharged": "受 {{moveName}} 的影響, {{pokemonName}} 提升了能力!", + "disguiseAvoidedDamage": "{{pokemonNameWithAffix}}的畫皮脫落了!", + "weatherEffectDisappeared": "天氣的影響消失了!", + "preventBerryUse": "{{pokemonNameWithAffix}}因太緊張\n而無法食用樹果!" +} \ No newline at end of file diff --git a/src/locales/zh_TW/ability-trigger.ts b/src/locales/zh_TW/ability-trigger.ts deleted file mode 100644 index c0d348633bc..00000000000 --- a/src/locales/zh_TW/ability-trigger.ts +++ /dev/null @@ -1,63 +0,0 @@ -import { SimpleTranslationEntries } from "#app/interfaces/locales"; - -export const abilityTriggers: SimpleTranslationEntries = { - "blockRecoilDamage" : "{{pokemonName}} 的 {{abilityName}}\n抵消了反作用力!", - "badDreams": "{{pokemonName}} 被折磨着!", - "costar": "{{pokemonName}} 複製了 {{allyName}} 的\n能力變化!", - "iceFaceAvoidedDamage": "{{pokemonNameWithAffix}} 因爲 {{abilityName}}\n避免了傷害!", - "perishBody": "{{pokemonName}}'s {{abilityName}}\nwill faint both pokemon in 3 turns!", - "poisonHeal": "{{pokemonName}}'s {{abilityName}}\nrestored its HP a little!", - "trace": "{{pokemonName}} 複製了 {{targetName}} 的\n{{abilityName}}!", - "windPowerCharged": "受 {{moveName}} 的影響, {{pokemonName}} 提升了能力!", - "quickDraw":"{{pokemonName}} can act faster than normal, thanks to its Quick Draw!", - "disguiseAvoidedDamage" : "{{pokemonNameWithAffix}}的畫皮脫落了!", - "blockItemTheft": "{{pokemonNameWithAffix}}'s {{abilityName}}\nprevents item theft!", - "typeImmunityHeal": "{{pokemonNameWithAffix}}'s {{abilityName}}\nrestored its HP a little!", - "nonSuperEffectiveImmunity": "{{pokemonNameWithAffix}} avoided damage\nwith {{abilityName}}!", - "moveImmunity": "It doesn't affect {{pokemonNameWithAffix}}!", - "reverseDrain": "{{pokemonNameWithAffix}} sucked up the liquid ooze!", - "postDefendTypeChange": "{{pokemonNameWithAffix}}'s {{abilityName}}\nmade it the {{typeName}} type!", - "postDefendContactDamage": "{{pokemonNameWithAffix}}'s {{abilityName}}\nhurt its attacker!", - "postDefendAbilitySwap": "{{pokemonNameWithAffix}} swapped\nabilities with its target!", - "postDefendAbilityGive": "{{pokemonNameWithAffix}} gave its target\n{{abilityName}}!", - "postDefendMoveDisable": "{{pokemonNameWithAffix}}'s {{moveName}}\nwas disabled!", - "pokemonTypeChange": "{{pokemonNameWithAffix}} transformed into the {{moveType}} type!", - "postAttackStealHeldItem": "{{pokemonNameWithAffix}} stole\n{{defenderName}}'s {{stolenItemType}}!", - "postDefendStealHeldItem": "{{pokemonNameWithAffix}} stole\n{{attackerName}}'s {{stolenItemType}}!", - "copyFaintedAllyAbility": "{{pokemonNameWithAffix}}'s {{abilityName}} was taken over!", - "intimidateImmunity": "{{pokemonNameWithAffix}}'s {{abilityName}} prevented it from being Intimidated!", - "postSummonAllyHeal": "{{pokemonNameWithAffix}} drank down all the\nmatcha that {{pokemonName}} made!", - "postSummonClearAllyStats": "{{pokemonNameWithAffix}}'s stat changes\nwere removed!", - "postSummonTransform": "{{pokemonNameWithAffix}} transformed\ninto {{targetName}}!", - "protectStat": "{{pokemonNameWithAffix}}'s {{abilityName}}\nprevents lowering its {{statName}}!", - "statusEffectImmunityWithName": "{{pokemonNameWithAffix}}'s {{abilityName}}\nprevents {{statusEffectName}}!", - "statusEffectImmunity": "{{pokemonNameWithAffix}}'s {{abilityName}}\nprevents status problems!", - "battlerTagImmunity": "{{pokemonNameWithAffix}}'s {{abilityName}}\nprevents {{battlerTagName}}!", - "forewarn": "{{pokemonNameWithAffix}} was forewarned about {{moveName}}!", - "frisk": "{{pokemonNameWithAffix}} frisked {{opponentName}}'s {{opponentAbilityName}}!", - "postWeatherLapseHeal": "{{pokemonNameWithAffix}}'s {{abilityName}}\nrestored its HP a little!", - "postWeatherLapseDamage": "{{pokemonNameWithAffix}} is hurt\nby its {{abilityName}}!", - "postTurnLootCreateEatenBerry": "{{pokemonNameWithAffix}} harvested one {{berryName}}!", - "postTurnHeal": "{{pokemonNameWithAffix}}'s {{abilityName}}\nrestored its HP a little!", - "fetchBall": "{{pokemonNameWithAffix}} found a\n{{pokeballName}}!", - "healFromBerryUse": "{{pokemonNameWithAffix}}'s {{abilityName}}\nrestored its HP!", - "arenaTrap": "{{pokemonNameWithAffix}}'s {{abilityName}}\nprevents switching!", - "postBattleLoot": "{{pokemonNameWithAffix}} picked up\n{{itemName}}!", - "postFaintContactDamage": "{{pokemonNameWithAffix}}'s {{abilityName}}\nhurt its attacker!", - "postFaintHpDamage": "{{pokemonNameWithAffix}}'s {{abilityName}}\nhurt its attacker!", - "postSummonPressure": "{{pokemonNameWithAffix}} is exerting its Pressure!", - "postSummonMoldBreaker": "{{pokemonNameWithAffix}} breaks the mold!", - "postSummonAnticipation": "{{pokemonNameWithAffix}} shuddered!", - "postSummonTurboblaze": "{{pokemonNameWithAffix}} is radiating a blazing aura!", - "postSummonTeravolt": "{{pokemonNameWithAffix}} is radiating a bursting aura!", - "postSummonDarkAura": "{{pokemonNameWithAffix}} is radiating a Dark Aura!", - "postSummonFairyAura": "{{pokemonNameWithAffix}} is radiating a Fairy Aura!", - "postSummonNeutralizingGas": "{{pokemonNameWithAffix}}'s Neutralizing Gas filled the area!", - "postSummonAsOneGlastrier": "{{pokemonNameWithAffix}} has two Abilities!", - "postSummonAsOneSpectrier": "{{pokemonNameWithAffix}} has two Abilities!", - "postSummonVesselOfRuin": "{{pokemonNameWithAffix}}'s Vessel of Ruin lowered the {{statName}}\nof all surrounding Pokémon!", - "postSummonSwordOfRuin": "{{pokemonNameWithAffix}}'s Sword of Ruin lowered the {{statName}}\nof all surrounding Pokémon!", - "postSummonTabletsOfRuin": "{{pokemonNameWithAffix}}'s Tablets of Ruin lowered the {{statName}}\nof all surrounding Pokémon!", - "postSummonBeadsOfRuin": "{{pokemonNameWithAffix}}'s Beads of Ruin lowered the {{statName}}\nof all surrounding Pokémon!", - "preventBerryUse": "{{pokemonNameWithAffix}}因太緊張\n而無法食用樹果!", -} as const; diff --git a/src/locales/zh_TW/ability.json b/src/locales/zh_TW/ability.json new file mode 100644 index 00000000000..ddfe2783794 --- /dev/null +++ b/src/locales/zh_TW/ability.json @@ -0,0 +1,1242 @@ +{ + "stench": { + "name": "惡臭", + "description": "發出臭氣,在攻擊的時候,\n有時會使對手畏縮。" + }, + "drizzle": { + "name": "降雨", + "description": "出場時,會將天氣變為下雨\n。" + }, + "speedBoost": { + "name": "加速", + "description": "每一回合速度會變快。" + }, + "battleArmor": { + "name": "戰鬥盔甲", + "description": "被堅硬的甲殼守護著,不會\n被對手的攻擊擊中要害。" + }, + "sturdy": { + "name": "結實", + "description": "在HP全滿時受到招式攻擊\n不會被一擊打倒。一擊必殺\n的招式也沒有效果。" + }, + "damp": { + "name": "濕氣", + "description": "透過把周圍都弄溼,使誰都\n無法使用自爆等爆炸類的招\n式。" + }, + "limber": { + "name": "柔軟", + "description": "因為身體柔軟,不會變為麻\n痹狀態。" + }, + "sandVeil": { + "name": "沙隱", + "description": "在沙暴中閃避率會提高。" + }, + "static": { + "name": "靜電", + "description": "身上帶有靜電,有時會令接\n觸到的對手麻痹。" + }, + "voltAbsorb": { + "name": "蓄電", + "description": "受到電屬性的招式攻擊時,\n不會受到傷害,而是會回復。" + }, + "waterAbsorb": { + "name": "儲水", + "description": "受到水屬性的招式攻擊時,\n不會受到傷害,而是會回復。" + }, + "oblivious": { + "name": "遲鈍", + "description": "感覺遲鈍,不會陷入著迷和\n被挑釁狀態。面對威嚇也不\n會動搖。" + }, + "cloudNine": { + "name": "無關天氣", + "description": "任何天氣的影響都會消失。" + }, + "compoundEyes": { + "name": "複眼", + "description": "因為擁有複眼,會提高招式\n的命中率。" + }, + "insomnia": { + "name": "不眠", + "description": "因為有著睡不著的體質,所\n以不會陷入睡眠狀態。" + }, + "colorChange": { + "name": "變色", + "description": "自己的屬性會變為擊中自己\n的對手招式的屬性。" + }, + "immunity": { + "name": "免疫", + "description": "因為體內擁有免疫能力,不\n會變為中毒狀態。" + }, + "flashFire": { + "name": "引火", + "description": "受到火屬性的招式攻擊時,\n吸收火焰,自己使出的火屬\n性招式會變強。" + }, + "shieldDust": { + "name": "鱗粉", + "description": "被鱗粉守護著,不會受到招\n式的追加效果影響。" + }, + "ownTempo": { + "name": "我行我素", + "description": "因為我行我素,不會陷入混\n亂狀態。面對威嚇也不會動\n搖。" + }, + "suctionCups": { + "name": "吸盤", + "description": "用吸盤將自己牢牢吸附在地\n面上,讓替換寶可夢的招式\n和道具失效。" + }, + "intimidate": { + "name": "威嚇", + "description": "出場時威嚇對手,使其退縮\n,從而降低對手的攻擊。" + }, + "shadowTag": { + "name": "踩影", + "description": "踩住對手的影子使其無法逃\n走或替換。" + }, + "roughSkin": { + "name": "粗糙皮膚", + "description": "受到攻擊時,用粗糙的皮膚\n弄傷接觸到自己的對手。" + }, + "wonderGuard": { + "name": "神奇守護", + "description": "不可思議的力量,只有效果\n絕佳的招式才能擊中。" + }, + "levitate": { + "name": "飄浮", + "description": "從地面浮起,從而不會受到\n地面屬性招式的攻擊。" + }, + "effectSpore": { + "name": "孢子", + "description": "受到攻擊時,有時會把接觸\n到自己的對手變為中毒、麻\n痹或睡眠狀態。" + }, + "synchronize": { + "name": "同步", + "description": "將自己的中毒、麻痹或灼傷\n狀態傳染給對手。" + }, + "clearBody": { + "name": "恆淨之軀", + "description": "不會因對手的招式或特性而\n被降低能力。" + }, + "naturalCure": { + "name": "自然回復", + "description": "異常狀態會在離場後治癒。" + }, + "lightningRod": { + "name": "避雷針", + "description": "將電屬性的招式吸引到自己\n身上,不但不會受到傷害,\n反而會提高特攻。" + }, + "sereneGrace": { + "name": "天恩", + "description": "受到上天保佑,容易出現招式的追加效果。" + }, + "swiftSwim": { + "name": "悠遊自如", + "description": "天氣為下雨時,速度會提高。" + }, + "chlorophyll": { + "name": "葉綠素", + "description": "天氣為晴朗時,速度會提高。" + }, + "illuminate": { + "name": "發光", + "description": "透過讓周圍變亮,命中率不\n會被降低。" + }, + "trace": { + "name": "複製", + "description": "出場時,複製對手的特性,\n變為與之相同的特性。" + }, + "hugePower": { + "name": "大力士", + "description": "物理攻擊的威力會變為2倍\n。" + }, + "poisonPoint": { + "name": "毒刺", + "description": "有時會讓接觸到自己的對手\n變為中毒狀態。" + }, + "innerFocus": { + "name": "精神力", + "description": "靠著經過鍛鍊的精神,不會\n因對手的攻擊而畏縮。面對\n威嚇也不會動搖。" + }, + "magmaArmor": { + "name": "熔岩鎧甲", + "description": "將熾熱的熔岩覆蓋在身上,\n不會陷入冰凍狀態。" + }, + "waterVeil": { + "name": "水幕", + "description": "將水幕裹在身上,不會陷入\n灼傷狀態。" + }, + "magnetPull": { + "name": "磁力", + "description": "用磁力吸住鋼屬性的寶可夢\n,使其無法逃走。" + }, + "soundproof": { + "name": "隔音", + "description": "透過遮蔽聲音,不受到聲音\n招式的影響。" + }, + "rainDish": { + "name": "雨盤", + "description": "天氣為下雨時,會緩緩回復\nHP。" + }, + "sandStream": { + "name": "揚沙", + "description": "出場時,會把天氣變為沙暴。" + }, + "pressure": { + "name": "壓迫感", + "description": "給予對手壓迫感,大量減少\n其使用招式的PP。" + }, + "thickFat": { + "name": "厚脂肪", + "description": "被厚厚的脂肪保護著,能夠\n讓火屬性和冰屬性招式的傷\n害減半。" + }, + "earlyBird": { + "name": "早起", + "description": "即使陷入睡眠狀態,也能以\n2倍的速度提早醒來。" + }, + "flameBody": { + "name": "火焰之軀", + "description": "有時會讓接觸到自己的對手\n變為灼傷狀態。" + }, + "runAway": { + "name": "逃跑", + "description": "一定能從野生寶可夢那裡逃\n走。" + }, + "keenEye": { + "name": "銳利目光", + "description": "靠著銳利的目光,命中率不\n會被降低。" + }, + "hyperCutter": { + "name": "怪力鉗", + "description": "因為擁有以力量自豪的鉗子,\n不會被對手降低攻擊。" + }, + "pickup": { + "name": "撿拾", + "description": "有時會撿來對手用過的道具,\n冒險過程中也會撿到。" + }, + "truant": { + "name": "懶惰", + "description": "如果使出招式,下一回合就\n需要休息。" + }, + "hustle": { + "name": "活力", + "description": "自己的攻擊雖會變高,但命\n中率會降低。" + }, + "cuteCharm": { + "name": "迷人之軀", + "description": "有時會讓接觸到自己的對手陷\n入著迷狀態。" + }, + "plus": { + "name": "正電", + "description": "場上的夥伴之中,如果有正\n電或負電特性的寶可夢,自\n己的特攻會提高。" + }, + "minus": { + "name": "負電", + "description": "場上的夥伴之中,如果有正\n電或負電特性的寶可夢,自\n己的特攻會提高。" + }, + "forecast": { + "name": "陰晴不定", + "description": "在天氣的影響下,會變成水\n屬性、火屬性或冰屬性之中\n的一種。" + }, + "stickyHold": { + "name": "黏著", + "description": "道具會黏在具有黏性的身體\n上,不會被對手奪走。" + }, + "shedSkin": { + "name": "蛻皮", + "description": "透過蛻去身上的皮,有時會\n治癒異常狀態。" + }, + "guts": { + "name": "毅力", + "description": "陷入異常狀態時,會拿出毅\n力,攻擊會提高。" + }, + "marvelScale": { + "name": "神奇鱗片", + "description": "陷入異常狀態時,神奇鱗片\n會發生反應,防禦會提高。" + }, + "liquidOoze": { + "name": "污泥漿", + "description": "吸收了污泥漿的對手會因為\n強烈的惡臭而使得HP減少。" + }, + "overgrow": { + "name": "茂盛", + "description": "HP減少的時候,草屬性的\n招式威力會提高。" + }, + "blaze": { + "name": "猛火", + "description": "HP減少的時候,火屬性的\n招式威力會提高。" + }, + "torrent": { + "name": "激流", + "description": "HP減少的時候,水屬性的\n招式威力會提高。" + }, + "swarm": { + "name": "蟲之預感", + "description": "HP減少的時候,蟲屬性的\n招式威力會提高。" + }, + "rockHead": { + "name": "堅硬腦袋", + "description": "即使使出會受反作用力傷害\n的招式,HP也不會減少。" + }, + "drought": { + "name": "日照", + "description": "出場時,會將天氣變為晴朗。" + }, + "arenaTrap": { + "name": "沙穴", + "description": "在戰鬥中讓對手無法逃走。" + }, + "vitalSpirit": { + "name": "幹勁", + "description": "透過激發出幹勁,不會變為\n睡眠狀態。" + }, + "whiteSmoke": { + "name": "白色煙霧", + "description": "被白色煙霧保護著,不會被\n對手降低能力。" + }, + "purePower": { + "name": "瑜伽之力", + "description": "因瑜伽的力量,物理攻擊的\n威力會變為2倍。" + }, + "shellArmor": { + "name": "硬殼盔甲", + "description": "被堅硬的殼保護著,對手的\n攻擊不會擊中要害。" + }, + "airLock": { + "name": "氣閘", + "description": "所有天氣的影響都會消失。" + }, + "tangledFeet": { + "name": "蹣跚", + "description": "陷入混亂狀態時,閃避率會\n提高。" + }, + "motorDrive": { + "name": "電氣引擎", + "description": "受到電屬性的招式攻擊時,\n不但不會受到傷害,反而速\n度會提高。" + }, + "rivalry": { + "name": "鬥爭心", + "description": "面對性別相同的對手,會燃\n起鬥爭心,變得更強。面對\n性別不同的對手時則會變弱。" + }, + "steadfast": { + "name": "不屈之心", + "description": "每次畏縮時,不屈之心就會\n燃起,速度也會提高。" + }, + "snowCloak": { + "name": "雪隱", + "description": "天氣為下雪時,閃避率會提\n高。" + }, + "gluttony": { + "name": "貪吃鬼", + "description": "原本HP變得很少時才會吃\n樹果,在HP還有一半時就\n會把它吃掉。" + }, + "angerPoint": { + "name": "憤怒穴位", + "description": "要害被擊中時會大發雷霆。\n攻擊力會提高到最大。" + }, + "unburden": { + "name": "輕裝", + "description": "失去所持有的道具時,速度\n會提高。" + }, + "heatproof": { + "name": "耐熱", + "description": "靠著耐熱的體質,讓火屬性\n的招式傷害減半。" + }, + "simple": { + "name": "單純", + "description": "能力變化會變為平時的2倍。" + }, + "drySkin": { + "name": "乾燥皮膚", + "description": "下雨天氣時和受到水屬性的\n招式時,HP會回復。晴朗\n天氣時和受到火屬性的招式\n時,HP會減少。" + }, + "download": { + "name": "下載", + "description": "比較對手的防禦和特防,根\n據較低的那項能力相應地提\n高自己的攻擊或特攻。" + }, + "ironFist": { + "name": "鐵拳", + "description": "使用到拳頭的招式威力會\n提高。" + }, + "poisonHeal": { + "name": "毒療", + "description": "陷入中毒狀態時,HP不會\n減少,反而會漸漸增加。" + }, + "adaptability": { + "name": "適應力", + "description": "與自身同屬性的招式威力會\n提高。" + }, + "skillLink": { + "name": "連續攻擊", + "description": "使用連續招式時,每回都能\n以最多次數進行攻擊。" + }, + "hydration": { + "name": "濕潤之軀", + "description": "天氣為下雨時,會治癒異常\n狀態。" + }, + "solarPower": { + "name": "太陽之力", + "description": "天氣為晴朗時特攻會提高,\n但每回合HP會減少。" + }, + "quickFeet": { + "name": "飛毛腿", + "description": "陷入異常狀態時,速度會提\n高。" + }, + "normalize": { + "name": "一般皮膚", + "description": "無論是什麼屬性的招式,全\n部都會變為一般屬性。威力\n會少量提高。" + }, + "sniper": { + "name": "狙擊手", + "description": "擊中要害時,威力會進一步\n提高。" + }, + "magicGuard": { + "name": "魔法防守", + "description": "不會受到攻擊以外的傷害。" + }, + "noGuard": { + "name": "無防守", + "description": "由於無防守戰術,雙方使出\n的招式都必定會擊中。" + }, + "stall": { + "name": "慢出", + "description": "使出招式的順序必定會變為\n最後。" + }, + "technician": { + "name": "技術高手", + "description": "可讓威力低的招式提高威力\n來進行攻擊。" + }, + "leafGuard": { + "name": "葉子防守", + "description": "天氣為晴朗時,不會陷入異\n常狀態。" + }, + "klutz": { + "name": "笨拙", + "description": "無法使用持有的道具。" + }, + "moldBreaker": { + "name": "破格", + "description": "可不受特性影響,向對手使\n出招式。" + }, + "superLuck": { + "name": "超幸運", + "description": "因為非常幸運,容易擊中對\n手的要害。" + }, + "aftermath": { + "name": "引爆", + "description": "瀕死時,會對接觸到自己的\n對手造成傷害。" + }, + "anticipation": { + "name": "危險預知", + "description": "察覺對手持有的危險招式。" + }, + "forewarn": { + "name": "預知夢", + "description": "出場時,預見1個對手持有\n的招式。" + }, + "unaware": { + "name": "純樸", + "description": "可無視對手能力的變化,進\n行攻擊。" + }, + "tintedLens": { + "name": "有色眼鏡", + "description": "可將效果不好的招式以正常\n的威力使出。" + }, + "filter": { + "name": "過濾", + "description": "受到效果絕佳的攻擊時,可\n減弱其威力。" + }, + "slowStart": { + "name": "慢啓動", + "description": "在5回合內,攻擊和速度會\n減半。" + }, + "scrappy": { + "name": "膽量", + "description": "一般屬性和格鬥屬性的招式\n可擊中幽靈屬性的寶可夢。\n面對威嚇也不會動搖。" + }, + "stormDrain": { + "name": "引水", + "description": "將水屬性的招式引到自己身\n上,不但不會受到傷害,反\n而會提高特攻。" + }, + "iceBody": { + "name": "冰凍之軀", + "description": "天氣為下雪時,會漸漸回復\nHP。" + }, + "solidRock": { + "name": "堅硬岩石", + "description": "受到效果絕佳的攻擊時,可\n減弱其威力。" + }, + "snowWarning": { + "name": "降雪", + "description": "出場時,會將天氣變為下雪。" + }, + "honeyGather": { + "name": "採蜜", + "description": "The Pokémon gathers Honey after a battle. The Honey is then sold for money." + }, + "frisk": { + "name": "察覺", + "description": "出場時,可以察覺對手的特\n性。" + }, + "reckless": { + "name": "捨身", + "description": "會讓自己因反作用力而受傷\n的招式威力會提高。" + }, + "multitype": { + "name": "多屬性", + "description": "自己的屬性會依持有的石板\n而改變。" + }, + "flowerGift": { + "name": "花之禮", + "description": "天氣為晴朗時,自己和同伴\n的攻擊和特防能力會提高。" + }, + "badDreams": { + "name": "夢魘", + "description": "給予陷入睡眠狀態的對手傷\n害。" + }, + "pickpocket": { + "name": "順手牽羊", + "description": "盜取接觸到自己的對手的道\n具。" + }, + "sheerForce": { + "name": "強行", + "description": "招式會失去追加效果,但可\n以用更高的威力使出招式。" + }, + "contrary": { + "name": "唱反調", + "description": "能力的變化會逆轉,原本提\n高時會降低,原本降低時會\n提高。" + }, + "unnerve": { + "name": "緊張感", + "description": "讓對手感到緊張,無法吃樹\n果。" + }, + "defiant": { + "name": "不服輸", + "description": "被對手降低能力時,攻擊會\n大幅提高。" + }, + "defeatist": { + "name": "軟弱", + "description": "HP降到一半以下時,會變\n得軟弱而使得攻擊和特攻減\n半。" + }, + "cursedBody": { + "name": "詛咒之軀", + "description": "受到攻擊時,有時會把對手\n的招式變為定身法狀態。" + }, + "healer": { + "name": "治癒之心", + "description": "有時會治癒同伴的異常狀態。" + }, + "friendGuard": { + "name": "友情防守", + "description": "可以減少我方受到的傷害。" + }, + "weakArmor": { + "name": "碎裂鎧甲", + "description": "因物理招式受到傷害時,防\n禦會降低,速度會大幅提高。" + }, + "heavyMetal": { + "name": "重金屬", + "description": "自己的重量會變為2倍。" + }, + "lightMetal": { + "name": "輕金屬", + "description": "自己的重量會減半。" + }, + "multiscale": { + "name": "多重鱗片", + "description": "HP全滿時,受到的傷害會\n變少。" + }, + "toxicBoost": { + "name": "中毒激升", + "description": "陷入中毒狀態時,物理招式\n的威力會提高。" + }, + "flareBoost": { + "name": "受熱激升", + "description": "陷入灼傷狀態時,特殊招式\n的威力會提高。" + }, + "harvest": { + "name": "收穫", + "description": "可多次採收已被使用過的樹果。" + }, + "telepathy": { + "name": "心靈感應", + "description": "讀取我方的攻擊,並閃避其\n招式傷害。" + }, + "moody": { + "name": "心情不定", + "description": "每一回合,能力中的某項會\n大幅提高,而某項會降低。" + }, + "overcoat": { + "name": "防塵", + "description": "不會受到沙暴的傷害。也不\n會受到粉末類和孢子類招式\n的影響。" + }, + "poisonTouch": { + "name": "毒手", + "description": "有時僅是接觸就能讓對手中\n毒。" + }, + "regenerator": { + "name": "再生力", + "description": "退回同行隊伍後,HP會少\n量回復。" + }, + "bigPecks": { + "name": "健壯胸肌", + "description": "不會受到降低防禦的效果影\n響。" + }, + "sandRush": { + "name": "撥沙", + "description": "天氣為沙暴時,速度會提高。" + }, + "wonderSkin": { + "name": "奇蹟皮膚", + "description": "不易受到變化類招式攻擊的\n身體。" + }, + "analytic": { + "name": "分析", + "description": "如果在最後使出招式,招式\n的威力就會變強。" + }, + "illusion": { + "name": "幻覺", + "description": "假扮成同行隊伍中的最後一\n隻寶可夢出場,迷惑對手。" + }, + "imposter": { + "name": "變身者", + "description": "變身為當前面對的寶可夢。" + }, + "infiltrator": { + "name": "穿透", + "description": "可穿透對手的屏障或替身進\n行攻擊。" + }, + "mummy": { + "name": "木乃伊", + "description": "被對手接觸到後,會將對手\n變為木乃伊。" + }, + "moxie": { + "name": "自信過度", + "description": "如果打倒對手,會充滿自信\n並提高攻擊。" + }, + "justified": { + "name": "正義之心", + "description": "受到惡屬性的招式攻擊時,\n因為正義感,攻擊會提高。" + }, + "rattled": { + "name": "膽怯", + "description": "受到惡屬性、幽靈屬性和蟲\n屬性的招式攻擊,或受到威\n嚇時,會因膽怯而使得速度\n提高。" + }, + "magicBounce": { + "name": "魔法鏡", + "description": "可不受到由對手使出的變化\n類招式所影響,並將其反彈。" + }, + "sapSipper": { + "name": "食草", + "description": "受到草屬性的招式攻擊時,\n不但不會受到傷害,反而攻\n擊會提高。" + }, + "prankster": { + "name": "惡作劇之心", + "description": "可以搶先使出變化類招式。" + }, + "sandForce": { + "name": "沙之力", + "description": "天氣為沙暴時,岩石屬性、\n地面屬性和鋼屬性招式的威\n力會提高。" + }, + "ironBarbs": { + "name": "鐵刺", + "description": "用鐵刺給予接觸到自己的對\n手傷害。" + }, + "zenMode": { + "name": "達摩模式", + "description": "HP變為一半以下時,樣子\n會改變。" + }, + "victoryStar": { + "name": "勝利之星", + "description": "自己和同伴的命中率會提高。" + }, + "turboblaze": { + "name": "渦輪火焰", + "description": "可以不受對手特性的干擾,\n向對手使出招式。" + }, + "teravolt": { + "name": "兆級電壓", + "description": "可以不受對手特性的干擾,\n向對手使出招式。" + }, + "aromaVeil": { + "name": "芳香幕", + "description": "可防住向自己和同伴發出的\n心靈攻擊。" + }, + "flowerVeil": { + "name": "花幕", + "description": "我方的草屬性寶可夢能力不\n會降低。也不會陷入異常狀\n態。" + }, + "cheekPouch": { + "name": "頰囊", + "description": "無論是哪種樹果,吃下去後\nHP都會回復。" + }, + "protean": { + "name": "變幻自如", + "description": "每次出場戰鬥時,變為與自\n己使出的招式相同的屬性1\n次。" + }, + "furCoat": { + "name": "毛皮大衣", + "description": "對手的物理招式造成的傷害\n會減半。" + }, + "magician": { + "name": "魔術師", + "description": "奪走被自己的招式擊中的對\n手的道具。" + }, + "bulletproof": { + "name": "防彈", + "description": "可防住對手的球和彈類的招\n式。" + }, + "competitive": { + "name": "好勝", + "description": "被對手降低能力時,特攻會\n大幅提高。" + }, + "strongJaw": { + "name": "強壯之顎", + "description": "顎部強壯,會提高啃咬類招\n式的威力。" + }, + "refrigerate": { + "name": "冰凍皮膚", + "description": "一般屬性的招式會變為冰屬\n性。威力會少量提高。" + }, + "sweetVeil": { + "name": "甜幕", + "description": "自己和我方的寶可夢不會陷\n入睡眠狀態。" + }, + "stanceChange": { + "name": "戰鬥切換", + "description": "若使出攻擊招式,會變為刀\n劍形態,若使出招式「王者\n盾牌」,會變為盾牌形態。" + }, + "galeWings": { + "name": "疾風之翼", + "description": "HP全滿時,可以搶先在對\n手之前使出飛行屬性的招式。" + }, + "megaLauncher": { + "name": "超級發射器", + "description": "波動和波導類招式的威力會\n提高。" + }, + "grassPelt": { + "name": "草之毛皮", + "description": "在青草場地時,防禦會提高。" + }, + "symbiosis": { + "name": "共生", + "description": "同伴使用道具時,會把自己\n持有的道具傳遞給同伴。" + }, + "toughClaws": { + "name": "硬爪", + "description": "接觸到對手的招式威力會提\n高。" + }, + "pixilate": { + "name": "妖精皮膚", + "description": "一般屬性的招式會變為妖精\n屬性。威力會少量提高。" + }, + "gooey": { + "name": "黏滑", + "description": "對手用攻擊接觸到自己時,\n降低此對手的速度。" + }, + "aerilate": { + "name": "飛行皮膚", + "description": "一般屬性的招式會變為飛行\n屬性。威力會少量提高。" + }, + "parentalBond": { + "name": "親子愛", + "description": "親子倆可合計攻擊2次。" + }, + "darkAura": { + "name": "暗黑氣場", + "description": "全體的惡屬性招式變強。" + }, + "fairyAura": { + "name": "妖精氣場", + "description": "全體的妖精屬性招式變強。" + }, + "auraBreak": { + "name": "氣場破壞", + "description": "讓氣場的效果逆轉,並降低\n威力。" + }, + "primordialSea": { + "name": "始源之海", + "description": "變為讓火屬性攻擊失效的天\n氣。" + }, + "desolateLand": { + "name": "終結之地", + "description": "變為讓水屬性攻擊失效的天\n氣。" + }, + "deltaStream": { + "name": "德爾塔氣流", + "description": "變為令飛行屬性的弱點消失\n的天氣。" + }, + "stamina": { + "name": "持久力", + "description": "受到攻擊時,防禦會提高。" + }, + "wimpOut": { + "name": "躍躍欲逃", + "description": "HP變為一半時,會慌慌張\n張逃走,退回同行隊伍中。" + }, + "emergencyExit": { + "name": "危險迴避", + "description": "HP減到一半時,為了避開\n危險,會退回到同行隊伍中。" + }, + "waterCompaction": { + "name": "遇水凝固", + "description": "受到水屬性的招式攻擊時,\n防禦會大幅提高。" + }, + "merciless": { + "name": "不仁不義", + "description": "攻擊中毒狀態的對手時,\n必定會擊中要害。" + }, + "shieldsDown": { + "name": "界限盾殼", + "description": "HP變為一半時,殼會壞掉,\n變得更有攻擊性。" + }, + "stakeout": { + "name": "蹲守", + "description": "可以向替換出場的對手以2\n倍的傷害進行攻擊。" + }, + "waterBubble": { + "name": "水泡", + "description": "降低自己受到的火屬性招式\n的威力,不會灼傷。" + }, + "steelworker": { + "name": "鋼能力者", + "description": "鋼屬性的招式威力會提高。" + }, + "berserk": { + "name": "怒火沖天", + "description": "HP因對手的攻擊降到一半\n時,特攻會提高。" + }, + "slushRush": { + "name": "撥雪", + "description": "天氣為下雪時,速度會提高。" + }, + "longReach": { + "name": "遠隔", + "description": "可以不接觸對手就使出所有\n的招式。" + }, + "liquidVoice": { + "name": "溼潤之聲", + "description": "所有的聲音招式都變為水屬\n性。" + }, + "triage": { + "name": "先行治療", + "description": "可以搶先使出回復招式。" + }, + "galvanize": { + "name": "電氣皮膚", + "description": "一般屬性的招式會變為電屬\n性。威力會少量提高。" + }, + "surgeSurfer": { + "name": "衝浪之尾", + "description": "電氣場地時,速度會變為2\n倍。" + }, + "schooling": { + "name": "魚羣", + "description": "HP多的時候會聚起來變強。\nHP剩餘量變少時,群體\n會分崩離析。" + }, + "disguise": { + "name": "畫皮", + "description": "用畫皮覆蓋住身體,可防住\n1次攻擊。" + }, + "battleBond": { + "name": "牽絆變身", + "description": "打倒對手時,與訓練家的牽\n絆會加深,自己的攻擊、特\n攻和速度會提高。" + }, + "powerConstruct": { + "name": "群聚變形", + "description": "HP變為一半時,細胞們會\n趕來支援,變為完全體形態。" + }, + "corrosion": { + "name": "腐蝕", + "description": "就算對方是鋼屬性或毒屬性\n寶可夢,也可讓對方陷入中\n毒狀態。" + }, + "comatose": { + "name": "絕對睡眠", + "description": "總是半夢半醒的狀態,絕對\n不會醒來。可在睡著的狀況\n下進行攻擊。" + }, + "queenlyMajesty": { + "name": "女王的威嚴", + "description": "向對手施加威懾力,使其無\n法對我方使出先制招式。" + }, + "innardsOut": { + "name": "飛出的內在物", + "description": "被對手打倒的時候,會給予\n對手相當於HP剩餘量的傷\n害。" + }, + "dancer": { + "name": "舞者", + "description": "當有誰使出跳舞招式時,自\n己也能接著使出跳舞招式。" + }, + "battery": { + "name": "蓄電池", + "description": "會提高我方的特殊招式的威\n力。" + }, + "fluffy": { + "name": "毛茸茸", + "description": "會將對手所給予的接觸類招\n式的傷害減半,但火屬性招\n式的傷害會變為2倍。" + }, + "dazzling": { + "name": "鮮豔之軀", + "description": "讓對手嚇一跳,使其無法對\n我方使出先制招式。" + }, + "soulHeart": { + "name": "魂心", + "description": "每當場上有寶可夢陷入瀕死\n狀態時,特攻就會提高。" + }, + "tanglingHair": { + "name": "捲髮", + "description": "對手用攻擊接觸到自己時,\n降低此對手的速度。" + }, + "receiver": { + "name": "接球手", + "description": "繼承被打倒的同伴的特性,\n變為相同的特性。" + }, + "powerOfAlchemy": { + "name": "化學之力", + "description": "繼承被打倒的同伴的特性,\n變為相同的特性。" + }, + "beastBoost": { + "name": "異獸提升", + "description": "打倒對手的時候,會提高自\n己最高的那項能力。" + }, + "rksSystem": { + "name": "AR系統", + "description": "根據持有的記憶碟,自己的\n屬性會改變。" + }, + "electricSurge": { + "name": "電氣製造者", + "description": "出場時,會布下電氣場地。" + }, + "psychicSurge": { + "name": "精神製造者", + "description": "出場時,會布下精神場地。" + }, + "mistySurge": { + "name": "薄霧製造者", + "description": "出場時,會布下薄霧場地。" + }, + "grassySurge": { + "name": "青草製造者", + "description": "出場時,會布下青草場地。" + }, + "fullMetalBody": { + "name": "金屬防護", + "description": "不會因對手的招式或特性而\n被降低能力。" + }, + "shadowShield": { + "name": "幻影防守", + "description": "HP全滿時,受到的傷害會\n變少。" + }, + "prismArmor": { + "name": "棱鏡裝甲", + "description": "受到效果絕佳的攻擊時,可\n減弱其威力。" + }, + "neuroforce": { + "name": "腦核之力", + "description": "可進一步提升效果絕佳招式\n的威力。" + }, + "intrepidSword": { + "name": "不撓之劍", + "description": "在戰鬥中首次出場時,攻擊\n會提高。" + }, + "dauntlessShield": { + "name": "不屈之盾", + "description": "在戰鬥中首次出場時,防禦\n會提高。" + }, + "libero": { + "name": "自由者", + "description": "每次出場戰鬥時,變為與自\n己使出的招式相同的屬性1\n次。" + }, + "ballFetch": { + "name": "撿球", + "description": "當寶可夢沒有攜帶道具時,\n會撿回第1個投出後捕捉失\n敗的精靈球。" + }, + "cottonDown": { + "name": "棉絮", + "description": "受到攻擊時會撒下棉絮,降\n低除自己以外的所有寶可夢\n的速度。" + }, + "propellerTail": { + "name": "螺旋尾鰭", + "description": "能無視具有吸引對手招式效\n果的特性或招式的影響。" + }, + "mirrorArmor": { + "name": "鏡甲", + "description": "只反彈自己受到的能力降低\n效果。" + }, + "gulpMissile": { + "name": "一口導彈", + "description": "衝浪或潛水時會叼來獵物。\n當受到傷害時,會吐出獵物\n攻擊對手。" + }, + "stalwart": { + "name": "堅毅", + "description": "能無視具有吸引對手招式效\n果的特性或招式的影響。" + }, + "steamEngine": { + "name": "蒸汽機", + "description": "受到水屬性或火屬性招式攻\n擊時,速度會極大幅提高。" + }, + "punkRock": { + "name": "龐克搖滾", + "description": "聲音招式的威力會提高。受\n到聲音招式的傷害會減半。" + }, + "sandSpit": { + "name": "吐沙", + "description": "受到攻擊時,會刮起沙暴。" + }, + "iceScales": { + "name": "冰鱗粉", + "description": "得到冰鱗粉的守護,受到的\n特殊攻擊傷害會減半。" + }, + "ripen": { + "name": "熟成", + "description": "讓樹果成熟,使效果變為2\n倍。" + }, + "iceFace": { + "name": "結凍頭", + "description": "頭部的冰會代替自己承受物\n理攻擊,但是樣子會改變。\n下雪時,冰會恢復原狀。" + }, + "powerSpot": { + "name": "能量點", + "description": "只要站在旁邊,招式的威力\n就會提高。" + }, + "mimicry": { + "name": "擬態", + "description": "寶可夢的屬性會根據場地的\n狀態而改變。" + }, + "screenCleaner": { + "name": "除障", + "description": "出場時,敵方和我方的光牆\n、反射壁和極光幕的效果會\n消失。" + }, + "steelySpirit": { + "name": "鋼之意志", + "description": "我方的鋼屬性攻擊威力會提\n高。" + }, + "perishBody": { + "name": "滅亡之軀", + "description": "在受到接觸類招式攻擊時,\n3個回合後雙方都會陷入瀕\n死。替換寶可夢後效果就\n會消失。" + }, + "wanderingSpirit": { + "name": "遊魂", + "description": "與使用接觸類招式攻擊自己\n的寶可夢互換特性。" + }, + "gorillaTactics": { + "name": "一猩一意", + "description": "攻擊雖然會提高,但只能使\n出最初選擇的招式。" + }, + "neutralizingGas": { + "name": "化學變化氣體", + "description": "當場上有特性是化學變化氣\n體的寶可夢時,所有寶可夢\n的特性效果都會消失或無\n法發動。" + }, + "pastelVeil": { + "name": "粉彩護幕", + "description": "自己和我方同伴都不會陷入\n中毒的異常狀態。" + }, + "hungerSwitch": { + "name": "飽了又餓", + "description": "在每個回合結束時,會在滿\n腹花紋和空腹花紋之間交替\n改變樣子。" + }, + "quickDraw": { + "name": "速擊", + "description": "有時能比對手先一步行動。" + }, + "unseenFist": { + "name": "無形拳", + "description": "只要是接觸到對手的招式,\n就可以無視對手的防守效果\n進行攻擊。" + }, + "curiousMedicine": { + "name": "怪藥", + "description": "出場時,會從貝殼撒藥,將\n我方的能力變化復原。" + }, + "transistor": { + "name": "電晶體", + "description": "電屬性的招式威力會提高。" + }, + "dragonsMaw": { + "name": "龍顎", + "description": "龍屬性的招式威力會提高。" + }, + "chillingNeigh": { + "name": "蒼白嘶鳴", + "description": "打倒對手時會用冰冷的聲音\n嘶鳴並提高攻擊。" + }, + "grimNeigh": { + "name": "漆黑嘶鳴", + "description": "打倒對手時會用恐怖的聲音\n嘶鳴並提高特攻。" + }, + "asOneGlastrier": { + "name": "人馬一體", + "description": "兼備蕾冠王的緊張感和雪暴\n馬的蒼白嘶鳴這2種特性。" + }, + "asOneSpectrier": { + "name": "人馬一體", + "description": "兼備蕾冠王的緊張感和靈幽\n馬的漆黑嘶鳴這2種特性。" + }, + "lingeringAroma": { + "name": "甩不掉的氣味", + "description": "被對手接觸到時,甩不掉的\n氣味會沾染給對手。" + }, + "seedSower": { + "name": "掉出種子", + "description": "受到攻擊時,會將腳下變成\n青草場地。" + }, + "thermalExchange": { + "name": "熱交換", + "description": "受到火屬性的招式攻擊時,\n攻擊會提高,不會陷入灼傷\n狀態。" + }, + "angerShell": { + "name": "憤怒甲殼", + "description": "HP因對手的攻擊降到一半\n時,會因憤怒而降低防禦和\n特防,但攻擊、特攻和速度\n會提高。" + }, + "purifyingSalt": { + "name": "潔淨之鹽", + "description": "因潔淨的鹽而不會陷入異常\n狀態。能夠讓幽靈屬性招式\n的傷害減半。" + }, + "wellBakedBody": { + "name": "焦香之軀", + "description": "受到火屬性的招式攻擊時,\n不但不會受到傷害,反而防\n禦會大幅提高" + }, + "windRider": { + "name": "乘風", + "description": "吹起順風或受到風的招式攻\n擊時,不但不會受到傷害,\n反而攻擊會提高。" + }, + "guardDog": { + "name": "看門犬", + "description": "受到威嚇時,攻擊會提高。\n會讓替換寶可夢的招式和道\n具失效。" + }, + "rockyPayload": { + "name": "搬巖", + "description": "岩石屬性的招式威力會提高。" + }, + "windPower": { + "name": "風力發電", + "description": "受到風的招式攻擊時,會變\n成充電狀態。" + }, + "zeroToHero": { + "name": "全能變身", + "description": "離場後會變為全能形態。" + }, + "commander": { + "name": "發號施令", + "description": "出場時,若我方有吃吼霸,\n便會進入吃吼霸的口中,從\n那裡發號施令。" + }, + "electromorphosis": { + "name": "電力轉換", + "description": "受到傷害時,會變成充電狀\n態。" + }, + "protosynthesis": { + "name": "古代活性", + "description": "攜帶著驅勁能量或天氣為晴\n朗時,數值最高的能力會提\n高。" + }, + "quarkDrive": { + "name": "夸克充能", + "description": "攜帶著驅勁能量或在電氣場\n地上時,數值最高的能力會\n提高。" + }, + "goodAsGold": { + "name": "黃金之軀", + "description": "既不氧化又堅韌的黃金之軀\n不會受到對手的變化類招式\n攻擊。" + }, + "vesselOfRuin": { + "name": "災禍之鼎", + "description": "在喚來災厄之鼎的力量下,\n除自己以外的特攻會變弱。" + }, + "swordOfRuin": { + "name": "災禍之劍", + "description": "在喚來災厄之劍的力量下,\n除自己以外的防禦會變弱。" + }, + "tabletsOfRuin": { + "name": "災禍之簡", + "description": "在喚來災厄之木簡的力量下\n,除自己以外的攻擊會變弱。" + }, + "beadsOfRuin": { + "name": "災禍之玉", + "description": "在喚來災厄之木簡的力量下\n,除自己以外的特防會變弱。" + }, + "orichalcumPulse": { + "name": "緋紅脈動", + "description": "出場時,會將天氣變為晴朗\n。日照很強時,會因為古代\n的脈動而使攻擊升高。" + }, + "hadronEngine": { + "name": "強子引擎", + "description": "出場時,會布下電氣場地。\n在電氣場地時,會因為未來\n的機關而使特攻升高。" + }, + "opportunist": { + "name": "跟風", + "description": "對手的能力提高時,自己也\n會跟著提高能力。" + }, + "cudChew": { + "name": "反芻", + "description": "食用樹果後,會在下一回合\n結束時從胃裡取出,以1次\n為限再次食用。" + }, + "sharpness": { + "name": "鋒銳", + "description": "切斬對手的招式威力會提高。" + }, + "supremeOverlord": { + "name": "大將", + "description": "出場時,先前每有1隻同伴\n被打倒,攻擊和特攻就會提\n高少許。" + }, + "costar": { + "name": "同台共演", + "description": "出場時,會複製同伴的能力\n變化。" + }, + "toxicDebris": { + "name": "毒滿地", + "description": "因物理招式受到傷害時,會\n在對手腳下散布毒菱。" + }, + "armorTail": { + "name": "尾甲", + "description": "包覆著頭部的神秘尾巴使對\n手無法對我方使出先制招式。" + }, + "earthEater": { + "name": "食土", + "description": "受到地面屬性的招式攻擊時\n,不會受到傷害,而是會回\n復。" + }, + "myceliumMight": { + "name": "菌絲之力", + "description": "使出變化類招式時,行動一\n定會變緩慢,但不會受到對\n手特性的干擾。" + }, + "mindsEye": { + "name": "心眼", + "description": "一般屬性和格鬥屬性的招式\n可以擊中幽靈屬性的寶可夢。\n無視對手的閃避率的變化,\n且命中率不會被降低。" + }, + "supersweetSyrup": { + "name": "甘露之蜜", + "description": "在對戰中首次出場時,會四\n處散播甜膩的蜜香,降低對\n手的閃避率。" + }, + "hospitality": { + "name": "款待", + "description": "出場時款待同伴,使其回復\n少量HP。" + }, + "toxicChain": { + "name": "毒鎖鏈", + "description": "靠著含有毒素的鎖鏈的力量\n,有時會讓被招式擊中的對\n手陷入劇毒狀態。" + }, + "embodyAspectTeal": { + "name": "面影輝映", + "description": "將回憶映於心中,使碧草面\n具發出光輝,提高自己的速\n度。" + }, + "embodyAspectWellspring": { + "name": "面影輝映", + "description": "將回憶映於心中,使水井面\n具發出光輝,提高自己的特\n防。" + }, + "embodyAspectHearthflame": { + "name": "面影輝映", + "description": "將回憶映於心中,使火灶面\n具發出光輝,提高自己的攻\n擊。" + }, + "embodyAspectCornerstone": { + "name": "面影輝映", + "description": "將回憶映於心中,使礎石面\n具發出光輝,提高自己的防\n御。" + }, + "teraShift": { + "name": "太晶變形", + "description": "出場時,會吸收周圍的能量\n,變為太晶形態。" + }, + "teraShell": { + "name": "太晶甲殼", + "description": "蘊藏著所有屬性力量的甲殼\n會將自身HP全滿時受到的\n傷害全都變為效果不好。" + }, + "teraformZero": { + "name": "歸零化境", + "description": "太樂巴戈斯變為星晶形態時\n,蘊藏其身的力量會將天氣\n和場地的影響全部歸零。" + }, + "poisonPuppeteer": { + "name": "毒傀儡", + "description": "因為桃歹郎的招式而陷入中\n毒狀態的對手同時也會陷入\n混亂狀態。" + } +} \ No newline at end of file diff --git a/src/locales/zh_TW/ability.ts b/src/locales/zh_TW/ability.ts deleted file mode 100644 index 9fa520a81ff..00000000000 --- a/src/locales/zh_TW/ability.ts +++ /dev/null @@ -1,1146 +0,0 @@ -import { AbilityTranslationEntries } from "#app/interfaces/locales.js"; - -export const ability: AbilityTranslationEntries = { - stench: { - name: "惡臭", - description: "發出臭氣,在攻擊的時候,\n有時會使對手畏縮。", - }, - drizzle: { name: "降雨", description: "出場時,會將天氣變為下雨\n。" }, - speedBoost: { name: "加速", description: "每一回合速度會變快。" }, - battleArmor: { - name: "戰鬥盔甲", - description: "被堅硬的甲殼守護著,不會\n被對手的攻擊擊中要害。", - }, - sturdy: { - name: "結實", - description: - "在HP全滿時受到招式攻擊\n不會被一擊打倒。一擊必殺\n的招式也沒有效果。", - - }, - damp: { - name: "濕氣", - description: "透過把周圍都弄溼,使誰都\n無法使用自爆等爆炸類的招\n式。", - }, - limber: { name: "柔軟", description: "因為身體柔軟,不會變為麻\n痹狀態。" }, - sandVeil: { name: "沙隱", description: "在沙暴中閃避率會提高。" }, - static: { - name: "靜電", - description: "身上帶有靜電,有時會令接\n觸到的對手麻痹。", - }, - voltAbsorb: { - name: "蓄電", - description: "受到電屬性的招式攻擊時,\n不會受到傷害,而是會回復。", - }, - waterAbsorb: { - name: "儲水", - description: "受到水屬性的招式攻擊時,\n不會受到傷害,而是會回復。", - }, - oblivious: { - name: "遲鈍", - description: - "感覺遲鈍,不會陷入著迷和\n被挑釁狀態。面對威嚇也不\n會動搖。", - }, - cloudNine: { name: "無關天氣", description: "任何天氣的影響都會消失。" }, - compoundEyes: { - name: "複眼", - description: "因為擁有複眼,會提高招式\n的命中率。", - }, - insomnia: { - name: "不眠", - description: "因為有著睡不著的體質,所\n以不會陷入睡眠狀態。", - }, - colorChange: { - name: "變色", - description: "自己的屬性會變為擊中自己\n的對手招式的屬性。", - }, - immunity: { - name: "免疫", - description: "因為體內擁有免疫能力,不\n會變為中毒狀態。", - }, - flashFire: { - name: "引火", - description: - "受到火屬性的招式攻擊時,\n吸收火焰,自己使出的火屬\n性招式會變強。", - }, - shieldDust: { - name: "鱗粉", - description: "被鱗粉守護著,不會受到招\n式的追加效果影響。", - }, - ownTempo: { - name: "我行我素", - description: "因為我行我素,不會陷入混\n亂狀態。面對威嚇也不會動\n搖。", - }, - suctionCups: { - name: "吸盤", - description: "用吸盤將自己牢牢吸附在地\n面上,讓替換寶可夢的招式\n和道具失效。", - }, - intimidate: { - name: "威嚇", - description: "出場時威嚇對手,使其退縮\n,從而降低對手的攻擊。", - }, - shadowTag: { - name: "踩影", - description: "踩住對手的影子使其無法逃\n走或替換。", - }, - roughSkin: { - name: "粗糙皮膚", - description: "受到攻擊時,用粗糙的皮膚\n弄傷接觸到自己的對手。", - }, - wonderGuard: { - name: "神奇守護", - description: "不可思議的力量,只有效果\n絕佳的招式才能擊中。", - }, - levitate: { - name: "飄浮", - description: "從地面浮起,從而不會受到\n地面屬性招式的攻擊。", - }, - effectSpore: { - name: "孢子", - description: - "受到攻擊時,有時會把接觸\n到自己的對手變為中毒、麻\n痹或睡眠狀態。", - }, - synchronize: { - name: "同步", - description: "將自己的中毒、麻痹或灼傷\n狀態傳染給對手。", - }, - clearBody: { - name: "恆淨之軀", - description: "不會因對手的招式或特性而\n被降低能力。", - }, - naturalCure: { - name: "自然回復", - description: "異常狀態會在離場後治癒。", - }, - lightningRod: { - name: "避雷針", - description: - "將電屬性的招式吸引到自己\n身上,不但不會受到傷害,\n反而會提高特攻。", - }, - sereneGrace: { - name: "天恩", - description: "受到上天保佑,容易出現招式的追加效果。", - }, - swiftSwim: { name: "悠遊自如", description: "天氣為下雨時,速度會提高。" }, - chlorophyll: { name: "葉綠素", description: "天氣為晴朗時,速度會提高。" }, - illuminate: { - name: "發光", - description: "透過讓周圍變亮,命中率不\n會被降低。", - }, - trace: { - name: "複製", - description: "出場時,複製對手的特性,\n變為與之相同的特性。", - }, - hugePower: { name: "大力士", description: "物理攻擊的威力會變為2倍\n。" }, - poisonPoint: { - name: "毒刺", - description: "有時會讓接觸到自己的對手\n變為中毒狀態。", - }, - innerFocus: { - name: "精神力", - description: - "靠著經過鍛鍊的精神,不會\n因對手的攻擊而畏縮。面對\n威嚇也不會動搖。", - }, - magmaArmor: { - name: "熔岩鎧甲", - description: "將熾熱的熔岩覆蓋在身上,\n不會陷入冰凍狀態。", - }, - waterVeil: { - name: "水幕", - description: "將水幕裹在身上,不會陷入\n灼傷狀態。", - }, - magnetPull: { - name: "磁力", - description: "用磁力吸住鋼屬性的寶可夢\n,使其無法逃走。", - }, - soundproof: { - name: "隔音", - description: "透過遮蔽聲音,不受到聲音\n招式的影響。", - }, - rainDish: { name: "雨盤", description: "天氣為下雨時,會緩緩回復\nHP。" }, - sandStream: { name: "揚沙", description: "出場時,會把天氣變為沙暴。" }, - pressure: { - name: "壓迫感", - description: "給予對手壓迫感,大量減少\n其使用招式的PP。", - }, - thickFat: { - name: "厚脂肪", - description: - "被厚厚的脂肪保護著,能夠\n讓火屬性和冰屬性招式的傷\n害減半。", - }, - earlyBird: { - name: "早起", - description: "即使陷入睡眠狀態,也能以\n2倍的速度提早醒來。", - }, - flameBody: { - name: "火焰之軀", - description: "有時會讓接觸到自己的對手\n變為灼傷狀態。", - }, - runAway: { name: "逃跑", description: "一定能從野生寶可夢那裡逃\n走。" }, - keenEye: { - name: "銳利目光", - description: "靠著銳利的目光,命中率不\n會被降低。", - }, - hyperCutter: { - name: "怪力鉗", - description: "因為擁有以力量自豪的鉗子,\n不會被對手降低攻擊。", - }, - pickup: { - name: "撿拾", - description: "有時會撿來對手用過的道具,\n冒險過程中也會撿到。", - }, - truant: { name: "懶惰", description: "如果使出招式,下一回合就\n需要休息。" }, - hustle: { name: "活力", description: "自己的攻擊雖會變高,但命\n中率會降低。" }, - cuteCharm: { - name: "迷人之軀", - description: "有時會讓接觸到自己的對手陷\n入著迷狀態。", - }, - plus: { - name: "正電", - description: - "場上的夥伴之中,如果有正\n電或負電特性的寶可夢,自\n己的特攻會提高。", - }, - minus: { - name: "負電", - description: - "場上的夥伴之中,如果有正\n電或負電特性的寶可夢,自\n己的特攻會提高。", - }, - forecast: { - name: "陰晴不定", - description: - "在天氣的影響下,會變成水\n屬性、火屬性或冰屬性之中\n的一種。", - }, - stickyHold: { - name: "黏著", - description: "道具會黏在具有黏性的身體\n上,不會被對手奪走。", - }, - shedSkin: { - name: "蛻皮", - description: "透過蛻去身上的皮,有時會\n治癒異常狀態。", - }, - guts: { - name: "毅力", - description: "陷入異常狀態時,會拿出毅\n力,攻擊會提高。", - }, - marvelScale: { - name: "神奇鱗片", - description: "陷入異常狀態時,神奇鱗片\n會發生反應,防禦會提高。", - }, - liquidOoze: { - name: "污泥漿", - description: - "吸收了污泥漿的對手會因為\n強烈的惡臭而使得HP減少。", - }, - overgrow: { - name: "茂盛", - description: "HP減少的時候,草屬性的\n招式威力會提高。", - }, - blaze: { - name: "猛火", - description: "HP減少的時候,火屬性的\n招式威力會提高。", - }, - torrent: { - name: "激流", - description: "HP減少的時候,水屬性的\n招式威力會提高。", - }, - swarm: { - name: "蟲之預感", - description: "HP減少的時候,蟲屬性的\n招式威力會提高。", - }, - rockHead: { - name: "堅硬腦袋", - description: "即使使出會受反作用力傷害\n的招式,HP也不會減少。", - }, - drought: { name: "日照", description: "出場時,會將天氣變為晴朗。" }, - arenaTrap: { name: "沙穴", description: "在戰鬥中讓對手無法逃走。" }, - vitalSpirit: { - name: "幹勁", - description: "透過激發出幹勁,不會變為\n睡眠狀態。", - }, - whiteSmoke: { - name: "白色煙霧", - description: "被白色煙霧保護著,不會被\n對手降低能力。", - }, - purePower: { - name: "瑜伽之力", - description: "因瑜伽的力量,物理攻擊的\n威力會變為2倍。", - }, - shellArmor: { - name: "硬殼盔甲", - description: "被堅硬的殼保護著,對手的\n攻擊不會擊中要害。", - }, - airLock: { name: "氣閘", description: "所有天氣的影響都會消失。" }, - tangledFeet: { - name: "蹣跚", - description: "陷入混亂狀態時,閃避率會\n提高。", - }, - motorDrive: { - name: "電氣引擎", - description: - "受到電屬性的招式攻擊時,\n不但不會受到傷害,反而速\n度會提高。", - }, - rivalry: { - name: "鬥爭心", - description: - "面對性別相同的對手,會燃\n起鬥爭心,變得更強。面對\n性別不同的對手時則會變弱。", - }, - steadfast: { - name: "不屈之心", - description: "每次畏縮時,不屈之心就會\n燃起,速度也會提高。", - }, - snowCloak: { name: "雪隱", description: "天氣為下雪時,閃避率會提\n高。" }, - gluttony: { - name: "貪吃鬼", - description: - "原本HP變得很少時才會吃\n樹果,在HP還有一半時就\n會把它吃掉。", - }, - angerPoint: { - name: "憤怒穴位", - description: "要害被擊中時會大發雷霆。\n攻擊力會提高到最大。", - }, - unburden: { - name: "輕裝", - description: "失去所持有的道具時,速度\n會提高。", - }, - heatproof: { - name: "耐熱", - description: "靠著耐熱的體質,讓火屬性\n的招式傷害減半。", - }, - simple: { name: "單純", description: "能力變化會變為平時的2倍。" }, - drySkin: { - name: "乾燥皮膚", - description: - "下雨天氣時和受到水屬性的\n招式時,HP會回復。晴朗\n天氣時和受到火屬性的招式\n時,HP會減少。", - }, - download: { - name: "下載", - description: - "比較對手的防禦和特防,根\n據較低的那項能力相應地提\n高自己的攻擊或特攻。", - }, - ironFist: { name: "鐵拳", description: "使用到拳頭的招式威力會\n提高。" }, - poisonHeal: { - name: "毒療", - description: "陷入中毒狀態時,HP不會\n減少,反而會漸漸增加。", - }, - adaptability: { - name: "適應力", - description: "與自身同屬性的招式威力會\n提高。", - }, - skillLink: { - name: "連續攻擊", - description: "使用連續招式時,每回都能\n以最多次數進行攻擊。", - }, - hydration: { - name: "濕潤之軀", - description: "天氣為下雨時,會治癒異常\n狀態。", - }, - solarPower: { - name: "太陽之力", - description: "天氣為晴朗時特攻會提高,\n但每回合HP會減少。", - }, - quickFeet: { - name: "飛毛腿", - description: "陷入異常狀態時,速度會提\n高。", - }, - normalize: { - name: "一般皮膚", - description: - "無論是什麼屬性的招式,全\n部都會變為一般屬性。威力\n會少量提高。", - }, - sniper: { name: "狙擊手", description: "擊中要害時,威力會進一步\n提高。" }, - magicGuard: { name: "魔法防守", description: "不會受到攻擊以外的傷害。" }, - noGuard: { - name: "無防守", - description: "由於無防守戰術,雙方使出\n的招式都必定會擊中。", - }, - stall: { name: "慢出", description: "使出招式的順序必定會變為\n最後。" }, - technician: { - name: "技術高手", - description: "可讓威力低的招式提高威力\n來進行攻擊。", - }, - leafGuard: { - name: "葉子防守", - description: "天氣為晴朗時,不會陷入異\n常狀態。", - }, - klutz: { name: "笨拙", description: "無法使用持有的道具。" }, - moldBreaker: { - name: "破格", - description: "可不受特性影響,向對手使\n出招式。", - }, - superLuck: { - name: "超幸運", - description: "因為非常幸運,容易擊中對\n手的要害。", - }, - aftermath: { - name: "引爆", - description: "瀕死時,會對接觸到自己的\n對手造成傷害。", - }, - anticipation: { - name: "危險預知", - description: "察覺對手持有的危險招式。", - }, - forewarn: { - name: "預知夢", - description: "出場時,預見1個對手持有\n的招式。", - }, - unaware: { - name: "純樸", - description: "可無視對手能力的變化,進\n行攻擊。", - }, - tintedLens: { - name: "有色眼鏡", - description: "可將效果不好的招式以正常\n的威力使出。", - }, - filter: { - name: "過濾", - description: "受到效果絕佳的攻擊時,可\n減弱其威力。", - }, - slowStart: { - name: "慢啓動", - description: "在5回合內,攻擊和速度會\n減半。", - }, - scrappy: { - name: "膽量", - description: - "一般屬性和格鬥屬性的招式\n可擊中幽靈屬性的寶可夢。\n面對威嚇也不會動搖。", - }, - stormDrain: { - name: "引水", - description: - "將水屬性的招式引到自己身\n上,不但不會受到傷害,反\n而會提高特攻。", - }, - iceBody: { - name: "冰凍之軀", - description: "天氣為下雪時,會漸漸回復\nHP。", - }, - solidRock: { - name: "堅硬岩石", - description: "受到效果絕佳的攻擊時,可\n減弱其威力。", - }, - snowWarning: { name: "降雪", description: "出場時,會將天氣變為下雪。" }, - honeyGather: { - name: "採蜜", - description: "The Pokémon gathers Honey after a battle. The Honey is then sold for money.", - }, - frisk: { - name: "察覺", - description: "出場時,可以察覺對手的特\n性。", - }, - reckless: { - name: "捨身", - description: "會讓自己因反作用力而受傷\n的招式威力會提高。", - }, - multitype: { - name: "多屬性", - description: "自己的屬性會依持有的石板\n而改變。", - }, - flowerGift: { - name: "花之禮", - description: "天氣為晴朗時,自己和同伴\n的攻擊和特防能力會提高。", - }, - badDreams: { name: "夢魘", description: "給予陷入睡眠狀態的對手傷\n害。" }, - pickpocket: { - name: "順手牽羊", - description: "盜取接觸到自己的對手的道\n具。", - }, - sheerForce: { - name: "強行", - description: "招式會失去追加效果,但可\n以用更高的威力使出招式。", - }, - contrary: { - name: "唱反調", - description: - "能力的變化會逆轉,原本提\n高時會降低,原本降低時會\n提高。", - }, - unnerve: { - name: "緊張感", - description: "讓對手感到緊張,無法吃樹\n果。", - }, - defiant: { - name: "不服輸", - description: "被對手降低能力時,攻擊會\n大幅提高。", - }, - defeatist: { - name: "軟弱", - description: "HP降到一半以下時,會變\n得軟弱而使得攻擊和特攻減\n半。", - }, - cursedBody: { - name: "詛咒之軀", - description: "受到攻擊時,有時會把對手\n的招式變為定身法狀態。", - }, - healer: { name: "治癒之心", description: "有時會治癒同伴的異常狀態。" }, - friendGuard: { name: "友情防守", description: "可以減少我方受到的傷害。" }, - weakArmor: { - name: "碎裂鎧甲", - description: "因物理招式受到傷害時,防\n禦會降低,速度會大幅提高。", - }, - heavyMetal: { name: "重金屬", description: "自己的重量會變為2倍。" }, - lightMetal: { name: "輕金屬", description: "自己的重量會減半。" }, - multiscale: { - name: "多重鱗片", - description: "HP全滿時,受到的傷害會\n變少。", - }, - toxicBoost: { - name: "中毒激升", - description: "陷入中毒狀態時,物理招式\n的威力會提高。", - }, - flareBoost: { - name: "受熱激升", - description: "陷入灼傷狀態時,特殊招式\n的威力會提高。", - }, - harvest: { - name: "收穫", - description: "可多次採收已被使用過的樹果。", - }, - telepathy: { - name: "心靈感應", - description: "讀取我方的攻擊,並閃避其\n招式傷害。", - }, - moody: { - name: "心情不定", - description: "每一回合,能力中的某項會\n大幅提高,而某項會降低。", - }, - overcoat: { - name: "防塵", - description: - "不會受到沙暴的傷害。也不\n會受到粉末類和孢子類招式\n的影響。", - }, - poisonTouch: { - name: "毒手", - description: "有時僅是接觸就能讓對手中\n毒。", - }, - regenerator: { - name: "再生力", - description: "退回同行隊伍後,HP會少\n量回復。", - }, - bigPecks: { name: "健壯胸肌", description: "不會受到降低防禦的效果影\n響。" }, - sandRush: { name: "撥沙", description: "天氣為沙暴時,速度會提高。" }, - wonderSkin: { - name: "奇蹟皮膚", - description: "不易受到變化類招式攻擊的\n身體。", - }, - analytic: { - name: "分析", - description: "如果在最後使出招式,招式\n的威力就會變強。", - }, - illusion: { - name: "幻覺", - description: "假扮成同行隊伍中的最後一\n隻寶可夢出場,迷惑對手。", - }, - imposter: { name: "變身者", description: "變身為當前面對的寶可夢。" }, - infiltrator: { - name: "穿透", - description: "可穿透對手的屏障或替身進\n行攻擊。", - }, - mummy: { - name: "木乃伊", - description: "被對手接觸到後,會將對手\n變為木乃伊。", - }, - moxie: { - name: "自信過度", - description: "如果打倒對手,會充滿自信\n並提高攻擊。", - }, - justified: { - name: "正義之心", - description: "受到惡屬性的招式攻擊時,\n因為正義感,攻擊會提高。", - }, - rattled: { - name: "膽怯", - description: - "受到惡屬性、幽靈屬性和蟲\n屬性的招式攻擊,或受到威\n嚇時,會因膽怯而使得速度\n提高。", - }, - magicBounce: { - name: "魔法鏡", - description: "可不受到由對手使出的變化\n類招式所影響,並將其反彈。", - }, - sapSipper: { - name: "食草", - description: - "受到草屬性的招式攻擊時,\n不但不會受到傷害,反而攻\n擊會提高。", - }, - prankster: { name: "惡作劇之心", description: "可以搶先使出變化類招式。" }, - sandForce: { - name: "沙之力", - description: - "天氣為沙暴時,岩石屬性、\n地面屬性和鋼屬性招式的威\n力會提高。", - }, - ironBarbs: { - name: "鐵刺", - description: "用鐵刺給予接觸到自己的對\n手傷害。", - }, - zenMode: { - name: "達摩模式", - description: "HP變為一半以下時,樣子\n會改變。", - }, - victoryStar: { - name: "勝利之星", - description: "自己和同伴的命中率會提高。", - }, - turboblaze: { - name: "渦輪火焰", - description: "可以不受對手特性的干擾,\n向對手使出招式。", - }, - teravolt: { - name: "兆級電壓", - description: "可以不受對手特性的干擾,\n向對手使出招式。", - }, - aromaVeil: { - name: "芳香幕", - description: "可防住向自己和同伴發出的\n心靈攻擊。", - }, - flowerVeil: { - name: "花幕", - description: "我方的草屬性寶可夢能力不\n會降低。也不會陷入異常狀\n態。", - }, - cheekPouch: { - name: "頰囊", - description: "無論是哪種樹果,吃下去後\nHP都會回復。", - }, - protean: { - name: "變幻自如", - description: - "每次出場戰鬥時,變為與自\n己使出的招式相同的屬性1\n次。", - }, - furCoat: { - name: "毛皮大衣", - description: "對手的物理招式造成的傷害\n會減半。", - }, - magician: { - name: "魔術師", - description: "奪走被自己的招式擊中的對\n手的道具。", - }, - bulletproof: { - name: "防彈", - description: "可防住對手的球和彈類的招\n式。", - }, - competitive: { - name: "好勝", - description: "被對手降低能力時,特攻會\n大幅提高。", - }, - strongJaw: { - name: "強壯之顎", - description: "顎部強壯,會提高啃咬類招\n式的威力。", - }, - refrigerate: { - name: "冰凍皮膚", - description: "一般屬性的招式會變為冰屬\n性。威力會少量提高。", - }, - sweetVeil: { - name: "甜幕", - description: "自己和我方的寶可夢不會陷\n入睡眠狀態。", - }, - stanceChange: { - name: "戰鬥切換", - description: - "若使出攻擊招式,會變為刀\n劍形態,若使出招式「王者\n盾牌」,會變為盾牌形態。", - }, - galeWings: { - name: "疾風之翼", - description: "HP全滿時,可以搶先在對\n手之前使出飛行屬性的招式。", - }, - megaLauncher: { - name: "超級發射器", - description: "波動和波導類招式的威力會\n提高。", - }, - grassPelt: { name: "草之毛皮", description: "在青草場地時,防禦會提高。" }, - symbiosis: { - name: "共生", - description: "同伴使用道具時,會把自己\n持有的道具傳遞給同伴。", - }, - toughClaws: { name: "硬爪", description: "接觸到對手的招式威力會提\n高。" }, - pixilate: { - name: "妖精皮膚", - description: "一般屬性的招式會變為妖精\n屬性。威力會少量提高。", - }, - gooey: { - name: "黏滑", - description: "對手用攻擊接觸到自己時,\n降低此對手的速度。", - }, - aerilate: { - name: "飛行皮膚", - description: "一般屬性的招式會變為飛行\n屬性。威力會少量提高。", - }, - parentalBond: { name: "親子愛", description: "親子倆可合計攻擊2次。" }, - darkAura: { name: "暗黑氣場", description: "全體的惡屬性招式變強。" }, - fairyAura: { name: "妖精氣場", description: "全體的妖精屬性招式變強。" }, - auraBreak: { - name: "氣場破壞", - description: "讓氣場的效果逆轉,並降低\n威力。", - }, - primordialSea: { - name: "始源之海", - description: "變為讓火屬性攻擊失效的天\n氣。", - }, - desolateLand: { - name: "終結之地", - description: "變為讓水屬性攻擊失效的天\n氣。", - }, - deltaStream: { - name: "德爾塔氣流", - description: "變為令飛行屬性的弱點消失\n的天氣。", - }, - stamina: { name: "持久力", description: "受到攻擊時,防禦會提高。" }, - wimpOut: { - name: "躍躍欲逃", - description: "HP變為一半時,會慌慌張\n張逃走,退回同行隊伍中。", - }, - emergencyExit: { - name: "危險迴避", - description: "HP減到一半時,為了避開\n危險,會退回到同行隊伍中。", - }, - waterCompaction: { - name: "遇水凝固", - description: "受到水屬性的招式攻擊時,\n防禦會大幅提高。", - }, - merciless: { - name: "不仁不義", - description: "攻擊中毒狀態的對手時,\n必定會擊中要害。", - }, - shieldsDown: { - name: "界限盾殼", - description: "HP變為一半時,殼會壞掉,\n變得更有攻擊性。", - }, - stakeout: { - name: "蹲守", - description: "可以向替換出場的對手以2\n倍的傷害進行攻擊。", - }, - waterBubble: { - name: "水泡", - description: "降低自己受到的火屬性招式\n的威力,不會灼傷。", - }, - steelworker: { name: "鋼能力者", description: "鋼屬性的招式威力會提高。" }, - berserk: { - name: "怒火沖天", - description: "HP因對手的攻擊降到一半\n時,特攻會提高。", - }, - slushRush: { name: "撥雪", description: "天氣為下雪時,速度會提高。" }, - longReach: { - name: "遠隔", - description: "可以不接觸對手就使出所有\n的招式。", - }, - liquidVoice: { - name: "溼潤之聲", - description: "所有的聲音招式都變為水屬\n性。", - }, - triage: { name: "先行治療", description: "可以搶先使出回復招式。" }, - galvanize: { - name: "電氣皮膚", - description: "一般屬性的招式會變為電屬\n性。威力會少量提高。", - }, - surgeSurfer: { - name: "衝浪之尾", - description: "電氣場地時,速度會變為2\n倍。", - }, - schooling: { - name: "魚羣", - description: - "HP多的時候會聚起來變強。\nHP剩餘量變少時,群體\n會分崩離析。", - }, - disguise: { - name: "畫皮", - description: "用畫皮覆蓋住身體,可防住\n1次攻擊。", - }, - battleBond: { - name: "牽絆變身", - description: - "打倒對手時,與訓練家的牽\n絆會加深,自己的攻擊、特\n攻和速度會提高。", - }, - powerConstruct: { - name: "群聚變形", - description: "HP變為一半時,細胞們會\n趕來支援,變為完全體形態。", - }, - corrosion: { - name: "腐蝕", - description: "就算對方是鋼屬性或毒屬性\n寶可夢,也可讓對方陷入中\n毒狀態。", - }, - comatose: { - name: "絕對睡眠", - description: - "總是半夢半醒的狀態,絕對\n不會醒來。可在睡著的狀況\n下進行攻擊。", - }, - queenlyMajesty: { - name: "女王的威嚴", - description: "向對手施加威懾力,使其無\n法對我方使出先制招式。", - }, - innardsOut: { - name: "飛出的內在物", - description: "被對手打倒的時候,會給予\n對手相當於HP剩餘量的傷\n害。", - }, - dancer: { - name: "舞者", - description: "當有誰使出跳舞招式時,自\n己也能接著使出跳舞招式。", - }, - battery: { name: "蓄電池", description: "會提高我方的特殊招式的威\n力。" }, - fluffy: { - name: "毛茸茸", - description: - "會將對手所給予的接觸類招\n式的傷害減半,但火屬性招\n式的傷害會變為2倍。", - }, - dazzling: { - name: "鮮豔之軀", - description: "讓對手嚇一跳,使其無法對\n我方使出先制招式。", - }, - soulHeart: { - name: "魂心", - description: "每當場上有寶可夢陷入瀕死\n狀態時,特攻就會提高。", - }, - tanglingHair: { - name: "捲髮", - description: "對手用攻擊接觸到自己時,\n降低此對手的速度。", - }, - receiver: { - name: "接球手", - description: "繼承被打倒的同伴的特性,\n變為相同的特性。", - }, - powerOfAlchemy: { - name: "化學之力", - description: "繼承被打倒的同伴的特性,\n變為相同的特性。", - }, - beastBoost: { - name: "異獸提升", - description: "打倒對手的時候,會提高自\n己最高的那項能力。", - }, - rksSystem: { - name: "AR系統", - description: "根據持有的記憶碟,自己的\n屬性會改變。", - }, - electricSurge: { - name: "電氣製造者", - description: "出場時,會布下電氣場地。", - }, - psychicSurge: { - name: "精神製造者", - description: "出場時,會布下精神場地。", - }, - mistySurge: { name: "薄霧製造者", description: "出場時,會布下薄霧場地。" }, - grassySurge: { - name: "青草製造者", - description: "出場時,會布下青草場地。", - }, - fullMetalBody: { - name: "金屬防護", - description: "不會因對手的招式或特性而\n被降低能力。", - }, - shadowShield: { - name: "幻影防守", - description: "HP全滿時,受到的傷害會\n變少。", - }, - prismArmor: { - name: "棱鏡裝甲", - description: "受到效果絕佳的攻擊時,可\n減弱其威力。", - }, - neuroforce: { - name: "腦核之力", - description: "可進一步提升效果絕佳招式\n的威力。", - }, - intrepidSword: { - name: "不撓之劍", - description: "在戰鬥中首次出場時,攻擊\n會提高。", - }, - dauntlessShield: { - name: "不屈之盾", - description: "在戰鬥中首次出場時,防禦\n會提高。", - }, - libero: { - name: "自由者", - description: - "每次出場戰鬥時,變為與自\n己使出的招式相同的屬性1\n次。", - }, - ballFetch: { - name: "撿球", - description: "當寶可夢沒有攜帶道具時,\n會撿回第1個投出後捕捉失\n敗的精靈球。", - }, - cottonDown: { - name: "棉絮", - description: - "受到攻擊時會撒下棉絮,降\n低除自己以外的所有寶可夢\n的速度。", - }, - propellerTail: { - name: "螺旋尾鰭", - description: "能無視具有吸引對手招式效\n果的特性或招式的影響。", - }, - mirrorArmor: { - name: "鏡甲", - description: "只反彈自己受到的能力降低\n效果。", - }, - gulpMissile: { - name: "一口導彈", - description: - "衝浪或潛水時會叼來獵物。\n當受到傷害時,會吐出獵物\n攻擊對手。", - }, - stalwart: { - name: "堅毅", - description: "能無視具有吸引對手招式效\n果的特性或招式的影響。", - }, - steamEngine: { - name: "蒸汽機", - description: "受到水屬性或火屬性招式攻\n擊時,速度會極大幅提高。", - }, - punkRock: { - name: "龐克搖滾", - description: "聲音招式的威力會提高。受\n到聲音招式的傷害會減半。", - }, - sandSpit: { name: "吐沙", description: "受到攻擊時,會刮起沙暴。" }, - iceScales: { - name: "冰鱗粉", - description: "得到冰鱗粉的守護,受到的\n特殊攻擊傷害會減半。", - }, - ripen: { name: "熟成", description: "讓樹果成熟,使效果變為2\n倍。" }, - iceFace: { - name: "結凍頭", - description: - "頭部的冰會代替自己承受物\n理攻擊,但是樣子會改變。\n下雪時,冰會恢復原狀。", - }, - powerSpot: { - name: "能量點", - description: "只要站在旁邊,招式的威力\n就會提高。", - }, - mimicry: { - name: "擬態", - description: "寶可夢的屬性會根據場地的\n狀態而改變。", - }, - screenCleaner: { - name: "除障", - description: - "出場時,敵方和我方的光牆\n、反射壁和極光幕的效果會\n消失。", - }, - steelySpirit: { - name: "鋼之意志", - description: "我方的鋼屬性攻擊威力會提\n高。", - }, - perishBody: { - name: "滅亡之軀", - description: - "在受到接觸類招式攻擊時,\n3個回合後雙方都會陷入瀕\n死。替換寶可夢後效果就\n會消失。", - }, - wanderingSpirit: { - name: "遊魂", - description: "與使用接觸類招式攻擊自己\n的寶可夢互換特性。", - }, - gorillaTactics: { - name: "一猩一意", - description: "攻擊雖然會提高,但只能使\n出最初選擇的招式。", - }, - neutralizingGas: { - name: "化學變化氣體", - description: - "當場上有特性是化學變化氣\n體的寶可夢時,所有寶可夢\n的特性效果都會消失或無\n法發動。", - }, - pastelVeil: { - name: "粉彩護幕", - description: "自己和我方同伴都不會陷入\n中毒的異常狀態。", - }, - hungerSwitch: { - name: "飽了又餓", - description: "在每個回合結束時,會在滿\n腹花紋和空腹花紋之間交替\n改變樣子。", - }, - quickDraw: { name: "速擊", description: "有時能比對手先一步行動。" }, - unseenFist: { - name: "無形拳", - description: - "只要是接觸到對手的招式,\n就可以無視對手的防守效果\n進行攻擊。", - }, - curiousMedicine: { - name: "怪藥", - description: "出場時,會從貝殼撒藥,將\n我方的能力變化復原。", - }, - transistor: { name: "電晶體", description: "電屬性的招式威力會提高。" }, - dragonsMaw: { name: "龍顎", description: "龍屬性的招式威力會提高。" }, - chillingNeigh: { - name: "蒼白嘶鳴", - description: "打倒對手時會用冰冷的聲音\n嘶鳴並提高攻擊。", - }, - grimNeigh: { - name: "漆黑嘶鳴", - description: "打倒對手時會用恐怖的聲音\n嘶鳴並提高特攻。", - }, - asOneGlastrier: { - name: "人馬一體", - description: "兼備蕾冠王的緊張感和雪暴\n馬的蒼白嘶鳴這2種特性。", - }, - asOneSpectrier: { - name: "人馬一體", - description: "兼備蕾冠王的緊張感和靈幽\n馬的漆黑嘶鳴這2種特性。", - }, - lingeringAroma: { - name: "甩不掉的氣味", - description: "被對手接觸到時,甩不掉的\n氣味會沾染給對手。", - }, - seedSower: { - name: "掉出種子", - description: "受到攻擊時,會將腳下變成\n青草場地。", - }, - thermalExchange: { - name: "熱交換", - description: - "受到火屬性的招式攻擊時,\n攻擊會提高,不會陷入灼傷\n狀態。", - }, - angerShell: { - name: "憤怒甲殼", - description: - "HP因對手的攻擊降到一半\n時,會因憤怒而降低防禦和\n特防,但攻擊、特攻和速度\n會提高。", - }, - purifyingSalt: { - name: "潔淨之鹽", - description: - "因潔淨的鹽而不會陷入異常\n狀態。能夠讓幽靈屬性招式\n的傷害減半。", - }, - wellBakedBody: { - name: "焦香之軀", - description: - "受到火屬性的招式攻擊時,\n不但不會受到傷害,反而防\n禦會大幅提高", - }, - windRider: { - name: "乘風", - description: - "吹起順風或受到風的招式攻\n擊時,不但不會受到傷害,\n反而攻擊會提高。", - }, - guardDog: { - name: "看門犬", - description: - "受到威嚇時,攻擊會提高。\n會讓替換寶可夢的招式和道\n具失效。", - }, - rockyPayload: { name: "搬巖", description: "岩石屬性的招式威力會提高。" }, - windPower: { - name: "風力發電", - description: "受到風的招式攻擊時,會變\n成充電狀態。", - }, - zeroToHero: { - name: "全能變身", - description: "離場後會變為全能形態。", - }, - commander: { - name: "發號施令", - description: - "出場時,若我方有吃吼霸,\n便會進入吃吼霸的口中,從\n那裡發號施令。", - }, - electromorphosis: { - name: "電力轉換", - description: "受到傷害時,會變成充電狀\n態。", - }, - protosynthesis: { - name: "古代活性", - description: "攜帶著驅勁能量或天氣為晴\n朗時,數值最高的能力會提\n高。", - }, - quarkDrive: { - name: "夸克充能", - description: - "攜帶著驅勁能量或在電氣場\n地上時,數值最高的能力會\n提高。", - }, - goodAsGold: { - name: "黃金之軀", - description: "既不氧化又堅韌的黃金之軀\n不會受到對手的變化類招式\n攻擊。", - }, - vesselOfRuin: { - name: "災禍之鼎", - description: "在喚來災厄之鼎的力量下,\n除自己以外的特攻會變弱。", - }, - swordOfRuin: { - name: "災禍之劍", - description: "在喚來災厄之劍的力量下,\n除自己以外的防禦會變弱。", - }, - tabletsOfRuin: { - name: "災禍之簡", - description: "在喚來災厄之木簡的力量下\n,除自己以外的攻擊會變弱。", - }, - beadsOfRuin: { - name: "災禍之玉", - description: "在喚來災厄之木簡的力量下\n,除自己以外的特防會變弱。", - }, - orichalcumPulse: { - name: "緋紅脈動", - description: - "出場時,會將天氣變為晴朗\n。日照很強時,會因為古代\n的脈動而使攻擊升高。", - }, - hadronEngine: { - name: "強子引擎", - description: - "出場時,會布下電氣場地。\n在電氣場地時,會因為未來\n的機關而使特攻升高。", - }, - opportunist: { - name: "跟風", - description: "對手的能力提高時,自己也\n會跟著提高能力。", - }, - cudChew: { - name: "反芻", - description: "食用樹果後,會在下一回合\n結束時從胃裡取出,以1次\n為限再次食用。", - }, - sharpness: { name: "鋒銳", description: "切斬對手的招式威力會提高。" }, - supremeOverlord: { - name: "大將", - description: - "出場時,先前每有1隻同伴\n被打倒,攻擊和特攻就會提\n高少許。", - }, - costar: { name: "同台共演", description: "出場時,會複製同伴的能力\n變化。" }, - toxicDebris: { - name: "毒滿地", - description: "因物理招式受到傷害時,會\n在對手腳下散布毒菱。", - }, - armorTail: { - name: "尾甲", - description: "包覆著頭部的神秘尾巴使對\n手無法對我方使出先制招式。", - }, - earthEater: { - name: "食土", - description: - "受到地面屬性的招式攻擊時\n,不會受到傷害,而是會回\n復。", - }, - myceliumMight: { - name: "菌絲之力", - description: - "使出變化類招式時,行動一\n定會變緩慢,但不會受到對\n手特性的干擾。", - }, - mindsEye: { - name: "心眼", - description: - "一般屬性和格鬥屬性的招式\n可以擊中幽靈屬性的寶可夢。\n無視對手的閃避率的變化,\n且命中率不會被降低。", - }, - supersweetSyrup: { - name: "甘露之蜜", - description: - "在對戰中首次出場時,會四\n處散播甜膩的蜜香,降低對\n手的閃避率。", - }, - hospitality: { - name: "款待", - description: "出場時款待同伴,使其回復\n少量HP。", - }, - toxicChain: { - name: "毒鎖鏈", - description: - "靠著含有毒素的鎖鏈的力量\n,有時會讓被招式擊中的對\n手陷入劇毒狀態。", - }, - embodyAspectTeal: { - name: "面影輝映", - description: "將回憶映於心中,使碧草面\n具發出光輝,提高自己的速\n度。", - }, - embodyAspectWellspring: { - name: "面影輝映", - description: "將回憶映於心中,使水井面\n具發出光輝,提高自己的特\n防。", - }, - embodyAspectHearthflame: { - name: "面影輝映", - description: "將回憶映於心中,使火灶面\n具發出光輝,提高自己的攻\n擊。", - }, - embodyAspectCornerstone: { - name: "面影輝映", - description: "將回憶映於心中,使礎石面\n具發出光輝,提高自己的防\n御。", - }, - teraShift: { - name: "太晶變形", - description: "出場時,會吸收周圍的能量\n,變為太晶形態。", - }, - teraShell: { - name: "太晶甲殼", - description: - "蘊藏著所有屬性力量的甲殼\n會將自身HP全滿時受到的\n傷害全都變為效果不好。", - }, - teraformZero: { - name: "歸零化境", - description: - "太樂巴戈斯變為星晶形態時\n,蘊藏其身的力量會將天氣\n和場地的影響全部歸零。", - }, - poisonPuppeteer: { - name: "毒傀儡", - description: - "因為桃歹郎的招式而陷入中\n毒狀態的對手同時也會陷入\n混亂狀態。", - }, -} as const; diff --git a/src/locales/zh_TW/achv.json b/src/locales/zh_TW/achv.json new file mode 100644 index 00000000000..6587394cf41 --- /dev/null +++ b/src/locales/zh_TW/achv.json @@ -0,0 +1,260 @@ +{ + "Achievements": { + "name": "成就" + }, + "Locked": { + "name": "未解鎖" + }, + "MoneyAchv": { + "description": "累計獲得 ₽{{moneyAmount}}" + }, + "10K_MONEY": { + "name": "小有積蓄" + }, + "100K_MONEY": { + "name": "大戶人家" + }, + "1M_MONEY": { + "name": "百萬富翁" + }, + "10M_MONEY": { + "name": "暴發戶" + }, + "DamageAchv": { + "description": "在單次攻擊中造成 {{damageAmount}} 點傷害" + }, + "250_DMG": { + "name": "重拳出擊" + }, + "1000_DMG": { + "name": "神拳猛擊" + }, + "2500_DMG": { + "name": "奪少?" + }, + "10000_DMG": { + "name": "一拳超人" + }, + "HealAchv": { + "description": "通過技能、能力或攜帶的道具一次性治療 {{healAmount}} {{HP}}點" + }, + "250_HEAL": { + "name": "新手奶媽" + }, + "1000_HEAL": { + "name": "治療擔當" + }, + "2500_HEAL": { + "name": "牧師" + }, + "10000_HEAL": { + "name": "泉水" + }, + "LevelAchv": { + "description": "將一隻寶可夢提升到 Lv{{level}}" + }, + "LV_100": { + "name": "别急,後面還有" + }, + "LV_250": { + "name": "精英" + }, + "LV_1000": { + "name": "天外有天" + }, + "RibbonAchv": { + "description": "累計獲得 {{ribbonAmount}} 個勛章" + }, + "10_RIBBONS": { + "name": "寶可夢聯盟冠軍" + }, + "25_RIBBONS": { + "name": "超級球聯盟冠軍" + }, + "50_RIBBONS": { + "name": "高級球聯盟冠軍" + }, + "75_RIBBONS": { + "name": "肉鴿球聯盟冠軍" + }, + "100_RIBBONS": { + "name": "大師球聯盟冠軍" + }, + "TRANSFER_MAX_BATTLE_STAT": { + "name": "團隊協作", + "description": "在一項屬性強化至最大時用接力棒傳遞給其他寶可夢" + }, + "MAX_FRIENDSHIP": { + "name": "親密無間", + "description": "使一隻寶可夢的親密度達到最大值" + }, + "MEGA_EVOLVE": { + "name": "大變身", + "description": "超級進化一隻寶可夢" + }, + "GIGANTAMAX": { + "name": "這位更是重量級", + "description": "極巨化一隻寶可夢" + }, + "TERASTALLIZE": { + "name": "本系愛好者", + "description": "太晶化一隻寶可夢" + }, + "STELLAR_TERASTALLIZE": { + "name": "隱藏屬性", + "description": "星晶化一隻寶可夢" + }, + "SPLICE": { + "name": "無限融合", + "description": "使用基因之楔將兩隻寶可夢融合在一起" + }, + "MINI_BLACK_HOLE": { + "name": "一大洞的道具", + "description": "獲得一個迷你黑洞" + }, + "CATCH_MYTHICAL": { + "name": "神秘禮物", + "description": "捕捉一隻幻之寶可夢" + }, + "CATCH_SUB_LEGENDARY": { + "name": "二級傳說", + "description": "捕捉一隻準傳說寶可夢" + }, + "CATCH_LEGENDARY": { + "name": "傳說", + "description": "捕捉一隻傳說寶可夢" + }, + "SEE_SHINY": { + "name": "閃耀奪目", + "description": "在野外找到一隻閃光寶可夢" + }, + "SHINY_PARTY": { + "name": "嘔心瀝血", + "description": "擁有一支由閃光寶可夢組成的滿員隊伍" + }, + "HATCH_MYTHICAL": { + "name": "幻獸蛋", + "description": "從蛋中孵化出一隻幻之寶可夢" + }, + "HATCH_SUB_LEGENDARY": { + "name": "二級傳說蛋", + "description": "從蛋中孵化出一隻準傳說寶可夢" + }, + "HATCH_LEGENDARY": { + "name": "傳說蛋", + "description": "從蛋中孵化出一隻傳說寶可夢" + }, + "HATCH_SHINY": { + "name": "金色傳說!", + "description": "從蛋中孵化出一隻閃光寶可夢" + }, + "HIDDEN_ABILITY": { + "name": "隱藏實力", + "description": "捕捉一隻擁有隱藏特性的寶可夢" + }, + "PERFECT_IVS": { + "name": "合格證", + "description": "獲得一隻擁有完美個體值的寶可夢" + }, + "CLASSIC_VICTORY": { + "name": "戰無不勝", + "description": "在經典模式中通關遊戲" + }, + "MONO_GEN_ONE": { + "name": "最初的勁敵", + "description": "完成僅限第一世代的挑戰." + }, + "MONO_GEN_TWO": { + "name": "1.5世代", + "description": "完成僅限第二世代的挑戰." + }, + "MONO_GEN_THREE": { + "name": "“水太多了”", + "description": "完成僅限第三世代的挑戰." + }, + "MONO_GEN_FOUR": { + "name": "她真是最強冠軍嗎?", + "description": "完成僅限第四世代的挑戰." + }, + "MONO_GEN_FIVE": { + "name": "完全原創", + "description": "完成僅限第五世代的挑戰." + }, + "MONO_GEN_SIX": { + "name": "女大公", + "description": "完成僅限第六世代的挑戰." + }, + "MONO_GEN_SEVEN": { + "name": "首屆冠軍", + "description": "完成僅限第七世代的挑戰." + }, + "MONO_GEN_EIGHT": { + "name": "冠軍時刻!", + "description": "完成僅限第八世代的挑戰." + }, + "MONO_GEN_NINE": { + "name": "她又放水了", + "description": "完成僅限第九世代的挑戰." + }, + "MonoType": { + "description": "完成 {{type}} 單屬性挑戰." + }, + "MONO_NORMAL": { + "name": "異乎尋常的尋常" + }, + "MONO_FIGHTING": { + "name": "我有真功夫" + }, + "MONO_FLYING": { + "name": "憤怒的小鳥" + }, + "MONO_POISON": { + "name": "關都地區特色" + }, + "MONO_GROUND": { + "name": "地震預報" + }, + "MONO_ROCK": { + "name": "堅如磐石" + }, + "MONO_BUG": { + "name": "音箱蟀俠" + }, + "MONO_GHOST": { + "name": "捉鬼敢死隊" + }, + "MONO_STEEL": { + "name": "鐵巨人" + }, + "MONO_FIRE": { + "name": "搓火球解決一切" + }, + "MONO_WATER": { + "name": "當雨來臨,傾盆而下" + }, + "MONO_GRASS": { + "name": "別踏這個青" + }, + "MONO_ELECTRIC": { + "name": "瞄準大岩蛇的角!" + }, + "MONO_PSYCHIC": { + "name": "腦洞大開" + }, + "MONO_ICE": { + "name": "如履薄冰" + }, + "MONO_DRAGON": { + "name": "準神俱樂部" + }, + "MONO_DARK": { + "name": "總有叛逆期" + }, + "MONO_FAIRY": { + "name": "林克,醒醒!" + }, + "INVERSE_BATTLE": { + "name": "鏡子子鏡", + "description": "完成逆轉之戰挑戰\n戰挑戰之轉逆成完" + } +} \ No newline at end of file diff --git a/src/locales/zh_TW/achv.ts b/src/locales/zh_TW/achv.ts deleted file mode 100644 index dbd1d44d220..00000000000 --- a/src/locales/zh_TW/achv.ts +++ /dev/null @@ -1,278 +0,0 @@ -import { AchievementTranslationEntries } from "#app/interfaces/locales.js"; - -// Achievement translations for the when the player character is male -export const PGMachv: AchievementTranslationEntries = { - "Achievements": { - name: "成就", - }, - "Locked": { - name: "未解鎖", - }, - - "MoneyAchv": { - description: "累計獲得 ₽{{moneyAmount}}", - }, - "10K_MONEY": { - name: "小有積蓄", - }, - "100K_MONEY": { - name: "大戶人家", - }, - "1M_MONEY": { - name: "百萬富翁", - }, - "10M_MONEY": { - name: "暴發戶", - }, - - "DamageAchv": { - description: "在單次攻擊中造成 {{damageAmount}} 點傷害", - }, - "250_DMG": { - name: "重拳出擊", - }, - "1000_DMG": { - name: "神拳猛擊", - }, - "2500_DMG": { - name: "奪少?", - }, - "10000_DMG": { - name: "一拳超人", - }, - - "HealAchv": { - description: "通過技能、能力或攜帶的道具一次性治療 {{healAmount}} {{HP}}點", - }, - "250_HEAL": { - name: "新手奶媽", - }, - "1000_HEAL": { - name: "治療擔當", - }, - "2500_HEAL": { - name: "牧師", - }, - "10000_HEAL": { - name: "泉水", - }, - - "LevelAchv": { - description: "將一隻寶可夢提升到 Lv{{level}}", - }, - "LV_100": { - name: "别急,後面還有", - }, - "LV_250": { - name: "精英", - }, - "LV_1000": { - name: "天外有天", - }, - - "RibbonAchv": { - description: "累計獲得 {{ribbonAmount}} 個勛章", - }, - "10_RIBBONS": { - name: "寶可夢聯盟冠軍", - }, - "25_RIBBONS": { - name: "超級球聯盟冠軍", - }, - "50_RIBBONS": { - name: "高級球聯盟冠軍", - }, - "75_RIBBONS": { - name: "肉鴿球聯盟冠軍", - }, - "100_RIBBONS": { - name: "大師球聯盟冠軍", - }, - - "TRANSFER_MAX_BATTLE_STAT": { - name: "團隊協作", - description: "在一項屬性強化至最大時用接力棒傳遞給其他寶可夢", - }, - "MAX_FRIENDSHIP": { - name: "親密無間", - description: "使一隻寶可夢的親密度達到最大值", - }, - "MEGA_EVOLVE": { - name: "大變身", - description: "超級進化一隻寶可夢", - }, - "GIGANTAMAX": { - name: "這位更是重量級", - description: "極巨化一隻寶可夢", - }, - "TERASTALLIZE": { - name: "本系愛好者", - description: "太晶化一隻寶可夢", - }, - "STELLAR_TERASTALLIZE": { - name: "隱藏屬性", - description: "星晶化一隻寶可夢", - }, - "SPLICE": { - name: "無限融合", - description: "使用基因之楔將兩隻寶可夢融合在一起", - }, - "MINI_BLACK_HOLE": { - name: "一大洞的道具", - description: "獲得一個迷你黑洞", - }, - "CATCH_MYTHICAL": { - name: "神秘禮物", - description: "捕捉一隻幻之寶可夢", - }, - "CATCH_SUB_LEGENDARY": { - name: "二級傳說", - description: "捕捉一隻準傳說寶可夢", - }, - "CATCH_LEGENDARY": { - name: "傳說", - description: "捕捉一隻傳說寶可夢", - }, - "SEE_SHINY": { - name: "閃耀奪目", - description: "在野外找到一隻閃光寶可夢", - }, - "SHINY_PARTY": { - name: "嘔心瀝血", - description: "擁有一支由閃光寶可夢組成的滿員隊伍", - }, - "HATCH_MYTHICAL": { - name: "幻獸蛋", - description: "從蛋中孵化出一隻幻之寶可夢", - }, - "HATCH_SUB_LEGENDARY": { - name: "二級傳說蛋", - description: "從蛋中孵化出一隻準傳說寶可夢", - }, - "HATCH_LEGENDARY": { - name: "傳說蛋", - description: "從蛋中孵化出一隻傳說寶可夢", - }, - "HATCH_SHINY": { - name: "金色傳說!", - description: "從蛋中孵化出一隻閃光寶可夢", - }, - "HIDDEN_ABILITY": { - name: "隱藏實力", - description: "捕捉一隻擁有隱藏特性的寶可夢", - }, - "PERFECT_IVS": { - name: "合格證", - description: "獲得一隻擁有完美個體值的寶可夢", - }, - "CLASSIC_VICTORY": { - name: "戰無不勝", - description: "在經典模式中通關遊戲", - }, - "UNEVOLVED_CLASSIC_VICTORY": { - name: "Bring Your Child To Work Day", - description: "Beat the game in Classic Mode with at least one unevolved party member." - }, - - "MONO_GEN_ONE": { - name: "最初的勁敵", - description: "完成僅限第一世代的挑戰.", - }, - "MONO_GEN_TWO": { - name: "1.5世代", - description: "完成僅限第二世代的挑戰.", - }, - "MONO_GEN_THREE": { - name: "“水太多了”", - description: "完成僅限第三世代的挑戰.", - }, - "MONO_GEN_FOUR": { - name: "她真是最強冠軍嗎?", - description: "完成僅限第四世代的挑戰.", - }, - "MONO_GEN_FIVE": { - name: "完全原創", - description: "完成僅限第五世代的挑戰.", - }, - "MONO_GEN_SIX": { - name: "女大公", - description: "完成僅限第六世代的挑戰.", - }, - "MONO_GEN_SEVEN": { - name: "首屆冠軍", - description: "完成僅限第七世代的挑戰.", - }, - "MONO_GEN_EIGHT": { - name: "冠軍時刻!", - description: "完成僅限第八世代的挑戰.", - }, - "MONO_GEN_NINE": { - name: "她又放水了", - description: "完成僅限第九世代的挑戰.", - }, - - "MonoType": { - description: "完成 {{type}} 單屬性挑戰.", - }, - "MONO_NORMAL": { - name: "異乎尋常的尋常", - }, - "MONO_FIGHTING": { - name: "我有真功夫", - }, - "MONO_FLYING": { - name: "憤怒的小鳥", - }, - "MONO_POISON": { - name: "關都地區特色", - }, - "MONO_GROUND": { - name: "地震預報", - }, - "MONO_ROCK": { - name: "堅如磐石", - }, - "MONO_BUG": { - name: "音箱蟀俠", - }, - "MONO_GHOST": { - name: "捉鬼敢死隊", - }, - "MONO_STEEL": { - name: "鐵巨人", - }, - "MONO_FIRE": { - name: "搓火球解決一切", - }, - "MONO_WATER": { - name: "當雨來臨,傾盆而下", - }, - "MONO_GRASS": { - name: "別踏這個青", - }, - "MONO_ELECTRIC": { - name: "瞄準大岩蛇的角!", - }, - "MONO_PSYCHIC": { - name: "腦洞大開", - }, - "MONO_ICE": { - name: "如履薄冰", - }, - "MONO_DRAGON": { - name: "準神俱樂部", - }, - "MONO_DARK": { - name: "總有叛逆期", - }, - "MONO_FAIRY": { - name: "林克,醒醒!", - }, - "FRESH_START": { - name: "First Try!", - description: "Complete the Fresh Start challenge." - } -} as const; - -// Achievement translations for the when the player character is female (it for now uses the same translations as the male version) -export const PGFachv: AchievementTranslationEntries = PGMachv; diff --git a/src/locales/zh_TW/arena-flyout.json b/src/locales/zh_TW/arena-flyout.json new file mode 100644 index 00000000000..9e26dfeeb6e --- /dev/null +++ b/src/locales/zh_TW/arena-flyout.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/src/locales/zh_TW/arena-flyout.ts b/src/locales/zh_TW/arena-flyout.ts deleted file mode 100644 index 8a31d37b10c..00000000000 --- a/src/locales/zh_TW/arena-flyout.ts +++ /dev/null @@ -1,49 +0,0 @@ -import { SimpleTranslationEntries } from "#app/interfaces/locales"; - -export const arenaFlyout: SimpleTranslationEntries = { - // Title - "activeBattleEffects": "Active Battle Effects", - "player": "Player", - "neutral": "Neutral", - "enemy": "Enemy", - - // WeatherType - "sunny": "Sunny", - "rain": "Rain", - "sandstorm": "Sandstorm", - "hail": "Hail", - "snow": "Snow", - "fog": "Fog", - "heavyRain": "Heavy Rain", - "harshSun": "Harsh Sun", - "strongWinds": "Strong Winds", - - // TerrainType - "misty": "Misty Terrain", - "electric": "Electric Terrain", - "grassy": "Grassy Terrain", - "psychic": "Psychic Terrain", - - // ArenaTagType - "mudSport": "Mud Sport", - "waterSport": "Water Sport", - "spikes": "Spikes", - "toxicSpikes": "Toxic Spikes", - "mist": "Mist", - "futureSight": "Future Sight", - "doomDesire": "Doom Desire", - "wish": "Wish", - "stealthRock": "Stealth Rock", - "stickyWeb": "Sticky Web", - "trickRoom": "Trick Room", - "gravity": "Gravity", - "reflect": "Reflect", - "lightScreen": "Light Screen", - "auroraVeil": "Aurora Veil", - "quickGuard": "Quick Guard", - "wideGuard": "Wide Guard", - "matBlock": "Mat Block", - "craftyShield": "Crafty Shield", - "tailwind": "Tailwind", - "happyHour": "Happy Hour", -}; diff --git a/src/locales/zh_TW/arena-tag.json b/src/locales/zh_TW/arena-tag.json new file mode 100644 index 00000000000..b60946a3b77 --- /dev/null +++ b/src/locales/zh_TW/arena-tag.json @@ -0,0 +1,5 @@ +{ + "noCritOnAddPlayer": "{{moveName}}保護了你的\n隊伍不被擊中要害!", + "noCritOnAddEnemy": "{{moveName}}保護了對方的\n隊伍不被擊中要害!", + "noCritOnRemove": "{{pokemonNameWithAffix}}的{{moveName}}\n效果消失了!" +} \ No newline at end of file diff --git a/src/locales/zh_TW/arena-tag.ts b/src/locales/zh_TW/arena-tag.ts deleted file mode 100644 index ee7d2eb7bc5..00000000000 --- a/src/locales/zh_TW/arena-tag.ts +++ /dev/null @@ -1,53 +0,0 @@ -import { SimpleTranslationEntries } from "#app/interfaces/locales"; - -export const arenaTag: SimpleTranslationEntries = { - "yourTeam": "your team", - "opposingTeam": "the opposing team", - "arenaOnRemove": "{{moveName}}'s effect wore off.", - "arenaOnRemovePlayer": "{{moveName}}'s effect wore off\non your side.", - "arenaOnRemoveEnemy": "{{moveName}}'s effect wore off\non the foe's side.", - "mistOnAdd": "{{pokemonNameWithAffix}}'s team became\nshrouded in mist!", - "mistApply": "The mist prevented\nthe lowering of stats!", - "reflectOnAdd": "Reflect reduced the damage of physical moves.", - "reflectOnAddPlayer": "Reflect reduced the damage of physical moves on your side.", - "reflectOnAddEnemy": "Reflect reduced the damage of physical moves on the foe's side.", - "lightScreenOnAdd": "Light Screen reduced the damage of special moves.", - "lightScreenOnAddPlayer": "Light Screen reduced the damage of special moves on your side.", - "lightScreenOnAddEnemy": "Light Screen reduced the damage of special moves on the foe's side.", - "auroraVeilOnAdd": "Aurora Veil reduced the damage of moves.", - "auroraVeilOnAddPlayer": "Aurora Veil reduced the damage of moves on your side.", - "auroraVeilOnAddEnemy": "Aurora Veil reduced the damage of moves on the foe's side.", - "conditionalProtectOnAdd": "{{moveName}} protected team!", - "conditionalProtectOnAddPlayer": "{{moveName}} protected your team!", - "conditionalProtectOnAddEnemy": "{{moveName}} protected the\nopposing team!", - "conditionalProtectApply": "{{moveName}} protected {{pokemonNameWithAffix}}!", - "matBlockOnAdd": "{{pokemonNameWithAffix}} intends to flip up a mat\nand block incoming attacks!", - "noCritOnAddPlayer": "{{moveName}}保護了你的\n隊伍不被擊中要害!", - "noCritOnAddEnemy": "{{moveName}}保護了對方的\n隊伍不被擊中要害!", - "noCritOnRemove": "{{pokemonNameWithAffix}}的{{moveName}}\n效果消失了!", - "wishTagOnAdd": "{{pokemonNameWithAffix}}'s wish\ncame true!", - "mudSportOnAdd": "Electricity's power was weakened!", - "mudSportOnRemove": "The effects of Mud Sport\nhave faded.", - "waterSportOnAdd": "Fire's power was weakened!", - "waterSportOnRemove": "The effects of Water Sport\nhave faded.", - "spikesOnAdd": "{{moveName}} were scattered\nall around {{opponentDesc}}'s feet!", - "spikesActivateTrap": "{{pokemonNameWithAffix}} is hurt\nby the spikes!", - "toxicSpikesOnAdd": "{{moveName}} were scattered\nall around {{opponentDesc}}'s feet!", - "toxicSpikesActivateTrapPoison": "{{pokemonNameWithAffix}} absorbed the {{moveName}}!", - "stealthRockOnAdd": "Pointed stones float in the air\naround {{opponentDesc}}!", - "stealthRockActivateTrap": "Pointed stones dug into\n{{pokemonNameWithAffix}}!", - "stickyWebOnAdd": "A {{moveName}} has been laid out on the ground around the opposing team!", - "stickyWebActivateTrap": "The opposing {{pokemonName}} was caught in a sticky web!", - "trickRoomOnAdd": "{{pokemonNameWithAffix}} twisted\nthe dimensions!", - "trickRoomOnRemove": "The twisted dimensions\nreturned to normal!", - "gravityOnAdd": "Gravity intensified!", - "gravityOnRemove": "Gravity returned to normal!", - "tailwindOnAdd": "The Tailwind blew from behind team!", - "tailwindOnAddPlayer": "The Tailwind blew from behind\nyour team!", - "tailwindOnAddEnemy": "The Tailwind blew from behind\nthe opposing team!", - "tailwindOnRemove": "Team's Tailwind petered out!", - "tailwindOnRemovePlayer": "Your team's Tailwind petered out!", - "tailwindOnRemoveEnemy": "The opposing team's Tailwind petered out!", - "happyHourOnAdd": "Everyone is caught up in the happy atmosphere!", - "happyHourOnRemove": "The atmosphere returned to normal.", -} as const; diff --git a/src/locales/zh_TW/battle-info.json b/src/locales/zh_TW/battle-info.json new file mode 100644 index 00000000000..884a01eb8a7 --- /dev/null +++ b/src/locales/zh_TW/battle-info.json @@ -0,0 +1,3 @@ +{ + "generation": "第{{generation}}世代" +} \ No newline at end of file diff --git a/src/locales/zh_TW/battle-info.ts b/src/locales/zh_TW/battle-info.ts deleted file mode 100644 index 684ce4bc26a..00000000000 --- a/src/locales/zh_TW/battle-info.ts +++ /dev/null @@ -1,5 +0,0 @@ -import { SimpleTranslationEntries } from "#app/interfaces/locales"; - -export const battleInfo: SimpleTranslationEntries = { - "generation": "第{{generation}}世代", -} as const; diff --git a/src/locales/zh_TW/battle-message-ui-handler.json b/src/locales/zh_TW/battle-message-ui-handler.json new file mode 100644 index 00000000000..9cfa83e31dd --- /dev/null +++ b/src/locales/zh_TW/battle-message-ui-handler.json @@ -0,0 +1,8 @@ +{ + "ivBest": "最棒", + "ivFantastic": "了不起", + "ivVeryGood": "非常好", + "ivPrettyGood": "相當好", + "ivDecent": "一般般", + "ivNoGood": "也許不行" +} \ No newline at end of file diff --git a/src/locales/zh_TW/battle-message-ui-handler.ts b/src/locales/zh_TW/battle-message-ui-handler.ts deleted file mode 100644 index 3cd63de7961..00000000000 --- a/src/locales/zh_TW/battle-message-ui-handler.ts +++ /dev/null @@ -1,10 +0,0 @@ -import { SimpleTranslationEntries } from "#app/interfaces/locales"; - -export const battleMessageUiHandler: SimpleTranslationEntries = { - "ivBest": "最棒", - "ivFantastic": "了不起", - "ivVeryGood": "非常好", - "ivPrettyGood": "相當好", - "ivDecent": "一般般", - "ivNoGood": "也許不行", -} as const; diff --git a/src/locales/zh_TW/battle-scene.json b/src/locales/zh_TW/battle-scene.json new file mode 100644 index 00000000000..a0288475d69 --- /dev/null +++ b/src/locales/zh_TW/battle-scene.json @@ -0,0 +1,3 @@ +{ + "moneyOwned": "₽{{formattedMoney}}" +} \ No newline at end of file diff --git a/src/locales/zh_TW/battle.ts b/src/locales/zh_TW/battle.json similarity index 71% rename from src/locales/zh_TW/battle.ts rename to src/locales/zh_TW/battle.json index 357ad4ffbc3..97b85a9cd5a 100644 --- a/src/locales/zh_TW/battle.ts +++ b/src/locales/zh_TW/battle.json @@ -1,6 +1,4 @@ -import { SimpleTranslationEntries } from "#app/interfaces/locales"; - -export const battle: SimpleTranslationEntries = { +{ "bossAppeared": "{{bossName}} 出現了.", "trainerAppeared": "{{trainerName}}\n想要和你對戰!", "trainerAppearedDouble": "{{trainerName}}\n想要和你對戰!", @@ -14,13 +12,13 @@ export const battle: SimpleTranslationEntries = { "trainerDefeated": "你擊敗了\n{{trainerName}}!", "moneyPickedUp": "撿到了 ₽{{moneyAmount}}!", "pokemonCaught": "{{pokemonName}} 被抓住了!", - "addedAsAStarter": "{{pokemonName}} has been\nadded as a starter!", "pokemon": "寶可夢", "sendOutPokemon": "上吧! {{pokemonName}}!", "hitResultCriticalHit": "擊中了要害!", "hitResultSuperEffective": "效果拔群!", "hitResultNotVeryEffective": "收效甚微…", "hitResultNoEffect": "對 {{pokemonName}} 沒有效果!", + "hitResultImmune": "對于{{pokemonName}},\n完全沒有效果!", "hitResultOneHitKO": "一擊切殺!", "attackFailed": "但是失敗了!", "attackMissed": "沒有命中{{pokemonNameWithAffix}}!", @@ -36,7 +34,7 @@ export const battle: SimpleTranslationEntries = { "learnMoveNotLearned": "{{pokemonName}} 沒有學會 {{moveName}}.", "learnMoveForgetQuestion": "要忘記哪個技能?", "learnMoveForgetSuccess": "{{pokemonName}} 忘記了 {{moveName}}.", - "countdownPoof": "@d{32}1, @d{15}2, 和@d{15}… @d{15}… @d{15}… @d{15}@s{pb_bounce_1}噗!", + "countdownPoof": "@d{32}1, @d{15}2, 和@d{15}… @d{15}… @d{15}… @d{15}@s{se/pb_bounce_1}噗!", "learnMoveAnd": "然後…", "levelCapUp": "等級上限提升到 {{levelCap}}!", "moveNotImplemented": "{{moveName}} 未實裝,無法選擇。", @@ -53,12 +51,9 @@ export const battle: SimpleTranslationEntries = { "runAwayCannotEscape": "你無法逃脫!", "escapeVerbSwitch": "切換", "escapeVerbFlee": "逃跑", - "stealEatBerry": "{{pokemonName}} stole and ate\n{{targetName}}'s {{berryName}}!", "ppHealBerry": "{{pokemonNameWithAffix}}用{{berryName}}\n回復了{{moveName}}的PP!", "hpHealBerry": "{{pokemonNameWithAffix}}用{{berryName}}\n回復了體力!", "notDisabled": "{{moveName}} 不再被禁用!", - "turnEndHpRestore": "{{pokemonName}}'s HP was restored.", - "hpIsFull": "{{pokemonName}}'s\nHP is full!", "skipItemQuestion": "你要跳過拾取道具嗎?", "itemStackFull": "{{fullItemName}}持有數已達到上限,\n你獲得了{{itemName}}作爲代替。", "eggHatching": "咦?", @@ -69,20 +64,5 @@ export const battle: SimpleTranslationEntries = { "drainMessage": "{{pokemonName}} 吸取了體力!", "regainHealth": "{{pokemonName}} 回復了體力!", "fainted": "{{pokemonNameWithAffix}} 倒下了!", - "statsAnd": "and", - "stats": "Stats", - "statRose_other": "{{pokemonNameWithAffix}}'s {{stats}} rose!", - "statSharplyRose_other": "{{pokemonNameWithAffix}}'s {{stats}} sharply rose!", - "statRoseDrastically_other": "{{pokemonNameWithAffix}}'s {{stats}} rose drastically!", - "statWontGoAnyHigher_other": "{{pokemonNameWithAffix}}'s {{stats}} won't go any higher!", - "statFell_other": "{{pokemonNameWithAffix}}'s {{stats}} fell!", - "statHarshlyFell_other": "{{pokemonNameWithAffix}}'s {{stats}} harshly fell!", - "statSeverelyFell_other": "{{pokemonNameWithAffix}}'s {{stats}} severely fell!", - "statWontGoAnyLower_other": "{{pokemonNameWithAffix}}'s {{stats}} won't go any lower!", - "transformedIntoType": "{{pokemonName}} transformed\ninto the {{type}} type!", - "ppReduced": "降低了 {{targetName}} 的\n{{moveName}} 的PP{{reduction}}點!", - "retryBattle": "Would you like to retry from the start of the battle?", - "unlockedSomething": "{{unlockedThing}}\nhas been unlocked.", - "congratulations": "Congratulations!", - "beatModeFirstTime": "{{speciesName}} beat {{gameMode}} Mode for the first time!\nYou received {{newModifier}}!", -} as const; + "ppReduced": "降低了 {{targetName}} 的\n{{moveName}} 的PP{{reduction}}點!" +} \ No newline at end of file diff --git a/src/locales/zh_TW/battler-tags.ts b/src/locales/zh_TW/battler-tags.json similarity index 94% rename from src/locales/zh_TW/battler-tags.ts rename to src/locales/zh_TW/battler-tags.json index 9e933336387..9a35bb0d03f 100644 --- a/src/locales/zh_TW/battler-tags.ts +++ b/src/locales/zh_TW/battler-tags.json @@ -1,6 +1,4 @@ -import { SimpleTranslationEntries } from "#app/interfaces/locales"; - -export const battlerTags: SimpleTranslationEntries = { +{ "trappedDesc": "束縛", "flinchedDesc": "畏縮", "confusedDesc": "混亂", @@ -68,6 +66,5 @@ export const battlerTags: SimpleTranslationEntries = { "saltCuredOnAdd": "{{pokemonNameWithAffix}} 陷入了鹽腌狀態!", "saltCuredLapse": "{{pokemonNameWithAffix}} 受到了{{moveName}}的傷害!", "cursedOnAdd": "{{pokemonNameWithAffix}}削減了自己的體力,並詛咒了{{pokemonName}}!", - "cursedLapse": "{{pokemonNameWithAffix}}正受到詛咒!", - "stockpilingOnAdd": "{{pokemonNameWithAffix}} stockpiled {{stockpiledCount}}!", -} as const; + "cursedLapse": "{{pokemonNameWithAffix}}正受到詛咒!" +} \ No newline at end of file diff --git a/src/locales/zh_TW/berry.json b/src/locales/zh_TW/berry.json new file mode 100644 index 00000000000..ba16fec0900 --- /dev/null +++ b/src/locales/zh_TW/berry.json @@ -0,0 +1,46 @@ +{ + "SITRUS": { + "name": "文柚果", + "effect": "HP低於50%時,恢復最大HP的25%" + }, + "LUM": { + "name": "木子果", + "effect": "治癒任何異常狀態和混亂狀態" + }, + "ENIGMA": { + "name": "謎芝果", + "effect": "受到效果絕佳的招式攻擊時,恢復25%最大HP" + }, + "LIECHI": { + "name": "枝荔果", + "effect": "HP低於25%時,攻擊提升一個等級" + }, + "GANLON": { + "name": "龍睛果", + "effect": "HP低於25%時,防禦提升一個等級" + }, + "PETAYA": { + "name": "龍火果", + "effect": "HP低於25%時,特攻提升一個等級" + }, + "APICOT": { + "name": "杏仔果", + "effect": "HP低於25%時,特防提升一個等級" + }, + "SALAC": { + "name": "沙鱗果", + "effect": "HP低於25%時,速度提升一個等級" + }, + "LANSAT": { + "name": "蘭薩果", + "effect": "HP低於25%時,擊中要害率提升兩個等級" + }, + "STARF": { + "name": "星桃果", + "effect": "HP低於25%時,提高隨機一項能力兩個等級" + }, + "LEPPA": { + "name": "蘋野果", + "effect": "有招式的PP降到0時,恢復該招式10PP" + } +} \ No newline at end of file diff --git a/src/locales/zh_TW/berry.ts b/src/locales/zh_TW/berry.ts deleted file mode 100644 index a084ef91aa5..00000000000 --- a/src/locales/zh_TW/berry.ts +++ /dev/null @@ -1,48 +0,0 @@ -import { BerryTranslationEntries } from "#app/interfaces/locales"; - -export const berry: BerryTranslationEntries = { - "SITRUS": { - name: "文柚果", - effect: "HP低於50%時,恢復最大HP的25%", - }, - "LUM": { - name: "木子果", - effect: "治癒任何異常狀態和混亂狀態", - }, - "ENIGMA": { - name: "謎芝果", - effect: "受到效果絕佳的招式攻擊時,恢復25%最大HP", - }, - "LIECHI": { - name: "枝荔果", - effect: "HP低於25%時,攻擊提升一個等級", - }, - "GANLON": { - name: "龍睛果", - effect: "HP低於25%時,防禦提升一個等級", - }, - "PETAYA": { - name: "龍火果", - effect: "HP低於25%時,特攻提升一個等級", - }, - "APICOT": { - name: "杏仔果", - effect: "HP低於25%時,特防提升一個等級", - }, - "SALAC": { - name: "沙鱗果", - effect: "HP低於25%時,速度提升一個等級", - }, - "LANSAT": { - name: "蘭薩果", - effect: "HP低於25%時,擊中要害率提升兩個等級", - }, - "STARF": { - name: "星桃果", - effect: "HP低於25%時,提高隨機一項能力兩個等級", - }, - "LEPPA": { - name: "蘋野果", - effect: "有招式的PP降到0時,恢復該招式10PP", - }, -} as const; diff --git a/src/locales/zh_TW/bgm-name.json b/src/locales/zh_TW/bgm-name.json new file mode 100644 index 00000000000..9e26dfeeb6e --- /dev/null +++ b/src/locales/zh_TW/bgm-name.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/src/locales/zh_TW/bgm-name.ts b/src/locales/zh_TW/bgm-name.ts deleted file mode 100644 index be9a8f621c7..00000000000 --- a/src/locales/zh_TW/bgm-name.ts +++ /dev/null @@ -1,146 +0,0 @@ -import { SimpleTranslationEntries } from "#app/interfaces/locales"; - -export const bgmName: SimpleTranslationEntries = { - "music": "Music: ", - "missing_entries" : "{{name}}", - "battle_kanto_champion": "B2W2 Kanto Champion Battle", - "battle_johto_champion": "B2W2 Johto Champion Battle", - "battle_hoenn_champion_g5": "B2W2 Hoenn Champion Battle", - "battle_hoenn_champion_g6": "ORAS Hoenn Champion Battle", - "battle_sinnoh_champion": "B2W2 Sinnoh Champion Battle", - "battle_champion_alder": "BW Unova Champion Battle", - "battle_champion_iris": "B2W2 Unova Champion Battle", - "battle_kalos_champion": "XY Kalos Champion Battle", - "battle_alola_champion": "USUM Alola Champion Battle", - "battle_galar_champion": "SWSH Galar Champion Battle", - "battle_champion_geeta": "SV Champion Geeta Battle", - "battle_champion_nemona": "SV Champion Nemona Battle", - "battle_champion_kieran": "SV Champion Kieran Battle", - "battle_hoenn_elite": "ORAS Elite Four Battle", - "battle_unova_elite": "BW Elite Four Battle", - "battle_kalos_elite": "XY Elite Four Battle", - "battle_alola_elite": "SM Elite Four Battle", - "battle_galar_elite": "SWSH League Tournament Battle", - "battle_paldea_elite": "SV Elite Four Battle", - "battle_bb_elite": "SV BB League Elite Four Battle", - "battle_final_encounter": "PMD RTDX Rayquaza's Domain", - "battle_final": "BW Ghetsis Battle", - "battle_kanto_gym": "B2W2 Kanto Gym Battle", - "battle_johto_gym": "B2W2 Johto Gym Battle", - "battle_hoenn_gym": "B2W2 Hoenn Gym Battle", - "battle_sinnoh_gym": "B2W2 Sinnoh Gym Battle", - "battle_unova_gym": "BW Unova Gym Battle", - "battle_kalos_gym": "XY Kalos Gym Battle", - "battle_galar_gym": "SWSH Galar Gym Battle", - "battle_paldea_gym": "SV Paldea Gym Battle", - "battle_legendary_kanto": "XY Kanto Legendary Battle", - "battle_legendary_raikou": "HGSS Raikou Battle", - "battle_legendary_entei": "HGSS Entei Battle", - "battle_legendary_suicune": "HGSS Suicune Battle", - "battle_legendary_lugia": "HGSS Lugia Battle", - "battle_legendary_ho_oh": "HGSS Ho-oh Battle", - "battle_legendary_regis_g5": "B2W2 Legendary Titan Battle", - "battle_legendary_regis_g6": "ORAS Legendary Titan Battle", - "battle_legendary_gro_kyo": "ORAS Groudon & Kyogre Battle", - "battle_legendary_rayquaza": "ORAS Rayquaza Battle", - "battle_legendary_deoxys": "ORAS Deoxys Battle", - "battle_legendary_lake_trio": "ORAS Lake Guardians Battle", - "battle_legendary_sinnoh": "ORAS Sinnoh Legendary Battle", - "battle_legendary_dia_pal": "ORAS Dialga & Palkia Battle", - "battle_legendary_giratina": "ORAS Giratina Battle", - "battle_legendary_arceus": "HGSS Arceus Battle", - "battle_legendary_unova": "BW Unova Legendary Battle", - "battle_legendary_kyurem": "BW Kyurem Battle", - "battle_legendary_res_zek": "BW Reshiram & Zekrom Battle", - "battle_legendary_xern_yvel": "XY Xerneas & Yveltal Battle", - "battle_legendary_tapu": "SM Tapu Battle", - "battle_legendary_sol_lun": "SM Solgaleo & Lunala Battle", - "battle_legendary_ub": "SM Ultra Beast Battle", - "battle_legendary_dusk_dawn": "USUM Dusk Mane & Dawn Wings Necrozma Battle", - "battle_legendary_ultra_nec": "USUM Ultra Necrozma Battle", - "battle_legendary_zac_zam": "SWSH Zacian & Zamazenta Battle", - "battle_legendary_glas_spec": "SWSH Glastrier & Spectrier Battle", - "battle_legendary_calyrex": "SWSH Calyrex Battle", - "battle_legendary_birds_galar": "SWSH Galarian Legendary Birds Battle", - "battle_legendary_ruinous": "SV Treasures of Ruin Battle", - "battle_legendary_kor_mir": "SV Depths of Area Zero Battle", - "battle_legendary_loyal_three": "SV Loyal Three Battle", - "battle_legendary_ogerpon": "SV Ogerpon Battle", - "battle_legendary_terapagos": "SV Terapagos Battle", - "battle_legendary_pecharunt": "SV Pecharunt Battle", - "battle_rival": "BW Rival Battle", - "battle_rival_2": "BW N Battle", - "battle_rival_3": "BW Final N Battle", - "battle_trainer": "BW Trainer Battle", - "battle_wild": "BW Wild Battle", - "battle_wild_strong": "BW Strong Wild Battle", - "end_summit": "PMD RTDX Sky Tower Summit", - "battle_rocket_grunt": "HGSS Team Rocket Battle", - "battle_aqua_magma_grunt": "ORAS Team Aqua & Magma Battle", - "battle_galactic_grunt": "BDSP Team Galactic Battle", - "battle_plasma_grunt": "BW Team Plasma Battle", - "battle_flare_grunt": "XY Team Flare Battle", - "battle_rocket_boss": "USUM Giovanni Battle", - "battle_aqua_magma_boss": "ORAS Archie & Maxie Battle", - "battle_galactic_boss": "BDSP Cyrus Battle", - "battle_plasma_boss": "B2W2 Ghetsis Battle", - "battle_flare_boss": "XY Lysandre Battle", - - // Biome Music - "abyss": "PMD EoS Dark Crater", - "badlands": "PMD EoS Barren Valley", - "beach": "PMD EoS Drenched Bluff", - "cave": "PMD EoS Sky Peak Cave", - "construction_site": "PMD EoS Boulder Quarry", - "desert": "PMD EoS Northern Desert", - "dojo": "PMD EoS Marowak Dojo", - "end": "PMD RTDX Sky Tower", - "factory": "PMD EoS Concealed Ruins", - "fairy_cave": "PMD EoS Star Cave", - "forest": "PMD EoS Dusk Forest", - "grass": "PMD EoS Apple Woods", - "graveyard": "PMD EoS Mystifying Forest", - "ice_cave": "PMD EoS Vast Ice Mountain", - "island": "PMD EoS Craggy Coast", - "jungle": "Lmz - Jungle", // The composer thinks about a more creative name - "laboratory": "Firel - Laboratory", // The composer thinks about a more creative name - "lake": "PMD EoS Crystal Cave", - "meadow": "PMD EoS Sky Peak Forest", - "metropolis": "Firel - Metropolis", // The composer thinks about a more creative name - "mountain": "PMD EoS Mt. Horn", - "plains": "PMD EoS Sky Peak Prairie", - "power_plant": "PMD EoS Far Amp Plains", - "ruins": "PMD EoS Deep Sealed Ruin", - "sea": "Andr06 - Marine Mystique", // Name defined by the composer - "seabed": "Firel - Seabed", // The composer thinks about a more creative name - "slum": "Andr06 - Sneaky Snom", // Name defined by the composer - "snowy_forest": "PMD EoS Sky Peak Snowfield", - "space": "Firel - Aether", - "swamp": "PMD EoS Surrounded Sea", - "tall_grass": "PMD EoS Foggy Forest", - "temple": "PMD EoS Aegis Cave", - "town": "PMD EoS Random Dungeon Theme 3", - "volcano": "PMD EoS Steam Cave", - "wasteland": "PMD EoS Hidden Highland", - - // Encounter - "encounter_ace_trainer": "BW Trainers' Eyes Meet (Ace Trainer)", - "encounter_backpacker": "BW Trainers' Eyes Meet (Backpacker)", - "encounter_clerk": "BW Trainers' Eyes Meet (Clerk)", - "encounter_cyclist": "BW Trainers' Eyes Meet (Cyclist)", - "encounter_lass": "BW Trainers' Eyes Meet (Lass)", - "encounter_parasol_lady": "BW Trainers' Eyes Meet (Parasol Lady)", - "encounter_pokefan": "BW Trainers' Eyes Meet (Poke Fan)", - "encounter_psychic": "BW Trainers' Eyes Meet (Psychic)", - "encounter_rich": "BW Trainers' Eyes Meet (Gentleman)", - "encounter_rival": "BW Cheren", - "encounter_roughneck": "BW Trainers' Eyes Meet (Roughneck)", - "encounter_scientist": "BW Trainers' Eyes Meet (Scientist)", - "encounter_twins": "BW Trainers' Eyes Meet (Twins)", - "encounter_youngster": "BW Trainers' Eyes Meet (Youngster)", - - // Other - "heal": "BW Pokémon Heal", - "menu": "PMD EoS Welcome to the World of Pokémon!", - "title": "PMD EoS Top Menu Theme", -} as const; diff --git a/src/locales/zh_TW/biome.ts b/src/locales/zh_TW/biome.json similarity index 85% rename from src/locales/zh_TW/biome.ts rename to src/locales/zh_TW/biome.json index dbfa2f7adb9..5f10d817377 100644 --- a/src/locales/zh_TW/biome.ts +++ b/src/locales/zh_TW/biome.json @@ -1,6 +1,4 @@ -import { SimpleTranslationEntries } from "#app/interfaces/locales"; - -export const biome: SimpleTranslationEntries = { +{ "unknownLocation": "未知領域", "TOWN": "城鎮", "PLAINS": "平原", @@ -36,5 +34,5 @@ export const biome: SimpleTranslationEntries = { "SNOWY_FOREST": "冰雪森林", "ISLAND": "島嶼", "LABORATORY": "研究所", - "END": "???", -} as const; + "END": "???" +} \ No newline at end of file diff --git a/src/locales/zh_TW/challenges.ts b/src/locales/zh_TW/challenges.json similarity index 65% rename from src/locales/zh_TW/challenges.ts rename to src/locales/zh_TW/challenges.json index 15571e11912..a1fc6b8f50f 100644 --- a/src/locales/zh_TW/challenges.ts +++ b/src/locales/zh_TW/challenges.json @@ -1,6 +1,4 @@ -import { TranslationEntries } from "#app/interfaces/locales"; - -export const challenges: TranslationEntries = { +{ "title": "適用挑戰條件", "illegalEvolution": "{{pokemon}} 進化成了不符合\n挑戰條件的寶可夢!", "singleGeneration": { @@ -15,17 +13,18 @@ export const challenges: TranslationEntries = { "gen_6": "六", "gen_7": "七", "gen_8": "八", - "gen_9": "九", + "gen_9": "九" }, "singleType": { "name": "單屬性", "desc": "你只能使用{{type}}\n屬性的寶可夢", "desc_default": "你只能使用所選\n屬性的寶可夢" }, - "freshStart": { - "name": "Fresh Start", - "desc": "You can only use the original starters, and only as if you had just started PokéRogue.", - "value.0": "Off", - "value.1": "On", + "inverseBattle": { + "name": "逆轉之戰", + "shortName": "逆轉之戰", + "desc": "屬性相克關系被反轉,且沒有任何屬性對其他屬性免疫。\n禁用其他挑戰的成就。", + "value.0": "關閉", + "value.1": "開啓" } -} as const; +} \ No newline at end of file diff --git a/src/locales/zh_TW/command-ui-handler.json b/src/locales/zh_TW/command-ui-handler.json new file mode 100644 index 00000000000..224835addaf --- /dev/null +++ b/src/locales/zh_TW/command-ui-handler.json @@ -0,0 +1,7 @@ +{ + "fight": "戰鬥", + "ball": "精靈球", + "pokemon": "寶可夢", + "run": "逃跑", + "actionMessage": "要讓\n{{pokemonName}} 做甚麼?" +} \ No newline at end of file diff --git a/src/locales/zh_TW/command-ui-handler.ts b/src/locales/zh_TW/command-ui-handler.ts deleted file mode 100644 index 300b20224b3..00000000000 --- a/src/locales/zh_TW/command-ui-handler.ts +++ /dev/null @@ -1,9 +0,0 @@ -import { SimpleTranslationEntries } from "#app/interfaces/locales"; - -export const commandUiHandler: SimpleTranslationEntries = { - "fight": "戰鬥", - "ball": "精靈球", - "pokemon": "寶可夢", - "run": "逃跑", - "actionMessage": "要讓\n{{pokemonName}} 做甚麼?", -} as const; diff --git a/src/locales/zh_TW/common.json b/src/locales/zh_TW/common.json new file mode 100644 index 00000000000..29ac963ebc3 --- /dev/null +++ b/src/locales/zh_TW/common.json @@ -0,0 +1,8 @@ +{ + "start": "開始", + "luckIndicator": "Luck:", + "shinyOnHover": "Shiny", + "commonShiny": "常見", + "rareShiny": "稀有", + "epicShiny": "史詩" +} \ No newline at end of file diff --git a/src/locales/zh_TW/common.ts b/src/locales/zh_TW/common.ts deleted file mode 100644 index a2112cc594e..00000000000 --- a/src/locales/zh_TW/common.ts +++ /dev/null @@ -1,10 +0,0 @@ -import { SimpleTranslationEntries } from "#app/interfaces/locales"; - -export const common: SimpleTranslationEntries = { - "start": "開始", - "luckIndicator": "Luck:", - "shinyOnHover": "Shiny", - "commonShiny": "常見", - "rareShiny": "稀有", - "epicShiny": "史詩", -} as const; diff --git a/src/locales/zh_TW/config.ts b/src/locales/zh_TW/config.ts index 004ed1da1ab..cf505d683a5 100644 --- a/src/locales/zh_TW/config.ts +++ b/src/locales/zh_TW/config.ts @@ -1,116 +1,113 @@ -import { ability } from "./ability"; -import { abilityTriggers } from "./ability-trigger"; -import { arenaFlyout } from "./arena-flyout"; -import { arenaTag } from "./arena-tag"; -import { PGFachv, PGMachv } from "./achv"; -import { battle } from "./battle"; -import { battleInfo } from "./battle-info"; -import { battleMessageUiHandler } from "./battle-message-ui-handler"; -import { battlerTags } from "./battler-tags"; -import { berry } from "./berry"; -import { bgmName } from "./bgm-name"; -import { biome } from "./biome"; -import { challenges } from "./challenges"; -import { commandUiHandler } from "./command-ui-handler"; -import { - PGFbattleSpecDialogue, - PGFdialogue, - PGFdoubleBattleDialogue, - PGFmiscDialogue, - PGMbattleSpecDialogue, - PGMdialogue, - PGMdoubleBattleDialogue, - PGMmiscDialogue -} from "./dialogue"; -import { egg } from "./egg"; -import { fightUiHandler } from "./fight-ui-handler"; -import { filterBar } from "./filter-bar"; -import { gameMode } from "./game-mode"; -import { gameStatsUiHandler } from "./game-stats-ui-handler"; -import { growth } from "./growth"; -import { menu } from "./menu"; -import { menuUiHandler } from "./menu-ui-handler"; -import { modifier } from "./modifier"; -import { modifierType } from "./modifier-type"; -import { move } from "./move"; -import { nature } from "./nature"; -import { pokeball } from "./pokeball"; -import { pokemon } from "./pokemon"; -import { pokemonForm, battlePokemonForm } from "./pokemon-form"; -import { pokemonInfo } from "./pokemon-info"; -import { pokemonInfoContainer } from "./pokemon-info-container"; -import { pokemonSummary } from "./pokemon-summary"; -import { saveSlotSelectUiHandler } from "./save-slot-select-ui-handler"; -import { splashMessages } from "./splash-messages"; -import { starterSelectUiHandler } from "./starter-select-ui-handler"; -import { statusEffect } from "./status-effect"; -import { titles, trainerClasses, trainerNames } from "./trainers"; -import { tutorial } from "./tutorial"; -import { voucher } from "./voucher"; -import { terrain, weather } from "./weather"; -import { partyUiHandler } from "./party-ui-handler"; -import { settings } from "./settings.js"; -import { common } from "./common.js"; -import { modifierSelectUiHandler } from "./modifier-select-ui-handler"; -import { moveTriggers } from "./move-trigger"; +import common from "./common.json"; +import settings from "./settings.json"; +import ability from "./ability.json"; +import abilityTriggers from "./ability-trigger.json"; +import arenaFlyout from "./arena-flyout.json"; +import arenaTag from "./arena-tag.json"; +import achv from "./achv.json"; +import battle from "./battle.json"; +import battleScene from "./battle-scene.json"; +import battleInfo from "./battle-info.json"; +import battleMessageUiHandler from "./battle-message-ui-handler.json"; +import battlerTags from "./battler-tags.json"; +import berry from "./berry.json"; +import bgmName from "./bgm-name.json"; +import biome from "./biome.json"; +import challenges from "./challenges.json"; +import commandUiHandler from "./command-ui-handler.json"; +import dialogue from "./dialogue.json"; +import battleSpecDialogue from "./dialogue-final-boss.json"; +import miscDialogue from "./dialogue-misc.json"; +import doubleBattleDialogue from "./dialogue-double-battle.json"; +import egg from "./egg.json"; +import fightUiHandler from "./fight-ui-handler.json"; +import filterBar from "./filter-bar.json"; +import gameMode from "./game-mode.json"; +import gameStatsUiHandler from "./game-stats-ui-handler.json"; +import growth from "./growth.json"; +import menu from "./menu.json"; +import menuUiHandler from "./menu-ui-handler.json"; +import modifier from "./modifier.json"; +import modifierType from "./modifier-type.json"; +import move from "./move.json"; +import nature from "./nature.json"; +import partyUiHandler from "./party-ui-handler.json"; +import pokeball from "./pokeball.json"; +import pokemon from "./pokemon.json"; +import pokemonForm from "./pokemon-form.json"; +import battlePokemonForm from "./pokemon-form-battle.json"; +import pokemonInfo from "./pokemon-info.json"; +import pokemonInfoContainer from "./pokemon-info-container.json"; +import pokemonSummary from "./pokemon-summary.json"; +import saveSlotSelectUiHandler from "./save-slot-select-ui-handler.json"; +import splashMessages from "./splash-messages.json"; +import starterSelectUiHandler from "./starter-select-ui-handler.json"; +import statusEffect from "./status-effect.json"; +import trainerTitles from "./trainer-titles.json"; +import trainerClasses from "./trainer-classes.json"; +import trainerNames from "./trainer-names.json"; +import tutorial from "./tutorial.json"; +import voucher from "./voucher.json"; +import weather from "./weather.json"; +import terrain from "./terrain.json"; +import modifierSelectUiHandler from "./modifier-select-ui-handler.json"; +import moveTriggers from "./move-trigger.json"; +import runHistory from "./run-history.json"; export const zhTwConfig = { - ability: ability, - abilityTriggers: abilityTriggers, - arenaFlyout: arenaFlyout, - arenaTag: arenaTag, - battle: battle, - battleInfo: battleInfo, - battleMessageUiHandler: battleMessageUiHandler, - battlePokemonForm: battlePokemonForm, - battlerTags: battlerTags, - berry: berry, - bgmName: bgmName, - biome: biome, - challenges: challenges, - commandUiHandler: commandUiHandler, - common: common, - PGMachv: PGMachv, - PGFachv: PGFachv, - PGMdialogue: PGMdialogue, - PGFdialogue: PGFdialogue, - PGMbattleSpecDialogue: PGMbattleSpecDialogue, - PGFbattleSpecDialogue: PGFbattleSpecDialogue, - PGMmiscDialogue: PGMmiscDialogue, - PGFmiscDialogue: PGFmiscDialogue, - PGMdoubleBattleDialogue: PGMdoubleBattleDialogue, - PGFdoubleBattleDialogue: PGFdoubleBattleDialogue, - egg: egg, - fightUiHandler: fightUiHandler, - filterBar: filterBar, - gameMode: gameMode, - gameStatsUiHandler: gameStatsUiHandler, - growth: growth, - menu: menu, - menuUiHandler: menuUiHandler, - modifier: modifier, - modifierType: modifierType, - move: move, - nature: nature, - pokeball: pokeball, - pokemon: pokemon, - pokemonForm: pokemonForm, - pokemonInfo: pokemonInfo, - pokemonInfoContainer: pokemonInfoContainer, - pokemonSummary: pokemonSummary, - saveSlotSelectUiHandler: saveSlotSelectUiHandler, - settings: settings, - splashMessages: splashMessages, - starterSelectUiHandler: starterSelectUiHandler, - statusEffect: statusEffect, - terrain: terrain, - titles: titles, - trainerClasses: trainerClasses, - trainerNames: trainerNames, - tutorial: tutorial, - voucher: voucher, - weather: weather, - partyUiHandler: partyUiHandler, - modifierSelectUiHandler: modifierSelectUiHandler, - moveTriggers: moveTriggers + ability, + abilityTriggers, + arenaFlyout, + arenaTag, + battle, + battleScene, + battleInfo, + battleMessageUiHandler, + battlePokemonForm, + battlerTags, + berry, + bgmName, + biome, + challenges, + commandUiHandler, + common, + achv, + dialogue, + battleSpecDialogue, + miscDialogue, + doubleBattleDialogue, + egg, + fightUiHandler, + filterBar, + gameMode, + gameStatsUiHandler, + growth, + menu, + menuUiHandler, + modifier, + modifierType, + move, + nature, + pokeball, + pokemon, + pokemonForm, + pokemonInfo, + pokemonInfoContainer, + pokemonSummary, + saveSlotSelectUiHandler, + settings, + splashMessages, + starterSelectUiHandler, + statusEffect, + terrain, + titles: trainerTitles, + trainerClasses, + trainerNames, + tutorial, + voucher, + weather, + partyUiHandler, + modifierSelectUiHandler, + moveTriggers, + runHistory, }; diff --git a/src/locales/zh_TW/dialogue-double-battle.json b/src/locales/zh_TW/dialogue-double-battle.json new file mode 100644 index 00000000000..684beac5eaf --- /dev/null +++ b/src/locales/zh_TW/dialogue-double-battle.json @@ -0,0 +1,82 @@ +{ + "blue_red_double": { + "encounter": { + "1": "青綠:嘿,赤紅,\n讓這傢伙看看我們是什麼來頭!$赤紅:...$青綠: 見識下真新鎮的實力!" + }, + "victory": { + "1": "青綠:打得真不錯$赤紅: ..." + } + }, + "red_blue_double": { + "encounter": { + "1": "赤紅: ...!$青綠:他人狠話不多。$青綠: 他人狠話不多。$青綠: 但別被他耍了,\n畢竟他可是個冠軍!" + }, + "victory": { + "1": "赤紅: ...!$青綠: 下次我們一定會贏你!" + } + }, + "tate_liza_double": { + "encounter": { + "1": "小楓:嘿嘿嘿……你驚訝嗎?$小南:這裡有兩個道館館主?$小楓: 我們是雙胞胎!$小南:我們無需交談,因為……我們可以通曉彼此的想法$小楓: 我們的組合……$小南: 你能打敗嗎?" + }, + "victory": { + "1": "小楓:什麼?我們的組合……$小南:被瓦解了!" + } + }, + "liza_tate_double": { + "encounter": { + "1": "小南:呵呵呵……你驚訝吧?$小楓:這裡有兩個道館館主?$小南:我們可以通曉……$小楓:彼此的想法……$小南:全在我們腦中!$小楓:我們的組合……$小南:你能打敗嗎?" + }, + "victory": { + "1": "小楓:你和你的寶可夢……$小南:簡直像親兄弟姐妹!" + } + }, + "wallace_steven_double": { + "encounter": { + "1": "大吾:米可利, 展現冠軍的實力吧!$米可利:我們將展示豐緣的實力!$米可利:我們將展示豐緣的實力!$大吾:要上了!" + }, + "victory": { + "1": "大吾:打得真不錯!$米可利:我們下次會贏的!" + } + }, + "steven_wallace_double": { + "encounter": { + "1": "大吾:你有什麼稀有的寶可夢嗎?$米可利:大吾……我們是來對戰的,\n不是來炫耀寶可夢的。$大吾:哦……知道了… 那麼要上了!" + }, + "victory": { + "1": "大吾:戰鬥結束了,\n來看看我的稀有寶可夢!$米可利:大吾……" + } + }, + "alder_iris_double": { + "encounter": { + "1": "阿戴克:我們倆是合眾最強的訓練家!$艾莉絲:與最強來一場最激烈的戰鬥吧!" + }, + "victory": { + "1": "阿戴克:哇哦!你真是超級厲害!$艾莉絲:我們下次會贏的啦!" + } + }, + "iris_alder_double": { + "encounter": { + "1": "艾莉絲:歡迎!挑戰者,\n合眾地區最強的冠軍大駕光臨!$阿戴克:艾莉絲,你是不是有點太興奮了…" + }, + "victory": { + "1": "艾莉絲:這樣的失敗可不好受啊…$阿戴克:但是只有失敗才能讓我們變強!" + } + }, + "piers_marnie_double": { + "encounter": { + "1": "瑪俐:哥哥,給他們展現尖釘鎮的實力!$聶梓:我們帶來黑暗!" + }, + "victory": { + "1": "瑪俐:你的強光亮瞎我們的黑暗了啦……$聶梓:實在太亮了…" + } + }, + "marnie_piers_double": { + "encounter": { + "1": "聶梓: 台下準備好了嗎!$瑪俐: 哥哥,我們是來對戰的,\n不是來唱歌的……" + }, + "victory": { + "1": "聶梓:這首歌獻給大家!$瑪俐:哥哥……" + } + } +} \ No newline at end of file diff --git a/src/locales/zh_TW/dialogue-final-boss.json b/src/locales/zh_TW/dialogue-final-boss.json new file mode 100644 index 00000000000..13bfee9eb96 --- /dev/null +++ b/src/locales/zh_TW/dialogue-final-boss.json @@ -0,0 +1,5 @@ +{ + "encounter": "看來終於又到了那個時候。\n你知道自己為何會來到這裡,不是嗎?\n$你被吸引到這裡,因為你以前就來過這裡。\n無數次。\n$儘管,或許可以數一數。\n準確地說,這實際上是你的第{{cycleCount}}次循環。\n$每一次循環,你的思想都會恢復到之前的狀態。\n即便如此,不知何故,你之前自我的殘留仍然存在。\n$直到現在,你仍未成功,但我感覺這次你身上有一種異樣的氣息。\n$你是這裡唯一的人,儘管感覺上還有……另一個人。\n$你最終會成為對我來的一個硬茬嗎?\n我渴望了數千年的挑戰?\n$我們,開始。", + "firstStageWin": "我明白了。我所感覺到的氣息確實是真實的。\n看來我不再需要保留實力了。\n$別讓我失望。", + "secondStageWin": "…漂亮。" +} \ No newline at end of file diff --git a/src/locales/zh_TW/dialogue-misc.json b/src/locales/zh_TW/dialogue-misc.json new file mode 100644 index 00000000000..24e2109e5b3 --- /dev/null +++ b/src/locales/zh_TW/dialogue-misc.json @@ -0,0 +1,4 @@ +{ + "ending": "@c{smile}哦?你贏了?@d{96} @c{smile_eclosed}我應該早猜到了\n你回來了。\n$@c{smile}結束了。@d{64} 你終結了這個循環。\n$@c{serious_smile_fists}你也完成了自己的夢想,不是嗎?\n你甚至一次都沒失敗。\n$@c{neutral}我是唯一能夠記得你所作所為的人@d{96}\n我覺得這應該也還行吧?\n$@c{serious_smile_fists}你的傳奇將永遠留存於我們心中。\n$@c{smile_eclosed}不管了,我真是受夠這個地方了,你也一樣嗎?我們回家吧。\n$@c{serious_smile_fists}可能等我們回家以後,再打一場?\n要是你想的話", + "ending_female": "@c{shock}你回來了?@d{32} 也就是說…@d{96} 你贏了呀!?\n@c{smile_ehalf}我應該早料到了。\n$@c{smile_eclosed}當然…我一直有這種感覺\n@c{smile}一切都結束了,對麼? 你打破了循環。\n$@c{smile_ehalf}你也完成了自己的夢想,不是嗎?\n你甚至一次都沒失敗。\n$我是唯一能夠記得你所作所為的人\n@c{angry_mopen}我會努力不忘掉哒!\n$@c{smile_wave_wink}開玩笑啦,@d{64} @c{smile}我才不會忘呢。@d{32}\n你的傳奇將永遠留存於我們心中。\n$@c{smile_wave}不管了,@d{64} 時候不早了@d{96} ,應該吧?\n在這地方還真搞不清楚。\n$一起回家吧。 @c{smile_wave_wink}可能明天,我們再來打一場,為了重溫回憶嘛~" +} \ No newline at end of file diff --git a/src/locales/zh_TW/dialogue.json b/src/locales/zh_TW/dialogue.json new file mode 100644 index 00000000000..4236e239622 --- /dev/null +++ b/src/locales/zh_TW/dialogue.json @@ -0,0 +1,2137 @@ +{ + "youngster": { + "encounter": { + "1": "嘿,想來對戰嗎?", + "2": "你也是新人訓練師嗎?", + "3": "嘿,我之前沒見過你。我們來對戰吧!", + "4": "我剛輸了,所以我正在尋找更多的寶可夢。$等等!你看起來很弱!\n來吧,我們對戰吧!", + "5": "我們見過面嗎?我記不太清了。$嗯,不管怎樣,很高興見到你!", + "6": "好的!我們上吧!", + "7": "好的!我來啦!我會向你展示我的實力!", + "8": "嚯嚯嚯...我會向你展示我的寶可夢有多厲害!", + "9": "不要浪費時間打招呼。你準備好了就放馬過來!", + "10": "別掉以輕心,$否則你可能會被小朋友打到哭鼻子哦。", + "11": "我精心培養了我的寶可夢。不許你傷害它們!", + "12": "恭喜你成功了!從這以後可不輕鬆哦。", + "13": "戰鬥永無止境!歡迎來到沒有盡頭的世界!" + }, + "victory": { + "1": "哇!你很強!", + "2": "我根本沒機會贏,對吧?", + "3": "我會等長大了再來打敗你!", + "4": "呃。我沒有更多寶可夢了。", + "5": "不可能…不可能!我怎麼可能又輸了…", + "6": "不!我輸了!", + "7": "哇!你真是太不可思議了!我既驚訝又欽佩!", + "8": "這怎麼…怎麼可能…$明明我和我的寶可夢是最強大的…", + "9": "下次我不會輸了!我們找時間再對戰吧!", + "10": "天哪!你看不出我還只是個小孩子嗎!$你那樣全力以赴太賴了!", + "11": "你的寶可夢更棒啊!和我交換吧!", + "12": "我之前有點上頭,我說了什麼來著?", + "13": "啊哈哈!就是這樣!$對!你已經熟悉這個世界了!" + } + }, + "lass": { + "encounter": { + "1": "我們來對戰吧,好嗎?", + "2": "你看起來像是個新人訓練師。我們來戰鬥吧!", + "3": "我不認識你。來對戰怎麼樣?", + "4": "讓我們來進行一場有趣的寶可夢對戰吧!", + "5": "我會向你展示如何真正使用寶可夢!", + "6": "一場認真的對戰從始於認真的開場白!$你確定你準備好了嗎?", + "7": "花無重開日,人無再少年。$你在對戰中只有一次機會。$很快,你就只能活在回憶中了。", + "8": "你最好對我手下留情,好嗎?$當然我會認真對戰的!", + "9": "學校很無聊,我無事可做。$*哈欠*…我只是來對戰打發時間。" + }, + "victory": { + "1": "那真是令人印象深刻!我還有很多要學習。", + "2": "我沒想到你會這麼輕易地打敗我…", + "3": "我希望有一天,我們能再進行一場對戰。", + "4": "那真是場非常有趣的對戰!$你讓我精疲力盡了…", + "5": "你給我上了一課!你真是太棒了!", + "6": "說真的,我輸了。$這,怎麼說,真的好難過,但你也真的很厲害。", + "7": "我不需要像這樣的記憶。刪除記憶中…", + "8": "嘿!我告訴過你要對我手下留情!$不過,當你認真的時候,你真的很酷。", + "9": "實際上,我開始厭倦對戰了…$一定有新的事情可以做…" + } + }, + "breeder": { + "encounter": { + "1": "聽話的寶可夢,自私的寶可夢…$寶可夢有獨特的性格呢。", + "2": "儘管我出生貧寒,但我的寶可夢培養的很好。", + "3": "嗯,你有沒有管教你的寶可夢?$過度溺愛是不好的。" + }, + "victory": { + "1": "對每個寶可夢因材施教是很重要的。", + "2": "不像一無是處的我…這些寶可夢都很優秀。", + "3": "過度的讚美會寵壞寶可夢和人。" + }, + "defeat": { + "1": "即使輸了,也不應該對你的寶可夢發火。", + "2": "相當好的寶可夢,對吧?我很會養東西。", + "3": "無論你多麼愛你的寶可夢,$你仍要在它沒做好時管教它們。" + } + }, + "breeder_female": { + "encounter": { + "1": "寶可夢永遠不會背叛你。$它們會回報你對它們的愛。", + "2": "要我教教你訓練優秀寶可夢的技巧嗎?", + "3": "特別的寶可夢有特別的培育技巧。" + }, + "victory": { + "1": "呃…事情不應該是這樣的。$我是不是用錯了能量方塊?", + "2": "這怎麼會發生在我的寶可夢身上…$你給你的寶可夢餵了什麼?", + "3": "如果我輸了,我告訴你我只是在消磨時間。$你根本不會傷害到我的自尊心。" + }, + "defeat": { + "1": "這證明了我的寶可夢已經接受了我的愛。", + "2": "訓出好寶可夢的真正技巧是捉到好的寶可夢。", + "3": "寶可夢的強弱取決於你的飼養方式。" + } + }, + "fisherman": { + "encounter": { + "1": "啊!你讓我錯過了一次咬鉤!$你打算怎麼辦?", + "2": "走開!你嚇跑了寶可夢!", + "3": "讓我看看你能否贏得勝利!" + }, + "victory": { + "1": "算了吧。", + "2": "下一次,我將捲土重來,凱旋而歸!", + "3": "我想這次我低估了海流。" + } + }, + "fisherman_female": { + "encounter": { + "1": "哇!我釣到了一條大魚!", + "2": "線已收好,準備提竿!", + "3": "準備製造波浪!" + }, + "victory": { + "1": "我會帶著更強大的魚鉤回來。", + "2": "下次我會贏得勝利。", + "3": "我只是在為回歸磨利我的魚鉤!" + } + }, + "swimmer": { + "encounter": { + "1": "是時候潛水了!", + "2": "讓我們一起乘風破浪,贏得勝利!", + "3": "該一鳴驚人了!" + }, + "victory": { + "1": "沉浸在失敗中!", + "2": "失敗的波浪!", + "3": "後浪死在沙灘上,我猜。" + } + }, + "backpacker": { + "encounter": { + "1": "收拾行李,開始遊戲!", + "2": "讓我看看你是否能跟上!", + "3": "全副武裝,挑戰者!", + "4": "我花了20年時間試圖找到自己……但我在哪裡?" + }, + "victory": { + "1": "這次絆倒了!", + "2": "哦,我覺得我迷路了。", + "3": "死路!", + "4": "等一下!嘿!你不知道我是誰嗎?" + } + }, + "ace_trainer": { + "encounter": { + "1": "你看起來挺自信的。", + "2": "你的寶可夢…… 讓我看看……", + "3": "因為我是王牌訓練師,人們認為我很強。", + "4": "你知道成為王牌訓練師需要什麼嗎?" + }, + "victory": { + "1": "是的…… 你的寶可夢很棒……", + "2": "什麼?!我是戰鬥天才啊!", + "3": "理所應當,你才是主角!", + "4": "好好好!你可以成為王牌訓練師!" + }, + "defeat": { + "1": "我將把我的身體和靈魂全都奉獻給寶可夢對戰!", + "2": "一切都在我的預料之中… \n沒有什麼好驚訝的…", + "3": "我覺得我長大後有點玻璃心,$你太壓力我我會垮的……", + "4": "我當然很強大,不會輸。$而且重要的是我要優雅地贏。" + } + }, + "parasol_lady": { + "encounter": { + "1": "是時候用優雅和從容來為戰鬥添彩了!" + }, + "victory": { + "1": "我的優雅依然完好無損!" + } + }, + "twins": { + "encounter": { + "1": "準備好囉,因為我們聯手,\n麻煩雙倍!", + "2": "兩顆心,一條繩$讓我們看看你能否跟上我們雙胞胎的力量!", + "3": "希望你準備好了面對雙倍的麻煩,$因為我們即將燃起來啦!" + }, + "victory": { + "1": "雖然我們在這一輪輸了,$但我們的羈絆依然堅不可摧!", + "2": "我們的雙胞胎精神,才不會就此熄滅。", + "3": "我們會作為充滿活力的二人組,$捲土重來,變得更強!" + }, + "defeat": { + "1": "雙胞胎的力量至高無上!", + "2": "兩顆心,一起贏!", + "3": "笑容成雙,共舞成雙!" + } + }, + "cyclist": { + "encounter": { + "1": "準備好在我後面吃土吧!", + "2": "挑戰者,準備好!我要把你打得落花流水!", + "3": "全速前進,讓我看看你能不能跟得上!" + }, + "victory": { + "1": "輪子可能不轉了,但我的決心沒有停下。", + "2": "被超越了!", + "3": "通往勝利的道路還有許多曲折等待探索。" + } + }, + "black_belt": { + "encounter": { + "1": "我讚揚你挑戰我的勇氣!$因為我是踢力最強的人!", + "2": "哦,我明白了。你想被切成碎片嗎?$或者你更喜歡當個沙袋?" + }, + "victory": { + "1": "哦。是寶可夢在戰鬥。$我強大的踢擊一點忙都沒幫上。", + "2": "嗯…如果我無論如何都會輸,我希望能被徹底打敗。" + } + }, + "battle_girl": { + "encounter": { + "1": "你不必試圖勾引我。你可以輸給我。" + }, + "victory": { + "1": "很難說再見,但我們快沒時間了……" + } + }, + "hiker": { + "encounter": { + "1": "人到中年後,我的身體和我爬過的山一樣強壯!", + "2": "我從父母那裡遺傳了這副魁梧的身材…$就像一座活生生的山脈…" + }, + "victory": { + "1": "至少在BMI方面我不能輸!", + "2": "這還不夠……永遠不夠。$我的壞膽固醇還不夠高……" + } + }, + "ranger": { + "encounter": { + "1": "當我身處大自然中,其他事情都不重要了。", + "2": "如果我生活中沒有大自然,有時就會突然感到焦慮。" + }, + "victory": { + "1": "無論我是贏是輸,\n對廣闊的大自然來說並不重要……", + "2": "與城市生活的窒息感相比,\n這種事情微不足道。" + }, + "defeat": { + "1": "我贏了。但與浩瀚的大自然相比,\n勝利算不了什麼…", + "2": "與我的焦慮症相比,我覺得你也不會怎樣…" + } + }, + "scientist": { + "encounter": { + "1": "我的研究將引導這個世界走向和平與歡樂。" + }, + "victory": { + "1": "我是個天才…我不應該輸給你這樣的人…" + } + }, + "school_kid": { + "encounter": { + "1": "……嘿嘿。我對計算和分析很有信心。", + "2": "我正在盡可能地積累經驗,$因為我希望有一天能成為道館館主。" + }, + "victory": { + "1": "哦…計算和分析也許和個例不太匹配呀…", + "2": "我想,即使是艱難困苦的經歷,也有存在的意義。" + } + }, + "artist": { + "encounter": { + "1": "我以前很受歡迎,但現在已經徹底過氣了。" + }, + "victory": { + "1": "隨著時代的變遷,價值觀也在變化。$我意識到這一點已經太晚了。" + } + }, + "guitarist": { + "encounter": { + "1": "當我彈奏著走向勝利的旋律時,$準備好感受失敗的節奏吧!" + }, + "victory": { + "1": "暫時沉默了,但我不屈的旋律將繼續演奏。" + } + }, + "worker": { + "encounter": { + "1": "人們總誤解我,這讓我很煩。$我比大家想象的要乾淨得多。" + }, + "victory": { + "1": "我真的不想曬傷皮膚,所以我想在陰涼處工作。" + } + }, + "worker_female": { + "encounter": { + "1": "人們總是誤解我,這讓我很煩。 $我比大家想象的要乾淨得多。" + }, + "victory": { + "1": "我真的不想曬傷皮膚,\n所以我想在陰涼處工作。" + }, + "defeat": { + "1": "我的身體和心靈並不總同步。" + } + }, + "worker_double": { + "encounter": { + "1": "你會知道我們怎麼擊敗你的。我們在工地訓練過!" + }, + "victory": { + "1": "真奇怪…怎麼會這樣…我不應該被打敗的。" + } + }, + "hex_maniac": { + "encounter": { + "1": "我通常只聽古典音樂,但如果我輸了,$我想我應該試試新時代的音樂!", + "2": "我的每一滴眼淚都讓我變得更加堅強。" + }, + "victory": { + "1": "樂壇新時代的曙光就此出現了嗎?", + "2": "現在我變得更強了。我隨著他人怨恨而成長。" + }, + "defeat": { + "1": "“新時代”指的是二十世紀的古典作曲家,對吧?", + "2": "不要糾結於悲傷或沮喪。$你可以用悲憤來激勵自己。" + } + }, + "psychic": { + "encounter": { + "1": "嘿!集中!" + }, + "victory": { + "1": "呃呃呃!" + } + }, + "officer": { + "encounter": { + "1": "準備好,因為正義即將得到伸張!", + "2": "準備好維護法律,在戰場上伸張正義!" + }, + "victory": { + "1": "正義的分量比以往還要沉重……", + "2": "失敗的陰影,在警局中徘徊。" + } + }, + "beauty": { + "encounter": { + "1": "我最後的戰鬥…我就是這麼看待這場對戰的…" + }, + "victory": { + "1": "很有趣…有時間再來一場最後的戰鬥…" + } + }, + "baker": { + "encounter": { + "1": "希望你準備好品嚐失敗的滋味!" + }, + "victory": { + "1": "我會捲土重來的。" + } + }, + "biker": { + "encounter": { + "1": "是時候加速,把你甩在後面了!" + }, + "victory": { + "1": "我會為下一場比賽調整狀態。" + } + }, + "firebreather": { + "encounter": { + "1": "我的火焰會吞噬你!", + "2": "我的靈魂在燃燒,我要讓你看看它有多滾燙!", + "3": "快來看看吧!" + }, + "victory": { + "1": "我燃成灰了…", + "2": "哟! 好燙!", + "3": "嗷! 我的鼻尖燒焦了!" + } + }, + "sailor": { + "encounter": { + "1": "夥計,如果你輸了,你就得挨板子!", + "2": "來吧!這關係到我作為水手的尊嚴!", + "3": "你好啊!你暈船麼?" + }, + "victory": { + "1": "啊,被孩子打敗了。", + "2": "你的精神讓我沉淪!", + "3": "好像是我暈船了…" + } + }, + "brock": { + "encounter": { + "1": "我對岩石屬性寶可夢的專精會擊敗你!來吧!", + "2": "我磐石般的意志將壓倒你!", + "3": "讓我展示給你看看,我寶可夢真正的力量!" + }, + "victory": { + "1": "你寶可夢的力量戰勝了我堅如磐石的防禦!", + "2": "世界很大!很高興有機會和你戰鬥。", + "3": "也許我應該回去追尋我成為寶可夢飼養員的夢想……" + }, + "defeat": { + "1": "最好的進攻就是堅固的防守!$那是我做事的方式!", + "2": "下次來和我一起研究岩石屬性,$更好地了解如何與它們對戰!", + "3": "哈哈,我在各地的旅行有所回報了!" + } + }, + "misty": { + "encounter": { + "1": "我的戰策就是使用水屬性寶可夢全面進攻!", + "2": "嗨,我會讓你見識我的水屬性寶可夢的力量!", + "3": "我的夢想是踏上旅程,與強大的訓練師戰鬥……$你能滿足我嗎?" + }, + "victory": { + "1": "你真的很強……我承認,你有技術的……", + "2": "哼……你知道你只是運氣好,對吧?!", + "3": "哇,你太過分了!不敢相信你打敗我了!" + }, + "defeat": { + "1": "強大的小霞對你來說,太過分了嗎?", + "2": "我希望你看到了我寶可夢優雅的游泳技巧!", + "3": "你的寶可夢無法匹敵我的心腹和驕傲!" + } + }, + "lt_surge": { + "encounter": { + "1": "我的電屬性寶可夢在戰爭中救了我!$我來給你展示一下!", + "2": "立正!我要電到你投降!", + "3": "我會像對待敵軍一樣,狠狠電你!" + }, + "victory": { + "1": "哇!你的隊伍有真傢伙,小子!", + "2": "啊啊,你很強!連我的電擊技巧都輸給了你。", + "3": "這失敗真是把我給電麻了!" + }, + "defeat": { + "1": "哦耶!我的電屬性寶可夢是世界第一!", + "2": "哈哈哈!真是一場電動人心的戰鬥,小子!", + "3": "寶可夢對戰等於戰爭,$我向你展示了軍隊中的格鬥技巧!" + } + }, + "erika": { + "encounter": { + "1": "啊,這裡天氣真好…$哦,對戰?那好吧。", + "2": "我在寶可夢對戰上的造詣,$可以與我的插花技巧相媲美。", + "3": "哦,希望我寶可夢的宜人香氣\n不會再讓我睡著…", + "4": "看看花園裡的花朵,如此令人心曠神怡。" + }, + "victory": { + "1": "哦!我認輸啦~", + "2": "這場比賽非常愉快。", + "3": "啊,看來我輸了…", + "4": "哦,我的天哪。" + }, + "defeat": { + "1": "我怕我會打瞌睡…", + "2": "哦,我天。看來我的草屬性寶可夢擊敗了你。", + "3": "那場戰鬥是如此令人心曠神怡。", + "4": "哦…這就完啦?" + } + }, + "janine": { + "encounter": { + "1": "我正在掌握毒屬性攻擊的藝術。$今天我來和你過過招!", + "2": "父親相信我能獨當一面。$我來證明他說的對!", + "3": "我的忍術,僅次於我的父親!$你能跟的上嗎?" + }, + "victory": { + "1": "就算現在,我仍然需要繼續訓練…我明白了。", + "2": "你的戰鬥技巧,超過了我。", + "3": "我要好好努力提高我的技術。" + }, + "defeat": { + "1": "呵呵…毒液耗盡了你所有的力量。", + "2": "哈!你根本無法抵擋我卓越的忍技!", + "3": "我沒有辜負父親對我的信任。" + } + }, + "sabrina": { + "encounter": { + "1": "我的超能力預見了你的到來!", + "2": "我不喜歡戰鬥,但如果你想,$我會展示我的實力!", + "3": "我能感覺到你的雄心壯志。$我倒要看看你是不是虛有其表。" + }, + "victory": { + "1": "你的力量……遠遠超出了我的預知……", + "2": "我沒有準確預測到你的實力。", + "3": "即使我強大的超能力也無法感知到你這樣強大的人。" + }, + "defeat": { + "1": "這場勝利……和我看到的未來一樣啊!", + "2": "也許我預感到有強大實力的人,是另一個……", + "3": "在你奮不顧身投入戰鬥之前,\n磨練你的能力。$如果你這樣做,你才未來可期……" + } + }, + "blaine": { + "encounter": { + "1": "哈!希望你帶了燒傷治療藥!", + "2": "我火熱的寶可夢將所有挑戰者都焚燒殆盡!", + "3": "準備好玩火吧!" + }, + "victory": { + "1": "我已經焚燒殆盡了!甚至連灰燼都沒有留下!", + "2": "我沒有把火焰煽得足夠高嗎?", + "3": "我燃盡了……但這讓我進步的動力燃燒得更旺了!" + }, + "defeat": { + "1": "我的熊熊烈火無法被撲滅!", + "2": "我的寶可夢因這次勝利而變得更加強大!", + "3": "哈!我的激情燃得比你的更熱烈!" + } + }, + "giovanni": { + "encounter": { + "1": "我,火箭隊的領袖,\n會讓你的世界感受到痛苦!", + "2": "我在這裡的訓練在我再次面對老朋友之前至關重要。", + "3": "我認為你還沒有準備好迎接你即將經歷的失敗!" + }, + "victory": { + "1": "什麼!我輸了?! 我沒什麼可和你說的!", + "2": "哼……你永遠無法理解我希望實現的目標。", + "3": "這次失敗只是暫時的。$我將找準時機,讓火箭隊浴火重生。" + }, + "defeat": { + "1": "不知自己幾斤幾兩,\n說明你仍然只是一個孩子。", + "2": "不要再試圖干涉我。", + "3": "我希望你明白挑戰我是多麼愚蠢。" + } + }, + "roxanne": { + "encounter": { + "1": "您能否展示一下您是如何戰鬥的麼?", + "2": "你可以和更多訓練師戰鬥來學到很多東西。", + "3": "哦,被你抓到我正在用功了~$你想戰鬥嗎?" + }, + "victory": { + "1": "哦,看來我輸了。$我明白了。", + "2": "看來我在戰鬥方面還有更多東西要學。", + "3": "我會把今天在這裡學到的東西銘記於心。" + }, + "defeat": { + "1": "從我們的對戰中,我學到了很多。$希望你也是。", + "2": "我期待再次與你戰鬥。$希望你能運用在此學到的東西。", + "3": "我憑借我所學到的一切贏得了勝利。" + } + }, + "brawly": { + "encounter": { + "1": "哦,夥計,挑戰者!$讓我看看你的能耐!", + "2": "你看起來很厲害嘛。$來對戰吧!", + "3": "是時候掀起風暴了!$我們上吧!" + }, + "victory": { + "1": "哦哇,你把我沖走了!", + "2": "你駕馭了我的海浪,把我打敗了!", + "3": "我覺得我就像是在武鬥洞窟裡迷路了!" + }, + "defeat": { + "1": "哈哈,我駕馭了大浪!$有時間再挑戰我吧。", + "2": "再和我一起衝浪吧!", + "3": "就像潮水的漲落,\n我希望你也能再來挑戰我。" + } + }, + "wattson": { + "encounter": { + "1": "是時候被電擊了!$哈哈哈!", + "2": "我要讓火星子飛蹦!$哈哈哈!", + "3": "我希望你帶了麻痺藥!$哇哈哈哈!" + }, + "victory": { + "1": "看來我的電量用完了!$哇哈哈哈!", + "2": "你完全接地了是吧!$哇哈哈哈!", + "3": "謝謝你給我電了一下!$哇哈哈哈!" + }, + "defeat": { + "1": "電充充滿,有時間再挑戰我吧!$哇哈哈哈!", + "2": "我希望你覺得我們的戰鬥激情似電!$哇哈哈哈!", + "3": "你沒想到我贏了吧?$哇哈哈哈!" + } + }, + "flannery": { + "encounter": { + "1": "很高興見到你!等等,不對……$我要粉碎你!", + "2": "我才當道館主沒多久,\n但我會讓你灰飛煙滅!", + "3": "是時候展示爺爺教給我的招式了!來對戰吧!" + }, + "victory": { + "1": "你讓我想起了我的爺爺……$難怪我輸了。", + "2": "我是不是太努力了?$我應該放鬆,不能太上頭了。", + "3": "失敗才不會嗆到我。$是時候重新點燃訓練了!" + }, + "defeat": { + "1": "我希望我讓祖父感到驕傲了……$有時間我們再戰鬥吧。", + "2": "我……我簡直不敢相信我贏了!$按照自己的方式做事奏效了!", + "3": "早點用炙熱的招式再來交手吧!" + } + }, + "norman": { + "encounter": { + "1": "我沒想到你能一路來到這裡。$我們來對戰吧。", + "2": "作為道館主,我會盡一切努力贏得勝利。$我們開始吧!", + "3": "你最好全力以赴。$對戰的時候到了!" + }, + "victory": { + "1": "我輸給了你……?$但規則就是規則。", + "2": "難道我不該從城都搬家嗎……?", + "3": "我不敢相信。$這是一場好對戰。" + }, + "defeat": { + "1": "我們都盡力了。$希望我們不久之後能再對戰。", + "2": "你應該嘗試挑戰我的孩子。$可能會有一些收穫!", + "3": "謝謝你精彩的戰鬥。$下次好運。" + } + }, + "winona": { + "encounter": { + "1": "我一直在天空中翱翔尋找獵物…$而你就是我的目標!", + "2": "不管戰況如何,我都會和我的飛行寶可夢$以優雅的姿態獲勝。來戰鬥吧!", + "3": "我希望你不怕高。$我們一起升上高空吧!" + }, + "victory": { + "1": "你是我見過的第一位比我更有風度的訓練師。$打的非常出色。", + "2": "哦,我的飛行系寶可夢都已經墜落了!$好吧。", + "3": "儘管我倒下了,我的寶可夢將繼續翱翔!" + }, + "defeat": { + "1": "我與我的飛行系寶可夢,\n將永遠優雅地起舞!", + "2": "我希望你喜歡我們的演出。$我們優雅的舞蹈已經落幕。", + "3": "你願意再來觀看我們優雅的編舞嗎?" + } + }, + "tate": { + "encounter": { + "1": "嘿嘿嘿…$看到我沒和妹妹在一起,很驚訝麼?", + "2": "我可以讀懂你在想什麼…$你想要戰鬥!", + "3": "你如何擊敗一個…$讀懂你一舉一動的人?" + }, + "victory": { + "1": "贏不了啊…$我想小南了…", + "2": "你和寶可夢之間的聯繫比我們更強。", + "3": "如果我和小南聯手,我們會贏的。$我們可以了解彼此的想法!" + }, + "defeat": { + "1": "我和我的寶可夢無與倫比!", + "2": "如果你連我都打不過,\n你肯定也打不過小南。", + "3": "這多虧了我和小南的嚴格訓練。$我可以與寶可夢一心同體。" + } + }, + "liza": { + "encounter": { + "1": "呵呵呵…$看到我沒和哥哥一起,很驚訝嗎?", + "2": "我可以讀懂你渴望什麼…$你想戰鬥,不是嗎?", + "3": "你如何擊敗一個…$與寶可夢們一心同體的人?" + }, + "victory": { + "1": "贏不了啊…$我想小楓了…", + "2": "你和寶可夢之間的聯繫…$比我強。", + "3": "如果我和小楓在一起,我們會贏的。$我們甚至可以接上彼此的話!" + }, + "defeat": { + "1": "我和我的寶可夢勢不可擋。", + "2": "如果你連我都打不過,\n你肯定也打不過小楓。", + "3": "這多虧了我和小楓的嚴格訓練。$我可以與我的寶可夢一心同體。" + } + }, + "juan": { + "encounter": { + "1": "別害羞啊。$我們來戰鬥吧!", + "2": "啊哈哈哈,敬請期待\n我和水屬性寶可夢的盛大演出!", + "3": "我就是正在逼近的風暴!$你能經受住考驗嗎?", + "4": "請你見證我們的表演。$由我和寶可夢共同創造的宏偉水之幻境!" + }, + "victory": { + "1": "你可能是一個能挑戰米可利的天才!", + "2": "我專注於優雅,而你刻苦鍛鍊。$你能擊敗我是很正常的。", + "3": "啊哈哈哈!$好吧,這次你贏了。", + "4": "從你身上,我感受到了技巧的光輝,\n它將戰勝一切。" + }, + "defeat": { + "1": "寶可夢和我創造的水之幻境,讓我取得了勝利。", + "2": "啊哈哈哈,我贏了,你輸了。", + "3": "要我把我的服裝借給你嗎?\n可能能幫到你對戰啊!$啊哈哈哈,我開玩笑的!", + "4": "我是贏家!也就是說,你輸了。" + } + }, + "crasher_wake": { + "encounter": { + "1": "極限! 極限! 看好了!$極限假面…就此…登場!", + "2": "極限! 極限! 極限假面!", + "3": "我是滔滔巨浪,將你沖走!" + }, + "victory": { + "1": "我真是笑得合不攏嘴啊!$哈哈哈!那真是太有趣了!", + "2": "呼哇!結束收尾了!$我該怎麼說呢……$我還想再對戰!我還想再繼續戰鬥!", + "3": "啊啊啊啊啊!?" + }, + "defeat": { + "1": "耶!就是這樣!", + "2": "我贏了,但我還想要更多!\n我還想再更多地戰鬥!", + "3": "再見!" + } + }, + "falkner": { + "encounter": { + "1": "我將向你展示華麗的飛行寶可夢真正的力量!", + "2": "風啊,伴我同行!", + "3": "爸爸!我希望你能在空中注視著我的戰鬥!" + }, + "victory": { + "1": "明白了……我會禮貌地退場。", + "2": "輸了就是輸了。你確實很強大。", + "3": "…行吧! 嗯, 我輸了。" + }, + "defeat": { + "1": "爸爸!我用你珍愛的飛行寶可夢贏了……", + "2": "飛行系寶可夢才是最強的!", + "3": "感覺我正在追趕上我的父親!" + } + }, + "nessa": { + "encounter": { + "1": "無論你的小腦瓜子在搞什麼陰謀詭計,$我和我的搭檔都會確保它石沉大海。", + "2": "我來這裡可不是為了閒聊,\n而是為了贏!", + "3": "這是我的寶可夢給你的一點小禮物……\n我希望你能接受!" + }, + "victory": { + "1": "你和你的寶可夢太過分了……", + "2": "怎麼……?這怎麼可能?!", + "3": "我完全被沖走了!" + }, + "defeat": { + "1": "洶湧的海浪再次襲來!", + "2": "是時候乘風破浪,取得勝利了!", + "3": "誒嘿嘿!" + } + }, + "melony": { + "encounter": { + "1": "我不會手下留情!", + "2": "好吧,我想我們應該開始了。", + "3": "我會把你凍得結結實實的!" + }, + "victory": { + "1": "你……你可厲害了,是不是?", + "2": "如果你找到瑪瓜,一定要好好教訓他,好嗎?", + "3": "你的破冰方式有點過於直接了呢……" + }, + "defeat": { + "1": "現在你知道戰鬥有多殘酷了吧?", + "2": "嘿!看來我又贏了!", + "3": "你是在保留實力嗎?" + } + }, + "marlon": { + "encounter": { + "1": "你看起來很強!來吧!讓我們開始吧!", + "2": "我的強大像大海一樣無邊無際。$你會被我沖走,絕對的。", + "3": "哦豁,由我來面對你!這可不得了咯!" + }, + "victory": { + "1": "你太厲害了!\n你培養了一些非常強大的寶可夢啊,$你已經掌握了訓練師的精髓!", + "2": "你不僅僅是看起來,\n你是真的強,真的!$呃,我也被沖走了!", + "3": "你像兇猛的波浪一樣強壯!" + }, + "defeat": { + "1": "你很強,但這還不足以動搖大海,懂?", + "2": "嘻!看來我又贏了!", + "3": "甜蜜的勝利!" + } + }, + "shauntal": { + "encounter": { + "1": "打擾了。你是挑戰者,對嗎?$我是四天王的幽靈系寶可夢使用者,$婉龍,我將是你的對手。", + "2": "我非常喜歡描寫來到這裡的訓練師,\n以及他們訓練的寶可夢。$我可以用你和你的寶可夢作為主題嗎?", + "3": "每個與寶可夢相處的人都有故事要講。$接下來要講的故事是怎樣的呢?" + }, + "victory": { + "1": "哇。我驚呆了!", + "2": "對…對不起!我必須先向我的寶可夢道歉……$都是因為我讓你們有了不好的經歷,真的很抱歉!", + "3": "你要知道,我仍然是四天王之一!" + }, + "defeat": { + "1": "額呵呵。", + "2": "給了我下一部小說的絕佳素材!", + "3": "就這樣,又一篇故事來到尾聲……" + } + }, + "marshal": { + "encounter": { + "1": "我的師傅,阿戴克,\n看到了你作為訓練師的潛力,$對你很有興趣。$我要來考驗你——挖掘你力量的極限。\n丹田發力!", + "2": "勝利,決定性的勝利,\n正是我所求!挑戰者,我來了!", + "3": "在我的心中,我尋求著成為戰士的力量,\n克服自身的所有弱點!$以我的信念,取勝!" + }, + "victory": { + "1": "呼!幹得好!", + "2": "不要停止戰鬥,追求更高的目標!", + "3": "你和你寶可夢展現的力量\n給我留下了深刻的印象……" + }, + "defeat": { + "1": "嗯…", + "2": "這真是場好戰鬥。", + "3": "哈啊!哈啊!嗨呀啊!" + } + }, + "cheren": { + "encounter": { + "1": "你讓我想起了一位老朋友。$這讓我對這場寶可夢戰鬥感到興奮!", + "2": "不考慮清楚這一點,\n寶可夢對戰就沒有了意義。$這就是失去了和寶可夢一同戰鬥的意義。", + "3": "我的名字是黑連!我是道館館主,\n也是老師!$很高興認識你。" + }, + "victory": { + "1": "謝謝……我又能發現自己的不足了。", + "2": "謝謝…接近理想的道路…我好像隱約看到了。", + "3": "嗯……這值得思考。" + }, + "defeat": { + "1": "作為道館館主,我要成為你要跨越的壁壘!", + "2": "好吧!", + "3": "正因為有寶可夢,我們才能走到這裡。$為什麼寶可夢會幫助我們,\n這個恐怕不僅是寶可夢與訓練家…$而是生命與生命之間的問題。" + } + }, + "chili": { + "encounter": { + "1": "咿呀!是時候玩火了!!我是三兄弟中最強的!", + "2": "嗒噠!如火似焰的伯特——就是我\n——你接下來的對手!", + "3": "我將向你展示,\n我和我熾熱的火系寶可夢的能耐!" + }, + "victory": { + "1": "被你幹掉了。我……燃盡了……", + "2": "哇吼!你燃起來了!", + "3": "啊!被你幹碎了!" + }, + "defeat": { + "1": "我燃起來啦!和我玩兒,你就會被燙傷!", + "2": "你要是玩兒火,就會被燙傷!", + "3": "我說,拜託,\n你的對手是我,沒機會贏的!" + } + }, + "cilan": { + "encounter": { + "1": "無關個人情感…也不會有艱難的感受…$我和我的草屬性寶可夢會…$呃…不管什麼樣的對手我們都會應戰的。", + "2": "所以,呃,如果你願意的話,我會,\n呃,盡我所能做好,呃,你知道的,你的對手。", + "3": "好吧……所以,我是天桐,\n我喜歡草屬性寶可夢。" + }, + "victory": { + "1": "呃……已經結束了嗎?", + "2": "…真是太意外了。你真…強。$看起來就算是伯特或寇恩都贏不了你…", + "3": "…嗯。看起來我來的…不是時候?" + }, + "defeat": { + "1": "哈?我贏了?", + "2": "我想…$我想我贏了,因為我一直在和我的兄弟伯特和寇恩競爭,\n我們都變得更強了。", + "3": "…這…這是一次非常嚇人的經歷呢…" + } + }, + "roark": { + "encounter": { + "1": "我需要看看你作為訓練師的潛力。$還有,我要看看與你並肩作戰的寶可夢的堅韌!", + "2": "來吧!這些是我的岩石系寶可夢,我的驕傲!", + "3": "岩石屬性寶可夢就是最強的!", + "4": "我要看看你作為訓練師的潛力。$還要看看與你並肩作戰的寶可夢的堅韌!" + }, + "victory": { + "1": "什麼?不可能!我強化的寶可夢們!", + "2": "……我大腦過載了。$下次邀請你參加地下的化石挖掘比賽。", + "3": "有你這種技術,贏得勝利是很正常的。", + "4": "什麼?!連這也不夠?", + "5": "我搞砸了。" + }, + "defeat": { + "1": "看?我為我的搖滾戰鬥風格感到驕傲!", + "2": "謝謝!這場戰鬥給了我自信,$我感覺能夠打敗我父親了!", + "3": "我感覺就像我砸穿了一塊頑石!" + } + }, + "morty": { + "encounter": { + "1": "只要我再多努力一點,我就能看到我遇到傳說中的寶可夢的未來!$你會幫助我達到那個水平!", + "2": "據說,彩虹色的寶可夢會\n出現在真正強大的訓練師面前。 $我一直相信著這個美麗的傳說,\n所以,從出生開始,\n就在這裡進行著秘密的修行。$因為這樣,其他人看不到的東西\n我也能夠看得到…$我看到的,是那個將傳說中的寶可夢\n召喚到這片大地上的人的影子。$我一直相信,那就是我自己!\n希望你也能助我一臂之力!", + "3": "無論你相信還是不相信,神秘的力量確實存在。", + "4": "你可以見證我訓練的成果。", + "5": "你必須讓你與寶可夢的靈魂合二為一。你能做到嗎?", + "6": "嘿,你想成為我訓練的一部分嗎?" + }, + "victory": { + "1": "我還不夠好……", + "2": "我明白了…你的旅程…去了遙遠的地方,你見過的比我多得多。$我羨慕你…", + "3": "這怎麼可能……", + "4": "我認為我們的潛力沒什麼不同。$但是,我覺得你並不簡單,似乎還有什麼……", + "5": "我想我需要更多的訓練。", + "6": "那太遺憾了" + }, + "defeat": { + "1": "我又向前邁進了一步。", + "2": "呵呵呵……", + "3": "什…麼?!那還不夠?", + "4": "我感覺就像我砸穿了一塊頑石!", + "5": "哈哈哈啊!", + "6": "我知道我會贏!" + } + }, + "crispin": { + "encounter": { + "1": "我想贏,所以接下來我正要贏!", + "2": "我想對戰就對戰!懂嗎!就應該這樣!" + }, + "victory": { + "1": "我想贏……但我還是輸了!", + "2": "我輸了……因為我贏不了!" + }, + "defeat": { + "1": "嘿,等一下。我是不是贏了?$我覺得我贏了!太滿足了!", + "2": "哇哦!那太棒了!" + } + }, + "amarys": { + "encounter": { + "1": "我想幫助某個人。因此,我不能輸。$…我們的戰鬥現在開始。" + }, + "victory": { + "1": "我還不夠,我明白了。" + }, + "defeat": { + "1": "勝利屬於我。打得好。" + } + }, + "lacey": { + "encounter": { + "1": "我將用我平時的隊伍\n作為四天王的一員面對你。" + }, + "victory": { + "1": "打得真好呀~" + }, + "defeat": { + "1": "讓我們為你寶可夢的努力給予熱烈的掌聲!" + } + }, + "drayton": { + "encounter": { + "1": "哥們,我喜歡椅子。\n你喜歡椅子嗎?簡直是救星。$我不明白為什麼大家不一直坐著。\n站著多累人!" + }, + "victory": { + "1": "我早該想到的!" + }, + "defeat": { + "1": "嘿嘿嘿!別介意我,\n我只是在這裡小贏一下。$如果你不開心,我懂,\n但別因為我對烏栗發火,OK?" + } + }, + "ramos": { + "encounter": { + "1": "我用那些強壯的植物\n蓋出來的遊樂場精彩嗎?$它們的力量象徵著我這個園丁兼道館館主的實力,\n你真的確定能夠與之抗衡嗎?" + }, + "victory": { + "1": "你信任你的寶可夢,\n它們也信任你…不錯的戰鬥,小豆芽。" + }, + "defeat": { + "1": "呵呵呵…確實,\n脆弱的小草甚至能穿透混凝土。" + } + }, + "viola": { + "encounter": { + "1": "敗陣時的後悔,勝利的瞬間…$都是最棒的影象!很好呀,很好呀!$那麼來吧!", + "2": "我的鏡頭總會聚焦在勝利上,\n我不會讓任何事情破壞這個畫面!" + }, + "victory": { + "1": "你和你的寶可夢向我展示了一個全新的鏡頭機位!\n很好呀,很好呀!", + "2": "你通過鏡頭看到的世界,\n和你與寶可夢並肩作戰時看到的世界…$視角不同,即使是同一個世界看起來也完全不同。" + }, + "defeat": { + "1": "我勝利那一刻的照片,\n將是一個真正的贏家,對吧!", + "2": "是的!我拍了些很棒的照片!" + } + }, + "candice": { + "encounter": { + "1": "向小菘我挑戰嗎?好啊!\n我就是在等待強者$但是我也氣勢高昂,很強哦?", + "2": "寶可夢也好,時尚也好,戀愛也好,\n無論做什麼都氣勢高昂!$就說到這兒吧,讓你見識一下我的氣勢,\n要做好覺悟哦!" + }, + "victory": { + "1": "好厲害!我有點尊敬你了。", + "2": "好厲害!我有點尊敬你了!$嗯,感覺是被你的氣勢給壓倒了。" + }, + "defeat": { + "1": "你的氣勢我看到了,但我還是不會輸的!", + "2": "怎麼樣?小菘我的氣勢!\n寶可夢們的氣勢滿滿哦!" + } + }, + "gardenia": { + "encounter": { + "1": "你身上有一種勝利的氣息。\n那麼不管怎樣,$這應該會是場有趣的戰鬥。\n讓我們對戰吧!" + }, + "victory": { + "1": "太棒了!你可擅長對戰了,不是嗎?" + }, + "defeat": { + "1": "太好了!我的寶可夢和我都很棒!" + } + }, + "aaron": { + "encounter": { + "1": "好的!讓我來接受你的挑戰!" + }, + "victory": { + "1": "戰鬥是一件深刻而複雜的事情……" + }, + "defeat": { + "1": "戰勝一位四天王並不容易。" + } + }, + "cress": { + "encounter": { + "1": "沒!錯!你必須面對\n與我和我高貴的水屬性的戰鬥!" + }, + "victory": { + "1": "輸了?我?我不敢相信。" + }, + "defeat": { + "1": "當你的對手是我時,這是必然的結果。" + } + }, + "allister": { + "encounter": { + "1": "我是歐尼奧。$我…我來了……" + }, + "victory": { + "1": "我差點被嚇得丟了面具…那真是…$哇。我可以看清你真正的實力。" + }, + "defeat": { + "1": "這真是太棒了!" + } + }, + "clay": { + "encounter": { + "1": "咳咳! 讓我好等,不是嗎,孩子?$好吧,是時候看看你能做到什麼了!" + }, + "victory": { + "1": "真是的……我先說好,\n我可沒有手下留情。" + }, + "defeat": { + "1": "最重要的是輸掉的時候該怎麼辦。$只要你能在失敗中找到教訓,\n就能夠不斷地成長!" + } + }, + "kofu": { + "encounter": { + "1": "我會給你上一整道水系寶可夢大餐!\n但別真吃了它們!" + }, + "victory": { + "1": "吃了嗎!你真是活力又新鮮啊,\n不是嗎!$就是有點太鮮活了!" + }, + "defeat": { + "1": "你要再來找我,聽見了嗎?" + } + }, + "tulip": { + "encounter": { + "1": "請讓我運用我的化妝技巧,$讓你可愛的小寶可夢變得更美麗!" + }, + "victory": { + "1": "你妝點的力量宛如魔法加固,\n完全沖洗不掉啊。" + }, + "defeat": { + "1": "你知道嗎,在我這行,\n那些沒天賦的人往往會很快消失,$再也不會被提起。" + } + }, + "sidney": { + "encounter": { + "1": "你給我的印象不錯,\n我猜這會是一場精彩的對戰。$很棒!看起來真的很棒!$你和我,讓我們享受一場\n只能在這裡上演的戰鬥吧!" + }, + "victory": { + "1": "嗯,你覺得怎樣?我輸了!\n嗯,不過這很有趣,所以無所謂啊。" + }, + "defeat": { + "1": "別介意,OK?" + } + }, + "phoebe": { + "encounter": { + "1": "過去我在修行時得到了\n能與幽靈寶可夢親密交流的能力。$沒錯,我和寶可夢之間\n有著強烈的羈絆。$那麼,來試試看你有沒有能力\n傷到我的寶可夢吧!" + }, + "victory": { + "1": "哦,天呀。我輸了。" + }, + "defeat": { + "1": "我期待著下次再和你戰鬥!" + } + }, + "glacia": { + "encounter": { + "1": "我在這兒見到的盡是些\n弱不禁風的訓練家和寶可夢。$你又如何呢?如果你能讓我不得不用\n上全力的話就再好不過了!" + }, + "victory": { + "1": "你和你的寶可夢…\n你們的靈魂燃燒得多麼熱烈啊!$這股激烈的熱能仿佛能征服一切。\n$難怪我的冰屬性技巧也奈何不了你了。" + }, + "defeat": { + "1": "一場充滿激情的戰鬥,確實。" + } + }, + "drake": { + "encounter": { + "1": "對於我們這些將寶可夢視為\n同伴一同戰鬥的訓練家來說,$你知道怎樣才能贏得勝利嗎?\n你知道獲得勝利的條件嗎?$如果你不知道,\n那麼你永遠也無法戰勝我!" + }, + "victory": { + "1": "幹得漂亮,就是這樣。" + }, + "defeat": { + "1": "我在這場戰鬥中全力以赴了!" + } + }, + "wallace": { + "encounter": { + "1": "你的氣質變了,\n我能感覺到這一點。$現在,把你和你的寶可夢\n的力量展現給我看吧。$作為回禮,就由我和我的寶可夢\n演出一場水之幻影吧!" + }, + "victory": { + "1": "精彩。此刻,我能從你身上感覺到\n身為寶可夢訓練家的可靠與高貴。$我真榮幸能遇到你和你的寶可夢。" + }, + "defeat": { + "1": "偉大的幻影!" + } + }, + "lorelei": { + "encounter": { + "1": "只要能讓我用冰屬性寶可夢,\n就絕對沒人能贏得過我!\n能凍住對方可是很厲害的哦!$因為如果被凍住,你的寶可夢就無法動彈了!\n啊哈哈!你做好覺悟了吧!" + }, + "victory": { + "1": "你怎麼敢!" + }, + "defeat": { + "1": "一旦你被凍結,你就什麼都做不了。" + } + }, + "will": { + "encounter": { + "1": "我曾經環遊世界,\n日以繼夜地做著超能力寶可夢的修行之旅。$我會不斷變強!沒理由會在這裡輸掉!" + }, + "victory": { + "1": "……不會吧……" + }, + "defeat": { + "1": "就差一點。\n我想知道你缺少了什麼。" + } + }, + "malva": { + "encounter": { + "1": "我的內心可是一直燃燒著呢。$燃燒著對你的怒火!" + }, + "victory": { + "1": "挑戰者出色地擊敗了四天王之一,帕琦拉。" + }, + "defeat": { + "1": "真開心啊,能將你徹底粉碎!" + } + }, + "hala": { + "encounter": { + "1": "老哈拉讓你放開嗓子!" + }, + "victory": { + "1": "我能感受到你在旅途中所獲得的力量。" + }, + "defeat": { + "1": "啊哈哈。多麼有趣的戰鬥。" + } + }, + "molayne": { + "encounter": { + "1": "我將隊長的位置讓給了我的表弟馬瑪內,\n但我對自己的能力很有信心。 $我的力量就像超新星一樣!" + }, + "victory": { + "1": "我發現了一個有趣的訓練師對手!" + }, + "defeat": { + "1": "啊哈哈。多麼有趣的戰鬥。" + } + }, + "rika": { + "encounter": { + "1": "我要對你手下留情,但……騙你的啦! $好好動腦!" + }, + "victory": { + "1": "不錯,小子。" + }, + "defeat": { + "1": "啊哈哈哈哈!你真的很特别,小子!" + } + }, + "bruno": { + "encounter": { + "1": "我們將用勢不可擋的力量磨滅你!呼哈!" + }, + "victory": { + "1": "為什麼?我怎麼會輸?" + }, + "defeat": { + "1": "你可以隨意挑戰我,\n但結果永遠不會改變!" + } + }, + "bugsy": { + "encounter": { + "1": "我是阿筆!\n對蟲系寶可夢的熟悉不會輸給任何人的!" + }, + "victory": { + "1": "哇,太棒了!\n你是個寶可夢專家!$我的研究還沒有完成。\n好吧,你贏了。" + }, + "defeat": { + "1": "謝謝!多虧了我們的戰鬥,\n我的研究也取得了進展!" + } + }, + "koga": { + "encounter": { + "1": "哇哈哈哈哈!$寶可夢不僅僅是關於蠻力,拭目以待吧!" + }, + "victory": { + "1": "啊!你證明了自己!" + }, + "defeat": { + "1": "懂不懂要對忍者的技巧心神畏懼?" + } + }, + "bertha": { + "encounter": { + "1": "啊,讓老婆婆看看你學到了什麼?" + }, + "victory": { + "1": "好吧,親愛的孩子,\n不得不說,那令人印象深刻。$你的寶可夢相信你並盡最大努力為你贏得勝利。$儘管我輸了,\n我也止不住笑呢!" + }, + "defeat": { + "1": "哈哈哈!看來老婆婆我贏了!" + } + }, + "lenora": { + "encounter": { + "1": "那麼,挑戰者,讓我來研究$你與你精心養育的寶可夢要如何戰鬥!" + }, + "victory": { + "1": "我關於你的理論是正確的。$你不僅僅是有天賦……你很努力!\n我向你致敬!" + }, + "defeat": { + "1": "啊哈哈!如果你輸了,\n一定要分析原因,$並在下一場戰鬥中運用那些知識!" + } + }, + "siebold": { + "encounter": { + "1": "只要我活著,我將不斷努力尋求終極美食…$以及和最強的對手戰鬥!" + }, + "victory": { + "1": "您的事蹟,我志米銘記在心。" + }, + "defeat": { + "1": "我們的寶可夢戰鬥就像我靈魂的養料。\n它將讓我繼續前進。$這就是我將向你表示敬意的方式,\n感謝你在戰鬥中全力以赴!" + } + }, + "roxie": { + "encounter": { + "1": "準備好了嗎!我要給你上一課!" + }, + "victory": { + "1": "夠野的!你的想法比我的還要毒!" + }, + "defeat": { + "1": "嘿,拜託!認真點!\n你要加把勁啊!" + } + }, + "olivia": { + "encounter": { + "1": "沒什麼開場白。\n是時候和我麗姿,戰鬥了!" + }, + "victory": { + "1": "真的很可愛……你和你的寶可夢……" + }, + "defeat": { + "1": "嗯哼。" + } + }, + "poppy": { + "encounter": { + "1": "哦!你想和我進行寶可夢對戰麼?" + }, + "victory": { + "1": "嗚哇?!嘛……" + }, + "defeat": { + "1": "耶!我做到了!我擊~敗~了~你!\n你可以來…打…復仇之戰?$只要你想,隨時來打復仇之戰吧!" + } + }, + "agatha": { + "encounter": { + "1": "寶可夢是用來戰鬥的!我會讓你看看真正訓練家的戰鬥!" + }, + "victory": { + "1": "哦,我的天!你真是個特別的孩子!" + }, + "defeat": { + "1": "哈哈哈,這才是正確的戰鬥方式!" + } + }, + "flint": { + "encounter": { + "1": "希望你已經熱身完畢,\n因為這裡即將大爆炸!" + }, + "victory": { + "1": "不可思議!$你的動作如此火熱,讓我看起來溫吞吞的!" + }, + "defeat": { + "1": "嗯?就這嗎?\n我覺得你得再激情點。" + } + }, + "grimsley": { + "encounter": { + "1": "一無所有,\n或者,贏下所有!" + }, + "victory": { + "1": "一旦失敗,\n就意味著失去一切……$下一次我要追尋勝利!" + }, + "defeat": { + "1": "如果有人贏了,\n和他對戰的人就會輸。" + } + }, + "caitlin": { + "encounter": { + "1": "當花兒綻開時、我便出現。\n成為你在等待的人…$你似乎同時具備實力和善意$我所尋找的是擁有卓越力量的對手…$請用出你的全力吧!" + }, + "victory": { + "1": "我和我的寶可夢學到了很多!非常感謝。" + }, + "defeat": { + "1": "我渴望以優雅的姿態取得勝利。" + } + }, + "diantha": { + "encounter": { + "1": "與你的寶可夢對戰\n讓你充滿了未來的希望…$說真的,這讓我更有活力地面對新的一天,確實如此!" + }, + "victory": { + "1": "擁有高尚靈魂的訓練家和寶可夢的身姿,\n讓我的心激烈地震顫…" + }, + "defeat": { + "1": "哦,太棒了!你覺得怎麼樣?\n我的隊伍很酷吧~對吧?" + } + }, + "wikstrom": { + "encounter": { + "1": "年輕的挑戰者,幸會!\n我乃是著名的鋼鐵之刃,公爵雁鎧! $讓我們開始戰鬥吧!預備!" + }, + "victory": { + "1": "輝煌!你與你尊貴的\n寶可夢之間的信任居然勝過了我!" + }, + "defeat": { + "1": "哦哦哦!這是怎麼回事,\n我的心止不住地在震顫! $與如此有價值的對手的勝利\n讓我的靈魂飛翔——我心翱翔!" + } + }, + "acerola": { + "encounter": { + "1": "對戰只是找個樂子!來吧,我來會會你!" + }, + "victory": { + "1": "我……我說不出話!你是怎麼做到的?!" + }, + "defeat": { + "1": "哈哈!真是嚇人倒怪的勝利呀!" + } + }, + "larry_elite": { + "encounter": { + "1": "……你好,我是青木。$麻煩的是我還要兼任四天王。" + }, + "victory": { + "1": "好吧,我們翅膀下的疾風止於你這了啊…" + }, + "defeat": { + "1": "是時候和老闆開會了。" + } + }, + "lance": { + "encounter": { + "1": "我一直在等你。讓我來試試你有幾斤幾兩。", + "2": "我知道你能走這麼遠。讓我們開始吧。" + }, + "victory": { + "1": "被你拿下了啊。你太出色了!", + "2": "我從沒想到會有另一個訓練師打敗我……$我很驚訝。" + }, + "defeat": { + "1": "就差一點。想再試一次嗎?", + "2": "我沒覺得你弱,別因此困擾。" + } + }, + "karen": { + "encounter": { + "1": "我是梨花,你想和我的惡屬性寶可夢$來一場對決嗎?", + "2": "我和你見過的那些人不一樣。", + "3": "你組建了一支迷人的隊伍。$我們的戰鬥應該會是場精彩的比賽。" + }, + "victory": { + "1": "不!我贏不了。你是怎麼做到變得這麼強的?", + "2": "我不會偏離我所選擇的道路。", + "3": "冠軍正期待與你見面。" + }, + "defeat": { + "1": "意料之中。", + "2": "嗯,還算有點意思。", + "3": "隨時歡迎你來找我。" + } + }, + "milo": { + "encounter": { + "1": "看起來你顯然很了解寶可夢。$這會是一場激烈的戰鬥!$如果我想贏,我得讓我的寶可夢極巨化!" + }, + "victory": { + "1": "草的力量凋謝了…多麼不可思議的挑戰者!" + }, + "defeat": { + "1": "這必將讓你大吃一驚。" + } + }, + "lucian": { + "encounter": { + "1": "請稍等,我正在讀的書\n正要進入最精彩的部分…$英雄獲得了一把神秘之劍,\n即將面臨最後的考驗…啊,算了。$既然你能走到這一步,\n我就不說這些了,和你戰鬥吧。$讓我看看你是否\n能像我書中的主角一樣榮耀!" + }, + "victory": { + "1": "我明白了…看來你把我逼入了絕境。" + }, + "defeat": { + "1": "我得維護我的名譽。" + } + }, + "drasna": { + "encounter": { + "1": "你很厲害吧,\n而且相當相當地厲害呢。$我很高興,能和這樣的對手交手,\n就能更好地培養寶可夢們了。" + }, + "victory": { + "1": "哎呀,就這麼結束了,\n不好意思,可以的話歡迎再來。" + }, + "defeat": { + "1": "怎麼會這樣?" + } + }, + "kahili": { + "encounter": { + "1": "那麼,既然來了……\n要不來看看今天的風更青睞誰?$是你……還是我?" + }, + "victory": { + "1": "讓我這個四天王都感到沮喪,$看來你的力量貨真價實。" + }, + "defeat": { + "1": "那真是一記好球!" + } + }, + "hassel": { + "encounter": { + "1": "讓你親身感受一下什麼叫做猛烈的對戰氣息吧!" + }, + "victory": { + "1": "這次幸運之神對我微笑了,但是……$誰知道我下次會不會這麼幸運。" + }, + "defeat": { + "1": "那可真厲害!" + } + }, + "blue": { + "encounter": { + "1": "能走到這裡,你一定非常優秀。" + }, + "victory": { + "1": "我只輸給過他,現在又是你……?$你問他是誰?哈哈哈……" + }, + "defeat": { + "1": "看吧?我的實力就是我來到這裡的原因。" + } + }, + "piers": { + "encounter": { + "1": "準備好和我的隊伍來個大狂歡吧!$尖釘鎮,是時候嗨起來了!" + }, + "victory": { + "1": "我和我的隊伍已經盡力了。$找個時間再來對戰吧……" + }, + "defeat": { + "1": "我的喉嚨因為呼喊而變得沙啞……$但這是一場激動人心的戰鬥!" + } + }, + "red": { + "encounter": { + "1": "…!" + }, + "victory": { + "1": "…?" + }, + "defeat": { + "1": "…!" + } + }, + "jasmine": { + "encounter": { + "1": "哦……你的寶可夢給人印象深刻。$我想我會享受這場戰鬥的。" + }, + "victory": { + "1": "你真的很強。我也得加把勁了。" + }, + "defeat": { + "1": "我從沒想到會贏。" + } + }, + "lance_champion": { + "encounter": { + "1": "我依舊是冠軍,所以我不會留情的。" + }, + "victory": { + "1": "這就是新冠軍的崛起。" + }, + "defeat": { + "1": "我成功捍衛了冠軍的頭銜。" + } + }, + "steven": { + "encounter": { + "1": "告訴我…你在和寶可夢的旅途過程中看到了什麼?$邂逅了那麼多的訓練師,\n你都會有什麼樣的感受呢?$在這豐饒的大地上旅行…\n有沒有喚醒你內在的某種東西?$你不如就用一場對戰來告訴我你心中的答案吧。$我也會和我的寶可夢用這種方式\n將我們所知道的告訴你的!" + }, + "victory": { + "1": "沒想到連我這個聯盟冠軍\n都敗在你的手上了呢…" + }, + "defeat": { + "1": "正如我所期待的。謝謝!" + } + }, + "cynthia": { + "encounter": { + "1": "我,竹蘭,接受你的挑戰!\n我是絕不會手軟的!" + }, + "victory": { + "1": "無論對戰多麼有趣,\n它總會有結束的時候……" + }, + "defeat": { + "1": "即使你輸了,\n也永遠不要失去你對寶可夢的熱愛。" + } + }, + "iris": { + "encounter": { + "1": "你知道嗎?\n我真的很期待和強大的訓練師進行認真的戰鬥!$我的意思是,來吧!\n到達這裡的是那些渴望勝利的訓練師,$他們與經歷過無數艱難\n戰鬥的寶可夢一起戰鬥!$如果我和那樣的人戰鬥,\n不僅我會變得更強,我的寶可夢也會!$我們也會更好地了解彼此!\n好!做好準備吧!$我是艾莉絲,寶可夢聯盟冠軍,\n我,將打敗你!" + }, + "victory": { + "1": "啊……我盡力了,但我們輸了……" + }, + "defeat": { + "1": "耶!我們贏了!" + } + }, + "hau": { + "encounter": { + "1": "我想知道,訓練師是否會根據他們是\n來自溫暖地區還是寒冷地區而以不同的方式戰鬥。$讓我們來測試一下!" + }, + "victory": { + "1": "那太棒了!我覺得我現在有點了解你的感覺了!" + }, + "defeat": { + "1": "老鐵,這才叫戰鬥!" + } + }, + "geeta": { + "encounter": { + "1": "我決定再試一次。$來吧…讓我看看你的訓練成果。" + }, + "victory": { + "1": "我期待著你的成就!" + }, + "defeat": { + "1": "怎麼,這就結束了?" + } + }, + "nemona": { + "encounter": { + "1": "耶!我太興奮了!讓我們稍微放輕鬆!" + }, + "victory": { + "1": "好吧,太糟了,但我還是玩得很開心!$下次我一定會贏你!" + }, + "defeat": { + "1": "好吧,那是一場很棒的戰鬥!$肯定是會有收穫的啦。" + } + }, + "leon": { + "encounter": { + "1": "來享受一段冠軍時刻吧!" + }, + "victory": { + "1": "我的冠軍生涯結束了……但這是多麼美好的冠軍時刻啊!但這是多麼美好的冠軍時刻啊!謝謝你給了我最精彩的一戰!" + }, + "defeat": { + "1": "名副其實的冠軍時刻!" + } + }, + "whitney": { + "encounter": { + "1": "嘿!你不認為寶可夢超級可愛嗎?" + }, + "victory": { + "1": "哇啊!哇啊!你太壞了!" + }, + "defeat": { + "1": "就是這樣!" + } + }, + "chuck": { + "encounter": { + "1": "哈!你想挑戰我?你是勇敢還是無知?" + }, + "victory": { + "1": "你很強!能不能收我為徒?" + }, + "defeat": { + "1": "搞定。你明白我比你強得多了嗎?" + } + }, + "katy": { + "encounter": { + "1": "不要放鬆警惕,除非你想被蟲絲絆倒哦!" + }, + "victory": { + "1": "我可愛的寶可夢們都像蒼蠅一樣墜落了!" + }, + "defeat": { + "1": "開飯啦,我可愛的彩粉蝶!" + } + }, + "pryce": { + "encounter": { + "1": "年輕不代表能獲得勝利!經驗才是關鍵。" + }, + "victory": { + "1": "無與倫比!贏得完美,試著不要忘記你現在的感受。" + }, + "defeat": { + "1": "正如我所料。" + } + }, + "clair": { + "encounter": { + "1": "你知道我是誰嗎?知道還敢挑戰我?" + }, + "victory": { + "1": "我想知道以你現在的水平能走多遠,有趣。" + }, + "defeat": { + "1": "就是這樣。" + } + }, + "maylene": { + "encounter": { + "1": "我現在要挑戰你,我不會保留任何實力。$請準備好戰鬥!" + }, + "victory": { + "1": "是我輸了…" + }, + "defeat": { + "1": "太棒了。" + } + }, + "fantina": { + "encounter": { + "1": "你來挑戰吧。我會勝利。$這就是家緣市的道館館主。" + }, + "victory": { + "1": "你是最強的,我認輸了。" + }, + "defeat": { + "1": "我非常,非常高興!" + } + }, + "byron": { + "encounter": { + "1": "和我兒子瓢太一樣的年輕人啊!$我相信培養年輕人\n關係到寶可夢光明的未來!$為此就讓我來成為\n年輕人必須跨越的堡壘吧!" + }, + "victory": { + "1": "唔!我千錘百煉的寶可夢!" + }, + "defeat": { + "1": "哈哈哈哈!怎麼樣!我千錘百煉的寶可夢!" + } + }, + "olympia": { + "encounter": { + "1": "戰鬥是決定命運的古老傳統。讓我們開始吧!" + }, + "victory": { + "1": "創造你自己的道路。$不要讓任何東西阻擋你的路、你的命運、你的未來。" + }, + "defeat": { + "1": "我們的道路現在已經清晰了。" + } + }, + "volkner": { + "encounter": { + "1": "能留到最後的訓練家想必肯定是很強的…$希望你會是能讓我回憶起\n寶可夢對戰樂趣的訓練家!" + }, + "victory": { + "1": "我輸了…$你的心意,寶可夢的不顧一切。$戰鬥的時候就讓我熱血沸騰。" + }, + "defeat": { + "1": "完全沒感覺…$和我希望的完全不一樣!" + } + }, + "burgh": { + "encounter": { + "1": "唔…我有預感,\n只要贏了這場戰鬥就能畫出更好的畫來…$嗯!戰鬥充滿了幻象!那麼,馬上開始吧。", + "2": "當然,我對我所有的寶可夢都相當驕傲! $現在…讓我們馬上開始吧!" + }, + "victory": { + "1": "結束了嗎?我的女神拋棄我了嗎?", + "2": "啊唔,輸了……你還真是很強啊。" + }, + "defeat": { + "1": "唔啊……好……好美啊!", + "2": "偶爾也有一些不是很好看的勝利,$但只要努力了,\n不管怎麼樣的戰鬥,都是很美麗的。" + } + }, + "elesa": { + "encounter": { + "1": "最後一擊!\n在確信這一點的時候全身會流淌過電流!$為追求這個快感,\n我要用可愛的寶可夢們讓你頭暈眼花。" + }, + "victory": { + "1": "本想讓你頭暈的,\n結果我倒反被你電到了。" + }, + "defeat": { + "1": "感覺還不夠啊……下次能使出全力來嗎?" + } + }, + "skyla": { + "encounter": { + "1": "終於到決戰了!\n這是決定頂點的寶可夢對戰吧?$我最喜歡頂點了!\n在高的地方能看到很遠很遠!$好了!就讓我和你好好地玩一場吧!" + }, + "victory": { + "1": "和你的戰鬥讓我更強了……謝謝。" + }, + "defeat": { + "1": "不管是贏了還是輸了,戰鬥都能得到一些東西。" + } + }, + "brycen": { + "encounter": { + "1": "有其他的人和寶可夢在一起,$這份支持會讓自己更強…\n讓我來給你展示一下這樣的強大吧!" + }, + "victory": { + "1": "你和你的寶可夢!配合得天衣無縫!\n華麗的友情!" + }, + "defeat": { + "1": "嘗試極限!鍛鍊!" + } + }, + "drayden": { + "encounter": { + "1": "現在我尋求的是\n能讓我看到光明未來的年輕訓練家。$你有多少實力,就讓我用我的經驗,\n我對寶可夢傾注的愛來驗證吧!" + }, + "victory": { + "1": "失敗後湧現的這灼熱的意志…\n該怎麼說呢…" + }, + "defeat": { + "1": "啊啊啊!你的實力就這種程度嗎!" + } + }, + "grant": { + "encounter": { + "1": "我只期待一件事。. $通過超越彼此,\n我們找到通往更高境界的道路。" + }, + "victory": { + "1": "你是一堵我無法逾越的牆!" + }, + "defeat": { + "1": "不要放棄。\n這就是人生的真諦。$大道至簡。" + } + }, + "korrina": { + "encounter": { + "1": "小女子科爾尼來大顯身手啦!" + }, + "victory": { + "1": "正因為有你,\n才能讓你的寶可夢進化!" + }, + "defeat": { + "1": "好勁爆的戰鬥呀!" + } + }, + "clemont": { + "encounter": { + "1": "哦!我很高興我們能見面!" + }, + "victory": { + "1": "你對戰鬥的熱情激勵了我!" + }, + "defeat": { + "1": "看來我的訓練師成長強化機-馬克2號,\n真的起作用了!" + } + }, + "valerie": { + "encounter": { + "1": "哦,這不是一個年輕的訓練師嗎……\n能這樣遇見你真是太好了。 $我想你已經獲得了這場戰鬥的資格,\n作為對你努力的獎勵。 $難以捉摸的妖精可能看起來像微風一樣脆弱,\n像花朵一樣精緻,但很堅強。" + }, + "victory": { + "1": "我希望明天你也能找到一些值得會心微笑的事物……" + }, + "defeat": { + "1": "哦,天哪,這太遺憾了……" + } + }, + "wulfric": { + "encounter": { + "1": "你知道嗎?\n我們都說戰鬥能學到東西,羈絆之類的,$但實際上,我這麼做只是因為有趣。 $誰在乎那些華而不實的東西?\n我們來戰鬥吧!" + }, + "victory": { + "1": "傑出!我像冰山一樣堅硬,但你徹底擊潰了我!" + }, + "defeat": { + "1": "和我幹的結果就是這樣!" + } + }, + "kabu": { + "encounter": { + "1": "每個訓練師和寶可夢都在努力追求勝利。$但這意味著你的對手也在努力贏得勝利。$最終,比賽是由哪一方\n能夠發揮出他們真正的潛力來決定的。" + }, + "victory": { + "1": "我很高興今天能和你戰鬥!" + }, + "defeat": { + "1": "這是我感覺自己的成長的好方式!" + } + }, + "bea": { + "encounter": { + "1": "你有沒有一種不可動搖的精神,\n受到什麼攻擊都安如磐石? $就讓我來試試吧?" + }, + "victory": { + "1": "我感受到了你的寶可夢\n在戰鬥中被你指揮時的戰鬥之魂。" + }, + "defeat": { + "1": "每個人都希望能有一場這樣的好比賽。" + } + }, + "opal": { + "encounter": { + "1": "讓我看看你和你的寶可夢的表現如何!" + }, + "victory": { + "1": "你不夠粉嫩呀,\n但你是一個優秀的訓練師,$還擁有著優秀的寶可夢。" + }, + "defeat": { + "1": "對你來說太慘了,我覺得。" + } + }, + "bede": { + "encounter": { + "1": "就讓我來證明你有多可憐,我有多強大。" + }, + "victory": { + "1": "我懂了……好吧。其實我還沒拿出全力呢。" + }, + "defeat": { + "1": "我覺得我打得不錯。" + } + }, + "gordie": { + "encounter": { + "1": "好了,我們來做個了結吧!" + }, + "victory": { + "1": "我只想要挖一個洞爬進去……$好吧,現在更像是掉了進去。" + }, + "defeat": { + "1": "像往常一樣戰鬥,勝利就會隨之而來!" + } + }, + "marnie": { + "encounter": { + "1": "事實上,言而總之… \n人家自己也想當冠軍呀! $所以別認為我在針對你!" + }, + "victory": { + "1": "好吧,我還是輸了……\n但是我看到了很多你和你寶可夢的優點哦" + }, + "defeat": { + "1": "希望你喜歡我們的戰鬥策略。" + } + }, + "raihan": { + "encounter": { + "1": "我打算擊敗冠軍,贏得錦標賽,\n並向世界證明奇巴納大人有多強!" + }, + "victory": { + "1": "就算輸了我也好帥。$真是罪孽深重啊。$看來得再來張自拍了!" + }, + "defeat": { + "1": "為了紀念此刻,來張自拍吧!" + } + }, + "brassius": { + "encounter": { + "1": "你應該準備好了吧,\n一起完成這美麗的藝術作品吧!" + }, + "victory": { + "1": "啊……前衛!" + }, + "defeat": { + "1": "我將立即開始新的創作!" + } + }, + "iono": { + "encounter": { + "1": "誰在奇述!是我奇樹!\n做好準備了嗎!$...$直播開始!\n今天的小挑戰者有多強?$奇樹不知道哦~\n讓我們一起來看看吧!" + }, + "victory": { + "1": "你的閃耀如1000萬伏特!朋友!" + }, + "defeat": { + "1": "奇樹奇樹捕獲你的眼球!" + } + }, + "larry": { + "encounter": { + "1": "歸根結底,普普通通就是最強。" + }, + "victory": { + "1": "哼,給我上了一道“戰敗”。" + }, + "defeat": { + "1": "下班打卡,走了" + } + }, + "ryme": { + "encounter": { + "1": "寶貝, 一起! \n搖滾搖到骨子裡!" + }, + "victory": { + "1": "你好酷!我佩服!\n我的靈魂為你哭!" + }, + "defeat": { + "1": "再會, 寶貝!" + } + }, + "grusha": { + "encounter": { + "1": "我保證我寶可夢的力量\n會讓你感到寒冷徹骨!" + }, + "victory": { + "1": "你燃燒的熱情……老實說,我有點喜歡。" + }, + "defeat": { + "1": "你沒有升溫。" + } + }, + "marnie_elite": { + "encounter": { + "1": "你已經走到這一步了?$哼~ 看看你能不能對付我的寶可夢!", + "2": "我將全力以赴, 別覺得我會手下留情哦~" + }, + "victory": { + "1": "不敢相信…我輸掉了… $但是你確實贏得好,幹得漂亮捏~", + "2": "看來我還要多多學習呀,\n不過你打得很不錯哦~" + }, + "defeat": { + "1": "你打得不錯,但是我更勝一籌!$祝你下次好運啦~", + "2": "看來我的練習有所回報了。\n感謝一戰!" + } + }, + "nessa_elite": { + "encounter": { + "1": "海流正在朝著對我有利的方向轉變。$準備好被捲走了嗎?", + "2": "讓我們在這場戰鬥中掀起波瀾!$我希望你做好準備!" + }, + "victory": { + "1": "你完美地渡過了這片水域......幹得好!", + "2": "看來我現在無法與你匹敵。幹得好!" + }, + "defeat": { + "1": "水總能找到出路。\n真是爽快的一戰!", + "2": "你打得很好,\n但海洋的力量是不可阻擋的!" + } + }, + "bea_elite": { + "encounter": { + "1": "做好準備!我的鬥志熊熊燃燒!", + "2": "讓我們看看你是否能跟上我永不停歇的節奏!" + }, + "victory": { + "1": "你的實力......令人印象深刻。\n你真的值得這場勝利。", + "2": "我以前從未感受過這種強度。\n太棒了!" + }, + "defeat": { + "1": "我的高強度訓練又帶來勝利了!\n幹得好!", + "2": "你有實力,但我的訓練更努力。\n精彩的戰鬥!" + } + }, + "allister_elite": { + "encounter": { + "1": "黑暗降臨...你準備好面對你的恐懼了嗎?", + "2": "讓我們看看你能否應對我所操控的黑暗。" + }, + "victory": { + "1": "你已經驅散了陰影......\n暫時。幹得很好。", + "2": "你的光芒刺穿了我的黑暗。幹得好。" + }, + "defeat": { + "1": "黑影在輕語...\n你的力量還不夠。", + "2": "黑暗獲勝了......\n也許下次你會看到光明。" + } + }, + "raihan_elite": { + "encounter": { + "1": "風暴來臨!你能挺過這場戰鬥嗎!", + "2": "準備好面對風暴之眼!" + }, + "victory": { + "1": "你戰勝了風暴...難以置信!", + "2": "你完美地駕馭了風……打得好!" + }, + "defeat": { + "1": "又一場風暴襲來,又一場勝利!打得好!", + "2": "你被我的風暴捲入了!祝你下次好運!" + } + }, + "alder": { + "encounter": { + "1": "準備好和合眾最強的訓練家交手吧!" + }, + "victory": { + "1": "精彩!簡直就是天下無雙!" + }, + "defeat": { + "1": "戰鬥結束後,我的心像是吹過了溫和的風…\n$真是厲害!" + } + }, + "kieran": { + "encounter": { + "1": "我的努力讓我越來越強!\n$所以我不會輸。" + }, + "victory": { + "1": "不可能…\n$真是一場有趣又激動人心的戰鬥啊!" + }, + "defeat": { + "1": "哇塞,好一場戰鬥!\n$你得多練練了。" + } + }, + "rival": { + "encounter": { + "1": "@c{smile}嘿,我在找你呢!我知道你急著上路,\n但至少說個再見吧…$@c{smile_eclosed}所以你終於要開始追逐夢想了?\n我幾乎不敢相信。$@c{serious_smile_fists}來都來了,來一場對戰怎麼樣?\n畢竟,我想看看你是不是準備周全了。$@c{serious_mopen_fists}不要手下留情,我想讓你全力以赴!" + }, + "victory": { + "1": "@c{shock}哇…你徹底擊敗了我。\n你是真初學者嗎?$@c{smile}也許是靠點運氣,但是…\n誰知道,你可能真的能一路走下去。$順便說一下,博士讓我給你這些東西。它們看起來可牛了。$@c{serious_smile_fists}祝你好运!" + } + }, + "rival_female": { + "encounter": { + "1": "@c{smile_wave}你在這兒啊!我到處找你呢!$@c{angry_mopen}你忘了和你最好的朋友說再見了嗎?$@c{smile_ehalf}你要去追逐夢想了,對吧?\n從今天開始,是不是…$@c{smile}不管怎樣,忘了我的事就原諒你吧,\n但有個條件。@c{smile_wave_wink}你必須和我對戰!$@c{angry_mopen}全力以赴!\n你也不想讓你的冒險在開始之前就結束了,對吧?" + }, + "victory": { + "1": "@c{shock}你剛開始就已經這麼強了?!@d{96}$@c{angry}你是不是開了?$@c{smile_wave_wink}只是開個玩笑啦!@d{64} @c{smile_eclosed}我輸地心服口服了…\n我感覺你出去挺有天賦的。$@c{smile}順便說一下,博士想讓我給你一些東西。\n希望它們能幫上忙!$@c{smile_wave}像往常一樣盡力而為!\n我相信你!" + } + }, + "rival_2": { + "encounter": { + "1": "@c{smile}嘿,你也在這裡嗎?$@c{smile_eclosed}一路過關斬將,是吧?$@c{serious_mopen_fists}我知道看起來好像我尾隨著你來到這裡,\n怎麼可能啦。$@c{serious_smile_fists}說真的,自從你在老家打敗我後,\n我就一直很渴望再比一場。$我自己也進行了很多訓練,\n所以這次我肯定會好好打一場。$@c{serious_mopen_fists}不要手下留情,就像以前一樣!$讓我們開始吧!" + }, + "victory": { + "1": "@c{neutral_eclosed}哦。我過於自信了。$@c{smile}不過沒關係。我猜到可能會這樣。$@c{serious_mopen_fists}這只意味著我下次需要更努力!$$@c{smile}呃,不是特意幫你,我正好有多餘的這個,\n我覺得你可能想要。$$@c{serious_smile_fists}不過這次之後別指望再有了!$我不能一直給我的對手優勢。$@c{smile}反正,保重!" + } + }, + "rival_2_female": { + "encounter": { + "1": "@c{smile_wave}哦,真巧,在這裡遇見你。\n看來你還沒輸過嘛。@c{angry_mopen}哈……好傢伙!$@c{angry_mopen}我知道你在想什麼,\n不,我才不會跟蹤你什麼呢。 @c{smile_eclosed}我只是碰巧在附近。$@c{smile_ehalf}我為你感到高興,但我只想讓你知道\n有時輸了是可以接受的。$@c{smile}我們從錯誤中學到的東西\n往往比我們一直成功時學到的還要多。$@c{angry_mopen}無論如何,我為了我們的複賽已經努力訓練了\n所以你最好全力以赴!" + }, + "victory": { + "1": "@c{neutral}我……沒打算會輸來著……$@c{smile}嗷……好吧。看來我要再更加努力訓練了!$@c{smile_wave}我還給你帶了個這個$@c{smile_wave_wink}不用謝我哦~.$@c{angry_mopen}不過,這是最後一個啦!\n 你可別想再從我這賺小便宜了~$@c{smile_wave}要保重哦!" + }, + "defeat": { + "1": "輸了有時候也不要緊的…" + } + }, + "rival_3": { + "encounter": { + "1": "@c{smile}嘿,看看這是誰!好久不見啊。$@c{neutral}你……還是沒輸過?哈…$@c{neutral_eclosed}這有點……不太對勁。$沒有你一起,回家的感覺有很不一樣。$@c{serious}雖然我知道這挺別扭的,但我就直說了。$@c{neutral_eclosed}我覺得你有點兒難以理解。$@c{serious}沒有人能夠戰無不勝。$失敗乃成功之母。$@c{neutral_eclosed}你已經贏得了夠好的成績,\n但前面道阻且長,只會愈發艱難。 @c{neutral}你做好準備了沒?$@c{serious_mopen_fists}如果做好了,證明給我看吧。" + }, + "victory": { + "1": "@c{angry_mhalf}這太離譜了……我幾乎從沒停下訓練……$我們之間的差距怎麼還是這麼大?" + } + }, + "rival_3_female": { + "encounter": { + "1": "@c{smile_wave}好久不見!還沒輸過,對吧。$@c{angry}我覺得你點煩了。@c{smile_wave_wink}開玩笑啦!$@c{smile_ehalf}但說真的,你現在不想家嗎?\n 不想…我嗎?$我……我的意思是,我們真的很想你。$@c{smile_eclosed}我支持你的一切,包括你的夢想。\n但現實就是你早晚會經歷失敗。$@c{smile}當你失敗的時候,我想像往常一樣陪在你身邊。$@c{angry_mopen}現在,給你看看我變得多強了吧!" + }, + "victory": { + "1": "@c{shock}都這樣了……還是不夠嗎?$這樣下去,你就永遠不會回來了……" + }, + "defeat": { + "1": "你盡力了,現在讓我們回家吧。" + } + }, + "rival_4": { + "encounter": { + "1": "@c{neutral}嘿。$我不會對你說什麼拐彎抹角的客套話。$@c{neutral_eclosed}我來,就是為了贏,簡單明了。$@c{serious_mhalf_fists}我將所有時間都投入到訓練中,\n掌握了如何發揮我的潛力。$@c{smile}當你削減掉不必要的睡眠和社交後,\n你會得到很多額外的時間。$@c{serious_mopen_fists}但在我獲勝之前,這些都不重要了。$@c{neutral_eclosed}我甚至已經到達了戰無不敗的境地。$@c{smile_eclosed}我覺得你的思路倒是也沒毛病。$@c{angry_mhalf}失敗是屬於弱者的,\n我已經不再軟弱了。$@c{serious_mopen_fists}準備好吧。" + }, + "victory": { + "1": "@c{neutral}你…@d{64} 你是人嗎?" + } + }, + "rival_4_female": { + "encounter": { + "1": "@c{neutral}是我哦!沒又把我忘了吧……是嗎?$@c{smile}你應該為自己走了這麼遠感到驕傲。恭喜你!$但看來你的旅程到此為止了。$@c{smile_eclosed}你喚醒了我體內一些我從未有過的東西。\n就像我現在滿腦子除了訓練還是訓練。$@c{smile_ehalf}我幾乎已經沒空吃飯睡覺了,\n我沒日沒夜訓練我的寶可夢,每次都能變得更強。$@c{neutral}事實上,我……幾乎不認識自己了。$現在,我終於達到了巔峰。\n我感覺我已經戰無不勝了。$而且你知道嗎?這一切都是因為你。$@c{smile_ehalf}我不知道到底是該感謝你還是恨你。$@c{angry_mopen}做好準備…" + }, + "victory": { + "1": "@c{neutral}你…@d{64} 你是人嗎?" + }, + "defeat": { + "1": "@c{smile}你應該為自己走了這麼遠感到驕傲。" + } + }, + "rival_5": { + "encounter": { + "1": "@c{neutral}…" + }, + "victory": { + "1": "@c{neutral}…" + } + }, + "rival_5_female": { + "encounter": { + "1": "@c{neutral}…" + }, + "victory": { + "1": "@c{neutral}…" + }, + "defeat": { + "1": "$@c{smile_ehalf}…" + } + }, + "rival_6": { + "encounter": { + "1": "@c{smile_eclosed}又見面了。$@c{neutral}我花了點時間思考反思\n有理由說明為什麼這一切都顯得如此奇妙。$@c{neutral_eclosed}你所追逐的夢想,我想擊敗你的決心…$這都是某種龐大使命的一部分。$@c{serious}這不僅僅是關於我和你… 而是關於這個世界, @c{serious_mhalf_fists}我的使命就是將你推向極限。$@c{neutral_eclosed}我是否達成了那個使命,我說不上來,但我已盡我所能。$@c{neutral}我們最終到達的這個地方看起來很可怕\n 然而不知何故,我心中毫無畏懼,好像我早就來過這裡。$@c{serious_mhalf_fists}你也有同樣的感覺,對吧?$@c{serious}……這裡好像有什麼東西在呼喚我。\n這是世界早已記錄的一切。$那些我們經歷過的時光,那些記憶猶新的過去,\n其實只是遙遠的回憶。$@c{neutral_eclosed}誰能保證它們是否真的發生過。$@c{serious_mopen_fists}你必須繼續前進,不然的話,這一切將永無止境。\n這件事而只有你能辦成。$@c{serious_smile_fists}我不清楚這一切意味著什麼,但我知道……$@c{serious_mopen_fists}如果現在你不能就此擊敗我,\n你將毫無機會可言。" + }, + "victory": { + "1": "@c{smile_eclosed}看來我的使命在這裡已經完成了。\n我想讓你答應我一件事。$@c{smile}在你拯救世界之後,要回家。" + } + }, + "rival_6_female": { + "encounter": { + "1": "@c{smile_ehalf}又只有我們兩個人了。$@c{smile_eclosed}你知道嗎,我在心裡想啊想,\n想了好久……$@c{smile_ehalf}這一切背後是有什麼原因嗎,\n為什麼一切現在看起來都這麼奇怪……$@c{smile}你有你的夢想,而我內心有這個抱負……$我不禁感覺這一切背後有一個更龐大的力量,$掌控者我們所做的一切,你和我之間。$@c{smile_eclosed}我想我注定要推動你……到你的極限。$@c{smile_ehalf}我不清楚我是否一直做得很好,\n但到現在為止,我已經盡力了。$這個奇怪而可怕的地方……\n一切看起來都那麼清晰……$這是世界早已記錄的一切。$@c{smile_eclosed}我好像記不清我們一起度過的日子了。$@c{smile_ehalf}那些回憶到底是真的嗎?\n怎麼感覺這麼久遠……$@c{angry_mopen}你得繼續前進,不然的話,這一切將永無止境。\n你是唯一能做到這件事的。$@c{smile_ehalf}我……不知道這一切意味著什麼……\n但我明白$@c{neutral}如果你現在不能就此擊敗我,\n你將毫無機會可言。" + }, + "victory": { + "1": "@c{smile_ehalf}我……\n我想我完成了我的使命……$@c{smile_eclosed}答應我……在你拯救世界之後\n……要……平安到家。$@c{smile_ehalf}……謝謝你。" + } + } +} \ No newline at end of file diff --git a/src/locales/zh_TW/dialogue.ts b/src/locales/zh_TW/dialogue.ts deleted file mode 100644 index 06ccc745a49..00000000000 --- a/src/locales/zh_TW/dialogue.ts +++ /dev/null @@ -1,2702 +0,0 @@ -import {DialogueTranslationEntries, SimpleTranslationEntries} from "#app/interfaces/locales"; - -// Dialogue of the NPCs in the game when the player character is male (or unset) -export const PGMdialogue: DialogueTranslationEntries = { - "youngster": { - "encounter": { - 1: "嘿,想來對戰嗎?", - 2: "你也是新人訓練師嗎?", - 3: "嘿,我之前沒見過你。我們來對戰吧!", - 4: "我剛輸了,所以我正在尋找更多的寶可夢。$等等!你看起來很弱!\n來吧,我們對戰吧!", - 5: "我們見過面嗎?我記不太清了。$嗯,不管怎樣,很高興見到你!", - 6: "好的!我們上吧!", - 7: "好的!我來啦!我會向你展示我的實力!", - 8: "嚯嚯嚯...我會向你展示我的寶可夢有多厲害!", - 9: "不要浪費時間打招呼。你準備好了就放馬過來!", - 10: "別掉以輕心,$否則你可能會被小朋友打到哭鼻子哦。", - 11: "我精心培養了我的寶可夢。不許你傷害它們!", - 12: "恭喜你成功了!從這以後可不輕鬆哦。", - 13: "戰鬥永無止境!歡迎來到沒有盡頭的世界!", - }, - "victory": { - 1: "哇!你很強!", - 2: "我根本沒機會贏,對吧?", - 3: "我會等長大了再來打敗你!", - 4: "呃。我沒有更多寶可夢了。", - 5: "不可能…不可能!我怎麼可能又輸了…", - 6: "不!我輸了!", - 7: "哇!你真是太不可思議了!我既驚訝又欽佩!", - 8: "這怎麼…怎麼可能…$明明我和我的寶可夢是最強大的…", - 9: "下次我不會輸了!我們找時間再對戰吧!", - 10: "天哪!你看不出我還只是個小孩子嗎!$你那樣全力以赴太賴了!", - 11: "你的寶可夢更棒啊!和我交換吧!", - 12: "我之前有點上頭,我說了什麼來著?", - 13: "啊哈哈!就是這樣!$對!你已經熟悉這個世界了!", - } - }, - "lass": { - "encounter": { - 1: "我們來對戰吧,好嗎?", - 2: "你看起來像是個新人訓練師。我們來戰鬥吧!", - 3: "我不認識你。來對戰怎麼樣?", - 4: "讓我們來進行一場有趣的寶可夢對戰吧!", - 5: "我會向你展示如何真正使用寶可夢!", - 6: "一場認真的對戰從始於認真的開場白!$你確定你準備好了嗎?", - 7: "花無重開日,人無再少年。$你在對戰中只有一次機會。$很快,你就只能活在回憶中了。", - 8: "你最好對我手下留情,好嗎?$當然我會認真對戰的!", - 9: "學校很無聊,我無事可做。$*哈欠*…我只是來對戰打發時間。", - }, - "victory": { - 1: "那真是令人印象深刻!我還有很多要學習。", - 2: "我沒想到你會這麼輕易地打敗我…", - 3: "我希望有一天,我們能再進行一場對戰。", - 4: "那真是場非常有趣的對戰!$你讓我精疲力盡了…", - 5: "你給我上了一課!你真是太棒了!", - 6: "說真的,我輸了。$這,怎麼說,真的好難過,但你也真的很厲害。", - 7: "我不需要像這樣的記憶。刪除記憶中…", - 8: "嘿!我告訴過你要對我手下留情!$不過,當你認真的時候,你真的很酷。", - 9: "實際上,我開始厭倦對戰了…$一定有新的事情可以做…", - } - }, - "breeder": { - "encounter": { - 1: "聽話的寶可夢,自私的寶可夢…$寶可夢有獨特的性格呢。", - 2: "儘管我出生貧寒,但我的寶可夢培養的很好。", - 3: "嗯,你有沒有管教你的寶可夢?$過度溺愛是不好的。", - }, - "victory": { - 1: "對每個寶可夢因材施教是很重要的。", - 2: "不像一無是處的我…這些寶可夢都很優秀。", - 3: "過度的讚美會寵壞寶可夢和人。", - }, - "defeat": { - 1: "即使輸了,也不應該對你的寶可夢發火。", - 2: "相當好的寶可夢,對吧?我很會養東西。", - 3: "無論你多麼愛你的寶可夢,$你仍要在它沒做好時管教它們。", - } - }, - "breeder_female": { - "encounter": { - 1: "寶可夢永遠不會背叛你。$它們會回報你對它們的愛。", - 2: "要我教教你訓練優秀寶可夢的技巧嗎?", - 3: "特別的寶可夢有特別的培育技巧。", - }, - "victory": { - 1: "呃…事情不應該是這樣的。$我是不是用錯了能量方塊?", - 2: "這怎麼會發生在我的寶可夢身上…$你給你的寶可夢餵了什麼?", - 3: "如果我輸了,我告訴你我只是在消磨時間。$你根本不會傷害到我的自尊心。", - }, - "defeat": { - 1: "這證明了我的寶可夢已經接受了我的愛。", - 2: "訓出好寶可夢的真正技巧是捉到好的寶可夢。", - 3: "寶可夢的強弱取決於你的飼養方式。", - } - }, - "fisherman": { - "encounter": { - 1: "啊!你讓我錯過了一次咬鉤!$你打算怎麼辦?", - 2: "走開!你嚇跑了寶可夢!", - 3: "讓我看看你能否贏得勝利!", - }, - "victory": { - 1: "算了吧。", - 2: "下一次,我將捲土重來,凱旋而歸!", - 3: "我想這次我低估了海流。", - }, - }, - "fisherman_female": { - "encounter": { - 1: "哇!我釣到了一條大魚!", - 2: "線已收好,準備提竿!", - 3: "準備製造波浪!", - }, - "victory": { - 1: "我會帶著更強大的魚鉤回來。", - 2: "下次我會贏得勝利。", - 3: "我只是在為回歸磨利我的魚鉤!", - }, - }, - "swimmer": { - "encounter": { - 1: "是時候潛水了!", - 2: "讓我們一起乘風破浪,贏得勝利!", - 3: "該一鳴驚人了!", - }, - "victory": { - 1: "沉浸在失敗中!", - 2: "失敗的波浪!", - 3: "後浪死在沙灘上,我猜。", - }, - }, - "backpacker": { - "encounter": { - 1: "收拾行李,開始遊戲!", - 2: "讓我看看你是否能跟上!", - 3: "全副武裝,挑戰者!", - 4: "我花了20年時間試圖找到自己……但我在哪裡?", - }, - "victory": { - 1: "這次絆倒了!", - 2: "哦,我覺得我迷路了。", - 3: "死路!", - 4: "等一下!嘿!你不知道我是誰嗎?", - }, - }, - "ace_trainer": { - "encounter": { - 1: "你看起來挺自信的。", - 2: "你的寶可夢…… 讓我看看……", - 3: "因為我是王牌訓練師,人們認為我很強。", - 4: "你知道成為王牌訓練師需要什麼嗎?", - }, - "victory": { - 1: "是的…… 你的寶可夢很棒……", - 2: "什麼?!我是戰鬥天才啊!", - 3: "理所應當,你才是主角!", - 4: "好好好!你可以成為王牌訓練師!", - }, - "defeat": { - 1: "我將把我的身體和靈魂全都奉獻給寶可夢對戰!", - 2: "一切都在我的預料之中… \n沒有什麼好驚訝的…", - 3: "我覺得我長大後有點玻璃心,$你太壓力我我會垮的……", - 4: "我當然很強大,不會輸。$而且重要的是我要優雅地贏。", - } - }, - "parasol_lady": { - "encounter": { - 1: "是時候用優雅和從容來為戰鬥添彩了!", - }, - "victory": { - 1: "我的優雅依然完好無損!", - } - }, - "twins": { - "encounter": { - 1: "準備好囉,因為我們聯手,\n麻煩雙倍!", - 2: "兩顆心,一條繩$讓我們看看你能否跟上我們雙胞胎的力量!", - 3: "希望你準備好了面對雙倍的麻煩,$因為我們即將燃起來啦!", - }, - "victory": { - 1: "雖然我們在這一輪輸了,$但我們的羈絆依然堅不可摧!", - 2: "我們的雙胞胎精神,才不會就此熄滅。", - 3: "我們會作為充滿活力的二人組,$捲土重來,變得更強!", - }, - "defeat": { - 1: "雙胞胎的力量至高無上!", - 2: "兩顆心,一起贏!", - 3: "笑容成雙,共舞成雙!", - } - }, - "cyclist": { - "encounter": { - 1: "準備好在我後面吃土吧!", - 2: "挑戰者,準備好!我要把你打得落花流水!", - 3: "全速前進,讓我看看你能不能跟得上!", - }, - "victory": { - 1: "輪子可能不轉了,但我的決心沒有停下。", - 2: "被超越了!", - 3: "通往勝利的道路還有許多曲折等待探索。", - }, - }, - "black_belt": { - "encounter": { - 1: "我讚揚你挑戰我的勇氣!$因為我是踢力最強的人!", - 2: "哦,我明白了。你想被切成碎片嗎?$或者你更喜歡當個沙袋?", - }, - "victory": { - 1: "哦。是寶可夢在戰鬥。$我強大的踢擊一點忙都沒幫上。", - 2: "嗯…如果我無論如何都會輸,我希望能被徹底打敗。", - }, - }, - "battle_girl": { - "encounter": { - 1: "你不必試圖勾引我。你可以輸給我。", - }, - "victory": { - 1: "很難說再見,但我們快沒時間了……", - }, - }, - "hiker": { - "encounter": { - 1: "人到中年後,我的身體和我爬過的山一樣強壯!", - 2: "我從父母那裡遺傳了這副魁梧的身材…$就像一座活生生的山脈…", - }, - "victory": { - 1: "至少在BMI方面我不能輸!", - 2: "這還不夠……永遠不夠。$我的壞膽固醇還不夠高……", - }, - }, - "ranger": { - "encounter": { - 1: "當我身處大自然中,其他事情都不重要了。", - 2: "如果我生活中沒有大自然,有時就會突然感到焦慮。", - }, - "victory": { - 1: "無論我是贏是輸,\n對廣闊的大自然來說並不重要……", - 2: "與城市生活的窒息感相比,\n這種事情微不足道。", - }, - "defeat": { - 1: "我贏了。但與浩瀚的大自然相比,\n勝利算不了什麼…", - 2: "與我的焦慮症相比,我覺得你也不會怎樣…", - } - }, - "scientist": { - "encounter": { - 1: "我的研究將引導這個世界走向和平與歡樂。", - }, - "victory": { - 1: "我是個天才…我不應該輸給你這樣的人…", - }, - }, - "school_kid": { - "encounter": { - 1: "……嘿嘿。我對計算和分析很有信心。", - 2: "我正在盡可能地積累經驗,$因為我希望有一天能成為道館館主。", - }, - "victory": { - 1: "哦…計算和分析也許和個例不太匹配呀…", - 2: "我想,即使是艱難困苦的經歷,也有存在的意義。", - } - }, - "artist": { - "encounter": { - 1: "我以前很受歡迎,但現在已經徹底過氣了。", - }, - "victory": { - 1: "隨著時代的變遷,價值觀也在變化。$我意識到這一點已經太晚了。", - }, - }, - "guitarist": { - "encounter": { - 1: "當我彈奏著走向勝利的旋律時,$準備好感受失敗的節奏吧!", - }, - "victory": { - 1: "暫時沉默了,但我不屈的旋律將繼續演奏。", - }, - }, - "worker": { - "encounter": { - 1: "人們總誤解我,這讓我很煩。$我比大家想象的要乾淨得多。", - }, - "victory": { - 1: "我真的不想曬傷皮膚,所以我想在陰涼處工作。", - }, - }, - "worker_female": { - "encounter": { - 1: "人們總是誤解我,這讓我很煩。 $我比大家想象的要乾淨得多。", - }, - "victory": { - 1: "我真的不想曬傷皮膚,\n所以我想在陰涼處工作。", - }, - "defeat": { - 1: "我的身體和心靈並不總同步。", - } - }, - "worker_double": { - "encounter": { - 1: "你會知道我們怎麼擊敗你的。我們在工地訓練過!", - }, - "victory": { - 1: "真奇怪…怎麼會這樣…我不應該被打敗的。", - }, - }, - "hex_maniac": { - "encounter": { - 1: "我通常只聽古典音樂,但如果我輸了,$我想我應該試試新時代的音樂!", - 2: "我的每一滴眼淚都讓我變得更加堅強。", - }, - "victory": { - 1: "樂壇新時代的曙光就此出現了嗎?", - 2: "現在我變得更強了。我隨著他人怨恨而成長。", - }, - "defeat": { - 1: "“新時代”指的是二十世紀的古典作曲家,對吧?", - 2: "不要糾結於悲傷或沮喪。$你可以用悲憤來激勵自己。", - } - }, - "psychic": { - "encounter": { - 1: "嘿!集中!", - }, - "victory": { - 1: "呃呃呃!", - }, - }, - "officer": { - "encounter": { - 1: "準備好,因為正義即將得到伸張!", - 2: "準備好維護法律,在戰場上伸張正義!", - }, - "victory": { - 1: "正義的分量比以往還要沉重……", - 2: "失敗的陰影,在警局中徘徊。", - } - }, - "beauty": { - "encounter": { - 1: "我最後的戰鬥…我就是這麼看待這場對戰的…", - }, - "victory": { - 1: "很有趣…有時間再來一場最後的戰鬥…", - }, - }, - "baker": { - "encounter": { - 1: "希望你準備好品嚐失敗的滋味!", - }, - "victory": { - 1: "我會捲土重來的。", - }, - }, - "biker": { - "encounter": { - 1: "是時候加速,把你甩在後面了!", - }, - "victory": { - 1: "我會為下一場比賽調整狀態。", - }, - }, - "firebreather": { - "encounter": { - 1: "我的火焰會吞噬你!", - 2: "我的靈魂在燃燒,我要讓你看看它有多滾燙!", - 3: "快來看看吧!" - }, - "victory": { - 1: "我燃成灰了…", - 2: "哟! 好燙!", - 3: "嗷! 我的鼻尖燒焦了!" - }, - }, - "sailor": { - "encounter": { - 1: "夥計,如果你輸了,你就得挨板子!", - 2: "來吧!這關係到我作為水手的尊嚴!", - 3: "你好啊!你暈船麼?" - }, - "victory": { - 1: "啊,被孩子打敗了。", - 2: "你的精神讓我沉淪!", - 3: "好像是我暈船了…" - }, - }, - "archer": { - "encounter": { - 1: "Before you go any further, let's see how you far against us, Team Rocket!", - 2: "I have received reports that your skills are not insignificant. Let's see if they are true.", - 3: "I am Archer, an Admin of Team Rocket. And I do not go easy on enemies of our organization." - }, - "victory": { - 1: "What a blunder!", - 2: "With my current skills, I was not up to the task after all.", - 3: "F-forgive me, Giovanni... For me to be defeated by a mere trainer..." - }, - }, - "ariana": { - "encounter": { - 1: `Hold it right there! We can't someone on the loose." - $It's harmful to Team Rocket's pride, you see.`, - 2: `I don't know or care if what I'm doing is right or wrong... - $I just put my faith in Giovanni and do as I am told`, - 3: "Your trip ends here. I'm going to take you down!" - }, - "victory": { - 1: `Tch, you really are strong. It's too bad. - $If you were to join Team Rocket, you could become an Executive.`, - 2: "I... I'm shattered...", - 3: "Aaaieeeee! This can't be happening! I fought hard, but I still lost…" - }, - }, - "proton": { - "encounter": { - 1: "What do you want? If you interrupt our work, don't expect any mercy!", - 2: `What do we have here? I am often labeled as the scariest and cruelest guy in Team Rocket… - $I strongly urge you not to interfere with our business!`, - 3: "I am Proton, an Admin of Team Rocket. I am here to put an end to your meddling!" - }, - "victory": { - 1: "The fortress came down!", - 2: "You may have won this time… But all you did was make Team Rocket's wrath grow…", - 3: "I am defeated… But I will not forget this!" - }, - }, - - "petrel": { - "encounter": { - 1: `Muhahaha, we've been waiting for you. Me? You don't know who I am? It is me, Giovanni. - $The majestic Giovanni himself! Wahahaha! …Huh? I don't sound anything like Giovanni? - $I don't even look like Giovanni? How come? I've worked so hard to mimic him!`, - 2: "I am Petrel, an Admin of Team Rocket. I will not allow you to interfere with our plans!", - 3: "Rocket Executive Petrel will deal with this intruder!" - }, - "victory": { - 1: "OK, OK. I'll tell you where he is.", - 2: "I… I couldn't do a thing… Giovanni, please forgive me…", - 3: "No, I can't let this affect me. I have to inform the others…" - }, - }, - "tabitha": { - "encounter": { - 1: "Hehehe! So you've come all the way here! But you're too late!", - 2: `Hehehe... Got here already, did you? We underestimated you! But this is it! - $I'm a cut above the Grunts you've seen so far. I'm not stalling for time. - $I'm going to pulverize you!`, - 3: "I'm going to give you a little taste of pain! Resign yourself to it!" - }, - "victory": { - 1: `Hehehe! You might have beaten me, but you don't stand a chance against the Boss! - $If you get lost now, you won't have to face a sound whipping!`, - 2: "Hehehe... So, I lost, too...", - 3: "Ahya! How could this be? For an Admin like me to lose to some random trainer..." - }, - }, - "courtney": { - "encounter": { - 1: "The thing...The thing that you hold...That is what... That's what we of Team Magma seek...", - 2: "... Well then...Deleting...", - 3: "...Ha. ...Analyzing... ...Hah♪" - }, - "victory": { - 1: "... ...Change...the world.", - 2: `As anticipated. Unanticipated. You. Target lock...completed. - $Commencing...experiment. You. Forever. Aha... ♪`, - 3: "...Again? That's unanticipated. ...I knew it. You...are interesting! ...Haha. ♪" - }, - }, - "shelly": { - "encounter": { - 1: `Ahahahaha! You're going to meddle in Team Aqua's affairs? - $You're either absolutely fearless, simply ignorant, or both! - $You're so cute, you're disgusting! I'll put you down`, - 2: "What's this? Who's this spoiled brat?", - 3: "Cool your jets. Be patient. I'll crush you shortly." - }, - "victory": { - 1: `Ahahahaha! We got meddled with unexpectedly! We're out of options. - $We'll have to pull out. But this isn't the last you'll see of Team Aqua! - $We have other plans! Don't you forget it!`, - 2: "Ahhh?! Did I go too easy on you?!", - 3: `Uh. Are you telling me you've upped your game even more during the fight? - $You're a brat with a bright future… My Pokémon and I don't have any strength left to fight… - $Go on… Go and be destroyed by Archie.` - }, - }, - "matt": { - "encounter": { - 1: "Hoohahaha! What, you got a screw loose or something? Look at you, little Makuhita person!", - 2: "Oho! You! You're that funny kid!", - 3: "What are you doing here? Did you follow us?" - }, - "victory": { - 1: "All right then, until the Boss has time for you, I'll be your opponent!", - 2: `I can feel it! I can feel it, all right! The strength coming offa you! - $More! I still want more! But looks like we're outta time...`, - 3: "That was fun! I knew you'd show me a good time! I look forward to facing you again someday!" - }, - }, - "mars": { - "encounter": { - 1: "I'm Mars, one of Team Galactic's top Commanders.", - 2: "Team Galactic's vision for the future is unwavering. Opposition will be crushed without mercy!", - 3: "Feeling nervous? You should be!" - }, - "victory": { - 1: "This can't be happening! How did I lose?!", - 2: "You have some skill, I'll give you that.", - 3: "Defeated... This was a costly mistake." - } - }, - "jupiter": { - "encounter": { - 1: "Jupiter, Commander of Team Galactic, at your service.", - 2: "Resistance is futile. Team Galactic will prevail!", - 3: "You're trembling... scared already?" - }, - "victory": { - 1: "No way... I lost?!", - 2: "Impressive, you've got guts!", - 3: "Losing like this... How embarrassing." - } - }, - "saturn": { - "encounter": { - 1: "I am Saturn, Commander of Team Galactic.", - 2: "Our mission is absolute. Any hindrance will be obliterated!", - 3: "Is that fear I see in your eyes?" - }, - "victory": { - 1: "Impossible... Defeated by you?!", - 2: "You have proven yourself a worthy adversary.", - 3: "Bestowed in defeat... This is unacceptable." - }}, - "zinzolin": { - "encounter": { - 1: "You could become a threat to Team Plasma, so we will eliminate you here and now!", - 2: "Oh, for crying out loud... I didn't expect to have to battle in this freezing cold!", - 3: "You're an impressive Trainer to have made it this far. But it ends here." - }, - "victory": { - 1: "Ghetsis... I have failed you...", - 2: "It's bitter cold. I'm shivering. I'm suffering. Yet, I still stand victorious.", - 3: "Hmph. You're a smarter Trainer than I expected, but not smart enough." - } - }, - "rood": { - "encounter": { - 1: "You are a threat to Team Plasma. We cannot let you walk away from here and now!", - 2: "Oh, this icy wind... I never thought I'd have to fight here!", - 3: "You are a remarkable Trainer to have made it this far. But this is where it ends." - }, - "victory": { - 1: "Ghetsis... I have failed my mission...", - 2: "The cold is piercing. I'm shivering. I'm suffering. Yet, I have triumphed.", - 3: "Hm. You are a talented Trainer, but unfortunately not talented enough." - } - }, - "xerosic": { - "encounter": { - 1: "Ah ha ha! It would be my pleasure. Come on, little Trainer! Let's see what you've got!", - 2: "Hmm... You're more powerful than you look. I wonder how much energy there is inside you.", - 3: "I've been waiting for you! I need to do a little research on you! Come, let us begin!" - }, - "victory": { - 1: "Ah, you're quite strong. Oh yes—very strong, indeed.", - 2: "Ding-ding-ding! You did it! To the victor go the spoils!", - 3: "Wonderful! Amazing! You have tremendous skill and bravery!" - } - }, - "bryony": { - "encounter": { - 1: "I am Bryony, and it would be my pleasure to battle you. Show me what you've got.", - 2: "Impressive... You're more powerful than you appear. Let's see the true extent of your energy.", - 3: "I've anticipated your arrival. It's time for a little test. Shall we begin?" - }, - "victory": { - 1: "You're quite strong. Oh yes—very strong, indeed.", - 2: "Ding-ding-ding! You've done well. Victory is yours.", - 3: "Wonderful! Remarkable! Your skill and bravery are commendable." - } - }, - "rocket_grunt": { - "encounter": { - 1: "Prepare for trouble!", - 2: "We're pulling a big job here! Get lost, kid!", - 3: "Hand over your Pokémon, or face the wrath of Team Rocket!", - 4: "You're about to experience the true terror of Team Rocket!", - 5: "Hey, kid! Me am a Team Rocket member kind of guy!" //Use of wrong grammar is deliberate - }, - "victory": { - 1: "Team Rocket blasting off again!", - 2: "Oh no! I dropped the Lift Key!", - 3: "I blew it!", - 4: "My associates won't stand for this!", - 5: "You say what? Team Rocket bye-bye a go-go? Broken it is says you?" //Use of wrong grammar is deliberate. - }, - }, - "magma_grunt": { - "encounter": { - 1: "If you get in the way of Team Magma, don’t expect any mercy!", - 2: "You'd better not interfere with our plans! We're making the world a better place!", - 3: "You're in the way! Team Magma has no time for kids like you!", - 4: "I hope you brought marshmallows because things are about to heat up!", - 5: "We're going to use the power of a volcano! It's gonna be... explosive! Get it? Heh heh!" - }, - "victory": { - 1: "Huh? I lost?!", - 2: "I can't believe I lost! I even skipped lunch for this", - 3: "No way! You're just a kid!", - 4: "Urrrgh... I should've ducked into our hideout right away...", - 5: "You beat me... Do you think the boss will dock my pay for this?" - }, - }, - "aqua_grunt": { - "encounter": { - 1: "No one who crosses Team Aqua gets any mercy, not even kids!", - 2: "Grrr... You've got some nerve meddling with Team Aqua!", - 3: "You're about to get soaked! And not just from my water Pokémon!", - 4: "We, Team Aqua, exist for the good of all!", - 5: "Prepare to be washed away by the tides of my... uh, Pokémon! Yeah, my Pokémon!" - }, - "victory": { - 1: "You're kidding me!", - 2: "Arrgh, I didn't count on being meddled with by some meddling kid!", - 3: "I lost?! Guess I'll have to swim back to the hideout now...", - 4: "Oh, man, what a disaster... The boss is going to be furious...", - 5: "You beat me... Do you think the boss will make me walk the plank for this?" - }, - }, - "galactic_grunt": { - "encounter": { - 1: "Don't mess with Team Galactic!", - 2: "Witness the power of our technology and the future we envision!", - 3: "In the name of Team Galactic, I'll eliminate anyone who stands in our way!", - 4: "Get ready to lose!", - 5: "Hope you're ready for a cosmic beatdown!" - }, - "victory": { - 1: "Shut down...", - 2: "This setback means nothing in the grand scheme.", - 3: "Our plans are bigger than this defeat.", - 4: "How?!", - 5: "Note to self: practice Pokémon battling, ASAP." - }, - }, - "plasma_grunt": { - "encounter": { - 1: "We won't tolerate people who have different ideas!", - 2: "If I win against you, release your Pokémon!", - 3: "If you get in the way of Team Plasma, I'll take care of you!", - 4: "Team Plasma will liberate Pokémon from selfish humans like you!", - 5: "Our hairstyles are out of this world... but our battling skills? You'll find out soon enough." - }, - "victory": { - 1: "Plasmaaaaaaaaa!", - 2: "How could I lose...", - 3: "...What a weak Pokémon, I'll just have to go steal some better ones!", - 4: "Great plans are always interrupted.", - 5: "This is bad... Badbadbadbadbadbadbad! Bad for Team Plasma! Or Plasbad, for short!" - }, - }, - "flare_grunt": { - "encounter": { - 1: "Your Pokémon are no match for the elegance of Team Flare.", - 2: "Hope you brought your sunglasses, because things are about to get bright!", - 3: "Team Flare will cleanse the world of imperfection!", - 4: "Prepare to face the brilliance of Team Flare!", - 5: "Fashion is most important to us!" - }, - "victory": { - 1: "The future doesn't look bright for me.", - 2: "Perhaps there's more to battling than I thought. Back to the drawing board.", - 3: "Gahh?! I lost?!", - 4: "Even in defeat, Team Flare's elegance shines through.", - 5: "You may have beaten me, but when I lose, I go out in style!" - }, - }, - "rocket_boss_giovanni_1": { - "encounter": { - 1: "So! I must say, I am impressed you got here!" - }, - "victory": { - 1: "WHAT! This cannot be!" - }, - "defeat": { - 1: "Mark my words. Not being able to measure your own strength shows that you are still a child." - } - }, - "rocket_boss_giovanni_2": { - "encounter": { - 1: "My old associates need me... Are you going to get in my way?" - }, - "victory": { - 1: "How is this possible...?\nThe precious dream of Team Rocket has become little more than an illusion..." - }, - "defeat": { - 1: "Team Rocket will be reborn again, and I will rule the world!" - } - }, - "magma_boss_maxie_1": { - "encounter": { - 1: "I will bury you by my own hand. I hope you appreciate this honor!" - }, - "victory": { - 1: "Ugh! You are... quite capable...\nI fell behind, but only by an inch..." - }, - "defeat": { - 1: "Team Magma will prevail!" - } - }, - "magma_boss_maxie_2": { - "encounter": { - 1: "You are the final obstacle remaining between me and my goals.\nBrace yourself for my ultimate attack! Fuhahaha!" - }, - "victory": { - 1: "This... This is not.. Ngh..." - }, - "defeat": { - 1: "And now... I will transform this planet to a land ideal for humanity." - } - }, - "aqua_boss_archie_1": { - "encounter": { - 1: "I'm leader of Team Aqua, so I'm afraid it's the rope's end for you." - }, - "victory": { - 1: "Let's meet again somewhere. I'll be sure to remember that face." - }, - "defeat": { - 1: "Brilliant! My team won't hold back now!" - } - }, - "aqua_boss_archie_2": { - "encounter": { - 1: "I've been waiting so long for this day to come.\nThis is the true power of my team!" - }, - "victory": { - 1: "Like I figured..." - }, - "defeat": { - 1: "I'll return everything in this world to its original, pure state!!" - } - }, - "galactic_boss_cyrus_1": { - "encounter": { - 1: "You were compelled to come here by such vacuous sentimentality\nI will make you regret paying heed to your heart!" - }, - "victory": { - 1: "Interesting. And quite curious." - }, - "defeat": { - 1: "I will create my new world..." - } - }, - "galactic_boss_cyrus_2": { - "encounter": { - 1: "So we meet again. It seems our fates have become intertwined.\nBut here and now, I will finally break that bond!" - }, - "victory": { - 1: "How? How? HOW?!" - }, - "defeat": { - 1: "Farewell." - } - }, - "plasma_boss_ghetsis_1": { - "encounter": { - 1: "I won't allow anyone to stop me! No matter who does what!" - }, - "victory": { - 1: "How can this be? I'm the creator of Team Plasma! I'm perfect!" - }, - "defeat": { - 1: "I am the perfect ruler of a perfect new world! Mwa ha ha!" - } - }, - "plasma_boss_ghetsis_2": { - "encounter": { - 1: "Come now! I want to see your face at the moment you lose all hope!" - }, - "victory": { - 1: "My calculations... No! My careful schemes! The world should be mine!" - }, - "defeat": { - 1: "Kyurem! Use Absofusion!" - } - }, - "flare_boss_lysandre_1": { - "encounter": { - 1: "Do you want to stop me? Show me in battle." - }, - "victory": { - 1: "You are here to stop me. But I ask you to wait. " - }, - "defeat": { - 1: "Pokemon...Shall no longer exist." - } - }, - "flare_boss_lysandre_2": { - "encounter": { - 1: "The future you want, or the future I want... Let us see which one is more deserving, shall we?" - }, - "victory": { - 1: "Whaugh!" - }, - "defeat": { - 1: "Fools with no vision will continue to befoul this beautiful world." - } - }, - "brock": { - "encounter": { - 1: "我對岩石屬性寶可夢的專精會擊敗你!來吧!", - 2: "我磐石般的意志將壓倒你!", - 3: "讓我展示給你看看,我寶可夢真正的力量!", - }, - "victory": { - 1: "你寶可夢的力量戰勝了我堅如磐石的防禦!", - 2: "世界很大!很高興有機會和你戰鬥。", - 3: "也許我應該回去追尋我成為寶可夢飼養員的夢想……", - }, - "defeat": { - 1: "最好的進攻就是堅固的防守!$那是我做事的方式!", - 2: "下次來和我一起研究岩石屬性,$更好地了解如何與它們對戰!", - 3: "哈哈,我在各地的旅行有所回報了!", - } - }, - "misty": { - "encounter": { - 1: "我的戰策就是使用水屬性寶可夢全面進攻!", - 2: "嗨,我會讓你見識我的水屬性寶可夢的力量!", - 3: "我的夢想是踏上旅程,與強大的訓練師戰鬥……$你能滿足我嗎?", - }, - "victory": { - 1: "你真的很強……我承認,你有技術的……", - 2: "哼……你知道你只是運氣好,對吧?!", - 3: "哇,你太過分了!不敢相信你打敗我了!", - }, - "defeat": { - 1: "強大的小霞對你來說,太過分了嗎?", - 2: "我希望你看到了我寶可夢優雅的游泳技巧!", - 3: "你的寶可夢無法匹敵我的心腹和驕傲!", - } - }, - "lt_surge": { - "encounter": { - 1: "我的電屬性寶可夢在戰爭中救了我!$我來給你展示一下!", - 2: "立正!我要電到你投降!", - 3: "我會像對待敵軍一樣,狠狠電你!", - }, - "victory": { - 1: "哇!你的隊伍有真傢伙,小子!", - 2: "啊啊,你很強!連我的電擊技巧都輸給了你。", - 3: "這失敗真是把我給電麻了!", - }, - "defeat": { - 1: "哦耶!我的電屬性寶可夢是世界第一!", - 2: "哈哈哈!真是一場電動人心的戰鬥,小子!", - 3: "寶可夢對戰等於戰爭,$我向你展示了軍隊中的格鬥技巧!", - } - }, - "erika": { - "encounter": { - 1: "啊,這裡天氣真好…$哦,對戰?那好吧。", - 2: "我在寶可夢對戰上的造詣,$可以與我的插花技巧相媲美。", - 3: "哦,希望我寶可夢的宜人香氣\n不會再讓我睡著…", - 4: "看看花園裡的花朵,如此令人心曠神怡。", - }, - "victory": { - 1: "哦!我認輸啦~", - 2: "這場比賽非常愉快。", - 3: "啊,看來我輸了…", - 4: "哦,我的天哪。", - }, - "defeat": { - 1: "我怕我會打瞌睡…", - 2: "哦,我天。看來我的草屬性寶可夢擊敗了你。", - 3: "那場戰鬥是如此令人心曠神怡。", - 4: "哦…這就完啦?", - } - }, - "janine": { - "encounter": { - 1: "我正在掌握毒屬性攻擊的藝術。$今天我來和你過過招!", - 2: "父親相信我能獨當一面。$我來證明他說的對!", - 3: "我的忍術,僅次於我的父親!$你能跟的上嗎?", - }, - "victory": { - 1: "就算現在,我仍然需要繼續訓練…我明白了。", - 2: "你的戰鬥技巧,超過了我。", - 3: "我要好好努力提高我的技術。", - }, - "defeat": { - 1: "呵呵…毒液耗盡了你所有的力量。", - 2: "哈!你根本無法抵擋我卓越的忍技!", - 3: "我沒有辜負父親對我的信任。", - } - }, - "sabrina": { - "encounter": { - 1: "我的超能力預見了你的到來!", - 2: "我不喜歡戰鬥,但如果你想,$我會展示我的實力!", - 3: "我能感覺到你的雄心壯志。$我倒要看看你是不是虛有其表。", - }, - "victory": { - 1: "你的力量……遠遠超出了我的預知……", - 2: "我沒有準確預測到你的實力。", - 3: "即使我強大的超能力也無法感知到你這樣強大的人。", - }, - "defeat": { - 1: "這場勝利……和我看到的未來一樣啊!", - 2: "也許我預感到有強大實力的人,是另一個……", - 3: "在你奮不顧身投入戰鬥之前,\n磨練你的能力。$如果你這樣做,你才未來可期……", - } - }, - "blaine": { - "encounter": { - 1: "哈!希望你帶了燒傷治療藥!", - 2: "我火熱的寶可夢將所有挑戰者都焚燒殆盡!", - 3: "準備好玩火吧!", - }, - "victory": { - 1: "我已經焚燒殆盡了!甚至連灰燼都沒有留下!", - 2: "我沒有把火焰煽得足夠高嗎?", - 3: "我燃盡了……但這讓我進步的動力燃燒得更旺了!", - }, - "defeat": { - 1: "我的熊熊烈火無法被撲滅!", - 2: "我的寶可夢因這次勝利而變得更加強大!", - 3: "哈!我的激情燃得比你的更熱烈!", - } - }, - "giovanni": { - "encounter": { - 1: "我,火箭隊的領袖,\n會讓你的世界感受到痛苦!", - 2: "我在這裡的訓練在我再次面對老朋友之前至關重要。", - 3: "我認為你還沒有準備好迎接你即將經歷的失敗!", - }, - "victory": { - 1: "什麼!我輸了?! 我沒什麼可和你說的!", - 2: "哼……你永遠無法理解我希望實現的目標。", - 3: "這次失敗只是暫時的。$我將找準時機,讓火箭隊浴火重生。", - }, - "defeat": { - 1: "不知自己幾斤幾兩,\n說明你仍然只是一個孩子。", - 2: "不要再試圖干涉我。", - 3: "我希望你明白挑戰我是多麼愚蠢。", - } - }, - "roxanne": { - "encounter": { - 1: "您能否展示一下您是如何戰鬥的麼?", - 2: "你可以和更多訓練師戰鬥來學到很多東西。", - 3: "哦,被你抓到我正在用功了~$你想戰鬥嗎?", - }, - "victory": { - 1: "哦,看來我輸了。$我明白了。", - 2: "看來我在戰鬥方面還有更多東西要學。", - 3: "我會把今天在這裡學到的東西銘記於心。", - }, - "defeat": { - 1: "從我們的對戰中,我學到了很多。$希望你也是。", - 2: "我期待再次與你戰鬥。$希望你能運用在此學到的東西。", - 3: "我憑借我所學到的一切贏得了勝利。", - } - }, - "brawly": { - "encounter": { - 1: "哦,夥計,挑戰者!$讓我看看你的能耐!", - 2: "你看起來很厲害嘛。$來對戰吧!", - 3: "是時候掀起風暴了!$我們上吧!", - }, - "victory": { - 1: "哦哇,你把我沖走了!", - 2: "你駕馭了我的海浪,把我打敗了!", - 3: "我覺得我就像是在武鬥洞窟裡迷路了!", - }, - "defeat": { - 1: "哈哈,我駕馭了大浪!$有時間再挑戰我吧。", - 2: "再和我一起衝浪吧!", - 3: "就像潮水的漲落,\n我希望你也能再來挑戰我。", - } - }, - "wattson": { - "encounter": { - 1: "是時候被電擊了!$哈哈哈!", - 2: "我要讓火星子飛蹦!$哈哈哈!", - 3: "我希望你帶了麻痺藥!$哇哈哈哈!", - }, - "victory": { - 1: "看來我的電量用完了!$哇哈哈哈!", - 2: "你完全接地了是吧!$哇哈哈哈!", - 3: "謝謝你給我電了一下!$哇哈哈哈!", - }, - "defeat": { - 1: "電充充滿,有時間再挑戰我吧!$哇哈哈哈!", - 2: "我希望你覺得我們的戰鬥激情似電!$哇哈哈哈!", - 3: "你沒想到我贏了吧?$哇哈哈哈!", - } - }, - "flannery": { - "encounter": { - 1: "很高興見到你!等等,不對……$我要粉碎你!", - 2: "我才當道館主沒多久,\n但我會讓你灰飛煙滅!", - 3: "是時候展示爺爺教給我的招式了!來對戰吧!", - }, - "victory": { - 1: "你讓我想起了我的爺爺……$難怪我輸了。", - 2: "我是不是太努力了?$我應該放鬆,不能太上頭了。", - 3: "失敗才不會嗆到我。$是時候重新點燃訓練了!", - }, - "defeat": { - 1: "我希望我讓祖父感到驕傲了……$有時間我們再戰鬥吧。", - 2: "我……我簡直不敢相信我贏了!$按照自己的方式做事奏效了!", - 3: "早點用炙熱的招式再來交手吧!", - } - }, - "norman": { - "encounter": { - 1: "我沒想到你能一路來到這裡。$我們來對戰吧。", - 2: "作為道館主,我會盡一切努力贏得勝利。$我們開始吧!", - 3: "你最好全力以赴。$對戰的時候到了!", - }, - "victory": { - 1: "我輸給了你……?$但規則就是規則。", - 2: "難道我不該從城都搬家嗎……?", - 3: "我不敢相信。$這是一場好對戰。", - }, - "defeat": { - 1: "我們都盡力了。$希望我們不久之後能再對戰。", - 2: "你應該嘗試挑戰我的孩子。$可能會有一些收穫!", - 3: "謝謝你精彩的戰鬥。$下次好運。", - } - }, - "winona": { - "encounter": { - 1: "我一直在天空中翱翔尋找獵物…$而你就是我的目標!", - 2: "不管戰況如何,我都會和我的飛行寶可夢$以優雅的姿態獲勝。來戰鬥吧!", - 3: "我希望你不怕高。$我們一起升上高空吧!", - }, - "victory": { - 1: "你是我見過的第一位比我更有風度的訓練師。$打的非常出色。", - 2: "哦,我的飛行系寶可夢都已經墜落了!$好吧。", - 3: "儘管我倒下了,我的寶可夢將繼續翱翔!", - }, - "defeat": { - 1: "我與我的飛行系寶可夢,\n將永遠優雅地起舞!", - 2: "我希望你喜歡我們的演出。$我們優雅的舞蹈已經落幕。", - 3: "你願意再來觀看我們優雅的編舞嗎?", - } - }, - "tate": { - "encounter": { - 1: "嘿嘿嘿…$看到我沒和妹妹在一起,很驚訝麼?", - 2: "我可以讀懂你在想什麼…$你想要戰鬥!", - 3: "你如何擊敗一個…$讀懂你一舉一動的人?", - }, - "victory": { - 1: "贏不了啊…$我想小南了…", - 2: "你和寶可夢之間的聯繫比我們更強。", - 3: "如果我和小南聯手,我們會贏的。$我們可以了解彼此的想法!", - }, - "defeat": { - 1: "我和我的寶可夢無與倫比!", - 2: "如果你連我都打不過,\n你肯定也打不過小南。", - 3: "這多虧了我和小南的嚴格訓練。$我可以與寶可夢一心同體。", - } - }, - "liza": { - "encounter": { - 1: "呵呵呵…$看到我沒和哥哥一起,很驚訝嗎?", - 2: "我可以讀懂你渴望什麼…$你想戰鬥,不是嗎?", - 3: "你如何擊敗一個…$與寶可夢們一心同體的人?", - }, - "victory": { - 1: "贏不了啊…$我想小楓了…", - 2: "你和寶可夢之間的聯繫…$比我強。", - 3: "如果我和小楓在一起,我們會贏的。$我們甚至可以接上彼此的話!", - }, - "defeat": { - 1: "我和我的寶可夢勢不可擋。", - 2: "如果你連我都打不過,\n你肯定也打不過小楓。", - 3: "這多虧了我和小楓的嚴格訓練。$我可以與我的寶可夢一心同體。", - } - }, - "juan": { - "encounter": { - 1: "別害羞啊。$我們來戰鬥吧!", - 2: "啊哈哈哈,敬請期待\n我和水屬性寶可夢的盛大演出!", - 3: "我就是正在逼近的風暴!$你能經受住考驗嗎?", - 4: "請你見證我們的表演。$由我和寶可夢共同創造的宏偉水之幻境!", - }, - "victory": { - 1: "你可能是一個能挑戰米可利的天才!", - 2: "我專注於優雅,而你刻苦鍛鍊。$你能擊敗我是很正常的。", - 3: "啊哈哈哈!$好吧,這次你贏了。", - 4: "從你身上,我感受到了技巧的光輝,\n它將戰勝一切。", - }, - "defeat": { - 1: "寶可夢和我創造的水之幻境,讓我取得了勝利。", - 2: "啊哈哈哈,我贏了,你輸了。", - 3: "要我把我的服裝借給你嗎?\n可能能幫到你對戰啊!$啊哈哈哈,我開玩笑的!", - 4: "我是贏家!也就是說,你輸了。", - } - }, - "crasher_wake": { - "encounter": { - 1: "極限! 極限! 看好了!$極限假面…就此…登場!", - 2: "極限! 極限! 極限假面!", - 3: "我是滔滔巨浪,將你沖走!", - }, - "victory": { - 1: "我真是笑得合不攏嘴啊!$哈哈哈!那真是太有趣了!", - 2: "呼哇!結束收尾了!$我該怎麼說呢……$我還想再對戰!我還想再繼續戰鬥!", - 3: "啊啊啊啊啊!?", - }, - "defeat": { - 1: "耶!就是這樣!", - 2: "我贏了,但我還想要更多!\n我還想再更多地戰鬥!", - 3: "再見!", - } - }, - "falkner": { - "encounter": { - 1: "我將向你展示華麗的飛行寶可夢真正的力量!", - 2: "風啊,伴我同行!", - 3: "爸爸!我希望你能在空中注視著我的戰鬥!", - }, - "victory": { - 1: "明白了……我會禮貌地退場。", - 2: "輸了就是輸了。你確實很強大。", - 3: "…行吧! 嗯, 我輸了。", - }, - "defeat": { - 1: "爸爸!我用你珍愛的飛行寶可夢贏了……", - 2: "飛行系寶可夢才是最強的!", - 3: "感覺我正在追趕上我的父親!", - } - }, - "nessa": { - "encounter": { - 1: "無論你的小腦瓜子在搞什麼陰謀詭計,$我和我的搭檔都會確保它石沉大海。", - 2: "我來這裡可不是為了閒聊,\n而是為了贏!", - 3: "這是我的寶可夢給你的一點小禮物……\n我希望你能接受!", - }, - "victory": { - 1: "你和你的寶可夢太過分了……", - 2: "怎麼……?這怎麼可能?!", - 3: "我完全被沖走了!", - }, - "defeat": { - 1: "洶湧的海浪再次襲來!", - 2: "是時候乘風破浪,取得勝利了!", - 3: "誒嘿嘿!", - } - }, - "melony": { - "encounter": { - 1: "我不會手下留情!", - 2: "好吧,我想我們應該開始了。", - 3: "我會把你凍得結結實實的!", - }, - "victory": { - 1: "你……你可厲害了,是不是?", - 2: "如果你找到瑪瓜,一定要好好教訓他,好嗎?", - 3: "你的破冰方式有點過於直接了呢……", - }, - "defeat": { - 1: "現在你知道戰鬥有多殘酷了吧?", - 2: "嘿!看來我又贏了!", - 3: "你是在保留實力嗎?", - } - }, - "marlon": { - "encounter": { - 1: "你看起來很強!來吧!讓我們開始吧!", - 2: "我的強大像大海一樣無邊無際。$你會被我沖走,絕對的。", - 3: "哦豁,由我來面對你!這可不得了咯!", - }, - "victory": { - 1: "你太厲害了!\n你培養了一些非常強大的寶可夢啊,$你已經掌握了訓練師的精髓!", - 2: "你不僅僅是看起來,\n你是真的強,真的!$呃,我也被沖走了!", - 3: "你像兇猛的波浪一樣強壯!", - }, - "defeat": { - 1: "你很強,但這還不足以動搖大海,懂?", - 2: "嘻!看來我又贏了!", - 3: "甜蜜的勝利!", - } - }, - "shauntal": { - "encounter": { - 1: "打擾了。你是挑戰者,對嗎?$我是四天王的幽靈系寶可夢使用者,$婉龍,我將是你的對手。", - 2: "我非常喜歡描寫來到這裡的訓練師,\n以及他們訓練的寶可夢。$我可以用你和你的寶可夢作為主題嗎?", - 3: "每個與寶可夢相處的人都有故事要講。$接下來要講的故事是怎樣的呢?", - }, - "victory": { - 1: "哇。我驚呆了!", - 2: "對…對不起!我必須先向我的寶可夢道歉……$都是因為我讓你們有了不好的經歷,真的很抱歉!", - 3: "你要知道,我仍然是四天王之一!", - }, - "defeat": { - 1: "額呵呵。", - 2: "給了我下一部小說的絕佳素材!", - 3: "就這樣,又一篇故事來到尾聲……", - } - }, - "marshal": { - "encounter": { - 1: "我的師傅,阿戴克,\n看到了你作為訓練師的潛力,$對你很有興趣。$我要來考驗你——挖掘你力量的極限。\n丹田發力!", - 2: "勝利,決定性的勝利,\n正是我所求!挑戰者,我來了!", - 3: "在我的心中,我尋求著成為戰士的力量,\n克服自身的所有弱點!$以我的信念,取勝!", - }, - "victory": { - 1: "呼!幹得好!", - 2: "不要停止戰鬥,追求更高的目標!", - 3: "你和你寶可夢展現的力量\n給我留下了深刻的印象……", - }, - "defeat": { - 1: "嗯…", - 2: "這真是場好戰鬥。", - 3: "哈啊!哈啊!嗨呀啊!", - } - }, - "cheren": { - "encounter": { - 1: "你讓我想起了一位老朋友。$這讓我對這場寶可夢戰鬥感到興奮!", - 2: "不考慮清楚這一點,\n寶可夢對戰就沒有了意義。$這就是失去了和寶可夢一同戰鬥的意義。", - 3: "我的名字是黑連!我是道館館主,\n也是老師!$很高興認識你。", - }, - "victory": { - 1: "謝謝……我又能發現自己的不足了。", - 2: "謝謝…接近理想的道路…我好像隱約看到了。", - 3: "嗯……這值得思考。", - }, - "defeat": { - 1: "作為道館館主,我要成為你要跨越的壁壘!", - 2: "好吧!", - 3: "正因為有寶可夢,我們才能走到這裡。$為什麼寶可夢會幫助我們,\n這個恐怕不僅是寶可夢與訓練家…$而是生命與生命之間的問題。", - } - }, - "chili": { - "encounter": { - 1: "咿呀!是時候玩火了!!我是三兄弟中最強的!", - 2: "嗒噠!如火似焰的伯特——就是我\n——你接下來的對手!", - 3: "我將向你展示,\n我和我熾熱的火系寶可夢的能耐!", - }, - "victory": { - 1: "被你幹掉了。我……燃盡了……", - 2: "哇吼!你燃起來了!", - 3: "啊!被你幹碎了!", - }, - "defeat": { - 1: "我燃起來啦!和我玩兒,你就會被燙傷!", - 2: "你要是玩兒火,就會被燙傷!", - 3: "我說,拜託,\n你的對手是我,沒機會贏的!", - } - }, - "cilan": { - "encounter": { - 1: "無關個人情感…也不會有艱難的感受…$我和我的草屬性寶可夢會…$呃…不管什麼樣的對手我們都會應戰的。", - 2: "所以,呃,如果你願意的話,我會,\n呃,盡我所能做好,呃,你知道的,你的對手。", - 3: "好吧……所以,我是天桐,\n我喜歡草屬性寶可夢。", - }, - "victory": { - 1: "呃……已經結束了嗎?", - 2: "…真是太意外了。你真…強。$看起來就算是伯特或寇恩都贏不了你…", - 3: "…嗯。看起來我來的…不是時候?", - }, - "defeat": { - 1: "哈?我贏了?", - 2: "我想…$我想我贏了,因為我一直在和我的兄弟伯特和寇恩競爭,\n我們都變得更強了。", - 3: "…這…這是一次非常嚇人的經歷呢…", - } - }, - "roark": { - "encounter": { - 1: "我需要看看你作為訓練師的潛力。$還有,我要看看與你並肩作戰的寶可夢的堅韌!", - 2: "來吧!這些是我的岩石系寶可夢,我的驕傲!", - 3: "岩石屬性寶可夢就是最強的!", - 4: "我要看看你作為訓練師的潛力。$還要看看與你並肩作戰的寶可夢的堅韌!", - }, - "victory": { - 1: "什麼?不可能!我強化的寶可夢們!", - 2: "……我大腦過載了。$下次邀請你參加地下的化石挖掘比賽。", - 3: "有你這種技術,贏得勝利是很正常的。", - 4: "什麼?!連這也不夠?", - 5: "我搞砸了。", - }, - "defeat": { - 1: "看?我為我的搖滾戰鬥風格感到驕傲!", - 2: "謝謝!這場戰鬥給了我自信,$我感覺能夠打敗我父親了!", - 3: "我感覺就像我砸穿了一塊頑石!", - } - }, - "morty": { - "encounter": { - 1: "只要我再多努力一點,我就能看到我遇到傳說中的寶可夢的未來!$你會幫助我達到那個水平!", - 2: "據說,彩虹色的寶可夢會\n出現在真正強大的訓練師面前。 $我一直相信著這個美麗的傳說,\n所以,從出生開始,\n就在這裡進行著秘密的修行。$因為這樣,其他人看不到的東西\n我也能夠看得到…$我看到的,是那個將傳說中的寶可夢\n召喚到這片大地上的人的影子。$我一直相信,那就是我自己!\n希望你也能助我一臂之力!", - 3: "無論你相信還是不相信,神秘的力量確實存在。", - 4: "你可以見證我訓練的成果。", - 5: "你必須讓你與寶可夢的靈魂合二為一。你能做到嗎?", - 6: "嘿,你想成為我訓練的一部分嗎?", - }, - "victory": { - 1: "我還不夠好……", - 2: "我明白了…你的旅程…去了遙遠的地方,你見過的比我多得多。$我羨慕你…", - 3: "這怎麼可能……", - 4: "我認為我們的潛力沒什麼不同。$但是,我覺得你並不簡單,似乎還有什麼……", - 5: "我想我需要更多的訓練。", - 6: "那太遺憾了", - }, - "defeat": { - 1: "我又向前邁進了一步。", - 2: "呵呵呵……", - 3: "什…麼?!那還不夠?", - 4: "我感覺就像我砸穿了一塊頑石!", - 5: "哈哈哈啊!", - 6: "我知道我會贏!", - } - }, - "crispin": { - "encounter": { - 1: "我想贏,所以接下來我正要贏!", - 2: "我想對戰就對戰!懂嗎!就應該這樣!", - }, - "victory": { - 1: "我想贏……但我還是輸了!", - 2: "我輸了……因為我贏不了!", - }, - "defeat": { - 1: "嘿,等一下。我是不是贏了?$我覺得我贏了!太滿足了!", - 2: "哇哦!那太棒了!", - } - }, - "amarys": { - "encounter": { - 1: "我想幫助某個人。因此,我不能輸。$…我們的戰鬥現在開始。", - }, - "victory": { - 1: "我還不夠,我明白了。", - }, - "defeat": { - 1: "勝利屬於我。打得好。", - } - }, - "lacey": { - "encounter": { - 1: "我將用我平時的隊伍\n作為四天王的一員面對你。", - }, - "victory": { - 1: "打得真好呀~", - }, - "defeat": { - 1: "讓我們為你寶可夢的努力給予熱烈的掌聲!", - } - }, - "drayton": { - "encounter": { - 1: "哥們,我喜歡椅子。\n你喜歡椅子嗎?簡直是救星。$我不明白為什麼大家不一直坐著。\n站著多累人!", - }, - "victory": { - 1: "我早該想到的!", - }, - "defeat": { - 1: "嘿嘿嘿!別介意我,\n我只是在這裡小贏一下。$如果你不開心,我懂,\n但別因為我對烏栗發火,OK?", - } - }, - "ramos": { - "encounter": { - 1: "我用那些強壯的植物\n蓋出來的遊樂場精彩嗎?$它們的力量象徵著我這個園丁兼道館館主的實力,\n你真的確定能夠與之抗衡嗎?", - }, - "victory": { - 1: "你信任你的寶可夢,\n它們也信任你…不錯的戰鬥,小豆芽。", - }, - "defeat": { - 1: "呵呵呵…確實,\n脆弱的小草甚至能穿透混凝土。", - } - }, - "viola": { - "encounter": { - 1: "敗陣時的後悔,勝利的瞬間…$都是最棒的影象!很好呀,很好呀!$那麼來吧!", - 2: "我的鏡頭總會聚焦在勝利上,\n我不會讓任何事情破壞這個畫面!", - }, - "victory": { - 1: "你和你的寶可夢向我展示了一個全新的鏡頭機位!\n很好呀,很好呀!", - 2: "你通過鏡頭看到的世界,\n和你與寶可夢並肩作戰時看到的世界…$視角不同,即使是同一個世界看起來也完全不同。", - }, - "defeat": { - 1: "我勝利那一刻的照片,\n將是一個真正的贏家,對吧!", - 2: "是的!我拍了些很棒的照片!", - } - }, - "candice": { - "encounter": { - 1: "向小菘我挑戰嗎?好啊!\n我就是在等待強者$但是我也氣勢高昂,很強哦?", - 2: "寶可夢也好,時尚也好,戀愛也好,\n無論做什麼都氣勢高昂!$就說到這兒吧,讓你見識一下我的氣勢,\n要做好覺悟哦!", - }, - "victory": { - 1: "好厲害!我有點尊敬你了。", - 2: "好厲害!我有點尊敬你了!$嗯,感覺是被你的氣勢給壓倒了。", - }, - "defeat": { - 1: "你的氣勢我看到了,但我還是不會輸的!", - 2: "怎麼樣?小菘我的氣勢!\n寶可夢們的氣勢滿滿哦!", - } - }, - "gardenia": { - "encounter": { - 1: "你身上有一種勝利的氣息。\n那麼不管怎樣,$這應該會是場有趣的戰鬥。\n讓我們對戰吧!", - }, - "victory": { - 1: "太棒了!你可擅長對戰了,不是嗎?", - }, - "defeat": { - 1: "太好了!我的寶可夢和我都很棒!", - } - }, - "aaron": { - "encounter": { - 1: "好的!讓我來接受你的挑戰!", - }, - "victory": { - 1: "戰鬥是一件深刻而複雜的事情……", - }, - "defeat": { - 1: "戰勝一位四天王並不容易。", - } - }, - "cress": { - "encounter": { - 1: "沒!錯!你必須面對\n與我和我高貴的水屬性的戰鬥!", - }, - "victory": { - 1: "輸了?我?我不敢相信。", - }, - "defeat": { - 1: "當你的對手是我時,這是必然的結果。", - } - }, - "allister": { - "encounter": { - 1: "我是歐尼奧。$我…我來了……", - }, - "victory": { - 1: "我差點被嚇得丟了面具…那真是…$哇。我可以看清你真正的實力。", - }, - "defeat": { - 1: "這真是太棒了!", - } - }, - "clay": { - "encounter": { - 1: "咳咳! 讓我好等,不是嗎,孩子?$好吧,是時候看看你能做到什麼了!", - }, - "victory": { - 1: "真是的……我先說好,\n我可沒有手下留情。", - }, - "defeat": { - 1: "最重要的是輸掉的時候該怎麼辦。$只要你能在失敗中找到教訓,\n就能夠不斷地成長!", - } - }, - "kofu": { - "encounter": { - 1: "我會給你上一整道水系寶可夢大餐!\n但別真吃了它們!", - }, - "victory": { - 1: "吃了嗎!你真是活力又新鮮啊,\n不是嗎!$就是有點太鮮活了!", - }, - "defeat": { - 1: "你要再來找我,聽見了嗎?", - } - }, - "tulip": { - "encounter": { - 1: "請讓我運用我的化妝技巧,$讓你可愛的小寶可夢變得更美麗!", - }, - "victory": { - 1: "你妝點的力量宛如魔法加固,\n完全沖洗不掉啊。", - }, - "defeat": { - 1: "你知道嗎,在我這行,\n那些沒天賦的人往往會很快消失,$再也不會被提起。", - } - }, - "sidney": { - "encounter": { - 1: "你給我的印象不錯,\n我猜這會是一場精彩的對戰。$很棒!看起來真的很棒!$你和我,讓我們享受一場\n只能在這裡上演的戰鬥吧!", - }, - "victory": { - 1: "嗯,你覺得怎樣?我輸了!\n嗯,不過這很有趣,所以無所謂啊。", - }, - "defeat": { - 1: "別介意,OK?", - } - }, - "phoebe": { - "encounter": { - 1: "過去我在修行時得到了\n能與幽靈寶可夢親密交流的能力。$沒錯,我和寶可夢之間\n有著強烈的羈絆。$那麼,來試試看你有沒有能力\n傷到我的寶可夢吧!", - }, - "victory": { - 1: "哦,天呀。我輸了。", - }, - "defeat": { - 1: "我期待著下次再和你戰鬥!", - } - }, - "glacia": { - "encounter": { - 1: "我在這兒見到的盡是些\n弱不禁風的訓練家和寶可夢。$你又如何呢?如果你能讓我不得不用\n上全力的話就再好不過了!", - }, - "victory": { - 1: "你和你的寶可夢…\n你們的靈魂燃燒得多麼熱烈啊!$這股激烈的熱能仿佛能征服一切。\n$難怪我的冰屬性技巧也奈何不了你了。", - }, - "defeat": { - 1: "一場充滿激情的戰鬥,確實。", - } - }, - "drake": { - "encounter": { - 1: "對於我們這些將寶可夢視為\n同伴一同戰鬥的訓練家來說,$你知道怎樣才能贏得勝利嗎?\n你知道獲得勝利的條件嗎?$如果你不知道,\n那麼你永遠也無法戰勝我!", - }, - "victory": { - 1: "幹得漂亮,就是這樣。", - }, - "defeat": { - 1: "我在這場戰鬥中全力以赴了!", - } - }, - "wallace": { - "encounter": { - 1: "你的氣質變了,\n我能感覺到這一點。$現在,把你和你的寶可夢\n的力量展現給我看吧。$作為回禮,就由我和我的寶可夢\n演出一場水之幻影吧!", - }, - "victory": { - 1: "精彩。此刻,我能從你身上感覺到\n身為寶可夢訓練家的可靠與高貴。$我真榮幸能遇到你和你的寶可夢。", - }, - "defeat": { - 1: "偉大的幻影!", - } - }, - "lorelei": { - "encounter": { - 1: "只要能讓我用冰屬性寶可夢,\n就絕對沒人能贏得過我!\n能凍住對方可是很厲害的哦!$因為如果被凍住,你的寶可夢就無法動彈了!\n啊哈哈!你做好覺悟了吧!", - }, - "victory": { - 1: "你怎麼敢!", - }, - "defeat": { - 1: "一旦你被凍結,你就什麼都做不了。", - } - }, - "will": { - "encounter": { - 1: "我曾經環遊世界,\n日以繼夜地做著超能力寶可夢的修行之旅。$我會不斷變強!沒理由會在這裡輸掉!", - }, - "victory": { - 1: "……不會吧……", - }, - "defeat": { - 1: "就差一點。\n我想知道你缺少了什麼。", - } - }, - "malva": { - "encounter": { - 1: "我的內心可是一直燃燒著呢。$燃燒著對你的怒火!", - }, - "victory": { - 1: "挑戰者出色地擊敗了四天王之一,帕琦拉。", - }, - "defeat": { - 1: "真開心啊,能將你徹底粉碎!", - } - }, - "hala": { - "encounter": { - 1: "老哈拉讓你放開嗓子!" - }, - "victory": { - 1: "我能感受到你在旅途中所獲得的力量。" - }, - "defeat": { - 1: "啊哈哈。多麼有趣的戰鬥。" - } - }, - "molayne": { - "encounter": { - 1: "我將隊長的位置讓給了我的表弟馬瑪內,\n但我對自己的能力很有信心。 $我的力量就像超新星一樣!", - }, - "victory": { - 1: "我發現了一個有趣的訓練師對手!", - }, - "defeat": { - 1: "啊哈哈。多麼有趣的戰鬥。", - } - }, - "rika": { - "encounter": { - 1: "我要對你手下留情,但……騙你的啦! $好好動腦!", - }, - "victory": { - 1: "不錯,小子。", - }, - "defeat": { - 1: "啊哈哈哈哈!你真的很特别,小子!", - } - }, - "bruno": { - "encounter": { - 1: "我們將用勢不可擋的力量磨滅你!呼哈!", - }, - "victory": { - 1: "為什麼?我怎麼會輸?", - }, - "defeat": { - 1: "你可以隨意挑戰我,\n但結果永遠不會改變!", - } - }, - "bugsy": { - "encounter": { - 1: "我是阿筆!\n對蟲系寶可夢的熟悉不會輸給任何人的!", - }, - "victory": { - 1: "哇,太棒了!\n你是個寶可夢專家!$我的研究還沒有完成。\n好吧,你贏了。", - }, - "defeat": { - 1: "謝謝!多虧了我們的戰鬥,\n我的研究也取得了進展!", - } - }, - "koga": { - "encounter": { - 1: "哇哈哈哈哈!$寶可夢不僅僅是關於蠻力,拭目以待吧!", - }, - "victory": { - 1: "啊!你證明了自己!", - }, - "defeat": { - 1: "懂不懂要對忍者的技巧心神畏懼?", - } - }, - "bertha": { - "encounter": { - 1: "啊,讓老婆婆看看你學到了什麼?", - }, - "victory": { - 1: "好吧,親愛的孩子,\n不得不說,那令人印象深刻。$你的寶可夢相信你並盡最大努力為你贏得勝利。$儘管我輸了,\n我也止不住笑呢!", - }, - "defeat": { - 1: "哈哈哈!看來老婆婆我贏了!", - } - }, - "lenora": { - "encounter": { - 1: "那麼,挑戰者,讓我來研究$你與你精心養育的寶可夢要如何戰鬥!", - }, - "victory": { - 1: "我關於你的理論是正確的。$你不僅僅是有天賦……你很努力!\n我向你致敬!", - }, - "defeat": { - 1: "啊哈哈!如果你輸了,\n一定要分析原因,$並在下一場戰鬥中運用那些知識!", - } - }, - "siebold": { - "encounter": { - 1: "只要我活著,我將不斷努力尋求終極美食…$以及和最強的對手戰鬥!", - }, - "victory": { - 1: "您的事蹟,我志米銘記在心。", - }, - "defeat": { - 1: "我們的寶可夢戰鬥就像我靈魂的養料。\n它將讓我繼續前進。$這就是我將向你表示敬意的方式,\n感謝你在戰鬥中全力以赴!", - } - }, - "roxie": { - "encounter": { - 1: "準備好了嗎!我要給你上一課!", - }, - "victory": { - 1: "夠野的!你的想法比我的還要毒!", - }, - "defeat": { - 1: "嘿,拜託!認真點!\n你要加把勁啊!", - } - }, - "olivia": { - "encounter": { - 1: "沒什麼開場白。\n是時候和我麗姿,戰鬥了!", - }, - "victory": { - 1: "真的很可愛……你和你的寶可夢……", - }, - "defeat": { - 1: "嗯哼。", - } - }, - "poppy": { - "encounter": { - 1: "哦!你想和我進行寶可夢對戰麼?", - }, - "victory": { - 1: "嗚哇?!嘛……", - }, - "defeat": { - 1: "耶!我做到了!我擊~敗~了~你!\n你可以來…打…復仇之戰?$只要你想,隨時來打復仇之戰吧!", - } - }, - "agatha": { - "encounter": { - 1: "寶可夢是用來戰鬥的!我會讓你看看真正訓練家的戰鬥!" - }, - "victory": { - 1: "哦,我的天!你真是個特別的孩子!" - }, - "defeat": { - 1: "哈哈哈,這才是正確的戰鬥方式!" - } - }, - "flint": { - "encounter": { - 1: "希望你已經熱身完畢,\n因為這裡即將大爆炸!", - }, - "victory": { - 1: "不可思議!$你的動作如此火熱,讓我看起來溫吞吞的!", - }, - "defeat": { - 1: "嗯?就這嗎?\n我覺得你得再激情點。", - } - }, - "grimsley": { - "encounter": { - 1: "一無所有,\n或者,贏下所有!", - }, - "victory": { - 1: "一旦失敗,\n就意味著失去一切……$下一次我要追尋勝利!", - }, - "defeat": { - 1: "如果有人贏了,\n和他對戰的人就會輸。", - } - }, - "caitlin": { - "encounter": { - 1: "當花兒綻開時、我便出現。\n成為你在等待的人…$你似乎同時具備實力和善意$我所尋找的是擁有卓越力量的對手…$請用出你的全力吧!", - }, - "victory": { - 1: "我和我的寶可夢學到了很多!非常感謝。", - }, - "defeat": { - 1: "我渴望以優雅的姿態取得勝利。", - } - }, - "diantha": { - "encounter": { - 1: "與你的寶可夢對戰\n讓你充滿了未來的希望…$說真的,這讓我更有活力地面對新的一天,確實如此!", - }, - "victory": { - 1: "擁有高尚靈魂的訓練家和寶可夢的身姿,\n讓我的心激烈地震顫…", - }, - "defeat": { - 1: "哦,太棒了!你覺得怎麼樣?\n我的隊伍很酷吧~對吧?", - } - }, - "wikstrom": { - "encounter": { - 1: "年輕的挑戰者,幸會!\n我乃是著名的鋼鐵之刃,公爵雁鎧! $讓我們開始戰鬥吧!預備!", - }, - "victory": { - 1: "輝煌!你與你尊貴的\n寶可夢之間的信任居然勝過了我!", - }, - "defeat": { - 1: "哦哦哦!這是怎麼回事,\n我的心止不住地在震顫! $與如此有價值的對手的勝利\n讓我的靈魂飛翔——我心翱翔!", - } - }, - "acerola": { - "encounter": { - 1: "對戰只是找個樂子!來吧,我來會會你!", - }, - "victory": { - 1: "我……我說不出話!你是怎麼做到的?!", - }, - "defeat": { - 1: "哈哈!真是嚇人倒怪的勝利呀!", - } - }, - "larry_elite": { - "encounter": { - 1: "……你好,我是青木。$麻煩的是我還要兼任四天王。", - }, - "victory": { - 1: "好吧,我們翅膀下的疾風止於你這了啊…", - }, - "defeat": { - 1: "是時候和老闆開會了。", - } - }, - "lance": { - "encounter": { - 1: "我一直在等你。讓我來試試你有幾斤幾兩。", - 2: "我知道你能走這麼遠。讓我們開始吧。", - }, - "victory": { - 1: "被你拿下了啊。你太出色了!", - 2: "我從沒想到會有另一個訓練師打敗我……$我很驚訝。", - }, - "defeat": { - 1: "就差一點。想再試一次嗎?", - 2: "我沒覺得你弱,別因此困擾。", - } - }, - "karen": { - "encounter": { - 1: "我是梨花,你想和我的惡屬性寶可夢$來一場對決嗎?", - 2: "我和你見過的那些人不一樣。", - 3: "你組建了一支迷人的隊伍。$我們的戰鬥應該會是場精彩的比賽。", - }, - "victory": { - 1: "不!我贏不了。你是怎麼做到變得這麼強的?", - 2: "我不會偏離我所選擇的道路。", - 3: "冠軍正期待與你見面。", - }, - "defeat": { - 1: "意料之中。", - 2: "嗯,還算有點意思。", - 3: "隨時歡迎你來找我。", - } - }, - "milo": { - "encounter": { - 1: "看起來你顯然很了解寶可夢。$這會是一場激烈的戰鬥!$如果我想贏,我得讓我的寶可夢極巨化!", - }, - "victory": { - 1: "草的力量凋謝了…多麼不可思議的挑戰者!", - }, - "defeat": { - 1: "這必將讓你大吃一驚。", - } - }, - "lucian": { - "encounter": { - 1: "請稍等,我正在讀的書\n正要進入最精彩的部分…$英雄獲得了一把神秘之劍,\n即將面臨最後的考驗…啊,算了。$既然你能走到這一步,\n我就不說這些了,和你戰鬥吧。$讓我看看你是否\n能像我書中的主角一樣榮耀!", - }, - "victory": { - 1: "我明白了…看來你把我逼入了絕境。", - }, - "defeat": { - 1: "我得維護我的名譽。", - } - }, - "drasna": { - "encounter": { - 1: "你很厲害吧,\n而且相當相當地厲害呢。$我很高興,能和這樣的對手交手,\n就能更好地培養寶可夢們了。", - }, - "victory": { - 1: "哎呀,就這麼結束了,\n不好意思,可以的話歡迎再來。", - }, - "defeat": { - 1: "怎麼會這樣?", - } - }, - "kahili": { - "encounter": { - 1: "那麼,既然來了……\n要不來看看今天的風更青睞誰?$是你……還是我?", - }, - "victory": { - 1: "讓我這個四天王都感到沮喪,$看來你的力量貨真價實。", - }, - "defeat": { - 1: "那真是一記好球!", - } - }, - "hassel": { - "encounter": { - 1: "讓你親身感受一下什麼叫做猛烈的對戰氣息吧!", - }, - "victory": { - 1: "這次幸運之神對我微笑了,但是……$誰知道我下次會不會這麼幸運。", - }, - "defeat": { - 1: "那可真厲害!", - } - }, - "blue": { - "encounter": { - 1: "能走到這裡,你一定非常優秀。", - }, - "victory": { - 1: "我只輸給過他,現在又是你……?$你問他是誰?哈哈哈……", - }, - "defeat": { - 1: "看吧?我的實力就是我來到這裡的原因。", - } - }, - "piers": { - "encounter": { - 1: "準備好和我的隊伍來個大狂歡吧!$尖釘鎮,是時候嗨起來了!", - }, - "victory": { - 1: "我和我的隊伍已經盡力了。$找個時間再來對戰吧……", - }, - "defeat": { - 1: "我的喉嚨因為呼喊而變得沙啞……$但這是一場激動人心的戰鬥!", - } - }, - "red": { - "encounter": { - 1: "…!", - }, - "victory": { - 1: "…?", - }, - "defeat": { - 1: "…!", - } - }, - "jasmine": { - "encounter": { - 1: "哦……你的寶可夢給人印象深刻。$我想我會享受這場戰鬥的。", - }, - "victory": { - 1: "你真的很強。我也得加把勁了。", - }, - "defeat": { - 1: "我從沒想到會贏。", - } - }, - "lance_champion": { - "encounter": { - 1: "我依舊是冠軍,所以我不會留情的。", - }, - "victory": { - 1: "這就是新冠軍的崛起。", - }, - "defeat": { - 1: "我成功捍衛了冠軍的頭銜。", - } - }, - "steven": { - "encounter": { - 1: "告訴我…你在和寶可夢的旅途過程中看到了什麼?$邂逅了那麼多的訓練師,\n你都會有什麼樣的感受呢?$在這豐饒的大地上旅行…\n有沒有喚醒你內在的某種東西?$你不如就用一場對戰來告訴我你心中的答案吧。$我也會和我的寶可夢用這種方式\n將我們所知道的告訴你的!", - }, - "victory": { - 1: "沒想到連我這個聯盟冠軍\n都敗在你的手上了呢…", - }, - "defeat": { - 1: "正如我所期待的。謝謝!", - } - }, - "cynthia": { - "encounter": { - 1: "我,竹蘭,接受你的挑戰!\n我是絕不會手軟的!", - }, - "victory": { - 1: "無論對戰多麼有趣,\n它總會有結束的時候……", - }, - "defeat": { - 1: "即使你輸了,\n也永遠不要失去你對寶可夢的熱愛。", - } - }, - "iris": { - "encounter": { - 1: "你知道嗎?\n我真的很期待和強大的訓練師進行認真的戰鬥!$我的意思是,來吧!\n到達這裡的是那些渴望勝利的訓練師,$他們與經歷過無數艱難\n戰鬥的寶可夢一起戰鬥!$如果我和那樣的人戰鬥,\n不僅我會變得更強,我的寶可夢也會!$我們也會更好地了解彼此!\n好!做好準備吧!$我是艾莉絲,寶可夢聯盟冠軍,\n我,將打敗你!", - }, - "victory": { - 1: "啊……我盡力了,但我們輸了……", - }, - "defeat": { - 1: "耶!我們贏了!", - } - }, - "hau": { - "encounter": { - 1: "我想知道,訓練師是否會根據他們是\n來自溫暖地區還是寒冷地區而以不同的方式戰鬥。$讓我們來測試一下!", - }, - "victory": { - 1: "那太棒了!我覺得我現在有點了解你的感覺了!", - }, - "defeat": { - 1: "老鐵,這才叫戰鬥!", - } - }, - "geeta": { - "encounter": { - 1: "我決定再試一次。$來吧…讓我看看你的訓練成果。", - }, - "victory": { - 1: "我期待著你的成就!", - }, - "defeat": { - 1: "怎麼,這就結束了?", - } - }, - "nemona": { - "encounter": { - 1: "耶!我太興奮了!讓我們稍微放輕鬆!", - }, - "victory": { - 1: "好吧,太糟了,但我還是玩得很開心!$下次我一定會贏你!", - }, - "defeat": { - 1: "好吧,那是一場很棒的戰鬥!$肯定是會有收穫的啦。", - } - }, - "leon": { - "encounter": { - 1: "來享受一段冠軍時刻吧!", - }, - "victory": { - 1: "我的冠軍生涯結束了……但這是多麼美好的冠軍時刻啊!但這是多麼美好的冠軍時刻啊!謝謝你給了我最精彩的一戰!", - }, - "defeat": { - 1: "名副其實的冠軍時刻!", - } - }, - "whitney": { - "encounter": { - 1: "嘿!你不認為寶可夢超級可愛嗎?", - }, - "victory": { - 1: "哇啊!哇啊!你太壞了!", - }, - "defeat": { - 1: "就是這樣!", - } - }, - "chuck": { - "encounter": { - 1: "哈!你想挑戰我?你是勇敢還是無知?", - }, - "victory": { - 1: "你很強!能不能收我為徒?", - }, - "defeat": { - 1: "搞定。你明白我比你強得多了嗎?", - } - }, - "katy": { - "encounter": { - 1: "不要放鬆警惕,除非你想被蟲絲絆倒哦!", - }, - "victory": { - 1: "我可愛的寶可夢們都像蒼蠅一樣墜落了!", - }, - "defeat": { - 1: "開飯啦,我可愛的彩粉蝶!", - } - }, - "pryce": { - "encounter": { - 1: "年輕不代表能獲得勝利!經驗才是關鍵。", - }, - "victory": { - 1: "無與倫比!贏得完美,試著不要忘記你現在的感受。", - }, - "defeat": { - 1: "正如我所料。", - } - }, - "clair": { - "encounter": { - 1: "你知道我是誰嗎?知道還敢挑戰我?", - }, - "victory": { - 1: "我想知道以你現在的水平能走多遠,有趣。", - }, - "defeat": { - 1: "就是這樣。", - } - }, - "maylene": { - "encounter": { - 1: "我現在要挑戰你,我不會保留任何實力。$請準備好戰鬥!", - }, - "victory": { - 1: "是我輸了…", - }, - "defeat": { - 1: "太棒了。", - } - }, - "fantina": { - "encounter": { - 1: "你來挑戰吧。我會勝利。$這就是家緣市的道館館主。", - }, - "victory": { - 1: "你是最強的,我認輸了。", - }, - "defeat": { - 1: "我非常,非常高興!", - } - }, - "byron": { - "encounter": { - 1: "和我兒子瓢太一樣的年輕人啊!$我相信培養年輕人\n關係到寶可夢光明的未來!$為此就讓我來成為\n年輕人必須跨越的堡壘吧!", - }, - "victory": { - 1: "唔!我千錘百煉的寶可夢!", - }, - "defeat": { - 1: "哈哈哈哈!怎麼樣!我千錘百煉的寶可夢!", - } - }, - "olympia": { - "encounter": { - 1: "戰鬥是決定命運的古老傳統。讓我們開始吧!", - }, - "victory": { - 1: "創造你自己的道路。$不要讓任何東西阻擋你的路、你的命運、你的未來。", - }, - "defeat": { - 1: "我們的道路現在已經清晰了。", - } - }, - "volkner": { - "encounter": { - 1: "能留到最後的訓練家想必肯定是很強的…$希望你會是能讓我回憶起\n寶可夢對戰樂趣的訓練家!", - }, - "victory": { - 1: "我輸了…$你的心意,寶可夢的不顧一切。$戰鬥的時候就讓我熱血沸騰。", - }, - "defeat": { - 1: "完全沒感覺…$和我希望的完全不一樣!", - } - }, - "burgh": { - "encounter": { - 1: "唔…我有預感,\n只要贏了這場戰鬥就能畫出更好的畫來…$嗯!戰鬥充滿了幻象!那麼,馬上開始吧。", - 2: "當然,我對我所有的寶可夢都相當驕傲! $現在…讓我們馬上開始吧!", - }, - "victory": { - 1: "結束了嗎?我的女神拋棄我了嗎?", - 2: "啊唔,輸了……你還真是很強啊。", - }, - "defeat": { - 1: "唔啊……好……好美啊!", - 2: "偶爾也有一些不是很好看的勝利,$但只要努力了,\n不管怎麼樣的戰鬥,都是很美麗的。", - } - }, - "elesa": { - "encounter": { - 1: "最後一擊!\n在確信這一點的時候全身會流淌過電流!$為追求這個快感,\n我要用可愛的寶可夢們讓你頭暈眼花。", - }, - "victory": { - 1: "本想讓你頭暈的,\n結果我倒反被你電到了。", - }, - "defeat": { - 1: "感覺還不夠啊……下次能使出全力來嗎?", - } - }, - "skyla": { - "encounter": { - 1: "終於到決戰了!\n這是決定頂點的寶可夢對戰吧?$我最喜歡頂點了!\n在高的地方能看到很遠很遠!$好了!就讓我和你好好地玩一場吧!", - }, - "victory": { - 1: "和你的戰鬥讓我更強了……謝謝。", - }, - "defeat": { - 1: "不管是贏了還是輸了,戰鬥都能得到一些東西。", - } - }, - "brycen": { - "encounter": { - 1: "有其他的人和寶可夢在一起,$這份支持會讓自己更強…\n讓我來給你展示一下這樣的強大吧!", - }, - "victory": { - 1: "你和你的寶可夢!配合得天衣無縫!\n華麗的友情!", - }, - "defeat": { - 1: "嘗試極限!鍛鍊!", - } - }, - "drayden": { - "encounter": { - 1: "現在我尋求的是\n能讓我看到光明未來的年輕訓練家。$你有多少實力,就讓我用我的經驗,\n我對寶可夢傾注的愛來驗證吧!", - }, - "victory": { - 1: "失敗後湧現的這灼熱的意志…\n該怎麼說呢…", - }, - "defeat": { - 1: "啊啊啊!你的實力就這種程度嗎!", - } - }, - "grant": { - "encounter": { - 1: "我只期待一件事。. $通過超越彼此,\n我們找到通往更高境界的道路。", - }, - "victory": { - 1: "你是一堵我無法逾越的牆!", - }, - "defeat": { - 1: "不要放棄。\n這就是人生的真諦。$大道至簡。", - } - }, - "korrina": { - "encounter": { - 1: "小女子科爾尼來大顯身手啦!", - }, - "victory": { - 1: "正因為有你,\n才能讓你的寶可夢進化!", - }, - "defeat": { - 1: "好勁爆的戰鬥呀!", - } - }, - "clemont": { - "encounter": { - 1: "哦!我很高興我們能見面!", - }, - "victory": { - 1: "你對戰鬥的熱情激勵了我!", - }, - "defeat": { - 1: "看來我的訓練師成長強化機-馬克2號,\n真的起作用了!", - } - }, - "valerie": { - "encounter": { - 1: "哦,這不是一個年輕的訓練師嗎……\n能這樣遇見你真是太好了。 $我想你已經獲得了這場戰鬥的資格,\n作為對你努力的獎勵。 $難以捉摸的妖精可能看起來像微風一樣脆弱,\n像花朵一樣精緻,但很堅強。", - }, - "victory": { - 1: "我希望明天你也能找到一些值得會心微笑的事物……", - }, - "defeat": { - 1: "哦,天哪,這太遺憾了……", - } - }, - "wulfric": { - "encounter": { - 1: "你知道嗎?\n我們都說戰鬥能學到東西,羈絆之類的,$但實際上,我這麼做只是因為有趣。 $誰在乎那些華而不實的東西?\n我們來戰鬥吧!", - }, - "victory": { - 1: "傑出!我像冰山一樣堅硬,但你徹底擊潰了我!", - }, - "defeat": { - 1: "和我幹的結果就是這樣!", - } - }, - "kabu": { - "encounter": { - 1: "每個訓練師和寶可夢都在努力追求勝利。$但這意味著你的對手也在努力贏得勝利。$最終,比賽是由哪一方\n能夠發揮出他們真正的潛力來決定的。", - }, - "victory": { - 1: "我很高興今天能和你戰鬥!", - }, - "defeat": { - 1: "這是我感覺自己的成長的好方式!", - } - }, - "bea": { - "encounter": { - 1: "你有沒有一種不可動搖的精神,\n受到什麼攻擊都安如磐石? $就讓我來試試吧?", - }, - "victory": { - 1: "我感受到了你的寶可夢\n在戰鬥中被你指揮時的戰鬥之魂。", - }, - "defeat": { - 1: "每個人都希望能有一場這樣的好比賽。", - } - }, - "opal": { - "encounter": { - 1: "讓我看看你和你的寶可夢的表現如何!", - }, - "victory": { - 1: "你不夠粉嫩呀,\n但你是一個優秀的訓練師,$還擁有著優秀的寶可夢。", - }, - "defeat": { - 1: "對你來說太慘了,我覺得。", - } - }, - "bede": { - "encounter": { - 1: "就讓我來證明你有多可憐,我有多強大。", - }, - "victory": { - 1: "我懂了……好吧。其實我還沒拿出全力呢。", - }, - "defeat": { - 1: "我覺得我打得不錯。", - } - }, - "gordie": { - "encounter": { - 1: "好了,我們來做個了結吧!", - }, - "victory": { - 1: "我只想要挖一個洞爬進去……$好吧,現在更像是掉了進去。", - }, - "defeat": { - 1: "像往常一樣戰鬥,勝利就會隨之而來!", - } - }, - "marnie": { - "encounter": { - 1: "事實上,言而總之… \n人家自己也想當冠軍呀! $所以別認為我在針對你!", - }, - "victory": { - 1: "好吧,我還是輸了……\n但是我看到了很多你和你寶可夢的優點哦", - }, - "defeat": { - 1: "希望你喜歡我們的戰鬥策略。", - } - }, - "raihan": { - "encounter": { - 1: "我打算擊敗冠軍,贏得錦標賽,\n並向世界證明奇巴納大人有多強!", - }, - "victory": { - 1: "就算輸了我也好帥。$真是罪孽深重啊。$看來得再來張自拍了!", - }, - "defeat": { - 1: "為了紀念此刻,來張自拍吧!", - } - }, - "brassius": { - "encounter": { - 1: "你應該準備好了吧,\一起完成這美麗的藝術作品吧!", - }, - "victory": { - 1: "啊……前衛!", - }, - "defeat": { - 1: "我將立即開始新的創作!", - } - }, - "iono": { - "encounter": { - 1: "誰在奇述!是我奇樹!\n做好準備了嗎!$...$直播開始!\n今天的小挑戰者有多強?$奇樹不知道哦~\n讓我們一起來看看吧!", - }, - "victory": { - 1: "你的閃耀如1000萬伏特!朋友!", - }, - "defeat": { - 1: "奇樹奇樹捕獲你的眼球!", - } - }, - "larry": { - "encounter": { - 1: "歸根結底,普普通通就是最強。", - }, - "victory": { - 1: "哼,給我上了一道“戰敗”。", - }, - "defeat": { - 1: "下班打卡,走了", - } - }, - "ryme": { - "encounter": { - 1: "寶貝, 一起! \n搖滾搖到骨子裡!", - }, - "victory": { - 1: "你好酷!我佩服!\n我的靈魂為你哭!", - }, - "defeat": { - 1: "再會, 寶貝!", - } - }, - "grusha": { - "encounter": { - 1: "我保證我寶可夢的力量\n會讓你感到寒冷徹骨!", - }, - "victory": { - 1: "你燃燒的熱情……老實說,我有點喜歡。", - }, - "defeat": { - 1: "你沒有升溫。", - } - }, - "marnie_elite": { - "encounter": { - 1: "你已經走到這一步了?$哼~ 看看你能不能對付我的寶可夢!", - 2: "我將全力以赴, 別覺得我會手下留情哦~", - }, - "victory": { - 1: "不敢相信…我輸掉了… $但是你確實贏得好,幹得漂亮捏~", - 2: "看來我還要多多學習呀,\n不過你打得很不錯哦~", - }, - "defeat": { - 1: "你打得不錯,但是我更勝一籌!$祝你下次好運啦~", - 2: "看來我的練習有所回報了。\n感謝一戰!", - } - }, - "nessa_elite": { - "encounter": { - 1: "海流正在朝著對我有利的方向轉變。$準備好被捲走了嗎?", - 2: "讓我們在這場戰鬥中掀起波瀾!$我希望你做好準備!", - }, - "victory": { - 1: "你完美地渡過了這片水域......幹得好!", - 2: "看來我現在無法與你匹敵。幹得好!", - }, - "defeat": { - 1: "水總能找到出路。\n真是爽快的一戰!", - 2: "你打得很好,\n但海洋的力量是不可阻擋的!", - } - }, - "bea_elite": { - "encounter": { - 1: "做好準備!我的鬥志熊熊燃燒!", - 2: "讓我們看看你是否能跟上我永不停歇的節奏!", - }, - "victory": { - 1: "你的實力......令人印象深刻。\n你真的值得這場勝利。", - 2: "我以前從未感受過這種強度。\n太棒了!", - }, - "defeat": { - 1: "我的高強度訓練又帶來勝利了!\n幹得好!", - 2: "你有實力,但我的訓練更努力。\n精彩的戰鬥!", - } - }, - "allister_elite": { - "encounter": { - 1: "黑暗降臨...你準備好面對你的恐懼了嗎?", - 2: "讓我們看看你能否應對我所操控的黑暗。", - }, - "victory": { - 1: "你已經驅散了陰影......\n暫時。幹得很好。", - 2: "你的光芒刺穿了我的黑暗。幹得好。", - }, - "defeat": { - 1: "黑影在輕語...\n你的力量還不夠。", - 2: "黑暗獲勝了......\n也許下次你會看到光明。", - } - }, - "raihan_elite": { - "encounter": { - 1: "風暴來臨!你能挺過這場戰鬥嗎!", - 2: "準備好面對風暴之眼!", - }, - "victory": { - 1: "你戰勝了風暴...難以置信!", - 2: "你完美地駕馭了風……打得好!", - }, - "defeat": { - 1: "又一場風暴襲來,又一場勝利!打得好!", - 2: "你被我的風暴捲入了!祝你下次好運!", - } - }, - "alder": { - "encounter": { - 1: "準備好和合眾最強的訓練家交手吧!" - }, - "victory": { - 1: "精彩!簡直就是天下無雙!" - }, - "defeat": { - 1: `戰鬥結束後,我的心像是吹過了溫和的風… - $真是厲害!` - } - }, - "kieran": { - "encounter": { - 1: `我的努力讓我越來越強! - $所以我不會輸。` - }, - "victory": { - 1: `不可能… - $真是一場有趣又激動人心的戰鬥啊!` - }, - "defeat": { - 1: `哇塞,好一場戰鬥! - $你得多練練了。` - } - }, - "rival": { - "encounter": { - 1: "@c{smile}嘿,我在找你呢!我知道你急著上路,\n但至少說個再見吧…$@c{smile_eclosed}所以你終於要開始追逐夢想了?\n我幾乎不敢相信。$@c{serious_smile_fists}來都來了,來一場對戰怎麼樣?\n畢竟,我想看看你是不是準備周全了。$@c{serious_mopen_fists}不要手下留情,我想讓你全力以赴!", - }, - "victory": { - 1: "@c{shock}哇…你徹底擊敗了我。\n你是真初學者嗎?$@c{smile}也許是靠點運氣,但是…\n誰知道,你可能真的能一路走下去。$順便說一下,博士讓我給你這些東西。它們看起來可牛了。$@c{serious_smile_fists}祝你好运!$@c{smile}哦!我希望你能喜歡這次的活動!", - }, - }, - "rival_female": { - "encounter": { - 1: "@c{smile_wave}你在這兒啊!我到處找你呢!$@c{angry_mopen}你忘了和你最好的朋友說再見了嗎?$@c{smile_ehalf}你要去追逐夢想了,對吧?\n從今天開始,是不是…$@c{smile}不管怎樣,忘了我的事就原諒你吧,\n但有個條件。@c{smile_wave_wink}你必須和我對戰!$@c{angry_mopen}全力以赴!\n你也不想讓你的冒險在開始之前就結束了,對吧?", - }, - "victory": { - 1: "@c{shock}你剛開始就已經這麼強了?!@d{96}$@c{angry}你是不是開了?$@c{smile_wave_wink}只是開個玩笑啦!@d{64} @c{smile_eclosed}我輸地心服口服了…\n我感覺你出去挺有天賦的。$@c{smile}順便說一下,博士想讓我給你一些東西。\n希望它們能幫上忙!$@c{smile_wave}像往常一樣盡力而為!\n我相信你!$@c{smile}哦!我希望你能喜歡這次的活動!", - }, - }, - "rival_2": { - "encounter": { - 1: "@c{smile}嘿,你也在這裡嗎?$@c{smile_eclosed}一路過關斬將,是吧?$@c{serious_mopen_fists}我知道看起來好像我尾隨著你來到這裡,\n怎麼可能啦。$@c{serious_smile_fists}說真的,自從你在老家打敗我後,\n我就一直很渴望再比一場。$我自己也進行了很多訓練,\n所以這次我肯定會好好打一場。$@c{serious_mopen_fists}不要手下留情,就像以前一樣!$讓我們開始吧!", - }, - "victory": { - 1: "@c{neutral_eclosed}哦。我過於自信了。$@c{smile}不過沒關係。我猜到可能會這樣。$@c{serious_mopen_fists}這只意味著我下次需要更努力!$$@c{smile}呃,不是特意幫你,我正好有多餘的這個,\n我覺得你可能想要。$$@c{serious_smile_fists}不過這次之後別指望再有了!$我不能一直給我的對手優勢。$@c{smile}反正,保重, 要享受活動哦!", - }, - }, - "rival_2_female": { - "encounter": { - 1: "@c{smile_wave}哦,真巧,在這裡遇見你。\n看來你還沒輸過嘛。@c{angry_mopen}哈……好傢伙!$@c{angry_mopen}我知道你在想什麼,\n不,我才不會跟蹤你什麼呢。 @c{smile_eclosed}我只是碰巧在附近。$@c{smile_ehalf}我為你感到高興,但我只想讓你知道\n有時輸了是可以接受的。$@c{smile}我們從錯誤中學到的東西\n往往比我們一直成功時學到的還要多。$@c{angry_mopen}無論如何,我為了我們的複賽已經努力訓練了\n所以你最好全力以赴!", - }, - "victory": { - 1: "@c{neutral}我……沒打算會輸來著……$@c{smile}嗷……好吧。看來我要再更加努力訓練了!$@c{smile_wave}我還給你帶了個這個$@c{smile_wave_wink}不用謝我哦~.$@c{angry_mopen}不過,這是最後一個啦!\n 你可別想再從我這賺小便宜了~$@c{smile_wave}要保重哦,要享受活動哦!", - }, - "defeat": { - 1: "輸了有時候也不要緊的…", - } - }, - "rival_3": { - "encounter": { - 1: "@c{smile}嘿,看看這是誰!好久不見啊。$@c{neutral}你……還是沒輸過?哈…$@c{neutral_eclosed}這有點……不太對勁。$沒有你一起,回家的感覺有很不一樣。$@c{serious}雖然我知道這挺別扭的,但我就直說了。$@c{neutral_eclosed}我覺得你有點兒難以理解。$@c{serious}沒有人能夠戰無不勝。$失敗乃成功之母。$@c{neutral_eclosed}你已經贏得了夠好的成績,\n但前面道阻且長,只會愈發艱難。 @c{neutral}你做好準備了沒?$@c{serious_mopen_fists}如果做好了,證明給我看吧。", - }, - "victory": { - 1: "@c{angry_mhalf}這太離譜了……我幾乎從沒停下訓練……$我們之間的差距怎麼還是這麼大?", - }, - }, - "rival_3_female": { - "encounter": { - 1: "@c{smile_wave}好久不見!還沒輸過,對吧。$@c{angry}我覺得你點煩了。@c{smile_wave_wink}開玩笑啦!$@c{smile_ehalf}但說真的,你現在不想家嗎?\n 不想…我嗎?$我……我的意思是,我們真的很想你。$@c{smile_eclosed}我支持你的一切,包括你的夢想。\n但現實就是你早晚會經歷失敗。$@c{smile}當你失敗的時候,我想像往常一樣陪在你身邊。$@c{angry_mopen}現在,給你看看我變得多強了吧!", - }, - "victory": { - 1: "@c{shock}都這樣了……還是不夠嗎?$這樣下去,你就永遠不會回來了……", - }, - "defeat": { - 1: "你盡力了,現在讓我們回家吧。", - } - }, - "rival_4": { - "encounter": { - 1: "@c{neutral}嘿。$我不會對你說什麼拐彎抹角的客套話。$@c{neutral_eclosed}我來,就是為了贏,簡單明了。$@c{serious_mhalf_fists}我將所有時間都投入到訓練中,\n掌握了如何發揮我的潛力。$@c{smile}當你削減掉不必要的睡眠和社交後,\n你會得到很多額外的時間。$@c{serious_mopen_fists}但在我獲勝之前,這些都不重要了。$@c{neutral_eclosed}我甚至已經到達了戰無不敗的境地。$@c{smile_eclosed}我覺得你的思路倒是也沒毛病。$@c{angry_mhalf}失敗是屬於弱者的,\n我已經不再軟弱了。$@c{serious_mopen_fists}準備好吧。", - }, - "victory": { - 1: "@c{neutral}你…@d{64} 你是人嗎?", - }, - }, - "rival_4_female": { - "encounter": { - 1: "@c{neutral}是我哦!沒又把我忘了吧……是嗎?$@c{smile}你應該為自己走了這麼遠感到驕傲。恭喜你!$但看來你的旅程到此為止了。$@c{smile_eclosed}你喚醒了我體內一些我從未有過的東西。\n就像我現在滿腦子除了訓練還是訓練。$@c{smile_ehalf}我幾乎已經沒空吃飯睡覺了,\n我沒日沒夜訓練我的寶可夢,每次都能變得更強。$@c{neutral}事實上,我……幾乎不認識自己了。$現在,我終於達到了巔峰。\n我感覺我已經戰無不勝了。$而且你知道嗎?這一切都是因為你。$@c{smile_ehalf}我不知道到底是該感謝你還是恨你。$@c{angry_mopen}做好準備…", - }, - "victory": { - 1: "@c{neutral}你…@d{64} 你是人嗎?", - }, - "defeat": { - 1: "@c{smile}你應該為自己走了這麼遠感到驕傲。", - } - }, - "rival_5": { - "encounter": { - 1: "@c{neutral}…" - }, - "victory": { - 1: "@c{neutral}…" - }, - }, - "rival_5_female": { - "encounter": { - 1: "@c{neutral}…" - }, - "victory": { - 1: "@c{neutral}…" - - }, - "defeat": { - 1: "$@c{smile_ehalf}…" - } - }, - "rival_6": { - "encounter": { - 1: "@c{smile_eclosed}又見面了。$@c{neutral}我花了點時間思考反思\n有理由說明為什麼這一切都顯得如此奇妙。$@c{neutral_eclosed}你所追逐的夢想,我想擊敗你的決心…$這都是某種龐大使命的一部分。$@c{serious}這不僅僅是關於我和你… 而是關於這個世界, @c{serious_mhalf_fists}我的使命就是將你推向極限。$@c{neutral_eclosed}我是否達成了那個使命,我說不上來,但我已盡我所能。$@c{neutral}我們最終到達的這個地方看起來很可怕\n 然而不知何故,我心中毫無畏懼,好像我早就來過這裡。$@c{serious_mhalf_fists}你也有同樣的感覺,對吧?$@c{serious}……這裡好像有什麼東西在呼喚我。\n這是世界早已記錄的一切。$那些我們經歷過的時光,那些記憶猶新的過去,\n其實只是遙遠的回憶。$@c{neutral_eclosed}誰能保證它們是否真的發生過。$@c{serious_mopen_fists}你必須繼續前進,不然的話,這一切將永無止境。\n這件事而只有你能辦成。$@c{serious_smile_fists}我不清楚這一切意味著什麼,但我知道……$@c{serious_mopen_fists}如果現在你不能就此擊敗我,\n你將毫無機會可言。", - }, - "victory": { - 1: "@c{smile_eclosed}看來我的使命在這裡已經完成了。\n我想讓你答應我一件事。$@c{smile}在你拯救世界之後,要回家。", - }, - }, - "rival_6_female": { - "encounter": { - 1: "@c{smile_ehalf}又只有我們兩個人了。$@c{smile_eclosed}你知道嗎,我在心裡想啊想,\n想了好久……$@c{smile_ehalf}這一切背後是有什麼原因嗎,\n為什麼一切現在看起來都這麼奇怪……$@c{smile}你有你的夢想,而我內心有這個抱負……$我不禁感覺這一切背後有一個更龐大的力量,$掌控者我們所做的一切,你和我之間。$@c{smile_eclosed}我想我注定要推動你……到你的極限。$@c{smile_ehalf}我不清楚我是否一直做得很好,\n但到現在為止,我已經盡力了。$這個奇怪而可怕的地方……\n一切看起來都那麼清晰……$這是世界早已記錄的一切。$@c{smile_eclosed}我好像記不清我們一起度過的日子了。$@c{smile_ehalf}那些回憶到底是真的嗎?\n怎麼感覺這麼久遠……$@c{angry_mopen}你得繼續前進,不然的話,這一切將永無止境。\n你是唯一能做到這件事的。$@c{smile_ehalf}我……不知道這一切意味著什麼……\n但我明白$@c{neutral}如果你現在不能就此擊敗我,\n你將毫無機會可言。", - }, - "victory": { - 1: "@c{smile_ehalf}我……\n我想我完成了我的使命……$@c{smile_eclosed}答應我……在你拯救世界之後\n……要……平安到家。$@c{smile_ehalf}……謝謝你。", - }, - }, -}; - - -// Dialogue of the NPCs in the game when the player character is female. For languages that do not have gendered pronouns, this can be set to PGMdialogue. -export const PGFdialogue: DialogueTranslationEntries = PGMdialogue; - -// Dialogue of the endboss of the game when the player character is male (Or unset) -export const PGMbattleSpecDialogue: SimpleTranslationEntries = { - "encounter": `看來終於又到了那個時候。\n你知道自己為何會來到這裡,不是嗎? - $你被吸引到這裡,因為你以前就來過這裡。\n無數次。 - $儘管,或許可以數一數。\n準確地說,這實際上是你的第{{cycleCount}}次循環。 - $每一次循環,你的思想都會恢復到之前的狀態。\n即便如此,不知何故,你之前自我的殘留仍然存在。 - $直到現在,你仍未成功,但我感覺這次你身上有一種異樣的氣息。 - $你是這裡唯一的人,儘管感覺上還有……另一個人。 - $你最終會成為對我來的一個硬茬嗎?\n我渴望了數千年的挑戰? - $我們,開始。`, - "firstStageWin": `我明白了。我所感覺到的氣息確實是真實的。\n看來我不再需要保留實力了。 - $別讓我失望。`, - "secondStageWin": "…漂亮。" -}; - -// Dialogue of the endboss of the game when the player character is female. For languages that do not have gendered pronouns, this can be set to PGMbattleSpecDialogue. -export const PGFbattleSpecDialogue: SimpleTranslationEntries = PGMbattleSpecDialogue; - -// Dialogue that does not fit into any other category (e.g. tutorial messages, or the end of the game). For when the player character is male -export const PGMmiscDialogue: SimpleTranslationEntries = { - "ending": - `@c{smile}哦?你贏了?@d{96} @c{smile_eclosed}我應該早猜到了\n你回來了。 - $@c{smile}結束了。@d{64} 你終結了這個循環。 - $@c{serious_smile_fists}你也完成了自己的夢想,不是嗎?\n你甚至一次都沒失敗。 - $@c{neutral}我是唯一能夠記得你所作所為的人@d{96}\n我覺得這應該也還行吧? - $@c{serious_smile_fists}你的傳奇將永遠留存於我們心中。 - $@c{smile_eclosed}不管了,我真是受夠這個地方了,你也一樣嗎?我們回家吧。 - $@c{serious_smile_fists}可能等我們回家以後,再打一場?\n要是你想的話`, - "ending_female": - `@c{shock}你回來了?@d{32} 也就是說…@d{96} 你贏了呀!?\n@c{smile_ehalf}我應該早料到了。 - $@c{smile_eclosed}當然…我一直有這種感覺\n@c{smile}一切都結束了,對麼? 你打破了循環。 - $@c{smile_ehalf}你也完成了自己的夢想,不是嗎?\n你甚至一次都沒失敗。 - $我是唯一能夠記得你所作所為的人\n@c{angry_mopen}我會努力不忘掉哒! - $@c{smile_wave_wink}開玩笑啦,@d{64} @c{smile}我才不會忘呢。@d{32}\n你的傳奇將永遠留存於我們心中。 - $@c{smile_wave}不管了,@d{64} 時候不早了@d{96} ,應該吧?\n在這地方還真搞不清楚。 - $一起回家吧。 @c{smile_wave_wink}可能明天,我們再來打一場,為了重溫回憶嘛~`, -}; -// Dialogue that does not fit into any other category (e.g. tutorial messages, or the end of the game). For when the player character is female. For languages that do not have gendered pronouns, this can be set to PGMmiscDialogue. -export const PGFmiscDialogue: SimpleTranslationEntries = PGMmiscDialogue; - - -// Dialogue of the named double battles in the game. For when the player is male (or unset). -export const PGMdoubleBattleDialogue: DialogueTranslationEntries = { - "blue_red_double": { - "encounter": { - 1: "青綠:嘿,赤紅,\n讓這傢伙看看我們是什麼來頭!$赤紅:...$青綠: 見識下真新鎮的實力!", - }, - "victory": { - 1: "青綠:打得真不錯$赤紅: ...", - }, - }, - "red_blue_double": { - "encounter": { - 1: "赤紅: ...!$青綠:他人狠話不多。$青綠: 他人狠話不多。$青綠: 但別被他耍了,\n畢竟他可是個冠軍!", - }, - "victory": { - 1: "赤紅: ...!$青綠: 下次我們一定會贏你!", - }, - }, - "tate_liza_double": { - "encounter": { - 1: "小楓:嘿嘿嘿……你驚訝嗎?$小南:這裡有兩個道館館主?$小楓: 我們是雙胞胎!$小南:我們無需交談,因為……我們可以通曉彼此的想法$小楓: 我們的組合……$小南: 你能打敗嗎?", - }, - "victory": { - 1: "小楓:什麼?我們的組合……$小南:被瓦解了!", - }, - }, - "liza_tate_double": { - "encounter": { - 1: "小南:呵呵呵……你驚訝吧?$小楓:這裡有兩個道館館主?$小南:我們可以通曉……$小楓:彼此的想法……$小南:全在我們腦中!$小楓:我們的組合……$小南:你能打敗嗎?", - }, - "victory": { - 1: "小楓:你和你的寶可夢……$小南:簡直像親兄弟姐妹!", - }, - }, - "wallace_steven_double": { - "encounter": { - 1: "大吾:米可利, 展現冠軍的實力吧!$米可利:我們將展示豐緣的實力!$米可利:我們將展示豐緣的實力!$大吾:要上了!", - }, - "victory": { - 1: "大吾:打得真不錯!$米可利:我們下次會贏的!", - }, - }, - "steven_wallace_double": { - "encounter": { - 1: "大吾:你有什麼稀有的寶可夢嗎?$米可利:大吾……我們是來對戰的,\n不是來炫耀寶可夢的。$大吾:哦……知道了… 那麼要上了!", - }, - "victory": { - 1: "大吾:戰鬥結束了,\n來看看我的稀有寶可夢!$米可利:大吾……", - }, - }, - "alder_iris_double": { - "encounter": { - 1: "阿戴克:我們倆是合眾最強的訓練家!$艾莉絲:與最強來一場最激烈的戰鬥吧!", - }, - "victory": { - 1: "阿戴克:哇哦!你真是超級厲害!$艾莉絲:我們下次會贏的啦!", - }, - }, - "iris_alder_double": { - "encounter": { - 1: "艾莉絲:歡迎!挑戰者,\n合眾地區最強的冠軍大駕光臨!$阿戴克:艾莉絲,你是不是有點太興奮了…", - }, - "victory": { - 1: "艾莉絲:這樣的失敗可不好受啊…$阿戴克:但是只有失敗才能讓我們變強!", - }, - }, - "piers_marnie_double": { - "encounter": { - 1: "瑪俐:哥哥,給他們展現尖釘鎮的實力!$聶梓:我們帶來黑暗!", - }, - "victory": { - 1: "瑪俐:你的強光亮瞎我們的黑暗了啦……$聶梓:實在太亮了…", - }, - }, - "marnie_piers_double": { - "encounter": { - 1: "聶梓: 台下準備好了嗎!$瑪俐: 哥哥,我們是來對戰的,\n不是來唱歌的……", - }, - "victory": { - 1: "聶梓:這首歌獻給大家!$瑪俐:哥哥……", - }, - }, -}; - -// Dialogue of the named double battles in the game. For when the player is female. For languages that do not have gendered pronouns, this can be set to PGMdoubleBattleDialogue. -export const PGFdoubleBattleDialogue: DialogueTranslationEntries = PGMdoubleBattleDialogue; diff --git a/src/locales/zh_TW/egg.ts b/src/locales/zh_TW/egg.json similarity index 87% rename from src/locales/zh_TW/egg.ts rename to src/locales/zh_TW/egg.json index 666f6758d11..28e5e1b9bda 100644 --- a/src/locales/zh_TW/egg.ts +++ b/src/locales/zh_TW/egg.json @@ -1,6 +1,4 @@ -import { SimpleTranslationEntries } from "#app/interfaces/locales"; - -export const egg: SimpleTranslationEntries = { +{ "egg": "蛋", "greatTier": "稀有", "ultraTier": "史詩", @@ -24,5 +22,5 @@ export const egg: SimpleTranslationEntries = { "rareEggMoveUnlock": "稀有蛋招式已解鎖: {{moveName}}", "moveUPGacha": "蛋招式UP!", "shinyUPGacha": "闪光UP!", - "legendaryUPGacha": "UP!", -} as const; + "legendaryUPGacha": "UP!" +} \ No newline at end of file diff --git a/src/locales/zh_TW/fight-ui-handler.json b/src/locales/zh_TW/fight-ui-handler.json new file mode 100644 index 00000000000..3cf1868196a --- /dev/null +++ b/src/locales/zh_TW/fight-ui-handler.json @@ -0,0 +1,7 @@ +{ + "pp": "PP", + "power": "威力", + "accuracy": "命中率", + "abilityFlyInText": " {{pokemonName}} 的 {{passive}}{{abilityName}}", + "passive": "被動能力 " +} \ No newline at end of file diff --git a/src/locales/zh_TW/fight-ui-handler.ts b/src/locales/zh_TW/fight-ui-handler.ts deleted file mode 100644 index d86a703d844..00000000000 --- a/src/locales/zh_TW/fight-ui-handler.ts +++ /dev/null @@ -1,9 +0,0 @@ -import { SimpleTranslationEntries } from "#app/interfaces/locales"; - -export const fightUiHandler: SimpleTranslationEntries = { - "pp": "PP", - "power": "威力", - "accuracy": "命中率", - "abilityFlyInText": " {{pokemonName}} 的 {{passive}}{{abilityName}}", - "passive": "被動能力 ", // The space at the end is important -} as const; diff --git a/src/locales/zh_TW/filter-bar.ts b/src/locales/zh_TW/filter-bar.json similarity index 87% rename from src/locales/zh_TW/filter-bar.ts rename to src/locales/zh_TW/filter-bar.json index 4c0821d98db..80688c19767 100644 --- a/src/locales/zh_TW/filter-bar.ts +++ b/src/locales/zh_TW/filter-bar.json @@ -1,6 +1,4 @@ -import { SimpleTranslationEntries } from "#app/interfaces/locales"; - -export const filterBar: SimpleTranslationEntries = { +{ "genFilter": "世代", "typeFilter": "屬性", "caughtFilter": "捕獲", @@ -36,5 +34,5 @@ export const filterBar: SimpleTranslationEntries = { "sortByCost": "花費", "sortByCandies": "糖果", "sortByIVs": "個體值", - "sortByName": "名稱", -}; + "sortByName": "名稱" +} \ No newline at end of file diff --git a/src/locales/zh_TW/game-mode.json b/src/locales/zh_TW/game-mode.json new file mode 100644 index 00000000000..b41dbdcae96 --- /dev/null +++ b/src/locales/zh_TW/game-mode.json @@ -0,0 +1,8 @@ +{ + "classic": "經典模式", + "endless": "無盡模式", + "endlessSpliced": "融合無盡模式", + "dailyRun": "每日挑戰", + "unknown": "未知", + "challenge": "挑戰模式" +} \ No newline at end of file diff --git a/src/locales/zh_TW/game-mode.ts b/src/locales/zh_TW/game-mode.ts deleted file mode 100644 index dc2a227d638..00000000000 --- a/src/locales/zh_TW/game-mode.ts +++ /dev/null @@ -1,10 +0,0 @@ -import { SimpleTranslationEntries } from "#app/interfaces/locales"; - -export const gameMode: SimpleTranslationEntries = { - "classic": "經典模式", - "endless": "無盡模式", - "endlessSpliced": "融合無盡模式", - "dailyRun": "每日挑戰", - "unknown": "未知", - "challenge": "挑戰模式", -} as const; diff --git a/src/locales/zh_TW/game-stats-ui-handler.ts b/src/locales/zh_TW/game-stats-ui-handler.json similarity index 89% rename from src/locales/zh_TW/game-stats-ui-handler.ts rename to src/locales/zh_TW/game-stats-ui-handler.json index 343ae7240cb..ccd7f481fe1 100644 --- a/src/locales/zh_TW/game-stats-ui-handler.ts +++ b/src/locales/zh_TW/game-stats-ui-handler.json @@ -1,6 +1,4 @@ -import { SimpleTranslationEntries } from "#app/interfaces/locales"; - -export const gameStatsUiHandler: SimpleTranslationEntries = { +{ "stats": "統計", "playTime": "遊戲時間", "totalBattles": "總戰鬥次數", @@ -40,5 +38,5 @@ export const gameStatsUiHandler: SimpleTranslationEntries = { "rareEggsPulled": "稀有扭蛋數", "epicEggsPulled": "史詩扭蛋數", "legendaryEggsPulled": "傳說扭蛋數", - "manaphyEggsPulled": "瑪娜霏扭蛋數", -} as const; + "manaphyEggsPulled": "瑪娜霏扭蛋數" +} \ No newline at end of file diff --git a/src/locales/zh_TW/growth.ts b/src/locales/zh_TW/growth.json similarity index 51% rename from src/locales/zh_TW/growth.ts rename to src/locales/zh_TW/growth.json index a67f108052a..6e6d8db4b4a 100644 --- a/src/locales/zh_TW/growth.ts +++ b/src/locales/zh_TW/growth.json @@ -1,10 +1,8 @@ -import { SimpleTranslationEntries } from "#app/interfaces/locales"; - -export const growth: SimpleTranslationEntries = { +{ "Erratic": "最快", "Fast": "快", "Medium_Fast": "較快", "Medium_Slow": "較慢", "Slow": "慢", "Fluctuating": "最慢" -} as const; +} \ No newline at end of file diff --git a/src/locales/zh_TW/menu-ui-handler.ts b/src/locales/zh_TW/menu-ui-handler.json similarity index 62% rename from src/locales/zh_TW/menu-ui-handler.ts rename to src/locales/zh_TW/menu-ui-handler.json index ab70fd9af33..33e6b44d73d 100644 --- a/src/locales/zh_TW/menu-ui-handler.ts +++ b/src/locales/zh_TW/menu-ui-handler.json @@ -1,10 +1,8 @@ -import { SimpleTranslationEntries } from "#app/interfaces/locales"; - -export const menuUiHandler: SimpleTranslationEntries = { +{ "GAME_SETTINGS": "遊戲設置", "ACHIEVEMENTS": "成就", "STATS": "數據", - "VOUCHERS": "兌換劵", + "RUN_HISTORY": "歷史記錄", "EGG_LIST": "蛋列表", "EGG_GACHA": "扭蛋機", "MANAGE_DATA": "管理數據", @@ -16,14 +14,11 @@ export const menuUiHandler: SimpleTranslationEntries = { "importSlotSelect": "選擇要導入到的存檔位。", "exportSession": "導出存檔", "exportSlotSelect": "選擇要導出的存檔位。", + "importRunHistory":"導入歷史記錄", + "exportRunHistory":"導出歷史記錄", "importData": "導入數據", "exportData": "導出數據", "consentPreferences": "同意偏好", - "linkDiscord": "Link Discord", - "unlinkDiscord": "Unlink Discord", - "linkGoogle": "Link Google", - "unlinkGoogle": "Unlink Google", "cancel": "取消", - "losingProgressionWarning": "你將失去自戰鬥開始以來的所有進度。是否\n繼續?", - "noEggs": "You are not hatching\nany eggs at the moment!" -} as const; + "losingProgressionWarning": "你將失去自戰鬥開始以來的所有進度。是否\n繼續?" +} \ No newline at end of file diff --git a/src/locales/zh_TW/menu.ts b/src/locales/zh_TW/menu.json similarity index 65% rename from src/locales/zh_TW/menu.ts rename to src/locales/zh_TW/menu.json index d46f3f172de..1ec0b7124d8 100644 --- a/src/locales/zh_TW/menu.ts +++ b/src/locales/zh_TW/menu.json @@ -1,11 +1,4 @@ -import { SimpleTranslationEntries } from "#app/interfaces/locales"; - -/** - * The menu namespace holds most miscellaneous text that isn't directly part of the game's - * contents or directly related to Pokemon data. This includes menu navigation, settings, - * account interactions, descriptive text, etc. - */ -export const menu: SimpleTranslationEntries = { +{ "cancel": "取消", "continue": "繼續", "dailyRun": "每日挑戰 (Beta)", @@ -44,19 +37,8 @@ export const menu: SimpleTranslationEntries = { "weeklyRankings": "每週排名", "noRankings": "無排名", "positionIcon": "#", - "usernameScoreboard": "Username", - "score": "Score", - "wave": "Wave", "loading": "加載中…", - "loadingAsset": "Loading asset: {{assetName}}", "playersOnline": "在線玩家", - "yes":"是", - "no":"否", - "disclaimer": "DISCLAIMER", - "disclaimerDescription": "This game is an unfinished product; it might have playability issues (including the potential loss of save data),\n change without notice, and may or may not be updated further or completed.", - "choosePokemon": "Choose a Pokémon.", - "renamePokemon": "Rename Pokémon", - "rename": "Rename", - "nickname": "Nickname", - "errorServerDown": "Oops! There was an issue contacting the server.\n\nYou may leave this window open,\nthe game will automatically reconnect.", -} as const; + "yes": "是", + "no": "否" +} \ No newline at end of file diff --git a/src/locales/zh_TW/modifier-select-ui-handler.json b/src/locales/zh_TW/modifier-select-ui-handler.json new file mode 100644 index 00000000000..9e26dfeeb6e --- /dev/null +++ b/src/locales/zh_TW/modifier-select-ui-handler.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/src/locales/zh_TW/modifier-select-ui-handler.ts b/src/locales/zh_TW/modifier-select-ui-handler.ts deleted file mode 100644 index 64cf3aa2ba3..00000000000 --- a/src/locales/zh_TW/modifier-select-ui-handler.ts +++ /dev/null @@ -1,14 +0,0 @@ -import { SimpleTranslationEntries } from "#app/interfaces/locales"; - -export const modifierSelectUiHandler: SimpleTranslationEntries = { - "transfer": "Transfer", - "reroll": "Reroll", - "lockRarities": "Lock Rarities", - "checkTeam": "Check Team", - "transferDesc": "Transfer a held item from one Pokémon to another.", - "rerollDesc": "Spend money to reroll your item options.", - "lockRaritiesDesc": "Lock item rarities on reroll (affects reroll cost).", - "checkTeamDesc": "Check your team or use a form changing item.", - "rerollCost": "₽{{formattedMoney}}", - "itemCost": "₽{{formattedMoney}}" -} as const; diff --git a/src/locales/zh_TW/modifier-type.json b/src/locales/zh_TW/modifier-type.json new file mode 100644 index 00000000000..a7ddaea077b --- /dev/null +++ b/src/locales/zh_TW/modifier-type.json @@ -0,0 +1,605 @@ +{ + "ModifierType": { + "AddPokeballModifierType": { + "name": "{{modifierCount}}x {{pokeballName}}", + "description": "獲得 {{pokeballName}} x{{modifierCount}} (已有:{{pokeballAmount}}) \n捕捉倍率:{{catchRate}}。" + }, + "AddVoucherModifierType": { + "name": "{{modifierCount}}x {{voucherTypeName}}", + "description": "獲得 {{voucherTypeName}} x{{modifierCount}}。" + }, + "PokemonHeldItemModifierType": { + "extra": { + "inoperable": "{{pokemonName}} 無法攜帶\n這個物品!", + "tooMany": "{{pokemonName}} 已有太多\n這個物品!" + } + }, + "PokemonHpRestoreModifierType": { + "description": "爲一隻寶可夢恢復 {{restorePoints}} HP 或 {{restorePercent}}% HP,取最大值。", + "extra": { + "fully": "爲一隻寶可夢恢復全部HP。", + "fullyWithStatus": "爲一隻寶可夢恢復全部HP並消除所有負面\n狀態。" + } + }, + "PokemonReviveModifierType": { + "description": "復活一隻寶可夢並恢復 {{restorePercent}}% HP。" + }, + "PokemonStatusHealModifierType": { + "description": "爲一隻寶可夢消除所有負面狀態。" + }, + "PokemonPpRestoreModifierType": { + "description": "爲一隻寶可夢的一個招式恢復 {{restorePoints}} PP。", + "extra": { + "fully": "完全恢復一隻寶可夢一個招式的PP。" + } + }, + "PokemonAllMovePpRestoreModifierType": { + "description": "爲一隻寶可夢的所有招式恢復 {{restorePoints}} PP。", + "extra": { + "fully": "爲一隻寶可夢的所有招式恢復所有PP。" + } + }, + "PokemonPpUpModifierType": { + "description": "永久提升一個招式的PP,每5點最大PP增加{{upPoints}} (最多3點)。" + }, + "PokemonNatureChangeModifierType": { + "name": "{{natureName}}薄荷", + "description": "將一隻寶可夢的性格改爲{{natureName}}併爲該寶可\n夢永久解鎖該性格。" + }, + "DoubleBattleChanceBoosterModifierType": { + "description": "接下來的{{battleCount}}場戰鬥是雙打的概率翻倍。" + }, + "TempBattleStatBoosterModifierType": { + "description": "爲所有成員寶可夢提升一級{{tempBattleStatName}},持續5場戰鬥。" + }, + "AttackTypeBoosterModifierType": { + "description": "一隻寶可夢的{{moveType}}系招式威力提升20%。" + }, + "PokemonLevelIncrementModifierType": { + "description": "Increases a Pokémon's level by {{levels}}." + }, + "AllPokemonLevelIncrementModifierType": { + "description": "Increases all party members' level by {{levels}}." + }, + "PokemonBaseStatBoosterModifierType": { + "description": "增加持有者的{{statName}}10%,個體值越高堆疊\n上限越高。" + }, + "AllPokemonFullHpRestoreModifierType": { + "description": "所有寶可夢完全恢復HP。" + }, + "AllPokemonFullReviveModifierType": { + "description": "復活所有瀕死寶可夢,完全恢復HP。" + }, + "MoneyRewardModifierType": { + "description": "獲得{{moneyMultiplier}}金錢 (₽{{moneyAmount}})。", + "extra": { + "small": "少量", + "moderate": "中等", + "large": "大量" + } + }, + "ExpBoosterModifierType": { + "description": "經驗值獲取量增加{{boostPercent}}%。" + }, + "PokemonExpBoosterModifierType": { + "description": "持有者經驗值獲取量增加{{boostPercent}}%。" + }, + "PokemonFriendshipBoosterModifierType": { + "description": "每場戰鬥獲得的好感度提升50%。" + }, + "PokemonMoveAccuracyBoosterModifierType": { + "description": "招式命中率增加{{accuracyAmount}} (最大100)。" + }, + "PokemonMultiHitModifierType": { + "description": "攻擊造成一次額外傷害,每次堆疊額外傷害\n分別衰減60/75/82.5%。" + }, + "TmModifierType": { + "name": "招式學習器 {{moveId}} - {{moveName}}", + "description": "教會一隻寶可夢{{moveName}}。" + }, + "TmModifierTypeWithInfo": { + "name": "TM{{moveId}} - {{moveName}}", + "description": "教會一隻寶可夢{{moveName}}\n(Hold C or Shift for more info)。" + }, + "EvolutionItemModifierType": { + "description": "使某些寶可夢進化。" + }, + "FormChangeItemModifierType": { + "description": "使某些寶可夢更改形態。" + }, + "FusePokemonModifierType": { + "description": "融合兩隻寶可夢 (改變特性, 平分基礎點數\n和屬性, 共享招式池)。" + }, + "TerastallizeModifierType": { + "name": "{{teraType}}太晶碎塊", + "description": "持有者獲得{{teraType}}太晶化10場戰鬥。" + }, + "ContactHeldItemTransferChanceModifierType": { + "description": "攻擊時{{chancePercent}}%概率偷取對手物品。" + }, + "TurnHeldItemTransferModifierType": { + "description": "持有者每回合從對手那裏獲得一個持有的物品。" + }, + "EnemyAttackStatusEffectChanceModifierType": { + "description": "攻擊時{{chancePercent}}%概率造成{{statusEffect}}。" + }, + "EnemyEndureChanceModifierType": { + "description": "增加{{chancePercent}}%遭受攻擊的概率。" + }, + "RARE_CANDY": { + "name": "神奇糖果" + }, + "RARER_CANDY": { + "name": "超神奇糖果" + }, + "MEGA_BRACELET": { + "name": "超級手鐲", + "description": "能讓攜帶着超級石戰鬥的寶可夢進行\n超級進化。" + }, + "DYNAMAX_BAND": { + "name": "極巨腕帶", + "description": "能讓攜帶着極巨菇菇戰鬥的寶可夢進行\n極巨化。" + }, + "TERA_ORB": { + "name": "太晶珠", + "description": "能讓攜帶着太晶碎塊戰鬥的寶可夢進行\n太晶化。" + }, + "MAP": { + "name": "地圖", + "description": "允許你在切換寶可夢羣落時選擇目的地。" + }, + "POTION": { + "name": "傷藥" + }, + "SUPER_POTION": { + "name": "好傷藥" + }, + "HYPER_POTION": { + "name": "厲害傷藥" + }, + "MAX_POTION": { + "name": "全滿藥" + }, + "FULL_RESTORE": { + "name": "全復藥" + }, + "REVIVE": { + "name": "活力碎片" + }, + "MAX_REVIVE": { + "name": "活力塊" + }, + "FULL_HEAL": { + "name": "萬靈藥" + }, + "SACRED_ASH": { + "name": "聖灰" + }, + "REVIVER_SEED": { + "name": "復活種子", + "description": "受到技能攻擊傷害瀕死時,\n恢復該瀕死寶可夢的HP至1/2。" + }, + "ETHER": { + "name": "PP單項小補劑" + }, + "MAX_ETHER": { + "name": "PP單項全補劑" + }, + "ELIXIR": { + "name": "PP多項小補劑" + }, + "MAX_ELIXIR": { + "name": "PP多項全補劑" + }, + "PP_UP": { + "name": "PP提升劑" + }, + "PP_MAX": { + "name": "PP極限提升劑" + }, + "LURE": { + "name": "引蟲香水" + }, + "SUPER_LURE": { + "name": "白銀香水" + }, + "MAX_LURE": { + "name": "黃金香水" + }, + "MEMORY_MUSHROOM": { + "name": "回憶蘑菇", + "description": "回憶一個寶可夢已經遺忘的招式。" + }, + "EXP_SHARE": { + "name": "學習裝置", + "description": "未參加對戰的寶可夢獲得20%的經驗值。" + }, + "EXP_BALANCE": { + "name": "均衡型學習裝置", + "description": "隊伍中的低級寶可夢獲得更多經驗值。" + }, + "OVAL_CHARM": { + "name": "圓形護符", + "description": "當多隻寶可夢參與戰鬥,分別獲得總經驗值\n10%的額外經驗值。" + }, + "EXP_CHARM": { + "name": "經驗護符" + }, + "SUPER_EXP_CHARM": { + "name": "超級經驗護符" + }, + "GOLDEN_EXP_CHARM": { + "name": "黃金經驗護符" + }, + "LUCKY_EGG": { + "name": "幸運蛋" + }, + "GOLDEN_EGG": { + "name": "金蛋" + }, + "SOOTHE_BELL": { + "name": "安撫之鈴" + }, + "SCOPE_LENS": { + "name": "焦點鏡", + "description": "能看見弱點的鏡片。攜帶它的寶可夢的招式 會變得容易擊中要害。" + }, + "LEEK": { + "name": "大蔥", + "description": "非常長且堅硬的莖。讓大蔥鴨攜帶後,招式會 變得容易擊中要害。" + }, + "EVIOLITE": { + "name": "進化奇石", + "description": "進化的神奇石塊。攜帶後,還能進化的寶可夢的 防禦和特防就會提高。" + }, + "SOUL_DEW": { + "name": "心之水滴", + "description": "增加寶可夢性格影響10% (加算)。" + }, + "NUGGET": { + "name": "金珠" + }, + "BIG_NUGGET": { + "name": "巨大金珠" + }, + "RELIC_GOLD": { + "name": "古代金幣" + }, + "AMULET_COIN": { + "name": "護符金幣", + "description": "金錢獎勵增加20%。" + }, + "GOLDEN_PUNCH": { + "name": "黃金拳頭", + "description": "將50%造成的傷害轉換爲金錢。" + }, + "COIN_CASE": { + "name": "代幣盒", + "description": "每十場戰鬥, 獲得自己金錢10%的利息。" + }, + "LOCK_CAPSULE": { + "name": "上鎖的容器", + "description": "允許在刷新物品時鎖定物品稀有度。" + }, + "GRIP_CLAW": { + "name": "緊纏鉤爪" + }, + "WIDE_LENS": { + "name": "廣角鏡" + }, + "MULTI_LENS": { + "name": "多重鏡" + }, + "HEALING_CHARM": { + "name": "治癒護符", + "description": "HP恢復量增加10% (不含復活)。" + }, + "CANDY_JAR": { + "name": "糖果罐", + "description": "神奇糖果提供的升級提升1級。" + }, + "BERRY_POUCH": { + "name": "樹果袋", + "description": "使用樹果時有30%的幾率不會消耗樹果。" + }, + "FOCUS_BAND": { + "name": "氣勢頭帶", + "description": "攜帶該道具的寶可夢有10%幾率在受到\n攻擊而將陷入瀕死狀態時,保留1點HP不陷入瀕死狀態。" + }, + "QUICK_CLAW": { + "name": "先制之爪", + "description": "有10%的幾率無視速度優先使出招式\n(先制技能優先)。" + }, + "KINGS_ROCK": { + "name": "王者之證", + "description": "攜帶該道具的寶可夢使用任意原本不會造成\n畏縮狀態的攻擊招式並造成傷害時,有\n10%幾率使目標陷入畏縮狀態。" + }, + "LEFTOVERS": { + "name": "喫剩的東西", + "description": "攜帶該道具的寶可夢在每個回合結束時恢復\n最大HP的1/16。" + }, + "SHELL_BELL": { + "name": "貝殼之鈴", + "description": "攜帶該道具的寶可夢在攻擊對方成功造成傷\n害時,攜帶者的HP會恢復其所造成傷害\n的1/8。" + }, + "TOXIC_ORB": { + "name": "劇毒寶珠", + "description": "觸碰後會放出毒的神奇寶珠。\n攜帶後,在戰鬥時會變成劇毒狀態。" + }, + "FLAME_ORB": { + "name": "火焰寶珠", + "description": "觸碰後會放出熱量的神奇寶珠。\n攜帶後,在戰鬥時會變成灼傷狀態。" + }, + "BATON": { + "name": "接力棒", + "description": "允許在切換寶可夢時保留能力變化, 對陷阱\n同樣生效。" + }, + "SHINY_CHARM": { + "name": "閃耀護符", + "description": "顯著增加野生寶可夢的閃光概率。" + }, + "ABILITY_CHARM": { + "name": "特性護符", + "description": "顯著增加野生寶可夢有隱藏特性的概率。" + }, + "IV_SCANNER": { + "name": "個體值探測器", + "description": "允許掃描野生寶可夢的個體值。 每個次顯示\n2個個體值. 最好的個體值優先顯示。" + }, + "DNA_SPLICERS": { + "name": "基因之楔" + }, + "MINI_BLACK_HOLE": { + "name": "迷你黑洞" + }, + "GOLDEN_POKEBALL": { + "name": "黃金精靈球", + "description": "在每場戰鬥結束後增加一個額外物品選項。" + }, + "ENEMY_DAMAGE_BOOSTER": { + "name": "傷害硬幣", + "description": "增加5%造成傷害。" + }, + "ENEMY_DAMAGE_REDUCTION": { + "name": "防禦硬幣", + "description": "減少2.5%承受傷害。" + }, + "ENEMY_HEAL": { + "name": "恢復硬幣", + "description": "每回合恢復2%最大HP。" + }, + "ENEMY_ATTACK_POISON_CHANCE": { + "name": "劇毒硬幣" + }, + "ENEMY_ATTACK_PARALYZE_CHANCE": { + "name": "麻痹硬幣" + }, + "ENEMY_ATTACK_BURN_CHANCE": { + "name": "灼燒硬幣" + }, + "ENEMY_STATUS_EFFECT_HEAL_CHANCE": { + "name": "萬靈藥硬幣", + "description": "增加2.5%每回合治癒異常狀態的概率。" + }, + "ENEMY_ENDURE_CHANCE": { + "name": "忍受硬幣" + }, + "ENEMY_FUSED_CHANCE": { + "name": "融合硬幣", + "description": "增加1%野生融合寶可夢出現概率。" + } + }, + "SpeciesBoosterItem": { + "LIGHT_BALL": { + "name": "電氣球", + "description": "讓皮卡丘攜帶後,攻擊和特攻就會 提高的神奇之球。" + }, + "THICK_CLUB": { + "name": "粗骨頭", + "description": "某種堅硬的骨頭。讓卡拉卡拉或嘎啦嘎啦攜帶後,攻擊就會提高。" + }, + "METAL_POWDER": { + "name": "金屬粉", + "description": "讓百變怪攜帶後,防禦就會提高的神奇粉末。非常細緻堅硬。" + }, + "QUICK_POWDER": { + "name": "速度粉", + "description": "讓百變怪攜帶後,速度就會提高的神奇粉末。非常細緻堅硬。" + } + }, + "TempBattleStatBoosterItem": { + "x_attack": "力量強化", + "x_defense": "防禦強化", + "x_sp_atk": "特攻強化", + "x_sp_def": "特防強化", + "x_speed": "速度強化", + "x_accuracy": "命中強化", + "dire_hit": "要害攻擊" + }, + "TempBattleStatBoosterStatName": { + "ATK": "攻擊", + "DEF": "防禦", + "SPATK": "特攻", + "SPDEF": "特防", + "SPD": "速度", + "ACC": "命中", + "CRIT": "會心", + "EVA": "閃避", + "DEFAULT": "???" + }, + "AttackTypeBoosterItem": { + "silk_scarf": "絲綢圍巾", + "black_belt": "黑帶", + "sharp_beak": "銳利鳥嘴", + "poison_barb": "毒針", + "soft_sand": "柔軟沙子", + "hard_stone": "硬石頭", + "silver_powder": "銀粉", + "spell_tag": "詛咒之符", + "metal_coat": "金屬膜", + "charcoal": "木炭", + "mystic_water": "神祕水滴", + "miracle_seed": "奇蹟種子", + "magnet": "磁鐵", + "twisted_spoon": "彎曲的湯匙", + "never_melt_ice": "不融冰", + "dragon_fang": "龍之牙", + "black_glasses": "黑色眼鏡", + "fairy_feather": "妖精之羽" + }, + "BaseStatBoosterItem": { + "hp_up": "HP增強劑", + "protein": "攻擊增強劑", + "iron": "防禦增強劑", + "calcium": "特攻增強劑", + "zinc": "特防增強劑", + "carbos": "速度增強劑" + }, + "EvolutionItem": { + "NONE": "無", + "LINKING_CORD": "聯繫繩", + "SUN_STONE": "日之石", + "MOON_STONE": "月之石", + "LEAF_STONE": "葉之石", + "FIRE_STONE": "火之石", + "WATER_STONE": "水之石", + "THUNDER_STONE": "雷之石", + "ICE_STONE": "冰之石", + "DUSK_STONE": "暗之石", + "DAWN_STONE": "覺醒之石", + "SHINY_STONE": "光之石", + "CRACKED_POT": "破裂的茶壺", + "SWEET_APPLE": "甜甜蘋果", + "TART_APPLE": "酸酸蘋果", + "STRAWBERRY_SWEET": "草莓糖飾", + "UNREMARKABLE_TEACUP": "凡作茶碗", + "CHIPPED_POT": "缺損的茶壺", + "BLACK_AUGURITE": "黑奇石", + "GALARICA_CUFF": "伽勒豆蔻手環", + "GALARICA_WREATH": "伽勒豆蔻花圈", + "PEAT_BLOCK": "泥炭塊", + "AUSPICIOUS_ARMOR": "慶祝之鎧", + "MALICIOUS_ARMOR": "咒術之鎧", + "MASTERPIECE_TEACUP": "傑作茶碗", + "METAL_ALLOY": "複合金屬", + "SCROLL_OF_DARKNESS": "惡之掛軸", + "SCROLL_OF_WATERS": "水之掛軸", + "SYRUPY_APPLE": "蜜汁蘋果" + }, + "FormChangeItem": { + "NONE": "無", + "ABOMASITE": "暴雪王進化石", + "ABSOLITE": "阿勃梭魯進化石", + "AERODACTYLITE": "化石翼龍進化石", + "AGGRONITE": "波士可多拉進化石", + "ALAKAZITE": "胡地進化石", + "ALTARIANITE": "七夕青鳥進化石", + "AMPHAROSITE": "電龍進化石", + "AUDINITE": "差不多娃娃進化石", + "BANETTITE": "詛咒娃娃進化石", + "BEEDRILLITE": "大針蜂進化石", + "BLASTOISINITE": "水箭龜進化石", + "BLAZIKENITE": "火焰雞進化石", + "CAMERUPTITE": "噴火駝進化石", + "CHARIZARDITE_X": "噴火龍進化石X", + "CHARIZARDITE_Y": "噴火龍進化石Y", + "DIANCITE": "蒂安希進化石", + "GALLADITE": "艾路雷朵進化石", + "GARCHOMPITE": "烈咬陸鯊進化石", + "GARDEVOIRITE": "沙奈朵進化石", + "GENGARITE": "耿鬼進化石", + "GLALITITE": "冰鬼護進化石", + "GYARADOSITE": "暴鯉龍進化石", + "HERACRONITE": "赫拉克羅斯進化石", + "HOUNDOOMINITE": "黑魯加進化石", + "KANGASKHANITE": "袋獸進化石", + "LATIASITE": "拉帝亞斯進化石", + "LATIOSITE": "拉帝歐斯進化石", + "LOPUNNITE": "長耳兔進化石", + "LUCARIONITE": "路卡利歐進化石", + "MANECTITE": "雷電獸進化石", + "MAWILITE": "大嘴娃進化石", + "MEDICHAMITE": "恰雷姆進化石", + "METAGROSSITE": "巨金怪進化石", + "MEWTWONITE_X": "超夢進化石X", + "MEWTWONITE_Y": "超夢進化石Y", + "PIDGEOTITE": "大比鳥進化石", + "PINSIRITE": "凱羅斯進化石", + "RAYQUAZITE": "烈空坐進化石", + "SABLENITE": "勾魂眼進化石", + "SALAMENCITE": "暴飛龍進化石", + "SCEPTILITE": "蜥蜴王進化石", + "SCIZORITE": "巨鉗螳螂進化石", + "SHARPEDONITE": "巨牙鯊進化石", + "SLOWBRONITE": "呆殼獸進化石", + "STEELIXITE": "大鋼蛇進化石", + "SWAMPERTITE": "巨沼怪進化石", + "TYRANITARITE": "班基拉斯進化石", + "VENUSAURITE": "妙蛙花進化石", + "BLUE_ORB": "靛藍色寶珠", + "RED_ORB": "硃紅色寶珠", + "SHARP_METEORITE": "銳利隕石", + "HARD_METEORITE": "堅硬隕石", + "SMOOTH_METEORITE": "光滑隕石", + "ADAMANT_CRYSTAL": "大金剛寶玉", + "LUSTROUS_GLOBE": "大白寶玉", + "GRISEOUS_CORE": "大白金寶玉", + "REVEAL_GLASS": "現形鏡", + "GRACIDEA": "葛拉西蒂亞花", + "MAX_MUSHROOMS": "極巨菇菇", + "DARK_STONE": "黑暗石", + "LIGHT_STONE": "光明石", + "PRISON_BOTTLE": "懲戒之壺", + "N_LUNARIZER": "奈克洛露奈合體器", + "N_SOLARIZER": "奈克洛索爾合體器", + "RUSTED_SWORD": "腐朽的劍", + "RUSTED_SHIELD": "腐朽的盾", + "ICY_REINS_OF_UNITY": "牽絆繮繩(冰)", + "SHADOW_REINS_OF_UNITY": "牽絆繮繩(幽靈)", + "WELLSPRING_MASK": "水井面具", + "HEARTHFLAME_MASK": "火竈面具", + "CORNERSTONE_MASK": "礎石面具", + "SHOCK_DRIVE": "閃電卡帶", + "BURN_DRIVE": "火焰卡帶", + "CHILL_DRIVE": "冰凍卡帶", + "DOUSE_DRIVE": "水流卡帶", + "ULTRANECROZIUM_Z": "究極奈克洛Z", + "FIST_PLATE": "拳頭石板", + "SKY_PLATE": "藍天石板", + "TOXIC_PLATE": "劇毒石板", + "EARTH_PLATE": "大地石板", + "STONE_PLATE": "岩石石板", + "INSECT_PLATE": "玉蟲石板", + "SPOOKY_PLATE": "妖怪石板", + "IRON_PLATE": "鋼鐵石板", + "FLAME_PLATE": "火球石板", + "SPLASH_PLATE": "水滴石板", + "MEADOW_PLATE": "碧綠石板", + "ZAP_PLATE": "雷電石板", + "MIND_PLATE": "神奇石板", + "ICICLE_PLATE": "冰柱石板", + "DRACO_PLATE": "龍之石板", + "DREAD_PLATE": "惡顏石板", + "PIXIE_PLATE": "妖精石板", + "BLANK_PLATE": "淨空石板", + "LEGEND_PLATE": "傳說石板", + "FIGHTING_MEMORY": "戰鬥記憶碟", + "FLYING_MEMORY": "飛翔記憶碟", + "POISON_MEMORY": "毒記憶碟", + "GROUND_MEMORY": "大地記憶碟", + "ROCK_MEMORY": "岩石記憶碟", + "BUG_MEMORY": "蟲子記憶碟", + "GHOST_MEMORY": "幽靈記憶碟", + "STEEL_MEMORY": "鋼鐵記憶碟", + "FIRE_MEMORY": "火焰記憶碟", + "WATER_MEMORY": "清水記憶碟", + "GRASS_MEMORY": "青草記憶碟", + "ELECTRIC_MEMORY": "電子記憶碟", + "PSYCHIC_MEMORY": "精神記憶碟", + "ICE_MEMORY": "冰雪記憶碟", + "DRAGON_MEMORY": "龍記憶碟", + "DARK_MEMORY": "黑暗記憶碟", + "FAIRY_MEMORY": "妖精記憶碟", + "BLANK_MEMORY": "空白記憶碟" + } +} \ No newline at end of file diff --git a/src/locales/zh_TW/modifier-type.ts b/src/locales/zh_TW/modifier-type.ts deleted file mode 100644 index ccec2c96bb2..00000000000 --- a/src/locales/zh_TW/modifier-type.ts +++ /dev/null @@ -1,520 +0,0 @@ -import { ModifierTypeTranslationEntries } from "#app/interfaces/locales"; - -export const modifierType: ModifierTypeTranslationEntries = { - ModifierType: { - AddPokeballModifierType: { - name: "{{modifierCount}}x {{pokeballName}}", - description: - "獲得 {{pokeballName}} x{{modifierCount}} (已有:{{pokeballAmount}}) \n捕捉倍率:{{catchRate}}。", - }, - AddVoucherModifierType: { - name: "{{modifierCount}}x {{voucherTypeName}}", - description: "獲得 {{voucherTypeName}} x{{modifierCount}}。", - }, - PokemonHeldItemModifierType: { - extra: { - inoperable: "{{pokemonName}} 無法攜帶\n這個物品!", - tooMany: "{{pokemonName}} 已有太多\n這個物品!", - }, - }, - PokemonHpRestoreModifierType: { - description: - "爲一隻寶可夢恢復 {{restorePoints}} HP 或 {{restorePercent}}% HP,取最大值。", - extra: { - fully: "爲一隻寶可夢恢復全部HP。", - fullyWithStatus: "爲一隻寶可夢恢復全部HP並消除所有負面\n狀態。", - }, - }, - PokemonReviveModifierType: { - description: "復活一隻寶可夢並恢復 {{restorePercent}}% HP。", - }, - PokemonStatusHealModifierType: { - description: "爲一隻寶可夢消除所有負面狀態。", - }, - PokemonPpRestoreModifierType: { - description: "爲一隻寶可夢的一個招式恢復 {{restorePoints}} PP。", - extra: { fully: "完全恢復一隻寶可夢一個招式的PP。" }, - }, - PokemonAllMovePpRestoreModifierType: { - description: "爲一隻寶可夢的所有招式恢復 {{restorePoints}} PP。", - extra: { fully: "爲一隻寶可夢的所有招式恢復所有PP。" }, - }, - PokemonPpUpModifierType: { - description: - "永久提升一個招式的PP,每5點最大PP增加{{upPoints}} (最多3點)。", - }, - PokemonNatureChangeModifierType: { - name: "{{natureName}}薄荷", - description: - "將一隻寶可夢的性格改爲{{natureName}}併爲該寶可\n夢永久解鎖該性格。", - }, - DoubleBattleChanceBoosterModifierType: { - description: "接下來的{{battleCount}}場戰鬥是雙打的概率翻倍。", - }, - TempBattleStatBoosterModifierType: { - description: - "爲所有成員寶可夢提升一級{{tempBattleStatName}},持續5場戰鬥。", - }, - AttackTypeBoosterModifierType: { - description: "一隻寶可夢的{{moveType}}系招式威力提升20%。", - }, - PokemonLevelIncrementModifierType: { - description: "Increases a Pokémon's level by {{levels}}.", - }, - AllPokemonLevelIncrementModifierType: { - description: "Increases all party members' level by {{levels}}.", - }, - PokemonBaseStatBoosterModifierType: { - description: - "增加持有者的{{statName}}10%,個體值越高堆疊\n上限越高。", - }, - AllPokemonFullHpRestoreModifierType: { - description: "所有寶可夢完全恢復HP。", - }, - AllPokemonFullReviveModifierType: { - description: "復活所有瀕死寶可夢,完全恢復HP。", - }, - MoneyRewardModifierType: { - description: "獲得{{moneyMultiplier}}金錢 (₽{{moneyAmount}})。", - extra: { small: "少量", moderate: "中等", large: "大量" }, - }, - ExpBoosterModifierType: { - description: "經驗值獲取量增加{{boostPercent}}%。", - }, - PokemonExpBoosterModifierType: { - description: "持有者經驗值獲取量增加{{boostPercent}}%。", - }, - PokemonFriendshipBoosterModifierType: { - description: "每場戰鬥獲得的好感度提升50%。", - }, - PokemonMoveAccuracyBoosterModifierType: { - description: "招式命中率增加{{accuracyAmount}} (最大100)。", - }, - PokemonMultiHitModifierType: { - description: - "攻擊造成一次額外傷害,每次堆疊額外傷害\n分別衰減60/75/82.5%。", - }, - TmModifierType: { - name: "招式學習器 {{moveId}} - {{moveName}}", - description: "教會一隻寶可夢{{moveName}}。", - }, - TmModifierTypeWithInfo: { - name: "TM{{moveId}} - {{moveName}}", - description: "教會一隻寶可夢{{moveName}}\n(Hold C or Shift for more info)。", - }, - EvolutionItemModifierType: { description: "使某些寶可夢進化。" }, - FormChangeItemModifierType: { description: "使某些寶可夢更改形態。" }, - FusePokemonModifierType: { - description: - "融合兩隻寶可夢 (改變特性, 平分基礎點數\n和屬性, 共享招式池)。", - }, - TerastallizeModifierType: { - name: "{{teraType}}太晶碎塊", - description: "持有者獲得{{teraType}}太晶化10場戰鬥。", - }, - ContactHeldItemTransferChanceModifierType: { - description: "攻擊時{{chancePercent}}%概率偷取對手物品。", - }, - TurnHeldItemTransferModifierType: { - description: "持有者每回合從對手那裏獲得一個持有的物品。", - }, - EnemyAttackStatusEffectChanceModifierType: { - description: "攻擊時{{chancePercent}}%概率造成{{statusEffect}}。", - }, - EnemyEndureChanceModifierType: { - description: "增加{{chancePercent}}%遭受攻擊的概率。", - }, - RARE_CANDY: { name: "神奇糖果" }, - RARER_CANDY: { name: "超神奇糖果" }, - MEGA_BRACELET: { - name: "超級手鐲", - description: "能讓攜帶着超級石戰鬥的寶可夢進行\n超級進化。", - }, - DYNAMAX_BAND: { - name: "極巨腕帶", - description: "能讓攜帶着極巨菇菇戰鬥的寶可夢進行\n極巨化。", - }, - TERA_ORB: { - name: "太晶珠", - description: "能讓攜帶着太晶碎塊戰鬥的寶可夢進行\n太晶化。", - }, - MAP: { - name: "地圖", - description: "允許你在切換寶可夢羣落時選擇目的地。", - }, - POTION: { name: "傷藥" }, - SUPER_POTION: { name: "好傷藥" }, - HYPER_POTION: { name: "厲害傷藥" }, - MAX_POTION: { name: "全滿藥" }, - FULL_RESTORE: { name: "全復藥" }, - REVIVE: { name: "活力碎片" }, - MAX_REVIVE: { name: "活力塊" }, - FULL_HEAL: { name: "萬靈藥" }, - SACRED_ASH: { name: "聖灰" }, - REVIVER_SEED: { - name: "復活種子", - description: "受到技能攻擊傷害瀕死時,\n恢復該瀕死寶可夢的HP至1/2。", - }, - WHITE_HERB: { - name: "White Herb", - description: "An item to be held by a Pokémon. It will restore any lowered stat in battle.", - }, - ETHER: { name: "PP單項小補劑" }, - MAX_ETHER: { name: "PP單項全補劑" }, - ELIXIR: { name: "PP多項小補劑" }, - MAX_ELIXIR: { name: "PP多項全補劑" }, - PP_UP: { name: "PP提升劑" }, - PP_MAX: { name: "PP極限提升劑" }, - LURE: { name: "引蟲香水" }, - SUPER_LURE: { name: "白銀香水" }, - MAX_LURE: { name: "黃金香水" }, - MEMORY_MUSHROOM: { - name: "回憶蘑菇", - description: "回憶一個寶可夢已經遺忘的招式。", - }, - EXP_SHARE: { - name: "學習裝置", - description: "未參加對戰的寶可夢獲得20%的經驗值。", - }, - EXP_BALANCE: { - name: "均衡型學習裝置", - description: "隊伍中的低級寶可夢獲得更多經驗值。", - }, - OVAL_CHARM: { - name: "圓形護符", - description: - "當多隻寶可夢參與戰鬥,分別獲得總經驗值\n10%的額外經驗值。", - }, - EXP_CHARM: { name: "經驗護符" }, - SUPER_EXP_CHARM: { name: "超級經驗護符" }, - GOLDEN_EXP_CHARM: { name: "黃金經驗護符" }, - LUCKY_EGG: { name: "幸運蛋" }, - GOLDEN_EGG: { name: "金蛋" }, - SOOTHE_BELL: { name: "安撫之鈴" }, - SCOPE_LENS: { - name: "焦點鏡", - description: "能看見弱點的鏡片。攜帶它的寶可夢的招式 會變得容易擊中要害。" - }, - LEEK: { - name: "大蔥", - description: "非常長且堅硬的莖。讓大蔥鴨攜帶後,招式會 變得容易擊中要害。" - }, - EVIOLITE: { - name: "進化奇石", - description: "進化的神奇石塊。攜帶後,還能進化的寶可夢的 防禦和特防就會提高。" - }, - SOUL_DEW: { - name: "心之水滴", - description: "增加寶可夢性格影響10% (加算)。", - }, - NUGGET: { name: "金珠" }, - BIG_NUGGET: { name: "巨大金珠" }, - RELIC_GOLD: { name: "古代金幣" }, - AMULET_COIN: { name: "護符金幣", description: "金錢獎勵增加20%。" }, - GOLDEN_PUNCH: { - name: "黃金拳頭", - description: "將50%造成的傷害轉換爲金錢。", - }, - COIN_CASE: { - name: "代幣盒", - description: "每十場戰鬥, 獲得自己金錢10%的利息。", - }, - LOCK_CAPSULE: { - name: "上鎖的容器", - description: "允許在刷新物品時鎖定物品稀有度。", - }, - GRIP_CLAW: { name: "緊纏鉤爪" }, - WIDE_LENS: { name: "廣角鏡" }, - MULTI_LENS: { name: "多重鏡" }, - HEALING_CHARM: { - name: "治癒護符", - description: "HP恢復量增加10% (不含復活)。", - }, - CANDY_JAR: { name: "糖果罐", description: "神奇糖果提供的升級提升1級。" }, - BERRY_POUCH: { - name: "樹果袋", - description: "使用樹果時有30%的幾率不會消耗樹果。", - }, - FOCUS_BAND: { - name: "氣勢頭帶", - description: - "攜帶該道具的寶可夢有10%幾率在受到\n攻擊而將陷入瀕死狀態時,保留1點HP不陷入瀕死狀態。", - }, - QUICK_CLAW: { - name: "先制之爪", - description: "有10%的幾率無視速度優先使出招式\n(先制技能優先)。", - }, - KINGS_ROCK: { - name: "王者之證", - description: - "攜帶該道具的寶可夢使用任意原本不會造成\n畏縮狀態的攻擊招式並造成傷害時,有\n10%幾率使目標陷入畏縮狀態。", - }, - LEFTOVERS: { - name: "喫剩的東西", - description: "攜帶該道具的寶可夢在每個回合結束時恢復\n最大HP的1/16。", - }, - SHELL_BELL: { - name: "貝殼之鈴", - description: - "攜帶該道具的寶可夢在攻擊對方成功造成傷\n害時,攜帶者的HP會恢復其所造成傷害\n的1/8。", - }, - TOXIC_ORB: { - name: "劇毒寶珠", - description: - "觸碰後會放出毒的神奇寶珠。\n攜帶後,在戰鬥時會變成劇毒狀態。" - }, - FLAME_ORB: { - name: "火焰寶珠", - description: - "觸碰後會放出熱量的神奇寶珠。\n攜帶後,在戰鬥時會變成灼傷狀態。" - }, - BATON: { - name: "接力棒", - description: "允許在切換寶可夢時保留能力變化, 對陷阱\n同樣生效。", - }, - SHINY_CHARM: { - name: "閃耀護符", - description: "顯著增加野生寶可夢的閃光概率。", - }, - ABILITY_CHARM: { - name: "特性護符", - description: "顯著增加野生寶可夢有隱藏特性的概率。", - }, - IV_SCANNER: { - name: "個體值探測器", - description: - "允許掃描野生寶可夢的個體值。 每個次顯示\n2個個體值. 最好的個體值優先顯示。", - }, - DNA_SPLICERS: { name: "基因之楔" }, - MINI_BLACK_HOLE: { name: "迷你黑洞" }, - GOLDEN_POKEBALL: { - name: "黃金精靈球", - description: "在每場戰鬥結束後增加一個額外物品選項。", - }, - ENEMY_DAMAGE_BOOSTER: { - name: "傷害硬幣", - description: "增加5%造成傷害。", - }, - ENEMY_DAMAGE_REDUCTION: { - name: "防禦硬幣", - description: "減少2.5%承受傷害。", - }, - ENEMY_HEAL: { name: "恢復硬幣", description: "每回合恢復2%最大HP。" }, - ENEMY_ATTACK_POISON_CHANCE: { name: "劇毒硬幣" }, - ENEMY_ATTACK_PARALYZE_CHANCE: { name: "麻痹硬幣" }, - ENEMY_ATTACK_BURN_CHANCE: { name: "灼燒硬幣" }, - ENEMY_STATUS_EFFECT_HEAL_CHANCE: { - name: "萬靈藥硬幣", - description: "增加2.5%每回合治癒異常狀態的概率。", - }, - ENEMY_ENDURE_CHANCE: { name: "忍受硬幣" }, - ENEMY_FUSED_CHANCE: { - name: "融合硬幣", - description: "增加1%野生融合寶可夢出現概率。", - }, - }, - SpeciesBoosterItem: { - "LIGHT_BALL": { name: "電氣球", description: "讓皮卡丘攜帶後,攻擊和特攻就會 提高的神奇之球。" }, - "THICK_CLUB": { name: "粗骨頭", description: "某種堅硬的骨頭。讓卡拉卡拉或嘎啦嘎啦攜帶後,攻擊就會提高。" }, - "METAL_POWDER": { name: "金屬粉", description: "讓百變怪攜帶後,防禦就會提高的神奇粉末。非常細緻堅硬。" }, - "QUICK_POWDER": { name: "速度粉", description: "讓百變怪攜帶後,速度就會提高的神奇粉末。非常細緻堅硬。" } - }, - TempBattleStatBoosterItem: { - x_attack: "力量強化", - x_defense: "防禦強化", - x_sp_atk: "特攻強化", - x_sp_def: "特防強化", - x_speed: "速度強化", - x_accuracy: "命中強化", - dire_hit: "要害攻擊", - }, - - TempBattleStatBoosterStatName: { - "ATK": "攻擊", - "DEF": "防禦", - "SPATK": "特攻", - "SPDEF": "特防", - "SPD": "速度", - "ACC": "命中", - "CRIT": "會心", - "EVA": "閃避", - "DEFAULT": "???", - }, - - AttackTypeBoosterItem: { - silk_scarf: "絲綢圍巾", - black_belt: "黑帶", - sharp_beak: "銳利鳥嘴", - poison_barb: "毒針", - soft_sand: "柔軟沙子", - hard_stone: "硬石頭", - silver_powder: "銀粉", - spell_tag: "詛咒之符", - metal_coat: "金屬膜", - charcoal: "木炭", - mystic_water: "神祕水滴", - miracle_seed: "奇蹟種子", - magnet: "磁鐵", - twisted_spoon: "彎曲的湯匙", - never_melt_ice: "不融冰", - dragon_fang: "龍之牙", - black_glasses: "黑色眼鏡", - fairy_feather: "妖精之羽", - }, - BaseStatBoosterItem: { - hp_up: "HP增強劑", - protein: "攻擊增強劑", - iron: "防禦增強劑", - calcium: "特攻增強劑", - zinc: "特防增強劑", - carbos: "速度增強劑", - }, - EvolutionItem: { - NONE: "無", - LINKING_CORD: "聯繫繩", - SUN_STONE: "日之石", - MOON_STONE: "月之石", - LEAF_STONE: "葉之石", - FIRE_STONE: "火之石", - WATER_STONE: "水之石", - THUNDER_STONE: "雷之石", - ICE_STONE: "冰之石", - DUSK_STONE: "暗之石", - DAWN_STONE: "覺醒之石", - SHINY_STONE: "光之石", - CRACKED_POT: "破裂的茶壺", - SWEET_APPLE: "甜甜蘋果", - TART_APPLE: "酸酸蘋果", - STRAWBERRY_SWEET: "草莓糖飾", - UNREMARKABLE_TEACUP: "凡作茶碗", - CHIPPED_POT: "缺損的茶壺", - BLACK_AUGURITE: "黑奇石", - GALARICA_CUFF: "伽勒豆蔻手環", - GALARICA_WREATH: "伽勒豆蔻花圈", - PEAT_BLOCK: "泥炭塊", - AUSPICIOUS_ARMOR: "慶祝之鎧", - MALICIOUS_ARMOR: "咒術之鎧", - MASTERPIECE_TEACUP: "傑作茶碗", - METAL_ALLOY: "複合金屬", - SCROLL_OF_DARKNESS: "惡之掛軸", - SCROLL_OF_WATERS: "水之掛軸", - SYRUPY_APPLE: "蜜汁蘋果", - }, - FormChangeItem: { - NONE: "無", - ABOMASITE: "暴雪王進化石", - ABSOLITE: "阿勃梭魯進化石", - AERODACTYLITE: "化石翼龍進化石", - AGGRONITE: "波士可多拉進化石", - ALAKAZITE: "胡地進化石", - ALTARIANITE: "七夕青鳥進化石", - AMPHAROSITE: "電龍進化石", - AUDINITE: "差不多娃娃進化石", - BANETTITE: "詛咒娃娃進化石", - BEEDRILLITE: "大針蜂進化石", - BLASTOISINITE: "水箭龜進化石", - BLAZIKENITE: "火焰雞進化石", - CAMERUPTITE: "噴火駝進化石", - CHARIZARDITE_X: "噴火龍進化石X", - CHARIZARDITE_Y: "噴火龍進化石Y", - DIANCITE: "蒂安希進化石", - GALLADITE: "艾路雷朵進化石", - GARCHOMPITE: "烈咬陸鯊進化石", - GARDEVOIRITE: "沙奈朵進化石", - GENGARITE: "耿鬼進化石", - GLALITITE: "冰鬼護進化石", - GYARADOSITE: "暴鯉龍進化石", - HERACRONITE: "赫拉克羅斯進化石", - HOUNDOOMINITE: "黑魯加進化石", - KANGASKHANITE: "袋獸進化石", - LATIASITE: "拉帝亞斯進化石", - LATIOSITE: "拉帝歐斯進化石", - LOPUNNITE: "長耳兔進化石", - LUCARIONITE: "路卡利歐進化石", - MANECTITE: "雷電獸進化石", - MAWILITE: "大嘴娃進化石", - MEDICHAMITE: "恰雷姆進化石", - METAGROSSITE: "巨金怪進化石", - MEWTWONITE_X: "超夢進化石X", - MEWTWONITE_Y: "超夢進化石Y", - PIDGEOTITE: "大比鳥進化石", - PINSIRITE: "凱羅斯進化石", - RAYQUAZITE: "烈空坐進化石", - SABLENITE: "勾魂眼進化石", - SALAMENCITE: "暴飛龍進化石", - SCEPTILITE: "蜥蜴王進化石", - SCIZORITE: "巨鉗螳螂進化石", - SHARPEDONITE: "巨牙鯊進化石", - SLOWBRONITE: "呆殼獸進化石", - STEELIXITE: "大鋼蛇進化石", - SWAMPERTITE: "巨沼怪進化石", - TYRANITARITE: "班基拉斯進化石", - VENUSAURITE: "妙蛙花進化石", - BLUE_ORB: "靛藍色寶珠", - RED_ORB: "硃紅色寶珠", - SHARP_METEORITE: "銳利隕石", - HARD_METEORITE: "堅硬隕石", - SMOOTH_METEORITE: "光滑隕石", - ADAMANT_CRYSTAL: "大金剛寶玉", - LUSTROUS_GLOBE: "大白寶玉", - GRISEOUS_CORE: "大白金寶玉", - REVEAL_GLASS: "現形鏡", - GRACIDEA: "葛拉西蒂亞花", - MAX_MUSHROOMS: "極巨菇菇", - DARK_STONE: "黑暗石", - LIGHT_STONE: "光明石", - PRISON_BOTTLE: "懲戒之壺", - N_LUNARIZER: "奈克洛露奈合體器", - N_SOLARIZER: "奈克洛索爾合體器", - RUSTED_SWORD: "腐朽的劍", - RUSTED_SHIELD: "腐朽的盾", - ICY_REINS_OF_UNITY: "牽絆繮繩(冰)", - SHADOW_REINS_OF_UNITY: "牽絆繮繩(幽靈)", - WELLSPRING_MASK: "水井面具", - HEARTHFLAME_MASK: "火竈面具", - CORNERSTONE_MASK: "礎石面具", - SHOCK_DRIVE: "閃電卡帶", - BURN_DRIVE: "火焰卡帶", - CHILL_DRIVE: "冰凍卡帶", - DOUSE_DRIVE: "水流卡帶", - ULTRANECROZIUM_Z: "究極奈克洛Z", - - "FIST_PLATE": "拳頭石板", - "SKY_PLATE": "藍天石板", - "TOXIC_PLATE": "劇毒石板", - "EARTH_PLATE": "大地石板", - "STONE_PLATE": "岩石石板", - "INSECT_PLATE": "玉蟲石板", - "SPOOKY_PLATE": "妖怪石板", - "IRON_PLATE": "鋼鐵石板", - "FLAME_PLATE": "火球石板", - "SPLASH_PLATE": "水滴石板", - "MEADOW_PLATE": "碧綠石板", - "ZAP_PLATE": "雷電石板", - "MIND_PLATE": "神奇石板", - "ICICLE_PLATE": "冰柱石板", - "DRACO_PLATE": "龍之石板", - "DREAD_PLATE": "惡顏石板", - "PIXIE_PLATE": "妖精石板", - "BLANK_PLATE": "淨空石板", - "LEGEND_PLATE": "傳說石板", - "FIGHTING_MEMORY": "戰鬥記憶碟", - "FLYING_MEMORY": "飛翔記憶碟", - "POISON_MEMORY": "毒記憶碟", - "GROUND_MEMORY": "大地記憶碟", - "ROCK_MEMORY": "岩石記憶碟", - "BUG_MEMORY": "蟲子記憶碟", - "GHOST_MEMORY": "幽靈記憶碟", - "STEEL_MEMORY": "鋼鐵記憶碟", - "FIRE_MEMORY": "火焰記憶碟", - "WATER_MEMORY": "清水記憶碟", - "GRASS_MEMORY": "青草記憶碟", - "ELECTRIC_MEMORY": "電子記憶碟", - "PSYCHIC_MEMORY": "精神記憶碟", - "ICE_MEMORY": "冰雪記憶碟", - "DRAGON_MEMORY": "龍記憶碟", - "DARK_MEMORY": "黑暗記憶碟", - "FAIRY_MEMORY": "妖精記憶碟", - "BLANK_MEMORY": "空白記憶碟", - }, -} as const; diff --git a/src/locales/zh_TW/modifier.ts b/src/locales/zh_TW/modifier.json similarity index 74% rename from src/locales/zh_TW/modifier.ts rename to src/locales/zh_TW/modifier.json index 7909e8150a0..eb4b5107cff 100644 --- a/src/locales/zh_TW/modifier.ts +++ b/src/locales/zh_TW/modifier.json @@ -1,14 +1,11 @@ -import { SimpleTranslationEntries } from "#app/interfaces/locales"; - -export const modifier: SimpleTranslationEntries = { +{ "surviveDamageApply": "{{pokemonNameWithAffix}}用{{typeName}}\n撐住了!", "turnHealApply": "{{pokemonNameWithAffix}}用{{typeName}}\n回復了體力!", "hitHealApply": "{{pokemonNameWithAffix}}用{{typeName}}\n回復了體力!", "pokemonInstantReviveApply": "{{pokemonNameWithAffix}}用{{typeName}}\n回復了活力!", - "pokemonResetNegativeStatStageApply": "{{pokemonNameWithAffix}}'s lowered stats were restored\nby its {{typeName}}!", "moneyInterestApply": "用{{typeName}}\n獲得了 ₽{{moneyAmount}} 利息!", "turnHeldItemTransferApply": "{{pokemonNameWithAffix}}的{{itemName}}被\n{{pokemonName}}的{{typeName}}吸收了!", "contactHeldItemTransferApply": "{{pokemonNameWithAffix}}的{{itemName}}被\n{{pokemonName}}的{{typeName}}奪取了!", "enemyTurnHealApply": "{{pokemonNameWithAffix}}\n回復了一些體力!", - "bypassSpeedChanceApply": "{{pokemonName}}用了{{itemName}}後,行動變快了!", -} as const; + "bypassSpeedChanceApply": "{{pokemonName}}用了{{itemName}}後,行動變快了!" +} \ No newline at end of file diff --git a/src/locales/zh_TW/move-trigger.ts b/src/locales/zh_TW/move-trigger.json similarity index 94% rename from src/locales/zh_TW/move-trigger.ts rename to src/locales/zh_TW/move-trigger.json index 9eb7a38dfb3..03ca6841a7f 100644 --- a/src/locales/zh_TW/move-trigger.ts +++ b/src/locales/zh_TW/move-trigger.json @@ -1,7 +1,5 @@ -import { SimpleTranslationEntries } from "#app/interfaces/locales"; - -export const moveTriggers: SimpleTranslationEntries = { - "hitWithRecoil" : "{{pokemonName}}\n受到了反作用力造成的傷害!", +{ + "hitWithRecoil": "{{pokemonName}}\n受到了反作用力造成的傷害!", "cutHpPowerUpMove": "{{pokemonName}}\n削減體力並提升了招式威力!", "absorbedElectricity": "{{pokemonName}}\n吸收了电力!", "switchedStatChanges": "{{pokemonName}}和對手互換了\n自身的能力變化!", @@ -61,6 +59,7 @@ export const moveTriggers: SimpleTranslationEntries = { "faintCountdown": "{{pokemonName}}\n將在{{turnCount}}回合後滅亡!", "copyType": "{{pokemonName}}變成了{{targetPokemonName}}的屬性!", "suppressAbilities": "{{pokemonName}}的特性\n變得無效了!", + "revivalBlessing": "{{pokemonName}}復活了!", "swapArenaTags": "{{pokemonName}}\n交換了雙方的場地效果!", - "exposedMove": "{{pokemonName}}識破了\n{{targetPokemonName}}的原形!", -} as const; + "exposedMove": "{{pokemonName}}識破了\n{{targetPokemonName}}的原形!" +} \ No newline at end of file diff --git a/src/locales/zh_TW/move.json b/src/locales/zh_TW/move.json new file mode 100644 index 00000000000..101d6f85e5d --- /dev/null +++ b/src/locales/zh_TW/move.json @@ -0,0 +1,3810 @@ +{ + "pound": { + "name": "拍擊", + "effect": "使用長長的尾巴或手等拍打\n對手進行攻擊" + }, + "karateChop": { + "name": "空手劈", + "effect": "用鋒利的手刀劈向對手進行\n攻擊。容易擊中要害" + }, + "doubleSlap": { + "name": "連環巴掌", + "effect": "用連環巴掌拍打對手進行攻\n擊。連續攻擊2~5次" + }, + "cometPunch": { + "name": "連續拳", + "effect": "用拳頭怒濤般的毆打對手進\n行攻擊。連續攻擊2~5次" + }, + "megaPunch": { + "name": "百萬噸重拳", + "effect": "用充滿力量的拳頭攻擊對手" + }, + "payDay": { + "name": "聚寶功", + "effect": "向對手的身體投擲小金幣進\n行攻擊。戰鬥後可以拿到錢" + }, + "firePunch": { + "name": "火焰拳", + "effect": "用充滿火焰的拳頭攻擊對手。\n有時會讓對手陷入灼傷狀\n態" + }, + "icePunch": { + "name": "冰凍拳", + "effect": "用充滿寒氣的拳頭攻擊對手。\n有時會讓對手陷入冰凍狀\n態" + }, + "thunderPunch": { + "name": "雷電拳", + "effect": "用充滿電流的拳頭攻擊對手。\n有時會讓對手陷入麻痹狀\n態" + }, + "scratch": { + "name": "抓", + "effect": "用堅硬且無比鋒利的爪子抓\n對手進行攻擊" + }, + "viseGrip": { + "name": "夾住", + "effect": "將對手從兩側夾住,給予傷\n害" + }, + "guillotine": { + "name": "斷頭鉗", + "effect": "用大鉗子或剪刀等夾斷對手\n進行攻擊。只要命中就會一\n擊瀕死" + }, + "razorWind": { + "name": "旋風刀", + "effect": "製造風之刃,於第2回合攻\n擊對手。容易擊中要害" + }, + "swordsDance": { + "name": "劍舞", + "effect": "激烈地跳起戰舞提高氣勢。\n大幅提高自己的攻擊" + }, + "cut": { + "name": "居合斬", + "effect": "用鐮刀或爪子等切斬對手進\n行攻擊" + }, + "gust": { + "name": "起風", + "effect": "用翅膀將颳起的狂風襲向對\n手進行攻擊" + }, + "wingAttack": { + "name": "翅膀攻擊", + "effect": "大大地展開美麗的翅膀,將\n其撞向對手進行攻擊" + }, + "whirlwind": { + "name": "吹飛", + "effect": "吹飛對手,強制拉後備寶可\n夢上場。如果對手爲野生寶\n可夢,戰鬥將直接結束" + }, + "fly": { + "name": "飛翔", + "effect": "第1回合飛上天空,第2回\n合攻擊對手" + }, + "bind": { + "name": "綁緊", + "effect": "使用長長的身體或藤蔓等,\n在4~5回合內綁緊對手進\n行攻擊" + }, + "slam": { + "name": "摔打", + "effect": "使用長長的尾巴或藤蔓等摔\n打對手進行攻擊" + }, + "vineWhip": { + "name": "藤鞭", + "effect": "用如同鞭子般彎曲而細長的\n藤蔓摔打對手進行攻擊" + }, + "stomp": { + "name": "踩踏", + "effect": "用大腳踩踏對手進行攻擊。\n有時會使對手畏縮" + }, + "doubleKick": { + "name": "二連踢", + "effect": "用2隻腳踢飛對手進行攻擊。\n連續2次給予傷害" + }, + "megaKick": { + "name": "百萬噸重踢", + "effect": "使出力大無窮的重踢踢飛對\n手進行攻擊" + }, + "jumpKick": { + "name": "飛踢", + "effect": "使出高高的騰空踢攻擊對手。\n如果踢偏則自己會受到傷\n害" + }, + "rollingKick": { + "name": "迴旋踢", + "effect": "一邊使身體快速旋轉,一邊\n踢飛對手進行攻擊。有時會\n使對手畏縮" + }, + "sandAttack": { + "name": "潑沙", + "effect": "向對手臉上潑沙子,從而降\n低命中率" + }, + "headbutt": { + "name": "頭錘", + "effect": "將頭伸出,筆直地撲向對手\n進行攻擊。有時會使對手畏\n縮" + }, + "hornAttack": { + "name": "角撞", + "effect": "用尖銳的角攻擊對手" + }, + "furyAttack": { + "name": "亂擊", + "effect": "用角或喙刺向對手進行攻擊。\n連續攻擊2~5次" + }, + "hornDrill": { + "name": "角鑽", + "effect": "用旋轉的角刺入對手進行攻\n擊。只要命中就會一擊昏厥" + }, + "tackle": { + "name": "撞擊", + "effect": "用整個身體撞向對手進行攻\n擊" + }, + "bodySlam": { + "name": "泰山壓頂", + "effect": "用整個身體壓住對手進行攻\n擊。有時會讓對手陷入麻痹\n狀態" + }, + "wrap": { + "name": "緊束", + "effect": "使用長長的身體或藤蔓等,\n在4~5回合內緊束對手進\n行攻擊" + }, + "takeDown": { + "name": "猛撞", + "effect": "以驚人的氣勢撞向對手進行\n攻擊。自己也會受到少許傷\n害" + }, + "thrash": { + "name": "大鬧一番", + "effect": "在2~3回合內,亂打一氣\n地攻擊對手。大鬧一番後自\n己會陷入混亂" + }, + "doubleEdge": { + "name": "捨身衝撞", + "effect": "拼命地猛撞向對手進行攻擊。\n自己也會受到不小的傷害" + }, + "tailWhip": { + "name": "搖尾巴", + "effect": "可愛地左右搖晃尾巴,誘使\n對手疏忽大意。會降低對手\n的防禦" + }, + "poisonSting": { + "name": "毒針", + "effect": "將有毒的針刺入對手進行攻\n擊。有時會讓對手陷入中毒\n狀態" + }, + "twineedle": { + "name": "雙針", + "effect": "將2根針刺入對手,連續2\n次給予傷害。有時會讓對手\n陷入中毒狀態" + }, + "pinMissile": { + "name": "飛彈針", + "effect": "向對手發射銳針進行攻擊。\n連續攻擊2~5次" + }, + "leer": { + "name": "瞪眼", + "effect": "用犀利的眼神使其害怕,從\n而降低對手的防禦" + }, + "bite": { + "name": "咬住", + "effect": "用尖銳的牙咬住對手進行攻\n擊。有時會使對手畏縮" + }, + "growl": { + "name": "叫聲", + "effect": "讓對手聽可愛的叫聲,引開\n注意力使其疏忽,從而降低\n對手的攻擊" + }, + "roar": { + "name": "吼叫", + "effect": "放走對手,強制拉後備寶可\n夢上場。如果對手爲野生寶\n可夢,戰鬥將直接結束" + }, + "sing": { + "name": "唱歌", + "effect": "讓對手聽舒適、美妙的歌聲,\n從而陷入睡眠狀態" + }, + "supersonic": { + "name": "超音波", + "effect": "從身體發出特殊的音波,從\n而使對手混亂" + }, + "sonicBoom": { + "name": "音爆", + "effect": "將衝擊波撞向對手進行攻擊。\n必定會給予20的傷害" + }, + "disable": { + "name": "定身法", + "effect": "阻礙對手行動,之前使出的\n招式將在4回合內無法使用" + }, + "acid": { + "name": "溶解液", + "effect": "將強酸潑向對手進行攻擊。\n有時會降低對手的特防" + }, + "ember": { + "name": "火花", + "effect": "向對手發射小型火焰進行攻\n擊。有時會讓對手陷入灼傷\n狀態" + }, + "flamethrower": { + "name": "噴射火焰", + "effect": "向對手發射烈焰進行攻擊。\n有時會讓對手陷入灼傷狀態" + }, + "mist": { + "name": "白霧", + "effect": "用白霧覆蓋身體。在5回合\n內不會讓對手降低自己的能\n力" + }, + "waterGun": { + "name": "水槍", + "effect": "向對手猛烈地噴射水流進行\n攻擊" + }, + "hydroPump": { + "name": "水炮", + "effect": "向對手猛烈地噴射大量水流\n進行攻擊" + }, + "surf": { + "name": "衝浪", + "effect": "利用大浪攻擊自己周圍所有\n的寶可夢" + }, + "iceBeam": { + "name": "冰凍光束", + "effect": "向對手發射冰凍光束進行攻\n擊。有時會讓對手陷入冰凍\n狀態" + }, + "blizzard": { + "name": "暴風雪", + "effect": "將猛烈的暴風雪刮向對手進\n行攻擊。有時會讓對手陷入\n冰凍狀態" + }, + "psybeam": { + "name": "幻象光線", + "effect": "向對手發射神奇的光線進行\n攻擊。有時會使對手混亂" + }, + "bubbleBeam": { + "name": "泡沫光線", + "effect": "向對手猛烈地噴射泡沫進行\n攻擊。有時會降低對手的速\n度" + }, + "auroraBeam": { + "name": "極光束", + "effect": "向對手發射虹色光束進行攻\n擊。有時會降低對手的攻擊" + }, + "hyperBeam": { + "name": "破壞光線", + "effect": "向對手發射強烈的光線進行\n攻擊。下一回合自己將無法\n動彈" + }, + "peck": { + "name": "啄", + "effect": "用尖銳的喙或角刺向對手進\n行攻擊" + }, + "drillPeck": { + "name": "啄鑽", + "effect": "一邊旋轉,一邊將尖喙刺入\n對手進行攻擊" + }, + "submission": { + "name": "地獄翻滾", + "effect": "將對手連同自己一起摔向地\n面進行攻擊。自己也會受到\n少許傷害" + }, + "lowKick": { + "name": "踢倒", + "effect": "用力踢對手的腳,使其摔倒\n進行攻擊。對手越重,威力\n越大" + }, + "counter": { + "name": "雙倍奉還", + "effect": "從對手那裏受到物理攻擊的\n傷害將以2倍返還給同一個\n對手" + }, + "seismicToss": { + "name": "地球上投", + "effect": "利用引力將對手甩飛出去。\n給予對手和自己等級相同的\n傷害" + }, + "strength": { + "name": "怪力", + "effect": "使出渾身力氣毆打對手進行\n攻擊" + }, + "absorb": { + "name": "吸取", + "effect": "吸取對手的養分進行攻擊。\n可以回覆給予對手傷害的一\n半HP" + }, + "megaDrain": { + "name": "超級吸取", + "effect": "吸取對手的養分進行攻擊。\n可以回覆給予對手傷害的一\n半HP" + }, + "leechSeed": { + "name": "寄生種子", + "effect": "植入寄生種子後,將在每回\n合一點一點吸取對手的HP,\n從而用來回復自己的HP" + }, + "growth": { + "name": "生長", + "effect": "讓身體一下子長大,從而提\n高攻擊和特攻" + }, + "razorLeaf": { + "name": "飛葉快刀", + "effect": "飛出葉片,切斬對手進行攻\n擊。容易擊中要害" + }, + "solarBeam": { + "name": "日光束", + "effect": "第1回合收集滿滿的日光,\n第2回合發射光束進行攻擊" + }, + "poisonPowder": { + "name": "毒粉", + "effect": "撒出毒粉,從而讓對手陷入\n中毒狀態" + }, + "stunSpore": { + "name": "麻痹粉", + "effect": "撒出麻痹粉,從而讓對手陷\n入麻痹狀態" + }, + "sleepPowder": { + "name": "催眠粉", + "effect": "撒出催眠粉,從而讓對手陷\n入睡眠狀態" + }, + "petalDance": { + "name": "花瓣舞", + "effect": "在2~3回合內,散落花瓣\n攻擊對手。之後自己會陷入\n混亂" + }, + "stringShot": { + "name": "吐絲", + "effect": "用口中吐出的絲纏繞對手,\n從而大幅降低對手的速度" + }, + "dragonRage": { + "name": "龍之怒", + "effect": "將憤怒的衝擊波撞向對手進\n行攻擊。必定會給予40的\n傷害" + }, + "fireSpin": { + "name": "火焰旋渦", + "effect": "將對手困在激烈的火焰旋渦\n中,在4~5回合內進行攻\n擊" + }, + "thunderShock": { + "name": "電擊", + "effect": "發出電流刺激對手進行攻擊。\n有時會讓對手陷入麻痹狀\n態" + }, + "thunderbolt": { + "name": "十萬伏特", + "effect": "向對手發出強力電擊進行攻\n擊。有時會讓對手陷入麻痹\n狀態" + }, + "thunderWave": { + "name": "電磁波", + "effect": "向對手發出微弱的電擊,從\n而讓對手陷入麻痹狀態" + }, + "thunder": { + "name": "打雷", + "effect": "向對手劈下暴雷進行攻擊。\n有時會讓對手陷入麻痹狀態" + }, + "rockThrow": { + "name": "落石", + "effect": "拿起小岩石,投擲對手進行\n攻擊" + }, + "earthquake": { + "name": "地震", + "effect": "利用地震的衝擊,攻擊自己\n周圍所有的寶可夢" + }, + "fissure": { + "name": "地裂", + "effect": "讓對手掉落於地裂的裂縫中\n進行攻擊。只要命中就會一\n擊瀕死" + }, + "dig": { + "name": "挖洞", + "effect": "第1回合鑽入地底,第2回\n合攻擊對手" + }, + "toxic": { + "name": "劇毒", + "effect": "讓對手陷入劇毒狀態。隨着\n回合的推進,中毒傷害會增\n加" + }, + "confusion": { + "name": "念力", + "effect": "向對手發送微弱的念力進行\n攻擊。有時會使對手混亂" + }, + "psychic": { + "name": "精神強念", + "effect": "向對手發送強大的念力進行\n攻擊。有時會降低對手的特\n防" + }, + "hypnosis": { + "name": "催眠術", + "effect": "施以誘導睡意的暗示,讓對\n手陷入睡眠狀態" + }, + "meditate": { + "name": "瑜伽姿勢", + "effect": "喚醒身體深處沉睡的力量,\n從而提高自己的攻擊" + }, + "agility": { + "name": "高速移動", + "effect": "讓身體放鬆變得輕盈,以便\n高速移動。大幅提高自己的\n速度" + }, + "quickAttack": { + "name": "電光一閃", + "effect": "以迅雷不及掩耳之勢撲向對\n手。必定能夠先制攻擊" + }, + "rage": { + "name": "憤怒", + "effect": "如果在使出招式後受到攻擊\n的話,會因憤怒的力量而提\n高攻擊" + }, + "teleport": { + "name": "瞬間移動", + "effect": "當有後備寶可夢時使用,就\n可以進行替換。野生的寶可\n夢使用則會逃走" + }, + "nightShade": { + "name": "黑夜魔影", + "effect": "顯示恐怖幻影,只給予對手\n和自己等級相同的傷害" + }, + "mimic": { + "name": "模仿", + "effect": "可以將對手最後使用的招式,\n在戰鬥內變成自己的招式" + }, + "screech": { + "name": "刺耳聲", + "effect": "發出不由自主想要捂起耳朵\n的刺耳聲,從而大幅降低對\n手的防禦" + }, + "doubleTeam": { + "name": "影子分身", + "effect": "通過快速移動來製造分身,\n擾亂對手,從而提高閃避率" + }, + "recover": { + "name": "自我再生", + "effect": "讓細胞再生,從而回復自己\n最大HP的一半" + }, + "harden": { + "name": "變硬", + "effect": "全身使勁,讓身體變硬,從\n而提高自己的防禦" + }, + "minimize": { + "name": "變小", + "effect": "蜷縮身體顯得很小,從而大\n幅提高自己的閃避率" + }, + "smokescreen": { + "name": "煙幕", + "effect": "向對手噴出煙或墨汁等,從\n而降低對手的命中率" + }, + "confuseRay": { + "name": "奇異之光", + "effect": "顯示奇怪的光,擾亂對手。\n使對手混亂" + }, + "withdraw": { + "name": "縮入殼中", + "effect": "縮入殼裏保護身體,從而提\n高自己的防禦" + }, + "defenseCurl": { + "name": "變圓", + "effect": "將身體蜷曲變圓,從而提高\n自己的防禦" + }, + "barrier": { + "name": "屏障", + "effect": "製造堅固的壁障,從而大幅\n提高自己的防禦" + }, + "lightScreen": { + "name": "光牆", + "effect": "利用神奇的牆壁,在5回合\n內減弱從對手那裏受到的特\n殊攻擊的傷害" + }, + "haze": { + "name": "黑霧", + "effect": "升起黑霧,將正在場上戰鬥\n的全體寶可夢的能力變回原\n點" + }, + "reflect": { + "name": "反射壁", + "effect": "利用神奇的牆壁,在5回合\n內減弱從對手那裏受到的物\n理攻擊的傷害" + }, + "focusEnergy": { + "name": "聚氣", + "effect": "深深地吸口氣,集中精神。\n自己的攻擊會變得容易擊中\n要害" + }, + "bide": { + "name": "忍耐", + "effect": "在2回合內忍受攻擊,受到\n的傷害會2倍返還給對手" + }, + "metronome": { + "name": "揮指", + "effect": "揮動手指刺激自己的大腦,\n從許多的招式中隨機使出1\n個" + }, + "mirrorMove": { + "name": "鸚鵡學舌", + "effect": "模仿對手使用的招式,自己\n也使用相同招式" + }, + "selfDestruct": { + "name": "自爆", + "effect": "引發爆炸,攻擊自己周圍所\n有的寶可夢。使用後陷入瀕\n死" + }, + "eggBomb": { + "name": "炸蛋", + "effect": "向對手用力投擲大大的蛋進\n行攻擊" + }, + "lick": { + "name": "舌舔", + "effect": "用長長的舌頭,舔遍對手進\n行攻擊。有時會讓對手陷入\n麻痹狀態" + }, + "smog": { + "name": "濁霧", + "effect": "將骯髒的濃霧吹向對手進行\n攻擊。有時會讓對手陷入中\n毒狀態" + }, + "sludge": { + "name": "污泥攻擊", + "effect": "用污泥投擲對手進行攻擊。\n有時會讓對手陷入中毒狀態" + }, + "boneClub": { + "name": "骨棒", + "effect": "用手中的骨頭毆打對手進行\n攻擊。有時會使對手畏縮" + }, + "fireBlast": { + "name": "大字爆炎", + "effect": "用大字形狀的火焰燒盡對手。\n有時會讓對手陷入灼傷狀\n態" + }, + "waterfall": { + "name": "攀瀑", + "effect": "以驚人的氣勢撲向對手。有\n時會使對手畏縮" + }, + "clamp": { + "name": "貝殼夾擊", + "effect": "用非常堅固且厚實的貝殼,\n在4~5回合內夾住對手進\n行攻擊" + }, + "swift": { + "name": "高速星星", + "effect": "發射星形的光攻擊對手。攻\n擊必定會命中" + }, + "skullBash": { + "name": "火箭頭錘", + "effect": "第1回合把頭縮進去,從而\n提高防禦。第2回合攻擊對\n手" + }, + "spikeCannon": { + "name": "尖刺加農炮", + "effect": "向對手發射銳針進行攻擊。\n連續攻擊2~5次" + }, + "constrict": { + "name": "纏繞", + "effect": "用觸手或青藤等纏繞進行攻\n擊。有時會降低對手的速度" + }, + "amnesia": { + "name": "瞬間失憶", + "effect": "將頭腦清空,瞬間忘記某事,\n從而大幅提高自己的特防" + }, + "kinesis": { + "name": "折彎湯匙", + "effect": "折彎湯匙引開注意,從而降\n低對手的命中率" + }, + "softBoiled": { + "name": "生蛋", + "effect": "回覆自己最大HP的一半" + }, + "highJumpKick": { + "name": "飛膝踢", + "effect": "跳起後用膝蓋撞對手進行攻\n擊。如果撞偏則自己會受到\n傷害" + }, + "glare": { + "name": "大蛇瞪眼", + "effect": "用腹部的花紋使對手害怕,\n從而讓其陷入麻痹狀態" + }, + "dreamEater": { + "name": "食夢", + "effect": "喫掉正在睡覺的對手的夢進\n行攻擊。回覆對手所受到傷\n害的一半HP" + }, + "poisonGas": { + "name": "毒瓦斯", + "effect": "將毒瓦斯吹到對手的臉上,\n從而讓對手陷入中毒狀態" + }, + "barrage": { + "name": "投球", + "effect": "向對手投擲圓形物體進行攻\n擊。連續攻擊2~5次" + }, + "leechLife": { + "name": "吸血", + "effect": "吸取血液攻擊對手。可以回\n復給予對手傷害的一半HP" + }, + "lovelyKiss": { + "name": "惡魔之吻", + "effect": "用恐怖的臉強吻對手。讓對\n手陷入睡眠狀態" + }, + "skyAttack": { + "name": "神鳥猛擊", + "effect": "第2回合攻擊對手。偶爾使\n對手畏縮。也容易擊中要害" + }, + "transform": { + "name": "變身", + "effect": "變身成對手寶可夢的樣子,\n能夠使用和對手完全相同的\n招式" + }, + "bubble": { + "name": "泡沫", + "effect": "向對手用力吹起無數泡泡進\n行攻擊。有時會降低對手的\n速度" + }, + "dizzyPunch": { + "name": "迷昏拳", + "effect": "有節奏地出拳攻擊對手。有\n時會使對手混亂" + }, + "spore": { + "name": "蘑菇孢子", + "effect": "沙沙沙地撒滿具有催眠效果\n的孢子,從而讓對手陷入睡\n眠狀態" + }, + "flash": { + "name": "閃光", + "effect": "使出光芒,從而降低對手的\n命中率。也可在陰暗的洞窟\n裏照亮四周" + }, + "psywave": { + "name": "精神波", + "effect": "向對手發射神奇的念波進行\n攻擊。每次使用,傷害都會\n改變" + }, + "splash": { + "name": "躍起", + "effect": "也不攻擊只是一蹦一蹦地跳,\n什麼都不會發生…" + }, + "acidArmor": { + "name": "溶化", + "effect": "通過細胞的變化進行液化,\n從而大幅提高自己的防禦" + }, + "crabhammer": { + "name": "蟹鉗錘", + "effect": "用大鉗子敲打對手進行攻擊。\n容易擊中要害" + }, + "explosion": { + "name": "大爆炸", + "effect": "引發大爆炸,攻擊自己周圍\n所有的寶可夢。使用後自己\n會陷入瀕死" + }, + "furySwipes": { + "name": "亂抓", + "effect": "用爪子或鐮刀等抓對手進行\n攻擊。連續攻擊2~5次" + }, + "bonemerang": { + "name": "骨頭回力鏢", + "effect": "用手中的骨頭投擲對手,來\n回連續2次給予傷害" + }, + "rest": { + "name": "睡覺", + "effect": "連續睡上2回合。回覆自己\n的全部HP以及治癒所有異\n常狀態" + }, + "rockSlide": { + "name": "岩崩", + "effect": "將大岩石猛烈地撞向對手進\n行攻擊。有時會使對手畏縮" + }, + "hyperFang": { + "name": "必殺門牙", + "effect": "用鋒利的門牙牢牢地咬住對\n手進行攻擊。有時會使對手\n畏縮" + }, + "sharpen": { + "name": "稜角化", + "effect": "增加身體的角,變得棱棱角\n角,從而提高自己的攻擊" + }, + "conversion": { + "name": "紋理", + "effect": "將自己的屬性轉換成和已學\n會的招式中第一個招式相同\n的屬性" + }, + "triAttack": { + "name": "三重攻擊", + "effect": "用3種光線進行攻擊。有時\n會讓對手陷入麻痹、灼傷或\n冰凍的狀態" + }, + "superFang": { + "name": "憤怒門牙", + "effect": "用鋒利的門牙猛烈地咬住對\n手進行攻擊。對手的HP減\n半" + }, + "slash": { + "name": "劈開", + "effect": "用爪子或鐮刀等劈開對手進\n行攻擊。容易擊中要害" + }, + "substitute": { + "name": "替身", + "effect": "削減少許自己的HP,製造\n分身。分身將成爲自己的替\n身" + }, + "struggle": { + "name": "掙扎", + "effect": "當自己的PP耗盡時,努力\n掙扎攻擊對手。自己也會受\n到少許傷害" + }, + "sketch": { + "name": "寫生", + "effect": "將對手使用的招式變成自己\n的招式。使用1次後寫生消\n失" + }, + "tripleKick": { + "name": "三連踢", + "effect": "連續3次踢對手進行攻擊。\n每踢中一次,威力就會提高" + }, + "thief": { + "name": "小偷", + "effect": "攻擊的同時盜取道具。當自\n己攜帶道具時,不會去盜取" + }, + "spiderWeb": { + "name": "蛛網", + "effect": "將黏糊糊的細絲一層一層纏\n住對手,使其不能從戰鬥中\n逃走" + }, + "mindReader": { + "name": "心之眼", + "effect": "用心感受對手的行動,下次\n攻擊必定會擊中對手" + }, + "nightmare": { + "name": "惡夢", + "effect": "讓在睡眠狀態下的對手做惡\n夢,每回合會緩緩減少HP" + }, + "flameWheel": { + "name": "火焰輪", + "effect": "讓火焰覆蓋全身,猛撞向對\n手進行攻擊。有時會讓對手\n陷入灼傷狀態" + }, + "snore": { + "name": "打鼾", + "effect": "在自己睡覺時,發出噪音進\n行攻擊。有時會使對手畏縮" + }, + "curse": { + "name": "詛咒", + "effect": "使用該招式的寶可夢,其屬\n性是幽靈屬性或其他屬性時,\n效果會不一樣" + }, + "flail": { + "name": "抓狂", + "effect": "抓狂般亂打進行攻擊。自己\n的HP越少,招式的威力越\n大" + }, + "conversion2": { + "name": "紋理2", + "effect": "爲了可以抵抗對手最後使用\n的招式,從而使自己的屬性\n發生變化" + }, + "aeroblast": { + "name": "氣旋攻擊", + "effect": "發射空氣旋渦進行攻擊。容\n易擊中要害" + }, + "cottonSpore": { + "name": "棉孢子", + "effect": "將棉花般柔軟的孢子緊貼對\n手,從而大幅降低對手的速\n度" + }, + "reversal": { + "name": "起死回生", + "effect": "竭盡全力進行攻擊。自己的\nHP越少,招式的威力越大" + }, + "spite": { + "name": "怨恨", + "effect": "對對手最後使用的招式懷有\n怨恨,減少4PP該招式" + }, + "powderSnow": { + "name": "細雪", + "effect": "將冰冷的細雪吹向對手進行\n攻擊。有時會讓對手陷入冰\n凍狀態" + }, + "protect": { + "name": "守住", + "effect": "完全抵擋對手的攻擊。連續\n使出則容易失敗" + }, + "machPunch": { + "name": "音速拳", + "effect": "以迅雷不及掩耳之勢出拳。\n必定能夠先制攻擊" + }, + "scaryFace": { + "name": "鬼面", + "effect": "用恐怖的表情瞪着對手,使\n其害怕,從而大幅降低對手\n的速度" + }, + "feintAttack": { + "name": "出奇一擊", + "effect": "悄悄地靠近對手,趁其不備\n進行毆打。攻擊必定會命中" + }, + "sweetKiss": { + "name": "天使之吻", + "effect": "像天使般可愛地親吻對手,\n從而使對手混亂" + }, + "bellyDrum": { + "name": "腹鼓", + "effect": "將自己的HP減少到最大\nHP的一半,從而最大限度提\n高自己的攻擊" + }, + "sludgeBomb": { + "name": "污泥炸彈", + "effect": "用污泥投擲對手進行攻擊。\n有時會讓對手陷入中毒狀態" + }, + "mudSlap": { + "name": "擲泥", + "effect": "向對手的臉等投擲泥塊進行\n攻擊。會降低對手的命中率" + }, + "octazooka": { + "name": "章魚桶炮", + "effect": "向對手的臉等噴出墨汁進行\n攻擊。有時會降低對手的命\n中率" + }, + "spikes": { + "name": "撒菱", + "effect": "在對手的腳下扔撒菱。對替\n換出場的對手的寶可夢給予\n傷害" + }, + "zapCannon": { + "name": "電磁炮", + "effect": "發射大炮一樣的電流進行攻\n擊。讓對手陷入麻痹狀態" + }, + "foresight": { + "name": "識破", + "effect": "使出後對幽靈屬性寶可夢沒\n有效果的招式以及閃避率高\n的對手,變得能夠打中" + }, + "destinyBond": { + "name": "同命", + "effect": "使出招式後,當受到對手攻\n擊陷入瀕死時,對手也會一\n同瀕死。連續使出則會失敗" + }, + "perishSong": { + "name": "滅亡之歌", + "effect": "傾聽歌聲的寶可夢經過3回\n合陷入瀕死。替換後效果消\n失" + }, + "icyWind": { + "name": "冰凍之風", + "effect": "將結冰的冷氣吹向對手進行\n攻擊。會降低對手的速度" + }, + "detect": { + "name": "看穿", + "effect": "完全抵擋對手的攻擊。連續\n使出則容易失敗" + }, + "boneRush": { + "name": "骨棒亂打", + "effect": "用堅硬的骨頭毆打對手進行\n攻擊。連續攻擊2~5次" + }, + "lockOn": { + "name": "鎖定", + "effect": "緊緊瞄準對手,下次攻擊必\n定會打中" + }, + "outrage": { + "name": "逆鱗", + "effect": "在2~3回合內,亂打一氣\n地進行攻擊。大鬧一番後自\n己會陷入混亂" + }, + "sandstorm": { + "name": "沙暴", + "effect": "在5回合內揚起沙暴,除巖\n石、地面和鋼屬性以外的寶\n可夢,都會受到傷害。岩石\n屬性的特防還會提高" + }, + "gigaDrain": { + "name": "終極吸取", + "effect": "吸取對手的養分進行攻擊。\n可以回覆給予對手傷害的一\n半HP" + }, + "endure": { + "name": "挺住", + "effect": "即使受到攻擊,也至少會留\n下1HP。連續使出則容易\n失敗" + }, + "charm": { + "name": "撒嬌", + "effect": "可愛地凝視,誘使對手疏忽\n大意,從而大幅降低對手的\n攻擊" + }, + "rollout": { + "name": "滾動", + "effect": "在5回合內連續滾動攻擊對\n手。招式每次擊中,威力就\n會提高" + }, + "falseSwipe": { + "name": "點到爲止", + "effect": "對手的HP至少會留下1\nHP,如此般手下留情地攻擊" + }, + "swagger": { + "name": "虛張聲勢", + "effect": "激怒對手,使其混亂。因爲\n憤怒,對手的攻擊會大幅提\n高" + }, + "milkDrink": { + "name": "喝牛奶", + "effect": "回覆自己最大HP的一半" + }, + "spark": { + "name": "電光", + "effect": "讓電流覆蓋全身,猛撞向對\n手進行攻擊。有時會讓對手\n陷入麻痹狀態" + }, + "furyCutter": { + "name": "連斬", + "effect": "用鐮刀或爪子等切斬對手進\n行攻擊。連續擊中,威力就\n會提高" + }, + "steelWing": { + "name": "鋼翼", + "effect": "用堅硬的翅膀敲打對手進行\n攻擊。有時會提高自己的防\n御" + }, + "meanLook": { + "name": "黑色目光", + "effect": "用好似要勾人心魂的黑色目\n光一動不動地凝視對手,使\n其不能從戰鬥中逃走" + }, + "attract": { + "name": "迷人", + "effect": "♂誘惑♀或♀誘惑♂,讓對\n手着迷。對手將很難使出招\n式" + }, + "sleepTalk": { + "name": "夢話", + "effect": "從自己已學會的招式中任意\n使出1個。只能在自己睡覺\n時使用" + }, + "healBell": { + "name": "治癒鈴聲", + "effect": "讓同伴聽舒適的鈴音,從而\n治癒我方全員的異常狀態" + }, + "return": { + "name": "報恩", + "effect": "爲了訓練家而全力攻擊對手。\n親密度越高,威力越大" + }, + "present": { + "name": "禮物", + "effect": "遞給對手設有圈套的盒子進\n行攻擊。也有可能回覆對手\nHP" + }, + "frustration": { + "name": "遷怒", + "effect": "爲了發泄不滿而全力攻擊對\n手。親密度越低,威力越大" + }, + "safeguard": { + "name": "神祕守護", + "effect": "在5回合內被神奇的力量守\n護,從而不會陷入異常狀態" + }, + "painSplit": { + "name": "分擔痛楚", + "effect": "將自己的HP和對手的HP\n相加,然後自己和對手友好\n地平分" + }, + "sacredFire": { + "name": "神聖之火", + "effect": "用神祕的火焰燒盡對手進行\n攻擊。有時會讓對手陷入灼\n傷狀態" + }, + "magnitude": { + "name": "震級", + "effect": "晃動地面,攻擊自己周圍所\n有的寶可夢。招式的威力會\n有各種變化" + }, + "dynamicPunch": { + "name": "爆裂拳", + "effect": "使出渾身力氣出拳進行攻擊。\n必定會使對手混亂" + }, + "megahorn": { + "name": "超級角擊", + "effect": "用堅硬且華麗的角狠狠地刺\n入對手進行攻擊" + }, + "dragonBreath": { + "name": "龍息", + "effect": "將強烈的氣息吹向對手進行\n攻擊。有時會讓對手陷入麻\n痹狀態" + }, + "batonPass": { + "name": "接棒", + "effect": "和後備寶可夢進行替換。換\n上的寶可夢能直接繼承其能\n力的變化" + }, + "encore": { + "name": "再來一次", + "effect": "讓對手接受再來一次,連續\n3次使出最後使用的招式" + }, + "pursuit": { + "name": "追打", + "effect": "當對手替換寶可夢上場時使\n出此招式的話,能夠以2倍\n的威力進行攻擊" + }, + "rapidSpin": { + "name": "高速旋轉", + "effect": "通過旋轉來攻擊對手。可以\n擺脫綁緊、緊束、寄生種子\n等招式。還能提高自己的速\n度" + }, + "sweetScent": { + "name": "甜甜香氣", + "effect": "用香氣大幅降低對手的閃避\n率" + }, + "ironTail": { + "name": "鐵尾", + "effect": "使用堅硬的尾巴摔打對手進\n行攻擊。有時會降低對手的\n防禦" + }, + "metalClaw": { + "name": "金屬爪", + "effect": "用鋼鐵之爪劈開對手進行攻\n擊。有時會提高自己的攻擊" + }, + "vitalThrow": { + "name": "借力摔", + "effect": "會在對手之後進行攻擊。但\n是自己的攻擊必定會命中" + }, + "morningSun": { + "name": "晨光", + "effect": "回覆自己的HP。根據天氣\n的不同,回覆量也會有所變\n化" + }, + "synthesis": { + "name": "光合作用", + "effect": "回覆自己的HP。根據天氣\n的不同,回覆量也會有所變\n化" + }, + "moonlight": { + "name": "月光", + "effect": "回覆自己的HP。根據天氣\n的不同,回覆量也會有所變\n化" + }, + "hiddenPower": { + "name": "覺醒力量", + "effect": "招式的屬性會隨着使用此招\n式的寶可夢而改變" + }, + "crossChop": { + "name": "十字劈", + "effect": "用兩手呈十字劈打對手進行\n攻擊。容易擊中要害" + }, + "twister": { + "name": "龍捲風", + "effect": "興起龍捲風,將對手卷入進\n行攻擊。有時會使對手畏縮" + }, + "rainDance": { + "name": "求雨", + "effect": "在5回合內一直降雨,從而\n提高水屬性的招式威力。火\n屬性的招式威力則降低" + }, + "sunnyDay": { + "name": "大晴天", + "effect": "在5回合內讓日照變得強烈,\n從而提高火屬性的招式威\n力。水屬性的招式威力則降\n低" + }, + "crunch": { + "name": "咬碎", + "effect": "用利牙咬碎對手進行攻擊。\n有時會降低對手的防禦" + }, + "mirrorCoat": { + "name": "鏡面反射", + "effect": "從對手那裏受到特殊攻擊的\n傷害將以2倍返還給同一個\n對手" + }, + "psychUp": { + "name": "自我暗示", + "effect": "向自己施以自我暗示,將能\n力變化的狀態變得和對手一\n樣" + }, + "extremeSpeed": { + "name": "神速", + "effect": "以迅雷不及掩耳之勢猛撞向\n對手進行攻擊。必定能夠先\n制攻擊" + }, + "ancientPower": { + "name": "原始之力", + "effect": "用原始之力進行攻擊。有時\n會提高自己所有的能力" + }, + "shadowBall": { + "name": "暗影球", + "effect": "投擲一團黑影進行攻擊。有\n時會降低對手的特防" + }, + "futureSight": { + "name": "預知未來", + "effect": "在使用招式2回合後,向對\n手發送一團念力進行攻擊" + }, + "rockSmash": { + "name": "碎岩", + "effect": "用拳頭進行攻擊。有時會降\n低對手的防禦" + }, + "whirlpool": { + "name": "潮旋", + "effect": "將對手困在激烈的水流旋渦\n中,在4~5回合內進行攻\n擊" + }, + "beatUp": { + "name": "圍攻", + "effect": "我方全員進行攻擊。同行的\n寶可夢越多,招式的攻擊次\n數越多" + }, + "fakeOut": { + "name": "擊掌奇襲", + "effect": "進行先制攻擊,使對手畏縮。\n要在出場後立刻使出才能\n成功" + }, + "uproar": { + "name": "吵鬧", + "effect": "在3回合內大吵大鬧攻擊對\n手。在此期間誰都不能入眠" + }, + "stockpile": { + "name": "蓄力", + "effect": "積蓄力量,提高自己的防禦\n和特防。最多積蓄3次" + }, + "spitUp": { + "name": "噴出", + "effect": "將積蓄的力量撞向對手進行\n攻擊。積蓄得越多,威力越\n大" + }, + "swallow": { + "name": "吞下", + "effect": "將積蓄的力量吞下,從而回\n復自己的HP。積蓄得越多,\n回覆越大" + }, + "heatWave": { + "name": "熱風", + "effect": "將炎熱的氣息吹向對手進行\n攻擊。有時會讓對手陷入灼\n傷狀態" + }, + "hail": { + "name": "冰雹", + "effect": "在5回合內一直降冰雹,除\n冰屬性的寶可夢以外,給予\n全體寶可夢傷害" + }, + "torment": { + "name": "無理取鬧", + "effect": "向對手無理取鬧,令其不能\n連續2次使出相同招式" + }, + "flatter": { + "name": "吹捧", + "effect": "吹捧對手,使其混亂。同時\n還會提高對手的特攻" + }, + "willOWisp": { + "name": "鬼火", + "effect": "放出怪異的火焰,從而讓對\n手陷入灼傷狀態" + }, + "memento": { + "name": "臨別禮物", + "effect": "雖然會使自己陷入昏厥,但\n是能夠大幅降低對手的攻擊\n和特攻" + }, + "facade": { + "name": "硬撐", + "effect": "當自己處於中毒、麻痹、灼\n傷狀態時,向對手使出此招\n式的話,威力會變成2倍" + }, + "focusPunch": { + "name": "真氣拳", + "effect": "集中精神出拳。在招式使出\n前若受到攻擊則會失敗" + }, + "smellingSalts": { + "name": "清醒", + "effect": "對於麻痹狀態下的對手,威\n力會變成2倍。但相反對手\n的麻痹也會被治癒" + }, + "followMe": { + "name": "看我嘛", + "effect": "引起對手的注意,將對手的\n攻擊全部轉移到自己身上" + }, + "naturePower": { + "name": "自然之力", + "effect": "用自然之力進行攻擊。根據\n所使用場所的不同,使出的\n招式也會有所變化" + }, + "charge": { + "name": "充電", + "effect": "變爲充電狀態,提高下次使\n出的電屬性的招式威力。自\n己的特防也會提高" + }, + "taunt": { + "name": "挑釁", + "effect": "使對手憤怒。在3回合內讓\n對手只能使出給予傷害的招\n式" + }, + "helpingHand": { + "name": "幫助", + "effect": "幫助夥伴。被幫助的寶可夢,\n其招式威力變得比平時大" + }, + "trick": { + "name": "戲法", + "effect": "抓住對手的空隙,交換自己\n和對手的持有物" + }, + "rolePlay": { + "name": "扮演", + "effect": "扮演對手,讓自己的特性變\n得和對手相同" + }, + "wish": { + "name": "祈願", + "effect": "在下一回合回覆自己或是替\n換出場的寶可夢最大HP的\n一半" + }, + "assist": { + "name": "藉助", + "effect": "向同伴緊急求助,從我方寶\n可夢已學會的招式中隨機使\n用1個" + }, + "ingrain": { + "name": "扎根", + "effect": "在大地上扎根,每回合回覆\n自己的HP。因爲扎根了,\n所以不能替換寶可夢" + }, + "superpower": { + "name": "蠻力", + "effect": "發揮驚人的力量攻擊對手。\n自己的攻擊和防禦會降低" + }, + "magicCoat": { + "name": "魔法反射", + "effect": "當對手使出會變成異常狀態\n的招式或寄生種子等時,會\n將對手的招式反射回去" + }, + "recycle": { + "name": "回收利用", + "effect": "使戰鬥中已經消耗掉的自己\n的持有物再生,並可以再次\n使用" + }, + "revenge": { + "name": "報復", + "effect": "如果受到對手的招式攻擊,\n就能給予對手2倍的傷害" + }, + "brickBreak": { + "name": "劈瓦", + "effect": "將手刀猛烈地揮下攻擊對手。\n還可以破壞光牆和反射壁\n等" + }, + "yawn": { + "name": "哈欠", + "effect": "打個大哈欠引起睡意。在下\n一回合讓對手陷入睡眠狀態" + }, + "knockOff": { + "name": "拍落", + "effect": "拍落對手的持有物,直到戰\n鬥結束都不能使用。對手攜\n帶道具時會增加傷害" + }, + "endeavor": { + "name": "蠻幹", + "effect": "給予傷害,使對手的HP變\n得和自己的HP一樣" + }, + "eruption": { + "name": "噴火", + "effect": "爆發怒火攻擊對手。自己的\nHP越少,招式的威力越小" + }, + "skillSwap": { + "name": "特性互換", + "effect": "利用超能力互換自己和對手\n的特性" + }, + "imprison": { + "name": "封印", + "effect": "如果對手有和自己相同的招\n式,那麼只有對手無法使用\n該招式" + }, + "refresh": { + "name": "煥然一新", + "effect": "讓身體休息,治癒自己身上\n所中的毒、麻痹、灼傷的異\n常狀態" + }, + "grudge": { + "name": "怨念", + "effect": "因對手的招式而陷入昏厥時\n給對手施加怨念,讓該招式\n的PP變成0" + }, + "snatch": { + "name": "搶奪", + "effect": "將對手打算使用的回覆招式\n或能力變化招式奪爲己用" + }, + "secretPower": { + "name": "祕密之力", + "effect": "根據使用場所不同,該招式\n的追加效果也會有所變化" + }, + "dive": { + "name": "潛水", + "effect": "第1回合潛入水中,第2回\n合浮上來進行攻擊" + }, + "armThrust": { + "name": "猛推", + "effect": "用張開着的雙手猛推對手進\n行攻擊。連續攻擊2~5次" + }, + "camouflage": { + "name": "保護色", + "effect": "根據所在場所不同,如水邊\n、草叢和洞窟等,可以改變\n自己的屬性" + }, + "tailGlow": { + "name": "螢火", + "effect": "凝視閃爍的光芒,集中自己\n的精神,從而巨幅提高特攻" + }, + "lusterPurge": { + "name": "潔淨光芒", + "effect": "釋放耀眼的光芒進行攻擊。\n有時會降低對手的特防" + }, + "mistBall": { + "name": "薄霧球", + "effect": "用圍繞着霧狀羽毛的球進行\n攻擊。有時會降低對手的特\n攻" + }, + "featherDance": { + "name": "羽毛舞", + "effect": "撒出羽毛,籠罩在對手的周\n圍。大幅降低對手的攻擊" + }, + "teeterDance": { + "name": "搖晃舞", + "effect": "搖搖晃晃地跳起舞蹈,讓自\n己周圍的寶可夢陷入混亂狀\n態" + }, + "blazeKick": { + "name": "火焰踢", + "effect": "攻擊對手後,有時會使其陷\n入灼傷狀態。也容易擊中要\n害" + }, + "mudSport": { + "name": "玩泥巴", + "effect": "一旦使用此招式,周圍就會\n弄得到處是泥。在5回合內\n減弱電屬性的招式" + }, + "iceBall": { + "name": "冰球", + "effect": "在5回合內攻擊對手。招式\n每次擊中,威力就會提高" + }, + "needleArm": { + "name": "尖刺臂", + "effect": "用帶刺的手臂猛烈地揮舞進\n行攻擊。有時會使對手畏縮" + }, + "slackOff": { + "name": "偷懶", + "effect": "偷懶休息。回覆自己最大\nHP的一半" + }, + "hyperVoice": { + "name": "巨聲", + "effect": "給予對手又吵又響的巨大震\n動進行攻擊" + }, + "poisonFang": { + "name": "劇毒牙", + "effect": "用有毒的牙齒咬住對手進行\n攻擊。有時會使對手中劇毒" + }, + "crushClaw": { + "name": "撕裂爪", + "effect": "用堅硬的銳爪劈開對手進行\n攻擊。有時會降低對手的防\n御" + }, + "blastBurn": { + "name": "爆炸烈焰", + "effect": "用爆炸的火焰燒盡對手進行\n攻擊。下一回合自己將無法\n動彈" + }, + "hydroCannon": { + "name": "加農水炮", + "effect": "向對手噴射水炮進行攻擊。\n下一回合自己將無法動彈" + }, + "meteorMash": { + "name": "彗星拳", + "effect": "使出彗星般的拳頭攻擊對手。\n有時會提高自己的攻擊" + }, + "astonish": { + "name": "驚嚇", + "effect": "用尖叫聲等突然驚嚇對手進\n行攻擊。有時會使對手畏縮" + }, + "weatherBall": { + "name": "氣象球", + "effect": "根據使用時的天氣,招式屬\n性和威力會改變" + }, + "aromatherapy": { + "name": "芳香治療", + "effect": "讓同伴聞沁人心脾的香氣,\n從而治癒我方全員的異常狀\n態" + }, + "fakeTears": { + "name": "假哭", + "effect": "裝哭流淚。使對手不知所措,\n從而大幅降低對手的特防" + }, + "airCutter": { + "name": "空氣利刃", + "effect": "用銳利的風切斬對手進行攻\n擊。容易擊中要害" + }, + "overheat": { + "name": "過熱", + "effect": "使出全部力量攻擊對手。使\n用之後會因爲反作用力,自\n己的特攻大幅降低" + }, + "odorSleuth": { + "name": "氣味偵測", + "effect": "使出後對幽靈屬性寶可夢沒\n有效果的招式以及閃避率高\n的對手,變得能夠打中" + }, + "rockTomb": { + "name": "岩石封鎖", + "effect": "投擲岩石進行攻擊。封住對\n手的行動,從而降低速度" + }, + "silverWind": { + "name": "銀色旋風", + "effect": "在風中摻入鱗粉攻擊對手。\n有時會提高自己的全部能力" + }, + "metalSound": { + "name": "金屬音", + "effect": "讓對手聽摩擦金屬般討厭的\n聲音。大幅降低對手的特防" + }, + "grassWhistle": { + "name": "草笛", + "effect": "讓對手聽舒適的笛聲,從而\n陷入睡眠狀態" + }, + "tickle": { + "name": "搔癢", + "effect": "給對手搔癢,使其發笑,從\n而降低對手的攻擊和防禦" + }, + "cosmicPower": { + "name": "宇宙力量", + "effect": "汲取宇宙中神祕的力量,從\n而提高自己的防禦和特防" + }, + "waterSpout": { + "name": "噴水", + "effect": "掀起潮水進行攻擊。自己的\nHP越少,招式的威力越小" + }, + "signalBeam": { + "name": "信號光束", + "effect": "發射神奇的光線進行攻擊。\n有時會使對手混亂" + }, + "shadowPunch": { + "name": "暗影拳", + "effect": "使出混影之拳。攻擊必定會\n命中" + }, + "extrasensory": { + "name": "神通力", + "effect": "發出看不見的神奇力量進行\n攻擊。有時會使對手畏縮" + }, + "skyUppercut": { + "name": "衝天拳", + "effect": "用衝向天空般高高的上勾拳\n頂起對手進行攻擊" + }, + "sandTomb": { + "name": "流沙地獄", + "effect": "將對手困在鋪天蓋地的沙暴\n中,在4~5回合內進行攻\n擊" + }, + "sheerCold": { + "name": "絕對零度", + "effect": "給對手一擊瀕死。如果是冰\n屬性以外的寶可夢使用,就\n會難以打中" + }, + "muddyWater": { + "name": "濁流", + "effect": "向對手噴射渾濁的水進行攻\n擊。有時會降低對手的命中\n率" + }, + "bulletSeed": { + "name": "種子機關槍", + "effect": "向對手猛烈地發射種子進行\n攻擊。連續攻擊2~5次" + }, + "aerialAce": { + "name": "燕返", + "effect": "以敏捷的動作戲弄對手後進\n行切斬。攻擊必定會命中" + }, + "icicleSpear": { + "name": "冰錐", + "effect": "向對手發射鋒利的冰柱進行\n攻擊。連續攻擊2~5次" + }, + "ironDefense": { + "name": "鐵壁", + "effect": "將皮膚變得堅硬如鐵,從而\n大幅提高自己的防禦" + }, + "block": { + "name": "擋路", + "effect": "張開雙手進行阻擋,封住對\n手的退路,使其不能逃走" + }, + "howl": { + "name": "長嚎", + "effect": "大聲吼叫提高氣勢,從而提\n高自己和同伴的攻擊" + }, + "dragonClaw": { + "name": "龍爪", + "effect": "用尖銳的巨爪劈開對手進行\n攻擊" + }, + "frenzyPlant": { + "name": "瘋狂植物", + "effect": "用大樹摔打對手進行攻擊。\n下一回合自己將無法動彈" + }, + "bulkUp": { + "name": "健美", + "effect": "使出全身力氣繃緊肌肉,從\n而提高自己的攻擊和防禦" + }, + "bounce": { + "name": "彈跳", + "effect": "彈跳到高高的空中,第2回\n合攻擊對手。有時會讓對手\n陷入麻痹狀態" + }, + "mudShot": { + "name": "泥巴射擊", + "effect": "向對手投擲泥塊進行攻擊。\n同時降低對手的速度" + }, + "poisonTail": { + "name": "毒尾", + "effect": "用尾巴拍打。有時會讓對手\n陷入中毒狀態,也容易擊中\n要害" + }, + "covet": { + "name": "渴望", + "effect": "一邊可愛地撒嬌,一邊靠近\n對手進行攻擊,還能奪取對\n手攜帶的道具" + }, + "voltTackle": { + "name": "伏特攻擊", + "effect": "讓電流覆蓋全身猛撞向對手。\n自己也會受到不小的傷害。\n有時會讓對手陷入麻痹狀\n態" + }, + "magicalLeaf": { + "name": "魔法葉", + "effect": "散落可以追蹤對手的神奇葉\n片。攻擊必定會命中" + }, + "waterSport": { + "name": "玩水", + "effect": "用水溼透周圍。在5回合內\n減弱火屬性的招式" + }, + "calmMind": { + "name": "冥想", + "effect": "靜心凝神,從而提高自己的\n特攻和特防" + }, + "leafBlade": { + "name": "葉刃", + "effect": "像用劍一般操縱葉片切斬對\n手進行攻擊。容易擊中要害" + }, + "dragonDance": { + "name": "龍之舞", + "effect": "激烈地跳起神祕且強有力的\n舞蹈。從而提高自己的攻擊\n和速度" + }, + "rockBlast": { + "name": "岩石爆擊", + "effect": "向對手發射堅硬的岩石進行\n攻擊。連續攻擊2~5次" + }, + "shockWave": { + "name": "電擊波", + "effect": "向對手快速發出電擊。攻擊\n必定會命中" + }, + "waterPulse": { + "name": "水之波動", + "effect": "用水的震動攻擊對手。有時\n會使對手混亂" + }, + "doomDesire": { + "name": "破滅之願", + "effect": "使用招式2回合後,會用無\n數道光束攻擊對手" + }, + "psychoBoost": { + "name": "精神突進", + "effect": "使出全部力量攻擊對手。使\n用之後會因爲反作用力,自\n己的特攻大幅降低" + }, + "roost": { + "name": "羽棲", + "effect": "降到地面,使身體休息。回\n復自己最大HP的一半" + }, + "gravity": { + "name": "重力", + "effect": "在5回合內,飄浮特性和飛\n行屬性的寶可夢會被地面屬\n性的招式擊中。飛向空中的\n招式也將無法使用" + }, + "miracleEye": { + "name": "奇蹟之眼", + "effect": "使出後對惡屬性寶可夢沒有\n效果的招式以及閃避率高的\n對手,變得能夠打中" + }, + "wakeUpSlap": { + "name": "喚醒巴掌", + "effect": "給予睡眠狀態下的對手較大\n的傷害。但相反對手會從睡\n眠中醒過來" + }, + "hammerArm": { + "name": "臂錘", + "effect": "揮舞強力而沉重的拳頭,給\n予對手傷害。自己的速度會\n降低" + }, + "gyroBall": { + "name": "陀螺球", + "effect": "讓身體高速旋轉並撞擊對手。\n速度比對手越慢,威力越\n大" + }, + "healingWish": { + "name": "治癒之願", + "effect": "雖然自己陷入瀕死,但可以\n治癒後備上場的寶可夢的異\n常狀態以及回覆HP" + }, + "brine": { + "name": "鹽水", + "effect": "當對手的HP負傷到一半左\n右時,招式威力會變成2倍" + }, + "naturalGift": { + "name": "自然之恩", + "effect": "從樹果上獲得力量進行攻擊。\n根據攜帶的樹果,招式屬\n性和威力會改變" + }, + "feint": { + "name": "佯攻", + "effect": "能夠攻擊正在使用守住或看\n穿等招式的對手。解除其守\n護效果" + }, + "pluck": { + "name": "啄食", + "effect": "用喙進行攻擊。當對手攜帶\n樹果時,可以食用並獲得其\n效果" + }, + "tailwind": { + "name": "順風", + "effect": "颳起猛烈的旋風,在4回合\n內提高我方全員的速度" + }, + "acupressure": { + "name": "點穴", + "effect": "通過點穴讓身體舒筋活絡。\n大幅提高某1項能力" + }, + "metalBurst": { + "name": "金屬爆炸", + "effect": "使出招式前,將最後受到的\n招式的傷害大力返還給對手" + }, + "uTurn": { + "name": "急速折返", + "effect": "在攻擊之後急速返回,和後\n備寶可夢進行替換" + }, + "closeCombat": { + "name": "近身戰", + "effect": "放棄守護,向對手的懷裏突\n擊。自己的防禦和特防會降\n低" + }, + "payback": { + "name": "以牙還牙", + "effect": "蓄力攻擊。如果能在對手之\n後攻擊,招式的威力會變成\n2倍" + }, + "assurance": { + "name": "惡意追擊", + "effect": "如果此回合內對手已經受到\n傷害的話,招式威力會變成\n2倍" + }, + "embargo": { + "name": "查封", + "effect": "讓對手在5回合內不能使用\n寶可夢攜帶的道具。訓練家\n也不能給那隻寶可夢使用道\n具" + }, + "fling": { + "name": "投擲", + "effect": "快速投擲攜帶的道具進行攻\n擊。根據道具不同,威力和\n效果會改變" + }, + "psychoShift": { + "name": "精神轉移", + "effect": "利用超能力施以暗示,從而\n將自己受到的異常狀態轉移\n給對手" + }, + "trumpCard": { + "name": "王牌", + "effect": "王牌招式的剩餘PP越少,\n招式的威力越大" + }, + "healBlock": { + "name": "回覆封鎖", + "effect": "在5回合內無法通過招式、\n特性或攜帶的道具來回復H\nP" + }, + "wringOut": { + "name": "絞緊", + "effect": "用力勒緊對手進行攻擊。對\n手的HP越多,威力越大" + }, + "powerTrick": { + "name": "力量戲法", + "effect": "利用超能力交換自己的攻擊\n和防禦的力量" + }, + "gastroAcid": { + "name": "胃液", + "effect": "將胃液吐向對手的身體。沾\n上的胃液會消除對手的特性\n效果" + }, + "luckyChant": { + "name": "幸運咒語", + "effect": "向天許願,從而在5回合內\n不會被對手的攻擊打中要害" + }, + "meFirst": { + "name": "搶先一步", + "effect": "提高威力,搶先使出對手想\n要使出的招式。如果不先使\n出則會失敗" + }, + "copycat": { + "name": "仿效", + "effect": "模仿對手剛纔使出的招式,\n並使出相同招式。如果對手\n還沒出招則會失敗" + }, + "powerSwap": { + "name": "力量互換", + "effect": "利用超能力互換自己和對手\n的攻擊以及特攻的能力變化" + }, + "guardSwap": { + "name": "防守互換", + "effect": "利用超能力互換自己和對手\n的防禦以及特防的能力變化" + }, + "punishment": { + "name": "懲罰", + "effect": "根據能力變化,對手提高的\n力量越大,招式的威力越大" + }, + "lastResort": { + "name": "珍藏", + "effect": "當戰鬥中已學會的招式全部\n使用過後,才能開始使出珍\n藏的招式" + }, + "worrySeed": { + "name": "煩惱種子", + "effect": "種植心神不寧的種子。使對\n手不能入眠,並將特性變成\n不眠" + }, + "suckerPunch": { + "name": "突襲", + "effect": "可以比對手先攻擊。對手使\n出的招式如果不是攻擊招式\n則會失敗" + }, + "toxicSpikes": { + "name": "毒菱", + "effect": "在對手的腳下撒毒菱。使對\n手替換出場的寶可夢中毒" + }, + "heartSwap": { + "name": "心靈互換", + "effect": "利用超能力互換自己和對手\n之間的能力變化" + }, + "aquaRing": { + "name": "水流環", + "effect": "在自己身體的周圍覆蓋用水\n製造的幕。每回合回覆HP" + }, + "magnetRise": { + "name": "電磁飄浮", + "effect": "利用電氣產生的磁力浮在空\n中。在5回合內可以飄浮" + }, + "flareBlitz": { + "name": "閃焰衝鋒", + "effect": "讓火焰覆蓋全身猛撞向對手。\n自己也會受到不小的傷害。\n有時會讓對手陷入灼傷狀\n態" + }, + "forcePalm": { + "name": "發勁", + "effect": "向對手的身體發出衝擊波進\n行攻擊。有時會讓對手陷入\n麻痹狀態" + }, + "auraSphere": { + "name": "波導彈", + "effect": "從體內產生出波導之力,然\n後向對手發出。攻擊必定會\n命中" + }, + "rockPolish": { + "name": "岩石打磨", + "effect": "打磨自己的身體,減少空氣\n阻力。可以大幅提高自己的\n速度" + }, + "poisonJab": { + "name": "毒擊", + "effect": "用帶毒的觸手或手臂刺入對\n手。有時會讓對手陷入中毒\n狀態" + }, + "darkPulse": { + "name": "惡之波動", + "effect": "從體內發出充滿惡意的恐怖\n氣場。有時會使對手畏縮" + }, + "nightSlash": { + "name": "暗襲要害", + "effect": "抓住瞬間的空隙切斬對手。\n容易擊中要害" + }, + "aquaTail": { + "name": "水流尾", + "effect": "如驚濤駭浪般揮動大尾巴攻\n擊對手" + }, + "seedBomb": { + "name": "種子炸彈", + "effect": "將外殼堅硬的大種子,從上\n方砸下攻擊對手" + }, + "airSlash": { + "name": "空氣斬", + "effect": "用連天空也能劈開的空氣之\n刃進行攻擊。有時會使對手\n畏縮" + }, + "xScissor": { + "name": "十字剪", + "effect": "將鐮刀或爪子像剪刀般地交\n叉,順勢劈開對手" + }, + "bugBuzz": { + "name": "蟲鳴", + "effect": "利用振動發出音波進行攻擊。\n有時會降低對手的特防" + }, + "dragonPulse": { + "name": "龍之波動", + "effect": "從大大的口中掀起衝擊波攻\n擊對手" + }, + "dragonRush": { + "name": "龍之俯衝", + "effect": "釋放出駭人的殺氣,一邊威\n懾一邊撞擊對手。有時會使\n對手畏縮" + }, + "powerGem": { + "name": "力量寶石", + "effect": "發射如寶石般閃耀的光芒攻\n擊對手" + }, + "drainPunch": { + "name": "吸取拳", + "effect": "用拳頭吸取對手的力量。可\n以回覆給予對手傷害的一半\nHP" + }, + "vacuumWave": { + "name": "真空波", + "effect": "揮動拳頭,掀起真空波。必\n定能夠先制攻擊" + }, + "focusBlast": { + "name": "真氣彈", + "effect": "提高氣勢,釋放出全部力量。\n有時會降低對手的特防" + }, + "energyBall": { + "name": "能量球", + "effect": "發射從自然收集的生命力量。\n有時會降低對手的特防" + }, + "braveBird": { + "name": "勇鳥猛攻", + "effect": "收攏翅膀,通過低空飛行突\n擊對手。自己也會受到不小\n的傷害" + }, + "earthPower": { + "name": "大地之力", + "effect": "向對手腳下釋放出大地之力。\n有時會降低對手的特防" + }, + "switcheroo": { + "name": "掉包", + "effect": "用一閃而過的速度交換自己\n和對手的持有物" + }, + "gigaImpact": { + "name": "終極衝擊", + "effect": "使出自己渾身力量突擊對手。\n下一回合自己將無法動彈" + }, + "nastyPlot": { + "name": "詭計", + "effect": "謀劃詭計,激活頭腦。大幅\n提高自己的特攻" + }, + "bulletPunch": { + "name": "子彈拳", + "effect": "向對手使出如子彈般快速而\n堅硬的拳頭。必定能夠先制\n攻擊" + }, + "avalanche": { + "name": "雪崩", + "effect": "如果受到對手的招式攻擊,\n就能給予該對手2倍威力的\n攻擊" + }, + "iceShard": { + "name": "冰礫", + "effect": "瞬間製作冰塊,快速地扔向\n對手。必定能夠先制攻擊" + }, + "shadowClaw": { + "name": "暗影爪", + "effect": "以影子做成的銳爪,劈開對\n手。容易擊中要害" + }, + "thunderFang": { + "name": "雷電牙", + "effect": "用蓄滿電流的牙齒咬住對手。\n有時會使對手畏縮或陷入\n麻痹狀態" + }, + "iceFang": { + "name": "冰凍牙", + "effect": "用藏有冷氣的牙齒咬住對手。\n有時會使對手畏縮或陷入\n冰凍狀態" + }, + "fireFang": { + "name": "火焰牙", + "effect": "用覆蓋着火焰的牙齒咬住對\n手。有時會使對手畏縮或陷\n入灼傷狀態" + }, + "shadowSneak": { + "name": "影子偷襲", + "effect": "伸長影子,從對手的背後進\n行攻擊。必定能夠先制攻擊" + }, + "mudBomb": { + "name": "泥巴炸彈", + "effect": "向對手發射堅硬的泥彈進行\n攻擊。有時會降低對手的命\n中率" + }, + "psychoCut": { + "name": "精神利刃", + "effect": "用實體化的心之利刃劈開對\n手。容易擊中要害" + }, + "zenHeadbutt": { + "name": "意念頭錘", + "effect": "將思念的力量集中在前額進\n行攻擊。有時會使對手畏縮" + }, + "mirrorShot": { + "name": "鏡光射擊", + "effect": "拋光自己的身體,向對手釋\n放出閃光之力。有時會降低\n對手的命中率" + }, + "flashCannon": { + "name": "加農光炮", + "effect": "將身體的光芒聚集在一點釋\n放出去。有時會降低對手的\n特防" + }, + "rockClimb": { + "name": "攀岩", + "effect": "發動猛撞攻擊,有時會使對\n手混亂。是寶可表的祕傳招\n式之一" + }, + "defog": { + "name": "清除濃霧", + "effect": "用強風吹開對手的反射壁或\n光牆等。也會降低對手的閃\n避率" + }, + "trickRoom": { + "name": "戲法空間", + "effect": "製造出離奇的空間。在5回\n合內速度慢的寶可夢可以先\n行動" + }, + "dracoMeteor": { + "name": "流星群", + "effect": "從天空中向對手落下隕石。\n使用之後因爲反作用力,自\n己的特攻會大幅降低" + }, + "discharge": { + "name": "放電", + "effect": "用耀眼的電擊攻擊自己周圍\n所有的寶可夢。有時會陷入\n麻痹狀態" + }, + "lavaPlume": { + "name": "噴煙", + "effect": "用熊熊烈火攻擊自己周圍所\n有的寶可夢。有時會陷入灼\n傷狀態" + }, + "leafStorm": { + "name": "飛葉風暴", + "effect": "用尖尖的葉片向對手卷起風\n暴。使用之後因爲反作用力\n自己的特攻會大幅降低" + }, + "powerWhip": { + "name": "強力鞭打", + "effect": "激烈地揮舞青藤或觸手摔打\n對手進行攻擊" + }, + "rockWrecker": { + "name": "岩石炮", + "effect": "向對手發射巨大的岩石進行\n攻擊。下一回合自己將無法\n動彈" + }, + "crossPoison": { + "name": "十字毒刃", + "effect": "用毒刃劈開對手。有時會讓\n對手陷入中毒狀態,也容易\n擊中要害" + }, + "gunkShot": { + "name": "垃圾射擊", + "effect": "用骯髒的垃圾撞向對手進行\n攻擊。有時會讓對手陷入中\n毒狀態" + }, + "ironHead": { + "name": "鐵頭", + "effect": "用鋼鐵般堅硬的頭部進行攻\n擊。有時會使對手畏縮" + }, + "magnetBomb": { + "name": "磁鐵炸彈", + "effect": "發射吸住對手的鋼鐵炸彈。\n攻擊必定會命中" + }, + "stoneEdge": { + "name": "尖石攻擊", + "effect": "用尖尖的岩石刺入對手進行\n攻擊。容易擊中要害" + }, + "captivate": { + "name": "誘惑", + "effect": "♂誘惑♀或♀誘惑♂,從而\n大幅降低對手的特攻" + }, + "stealthRock": { + "name": "隱形岩", + "effect": "將無數岩石懸浮在對手的周\n圍,從而對替換出場的對手\n的寶可夢給予傷害" + }, + "grassKnot": { + "name": "打草結", + "effect": "用草纏住並絆倒對手。對手\n越重,威力越大" + }, + "chatter": { + "name": "喋喋不休", + "effect": "用非常煩人的,喋喋不休的\n音波攻擊對手。使對手混亂" + }, + "judgment": { + "name": "制裁光礫", + "effect": "向對手放出無數的光彈。屬\n性會根據自己攜帶的石板不\n同而改變" + }, + "bugBite": { + "name": "蟲咬", + "effect": "咬住進行攻擊。當對手攜帶\n樹果時,可以食用並獲得其\n效果" + }, + "chargeBeam": { + "name": "充電光束", + "effect": "向對手發射電擊光束。由於\n蓄滿電流,有時會提高自己\n的特攻" + }, + "woodHammer": { + "name": "木槌", + "effect": "用堅硬的軀體撞擊對手進行\n攻擊。自己也會受到不小的\n傷害" + }, + "aquaJet": { + "name": "水流噴射", + "effect": "以迅雷不及掩耳之勢撲向對\n手。必定能夠先制攻擊" + }, + "attackOrder": { + "name": "攻擊指令", + "effect": "召喚手下,讓其朝對手發起\n攻擊。容易擊中要害" + }, + "defendOrder": { + "name": "防禦指令", + "effect": "召喚手下,讓其附在自己的\n身體上。可以提高自己的防\n御和特防" + }, + "healOrder": { + "name": "回覆指令", + "effect": "召喚手下療傷。回覆自己最\n大HP的一半" + }, + "headSmash": { + "name": "雙刃頭錘", + "effect": "拼命使出渾身力氣,向對手\n進行頭錘攻擊。自己也會受\n到非常大的傷害" + }, + "doubleHit": { + "name": "二連擊", + "effect": "使用尾巴等拍打對手進行攻\n擊。連續2次給予傷害" + }, + "roarOfTime": { + "name": "時光咆哮", + "effect": "釋放出扭曲時間般的強大力\n量攻擊對手。下一回合自己\n將無法動彈" + }, + "spacialRend": { + "name": "亞空裂斬", + "effect": "將對手連同周圍的空間一起\n撕裂並給予傷害。容易擊中\n要害" + }, + "lunarDance": { + "name": "新月舞", + "effect": "雖然自己陷入昏厥,但可以\n治癒後備上場的寶可夢的全\n部狀態" + }, + "crushGrip": { + "name": "捏碎", + "effect": "用駭人的力量捏碎對手。對\n手剩餘的HP越多,威力越\n大" + }, + "magmaStorm": { + "name": "熔岩風暴", + "effect": "將對手困在熊熊燃燒的火焰\n中,在4~5回合內進行攻\n擊" + }, + "darkVoid": { + "name": "暗黑洞", + "effect": "將對手強制拖入黑暗的世界,\n從而讓對手陷入睡眠狀態" + }, + "seedFlare": { + "name": "種子閃光", + "effect": "從身體裏產生衝擊波。有時\n會大幅降低對手的特防" + }, + "ominousWind": { + "name": "奇異之風", + "effect": "突然颳起毛骨悚然的暴風攻\n擊對手。有時會提高自己的\n全部能力" + }, + "shadowForce": { + "name": "暗影潛襲", + "effect": "第1回合消失蹤影,第2回\n合攻擊對手。即使對手正受\n保護,也能擊中" + }, + "honeClaws": { + "name": "磨爪", + "effect": "將爪子磨得更加鋒利。提高\n自己的攻擊和命中率" + }, + "wideGuard": { + "name": "廣域防守", + "effect": "在1回合內防住擊打我方全\n員的攻擊" + }, + "guardSplit": { + "name": "防守平分", + "effect": "利用超能力將自己和對手的\n防禦和特防相加,再進行平\n分" + }, + "powerSplit": { + "name": "力量平分", + "effect": "利用超能力將自己和對手的\n攻擊和特攻相加,再進行平\n分" + }, + "wonderRoom": { + "name": "奇妙空間", + "effect": "製造出離奇的空間。在5回\n合內互換所有寶可夢的防禦\n和特防" + }, + "psyshock": { + "name": "精神衝擊", + "effect": "將神奇的念波實體化攻擊對\n手。給予物理傷害" + }, + "venoshock": { + "name": "毒液衝擊", + "effect": "將特殊的毒液潑向對手。對\n處於中毒狀態的對手,威力\n會變成2倍" + }, + "autotomize": { + "name": "身體輕量化", + "effect": "削掉身體上沒用的部分。大\n幅提高自己的速度,同時體\n重也會變輕" + }, + "ragePowder": { + "name": "憤怒粉", + "effect": "將令人煩躁的粉末撒在自己\n身上,用以吸引對手的注意。\n使對手的攻擊全部指向自\n己" + }, + "telekinesis": { + "name": "意念移物", + "effect": "利用超能力使對手浮起來。\n在3回合內攻擊會變得容易\n打中對手" + }, + "magicRoom": { + "name": "魔法空間", + "effect": "製造出離奇的空間。在5回\n合內所有寶可夢攜帶道具的\n效果都會消失" + }, + "smackDown": { + "name": "擊落", + "effect": "扔石頭或炮彈,攻擊飛行的\n對手。對手會被擊落,掉到\n地面" + }, + "stormThrow": { + "name": "山嵐摔", + "effect": "向對手使出強烈的一擊。攻\n擊必定會擊中要害" + }, + "flameBurst": { + "name": "烈焰濺射", + "effect": "如果擊中,爆裂的火焰會攻\n擊到對手。爆裂出的火焰還\n會飛濺到旁邊的對手" + }, + "sludgeWave": { + "name": "污泥波", + "effect": "用污泥波攻擊自己周圍所有\n的寶可夢。有時會陷入中毒\n狀態" + }, + "quiverDance": { + "name": "蝶舞", + "effect": "輕巧地跳起神祕而又美麗的\n舞蹈。提高自己的特攻、特\n防和速度" + }, + "heavySlam": { + "name": "重磅衝撞", + "effect": "用沉重的身體撞向對手進行\n攻擊。自己比對手越重,威\n力越大" + }, + "synchronoise": { + "name": "同步干擾", + "effect": "用神奇電波對周圍所有和自\n己屬性相同的寶可夢給予傷\n害" + }, + "electroBall": { + "name": "電球", + "effect": "用電氣團撞向對手。自己比\n對手速度越快,威力越大" + }, + "soak": { + "name": "浸水", + "effect": "將大量的水潑向對手,從而\n使其變成水屬性" + }, + "flameCharge": { + "name": "蓄能焰襲", + "effect": "讓火焰覆蓋全身,攻擊對手。\n積蓄力量來提高自己的速\n度" + }, + "coil": { + "name": "盤蜷", + "effect": "盤蜷着集中精神。提高自己\n的攻擊、防禦和命中率" + }, + "lowSweep": { + "name": "下盤踢", + "effect": "以敏捷的動作瞄準對手的腳\n進行攻擊。會降低對手的速\n度" + }, + "acidSpray": { + "name": "酸液炸彈", + "effect": "噴出能溶化對手的液體進行\n攻擊。會大幅降低對手的特\n防" + }, + "foulPlay": { + "name": "欺詐", + "effect": "利用對手的力量進行攻擊。\n正和自己戰鬥的對手,其攻\n擊越高,傷害越大" + }, + "simpleBeam": { + "name": "單純光束", + "effect": "向對手發送謎之念波。接收\n到念波的對手,其特性會變\n爲單純" + }, + "entrainment": { + "name": "找夥伴", + "effect": "用神奇的節奏跳舞。使對手\n模仿自己的動作,從而將特\n性變成一樣" + }, + "afterYou": { + "name": "您先請", + "effect": "支援我方或對手的行動,使\n其緊接着此招式之後行動" + }, + "round": { + "name": "輪唱", + "effect": "用歌聲攻擊對手。大家一起\n輪唱便可以接連使出,威力\n也會提高" + }, + "echoedVoice": { + "name": "迴聲", + "effect": "用回聲攻擊對手。如果每回\n合都有寶可夢接着使用該招\n式,威力就會提高" + }, + "chipAway": { + "name": "逐步擊破", + "effect": "看準機會穩步攻擊。無視對\n手的能力變化,直接給予傷\n害" + }, + "clearSmog": { + "name": "清除之煙", + "effect": "向對手投擲特殊的泥塊進行\n攻擊。使其能力變回原點" + }, + "storedPower": { + "name": "輔助力量", + "effect": "用蓄積起來的力量攻擊對手。\n自己的能力提高得越多,\n威力就越大" + }, + "quickGuard": { + "name": "快速防守", + "effect": "守護自己和同伴,以防對手\n的先制攻擊" + }, + "allySwitch": { + "name": "交換場地", + "effect": "用神奇的力量瞬間移動,互\n換自己和同伴所在的位置。\n連續使出則容易失敗" + }, + "scald": { + "name": "熱水", + "effect": "向對手噴射煮得翻滾的開水\n進行攻擊。有時會讓對手陷\n入灼傷狀態" + }, + "shellSmash": { + "name": "破殼", + "effect": "打破外殼,降低自己的防禦\n和特防,但大幅提高攻擊、\n特攻和速度" + }, + "healPulse": { + "name": "治癒波動", + "effect": "放出治癒波動,從而回復對\n手最大HP的一半" + }, + "hex": { + "name": "禍不單行", + "effect": "接二連三地進行攻擊。對處\n於異常狀態的對手給予較大\n的傷害" + }, + "skyDrop": { + "name": "自由落體", + "effect": "第1回合將對手帶到空中,\n第2回合將其摔下進行攻擊。\n被帶到空中的對手不能動\n彈" + }, + "shiftGear": { + "name": "換檔", + "effect": "轉動齒輪,不僅提高自己的\n攻擊,還會大幅提高速度" + }, + "circleThrow": { + "name": "巴投", + "effect": "扔飛對手,強制拉後備寶可\n夢上場。如果對手爲野生寶\n可夢,戰鬥將直接結束" + }, + "incinerate": { + "name": "燒盡", + "effect": "用火焰攻擊對手。對手攜帶\n樹果等時,會燒掉,使其不\n能使用" + }, + "quash": { + "name": "延後", + "effect": "壓制對手,從而將其行動順\n序放到最後" + }, + "acrobatics": { + "name": "雜技", + "effect": "輕巧地攻擊對手。自己沒有\n攜帶道具時,會給予較大的\n傷害" + }, + "reflectType": { + "name": "鏡面屬性", + "effect": "反射對手的屬性,讓自己也\n變成一樣的屬性" + }, + "retaliate": { + "name": "報仇", + "effect": "爲倒下的同伴報仇。如果上\n一回合有同伴倒下,威力就\n會提高" + }, + "finalGambit": { + "name": "搏命", + "effect": "拼命攻擊對手。雖然自己陷\n入昏厥,但會給予對手和自\n己目前HP等量的傷害" + }, + "bestow": { + "name": "傳遞禮物", + "effect": "當對手未攜帶道具時,能夠\n將自己攜帶的道具交給對手" + }, + "inferno": { + "name": "煉獄", + "effect": "用猛烈的火焰包圍對手進行\n攻擊。讓對手陷入灼傷狀態" + }, + "waterPledge": { + "name": "水之誓約", + "effect": "用水柱進行攻擊。如果和火\n組合,威力就會提高,天空\n中會掛上彩虹" + }, + "firePledge": { + "name": "火之誓約", + "effect": "用火柱進行攻擊。如果和草\n組合,威力就會提高,周圍\n會變成火海" + }, + "grassPledge": { + "name": "草之誓約", + "effect": "用草柱進行攻擊。如果和水\n組合,威力就會提高,周圍\n會變成溼地" + }, + "voltSwitch": { + "name": "伏特替換", + "effect": "在攻擊之後急速返回,和後\n備寶可夢進行替換" + }, + "struggleBug": { + "name": "蟲之抵抗", + "effect": "抵抗並攻擊對手。會降低對\n手的特攻" + }, + "bulldoze": { + "name": "重踏", + "effect": "用力踩踏地面並攻擊自己周\n圍所有的寶可夢。會降低對\n方的速度" + }, + "frostBreath": { + "name": "冰息", + "effect": "將冰冷的氣息吹向對手進行\n攻擊。必定會擊中要害" + }, + "dragonTail": { + "name": "龍尾", + "effect": "彈飛對手,強制拉後備寶可\n夢上場。如果對手爲野生寶\n可夢,戰鬥將直接結束" + }, + "workUp": { + "name": "自我激勵", + "effect": "激勵自己,從而提高攻擊和\n特攻" + }, + "electroweb": { + "name": "電網", + "effect": "用電網捉住對手進行攻擊。\n會降低對手的速度" + }, + "wildCharge": { + "name": "瘋狂伏特", + "effect": "讓電流覆蓋全身,撞向對手\n進行攻擊。自己也會受到少\n許傷害" + }, + "drillRun": { + "name": "直衝鑽", + "effect": "像鋼鑽一樣,一邊旋轉身體\n一邊撞擊對手。容易擊中要\n害" + }, + "dualChop": { + "name": "二連劈", + "effect": "用身體堅硬的部分拍打對手\n進行攻擊。連續2次給予傷\n害" + }, + "heartStamp": { + "name": "愛心印章", + "effect": "以可愛的動作使對手疏忽,\n乘機給出強烈的一擊。有時\n會使對手畏縮" + }, + "hornLeech": { + "name": "木角", + "effect": "將角刺入,吸取對手的養分。\n可以回覆給予對手傷害的\n一半HP" + }, + "sacredSword": { + "name": "聖劍", + "effect": "用劍切斬對手進行攻擊。無\n視對手的能力變化,直接給\n予傷害" + }, + "razorShell": { + "name": "貝殼刃", + "effect": "用鋒利的貝殼切斬對手進行\n攻擊。有時會降低對手的防\n御" + }, + "heatCrash": { + "name": "高溫重壓", + "effect": "用燃燒的身體撞向對手進行\n攻擊。自己比對手越重,威\n力越大" + }, + "leafTornado": { + "name": "青草攪拌器", + "effect": "用鋒利的葉片包裹住對手進\n行攻擊。有時會降低對手的\n命中率" + }, + "steamroller": { + "name": "瘋狂滾壓", + "effect": "旋轉揉成團的身體壓扁對手。\n有時會使對手畏縮" + }, + "cottonGuard": { + "name": "棉花防守", + "effect": "用軟綿綿的絨毛包裹住自己\n的身體進行守護。巨幅提高\n自己的防禦" + }, + "nightDaze": { + "name": "暗黑爆破", + "effect": "放出黑暗的衝擊波攻擊對手。\n有時會降低對手的命中率" + }, + "psystrike": { + "name": "精神擊破", + "effect": "將神奇的念波實體化攻擊對\n手。給予物理傷害" + }, + "tailSlap": { + "name": "掃尾拍打", + "effect": "用堅硬的尾巴拍打對手進行\n攻擊。連續攻擊2~5次" + }, + "hurricane": { + "name": "暴風", + "effect": "用強烈的風席捲對手進行攻\n擊。有時會使對手混亂" + }, + "headCharge": { + "name": "爆炸頭突擊", + "effect": "用厲害的爆炸頭猛撞向對手\n進行攻擊。自己也會受到少\n許傷害" + }, + "gearGrind": { + "name": "齒輪飛盤", + "effect": "向對手投擲鋼鐵齒輪進行攻\n擊。連續2次給予傷害" + }, + "searingShot": { + "name": "火焰彈", + "effect": "用熊熊烈火攻擊自己周圍所\n有的寶可夢。有時會陷入灼\n傷狀態" + }, + "technoBlast": { + "name": "高科技光炮", + "effect": "向對手放出光彈。屬性會根\n據自己攜帶的卡帶不同而改\n變" + }, + "relicSong": { + "name": "古老之歌", + "effect": "讓對手聽古老之歌,打動對\n手的內心進行攻擊。有時會\n讓對手陷入睡眠狀態" + }, + "secretSword": { + "name": "神祕之劍", + "effect": "用長角切斬對手進行攻擊。\n角上擁有的神奇力量將給予\n物理傷害" + }, + "glaciate": { + "name": "冰封世界", + "effect": "將冰凍的冷氣吹向對手進行\n攻擊。會降低對手的速度" + }, + "boltStrike": { + "name": "雷擊", + "effect": "讓強大的電流覆蓋全身,猛\n撞向對手進行攻擊。有時會\n讓對手陷入麻痹狀態" + }, + "blueFlare": { + "name": "青焰", + "effect": "用美麗而激烈的青焰包裹住\n對手進行攻擊。有時會讓對\n手陷入灼傷狀態" + }, + "fieryDance": { + "name": "火之舞", + "effect": "讓火焰覆蓋全身,振翅攻擊\n對手。有時會提高自己的特\n攻" + }, + "freezeShock": { + "name": "冰凍伏特", + "effect": "用覆蓋着電流的冰塊,在第\n2回合撞向對手。有時會讓\n對手陷入麻痹狀態" + }, + "iceBurn": { + "name": "極寒冷焰", + "effect": "用能夠凍結一切的強烈冷氣,\n在第2回合包裹住對手。\n有時會讓對手陷入灼傷狀態" + }, + "snarl": { + "name": "大聲咆哮", + "effect": "沒完沒了地大聲斥責,從而\n降低對手的特攻" + }, + "icicleCrash": { + "name": "冰柱墜擊", + "effect": "用大冰柱激烈地撞向對手進\n行攻擊。有時會使對手畏縮" + }, + "vCreate": { + "name": "V熱焰", + "effect": "從前額產生灼熱的火焰,舍\n身撞擊對手。防禦、特防和\n速度會降低" + }, + "fusionFlare": { + "name": "交錯火焰", + "effect": "釋放出巨大的火焰。受到巨\n大的閃電影響時,招式威力\n會提高" + }, + "fusionBolt": { + "name": "交錯閃電", + "effect": "釋放出巨大的閃電。受到巨\n大的火焰影響時,招式威力\n會提高" + }, + "flyingPress": { + "name": "飛身重壓", + "effect": "從空中俯衝向對手。此招式\n同時帶有格鬥屬性和飛行屬\n性" + }, + "matBlock": { + "name": "掀榻榻米", + "effect": "將掀起來的榻榻米當作盾牌,\n防住自己和同伴免受招式\n傷害。變化招式無法防住" + }, + "belch": { + "name": "打嗝", + "effect": "朝着對手打嗝,並給予傷害。\n如果不喫樹果則無法使出" + }, + "rototiller": { + "name": "耕地", + "effect": "翻耕土地,使草木更容易成\n長。會提高草屬性寶可夢的\n攻擊和特攻" + }, + "stickyWeb": { + "name": "黏黏網", + "effect": "在對手周圍圍上黏黏的網,\n降低替換出場的對手的速度" + }, + "fellStinger": { + "name": "致命針刺", + "effect": "如果使用此招式打倒對手,\n攻擊會巨幅提高" + }, + "phantomForce": { + "name": "潛靈奇襲", + "effect": "第1回合消失在某處,第2\n回合攻擊對手。可以無視守\n護進行攻擊" + }, + "trickOrTreat": { + "name": "萬聖夜", + "effect": "邀請對手參加萬聖夜。使對\n手被追加幽靈屬性" + }, + "nobleRoar": { + "name": "戰吼", + "effect": "發出戰吼威嚇對手,從而降\n低對手的攻擊和特攻" + }, + "ionDeluge": { + "name": "等離子浴", + "effect": "將帶電粒子擴散開來,使一\n般屬性的招式變成電屬性" + }, + "parabolicCharge": { + "name": "拋物面充電", + "effect": "給周圍全體寶可夢造成傷害。\n可以回覆給予傷害的一半\nHP" + }, + "forestsCurse": { + "name": "森林咒術", + "effect": "向對手施加森林咒術。中了\n咒術的對手會被追加草屬性" + }, + "petalBlizzard": { + "name": "落英繽紛", + "effect": "猛烈地颳起飛雪般的落花,\n攻擊周圍所有的寶可夢,並\n給予傷害" + }, + "freezeDry": { + "name": "冷凍乾燥", + "effect": "急劇冷凍對手,有時會讓對\n手陷入冰凍狀態。對於水屬\n性寶可夢也是效果絕佳" + }, + "disarmingVoice": { + "name": "魅惑之聲", + "effect": "發出魅惑的叫聲,給予對手\n精神上的傷害。攻擊必定會\n命中" + }, + "partingShot": { + "name": "拋下狠話", + "effect": "拋下狠話威嚇對手,降低攻\n擊和特攻後,和後備寶可夢\n進行替換" + }, + "topsyTurvy": { + "name": "顛倒", + "effect": "顛倒對手身上的所有能力變\n化,變成和原來相反的狀態" + }, + "drainingKiss": { + "name": "吸取之吻", + "effect": "用一個吻吸取對手的HP。\n回覆給予對手傷害的一半以\n上的HP" + }, + "craftyShield": { + "name": "戲法防守", + "effect": "使用神奇的力量防住攻擊我\n方的變化招式。但無法防住\n傷害招式的攻擊" + }, + "flowerShield": { + "name": "鮮花防守", + "effect": "使用神奇的力量提高在場的\n所有草屬性寶可夢的防禦" + }, + "grassyTerrain": { + "name": "青草場地", + "effect": "在5回合內變成青草場地。\n地面上的寶可夢每回合都能\n回覆。草屬性的招式威力還\n會提高" + }, + "mistyTerrain": { + "name": "薄霧場地", + "effect": "在5回合內,地面上的寶可\n夢不會陷入異常狀態。龍屬\n性招式的傷害也會減半" + }, + "electrify": { + "name": "輸電", + "effect": "對手使出招式前,如果輸電,\n則該回合對手的招式變成\n電屬性" + }, + "playRough": { + "name": "嬉鬧", + "effect": "與對手嬉鬧並攻擊。有時會\n降低對手的攻擊" + }, + "fairyWind": { + "name": "妖精之風", + "effect": "颳起妖精之風,吹向對手進\n行攻擊" + }, + "moonblast": { + "name": "月亮之力", + "effect": "借用月亮的力量攻擊對手。\n有時會降低對手的特攻" + }, + "boomburst": { + "name": "爆音波", + "effect": "通過震耳欲聾的爆炸聲產生\n的破壞力,攻擊自己周圍所\n有的寶可夢" + }, + "fairyLock": { + "name": "妖精之鎖", + "effect": "通過封鎖,下一回合所有的\n寶可夢都無法逃走" + }, + "kingsShield": { + "name": "王者盾牌", + "effect": "防住對手攻擊的同時,自己\n變爲防禦姿態。能夠降低所\n接觸到的對手的攻擊" + }, + "playNice": { + "name": "和睦相處", + "effect": "和對手和睦相處,使其失去\n戰鬥的氣力,從而降低對手\n的攻擊" + }, + "confide": { + "name": "密語", + "effect": "和對手進行密語,使其失去\n集中力,從而降低對手的特\n攻" + }, + "diamondStorm": { + "name": "鑽石風暴", + "effect": "掀起鑽石風暴給予傷害。有\n時會大幅提高自己的防禦" + }, + "steamEruption": { + "name": "蒸汽爆炸", + "effect": "將滾燙的蒸汽噴向對手。有\n時會讓對手灼傷" + }, + "hyperspaceHole": { + "name": "異次元洞", + "effect": "通過異次元洞,突然出現在\n對手的側面進行攻擊。還可\n以無視守住和看穿等招式" + }, + "waterShuriken": { + "name": "飛水手裏劍", + "effect": "用粘液製成的手裏劍,連續\n攻擊2~5次。必定能夠先\n制攻擊" + }, + "mysticalFire": { + "name": "魔法火焰", + "effect": "從口中噴出特別灼熱的火焰\n進行攻擊。降低對手的特攻" + }, + "spikyShield": { + "name": "尖刺防守", + "effect": "防住對手攻擊的同時,削減\n接觸到自己的對手的體力" + }, + "aromaticMist": { + "name": "芳香薄霧", + "effect": "通過神奇的芳香,提高我方\n寶可夢的特防" + }, + "eerieImpulse": { + "name": "怪異電波", + "effect": "從身體放射出怪異電波,讓\n對手沐浴其中,從而大幅降\n低其特攻" + }, + "venomDrench": { + "name": "毒液陷阱", + "effect": "將特殊的毒液潑向對手。對\n處於中毒狀態的對手,其攻\n擊、特攻和速度都會降低" + }, + "powder": { + "name": "粉塵", + "effect": "如果被撒到粉塵的對手使用\n火招式,則會爆炸並給予傷\n害" + }, + "geomancy": { + "name": "大地掌控", + "effect": "第1回合吸收能量,第2回\n合大幅提高特攻、特防和速\n度" + }, + "magneticFlux": { + "name": "磁場操控", + "effect": "通過操控磁場,會提高特性\n爲正電和負電的寶可夢的防\n御和特防" + }, + "happyHour": { + "name": "歡樂時光", + "effect": "如果使用歡樂時光,戰鬥後\n得到的錢會翻倍" + }, + "electricTerrain": { + "name": "電氣場地", + "effect": "在5回合內變成電氣場地。\n地面上的寶可夢將無法入眠。\n電屬性的招式威力還會提\n高" + }, + "dazzlingGleam": { + "name": "魔法閃耀", + "effect": "向對手發射強光,並給予傷\n害" + }, + "celebrate": { + "name": "慶祝", + "effect": "寶可夢爲十分開心的你慶祝" + }, + "holdHands": { + "name": "牽手", + "effect": "我方寶可夢之間牽手。能帶\n來非常幸福的心情" + }, + "babyDollEyes": { + "name": "圓瞳", + "effect": "用圓瞳凝視對手,從而降低\n其攻擊。必定能夠先制攻擊" + }, + "nuzzle": { + "name": "蹭蹭臉頰", + "effect": "將帶電的臉頰蹭蹭對手進行\n攻擊。讓對手陷入麻痹狀態" + }, + "holdBack": { + "name": "手下留情", + "effect": "在攻擊的時候手下留情,從\n而使對手的HP至少會留下\n1HP" + }, + "infestation": { + "name": "糾纏不休", + "effect": "在4~5回合內死纏爛打地\n進行攻擊。在此期間對手將\n無法逃走" + }, + "powerUpPunch": { + "name": "增強拳", + "effect": "通過反覆擊打對手,使自己\n的拳頭慢慢變硬。打中對手\n攻擊就會提高" + }, + "oblivionWing": { + "name": "歸天之翼", + "effect": "從鎖定的對手身上吸取HP。\n回覆給予對手傷害的一半\n以上的HP" + }, + "thousandArrows": { + "name": "千箭齊發", + "effect": "可以擊中浮在空中的寶可夢。\n空中的對手被擊落後,會\n掉到地面" + }, + "thousandWaves": { + "name": "千波激盪", + "effect": "從地面掀起波浪進行攻擊。\n被掀入波浪中的對手,將無\n法從戰鬥中逃走" + }, + "landsWrath": { + "name": "大地神力", + "effect": "聚集大地的力量,將此力量\n集中攻擊對手,並給予傷害" + }, + "lightOfRuin": { + "name": "破滅之光", + "effect": "借用永恆之花的力量,發射\n出強力光線。自己也會受到\n非常大的傷害" + }, + "originPulse": { + "name": "根源波動", + "effect": "用無數青白色且閃耀的光線\n攻擊對手" + }, + "precipiceBlades": { + "name": "斷崖之劍", + "effect": "將大地的力量變化爲利刃攻\n擊對手" + }, + "dragonAscent": { + "name": "畫龍點睛", + "effect": "從天空中急速下降攻擊對手。\n自己的防禦和特防會降低" + }, + "hyperspaceFury": { + "name": "異次元猛攻", + "effect": "用許多手臂,無視對手的守\n住或看穿等招式進行連續攻\n擊,自己的防禦會降低" + }, + "breakneckBlitzPhysical": { + "name": "一般Z究極無敵大沖撞", + "effect": "通過Z力量氣勢猛烈地全力\n撞上對手。威力會根據原來\n的招式而改變" + }, + "breakneckBlitzSpecial": { + "name": "一般Z究極無敵大沖撞", + "effect": "通過Z力量氣勢猛烈地全力\n撞上對手。威力會根據原來\n的招式而改變" + }, + "allOutPummelingPhysical": { + "name": "格鬥Z全力無雙激烈拳", + "effect": "通過Z力量製造出能量彈,\n全力撞向對手。威力會根據\n原來的招式而改變" + }, + "allOutPummelingSpecial": { + "name": "格鬥Z全力無雙激烈拳", + "effect": "通過Z力量製造出能量彈,\n全力撞向對手。威力會根據\n原來的招式而改變" + }, + "supersonicSkystrikePhysical": { + "name": "飛行Z極速俯衝轟烈撞", + "effect": "通過Z力量猛烈地飛向天空,\n朝對手全力落下。威力會\n根據原來的招式而改變" + }, + "supersonicSkystrikeSpecial": { + "name": "飛行Z極速俯衝轟烈撞", + "effect": "通過Z力量猛烈地飛向天空,\n朝對手全力落下。威力會\n根據原來的招式而改變" + }, + "acidDownpourPhysical": { + "name": "毒Z強酸劇毒滅絕雨", + "effect": "通過Z力量使毒沼湧起,全\n力讓對手沉下去。威力會根\n據原來的招式而改變" + }, + "acidDownpourSpecial": { + "name": "毒Z強酸劇毒滅絕雨", + "effect": "通過Z力量使毒沼湧起,全\n力讓對手沉下去。威力會根\n據原來的招式而改變" + }, + "tectonicRagePhysical": { + "name": "地面Z地隆嘯天大終結", + "effect": "通過Z力量潛入地裏最深處,\n全力撞上對手。威力會根\n據原來的招式而改變" + }, + "tectonicRageSpecial": { + "name": "地面Z地隆嘯天大終結", + "effect": "通過Z力量潛入地裏最深處,\n全力撞上對手。威力會根\n據原來的招式而改變" + }, + "continentalCrushPhysical": { + "name": "岩石Z毀天滅地巨巖墜", + "effect": "通過Z力量召喚大大的巖山,\n全力撞向對手。威力會根\n據原來的招式而改變" + }, + "continentalCrushSpecial": { + "name": "岩石Z毀天滅地巨巖墜", + "effect": "通過Z力量召喚大大的巖山,\n全力撞向對手。威力會根\n據原來的招式而改變" + }, + "savageSpinOutPhysical": { + "name": "蟲Z絕對捕食迴旋斬", + "effect": "通過Z力量將吐出的絲線全\n力束縛對手。威力會根據原\n來的招式而改變" + }, + "savageSpinOutSpecial": { + "name": "蟲Z絕對捕食迴旋斬", + "effect": "通過Z力量將吐出的絲線全\n力束縛對手。威力會根據原\n來的招式而改變" + }, + "neverEndingNightmarePhysical": { + "name": "幽靈Z無盡暗夜之誘惑", + "effect": "通過Z力量召喚強烈的怨念,\n全力降臨到對手身上。威\n力會根據原來的招式而改變" + }, + "neverEndingNightmareSpecial": { + "name": "幽靈Z無盡暗夜之誘惑", + "effect": "通過Z力量召喚強烈的怨念,\n全力降臨到對手身上。威\n力會根據原來的招式而改變" + }, + "corkscrewCrashPhysical": { + "name": "鋼Z超絕螺旋連擊", + "effect": "通過Z力量進行高速旋轉,\n全力撞上對手。威力會根據\n原來的招式而改變" + }, + "corkscrewCrashSpecial": { + "name": "鋼Z超絕螺旋連擊", + "effect": "通過Z力量進行高速旋轉,\n全力撞上對手。威力會根據\n原來的招式而改變" + }, + "infernoOverdrivePhysical": { + "name": "火Z超強極限爆焰彈", + "effect": "通過Z力量噴出熊熊烈火,\n全力撞向對手。威力會根據\n原來的招式而改變" + }, + "infernoOverdriveSpecial": { + "name": "火Z超強極限爆焰彈", + "effect": "通過Z力量噴出熊熊烈火,\n全力撞向對手。威力會根據\n原來的招式而改變" + }, + "hydroVortexPhysical": { + "name": "水Z超級水流大漩渦", + "effect": "通過Z力量製造大大的潮旋,\n全力吞沒對手。威力會根\n據原來的招式而改變" + }, + "hydroVortexSpecial": { + "name": "水Z超級水流大漩渦", + "effect": "通過Z力量製造大大的潮旋,\n全力吞沒對手。威力會根\n據原來的招式而改變" + }, + "bloomDoomPhysical": { + "name": "草Z絢爛繽紛花怒放", + "effect": "通過Z力量藉助花草的能量,\n全力攻擊對手。威力會根\n據原來的招式而改變" + }, + "bloomDoomSpecial": { + "name": "草Z絢爛繽紛花怒放", + "effect": "通過Z力量藉助花草的能量,\n全力攻擊對手。威力會根\n據原來的招式而改變" + }, + "gigavoltHavocPhysical": { + "name": "電Z終極伏特狂雷閃", + "effect": "通過Z力量將蓄積的強大電\n流全力撞向對手。威力會根\n據原來的招式而改變" + }, + "gigavoltHavocSpecial": { + "name": "電Z終極伏特狂雷閃", + "effect": "通過Z力量將蓄積的強大電\n流全力撞向對手。威力會根\n據原來的招式而改變" + }, + "shatteredPsychePhysical": { + "name": "超能力Z至高精神破壞波", + "effect": "通過Z力量操縱對手,全力\n使其感受到痛苦。威力會根\n據原來的招式而改變" + }, + "shatteredPsycheSpecial": { + "name": "超能力Z至高精神破壞波", + "effect": "通過Z力量操縱對手,全力\n使其感受到痛苦。威力會根\n據原來的招式而改變" + }, + "subzeroSlammerPhysical": { + "name": "冰Z激狂大地萬里冰", + "effect": "通過Z力量急劇降低氣溫,\n全力冰凍對手。威力會根據\n原來的招式而改變" + }, + "subzeroSlammerSpecial": { + "name": "冰Z激狂大地萬里冰", + "effect": "通過Z力量急劇降低氣溫,\n全力冰凍對手。威力會根據\n原來的招式而改變" + }, + "devastatingDrakePhysical": { + "name": "龍Z究極巨龍震天地", + "effect": "通過Z力量將氣場實體化,\n向對手全力發動襲擊。威力\n會根據原來的招式而改變" + }, + "devastatingDrakeSpecial": { + "name": "龍Z究極巨龍震天地", + "effect": "通過Z力量將氣場實體化,\n向對手全力發動襲擊。威力\n會根據原來的招式而改變" + }, + "blackHoleEclipsePhysical": { + "name": "惡Z黑洞吞噬萬物滅", + "effect": "通過Z力量收集惡能量,全\n力將對手吸入。威力會根據\n原來的招式而改變" + }, + "blackHoleEclipseSpecial": { + "name": "惡Z黑洞吞噬萬物滅", + "effect": "通過Z力量收集惡能量,全\n力將對手吸入。威力會根據\n原來的招式而改變" + }, + "twinkleTacklePhysical": { + "name": "妖精Z可愛星星飛天撞", + "effect": "通過Z力量製造魅惑空間,\n全力捉弄對手。威力會根據\n原來的招式而改變" + }, + "twinkleTackleSpecial": { + "name": "妖精Z可愛星星飛天撞", + "effect": "通過Z力量製造魅惑空間,\n全力捉弄對手。威力會根據\n原來的招式而改變" + }, + "catastropika": { + "name": "皮卡丘Z皮卡皮卡必殺擊", + "effect": "通過Z力量,皮卡丘全身覆\n蓋最強電力,全力猛撲對手" + }, + "shoreUp": { + "name": "集沙", + "effect": "回覆自己最大HP的一半。\n在沙暴中回覆得更多" + }, + "firstImpression": { + "name": "迎頭一擊", + "effect": "威力很高的招式,但只有在\n出場戰鬥時,立刻使出才能\n成功" + }, + "banefulBunker": { + "name": "碉堡", + "effect": "防住對手攻擊的同時,讓接\n觸到自己的對手中毒" + }, + "spiritShackle": { + "name": "縫影", + "effect": "攻擊的同時,縫住對手的影\n子,使其無法逃走" + }, + "darkestLariat": { + "name": "DD金勾臂", + "effect": "旋轉雙臂打向對手。無視對\n手的能力變化,直接給予傷\n害" + }, + "sparklingAria": { + "name": "泡影的詠歎調", + "effect": "隨着唱歌會放出很多氣球。\n受到此招式攻擊時,灼傷會\n被治癒" + }, + "iceHammer": { + "name": "冰錘", + "effect": "揮舞強力而沉重的拳頭,給\n予對手傷害。自己的速度會\n降低" + }, + "floralHealing": { + "name": "花療", + "effect": "回覆對手最大HP的一半。\n在青草場地時,效果會提高" + }, + "highHorsepower": { + "name": "十萬馬力", + "effect": "使出全身力量,猛攻對手" + }, + "strengthSap": { + "name": "吸取力量", + "effect": "給自己回覆和對手攻擊力相\n同數值的HP,然後降低對\n手的攻擊" + }, + "solarBlade": { + "name": "日光刃", + "effect": "第1回合收集滿滿的日光,\n第2回合將此力量集中在劍\n上進行攻擊" + }, + "leafage": { + "name": "樹葉", + "effect": "將葉片打向對手,進行攻擊" + }, + "spotlight": { + "name": "聚光燈", + "effect": "給寶可夢打上聚光燈,該回\n合只能瞄準該寶可夢" + }, + "toxicThread": { + "name": "毒絲", + "effect": "將混有毒的絲吐向對手。使\n其中毒,從而降低對手的速\n度" + }, + "laserFocus": { + "name": "磨礪", + "effect": "集中精神,下次攻擊必定會\n擊中要害" + }, + "gearUp": { + "name": "輔助齒輪", + "effect": "啓動齒輪,提高特性爲正電\n和負電的寶可夢的攻擊和特\n攻" + }, + "throatChop": { + "name": "深淵突刺", + "effect": "受到此招式攻擊的對手,會\n因爲地獄般的痛苦,在2回\n合內,變得無法使出聲音類\n招式" + }, + "pollenPuff": { + "name": "花粉團", + "effect": "對敵人使用是會爆炸的糰子。\n對我方使用則是給予回覆\n的糰子" + }, + "anchorShot": { + "name": "擲錨", + "effect": "將錨纏住對手進行攻擊。使\n對手無法逃走" + }, + "psychicTerrain": { + "name": "精神場地", + "effect": "在5回合內,地面上的寶可\n夢不會受到先制招式的攻擊。\n超能力屬性的招式威力會\n提高" + }, + "lunge": { + "name": "猛撲", + "effect": "全力猛撲對手進行攻擊。從\n而降低對手的攻擊" + }, + "fireLash": { + "name": "火焰鞭", + "effect": "用燃燒的鞭子抽打對手。受\n到攻擊的對手防禦會降低" + }, + "powerTrip": { + "name": "囂張", + "effect": "耀武揚威地攻擊對手,自己\n的能力提高得越多,威力就\n越大" + }, + "burnUp": { + "name": "燃盡", + "effect": "將自己全身燃燒起火焰來,\n給予對手大大的傷害。自己\n的火屬性將會消失" + }, + "speedSwap": { + "name": "速度互換", + "effect": "將對手和自己的速度進行互\n換" + }, + "smartStrike": { + "name": "修長之角", + "effect": "用尖尖的角刺入對手進行攻\n擊。攻擊必定會命中" + }, + "purify": { + "name": "淨化", + "effect": "治癒對手的異常狀態。治癒\n後可以回覆自己的HP" + }, + "revelationDance": { + "name": "覺醒之舞", + "effect": "全力跳舞進行攻擊。此招式\n的屬性將變得和自己的屬性\n相同" + }, + "coreEnforcer": { + "name": "核心懲罰者", + "effect": "如果給予過傷害的對手已經\n結束行動,其特性就會被消\n除" + }, + "tropKick": { + "name": "熱帶踢", + "effect": "向對手使出來自南國的火熱\n腳踢。從而降低對手的攻擊" + }, + "instruct": { + "name": "號令", + "effect": "向對手下達指示,讓其再次\n使出剛纔的招式" + }, + "beakBlast": { + "name": "鳥嘴加農炮", + "effect": "先加熱鳥嘴後再進行攻擊。\n鳥嘴在加熱時對手觸碰的話,\n就會使其灼傷" + }, + "clangingScales": { + "name": "鱗片噪音", + "effect": "摩擦全身鱗片,發出響亮的\n聲音進行攻擊。攻擊後自己\n的防禦會降低" + }, + "dragonHammer": { + "name": "龍錘", + "effect": "將身體當作錘子,向對手發\n動襲擊,給予傷害" + }, + "brutalSwing": { + "name": "狂舞揮打", + "effect": "用自己的身體狂舞揮打,給\n予對手傷害" + }, + "auroraVeil": { + "name": "極光幕", + "effect": "在5回合內減弱物理和特殊\n的傷害。只有下雪時才能使\n出" + }, + "sinisterArrowRaid": { + "name": "狙射樹梟Z遮天蔽日暗影箭", + "effect": "通過Z力量製造出無數箭的\n狙射樹梟將全力射穿對手進\n行攻擊" + }, + "maliciousMoonsault": { + "name": "熾焰咆哮虎Z極惡飛躍粉碎擊", + "effect": "通過Z力量得到強壯肉體的\n熾焰咆哮虎將全力撞向對手\n進行攻擊" + }, + "oceanicOperetta": { + "name": "西獅海壬Z海神莊嚴交響樂", + "effect": "通過Z力量召喚大量水的西\n獅海壬將全力攻擊對手" + }, + "guardianOfAlola": { + "name": "卡璞Z巨人衛士・阿羅拉", + "effect": "通過Z力量得到阿羅拉之力\n的土地神寶可夢將全力進行\n攻擊。對手的剩餘HP會減\n少很多" + }, + "soulStealing7StarStrike": { + "name": "瑪夏多Z七星奪魂腿", + "effect": "得到Z力量的瑪夏多將全力\n使出拳頭和腳踢的連續招式\n叩打對手" + }, + "stokedSparksurfer": { + "name": "阿羅雷Z駕雷馭電戲衝浪", + "effect": "得到Z力量的阿羅拉地區的\n雷丘將全力進行攻擊。從而\n讓對手陷入麻痹狀態" + }, + "pulverizingPancake": { + "name": "卡比獸Z認真起來大爆擊", + "effect": "通過Z力量使得認真起來的\n卡比獸躍動巨大身軀,全力\n向對手發動襲擊" + }, + "extremeEvoboost": { + "name": "伊布Z九彩昇華齊聚頂", + "effect": "得到Z力量的伊布將藉助進\n化後夥伴們的力量,大幅提\n高能力" + }, + "genesisSupernova": { + "name": "夢幻Z起源超新星大爆炸", + "effect": "得到Z力量的夢幻將全力攻\n擊對手。腳下會變成精神場\n地" + }, + "shellTrap": { + "name": "陷阱甲殼", + "effect": "設下甲殼陷阱。如果對手使\n出物理招式,陷阱就會爆炸\n並給予對手傷害" + }, + "fleurCannon": { + "name": "花朵加農炮", + "effect": "放出強力光束後,自己的特\n攻會大幅降低" + }, + "psychicFangs": { + "name": "精神之牙", + "effect": "利用精神力量咬住對手進行\n攻擊。還可以破壞光牆和反\n射壁等" + }, + "stompingTantrum": { + "name": "跺腳", + "effect": "化悔恨爲力量進行攻擊。如\n果上一回合招式沒有打中,\n威力就會翻倍" + }, + "shadowBone": { + "name": "暗影之骨", + "effect": "用附有靈魂的骨頭毆打對手\n進行攻擊。有時會降低對手\n的防禦" + }, + "accelerock": { + "name": "衝巖", + "effect": "迅速撞向對手進行攻擊。必\n定能夠先制攻擊" + }, + "liquidation": { + "name": "水流裂破", + "effect": "用水之力量撞向對手進行攻\n擊。有時會降低對手的防禦" + }, + "prismaticLaser": { + "name": "棱鏡鐳射", + "effect": "用棱鏡的力量發射強烈光線。\n下一回合自己將無法動彈" + }, + "spectralThief": { + "name": "暗影偷盜", + "effect": "潛入對手的影子進行攻擊。\n會奪取對手的能力提升" + }, + "sunsteelStrike": { + "name": "流星閃衝", + "effect": "以流星般的氣勢猛撞對手。\n可以無視對手的特性進行攻\n擊" + }, + "moongeistBeam": { + "name": "暗影之光", + "effect": "放出奇怪的光線攻擊對手。\n可以無視對手的特性進行攻\n擊" + }, + "tearfulLook": { + "name": "淚眼汪汪", + "effect": "變得淚眼汪汪,讓對手喪失\n鬥志。從而降低對手的攻擊\n和特攻" + }, + "zingZap": { + "name": "麻麻刺刺", + "effect": "撞向對手,併發出強電,使\n其感到麻麻刺刺的。有時會\n使對手畏縮" + }, + "naturesMadness": { + "name": "自然之怒", + "effect": "向對手釋放自然之怒。對手\n的HP會減半" + }, + "multiAttack": { + "name": "多屬性攻擊", + "effect": "一邊覆蓋高能量,一邊撞向\n對手進行攻擊。根據存儲碟\n不同,屬性會改變" + }, + "tenMillionVoltThunderbolt": { + "name": "智皮卡Z千萬伏特", + "effect": "戴着帽子的皮卡丘將通過Z\n力量增強的電擊全力釋放給\n對手。容易擊中要害" + }, + "mindBlown": { + "name": "驚爆大頭", + "effect": "讓自己的頭爆炸,來攻擊周\n圍的一切。自己也會受到傷\n害" + }, + "plasmaFists": { + "name": "等離子閃電拳", + "effect": "用覆蓋着電流的拳頭進行攻\n擊。使一般屬性的招式變成\n電屬性" + }, + "photonGeyser": { + "name": "光子噴湧", + "effect": "用光柱來進行攻擊。比較自\n己的攻擊和特攻,用數值相\n對較高的一項給予對方傷害" + }, + "lightThatBurnsTheSky": { + "name": "究極奈克洛Z焚天滅世熾光爆", + "effect": "奈克洛茲瑪會無視對手的特\n性效果,在攻擊和特攻之間,\n用數值相對較高的一項給\n予對方傷害" + }, + "searingSunrazeSmash": { + "name": "索爾迦雷歐Z日光迴旋下蒼穹", + "effect": "得到Z力量的索爾迦雷歐將\n全力進行攻擊。可以無視對\n手的特性效果" + }, + "menacingMoonrazeMaelstrom": { + "name": "露奈雅拉Z月華飛濺落靈霄", + "effect": "得到Z力量的露奈雅拉將全\n力進行攻擊。可以無視對手\n的特性效果" + }, + "letsSnuggleForever": { + "name": "謎擬丘Z親密無間大亂揍", + "effect": "得到Z力量的謎擬Q將全力\n進行亂揍攻擊" + }, + "splinteredStormshards": { + "name": "鬃巖狼人Z狼嘯石牙颶風暴", + "effect": "得到Z力量的鬃巖狼人將全\n力進行攻擊。而且會消除場\n地狀態" + }, + "clangorousSoulblaze": { + "name": "杖尾鱗甲龍Z熾魂熱舞烈音爆", + "effect": "得到Z力量的杖尾鱗甲龍將\n全力攻擊對手。並且自己的\n能力會提高" + }, + "zippyZap": { + "name": "電電加速", + "effect": "The user attacks the target with bursts of electricity at high speed. This move always goes first and raises the user's evasiveness." + }, + "splishySplash": { + "name": "滔滔衝浪", + "effect": "往巨浪中注入電能後衝撞對\n手進行攻擊。有時會讓對手\n陷入麻痹狀態" + }, + "floatyFall": { + "name": "飄飄墜落", + "effect": "輕飄飄地浮起來後,再猛地\n俯衝下去進行攻擊。有時會\n使對手畏縮" + }, + "pikaPapow": { + "name": "閃閃雷光", + "effect": "皮卡丘越喜歡訓練家,電擊\n的威力就越強。攻擊必定會\n命中" + }, + "bouncyBubble": { + "name": "活活氣泡", + "effect": "投擲水球進行攻擊。吸水後\n能回覆等同於造成的傷害\n的HP" + }, + "buzzyBuzz": { + "name": "麻麻電擊", + "effect": "放出電擊攻擊對手。讓對手\n陷入麻痹狀態" + }, + "sizzlySlide": { + "name": "熊熊火爆", + "effect": "用燃起大火的身體猛烈地衝\n撞對手。讓對手陷入灼傷狀\n態" + }, + "glitzyGlow": { + "name": "嘩嘩氣場", + "effect": "利用念力強攻,粉碎對方信\n心。製造一道能減弱對手特\n殊攻擊的神奇牆壁" + }, + "baddyBad": { + "name": "壞壞領域", + "effect": "惡行惡相地進行攻擊。製造\n一道能減弱對手物理攻擊的\n神奇牆壁" + }, + "sappySeed": { + "name": "茁茁炸彈", + "effect": "長出巨大的藤蔓,播撒種子\n進行攻擊。種子每回合都會\n吸取對手的HP" + }, + "freezyFrost": { + "name": "冰冰霜凍", + "effect": "利用冰冷的黑霧結晶進行攻\n擊。使全體寶可夢的能力變\n回原點" + }, + "sparklySwirl": { + "name": "亮亮風暴", + "effect": "利用芬芳刺鼻的龍捲風吞噬\n對方。能治癒我方寶可夢的\n異常狀態" + }, + "veeveeVolley": { + "name": "砰砰擊破", + "effect": "伊布越喜歡訓練家,衝撞的\n威力就越強。攻擊必定會命\n中" + }, + "doubleIronBash": { + "name": "鋼拳雙擊", + "effect": "以胸口的螺帽爲中心旋轉,\n並連續2次揮動手臂打擊對\n手。有時會使對手畏縮" + }, + "maxGuard": { + "name": "極巨防壁", + "effect": "完全抵擋對手的攻擊。連續\n使出則容易失敗" + }, + "dynamaxCannon": { + "name": "極巨炮", + "effect": "將凝縮在體內的能量從核心放出進行攻擊,\n對手等級比當前波次的等級上限越高,造成的傷害越高,最多兩倍。" + }, + "snipeShot": { + "name": "狙擊", + "effect": "能無視具有吸引對手招式效\n果的特性或招式的影響。可\n以向選定的對手進行攻擊" + }, + "jawLock": { + "name": "緊咬不放", + "effect": "使雙方直到一方昏厥爲止無\n法替換寶可夢。其中一方退\n場則可以解除效果" + }, + "stuffCheeks": { + "name": "大快朵頤", + "effect": "喫掉攜帶的樹果,大幅提高\n防禦" + }, + "noRetreat": { + "name": "背水一戰", + "effect": "提高自己的所有能力,但無\n法替換或逃走" + }, + "tarShot": { + "name": "瀝青射擊", + "effect": "潑灑黏糊糊的瀝青,降低對\n手的速度。火屬性會變成對\n手的弱點" + }, + "magicPowder": { + "name": "魔法粉", + "effect": "向對手噴灑魔法粉,使對手\n變爲超能力屬性" + }, + "dragonDarts": { + "name": "龍箭", + "effect": "讓多龍梅西亞進行2次攻擊。\n如果對手有2隻寶可夢,\n則對它們各進行1次攻擊" + }, + "teatime": { + "name": "茶會", + "effect": "舉辦一場茶會,場上的所有\n寶可夢都會喫掉自己攜帶的\n樹果" + }, + "octolock": { + "name": "蛸固", + "effect": "讓對手無法逃走。對手被固\n定後,每回合都會降低防禦\n和特防" + }, + "boltBeak": { + "name": "電喙", + "effect": "用帶電的喙啄刺對手。如果\n比對手先出手攻擊,招式的\n威力會變成2倍" + }, + "fishiousRend": { + "name": "鰓咬", + "effect": "用堅硬的腮咬住對手。如果\n比對手先出手攻擊,招式的\n威力會變成2倍" + }, + "courtChange": { + "name": "換場", + "effect": "用神奇的力量交換雙方的場\n地效果" + }, + "maxFlare": { + "name": "極巨火爆", + "effect": "極巨化寶可夢使出的火屬性\n攻擊。可在5回合內讓日照\n變得強烈" + }, + "maxFlutterby": { + "name": "極巨蟲蠱", + "effect": "極巨化寶可夢使出的蟲屬性\n攻擊。會降低對手的特攻" + }, + "maxLightning": { + "name": "極巨閃電", + "effect": "極巨化寶可夢使出的電屬性\n攻擊。可在5回合內將腳下\n變成電氣場地" + }, + "maxStrike": { + "name": "極巨攻擊", + "effect": "極巨化寶可夢使出的一般屬\n性攻擊。會降低對手的速度" + }, + "maxKnuckle": { + "name": "極巨拳鬥", + "effect": "極巨化寶可夢使出的格鬥屬\n性攻擊。會提高我方的攻擊" + }, + "maxPhantasm": { + "name": "極巨幽魂", + "effect": "極巨化寶可夢使出的幽靈屬\n性攻擊。會降低對手的防禦" + }, + "maxHailstorm": { + "name": "極巨寒冰", + "effect": "極巨化寶可夢使出的冰屬性\n攻擊。在5回合內會下雪" + }, + "maxOoze": { + "name": "極巨酸毒", + "effect": "極巨化寶可夢使出的毒屬性\n攻擊。會提高我方的特攻" + }, + "maxGeyser": { + "name": "極巨水流", + "effect": "極巨化寶可夢使出的水屬性\n攻擊。可在5回合內降下大\n雨" + }, + "maxAirstream": { + "name": "極巨飛衝", + "effect": "極巨化寶可夢使出的飛行屬\n性攻擊。會提高我方的速度" + }, + "maxStarfall": { + "name": "極巨妖精", + "effect": "極巨化寶可夢使出的妖精屬\n性攻擊。可在5回合內將腳\n下變成薄霧場地" + }, + "maxWyrmwind": { + "name": "極巨龍騎", + "effect": "極巨化寶可夢使出的龍屬性\n攻擊。會降低對手的攻擊" + }, + "maxMindstorm": { + "name": "極巨超能", + "effect": "極巨化寶可夢使出的超能力\n屬性攻擊。可在5回合內將\n腳下變成精神場地" + }, + "maxRockfall": { + "name": "極巨岩石", + "effect": "極巨化寶可夢使出的岩石屬\n性攻擊。可在5回合內捲起\n沙暴" + }, + "maxQuake": { + "name": "極巨大地", + "effect": "極巨化寶可夢使出的地面屬\n性攻擊。會提高我方的特防" + }, + "maxDarkness": { + "name": "極巨惡霸", + "effect": "極巨化寶可夢使出的惡屬性\n攻擊。會降低對手的特防" + }, + "maxOvergrowth": { + "name": "極巨草原", + "effect": "極巨化寶可夢使出的草屬性\n攻擊。可在5回合內將腳下\n變成青草場地" + }, + "maxSteelspike": { + "name": "極巨鋼鐵", + "effect": "極巨化寶可夢使出的鋼屬性\n攻擊。會提高我方的防禦" + }, + "clangorousSoul": { + "name": "魂舞烈音爆", + "effect": "削減少許自己的HP,使所\n有能力都提高" + }, + "bodyPress": { + "name": "撲擊", + "effect": "用身體撞向對手進行攻擊。\n防禦越高,給予的傷害就越\n高" + }, + "decorate": { + "name": "裝飾", + "effect": "通過裝飾,大幅提高對方的\n攻擊和特攻" + }, + "drumBeating": { + "name": "鼓擊", + "effect": "用鼓點來控制鼓的根部進行\n攻擊,從而降低對手的速度" + }, + "snapTrap": { + "name": "捕獸夾", + "effect": "使用捕獸夾,在4~5回合\n內,夾住對手進行攻擊" + }, + "pyroBall": { + "name": "火焰球", + "effect": "點燃小石子,形成火球攻擊\n對手。有時會使對手陷入灼\n傷狀態" + }, + "behemothBlade": { + "name": "巨獸斬", + "effect": "以全身力氣舉起強大的劍,\n猛烈地劈向對手進行攻擊" + }, + "behemothBash": { + "name": "巨獸彈", + "effect": "將全身變化爲堅固的盾,猛\n烈地撞向對手進行攻擊" + }, + "auraWheel": { + "name": "氣場輪", + "effect": "用儲存在頰囊裏的能量進行\n攻擊,並提高自己的速度。\n其屬性會隨着莫魯貝可的樣\n子而改變" + }, + "breakingSwipe": { + "name": "廣域破壞", + "effect": "用堅韌的尾巴猛掃對手進行\n攻擊,從而降低對手的攻擊" + }, + "branchPoke": { + "name": "木枝突刺", + "effect": "使用尖銳的樹枝刺向對手進\n行攻擊" + }, + "overdrive": { + "name": "破音", + "effect": "奏響吉他和貝斯,釋放出發\n出巨響的劇烈震動攻擊對手" + }, + "appleAcid": { + "name": "蘋果酸", + "effect": "使用從酸蘋果中提取出來的\n酸性液體進行攻擊。降低對\n手的特防" + }, + "gravApple": { + "name": "萬有引力", + "effect": "從高處落下蘋果,給予對手\n傷害。可降低對手的防禦" + }, + "spiritBreak": { + "name": "靈魂衝擊", + "effect": "用足以讓對手一蹶不振的氣\n勢進行攻擊。會降低對手的\n特攻" + }, + "strangeSteam": { + "name": "神奇蒸汽", + "effect": "噴出煙霧攻擊對手。有時會\n使對手混亂" + }, + "lifeDew": { + "name": "生命水滴", + "effect": "噴灑出神奇的水,回覆自己\n和場上同伴的HP" + }, + "obstruct": { + "name": "攔堵", + "effect": "完全抵擋對手的攻擊。連續\n使出則容易失敗。一旦觸碰,\n防禦就會大幅降低" + }, + "falseSurrender": { + "name": "假跪真撞", + "effect": "裝作低頭認錯的樣子,用凌\n亂的頭髮進行突刺。攻擊必\n定會命中" + }, + "meteorAssault": { + "name": "流星突擊", + "effect": "大力揮舞粗壯的莖進行攻擊。\n但同時自己也會被晃暈,\n下一回合自己將無法動彈" + }, + "eternabeam": { + "name": "無極光束", + "effect": "無極汰那變回原來的樣子後,\n發動的最強攻擊。下一回\n合自己將無法動彈" + }, + "steelBeam": { + "name": "鐵蹄光線", + "effect": "將從全身聚集的鋼鐵化爲光\n束,激烈地發射出去。自己\n也會受到傷害" + }, + "expandingForce": { + "name": "廣域戰力", + "effect": "利用精神力量攻擊對手。在\n精神場地上威力會有所提高,\n能對所有對手造成傷害" + }, + "steelRoller": { + "name": "鐵滾輪", + "effect": "在破壞場地的同時攻擊對手。\n如果腳下沒有任何場地狀\n態存在,使出此招式時便會\n失敗" + }, + "scaleShot": { + "name": "鱗射", + "effect": "發射鱗片進行攻擊。連續攻\n擊2~5次。速度會提高但\n防禦會降低" + }, + "meteorBeam": { + "name": "流星光束", + "effect": "第1回合聚集宇宙之力提高\n特攻,第2回合攻擊對手" + }, + "shellSideArm": { + "name": "臂貝武器", + "effect": "從物理攻擊和特殊攻擊中選\n擇可造成較多傷害的方式進\n行攻擊。有時會讓對手陷入\n中毒狀態" + }, + "mistyExplosion": { + "name": "薄霧炸裂", + "effect": "對自己周圍的所有寶可夢進\n行攻擊,但使出後,自己會\n陷入昏厥。在薄霧場地上,\n招式威力會提高" + }, + "grassyGlide": { + "name": "青草滑梯", + "effect": "彷彿在地面上滑行般地攻擊\n對手。在青草場地上,必定\n能夠先制攻擊" + }, + "risingVoltage": { + "name": "電力上升", + "effect": "用從地面升騰而起的電擊進\n行攻擊。當對手處於電氣場\n地上時,招式威力會變成2\n倍" + }, + "terrainPulse": { + "name": "大地波動", + "effect": "藉助場地的力量進行攻擊。\n視使出招式時場地狀態不同,\n招式的屬性和威力會有所\n變化" + }, + "skitterSmack": { + "name": "爬擊", + "effect": "從對手背後爬近後進行攻擊。\n會降低對手的特攻" + }, + "burningJealousy": { + "name": "妒火", + "effect": "用嫉妒的能量攻擊對手。會\n讓在該回合內能力有所提高\n的寶可夢陷入灼傷狀態" + }, + "lashOut": { + "name": "泄憤", + "effect": "攻擊對手以發泄對其感到的\n惱怒情緒。如果在該回合內\n自身能力遭到降低,招式的\n威力會變成2倍" + }, + "poltergeist": { + "name": "靈騷", + "effect": "操縱對手的持有物進行攻擊。\n當對手沒有攜帶道具時,\n使出此招式時便會失敗" + }, + "corrosiveGas": { + "name": "腐蝕氣體", + "effect": "用具有強酸性的氣體包裹住\n自己周圍所有的寶可夢,並\n融化其所攜帶的道具" + }, + "coaching": { + "name": "指導", + "effect": "通過進行正確合理的指導,\n提高我方全員的攻擊和防禦" + }, + "flipTurn": { + "name": "快速折返", + "effect": "在攻擊之後急速返回,和後\n備寶可夢進行替換" + }, + "tripleAxel": { + "name": "三旋擊", + "effect": "連續3次踢對手進行攻擊。\n每踢中一次,威力就會提高" + }, + "dualWingbeat": { + "name": "雙翼", + "effect": "將翅膀撞向對手進行攻擊。\n連續2次給予傷害" + }, + "scorchingSands": { + "name": "熱沙大地", + "effect": "將滾燙的沙子砸向對手進行\n攻擊。有時會讓對手陷入灼\n傷狀態" + }, + "jungleHealing": { + "name": "叢林治療", + "effect": "與叢林融爲一體,回覆自己\n和場上同伴的HP和狀態" + }, + "wickedBlow": { + "name": "闇冥強擊", + "effect": "將惡之流派修煉至大成的猛\n烈一擊。必定會擊中要害" + }, + "surgingStrikes": { + "name": "水流連打", + "effect": "將水之流派修煉至大成的仿\n若行雲流水般的3次連擊。\n必定會擊中要害" + }, + "thunderCage": { + "name": "雷電囚籠", + "effect": "將對手困在電流四濺的囚籠\n中,在4~5回合內進行攻\n擊" + }, + "dragonEnergy": { + "name": "巨龍威能", + "effect": "把生命力轉換爲力量攻擊對\n手。自己的HP越少,招式\n的威力越小" + }, + "freezingGlare": { + "name": "冰冷視線", + "effect": "從雙眼發射精神力量進行攻\n擊。有時會讓對手陷入冰凍\n狀態" + }, + "fieryWrath": { + "name": "怒火中燒", + "effect": "將憤怒轉化爲火焰般的氣場\n進行攻擊。有時會使對手畏\n縮" + }, + "thunderousKick": { + "name": "雷鳴蹴擊", + "effect": "以雷電般的動作戲耍對手的\n同時使出腳踢。可降低對手\n的防禦" + }, + "glacialLance": { + "name": "雪矛", + "effect": "向對手投擲掀起暴風雪的冰\n矛進行攻擊" + }, + "astralBarrage": { + "name": "星碎", + "effect": "用大量的小靈體向對手發起\n攻擊" + }, + "eerieSpell": { + "name": "詭異咒語", + "effect": "用強大的精神力量攻擊。讓\n對手最後使用的招式減少3\nPP" + }, + "direClaw": { + "name": "克命爪", + "effect": "以破滅之爪進行攻擊。有時\n還會讓對手陷入中毒、麻痹\n、睡眠之中的一種狀態" + }, + "psyshieldBash": { + "name": "屏障猛攻", + "effect": "讓意念的能量覆蓋全身,撞\n向對手進行攻擊。會提高自\n己的防禦" + }, + "powerShift": { + "name": "力量轉換", + "effect": "將自己的攻擊與防禦互相交\n換" + }, + "stoneAxe": { + "name": "巖斧", + "effect": "用岩石之斧進行攻擊。散落\n的岩石碎片會飄浮在對手周\n圍" + }, + "springtideStorm": { + "name": "陽春風暴", + "effect": "用交織着愛與恨的烈風席捲\n對手進行攻擊。有時會降低\n對手的攻擊" + }, + "mysticalPower": { + "name": "神祕之力", + "effect": "放出不可思議的力量攻擊。\n會提高自己的特攻" + }, + "ragingFury": { + "name": "大憤慨", + "effect": "在2~3回合內,一邊放出\n火焰,一邊瘋狂亂打。大鬧\n一番後自己會陷入混亂" + }, + "waveCrash": { + "name": "波動衝", + "effect": "讓水覆蓋全身後撞向對手。\n自己也會受到不少傷害" + }, + "chloroblast": { + "name": "葉綠爆震", + "effect": "將自己的葉綠素凝聚起來後\n放出去進行攻擊。自己也會\n受到傷害" + }, + "mountainGale": { + "name": "冰山風", + "effect": "將冰山般巨大的冰塊砸向對\n手進行攻擊。有時會使對手\n畏縮" + }, + "victoryDance": { + "name": "勝利之舞", + "effect": "激烈地跳起喚來勝利的舞蹈,\n提高自己的攻擊、防禦和\n速度" + }, + "headlongRush": { + "name": "突飛猛撲", + "effect": "向對手使出灌注了全心全力\n的撞擊。自己的防禦和特防\n會降低" + }, + "barbBarrage": { + "name": "毒千針", + "effect": "用無數的毒針進行攻擊。有\n時還會讓對手陷入中毒狀態。\n攻擊處於中毒狀態的對手\n時,威力會變成2倍" + }, + "esperWing": { + "name": "氣場之翼", + "effect": "用經過氣場強化的翅膀撕裂\n對手。容易擊中要害。會提\n高自己的速度" + }, + "bitterMalice": { + "name": "冤冤相報", + "effect": "用令人毛骨悚然的怨念進行\n攻擊。會降低對手的攻擊" + }, + "shelter": { + "name": "閉關", + "effect": "將皮膚變得堅硬如鐵盾,從\n而大幅提高自己的防禦" + }, + "tripleArrows": { + "name": "三連箭", + "effect": "使出一記腿技後同時發射3\n箭。有時會降低對手的防禦\n或使對手畏縮。容易擊中要\n害" + }, + "infernalParade": { + "name": "羣魔亂舞", + "effect": "用無數的火球進行攻擊。有\n時會讓對手陷入灼傷狀態。\n攻擊處於異常狀態的對手時,\n威力會變成2倍" + }, + "ceaselessEdge": { + "name": "祕劍・千重濤", + "effect": "用貝殼之劍進行攻擊。散落\n的貝殼碎片會散落在對手腳\n下成爲撒菱" + }, + "bleakwindStorm": { + "name": "枯葉風暴", + "effect": "用足以讓身心都止不住顫抖\n的冰冷狂風進行攻擊。有時\n會降低對手的速度" + }, + "wildboltStorm": { + "name": "鳴雷風暴", + "effect": "呼喚雷雲引起風暴,用雷與\n風進行激烈的攻擊。有時會\n讓對手陷入麻痹狀態" + }, + "sandsearStorm": { + "name": "熱沙風暴", + "effect": "用灼熱的沙子和強烈的風席\n卷對手進行攻擊。有時會讓\n對手陷入灼傷狀態" + }, + "lunarBlessing": { + "name": "新月祈禱", + "effect": "向新月獻上祈禱,回覆自己\n和場上同伴的HP和狀態" + }, + "takeHeart": { + "name": "勇氣填充", + "effect": "鼓起衝勁,治癒自己的異常\n狀態,同時提高自己的特攻\n和特防" + }, + "gMaxWildfire": { + "name": "超極巨深淵滅焰", + "effect": "超極巨化的噴火龍使出的火\n屬性攻擊。可在4回合內給\n予對手傷害" + }, + "gMaxBefuddle": { + "name": "超極巨蝶影蠱惑", + "effect": "超極巨化的巴大蝶使出的蟲\n屬性攻擊。會讓對手陷入中\n毒、麻痹或睡眠狀態" + }, + "gMaxVoltCrash": { + "name": "超極鉅萬雷轟頂", + "effect": "超極巨化的皮卡丘使出的電\n屬性攻擊。會讓對手陷入麻\n痹狀態" + }, + "gMaxGoldRush": { + "name": "超極巨特大金幣", + "effect": "超極巨化的喵喵使出的一般\n屬性攻擊。會讓對手陷入混\n亂狀態,並可獲得金錢" + }, + "gMaxChiStrike": { + "name": "超極巨會心一擊", + "effect": "超極巨化的怪力使出的格鬥\n屬性攻擊。會變得容易擊中\n要害" + }, + "gMaxTerror": { + "name": "超極巨幻影幽魂", + "effect": "超極巨化的耿鬼使出的幽靈\n屬性攻擊。會踩住對手的影\n子,讓其無法被替換" + }, + "gMaxResonance": { + "name": "超極巨極光旋律", + "effect": "超極巨化的拉普拉斯使出的\n冰屬性攻擊。可在5回合內\n減弱受到的傷害" + }, + "gMaxCuddle": { + "name": "超極巨熱情擁抱", + "effect": "超極巨化的伊布使出的一般\n屬性攻擊。會讓對手陷入着\n迷狀態" + }, + "gMaxReplenish": { + "name": "超極巨資源再生", + "effect": "超極巨化的卡比獸使出的一\n般屬性攻擊。會讓喫掉的樹\n果再生" + }, + "gMaxMalodor": { + "name": "超極巨臭氣沖天", + "effect": "超極巨化的灰塵山使出的毒\n屬性攻擊。會讓對手陷入中\n毒狀態" + }, + "gMaxStonesurge": { + "name": "超極巨巖陣以待", + "effect": "超極巨化的暴噬龜使出的水\n屬性攻擊。會發射無數銳利\n的岩石" + }, + "gMaxWindRage": { + "name": "超極巨旋風襲捲", + "effect": "超極巨化的鋼鎧鴉使出的飛\n行屬性攻擊。可消除反射壁\n和光牆" + }, + "gMaxStunShock": { + "name": "超極巨異毒電場", + "effect": "超極巨化的顫弦蠑螈使出的\n電屬性攻擊。會讓對手陷入\n中毒或麻痹狀態" + }, + "gMaxFinale": { + "name": "超極巨幸福圓滿", + "effect": "超極巨化的霜奶仙使出的妖\n精屬性攻擊。可回覆我方的\nHP" + }, + "gMaxDepletion": { + "name": "超極巨劣化衰變", + "effect": "超極巨化的鋁鋼龍使出的龍\n屬性攻擊。可減少對手最後\n使用的招式的PP" + }, + "gMaxGravitas": { + "name": "超極巨天道七星", + "effect": "超極巨化的以歐路普使出的\n超能力屬性攻擊。在5回合\n內重力會產生變化" + }, + "gMaxVolcalith": { + "name": "超極巨炎石噴發", + "effect": "超極巨化的巨炭山使出的巖\n石屬性攻擊。可在4回合內\n給予對手傷害" + }, + "gMaxSandblast": { + "name": "超極巨沙塵漫天", + "effect": "超極巨化的沙螺蟒使出的地\n面屬性攻擊。在4~5回合\n內會狂刮沙暴" + }, + "gMaxSnooze": { + "name": "超極巨睡魔降臨", + "effect": "超極巨化的長毛巨魔使出的\n惡屬性攻擊。會通過打大哈\n欠讓對手產生睡意" + }, + "gMaxTartness": { + "name": "超極巨酸不溜丟", + "effect": "超極巨化的蘋裹龍使出的草\n屬性攻擊。會降低對手的閃\n避率" + }, + "gMaxSweetness": { + "name": "超極巨瓊漿玉液", + "effect": "超極巨化的豐蜜龍使出的草\n屬性攻擊。會治癒我方的異\n常狀態" + }, + "gMaxSmite": { + "name": "超極巨天譴雷誅", + "effect": "超極巨化的布莉姆溫使出的\n妖精屬性攻擊。會讓對手陷\n入混亂狀態" + }, + "gMaxSteelsurge": { + "name": "超極巨鋼鐵陣法", + "effect": "超極巨化的大王銅象使出的\n鋼屬性攻擊。會發射無數銳\n利的刺" + }, + "gMaxMeltdown": { + "name": "超極巨液金熔擊", + "effect": "超極巨化的美錄梅塔使出的\n鋼屬性攻擊。會讓對手無法\n連續使出相同的招式" + }, + "gMaxFoamBurst": { + "name": "超極巨激漩泡渦", + "effect": "超極巨化的巨鉗蟹使出的水\n屬性攻擊。會大幅降低對手\n的速度" + }, + "gMaxCentiferno": { + "name": "超極巨百火焚野", + "effect": "超極巨化的焚焰蚣使出的火\n屬性攻擊。可在4~5回合\n內將對手困在火焰中" + }, + "gMaxVineLash": { + "name": "超極巨灰飛鞭滅", + "effect": "超極巨化的妙蛙花使出的草\n屬性攻擊。可在4回合內給\n予對手傷害" + }, + "gMaxCannonade": { + "name": "超極巨水炮轟滅", + "effect": "超極巨化的水箭龜使出的水\n屬性攻擊。可在4回合內給\n予對手傷害" + }, + "gMaxDrumSolo": { + "name": "超極巨狂擂亂打", + "effect": "超極巨化的轟擂金剛猩使出\n的草屬性攻擊。不會受到對\n手特性的干擾" + }, + "gMaxFireball": { + "name": "超極巨破陣火球", + "effect": "超極巨化的閃焰王牌使出的\n火屬性攻擊。不會受到對手\n特性的干擾" + }, + "gMaxHydrosnipe": { + "name": "超極巨狙擊神射", + "effect": "超極巨化的千面避役使出的\n水屬性攻擊。不會受到對手\n特性的干擾" + }, + "gMaxOneBlow": { + "name": "超極巨奪命一擊", + "effect": "超極巨化的武道熊師使出的\n惡屬性攻擊。是可以無視極\n巨防壁的一擊" + }, + "gMaxRapidFlow": { + "name": "超極巨流水連擊", + "effect": "超極巨化的武道熊師使出的\n水屬性攻擊。是可以無視極\n巨防壁的連擊" + }, + "teraBlast": { + "name": "太晶爆發", + "effect": "太晶化時,會放出太晶屬性\n的能量攻擊。比較自己的攻\n擊和特攻,用數值相對較高\n的一項給予對方傷害。(其\n他屬性)/用攻擊和特攻數\n值較高的一項給予傷害。對\n正處於太晶化的對手效果絕\n佳。自己的攻擊和特攻會降\n低。(星晶" + }, + "silkTrap": { + "name": "線阱", + "effect": "用絲設置陷阱。防住對方攻\n擊的同時,能夠降低所接觸\n到的對手的速度" + }, + "axeKick": { + "name": "下壓踢", + "effect": "將踢起的腳跟往下劈向對手\n進行攻擊。有時會使對手混\n亂。如果劈偏則自己會受到\n傷害" + }, + "lastRespects": { + "name": "掃墓", + "effect": "爲了化解夥伴的悔恨而進行\n攻擊。被打倒的我方寶可夢\n越多,招式的威力越高" + }, + "luminaCrash": { + "name": "琉光衝激", + "effect": "放出連精神都能影響到的奇\n妙怪光進行攻擊。會大幅降\n低對方的特防" + }, + "orderUp": { + "name": "上菜", + "effect": "以瀟灑的身手進行攻擊。若\n口中有米立龍,會按其樣子\n提高能力" + }, + "jetPunch": { + "name": "噴射拳", + "effect": "將激流覆蓋於拳頭,以肉眼\n無法辨識的速度打出拳擊。\n必定能夠先制攻擊" + }, + "spicyExtract": { + "name": "辣椒精華", + "effect": "放出極爲辛辣的精華。對手\n的攻擊會大幅提高,防禦會\n大幅降低" + }, + "spinOut": { + "name": "疾速轉輪", + "effect": "通過往腿上增加負荷,以激\n烈的旋轉給予對手傷害。自\n己的速度會大幅降低" + }, + "populationBomb": { + "name": "鼠數兒", + "effect": "夥伴們會紛紛趕來集合,以\n羣體行動給予對手攻擊。連\n續命中1~10次" + }, + "iceSpinner": { + "name": "冰旋", + "effect": "腳上覆蓋薄冰,旋轉着撞擊\n對手。通過旋轉的動作破壞\n場地" + }, + "glaiveRush": { + "name": "巨劍突擊", + "effect": "有勇無謀的捨身突擊。使出\n招式後,對手的攻擊必定會\n命中,且傷害會變成2倍" + }, + "revivalBlessing": { + "name": "復生祈禱", + "effect": "通過以慈愛之心祈禱,讓陷\n入昏厥的後備寶可夢以回覆\n一半HP的狀態復活" + }, + "saltCure": { + "name": "鹽醃", + "effect": "使對手陷入鹽醃狀態,每回\n合給予對手傷害。對手爲鋼\n或水屬性時會更痛苦" + }, + "tripleDive": { + "name": "三連鑽", + "effect": "以默契的跳躍濺起水花擊向\n對手。連續3次給予傷害" + }, + "mortalSpin": { + "name": "晶光轉轉", + "effect": "通過旋轉來攻擊對手。可以\n擺脫綁緊、緊束、寄生種子\n等招式。還能讓對手陷入中\n毒狀態" + }, + "doodle": { + "name": "描繪", + "effect": "把握並映射出對手的本質,\n讓自己和同伴寶可夢的特性\n變得和對手相同" + }, + "filletAway": { + "name": "甩肉", + "effect": "削減自己的HP,大幅提高\n攻擊和特攻以及速度" + }, + "kowtowCleave": { + "name": "僕刀", + "effect": "下跪讓對手大意後發起襲擊\n劈向對手。攻擊必定會命中" + }, + "flowerTrick": { + "name": "千變萬花", + "effect": "將做了手腳的花束扔向對手\n進行攻擊。必定會命中,且\n會擊中要害" + }, + "torchSong": { + "name": "閃焰高歌", + "effect": "如唱歌一樣噴出熊熊燃燒的\n火焰燒焦對手。會提高自己\n的特攻" + }, + "aquaStep": { + "name": "流水旋舞", + "effect": "以盈盈欲滴的輕快步伐戲耍\n對手並給予其傷害。會提高\n自己的速度" + }, + "ragingBull": { + "name": "怒牛", + "effect": "狂怒暴牛的猛烈衝撞。招式\n的屬性隨形態改變,光牆和\n反射壁等招式也能破壞" + }, + "makeItRain": { + "name": "淘金潮", + "effect": "扔出大量硬幣攻擊。自己的\n特攻會降低,戰鬥後還可以\n拿到錢" + }, + "psyblade": { + "name": "精神劍", + "effect": "用無形的利刃劈開對手。處\n於電氣場地時,招式威力會\n變成1.5倍" + }, + "hydroSteam": { + "name": "水蒸氣", + "effect": "將煮得翻滾的開水猛烈地噴\n向對手。日照強烈時,招式\n威力不但不會降低,還會變\n成1.5倍" + }, + "ruination": { + "name": "大災難", + "effect": "引發毀滅性的災厄,使對手\n的HP減半" + }, + "collisionCourse": { + "name": "全開猛撞", + "effect": "邊變形邊兇暴地落下,並引\n發起古老的大爆炸。若針對\n到弱點,威力會進一步" + }, + "electroDrift": { + "name": "閃電猛衝", + "effect": "邊變形邊高速奔走,並以未\n知的電擊貫穿對手。若針對\n到弱點,威力會進一步" + }, + "shedTail": { + "name": "斷尾", + "effect": "削減自己的HP,製造分身\n後會返回,並和後備寶可夢\n進行替換" + }, + "chillyReception": { + "name": "冷笑話", + "effect": "留下冷場的冷笑話後,和後\n備寶可夢進行替換。在5回\n合內會下雪" + }, + "tidyUp": { + "name": "大掃除", + "effect": "將撒菱、隱形巖、黏黏網、\n毒菱、替身全部掃除掉。自\n己的攻擊和速度會提高" + }, + "snowscape": { + "name": "雪景", + "effect": "在5回合內會下雪。冰屬性\n的防禦會提高" + }, + "pounce": { + "name": "蟲撲", + "effect": "飛撲向對手攻擊。會降低對\n手的速度" + }, + "trailblaze": { + "name": "起草", + "effect": "跳出草叢進行攻擊。通過輕\n快的步伐會提高自己的速度" + }, + "chillingWater": { + "name": "潑冷水", + "effect": "潑灑冰冷得足以讓對手失去\n活力的水進行攻擊。會降低\n對手的攻擊" + }, + "hyperDrill": { + "name": "強力鑽", + "effect": "急速旋轉尖銳的身體部位貫\n穿對手。可以無視守住和看\n穿等招式" + }, + "twinBeam": { + "name": "雙光束", + "effect": "從兩眼發射出神奇的光線攻\n擊。連續2次給予傷害" + }, + "rageFist": { + "name": "憤怒之拳", + "effect": "將憤怒化爲力量攻擊。受到\n攻擊的次數越多,招式的威\n力越高" + }, + "armorCannon": { + "name": "鎧農炮", + "effect": "熊熊燃燒自己的鎧甲,將其\n做成炮彈射出攻擊。自己的\n防禦和特防會降低" + }, + "bitterBlade": { + "name": "悔念劍", + "effect": "將對世間的留戀聚集於劍尖,\n並斬擊對手。可以回覆給\n予對手傷害的一半HP" + }, + "doubleShock": { + "name": "電光雙擊", + "effect": "將全身所有的電力放出,給\n予對手大大的傷害。自己的\n電屬性將會消失" + }, + "gigatonHammer": { + "name": "巨力錘", + "effect": "連同身體轉起巨大的錘子進\n行攻擊。這個招式無法連續\n使出2次" + }, + "comeuppance": { + "name": "復仇", + "effect": "使出招式前,將最後受到的\n招式的傷害大力返還給對手" + }, + "aquaCutter": { + "name": "水波刀", + "effect": "如刀刃般噴射出加壓的水切\n開對手。容易擊中要害" + }, + "blazingTorque": { + "name": "灼熱暴衝", + "effect": "攻擊目標造成傷害,\n有30%的幾率使目標陷入\n灼傷狀態。" + }, + "wickedTorque": { + "name": "黑暗暴衝", + "effect": "攻擊目標造成傷害,\n有30%的幾率使目標陷入\n睡眠狀態。" + }, + "noxiousTorque": { + "name": "劇毒暴衝", + "effect": "攻擊目標造成傷害,\n有30%的幾率使目標陷入\n中毒狀態。" + }, + "combatTorque": { + "name": "格鬥暴衝", + "effect": "攻擊目標造成傷害,\n有30%的幾率使目標陷入\n麻痹狀態。此招式可以命中\n幽靈屬性的寶可夢。" + }, + "magicalTorque": { + "name": "魔法暴衝", + "effect": "攻擊目標造成傷害,\n有30%的幾率使目標陷入\n混亂狀態。" + }, + "bloodMoon": { + "name": "血月", + "effect": "從赤紅如血的滿月發射出全\n部的氣勢。這個招式無法連\n續使出2次" + }, + "matchaGotcha": { + "name": "刷刷茶炮", + "effect": "發射經攪拌的茶的大炮,可\n以回覆給予對手傷害的一半\nHP,有時會讓對手陷入灼\n傷狀態" + }, + "syrupBomb": { + "name": "糖漿炸彈", + "effect": "使粘稠的麥芽糖漿爆炸,讓\n對手陷入滿身糖狀態,在3\n回合內持續降低其速度" + }, + "ivyCudgel": { + "name": "棘藤棒", + "effect": "用纏有藤蔓的棍棒毆打。屬\n性會隨所戴的面具而改變。\n容易擊中要害" + }, + "electroShot": { + "name": "電光束", + "effect": "第1回合收集電力提高特攻,\n第2回合將高壓的電力發\n射出去。下雨天氣時能立刻\n發射" + }, + "teraStarstorm": { + "name": "晶光星羣", + "effect": "照射出結晶的力量來驅逐敵\n人。太樂巴戈斯在星晶形態\n下使出時,能對所有對手造\n成傷害" + }, + "fickleBeam": { + "name": "隨機光", + "effect": "發射光線進行攻擊。有時其\n他的頭也會合力發射鐳射,\n讓招式威力變成2倍" + }, + "burningBulwark": { + "name": "火焰守護", + "effect": "用超高溫的體毛防住對手攻\n擊的同時,讓接觸到自己的\n對手灼傷" + }, + "thunderclap": { + "name": "迅雷", + "effect": "可以比對手先使出電擊進行\n攻擊。對手使出的招式如果\n不是攻擊招式則會失敗" + }, + "mightyCleave": { + "name": "強刃攻擊", + "effect": "用積蓄在頭部的光來斬切對\n手。可以無視守護進行攻擊" + }, + "tachyonCutter": { + "name": "迅子利刃", + "effect": "接連發射出粒子的利刃,連\n續2次給予傷害。攻擊必定\n會命中" + }, + "hardPress": { + "name": "硬壓", + "effect": "用手臂或鉗子壓迫對手。對\n手剩餘的HP越多,威力越\n大" + }, + "dragonCheer": { + "name": "龍聲鼓舞", + "effect": "以龍之鼓舞提高士氣,讓我\n方的招式變得容易擊中要害。\n對龍屬性的鼓舞效果會更\n強" + }, + "alluringVoice": { + "name": "魅誘之聲", + "effect": "用天使般的歌聲攻擊對手。\n會讓此回合內能力有提高的\n寶可夢陷入混亂狀態" + }, + "temperFlare": { + "name": "豁出去", + "effect": "以自暴自棄的氣勢進行攻擊。\n如果上一回合招式沒有命\n中,威力就會翻倍" + }, + "supercellSlam": { + "name": "閃電強襲", + "effect": "讓身體帶電後壓向對手。如\n果沒有命中則自己會受到傷\n害" + }, + "psychicNoise": { + "name": "精神噪音", + "effect": "用令對手不舒服的音波進行\n攻擊。讓對手在2回合內無\n法通過招式、特性或攜帶的\n道具回覆HP" + }, + "upperHand": { + "name": "快手還擊", + "effect": "察覺到對手的動作後用掌根\n攻擊,讓對手畏縮。如果對\n手使出的招式不是先制攻擊,\n則會失敗" + }, + "malignantChain": { + "name": "邪毒鎖鏈", + "effect": "用由毒形成的鎖鏈纏住對手\n注入毒素加以侵蝕。有時會\n讓對手陷入劇毒狀態" + } +} \ No newline at end of file diff --git a/src/locales/zh_TW/move.ts b/src/locales/zh_TW/move.ts deleted file mode 100644 index 92b70429cfd..00000000000 --- a/src/locales/zh_TW/move.ts +++ /dev/null @@ -1,3680 +0,0 @@ -import { MoveTranslationEntries } from "#app/interfaces/locales"; - -export const move: MoveTranslationEntries = { - pound: { name: "拍擊", effect: "使用長長的尾巴或手等拍打\n對手進行攻擊" }, - karateChop: { - name: "空手劈", - effect: "用鋒利的手刀劈向對手進行\n攻擊。容易擊中要害", - }, - doubleSlap: { - name: "連環巴掌", - effect: "用連環巴掌拍打對手進行攻\n擊。連續攻擊2~5次", - }, - cometPunch: { - name: "連續拳", - effect: "用拳頭怒濤般的毆打對手進\n行攻擊。連續攻擊2~5次", - }, - megaPunch: { name: "百萬噸重拳", effect: "用充滿力量的拳頭攻擊對手" }, - payDay: { - name: "聚寶功", - effect: "向對手的身體投擲小金幣進\n行攻擊。戰鬥後可以拿到錢", - }, - firePunch: { - name: "火焰拳", - effect: "用充滿火焰的拳頭攻擊對手。\n有時會讓對手陷入灼傷狀\n態", - }, - icePunch: { - name: "冰凍拳", - effect: "用充滿寒氣的拳頭攻擊對手。\n有時會讓對手陷入冰凍狀\n態", - }, - thunderPunch: { - name: "雷電拳", - effect: "用充滿電流的拳頭攻擊對手。\n有時會讓對手陷入麻痹狀\n態", - }, - scratch: { name: "抓", effect: "用堅硬且無比鋒利的爪子抓\n對手進行攻擊" }, - viseGrip: { name: "夾住", effect: "將對手從兩側夾住,給予傷\n害" }, - guillotine: { - name: "斷頭鉗", - effect: "用大鉗子或剪刀等夾斷對手\n進行攻擊。只要命中就會一\n擊瀕死", - }, - razorWind: { - name: "旋風刀", - effect: "製造風之刃,於第2回合攻\n擊對手。容易擊中要害", - }, - swordsDance: { - name: "劍舞", - effect: "激烈地跳起戰舞提高氣勢。\n大幅提高自己的攻擊", - }, - cut: { name: "居合斬", effect: "用鐮刀或爪子等切斬對手進\n行攻擊" }, - gust: { name: "起風", effect: "用翅膀將颳起的狂風襲向對\n手進行攻擊" }, - wingAttack: { - name: "翅膀攻擊", - effect: "大大地展開美麗的翅膀,將\n其撞向對手進行攻擊", - }, - whirlwind: { - name: "吹飛", - effect: "吹飛對手,強制拉後備寶可\n夢上場。如果對手爲野生寶\n可夢,戰鬥將直接結束", - }, - fly: { name: "飛翔", effect: "第1回合飛上天空,第2回\n合攻擊對手" }, - bind: { - name: "綁緊", - effect: "使用長長的身體或藤蔓等,\n在4~5回合內綁緊對手進\n行攻擊", - }, - slam: { name: "摔打", effect: "使用長長的尾巴或藤蔓等摔\n打對手進行攻擊" }, - vineWhip: { - name: "藤鞭", - effect: "用如同鞭子般彎曲而細長的\n藤蔓摔打對手進行攻擊", - }, - stomp: { - name: "踩踏", - effect: "用大腳踩踏對手進行攻擊。\n有時會使對手畏縮", - }, - doubleKick: { - name: "二連踢", - effect: "用2隻腳踢飛對手進行攻擊。\n連續2次給予傷害", - }, - megaKick: { - name: "百萬噸重踢", - effect: "使出力大無窮的重踢踢飛對\n手進行攻擊", - }, - jumpKick: { - name: "飛踢", - effect: "使出高高的騰空踢攻擊對手。\n如果踢偏則自己會受到傷\n害", - }, - rollingKick: { - name: "迴旋踢", - effect: "一邊使身體快速旋轉,一邊\n踢飛對手進行攻擊。有時會\n使對手畏縮", - }, - sandAttack: { name: "潑沙", effect: "向對手臉上潑沙子,從而降\n低命中率" }, - headbutt: { - name: "頭錘", - effect: "將頭伸出,筆直地撲向對手\n進行攻擊。有時會使對手畏\n縮", - }, - hornAttack: { name: "角撞", effect: "用尖銳的角攻擊對手" }, - furyAttack: { - name: "亂擊", - effect: "用角或喙刺向對手進行攻擊。\n連續攻擊2~5次", - }, - hornDrill: { - name: "角鑽", - effect: "用旋轉的角刺入對手進行攻\n擊。只要命中就會一擊昏厥", - }, - tackle: { name: "撞擊", effect: "用整個身體撞向對手進行攻\n擊" }, - bodySlam: { - name: "泰山壓頂", - effect: "用整個身體壓住對手進行攻\n擊。有時會讓對手陷入麻痹\n狀態", - }, - wrap: { - name: "緊束", - effect: "使用長長的身體或藤蔓等,\n在4~5回合內緊束對手進\n行攻擊", - }, - takeDown: { - name: "猛撞", - effect: "以驚人的氣勢撞向對手進行\n攻擊。自己也會受到少許傷\n害", - }, - thrash: { - name: "大鬧一番", - effect: "在2~3回合內,亂打一氣\n地攻擊對手。大鬧一番後自\n己會陷入混亂", - }, - doubleEdge: { - name: "捨身衝撞", - effect: "拼命地猛撞向對手進行攻擊。\n自己也會受到不小的傷害", - }, - tailWhip: { - name: "搖尾巴", - effect: "可愛地左右搖晃尾巴,誘使\n對手疏忽大意。會降低對手\n的防禦", - }, - poisonSting: { - name: "毒針", - effect: "將有毒的針刺入對手進行攻\n擊。有時會讓對手陷入中毒\n狀態", - }, - twineedle: { - name: "雙針", - effect: "將2根針刺入對手,連續2\n次給予傷害。有時會讓對手\n陷入中毒狀態", - }, - pinMissile: { - name: "飛彈針", - effect: "向對手發射銳針進行攻擊。\n連續攻擊2~5次", - }, - leer: { - name: "瞪眼", - effect: "用犀利的眼神使其害怕,從\n而降低對手的防禦", - }, - bite: { - name: "咬住", - effect: "用尖銳的牙咬住對手進行攻\n擊。有時會使對手畏縮", - }, - growl: { - name: "叫聲", - effect: "讓對手聽可愛的叫聲,引開\n注意力使其疏忽,從而降低\n對手的攻擊", - }, - roar: { - name: "吼叫", - effect: "放走對手,強制拉後備寶可\n夢上場。如果對手爲野生寶\n可夢,戰鬥將直接結束", - }, - sing: { - name: "唱歌", - effect: "讓對手聽舒適、美妙的歌聲,\n從而陷入睡眠狀態", - }, - supersonic: { - name: "超音波", - effect: "從身體發出特殊的音波,從\n而使對手混亂", - }, - sonicBoom: { - name: "音爆", - effect: "將衝擊波撞向對手進行攻擊。\n必定會給予20的傷害", - }, - disable: { - name: "定身法", - effect: "阻礙對手行動,之前使出的\n招式將在4回合內無法使用", - }, - acid: { - name: "溶解液", - effect: "將強酸潑向對手進行攻擊。\n有時會降低對手的特防", - }, - ember: { - name: "火花", - effect: "向對手發射小型火焰進行攻\n擊。有時會讓對手陷入灼傷\n狀態", - }, - flamethrower: { - name: "噴射火焰", - effect: "向對手發射烈焰進行攻擊。\n有時會讓對手陷入灼傷狀態", - }, - mist: { - name: "白霧", - effect: "用白霧覆蓋身體。在5回合\n內不會讓對手降低自己的能\n力", - }, - waterGun: { name: "水槍", effect: "向對手猛烈地噴射水流進行\n攻擊" }, - hydroPump: { name: "水炮", effect: "向對手猛烈地噴射大量水流\n進行攻擊" }, - surf: { name: "衝浪", effect: "利用大浪攻擊自己周圍所有\n的寶可夢" }, - iceBeam: { - name: "冰凍光束", - effect: "向對手發射冰凍光束進行攻\n擊。有時會讓對手陷入冰凍\n狀態", - }, - blizzard: { - name: "暴風雪", - effect: "將猛烈的暴風雪刮向對手進\n行攻擊。有時會讓對手陷入\n冰凍狀態", - }, - psybeam: { - name: "幻象光線", - effect: "向對手發射神奇的光線進行\n攻擊。有時會使對手混亂", - }, - bubbleBeam: { - name: "泡沫光線", - effect: "向對手猛烈地噴射泡沫進行\n攻擊。有時會降低對手的速\n度", - }, - auroraBeam: { - name: "極光束", - effect: "向對手發射虹色光束進行攻\n擊。有時會降低對手的攻擊", - }, - hyperBeam: { - name: "破壞光線", - effect: "向對手發射強烈的光線進行\n攻擊。下一回合自己將無法\n動彈", - }, - peck: { name: "啄", effect: "用尖銳的喙或角刺向對手進\n行攻擊" }, - drillPeck: { - name: "啄鑽", - effect: "一邊旋轉,一邊將尖喙刺入\n對手進行攻擊", - }, - submission: { - name: "地獄翻滾", - effect: "將對手連同自己一起摔向地\n面進行攻擊。自己也會受到\n少許傷害", - }, - lowKick: { - name: "踢倒", - effect: "用力踢對手的腳,使其摔倒\n進行攻擊。對手越重,威力\n越大", - }, - counter: { - name: "雙倍奉還", - effect: "從對手那裏受到物理攻擊的\n傷害將以2倍返還給同一個\n對手", - }, - seismicToss: { - name: "地球上投", - effect: "利用引力將對手甩飛出去。\n給予對手和自己等級相同的\n傷害", - }, - strength: { name: "怪力", effect: "使出渾身力氣毆打對手進行\n攻擊" }, - absorb: { - name: "吸取", - effect: "吸取對手的養分進行攻擊。\n可以回覆給予對手傷害的一\n半HP", - }, - megaDrain: { - name: "超級吸取", - effect: "吸取對手的養分進行攻擊。\n可以回覆給予對手傷害的一\n半HP", - }, - leechSeed: { - name: "寄生種子", - effect: "植入寄生種子後,將在每回\n合一點一點吸取對手的HP,\n從而用來回復自己的HP", - }, - growth: { name: "生長", effect: "讓身體一下子長大,從而提\n高攻擊和特攻" }, - razorLeaf: { - name: "飛葉快刀", - effect: "飛出葉片,切斬對手進行攻\n擊。容易擊中要害", - }, - solarBeam: { - name: "日光束", - effect: "第1回合收集滿滿的日光,\n第2回合發射光束進行攻擊", - }, - poisonPowder: { - name: "毒粉", - effect: "撒出毒粉,從而讓對手陷入\n中毒狀態", - }, - stunSpore: { - name: "麻痹粉", - effect: "撒出麻痹粉,從而讓對手陷\n入麻痹狀態", - }, - sleepPowder: { - name: "催眠粉", - effect: "撒出催眠粉,從而讓對手陷\n入睡眠狀態", - }, - petalDance: { - name: "花瓣舞", - effect: "在2~3回合內,散落花瓣\n攻擊對手。之後自己會陷入\n混亂", - }, - stringShot: { - name: "吐絲", - effect: "用口中吐出的絲纏繞對手,\n從而大幅降低對手的速度", - }, - dragonRage: { - name: "龍之怒", - effect: "將憤怒的衝擊波撞向對手進\n行攻擊。必定會給予40的\n傷害", - }, - fireSpin: { - name: "火焰旋渦", - effect: "將對手困在激烈的火焰旋渦\n中,在4~5回合內進行攻\n擊", - }, - thunderShock: { - name: "電擊", - effect: "發出電流刺激對手進行攻擊。\n有時會讓對手陷入麻痹狀\n態", - }, - thunderbolt: { - name: "十萬伏特", - effect: "向對手發出強力電擊進行攻\n擊。有時會讓對手陷入麻痹\n狀態", - }, - thunderWave: { - name: "電磁波", - effect: "向對手發出微弱的電擊,從\n而讓對手陷入麻痹狀態", - }, - thunder: { - name: "打雷", - effect: "向對手劈下暴雷進行攻擊。\n有時會讓對手陷入麻痹狀態", - }, - rockThrow: { name: "落石", effect: "拿起小岩石,投擲對手進行\n攻擊" }, - earthquake: { - name: "地震", - effect: "利用地震的衝擊,攻擊自己\n周圍所有的寶可夢", - }, - fissure: { - name: "地裂", - effect: "讓對手掉落於地裂的裂縫中\n進行攻擊。只要命中就會一\n擊瀕死", - }, - dig: { name: "挖洞", effect: "第1回合鑽入地底,第2回\n合攻擊對手" }, - toxic: { - name: "劇毒", - effect: "讓對手陷入劇毒狀態。隨着\n回合的推進,中毒傷害會增\n加", - }, - confusion: { - name: "念力", - effect: "向對手發送微弱的念力進行\n攻擊。有時會使對手混亂", - }, - psychic: { - name: "精神強念", - effect: "向對手發送強大的念力進行\n攻擊。有時會降低對手的特\n防", - }, - hypnosis: { - name: "催眠術", - effect: "施以誘導睡意的暗示,讓對\n手陷入睡眠狀態", - }, - meditate: { - name: "瑜伽姿勢", - effect: "喚醒身體深處沉睡的力量,\n從而提高自己的攻擊", - }, - agility: { - name: "高速移動", - effect: "讓身體放鬆變得輕盈,以便\n高速移動。大幅提高自己的\n速度", - }, - quickAttack: { - name: "電光一閃", - effect: "以迅雷不及掩耳之勢撲向對\n手。必定能夠先制攻擊", - }, - rage: { - name: "憤怒", - effect: "如果在使出招式後受到攻擊\n的話,會因憤怒的力量而提\n高攻擊", - }, - teleport: { - name: "瞬間移動", - effect: "當有後備寶可夢時使用,就\n可以進行替換。野生的寶可\n夢使用則會逃走", - }, - nightShade: { - name: "黑夜魔影", - effect: "顯示恐怖幻影,只給予對手\n和自己等級相同的傷害", - }, - mimic: { - name: "模仿", - effect: "可以將對手最後使用的招式,\n在戰鬥內變成自己的招式", - }, - screech: { - name: "刺耳聲", - effect: "發出不由自主想要捂起耳朵\n的刺耳聲,從而大幅降低對\n手的防禦", - }, - doubleTeam: { - name: "影子分身", - effect: "通過快速移動來製造分身,\n擾亂對手,從而提高閃避率", - }, - recover: { - name: "自我再生", - effect: "讓細胞再生,從而回復自己\n最大HP的一半", - }, - harden: { - name: "變硬", - effect: "全身使勁,讓身體變硬,從\n而提高自己的防禦", - }, - minimize: { - name: "變小", - effect: "蜷縮身體顯得很小,從而大\n幅提高自己的閃避率", - }, - smokescreen: { - name: "煙幕", - effect: "向對手噴出煙或墨汁等,從\n而降低對手的命中率", - }, - confuseRay: { - name: "奇異之光", - effect: "顯示奇怪的光,擾亂對手。\n使對手混亂", - }, - withdraw: { - name: "縮入殼中", - effect: "縮入殼裏保護身體,從而提\n高自己的防禦", - }, - defenseCurl: { - name: "變圓", - effect: "將身體蜷曲變圓,從而提高\n自己的防禦", - }, - barrier: { - name: "屏障", - effect: "製造堅固的壁障,從而大幅\n提高自己的防禦", - }, - lightScreen: { - name: "光牆", - effect: "利用神奇的牆壁,在5回合\n內減弱從對手那裏受到的特\n殊攻擊的傷害", - }, - haze: { - name: "黑霧", - effect: "升起黑霧,將正在場上戰鬥\n的全體寶可夢的能力變回原\n點", - }, - reflect: { - name: "反射壁", - effect: "利用神奇的牆壁,在5回合\n內減弱從對手那裏受到的物\n理攻擊的傷害", - }, - focusEnergy: { - name: "聚氣", - effect: "深深地吸口氣,集中精神。\n自己的攻擊會變得容易擊中\n要害", - }, - bide: { - name: "忍耐", - effect: "在2回合內忍受攻擊,受到\n的傷害會2倍返還給對手", - }, - metronome: { - name: "揮指", - effect: "揮動手指刺激自己的大腦,\n從許多的招式中隨機使出1\n個", - }, - mirrorMove: { - name: "鸚鵡學舌", - effect: "模仿對手使用的招式,自己\n也使用相同招式", - }, - selfDestruct: { - name: "自爆", - effect: "引發爆炸,攻擊自己周圍所\n有的寶可夢。使用後陷入瀕\n死", - }, - eggBomb: { name: "炸蛋", effect: "向對手用力投擲大大的蛋進\n行攻擊" }, - lick: { - name: "舌舔", - effect: "用長長的舌頭,舔遍對手進\n行攻擊。有時會讓對手陷入\n麻痹狀態", - }, - smog: { - name: "濁霧", - effect: "將骯髒的濃霧吹向對手進行\n攻擊。有時會讓對手陷入中\n毒狀態", - }, - sludge: { - name: "污泥攻擊", - effect: "用污泥投擲對手進行攻擊。\n有時會讓對手陷入中毒狀態", - }, - boneClub: { - name: "骨棒", - effect: "用手中的骨頭毆打對手進行\n攻擊。有時會使對手畏縮", - }, - fireBlast: { - name: "大字爆炎", - effect: "用大字形狀的火焰燒盡對手。\n有時會讓對手陷入灼傷狀\n態", - }, - waterfall: { - name: "攀瀑", - effect: "以驚人的氣勢撲向對手。有\n時會使對手畏縮", - }, - clamp: { - name: "貝殼夾擊", - effect: "用非常堅固且厚實的貝殼,\n在4~5回合內夾住對手進\n行攻擊", - }, - swift: { - name: "高速星星", - effect: "發射星形的光攻擊對手。攻\n擊必定會命中", - }, - skullBash: { - name: "火箭頭錘", - effect: "第1回合把頭縮進去,從而\n提高防禦。第2回合攻擊對\n手", - }, - spikeCannon: { - name: "尖刺加農炮", - effect: "向對手發射銳針進行攻擊。\n連續攻擊2~5次", - }, - constrict: { - name: "纏繞", - effect: "用觸手或青藤等纏繞進行攻\n擊。有時會降低對手的速度", - }, - amnesia: { - name: "瞬間失憶", - effect: "將頭腦清空,瞬間忘記某事,\n從而大幅提高自己的特防", - }, - kinesis: { - name: "折彎湯匙", - effect: "折彎湯匙引開注意,從而降\n低對手的命中率", - }, - softBoiled: { name: "生蛋", effect: "回覆自己最大HP的一半" }, - highJumpKick: { - name: "飛膝踢", - effect: "跳起後用膝蓋撞對手進行攻\n擊。如果撞偏則自己會受到\n傷害", - }, - glare: { - name: "大蛇瞪眼", - effect: "用腹部的花紋使對手害怕,\n從而讓其陷入麻痹狀態", - }, - dreamEater: { - name: "食夢", - effect: "喫掉正在睡覺的對手的夢進\n行攻擊。回覆對手所受到傷\n害的一半HP", - }, - poisonGas: { - name: "毒瓦斯", - effect: "將毒瓦斯吹到對手的臉上,\n從而讓對手陷入中毒狀態", - }, - barrage: { - name: "投球", - effect: "向對手投擲圓形物體進行攻\n擊。連續攻擊2~5次", - }, - leechLife: { - name: "吸血", - effect: "吸取血液攻擊對手。可以回\n復給予對手傷害的一半HP", - }, - lovelyKiss: { - name: "惡魔之吻", - effect: "用恐怖的臉強吻對手。讓對\n手陷入睡眠狀態", - }, - skyAttack: { - name: "神鳥猛擊", - effect: "第2回合攻擊對手。偶爾使\n對手畏縮。也容易擊中要害", - }, - transform: { - name: "變身", - effect: "變身成對手寶可夢的樣子,\n能夠使用和對手完全相同的\n招式", - }, - bubble: { - name: "泡沫", - effect: "向對手用力吹起無數泡泡進\n行攻擊。有時會降低對手的\n速度", - }, - dizzyPunch: { - name: "迷昏拳", - effect: "有節奏地出拳攻擊對手。有\n時會使對手混亂", - }, - spore: { - name: "蘑菇孢子", - effect: "沙沙沙地撒滿具有催眠效果\n的孢子,從而讓對手陷入睡\n眠狀態", - }, - flash: { - name: "閃光", - effect: "使出光芒,從而降低對手的\n命中率。也可在陰暗的洞窟\n裏照亮四周", - }, - psywave: { - name: "精神波", - effect: "向對手發射神奇的念波進行\n攻擊。每次使用,傷害都會\n改變", - }, - splash: { - name: "躍起", - effect: "也不攻擊只是一蹦一蹦地跳,\n什麼都不會發生…", - }, - acidArmor: { - name: "溶化", - effect: "通過細胞的變化進行液化,\n從而大幅提高自己的防禦", - }, - crabhammer: { - name: "蟹鉗錘", - effect: "用大鉗子敲打對手進行攻擊。\n容易擊中要害", - }, - explosion: { - name: "大爆炸", - effect: "引發大爆炸,攻擊自己周圍\n所有的寶可夢。使用後自己\n會陷入瀕死", - }, - furySwipes: { - name: "亂抓", - effect: "用爪子或鐮刀等抓對手進行\n攻擊。連續攻擊2~5次", - }, - bonemerang: { - name: "骨頭回力鏢", - effect: "用手中的骨頭投擲對手,來\n回連續2次給予傷害", - }, - rest: { - name: "睡覺", - effect: "連續睡上2回合。回覆自己\n的全部HP以及治癒所有異\n常狀態", - }, - rockSlide: { - name: "岩崩", - effect: "將大岩石猛烈地撞向對手進\n行攻擊。有時會使對手畏縮", - }, - hyperFang: { - name: "必殺門牙", - effect: "用鋒利的門牙牢牢地咬住對\n手進行攻擊。有時會使對手\n畏縮", - }, - sharpen: { - name: "稜角化", - effect: "增加身體的角,變得棱棱角\n角,從而提高自己的攻擊", - }, - conversion: { - name: "紋理", - effect: "將自己的屬性轉換成和已學\n會的招式中第一個招式相同\n的屬性", - }, - triAttack: { - name: "三重攻擊", - effect: "用3種光線進行攻擊。有時\n會讓對手陷入麻痹、灼傷或\n冰凍的狀態", - }, - superFang: { - name: "憤怒門牙", - effect: "用鋒利的門牙猛烈地咬住對\n手進行攻擊。對手的HP減\n半", - }, - slash: { - name: "劈開", - effect: "用爪子或鐮刀等劈開對手進\n行攻擊。容易擊中要害", - }, - substitute: { - name: "替身", - effect: "削減少許自己的HP,製造\n分身。分身將成爲自己的替\n身", - }, - struggle: { - name: "掙扎", - effect: "當自己的PP耗盡時,努力\n掙扎攻擊對手。自己也會受\n到少許傷害", - }, - sketch: { - name: "寫生", - effect: "將對手使用的招式變成自己\n的招式。使用1次後寫生消\n失", - }, - tripleKick: { - name: "三連踢", - effect: "連續3次踢對手進行攻擊。\n每踢中一次,威力就會提高", - }, - thief: { - name: "小偷", - effect: "攻擊的同時盜取道具。當自\n己攜帶道具時,不會去盜取", - }, - spiderWeb: { - name: "蛛網", - effect: "將黏糊糊的細絲一層一層纏\n住對手,使其不能從戰鬥中\n逃走", - }, - mindReader: { - name: "心之眼", - effect: "用心感受對手的行動,下次\n攻擊必定會擊中對手", - }, - nightmare: { - name: "惡夢", - effect: "讓在睡眠狀態下的對手做惡\n夢,每回合會緩緩減少HP", - }, - flameWheel: { - name: "火焰輪", - effect: "讓火焰覆蓋全身,猛撞向對\n手進行攻擊。有時會讓對手\n陷入灼傷狀態", - }, - snore: { - name: "打鼾", - effect: "在自己睡覺時,發出噪音進\n行攻擊。有時會使對手畏縮", - }, - curse: { - name: "詛咒", - effect: "使用該招式的寶可夢,其屬\n性是幽靈屬性或其他屬性時,\n效果會不一樣", - }, - flail: { - name: "抓狂", - effect: "抓狂般亂打進行攻擊。自己\n的HP越少,招式的威力越\n大", - }, - conversion2: { - name: "紋理2", - effect: "爲了可以抵抗對手最後使用\n的招式,從而使自己的屬性\n發生變化", - }, - aeroblast: { - name: "氣旋攻擊", - effect: "發射空氣旋渦進行攻擊。容\n易擊中要害", - }, - cottonSpore: { - name: "棉孢子", - effect: "將棉花般柔軟的孢子緊貼對\n手,從而大幅降低對手的速\n度", - }, - reversal: { - name: "起死回生", - effect: "竭盡全力進行攻擊。自己的\nHP越少,招式的威力越大", - }, - spite: { - name: "怨恨", - effect: "對對手最後使用的招式懷有\n怨恨,減少4PP該招式", - }, - powderSnow: { - name: "細雪", - effect: "將冰冷的細雪吹向對手進行\n攻擊。有時會讓對手陷入冰\n凍狀態", - }, - protect: { - name: "守住", - effect: "完全抵擋對手的攻擊。連續\n使出則容易失敗", - }, - machPunch: { - name: "音速拳", - effect: "以迅雷不及掩耳之勢出拳。\n必定能夠先制攻擊", - }, - scaryFace: { - name: "鬼面", - effect: "用恐怖的表情瞪着對手,使\n其害怕,從而大幅降低對手\n的速度", - }, - feintAttack: { - name: "出奇一擊", - effect: "悄悄地靠近對手,趁其不備\n進行毆打。攻擊必定會命中", - }, - sweetKiss: { - name: "天使之吻", - effect: "像天使般可愛地親吻對手,\n從而使對手混亂", - }, - bellyDrum: { - name: "腹鼓", - effect: "將自己的HP減少到最大\nHP的一半,從而最大限度提\n高自己的攻擊", - }, - sludgeBomb: { - name: "污泥炸彈", - effect: "用污泥投擲對手進行攻擊。\n有時會讓對手陷入中毒狀態", - }, - mudSlap: { - name: "擲泥", - effect: "向對手的臉等投擲泥塊進行\n攻擊。會降低對手的命中率", - }, - octazooka: { - name: "章魚桶炮", - effect: "向對手的臉等噴出墨汁進行\n攻擊。有時會降低對手的命\n中率", - }, - spikes: { - name: "撒菱", - effect: "在對手的腳下扔撒菱。對替\n換出場的對手的寶可夢給予\n傷害", - }, - zapCannon: { - name: "電磁炮", - effect: "發射大炮一樣的電流進行攻\n擊。讓對手陷入麻痹狀態", - }, - foresight: { - name: "識破", - effect: "使出後對幽靈屬性寶可夢沒\n有效果的招式以及閃避率高\n的對手,變得能夠打中", - }, - destinyBond: { - name: "同命", - effect: "使出招式後,當受到對手攻\n擊陷入瀕死時,對手也會一\n同瀕死。連續使出則會失敗", - }, - perishSong: { - name: "滅亡之歌", - effect: "傾聽歌聲的寶可夢經過3回\n合陷入瀕死。替換後效果消\n失", - }, - icyWind: { - name: "冰凍之風", - effect: "將結冰的冷氣吹向對手進行\n攻擊。會降低對手的速度", - }, - detect: { - name: "看穿", - effect: "完全抵擋對手的攻擊。連續\n使出則容易失敗", - }, - boneRush: { - name: "骨棒亂打", - effect: "用堅硬的骨頭毆打對手進行\n攻擊。連續攻擊2~5次", - }, - lockOn: { name: "鎖定", effect: "緊緊瞄準對手,下次攻擊必\n定會打中" }, - outrage: { - name: "逆鱗", - effect: "在2~3回合內,亂打一氣\n地進行攻擊。大鬧一番後自\n己會陷入混亂", - }, - sandstorm: { - name: "沙暴", - effect: "在5回合內揚起沙暴,除巖\n石、地面和鋼屬性以外的寶\n可夢,都會受到傷害。岩石\n屬性的特防還會提高", - }, - gigaDrain: { - name: "終極吸取", - effect: "吸取對手的養分進行攻擊。\n可以回覆給予對手傷害的一\n半HP", - }, - endure: { - name: "挺住", - effect: "即使受到攻擊,也至少會留\n下1HP。連續使出則容易\n失敗", - }, - charm: { - name: "撒嬌", - effect: "可愛地凝視,誘使對手疏忽\n大意,從而大幅降低對手的\n攻擊", - }, - rollout: { - name: "滾動", - effect: "在5回合內連續滾動攻擊對\n手。招式每次擊中,威力就\n會提高", - }, - falseSwipe: { - name: "點到爲止", - effect: "對手的HP至少會留下1\nHP,如此般手下留情地攻擊", - }, - swagger: { - name: "虛張聲勢", - effect: "激怒對手,使其混亂。因爲\n憤怒,對手的攻擊會大幅提\n高", - }, - milkDrink: { name: "喝牛奶", effect: "回覆自己最大HP的一半" }, - spark: { - name: "電光", - effect: "讓電流覆蓋全身,猛撞向對\n手進行攻擊。有時會讓對手\n陷入麻痹狀態", - }, - furyCutter: { - name: "連斬", - effect: "用鐮刀或爪子等切斬對手進\n行攻擊。連續擊中,威力就\n會提高", - }, - steelWing: { - name: "鋼翼", - effect: "用堅硬的翅膀敲打對手進行\n攻擊。有時會提高自己的防\n御", - }, - meanLook: { - name: "黑色目光", - effect: "用好似要勾人心魂的黑色目\n光一動不動地凝視對手,使\n其不能從戰鬥中逃走", - }, - attract: { - name: "迷人", - effect: "♂誘惑♀或♀誘惑♂,讓對\n手着迷。對手將很難使出招\n式", - }, - sleepTalk: { - name: "夢話", - effect: "從自己已學會的招式中任意\n使出1個。只能在自己睡覺\n時使用", - }, - healBell: { - name: "治癒鈴聲", - effect: "讓同伴聽舒適的鈴音,從而\n治癒我方全員的異常狀態", - }, - return: { - name: "報恩", - effect: "爲了訓練家而全力攻擊對手。\n親密度越高,威力越大", - }, - present: { - name: "禮物", - effect: "遞給對手設有圈套的盒子進\n行攻擊。也有可能回覆對手\nHP", - }, - frustration: { - name: "遷怒", - effect: "爲了發泄不滿而全力攻擊對\n手。親密度越低,威力越大", - }, - safeguard: { - name: "神祕守護", - effect: "在5回合內被神奇的力量守\n護,從而不會陷入異常狀態", - }, - painSplit: { - name: "分擔痛楚", - effect: "將自己的HP和對手的HP\n相加,然後自己和對手友好\n地平分", - }, - sacredFire: { - name: "神聖之火", - effect: "用神祕的火焰燒盡對手進行\n攻擊。有時會讓對手陷入灼\n傷狀態", - }, - magnitude: { - name: "震級", - effect: "晃動地面,攻擊自己周圍所\n有的寶可夢。招式的威力會\n有各種變化", - }, - dynamicPunch: { - name: "爆裂拳", - effect: "使出渾身力氣出拳進行攻擊。\n必定會使對手混亂", - }, - megahorn: { - name: "超級角擊", - effect: "用堅硬且華麗的角狠狠地刺\n入對手進行攻擊", - }, - dragonBreath: { - name: "龍息", - effect: "將強烈的氣息吹向對手進行\n攻擊。有時會讓對手陷入麻\n痹狀態", - }, - batonPass: { - name: "接棒", - effect: "和後備寶可夢進行替換。換\n上的寶可夢能直接繼承其能\n力的變化", - }, - encore: { - name: "再來一次", - effect: "讓對手接受再來一次,連續\n3次使出最後使用的招式", - }, - pursuit: { - name: "追打", - effect: "當對手替換寶可夢上場時使\n出此招式的話,能夠以2倍\n的威力進行攻擊", - }, - rapidSpin: { - name: "高速旋轉", - effect: "通過旋轉來攻擊對手。可以\n擺脫綁緊、緊束、寄生種子\n等招式。還能提高自己的速\n度", - }, - sweetScent: { name: "甜甜香氣", effect: "用香氣大幅降低對手的閃避\n率" }, - ironTail: { - name: "鐵尾", - effect: "使用堅硬的尾巴摔打對手進\n行攻擊。有時會降低對手的\n防禦", - }, - metalClaw: { - name: "金屬爪", - effect: "用鋼鐵之爪劈開對手進行攻\n擊。有時會提高自己的攻擊", - }, - vitalThrow: { - name: "借力摔", - effect: "會在對手之後進行攻擊。但\n是自己的攻擊必定會命中", - }, - morningSun: { - name: "晨光", - effect: "回覆自己的HP。根據天氣\n的不同,回覆量也會有所變\n化", - }, - synthesis: { - name: "光合作用", - effect: "回覆自己的HP。根據天氣\n的不同,回覆量也會有所變\n化", - }, - moonlight: { - name: "月光", - effect: "回覆自己的HP。根據天氣\n的不同,回覆量也會有所變\n化", - }, - hiddenPower: { - name: "覺醒力量", - effect: "招式的屬性會隨着使用此招\n式的寶可夢而改變", - }, - crossChop: { - name: "十字劈", - effect: "用兩手呈十字劈打對手進行\n攻擊。容易擊中要害", - }, - twister: { - name: "龍捲風", - effect: "興起龍捲風,將對手卷入進\n行攻擊。有時會使對手畏縮", - }, - rainDance: { - name: "求雨", - effect: "在5回合內一直降雨,從而\n提高水屬性的招式威力。火\n屬性的招式威力則降低", - }, - sunnyDay: { - name: "大晴天", - effect: "在5回合內讓日照變得強烈,\n從而提高火屬性的招式威\n力。水屬性的招式威力則降\n低", - }, - crunch: { - name: "咬碎", - effect: "用利牙咬碎對手進行攻擊。\n有時會降低對手的防禦", - }, - mirrorCoat: { - name: "鏡面反射", - effect: "從對手那裏受到特殊攻擊的\n傷害將以2倍返還給同一個\n對手", - }, - psychUp: { - name: "自我暗示", - effect: "向自己施以自我暗示,將能\n力變化的狀態變得和對手一\n樣", - }, - extremeSpeed: { - name: "神速", - effect: "以迅雷不及掩耳之勢猛撞向\n對手進行攻擊。必定能夠先\n制攻擊", - }, - ancientPower: { - name: "原始之力", - effect: "用原始之力進行攻擊。有時\n會提高自己所有的能力", - }, - shadowBall: { - name: "暗影球", - effect: "投擲一團黑影進行攻擊。有\n時會降低對手的特防", - }, - futureSight: { - name: "預知未來", - effect: "在使用招式2回合後,向對\n手發送一團念力進行攻擊", - }, - rockSmash: { - name: "碎岩", - effect: "用拳頭進行攻擊。有時會降\n低對手的防禦", - }, - whirlpool: { - name: "潮旋", - effect: "將對手困在激烈的水流旋渦\n中,在4~5回合內進行攻\n擊", - }, - beatUp: { - name: "圍攻", - effect: "我方全員進行攻擊。同行的\n寶可夢越多,招式的攻擊次\n數越多", - }, - fakeOut: { - name: "擊掌奇襲", - effect: "進行先制攻擊,使對手畏縮。\n要在出場後立刻使出才能\n成功", - }, - uproar: { - name: "吵鬧", - effect: "在3回合內大吵大鬧攻擊對\n手。在此期間誰都不能入眠", - }, - stockpile: { - name: "蓄力", - effect: "積蓄力量,提高自己的防禦\n和特防。最多積蓄3次", - }, - spitUp: { - name: "噴出", - effect: "將積蓄的力量撞向對手進行\n攻擊。積蓄得越多,威力越\n大", - }, - swallow: { - name: "吞下", - effect: "將積蓄的力量吞下,從而回\n復自己的HP。積蓄得越多,\n回覆越大", - }, - heatWave: { - name: "熱風", - effect: "將炎熱的氣息吹向對手進行\n攻擊。有時會讓對手陷入灼\n傷狀態", - }, - hail: { - name: "冰雹", - effect: "在5回合內一直降冰雹,除\n冰屬性的寶可夢以外,給予\n全體寶可夢傷害", - }, - torment: { - name: "無理取鬧", - effect: "向對手無理取鬧,令其不能\n連續2次使出相同招式", - }, - flatter: { - name: "吹捧", - effect: "吹捧對手,使其混亂。同時\n還會提高對手的特攻", - }, - willOWisp: { - name: "鬼火", - effect: "放出怪異的火焰,從而讓對\n手陷入灼傷狀態", - }, - memento: { - name: "臨別禮物", - effect: "雖然會使自己陷入昏厥,但\n是能夠大幅降低對手的攻擊\n和特攻", - }, - facade: { - name: "硬撐", - effect: "當自己處於中毒、麻痹、灼\n傷狀態時,向對手使出此招\n式的話,威力會變成2倍", - }, - focusPunch: { - name: "真氣拳", - effect: "集中精神出拳。在招式使出\n前若受到攻擊則會失敗", - }, - smellingSalts: { - name: "清醒", - effect: "對於麻痹狀態下的對手,威\n力會變成2倍。但相反對手\n的麻痹也會被治癒", - }, - followMe: { - name: "看我嘛", - effect: "引起對手的注意,將對手的\n攻擊全部轉移到自己身上", - }, - naturePower: { - name: "自然之力", - effect: "用自然之力進行攻擊。根據\n所使用場所的不同,使出的\n招式也會有所變化", - }, - charge: { - name: "充電", - effect: "變爲充電狀態,提高下次使\n出的電屬性的招式威力。自\n己的特防也會提高", - }, - taunt: { - name: "挑釁", - effect: "使對手憤怒。在3回合內讓\n對手只能使出給予傷害的招\n式", - }, - helpingHand: { - name: "幫助", - effect: "幫助夥伴。被幫助的寶可夢,\n其招式威力變得比平時大", - }, - trick: { name: "戲法", effect: "抓住對手的空隙,交換自己\n和對手的持有物" }, - rolePlay: { - name: "扮演", - effect: "扮演對手,讓自己的特性變\n得和對手相同", - }, - wish: { - name: "祈願", - effect: "在下一回合回覆自己或是替\n換出場的寶可夢最大HP的\n一半", - }, - assist: { - name: "藉助", - effect: "向同伴緊急求助,從我方寶\n可夢已學會的招式中隨機使\n用1個", - }, - ingrain: { - name: "扎根", - effect: "在大地上扎根,每回合回覆\n自己的HP。因爲扎根了,\n所以不能替換寶可夢", - }, - superpower: { - name: "蠻力", - effect: "發揮驚人的力量攻擊對手。\n自己的攻擊和防禦會降低", - }, - magicCoat: { - name: "魔法反射", - effect: "當對手使出會變成異常狀態\n的招式或寄生種子等時,會\n將對手的招式反射回去", - }, - recycle: { - name: "回收利用", - effect: "使戰鬥中已經消耗掉的自己\n的持有物再生,並可以再次\n使用", - }, - revenge: { - name: "報復", - effect: "如果受到對手的招式攻擊,\n就能給予對手2倍的傷害", - }, - brickBreak: { - name: "劈瓦", - effect: "將手刀猛烈地揮下攻擊對手。\n還可以破壞光牆和反射壁\n等", - }, - yawn: { - name: "哈欠", - effect: "打個大哈欠引起睡意。在下\n一回合讓對手陷入睡眠狀態", - }, - knockOff: { - name: "拍落", - effect: "拍落對手的持有物,直到戰\n鬥結束都不能使用。對手攜\n帶道具時會增加傷害", - }, - endeavor: { - name: "蠻幹", - effect: "給予傷害,使對手的HP變\n得和自己的HP一樣", - }, - eruption: { - name: "噴火", - effect: "爆發怒火攻擊對手。自己的\nHP越少,招式的威力越小", - }, - skillSwap: { name: "特性互換", effect: "利用超能力互換自己和對手\n的特性" }, - imprison: { - name: "封印", - effect: "如果對手有和自己相同的招\n式,那麼只有對手無法使用\n該招式", - }, - refresh: { - name: "煥然一新", - effect: "讓身體休息,治癒自己身上\n所中的毒、麻痹、灼傷的異\n常狀態", - }, - grudge: { - name: "怨念", - effect: "因對手的招式而陷入昏厥時\n給對手施加怨念,讓該招式\n的PP變成0", - }, - snatch: { - name: "搶奪", - effect: "將對手打算使用的回覆招式\n或能力變化招式奪爲己用", - }, - secretPower: { - name: "祕密之力", - effect: "根據使用場所不同,該招式\n的追加效果也會有所變化", - }, - dive: { - name: "潛水", - effect: "第1回合潛入水中,第2回\n合浮上來進行攻擊", - }, - armThrust: { - name: "猛推", - effect: "用張開着的雙手猛推對手進\n行攻擊。連續攻擊2~5次", - }, - camouflage: { - name: "保護色", - effect: "根據所在場所不同,如水邊\n、草叢和洞窟等,可以改變\n自己的屬性", - }, - tailGlow: { - name: "螢火", - effect: "凝視閃爍的光芒,集中自己\n的精神,從而巨幅提高特攻", - }, - lusterPurge: { - name: "潔淨光芒", - effect: "釋放耀眼的光芒進行攻擊。\n有時會降低對手的特防", - }, - mistBall: { - name: "薄霧球", - effect: "用圍繞着霧狀羽毛的球進行\n攻擊。有時會降低對手的特\n攻", - }, - featherDance: { - name: "羽毛舞", - effect: "撒出羽毛,籠罩在對手的周\n圍。大幅降低對手的攻擊", - }, - teeterDance: { - name: "搖晃舞", - effect: "搖搖晃晃地跳起舞蹈,讓自\n己周圍的寶可夢陷入混亂狀\n態", - }, - blazeKick: { - name: "火焰踢", - effect: "攻擊對手後,有時會使其陷\n入灼傷狀態。也容易擊中要\n害", - }, - mudSport: { - name: "玩泥巴", - effect: "一旦使用此招式,周圍就會\n弄得到處是泥。在5回合內\n減弱電屬性的招式", - }, - iceBall: { - name: "冰球", - effect: "在5回合內攻擊對手。招式\n每次擊中,威力就會提高", - }, - needleArm: { - name: "尖刺臂", - effect: "用帶刺的手臂猛烈地揮舞進\n行攻擊。有時會使對手畏縮", - }, - slackOff: { name: "偷懶", effect: "偷懶休息。回覆自己最大\nHP的一半" }, - hyperVoice: { - name: "巨聲", - effect: "給予對手又吵又響的巨大震\n動進行攻擊", - }, - poisonFang: { - name: "劇毒牙", - effect: "用有毒的牙齒咬住對手進行\n攻擊。有時會使對手中劇毒", - }, - crushClaw: { - name: "撕裂爪", - effect: "用堅硬的銳爪劈開對手進行\n攻擊。有時會降低對手的防\n御", - }, - blastBurn: { - name: "爆炸烈焰", - effect: "用爆炸的火焰燒盡對手進行\n攻擊。下一回合自己將無法\n動彈", - }, - hydroCannon: { - name: "加農水炮", - effect: "向對手噴射水炮進行攻擊。\n下一回合自己將無法動彈", - }, - meteorMash: { - name: "彗星拳", - effect: "使出彗星般的拳頭攻擊對手。\n有時會提高自己的攻擊", - }, - astonish: { - name: "驚嚇", - effect: "用尖叫聲等突然驚嚇對手進\n行攻擊。有時會使對手畏縮", - }, - weatherBall: { - name: "氣象球", - effect: "根據使用時的天氣,招式屬\n性和威力會改變", - }, - aromatherapy: { - name: "芳香治療", - effect: "讓同伴聞沁人心脾的香氣,\n從而治癒我方全員的異常狀\n態", - }, - fakeTears: { - name: "假哭", - effect: "裝哭流淚。使對手不知所措,\n從而大幅降低對手的特防", - }, - airCutter: { - name: "空氣利刃", - effect: "用銳利的風切斬對手進行攻\n擊。容易擊中要害", - }, - overheat: { - name: "過熱", - effect: "使出全部力量攻擊對手。使\n用之後會因爲反作用力,自\n己的特攻大幅降低", - }, - odorSleuth: { - name: "氣味偵測", - effect: "使出後對幽靈屬性寶可夢沒\n有效果的招式以及閃避率高\n的對手,變得能夠打中", - }, - rockTomb: { - name: "岩石封鎖", - effect: "投擲岩石進行攻擊。封住對\n手的行動,從而降低速度", - }, - silverWind: { - name: "銀色旋風", - effect: "在風中摻入鱗粉攻擊對手。\n有時會提高自己的全部能力", - }, - metalSound: { - name: "金屬音", - effect: "讓對手聽摩擦金屬般討厭的\n聲音。大幅降低對手的特防", - }, - grassWhistle: { - name: "草笛", - effect: "讓對手聽舒適的笛聲,從而\n陷入睡眠狀態", - }, - tickle: { - name: "搔癢", - effect: "給對手搔癢,使其發笑,從\n而降低對手的攻擊和防禦", - }, - cosmicPower: { - name: "宇宙力量", - effect: "汲取宇宙中神祕的力量,從\n而提高自己的防禦和特防", - }, - waterSpout: { - name: "噴水", - effect: "掀起潮水進行攻擊。自己的\nHP越少,招式的威力越小", - }, - signalBeam: { - name: "信號光束", - effect: "發射神奇的光線進行攻擊。\n有時會使對手混亂", - }, - shadowPunch: { name: "暗影拳", effect: "使出混影之拳。攻擊必定會\n命中" }, - extrasensory: { - name: "神通力", - effect: "發出看不見的神奇力量進行\n攻擊。有時會使對手畏縮", - }, - skyUppercut: { - name: "衝天拳", - effect: "用衝向天空般高高的上勾拳\n頂起對手進行攻擊", - }, - sandTomb: { - name: "流沙地獄", - effect: "將對手困在鋪天蓋地的沙暴\n中,在4~5回合內進行攻\n擊", - }, - sheerCold: { - name: "絕對零度", - effect: "給對手一擊瀕死。如果是冰\n屬性以外的寶可夢使用,就\n會難以打中", - }, - muddyWater: { - name: "濁流", - effect: "向對手噴射渾濁的水進行攻\n擊。有時會降低對手的命中\n率", - }, - bulletSeed: { - name: "種子機關槍", - effect: "向對手猛烈地發射種子進行\n攻擊。連續攻擊2~5次", - }, - aerialAce: { - name: "燕返", - effect: "以敏捷的動作戲弄對手後進\n行切斬。攻擊必定會命中", - }, - icicleSpear: { - name: "冰錐", - effect: "向對手發射鋒利的冰柱進行\n攻擊。連續攻擊2~5次", - }, - ironDefense: { - name: "鐵壁", - effect: "將皮膚變得堅硬如鐵,從而\n大幅提高自己的防禦", - }, - block: { - name: "擋路", - effect: "張開雙手進行阻擋,封住對\n手的退路,使其不能逃走", - }, - howl: { - name: "長嚎", - effect: "大聲吼叫提高氣勢,從而提\n高自己和同伴的攻擊", - }, - dragonClaw: { name: "龍爪", effect: "用尖銳的巨爪劈開對手進行\n攻擊" }, - frenzyPlant: { - name: "瘋狂植物", - effect: "用大樹摔打對手進行攻擊。\n下一回合自己將無法動彈", - }, - bulkUp: { - name: "健美", - effect: "使出全身力氣繃緊肌肉,從\n而提高自己的攻擊和防禦", - }, - bounce: { - name: "彈跳", - effect: "彈跳到高高的空中,第2回\n合攻擊對手。有時會讓對手\n陷入麻痹狀態", - }, - mudShot: { - name: "泥巴射擊", - effect: "向對手投擲泥塊進行攻擊。\n同時降低對手的速度", - }, - poisonTail: { - name: "毒尾", - effect: "用尾巴拍打。有時會讓對手\n陷入中毒狀態,也容易擊中\n要害", - }, - covet: { - name: "渴望", - effect: "一邊可愛地撒嬌,一邊靠近\n對手進行攻擊,還能奪取對\n手攜帶的道具", - }, - voltTackle: { - name: "伏特攻擊", - effect: "讓電流覆蓋全身猛撞向對手。\n自己也會受到不小的傷害。\n有時會讓對手陷入麻痹狀\n態", - }, - magicalLeaf: { - name: "魔法葉", - effect: "散落可以追蹤對手的神奇葉\n片。攻擊必定會命中", - }, - waterSport: { - name: "玩水", - effect: "用水溼透周圍。在5回合內\n減弱火屬性的招式", - }, - calmMind: { name: "冥想", effect: "靜心凝神,從而提高自己的\n特攻和特防" }, - leafBlade: { - name: "葉刃", - effect: "像用劍一般操縱葉片切斬對\n手進行攻擊。容易擊中要害", - }, - dragonDance: { - name: "龍之舞", - effect: "激烈地跳起神祕且強有力的\n舞蹈。從而提高自己的攻擊\n和速度", - }, - rockBlast: { - name: "岩石爆擊", - effect: "向對手發射堅硬的岩石進行\n攻擊。連續攻擊2~5次", - }, - shockWave: { - name: "電擊波", - effect: "向對手快速發出電擊。攻擊\n必定會命中", - }, - waterPulse: { - name: "水之波動", - effect: "用水的震動攻擊對手。有時\n會使對手混亂", - }, - doomDesire: { - name: "破滅之願", - effect: "使用招式2回合後,會用無\n數道光束攻擊對手", - }, - psychoBoost: { - name: "精神突進", - effect: "使出全部力量攻擊對手。使\n用之後會因爲反作用力,自\n己的特攻大幅降低", - }, - roost: { - name: "羽棲", - effect: "降到地面,使身體休息。回\n復自己最大HP的一半", - }, - gravity: { - name: "重力", - effect: "在5回合內,飄浮特性和飛\n行屬性的寶可夢會被地面屬\n性的招式擊中。飛向空中的\n招式也將無法使用", - }, - miracleEye: { - name: "奇蹟之眼", - effect: "使出後對惡屬性寶可夢沒有\n效果的招式以及閃避率高的\n對手,變得能夠打中", - }, - wakeUpSlap: { - name: "喚醒巴掌", - effect: "給予睡眠狀態下的對手較大\n的傷害。但相反對手會從睡\n眠中醒過來", - }, - hammerArm: { - name: "臂錘", - effect: "揮舞強力而沉重的拳頭,給\n予對手傷害。自己的速度會\n降低", - }, - gyroBall: { - name: "陀螺球", - effect: "讓身體高速旋轉並撞擊對手。\n速度比對手越慢,威力越\n大", - }, - healingWish: { - name: "治癒之願", - effect: "雖然自己陷入瀕死,但可以\n治癒後備上場的寶可夢的異\n常狀態以及回覆HP", - }, - brine: { - name: "鹽水", - effect: "當對手的HP負傷到一半左\n右時,招式威力會變成2倍", - }, - naturalGift: { - name: "自然之恩", - effect: "從樹果上獲得力量進行攻擊。\n根據攜帶的樹果,招式屬\n性和威力會改變", - }, - feint: { - name: "佯攻", - effect: "能夠攻擊正在使用守住或看\n穿等招式的對手。解除其守\n護效果", - }, - pluck: { - name: "啄食", - effect: "用喙進行攻擊。當對手攜帶\n樹果時,可以食用並獲得其\n效果", - }, - tailwind: { - name: "順風", - effect: "颳起猛烈的旋風,在4回合\n內提高我方全員的速度", - }, - acupressure: { - name: "點穴", - effect: "通過點穴讓身體舒筋活絡。\n大幅提高某1項能力", - }, - metalBurst: { - name: "金屬爆炸", - effect: "使出招式前,將最後受到的\n招式的傷害大力返還給對手", - }, - uTurn: { - name: "急速折返", - effect: "在攻擊之後急速返回,和後\n備寶可夢進行替換", - }, - closeCombat: { - name: "近身戰", - effect: "放棄守護,向對手的懷裏突\n擊。自己的防禦和特防會降\n低", - }, - payback: { - name: "以牙還牙", - effect: "蓄力攻擊。如果能在對手之\n後攻擊,招式的威力會變成\n2倍", - }, - assurance: { - name: "惡意追擊", - effect: "如果此回合內對手已經受到\n傷害的話,招式威力會變成\n2倍", - }, - embargo: { - name: "查封", - effect: "讓對手在5回合內不能使用\n寶可夢攜帶的道具。訓練家\n也不能給那隻寶可夢使用道\n具", - }, - fling: { - name: "投擲", - effect: "快速投擲攜帶的道具進行攻\n擊。根據道具不同,威力和\n效果會改變", - }, - psychoShift: { - name: "精神轉移", - effect: "利用超能力施以暗示,從而\n將自己受到的異常狀態轉移\n給對手", - }, - trumpCard: { - name: "王牌", - effect: "王牌招式的剩餘PP越少,\n招式的威力越大", - }, - healBlock: { - name: "回覆封鎖", - effect: "在5回合內無法通過招式、\n特性或攜帶的道具來回復H\nP", - }, - wringOut: { - name: "絞緊", - effect: "用力勒緊對手進行攻擊。對\n手的HP越多,威力越大", - }, - powerTrick: { - name: "力量戲法", - effect: "利用超能力交換自己的攻擊\n和防禦的力量", - }, - gastroAcid: { - name: "胃液", - effect: "將胃液吐向對手的身體。沾\n上的胃液會消除對手的特性\n效果", - }, - luckyChant: { - name: "幸運咒語", - effect: "向天許願,從而在5回合內\n不會被對手的攻擊打中要害", - }, - meFirst: { - name: "搶先一步", - effect: "提高威力,搶先使出對手想\n要使出的招式。如果不先使\n出則會失敗", - }, - copycat: { - name: "仿效", - effect: "模仿對手剛纔使出的招式,\n並使出相同招式。如果對手\n還沒出招則會失敗", - }, - powerSwap: { - name: "力量互換", - effect: "利用超能力互換自己和對手\n的攻擊以及特攻的能力變化", - }, - guardSwap: { - name: "防守互換", - effect: "利用超能力互換自己和對手\n的防禦以及特防的能力變化", - }, - punishment: { - name: "懲罰", - effect: "根據能力變化,對手提高的\n力量越大,招式的威力越大", - }, - lastResort: { - name: "珍藏", - effect: "當戰鬥中已學會的招式全部\n使用過後,才能開始使出珍\n藏的招式", - }, - worrySeed: { - name: "煩惱種子", - effect: "種植心神不寧的種子。使對\n手不能入眠,並將特性變成\n不眠", - }, - suckerPunch: { - name: "突襲", - effect: "可以比對手先攻擊。對手使\n出的招式如果不是攻擊招式\n則會失敗", - }, - toxicSpikes: { - name: "毒菱", - effect: "在對手的腳下撒毒菱。使對\n手替換出場的寶可夢中毒", - }, - heartSwap: { - name: "心靈互換", - effect: "利用超能力互換自己和對手\n之間的能力變化", - }, - aquaRing: { - name: "水流環", - effect: "在自己身體的周圍覆蓋用水\n製造的幕。每回合回覆HP", - }, - magnetRise: { - name: "電磁飄浮", - effect: "利用電氣產生的磁力浮在空\n中。在5回合內可以飄浮", - }, - flareBlitz: { - name: "閃焰衝鋒", - effect: "讓火焰覆蓋全身猛撞向對手。\n自己也會受到不小的傷害。\n有時會讓對手陷入灼傷狀\n態", - }, - forcePalm: { - name: "發勁", - effect: "向對手的身體發出衝擊波進\n行攻擊。有時會讓對手陷入\n麻痹狀態", - }, - auraSphere: { - name: "波導彈", - effect: "從體內產生出波導之力,然\n後向對手發出。攻擊必定會\n命中", - }, - rockPolish: { - name: "岩石打磨", - effect: "打磨自己的身體,減少空氣\n阻力。可以大幅提高自己的\n速度", - }, - poisonJab: { - name: "毒擊", - effect: "用帶毒的觸手或手臂刺入對\n手。有時會讓對手陷入中毒\n狀態", - }, - darkPulse: { - name: "惡之波動", - effect: "從體內發出充滿惡意的恐怖\n氣場。有時會使對手畏縮", - }, - nightSlash: { - name: "暗襲要害", - effect: "抓住瞬間的空隙切斬對手。\n容易擊中要害", - }, - aquaTail: { - name: "水流尾", effect: "如驚濤駭浪般揮動大尾巴攻\n擊對手" - }, - seedBomb: { - name: "種子炸彈", - effect: "將外殼堅硬的大種子,從上\n方砸下攻擊對手", - }, - airSlash: { - name: "空氣斬", - effect: "用連天空也能劈開的空氣之\n刃進行攻擊。有時會使對手\n畏縮", - }, - xScissor: { - name: "十字剪", - effect: "將鐮刀或爪子像剪刀般地交\n叉,順勢劈開對手", - }, - bugBuzz: { - name: "蟲鳴", - effect: "利用振動發出音波進行攻擊。\n有時會降低對手的特防", - }, - dragonPulse: { - name: "龍之波動", - effect: "從大大的口中掀起衝擊波攻\n擊對手", - }, - dragonRush: { - name: "龍之俯衝", - effect: "釋放出駭人的殺氣,一邊威\n懾一邊撞擊對手。有時會使\n對手畏縮", - }, - powerGem: { - name: "力量寶石", effect: "發射如寶石般閃耀的光芒攻\n擊對手" - }, - drainPunch: { - name: "吸取拳", - effect: "用拳頭吸取對手的力量。可\n以回覆給予對手傷害的一半\nHP", - }, - vacuumWave: { - name: "真空波", - effect: "揮動拳頭,掀起真空波。必\n定能夠先制攻擊", - }, - focusBlast: { - name: "真氣彈", - effect: "提高氣勢,釋放出全部力量。\n有時會降低對手的特防", - }, - energyBall: { - name: "能量球", - effect: "發射從自然收集的生命力量。\n有時會降低對手的特防", - }, - braveBird: { - name: "勇鳥猛攻", - effect: "收攏翅膀,通過低空飛行突\n擊對手。自己也會受到不小\n的傷害", - }, - earthPower: { - name: "大地之力", - effect: "向對手腳下釋放出大地之力。\n有時會降低對手的特防", - }, - switcheroo: { - name: "掉包", - effect: "用一閃而過的速度交換自己\n和對手的持有物", - }, - gigaImpact: { - name: "終極衝擊", - effect: "使出自己渾身力量突擊對手。\n下一回合自己將無法動彈", - }, - nastyPlot: { - name: "詭計", - effect: "謀劃詭計,激活頭腦。大幅\n提高自己的特攻", - }, - bulletPunch: { - name: "子彈拳", - effect: "向對手使出如子彈般快速而\n堅硬的拳頭。必定能夠先制\n攻擊", - }, - avalanche: { - name: "雪崩", - effect: "如果受到對手的招式攻擊,\n就能給予該對手2倍威力的\n攻擊", - }, - iceShard: { - name: "冰礫", - effect: "瞬間製作冰塊,快速地扔向\n對手。必定能夠先制攻擊", - }, - shadowClaw: { - name: "暗影爪", - effect: "以影子做成的銳爪,劈開對\n手。容易擊中要害", - }, - thunderFang: { - name: "雷電牙", - effect: "用蓄滿電流的牙齒咬住對手。\n有時會使對手畏縮或陷入\n麻痹狀態", - }, - iceFang: { - name: "冰凍牙", - effect: "用藏有冷氣的牙齒咬住對手。\n有時會使對手畏縮或陷入\n冰凍狀態", - }, - fireFang: { - name: "火焰牙", - effect: "用覆蓋着火焰的牙齒咬住對\n手。有時會使對手畏縮或陷\n入灼傷狀態", - }, - shadowSneak: { - name: "影子偷襲", - effect: "伸長影子,從對手的背後進\n行攻擊。必定能夠先制攻擊", - }, - mudBomb: { - name: "泥巴炸彈", - effect: "向對手發射堅硬的泥彈進行\n攻擊。有時會降低對手的命\n中率", - }, - psychoCut: { - name: "精神利刃", - effect: "用實體化的心之利刃劈開對\n手。容易擊中要害", - }, - zenHeadbutt: { - name: "意念頭錘", - effect: "將思念的力量集中在前額進\n行攻擊。有時會使對手畏縮", - }, - mirrorShot: { - name: "鏡光射擊", - effect: "拋光自己的身體,向對手釋\n放出閃光之力。有時會降低\n對手的命中率", - }, - flashCannon: { - name: "加農光炮", - effect: "將身體的光芒聚集在一點釋\n放出去。有時會降低對手的\n特防", - }, - rockClimb: { - name: "攀岩", - effect: "發動猛撞攻擊,有時會使對\n手混亂。是寶可表的祕傳招\n式之一", - }, - defog: { - name: "清除濃霧", - effect: "用強風吹開對手的反射壁或\n光牆等。也會降低對手的閃\n避率", - }, - trickRoom: { - name: "戲法空間", - effect: "製造出離奇的空間。在5回\n合內速度慢的寶可夢可以先\n行動", - }, - dracoMeteor: { - name: "流星群", - effect: "從天空中向對手落下隕石。\n使用之後因爲反作用力,自\n己的特攻會大幅降低", - }, - discharge: { - name: "放電", - effect: "用耀眼的電擊攻擊自己周圍\n所有的寶可夢。有時會陷入\n麻痹狀態", - }, - lavaPlume: { - name: "噴煙", - effect: "用熊熊烈火攻擊自己周圍所\n有的寶可夢。有時會陷入灼\n傷狀態", - }, - leafStorm: { - name: "飛葉風暴", - effect: "用尖尖的葉片向對手卷起風\n暴。使用之後因爲反作用力\n自己的特攻會大幅降低", - }, - powerWhip: { - name: "強力鞭打", - effect: "激烈地揮舞青藤或觸手摔打\n對手進行攻擊", - }, - rockWrecker: { - name: "岩石炮", - effect: "向對手發射巨大的岩石進行\n攻擊。下一回合自己將無法\n動彈", - }, - crossPoison: { - name: "十字毒刃", - effect: "用毒刃劈開對手。有時會讓\n對手陷入中毒狀態,也容易\n擊中要害", - }, - gunkShot: { - name: "垃圾射擊", - effect: "用骯髒的垃圾撞向對手進行\n攻擊。有時會讓對手陷入中\n毒狀態", - }, - ironHead: { - name: "鐵頭", - effect: "用鋼鐵般堅硬的頭部進行攻\n擊。有時會使對手畏縮", - }, - magnetBomb: { - name: "磁鐵炸彈", - effect: "發射吸住對手的鋼鐵炸彈。\n攻擊必定會命中", - }, - stoneEdge: { - name: "尖石攻擊", - effect: "用尖尖的岩石刺入對手進行\n攻擊。容易擊中要害", - }, - captivate: { - name: "誘惑", - effect: "♂誘惑♀或♀誘惑♂,從而\n大幅降低對手的特攻", - }, - stealthRock: { - name: "隱形岩", - effect: "將無數岩石懸浮在對手的周\n圍,從而對替換出場的對手\n的寶可夢給予傷害", - }, - grassKnot: { - name: "打草結", - effect: "用草纏住並絆倒對手。對手\n越重,威力越大", - }, - chatter: { - name: "喋喋不休", - effect: "用非常煩人的,喋喋不休的\n音波攻擊對手。使對手混亂", - }, - judgment: { - name: "制裁光礫", - effect: "向對手放出無數的光彈。屬\n性會根據自己攜帶的石板不\n同而改變", - }, - bugBite: { - name: "蟲咬", - effect: "咬住進行攻擊。當對手攜帶\n樹果時,可以食用並獲得其\n效果", - }, - chargeBeam: { - name: "充電光束", - effect: "向對手發射電擊光束。由於\n蓄滿電流,有時會提高自己\n的特攻", - }, - woodHammer: { - name: "木槌", - effect: "用堅硬的軀體撞擊對手進行\n攻擊。自己也會受到不小的\n傷害", - }, - aquaJet: { - name: "水流噴射", - effect: "以迅雷不及掩耳之勢撲向對\n手。必定能夠先制攻擊", - }, - attackOrder: { - name: "攻擊指令", - effect: "召喚手下,讓其朝對手發起\n攻擊。容易擊中要害", - }, - defendOrder: { - name: "防禦指令", - effect: "召喚手下,讓其附在自己的\n身體上。可以提高自己的防\n御和特防", - }, - healOrder: { - name: "回覆指令", - effect: "召喚手下療傷。回覆自己最\n大HP的一半", - }, - headSmash: { - name: "雙刃頭錘", - effect: "拼命使出渾身力氣,向對手\n進行頭錘攻擊。自己也會受\n到非常大的傷害", - }, - doubleHit: { - name: "二連擊", - effect: "使用尾巴等拍打對手進行攻\n擊。連續2次給予傷害", - }, - roarOfTime: { - name: "時光咆哮", - effect: "釋放出扭曲時間般的強大力\n量攻擊對手。下一回合自己\n將無法動彈", - }, - spacialRend: { - name: "亞空裂斬", - effect: "將對手連同周圍的空間一起\n撕裂並給予傷害。容易擊中\n要害", - }, - lunarDance: { - name: "新月舞", - effect: "雖然自己陷入昏厥,但可以\n治癒後備上場的寶可夢的全\n部狀態", - }, - crushGrip: { - name: "捏碎", - effect: "用駭人的力量捏碎對手。對\n手剩餘的HP越多,威力越\n大", - }, - magmaStorm: { - name: "熔岩風暴", - effect: "將對手困在熊熊燃燒的火焰\n中,在4~5回合內進行攻\n擊", - }, - darkVoid: { - name: "暗黑洞", - effect: "將對手強制拖入黑暗的世界,\n從而讓對手陷入睡眠狀態", - }, - seedFlare: { - name: "種子閃光", - effect: "從身體裏產生衝擊波。有時\n會大幅降低對手的特防", - }, - ominousWind: { - name: "奇異之風", - effect: "突然颳起毛骨悚然的暴風攻\n擊對手。有時會提高自己的\n全部能力", - }, - shadowForce: { - name: "暗影潛襲", - effect: "第1回合消失蹤影,第2回\n合攻擊對手。即使對手正受\n保護,也能擊中", - }, - honeClaws: { - name: "磨爪", - effect: "將爪子磨得更加鋒利。提高\n自己的攻擊和命中率", - }, - wideGuard: { - name: "廣域防守", - effect: "在1回合內防住擊打我方全\n員的攻擊", - }, - guardSplit: { - name: "防守平分", - effect: "利用超能力將自己和對手的\n防禦和特防相加,再進行平\n分", - }, - powerSplit: { - name: "力量平分", - effect: "利用超能力將自己和對手的\n攻擊和特攻相加,再進行平\n分", - }, - wonderRoom: { - name: "奇妙空間", - effect: "製造出離奇的空間。在5回\n合內互換所有寶可夢的防禦\n和特防", - }, - psyshock: { - name: "精神衝擊", - effect: "將神奇的念波實體化攻擊對\n手。給予物理傷害", - }, - venoshock: { - name: "毒液衝擊", - effect: "將特殊的毒液潑向對手。對\n處於中毒狀態的對手,威力\n會變成2倍", - }, - autotomize: { - name: "身體輕量化", - effect: "削掉身體上沒用的部分。大\n幅提高自己的速度,同時體\n重也會變輕", - }, - ragePowder: { - name: "憤怒粉", - effect: "將令人煩躁的粉末撒在自己\n身上,用以吸引對手的注意。\n使對手的攻擊全部指向自\n己", - }, - telekinesis: { - name: "意念移物", - effect: "利用超能力使對手浮起來。\n在3回合內攻擊會變得容易\n打中對手", - }, - magicRoom: { - name: "魔法空間", - effect: "製造出離奇的空間。在5回\n合內所有寶可夢攜帶道具的\n效果都會消失", - }, - smackDown: { - name: "擊落", - effect: "扔石頭或炮彈,攻擊飛行的\n對手。對手會被擊落,掉到\n地面", - }, - stormThrow: { - name: "山嵐摔", - effect: "向對手使出強烈的一擊。攻\n擊必定會擊中要害", - }, - flameBurst: { - name: "烈焰濺射", - effect: "如果擊中,爆裂的火焰會攻\n擊到對手。爆裂出的火焰還\n會飛濺到旁邊的對手", - }, - sludgeWave: { - name: "污泥波", - effect: "用污泥波攻擊自己周圍所有\n的寶可夢。有時會陷入中毒\n狀態", - }, - quiverDance: { - name: "蝶舞", - effect: "輕巧地跳起神祕而又美麗的\n舞蹈。提高自己的特攻、特\n防和速度", - }, - heavySlam: { - name: "重磅衝撞", - effect: "用沉重的身體撞向對手進行\n攻擊。自己比對手越重,威\n力越大", - }, - synchronoise: { - name: "同步干擾", - effect: "用神奇電波對周圍所有和自\n己屬性相同的寶可夢給予傷\n害", - }, - electroBall: { - name: "電球", - effect: "用電氣團撞向對手。自己比\n對手速度越快,威力越大", - }, - soak: { - name: "浸水", effect: "將大量的水潑向對手,從而\n使其變成水屬性" - }, - flameCharge: { - name: "蓄能焰襲", - effect: "讓火焰覆蓋全身,攻擊對手。\n積蓄力量來提高自己的速\n度", - }, - coil: { - name: "盤蜷", - effect: "盤蜷着集中精神。提高自己\n的攻擊、防禦和命中率", - }, - lowSweep: { - name: "下盤踢", - effect: "以敏捷的動作瞄準對手的腳\n進行攻擊。會降低對手的速\n度", - }, - acidSpray: { - name: "酸液炸彈", - effect: "噴出能溶化對手的液體進行\n攻擊。會大幅降低對手的特\n防", - }, - foulPlay: { - name: "欺詐", - effect: "利用對手的力量進行攻擊。\n正和自己戰鬥的對手,其攻\n擊越高,傷害越大", - }, - simpleBeam: { - name: "單純光束", - effect: "向對手發送謎之念波。接收\n到念波的對手,其特性會變\n爲單純", - }, - entrainment: { - name: "找夥伴", - effect: "用神奇的節奏跳舞。使對手\n模仿自己的動作,從而將特\n性變成一樣", - }, - afterYou: { - name: "您先請", - effect: "支援我方或對手的行動,使\n其緊接着此招式之後行動", - }, - round: { - name: "輪唱", - effect: "用歌聲攻擊對手。大家一起\n輪唱便可以接連使出,威力\n也會提高", - }, - echoedVoice: { - name: "迴聲", - effect: "用回聲攻擊對手。如果每回\n合都有寶可夢接着使用該招\n式,威力就會提高", - }, - chipAway: { - name: "逐步擊破", - effect: "看準機會穩步攻擊。無視對\n手的能力變化,直接給予傷\n害", - }, - clearSmog: { - name: "清除之煙", - effect: "向對手投擲特殊的泥塊進行\n攻擊。使其能力變回原點", - }, - storedPower: { - name: "輔助力量", - effect: "用蓄積起來的力量攻擊對手。\n自己的能力提高得越多,\n威力就越大", - }, - quickGuard: { - name: "快速防守", - effect: "守護自己和同伴,以防對手\n的先制攻擊", - }, - allySwitch: { - name: "交換場地", - effect: "用神奇的力量瞬間移動,互\n換自己和同伴所在的位置。\n連續使出則容易失敗", - }, - scald: { - name: "熱水", - effect: "向對手噴射煮得翻滾的開水\n進行攻擊。有時會讓對手陷\n入灼傷狀態", - }, - shellSmash: { - name: "破殼", - effect: "打破外殼,降低自己的防禦\n和特防,但大幅提高攻擊、\n特攻和速度", - }, - healPulse: { - name: "治癒波動", - effect: "放出治癒波動,從而回復對\n手最大HP的一半", - }, - hex: { - name: "禍不單行", - effect: "接二連三地進行攻擊。對處\n於異常狀態的對手給予較大\n的傷害", - }, - skyDrop: { - name: "自由落體", - effect: "第1回合將對手帶到空中,\n第2回合將其摔下進行攻擊。\n被帶到空中的對手不能動\n彈", - }, - shiftGear: { - name: "換檔", - effect: "轉動齒輪,不僅提高自己的\n攻擊,還會大幅提高速度", - }, - circleThrow: { - name: "巴投", - effect: "扔飛對手,強制拉後備寶可\n夢上場。如果對手爲野生寶\n可夢,戰鬥將直接結束", - }, - incinerate: { - name: "燒盡", - effect: "用火焰攻擊對手。對手攜帶\n樹果等時,會燒掉,使其不\n能使用", - }, - quash: { - name: "延後", effect: "壓制對手,從而將其行動順\n序放到最後" - }, - acrobatics: { - name: "雜技", - effect: "輕巧地攻擊對手。自己沒有\n攜帶道具時,會給予較大的\n傷害", - }, - reflectType: { - name: "鏡面屬性", - effect: "反射對手的屬性,讓自己也\n變成一樣的屬性", - }, - retaliate: { - name: "報仇", - effect: "爲倒下的同伴報仇。如果上\n一回合有同伴倒下,威力就\n會提高", - }, - finalGambit: { - name: "搏命", - effect: "拼命攻擊對手。雖然自己陷\n入昏厥,但會給予對手和自\n己目前HP等量的傷害", - }, - bestow: { - name: "傳遞禮物", - effect: "當對手未攜帶道具時,能夠\n將自己攜帶的道具交給對手", - }, - inferno: { - name: "煉獄", - effect: "用猛烈的火焰包圍對手進行\n攻擊。讓對手陷入灼傷狀態", - }, - waterPledge: { - name: "水之誓約", - effect: "用水柱進行攻擊。如果和火\n組合,威力就會提高,天空\n中會掛上彩虹", - }, - firePledge: { - name: "火之誓約", - effect: "用火柱進行攻擊。如果和草\n組合,威力就會提高,周圍\n會變成火海", - }, - grassPledge: { - name: "草之誓約", - effect: "用草柱進行攻擊。如果和水\n組合,威力就會提高,周圍\n會變成溼地", - }, - voltSwitch: { - name: "伏特替換", - effect: "在攻擊之後急速返回,和後\n備寶可夢進行替換", - }, - struggleBug: { - name: "蟲之抵抗", - effect: "抵抗並攻擊對手。會降低對\n手的特攻", - }, - bulldoze: { - name: "重踏", - effect: "用力踩踏地面並攻擊自己周\n圍所有的寶可夢。會降低對\n方的速度", - }, - frostBreath: { - name: "冰息", - effect: "將冰冷的氣息吹向對手進行\n攻擊。必定會擊中要害", - }, - dragonTail: { - name: "龍尾", - effect: "彈飛對手,強制拉後備寶可\n夢上場。如果對手爲野生寶\n可夢,戰鬥將直接結束", - }, - workUp: { - name: "自我激勵", effect: "激勵自己,從而提高攻擊和\n特攻" - }, - electroweb: { - name: "電網", - effect: "用電網捉住對手進行攻擊。\n會降低對手的速度", - }, - wildCharge: { - name: "瘋狂伏特", - effect: "讓電流覆蓋全身,撞向對手\n進行攻擊。自己也會受到少\n許傷害", - }, - drillRun: { - name: "直衝鑽", - effect: "像鋼鑽一樣,一邊旋轉身體\n一邊撞擊對手。容易擊中要\n害", - }, - dualChop: { - name: "二連劈", - effect: "用身體堅硬的部分拍打對手\n進行攻擊。連續2次給予傷\n害", - }, - heartStamp: { - name: "愛心印章", - effect: "以可愛的動作使對手疏忽,\n乘機給出強烈的一擊。有時\n會使對手畏縮", - }, - hornLeech: { - name: "木角", - effect: "將角刺入,吸取對手的養分。\n可以回覆給予對手傷害的\n一半HP", - }, - sacredSword: { - name: "聖劍", - effect: "用劍切斬對手進行攻擊。無\n視對手的能力變化,直接給\n予傷害", - }, - razorShell: { - name: "貝殼刃", - effect: "用鋒利的貝殼切斬對手進行\n攻擊。有時會降低對手的防\n御", - }, - heatCrash: { - name: "高溫重壓", - effect: "用燃燒的身體撞向對手進行\n攻擊。自己比對手越重,威\n力越大", - }, - leafTornado: { - name: "青草攪拌器", - effect: "用鋒利的葉片包裹住對手進\n行攻擊。有時會降低對手的\n命中率", - }, - steamroller: { - name: "瘋狂滾壓", - effect: "旋轉揉成團的身體壓扁對手。\n有時會使對手畏縮", - }, - cottonGuard: { - name: "棉花防守", - effect: "用軟綿綿的絨毛包裹住自己\n的身體進行守護。巨幅提高\n自己的防禦", - }, - nightDaze: { - name: "暗黑爆破", - effect: "放出黑暗的衝擊波攻擊對手。\n有時會降低對手的命中率", - }, - psystrike: { - name: "精神擊破", - effect: "將神奇的念波實體化攻擊對\n手。給予物理傷害", - }, - tailSlap: { - name: "掃尾拍打", - effect: "用堅硬的尾巴拍打對手進行\n攻擊。連續攻擊2~5次", - }, - hurricane: { - name: "暴風", - effect: "用強烈的風席捲對手進行攻\n擊。有時會使對手混亂", - }, - headCharge: { - name: "爆炸頭突擊", - effect: "用厲害的爆炸頭猛撞向對手\n進行攻擊。自己也會受到少\n許傷害", - }, - gearGrind: { - name: "齒輪飛盤", - effect: "向對手投擲鋼鐵齒輪進行攻\n擊。連續2次給予傷害", - }, - searingShot: { - name: "火焰彈", - effect: "用熊熊烈火攻擊自己周圍所\n有的寶可夢。有時會陷入灼\n傷狀態", - }, - technoBlast: { - name: "高科技光炮", - effect: "向對手放出光彈。屬性會根\n據自己攜帶的卡帶不同而改\n變", - }, - relicSong: { - name: "古老之歌", - effect: "讓對手聽古老之歌,打動對\n手的內心進行攻擊。有時會\n讓對手陷入睡眠狀態", - }, - secretSword: { - name: "神祕之劍", - effect: "用長角切斬對手進行攻擊。\n角上擁有的神奇力量將給予\n物理傷害", - }, - glaciate: { - name: "冰封世界", - effect: "將冰凍的冷氣吹向對手進行\n攻擊。會降低對手的速度", - }, - boltStrike: { - name: "雷擊", - effect: "讓強大的電流覆蓋全身,猛\n撞向對手進行攻擊。有時會\n讓對手陷入麻痹狀態", - }, - blueFlare: { - name: "青焰", - effect: "用美麗而激烈的青焰包裹住\n對手進行攻擊。有時會讓對\n手陷入灼傷狀態", - }, - fieryDance: { - name: "火之舞", - effect: "讓火焰覆蓋全身,振翅攻擊\n對手。有時會提高自己的特\n攻", - }, - freezeShock: { - name: "冰凍伏特", - effect: "用覆蓋着電流的冰塊,在第\n2回合撞向對手。有時會讓\n對手陷入麻痹狀態", - }, - iceBurn: { - name: "極寒冷焰", - effect: "用能夠凍結一切的強烈冷氣,\n在第2回合包裹住對手。\n有時會讓對手陷入灼傷狀態", - }, - snarl: { - name: "大聲咆哮", - effect: "沒完沒了地大聲斥責,從而\n降低對手的特攻", - }, - icicleCrash: { - name: "冰柱墜擊", - effect: "用大冰柱激烈地撞向對手進\n行攻擊。有時會使對手畏縮", - }, - vCreate: { - name: "V熱焰", - effect: "從前額產生灼熱的火焰,舍\n身撞擊對手。防禦、特防和\n速度會降低", - }, - fusionFlare: { - name: "交錯火焰", - effect: "釋放出巨大的火焰。受到巨\n大的閃電影響時,招式威力\n會提高", - }, - fusionBolt: { - name: "交錯閃電", - effect: "釋放出巨大的閃電。受到巨\n大的火焰影響時,招式威力\n會提高", - }, - flyingPress: { - name: "飛身重壓", - effect: "從空中俯衝向對手。此招式\n同時帶有格鬥屬性和飛行屬\n性", - }, - matBlock: { - name: "掀榻榻米", - effect: "將掀起來的榻榻米當作盾牌,\n防住自己和同伴免受招式\n傷害。變化招式無法防住", - }, - belch: { - name: "打嗝", - effect: "朝着對手打嗝,並給予傷害。\n如果不喫樹果則無法使出", - }, - rototiller: { - name: "耕地", - effect: "翻耕土地,使草木更容易成\n長。會提高草屬性寶可夢的\n攻擊和特攻", - }, - stickyWeb: { - name: "黏黏網", - effect: "在對手周圍圍上黏黏的網,\n降低替換出場的對手的速度", - }, - fellStinger: { - name: "致命針刺", - effect: "如果使用此招式打倒對手,\n攻擊會巨幅提高", - }, - phantomForce: { - name: "潛靈奇襲", - effect: "第1回合消失在某處,第2\n回合攻擊對手。可以無視守\n護進行攻擊", - }, - trickOrTreat: { - name: "萬聖夜", - effect: "邀請對手參加萬聖夜。使對\n手被追加幽靈屬性", - }, - nobleRoar: { - name: "戰吼", - effect: "發出戰吼威嚇對手,從而降\n低對手的攻擊和特攻", - }, - ionDeluge: { - name: "等離子浴", - effect: "將帶電粒子擴散開來,使一\n般屬性的招式變成電屬性", - }, - parabolicCharge: { - name: "拋物面充電", - effect: "給周圍全體寶可夢造成傷害。\n可以回覆給予傷害的一半\nHP", - }, - forestsCurse: { - name: "森林咒術", - effect: "向對手施加森林咒術。中了\n咒術的對手會被追加草屬性", - }, - petalBlizzard: { - name: "落英繽紛", - effect: "猛烈地颳起飛雪般的落花,\n攻擊周圍所有的寶可夢,並\n給予傷害", - }, - freezeDry: { - name: "冷凍乾燥", - effect: "急劇冷凍對手,有時會讓對\n手陷入冰凍狀態。對於水屬\n性寶可夢也是效果絕佳", - }, - disarmingVoice: { - name: "魅惑之聲", - effect: "發出魅惑的叫聲,給予對手\n精神上的傷害。攻擊必定會\n命中", - }, - partingShot: { - name: "拋下狠話", - effect: "拋下狠話威嚇對手,降低攻\n擊和特攻後,和後備寶可夢\n進行替換", - }, - topsyTurvy: { - name: "顛倒", - effect: "顛倒對手身上的所有能力變\n化,變成和原來相反的狀態", - }, - drainingKiss: { - name: "吸取之吻", - effect: "用一個吻吸取對手的HP。\n回覆給予對手傷害的一半以\n上的HP", - }, - craftyShield: { - name: "戲法防守", - effect: "使用神奇的力量防住攻擊我\n方的變化招式。但無法防住\n傷害招式的攻擊", - }, - flowerShield: { - name: "鮮花防守", - effect: "使用神奇的力量提高在場的\n所有草屬性寶可夢的防禦", - }, - grassyTerrain: { - name: "青草場地", - effect: "在5回合內變成青草場地。\n地面上的寶可夢每回合都能\n回覆。草屬性的招式威力還\n會提高", - }, - mistyTerrain: { - name: "薄霧場地", - effect: "在5回合內,地面上的寶可\n夢不會陷入異常狀態。龍屬\n性招式的傷害也會減半", - }, - electrify: { - name: "輸電", - effect: "對手使出招式前,如果輸電,\n則該回合對手的招式變成\n電屬性", - }, - playRough: { - name: "嬉鬧", - effect: "與對手嬉鬧並攻擊。有時會\n降低對手的攻擊", - }, - fairyWind: { - name: "妖精之風", effect: "颳起妖精之風,吹向對手進\n行攻擊" - }, - moonblast: { - name: "月亮之力", - effect: "借用月亮的力量攻擊對手。\n有時會降低對手的特攻", - }, - boomburst: { - name: "爆音波", - effect: "通過震耳欲聾的爆炸聲產生\n的破壞力,攻擊自己周圍所\n有的寶可夢", - }, - fairyLock: { - name: "妖精之鎖", - effect: "通過封鎖,下一回合所有的\n寶可夢都無法逃走", - }, - kingsShield: { - name: "王者盾牌", - effect: "防住對手攻擊的同時,自己\n變爲防禦姿態。能夠降低所\n接觸到的對手的攻擊", - }, - playNice: { - name: "和睦相處", - effect: "和對手和睦相處,使其失去\n戰鬥的氣力,從而降低對手\n的攻擊", - }, - confide: { - name: "密語", - effect: "和對手進行密語,使其失去\n集中力,從而降低對手的特\n攻", - }, - diamondStorm: { - name: "鑽石風暴", - effect: "掀起鑽石風暴給予傷害。有\n時會大幅提高自己的防禦", - }, - steamEruption: { - name: "蒸汽爆炸", - effect: "將滾燙的蒸汽噴向對手。有\n時會讓對手灼傷", - }, - hyperspaceHole: { - name: "異次元洞", - effect: "通過異次元洞,突然出現在\n對手的側面進行攻擊。還可\n以無視守住和看穿等招式", - }, - waterShuriken: { - name: "飛水手裏劍", - effect: "用粘液製成的手裏劍,連續\n攻擊2~5次。必定能夠先\n制攻擊", - }, - mysticalFire: { - name: "魔法火焰", - effect: "從口中噴出特別灼熱的火焰\n進行攻擊。降低對手的特攻", - }, - spikyShield: { - name: "尖刺防守", - effect: "防住對手攻擊的同時,削減\n接觸到自己的對手的體力", - }, - aromaticMist: { - name: "芳香薄霧", - effect: "通過神奇的芳香,提高我方\n寶可夢的特防", - }, - eerieImpulse: { - name: "怪異電波", - effect: "從身體放射出怪異電波,讓\n對手沐浴其中,從而大幅降\n低其特攻", - }, - venomDrench: { - name: "毒液陷阱", - effect: "將特殊的毒液潑向對手。對\n處於中毒狀態的對手,其攻\n擊、特攻和速度都會降低", - }, - powder: { - name: "粉塵", - effect: "如果被撒到粉塵的對手使用\n火招式,則會爆炸並給予傷\n害", - }, - geomancy: { - name: "大地掌控", - effect: "第1回合吸收能量,第2回\n合大幅提高特攻、特防和速\n度", - }, - magneticFlux: { - name: "磁場操控", - effect: "通過操控磁場,會提高特性\n爲正電和負電的寶可夢的防\n御和特防", - }, - happyHour: { - name: "歡樂時光", - effect: "如果使用歡樂時光,戰鬥後\n得到的錢會翻倍", - }, - electricTerrain: { - name: "電氣場地", - effect: "在5回合內變成電氣場地。\n地面上的寶可夢將無法入眠。\n電屬性的招式威力還會提\n高", - }, - dazzlingGleam: { name: "魔法閃耀", effect: "向對手發射強光,並給予傷\n害" }, - celebrate: { name: "慶祝", effect: "寶可夢爲十分開心的你慶祝" }, - holdHands: { - name: "牽手", - effect: "我方寶可夢之間牽手。能帶\n來非常幸福的心情", - }, - babyDollEyes: { - name: "圓瞳", - effect: "用圓瞳凝視對手,從而降低\n其攻擊。必定能夠先制攻擊", - }, - nuzzle: { - name: "蹭蹭臉頰", - effect: "將帶電的臉頰蹭蹭對手進行\n攻擊。讓對手陷入麻痹狀態", - }, - holdBack: { - name: "手下留情", - effect: "在攻擊的時候手下留情,從\n而使對手的HP至少會留下\n1HP", - }, - infestation: { - name: "糾纏不休", - effect: "在4~5回合內死纏爛打地\n進行攻擊。在此期間對手將\n無法逃走", - }, - powerUpPunch: { - name: "增強拳", - effect: "通過反覆擊打對手,使自己\n的拳頭慢慢變硬。打中對手\n攻擊就會提高", - }, - oblivionWing: { - name: "歸天之翼", - effect: "從鎖定的對手身上吸取HP。\n回覆給予對手傷害的一半\n以上的HP", - }, - thousandArrows: { - name: "千箭齊發", - effect: "可以擊中浮在空中的寶可夢。\n空中的對手被擊落後,會\n掉到地面", - }, - thousandWaves: { - name: "千波激盪", - effect: "從地面掀起波浪進行攻擊。\n被掀入波浪中的對手,將無\n法從戰鬥中逃走", - }, - landsWrath: { - name: "大地神力", - effect: "聚集大地的力量,將此力量\n集中攻擊對手,並給予傷害", - }, - lightOfRuin: { - name: "破滅之光", - effect: "借用永恆之花的力量,發射\n出強力光線。自己也會受到\n非常大的傷害", - }, - originPulse: { - name: "根源波動", - effect: "用無數青白色且閃耀的光線\n攻擊對手", - }, - precipiceBlades: { - name: "斷崖之劍", - effect: "將大地的力量變化爲利刃攻\n擊對手", - }, - dragonAscent: { - name: "畫龍點睛", - effect: "從天空中急速下降攻擊對手。\n自己的防禦和特防會降低", - }, - hyperspaceFury: { - name: "異次元猛攻", - effect: "用許多手臂,無視對手的守\n住或看穿等招式進行連續攻\n擊,自己的防禦會降低", - }, - breakneckBlitzPhysical: { - name: "一般Z究極無敵大沖撞", - effect: "通過Z力量氣勢猛烈地全力\n撞上對手。威力會根據原來\n的招式而改變", - }, - breakneckBlitzSpecial: { - name: "一般Z究極無敵大沖撞", - effect: "通過Z力量氣勢猛烈地全力\n撞上對手。威力會根據原來\n的招式而改變", - }, - allOutPummelingPhysical: { - name: "格鬥Z全力無雙激烈拳", - effect: "通過Z力量製造出能量彈,\n全力撞向對手。威力會根據\n原來的招式而改變", - }, - allOutPummelingSpecial: { - name: "格鬥Z全力無雙激烈拳", - effect: "通過Z力量製造出能量彈,\n全力撞向對手。威力會根據\n原來的招式而改變", - }, - supersonicSkystrikePhysical: { - name: "飛行Z極速俯衝轟烈撞", - effect: "通過Z力量猛烈地飛向天空,\n朝對手全力落下。威力會\n根據原來的招式而改變", - }, - supersonicSkystrikeSpecial: { - name: "飛行Z極速俯衝轟烈撞", - effect: "通過Z力量猛烈地飛向天空,\n朝對手全力落下。威力會\n根據原來的招式而改變", - }, - acidDownpourPhysical: { - name: "毒Z強酸劇毒滅絕雨", - effect: "通過Z力量使毒沼湧起,全\n力讓對手沉下去。威力會根\n據原來的招式而改變", - }, - acidDownpourSpecial: { - name: "毒Z強酸劇毒滅絕雨", - effect: "通過Z力量使毒沼湧起,全\n力讓對手沉下去。威力會根\n據原來的招式而改變", - }, - tectonicRagePhysical: { - name: "地面Z地隆嘯天大終結", - effect: "通過Z力量潛入地裏最深處,\n全力撞上對手。威力會根\n據原來的招式而改變", - }, - tectonicRageSpecial: { - name: "地面Z地隆嘯天大終結", - effect: "通過Z力量潛入地裏最深處,\n全力撞上對手。威力會根\n據原來的招式而改變", - }, - continentalCrushPhysical: { - name: "岩石Z毀天滅地巨巖墜", - effect: "通過Z力量召喚大大的巖山,\n全力撞向對手。威力會根\n據原來的招式而改變", - }, - continentalCrushSpecial: { - name: "岩石Z毀天滅地巨巖墜", - effect: "通過Z力量召喚大大的巖山,\n全力撞向對手。威力會根\n據原來的招式而改變", - }, - savageSpinOutPhysical: { - name: "蟲Z絕對捕食迴旋斬", - effect: "通過Z力量將吐出的絲線全\n力束縛對手。威力會根據原\n來的招式而改變", - }, - savageSpinOutSpecial: { - name: "蟲Z絕對捕食迴旋斬", - effect: "通過Z力量將吐出的絲線全\n力束縛對手。威力會根據原\n來的招式而改變", - }, - neverEndingNightmarePhysical: { - name: "幽靈Z無盡暗夜之誘惑", - effect: "通過Z力量召喚強烈的怨念,\n全力降臨到對手身上。威\n力會根據原來的招式而改變", - }, - neverEndingNightmareSpecial: { - name: "幽靈Z無盡暗夜之誘惑", - effect: "通過Z力量召喚強烈的怨念,\n全力降臨到對手身上。威\n力會根據原來的招式而改變", - }, - corkscrewCrashPhysical: { - name: "鋼Z超絕螺旋連擊", - effect: "通過Z力量進行高速旋轉,\n全力撞上對手。威力會根據\n原來的招式而改變", - }, - corkscrewCrashSpecial: { - name: "鋼Z超絕螺旋連擊", - effect: "通過Z力量進行高速旋轉,\n全力撞上對手。威力會根據\n原來的招式而改變", - }, - infernoOverdrivePhysical: { - name: "火Z超強極限爆焰彈", - effect: "通過Z力量噴出熊熊烈火,\n全力撞向對手。威力會根據\n原來的招式而改變", - }, - infernoOverdriveSpecial: { - name: "火Z超強極限爆焰彈", - effect: "通過Z力量噴出熊熊烈火,\n全力撞向對手。威力會根據\n原來的招式而改變", - }, - hydroVortexPhysical: { - name: "水Z超級水流大漩渦", - effect: "通過Z力量製造大大的潮旋,\n全力吞沒對手。威力會根\n據原來的招式而改變", - }, - hydroVortexSpecial: { - name: "水Z超級水流大漩渦", - effect: "通過Z力量製造大大的潮旋,\n全力吞沒對手。威力會根\n據原來的招式而改變", - }, - bloomDoomPhysical: { - name: "草Z絢爛繽紛花怒放", - effect: "通過Z力量藉助花草的能量,\n全力攻擊對手。威力會根\n據原來的招式而改變", - }, - bloomDoomSpecial: { - name: "草Z絢爛繽紛花怒放", - effect: "通過Z力量藉助花草的能量,\n全力攻擊對手。威力會根\n據原來的招式而改變", - }, - gigavoltHavocPhysical: { - name: "電Z終極伏特狂雷閃", - effect: "通過Z力量將蓄積的強大電\n流全力撞向對手。威力會根\n據原來的招式而改變", - }, - gigavoltHavocSpecial: { - name: "電Z終極伏特狂雷閃", - effect: "通過Z力量將蓄積的強大電\n流全力撞向對手。威力會根\n據原來的招式而改變", - }, - shatteredPsychePhysical: { - name: "超能力Z至高精神破壞波", - effect: "通過Z力量操縱對手,全力\n使其感受到痛苦。威力會根\n據原來的招式而改變", - }, - shatteredPsycheSpecial: { - name: "超能力Z至高精神破壞波", - effect: "通過Z力量操縱對手,全力\n使其感受到痛苦。威力會根\n據原來的招式而改變", - }, - subzeroSlammerPhysical: { - name: "冰Z激狂大地萬里冰", - effect: "通過Z力量急劇降低氣溫,\n全力冰凍對手。威力會根據\n原來的招式而改變", - }, - subzeroSlammerSpecial: { - name: "冰Z激狂大地萬里冰", - effect: "通過Z力量急劇降低氣溫,\n全力冰凍對手。威力會根據\n原來的招式而改變", - }, - devastatingDrakePhysical: { - name: "龍Z究極巨龍震天地", - effect: "通過Z力量將氣場實體化,\n向對手全力發動襲擊。威力\n會根據原來的招式而改變", - }, - devastatingDrakeSpecial: { - name: "龍Z究極巨龍震天地", - effect: "通過Z力量將氣場實體化,\n向對手全力發動襲擊。威力\n會根據原來的招式而改變", - }, - blackHoleEclipsePhysical: { - name: "惡Z黑洞吞噬萬物滅", - effect: "通過Z力量收集惡能量,全\n力將對手吸入。威力會根據\n原來的招式而改變", - }, - blackHoleEclipseSpecial: { - name: "惡Z黑洞吞噬萬物滅", - effect: "通過Z力量收集惡能量,全\n力將對手吸入。威力會根據\n原來的招式而改變", - }, - twinkleTacklePhysical: { - name: "妖精Z可愛星星飛天撞", - effect: "通過Z力量製造魅惑空間,\n全力捉弄對手。威力會根據\n原來的招式而改變", - }, - twinkleTackleSpecial: { - name: "妖精Z可愛星星飛天撞", - effect: "通過Z力量製造魅惑空間,\n全力捉弄對手。威力會根據\n原來的招式而改變", - }, - catastropika: { - name: "皮卡丘Z皮卡皮卡必殺擊", - effect: "通過Z力量,皮卡丘全身覆\n蓋最強電力,全力猛撲對手", - }, - shoreUp: { - name: "集沙", - effect: "回覆自己最大HP的一半。\n在沙暴中回覆得更多", - }, - firstImpression: { - name: "迎頭一擊", - effect: "威力很高的招式,但只有在\n出場戰鬥時,立刻使出才能\n成功", - }, - banefulBunker: { - name: "碉堡", - effect: "防住對手攻擊的同時,讓接\n觸到自己的對手中毒", - }, - spiritShackle: { - name: "縫影", - effect: "攻擊的同時,縫住對手的影\n子,使其無法逃走", - }, - darkestLariat: { - name: "DD金勾臂", - effect: "旋轉雙臂打向對手。無視對\n手的能力變化,直接給予傷\n害", - }, - sparklingAria: { - name: "泡影的詠歎調", - effect: "隨着唱歌會放出很多氣球。\n受到此招式攻擊時,灼傷會\n被治癒", - }, - iceHammer: { - name: "冰錘", - effect: "揮舞強力而沉重的拳頭,給\n予對手傷害。自己的速度會\n降低", - }, - floralHealing: { - name: "花療", - effect: "回覆對手最大HP的一半。\n在青草場地時,效果會提高", - }, - highHorsepower: { name: "十萬馬力", effect: "使出全身力量,猛攻對手" }, - strengthSap: { - name: "吸取力量", - effect: "給自己回覆和對手攻擊力相\n同數值的HP,然後降低對\n手的攻擊", - }, - solarBlade: { - name: "日光刃", - effect: "第1回合收集滿滿的日光,\n第2回合將此力量集中在劍\n上進行攻擊", - }, - leafage: { name: "樹葉", effect: "將葉片打向對手,進行攻擊" }, - spotlight: { - name: "聚光燈", - effect: "給寶可夢打上聚光燈,該回\n合只能瞄準該寶可夢", - }, - toxicThread: { - name: "毒絲", - effect: "將混有毒的絲吐向對手。使\n其中毒,從而降低對手的速\n度", - }, - laserFocus: { name: "磨礪", effect: "集中精神,下次攻擊必定會\n擊中要害" }, - gearUp: { - name: "輔助齒輪", - effect: "啓動齒輪,提高特性爲正電\n和負電的寶可夢的攻擊和特\n攻", - }, - throatChop: { - name: "深淵突刺", - effect: "受到此招式攻擊的對手,會\n因爲地獄般的痛苦,在2回\n合內,變得無法使出聲音類\n招式", - }, - pollenPuff: { - name: "花粉團", - effect: "對敵人使用是會爆炸的糰子。\n對我方使用則是給予回覆\n的糰子", - }, - anchorShot: { - name: "擲錨", - effect: "將錨纏住對手進行攻擊。使\n對手無法逃走", - }, - psychicTerrain: { - name: "精神場地", - effect: "在5回合內,地面上的寶可\n夢不會受到先制招式的攻擊。\n超能力屬性的招式威力會\n提高", - }, - lunge: { - name: "猛撲", - effect: "全力猛撲對手進行攻擊。從\n而降低對手的攻擊", - }, - fireLash: { - name: "火焰鞭", - effect: "用燃燒的鞭子抽打對手。受\n到攻擊的對手防禦會降低", - }, - powerTrip: { - name: "囂張", - effect: "耀武揚威地攻擊對手,自己\n的能力提高得越多,威力就\n越大", - }, - burnUp: { - name: "燃盡", - effect: "將自己全身燃燒起火焰來,\n給予對手大大的傷害。自己\n的火屬性將會消失", - }, - speedSwap: { name: "速度互換", effect: "將對手和自己的速度進行互\n換" }, - smartStrike: { - name: "修長之角", - effect: "用尖尖的角刺入對手進行攻\n擊。攻擊必定會命中", - }, - purify: { - name: "淨化", - effect: "治癒對手的異常狀態。治癒\n後可以回覆自己的HP", - }, - revelationDance: { - name: "覺醒之舞", - effect: "全力跳舞進行攻擊。此招式\n的屬性將變得和自己的屬性\n相同", - }, - coreEnforcer: { - name: "核心懲罰者", - effect: "如果給予過傷害的對手已經\n結束行動,其特性就會被消\n除", - }, - tropKick: { - name: "熱帶踢", - effect: "向對手使出來自南國的火熱\n腳踢。從而降低對手的攻擊", - }, - instruct: { - name: "號令", - effect: "向對手下達指示,讓其再次\n使出剛纔的招式", - }, - beakBlast: { - name: "鳥嘴加農炮", - effect: "先加熱鳥嘴後再進行攻擊。\n鳥嘴在加熱時對手觸碰的話,\n就會使其灼傷", - }, - clangingScales: { - name: "鱗片噪音", - effect: "摩擦全身鱗片,發出響亮的\n聲音進行攻擊。攻擊後自己\n的防禦會降低", - }, - dragonHammer: { - name: "龍錘", - effect: "將身體當作錘子,向對手發\n動襲擊,給予傷害", - }, - brutalSwing: { - name: "狂舞揮打", - effect: "用自己的身體狂舞揮打,給\n予對手傷害", - }, - auroraVeil: { - name: "極光幕", - effect: "在5回合內減弱物理和特殊\n的傷害。只有下雪時才能使\n出", - }, - sinisterArrowRaid: { - name: "狙射樹梟Z遮天蔽日暗影箭", - effect: "通過Z力量製造出無數箭的\n狙射樹梟將全力射穿對手進\n行攻擊", - }, - maliciousMoonsault: { - name: "熾焰咆哮虎Z極惡飛躍粉碎擊", - effect: "通過Z力量得到強壯肉體的\n熾焰咆哮虎將全力撞向對手\n進行攻擊", - }, - oceanicOperetta: { - name: "西獅海壬Z海神莊嚴交響樂", - effect: "通過Z力量召喚大量水的西\n獅海壬將全力攻擊對手", - }, - guardianOfAlola: { - name: "卡璞Z巨人衛士・阿羅拉", - effect: "通過Z力量得到阿羅拉之力\n的土地神寶可夢將全力進行\n攻擊。對手的剩餘HP會減\n少很多", - }, - soulStealing7StarStrike: { - name: "瑪夏多Z七星奪魂腿", - effect: "得到Z力量的瑪夏多將全力\n使出拳頭和腳踢的連續招式\n叩打對手", - }, - stokedSparksurfer: { - name: "阿羅雷Z駕雷馭電戲衝浪", - effect: "得到Z力量的阿羅拉地區的\n雷丘將全力進行攻擊。從而\n讓對手陷入麻痹狀態", - }, - pulverizingPancake: { - name: "卡比獸Z認真起來大爆擊", - effect: "通過Z力量使得認真起來的\n卡比獸躍動巨大身軀,全力\n向對手發動襲擊", - }, - extremeEvoboost: { - name: "伊布Z九彩昇華齊聚頂", - effect: "得到Z力量的伊布將藉助進\n化後夥伴們的力量,大幅提\n高能力", - }, - genesisSupernova: { - name: "夢幻Z起源超新星大爆炸", - effect: "得到Z力量的夢幻將全力攻\n擊對手。腳下會變成精神場\n地", - }, - shellTrap: { - name: "陷阱甲殼", - effect: "設下甲殼陷阱。如果對手使\n出物理招式,陷阱就會爆炸\n並給予對手傷害", - }, - fleurCannon: { - name: "花朵加農炮", - effect: "放出強力光束後,自己的特\n攻會大幅降低", - }, - psychicFangs: { - name: "精神之牙", - effect: "利用精神力量咬住對手進行\n攻擊。還可以破壞光牆和反\n射壁等", - }, - stompingTantrum: { - name: "跺腳", - effect: "化悔恨爲力量進行攻擊。如\n果上一回合招式沒有打中,\n威力就會翻倍", - }, - shadowBone: { - name: "暗影之骨", - effect: "用附有靈魂的骨頭毆打對手\n進行攻擊。有時會降低對手\n的防禦", - }, - accelerock: { - name: "衝巖", - effect: "迅速撞向對手進行攻擊。必\n定能夠先制攻擊", - }, - liquidation: { - name: "水流裂破", - effect: "用水之力量撞向對手進行攻\n擊。有時會降低對手的防禦", - }, - prismaticLaser: { - name: "棱鏡鐳射", - effect: "用棱鏡的力量發射強烈光線。\n下一回合自己將無法動彈", - }, - spectralThief: { - name: "暗影偷盜", - effect: "潛入對手的影子進行攻擊。\n會奪取對手的能力提升", - }, - sunsteelStrike: { - name: "流星閃衝", - effect: "以流星般的氣勢猛撞對手。\n可以無視對手的特性進行攻\n擊", - }, - moongeistBeam: { - name: "暗影之光", - effect: "放出奇怪的光線攻擊對手。\n可以無視對手的特性進行攻\n擊", - }, - tearfulLook: { - name: "淚眼汪汪", - effect: "變得淚眼汪汪,讓對手喪失\n鬥志。從而降低對手的攻擊\n和特攻", - }, - zingZap: { - name: "麻麻刺刺", - effect: "撞向對手,併發出強電,使\n其感到麻麻刺刺的。有時會\n使對手畏縮", - }, - naturesMadness: { - name: "自然之怒", - effect: "向對手釋放自然之怒。對手\n的HP會減半", - }, - multiAttack: { - name: "多屬性攻擊", - effect: "一邊覆蓋高能量,一邊撞向\n對手進行攻擊。根據存儲碟\n不同,屬性會改變", - }, - tenMillionVoltThunderbolt: { - name: "智皮卡Z千萬伏特", - effect: "戴着帽子的皮卡丘將通過Z\n力量增強的電擊全力釋放給\n對手。容易擊中要害", - }, - mindBlown: { - name: "驚爆大頭", - effect: "讓自己的頭爆炸,來攻擊周\n圍的一切。自己也會受到傷\n害", - }, - plasmaFists: { - name: "等離子閃電拳", - effect: "用覆蓋着電流的拳頭進行攻\n擊。使一般屬性的招式變成\n電屬性", - }, - photonGeyser: { - name: "光子噴湧", - effect: "用光柱來進行攻擊。比較自\n己的攻擊和特攻,用數值相\n對較高的一項給予對方傷害", - }, - lightThatBurnsTheSky: { - name: "究極奈克洛Z焚天滅世熾光爆", - effect: "奈克洛茲瑪會無視對手的特\n性效果,在攻擊和特攻之間,\n用數值相對較高的一項給\n予對方傷害", - }, - searingSunrazeSmash: { - name: "索爾迦雷歐Z日光迴旋下蒼穹", - effect: "得到Z力量的索爾迦雷歐將\n全力進行攻擊。可以無視對\n手的特性效果", - }, - menacingMoonrazeMaelstrom: { - name: "露奈雅拉Z月華飛濺落靈霄", - effect: "得到Z力量的露奈雅拉將全\n力進行攻擊。可以無視對手\n的特性效果", - }, - letsSnuggleForever: { - name: "謎擬丘Z親密無間大亂揍", - effect: "得到Z力量的謎擬Q將全力\n進行亂揍攻擊", - }, - splinteredStormshards: { - name: "鬃巖狼人Z狼嘯石牙颶風暴", - effect: "得到Z力量的鬃巖狼人將全\n力進行攻擊。而且會消除場\n地狀態", - }, - clangorousSoulblaze: { - name: "杖尾鱗甲龍Z熾魂熱舞烈音爆", - effect: "得到Z力量的杖尾鱗甲龍將\n全力攻擊對手。並且自己的\n能力會提高", - }, - zippyZap: { - name: "電電加速", - effect: "The user attacks the target with bursts of electricity at high speed. This move always goes first and raises the user's evasiveness.", - }, - splishySplash: { - name: "滔滔衝浪", - effect: "往巨浪中注入電能後衝撞對\n手進行攻擊。有時會讓對手\n陷入麻痹狀態", - }, - floatyFall: { - name: "飄飄墜落", - effect: "輕飄飄地浮起來後,再猛地\n俯衝下去進行攻擊。有時會\n使對手畏縮", - }, - pikaPapow: { - name: "閃閃雷光", - effect: "皮卡丘越喜歡訓練家,電擊\n的威力就越強。攻擊必定會\n命中", - }, - bouncyBubble: { - name: "活活氣泡", - effect: "投擲水球進行攻擊。吸水後\n能回覆等同於造成的傷害\n的HP", - }, - buzzyBuzz: { - name: "麻麻電擊", - effect: "放出電擊攻擊對手。讓對手\n陷入麻痹狀態", - }, - sizzlySlide: { - name: "熊熊火爆", - effect: "用燃起大火的身體猛烈地衝\n撞對手。讓對手陷入灼傷狀\n態", - }, - glitzyGlow: { - name: "嘩嘩氣場", - effect: "利用念力強攻,粉碎對方信\n心。製造一道能減弱對手特\n殊攻擊的神奇牆壁", - }, - baddyBad: { - name: "壞壞領域", - effect: "惡行惡相地進行攻擊。製造\n一道能減弱對手物理攻擊的\n神奇牆壁", - }, - sappySeed: { - name: "茁茁炸彈", - effect: "長出巨大的藤蔓,播撒種子\n進行攻擊。種子每回合都會\n吸取對手的HP", - }, - freezyFrost: { - name: "冰冰霜凍", - effect: "利用冰冷的黑霧結晶進行攻\n擊。使全體寶可夢的能力變\n回原點", - }, - sparklySwirl: { - name: "亮亮風暴", - effect: "利用芬芳刺鼻的龍捲風吞噬\n對方。能治癒我方寶可夢的\n異常狀態", - }, - veeveeVolley: { - name: "砰砰擊破", - effect: "伊布越喜歡訓練家,衝撞的\n威力就越強。攻擊必定會命\n中", - }, - doubleIronBash: { - name: "鋼拳雙擊", - effect: "以胸口的螺帽爲中心旋轉,\n並連續2次揮動手臂打擊對\n手。有時會使對手畏縮", - }, - maxGuard: { - name: "極巨防壁", - effect: "完全抵擋對手的攻擊。連續\n使出則容易失敗", - }, - dynamaxCannon: { - name: "極巨炮", - effect: "將凝縮在體內的能量從核心放出進行攻擊,\n對手等級比當前波次的等級上限越高,造成的傷害越高,最多兩倍。", - }, - snipeShot: { - name: "狙擊", - effect: "能無視具有吸引對手招式效\n果的特性或招式的影響。可\n以向選定的對手進行攻擊", - }, - jawLock: { - name: "緊咬不放", - effect: "使雙方直到一方昏厥爲止無\n法替換寶可夢。其中一方退\n場則可以解除效果", - }, - stuffCheeks: { name: "大快朵頤", effect: "喫掉攜帶的樹果,大幅提高\n防禦" }, - noRetreat: { - name: "背水一戰", - effect: "提高自己的所有能力,但無\n法替換或逃走", - }, - tarShot: { - name: "瀝青射擊", - effect: "潑灑黏糊糊的瀝青,降低對\n手的速度。火屬性會變成對\n手的弱點", - }, - magicPowder: { - name: "魔法粉", - effect: "向對手噴灑魔法粉,使對手\n變爲超能力屬性", - }, - dragonDarts: { - name: "龍箭", - effect: "讓多龍梅西亞進行2次攻擊。\n如果對手有2隻寶可夢,\n則對它們各進行1次攻擊", - }, - teatime: { - name: "茶會", - effect: "舉辦一場茶會,場上的所有\n寶可夢都會喫掉自己攜帶的\n樹果", - }, - octolock: { - name: "蛸固", - effect: "讓對手無法逃走。對手被固\n定後,每回合都會降低防禦\n和特防", - }, - boltBeak: { - name: "電喙", - effect: "用帶電的喙啄刺對手。如果\n比對手先出手攻擊,招式的\n威力會變成2倍", - }, - fishiousRend: { - name: "鰓咬", - effect: "用堅硬的腮咬住對手。如果\n比對手先出手攻擊,招式的\n威力會變成2倍", - }, - courtChange: { name: "換場", effect: "用神奇的力量交換雙方的場\n地效果" }, - maxFlare: { - name: "極巨火爆", - effect: "極巨化寶可夢使出的火屬性\n攻擊。可在5回合內讓日照\n變得強烈", - }, - maxFlutterby: { - name: "極巨蟲蠱", - effect: "極巨化寶可夢使出的蟲屬性\n攻擊。會降低對手的特攻", - }, - maxLightning: { - name: "極巨閃電", - effect: "極巨化寶可夢使出的電屬性\n攻擊。可在5回合內將腳下\n變成電氣場地", - }, - maxStrike: { - name: "極巨攻擊", - effect: "極巨化寶可夢使出的一般屬\n性攻擊。會降低對手的速度", - }, - maxKnuckle: { - name: "極巨拳鬥", - effect: "極巨化寶可夢使出的格鬥屬\n性攻擊。會提高我方的攻擊", - }, - maxPhantasm: { - name: "極巨幽魂", - effect: "極巨化寶可夢使出的幽靈屬\n性攻擊。會降低對手的防禦", - }, - maxHailstorm: { - name: "極巨寒冰", - effect: "極巨化寶可夢使出的冰屬性\n攻擊。在5回合內會下雪", - }, - maxOoze: { - name: "極巨酸毒", - effect: "極巨化寶可夢使出的毒屬性\n攻擊。會提高我方的特攻", - }, - maxGeyser: { - name: "極巨水流", - effect: "極巨化寶可夢使出的水屬性\n攻擊。可在5回合內降下大\n雨", - }, - maxAirstream: { - name: "極巨飛衝", - effect: "極巨化寶可夢使出的飛行屬\n性攻擊。會提高我方的速度", - }, - maxStarfall: { - name: "極巨妖精", - effect: "極巨化寶可夢使出的妖精屬\n性攻擊。可在5回合內將腳\n下變成薄霧場地", - }, - maxWyrmwind: { - name: "極巨龍騎", - effect: "極巨化寶可夢使出的龍屬性\n攻擊。會降低對手的攻擊", - }, - maxMindstorm: { - name: "極巨超能", - effect: "極巨化寶可夢使出的超能力\n屬性攻擊。可在5回合內將\n腳下變成精神場地", - }, - maxRockfall: { - name: "極巨岩石", - effect: "極巨化寶可夢使出的岩石屬\n性攻擊。可在5回合內捲起\n沙暴", - }, - maxQuake: { - name: "極巨大地", - effect: "極巨化寶可夢使出的地面屬\n性攻擊。會提高我方的特防", - }, - maxDarkness: { - name: "極巨惡霸", - effect: "極巨化寶可夢使出的惡屬性\n攻擊。會降低對手的特防", - }, - maxOvergrowth: { - name: "極巨草原", - effect: "極巨化寶可夢使出的草屬性\n攻擊。可在5回合內將腳下\n變成青草場地", - }, - maxSteelspike: { - name: "極巨鋼鐵", - effect: "極巨化寶可夢使出的鋼屬性\n攻擊。會提高我方的防禦", - }, - clangorousSoul: { - name: "魂舞烈音爆", - effect: "削減少許自己的HP,使所\n有能力都提高", - }, - bodyPress: { - name: "撲擊", - effect: "用身體撞向對手進行攻擊。\n防禦越高,給予的傷害就越\n高", - }, - decorate: { name: "裝飾", effect: "通過裝飾,大幅提高對方的\n攻擊和特攻" }, - drumBeating: { - name: "鼓擊", - effect: "用鼓點來控制鼓的根部進行\n攻擊,從而降低對手的速度", - }, - snapTrap: { - name: "捕獸夾", - effect: "使用捕獸夾,在4~5回合\n內,夾住對手進行攻擊", - }, - pyroBall: { - name: "火焰球", - effect: "點燃小石子,形成火球攻擊\n對手。有時會使對手陷入灼\n傷狀態", - }, - behemothBlade: { - name: "巨獸斬", - effect: "以全身力氣舉起強大的劍,\n猛烈地劈向對手進行攻擊", - }, - behemothBash: { - name: "巨獸彈", - effect: "將全身變化爲堅固的盾,猛\n烈地撞向對手進行攻擊", - }, - auraWheel: { - name: "氣場輪", - effect: "用儲存在頰囊裏的能量進行\n攻擊,並提高自己的速度。\n其屬性會隨着莫魯貝可的樣\n子而改變", - }, - breakingSwipe: { - name: "廣域破壞", - effect: "用堅韌的尾巴猛掃對手進行\n攻擊,從而降低對手的攻擊", - }, - branchPoke: { - name: "木枝突刺", - effect: "使用尖銳的樹枝刺向對手進\n行攻擊", - }, - overdrive: { - name: "破音", - effect: "奏響吉他和貝斯,釋放出發\n出巨響的劇烈震動攻擊對手", - }, - appleAcid: { - name: "蘋果酸", - effect: "使用從酸蘋果中提取出來的\n酸性液體進行攻擊。降低對\n手的特防", - }, - gravApple: { - name: "萬有引力", - effect: "從高處落下蘋果,給予對手\n傷害。可降低對手的防禦", - }, - spiritBreak: { - name: "靈魂衝擊", - effect: "用足以讓對手一蹶不振的氣\n勢進行攻擊。會降低對手的\n特攻", - }, - strangeSteam: { - name: "神奇蒸汽", - effect: "噴出煙霧攻擊對手。有時會\n使對手混亂", - }, - lifeDew: { - name: "生命水滴", - effect: "噴灑出神奇的水,回覆自己\n和場上同伴的HP", - }, - obstruct: { - name: "攔堵", - effect: "完全抵擋對手的攻擊。連續\n使出則容易失敗。一旦觸碰,\n防禦就會大幅降低", - }, - falseSurrender: { - name: "假跪真撞", - effect: "裝作低頭認錯的樣子,用凌\n亂的頭髮進行突刺。攻擊必\n定會命中", - }, - meteorAssault: { - name: "流星突擊", - effect: "大力揮舞粗壯的莖進行攻擊。\n但同時自己也會被晃暈,\n下一回合自己將無法動彈", - }, - eternabeam: { - name: "無極光束", - effect: "無極汰那變回原來的樣子後,\n發動的最強攻擊。下一回\n合自己將無法動彈", - }, - steelBeam: { - name: "鐵蹄光線", - effect: "將從全身聚集的鋼鐵化爲光\n束,激烈地發射出去。自己\n也會受到傷害", - }, - expandingForce: { - name: "廣域戰力", - effect: "利用精神力量攻擊對手。在\n精神場地上威力會有所提高,\n能對所有對手造成傷害", - }, - steelRoller: { - name: "鐵滾輪", - effect: "在破壞場地的同時攻擊對手。\n如果腳下沒有任何場地狀\n態存在,使出此招式時便會\n失敗", - }, - scaleShot: { - name: "鱗射", - effect: "發射鱗片進行攻擊。連續攻\n擊2~5次。速度會提高但\n防禦會降低", - }, - meteorBeam: { - name: "流星光束", - effect: "第1回合聚集宇宙之力提高\n特攻,第2回合攻擊對手", - }, - shellSideArm: { - name: "臂貝武器", - effect: "從物理攻擊和特殊攻擊中選\n擇可造成較多傷害的方式進\n行攻擊。有時會讓對手陷入\n中毒狀態", - }, - mistyExplosion: { - name: "薄霧炸裂", - effect: "對自己周圍的所有寶可夢進\n行攻擊,但使出後,自己會\n陷入昏厥。在薄霧場地上,\n招式威力會提高", - }, - grassyGlide: { - name: "青草滑梯", - effect: "彷彿在地面上滑行般地攻擊\n對手。在青草場地上,必定\n能夠先制攻擊", - }, - risingVoltage: { - name: "電力上升", - effect: "用從地面升騰而起的電擊進\n行攻擊。當對手處於電氣場\n地上時,招式威力會變成2\n倍", - }, - terrainPulse: { - name: "大地波動", - effect: "藉助場地的力量進行攻擊。\n視使出招式時場地狀態不同,\n招式的屬性和威力會有所\n變化", - }, - skitterSmack: { - name: "爬擊", - effect: "從對手背後爬近後進行攻擊。\n會降低對手的特攻", - }, - burningJealousy: { - name: "妒火", - effect: "用嫉妒的能量攻擊對手。會\n讓在該回合內能力有所提高\n的寶可夢陷入灼傷狀態", - }, - lashOut: { - name: "泄憤", - effect: "攻擊對手以發泄對其感到的\n惱怒情緒。如果在該回合內\n自身能力遭到降低,招式的\n威力會變成2倍", - }, - poltergeist: { - name: "靈騷", - effect: "操縱對手的持有物進行攻擊。\n當對手沒有攜帶道具時,\n使出此招式時便會失敗", - }, - corrosiveGas: { - name: "腐蝕氣體", - effect: "用具有強酸性的氣體包裹住\n自己周圍所有的寶可夢,並\n融化其所攜帶的道具", - }, - coaching: { - name: "指導", - effect: "通過進行正確合理的指導,\n提高我方全員的攻擊和防禦", - }, - flipTurn: { - name: "快速折返", - effect: "在攻擊之後急速返回,和後\n備寶可夢進行替換", - }, - tripleAxel: { - name: "三旋擊", - effect: "連續3次踢對手進行攻擊。\n每踢中一次,威力就會提高", - }, - dualWingbeat: { - name: "雙翼", - effect: "將翅膀撞向對手進行攻擊。\n連續2次給予傷害", - }, - scorchingSands: { - name: "熱沙大地", - effect: "將滾燙的沙子砸向對手進行\n攻擊。有時會讓對手陷入灼\n傷狀態", - }, - jungleHealing: { - name: "叢林治療", - effect: "與叢林融爲一體,回覆自己\n和場上同伴的HP和狀態", - }, - wickedBlow: { - name: "闇冥強擊", - effect: "將惡之流派修煉至大成的猛\n烈一擊。必定會擊中要害", - }, - surgingStrikes: { - name: "水流連打", - effect: "將水之流派修煉至大成的仿\n若行雲流水般的3次連擊。\n必定會擊中要害", - }, - thunderCage: { - name: "雷電囚籠", - effect: "將對手困在電流四濺的囚籠\n中,在4~5回合內進行攻\n擊", - }, - dragonEnergy: { - name: "巨龍威能", - effect: "把生命力轉換爲力量攻擊對\n手。自己的HP越少,招式\n的威力越小", - }, - freezingGlare: { - name: "冰冷視線", - effect: "從雙眼發射精神力量進行攻\n擊。有時會讓對手陷入冰凍\n狀態", - }, - fieryWrath: { - name: "怒火中燒", - effect: "將憤怒轉化爲火焰般的氣場\n進行攻擊。有時會使對手畏\n縮", - }, - thunderousKick: { - name: "雷鳴蹴擊", - effect: "以雷電般的動作戲耍對手的\n同時使出腳踢。可降低對手\n的防禦", - }, - glacialLance: { - name: "雪矛", - effect: "向對手投擲掀起暴風雪的冰\n矛進行攻擊", - }, - astralBarrage: { name: "星碎", effect: "用大量的小靈體向對手發起\n攻擊" }, - eerieSpell: { - name: "詭異咒語", - effect: "用強大的精神力量攻擊。讓\n對手最後使用的招式減少3\nPP", - }, - direClaw: { - name: "克命爪", - effect: "以破滅之爪進行攻擊。有時\n還會讓對手陷入中毒、麻痹\n、睡眠之中的一種狀態", - }, - psyshieldBash: { - name: "屏障猛攻", - effect: "讓意念的能量覆蓋全身,撞\n向對手進行攻擊。會提高自\n己的防禦", - }, - powerShift: { name: "力量轉換", effect: "將自己的攻擊與防禦互相交\n換" }, - stoneAxe: { - name: "巖斧", - effect: "用岩石之斧進行攻擊。散落\n的岩石碎片會飄浮在對手周\n圍", - }, - springtideStorm: { - name: "陽春風暴", - effect: "用交織着愛與恨的烈風席捲\n對手進行攻擊。有時會降低\n對手的攻擊", - }, - mysticalPower: { - name: "神祕之力", - effect: "放出不可思議的力量攻擊。\n會提高自己的特攻", - }, - ragingFury: { - name: "大憤慨", - effect: "在2~3回合內,一邊放出\n火焰,一邊瘋狂亂打。大鬧\n一番後自己會陷入混亂", - }, - waveCrash: { - name: "波動衝", - effect: "讓水覆蓋全身後撞向對手。\n自己也會受到不少傷害", - }, - chloroblast: { - name: "葉綠爆震", - effect: "將自己的葉綠素凝聚起來後\n放出去進行攻擊。自己也會\n受到傷害", - }, - mountainGale: { - name: "冰山風", - effect: "將冰山般巨大的冰塊砸向對\n手進行攻擊。有時會使對手\n畏縮", - }, - victoryDance: { - name: "勝利之舞", - effect: "激烈地跳起喚來勝利的舞蹈,\n提高自己的攻擊、防禦和\n速度", - }, - headlongRush: { - name: "突飛猛撲", - effect: "向對手使出灌注了全心全力\n的撞擊。自己的防禦和特防\n會降低", - }, - barbBarrage: { - name: "毒千針", - effect: "用無數的毒針進行攻擊。有\n時還會讓對手陷入中毒狀態。\n攻擊處於中毒狀態的對手\n時,威力會變成2倍", - }, - esperWing: { - name: "氣場之翼", - effect: "用經過氣場強化的翅膀撕裂\n對手。容易擊中要害。會提\n高自己的速度", - }, - bitterMalice: { - name: "冤冤相報", - effect: "用令人毛骨悚然的怨念進行\n攻擊。會降低對手的攻擊", - }, - shelter: { - name: "閉關", - effect: "將皮膚變得堅硬如鐵盾,從\n而大幅提高自己的防禦", - }, - tripleArrows: { - name: "三連箭", - effect: "使出一記腿技後同時發射3\n箭。有時會降低對手的防禦\n或使對手畏縮。容易擊中要\n害", - }, - infernalParade: { - name: "羣魔亂舞", - effect: "用無數的火球進行攻擊。有\n時會讓對手陷入灼傷狀態。\n攻擊處於異常狀態的對手時,\n威力會變成2倍", - }, - ceaselessEdge: { - name: "祕劍・千重濤", - effect: "用貝殼之劍進行攻擊。散落\n的貝殼碎片會散落在對手腳\n下成爲撒菱", - }, - bleakwindStorm: { - name: "枯葉風暴", - effect: "用足以讓身心都止不住顫抖\n的冰冷狂風進行攻擊。有時\n會降低對手的速度", - }, - wildboltStorm: { - name: "鳴雷風暴", - effect: "呼喚雷雲引起風暴,用雷與\n風進行激烈的攻擊。有時會\n讓對手陷入麻痹狀態", - }, - sandsearStorm: { - name: "熱沙風暴", - effect: "用灼熱的沙子和強烈的風席\n卷對手進行攻擊。有時會讓\n對手陷入灼傷狀態", - }, - lunarBlessing: { - name: "新月祈禱", - effect: "向新月獻上祈禱,回覆自己\n和場上同伴的HP和狀態", - }, - takeHeart: { - name: "勇氣填充", - effect: "鼓起衝勁,治癒自己的異常\n狀態,同時提高自己的特攻\n和特防", - }, - gMaxWildfire: { - name: "超極巨深淵滅焰", - effect: "超極巨化的噴火龍使出的火\n屬性攻擊。可在4回合內給\n予對手傷害", - }, - gMaxBefuddle: { - name: "超極巨蝶影蠱惑", - effect: "超極巨化的巴大蝶使出的蟲\n屬性攻擊。會讓對手陷入中\n毒、麻痹或睡眠狀態", - }, - gMaxVoltCrash: { - name: "超極鉅萬雷轟頂", - effect: "超極巨化的皮卡丘使出的電\n屬性攻擊。會讓對手陷入麻\n痹狀態", - }, - gMaxGoldRush: { - name: "超極巨特大金幣", - effect: "超極巨化的喵喵使出的一般\n屬性攻擊。會讓對手陷入混\n亂狀態,並可獲得金錢", - }, - gMaxChiStrike: { - name: "超極巨會心一擊", - effect: "超極巨化的怪力使出的格鬥\n屬性攻擊。會變得容易擊中\n要害", - }, - gMaxTerror: { - name: "超極巨幻影幽魂", - effect: "超極巨化的耿鬼使出的幽靈\n屬性攻擊。會踩住對手的影\n子,讓其無法被替換", - }, - gMaxResonance: { - name: "超極巨極光旋律", - effect: "超極巨化的拉普拉斯使出的\n冰屬性攻擊。可在5回合內\n減弱受到的傷害", - }, - gMaxCuddle: { - name: "超極巨熱情擁抱", - effect: "超極巨化的伊布使出的一般\n屬性攻擊。會讓對手陷入着\n迷狀態", - }, - gMaxReplenish: { - name: "超極巨資源再生", - effect: "超極巨化的卡比獸使出的一\n般屬性攻擊。會讓喫掉的樹\n果再生", - }, - gMaxMalodor: { - name: "超極巨臭氣沖天", - effect: "超極巨化的灰塵山使出的毒\n屬性攻擊。會讓對手陷入中\n毒狀態", - }, - gMaxStonesurge: { - name: "超極巨巖陣以待", - effect: "超極巨化的暴噬龜使出的水\n屬性攻擊。會發射無數銳利\n的岩石", - }, - gMaxWindRage: { - name: "超極巨旋風襲捲", - effect: "超極巨化的鋼鎧鴉使出的飛\n行屬性攻擊。可消除反射壁\n和光牆", - }, - gMaxStunShock: { - name: "超極巨異毒電場", - effect: "超極巨化的顫弦蠑螈使出的\n電屬性攻擊。會讓對手陷入\n中毒或麻痹狀態", - }, - gMaxFinale: { - name: "超極巨幸福圓滿", - effect: "超極巨化的霜奶仙使出的妖\n精屬性攻擊。可回覆我方的\nHP", - }, - gMaxDepletion: { - name: "超極巨劣化衰變", - effect: "超極巨化的鋁鋼龍使出的龍\n屬性攻擊。可減少對手最後\n使用的招式的PP", - }, - gMaxGravitas: { - name: "超極巨天道七星", - effect: "超極巨化的以歐路普使出的\n超能力屬性攻擊。在5回合\n內重力會產生變化", - }, - gMaxVolcalith: { - name: "超極巨炎石噴發", - effect: "超極巨化的巨炭山使出的巖\n石屬性攻擊。可在4回合內\n給予對手傷害", - }, - gMaxSandblast: { - name: "超極巨沙塵漫天", - effect: "超極巨化的沙螺蟒使出的地\n面屬性攻擊。在4~5回合\n內會狂刮沙暴", - }, - gMaxSnooze: { - name: "超極巨睡魔降臨", - effect: "超極巨化的長毛巨魔使出的\n惡屬性攻擊。會通過打大哈\n欠讓對手產生睡意", - }, - gMaxTartness: { - name: "超極巨酸不溜丟", - effect: "超極巨化的蘋裹龍使出的草\n屬性攻擊。會降低對手的閃\n避率", - }, - gMaxSweetness: { - name: "超極巨瓊漿玉液", - effect: "超極巨化的豐蜜龍使出的草\n屬性攻擊。會治癒我方的異\n常狀態", - }, - gMaxSmite: { - name: "超極巨天譴雷誅", - effect: "超極巨化的布莉姆溫使出的\n妖精屬性攻擊。會讓對手陷\n入混亂狀態", - }, - gMaxSteelsurge: { - name: "超極巨鋼鐵陣法", - effect: "超極巨化的大王銅象使出的\n鋼屬性攻擊。會發射無數銳\n利的刺", - }, - gMaxMeltdown: { - name: "超極巨液金熔擊", - effect: "超極巨化的美錄梅塔使出的\n鋼屬性攻擊。會讓對手無法\n連續使出相同的招式", - }, - gMaxFoamBurst: { - name: "超極巨激漩泡渦", - effect: "超極巨化的巨鉗蟹使出的水\n屬性攻擊。會大幅降低對手\n的速度", - }, - gMaxCentiferno: { - name: "超極巨百火焚野", - effect: "超極巨化的焚焰蚣使出的火\n屬性攻擊。可在4~5回合\n內將對手困在火焰中", - }, - gMaxVineLash: { - name: "超極巨灰飛鞭滅", - effect: "超極巨化的妙蛙花使出的草\n屬性攻擊。可在4回合內給\n予對手傷害", - }, - gMaxCannonade: { - name: "超極巨水炮轟滅", - effect: "超極巨化的水箭龜使出的水\n屬性攻擊。可在4回合內給\n予對手傷害", - }, - gMaxDrumSolo: { - name: "超極巨狂擂亂打", - effect: "超極巨化的轟擂金剛猩使出\n的草屬性攻擊。不會受到對\n手特性的干擾", - }, - gMaxFireball: { - name: "超極巨破陣火球", - effect: "超極巨化的閃焰王牌使出的\n火屬性攻擊。不會受到對手\n特性的干擾", - }, - gMaxHydrosnipe: { - name: "超極巨狙擊神射", - effect: "超極巨化的千面避役使出的\n水屬性攻擊。不會受到對手\n特性的干擾", - }, - gMaxOneBlow: { - name: "超極巨奪命一擊", - effect: "超極巨化的武道熊師使出的\n惡屬性攻擊。是可以無視極\n巨防壁的一擊", - }, - gMaxRapidFlow: { - name: "超極巨流水連擊", - effect: "超極巨化的武道熊師使出的\n水屬性攻擊。是可以無視極\n巨防壁的連擊", - }, - teraBlast: { - name: "太晶爆發", - effect: "太晶化時,會放出太晶屬性\n的能量攻擊。比較自己的攻\n擊和特攻,用數值相對較高\n的一項給予對方傷害。(其\n他屬性)/用攻擊和特攻數\n值較高的一項給予傷害。對\n正處於太晶化的對手效果絕\n佳。自己的攻擊和特攻會降\n低。(星晶", - }, - silkTrap: { - name: "線阱", - effect: "用絲設置陷阱。防住對方攻\n擊的同時,能夠降低所接觸\n到的對手的速度", - }, - axeKick: { - name: "下壓踢", - effect: "將踢起的腳跟往下劈向對手\n進行攻擊。有時會使對手混\n亂。如果劈偏則自己會受到\n傷害", - }, - lastRespects: { - name: "掃墓", - effect: "爲了化解夥伴的悔恨而進行\n攻擊。被打倒的我方寶可夢\n越多,招式的威力越高", - }, - luminaCrash: { - name: "琉光衝激", - effect: "放出連精神都能影響到的奇\n妙怪光進行攻擊。會大幅降\n低對方的特防", - }, - orderUp: { - name: "上菜", - effect: "以瀟灑的身手進行攻擊。若\n口中有米立龍,會按其樣子\n提高能力", - }, - jetPunch: { - name: "噴射拳", - effect: "將激流覆蓋於拳頭,以肉眼\n無法辨識的速度打出拳擊。\n必定能夠先制攻擊", - }, - spicyExtract: { - name: "辣椒精華", - effect: "放出極爲辛辣的精華。對手\n的攻擊會大幅提高,防禦會\n大幅降低", - }, - spinOut: { - name: "疾速轉輪", - effect: "通過往腿上增加負荷,以激\n烈的旋轉給予對手傷害。自\n己的速度會大幅降低", - }, - populationBomb: { - name: "鼠數兒", - effect: "夥伴們會紛紛趕來集合,以\n羣體行動給予對手攻擊。連\n續命中1~10次", - }, - iceSpinner: { - name: "冰旋", - effect: "腳上覆蓋薄冰,旋轉着撞擊\n對手。通過旋轉的動作破壞\n場地", - }, - glaiveRush: { - name: "巨劍突擊", - effect: "有勇無謀的捨身突擊。使出\n招式後,對手的攻擊必定會\n命中,且傷害會變成2倍", - }, - revivalBlessing: { - name: "復生祈禱", - effect: "通過以慈愛之心祈禱,讓陷\n入昏厥的後備寶可夢以回覆\n一半HP的狀態復活", - }, - saltCure: { - name: "鹽醃", - effect: "使對手陷入鹽醃狀態,每回\n合給予對手傷害。對手爲鋼\n或水屬性時會更痛苦", - }, - tripleDive: { - name: "三連鑽", - effect: "以默契的跳躍濺起水花擊向\n對手。連續3次給予傷害", - }, - mortalSpin: { - name: "晶光轉轉", - effect: "通過旋轉來攻擊對手。可以\n擺脫綁緊、緊束、寄生種子\n等招式。還能讓對手陷入中\n毒狀態", - }, - doodle: { - name: "描繪", - effect: "把握並映射出對手的本質,\n讓自己和同伴寶可夢的特性\n變得和對手相同", - }, - filletAway: { - name: "甩肉", - effect: "削減自己的HP,大幅提高\n攻擊和特攻以及速度", - }, - kowtowCleave: { - name: "僕刀", - effect: "下跪讓對手大意後發起襲擊\n劈向對手。攻擊必定會命中", - }, - flowerTrick: { - name: "千變萬花", - effect: "將做了手腳的花束扔向對手\n進行攻擊。必定會命中,且\n會擊中要害", - }, - torchSong: { - name: "閃焰高歌", - effect: "如唱歌一樣噴出熊熊燃燒的\n火焰燒焦對手。會提高自己\n的特攻", - }, - aquaStep: { - name: "流水旋舞", - effect: "以盈盈欲滴的輕快步伐戲耍\n對手並給予其傷害。會提高\n自己的速度", - }, - ragingBull: { - name: "怒牛", - effect: "狂怒暴牛的猛烈衝撞。招式\n的屬性隨形態改變,光牆和\n反射壁等招式也能破壞", - }, - makeItRain: { - name: "淘金潮", - effect: "扔出大量硬幣攻擊。自己的\n特攻會降低,戰鬥後還可以\n拿到錢", - }, - psyblade: { - name: "精神劍", - effect: "用無形的利刃劈開對手。處\n於電氣場地時,招式威力會\n變成1.5倍", - }, - hydroSteam: { - name: "水蒸氣", - effect: "將煮得翻滾的開水猛烈地噴\n向對手。日照強烈時,招式\n威力不但不會降低,還會變\n成1.5倍", - }, - ruination: { - name: "大災難", - effect: "引發毀滅性的災厄,使對手\n的HP減半", - }, - collisionCourse: { - name: "全開猛撞", - effect: "邊變形邊兇暴地落下,並引\n發起古老的大爆炸。若針對\n到弱點,威力會進一步", - }, - electroDrift: { - name: "閃電猛衝", - effect: "邊變形邊高速奔走,並以未\n知的電擊貫穿對手。若針對\n到弱點,威力會進一步", - }, - shedTail: { - name: "斷尾", - effect: "削減自己的HP,製造分身\n後會返回,並和後備寶可夢\n進行替換", - }, - chillyReception: { - name: "冷笑話", - effect: "留下冷場的冷笑話後,和後\n備寶可夢進行替換。在5回\n合內會下雪", - }, - tidyUp: { - name: "大掃除", - effect: "將撒菱、隱形巖、黏黏網、\n毒菱、替身全部掃除掉。自\n己的攻擊和速度會提高", - }, - snowscape: { - name: "雪景", - effect: "在5回合內會下雪。冰屬性\n的防禦會提高", - }, - pounce: { name: "蟲撲", effect: "飛撲向對手攻擊。會降低對\n手的速度" }, - trailblaze: { - name: "起草", - effect: "跳出草叢進行攻擊。通過輕\n快的步伐會提高自己的速度", - }, - chillingWater: { - name: "潑冷水", - effect: "潑灑冰冷得足以讓對手失去\n活力的水進行攻擊。會降低\n對手的攻擊", - }, - hyperDrill: { - name: "強力鑽", - effect: "急速旋轉尖銳的身體部位貫\n穿對手。可以無視守住和看\n穿等招式", - }, - twinBeam: { - name: "雙光束", - effect: "從兩眼發射出神奇的光線攻\n擊。連續2次給予傷害", - }, - rageFist: { - name: "憤怒之拳", - effect: "將憤怒化爲力量攻擊。受到\n攻擊的次數越多,招式的威\n力越高", - }, - armorCannon: { - name: "鎧農炮", - effect: "熊熊燃燒自己的鎧甲,將其\n做成炮彈射出攻擊。自己的\n防禦和特防會降低", - }, - bitterBlade: { - name: "悔念劍", - effect: "將對世間的留戀聚集於劍尖,\n並斬擊對手。可以回覆給\n予對手傷害的一半HP", - }, - doubleShock: { - name: "電光雙擊", - effect: "將全身所有的電力放出,給\n予對手大大的傷害。自己的\n電屬性將會消失", - }, - gigatonHammer: { - name: "巨力錘", - effect: "連同身體轉起巨大的錘子進\n行攻擊。這個招式無法連續\n使出2次", - }, - comeuppance: { - name: "復仇", - effect: "使出招式前,將最後受到的\n招式的傷害大力返還給對手", - }, - aquaCutter: { - name: "水波刀", - effect: "如刀刃般噴射出加壓的水切\n開對手。容易擊中要害", - }, - blazingTorque: { - name: "灼熱暴衝", - effect: "攻擊目標造成傷害,\n有30%的幾率使目標陷入\n灼傷狀態。", - }, - wickedTorque: { - name: "黑暗暴衝", - effect: "攻擊目標造成傷害,\n有30%的幾率使目標陷入\n睡眠狀態。", - }, - noxiousTorque: { - name: "劇毒暴衝", - effect: "攻擊目標造成傷害,\n有30%的幾率使目標陷入\n中毒狀態。", - }, - combatTorque: { - name: "格鬥暴衝", - effect: "攻擊目標造成傷害,\n有30%的幾率使目標陷入\n麻痹狀態。此招式可以命中\n幽靈屬性的寶可夢。", - }, - magicalTorque: { - name: "魔法暴衝", - effect: "攻擊目標造成傷害,\n有30%的幾率使目標陷入\n混亂狀態。", - }, - bloodMoon: { - name: "血月", - effect: "從赤紅如血的滿月發射出全\n部的氣勢。這個招式無法連\n續使出2次", - }, - matchaGotcha: { - name: "刷刷茶炮", - effect: "發射經攪拌的茶的大炮,可\n以回覆給予對手傷害的一半\nHP,有時會讓對手陷入灼\n傷狀態", - }, - syrupBomb: { - name: "糖漿炸彈", - effect: "使粘稠的麥芽糖漿爆炸,讓\n對手陷入滿身糖狀態,在3\n回合內持續降低其速度", - }, - ivyCudgel: { - name: "棘藤棒", - effect: "用纏有藤蔓的棍棒毆打。屬\n性會隨所戴的面具而改變。\n容易擊中要害", - }, - electroShot: { - name: "電光束", - effect: "第1回合收集電力提高特攻,\n第2回合將高壓的電力發\n射出去。下雨天氣時能立刻\n發射", - }, - teraStarstorm: { - name: "晶光星羣", - effect: "照射出結晶的力量來驅逐敵\n人。太樂巴戈斯在星晶形態\n下使出時,能對所有對手造\n成傷害", - }, - fickleBeam: { - name: "隨機光", - effect: "發射光線進行攻擊。有時其\n他的頭也會合力發射鐳射,\n讓招式威力變成2倍", - }, - burningBulwark: { - name: "火焰守護", - effect: "用超高溫的體毛防住對手攻\n擊的同時,讓接觸到自己的\n對手灼傷", - }, - thunderclap: { - name: "迅雷", - effect: "可以比對手先使出電擊進行\n攻擊。對手使出的招式如果\n不是攻擊招式則會失敗", - }, - mightyCleave: { - name: "強刃攻擊", - effect: "用積蓄在頭部的光來斬切對\n手。可以無視守護進行攻擊", - }, - tachyonCutter: { - name: "迅子利刃", - effect: "接連發射出粒子的利刃,連\n續2次給予傷害。攻擊必定\n會命中", - }, - hardPress: { - name: "硬壓", - effect: "用手臂或鉗子壓迫對手。對\n手剩餘的HP越多,威力越\n大", - }, - dragonCheer: { - name: "龍聲鼓舞", - effect: "以龍之鼓舞提高士氣,讓我\n方的招式變得容易擊中要害。\n對龍屬性的鼓舞效果會更\n強", - }, - alluringVoice: { - name: "魅誘之聲", - effect: "用天使般的歌聲攻擊對手。\n會讓此回合內能力有提高的\n寶可夢陷入混亂狀態", - }, - temperFlare: { - name: "豁出去", - effect: "以自暴自棄的氣勢進行攻擊。\n如果上一回合招式沒有命\n中,威力就會翻倍", - }, - supercellSlam: { - name: "閃電強襲", - effect: "讓身體帶電後壓向對手。如\n果沒有命中則自己會受到傷\n害", - }, - psychicNoise: { - name: "精神噪音", - effect: "用令對手不舒服的音波進行\n攻擊。讓對手在2回合內無\n法通過招式、特性或攜帶的\n道具回覆HP", - }, - upperHand: { - name: "快手還擊", - effect: "察覺到對手的動作後用掌根\n攻擊,讓對手畏縮。如果對\n手使出的招式不是先制攻擊,\n則會失敗", - }, - malignantChain: { - name: "邪毒鎖鏈", - effect: "用由毒形成的鎖鏈纏住對手\n注入毒素加以侵蝕。有時會\n讓對手陷入劇毒狀態", - }, -} as const; diff --git a/src/locales/zh_TW/nature.ts b/src/locales/zh_TW/nature.json similarity index 80% rename from src/locales/zh_TW/nature.ts rename to src/locales/zh_TW/nature.json index f72d271c139..bde8d938c06 100644 --- a/src/locales/zh_TW/nature.ts +++ b/src/locales/zh_TW/nature.json @@ -1,6 +1,4 @@ -import { SimpleTranslationEntries } from "#app/interfaces/locales"; - -export const nature: SimpleTranslationEntries = { +{ "Hardy": "勤奮", "Lonely": "怕寂寞", "Brave": "勇敢", @@ -26,4 +24,4 @@ export const nature: SimpleTranslationEntries = { "Sassy": "自大", "Careful": "慎重", "Quirky": "浮躁" -} as const; +} \ No newline at end of file diff --git a/src/locales/zh_TW/party-ui-handler.json b/src/locales/zh_TW/party-ui-handler.json new file mode 100644 index 00000000000..975212bbdad --- /dev/null +++ b/src/locales/zh_TW/party-ui-handler.json @@ -0,0 +1,8 @@ +{ + "SEND_OUT": "上場", + "SUMMARY": "概要", + "CANCEL": "取消", + "RELEASE": "放生", + "APPLY": "應用", + "TEACH": "教授" +} \ No newline at end of file diff --git a/src/locales/zh_TW/party-ui-handler.ts b/src/locales/zh_TW/party-ui-handler.ts deleted file mode 100644 index c981e41af0e..00000000000 --- a/src/locales/zh_TW/party-ui-handler.ts +++ /dev/null @@ -1,54 +0,0 @@ -import { SimpleTranslationEntries } from "#app/interfaces/locales"; - -export const partyUiHandler: SimpleTranslationEntries = { - "SEND_OUT": "上場", - "SUMMARY": "概要", - "CANCEL": "取消", - "RELEASE": "放生", - "APPLY": "應用", - "TEACH": "教授", - "SPLICE": "Splice", - "UNSPLICE": "Unsplice", - "ACTIVATE": "Activate", - "DEACTIVATE": "Deactivate", - "TRANSFER": "Transfer", - "ALL": "All", - "PASS_BATON": "Pass Baton", - "UNPAUSE_EVOLUTION": "Unpause Evolution", - "REVIVE": "Revive", - "RENAME": "Rename", - - "choosePokemon": "Choose a Pokémon.", - "doWhatWithThisPokemon": "Do what with this Pokémon?", - "noEnergy": "{{pokemonName}} has no energy\nleft to battle!", - "hasEnergy": "{{pokemonName}} still has energy\nto battle!", - "cantBeUsed": "{{pokemonName}} can't be used in\nthis challenge!", - "tooManyItems": "{{pokemonName}} has too many\nof this item!", - "anyEffect": "It won't have any effect.", - "unpausedEvolutions": "Evolutions have been unpaused for {{pokemonName}}.", - "unspliceConfirmation": "Do you really want to unsplice {{fusionName}}\nfrom {{pokemonName}}? {{fusionName}} will be lost.", - "wasReverted": "{{fusionName}} was reverted to {{pokemonName}}.", - "releaseConfirmation": "Do you really want to release {{pokemonName}}?", - "releaseInBattle": "You can't release a Pokémon that's in battle!", - "selectAMove": "Select a move.", - "changeQuantity": "Select a held item to transfer.\nUse < and > to change the quantity.", - "selectAnotherPokemonToSplice": "Select another Pokémon to splice.", - "cancel": "Cancel", - - // Slot TM text - "able": "Able", - "notAble": "Not able", - "learned": "Learned", - - // Releasing messages - "goodbye": "Goodbye, {{pokemonName}}!", - "byebye": "Byebye, {{pokemonName}}!", - "farewell": "Farewell, {{pokemonName}}!", - "soLong": "So long, {{pokemonName}}!", - "thisIsWhereWePart": "This is where we part, {{pokemonName}}!", - "illMissYou": "I'll miss you, {{pokemonName}}!", - "illNeverForgetYou": "I'll never forget you, {{pokemonName}}!", - "untilWeMeetAgain": "Until we meet again, {{pokemonName}}!", - "sayonara": "Sayonara, {{pokemonName}}!", - "smellYaLater": "Smell ya later, {{pokemonName}}!", -} as const; diff --git a/src/locales/zh_TW/pokeball.json b/src/locales/zh_TW/pokeball.json new file mode 100644 index 00000000000..48492edf311 --- /dev/null +++ b/src/locales/zh_TW/pokeball.json @@ -0,0 +1,8 @@ +{ + "pokeBall": "精靈球", + "greatBall": "超級球", + "ultraBall": "高級球", + "rogueBall": "肉鴿球", + "masterBall": "大師球", + "luxuryBall": "豪華球" +} \ No newline at end of file diff --git a/src/locales/zh_TW/pokeball.ts b/src/locales/zh_TW/pokeball.ts deleted file mode 100644 index 8919f3591e1..00000000000 --- a/src/locales/zh_TW/pokeball.ts +++ /dev/null @@ -1,10 +0,0 @@ -import { SimpleTranslationEntries } from "#app/interfaces/locales"; - -export const pokeball: SimpleTranslationEntries = { - "pokeBall": "精靈球", - "greatBall": "超級球", - "ultraBall": "高級球", - "rogueBall": "肉鴿球", - "masterBall": "大師球", - "luxuryBall": "豪華球", -} as const; diff --git a/src/locales/zh_TW/pokemon-form-battle.json b/src/locales/zh_TW/pokemon-form-battle.json new file mode 100644 index 00000000000..75087aa0669 --- /dev/null +++ b/src/locales/zh_TW/pokemon-form-battle.json @@ -0,0 +1,14 @@ +{ + "mega": "Mega {{pokemonName}}", + "mega-x": "Mega {{pokemonName}} X", + "mega-y": "Mega {{pokemonName}} Y", + "primal": "Primal {{pokemonName}}", + "gigantamax": "G-Max {{pokemonName}}", + "eternamax": "E-Max {{pokemonName}}", + "megaChange": "{{preName}}超級進化成了\n{{pokemonName}}!", + "gigantamaxChange": "{{preName}}超極巨化成了\n{{pokemonName}}!", + "eternamaxChange": "{{preName}}無極巨化成了\n{{pokemonName}}!", + "revertChange": "{{pokemonName}}變回了\n原本的樣子!", + "formChange": "{{preName}}變為其他樣子了。", + "disguiseChange": "它的畫皮被當作誘餌使用了!" +} \ No newline at end of file diff --git a/src/locales/zh_TW/pokemon-form.json b/src/locales/zh_TW/pokemon-form.json new file mode 100644 index 00000000000..b98a1e946b8 --- /dev/null +++ b/src/locales/zh_TW/pokemon-form.json @@ -0,0 +1,3 @@ +{ + "meloettaPirouette": "舞步形態" +} \ No newline at end of file diff --git a/src/locales/zh_TW/pokemon-form.ts b/src/locales/zh_TW/pokemon-form.ts deleted file mode 100644 index 55bb13946b7..00000000000 --- a/src/locales/zh_TW/pokemon-form.ts +++ /dev/null @@ -1,198 +0,0 @@ -import { SimpleTranslationEntries } from "#app/interfaces/locales"; - -export const battlePokemonForm: SimpleTranslationEntries = { - "mega": "Mega {{pokemonName}}", - "mega-x": "Mega {{pokemonName}} X", - "mega-y": "Mega {{pokemonName}} Y", - "primal": "Primal {{pokemonName}}", - "gigantamax": "G-Max {{pokemonName}}", - "eternamax": "E-Max {{pokemonName}}", - - "megaChange": "{{preName}}超級進化成了\n{{pokemonName}}!", - "gigantamaxChange": "{{preName}}超極巨化成了\n{{pokemonName}}!", - "eternamaxChange": "{{preName}}無極巨化成了\n{{pokemonName}}!", - "revertChange": "{{pokemonName}}變回了\n原本的樣子!", - "formChange": "{{preName}}變為其他樣子了。", - "disguiseChange": "它的畫皮被當作誘餌使用了!", -} as const; - -export const pokemonForm: SimpleTranslationEntries = { - // Starters forms - // 1G - "pikachuCosplay": "Cosplay", - "pikachuCoolCosplay": "Cool Cosplay", - "pikachuBeautyCosplay": "Beauty Cosplay", - "pikachuCuteCosplay": "Cute Cosplay", - "pikachuSmartCosplay": "Smart Cosplay", - "pikachuToughCosplay": "Thoug Cosplay", - "pikachuPartner": "Partner", - "eeveePartner": "Partner", - // 2G - "pichuSpiky": "Spiky", - "unownA": "A", - "unownB": "B", - "unownC": "C", - "unownD": "D", - "unownE": "E", - "unownF": "F", - "unownG": "G", - "unownH": "H", - "unownI": "I", - "unownJ": "J", - "unownK": "K", - "unownL": "L", - "unownM": "M", - "unownN": "N", - "unownO": "O", - "unownP": "P", - "unownQ": "Q", - "unownR": "R", - "unownS": "S", - "unownT": "T", - "unownU": "U", - "unownV": "V", - "unownW": "W", - "unownX": "X", - "unownY": "Y", - "unownZ": "Z", - "unownExclamation": "!", - "unownQuestion": "?", - // 3G - "castformSunny": "Sunny", - "castformRainy": "Rainy", - "castformSnowy": "Snowy", - "deoxysNormal": "Normal", - // 4G - "burmyPlant": "Plant", - "burmySandy": "Sandy", - "burmyTrash": "Trash", - "shellosEast": "East", - "shellosWest": "West", - "rotomHeat": "Heat", - "rotomWash": "Wash", - "rotomFrost": "Frost", - "rotomFan": "Fan", - "rotomMow": "Mow", - "giratinaAltered": "Altered", - "shayminLand": "Land", - // 5G - "basculinRedStriped": "Red Striped", - "basculinBlueStriped": "Blue Striped", - "basculinWhiteStriped": "White Striped", - "deerlingSpring": "Spring", - "deerlingSummer": "Summer", - "deerlingAutumn": "Autumn", - "deerlingWinter": "Winter", - "tornadusIncarnate": "Incarnate", - "thundurusIncarnate": "Incarnate", - "landorusIncarnate": "Incarnate", - "keldeoOrdinary": "Ordinary", - "meloettaAria": "Aria", - // 6G - "froakieBattleBond": "Battle Bond", - "scatterbugMeadow": "Meadow", - "scatterbugIcySnow": "Icy Snow", - "scatterbugPolar": "Polar", - "scatterbugTundra": "Tundra", - "scatterbugContinental": "Continental", - "scatterbugGarden": "Garden", - "scatterbugElegant": "Elegant", - "scatterbugModern": "Modern", - "scatterbugMarine": "Marine", - "scatterbugArchipelago": "Archipelago", - "scatterbugHighPlains": "High Plains", - "scatterbugSandstorm": "Sandstorm", - "scatterbugRiver": "River", - "scatterbugMonsoon": "Monsoon", - "scatterbugSavanna": "Savanna", - "scatterbugSun": "Sun", - "scatterbugOcean": "Ocean", - "scatterbugJungle": "Jungle", - "scatterbugFancy": "Fancy", - "scatterbugPokeBall": "Poké Ball", - "flabebeRed": "Red", - "flabebeYellow": "Yellow", - "flabebeOrange": "Orange", - "flabebeBlue": "Blue", - "flabebeWhite": "White", - "furfrouHeart": "Heart", - "furfrouStar": "Star", - "furfrouDiamond": "Diamond", - "furfrouDebutante": "Debutante", - "furfrouMatron": "Matron", - "furfrouDandy": "Dandy", - "furfrouLaReine": "La Reine", - "furfrouKabuki": "Kabuki", - "furfrouPharaoh": "Pharaoh", - "pumpkabooSmall": "Small", - "pumpkabooLarge": "Large", - "pumpkabooSuper": "Super", - "xerneasNeutral": "Neutral", - "xerneasActive": "Active", - "zygarde50": "50% Forme", - "zygarde10": "10% Forme", - "zygarde50Pc": "50% Forme Power Construct", - "zygarde10Pc": "10% Forme Power Construct", - "zygardeComplete": "Complete Forme", - // 7G - "oricorioBaile": "Baile", - "oricorioPompom": "Pom-Pom", - "oricorioPau": "Pau", - "oricorioSensu": "Sensu", - "rockruffOwnTempo": "Own Tempo", - "miniorRedMeteor": "Red Meteor", - "miniorOrangeMeteor": "Orange Meteor", - "miniorYellowMeteor": "Yellow Meteor", - "miniorGreenMeteor": "Green Meteor", - "miniorBlueMeteor": "Blue Meteor", - "miniorIndigoMeteor": "Indigo Meteor", - "miniorVioletMeteor": "Violet Meteor", - "miniorRed": "Red", - "miniorOrange": "Orange", - "miniorYellow": "Yellow", - "miniorGreen": "Green", - "miniorBlue": "Blue", - "miniorIndigo": "Indigo", - "miniorViolet": "Violet", - "mimikyuDisguised": "Disguised", - "mimikyuBusted": "Busted", - "magearnaOriginal": "Original", - "marshadowZenith": "Zenith", - // 8G - "sinisteaPhony": "Phony", - "sinisteaAntique": "Antique", - "eiscueNoIce": "No Ice", - "indeedeeMale": "Male", - "indeedeeFemale": "Female", - "morpekoFullBelly": "Full Belly", - "zacianHeroOfManyBattles": "Hero Of Many Battles", - "zamazentaHeroOfManyBattles": "Hero Of Many Battles", - "zarudeDada": "Dada", - "enamorusIncarnate": "Incarnate", - // 9G - "squawkabillyGreenPlumage": "Green Plumage", - "squawkabillyBluePlumage": "Blue Plumage", - "squawkabillyYellowPlumage": "Yellow Plumage", - "squawkabillyWhitePlumage": "White Plumage", - "tatsugiriCurly": "Curly", - "tatsugiriDroopy": "Droopy", - "tatsugiriStretchy": "Stretchy", - "gimmighoulChest": "Chest", - "gimmighoulRoaming": "Roaming", - "koraidonApexBuild": "Apex Build", - "koraidonLimitedBuild":"Limited Build", - "koraidonSprintingBuild":"Sprinting Build", - "koraidonSwimmingBuild":"Swimming Build", - "koraidonGlidingBuild":"Gliding Build", - "miraidonUltimateMode":"Ultimate Mode", - "miraidonLowPowerMode":"Low Power Mode", - "miraidonDriveMode":"Drive Mode", - "miraidonAquaticMode":"Aquatic Mode", - "miraidonGlideMode":"Glide Mode", - "poltchageistCounterfeit": "Counterfeit", - "poltchageistArtisan": "Artisan", - "paldeaTaurosCombat": "Combat", - "paldeaTaurosBlaze": "Blaze", - "paldeaTaurosAqua": "Aqua", - -} as const; diff --git a/src/locales/zh_TW/pokemon-info-container.json b/src/locales/zh_TW/pokemon-info-container.json new file mode 100644 index 00000000000..15b5f4a2da5 --- /dev/null +++ b/src/locales/zh_TW/pokemon-info-container.json @@ -0,0 +1,6 @@ +{ + "moveset": "招式", + "gender": "性别:", + "ability": "特性:", + "nature": "性格:" +} \ No newline at end of file diff --git a/src/locales/zh_TW/pokemon-info-container.ts b/src/locales/zh_TW/pokemon-info-container.ts deleted file mode 100644 index eca518c3806..00000000000 --- a/src/locales/zh_TW/pokemon-info-container.ts +++ /dev/null @@ -1,8 +0,0 @@ -import { SimpleTranslationEntries } from "#app/interfaces/locales"; - -export const pokemonInfoContainer: SimpleTranslationEntries = { - "moveset": "招式", - "gender": "性别:", - "ability": "特性:", - "nature": "性格:", -} as const; diff --git a/src/locales/zh_TW/pokemon-info.ts b/src/locales/zh_TW/pokemon-info.json similarity index 75% rename from src/locales/zh_TW/pokemon-info.ts rename to src/locales/zh_TW/pokemon-info.json index b3edea0c3d4..66a99857a82 100644 --- a/src/locales/zh_TW/pokemon-info.ts +++ b/src/locales/zh_TW/pokemon-info.json @@ -1,7 +1,5 @@ -import { PokemonInfoTranslationEntries } from "#app/interfaces/locales"; - -export const pokemonInfo: PokemonInfoTranslationEntries = { - Stat: { +{ + "Stat": { "HP": "最大生命", "HPshortened": "生命", "ATK": "物理攻擊", @@ -13,12 +11,9 @@ export const pokemonInfo: PokemonInfoTranslationEntries = { "SPDEF": "特殊防禦", "SPDEFshortened": "特防", "SPD": "速度", - "SPDshortened": "速度", - "ACC": "Accuracy", - "EVA": "Evasiveness" + "SPDshortened": "速度" }, - - Type: { + "Type": { "UNKNOWN": "未知", "NORMAL": "一般", "FIGHTING": "格鬥", @@ -39,5 +34,5 @@ export const pokemonInfo: PokemonInfoTranslationEntries = { "DARK": "惡", "FAIRY": "妖精", "STELLAR": "星晶" - }, -} as const; + } +} \ No newline at end of file diff --git a/src/locales/zh_TW/pokemon-summary.json b/src/locales/zh_TW/pokemon-summary.json new file mode 100644 index 00000000000..9e26dfeeb6e --- /dev/null +++ b/src/locales/zh_TW/pokemon-summary.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/src/locales/zh_TW/pokemon-summary.ts b/src/locales/zh_TW/pokemon-summary.ts deleted file mode 100644 index 484ea2a9d67..00000000000 --- a/src/locales/zh_TW/pokemon-summary.ts +++ /dev/null @@ -1,20 +0,0 @@ -import { TranslationEntries } from "#app/interfaces/locales"; - -export const pokemonSummary: TranslationEntries = { - "pokemonInfo": "Pokémon Info", - "status": "Status", - "powerAccuracyCategory": "Power\nAccuracy\nCategory", - "type": "Type", - "unknownTrainer": "Unknown", - "ot": "OT", - "nature": "nature", - "expPoints": "Exp. Points", - "nextLv": "Next Lv.", - "cancel": "Cancel", - - "memoString": "{{natureFragment}} nature,\n{{metFragment}}", - "metFragment": { - "normal": "met at Lv{{level}},\n{{biome}}.", - "apparently": "apparently met at Lv{{level}},\n{{biome}}.", - }, -} as const; diff --git a/src/locales/zh_TW/pokemon.ts b/src/locales/zh_TW/pokemon.json similarity index 99% rename from src/locales/zh_TW/pokemon.ts rename to src/locales/zh_TW/pokemon.json index 2a82f11f4c3..4acd4a21fd5 100644 --- a/src/locales/zh_TW/pokemon.ts +++ b/src/locales/zh_TW/pokemon.json @@ -1,6 +1,4 @@ -import { SimpleTranslationEntries } from "#app/interfaces/locales"; - -export const pokemon: SimpleTranslationEntries = { +{ "bulbasaur": "妙蛙種子", "ivysaur": "妙蛙草", "venusaur": "妙蛙花", @@ -1082,5 +1080,5 @@ export const pokemon: SimpleTranslationEntries = { "hisui_decidueye": "狙射樹梟", "paldea_tauros": "肯泰羅", "paldea_wooper": "烏波", - "bloodmoon_ursaluna": "月月熊", -} as const; + "bloodmoon_ursaluna": "月月熊" +} \ No newline at end of file diff --git a/src/locales/zh_TW/run-history.json b/src/locales/zh_TW/run-history.json new file mode 100644 index 00000000000..76cb2592ce2 --- /dev/null +++ b/src/locales/zh_TW/run-history.json @@ -0,0 +1,37 @@ +{ + "victory": "勝利!", + "defeatedWild": "被打敗", + "defeatedTrainer": "被打敗", + "defeatedTrainerDouble": "被組合打敗", + "defeatedRival": "被勁敵打敗", + "defeated": "被打敗", + "defeatedWild_female": "被打敗", + "defeatedTrainer_female": "被打敗", + "defeatedTrainerDouble_female": "被組合打敗", + "defeatedRival_female": "被勁敵打敗", + "defeated_female": "被打敗", + "luck": "幸運", + "score": "分數", + "mode": "模式", + "challengeRules": "規則", + "challengeMonoGen1": "一代", + "challengeMonoGen2": "二代", + "challengeMonoGen3": "三代", + "challengeMonoGen4": "四代", + "challengeMonoGen5": "五代", + "challengeMonoGen6": "六代", + "challengeMonoGen7": "七代", + "challengeMonoGen8": "八代", + "challengeMonoGen9": "九代", + "playerItems": "玩家道具", + "personalBest": "個人最佳!", + "SPDshortened": "速率", + "runInfo": "遊戲記錄", + "money": "金錢", + "runLength": "遊戲時長", + "viewHeldItems": "持有道具", + "hallofFameText": "歡迎來到名人堂!", + "hallofFameText_female": "歡迎來到名人堂!", + "viewHallOfFame": "浏覽名人堂!", + "viewEndingSplash": "浏覽結算畫面" +} \ No newline at end of file diff --git a/src/locales/zh_TW/save-slot-select-ui-handler.json b/src/locales/zh_TW/save-slot-select-ui-handler.json new file mode 100644 index 00000000000..94fd6b0971f --- /dev/null +++ b/src/locales/zh_TW/save-slot-select-ui-handler.json @@ -0,0 +1,7 @@ +{ + "overwriteData": "要覆蓋該槽位的存檔嗎?", + "loading": "正在加載...", + "wave": "層數", + "lv": "Lv", + "empty": "空" +} \ No newline at end of file diff --git a/src/locales/zh_TW/save-slot-select-ui-handler.ts b/src/locales/zh_TW/save-slot-select-ui-handler.ts deleted file mode 100644 index 68377aec4b2..00000000000 --- a/src/locales/zh_TW/save-slot-select-ui-handler.ts +++ /dev/null @@ -1,9 +0,0 @@ -import { SimpleTranslationEntries } from "#app/interfaces/locales"; - -export const saveSlotSelectUiHandler: SimpleTranslationEntries = { - "overwriteData": "要覆蓋該槽位的存檔嗎?", - "loading": "正在加載...", - "wave": "層數", - "lv": "Lv", - "empty": "空", -} as const; diff --git a/src/locales/zh_TW/settings.ts b/src/locales/zh_TW/settings.json similarity index 91% rename from src/locales/zh_TW/settings.ts rename to src/locales/zh_TW/settings.json index 35499f45d15..b077e0216a3 100644 --- a/src/locales/zh_TW/settings.ts +++ b/src/locales/zh_TW/settings.json @@ -1,6 +1,4 @@ -import { SimpleTranslationEntries } from "#app/interfaces/locales.js"; - -export const settings: SimpleTranslationEntries = { +{ "boy": "男孩", "girl": "女孩", "general": "常規", @@ -63,6 +61,7 @@ export const settings: SimpleTranslationEntries = { "typeHints": "屬性提示", "masterVolume": "主音量", "bgmVolume": "音樂", + "fieldVolume": "場景音量", "seVolume": "音效", "musicPreference": "音樂偏好", "mixed": "全曲混合", @@ -96,7 +95,5 @@ export const settings: SimpleTranslationEntries = { "mute": "靜音", "controller": "控制器", "gamepadSupport": "手柄支持", - "showBgmBar": "Show Music Names", - "moveTouchControls": "移動觸控控制", - "shopOverlayOpacity": "Shop Overlay Opacity" -} as const; + "moveTouchControls": "移動觸控控制" +} diff --git a/src/locales/zh_TW/splash-messages.ts b/src/locales/zh_TW/splash-messages.json similarity index 87% rename from src/locales/zh_TW/splash-messages.ts rename to src/locales/zh_TW/splash-messages.json index 734b7a16064..8535a9acd84 100644 --- a/src/locales/zh_TW/splash-messages.ts +++ b/src/locales/zh_TW/splash-messages.json @@ -1,6 +1,4 @@ -import { SimpleTranslationEntries } from "#app/interfaces/locales"; - -export const splashMessages: SimpleTranslationEntries = { +{ "battlesWon": "勝利場數!", "joinTheDiscord": "加入Discord!", "infiniteLevels": "無限等級!", @@ -33,6 +31,5 @@ export const splashMessages: SimpleTranslationEntries = { "alsoTryEmeraldRogue": "也試試翡翠流氓!", "alsoTryRadicalRed": "也試試激進紅!", "eeveeExpo": "伊布博覽會!", - "ynoproject": "YNO專案!", - "breedersInSpace": "Breeders in space!", -} as const; + "ynoproject": "YNO專案!" +} \ No newline at end of file diff --git a/src/locales/zh_TW/starter-select-ui-handler.ts b/src/locales/zh_TW/starter-select-ui-handler.json similarity index 70% rename from src/locales/zh_TW/starter-select-ui-handler.ts rename to src/locales/zh_TW/starter-select-ui-handler.json index ea4cb127fea..2a0db7217da 100644 --- a/src/locales/zh_TW/starter-select-ui-handler.ts +++ b/src/locales/zh_TW/starter-select-ui-handler.json @@ -1,13 +1,5 @@ -import { SimpleTranslationEntries } from "#app/interfaces/locales"; - -/** - * The menu namespace holds most miscellaneous text that isn't directly part of the game's - * contents or directly related to Pokemon data. This includes menu navigation, settings, - * account interactions, descriptive text, etc. - */ -export const starterSelectUiHandler: SimpleTranslationEntries = { +{ "confirmStartTeam": "使用這些寶可夢開始嗎?", - "confirmExit": "Do you want to exit?", "invalidParty": "此為無效隊伍!", "gen1": "I", "gen2": "II", @@ -29,8 +21,6 @@ export const starterSelectUiHandler: SimpleTranslationEntries = { "toggleIVs": "查看個體值", "manageMoves": "管理技能", "manageNature": "管理性格", - "addToFavorites": "Add to Favorites", - "removeFromFavorites": "Remove from Favorites", "useCandies": "使用糖果", "selectNature": "選擇性格", "selectMoveSwapOut": "選擇想要替換走的招式", @@ -50,4 +40,4 @@ export const starterSelectUiHandler: SimpleTranslationEntries = { "locked": "未解鎖", "disabled": "已禁用", "uncaught": "未捕獲" -}; +} \ No newline at end of file diff --git a/src/locales/zh_TW/status-effect.json b/src/locales/zh_TW/status-effect.json new file mode 100644 index 00000000000..9e26dfeeb6e --- /dev/null +++ b/src/locales/zh_TW/status-effect.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/src/locales/zh_TW/status-effect.ts b/src/locales/zh_TW/status-effect.ts deleted file mode 100644 index eb676c08c84..00000000000 --- a/src/locales/zh_TW/status-effect.ts +++ /dev/null @@ -1,67 +0,0 @@ -import { StatusEffectTranslationEntries } from "#app/interfaces/locales.js"; - -export const statusEffect: StatusEffectTranslationEntries = { - none: { - name: "None", - description: "", - obtain: "", - obtainSource: "", - activation: "", - overlap: "", - heal: "" - }, - poison: { - name: "Poison", - description: "poisoning", - obtain: "{{pokemonNameWithAffix}}\nwas poisoned!", - obtainSource: "{{pokemonNameWithAffix}}\nwas poisoned by the {{sourceText}}!", - activation: "{{pokemonNameWithAffix}} is hurt\nby poison!", - overlap: "{{pokemonNameWithAffix}} is\nalready poisoned!", - heal: "{{pokemonNameWithAffix}} was\ncured of its poison!" - }, - toxic: { - name: "Toxic", - description: "poisoning", - obtain: "{{pokemonNameWithAffix}}\nwas badly poisoned!", - obtainSource: "{{pokemonNameWithAffix}}\nwas badly poisoned by the {{sourceText}}!", - activation: "{{pokemonNameWithAffix}} is hurt\nby poison!", - overlap: "{{pokemonNameWithAffix}} is\nalready poisoned!", - heal: "{{pokemonNameWithAffix}} was\ncured of its poison!" - }, - paralysis: { - name: "Paralysis", - description: "paralysis", - obtain: "{{pokemonNameWithAffix}} was paralyzed,\nIt may be unable to move!", - obtainSource: "{{pokemonNameWithAffix}} was paralyzed by the {{sourceText}},\nIt may be unable to move!", - activation: "{{pokemonNameWithAffix}} is paralyzed!\nIt can't move!", - overlap: "{{pokemonNameWithAffix}} is\nalready paralyzed!", - heal: "{{pokemonNameWithAffix}} was\nhealed of paralysis!" - }, - sleep: { - name: "Sleep", - description: "sleep", - obtain: "{{pokemonNameWithAffix}}\nfell asleep!", - obtainSource: "{{pokemonNameWithAffix}}\nfell asleep from the {{sourceText}}!", - activation: "{{pokemonNameWithAffix}} is fast asleep.", - overlap: "{{pokemonNameWithAffix}} is\nalready asleep!", - heal: "{{pokemonNameWithAffix}} woke up!" - }, - freeze: { - name: "Freeze", - description: "freezing", - obtain: "{{pokemonNameWithAffix}}\nwas frozen solid!", - obtainSource: "{{pokemonNameWithAffix}}\nwas frozen solid by the {{sourceText}}!", - activation: "{{pokemonNameWithAffix}} is\nfrozen solid!", - overlap: "{{pokemonNameWithAffix}} is\nalready frozen!", - heal: "{{pokemonNameWithAffix}} was\ndefrosted!" - }, - burn: { - name: "Burn", - description: "burn", - obtain: "{{pokemonNameWithAffix}}\nwas burned!", - obtainSource: "{{pokemonNameWithAffix}}\nwas burned by the {{sourceText}}!", - activation: "{{pokemonNameWithAffix}} is hurt\nby its burn!", - overlap: "{{pokemonNameWithAffix}} is\nalready burned!", - heal: "{{pokemonNameWithAffix}} was\nhealed of its burn!" - }, -} as const; diff --git a/src/locales/zh_TW/terrain.json b/src/locales/zh_TW/terrain.json new file mode 100644 index 00000000000..37b74a1e352 --- /dev/null +++ b/src/locales/zh_TW/terrain.json @@ -0,0 +1,16 @@ +{ + "misty": "薄霧", + "mistyStartMessage": "腳下霧氣繚繞!", + "mistyClearMessage": "腳下的霧氣消失不見了!", + "mistyBlockMessage": "{{pokemonNameWithAffix}}正受到薄霧場地的保護!", + "electric": "電氣", + "electricStartMessage": "腳下電流飛閃!", + "electricClearMessage": "腳下的電流消失了!", + "grassy": "青草", + "grassyStartMessage": "腳下青草如茵!", + "grassyClearMessage": "腳下的青草消失不見了!", + "psychic": "精神", + "psychicStartMessage": "腳下傳來了奇妙的感覺!", + "psychicClearMessage": "腳下的奇妙感覺消失了!", + "defaultBlockMessage": "{{pokemonNameWithAffix}}正受到{{terrainName}}的保護!" +} \ No newline at end of file diff --git a/src/locales/zh_TW/trainer-classes.json b/src/locales/zh_TW/trainer-classes.json new file mode 100644 index 00000000000..d6ff7238ec1 --- /dev/null +++ b/src/locales/zh_TW/trainer-classes.json @@ -0,0 +1,119 @@ +{ + "ace_trainer": "精英訓練家", + "ace_trainer_female": "精英訓練家", + "ace_duo": "精英組合", + "artist": "藝術家", + "artist_female": "藝術家", + "backers": "啦啦隊", + "backpacker": "背包客", + "backpacker_female": "背包客", + "backpackers": "背包客組合", + "baker": "麵包師", + "battle_girl": "對戰少女", + "beauty": "大姐姐", + "beginners": "新人訓練家組合", + "biker": "飆車族", + "black_belt": "空手道王", + "breeder": "寶可夢培育家", + "breeder_female": "寶可夢培育家", + "breeders": "寶可夢培育家組合", + "clerk": "商務人士", + "clerk_female": "職場OL", + "colleagues": "商務夥伴", + "crush_kin": "格鬥姐弟", + "cyclist": "自行車手", + "cyclist_female": "自行車手", + "cyclists": "自行車手組合", + "dancer": "舞者", + "dancer_female": "舞者", + "depot_agent": "鐵路員工", + "doctor": "醫生", + "doctor_female": "醫生", + "firebreather": "吹火人", + "fisherman": "垂釣者", + "fisherman_female": "垂釣者", + "gentleman": "紳士", + "guitarist": "吉他手", + "guitarist_female": "吉他手", + "harlequin": "滑稽演員", + "hiker": "登山男", + "hooligans": "壞組合", + "hoopster": "籃球選手", + "infielder": "棒球選手", + "janitor": "清潔員", + "lady": "千金小姐", + "lass": "迷你裙", + "linebacker": "美式橄欖球選手", + "maid": "女僕", + "madame": "女士", + "medical_team": "醫療團隊", + "musician": "音樂家", + "hex_maniac": "靈異迷", + "nurse": "護士", + "nursery_aide": "幼兒園老師", + "officer": "警察", + "parasol_lady": "陽傘姐姐", + "pilot": "飛行員", + "pokéfan": "發燒友俱樂部", + "pokéfan_female": "發燒友俱樂部", + "pokéfan_family": "同好夫婦", + "preschooler": "幼兒園小朋友", + "preschooler_female": "幼兒園小朋友", + "preschoolers": "幼兒園小朋友組合", + "psychic": "超能力者", + "psychic_female": "超能力者", + "psychics": "超能力者組合", + "pokémon_ranger": "寶可夢巡護員", + "pokémon_ranger_female": "寶可夢巡護員", + "pokémon_rangers": "寶可夢巡護員組合", + "ranger": "巡護員", + "restaurant_staff": "服務生組合", + "rich": "富有", + "rich_female": "富有", + "rich_boy": "富家少爺", + "rich_couple": "富豪夫婦", + "rich_kid": "富家孩子", + "rich_kid_female": "富家孩子", + "rich_kids": "富二代組合", + "roughneck": "光頭男", + "sailor": "水手", + "scientist": "研究員", + "scientist_female": "研究員", + "scientists": "研究員組合", + "smasher": "網球選手", + "snow_worker": "雪地工人", + "snow_worker_female": "雪地工人", + "striker": "足球選手", + "school_kid": "補習班學生", + "school_kid_female": "補習班學生", + "school_kids": "補習班學生組合", + "swimmer": "泳褲小伙子", + "swimmer_female": "比基尼大姐姐", + "swimmers": "泳裝情侶", + "twins": "雙胞胎", + "veteran": "資深訓練家", + "veteran_female": "資深訓練家", + "veteran_duo": "資深組合", + "waiter": "服務生", + "waitress": "女服務生", + "worker": "工人", + "worker_female": "工人", + "workers": "工人組合", + "youngster": "短褲小子", + "rocket_grunts": "火箭队手下們", + "magma_grunt": "熔岩队手下", + "magma_grunt_female": "熔岩队手下", + "magma_grunts": "熔岩队手下們", + "aqua_grunt": "海洋队手下", + "aqua_grunt_female": "海洋队手下", + "aqua_grunts": "海洋队手下們", + "galactic_grunt": "银河队手下", + "galactic_grunt_female": "银河队手下", + "galactic_grunts": "银河队手下們", + "plasma_grunt": "等离子队手下", + "plasma_grunt_female": "等离子队手下", + "plasma_grunts": "等离子队手下們", + "flare_grunt": "闪焰队手下", + "flare_grunt_female": "闪焰队手下", + "flare_grunts": "闪焰队手下們" +} \ No newline at end of file diff --git a/src/locales/zh_TW/trainer-names.json b/src/locales/zh_TW/trainer-names.json new file mode 100644 index 00000000000..64e8892e64b --- /dev/null +++ b/src/locales/zh_TW/trainer-names.json @@ -0,0 +1,136 @@ +{ + "brock": "小剛", + "misty": "小霞", + "lt_surge": "馬志士", + "erika": "莉佳", + "janine": "阿杏", + "sabrina": "娜姿", + "blaine": "夏伯", + "giovanni": "坂木", + "falkner": "阿速", + "bugsy": "阿筆", + "whitney": "小茜", + "morty": "松葉", + "chuck": "阿四", + "jasmine": "阿蜜", + "pryce": "柳伯", + "clair": "小椿", + "roxanne": "杜鵑", + "brawly": "藤樹", + "wattson": "鐵旋", + "flannery": "亞莎", + "norman": "千里", + "winona": "娜琪", + "tate": "小楓", + "liza": "小南", + "juan": "亞當", + "roark": "瓢太", + "gardenia": "菜種", + "maylene": "阿李", + "crasher_wake": "吉憲", + "fantina": "梅麗莎", + "byron": "東瓜", + "candice": "小菘", + "volkner": "電次", + "cilan": "天桐", + "chili": "伯特", + "cress": "寇恩", + "cheren": "黑連", + "lenora": "蘆薈", + "roxie": "霍米加", + "burgh": "亞堤", + "elesa": "小菊兒", + "clay": "菊老大", + "skyla": "風露", + "brycen": "哈奇庫", + "drayden": "夏卡", + "marlon": "西子伊", + "viola": "紫羅蘭", + "grant": "查克洛", + "korrina": "可爾妮", + "ramos": "福爺", + "clemont": "希特隆", + "valerie": "瑪綉", + "olympia": "葛吉花", + "wulfric": "得撫", + "milo": "亞洛", + "nessa": "露璃娜", + "kabu": "卡芜", + "bea": "彩豆", + "allister": "歐尼奧", + "opal": "波普菈", + "bede": "彼特", + "gordie": "瑪瓜", + "melony": "美蓉", + "piers": "聶梓", + "marnie": "瑪俐", + "raihan": "奇巴納", + "katy": "阿楓", + "brassius": "寇沙", + "iono": "奇樹", + "kofu": "海岱", + "larry": "青木", + "ryme": "萊姆", + "tulip": "莉普", + "grusha": "古魯夏", + "lorelei": "科拿", + "bruno": "希巴", + "agatha": "菊子", + "lance": "阿渡", + "will": "一樹", + "koga": "阿桔", + "karen": "梨花", + "sidney": "花月", + "phoebe": "芙蓉", + "glacia": "波妮", + "drake": "源治", + "aaron": "阿柳", + "bertha": "菊野", + "flint": "大葉", + "lucian": "悟松", + "shauntal": "婉龍", + "marshal": "連武", + "grimsley": "越橘", + "caitlin": "嘉德麗雅", + "malva": "帕琦拉", + "siebold": "志米", + "wikstrom": "雁鎧", + "drasna": "朵拉塞娜", + "hala": "哈拉", + "molayne": "馬睿因", + "olivia": "麗姿", + "acerola": "阿塞蘿拉", + "kahili": "卡希麗", + "rika": "辛俐", + "poppy": "波琵", + "hassel": "八朔", + "crispin": "赤松", + "amarys": "納莉", + "lacey": "紫竽", + "drayton": "杜若", + "blue": "青綠", + "red": "赤紅", + "steven": "大吾", + "wallace": "米可利", + "cynthia": "竹蘭", + "alder": "阿戴克", + "iris": "艾莉絲", + "diantha": "卡露妮", + "hau": "哈烏", + "leon": "丹帝", + "geeta": "也慈", + "nemona": "妮莫", + "kieran": "烏栗", + "rival": "芬恩", + "rival_female": "艾薇", + "blue_red_double": "青綠 & 赤紅", + "red_blue_double": "赤紅 & 青綠", + "tate_liza_double": "小楓 & 小南", + "liza_tate_double": "小南 & 小楓", + "steven_wallace_double": "大吾 & 米可利", + "wallace_steven_double": "米可利 & 大吾", + "alder_iris_double": "阿戴克 & 艾莉絲", + "iris_alder_double": "艾莉絲 & 阿戴克", + "marnie_piers_double": "瑪俐 & 聶梓", + "piers_marnie_double": "聶梓 & 瑪俐" +} \ No newline at end of file diff --git a/src/locales/zh_TW/trainer-titles.json b/src/locales/zh_TW/trainer-titles.json new file mode 100644 index 00000000000..54fe48b1464 --- /dev/null +++ b/src/locales/zh_TW/trainer-titles.json @@ -0,0 +1,13 @@ +{ + "elite_four": "四天王", + "elite_four_female": "四天王", + "gym_leader": "道館館主", + "gym_leader_female": "道館館主", + "gym_leader_double": "道館館主", + "champion": "冠軍", + "champion_female": "冠軍", + "champion_double": "冠軍搭檔", + "rival": "勁敵", + "professor": "博士", + "frontier_brain": "開拓頭腦" +} \ No newline at end of file diff --git a/src/locales/zh_TW/trainers.ts b/src/locales/zh_TW/trainers.ts deleted file mode 100644 index 48159efd1c6..00000000000 --- a/src/locales/zh_TW/trainers.ts +++ /dev/null @@ -1,376 +0,0 @@ -import {SimpleTranslationEntries} from "#app/interfaces/locales"; - -// Titles of special trainers like gym leaders, elite four, and the champion -export const titles: SimpleTranslationEntries = { - "elite_four": "四天王", - "elite_four_female": "四天王", - "gym_leader": "道館館主", - "gym_leader_female": "道館館主", - "gym_leader_double": "道館館主", - "champion": "冠軍", - "champion_female": "冠軍", - "champion_double": "冠軍搭檔", - "rival": "勁敵", - "professor": "博士", - "frontier_brain": "開拓頭腦", - "rocket_boss": "Team Rocket Boss", - "magma_boss": "Team Magma Boss", - "aqua_boss": "Team Aqua Boss", - "galactic_boss": "Team Galactic Boss", - "plasma_boss": "Team Plasma Boss", - "flare_boss": "Team Flare Boss", - - "rocket_admin": "Team Rocket Admin", - "rocket_admin_female": "Team Rocket Admin", - "magma_admin": "Team Magma Admin", - "magma_admin_female": "Team Magma Admin", - "aqua_admin": "Team Aqua Admin", - "aqua_admin_female": "Team Aqua Admin", - "galactic_commander": "Team Galactic Commander", - "galactic_commander_female": "Team Galactic Commander", - "plasma_sage": "Team Plasma Sage", - "plasma_admin": "Team Plasma Admin", - "flare_admin": "Team Flare Admin", - "flare_admin_female": "Team Flare Admin", - // Maybe if we add the evil teams we can add "Team Rocket" and "Team Aqua" etc. here as well as "Team Rocket Boss" and "Team Aqua Admin" etc. -} as const; - -// Titles of trainers like "Youngster" or "Lass" -export const trainerClasses: SimpleTranslationEntries = { - "ace_trainer": "精英訓練家", - "ace_trainer_female": "精英訓練家", - "ace_duo": "精英組合", - "artist": "藝術家", - "artist_female": "藝術家", - "backers": "啦啦隊", - "backpacker": "背包客", - "backpacker_female": "背包客", - "backpackers": "背包客組合", - "baker": "麵包師", - "battle_girl": "對戰少女", - "beauty": "大姐姐", - "beginners": "新人訓練家組合", - "biker": "飆車族", - "black_belt": "空手道王", - "breeder": "寶可夢培育家", - "breeder_female": "寶可夢培育家", - "breeders": "寶可夢培育家組合", - "clerk": "商務人士", - "clerk_female": "職場OL", - "colleagues": "商務夥伴", - "crush_kin": "格鬥姐弟", - "cyclist": "自行車手", - "cyclist_female": "自行車手", - "cyclists": "自行車手組合", - "dancer": "舞者", - "dancer_female": "舞者", - "depot_agent": "鐵路員工", - "doctor": "醫生", - "doctor_female": "醫生", - "firebreather": "吹火人", - "fisherman": "垂釣者", - "fisherman_female": "垂釣者", - "gentleman": "紳士", - "guitarist": "吉他手", - "guitarist_female": "吉他手", - "harlequin": "滑稽演員", - "hiker": "登山男", - "hooligans": "壞組合", - "hoopster": "籃球選手", - "infielder": "棒球選手", - "janitor": "清潔員", - "lady": "千金小姐", - "lass": "迷你裙", - "linebacker": "美式橄欖球選手", - "maid": "女僕", - "madame": "女士", - "medical_team": "醫療團隊", - "musician": "音樂家", - "hex_maniac": "靈異迷", - "nurse": "護士", - "nursery_aide": "幼兒園老師", - "officer": "警察", - "parasol_lady": "陽傘姐姐", - "pilot": "飛行員", - "pokéfan": "發燒友俱樂部", - "pokéfan_female": "發燒友俱樂部", - "pokéfan_family": "同好夫婦", - "preschooler": "幼兒園小朋友", - "preschooler_female": "幼兒園小朋友", - "preschoolers": "幼兒園小朋友組合", - "psychic": "超能力者", - "psychic_female": "超能力者", - "psychics": "超能力者組合", - "pokémon_ranger": "寶可夢巡護員", - "pokémon_ranger_female": "寶可夢巡護員", - "pokémon_rangers": "寶可夢巡護員組合", - "ranger": "巡護員", - "restaurant_staff": "服務生組合", - "rich": "富有", - "rich_female": "富有", - "rich_boy": "富家少爺", - "rich_couple": "富豪夫婦", - "rich_kid": "富家孩子", - "rich_kid_female": "富家孩子", - "rich_kids": "富二代組合", - "roughneck": "光頭男", - "sailor": "水手", - "scientist": "研究員", - "scientist_female": "研究員", - "scientists": "研究員組合", - "smasher": "網球選手", - "snow_worker": "雪地工人", - "snow_worker_female": "雪地工人", - "striker": "足球選手", - "school_kid": "補習班學生", - "school_kid_female": "補習班學生", - "school_kids": "補習班學生組合", - "swimmer": "泳褲小伙子", - "swimmer_female": "比基尼大姐姐", - "swimmers": "泳裝情侶", - "twins": "雙胞胎", - "veteran": "資深訓練家", - "veteran_female": "資深訓練家", - "veteran_duo": "資深組合", - "waiter": "服務生", - "waitress": "女服務生", - "worker": "工人", - "worker_female": "工人", - "workers": "工人組合", - "youngster": "短褲小子", - "rocket_grunts": "火箭队手下們", - "magma_grunt": "熔岩队手下", - "magma_grunt_female": "熔岩队手下", - "magma_grunts": "熔岩队手下們", - "aqua_grunt": "海洋队手下", - "aqua_grunt_female": "海洋队手下", - "aqua_grunts": "海洋队手下們", - "galactic_grunt": "银河队手下", - "galactic_grunt_female": "银河队手下", - "galactic_grunts": "银河队手下們", - "plasma_grunt": "等离子队手下", - "plasma_grunt_female": "等离子队手下", - "plasma_grunts": "等离子队手下們", - "flare_grunt": "闪焰队手下", - "flare_grunt_female": "闪焰队手下", - "flare_grunts": "闪焰队手下們", -} as const; - -// Names of special trainers like gym leaders, elite four, and the champion -export const trainerNames: SimpleTranslationEntries = { - // ---- 館主 Gym leader ---- - // 關都地區 Kanto Region - "brock": "小剛", - "misty": "小霞", - "lt_surge": "馬志士", - "erika": "莉佳", - "janine": "阿杏", - "sabrina": "娜姿", - "blaine": "夏伯", - "giovanni": "坂木", - - // 城都地區 Johto Region - "falkner": "阿速", - "bugsy": "阿筆", - "whitney": "小茜", - "morty": "松葉", - "chuck": "阿四", - "jasmine": "阿蜜", - "pryce": "柳伯", - "clair": "小椿", - - // 豐緣地區 Hoenn Region - "roxanne": "杜鵑", - "brawly": "藤樹", - "wattson": "鐵旋", - "flannery": "亞莎", - "norman": "千里", - "winona": "娜琪", - "tate": "小楓", - "liza": "小南", - "juan": "亞當", - - // 神奧地區 Sinnoh Region - "roark": "瓢太", - "gardenia": "菜種", - "maylene": "阿李", - "crasher_wake": "吉憲", - "fantina": "梅麗莎", - "byron": "東瓜", - "candice": "小菘", - "volkner": "電次", - - // 合眾地區 Unova Region - "cilan": "天桐", - "chili": "伯特", - "cress": "寇恩", - "cheren": "黑連", - "lenora": "蘆薈", - "roxie": "霍米加", - "burgh": "亞堤", - "elesa": "小菊兒", - "clay": "菊老大", - "skyla": "風露", - "brycen": "哈奇庫", - "drayden": "夏卡", - "marlon": "西子伊", - - // 卡洛斯地區 Kalos Region - "viola": "紫羅蘭", - "grant": "查克洛", - "korrina": "可爾妮", - "ramos": "福爺", - "clemont": "希特隆", - "valerie": "瑪綉", - "olympia": "葛吉花", - "wulfric": "得撫", - - // 伽勒爾地區 Galar Region - "milo": "亞洛", - "nessa": "露璃娜", - "kabu": "卡芜", - "bea": "彩豆", - "allister": "歐尼奧", - "opal": "波普菈", - "bede": "彼特", - "gordie": "瑪瓜", - "melony": "美蓉", - "piers": "聶梓", - "marnie": "瑪俐", - "raihan": "奇巴納", - - // 帕底亞地區 Paldea Region - "katy": "阿楓", - "brassius": "寇沙", - "iono": "奇樹", - "kofu": "海岱", - "larry": "青木", - "ryme": "萊姆", - "tulip": "莉普", - "grusha": "古魯夏", - - // ---- 四天王 Elite Four ---- - // 關都地區 Kanto Region - "lorelei": "科拿", - "bruno": "希巴", - "agatha": "菊子", - "lance": "阿渡", - - // 城都地區 Johto Region - "will": "一樹", - "koga": "阿桔", - "karen": "梨花", - - // 豐都地區 Hoenn Region - "sidney": "花月", - "phoebe": "芙蓉", - "glacia": "波妮", - "drake": "源治", - - // 神奧地區 Sinnoh Region - "aaron": "阿柳", - "bertha": "菊野", - "flint": "大葉", - "lucian": "悟松", - - // 合眾地區 Unova Region - "shauntal": "婉龍", - "marshal": "連武", - "grimsley": "越橘", - "caitlin": "嘉德麗雅", - - // 卡洛斯地區 Kalos Region - "malva": "帕琦拉", - "siebold": "志米", - "wikstrom": "雁鎧", - "drasna": "朵拉塞娜", - - // 阿羅拉地區 Alola Region - "hala": "哈拉", - "molayne": "馬睿因", - "olivia": "麗姿", - "acerola": "阿塞蘿拉", - "kahili": "卡希麗", - - // 帕底亞地區 Paldea Region - "rika": "辛俐", - "poppy": "波琵", - "hassel": "八朔", - - // 藍莓學院 Blueberry Academy - "crispin": "赤松", - "amarys": "納莉", - "lacey": "紫竽", - "drayton": "杜若", - - // ---- 冠軍 Champion ---- - // 關都地區 Kanto Region - "blue": "青綠", - "red": "赤紅", - - // 豐緣地區 Hoenn Region - "steven": "大吾", - "wallace": "米可利", - - // 神奧地區 Sinnoh Region - "cynthia": "竹蘭", - - // 合眾地區 Unova Region - "alder": "阿戴克", - "iris": "艾莉絲", - - // 卡洛斯地區 Kalos Region - "diantha": "卡露妮", - - // 阿羅拉地區 Alola Region - "hau": "哈烏", - - // 伽勒爾地區 Galar Region - "leon": "丹帝", - - // 帕底亞地區 Paldea Region - "geeta": "也慈", - "nemona": "妮莫", - - // 藍莓學院 Blueberry Academy - "kieran": "烏栗", - - // 勁敵 Rival - "rival": "芬恩", - "rival_female": "艾薇", - - // Evil Team Admins - "archer": "Archer", - "ariana": "Ariana", - "proton": "Proton", - "petrel": "Petrel", - "tabitha": "Tabitha", - "courtney": "Courtney", - "shelly": "Shelly", - "matt": "Matt", - "mars": "Mars", - "jupiter": "Jupiter", - "saturn": "Saturn", - "zinzolin": "Zinzolin", - "rood": "Rood", - "xerosic": "Xerosic", - "bryony": "Bryony", - - "maxie": "Maxie", - "archie": "Archie", - "cyrus": "Cyrus", - "ghetsis": "Ghetsis", - "lysandre": "Lysandre", - - // Double Names - "blue_red_double": "青綠 & 赤紅", - "red_blue_double": "赤紅 & 青綠", - "tate_liza_double": "小楓 & 小南", - "liza_tate_double": "小南 & 小楓", - "steven_wallace_double": "大吾 & 米可利", - "wallace_steven_double": "米可利 & 大吾", - "alder_iris_double": "阿戴克 & 艾莉絲", - "iris_alder_double": "艾莉絲 & 阿戴克", - "marnie_piers_double": "瑪俐 & 聶梓", - "piers_marnie_double": "聶梓 & 瑪俐", -} as const; diff --git a/src/locales/zh_TW/tutorial.json b/src/locales/zh_TW/tutorial.json new file mode 100644 index 00000000000..5e6e3d0ba9c --- /dev/null +++ b/src/locales/zh_TW/tutorial.json @@ -0,0 +1,10 @@ +{ + "intro": "歡迎來到PokéRogue!這是一款以戰鬥爲核心的融合了roguelite元素的寶可夢同人遊戲。 \n$本遊戲未進行商業化,我們沒有\nPokémon或Pokémon使用的版 \n$權資產的所有權。 \n$遊戲仍在開發中,但已可完整遊玩。如需報\n告錯誤,請使用 Discord 社區。 \n$如果遊戲運行緩慢,請確保在瀏覽器設置中\n打開了“硬件加速”。", + "accessMenu": "在等待輸入時,按 M 或 Escape 鍵可訪\n問菜單。菜單包含設置和各種功能。", + "menu": "在此菜單中,您可以訪問設置。 \n$在設置中,您可以更改遊戲速度、窗口樣式\n和其他選項。 \n$這裏還有各種其他功能,請務必全部查看!", + "starterSelect": "在此頁面中,您可以選擇您的初始寶可夢。\n這些是您最初的隊伍成員。 \n$每個初始寶可夢都有一個費用值。您的隊伍\n最多可以擁有6名成員,只要總費用不超過10。 \n$您還可以根據您捕獲或孵化的變種選擇性別\n、特性和形態。 \n$一個物種個體值是您捕獲或孵化的所有寶可\n夢中最好的,所以儘量獲得更多同種寶可夢!", + "pokerus": "每天隨機3個可選的初始寶可夢會有紫色邊\n框。 \n$如果您看到您擁有的初始寶可夢帶有紫色邊\n框,請嘗試將其添加到您的隊伍中。請務必 \n$查看其概況!", + "statChange": "只要您的寶可夢沒有被召回,屬性變化就會\n在戰鬥中持續存在。 \n$在訓練家戰鬥之前和進入新的寶可夢羣落之\n前,您的寶可夢會被召回。 \n$您還可以通過按住C或Shift鍵來查看\n場上寶可夢的能力變化。", + "selectItem": "每次戰鬥後,您都可以選擇 3 個隨機物品。\n您只能選擇其中一個。 \n$這些物品包括消耗品、寶可夢攜帶物品和永\n久被動道具。 \n$大多數非消耗品的效果會以各種方式疊加。 \n$某些物品只有在可以使用時纔會出現,例如\n進化物品。 \n$您還可以使用轉移選項在寶可夢之間轉移攜\n帶物品。 \n$一旦您獲得了攜帶物品,轉移選項就會出現\n在右下角。 \n$您可以用金錢購買消耗品,並且隨着您遊戲\n的深入,將會有更多種類的消耗品可供選擇。 \n$請務必在選擇隨機物品之前購買這些消耗品\n因爲一旦您選擇,遊戲就會進入下一場戰鬥。", + "eggGacha": "在此頁面中,您可以使用您的兌換券兌換寶\n可夢蛋。 \n$蛋需要孵化,並且在每場戰鬥後都會減少孵\n化週期。稀有蛋需要更長時間才能孵化。 \n$孵化的寶可夢不會被添加到您的隊伍中,它\n們將被添加到您的初始寶可夢中。 \n$從蛋中孵化的寶可夢通常比野生寶可夢具有\n更好的個體值。 \n$有些寶可夢只能從蛋中獲得。 \n$有 3 種不同的扭蛋機可供選擇,每種扭蛋機\n都有不同的獎勵,請選擇最適合您的!" +} \ No newline at end of file diff --git a/src/locales/zh_TW/tutorial.ts b/src/locales/zh_TW/tutorial.ts deleted file mode 100644 index 482ac5ce651..00000000000 --- a/src/locales/zh_TW/tutorial.ts +++ /dev/null @@ -1,44 +0,0 @@ -import { SimpleTranslationEntries } from "#app/interfaces/locales"; - -export const tutorial: SimpleTranslationEntries = { - "intro": `歡迎來到PokéRogue!這是一款以戰鬥爲核心的融合了roguelite元素的寶可夢同人遊戲。 - $本遊戲未進行商業化,我們沒有\nPokémon或Pokémon使用的版 - $權資產的所有權。 - $遊戲仍在開發中,但已可完整遊玩。如需報\n告錯誤,請使用 Discord 社區。 - $如果遊戲運行緩慢,請確保在瀏覽器設置中\n打開了“硬件加速”。`, - - "accessMenu": "在等待輸入時,按 M 或 Escape 鍵可訪\n問菜單。菜單包含設置和各種功能。", - - "menu": `在此菜單中,您可以訪問設置。 - $在設置中,您可以更改遊戲速度、窗口樣式\n和其他選項。 - $這裏還有各種其他功能,請務必全部查看!`, - - "starterSelect": `在此頁面中,您可以選擇您的初始寶可夢。\n這些是您最初的隊伍成員。 - $每個初始寶可夢都有一個費用值。您的隊伍\n最多可以擁有6名成員,只要總費用不超過10。 - $您還可以根據您捕獲或孵化的變種選擇性別\n、特性和形態。 - $一個物種個體值是您捕獲或孵化的所有寶可\n夢中最好的,所以儘量獲得更多同種寶可夢!`, - - "pokerus": `每天隨機3個可選的初始寶可夢會有紫色邊\n框。 - $如果您看到您擁有的初始寶可夢帶有紫色邊\n框,請嘗試將其添加到您的隊伍中。請務必 - $查看其概況!`, - - "statChange": `只要您的寶可夢沒有被召回,屬性變化就會\n在戰鬥中持續存在。 - $在訓練家戰鬥之前和進入新的寶可夢羣落之\n前,您的寶可夢會被召回。 - $您還可以通過按住C或Shift鍵來查看\n場上寶可夢的能力變化。`, - - "selectItem": `每次戰鬥後,您都可以選擇 3 個隨機物品。\n您只能選擇其中一個。 - $這些物品包括消耗品、寶可夢攜帶物品和永\n久被動道具。 - $大多數非消耗品的效果會以各種方式疊加。 - $某些物品只有在可以使用時纔會出現,例如\n進化物品。 - $您還可以使用轉移選項在寶可夢之間轉移攜\n帶物品。 - $一旦您獲得了攜帶物品,轉移選項就會出現\n在右下角。 - $您可以用金錢購買消耗品,並且隨着您遊戲\n的深入,將會有更多種類的消耗品可供選擇。 - $請務必在選擇隨機物品之前購買這些消耗品\n因爲一旦您選擇,遊戲就會進入下一場戰鬥。`, - - "eggGacha": `在此頁面中,您可以使用您的兌換券兌換寶\n可夢蛋。 - $蛋需要孵化,並且在每場戰鬥後都會減少孵\n化週期。稀有蛋需要更長時間才能孵化。 - $孵化的寶可夢不會被添加到您的隊伍中,它\n們將被添加到您的初始寶可夢中。 - $從蛋中孵化的寶可夢通常比野生寶可夢具有\n更好的個體值。 - $有些寶可夢只能從蛋中獲得。 - $有 3 種不同的扭蛋機可供選擇,每種扭蛋機\n都有不同的獎勵,請選擇最適合您的!` -} as const; diff --git a/src/locales/zh_TW/voucher.ts b/src/locales/zh_TW/voucher.json similarity index 65% rename from src/locales/zh_TW/voucher.ts rename to src/locales/zh_TW/voucher.json index 9b521e683fd..fcff16ba6fc 100644 --- a/src/locales/zh_TW/voucher.ts +++ b/src/locales/zh_TW/voucher.json @@ -1,6 +1,4 @@ -import { SimpleTranslationEntries } from "#app/interfaces/locales"; - -export const voucher: SimpleTranslationEntries = { +{ "vouchers": "兌換券", "eggVoucher": "初級扭蛋券", "eggVoucherPlus": "中級扭蛋券", @@ -8,4 +6,4 @@ export const voucher: SimpleTranslationEntries = { "eggVoucherGold": "黃金扭蛋券", "locked": "鎖定", "defeatTrainer": "你打敗了{{trainerName}}" -} as const; +} \ No newline at end of file diff --git a/src/locales/zh_TW/weather.ts b/src/locales/zh_TW/weather.json similarity index 56% rename from src/locales/zh_TW/weather.ts rename to src/locales/zh_TW/weather.json index bfc5e0998dc..b20975374ea 100644 --- a/src/locales/zh_TW/weather.ts +++ b/src/locales/zh_TW/weather.json @@ -1,66 +1,31 @@ -import { SimpleTranslationEntries } from "#app/interfaces/locales"; - -/** - * The weather namespace holds text displayed when weather is active during a battle - */ -export const weather: SimpleTranslationEntries = { +{ "sunnyStartMessage": "日照變強了!", "sunnyLapseMessage": "日照很強。", "sunnyClearMessage": "日照復原了。", - "rainStartMessage": "下大雨了!", "rainLapseMessage": "雨繼續下。", "rainClearMessage": "雨停了。", - "sandstormStartMessage": "開始刮沙暴了!", "sandstormLapseMessage": "沙暴肆虐。", "sandstormClearMessage": "沙暴停止了。", "sandstormDamageMessage": "沙暴襲擊了{{pokemonNameWithAffix}}!", - "hailStartMessage": "開始下冰雹了!", "hailLapseMessage": "冰雹繼續肆虐。", "hailClearMessage": "冰雹不再下了。", "hailDamageMessage": "冰雹襲擊了{{pokemonNameWithAffix}}!", - "snowStartMessage": "開始下雪了!", "snowLapseMessage": "雪繼續下。", "snowClearMessage": "雪停了。", - "fogStartMessage": "起霧了!", "fogLapseMessage": "霧很濃。", "fogClearMessage": "霧散了。", - "heavyRainStartMessage": "開始下起了暴雨!", "heavyRainLapseMessage": "暴雨勢頭不減。", "heavyRainClearMessage": "暴雨停了。", - "harshSunStartMessage": "日照變得非常強了!", "harshSunLapseMessage": "強日照勢頭不減。", "harshSunClearMessage": "日照復原了。", - "strongWindsStartMessage": "吹起了神秘的亂流!", "strongWindsLapseMessage": "神秘的亂流勢頭不減。", - "strongWindsEffectMessage": "The mysterious air current weakened the attack!", "strongWindsClearMessage": "神秘的亂流停止了。" -}; - -export const terrain: SimpleTranslationEntries = { - "misty": "薄霧", - "mistyStartMessage": "腳下霧氣繚繞!", - "mistyClearMessage": "腳下的霧氣消失不見了!", - "mistyBlockMessage": "{{pokemonNameWithAffix}}正受到薄霧場地的保護!", - - "electric": "電氣", - "electricStartMessage": "腳下電流飛閃!", - "electricClearMessage": "腳下的電流消失了!", - - "grassy": "青草", - "grassyStartMessage": "腳下青草如茵!", - "grassyClearMessage": "腳下的青草消失不見了!", - - "psychic": "精神", - "psychicStartMessage": "腳下傳來了奇妙的感覺!", - "psychicClearMessage": "腳下的奇妙感覺消失了!", - - "defaultBlockMessage": "{{pokemonNameWithAffix}}正受到{{terrainName}}的保護!" -}; +} \ No newline at end of file diff --git a/src/main.ts b/src/main.ts index 41cd68afc1e..8a69d3f1b72 100644 --- a/src/main.ts +++ b/src/main.ts @@ -73,75 +73,13 @@ const config: Phaser.Types.Core.GameConfig = { /** * Sets this object's position relative to another object with a given offset - * @param guideObject {@linkcode Phaser.GameObjects.GameObject} to base the position off of - * @param x The relative x position - * @param y The relative y position */ -const setPositionRelative = function (guideObject: any, x: number, y: number) { +const setPositionRelative = function (guideObject: Phaser.GameObjects.GameObject, x: number, y: number) { const offsetX = guideObject.width * (-0.5 + (0.5 - guideObject.originX)); const offsetY = guideObject.height * (-0.5 + (0.5 - guideObject.originY)); this.setPosition(guideObject.x + offsetX + x, guideObject.y + offsetY + y); }; -declare module "phaser" { - namespace GameObjects { - interface Container { - /** - * Sets this object's position relative to another object with a given offset - * @param guideObject {@linkcode Phaser.GameObjects.GameObject} to base the position off of - * @param x The relative x position - * @param y The relative y position - */ - setPositionRelative(guideObject: any, x: number, y: number): void; - } - interface Sprite { - /** - * Sets this object's position relative to another object with a given offset - * @param guideObject {@linkcode Phaser.GameObjects.GameObject} to base the position off of - * @param x The relative x position - * @param y The relative y position - */ - setPositionRelative(guideObject: any, x: number, y: number): void; - } - interface Image { - /** - * Sets this object's position relative to another object with a given offset - * @param guideObject {@linkcode Phaser.GameObjects.GameObject} to base the position off of - * @param x The relative x position - * @param y The relative y position - */ - setPositionRelative(guideObject: any, x: number, y: number): void; - } - interface NineSlice { - /** - * Sets this object's position relative to another object with a given offset - * @param guideObject {@linkcode Phaser.GameObjects.GameObject} to base the position off of - * @param x The relative x position - * @param y The relative y position - */ - setPositionRelative(guideObject: any, x: number, y: number): void; - } - interface Text { - /** - * Sets this object's position relative to another object with a given offset - * @param guideObject {@linkcode Phaser.GameObjects.GameObject} to base the position off of - * @param x The relative x position - * @param y The relative y position - */ - setPositionRelative(guideObject: any, x: number, y: number): void; - } - interface Rectangle { - /** - * Sets this object's position relative to another object with a given offset - * @param guideObject {@linkcode Phaser.GameObjects.GameObject} to base the position off of - * @param x The relative x position - * @param y The relative y position - */ - setPositionRelative(guideObject: any, x: number, y: number): void; - } - } -} - Phaser.GameObjects.Container.prototype.setPositionRelative = setPositionRelative; Phaser.GameObjects.Sprite.prototype.setPositionRelative = setPositionRelative; Phaser.GameObjects.Image.prototype.setPositionRelative = setPositionRelative; diff --git a/src/modifier/modifier-type.ts b/src/modifier/modifier-type.ts index 365fc433d2f..3afeb79ff2b 100644 --- a/src/modifier/modifier-type.ts +++ b/src/modifier/modifier-type.ts @@ -57,7 +57,7 @@ export class ModifierType { this.localeKey = localeKey!; // TODO: is this bang correct? this.iconImage = iconImage!; // TODO: is this bang correct? this.group = group!; // TODO: is this bang correct? - this.soundName = soundName ?? "restore"; + this.soundName = soundName ?? "se/restore"; this.newModifierFunc = newModifierFunc; } @@ -169,7 +169,7 @@ class AddPokeballModifierType extends ModifierType { private count: integer; constructor(iconImage: string, pokeballType: PokeballType, count: integer) { - super("", iconImage, (_type, _args) => new Modifiers.AddPokeballModifier(this, pokeballType, count), "pb", "pb_bounce_1"); + super("", iconImage, (_type, _args) => new Modifiers.AddPokeballModifier(this, pokeballType, count), "pb", "se/pb_bounce_1"); this.pokeballType = pokeballType; this.count = count; } @@ -677,7 +677,7 @@ export class MoneyRewardModifierType extends ModifierType { private moneyMultiplierDescriptorKey: string; constructor(localeKey: string, iconImage: string, moneyMultiplier: number, moneyMultiplierDescriptorKey: string) { - super(localeKey, iconImage, (_type, _args) => new Modifiers.MoneyRewardModifier(this, moneyMultiplier), "money", "buy"); + super(localeKey, iconImage, (_type, _args) => new Modifiers.MoneyRewardModifier(this, moneyMultiplier), "money", "se/buy"); this.moneyMultiplier = moneyMultiplier; this.moneyMultiplierDescriptorKey = moneyMultiplierDescriptorKey; @@ -791,10 +791,10 @@ export class EvolutionItemModifierType extends PokemonModifierType implements Ge super("", EvolutionItem[evolutionItem].toLowerCase(), (_type, args) => new Modifiers.EvolutionItemModifier(this, (args[0] as PlayerPokemon).id), (pokemon: PlayerPokemon) => { if (pokemonEvolutions.hasOwnProperty(pokemon.species.speciesId) && pokemonEvolutions[pokemon.species.speciesId].filter(e => e.item === this.evolutionItem - && (!e.condition || e.condition.predicate(pokemon))).length && (pokemon.getFormKey() !== SpeciesFormKey.GIGANTAMAX)) { + && (!e.condition || e.condition.predicate(pokemon)) && (e.preFormKey === null || e.preFormKey === pokemon.getFormKey())).length && (pokemon.getFormKey() !== SpeciesFormKey.GIGANTAMAX)) { return null; } else if (pokemon.isFusion() && pokemon.fusionSpecies && pokemonEvolutions.hasOwnProperty(pokemon.fusionSpecies.speciesId) && pokemonEvolutions[pokemon.fusionSpecies.speciesId].filter(e => e.item === this.evolutionItem - && (!e.condition || e.condition.predicate(pokemon))).length && (pokemon.getFusionFormKey() !== SpeciesFormKey.GIGANTAMAX)) { + && (!e.condition || e.condition.predicate(pokemon)) && (e.preFormKey === null || e.preFormKey === pokemon.getFusionFormKey())).length && (pokemon.getFusionFormKey() !== SpeciesFormKey.GIGANTAMAX)) { return null; } @@ -829,7 +829,7 @@ export class FormChangeItemModifierType extends PokemonModifierType implements G // Make sure the Pokemon has alternate forms if (pokemonFormChanges.hasOwnProperty(pokemon.species.speciesId) // Get all form changes for this species with an item trigger, including any compound triggers - && pokemonFormChanges[pokemon.species.speciesId].filter(fc => fc.trigger.hasTriggerType(SpeciesFormChangeItemTrigger)) + && pokemonFormChanges[pokemon.species.speciesId].filter(fc => fc.trigger.hasTriggerType(SpeciesFormChangeItemTrigger) && (fc.preFormKey === pokemon.getFormKey())) // Returns true if any form changes match this item .map(fc => fc.findTrigger(SpeciesFormChangeItemTrigger) as SpeciesFormChangeItemTrigger) .flat().flatMap(fc => fc.item).includes(this.formChangeItem) @@ -1053,7 +1053,8 @@ class FormChangeItemModifierTypeGenerator extends ModifierTypeGenerator { const formChanges = pokemonFormChanges[p.species.speciesId]; let formChangeItemTriggers = formChanges.filter(fc => ((fc.formKey.indexOf(SpeciesFormKey.MEGA) === -1 && fc.formKey.indexOf(SpeciesFormKey.PRIMAL) === -1) || party[0].scene.getModifiers(Modifiers.MegaEvolutionAccessModifier).length) && ((fc.formKey.indexOf(SpeciesFormKey.GIGANTAMAX) === -1 && fc.formKey.indexOf(SpeciesFormKey.ETERNAMAX) === -1) || party[0].scene.getModifiers(Modifiers.GigantamaxAccessModifier).length) - && (!fc.conditions.length || fc.conditions.filter(cond => cond instanceof SpeciesFormChangeCondition && cond.predicate(p)).length)) + && (!fc.conditions.length || fc.conditions.filter(cond => cond instanceof SpeciesFormChangeCondition && cond.predicate(p)).length) + && (fc.preFormKey === p.getFormKey())) .map(fc => fc.findTrigger(SpeciesFormChangeItemTrigger) as SpeciesFormChangeItemTrigger) .filter(t => t && t.active && !p.scene.findModifier(m => m instanceof Modifiers.PokemonFormChangeItemModifier && m.pokemonId === p.id && m.formChangeItem === t.item)); @@ -1461,7 +1462,7 @@ export const modifierTypes = { VOUCHER_PLUS: () => new AddVoucherModifierType(VoucherType.PLUS, 1), VOUCHER_PREMIUM: () => new AddVoucherModifierType(VoucherType.PREMIUM, 1), - GOLDEN_POKEBALL: () => new ModifierType("modifierType:ModifierType.GOLDEN_POKEBALL", "pb_gold", (type, _args) => new Modifiers.ExtraModifierModifier(type), undefined, "pb_bounce_1"), + GOLDEN_POKEBALL: () => new ModifierType("modifierType:ModifierType.GOLDEN_POKEBALL", "pb_gold", (type, _args) => new Modifiers.ExtraModifierModifier(type), undefined, "se/pb_bounce_1"), ENEMY_DAMAGE_BOOSTER: () => new ModifierType("modifierType:ModifierType.ENEMY_DAMAGE_BOOSTER", "wl_item_drop", (type, _args) => new Modifiers.EnemyDamageBoosterModifier(type, 5)), ENEMY_DAMAGE_REDUCTION: () => new ModifierType("modifierType:ModifierType.ENEMY_DAMAGE_REDUCTION", "wl_guard_spec", (type, _args) => new Modifiers.EnemyDamageReducerModifier(type, 2.5)), diff --git a/src/modifier/modifier.ts b/src/modifier/modifier.ts index 8a6598f5849..99f4540f493 100644 --- a/src/modifier/modifier.ts +++ b/src/modifier/modifier.ts @@ -1160,7 +1160,7 @@ export class TurnHealModifier extends PokemonHeldItemModifier { if (!pokemon.isFullHp()) { const scene = pokemon.scene; scene.unshiftPhase(new PokemonHealPhase(scene, pokemon.getBattlerIndex(), - Math.max(Math.floor(pokemon.getMaxHp() / 16) * this.stackCount, 1), i18next.t("modifier:turnHealApply", { pokemonNameWithAffix: getPokemonNameWithAffix(pokemon), typeName: this.type.name }), true)); + Utils.toDmgValue(pokemon.getMaxHp() / 16) * this.stackCount, i18next.t("modifier:turnHealApply", { pokemonNameWithAffix: getPokemonNameWithAffix(pokemon), typeName: this.type.name }), true)); return true; } @@ -1251,7 +1251,7 @@ export class HitHealModifier extends PokemonHeldItemModifier { if (pokemon.turnData.damageDealt && !pokemon.isFullHp()) { const scene = pokemon.scene; scene.unshiftPhase(new PokemonHealPhase(scene, pokemon.getBattlerIndex(), - Math.max(Math.floor(pokemon.turnData.damageDealt / 8) * this.stackCount, 1), i18next.t("modifier:hitHealApply", { pokemonNameWithAffix: getPokemonNameWithAffix(pokemon), typeName: this.type.name }), true)); + Utils.toDmgValue(pokemon.turnData.damageDealt / 8) * this.stackCount, i18next.t("modifier:hitHealApply", { pokemonNameWithAffix: getPokemonNameWithAffix(pokemon), typeName: this.type.name }), true)); } return true; @@ -1386,7 +1386,7 @@ export class PokemonInstantReviveModifier extends PokemonHeldItemModifier { const pokemon = args[0] as Pokemon; pokemon.scene.unshiftPhase(new PokemonHealPhase(pokemon.scene, pokemon.getBattlerIndex(), - Math.max(Math.floor(pokemon.getMaxHp() / 2), 1), i18next.t("modifier:pokemonInstantReviveApply", { pokemonNameWithAffix: getPokemonNameWithAffix(pokemon), typeName: this.type.name }), false, false, true)); + Utils.toDmgValue(pokemon.getMaxHp() / 2), i18next.t("modifier:pokemonInstantReviveApply", { pokemonNameWithAffix: getPokemonNameWithAffix(pokemon), typeName: this.type.name }), false, false, true)); pokemon.resetStatus(true, false, true); return true; diff --git a/src/overrides.ts b/src/overrides.ts index 8b3d628e05e..32ff116f41d 100644 --- a/src/overrides.ts +++ b/src/overrides.ts @@ -46,14 +46,14 @@ class DefaultOverrides { readonly SEED_OVERRIDE: string = ""; readonly WEATHER_OVERRIDE: WeatherType = WeatherType.NONE; readonly BATTLE_TYPE_OVERRIDE: "double" | "single" | null = null; - readonly STARTING_WAVE_OVERRIDE: integer = 0; + readonly STARTING_WAVE_OVERRIDE: number = 0; readonly STARTING_BIOME_OVERRIDE: Biome = Biome.TOWN; readonly ARENA_TINT_OVERRIDE: TimeOfDay | null = null; /** Multiplies XP gained by this value including 0. Set to null to ignore the override */ readonly XP_MULTIPLIER_OVERRIDE: number | null = null; readonly NEVER_CRIT_OVERRIDE: boolean = false; /** default 1000 */ - readonly STARTING_MONEY_OVERRIDE: integer = 0; + readonly STARTING_MONEY_OVERRIDE: number = 0; /** Sets all shop item prices to 0 */ readonly WAIVE_SHOP_FEES_OVERRIDE: boolean = false; /** Sets reroll price to 0 */ @@ -86,14 +86,14 @@ class DefaultOverrides { readonly STARTER_FORM_OVERRIDES: Partial> = {}; /** default 5 or 20 for Daily */ - readonly STARTING_LEVEL_OVERRIDE: integer = 0; + readonly STARTING_LEVEL_OVERRIDE: number = 0; /** * SPECIES OVERRIDE * will only apply to the first starter in your party or each enemy pokemon * default is 0 to not override * @example SPECIES_OVERRIDE = Species.Bulbasaur; */ - readonly STARTER_SPECIES_OVERRIDE: Species | integer = 0; + readonly STARTER_SPECIES_OVERRIDE: Species | number = 0; readonly ABILITY_OVERRIDE: Abilities = Abilities.NONE; readonly PASSIVE_ABILITY_OVERRIDE: Abilities = Abilities.NONE; readonly STATUS_OVERRIDE: StatusEffect = StatusEffect.NONE; @@ -105,7 +105,7 @@ class DefaultOverrides { // -------------------------- // OPPONENT / ENEMY OVERRIDES // -------------------------- - readonly OPP_SPECIES_OVERRIDE: Species | integer = 0; + readonly OPP_SPECIES_OVERRIDE: Species | number = 0; readonly OPP_LEVEL_OVERRIDE: number = 0; readonly OPP_ABILITY_OVERRIDE: Abilities = Abilities.NONE; readonly OPP_PASSIVE_ABILITY_OVERRIDE: Abilities = Abilities.NONE; @@ -114,7 +114,8 @@ class DefaultOverrides { readonly OPP_MOVESET_OVERRIDE: Array = []; readonly OPP_SHINY_OVERRIDE: boolean = false; readonly OPP_VARIANT_OVERRIDE: Variant = 0; - readonly OPP_IVS_OVERRIDE: integer | integer[] = []; + readonly OPP_IVS_OVERRIDE: number | number[] = []; + readonly OPP_FORM_OVERRIDES: Partial> = {}; // ------------- // EGG OVERRIDES diff --git a/src/phases/attempt-capture-phase.ts b/src/phases/attempt-capture-phase.ts index 3c165a25157..72995c0f006 100644 --- a/src/phases/attempt-capture-phase.ts +++ b/src/phases/attempt-capture-phase.ts @@ -54,7 +54,7 @@ export class AttemptCapturePhase extends PokemonPhase { this.pokeball.setOrigin(0.5, 0.625); this.scene.field.add(this.pokeball); - this.scene.playSound("pb_throw"); + this.scene.playSound("se/pb_throw"); this.scene.time.delayedCall(300, () => { this.scene.field.moveBelow(this.pokeball as Phaser.GameObjects.GameObject, pokemon); }); @@ -67,7 +67,7 @@ export class AttemptCapturePhase extends PokemonPhase { onComplete: () => { this.pokeball.setTexture("pb", `${pokeballAtlasKey}_opening`); this.scene.time.delayedCall(17, () => this.pokeball.setTexture("pb", `${pokeballAtlasKey}_open`)); - this.scene.playSound("pb_rel"); + this.scene.playSound("se/pb_rel"); pokemon.tint(getPokeballTintColor(this.pokeballType)); addPokeballOpenParticles(this.scene, this.pokeball.x, this.pokeball.y, this.pokeballType); @@ -81,7 +81,7 @@ export class AttemptCapturePhase extends PokemonPhase { onComplete: () => { this.pokeball.setTexture("pb", `${pokeballAtlasKey}_opening`); pokemon.setVisible(false); - this.scene.playSound("pb_catch"); + this.scene.playSound("se/pb_catch"); this.scene.time.delayedCall(17, () => this.pokeball.setTexture("pb", `${pokeballAtlasKey}`)); const doShake = () => { @@ -109,13 +109,13 @@ export class AttemptCapturePhase extends PokemonPhase { this.failCatch(shakeCount); } else if (shakeCount++ < 3) { if (pokeballMultiplier === -1 || pokemon.randSeedInt(65536) < y) { - this.scene.playSound("pb_move"); + this.scene.playSound("se/pb_move"); } else { shakeCounter.stop(); this.failCatch(shakeCount); } } else { - this.scene.playSound("pb_lock"); + this.scene.playSound("se/pb_lock"); addPokeballCaptureStars(this.scene, this.pokeball); const pbTint = this.scene.add.sprite(this.pokeball.x, this.pokeball.y, "pb", "pb"); @@ -156,7 +156,7 @@ export class AttemptCapturePhase extends PokemonPhase { failCatch(shakeCount: integer) { const pokemon = this.getPokemon(); - this.scene.playSound("pb_rel"); + this.scene.playSound("se/pb_rel"); pokemon.setY(this.originalY); if (pokemon.status?.effect !== StatusEffect.SLEEP) { pokemon.cry(pokemon.getHpRatio() > 0.25 ? undefined : { rate: 0.85 }); diff --git a/src/phases/attempt-run-phase.ts b/src/phases/attempt-run-phase.ts index 9781ca6d360..817801985d2 100644 --- a/src/phases/attempt-run-phase.ts +++ b/src/phases/attempt-run-phase.ts @@ -23,10 +23,10 @@ export class AttemptRunPhase extends PokemonPhase { const enemySpeed = enemyField.reduce((total: integer, enemyPokemon: Pokemon) => total + enemyPokemon.getStat(Stat.SPD), 0) / enemyField.length; const escapeChance = new Utils.IntegerHolder((((playerPokemon.getStat(Stat.SPD) * 128) / enemySpeed) + (30 * this.scene.currentBattle.escapeAttempts++)) % 256); - applyAbAttrs(RunSuccessAbAttr, playerPokemon, null, escapeChance); + applyAbAttrs(RunSuccessAbAttr, playerPokemon, null, false, escapeChance); if (playerPokemon.randSeedInt(256) < escapeChance.value) { - this.scene.playSound("flee"); + this.scene.playSound("se/flee"); this.scene.queueMessage(i18next.t("battle:runAwaySuccess"), null, true, 500); this.scene.tweens.add({ diff --git a/src/phases/command-phase.ts b/src/phases/command-phase.ts index 5d466e5d3b6..68ede826d95 100644 --- a/src/phases/command-phase.ts +++ b/src/phases/command-phase.ts @@ -189,7 +189,7 @@ export class CommandPhase extends FieldPhase { const batonPass = isSwitch && args[0] as boolean; const trappedAbMessages: string[] = []; if (!batonPass) { - enemyField.forEach(enemyPokemon => applyCheckTrappedAbAttrs(CheckTrappedAbAttr, enemyPokemon, trapped, playerPokemon, true, trappedAbMessages)); + enemyField.forEach(enemyPokemon => applyCheckTrappedAbAttrs(CheckTrappedAbAttr, enemyPokemon, trapped, playerPokemon, trappedAbMessages, true)); } if (batonPass || (!trapTag && !trapped.value)) { this.scene.currentBattle.turnCommands[this.fieldIndex] = isSwitch diff --git a/src/phases/damage-phase.ts b/src/phases/damage-phase.ts index 9f63ce35cf2..029c1e717f1 100644 --- a/src/phases/damage-phase.ts +++ b/src/phases/damage-phase.ts @@ -42,14 +42,14 @@ export class DamagePhase extends PokemonPhase { applyDamage() { switch (this.damageResult) { case HitResult.EFFECTIVE: - this.scene.playSound("hit"); + this.scene.playSound("se/hit"); break; case HitResult.SUPER_EFFECTIVE: case HitResult.ONE_HIT_KO: - this.scene.playSound("hit_strong"); + this.scene.playSound("se/hit_strong"); break; case HitResult.NOT_VERY_EFFECTIVE: - this.scene.playSound("hit_weak"); + this.scene.playSound("se/hit_weak"); break; } diff --git a/src/phases/egg-hatch-phase.ts b/src/phases/egg-hatch-phase.ts index 6f3f0b37905..a5b0252d4de 100644 --- a/src/phases/egg-hatch-phase.ts +++ b/src/phases/egg-hatch-phase.ts @@ -178,7 +178,7 @@ export class EggHatchPhase extends Phase { if (this.hatched) { return; } - this.scene.playSound("egg_crack"); + this.scene.playSound("se/egg_crack"); this.doSpray(4); this.eggCrackSprite.setFrame("3"); this.scene.time.delayedCall(125, () => this.eggCrackSprite.setFrame("4")); @@ -220,7 +220,7 @@ export class EggHatchPhase extends Phase { if (count === undefined) { count = 0; } - this.scene.playSound("pb_move"); + this.scene.playSound("se/pb_move"); this.scene.tweens.add({ targets: this.eggContainer, x: `-=${intensity / (count ? 1 : 2)}`, @@ -281,7 +281,7 @@ export class EggHatchPhase extends Phase { SoundFade.fadeOut(this.scene, this.evolutionBgm, Utils.fixedInt(100)); } for (let e = 0; e < 5; e++) { - this.scene.time.delayedCall(Utils.fixedInt(375 * e), () => this.scene.playSound("egg_hatch", { volume: 1 - (e * 0.2) })); + this.scene.time.delayedCall(Utils.fixedInt(375 * e), () => this.scene.playSound("se/egg_hatch", { volume: 1 - (e * 0.2) })); } this.eggLightraysOverlay.setVisible(true); this.eggLightraysOverlay.play("egg_lightrays"); @@ -334,7 +334,7 @@ export class EggHatchPhase extends Phase { if (isShiny) { this.scene.time.delayedCall(Utils.fixedInt(500), () => { this.pokemonShinySparkle.play(`sparkle${this.pokemon.variant ? `_${this.pokemon.variant + 1}` : ""}`); - this.scene.playSound("sparkle"); + this.scene.playSound("se/sparkle"); }); } this.scene.time.delayedCall(Utils.fixedInt(!this.skipped ? !isShiny ? 1250 : 1750 : !isShiny ? 250 : 750), () => { diff --git a/src/phases/encounter-phase.ts b/src/phases/encounter-phase.ts index 739bb1d93f1..07bfd72a8bf 100644 --- a/src/phases/encounter-phase.ts +++ b/src/phases/encounter-phase.ts @@ -1,23 +1,23 @@ -import BattleScene from "#app/battle-scene.js"; -import { BattleType, BattlerIndex } from "#app/battle.js"; -import { applyAbAttrs, SyncEncounterNatureAbAttr } from "#app/data/ability.js"; -import { getCharVariantFromDialogue } from "#app/data/dialogue.js"; -import { TrainerSlot } from "#app/data/trainer-config.js"; -import { getRandomWeatherType } from "#app/data/weather.js"; -import { BattleSpec } from "#app/enums/battle-spec.js"; -import { PlayerGender } from "#app/enums/player-gender.js"; -import { Species } from "#app/enums/species.js"; -import { EncounterPhaseEvent } from "#app/events/battle-scene.js"; -import Pokemon, { FieldPosition } from "#app/field/pokemon.js"; -import { getPokemonNameWithAffix } from "#app/messages.js"; -import { regenerateModifierPoolThresholds, ModifierPoolType } from "#app/modifier/modifier-type.js"; -import { IvScannerModifier, TurnHeldItemTransferModifier } from "#app/modifier/modifier.js"; -import { achvs } from "#app/system/achv.js"; -import { handleTutorial, Tutorial } from "#app/tutorial.js"; -import { Mode } from "#app/ui/ui.js"; +import BattleScene from "#app/battle-scene"; +import { BattleType, BattlerIndex } from "#app/battle"; +import { applyAbAttrs, SyncEncounterNatureAbAttr } from "#app/data/ability"; +import { getCharVariantFromDialogue } from "#app/data/dialogue"; +import { TrainerSlot } from "#app/data/trainer-config"; +import { getRandomWeatherType } from "#app/data/weather"; +import { BattleSpec } from "#app/enums/battle-spec"; +import { PlayerGender } from "#app/enums/player-gender"; +import { Species } from "#app/enums/species"; +import { EncounterPhaseEvent } from "#app/events/battle-scene"; +import Pokemon, { FieldPosition } from "#app/field/pokemon"; +import { getPokemonNameWithAffix } from "#app/messages"; +import { regenerateModifierPoolThresholds, ModifierPoolType } from "#app/modifier/modifier-type"; +import { IvScannerModifier, TurnHeldItemTransferModifier } from "#app/modifier/modifier"; +import { achvs } from "#app/system/achv"; +import { handleTutorial, Tutorial } from "#app/tutorial"; +import { Mode } from "#app/ui/ui"; import i18next from "i18next"; import { BattlePhase } from "./battle-phase"; -import * as Utils from "#app/utils.js"; +import * as Utils from "#app/utils"; import { CheckSwitchPhase } from "./check-switch-phase"; import { GameOverPhase } from "./game-over-phase"; import { PostSummonPhase } from "./post-summon-phase"; @@ -67,7 +67,7 @@ export class EncounterPhase extends BattlePhase { battle.enemyParty[e].ivs = new Array(6).fill(31); } this.scene.getParty().slice(0, !battle.double ? 1 : 2).reverse().forEach(playerPokemon => { - applyAbAttrs(SyncEncounterNatureAbAttr, playerPokemon, null, battle.enemyParty[e]); + applyAbAttrs(SyncEncounterNatureAbAttr, playerPokemon, null, false, battle.enemyParty[e]); }); } } @@ -358,22 +358,29 @@ export class EncounterPhase extends BattlePhase { case BattleSpec.FINAL_BOSS: const enemy = this.scene.getEnemyPokemon(); this.scene.ui.showText(this.getEncounterMessage(), null, () => { - const count = 5643853 + this.scene.gameData.gameStats.classicSessionsPlayed; - //The two lines below check if English ordinals (1st, 2nd, 3rd, Xth) are used and determine which one to use. - //Otherwise, it defaults to an empty string. - //As of 08-07-24: Spanish and Italian default to the English translations - const ordinalUse = ["en", "es", "it"]; - const currentLanguage = i18next.resolvedLanguage ?? "en"; - const ordinalIndex = (ordinalUse.includes(currentLanguage)) ? ["st", "nd", "rd"][((count + 90) % 100 - 10) % 10 - 1] ?? "th" : ""; - const cycleCount = count.toLocaleString() + ordinalIndex; - const encounterDialogue = i18next.t(`${(this.scene.gameData.gender === PlayerGender.FEMALE) ? "PGF" : "PGM"}battleSpecDialogue:encounter`, {cycleCount: cycleCount}); - this.scene.ui.showDialogue(encounterDialogue, enemy?.species.name, null, () => { + const localizationKey = "battleSpecDialogue:encounter"; + if (this.scene.ui.shouldSkipDialogue(localizationKey)) { + // Logging mirrors logging found in dialogue-ui-handler + console.log(`Dialogue ${localizationKey} skipped`); this.doEncounterCommon(false); - }); + } else { + const count = 5643853 + this.scene.gameData.gameStats.classicSessionsPlayed; + // The line below checks if an English ordinal is necessary or not based on whether an entry for encounterLocalizationKey exists in the language or not. + const ordinalUsed = !i18next.exists(localizationKey, {fallbackLng: []}) || i18next.resolvedLanguage === "en" ? i18next.t("battleSpecDialogue:key", { count: count, ordinal: true }) : ""; + const cycleCount = count.toLocaleString() + ordinalUsed; + const genderIndex = this.scene.gameData.gender ?? PlayerGender.UNSET; + const genderStr = PlayerGender[genderIndex].toLowerCase(); + const encounterDialogue = i18next.t(localizationKey, { context: genderStr, cycleCount: cycleCount }); + if (!this.scene.gameData.getSeenDialogues()[localizationKey]) { + this.scene.gameData.saveSeenDialogue(localizationKey); + } + this.scene.ui.showDialogue(encounterDialogue, enemy?.species.name, null, () => { + this.doEncounterCommon(false); + }); + } }, 1500, true); return true; } - return false; } } diff --git a/src/phases/enemy-command-phase.ts b/src/phases/enemy-command-phase.ts index d7f553681c2..5277b2666c7 100644 --- a/src/phases/enemy-command-phase.ts +++ b/src/phases/enemy-command-phase.ts @@ -47,7 +47,7 @@ export class EnemyCommandPhase extends FieldPhase { const trapTag = enemyPokemon.findTag(t => t instanceof TrappedTag) as TrappedTag; const trapped = new Utils.BooleanHolder(false); - opponents.forEach(playerPokemon => applyCheckTrappedAbAttrs(CheckTrappedAbAttr, playerPokemon, trapped, enemyPokemon, true, [])); + opponents.forEach(playerPokemon => applyCheckTrappedAbAttrs(CheckTrappedAbAttr, playerPokemon, trapped, enemyPokemon, [""], true)); if (!trapTag && !trapped.value) { const partyMemberScores = trainer.getPartyMemberMatchupScores(enemyPokemon.trainerSlot, true); diff --git a/src/phases/evolution-phase.ts b/src/phases/evolution-phase.ts index 398450ec693..0c3c2fa5bcf 100644 --- a/src/phases/evolution-phase.ts +++ b/src/phases/evolution-phase.ts @@ -157,7 +157,7 @@ export class EvolutionPhase extends Phase { this.evolutionBg.setVisible(true); this.evolutionBg.play(); }); - this.scene.playSound("charge"); + this.scene.playSound("se/charge"); this.doSpiralUpward(); this.scene.tweens.addCounter({ from: 0, @@ -169,7 +169,7 @@ export class EvolutionPhase extends Phase { onComplete: () => { this.pokemonSprite.setVisible(false); this.scene.time.delayedCall(1100, () => { - this.scene.playSound("beam"); + this.scene.playSound("se/beam"); this.doArcDownward(); this.scene.time.delayedCall(1500, () => { this.pokemonEvoTintSprite.setScale(0.25); @@ -214,7 +214,7 @@ export class EvolutionPhase extends Phase { return; } - this.scene.playSound("sparkle"); + this.scene.playSound("se/sparkle"); this.pokemonEvoSprite.setVisible(true); this.doCircleInward(); this.scene.time.delayedCall(900, () => { @@ -227,7 +227,7 @@ export class EvolutionPhase extends Phase { } this.scene.unshiftPhase(new EndEvolutionPhase(this.scene)); - this.scene.playSound("shine"); + this.scene.playSound("se/shine"); this.doSpray(); this.scene.tweens.add({ targets: this.evolutionOverlay, diff --git a/src/phases/faint-phase.ts b/src/phases/faint-phase.ts index 14727f992d2..66946d268cb 100644 --- a/src/phases/faint-phase.ts +++ b/src/phases/faint-phase.ts @@ -126,7 +126,7 @@ export class FaintPhase extends PokemonPhase { pokemon.addFriendship(-10); } pokemon.hideInfo(); - this.scene.playSound("faint"); + this.scene.playSound("se/faint"); this.scene.tweens.add({ targets: pokemon, duration: 500, diff --git a/src/phases/form-change-phase.ts b/src/phases/form-change-phase.ts index 88e0dd00ce1..33c1f8e8cef 100644 --- a/src/phases/form-change-phase.ts +++ b/src/phases/form-change-phase.ts @@ -68,7 +68,7 @@ export class FormChangePhase extends EvolutionPhase { this.evolutionBg.setVisible(true); this.evolutionBg.play(); }); - this.scene.playSound("charge"); + this.scene.playSound("se/charge"); this.doSpiralUpward(); this.scene.tweens.addCounter({ from: 0, @@ -80,13 +80,13 @@ export class FormChangePhase extends EvolutionPhase { onComplete: () => { this.pokemonSprite.setVisible(false); this.scene.time.delayedCall(1100, () => { - this.scene.playSound("beam"); + this.scene.playSound("se/beam"); this.doArcDownward(); this.scene.time.delayedCall(1000, () => { this.pokemonEvoTintSprite.setScale(0.25); this.pokemonEvoTintSprite.setVisible(true); this.doCycle(1, 1).then(_success => { - this.scene.playSound("sparkle"); + this.scene.playSound("se/sparkle"); this.pokemonEvoSprite.setVisible(true); this.doCircleInward(); this.scene.time.delayedCall(900, () => { @@ -95,7 +95,7 @@ export class FormChangePhase extends EvolutionPhase { this.scene.unshiftPhase(new EndEvolutionPhase(this.scene)); } - this.scene.playSound("shine"); + this.scene.playSound("se/shine"); this.doSpray(); this.scene.tweens.add({ targets: this.evolutionOverlay, diff --git a/src/phases/game-over-modifier-reward-phase.ts b/src/phases/game-over-modifier-reward-phase.ts index e2f4d134cba..c27659bf9d4 100644 --- a/src/phases/game-over-modifier-reward-phase.ts +++ b/src/phases/game-over-modifier-reward-phase.ts @@ -13,6 +13,7 @@ export class GameOverModifierRewardPhase extends ModifierRewardPhase { return new Promise(resolve => { const newModifier = this.modifierType.newModifier(); this.scene.addModifier(newModifier).then(() => { + // Sound loaded into game as is this.scene.playSound("level_up_fanfare"); this.scene.ui.setMode(Mode.MESSAGE); this.scene.ui.fadeIn(250).then(() => { diff --git a/src/phases/game-over-phase.ts b/src/phases/game-over-phase.ts index 4beed489f29..ebe58b20d3e 100644 --- a/src/phases/game-over-phase.ts +++ b/src/phases/game-over-phase.ts @@ -1,19 +1,19 @@ -import { clientSessionId } from "#app/account.js"; -import BattleScene from "#app/battle-scene.js"; -import { BattleType } from "#app/battle.js"; -import { miscDialogue, getCharVariantFromDialogue } from "#app/data/dialogue.js"; -import { pokemonEvolutions } from "#app/data/pokemon-evolutions.js"; -import PokemonSpecies, { getPokemonSpecies } from "#app/data/pokemon-species.js"; -import { trainerConfigs } from "#app/data/trainer-config.js"; -import { PlayerGender } from "#app/enums/player-gender.js"; -import { TrainerType } from "#app/enums/trainer-type.js"; -import Pokemon from "#app/field/pokemon.js"; -import { modifierTypes } from "#app/modifier/modifier-type.js"; -import { achvs, ChallengeAchv } from "#app/system/achv.js"; -import { Unlockables } from "#app/system/unlockables.js"; -import { Mode } from "#app/ui/ui.js"; +import { clientSessionId } from "#app/account"; +import BattleScene from "#app/battle-scene"; +import { BattleType } from "#app/battle"; +import { getCharVariantFromDialogue } from "#app/data/dialogue"; +import { pokemonEvolutions } from "#app/data/pokemon-evolutions"; +import PokemonSpecies, { getPokemonSpecies } from "#app/data/pokemon-species"; +import { trainerConfigs } from "#app/data/trainer-config"; +import { PlayerGender } from "#app/enums/player-gender"; +import { TrainerType } from "#app/enums/trainer-type"; +import Pokemon from "#app/field/pokemon"; +import { modifierTypes } from "#app/modifier/modifier-type"; +import { achvs, ChallengeAchv } from "#app/system/achv"; +import { Unlockables } from "#app/system/unlockables"; +import { Mode } from "#app/ui/ui"; import i18next from "i18next"; -import * as Utils from "#app/utils.js"; +import * as Utils from "#app/utils"; import { BattlePhase } from "./battle-phase"; import { CheckSwitchPhase } from "./check-switch-phase"; import { EncounterPhase } from "./encounter-phase"; @@ -23,6 +23,12 @@ import { SummonPhase } from "./summon-phase"; import { EndCardPhase } from "./end-card-phase"; import { PostGameOverPhase } from "./post-game-over-phase"; import { UnlockPhase } from "./unlock-phase"; +import { SessionSaveData } from "../system/game-data"; +import TrainerData from "../system/trainer-data"; +import PokemonData from "../system/pokemon-data"; +import PersistentModifierData from "../system/modifier-data"; +import ChallengeData from "../system/challenge-data"; +import ArenaData from "../system/arena-data"; export class GameOverPhase extends BattlePhase { private victory: boolean; @@ -98,6 +104,7 @@ export class GameOverPhase extends BattlePhase { this.scene.gameData.gameStats.dailyRunSessionsWon++; } } + this.scene.gameData.saveRunHistory(this.scene, this.getFinalSessionData(), this.victory); const fadeDuration = this.victory ? 10000 : 5000; this.scene.fadeOutBgm(fadeDuration, true); const activeBattlers = this.scene.getField().filter(p => p?.isActive(true)); @@ -129,12 +136,16 @@ export class GameOverPhase extends BattlePhase { }; if (this.victory && this.scene.gameMode.isClassic) { - const message = miscDialogue.ending[this.scene.gameData.gender === PlayerGender.FEMALE ? 0 : 1]; + const dialogueKey = "miscDialogue:ending"; - if (!this.scene.ui.shouldSkipDialogue(message)) { + if (!this.scene.ui.shouldSkipDialogue(dialogueKey)) { this.scene.ui.fadeIn(500).then(() => { - this.scene.charSprite.showCharacter(`rival_${this.scene.gameData.gender === PlayerGender.FEMALE ? "m" : "f"}`, getCharVariantFromDialogue(miscDialogue.ending[this.scene.gameData.gender === PlayerGender.FEMALE ? 0 : 1])).then(() => { - this.scene.ui.showDialogue(message, this.scene.gameData.gender === PlayerGender.FEMALE ? trainerConfigs[TrainerType.RIVAL].name : trainerConfigs[TrainerType.RIVAL].nameFemale, null, () => { + const genderIndex = this.scene.gameData.gender ?? PlayerGender.UNSET; + const genderStr = PlayerGender[genderIndex].toLowerCase(); + // Dialogue has to be retrieved so that the rival's expressions can be loaded and shown via getCharVariantFromDialogue + const dialogue = i18next.t(dialogueKey, { context: genderStr }); + this.scene.charSprite.showCharacter(`rival_${this.scene.gameData.gender === PlayerGender.FEMALE ? "m" : "f"}`, getCharVariantFromDialogue(dialogue)).then(() => { + this.scene.ui.showDialogue(dialogueKey, this.scene.gameData.gender === PlayerGender.FEMALE ? trainerConfigs[TrainerType.RIVAL].name : trainerConfigs[TrainerType.RIVAL].nameFemale, null, () => { this.scene.ui.fadeOut(500).then(() => { this.scene.charSprite.hide().then(() => { const endCardPhase = new EndCardPhase(this.scene); @@ -200,4 +211,32 @@ export class GameOverPhase extends BattlePhase { this.firstRibbons.push(getPokemonSpecies(pokemon.species.getRootSpeciesId(forStarter))); } } + + /** + * This function mirrors game-data.ts' getSessionSaveData() to update the session data to reflect any changes that occurred within the last wave + * This means that level ups, item usage, evolutions, etc. will all be accurately reflected. + * @returns {@linkCode SessionSaveData} an updated version of the wave's SessionSaveData that accurately reflects the events of the wave + */ + private getFinalSessionData(): SessionSaveData { + return { + seed: this.scene.seed, + playTime: this.scene.sessionPlayTime, + gameMode: this.scene.gameMode.modeId, + party: this.scene.getParty().map(p => new PokemonData(p)), + enemyParty: this.scene.getEnemyParty().map(p => new PokemonData(p)), + modifiers: this.scene.findModifiers(() => true).map(m => new PersistentModifierData(m, true)), + enemyModifiers: this.scene.findModifiers(() => true, false).map(m => new PersistentModifierData(m, false)), + arena: new ArenaData(this.scene.arena), + pokeballCounts: this.scene.pokeballCounts, + money: this.scene.money, + score: this.scene.score, + waveIndex: this.scene.currentBattle.waveIndex, + battleType: this.scene.currentBattle.battleType, + trainer: this.scene.currentBattle.battleType === BattleType.TRAINER ? new TrainerData(this.scene.currentBattle.trainer) : null, + gameVersion: this.scene.game.config.gameVersion, + timestamp: new Date().getTime(), + challenges: this.scene.gameMode.challenges.map(c => new ChallengeData(c)) + } as SessionSaveData; + } } + diff --git a/src/phases/learn-move-phase.ts b/src/phases/learn-move-phase.ts index e30fc0c3d10..5a9a16b6f5e 100644 --- a/src/phases/learn-move-phase.ts +++ b/src/phases/learn-move-phase.ts @@ -45,6 +45,7 @@ export class LearnMovePhase extends PlayerPartyMemberPokemonPhase { loadMoveAnimAssets(this.scene, [this.moveId], true) .then(() => { this.scene.ui.setMode(messageMode).then(() => { + // Sound loaded into game as is this.scene.playSound("level_up_fanfare"); this.scene.ui.showText(i18next.t("battle:learnMove", { pokemonName: getPokemonNameWithAffix(pokemon), moveName: move.name }), null, () => { this.scene.triggerPokemonFormChange(pokemon, SpeciesFormChangeMoveLearnedTrigger, true); diff --git a/src/phases/level-cap-phase.ts b/src/phases/level-cap-phase.ts index 4a07e7d131e..db59fbd6473 100644 --- a/src/phases/level-cap-phase.ts +++ b/src/phases/level-cap-phase.ts @@ -12,6 +12,7 @@ export class LevelCapPhase extends FieldPhase { super.start(); this.scene.ui.setMode(Mode.MESSAGE).then(() => { + // Sound loaded into game as is this.scene.playSound("level_up_fanfare"); this.scene.ui.showText(i18next.t("battle:levelCapUp", { levelCap: this.scene.getMaxExpLevel() }), null, () => this.end(), null, true); this.executeForAll(pokemon => pokemon.updateInfo(true)); diff --git a/src/phases/move-effect-phase.ts b/src/phases/move-effect-phase.ts index 175e8fc3bd9..8bfde0e82c9 100644 --- a/src/phases/move-effect-phase.ts +++ b/src/phases/move-effect-phase.ts @@ -75,7 +75,7 @@ export class MoveEffectPhase extends PokemonPhase { // Assume single target for multi hit applyMoveAttrs(MultiHitAttr, user, this.getTarget() ?? null, move, hitCount); // If Parental Bond is applicable, double the hit count - applyPreAttackAbAttrs(AddSecondStrikeAbAttr, user, null, move, targets.length, hitCount, new Utils.IntegerHolder(0)); + applyPreAttackAbAttrs(AddSecondStrikeAbAttr, user, null, move, false, targets.length, hitCount, new Utils.IntegerHolder(0)); // If Multi-Lens is applicable, multiply the hit count by 1 + the number of Multi-Lenses held by the user if (move instanceof AttackMove && !move.hasAttr(FixedDamageAttr)) { this.scene.applyModifiers(PokemonMultiHitModifier, user.isPlayer(), user, hitCount, new Utils.IntegerHolder(0)); @@ -328,8 +328,6 @@ export class MoveEffectPhase extends PokemonPhase { } end() { - const move = this.move.getMove(); - move.type = move.defaultType; const user = this.getUserPokemon(); /** * If this phase isn't for the invoked move's last strike, diff --git a/src/phases/move-phase.ts b/src/phases/move-phase.ts index b9656df856b..c446660b16f 100644 --- a/src/phases/move-phase.ts +++ b/src/phases/move-phase.ts @@ -65,7 +65,7 @@ export class MovePhase extends BattlePhase { if (!this.canMove()) { if (this.move.moveId && this.pokemon.summonData?.disabledMove === this.move.moveId) { - this.scene.queueMessage(`${this.move.getName()} is disabled!`); + this.scene.queueMessage(i18next.t("battle:moveDisabled", { moveName: this.move.getName() })); } if (this.pokemon.isActive(true) && this.move.ppUsed >= this.move.getMovePp()) { // if the move PP was reduced from Spite or otherwise, the move fails this.fail(); @@ -90,7 +90,7 @@ export class MovePhase extends BattlePhase { : null; if (moveTarget) { const oldTarget = moveTarget.value; - this.scene.getField(true).filter(p => p !== this.pokemon).forEach(p => applyAbAttrs(RedirectMoveAbAttr, p, null, this.move.moveId, moveTarget)); + this.scene.getField(true).filter(p => p !== this.pokemon).forEach(p => applyAbAttrs(RedirectMoveAbAttr, p, null, false, this.move.moveId, moveTarget)); this.pokemon.getOpponents().forEach(p => { const redirectTag = p.getTag(CenterOfAttentionTag) as CenterOfAttentionTag; if (redirectTag && (!redirectTag.powder || (!this.pokemon.isOfType(Type.GRASS) && !this.pokemon.hasAbility(Abilities.OVERCOAT)))) { diff --git a/src/phases/post-turn-status-effect-phase.ts b/src/phases/post-turn-status-effect-phase.ts index 8b533f2e90a..47db32303a5 100644 --- a/src/phases/post-turn-status-effect-phase.ts +++ b/src/phases/post-turn-status-effect-phase.ts @@ -34,7 +34,7 @@ export class PostTurnStatusEffectPhase extends PokemonPhase { break; case StatusEffect.BURN: damage.value = Math.max(pokemon.getMaxHp() >> 4, 1); - applyAbAttrs(ReduceBurnDamageAbAttr, pokemon, null, damage); + applyAbAttrs(ReduceBurnDamageAbAttr, pokemon, null, false, damage); break; } if (damage.value) { diff --git a/src/phases/select-modifier-phase.ts b/src/phases/select-modifier-phase.ts index 67ae904fb58..1c96d278d69 100644 --- a/src/phases/select-modifier-phase.ts +++ b/src/phases/select-modifier-phase.ts @@ -69,7 +69,7 @@ export class SelectModifierPhase extends BattlePhase { this.scene.updateMoneyText(); this.scene.animateMoneyChanged(false); } - this.scene.playSound("buy"); + this.scene.playSound("se/buy"); } break; case 1: @@ -128,7 +128,7 @@ export class SelectModifierPhase extends BattlePhase { this.scene.updateMoneyText(); this.scene.animateMoneyChanged(false); } - this.scene.playSound("buy"); + this.scene.playSound("se/buy"); (this.scene.ui.getHandler() as ModifierSelectUiHandler).updateCostText(); } else { this.scene.ui.playError(); @@ -205,7 +205,7 @@ export class SelectModifierPhase extends BattlePhase { return true; } - getRerollCost(typeOptions: ModifierTypeOption[], lockRarities: boolean): integer { + getRerollCost(typeOptions: ModifierTypeOption[], lockRarities: boolean): number { let baseValue = 0; if (Overrides.WAIVE_ROLL_FEE_OVERRIDE) { return baseValue; diff --git a/src/phases/stat-change-phase.ts b/src/phases/stat-change-phase.ts index 3469cc62942..856d0a33eea 100644 --- a/src/phases/stat-change-phase.ts +++ b/src/phases/stat-change-phase.ts @@ -68,7 +68,7 @@ export class StatChangePhase extends PokemonPhase { const levels = new Utils.IntegerHolder(this.levels); if (!this.ignoreAbilities) { - applyAbAttrs(StatChangeMultiplierAbAttr, pokemon, null, levels); + applyAbAttrs(StatChangeMultiplierAbAttr, pokemon, null, false, levels); } const battleStats = this.getPokemon().summonData.battleStats; @@ -90,7 +90,7 @@ export class StatChangePhase extends PokemonPhase { if (levels.value > 0 && this.canBeCopied) { for (const opponent of pokemon.getOpponents()) { - applyAbAttrs(StatChangeCopyAbAttr, opponent, null, this.stats, levels.value); + applyAbAttrs(StatChangeCopyAbAttr, opponent, null, false, this.stats, levels.value); } } @@ -134,7 +134,7 @@ export class StatChangePhase extends PokemonPhase { statSprite.setScale(6); statSprite.setOrigin(0.5, 1); - this.scene.playSound(`stat_${levels.value >= 1 ? "up" : "down"}`); + this.scene.playSound(`se/stat_${levels.value >= 1 ? "up" : "down"}`); statSprite.setMask(new Phaser.Display.Masks.BitmapMask(this.scene, pokemonMaskSprite ?? undefined)); @@ -222,10 +222,10 @@ export class StatChangePhase extends PokemonPhase { statsFragment = relLevelStats.length >= 5 ? i18next.t("battle:stats") : `${relLevelStats.slice(0, -1).map(s => getBattleStatName(s)).join(", ")}${relLevelStats.length > 2 ? "," : ""} ${i18next.t("battle:statsAnd")} ${getBattleStatName(relLevelStats[relLevelStats.length - 1])}`; - messages.push(getBattleStatLevelChangeDescription(getPokemonNameWithAffix(this.getPokemon()), statsFragment, Math.abs(parseInt(rl)), levels >= 1,relLevelStats.length)); + messages.push(getBattleStatLevelChangeDescription(getPokemonNameWithAffix(this.getPokemon()), statsFragment, Math.abs(parseInt(rl)), levels >= 1, relLevelStats.length)); } else { statsFragment = getBattleStatName(relLevelStats[0]); - messages.push(getBattleStatLevelChangeDescription(getPokemonNameWithAffix(this.getPokemon()), statsFragment, Math.abs(parseInt(rl)), levels >= 1,relLevelStats.length)); + messages.push(getBattleStatLevelChangeDescription(getPokemonNameWithAffix(this.getPokemon()), statsFragment, Math.abs(parseInt(rl)), levels >= 1, relLevelStats.length)); } }); diff --git a/src/phases/summon-phase.ts b/src/phases/summon-phase.ts index 50424170ea7..f65a2063d4c 100644 --- a/src/phases/summon-phase.ts +++ b/src/phases/summon-phase.ts @@ -127,7 +127,7 @@ export class SummonPhase extends PartyMemberPokemonPhase { angle: 1440, y: (this.player ? 132 : 86) + fpOffset[1], onComplete: () => { - this.scene.playSound("pb_rel"); + this.scene.playSound("se/pb_rel"); pokeball.destroy(); this.scene.add.existing(pokemon); this.scene.field.add(pokemon); diff --git a/src/phases/switch-summon-phase.ts b/src/phases/switch-summon-phase.ts index 3e401925cea..68dc8f8bf65 100644 --- a/src/phases/switch-summon-phase.ts +++ b/src/phases/switch-summon-phase.ts @@ -74,7 +74,7 @@ export class SwitchSummonPhase extends SummonPhase { pokemonName: getPokemonNameWithAffix(pokemon) }) ); - this.scene.playSound("pb_rel"); + this.scene.playSound("se/pb_rel"); pokemon.hideInfo(); pokemon.tint(getPokeballTintColor(pokemon.pokeball), 1, 250, "Sine.easeIn"); this.scene.tweens.add({ @@ -160,6 +160,8 @@ export class SwitchSummonPhase extends SummonPhase { this.lastPokemon?.resetSummonData(); this.scene.triggerPokemonFormChange(pokemon, SpeciesFormChangeActiveTrigger, true); + // Reverts to weather-based forms when weather suppressors (Cloud Nine/Air Lock) are switched out + this.scene.arena.triggerWeatherBasedFormChanges(); } queuePostSummon(): void { diff --git a/src/phases/title-phase.ts b/src/phases/title-phase.ts index c74dca97f5c..4c89b725c2d 100644 --- a/src/phases/title-phase.ts +++ b/src/phases/title-phase.ts @@ -293,7 +293,7 @@ export class TitlePhase extends Phase { } for (const achv of Object.keys(this.scene.gameData.achvUnlocks)) { - if (vouchers.hasOwnProperty(achv)) { + if (vouchers.hasOwnProperty(achv) && achv !== "CLASSIC_VICTORY") { this.scene.validateVoucher(vouchers[achv]); } } diff --git a/src/phases/trainer-victory-phase.ts b/src/phases/trainer-victory-phase.ts index 7b8ee05de44..a38874c9acd 100644 --- a/src/phases/trainer-victory-phase.ts +++ b/src/phases/trainer-victory-phase.ts @@ -1,6 +1,5 @@ import BattleScene from "#app/battle-scene.js"; import { getCharVariantFromDialogue } from "#app/data/dialogue.js"; -import { TrainerSlot } from "#app/data/trainer-config.js"; import { TrainerType } from "#app/enums/trainer-type.js"; import { modifierTypes } from "#app/modifier/modifier-type.js"; import { vouchers } from "#app/system/voucher.js"; @@ -9,6 +8,7 @@ import * as Utils from "#app/utils.js"; import { BattlePhase } from "./battle-phase"; import { ModifierRewardPhase } from "./modifier-reward-phase"; import { MoneyRewardPhase } from "./money-reward-phase"; +import { TrainerSlot } from "#app/data/trainer-config"; export class TrainerVictoryPhase extends BattlePhase { constructor(scene: BattleScene) { @@ -42,7 +42,7 @@ export class TrainerVictoryPhase extends BattlePhase { const showMessage = () => { const originalFunc = showMessageOrEnd; - showMessageOrEnd = () => this.scene.ui.showDialogue(message, this.scene.currentBattle.trainer?.getName(), null, originalFunc); + showMessageOrEnd = () => this.scene.ui.showDialogue(message, this.scene.currentBattle.trainer?.getName(TrainerSlot.TRAINER, true), null, originalFunc); showMessageOrEnd(); }; diff --git a/src/phases/turn-end-phase.ts b/src/phases/turn-end-phase.ts index 62589e99b79..9f4de46b0fa 100644 --- a/src/phases/turn-end-phase.ts +++ b/src/phases/turn-end-phase.ts @@ -60,6 +60,7 @@ export class TurnEndPhase extends FieldPhase { if (this.scene.arena.weather && !this.scene.arena.weather.lapse()) { this.scene.arena.trySetWeather(WeatherType.NONE, false); + this.scene.arena.triggerWeatherBasedFormChangesToNormal(); } if (this.scene.arena.terrain && !this.scene.arena.terrain.lapse()) { diff --git a/src/phases/turn-start-phase.ts b/src/phases/turn-start-phase.ts index 68d62602389..fc0bcf8485b 100644 --- a/src/phases/turn-start-phase.ts +++ b/src/phases/turn-start-phase.ts @@ -34,8 +34,8 @@ export class TurnStartPhase extends FieldPhase { this.scene.getField(true).filter(p => p.summonData).map(p => { const bypassSpeed = new Utils.BooleanHolder(false); const canCheckHeldItems = new Utils.BooleanHolder(true); - applyAbAttrs(BypassSpeedChanceAbAttr, p, null, bypassSpeed); - applyAbAttrs(PreventBypassSpeedChanceAbAttr, p, null, bypassSpeed, canCheckHeldItems); + applyAbAttrs(BypassSpeedChanceAbAttr, p, null, false, bypassSpeed); + applyAbAttrs(PreventBypassSpeedChanceAbAttr, p, null, false, bypassSpeed, canCheckHeldItems); if (canCheckHeldItems.value) { this.scene.applyModifiers(BypassSpeedChanceModifier, p.isPlayer(), p, bypassSpeed); } @@ -64,8 +64,8 @@ export class TurnStartPhase extends FieldPhase { applyMoveAttrs(IncrementMovePriorityAttr, this.scene.getField().find(p => p?.isActive() && p.getBattlerIndex() === a)!, null, aMove, aPriority); //TODO: is the bang correct here? applyMoveAttrs(IncrementMovePriorityAttr, this.scene.getField().find(p => p?.isActive() && p.getBattlerIndex() === b)!, null, bMove, bPriority); //TODO: is the bang correct here? - applyAbAttrs(ChangeMovePriorityAbAttr, this.scene.getField().find(p => p?.isActive() && p.getBattlerIndex() === a)!, null, aMove, aPriority); //TODO: is the bang correct here? - applyAbAttrs(ChangeMovePriorityAbAttr, this.scene.getField().find(p => p?.isActive() && p.getBattlerIndex() === b)!, null, bMove, bPriority); //TODO: is the bang correct here? + applyAbAttrs(ChangeMovePriorityAbAttr, this.scene.getField().find(p => p?.isActive() && p.getBattlerIndex() === a)!, null, false, aMove, aPriority); //TODO: is the bang correct here? + applyAbAttrs(ChangeMovePriorityAbAttr, this.scene.getField().find(p => p?.isActive() && p.getBattlerIndex() === b)!, null, false, bMove, bPriority); //TODO: is the bang correct here? if (aPriority.value !== bPriority.value) { const bracketDifference = Math.ceil(aPriority.value) - Math.ceil(bPriority.value); diff --git a/src/phases/unlock-phase.ts b/src/phases/unlock-phase.ts index ce06e2445ac..1662afaa758 100644 --- a/src/phases/unlock-phase.ts +++ b/src/phases/unlock-phase.ts @@ -16,6 +16,7 @@ export class UnlockPhase extends Phase { start(): void { this.scene.time.delayedCall(2000, () => { this.scene.gameData.unlocks[this.unlockable] = true; + // Sound loaded into game as is this.scene.playSound("level_up_fanfare"); this.scene.ui.setMode(Mode.MESSAGE); this.scene.ui.showText(i18next.t("battle:unlockedSomething", { unlockedThing: getUnlockableName(this.unlockable) }), null, () => { diff --git a/src/phases/weather-effect-phase.ts b/src/phases/weather-effect-phase.ts index 6f5fbc0fce3..71ca7f9b505 100644 --- a/src/phases/weather-effect-phase.ts +++ b/src/phases/weather-effect-phase.ts @@ -36,7 +36,7 @@ export class WeatherEffectPhase extends CommonAnimPhase { const inflictDamage = (pokemon: Pokemon) => { const cancelled = new Utils.BooleanHolder(false); - applyPreWeatherEffectAbAttrs(PreWeatherDamageAbAttr, pokemon, this.weather , cancelled); + applyPreWeatherEffectAbAttrs(PreWeatherDamageAbAttr, pokemon, this.weather, cancelled); applyAbAttrs(BlockNonDirectDamageAbAttr, pokemon, cancelled); if (cancelled.value) { diff --git a/src/plugins/i18n.ts b/src/plugins/i18n.ts index 33f00d22555..3d24458a06c 100644 --- a/src/plugins/i18n.ts +++ b/src/plugins/i18n.ts @@ -2,7 +2,7 @@ import i18next from "i18next"; import LanguageDetector from "i18next-browser-languagedetector"; import processor, { KoreanPostpositionProcessor } from "i18next-korean-postposition-processor"; -import { caESConfig} from "#app/locales/ca_ES/config.js"; +import { caEsConfig} from "#app/locales/ca_ES/config.js"; import { deConfig } from "#app/locales/de/config.js"; import { enConfig } from "#app/locales/en/config.js"; import { esConfig } from "#app/locales/es/config.js"; @@ -26,6 +26,7 @@ const unicodeRanges = { kana: "U+3040-30FF", CJKCommon: "U+2E80-2EFF,U+3000-303F,U+31C0-31EF,U+3200-32FF,U+3400-4DBF,U+F900-FAFF,U+FE30-FE4F", CJKIdeograph: "U+4E00-9FFF", + specialCharacters: "U+266A,U+2605,U+2665,U+2663" //♪.★,♥,♣ }; const rangesByLanguage = { korean: [unicodeRanges.CJKCommon, unicodeRanges.hangul].join(","), @@ -34,6 +35,15 @@ const rangesByLanguage = { }; const fonts: Array = [ + // unicode (special character from PokePT) + { + face: new FontFace("emerald", "url(./fonts/PokePT_Wansung.woff2)", { unicodeRange: unicodeRanges.specialCharacters }), + }, + { + face: new FontFace("pkmnems", "url(./fonts/PokePT_Wansung.woff2)", { unicodeRange: unicodeRanges.specialCharacters }), + extraOptions: { sizeAdjust: "133%" }, + }, + // unicode (korean) { face: new FontFace("emerald", "url(./fonts/PokePT_Wansung.woff2)", { unicodeRange: rangesByLanguage.korean }), }, @@ -151,7 +161,7 @@ export async function initI18n(): Promise { ...jaConfig }, "ca-ES": { - ...caESConfig + ...caEsConfig } }, postProcess: ["korean-postposition"], diff --git a/src/scene-base.ts b/src/scene-base.ts index 1d7a2518300..298b8096e54 100644 --- a/src/scene-base.ts +++ b/src/scene-base.ts @@ -73,7 +73,7 @@ export class SceneBase extends Phaser.Scene { filenames = `${key}.wav`; } if (!folder) { - folder = ""; + folder = "se/"; } else { folder += "/"; } @@ -81,7 +81,7 @@ export class SceneBase extends Phaser.Scene { filenames = [ filenames ]; } for (const f of filenames as string[]) { - this.load.audio(key, this.getCachedUrl(`audio/se/${folder}${f}`)); + this.load.audio(folder+key, this.getCachedUrl(`audio/${folder}${f}`)); } } diff --git a/src/system/achv.ts b/src/system/achv.ts index 040a48d9a7e..de2862c2813 100644 --- a/src/system/achv.ts +++ b/src/system/achv.ts @@ -5,9 +5,9 @@ import { pokemonEvolutions } from "#app/data/pokemon-evolutions"; import i18next from "i18next"; import * as Utils from "../utils"; import { PlayerGender } from "#enums/player-gender"; -import { ParseKeys } from "i18next"; -import { Challenge, FreshStartChallenge, SingleGenerationChallenge, SingleTypeChallenge } from "#app/data/challenge.js"; -import { ConditionFn } from "#app/@types/common.js"; +import { Challenge, FreshStartChallenge, InverseBattleChallenge, SingleGenerationChallenge, SingleTypeChallenge } from "#app/data/challenge"; +import { Challenges } from "#app/enums/challenges"; +import { ConditionFn } from "#app/@types/common"; export enum AchvTier { COMMON, @@ -42,13 +42,13 @@ export class Achv { /** * Get the name of the achievement based on the gender of the player - * @param playerGender - the gender of the player + * @param playerGender - the gender of the player (default: {@linkcode PlayerGender.UNSET}) * @returns the name of the achievement localized for the player gender */ - getName(playerGender: PlayerGender): string { - const prefix = playerGender === PlayerGender.FEMALE ?"PGF" : "PGM"; + getName(playerGender: PlayerGender = PlayerGender.UNSET): string { + const genderStr = PlayerGender[playerGender].toLowerCase(); // Localization key is used to get the name of the achievement - return i18next.t(`${prefix}achv:${this.localizationKey}.name` as ParseKeys); + return i18next.t(`achv:${this.localizationKey}.name`, { context: genderStr }); } getDescription(): string { @@ -138,8 +138,8 @@ export class ModifierAchv extends Achv { } export class ChallengeAchv extends Achv { - constructor(localizationKey: string, name: string, description: string, iconImage: string, score: integer, challengeFunc: (challenge: Challenge) => boolean) { - super(localizationKey, name, description, iconImage, score, (_scene: BattleScene, args: any[]) => challengeFunc((args[0] as Challenge))); + constructor(localizationKey: string, name: string, description: string, iconImage: string, score: integer, challengeFunc: (challenge: Challenge, scene: BattleScene) => boolean) { + super(localizationKey, name, description, iconImage, score, (_scene: BattleScene, args: any[]) => challengeFunc(args[0] as Challenge, _scene)); } } @@ -151,116 +151,110 @@ export class ChallengeAchv extends Achv { */ export function getAchievementDescription(localizationKey: string): string { // We need to get the player gender from the game data to add the correct prefix to the achievement name - let playerGender = PlayerGender.MALE; - if (this?.scene) { - playerGender = this.scene.gameData.gender; - } - let genderPrefix = "PGM"; - if (playerGender === PlayerGender.FEMALE) { - genderPrefix = "PGF"; - } + const genderIndex = this?.scene?.gameData?.gender ?? PlayerGender.MALE; //TODO: why is `this` being used here!? We are not inside a scope (copied from original) + const genderStr = PlayerGender[genderIndex].toLowerCase(); switch (localizationKey) { case "10K_MONEY": - return i18next.t(`${genderPrefix}achv:MoneyAchv.description` as ParseKeys, {"moneyAmount": achvs._10K_MONEY.moneyAmount.toLocaleString("en-US")}); + return i18next.t("achv:MoneyAchv.description", {context: genderStr, "moneyAmount": achvs._10K_MONEY.moneyAmount.toLocaleString("en-US")}); case "100K_MONEY": - return i18next.t(`${genderPrefix}achv:MoneyAchv.description` as ParseKeys, {"moneyAmount": achvs._100K_MONEY.moneyAmount.toLocaleString("en-US")}); + return i18next.t("achv:MoneyAchv.description", {context: genderStr, "moneyAmount": achvs._100K_MONEY.moneyAmount.toLocaleString("en-US")}); case "1M_MONEY": - return i18next.t(`${genderPrefix}achv:MoneyAchv.description` as ParseKeys, {"moneyAmount": achvs._1M_MONEY.moneyAmount.toLocaleString("en-US")}); + return i18next.t("achv:MoneyAchv.description", {context: genderStr, "moneyAmount": achvs._1M_MONEY.moneyAmount.toLocaleString("en-US")}); case "10M_MONEY": - return i18next.t(`${genderPrefix}achv:MoneyAchv.description` as ParseKeys, {"moneyAmount": achvs._10M_MONEY.moneyAmount.toLocaleString("en-US")}); + return i18next.t("achv:MoneyAchv.description", {context: genderStr, "moneyAmount": achvs._10M_MONEY.moneyAmount.toLocaleString("en-US")}); case "250_DMG": - return i18next.t(`${genderPrefix}achv:DamageAchv.description` as ParseKeys, {"damageAmount": achvs._250_DMG.damageAmount.toLocaleString("en-US")}); + return i18next.t("achv:DamageAchv.description", {context: genderStr, "damageAmount": achvs._250_DMG.damageAmount.toLocaleString("en-US")}); case "1000_DMG": - return i18next.t(`${genderPrefix}achv:DamageAchv.description` as ParseKeys, {"damageAmount": achvs._1000_DMG.damageAmount.toLocaleString("en-US")}); + return i18next.t("achv:DamageAchv.description", {context: genderStr, "damageAmount": achvs._1000_DMG.damageAmount.toLocaleString("en-US")}); case "2500_DMG": - return i18next.t(`${genderPrefix}achv:DamageAchv.description` as ParseKeys, {"damageAmount": achvs._2500_DMG.damageAmount.toLocaleString("en-US")}); + return i18next.t("achv:DamageAchv.description", {context: genderStr, "damageAmount": achvs._2500_DMG.damageAmount.toLocaleString("en-US")}); case "10000_DMG": - return i18next.t(`${genderPrefix}achv:DamageAchv.description` as ParseKeys, {"damageAmount": achvs._10000_DMG.damageAmount.toLocaleString("en-US")}); + return i18next.t("achv:DamageAchv.description", {context: genderStr, "damageAmount": achvs._10000_DMG.damageAmount.toLocaleString("en-US")}); case "250_HEAL": - return i18next.t(`${genderPrefix}achv:HealAchv.description` as ParseKeys, {"healAmount": achvs._250_HEAL.healAmount.toLocaleString("en-US"), "HP": i18next.t("pokemonInfo:Stat.HPshortened")}); + return i18next.t("achv:HealAchv.description", {context: genderStr, "healAmount": achvs._250_HEAL.healAmount.toLocaleString("en-US"), "HP": i18next.t("pokemonInfo:Stat.HPshortened")}); case "1000_HEAL": - return i18next.t(`${genderPrefix}achv:HealAchv.description` as ParseKeys, {"healAmount": achvs._1000_HEAL.healAmount.toLocaleString("en-US"), "HP": i18next.t("pokemonInfo:Stat.HPshortened")}); + return i18next.t("achv:HealAchv.description", {context: genderStr, "healAmount": achvs._1000_HEAL.healAmount.toLocaleString("en-US"), "HP": i18next.t("pokemonInfo:Stat.HPshortened")}); case "2500_HEAL": - return i18next.t(`${genderPrefix}achv:HealAchv.description` as ParseKeys, {"healAmount": achvs._2500_HEAL.healAmount.toLocaleString("en-US"), "HP": i18next.t("pokemonInfo:Stat.HPshortened")}); + return i18next.t("achv:HealAchv.description", {context: genderStr, "healAmount": achvs._2500_HEAL.healAmount.toLocaleString("en-US"), "HP": i18next.t("pokemonInfo:Stat.HPshortened")}); case "10000_HEAL": - return i18next.t(`${genderPrefix}achv:HealAchv.description` as ParseKeys, {"healAmount": achvs._10000_HEAL.healAmount.toLocaleString("en-US"), "HP": i18next.t("pokemonInfo:Stat.HPshortened")}); + return i18next.t("achv:HealAchv.description", {context: genderStr, "healAmount": achvs._10000_HEAL.healAmount.toLocaleString("en-US"), "HP": i18next.t("pokemonInfo:Stat.HPshortened")}); case "LV_100": - return i18next.t(`${genderPrefix}achv:LevelAchv.description` as ParseKeys, {"level": achvs.LV_100.level}); + return i18next.t("achv:LevelAchv.description", {context: genderStr, "level": achvs.LV_100.level}); case "LV_250": - return i18next.t(`${genderPrefix}achv:LevelAchv.description` as ParseKeys, {"level": achvs.LV_250.level}); + return i18next.t("achv:LevelAchv.description", {context: genderStr, "level": achvs.LV_250.level}); case "LV_1000": - return i18next.t(`${genderPrefix}achv:LevelAchv.description` as ParseKeys, {"level": achvs.LV_1000.level}); + return i18next.t("achv:LevelAchv.description", {context: genderStr, "level": achvs.LV_1000.level}); case "10_RIBBONS": - return i18next.t(`${genderPrefix}achv:RibbonAchv.description` as ParseKeys, {"ribbonAmount": achvs._10_RIBBONS.ribbonAmount.toLocaleString("en-US")}); + return i18next.t("achv:RibbonAchv.description", {context: genderStr, "ribbonAmount": achvs._10_RIBBONS.ribbonAmount.toLocaleString("en-US")}); case "25_RIBBONS": - return i18next.t(`${genderPrefix}achv:RibbonAchv.description` as ParseKeys, {"ribbonAmount": achvs._25_RIBBONS.ribbonAmount.toLocaleString("en-US")}); + return i18next.t("achv:RibbonAchv.description", {context: genderStr, "ribbonAmount": achvs._25_RIBBONS.ribbonAmount.toLocaleString("en-US")}); case "50_RIBBONS": - return i18next.t(`${genderPrefix}achv:RibbonAchv.description` as ParseKeys, {"ribbonAmount": achvs._50_RIBBONS.ribbonAmount.toLocaleString("en-US")}); + return i18next.t("achv:RibbonAchv.description", {context: genderStr, "ribbonAmount": achvs._50_RIBBONS.ribbonAmount.toLocaleString("en-US")}); case "75_RIBBONS": - return i18next.t(`${genderPrefix}achv:RibbonAchv.description` as ParseKeys, {"ribbonAmount": achvs._75_RIBBONS.ribbonAmount.toLocaleString("en-US")}); + return i18next.t("achv:RibbonAchv.description", {context: genderStr, "ribbonAmount": achvs._75_RIBBONS.ribbonAmount.toLocaleString("en-US")}); case "100_RIBBONS": - return i18next.t(`${genderPrefix}achv:RibbonAchv.description` as ParseKeys, {"ribbonAmount": achvs._100_RIBBONS.ribbonAmount.toLocaleString("en-US")}); + return i18next.t("achv:RibbonAchv.description", {context: genderStr, "ribbonAmount": achvs._100_RIBBONS.ribbonAmount.toLocaleString("en-US")}); case "TRANSFER_MAX_BATTLE_STAT": - return i18next.t(`${genderPrefix}achv:TRANSFER_MAX_BATTLE_STAT.description` as ParseKeys); + return i18next.t("achv:TRANSFER_MAX_BATTLE_STAT.description", { context: genderStr }); case "MAX_FRIENDSHIP": - return i18next.t(`${genderPrefix}achv:MAX_FRIENDSHIP.description` as ParseKeys); + return i18next.t("achv:MAX_FRIENDSHIP.description", { context: genderStr }); case "MEGA_EVOLVE": - return i18next.t(`${genderPrefix}achv:MEGA_EVOLVE.description` as ParseKeys); + return i18next.t("achv:MEGA_EVOLVE.description", { context: genderStr }); case "GIGANTAMAX": - return i18next.t(`${genderPrefix}achv:GIGANTAMAX.description` as ParseKeys); + return i18next.t("achv:GIGANTAMAX.description", { context: genderStr }); case "TERASTALLIZE": - return i18next.t(`${genderPrefix}achv:TERASTALLIZE.description` as ParseKeys); + return i18next.t("achv:TERASTALLIZE.description", { context: genderStr }); case "STELLAR_TERASTALLIZE": - return i18next.t(`${genderPrefix}achv:STELLAR_TERASTALLIZE.description` as ParseKeys); + return i18next.t("achv:STELLAR_TERASTALLIZE.description", { context: genderStr }); case "SPLICE": - return i18next.t(`${genderPrefix}achv:SPLICE.description` as ParseKeys); + return i18next.t("achv:SPLICE.description", { context: genderStr }); case "MINI_BLACK_HOLE": - return i18next.t(`${genderPrefix}achv:MINI_BLACK_HOLE.description` as ParseKeys); + return i18next.t("achv:MINI_BLACK_HOLE.description", { context: genderStr }); case "CATCH_MYTHICAL": - return i18next.t(`${genderPrefix}achv:CATCH_MYTHICAL.description` as ParseKeys); + return i18next.t("achv:CATCH_MYTHICAL.description", { context: genderStr }); case "CATCH_SUB_LEGENDARY": - return i18next.t(`${genderPrefix}achv:CATCH_SUB_LEGENDARY.description` as ParseKeys); + return i18next.t("achv:CATCH_SUB_LEGENDARY.description", { context: genderStr }); case "CATCH_LEGENDARY": - return i18next.t(`${genderPrefix}achv:CATCH_LEGENDARY.description` as ParseKeys); + return i18next.t("achv:CATCH_LEGENDARY.description", { context: genderStr }); case "SEE_SHINY": - return i18next.t(`${genderPrefix}achv:SEE_SHINY.description` as ParseKeys); + return i18next.t("achv:SEE_SHINY.description", { context: genderStr }); case "SHINY_PARTY": - return i18next.t(`${genderPrefix}achv:SHINY_PARTY.description` as ParseKeys); + return i18next.t("achv:SHINY_PARTY.description", { context: genderStr }); case "HATCH_MYTHICAL": - return i18next.t(`${genderPrefix}achv:HATCH_MYTHICAL.description` as ParseKeys); + return i18next.t("achv:HATCH_MYTHICAL.description", { context: genderStr }); case "HATCH_SUB_LEGENDARY": - return i18next.t(`${genderPrefix}achv:HATCH_SUB_LEGENDARY.description` as ParseKeys); + return i18next.t("achv:HATCH_SUB_LEGENDARY.description", { context: genderStr }); case "HATCH_LEGENDARY": - return i18next.t(`${genderPrefix}achv:HATCH_LEGENDARY.description` as ParseKeys); + return i18next.t("achv:HATCH_LEGENDARY.description", { context: genderStr }); case "HATCH_SHINY": - return i18next.t(`${genderPrefix}achv:HATCH_SHINY.description` as ParseKeys); + return i18next.t("achv:HATCH_SHINY.description", { context: genderStr }); case "HIDDEN_ABILITY": - return i18next.t(`${genderPrefix}achv:HIDDEN_ABILITY.description` as ParseKeys); + return i18next.t("achv:HIDDEN_ABILITY.description", { context: genderStr }); case "PERFECT_IVS": - return i18next.t(`${genderPrefix}achv:PERFECT_IVS.description` as ParseKeys); + return i18next.t("achv:PERFECT_IVS.description", { context: genderStr }); case "CLASSIC_VICTORY": - return i18next.t(`${genderPrefix}achv:CLASSIC_VICTORY.description` as ParseKeys); + return i18next.t("achv:CLASSIC_VICTORY.description", { context: genderStr }); case "UNEVOLVED_CLASSIC_VICTORY": - return i18next.t(`${genderPrefix}achv:UNEVOLVED_CLASSIC_VICTORY.description` as ParseKeys); + return i18next.t("achv:UNEVOLVED_CLASSIC_VICTORY.description", { context: genderStr }); case "MONO_GEN_ONE": - return i18next.t(`${genderPrefix}achv:MONO_GEN_ONE.description` as ParseKeys); + return i18next.t("achv:MONO_GEN_ONE.description", { context: genderStr }); case "MONO_GEN_TWO": - return i18next.t(`${genderPrefix}achv:MONO_GEN_TWO.description` as ParseKeys); + return i18next.t("achv:MONO_GEN_TWO.description", { context: genderStr }); case "MONO_GEN_THREE": - return i18next.t(`${genderPrefix}achv:MONO_GEN_THREE.description` as ParseKeys); + return i18next.t("achv:MONO_GEN_THREE.description", { context: genderStr }); case "MONO_GEN_FOUR": - return i18next.t(`${genderPrefix}achv:MONO_GEN_FOUR.description` as ParseKeys); + return i18next.t("achv:MONO_GEN_FOUR.description", { context: genderStr }); case "MONO_GEN_FIVE": - return i18next.t(`${genderPrefix}achv:MONO_GEN_FIVE.description` as ParseKeys); + return i18next.t("achv:MONO_GEN_FIVE.description", { context: genderStr }); case "MONO_GEN_SIX": - return i18next.t(`${genderPrefix}achv:MONO_GEN_SIX.description` as ParseKeys); + return i18next.t("achv:MONO_GEN_SIX.description", { context: genderStr }); case "MONO_GEN_SEVEN": - return i18next.t(`${genderPrefix}achv:MONO_GEN_SEVEN.description` as ParseKeys); + return i18next.t("achv:MONO_GEN_SEVEN.description", { context: genderStr }); case "MONO_GEN_EIGHT": - return i18next.t(`${genderPrefix}achv:MONO_GEN_EIGHT.description` as ParseKeys); + return i18next.t("achv:MONO_GEN_EIGHT.description", { context: genderStr }); case "MONO_GEN_NINE": - return i18next.t(`${genderPrefix}achv:MONO_GEN_NINE.description` as ParseKeys); + return i18next.t("achv:MONO_GEN_NINE.description", { context: genderStr }); case "MONO_NORMAL": case "MONO_FIGHTING": case "MONO_FLYING": @@ -279,9 +273,11 @@ export function getAchievementDescription(localizationKey: string): string { case "MONO_DRAGON": case "MONO_DARK": case "MONO_FAIRY": - return i18next.t(`${genderPrefix}achv:MonoType.description` as ParseKeys, {"type": i18next.t(`pokemonInfo:Type.${localizationKey.slice(5)}`)}); + return i18next.t("achv:MonoType.description", { context: genderStr, "type": i18next.t(`pokemonInfo:Type.${localizationKey.slice(5)}`) }); case "FRESH_START": - return i18next.t(`${genderPrefix}achv:FRESH_START.description` as ParseKeys); + return i18next.t("achv:FRESH_START.description", { context: genderStr }); + case "INVERSE_BATTLE": + return i18next.t("achv:INVERSE_BATTLE.description", { context: genderStr }); default: return ""; } @@ -289,75 +285,76 @@ export function getAchievementDescription(localizationKey: string): string { } export const achvs = { - _10K_MONEY: new MoneyAchv("10K_MONEY", "",10000, "nugget", 10), - _100K_MONEY: new MoneyAchv("100K_MONEY", "",100000, "big_nugget", 25).setSecret(true), - _1M_MONEY: new MoneyAchv("1M_MONEY","", 1000000, "relic_gold", 50).setSecret(true), - _10M_MONEY: new MoneyAchv("10M_MONEY","", 10000000, "coin_case", 100).setSecret(true), - _250_DMG: new DamageAchv("250_DMG","", 250, "lucky_punch", 10), - _1000_DMG: new DamageAchv("1000_DMG","", 1000, "lucky_punch_great", 25).setSecret(true), - _2500_DMG: new DamageAchv("2500_DMG","", 2500, "lucky_punch_ultra", 50).setSecret(true), - _10000_DMG: new DamageAchv("10000_DMG","", 10000, "lucky_punch_master", 100).setSecret(true), - _250_HEAL: new HealAchv("250_HEAL","", 250, "potion", 10), - _1000_HEAL: new HealAchv("1000_HEAL", "",1000, "super_potion", 25).setSecret(true), - _2500_HEAL: new HealAchv("2500_HEAL","", 2500, "hyper_potion", 50).setSecret(true), - _10000_HEAL: new HealAchv("10000_HEAL","", 10000, "max_potion", 100).setSecret(true), - LV_100: new LevelAchv("LV_100", "",100, "rare_candy", 25).setSecret(), - LV_250: new LevelAchv("LV_250", "",250, "rarer_candy", 50).setSecret(true), - LV_1000: new LevelAchv("LV_1000", "",1000, "candy_jar", 100).setSecret(true), - _10_RIBBONS: new RibbonAchv("10_RIBBONS","", 10, "bronze_ribbon", 10), - _25_RIBBONS: new RibbonAchv("25_RIBBONS", "",25, "great_ribbon", 25).setSecret(true), - _50_RIBBONS: new RibbonAchv("50_RIBBONS","", 50, "ultra_ribbon", 50).setSecret(true), - _75_RIBBONS: new RibbonAchv("75_RIBBONS","", 75, "rogue_ribbon", 75).setSecret(true), - _100_RIBBONS: new RibbonAchv("100_RIBBONS","", 100, "master_ribbon", 100).setSecret(true), - TRANSFER_MAX_BATTLE_STAT: new Achv("TRANSFER_MAX_BATTLE_STAT","", "TRANSFER_MAX_BATTLE_STAT.description","baton", 20), - MAX_FRIENDSHIP: new Achv("MAX_FRIENDSHIP", "", "MAX_FRIENDSHIP.description","soothe_bell", 25), - MEGA_EVOLVE: new Achv("MEGA_EVOLVE", "", "MEGA_EVOLVE.description","mega_bracelet", 50), - GIGANTAMAX: new Achv("GIGANTAMAX", "", "GIGANTAMAX.description","dynamax_band", 50), - TERASTALLIZE: new Achv("TERASTALLIZE","", "TERASTALLIZE.description","tera_orb", 25), - STELLAR_TERASTALLIZE: new Achv("STELLAR_TERASTALLIZE", "", "STELLAR_TERASTALLIZE.description","stellar_tera_shard", 25).setSecret(true), - SPLICE: new Achv("SPLICE","", "SPLICE.description","dna_splicers", 10), - MINI_BLACK_HOLE: new ModifierAchv("MINI_BLACK_HOLE","", "MINI_BLACK_HOLE.description","mini_black_hole", 25, modifier => modifier instanceof TurnHeldItemTransferModifier).setSecret(), - CATCH_MYTHICAL: new Achv("CATCH_MYTHICAL","", "CATCH_MYTHICAL.description","strange_ball", 50).setSecret(), - CATCH_SUB_LEGENDARY: new Achv("CATCH_SUB_LEGENDARY","", "CATCH_SUB_LEGENDARY.description","rb", 75).setSecret(), - CATCH_LEGENDARY: new Achv("CATCH_LEGENDARY", "", "CATCH_LEGENDARY.description","mb", 100).setSecret(), - SEE_SHINY: new Achv("SEE_SHINY", "", "SEE_SHINY.description","pb_gold", 75), - SHINY_PARTY: new Achv("SHINY_PARTY", "", "SHINY_PARTY.description","shiny_charm", 100).setSecret(true), - HATCH_MYTHICAL: new Achv("HATCH_MYTHICAL", "", "HATCH_MYTHICAL.description","mystery_egg", 75).setSecret(), - HATCH_SUB_LEGENDARY: new Achv("HATCH_SUB_LEGENDARY","", "HATCH_SUB_LEGENDARY.description","oval_stone", 100).setSecret(), - HATCH_LEGENDARY: new Achv("HATCH_LEGENDARY","", "HATCH_LEGENDARY.description","lucky_egg", 125).setSecret(), - HATCH_SHINY: new Achv("HATCH_SHINY","", "HATCH_SHINY.description","golden_egg", 100).setSecret(), - HIDDEN_ABILITY: new Achv("HIDDEN_ABILITY","", "HIDDEN_ABILITY.description","ability_charm", 75), - PERFECT_IVS: new Achv("PERFECT_IVS","", "PERFECT_IVS.description","blunder_policy", 100), - CLASSIC_VICTORY: new Achv("CLASSIC_VICTORY","", "CLASSIC_VICTORY.description","relic_crown", 150), + _10K_MONEY: new MoneyAchv("10K_MONEY", "", 10000, "nugget", 10), + _100K_MONEY: new MoneyAchv("100K_MONEY", "", 100000, "big_nugget", 25).setSecret(true), + _1M_MONEY: new MoneyAchv("1M_MONEY", "", 1000000, "relic_gold", 50).setSecret(true), + _10M_MONEY: new MoneyAchv("10M_MONEY", "", 10000000, "coin_case", 100).setSecret(true), + _250_DMG: new DamageAchv("250_DMG", "", 250, "lucky_punch", 10), + _1000_DMG: new DamageAchv("1000_DMG", "", 1000, "lucky_punch_great", 25).setSecret(true), + _2500_DMG: new DamageAchv("2500_DMG", "", 2500, "lucky_punch_ultra", 50).setSecret(true), + _10000_DMG: new DamageAchv("10000_DMG", "", 10000, "lucky_punch_master", 100).setSecret(true), + _250_HEAL: new HealAchv("250_HEAL", "", 250, "potion", 10), + _1000_HEAL: new HealAchv("1000_HEAL", "", 1000, "super_potion", 25).setSecret(true), + _2500_HEAL: new HealAchv("2500_HEAL", "", 2500, "hyper_potion", 50).setSecret(true), + _10000_HEAL: new HealAchv("10000_HEAL", "", 10000, "max_potion", 100).setSecret(true), + LV_100: new LevelAchv("LV_100", "", 100, "rare_candy", 25).setSecret(), + LV_250: new LevelAchv("LV_250", "", 250, "rarer_candy", 50).setSecret(true), + LV_1000: new LevelAchv("LV_1000", "", 1000, "candy_jar", 100).setSecret(true), + _10_RIBBONS: new RibbonAchv("10_RIBBONS", "", 10, "bronze_ribbon", 10), + _25_RIBBONS: new RibbonAchv("25_RIBBONS", "", 25, "great_ribbon", 25).setSecret(true), + _50_RIBBONS: new RibbonAchv("50_RIBBONS", "", 50, "ultra_ribbon", 50).setSecret(true), + _75_RIBBONS: new RibbonAchv("75_RIBBONS", "", 75, "rogue_ribbon", 75).setSecret(true), + _100_RIBBONS: new RibbonAchv("100_RIBBONS", "", 100, "master_ribbon", 100).setSecret(true), + TRANSFER_MAX_BATTLE_STAT: new Achv("TRANSFER_MAX_BATTLE_STAT", "", "TRANSFER_MAX_BATTLE_STAT.description", "baton", 20), + MAX_FRIENDSHIP: new Achv("MAX_FRIENDSHIP", "", "MAX_FRIENDSHIP.description", "soothe_bell", 25), + MEGA_EVOLVE: new Achv("MEGA_EVOLVE", "", "MEGA_EVOLVE.description", "mega_bracelet", 50), + GIGANTAMAX: new Achv("GIGANTAMAX", "", "GIGANTAMAX.description", "dynamax_band", 50), + TERASTALLIZE: new Achv("TERASTALLIZE", "", "TERASTALLIZE.description", "tera_orb", 25), + STELLAR_TERASTALLIZE: new Achv("STELLAR_TERASTALLIZE", "", "STELLAR_TERASTALLIZE.description", "stellar_tera_shard", 25).setSecret(true), + SPLICE: new Achv("SPLICE", "", "SPLICE.description", "dna_splicers", 10), + MINI_BLACK_HOLE: new ModifierAchv("MINI_BLACK_HOLE", "", "MINI_BLACK_HOLE.description", "mini_black_hole", 25, modifier => modifier instanceof TurnHeldItemTransferModifier).setSecret(), + CATCH_MYTHICAL: new Achv("CATCH_MYTHICAL", "", "CATCH_MYTHICAL.description", "strange_ball", 50).setSecret(), + CATCH_SUB_LEGENDARY: new Achv("CATCH_SUB_LEGENDARY", "", "CATCH_SUB_LEGENDARY.description", "rb", 75).setSecret(), + CATCH_LEGENDARY: new Achv("CATCH_LEGENDARY", "", "CATCH_LEGENDARY.description", "mb", 100).setSecret(), + SEE_SHINY: new Achv("SEE_SHINY", "", "SEE_SHINY.description", "pb_gold", 75), + SHINY_PARTY: new Achv("SHINY_PARTY", "", "SHINY_PARTY.description", "shiny_charm", 100).setSecret(true), + HATCH_MYTHICAL: new Achv("HATCH_MYTHICAL", "", "HATCH_MYTHICAL.description", "mystery_egg", 75).setSecret(), + HATCH_SUB_LEGENDARY: new Achv("HATCH_SUB_LEGENDARY", "", "HATCH_SUB_LEGENDARY.description", "oval_stone", 100).setSecret(), + HATCH_LEGENDARY: new Achv("HATCH_LEGENDARY", "", "HATCH_LEGENDARY.description", "lucky_egg", 125).setSecret(), + HATCH_SHINY: new Achv("HATCH_SHINY", "", "HATCH_SHINY.description", "golden_egg", 100).setSecret(), + HIDDEN_ABILITY: new Achv("HIDDEN_ABILITY", "", "HIDDEN_ABILITY.description", "ability_charm", 75), + PERFECT_IVS: new Achv("PERFECT_IVS", "", "PERFECT_IVS.description", "blunder_policy", 100), + CLASSIC_VICTORY: new Achv("CLASSIC_VICTORY", "", "CLASSIC_VICTORY.description", "relic_crown", 150, c => c.gameData.gameStats.sessionsWon === 0), UNEVOLVED_CLASSIC_VICTORY: new Achv("UNEVOLVED_CLASSIC_VICTORY", "", "UNEVOLVED_CLASSIC_VICTORY.description", "eviolite", 175, c => c.getParty().some(p => p.getSpeciesForm(true).speciesId in pokemonEvolutions)), - MONO_GEN_ONE_VICTORY: new ChallengeAchv("MONO_GEN_ONE","", "MONO_GEN_ONE.description", "ribbon_gen1", 100, c => c instanceof SingleGenerationChallenge && c.value === 1), - MONO_GEN_TWO_VICTORY: new ChallengeAchv("MONO_GEN_TWO","", "MONO_GEN_TWO.description", "ribbon_gen2", 100, c => c instanceof SingleGenerationChallenge && c.value === 2), - MONO_GEN_THREE_VICTORY: new ChallengeAchv("MONO_GEN_THREE","", "MONO_GEN_THREE.description", "ribbon_gen3", 100, c => c instanceof SingleGenerationChallenge && c.value === 3), - MONO_GEN_FOUR_VICTORY: new ChallengeAchv("MONO_GEN_FOUR","", "MONO_GEN_FOUR.description", "ribbon_gen4", 100, c => c instanceof SingleGenerationChallenge && c.value === 4), - MONO_GEN_FIVE_VICTORY: new ChallengeAchv("MONO_GEN_FIVE","", "MONO_GEN_FIVE.description", "ribbon_gen5", 100, c => c instanceof SingleGenerationChallenge && c.value === 5), - MONO_GEN_SIX_VICTORY: new ChallengeAchv("MONO_GEN_SIX","", "MONO_GEN_SIX.description", "ribbon_gen6", 100, c => c instanceof SingleGenerationChallenge && c.value === 6), - MONO_GEN_SEVEN_VICTORY: new ChallengeAchv("MONO_GEN_SEVEN","", "MONO_GEN_SEVEN.description", "ribbon_gen7", 100, c => c instanceof SingleGenerationChallenge && c.value === 7), - MONO_GEN_EIGHT_VICTORY: new ChallengeAchv("MONO_GEN_EIGHT","", "MONO_GEN_EIGHT.description", "ribbon_gen8", 100, c => c instanceof SingleGenerationChallenge && c.value === 8), - MONO_GEN_NINE_VICTORY: new ChallengeAchv("MONO_GEN_NINE","", "MONO_GEN_NINE.description", "ribbon_gen9", 100, c => c instanceof SingleGenerationChallenge && c.value === 9), - MONO_NORMAL: new ChallengeAchv("MONO_NORMAL","", "MONO_NORMAL.description", "silk_scarf", 100, c => c instanceof SingleTypeChallenge && c.value === 1), - MONO_FIGHTING: new ChallengeAchv("MONO_FIGHTING","", "MONO_FIGHTING.description", "black_belt", 100, c => c instanceof SingleTypeChallenge && c.value === 2), - MONO_FLYING: new ChallengeAchv("MONO_FLYING","", "MONO_FLYING.description", "sharp_beak", 100, c => c instanceof SingleTypeChallenge && c.value === 3), - MONO_POISON: new ChallengeAchv("MONO_POISON","", "MONO_POISON.description", "poison_barb", 100, c => c instanceof SingleTypeChallenge && c.value === 4), - MONO_GROUND: new ChallengeAchv("MONO_GROUND","", "MONO_GROUND.description", "soft_sand", 100, c => c instanceof SingleTypeChallenge && c.value === 5), - MONO_ROCK: new ChallengeAchv("MONO_ROCK","", "MONO_ROCK.description", "hard_stone", 100, c => c instanceof SingleTypeChallenge && c.value === 6), - MONO_BUG: new ChallengeAchv("MONO_BUG","", "MONO_BUG.description", "silver_powder", 100, c => c instanceof SingleTypeChallenge && c.value === 7), - MONO_GHOST: new ChallengeAchv("MONO_GHOST","", "MONO_GHOST.description", "spell_tag", 100, c => c instanceof SingleTypeChallenge && c.value === 8), - MONO_STEEL: new ChallengeAchv("MONO_STEEL","", "MONO_STEEL.description", "metal_coat", 100, c => c instanceof SingleTypeChallenge && c.value === 9), - MONO_FIRE: new ChallengeAchv("MONO_FIRE","", "MONO_FIRE.description", "charcoal", 100, c => c instanceof SingleTypeChallenge && c.value === 10), - MONO_WATER: new ChallengeAchv("MONO_WATER","", "MONO_WATER.description", "mystic_water", 100, c => c instanceof SingleTypeChallenge && c.value === 11), - MONO_GRASS: new ChallengeAchv("MONO_GRASS","", "MONO_GRASS.description", "miracle_seed", 100, c => c instanceof SingleTypeChallenge && c.value === 12), - MONO_ELECTRIC: new ChallengeAchv("MONO_ELECTRIC","", "MONO_ELECTRIC.description", "magnet", 100, c => c instanceof SingleTypeChallenge && c.value === 13), - MONO_PSYCHIC: new ChallengeAchv("MONO_PSYCHIC","", "MONO_PSYCHIC.description", "twisted_spoon", 100, c => c instanceof SingleTypeChallenge && c.value === 14), - MONO_ICE: new ChallengeAchv("MONO_ICE","", "MONO_ICE.description", "never_melt_ice", 100, c => c instanceof SingleTypeChallenge && c.value === 15), - MONO_DRAGON: new ChallengeAchv("MONO_DRAGON","", "MONO_DRAGON.description", "dragon_fang", 100, c => c instanceof SingleTypeChallenge && c.value === 16), - MONO_DARK: new ChallengeAchv("MONO_DARK","", "MONO_DARK.description", "black_glasses", 100, c => c instanceof SingleTypeChallenge && c.value === 17), - MONO_FAIRY: new ChallengeAchv("MONO_FAIRY","", "MONO_FAIRY.description", "fairy_feather", 100, c => c instanceof SingleTypeChallenge && c.value === 18), - FRESH_START: new ChallengeAchv("FRESH_START","", "FRESH_START.description", "reviver_seed", 100, c => c instanceof FreshStartChallenge && c.value === 1), + MONO_GEN_ONE_VICTORY: new ChallengeAchv("MONO_GEN_ONE", "", "MONO_GEN_ONE.description", "ribbon_gen1", 100, (c, scene) => c instanceof SingleGenerationChallenge && c.value === 1 && !scene.gameMode.challenges.some(c => c.id === Challenges.INVERSE_BATTLE && c.value > 0)), + MONO_GEN_TWO_VICTORY: new ChallengeAchv("MONO_GEN_TWO", "", "MONO_GEN_TWO.description", "ribbon_gen2", 100, (c, scene) => c instanceof SingleGenerationChallenge && c.value === 2 && !scene.gameMode.challenges.some(c => c.id === Challenges.INVERSE_BATTLE && c.value > 0)), + MONO_GEN_THREE_VICTORY: new ChallengeAchv("MONO_GEN_THREE", "", "MONO_GEN_THREE.description", "ribbon_gen3", 100, (c, scene) => c instanceof SingleGenerationChallenge && c.value === 3 && !scene.gameMode.challenges.some(c => c.id === Challenges.INVERSE_BATTLE && c.value > 0)), + MONO_GEN_FOUR_VICTORY: new ChallengeAchv("MONO_GEN_FOUR", "", "MONO_GEN_FOUR.description", "ribbon_gen4", 100, (c, scene) => c instanceof SingleGenerationChallenge && c.value === 4 && !scene.gameMode.challenges.some(c => c.id === Challenges.INVERSE_BATTLE && c.value > 0)), + MONO_GEN_FIVE_VICTORY: new ChallengeAchv("MONO_GEN_FIVE", "", "MONO_GEN_FIVE.description", "ribbon_gen5", 100, (c, scene) => c instanceof SingleGenerationChallenge && c.value === 5 && !scene.gameMode.challenges.some(c => c.id === Challenges.INVERSE_BATTLE && c.value > 0)), + MONO_GEN_SIX_VICTORY: new ChallengeAchv("MONO_GEN_SIX", "", "MONO_GEN_SIX.description", "ribbon_gen6", 100, (c, scene) => c instanceof SingleGenerationChallenge && c.value === 6 && !scene.gameMode.challenges.some(c => c.id === Challenges.INVERSE_BATTLE && c.value > 0)), + MONO_GEN_SEVEN_VICTORY: new ChallengeAchv("MONO_GEN_SEVEN", "", "MONO_GEN_SEVEN.description", "ribbon_gen7", 100, (c, scene) => c instanceof SingleGenerationChallenge && c.value === 7 && !scene.gameMode.challenges.some(c => c.id === Challenges.INVERSE_BATTLE && c.value > 0)), + MONO_GEN_EIGHT_VICTORY: new ChallengeAchv("MONO_GEN_EIGHT", "", "MONO_GEN_EIGHT.description", "ribbon_gen8", 100, (c, scene) => c instanceof SingleGenerationChallenge && c.value === 8 && !scene.gameMode.challenges.some(c => c.id === Challenges.INVERSE_BATTLE && c.value > 0)), + MONO_GEN_NINE_VICTORY: new ChallengeAchv("MONO_GEN_NINE", "", "MONO_GEN_NINE.description", "ribbon_gen9", 100, (c, scene) => c instanceof SingleGenerationChallenge && c.value === 9 && !scene.gameMode.challenges.some(c => c.id === Challenges.INVERSE_BATTLE && c.value > 0)), + MONO_NORMAL: new ChallengeAchv("MONO_NORMAL", "", "MONO_NORMAL.description", "silk_scarf", 100, (c, scene) => c instanceof SingleTypeChallenge && c.value === 1 && !scene.gameMode.challenges.some(c => c.id === Challenges.INVERSE_BATTLE && c.value > 0)), + MONO_FIGHTING: new ChallengeAchv("MONO_FIGHTING", "", "MONO_FIGHTING.description", "black_belt", 100, (c, scene) => c instanceof SingleTypeChallenge && c.value === 2 && !scene.gameMode.challenges.some(c => c.id === Challenges.INVERSE_BATTLE && c.value > 0)), + MONO_FLYING: new ChallengeAchv("MONO_FLYING", "", "MONO_FLYING.description", "sharp_beak", 100, (c, scene) => c instanceof SingleTypeChallenge && c.value === 3 && !scene.gameMode.challenges.some(c => c.id === Challenges.INVERSE_BATTLE && c.value > 0)), + MONO_POISON: new ChallengeAchv("MONO_POISON", "", "MONO_POISON.description", "poison_barb", 100, (c, scene) => c instanceof SingleTypeChallenge && c.value === 4 && !scene.gameMode.challenges.some(c => c.id === Challenges.INVERSE_BATTLE && c.value > 0)), + MONO_GROUND: new ChallengeAchv("MONO_GROUND", "", "MONO_GROUND.description", "soft_sand", 100, (c, scene) => c instanceof SingleTypeChallenge && c.value === 5 && !scene.gameMode.challenges.some(c => c.id === Challenges.INVERSE_BATTLE && c.value > 0)), + MONO_ROCK: new ChallengeAchv("MONO_ROCK", "", "MONO_ROCK.description", "hard_stone", 100, (c, scene) => c instanceof SingleTypeChallenge && c.value === 6 && !scene.gameMode.challenges.some(c => c.id === Challenges.INVERSE_BATTLE && c.value > 0)), + MONO_BUG: new ChallengeAchv("MONO_BUG", "", "MONO_BUG.description", "silver_powder", 100, (c, scene) => c instanceof SingleTypeChallenge && c.value === 7 && !scene.gameMode.challenges.some(c => c.id === Challenges.INVERSE_BATTLE && c.value > 0)), + MONO_GHOST: new ChallengeAchv("MONO_GHOST", "", "MONO_GHOST.description", "spell_tag", 100, (c, scene) => c instanceof SingleTypeChallenge && c.value === 8 && !scene.gameMode.challenges.some(c => c.id === Challenges.INVERSE_BATTLE && c.value > 0)), + MONO_STEEL: new ChallengeAchv("MONO_STEEL", "", "MONO_STEEL.description", "metal_coat", 100, (c, scene) => c instanceof SingleTypeChallenge && c.value === 9 && !scene.gameMode.challenges.some(c => c.id === Challenges.INVERSE_BATTLE && c.value > 0)), + MONO_FIRE: new ChallengeAchv("MONO_FIRE", "", "MONO_FIRE.description", "charcoal", 100, (c, scene) => c instanceof SingleTypeChallenge && c.value === 10 && !scene.gameMode.challenges.some(c => c.id === Challenges.INVERSE_BATTLE && c.value > 0)), + MONO_WATER: new ChallengeAchv("MONO_WATER", "", "MONO_WATER.description", "mystic_water", 100, (c, scene) => c instanceof SingleTypeChallenge && c.value === 11 && !scene.gameMode.challenges.some(c => c.id === Challenges.INVERSE_BATTLE && c.value > 0)), + MONO_GRASS: new ChallengeAchv("MONO_GRASS", "", "MONO_GRASS.description", "miracle_seed", 100, (c, scene) => c instanceof SingleTypeChallenge && c.value === 12 && !scene.gameMode.challenges.some(c => c.id === Challenges.INVERSE_BATTLE && c.value > 0)), + MONO_ELECTRIC: new ChallengeAchv("MONO_ELECTRIC", "", "MONO_ELECTRIC.description", "magnet", 100, (c, scene) => c instanceof SingleTypeChallenge && c.value === 13 && !scene.gameMode.challenges.some(c => c.id === Challenges.INVERSE_BATTLE && c.value > 0)), + MONO_PSYCHIC: new ChallengeAchv("MONO_PSYCHIC", "", "MONO_PSYCHIC.description", "twisted_spoon", 100, (c, scene) => c instanceof SingleTypeChallenge && c.value === 14 && !scene.gameMode.challenges.some(c => c.id === Challenges.INVERSE_BATTLE && c.value > 0)), + MONO_ICE: new ChallengeAchv("MONO_ICE", "", "MONO_ICE.description", "never_melt_ice", 100, (c, scene) => c instanceof SingleTypeChallenge && c.value === 15 && !scene.gameMode.challenges.some(c => c.id === Challenges.INVERSE_BATTLE && c.value > 0)), + MONO_DRAGON: new ChallengeAchv("MONO_DRAGON", "", "MONO_DRAGON.description", "dragon_fang", 100, (c, scene) => c instanceof SingleTypeChallenge && c.value === 16 && !scene.gameMode.challenges.some(c => c.id === Challenges.INVERSE_BATTLE && c.value > 0)), + MONO_DARK: new ChallengeAchv("MONO_DARK", "", "MONO_DARK.description", "black_glasses", 100, (c, scene) => c instanceof SingleTypeChallenge && c.value === 17 && !scene.gameMode.challenges.some(c => c.id === Challenges.INVERSE_BATTLE && c.value > 0)), + MONO_FAIRY: new ChallengeAchv("MONO_FAIRY", "", "MONO_FAIRY.description", "fairy_feather", 100, (c, scene) => c instanceof SingleTypeChallenge && c.value === 18 && !scene.gameMode.challenges.some(c => c.id === Challenges.INVERSE_BATTLE && c.value > 0)), + FRESH_START: new ChallengeAchv("FRESH_START", "", "FRESH_START.description", "reviver_seed", 100, (c, scene) => c instanceof FreshStartChallenge && c.value > 0 && !scene.gameMode.challenges.some(c => c.id === Challenges.INVERSE_BATTLE && c.value > 0)), + INVERSE_BATTLE: new ChallengeAchv("INVERSE_BATTLE", "", "INVERSE_BATTLE.description", "inverse", 100, c => c instanceof InverseBattleChallenge && c.value > 0), }; export function initAchievements() { diff --git a/src/system/game-data.ts b/src/system/game-data.ts index 78bb2523a64..03f18922384 100644 --- a/src/system/game-data.ts +++ b/src/system/game-data.ts @@ -44,6 +44,7 @@ import { WeatherType } from "#app/enums/weather-type.js"; import { TerrainType } from "#app/data/terrain.js"; import { OutdatedPhase } from "#app/phases/outdated-phase.js"; import { ReloadSessionPhase } from "#app/phases/reload-session-phase.js"; +import { RUN_HISTORY_LIMIT } from "#app/ui/run-history-ui-handler"; import {TagAddedEvent} from "#app/events/arena"; import {ArenaTrapTag} from "#app/data/arena-tag"; @@ -77,6 +78,8 @@ export function getDataTypeKey(dataType: GameDataType, slotId: integer = 0): str return "tutorials"; case GameDataType.SEEN_DIALOGUES: return "seenDialogues"; + case GameDataType.RUN_HISTORY: + return "runHistoryData"; } } @@ -184,6 +187,15 @@ export const AbilityAttr = { ABILITY_HIDDEN: 4 }; +export type RunHistoryData = Record; + +export interface RunEntry { + entry: SessionSaveData; + isVictory: boolean; + /*Automatically set to false at the moment - implementation TBD*/ + isFavorite: boolean; +} + export type StarterMoveset = [ Moves ] | [ Moves, Moves ] | [ Moves, Moves, Moves ] | [ Moves, Moves, Moves, Moves ]; export interface StarterFormMoveData { @@ -233,6 +245,8 @@ export class StarterPrefs { if (pStr !== StarterPrefers_private_latest) { // something changed, store the update localStorage.setItem(`starterPrefs_${loggedInUser?.username}`, pStr); + // update the latest prefs + StarterPrefers_private_latest = pStr; } } } @@ -264,7 +278,7 @@ const systemShortKeys = { seenAttr: "$sa", caughtAttr: "$ca", natureAttr: "$na", - seenCount: "$s" , + seenCount: "$s", caughtCount: "$c", hatchedCount: "$hc", ivs: "$i", @@ -292,6 +306,7 @@ export class GameData { public starterData: StarterData; public gameStats: GameStats; + public runHistory: RunHistoryData; public unlocks: Unlocks; @@ -312,6 +327,7 @@ export class GameData { this.secretId = Utils.randInt(65536); this.starterData = {}; this.gameStats = new GameStats(); + this.runHistory = {}; this.unlocks = { [Unlockables.ENDLESS_MODE]: false, [Unlockables.MINI_BLACK_HOLE]: false, @@ -447,6 +463,11 @@ export class GameData { if (versions[0] !== versions[1]) { const [ versionNumbers, oldVersionNumbers ] = versions.map(ver => ver.split('.').map(v => parseInt(v))); }*/ + const lsItemKey = `runHistoryData_${loggedInUser?.username}`; + const lsItem = localStorage.getItem(lsItemKey); + if (!lsItem) { + localStorage.setItem(lsItemKey, ""); + } this.trainerId = systemData.trainerId; this.secretId = systemData.secretId; @@ -558,6 +579,98 @@ export class GameData { }); } + /** + * Retrieves current run history data, organized by time stamp. + * At the moment, only retrievable from locale cache + */ + async getRunHistoryData(scene: BattleScene): Promise { + if (!Utils.isLocal) { + /** + * Networking Code DO NOT DELETE! + * + const response = await Utils.apiFetch("savedata/runHistory", true); + const data = await response.json(); + */ + const lsItemKey = `runHistoryData_${loggedInUser?.username}`; + const lsItem = localStorage.getItem(lsItemKey); + if (lsItem) { + const cachedResponse = lsItem; + if (cachedResponse) { + const runHistory = JSON.parse(decrypt(cachedResponse, bypassLogin)); + return runHistory; + } + return {}; + // check to see whether cachedData or serverData is more up-to-date + /** + * Networking Code DO NOT DELETE! + * + if ( Object.keys(cachedRHData).length >= Object.keys(data).length ) { + return cachedRHData; + } + */ + } else { + localStorage.setItem(`runHistoryData_${loggedInUser?.username}`, ""); + return {}; + } + } else { + const lsItemKey = `runHistoryData_${loggedInUser?.username}`; + const lsItem = localStorage.getItem(lsItemKey); + if (lsItem) { + const cachedResponse = lsItem; + if (cachedResponse) { + const runHistory : RunHistoryData = JSON.parse(decrypt(cachedResponse, bypassLogin)); + return runHistory; + } + return {}; + } else { + localStorage.setItem(`runHistoryData_${loggedInUser?.username}`, ""); + return {}; + } + } + } + + /** + * Saves a new entry to Run History + * @param scene: BattleScene object + * @param runEntry: most recent SessionSaveData of the run + * @param isVictory: result of the run + * Arbitrary limit of 25 runs per player - Will delete runs, starting with the oldest one, if needed + */ + async saveRunHistory(scene: BattleScene, runEntry : SessionSaveData, isVictory: boolean): Promise { + const runHistoryData = await this.getRunHistoryData(scene); + // runHistoryData should always return run history or {} empty object + let timestamps = Object.keys(runHistoryData).map(Number); + + // Arbitrary limit of 25 entries per user --> Can increase or decrease + while (timestamps.length >= RUN_HISTORY_LIMIT ) { + const oldestTimestamp = (Math.min.apply(Math, timestamps)).toString(); + delete runHistoryData[oldestTimestamp]; + timestamps = Object.keys(runHistoryData).map(Number); + } + + const timestamp = (runEntry.timestamp).toString(); + runHistoryData[timestamp] = { + entry: runEntry, + isVictory: isVictory, + isFavorite: false, + }; + localStorage.setItem(`runHistoryData_${loggedInUser?.username}`, encrypt(JSON.stringify(runHistoryData), bypassLogin)); + /** + * Networking Code DO NOT DELETE + * + if (!Utils.isLocal) { + try { + await Utils.apiPost("savedata/runHistory", JSON.stringify(runHistoryData), undefined, true); + return true; + } catch (err) { + console.log("savedata/runHistory POST failed : ", err); + return false; + } + } + */ + return true; + } + parseSystemData(dataStr: string): SystemSaveData { return JSON.parse(dataStr, (k: string, v: any) => { if (k === "gameStats") { @@ -1309,6 +1422,15 @@ export class GameData { const sessionData = this.parseSessionData(dataStr); valid = !!sessionData.party && !!sessionData.enemyParty && !!sessionData.timestamp; break; + case GameDataType.RUN_HISTORY: + const data = JSON.parse(dataStr); + const keys = Object.keys(data); + dataName = i18next.t("menuUiHandler:RUN_HISTORY").toLowerCase(); + keys.forEach((key) => { + const entryKeys = Object.keys(data[key]); + valid = ["isFavorite", "isVictory", "entry"].every(v => entryKeys.includes(v)) && entryKeys.length === 3; + }); + break; case GameDataType.SETTINGS: case GameDataType.TUTORIALS: valid = true; diff --git a/src/system/settings/settings.ts b/src/system/settings/settings.ts index 7263ae3a3de..7b0fea95a98 100644 --- a/src/system/settings/settings.ts +++ b/src/system/settings/settings.ts @@ -9,6 +9,7 @@ import { EaseType } from "#enums/ease-type"; import { MoneyFormat } from "#enums/money-format"; import { PlayerGender } from "#enums/player-gender"; import { getIsInitialized, initI18n } from "#app/plugins/i18n.js"; +import { ShopCursorTarget } from "#app/enums/shop-cursor-target"; function getTranslation(key: string): string { if (!getIsInitialized()) { @@ -102,6 +103,7 @@ export const SettingKeys = { Damage_Numbers: "DAMAGE_NUMBERS", Move_Animations: "MOVE_ANIMATIONS", Show_Stats_on_Level_Up: "SHOW_LEVEL_UP_STATS", + Reroll_Target: "REROLL_TARGET", Candy_Upgrade_Notification: "CANDY_UPGRADE_NOTIFICATION", Candy_Upgrade_Display: "CANDY_UPGRADE_DISPLAY", Move_Info: "MOVE_INFO", @@ -115,7 +117,9 @@ export const SettingKeys = { Type_Hints: "TYPE_HINTS", Master_Volume: "MASTER_VOLUME", BGM_Volume: "BGM_VOLUME", + Field_Volume: "FIELD_VOLUME", SE_Volume: "SE_VOLUME", + UI_Volume: "UI_SOUND_EFFECTS", Music_Preference: "MUSIC_PREFERENCE", Show_BGM_Bar: "SHOW_BGM_BAR", Move_Touch_Controls: "MOVE_TOUCH_CONTROLS", @@ -539,6 +543,13 @@ export const Setting: Array = [ default: 10, type: SettingType.AUDIO }, + { + key: SettingKeys.Field_Volume, + label: i18next.t("settings:fieldVolume"), + options: VOLUME_OPTIONS, + default: 10, + type: SettingType.AUDIO + }, { key: SettingKeys.SE_Volume, label: i18next.t("settings:seVolume"), @@ -546,6 +557,13 @@ export const Setting: Array = [ default: 10, type: SettingType.AUDIO }, + { + key: SettingKeys.UI_Volume, + label: i18next.t("settings:uiVolume"), + options: VOLUME_OPTIONS, + default: 10, + type: SettingType.AUDIO + }, { key: SettingKeys.Music_Preference, label: i18next.t("settings:musicPreference"), @@ -577,6 +595,30 @@ export const Setting: Array = [ activatable: true, isHidden: () => !hasTouchscreen() }, + { + key: SettingKeys.Reroll_Target, + label: i18next.t("settings:shopCursorTarget"), + options: [ + { + value:"Reroll", + label: i18next.t("settings:reroll") + }, + { + value:"Items", + label: i18next.t("settings:items") + }, + { + value:"Shop", + label: i18next.t("settings:shop") + }, + { + value:"Check Team", + label: i18next.t("settings:checkTeam") + } + ], + default: ShopCursorTarget.CHECK_TEAM, + type: SettingType.DISPLAY + }, { key: SettingKeys.Shop_Overlay_Opacity, label: i18next.t("settings:shopOverlayOpacity"), @@ -628,10 +670,17 @@ export function setSetting(scene: BattleScene, setting: string, value: integer): scene.bgmVolume = value ? parseInt(Setting[index].options[value].value) * 0.01 : 0; scene.updateSoundVolume(); break; + case SettingKeys.Field_Volume: + scene.fieldVolume = value ? parseInt(Setting[index].options[value].value) * 0.01 : 0; + scene.updateSoundVolume(); + break; case SettingKeys.SE_Volume: scene.seVolume = value ? parseInt(Setting[index].options[value].value) * 0.01 : 0; scene.updateSoundVolume(); break; + case SettingKeys.UI_Volume: + scene.uiVolume = value ? parseInt(Setting[index].options[value].value) * 0.01 : 0; + break; case SettingKeys.Music_Preference: scene.musicPreference = value; break; @@ -709,6 +758,8 @@ export function setSetting(scene: BattleScene, setting: string, value: integer): case SettingKeys.Show_Stats_on_Level_Up: scene.showLevelUpStats = Setting[index].options[value].value === "On"; break; + case SettingKeys.Reroll_Target: + scene.shopCursorTarget = value; case SettingKeys.EXP_Gains_Speed: scene.expGainsSpeed = value; break; diff --git a/src/test/abilities/ability_timing.test.ts b/src/test/abilities/ability_timing.test.ts index c117c62d45b..3238f880992 100644 --- a/src/test/abilities/ability_timing.test.ts +++ b/src/test/abilities/ability_timing.test.ts @@ -1,15 +1,15 @@ +import { CommandPhase } from "#app/phases/command-phase"; +import { MessagePhase } from "#app/phases/message-phase"; +import { TurnInitPhase } from "#app/phases/turn-init-phase"; import i18next, { initI18n } from "#app/plugins/i18n"; -import GameManager from "#test/utils/gameManager"; import { Mode } from "#app/ui/ui"; import { Abilities } from "#enums/abilities"; import { Moves } from "#enums/moves"; import { Species } from "#enums/species"; +import GameManager from "#test/utils/gameManager"; +import { SPLASH_ONLY } from "#test/utils/testUtils"; import Phaser from "phaser"; import { afterEach, beforeAll, beforeEach, describe, expect, it } from "vitest"; -import { SPLASH_ONLY } from "#test/utils/testUtils"; -import { CommandPhase } from "#app/phases/command-phase.js"; -import { MessagePhase } from "#app/phases/message-phase.js"; -import { TurnInitPhase } from "#app/phases/turn-init-phase.js"; describe("Ability Timing", () => { diff --git a/src/test/abilities/aura_break.test.ts b/src/test/abilities/aura_break.test.ts index bca400bc0e3..7de300c157a 100644 --- a/src/test/abilities/aura_break.test.ts +++ b/src/test/abilities/aura_break.test.ts @@ -1,19 +1,18 @@ -import { allMoves } from "#app/data/move.js"; -import GameManager from "#test/utils/gameManager"; -import { getMovePosition } from "#test/utils/gameManagerUtils"; +import { allMoves } from "#app/data/move"; +import { MoveEffectPhase } from "#app/phases/move-effect-phase"; import { Abilities } from "#enums/abilities"; import { Moves } from "#enums/moves"; import { Species } from "#enums/species"; +import GameManager from "#test/utils/gameManager"; +import { SPLASH_ONLY } from "#test/utils/testUtils"; import Phaser from "phaser"; import { afterEach, beforeAll, beforeEach, describe, expect, it, vi } from "vitest"; -import { SPLASH_ONLY } from "#test/utils/testUtils"; -import { MoveEffectPhase } from "#app/phases/move-effect-phase.js"; describe("Abilities - Aura Break", () => { let phaserGame: Phaser.Game; let game: GameManager; - const auraBreakMultiplier = 9/16 * 4/3; + const auraBreakMultiplier = 9 / 16 * 4 / 3; beforeAll(() => { phaserGame = new Phaser.Game({ @@ -42,7 +41,7 @@ describe("Abilities - Aura Break", () => { vi.spyOn(moveToCheck, "calculateBattlePower"); await game.startBattle([Species.PIKACHU]); - game.doAttack(getMovePosition(game.scene, 0, Moves.MOONBLAST)); + game.move.select(Moves.MOONBLAST); await game.phaseInterceptor.to(MoveEffectPhase); expect(moveToCheck.calculateBattlePower).toHaveReturnedWith(expect.closeTo(basePower * auraBreakMultiplier)); @@ -56,7 +55,7 @@ describe("Abilities - Aura Break", () => { vi.spyOn(moveToCheck, "calculateBattlePower"); await game.startBattle([Species.PIKACHU]); - game.doAttack(getMovePosition(game.scene, 0, Moves.DARK_PULSE)); + game.move.select(Moves.DARK_PULSE); await game.phaseInterceptor.to(MoveEffectPhase); expect(moveToCheck.calculateBattlePower).toHaveReturnedWith(expect.closeTo(basePower * auraBreakMultiplier)); diff --git a/src/test/abilities/battery.test.ts b/src/test/abilities/battery.test.ts index 766c1c30ecc..020866509d6 100644 --- a/src/test/abilities/battery.test.ts +++ b/src/test/abilities/battery.test.ts @@ -1,14 +1,13 @@ -import { allMoves } from "#app/data/move.js"; -import { Abilities } from "#app/enums/abilities.js"; -import GameManager from "#test/utils/gameManager"; -import { getMovePosition } from "#test/utils/gameManagerUtils"; +import { allMoves } from "#app/data/move"; +import { Abilities } from "#app/enums/abilities"; +import { MoveEffectPhase } from "#app/phases/move-effect-phase"; +import { TurnEndPhase } from "#app/phases/turn-end-phase"; import { Moves } from "#enums/moves"; import { Species } from "#enums/species"; +import GameManager from "#test/utils/gameManager"; +import { SPLASH_ONLY } from "#test/utils/testUtils"; import Phaser from "phaser"; import { afterEach, beforeAll, beforeEach, describe, expect, it, vi } from "vitest"; -import { SPLASH_ONLY } from "#test/utils/testUtils"; -import { MoveEffectPhase } from "#app/phases/move-effect-phase.js"; -import { TurnEndPhase } from "#app/phases/turn-end-phase.js"; describe("Abilities - Battery", () => { let phaserGame: Phaser.Game; @@ -43,8 +42,8 @@ describe("Abilities - Battery", () => { await game.startBattle([Species.PIKACHU, Species.CHARJABUG]); - game.doAttack(getMovePosition(game.scene, 0, Moves.DAZZLING_GLEAM)); - game.doAttack(getMovePosition(game.scene, 1, Moves.SPLASH)); + game.move.select(Moves.DAZZLING_GLEAM); + game.move.select(Moves.SPLASH, 1); await game.phaseInterceptor.to(MoveEffectPhase); expect(moveToCheck.calculateBattlePower).toHaveReturnedWith(basePower * batteryMultiplier); @@ -58,8 +57,8 @@ describe("Abilities - Battery", () => { await game.startBattle([Species.PIKACHU, Species.CHARJABUG]); - game.doAttack(getMovePosition(game.scene, 0, Moves.BREAKING_SWIPE)); - game.doAttack(getMovePosition(game.scene, 1, Moves.SPLASH)); + game.move.select(Moves.BREAKING_SWIPE); + game.move.select(Moves.SPLASH, 1); await game.phaseInterceptor.to(MoveEffectPhase); expect(moveToCheck.calculateBattlePower).toHaveReturnedWith(basePower); @@ -73,8 +72,8 @@ describe("Abilities - Battery", () => { await game.startBattle([Species.CHARJABUG, Species.PIKACHU]); - game.doAttack(getMovePosition(game.scene, 0, Moves.DAZZLING_GLEAM)); - game.doAttack(getMovePosition(game.scene, 1, Moves.SPLASH)); + game.move.select(Moves.DAZZLING_GLEAM); + game.move.select(Moves.SPLASH, 1); await game.phaseInterceptor.to(TurnEndPhase); expect(moveToCheck.calculateBattlePower).toHaveReturnedWith(basePower); diff --git a/src/test/abilities/battle_bond.test.ts b/src/test/abilities/battle_bond.test.ts index c28a00e821d..71e9438db8f 100644 --- a/src/test/abilities/battle_bond.test.ts +++ b/src/test/abilities/battle_bond.test.ts @@ -1,11 +1,10 @@ -import { Status, StatusEffect } from "#app/data/status-effect.js"; -import { QuietFormChangePhase } from "#app/phases/quiet-form-change-phase.js"; -import { TurnEndPhase } from "#app/phases/turn-end-phase.js"; +import { Status, StatusEffect } from "#app/data/status-effect"; +import { QuietFormChangePhase } from "#app/phases/quiet-form-change-phase"; +import { TurnEndPhase } from "#app/phases/turn-end-phase"; import { Abilities } from "#enums/abilities"; import { Moves } from "#enums/moves"; import { Species } from "#enums/species"; import GameManager from "#test/utils/gameManager"; -import { getMovePosition } from "#test/utils/gameManagerUtils"; import { afterEach, beforeAll, beforeEach, describe, expect, test } from "vitest"; const TIMEOUT = 20 * 1000; @@ -53,7 +52,7 @@ describe("Abilities - BATTLE BOND", () => { greninja!.status = new Status(StatusEffect.FAINT); expect(greninja!.isFainted()).toBe(true); - game.doAttack(getMovePosition(game.scene, 0, Moves.SPLASH)); + game.move.select(Moves.SPLASH); await game.doKillOpponents(); await game.phaseInterceptor.to(TurnEndPhase); game.doSelectModifier(); diff --git a/src/test/abilities/costar.test.ts b/src/test/abilities/costar.test.ts index 9410ee55069..9a4baeef1fb 100644 --- a/src/test/abilities/costar.test.ts +++ b/src/test/abilities/costar.test.ts @@ -1,14 +1,13 @@ -import { BattleStat } from "#app/data/battle-stat.js"; -import { Abilities } from "#app/enums/abilities.js"; -import { Moves } from "#app/enums/moves.js"; -import { Species } from "#app/enums/species.js"; +import { BattleStat } from "#app/data/battle-stat"; +import { Abilities } from "#app/enums/abilities"; +import { Moves } from "#app/enums/moves"; +import { Species } from "#app/enums/species"; +import { CommandPhase } from "#app/phases/command-phase"; +import { MessagePhase } from "#app/phases/message-phase"; +import GameManager from "#test/utils/gameManager"; +import { SPLASH_ONLY } from "#test/utils/testUtils"; import Phaser from "phaser"; import { afterEach, beforeAll, beforeEach, describe, expect, test } from "vitest"; -import GameManager from "#test/utils/gameManager"; -import { getMovePosition } from "#test/utils/gameManagerUtils"; -import { SPLASH_ONLY } from "#test/utils/testUtils"; -import { CommandPhase } from "#app/phases/command-phase.js"; -import { MessagePhase } from "#app/phases/message-phase.js"; const TIMEOUT = 20 * 1000; @@ -44,15 +43,15 @@ describe("Abilities - COSTAR", () => { let [leftPokemon, rightPokemon] = game.scene.getPlayerField(); - game.doAttack(getMovePosition(game.scene, 0, Moves.NASTY_PLOT)); + game.move.select(Moves.NASTY_PLOT); await game.phaseInterceptor.to(CommandPhase); - game.doAttack(getMovePosition(game.scene, 1, Moves.SPLASH)); + game.move.select(Moves.SPLASH, 1); await game.toNextTurn(); expect(leftPokemon.summonData.battleStats[BattleStat.SPATK]).toBe(+2); expect(rightPokemon.summonData.battleStats[BattleStat.SPATK]).toBe(0); - game.doAttack(getMovePosition(game.scene, 0, Moves.SPLASH)); + game.move.select(Moves.SPLASH); await game.phaseInterceptor.to(CommandPhase); game.doSwitchPokemon(2); await game.phaseInterceptor.to(MessagePhase); @@ -76,7 +75,7 @@ describe("Abilities - COSTAR", () => { expect(leftPokemon.summonData.battleStats[BattleStat.ATK]).toBe(-2); expect(leftPokemon.summonData.battleStats[BattleStat.ATK]).toBe(-2); - game.doAttack(getMovePosition(game.scene, 0, Moves.SPLASH)); + game.move.select(Moves.SPLASH); await game.phaseInterceptor.to(CommandPhase); game.doSwitchPokemon(2); await game.phaseInterceptor.to(MessagePhase); diff --git a/src/test/abilities/disguise.test.ts b/src/test/abilities/disguise.test.ts index 969375c397e..85141fdb491 100644 --- a/src/test/abilities/disguise.test.ts +++ b/src/test/abilities/disguise.test.ts @@ -1,17 +1,17 @@ -import { afterEach, beforeAll, beforeEach, describe, expect, it } from "vitest"; -import GameManager from "#test/utils/gameManager"; -import { getMovePosition } from "#test/utils/gameManagerUtils"; +import { BattleStat } from "#app/data/battle-stat"; +import { StatusEffect } from "#app/data/status-effect"; +import { CommandPhase } from "#app/phases/command-phase"; +import { MoveEffectPhase } from "#app/phases/move-effect-phase"; +import { MoveEndPhase } from "#app/phases/move-end-phase"; +import { TurnEndPhase } from "#app/phases/turn-end-phase"; +import { TurnInitPhase } from "#app/phases/turn-init-phase"; +import { Mode } from "#app/ui/ui"; +import { toDmgValue } from "#app/utils"; import { Moves } from "#enums/moves"; import { Species } from "#enums/species"; -import { StatusEffect } from "#app/data/status-effect.js"; -import { BattleStat } from "#app/data/battle-stat.js"; +import GameManager from "#test/utils/gameManager"; +import { afterEach, beforeAll, beforeEach, describe, expect, it } from "vitest"; import { SPLASH_ONLY } from "../utils/testUtils"; -import { Mode } from "#app/ui/ui.js"; -import { MoveEffectPhase } from "#app/phases/move-effect-phase.js"; -import { MoveEndPhase } from "#app/phases/move-end-phase.js"; -import { TurnEndPhase } from "#app/phases/turn-end-phase.js"; -import { TurnInitPhase } from "#app/phases/turn-init-phase.js"; -import { CommandPhase } from "#app/phases/command-phase.js"; const TIMEOUT = 20 * 1000; @@ -47,11 +47,11 @@ describe("Abilities - Disguise", () => { const mimikyu = game.scene.getEnemyPokemon()!; const maxHp = mimikyu.getMaxHp(); - const disguiseDamage = Math.floor(maxHp / 8); + const disguiseDamage = toDmgValue(maxHp / 8); expect(mimikyu.formIndex).toBe(disguisedForm); - game.doAttack(getMovePosition(game.scene, 0, Moves.SHADOW_SNEAK)); + game.move.select(Moves.SHADOW_SNEAK); await game.phaseInterceptor.to(MoveEndPhase); @@ -66,7 +66,7 @@ describe("Abilities - Disguise", () => { expect(mimikyu.formIndex).toBe(disguisedForm); - game.doAttack(getMovePosition(game.scene, 0, Moves.VACUUM_WAVE)); + game.move.select(Moves.VACUUM_WAVE); await game.phaseInterceptor.to(MoveEndPhase); @@ -80,11 +80,11 @@ describe("Abilities - Disguise", () => { const mimikyu = game.scene.getEnemyPokemon()!; const maxHp = mimikyu.getMaxHp(); - const disguiseDamage = Math.floor(maxHp / 8); + const disguiseDamage = toDmgValue(maxHp / 8); expect(mimikyu.formIndex).toBe(disguisedForm); - game.doAttack(getMovePosition(game.scene, 0, Moves.SURGING_STRIKES)); + game.move.select(Moves.SURGING_STRIKES); // First hit await game.phaseInterceptor.to(MoveEffectPhase); @@ -103,7 +103,7 @@ describe("Abilities - Disguise", () => { const mimikyu = game.scene.getEnemyPokemon()!; expect(mimikyu.hp).toBe(mimikyu.getMaxHp()); - game.doAttack(getMovePosition(game.scene, 0, Moves.TOXIC_THREAD)); + game.move.select(Moves.TOXIC_THREAD); await game.phaseInterceptor.to(TurnEndPhase); @@ -121,9 +121,9 @@ describe("Abilities - Disguise", () => { const mimikyu = game.scene.getPlayerPokemon()!; const maxHp = mimikyu.getMaxHp(); - const disguiseDamage = Math.floor(maxHp / 8); + const disguiseDamage = toDmgValue(maxHp / 8); - game.doAttack(getMovePosition(game.scene, 0, Moves.SPLASH)); + game.move.select(Moves.SPLASH); await game.phaseInterceptor.to(TurnEndPhase); @@ -148,7 +148,7 @@ describe("Abilities - Disguise", () => { const mimikyu = game.scene.getParty()[1]!; expect(mimikyu.formIndex).toBe(bustedForm); - game.doAttack(getMovePosition(game.scene, 0, Moves.SPLASH)); + game.move.select(Moves.SPLASH); await game.doKillOpponents(); await game.toNextWave(); @@ -168,7 +168,7 @@ describe("Abilities - Disguise", () => { expect(mimikyu.formIndex).toBe(bustedForm); - game.doAttack(getMovePosition(game.scene, 0, Moves.SPLASH)); + game.move.select(Moves.SPLASH); await game.doKillOpponents(); await game.toNextWave(); @@ -188,11 +188,11 @@ describe("Abilities - Disguise", () => { expect(mimikyu1.formIndex).toBe(bustedForm); - game.doAttack(getMovePosition(game.scene, 0, Moves.SPLASH)); + game.move.select(Moves.SPLASH); await game.killPokemon(mimikyu1); game.doSelectPartyPokemon(1); await game.toNextTurn(); - game.doAttack(getMovePosition(game.scene, 0, Moves.SPLASH)); + game.move.select(Moves.SPLASH); await game.doKillOpponents(); game.onNextPrompt("CheckSwitchPhase", Mode.CONFIRM, () => { // TODO: Make tests run in set mode instead of switch mode game.setMode(Mode.MESSAGE); @@ -207,4 +207,18 @@ describe("Abilities - Disguise", () => { expect(mimikyu1.formIndex).toBe(disguisedForm); }, TIMEOUT); + + it("doesn't faint twice when fainting due to Disguise break damage, nor prevent faint from Disguise break damage if using Endure", async () => { + game.override.enemyMoveset(Array(4).fill(Moves.ENDURE)); + await game.startBattle(); + + const mimikyu = game.scene.getEnemyPokemon()!; + mimikyu.hp = 1; + + game.move.select(Moves.SHADOW_SNEAK); + await game.toNextWave(); + + expect(game.scene.getCurrentPhase()?.constructor.name).toBe("CommandPhase"); + expect(game.scene.currentBattle.waveIndex).toBe(2); + }, TIMEOUT); }); diff --git a/src/test/abilities/dry_skin.test.ts b/src/test/abilities/dry_skin.test.ts index 1e3860da985..b337e4d96f7 100644 --- a/src/test/abilities/dry_skin.test.ts +++ b/src/test/abilities/dry_skin.test.ts @@ -1,12 +1,11 @@ -import { Species } from "#app/enums/species.js"; -import GameManager from "#test/utils/gameManager"; -import { getMovePosition } from "#test/utils/gameManagerUtils"; +import { Species } from "#app/enums/species"; +import { TurnEndPhase } from "#app/phases/turn-end-phase"; import { Abilities } from "#enums/abilities"; import { Moves } from "#enums/moves"; +import GameManager from "#test/utils/gameManager"; +import { SPLASH_ONLY } from "#test/utils/testUtils"; import Phaser from "phaser"; import { afterEach, beforeAll, beforeEach, describe, expect, it } from "vitest"; -import { SPLASH_ONLY } from "#test/utils/testUtils"; -import { TurnEndPhase } from "#app/phases/turn-end-phase.js"; describe("Abilities - Dry Skin", () => { let phaserGame: Phaser.Game; @@ -43,13 +42,13 @@ describe("Abilities - Dry Skin", () => { // first turn let previousEnemyHp = enemy.hp; - game.doAttack(getMovePosition(game.scene, 0, Moves.SUNNY_DAY)); + game.move.select(Moves.SUNNY_DAY); await game.phaseInterceptor.to(TurnEndPhase); expect(enemy.hp).toBeLessThan(previousEnemyHp); // second turn previousEnemyHp = enemy.hp; - game.doAttack(getMovePosition(game.scene, 0, Moves.SPLASH)); + game.move.select(Moves.SPLASH); await game.phaseInterceptor.to(TurnEndPhase); expect(enemy.hp).toBeLessThan(previousEnemyHp); }); @@ -66,13 +65,13 @@ describe("Abilities - Dry Skin", () => { // first turn let previousEnemyHp = enemy.hp; - game.doAttack(getMovePosition(game.scene, 0, Moves.RAIN_DANCE)); + game.move.select(Moves.RAIN_DANCE); await game.phaseInterceptor.to(TurnEndPhase); expect(enemy.hp).toBeGreaterThan(previousEnemyHp); // second turn previousEnemyHp = enemy.hp; - game.doAttack(getMovePosition(game.scene, 0, Moves.SPLASH)); + game.move.select(Moves.SPLASH); await game.phaseInterceptor.to(TurnEndPhase); expect(enemy.hp).toBeGreaterThan(previousEnemyHp); }); @@ -87,7 +86,7 @@ describe("Abilities - Dry Skin", () => { enemy.hp = initialHP; // first turn - game.doAttack(getMovePosition(game.scene, 0, Moves.FLAMETHROWER)); + game.move.select(Moves.FLAMETHROWER); await game.phaseInterceptor.to(TurnEndPhase); const fireDamageTakenWithDrySkin = initialHP - enemy.hp; @@ -96,7 +95,7 @@ describe("Abilities - Dry Skin", () => { game.override.enemyAbility(Abilities.NONE); // second turn - game.doAttack(getMovePosition(game.scene, 0, Moves.FLAMETHROWER)); + game.move.select(Moves.FLAMETHROWER); await game.phaseInterceptor.to(TurnEndPhase); const fireDamageTakenWithoutDrySkin = initialHP - enemy.hp; @@ -113,7 +112,7 @@ describe("Abilities - Dry Skin", () => { enemy.hp = 1; - game.doAttack(getMovePosition(game.scene, 0, Moves.WATER_GUN)); + game.move.select(Moves.WATER_GUN); await game.phaseInterceptor.to(TurnEndPhase); expect(enemy.hp).toBeGreaterThan(1); }); @@ -129,7 +128,7 @@ describe("Abilities - Dry Skin", () => { enemy.hp = 1; game.override.enemyMoveset([Moves.PROTECT, Moves.PROTECT, Moves.PROTECT, Moves.PROTECT]); - game.doAttack(getMovePosition(game.scene, 0, Moves.WATER_GUN)); + game.move.select(Moves.WATER_GUN); await game.phaseInterceptor.to(TurnEndPhase); expect(enemy.hp).toBe(1); }); @@ -145,14 +144,14 @@ describe("Abilities - Dry Skin", () => { enemy.hp = 1; // first turn - game.doAttack(getMovePosition(game.scene, 0, Moves.WATER_SHURIKEN)); + game.move.select(Moves.WATER_SHURIKEN); await game.phaseInterceptor.to(TurnEndPhase); const healthGainedFromWaterShuriken = enemy.hp - 1; enemy.hp = 1; // second turn - game.doAttack(getMovePosition(game.scene, 0, Moves.WATER_GUN)); + game.move.select(Moves.WATER_GUN); await game.phaseInterceptor.to(TurnEndPhase); const healthGainedFromWaterGun = enemy.hp - 1; diff --git a/src/test/abilities/flash_fire.test.ts b/src/test/abilities/flash_fire.test.ts index 28c59903b68..de40873998f 100644 --- a/src/test/abilities/flash_fire.test.ts +++ b/src/test/abilities/flash_fire.test.ts @@ -1,16 +1,15 @@ -import { Species } from "#app/enums/species.js"; -import GameManager from "#test/utils/gameManager"; +import { BattlerIndex } from "#app/battle"; +import { StatusEffect } from "#app/data/status-effect"; +import { BattlerTagType } from "#app/enums/battler-tag-type"; +import { Species } from "#app/enums/species"; +import { MovePhase } from "#app/phases/move-phase"; +import { TurnEndPhase } from "#app/phases/turn-end-phase"; import { Abilities } from "#enums/abilities"; import { Moves } from "#enums/moves"; +import GameManager from "#test/utils/gameManager"; +import { SPLASH_ONLY } from "#test/utils/testUtils"; import Phaser from "phaser"; import { afterEach, beforeAll, beforeEach, describe, expect, it } from "vitest"; -import { SPLASH_ONLY } from "#test/utils/testUtils"; -import { getMovePosition } from "#test/utils/gameManagerUtils"; -import { StatusEffect } from "#app/data/status-effect.js"; -import { BattlerTagType } from "#app/enums/battler-tag-type.js"; -import { BattlerIndex } from "#app/battle.js"; -import { MovePhase } from "#app/phases/move-phase.js"; -import { TurnEndPhase } from "#app/phases/turn-end-phase.js"; describe("Abilities - Flash Fire", () => { let phaserGame: Phaser.Game; @@ -38,35 +37,35 @@ describe("Abilities - Flash Fire", () => { }); - it("immune to Fire-type moves", async() => { + it("immune to Fire-type moves", async () => { game.override.enemyMoveset(Array(4).fill(Moves.EMBER)).moveset(SPLASH_ONLY); await game.startBattle([Species.BLISSEY]); const blissey = game.scene.getPlayerPokemon()!; - game.doAttack(getMovePosition(game.scene, 0, Moves.SPLASH)); + game.move.select(Moves.SPLASH); await game.phaseInterceptor.to(TurnEndPhase); expect(blissey.hp).toBe(blissey.getMaxHp()); }, 20000); - it("not activate if the Pokémon is protected from the Fire-type move", async() => { + it("not activate if the Pokémon is protected from the Fire-type move", async () => { game.override.enemyMoveset(Array(4).fill(Moves.EMBER)).moveset([Moves.PROTECT]); await game.startBattle([Species.BLISSEY]); const blissey = game.scene.getPlayerPokemon()!; - game.doAttack(getMovePosition(game.scene, 0, Moves.PROTECT)); + game.move.select(Moves.PROTECT); await game.phaseInterceptor.to(TurnEndPhase); expect(blissey!.getTag(BattlerTagType.FIRE_BOOST)).toBeUndefined(); }, 20000); - it("activated by Will-O-Wisp", async() => { + it("activated by Will-O-Wisp", async () => { game.override.enemyMoveset(Array(4).fill(Moves.WILL_O_WISP)).moveset(SPLASH_ONLY); await game.startBattle([Species.BLISSEY]); const blissey = game.scene.getPlayerPokemon()!; - game.doAttack(getMovePosition(game.scene, 0, Moves.SPLASH)); + game.move.select(Moves.SPLASH); await game.move.forceHit(); await game.phaseInterceptor.to(MovePhase, false); await game.move.forceHit(); @@ -75,25 +74,25 @@ describe("Abilities - Flash Fire", () => { expect(blissey!.getTag(BattlerTagType.FIRE_BOOST)).toBeDefined(); }, 20000); - it("activated after being frozen", async() => { + it("activated after being frozen", async () => { game.override.enemyMoveset(Array(4).fill(Moves.EMBER)).moveset(SPLASH_ONLY); game.override.statusEffect(StatusEffect.FREEZE); await game.startBattle([Species.BLISSEY]); const blissey = game.scene.getPlayerPokemon()!; - game.doAttack(getMovePosition(game.scene, 0, Moves.SPLASH)); + game.move.select(Moves.SPLASH); await game.phaseInterceptor.to(TurnEndPhase); expect(blissey!.getTag(BattlerTagType.FIRE_BOOST)).toBeDefined(); }, 20000); - it("not passing with baton pass", async() => { + it("not passing with baton pass", async () => { game.override.enemyMoveset(Array(4).fill(Moves.EMBER)).moveset([Moves.BATON_PASS]); await game.startBattle([Species.BLISSEY, Species.CHANSEY]); // ensure use baton pass after enemy moved - game.doAttack(getMovePosition(game.scene, 0, Moves.BATON_PASS)); + game.move.select(Moves.BATON_PASS); await game.setTurnOrder([BattlerIndex.ENEMY, BattlerIndex.PLAYER]); game.doSelectPartyPokemon(1); @@ -104,7 +103,7 @@ describe("Abilities - Flash Fire", () => { expect(chansey!.getTag(BattlerTagType.FIRE_BOOST)).toBeUndefined(); }, 20000); - it("boosts Fire-type move when the ability is activated", async() => { + it("boosts Fire-type move when the ability is activated", async () => { game.override.enemyMoveset(Array(4).fill(Moves.FIRE_PLEDGE)).moveset([Moves.EMBER, Moves.SPLASH]); game.override.enemyAbility(Abilities.FLASH_FIRE).ability(Abilities.NONE); await game.startBattle([Species.BLISSEY]); @@ -113,7 +112,7 @@ describe("Abilities - Flash Fire", () => { blissey.hp = initialHP; // first turn - game.doAttack(getMovePosition(game.scene, 0, Moves.EMBER)); + game.move.select(Moves.EMBER); await game.setTurnOrder([BattlerIndex.ENEMY, BattlerIndex.PLAYER]); await game.phaseInterceptor.to(TurnEndPhase); const originalDmg = initialHP - blissey.hp; @@ -122,7 +121,7 @@ describe("Abilities - Flash Fire", () => { blissey.hp = initialHP; // second turn - game.doAttack(getMovePosition(game.scene, 0, Moves.SPLASH)); + game.move.select(Moves.SPLASH); await game.phaseInterceptor.to(TurnEndPhase); const flashFireDmg = initialHP - blissey.hp; diff --git a/src/test/abilities/forecast.test.ts b/src/test/abilities/forecast.test.ts new file mode 100644 index 00000000000..78453c5f4d2 --- /dev/null +++ b/src/test/abilities/forecast.test.ts @@ -0,0 +1,298 @@ +import { BattlerIndex } from "#app/battle"; +import { allAbilities } from "#app/data/ability"; +import { Abilities } from "#app/enums/abilities"; +import { WeatherType } from "#app/enums/weather-type"; +import { DamagePhase } from "#app/phases/damage-phase"; +import { MovePhase } from "#app/phases/move-phase"; +import { PostSummonPhase } from "#app/phases/post-summon-phase"; +import { QuietFormChangePhase } from "#app/phases/quiet-form-change-phase"; +import { TurnEndPhase } from "#app/phases/turn-end-phase"; +import { Moves } from "#enums/moves"; +import { Species } from "#enums/species"; +import GameManager from "#test/utils/gameManager"; +import { SPLASH_ONLY } from "#test/utils/testUtils"; +import Phaser from "phaser"; +import { afterEach, beforeAll, beforeEach, describe, expect, it, vi } from "vitest"; + +describe("Abilities - Forecast", () => { + let phaserGame: Phaser.Game; + let game: GameManager; + const NORMAL_FORM = 0; + const SUNNY_FORM = 1; + const RAINY_FORM = 2; + const SNOWY_FORM = 3; + + /** + * Tests form changes based on weather changes + * @param {GameManager} game The game manager instance + * @param {WeatherType} weather The active weather to set + * @param form The expected form based on the active weather + * @param initialForm The initial form pre form change + */ + const testWeatherFormChange = async (game: GameManager, weather: WeatherType, form: number, initialForm?: number) => { + game.override.weather(weather).starterForms({ [Species.CASTFORM]: initialForm }); + await game.startBattle([Species.CASTFORM]); + + game.move.select(Moves.SPLASH); + + expect(game.scene.getPlayerPokemon()?.formIndex).toBe(form); + }; + + /** + * Tests reverting to normal form when Cloud Nine/Air Lock is active on the field + * @param {GameManager} game The game manager instance + * @param {Abilities} ability The ability that is active on the field + */ + const testRevertFormAgainstAbility = async (game: GameManager, ability: Abilities) => { + game.override.starterForms({ [Species.CASTFORM]: SUNNY_FORM }).enemyAbility(ability); + await game.startBattle([Species.CASTFORM]); + + game.move.select(Moves.SPLASH); + + expect(game.scene.getPlayerPokemon()?.formIndex).toBe(NORMAL_FORM); + }; + + beforeAll(() => { + phaserGame = new Phaser.Game({ + type: Phaser.HEADLESS, + }); + }); + + afterEach(() => { + game.phaseInterceptor.restoreOg(); + }); + + beforeEach(() => { + game = new GameManager(phaserGame); + game.override + .moveset([Moves.SPLASH, Moves.RAIN_DANCE, Moves.SUNNY_DAY, Moves.TACKLE]) + .enemySpecies(Species.MAGIKARP) + .enemyMoveset(SPLASH_ONLY) + .enemyAbility(Abilities.BALL_FETCH); + }); + + it("changes form based on weather", async () => { + game.override + .moveset([Moves.RAIN_DANCE, Moves.SUNNY_DAY, Moves.SNOWSCAPE, Moves.SPLASH]) + .battleType("double") + .starterForms({ + [Species.KYOGRE]: 1, + [Species.GROUDON]: 1, + [Species.RAYQUAZA]: 1 + }); + await game.startBattle([Species.CASTFORM, Species.FEEBAS, Species.KYOGRE, Species.GROUDON, Species.RAYQUAZA, Species.ALTARIA]); + + vi.spyOn(game.scene.getParty()[5], "getAbility").mockReturnValue(allAbilities[Abilities.CLOUD_NINE]); + + const castform = game.scene.getPlayerField()[0]; + expect(castform.formIndex).toBe(NORMAL_FORM); + + game.move.select(Moves.RAIN_DANCE); + game.move.select(Moves.SPLASH, 1); + await game.phaseInterceptor.to("MovePhase"); + await game.toNextTurn(); + + expect(castform.formIndex).toBe(RAINY_FORM); + + game.move.select(Moves.SUNNY_DAY); + game.move.select(Moves.SPLASH, 1); + await game.phaseInterceptor.to("MovePhase"); + await game.toNextTurn(); + + expect(castform.formIndex).toBe(SUNNY_FORM); + + game.move.select(Moves.SNOWSCAPE); + game.move.select(Moves.SPLASH, 1); + await game.phaseInterceptor.to("MovePhase"); + await game.toNextTurn(); + + expect(castform.formIndex).toBe(SNOWY_FORM); + + game.override.moveset([Moves.HAIL, Moves.SANDSTORM, Moves.SNOWSCAPE, Moves.SPLASH]); + + game.move.select(Moves.SANDSTORM); + game.move.select(Moves.SPLASH, 1); + await game.phaseInterceptor.to("MovePhase"); + await game.toNextTurn(); + + expect(castform.formIndex).toBe(NORMAL_FORM); + + game.move.select(Moves.HAIL); + game.move.select(Moves.SPLASH, 1); + await game.phaseInterceptor.to("MovePhase"); + await game.toNextTurn(); + + expect(castform.formIndex).toBe(SNOWY_FORM); + + game.move.select(Moves.SPLASH); + game.doSwitchPokemon(2); // Feebas now 2, Kyogre 1 + await game.phaseInterceptor.to("MovePhase"); + await game.toNextTurn(); + + expect(castform.formIndex).toBe(RAINY_FORM); + + game.move.select(Moves.SPLASH); + game.doSwitchPokemon(3); // Kyogre now 3, Groudon 1 + await game.phaseInterceptor.to("MovePhase"); + await game.toNextTurn(); + + expect(castform.formIndex).toBe(SUNNY_FORM); + + game.move.select(Moves.SPLASH); + game.doSwitchPokemon(4); // Groudon now 4, Rayquaza 1 + await game.phaseInterceptor.to("MovePhase"); + await game.toNextTurn(); + + expect(castform.formIndex).toBe(NORMAL_FORM); + + game.move.select(Moves.SPLASH); + game.doSwitchPokemon(2); // Rayquaza now 2, Feebas 1 + await game.phaseInterceptor.to("MovePhase"); + await game.toNextTurn(); + + expect(castform.formIndex).toBe(NORMAL_FORM); + + game.move.select(Moves.SNOWSCAPE); + game.move.select(Moves.SPLASH, 1); + await game.phaseInterceptor.to("MovePhase"); + await game.toNextTurn(); + + expect(castform.formIndex).toBe(SNOWY_FORM); + + game.move.select(Moves.SPLASH); + game.doSwitchPokemon(5); // Feebas now 5, Altaria 1 + await game.phaseInterceptor.to("MovePhase"); + await game.toNextTurn(); + + expect(castform.formIndex).toBe(NORMAL_FORM); + + game.move.select(Moves.SPLASH); + game.doSwitchPokemon(5); // Altaria now 5, Feebas 1 + await game.phaseInterceptor.to("MovePhase"); + await game.toNextTurn(); + + expect(castform.formIndex).toBe(SNOWY_FORM); + + game.scene.arena.trySetWeather(WeatherType.FOG, false); + game.move.select(Moves.SPLASH); + game.move.select(Moves.SPLASH, 1); + await game.phaseInterceptor.to("TurnStartPhase"); + + expect(castform.formIndex).toBe(NORMAL_FORM); + }, 30 * 1000); + + it("reverts to Normal Form during Clear weather", async () => { + await testWeatherFormChange(game, WeatherType.NONE, NORMAL_FORM, SUNNY_FORM); + }); + + it("reverts to Normal Form if a Pokémon on the field has Air Lock", async () => { + await testRevertFormAgainstAbility(game, Abilities.AIR_LOCK); + }); + + it("has no effect on Pokémon other than Castform", async () => { + game.override.enemyAbility(Abilities.FORECAST).enemySpecies(Species.SHUCKLE); + await game.startBattle([Species.CASTFORM]); + + game.move.select(Moves.RAIN_DANCE); + await game.phaseInterceptor.to(TurnEndPhase); + + expect(game.scene.getPlayerPokemon()?.formIndex).toBe(RAINY_FORM); + expect(game.scene.getEnemyPokemon()?.formIndex).not.toBe(RAINY_FORM); + }); + + it("reverts to Normal Form when Castform loses Forecast, changes form to match the weather when it regains it", async () => { + game.override.moveset([Moves.SKILL_SWAP, Moves.WORRY_SEED, Moves.SPLASH]).weather(WeatherType.RAIN).battleType("double"); + await game.startBattle([Species.CASTFORM, Species.FEEBAS]); + + const castform = game.scene.getPlayerField()[0]; + + expect(castform.formIndex).toBe(RAINY_FORM); + + game.move.select(Moves.SKILL_SWAP, 0, BattlerIndex.PLAYER_2); + game.move.select(Moves.SKILL_SWAP, 1, BattlerIndex.PLAYER); + await game.setTurnOrder([BattlerIndex.PLAYER, BattlerIndex.PLAYER_2, BattlerIndex.ENEMY, BattlerIndex.ENEMY_2]); + + await game.phaseInterceptor.to("MoveEndPhase"); + expect(castform.formIndex).toBe(NORMAL_FORM); + + await game.phaseInterceptor.to("MoveEndPhase"); + expect(castform.formIndex).toBe(RAINY_FORM); + + await game.toNextTurn(); + + game.move.select(Moves.SPLASH); + game.move.select(Moves.WORRY_SEED, 1, BattlerIndex.PLAYER); + await game.setTurnOrder([BattlerIndex.PLAYER_2, BattlerIndex.PLAYER, BattlerIndex.ENEMY, BattlerIndex.ENEMY_2]); + await game.phaseInterceptor.to("MoveEndPhase"); + + expect(castform.formIndex).toBe(NORMAL_FORM); + }); + + it("reverts to Normal Form when Forecast is suppressed, changes form to match the weather when it regains it", async () => { + game.override.enemyMoveset(Array(4).fill(Moves.GASTRO_ACID)).weather(WeatherType.RAIN); + await game.startBattle([Species.CASTFORM, Species.PIKACHU]); + const castform = game.scene.getPlayerPokemon()!; + + expect(castform.formIndex).toBe(RAINY_FORM); + + // First turn - Forecast is suppressed + game.move.select(Moves.SPLASH); + await game.setTurnOrder([BattlerIndex.ENEMY, BattlerIndex.PLAYER]); + await game.move.forceHit(); + + await game.phaseInterceptor.to(TurnEndPhase); + + expect(castform.summonData.abilitySuppressed).toBe(true); + expect(castform.formIndex).toBe(NORMAL_FORM); + + await game.toNextTurn(); + + // Second turn - switch out Castform, regains Forecast + game.doSwitchPokemon(1); + await game.toNextTurn(); + + // Third turn - switch in Castform + game.doSwitchPokemon(1); + await game.phaseInterceptor.to(MovePhase); + + expect(castform.summonData.abilitySuppressed).toBe(false); + expect(castform.formIndex).toBe(RAINY_FORM); + }); + + it("does not change Castform's form until after Stealth Rock deals damage", async () => { + game.override.weather(WeatherType.RAIN).enemyMoveset(Array(4).fill(Moves.STEALTH_ROCK)); + await game.startBattle([Species.PIKACHU, Species.CASTFORM]); + + // First turn - set up stealth rock + game.move.select(Moves.SPLASH); + await game.toNextTurn(); + + // Second turn - switch in Castform, regains Forecast + game.doSwitchPokemon(1); + await game.phaseInterceptor.to(PostSummonPhase); + + const castform = game.scene.getPlayerPokemon()!; + + // Damage phase should come first + await game.phaseInterceptor.to(DamagePhase); + expect(castform.hp).toBeLessThan(castform.getMaxHp()); + + // Then change form + await game.phaseInterceptor.to(QuietFormChangePhase); + expect(castform.formIndex).toBe(RAINY_FORM); + }); + + it("should be in Normal Form after the user is switched out", async () => { + game.override.weather(WeatherType.RAIN); + + await game.startBattle([Species.CASTFORM, Species.MAGIKARP]); + const castform = game.scene.getPlayerPokemon()!; + + expect(castform.formIndex).toBe(RAINY_FORM); + + game.doSwitchPokemon(1); + await game.toNextTurn(); + + expect(castform.formIndex).toBe(NORMAL_FORM); + }); +}); diff --git a/src/test/abilities/galvanize.test.ts b/src/test/abilities/galvanize.test.ts new file mode 100644 index 00000000000..4b0ddc14d7c --- /dev/null +++ b/src/test/abilities/galvanize.test.ts @@ -0,0 +1,133 @@ +import { BattlerIndex } from "#app/battle"; +import { allMoves } from "#app/data/move"; +import { Type } from "#app/data/type"; +import { Abilities } from "#app/enums/abilities"; +import { Moves } from "#app/enums/moves"; +import { Species } from "#app/enums/species"; +import { HitResult } from "#app/field/pokemon"; +import GameManager from "#test/utils/gameManager"; +import { SPLASH_ONLY } from "#test/utils/testUtils"; +import Phaser from "phaser"; +import { afterEach, beforeAll, beforeEach, describe, expect, it, vi } from "vitest"; + +const TIMEOUT = 20 * 1000; + +describe("Abilities - Galvanize", () => { + let phaserGame: Phaser.Game; + let game: GameManager; + + beforeAll(() => { + phaserGame = new Phaser.Game({ + type: Phaser.HEADLESS, + }); + }); + + afterEach(() => { + game.phaseInterceptor.restoreOg(); + }); + + beforeEach(() => { + game = new GameManager(phaserGame); + + game.override + .battleType("single") + .startingLevel(100) + .ability(Abilities.GALVANIZE) + .moveset([Moves.TACKLE, Moves.REVELATION_DANCE, Moves.FURY_SWIPES]) + .enemySpecies(Species.DUSCLOPS) + .enemyAbility(Abilities.BALL_FETCH) + .enemyMoveset(SPLASH_ONLY) + .enemyLevel(100); + }); + + it("should change Normal-type attacks to Electric type and boost their power", async () => { + await game.startBattle(); + + const playerPokemon = game.scene.getPlayerPokemon()!; + vi.spyOn(playerPokemon, "getMoveType"); + + const enemyPokemon = game.scene.getEnemyPokemon()!; + vi.spyOn(enemyPokemon, "apply"); + + const move = allMoves[Moves.TACKLE]; + vi.spyOn(move, "calculateBattlePower"); + + game.move.select(Moves.TACKLE); + + await game.phaseInterceptor.to("BerryPhase", false); + + expect(playerPokemon.getMoveType).toHaveLastReturnedWith(Type.ELECTRIC); + expect(enemyPokemon.apply).toHaveReturnedWith(HitResult.EFFECTIVE); + expect(move.calculateBattlePower).toHaveReturnedWith(48); + expect(enemyPokemon.hp).toBeLessThan(enemyPokemon.getMaxHp()); + }, TIMEOUT); + + it("should cause Normal-type attacks to activate Volt Absorb", async () => { + game.override.enemyAbility(Abilities.VOLT_ABSORB); + + await game.startBattle(); + + const playerPokemon = game.scene.getPlayerPokemon()!; + vi.spyOn(playerPokemon, "getMoveType"); + + const enemyPokemon = game.scene.getEnemyPokemon()!; + vi.spyOn(enemyPokemon, "apply"); + + enemyPokemon.hp = Math.floor(enemyPokemon.getMaxHp() * 0.8); + + game.move.select(Moves.TACKLE); + + await game.phaseInterceptor.to("BerryPhase", false); + + expect(playerPokemon.getMoveType).toHaveLastReturnedWith(Type.ELECTRIC); + expect(enemyPokemon.apply).toHaveReturnedWith(HitResult.NO_EFFECT); + expect(enemyPokemon.hp).toBe(enemyPokemon.getMaxHp()); + }, TIMEOUT); + + it("should not change the type of variable-type moves", async () => { + game.override.enemySpecies(Species.MIGHTYENA); + + await game.startBattle([Species.ESPEON]); + + const playerPokemon = game.scene.getPlayerPokemon()!; + vi.spyOn(playerPokemon, "getMoveType"); + + const enemyPokemon = game.scene.getEnemyPokemon()!; + vi.spyOn(enemyPokemon, "apply"); + + game.move.select(Moves.REVELATION_DANCE); + await game.phaseInterceptor.to("BerryPhase", false); + + expect(playerPokemon.getMoveType).not.toHaveLastReturnedWith(Type.ELECTRIC); + expect(enemyPokemon.apply).toHaveReturnedWith(HitResult.NO_EFFECT); + expect(enemyPokemon.hp).toBe(enemyPokemon.getMaxHp()); + }, TIMEOUT); + + it("should affect all hits of a Normal-type multi-hit move", async () => { + await game.startBattle(); + + const playerPokemon = game.scene.getPlayerPokemon()!; + vi.spyOn(playerPokemon, "getMoveType"); + + const enemyPokemon = game.scene.getEnemyPokemon()!; + vi.spyOn(enemyPokemon, "apply"); + + game.move.select(Moves.FURY_SWIPES); + await game.setTurnOrder([BattlerIndex.PLAYER, BattlerIndex.ENEMY]); + await game.move.forceHit(); + + await game.phaseInterceptor.to("MoveEffectPhase"); + expect(playerPokemon.turnData.hitCount).toBeGreaterThan(1); + expect(enemyPokemon.hp).toBeLessThan(enemyPokemon.getMaxHp()); + + while (playerPokemon.turnData.hitsLeft > 0) { + const enemyStartingHp = enemyPokemon.hp; + await game.phaseInterceptor.to("MoveEffectPhase"); + + expect(playerPokemon.getMoveType).toHaveLastReturnedWith(Type.ELECTRIC); + expect(enemyPokemon.hp).toBeLessThan(enemyStartingHp); + } + + expect(enemyPokemon.apply).not.toHaveReturnedWith(HitResult.NO_EFFECT); + }, TIMEOUT); +}); diff --git a/src/test/abilities/gulp_missile.test.ts b/src/test/abilities/gulp_missile.test.ts index d033604fe00..a451d290906 100644 --- a/src/test/abilities/gulp_missile.test.ts +++ b/src/test/abilities/gulp_missile.test.ts @@ -1,19 +1,18 @@ -import { BattlerTagType } from "#app/enums/battler-tag-type.js"; +import { BattleStat } from "#app/data/battle-stat"; +import { BattlerTagType } from "#app/enums/battler-tag-type"; +import { StatusEffect } from "#app/enums/status-effect"; +import Pokemon from "#app/field/pokemon"; +import { BerryPhase } from "#app/phases/berry-phase"; +import { MoveEndPhase } from "#app/phases/move-end-phase"; +import { TurnEndPhase } from "#app/phases/turn-end-phase"; +import { TurnStartPhase } from "#app/phases/turn-start-phase"; import GameManager from "#app/test/utils/gameManager"; -import { getMovePosition } from "#app/test/utils/gameManagerUtils"; import { Abilities } from "#enums/abilities"; import { Moves } from "#enums/moves"; import { Species } from "#enums/species"; import Phaser from "phaser"; import { afterEach, beforeAll, beforeEach, describe, expect, it, vi } from "vitest"; import { SPLASH_ONLY } from "../utils/testUtils"; -import { BattleStat } from "#app/data/battle-stat.js"; -import { StatusEffect } from "#app/enums/status-effect.js"; -import Pokemon from "#app/field/pokemon.js"; -import { BerryPhase } from "#app/phases/berry-phase.js"; -import { MoveEndPhase } from "#app/phases/move-end-phase.js"; -import { TurnEndPhase } from "#app/phases/turn-end-phase.js"; -import { TurnStartPhase } from "#app/phases/turn-start-phase.js"; describe("Abilities - Gulp Missile", () => { let phaserGame: Phaser.Game; @@ -30,7 +29,7 @@ describe("Abilities - Gulp Missile", () => { * @returns The effect damage of Gulp Missile */ const getEffectDamage = (pokemon: Pokemon): number => { - return Math.max(1, Math.floor(pokemon.getMaxHp() * 1/4)); + return Math.max(1, Math.floor(pokemon.getMaxHp() * 1 / 4)); }; beforeAll(() => { @@ -58,9 +57,9 @@ describe("Abilities - Gulp Missile", () => { await game.startBattle([Species.CRAMORANT]); const cramorant = game.scene.getPlayerPokemon()!; - game.doAttack(getMovePosition(game.scene, 0, Moves.DIVE)); + game.move.select(Moves.DIVE); await game.toNextTurn(); - game.doAttack(getMovePosition(game.scene, 0, Moves.DIVE)); + game.move.select(Moves.DIVE); await game.phaseInterceptor.to(MoveEndPhase); expect(cramorant.getHpRatio()).toBeGreaterThanOrEqual(.5); @@ -75,7 +74,7 @@ describe("Abilities - Gulp Missile", () => { vi.spyOn(cramorant, "getHpRatio").mockReturnValue(.49); expect(cramorant.getHpRatio()).toBe(.49); - game.doAttack(getMovePosition(game.scene, 0, Moves.SURF)); + game.move.select(Moves.SURF); await game.phaseInterceptor.to(MoveEndPhase); expect(cramorant.getTag(BattlerTagType.GULP_MISSILE_PIKACHU)).toBeDefined(); @@ -86,7 +85,7 @@ describe("Abilities - Gulp Missile", () => { await game.startBattle([Species.CRAMORANT, Species.MAGIKARP]); const cramorant = game.scene.getPlayerPokemon()!; - game.doAttack(getMovePosition(game.scene, 0, Moves.SURF)); + game.move.select(Moves.SURF); await game.toNextTurn(); game.doSwitchPokemon(1); @@ -101,7 +100,7 @@ describe("Abilities - Gulp Missile", () => { await game.startBattle([Species.CRAMORANT]); const cramorant = game.scene.getPlayerPokemon()!; - game.doAttack(getMovePosition(game.scene, 0, Moves.DIVE)); + game.move.select(Moves.DIVE); await game.phaseInterceptor.to(MoveEndPhase); expect(cramorant.getTag(BattlerTagType.GULP_MISSILE_ARROKUDA)).toBeDefined(); @@ -115,7 +114,7 @@ describe("Abilities - Gulp Missile", () => { const enemy = game.scene.getEnemyPokemon()!; vi.spyOn(enemy, "damageAndUpdate"); - game.doAttack(getMovePosition(game.scene, 0, Moves.SURF)); + game.move.select(Moves.SURF); await game.phaseInterceptor.to(TurnEndPhase); expect(enemy.damageAndUpdate).toHaveReturnedWith(getEffectDamage(enemy)); @@ -128,7 +127,7 @@ describe("Abilities - Gulp Missile", () => { const cramorant = game.scene.getPlayerPokemon()!; vi.spyOn(cramorant, "getHpRatio").mockReturnValue(.55); - game.doAttack(getMovePosition(game.scene, 0, Moves.SURF)); + game.move.select(Moves.SURF); await game.phaseInterceptor.to(MoveEndPhase); expect(cramorant.getTag(BattlerTagType.GULP_MISSILE_ARROKUDA)).toBeDefined(); @@ -150,7 +149,7 @@ describe("Abilities - Gulp Missile", () => { vi.spyOn(enemy, "damageAndUpdate"); vi.spyOn(cramorant, "getHpRatio").mockReturnValue(.55); - game.doAttack(getMovePosition(game.scene, 0, Moves.SURF)); + game.move.select(Moves.SURF); await game.phaseInterceptor.to(MoveEndPhase); expect(cramorant.getTag(BattlerTagType.GULP_MISSILE_ARROKUDA)).toBeDefined(); @@ -174,7 +173,7 @@ describe("Abilities - Gulp Missile", () => { vi.spyOn(enemy, "damageAndUpdate"); vi.spyOn(cramorant, "getHpRatio").mockReturnValue(.45); - game.doAttack(getMovePosition(game.scene, 0, Moves.SURF)); + game.move.select(Moves.SURF); await game.phaseInterceptor.to(MoveEndPhase); expect(cramorant.getTag(BattlerTagType.GULP_MISSILE_PIKACHU)).toBeDefined(); @@ -194,7 +193,7 @@ describe("Abilities - Gulp Missile", () => { const cramorant = game.scene.getPlayerPokemon()!; - game.doAttack(getMovePosition(game.scene, 0, Moves.DIVE)); + game.move.select(Moves.DIVE); await game.phaseInterceptor.to(BerryPhase, false); expect(cramorant.getTag(BattlerTagType.GULP_MISSILE_ARROKUDA)).toBeDefined(); @@ -210,7 +209,7 @@ describe("Abilities - Gulp Missile", () => { vi.spyOn(cramorant, "getHpRatio").mockReturnValue(.55); - game.doAttack(getMovePosition(game.scene, 0, Moves.SURF)); + game.move.select(Moves.SURF); await game.phaseInterceptor.to(MoveEndPhase); const enemyHpPreEffect = enemy.hp; @@ -232,7 +231,7 @@ describe("Abilities - Gulp Missile", () => { const cramorant = game.scene.getPlayerPokemon()!; vi.spyOn(cramorant, "getHpRatio").mockReturnValue(.55); - game.doAttack(getMovePosition(game.scene, 0, Moves.SURF)); + game.move.select(Moves.SURF); await game.phaseInterceptor.to(MoveEndPhase); expect(cramorant.getTag(BattlerTagType.GULP_MISSILE_ARROKUDA)).toBeDefined(); @@ -252,7 +251,7 @@ describe("Abilities - Gulp Missile", () => { const cramorant = game.scene.getPlayerPokemon()!; vi.spyOn(cramorant, "getHpRatio").mockReturnValue(.55); - game.doAttack(getMovePosition(game.scene, 0, Moves.SURF)); + game.move.select(Moves.SURF); await game.phaseInterceptor.to(MoveEndPhase); expect(cramorant.getTag(BattlerTagType.GULP_MISSILE_ARROKUDA)).toBeDefined(); @@ -269,7 +268,7 @@ describe("Abilities - Gulp Missile", () => { game.override.enemyAbility(Abilities.TRACE); await game.startBattle([Species.CRAMORANT]); - game.doAttack(getMovePosition(game.scene, 0, Moves.SPLASH)); + game.move.select(Moves.SPLASH); await game.phaseInterceptor.to(TurnStartPhase); expect(game.scene.getEnemyPokemon()?.hasAbility(Abilities.GULP_MISSILE)).toBe(false); diff --git a/src/test/abilities/heatproof.test.ts b/src/test/abilities/heatproof.test.ts index 64a45c5023f..e2a558e6d99 100644 --- a/src/test/abilities/heatproof.test.ts +++ b/src/test/abilities/heatproof.test.ts @@ -1,13 +1,13 @@ -import { Species } from "#app/enums/species.js"; -import { TurnEndPhase } from "#app/phases/turn-end-phase.js"; -import GameManager from "#test/utils/gameManager"; -import { getMovePosition } from "#test/utils/gameManagerUtils"; +import { Species } from "#app/enums/species"; +import { StatusEffect } from "#app/enums/status-effect"; +import { TurnEndPhase } from "#app/phases/turn-end-phase"; +import { toDmgValue } from "#app/utils"; import { Abilities } from "#enums/abilities"; import { Moves } from "#enums/moves"; +import GameManager from "#test/utils/gameManager"; +import { SPLASH_ONLY } from "#test/utils/testUtils"; import Phaser from "phaser"; import { afterEach, beforeAll, beforeEach, describe, expect, it } from "vitest"; -import { SPLASH_ONLY } from "#test/utils/testUtils"; -import { StatusEffect } from "#app/enums/status-effect.js"; describe("Abilities - Heatproof", () => { let phaserGame: Phaser.Game; @@ -45,14 +45,14 @@ describe("Abilities - Heatproof", () => { const initialHP = 1000; enemy.hp = initialHP; - game.doAttack(getMovePosition(game.scene, 0, Moves.FLAMETHROWER)); + game.move.select(Moves.FLAMETHROWER); await game.phaseInterceptor.to(TurnEndPhase); const heatproofDamage = initialHP - enemy.hp; enemy.hp = initialHP; game.override.enemyAbility(Abilities.BALL_FETCH); - game.doAttack(getMovePosition(game.scene, 0, Moves.FLAMETHROWER)); + game.move.select(Moves.FLAMETHROWER); await game.phaseInterceptor.to(TurnEndPhase); const regularDamage = initialHP - enemy.hp; @@ -68,10 +68,10 @@ describe("Abilities - Heatproof", () => { const enemy = game.scene.getEnemyPokemon()!; - game.doAttack(getMovePosition(game.scene, 0, Moves.SPLASH)); + game.move.select(Moves.SPLASH); await game.toNextTurn(); // Normal burn damage is /16 - expect(enemy.hp).toBe(enemy.getMaxHp() - Math.floor(enemy.getMaxHp() / 32)); + expect(enemy.hp).toBe(enemy.getMaxHp() - toDmgValue(enemy.getMaxHp() / 32)); }); }); diff --git a/src/test/abilities/hustle.test.ts b/src/test/abilities/hustle.test.ts index 8f5547a5518..b7c3b723c4b 100644 --- a/src/test/abilities/hustle.test.ts +++ b/src/test/abilities/hustle.test.ts @@ -1,15 +1,14 @@ -import { allMoves } from "#app/data/move.js"; -import { Abilities } from "#app/enums/abilities.js"; -import { Stat } from "#app/enums/stat.js"; -import GameManager from "#test/utils/gameManager"; -import { getMovePosition } from "#test/utils/gameManagerUtils"; +import { allMoves } from "#app/data/move"; +import { Abilities } from "#app/enums/abilities"; +import { Stat } from "#app/enums/stat"; +import { DamagePhase } from "#app/phases/damage-phase"; +import { MoveEffectPhase } from "#app/phases/move-effect-phase"; import { Moves } from "#enums/moves"; import { Species } from "#enums/species"; +import GameManager from "#test/utils/gameManager"; +import { SPLASH_ONLY } from "#test/utils/testUtils"; import Phaser from "phaser"; import { afterEach, beforeAll, beforeEach, describe, expect, it, vi } from "vitest"; -import { SPLASH_ONLY } from "#test/utils/testUtils"; -import { DamagePhase } from "#app/phases/damage-phase.js"; -import { MoveEffectPhase } from "#app/phases/move-effect-phase.js"; describe("Abilities - Hustle", () => { let phaserGame: Phaser.Game; @@ -44,7 +43,7 @@ describe("Abilities - Hustle", () => { vi.spyOn(pikachu, "getBattleStat"); - game.doAttack(getMovePosition(game.scene, 0, Moves.TACKLE)); + game.move.select(Moves.TACKLE); await game.move.forceHit(); await game.phaseInterceptor.to(DamagePhase); @@ -57,7 +56,7 @@ describe("Abilities - Hustle", () => { vi.spyOn(pikachu, "getAccuracyMultiplier"); - game.doAttack(getMovePosition(game.scene, 0, Moves.TACKLE)); + game.move.select(Moves.TACKLE); await game.phaseInterceptor.to(MoveEffectPhase); expect(pikachu.getAccuracyMultiplier).toHaveReturnedWith(0.8); @@ -71,7 +70,7 @@ describe("Abilities - Hustle", () => { vi.spyOn(pikachu, "getBattleStat"); vi.spyOn(pikachu, "getAccuracyMultiplier"); - game.doAttack(getMovePosition(game.scene, 0, Moves.GIGA_DRAIN)); + game.move.select(Moves.GIGA_DRAIN); await game.phaseInterceptor.to(DamagePhase); expect(pikachu.getBattleStat).toHaveReturnedWith(spatk); @@ -89,7 +88,7 @@ describe("Abilities - Hustle", () => { vi.spyOn(pikachu, "getAccuracyMultiplier"); vi.spyOn(allMoves[Moves.FISSURE], "calculateBattleAccuracy"); - game.doAttack(getMovePosition(game.scene, 0, Moves.FISSURE)); + game.move.select(Moves.FISSURE); await game.phaseInterceptor.to(DamagePhase); expect(enemyPokemon.turnData.damageTaken).toBe(enemyPokemon.getMaxHp()); diff --git a/src/test/abilities/hyper_cutter.test.ts b/src/test/abilities/hyper_cutter.test.ts index 9637a80ddb4..28fcc2f6085 100644 --- a/src/test/abilities/hyper_cutter.test.ts +++ b/src/test/abilities/hyper_cutter.test.ts @@ -3,7 +3,6 @@ import { Abilities } from "#enums/abilities"; import { Moves } from "#enums/moves"; import { Species } from "#enums/species"; import GameManager from "#test/utils/gameManager"; -import { getMovePosition } from "#test/utils/gameManagerUtils"; import { SPLASH_ONLY } from "#test/utils/testUtils"; import Phaser from "phaser"; import { afterEach, beforeAll, beforeEach, describe, expect, it } from "vitest"; @@ -40,16 +39,16 @@ describe("Abilities - Hyper Cutter", () => { const enemy = game.scene.getEnemyPokemon()!; - game.doAttack(getMovePosition(game.scene, 0, Moves.OCTOLOCK)); + game.move.select(Moves.OCTOLOCK); await game.toNextTurn(); - game.doAttack(getMovePosition(game.scene, 0, Moves.DEFOG)); + game.move.select(Moves.DEFOG); await game.toNextTurn(); - game.doAttack(getMovePosition(game.scene, 0, Moves.NOBLE_ROAR)); + game.move.select(Moves.NOBLE_ROAR); await game.toNextTurn(); - game.doAttack(getMovePosition(game.scene, 0, Moves.SAND_ATTACK)); + game.move.select(Moves.SAND_ATTACK); await game.toNextTurn(); game.override.moveset([Moves.STRING_SHOT]); - game.doAttack(getMovePosition(game.scene, 0, Moves.STRING_SHOT)); + game.move.select(Moves.STRING_SHOT); await game.toNextTurn(); expect(enemy.summonData.battleStats[BattleStat.ATK]).toEqual(0); diff --git a/src/test/abilities/ice_face.test.ts b/src/test/abilities/ice_face.test.ts index 905e0dfdaf7..fbc660c27c2 100644 --- a/src/test/abilities/ice_face.test.ts +++ b/src/test/abilities/ice_face.test.ts @@ -1,16 +1,15 @@ -import GameManager from "#test/utils/gameManager"; -import { getMovePosition } from "#test/utils/gameManagerUtils"; +import { MoveEffectPhase } from "#app/phases/move-effect-phase"; +import { MoveEndPhase } from "#app/phases/move-end-phase"; +import { QuietFormChangePhase } from "#app/phases/quiet-form-change-phase"; +import { TurnEndPhase } from "#app/phases/turn-end-phase"; +import { TurnInitPhase } from "#app/phases/turn-init-phase"; import { Abilities } from "#enums/abilities"; import { BattlerTagType } from "#enums/battler-tag-type"; import { Moves } from "#enums/moves"; import { Species } from "#enums/species"; +import GameManager from "#test/utils/gameManager"; import Phaser from "phaser"; import { afterEach, beforeAll, beforeEach, describe, expect, it } from "vitest"; -import { MoveEffectPhase } from "#app/phases/move-effect-phase.js"; -import { MoveEndPhase } from "#app/phases/move-end-phase.js"; -import { QuietFormChangePhase } from "#app/phases/quiet-form-change-phase.js"; -import { TurnEndPhase } from "#app/phases/turn-end-phase.js"; -import { TurnInitPhase } from "#app/phases/turn-init-phase.js"; describe("Abilities - Ice Face", () => { let phaserGame: Phaser.Game; @@ -39,7 +38,7 @@ describe("Abilities - Ice Face", () => { it("takes no damage from physical move and transforms to Noice", async () => { await game.startBattle([Species.HITMONLEE]); - game.doAttack(getMovePosition(game.scene, 0, Moves.TACKLE)); + game.move.select(Moves.TACKLE); await game.phaseInterceptor.to(MoveEndPhase); @@ -55,7 +54,7 @@ describe("Abilities - Ice Face", () => { game.override.enemyLevel(1); await game.startBattle([Species.HITMONLEE]); - game.doAttack(getMovePosition(game.scene, 0, Moves.SURGING_STRIKES)); + game.move.select(Moves.SURGING_STRIKES); const eiscue = game.scene.getEnemyPokemon()!; expect(eiscue.getTag(BattlerTagType.ICE_FACE)).toBeDefined(); @@ -81,7 +80,7 @@ describe("Abilities - Ice Face", () => { it("takes damage from special moves", async () => { await game.startBattle([Species.MAGIKARP]); - game.doAttack(getMovePosition(game.scene, 0, Moves.ICE_BEAM)); + game.move.select(Moves.ICE_BEAM); await game.phaseInterceptor.to(MoveEndPhase); @@ -95,7 +94,7 @@ describe("Abilities - Ice Face", () => { it("takes effects from status moves", async () => { await game.startBattle([Species.MAGIKARP]); - game.doAttack(getMovePosition(game.scene, 0, Moves.TOXIC_THREAD)); + game.move.select(Moves.TOXIC_THREAD); await game.phaseInterceptor.to(MoveEndPhase); @@ -111,7 +110,7 @@ describe("Abilities - Ice Face", () => { await game.startBattle([Species.MAGIKARP]); - game.doAttack(getMovePosition(game.scene, 0, Moves.QUICK_ATTACK)); + game.move.select(Moves.QUICK_ATTACK); await game.phaseInterceptor.to(MoveEndPhase); @@ -133,7 +132,7 @@ describe("Abilities - Ice Face", () => { await game.startBattle([Species.EISCUE, Species.NINJASK]); - game.doAttack(getMovePosition(game.scene, 0, Moves.SNOWSCAPE)); + game.move.select(Moves.SNOWSCAPE); await game.phaseInterceptor.to(TurnEndPhase); let eiscue = game.scene.getPlayerPokemon()!; @@ -160,7 +159,7 @@ describe("Abilities - Ice Face", () => { await game.startBattle([Species.EISCUE]); - game.doAttack(getMovePosition(game.scene, 0, Moves.HAIL)); + game.move.select(Moves.HAIL); const eiscue = game.scene.getPlayerPokemon()!; await game.phaseInterceptor.to(QuietFormChangePhase); @@ -179,7 +178,7 @@ describe("Abilities - Ice Face", () => { await game.startBattle([Species.EISCUE, Species.MAGIKARP]); - game.doAttack(getMovePosition(game.scene, 0, Moves.ICE_BEAM)); + game.move.select(Moves.ICE_BEAM); await game.phaseInterceptor.to(TurnEndPhase); let eiscue = game.scene.getPlayerPokemon()!; @@ -213,7 +212,7 @@ describe("Abilities - Ice Face", () => { expect(eiscue.formIndex).toBe(noiceForm); expect(eiscue.getTag(BattlerTagType.ICE_FACE)).toBeUndefined(); - game.doAttack(getMovePosition(game.scene, 0, Moves.ICE_BEAM)); + game.move.select(Moves.ICE_BEAM); await game.doKillOpponents(); await game.phaseInterceptor.to(TurnEndPhase); game.doSelectModifier(); @@ -228,7 +227,7 @@ describe("Abilities - Ice Face", () => { await game.startBattle([Species.MAGIKARP]); - game.doAttack(getMovePosition(game.scene, 0, Moves.GASTRO_ACID)); + game.move.select(Moves.GASTRO_ACID); await game.phaseInterceptor.to(TurnEndPhase); @@ -244,7 +243,7 @@ describe("Abilities - Ice Face", () => { await game.startBattle([Species.MAGIKARP]); - game.doAttack(getMovePosition(game.scene, 0, Moves.SKILL_SWAP)); + game.move.select(Moves.SKILL_SWAP); await game.phaseInterceptor.to(TurnEndPhase); @@ -260,7 +259,7 @@ describe("Abilities - Ice Face", () => { await game.startBattle([Species.MAGIKARP]); - game.doAttack(getMovePosition(game.scene, 0, Moves.SIMPLE_BEAM)); + game.move.select(Moves.SIMPLE_BEAM); await game.phaseInterceptor.to(TurnInitPhase); diff --git a/src/test/abilities/intimidate.test.ts b/src/test/abilities/intimidate.test.ts index 842b33108a3..93b663d06da 100644 --- a/src/test/abilities/intimidate.test.ts +++ b/src/test/abilities/intimidate.test.ts @@ -1,22 +1,21 @@ -import { afterEach, beforeAll, beforeEach, describe, expect, it } from "vitest"; -import Phaser from "phaser"; -import GameManager from "#test/utils/gameManager"; -import { Mode } from "#app/ui/ui"; import { BattleStat } from "#app/data/battle-stat"; -import { generateStarter, getMovePosition } from "#test/utils/gameManagerUtils"; -import { Command } from "#app/ui/command-ui-handler"; import { Status, StatusEffect } from "#app/data/status-effect"; import { GameModes, getGameMode } from "#app/game-mode"; +import { CommandPhase } from "#app/phases/command-phase"; +import { DamagePhase } from "#app/phases/damage-phase"; +import { EncounterPhase } from "#app/phases/encounter-phase"; +import { EnemyCommandPhase } from "#app/phases/enemy-command-phase"; +import { SelectStarterPhase } from "#app/phases/select-starter-phase"; +import { TurnInitPhase } from "#app/phases/turn-init-phase"; +import { Mode } from "#app/ui/ui"; import { Abilities } from "#enums/abilities"; import { Moves } from "#enums/moves"; import { Species } from "#enums/species"; +import GameManager from "#test/utils/gameManager"; +import { generateStarter } from "#test/utils/gameManagerUtils"; import { SPLASH_ONLY } from "#test/utils/testUtils"; -import { CommandPhase } from "#app/phases/command-phase.js"; -import { DamagePhase } from "#app/phases/damage-phase.js"; -import { EncounterPhase } from "#app/phases/encounter-phase.js"; -import { EnemyCommandPhase } from "#app/phases/enemy-command-phase.js"; -import { SelectStarterPhase } from "#app/phases/select-starter-phase.js"; -import { TurnInitPhase } from "#app/phases/turn-init-phase.js"; +import Phaser from "phaser"; +import { afterEach, beforeAll, beforeEach, describe, expect, it } from "vitest"; describe("Abilities - Intimidate", () => { let phaserGame: Phaser.Game; @@ -217,13 +216,7 @@ describe("Abilities - Intimidate", () => { let battleStatsPokemon = game.scene.getParty()[0].summonData.battleStats; expect(battleStatsPokemon[BattleStat.ATK]).toBe(-1); - game.onNextPrompt("CommandPhase", Mode.COMMAND, () => { - game.scene.ui.setMode(Mode.FIGHT, (game.scene.getCurrentPhase() as CommandPhase).getFieldIndex()); - }); - game.onNextPrompt("CommandPhase", Mode.FIGHT, () => { - const movePosition = getMovePosition(game.scene, 0, Moves.AERIAL_ACE); - (game.scene.getCurrentPhase() as CommandPhase).handleCommand(Command.FIGHT, movePosition, false); - }); + game.move.select(Moves.AERIAL_ACE); await game.phaseInterceptor.runFrom(EnemyCommandPhase).to(DamagePhase); await game.killPokemon(game.scene.currentBattle.enemyParty[0]); expect(game.scene.currentBattle.enemyParty[0].isFainted()).toBe(true); @@ -243,13 +236,7 @@ describe("Abilities - Intimidate", () => { let battleStatsPokemon = game.scene.getParty()[0].summonData.battleStats; expect(battleStatsPokemon[BattleStat.ATK]).toBe(-1); - game.onNextPrompt("CommandPhase", Mode.COMMAND, () => { - game.scene.ui.setMode(Mode.FIGHT, (game.scene.getCurrentPhase() as CommandPhase).getFieldIndex()); - }); - game.onNextPrompt("CommandPhase", Mode.FIGHT, () => { - const movePosition = getMovePosition(game.scene, 0, Moves.AERIAL_ACE); - (game.scene.getCurrentPhase() as CommandPhase).handleCommand(Command.FIGHT, movePosition, false); - }); + game.move.select(Moves.AERIAL_ACE); console.log("===to new turn==="); await game.toNextTurn(); battleStatsPokemon = game.scene.getParty()[0].summonData.battleStats; @@ -268,13 +255,7 @@ describe("Abilities - Intimidate", () => { let battleStatsPokemon = game.scene.getParty()[0].summonData.battleStats; expect(battleStatsPokemon[BattleStat.ATK]).toBe(-1); - game.onNextPrompt("CommandPhase", Mode.COMMAND, () => { - game.scene.ui.setMode(Mode.FIGHT, (game.scene.getCurrentPhase() as CommandPhase).getFieldIndex()); - }); - game.onNextPrompt("CommandPhase", Mode.FIGHT, () => { - const movePosition = getMovePosition(game.scene, 0, Moves.AERIAL_ACE); - (game.scene.getCurrentPhase() as CommandPhase).handleCommand(Command.FIGHT, movePosition, false); - }); + game.move.select(Moves.AERIAL_ACE); console.log("===to new turn==="); await game.toNextTurn(); battleStatsPokemon = game.scene.getParty()[0].summonData.battleStats; @@ -282,13 +263,7 @@ describe("Abilities - Intimidate", () => { battleStatsOpponent = game.scene.currentBattle.enemyParty[0].summonData.battleStats; expect(battleStatsOpponent[BattleStat.ATK]).toBe(0); - game.onNextPrompt("CommandPhase", Mode.COMMAND, () => { - game.scene.ui.setMode(Mode.FIGHT, (game.scene.getCurrentPhase() as CommandPhase).getFieldIndex()); - }); - game.onNextPrompt("CommandPhase", Mode.FIGHT, () => { - const movePosition = getMovePosition(game.scene, 0, Moves.AERIAL_ACE); - (game.scene.getCurrentPhase() as CommandPhase).handleCommand(Command.FIGHT, movePosition, false); - }); + game.move.select(Moves.AERIAL_ACE); console.log("===to new turn==="); await game.toNextTurn(); battleStatsPokemon = game.scene.getParty()[0].summonData.battleStats; @@ -307,13 +282,7 @@ describe("Abilities - Intimidate", () => { let battleStatsPokemon = game.scene.getParty()[0].summonData.battleStats; expect(battleStatsPokemon[BattleStat.ATK]).toBe(-1); - game.onNextPrompt("CommandPhase", Mode.COMMAND, () => { - game.scene.ui.setMode(Mode.FIGHT, (game.scene.getCurrentPhase() as CommandPhase).getFieldIndex()); - }); - game.onNextPrompt("CommandPhase", Mode.FIGHT, () => { - const movePosition = getMovePosition(game.scene, 0, Moves.AERIAL_ACE); - (game.scene.getCurrentPhase() as CommandPhase).handleCommand(Command.FIGHT, movePosition, false); - }); + game.move.select(Moves.AERIAL_ACE); console.log("===to new turn==="); await game.toNextTurn(); battleStatsPokemon = game.scene.getParty()[0].summonData.battleStats; @@ -321,13 +290,7 @@ describe("Abilities - Intimidate", () => { battleStatsOpponent = game.scene.currentBattle.enemyParty[0].summonData.battleStats; expect(battleStatsOpponent[BattleStat.ATK]).toBe(-1); - game.onNextPrompt("CommandPhase", Mode.COMMAND, () => { - game.scene.ui.setMode(Mode.FIGHT, (game.scene.getCurrentPhase() as CommandPhase).getFieldIndex()); - }); - game.onNextPrompt("CommandPhase", Mode.FIGHT, () => { - const movePosition = getMovePosition(game.scene, 0, Moves.AERIAL_ACE); - (game.scene.getCurrentPhase() as CommandPhase).handleCommand(Command.FIGHT, movePosition, false); - }); + game.move.select(Moves.AERIAL_ACE); console.log("===to new turn==="); await game.toNextTurn(); battleStatsPokemon = game.scene.getParty()[0].summonData.battleStats; diff --git a/src/test/abilities/intrepid_sword.test.ts b/src/test/abilities/intrepid_sword.test.ts index c1c05b59997..18d6c04adbc 100644 --- a/src/test/abilities/intrepid_sword.test.ts +++ b/src/test/abilities/intrepid_sword.test.ts @@ -1,10 +1,10 @@ import { BattleStat } from "#app/data/battle-stat"; -import GameManager from "#test/utils/gameManager"; +import { CommandPhase } from "#app/phases/command-phase"; import { Abilities } from "#enums/abilities"; import { Species } from "#enums/species"; +import GameManager from "#test/utils/gameManager"; import Phaser from "phaser"; import { afterEach, beforeAll, beforeEach, describe, expect, it } from "vitest"; -import { CommandPhase } from "#app/phases/command-phase.js"; describe("Abilities - Intrepid Sword", () => { diff --git a/src/test/abilities/libero.test.ts b/src/test/abilities/libero.test.ts index d35cb8b6e2d..7895e7de6bf 100644 --- a/src/test/abilities/libero.test.ts +++ b/src/test/abilities/libero.test.ts @@ -1,18 +1,17 @@ -import { allMoves } from "#app/data/move.js"; -import { Type } from "#app/data/type.js"; -import { Weather, WeatherType } from "#app/data/weather.js"; -import { PlayerPokemon } from "#app/field/pokemon.js"; +import { allMoves } from "#app/data/move"; +import { Type } from "#app/data/type"; +import { Weather, WeatherType } from "#app/data/weather"; +import { PlayerPokemon } from "#app/field/pokemon"; +import { TurnEndPhase } from "#app/phases/turn-end-phase"; import { Abilities } from "#enums/abilities"; import { BattlerTagType } from "#enums/battler-tag-type"; import { Biome } from "#enums/biome"; import { Moves } from "#enums/moves"; import { Species } from "#enums/species"; +import GameManager from "#test/utils/gameManager"; +import { SPLASH_ONLY } from "#test/utils/testUtils"; import Phaser from "phaser"; import { afterEach, beforeAll, beforeEach, describe, expect, test, vi } from "vitest"; -import GameManager from "#test/utils/gameManager"; -import { getMovePosition } from "#test/utils/gameManagerUtils"; -import { SPLASH_ONLY } from "#test/utils/testUtils"; -import { TurnEndPhase } from "#app/phases/turn-end-phase.js"; const TIMEOUT = 20 * 1000; @@ -49,7 +48,7 @@ describe("Abilities - Libero", () => { const leadPokemon = game.scene.getPlayerPokemon()!; expect(leadPokemon).not.toBe(undefined); - game.doAttack(getMovePosition(game.scene, 0, Moves.SPLASH)); + game.move.select(Moves.SPLASH); await game.phaseInterceptor.to(TurnEndPhase); testPokemonTypeMatchesDefaultMoveType(leadPokemon, Moves.SPLASH); @@ -67,17 +66,17 @@ describe("Abilities - Libero", () => { let leadPokemon = game.scene.getPlayerPokemon()!; expect(leadPokemon).not.toBe(undefined); - game.doAttack(getMovePosition(game.scene, 0, Moves.SPLASH)); + game.move.select(Moves.SPLASH); await game.phaseInterceptor.to(TurnEndPhase); testPokemonTypeMatchesDefaultMoveType(leadPokemon, Moves.SPLASH); - game.doAttack(getMovePosition(game.scene, 0, Moves.AGILITY)); + game.move.select(Moves.AGILITY); await game.phaseInterceptor.to(TurnEndPhase); expect(leadPokemon.summonData.abilitiesApplied.filter((a) => a === Abilities.LIBERO)).toHaveLength(1); const leadPokemonType = Type[leadPokemon.getTypes()[0]]; - const moveType = Type[allMoves[Moves.AGILITY].defaultType]; + const moveType = Type[allMoves[Moves.AGILITY].type]; expect(leadPokemonType).not.toBe(moveType); await game.toNextTurn(); @@ -89,7 +88,7 @@ describe("Abilities - Libero", () => { leadPokemon = game.scene.getPlayerPokemon()!; expect(leadPokemon).not.toBe(undefined); - game.doAttack(getMovePosition(game.scene, 0, Moves.SPLASH)); + game.move.select(Moves.SPLASH); await game.phaseInterceptor.to(TurnEndPhase); testPokemonTypeMatchesDefaultMoveType(leadPokemon, Moves.SPLASH); @@ -108,7 +107,7 @@ describe("Abilities - Libero", () => { expect(leadPokemon).not.toBe(undefined); game.scene.arena.weather = new Weather(WeatherType.SUNNY); - game.doAttack(getMovePosition(game.scene, 0, Moves.WEATHER_BALL)); + game.move.select(Moves.WEATHER_BALL); await game.phaseInterceptor.to(TurnEndPhase); expect(leadPokemon.summonData.abilitiesApplied).toContain(Abilities.LIBERO); @@ -131,7 +130,7 @@ describe("Abilities - Libero", () => { const leadPokemon = game.scene.getPlayerPokemon()!; expect(leadPokemon).not.toBe(undefined); - game.doAttack(getMovePosition(game.scene, 0, Moves.TACKLE)); + game.move.select(Moves.TACKLE); await game.phaseInterceptor.to(TurnEndPhase); expect(leadPokemon.summonData.abilitiesApplied).toContain(Abilities.LIBERO); @@ -154,7 +153,7 @@ describe("Abilities - Libero", () => { expect(leadPokemon).not.toBe(undefined); game.scene.arena.biomeType = Biome.MOUNTAIN; - game.doAttack(getMovePosition(game.scene, 0, Moves.NATURE_POWER)); + game.move.select(Moves.NATURE_POWER); await game.phaseInterceptor.to(TurnEndPhase); testPokemonTypeMatchesDefaultMoveType(leadPokemon, Moves.AIR_SLASH); @@ -172,7 +171,7 @@ describe("Abilities - Libero", () => { const leadPokemon = game.scene.getPlayerPokemon()!; expect(leadPokemon).not.toBe(undefined); - game.doAttack(getMovePosition(game.scene, 0, Moves.DIG)); + game.move.select(Moves.DIG); await game.phaseInterceptor.to(TurnEndPhase); testPokemonTypeMatchesDefaultMoveType(leadPokemon, Moves.DIG); @@ -191,7 +190,7 @@ describe("Abilities - Libero", () => { const leadPokemon = game.scene.getPlayerPokemon()!; expect(leadPokemon).not.toBe(undefined); - game.doAttack(getMovePosition(game.scene, 0, Moves.TACKLE)); + game.move.select(Moves.TACKLE); await game.move.forceMiss(); await game.phaseInterceptor.to(TurnEndPhase); @@ -213,7 +212,7 @@ describe("Abilities - Libero", () => { const leadPokemon = game.scene.getPlayerPokemon()!; expect(leadPokemon).not.toBe(undefined); - game.doAttack(getMovePosition(game.scene, 0, Moves.TACKLE)); + game.move.select(Moves.TACKLE); await game.phaseInterceptor.to(TurnEndPhase); testPokemonTypeMatchesDefaultMoveType(leadPokemon, Moves.TACKLE); @@ -232,7 +231,7 @@ describe("Abilities - Libero", () => { const leadPokemon = game.scene.getPlayerPokemon()!; expect(leadPokemon).not.toBe(undefined); - game.doAttack(getMovePosition(game.scene, 0, Moves.TACKLE)); + game.move.select(Moves.TACKLE); await game.phaseInterceptor.to(TurnEndPhase); testPokemonTypeMatchesDefaultMoveType(leadPokemon, Moves.TACKLE); @@ -250,8 +249,8 @@ describe("Abilities - Libero", () => { const leadPokemon = game.scene.getPlayerPokemon()!; expect(leadPokemon).not.toBe(undefined); - leadPokemon.summonData.types = [allMoves[Moves.SPLASH].defaultType]; - game.doAttack(getMovePosition(game.scene, 0, Moves.SPLASH)); + leadPokemon.summonData.types = [allMoves[Moves.SPLASH].type]; + game.move.select(Moves.SPLASH); await game.phaseInterceptor.to(TurnEndPhase); expect(leadPokemon.summonData.abilitiesApplied).not.toContain(Abilities.LIBERO); @@ -271,7 +270,7 @@ describe("Abilities - Libero", () => { vi.spyOn(leadPokemon, "isTerastallized").mockReturnValue(true); - game.doAttack(getMovePosition(game.scene, 0, Moves.SPLASH)); + game.move.select(Moves.SPLASH); await game.phaseInterceptor.to(TurnEndPhase); expect(leadPokemon.summonData.abilitiesApplied).not.toContain(Abilities.LIBERO); @@ -289,7 +288,7 @@ describe("Abilities - Libero", () => { const leadPokemon = game.scene.getPlayerPokemon()!; expect(leadPokemon).not.toBe(undefined); - game.doAttack(getMovePosition(game.scene, 0, Moves.STRUGGLE)); + game.move.select(Moves.STRUGGLE); await game.phaseInterceptor.to(TurnEndPhase); expect(leadPokemon.summonData.abilitiesApplied).not.toContain(Abilities.LIBERO); @@ -307,7 +306,7 @@ describe("Abilities - Libero", () => { const leadPokemon = game.scene.getPlayerPokemon()!; expect(leadPokemon).not.toBe(undefined); - game.doAttack(getMovePosition(game.scene, 0, Moves.BURN_UP)); + game.move.select(Moves.BURN_UP); await game.phaseInterceptor.to(TurnEndPhase); expect(leadPokemon.summonData.abilitiesApplied).not.toContain(Abilities.LIBERO); @@ -326,7 +325,7 @@ describe("Abilities - Libero", () => { const leadPokemon = game.scene.getPlayerPokemon()!; expect(leadPokemon).not.toBe(undefined); - game.doAttack(getMovePosition(game.scene, 0, Moves.TRICK_OR_TREAT)); + game.move.select(Moves.TRICK_OR_TREAT); await game.phaseInterceptor.to(TurnEndPhase); testPokemonTypeMatchesDefaultMoveType(leadPokemon, Moves.TRICK_OR_TREAT); @@ -344,7 +343,7 @@ describe("Abilities - Libero", () => { const leadPokemon = game.scene.getPlayerPokemon()!; expect(leadPokemon).not.toBe(undefined); - game.doAttack(getMovePosition(game.scene, 0, Moves.CURSE)); + game.move.select(Moves.CURSE); await game.phaseInterceptor.to(TurnEndPhase); testPokemonTypeMatchesDefaultMoveType(leadPokemon, Moves.CURSE); @@ -358,6 +357,6 @@ function testPokemonTypeMatchesDefaultMoveType(pokemon: PlayerPokemon, move: Mov expect(pokemon.summonData.abilitiesApplied).toContain(Abilities.LIBERO); expect(pokemon.getTypes()).toHaveLength(1); const pokemonType = Type[pokemon.getTypes()[0]], - moveType = Type[allMoves[move].defaultType]; + moveType = Type[allMoves[move].type]; expect(pokemonType).toBe(moveType); } diff --git a/src/test/abilities/magic_guard.test.ts b/src/test/abilities/magic_guard.test.ts index c7404f83a54..64c1746c7d9 100644 --- a/src/test/abilities/magic_guard.test.ts +++ b/src/test/abilities/magic_guard.test.ts @@ -1,17 +1,16 @@ -import { afterEach, beforeAll, beforeEach, describe, expect, it } from "vitest"; -import Phaser from "phaser"; -import GameManager from "#test/utils/gameManager"; -import { Species } from "#enums/species"; -import { TurnEndPhase } from "#app/phases/turn-end-phase.js"; -import { Moves } from "#enums/moves"; -import { ArenaTagType } from "#enums/arena-tag-type"; import { ArenaTagSide, getArenaTag } from "#app/data/arena-tag"; -import { getMovePosition } from "#test/utils/gameManagerUtils"; -import { Abilities } from "#enums/abilities"; -import { WeatherType } from "#app/data/weather.js"; import { StatusEffect, getStatusEffectCatchRateMultiplier } from "#app/data/status-effect"; +import { WeatherType } from "#app/data/weather"; +import { TurnEndPhase } from "#app/phases/turn-end-phase"; +import { Abilities } from "#enums/abilities"; +import { ArenaTagType } from "#enums/arena-tag-type"; import { BattlerTagType } from "#enums/battler-tag-type"; +import { Moves } from "#enums/moves"; +import { Species } from "#enums/species"; +import GameManager from "#test/utils/gameManager"; import { SPLASH_ONLY } from "#test/utils/testUtils"; +import Phaser from "phaser"; +import { afterEach, beforeAll, beforeEach, describe, expect, it } from "vitest"; const TIMEOUT = 20 * 1000; // 20 sec timeout @@ -58,7 +57,7 @@ describe("Abilities - Magic Guard", () => { const enemyPokemon = game.scene.getEnemyPokemon()!; expect(enemyPokemon).toBeDefined(); - game.doAttack(getMovePosition(game.scene, 0, Moves.SPLASH)); + game.move.select(Moves.SPLASH); await game.phaseInterceptor.to(TurnEndPhase); @@ -82,7 +81,7 @@ describe("Abilities - Magic Guard", () => { const leadPokemon = game.scene.getPlayerPokemon()!; - game.doAttack(getMovePosition(game.scene, 0, Moves.SPLASH)); + game.move.select(Moves.SPLASH); await game.phaseInterceptor.to(TurnEndPhase); @@ -99,14 +98,14 @@ describe("Abilities - Magic Guard", () => { it( "ability effect should not persist when the ability is replaced", async () => { - game.override.enemyMoveset([Moves.WORRY_SEED,Moves.WORRY_SEED,Moves.WORRY_SEED,Moves.WORRY_SEED]); + game.override.enemyMoveset([Moves.WORRY_SEED, Moves.WORRY_SEED, Moves.WORRY_SEED, Moves.WORRY_SEED]); game.override.statusEffect(StatusEffect.POISON); await game.startBattle([Species.MAGIKARP]); const leadPokemon = game.scene.getPlayerPokemon()!; - game.doAttack(getMovePosition(game.scene, 0, Moves.SPLASH)); + game.move.select(Moves.SPLASH); await game.phaseInterceptor.to(TurnEndPhase); @@ -126,7 +125,7 @@ describe("Abilities - Magic Guard", () => { await game.startBattle([Species.MAGIKARP]); - game.doAttack(getMovePosition(game.scene, 0, Moves.SPLASH)); + game.move.select(Moves.SPLASH); const enemyPokemon = game.scene.getEnemyPokemon()!; @@ -150,7 +149,7 @@ describe("Abilities - Magic Guard", () => { await game.startBattle([Species.MAGIKARP]); - game.doAttack(getMovePosition(game.scene, 0, Moves.SPLASH)); + game.move.select(Moves.SPLASH); const enemyPokemon = game.scene.getEnemyPokemon()!; @@ -180,7 +179,7 @@ describe("Abilities - Magic Guard", () => { await game.startBattle([Species.MAGIKARP]); const leadPokemon = game.scene.getPlayerPokemon()!; - game.doAttack(getMovePosition(game.scene, 0, Moves.SPLASH)); + game.move.select(Moves.SPLASH); const enemyPokemon = game.scene.getEnemyPokemon()!; @@ -206,7 +205,7 @@ describe("Abilities - Magic Guard", () => { await game.startBattle([Species.MAGIKARP]); const leadPokemon = game.scene.getPlayerPokemon()!; - game.doAttack(getMovePosition(game.scene, 0, Moves.SPLASH)); + game.move.select(Moves.SPLASH); const enemyPokemon = game.scene.getEnemyPokemon()!; @@ -233,7 +232,7 @@ describe("Abilities - Magic Guard", () => { const leadPokemon = game.scene.getPlayerPokemon()!; - game.doAttack(getMovePosition(game.scene, 0, Moves.CURSE)); + game.move.select(Moves.CURSE); const enemyPokemon = game.scene.getEnemyPokemon()!; @@ -257,7 +256,7 @@ describe("Abilities - Magic Guard", () => { const leadPokemon = game.scene.getPlayerPokemon()!; - game.doAttack(getMovePosition(game.scene, 0, Moves.HIGH_JUMP_KICK)); + game.move.select(Moves.HIGH_JUMP_KICK); await game.move.forceMiss(); await game.phaseInterceptor.to(TurnEndPhase); @@ -276,7 +275,7 @@ describe("Abilities - Magic Guard", () => { const leadPokemon = game.scene.getPlayerPokemon()!; - game.doAttack(getMovePosition(game.scene, 0, Moves.TAKE_DOWN)); + game.move.select(Moves.TAKE_DOWN); await game.phaseInterceptor.to(TurnEndPhase); @@ -294,7 +293,7 @@ describe("Abilities - Magic Guard", () => { const leadPokemon = game.scene.getPlayerPokemon()!; - game.doAttack(getMovePosition(game.scene, 0, Moves.STRUGGLE)); + game.move.select(Moves.STRUGGLE); await game.phaseInterceptor.to(TurnEndPhase); @@ -313,7 +312,7 @@ describe("Abilities - Magic Guard", () => { const leadPokemon = game.scene.getPlayerPokemon()!; - game.doAttack(getMovePosition(game.scene, 0, Moves.STEEL_BEAM)); + game.move.select(Moves.STEEL_BEAM); await game.phaseInterceptor.to(TurnEndPhase); @@ -329,7 +328,7 @@ describe("Abilities - Magic Guard", () => { it("Magic Guard does not prevent self-damage from confusion", async () => { await game.startBattle([Species.MAGIKARP]); - game.doAttack(getMovePosition(game.scene, 0, Moves.CHARM)); + game.move.select(Moves.CHARM); await game.phaseInterceptor.to(TurnEndPhase); }); @@ -341,7 +340,7 @@ describe("Abilities - Magic Guard", () => { const leadPokemon = game.scene.getPlayerPokemon()!; - game.doAttack(getMovePosition(game.scene, 0, Moves.BELLY_DRUM)); + game.move.select(Moves.BELLY_DRUM); await game.phaseInterceptor.to(TurnEndPhase); @@ -353,7 +352,7 @@ describe("Abilities - Magic Guard", () => { }, TIMEOUT ); - it("Magic Guard prevents damage from abilities with PostTurnHurtIfSleepingAbAttr", async() => { + it("Magic Guard prevents damage from abilities with PostTurnHurtIfSleepingAbAttr", async () => { //Tests the ability Bad Dreams game.override.statusEffect(StatusEffect.SLEEP); //enemy pokemon is given Spore just in case player pokemon somehow awakens during test @@ -364,7 +363,7 @@ describe("Abilities - Magic Guard", () => { const leadPokemon = game.scene.getPlayerPokemon()!; - game.doAttack(getMovePosition(game.scene, 0, Moves.SPLASH)); + game.move.select(Moves.SPLASH); await game.phaseInterceptor.to(TurnEndPhase); @@ -378,7 +377,7 @@ describe("Abilities - Magic Guard", () => { }, TIMEOUT ); - it("Magic Guard prevents damage from abilities with PostFaintContactDamageAbAttr", async() => { + it("Magic Guard prevents damage from abilities with PostFaintContactDamageAbAttr", async () => { //Tests the abilities Innards Out/Aftermath game.override.moveset([Moves.TACKLE]); game.override.enemyAbility(Abilities.AFTERMATH); @@ -390,7 +389,7 @@ describe("Abilities - Magic Guard", () => { const enemyPokemon = game.scene.getEnemyPokemon()!; enemyPokemon.hp = 1; - game.doAttack(getMovePosition(game.scene, 0, Moves.TACKLE)); + game.move.select(Moves.TACKLE); await game.phaseInterceptor.to(TurnEndPhase); /** @@ -403,7 +402,7 @@ describe("Abilities - Magic Guard", () => { }, TIMEOUT ); - it("Magic Guard prevents damage from abilities with PostDefendContactDamageAbAttr", async() => { + it("Magic Guard prevents damage from abilities with PostDefendContactDamageAbAttr", async () => { //Tests the abilities Iron Barbs/Rough Skin game.override.moveset([Moves.TACKLE]); game.override.enemyAbility(Abilities.IRON_BARBS); @@ -414,7 +413,7 @@ describe("Abilities - Magic Guard", () => { const enemyPokemon = game.scene.getEnemyPokemon()!; - game.doAttack(getMovePosition(game.scene, 0, Moves.TACKLE)); + game.move.select(Moves.TACKLE); await game.phaseInterceptor.to(TurnEndPhase); /** @@ -427,7 +426,7 @@ describe("Abilities - Magic Guard", () => { }, TIMEOUT ); - it("Magic Guard prevents damage from abilities with ReverseDrainAbAttr", async() => { + it("Magic Guard prevents damage from abilities with ReverseDrainAbAttr", async () => { //Tests the ability Liquid Ooze game.override.moveset([Moves.ABSORB]); game.override.enemyAbility(Abilities.LIQUID_OOZE); @@ -438,7 +437,7 @@ describe("Abilities - Magic Guard", () => { const enemyPokemon = game.scene.getEnemyPokemon()!; - game.doAttack(getMovePosition(game.scene, 0, Moves.ABSORB)); + game.move.select(Moves.ABSORB); await game.phaseInterceptor.to(TurnEndPhase); /** @@ -451,14 +450,14 @@ describe("Abilities - Magic Guard", () => { }, TIMEOUT ); - it("Magic Guard prevents HP loss from abilities with PostWeatherLapseDamageAbAttr", async() => { + it("Magic Guard prevents HP loss from abilities with PostWeatherLapseDamageAbAttr", async () => { //Tests the abilities Solar Power/Dry Skin game.override.passiveAbility(Abilities.SOLAR_POWER); game.override.weather(WeatherType.SUNNY); await game.startBattle([Species.MAGIKARP]); const leadPokemon = game.scene.getPlayerPokemon()!; - game.doAttack(getMovePosition(game.scene, 0, Moves.SPLASH)); + game.move.select(Moves.SPLASH); await game.phaseInterceptor.to(TurnEndPhase); /** diff --git a/src/test/abilities/moody.test.ts b/src/test/abilities/moody.test.ts new file mode 100644 index 00000000000..9e936e8100a --- /dev/null +++ b/src/test/abilities/moody.test.ts @@ -0,0 +1,93 @@ +import { BattleStat } from "#app/data/battle-stat"; +import { Abilities } from "#enums/abilities"; +import { Moves } from "#enums/moves"; +import { Species } from "#enums/species"; +import GameManager from "#test/utils/gameManager"; +import { SPLASH_ONLY } from "#test/utils/testUtils"; +import Phaser from "phaser"; +import { afterEach, beforeAll, beforeEach, describe, expect, it } from "vitest"; + +describe("Abilities - Moody", () => { + let phaserGame: Phaser.Game; + let game: GameManager; + + const battleStatsArray = [BattleStat.ATK, BattleStat.DEF, BattleStat.SPATK, BattleStat.SPDEF, BattleStat.SPD]; + + beforeAll(() => { + phaserGame = new Phaser.Game({ + type: Phaser.HEADLESS, + }); + }); + + afterEach(() => { + game.phaseInterceptor.restoreOg(); + }); + + beforeEach(() => { + game = new GameManager(phaserGame); + + game.override + .battleType("single") + .enemySpecies(Species.RATTATA) + .enemyAbility(Abilities.BALL_FETCH) + .enemyPassiveAbility(Abilities.HYDRATION) + .ability(Abilities.MOODY) + .enemyMoveset(SPLASH_ONLY) + .moveset(SPLASH_ONLY); + }); + + it( + "should increase one BattleStat by 2 stages and decrease a different BattleStat by 1 stage", + async () => { + await game.startBattle(); + + const playerPokemon = game.scene.getPlayerPokemon()!; + game.move.select(Moves.SPLASH); + await game.toNextTurn(); + + // Find the increased and decreased stats, make sure they are different. + const statChanges = playerPokemon.summonData.battleStats; + const changedStats = battleStatsArray.filter(bs => statChanges[bs] === 2 || statChanges[bs] === -1); + + expect(changedStats).toBeTruthy(); + expect(changedStats.length).toBe(2); + expect(changedStats[0] !== changedStats[1]).toBeTruthy(); + }); + + it( + "should only increase one BattleStat by 2 stages if all BattleStats are at -6", + async () => { + await game.startBattle(); + + const playerPokemon = game.scene.getPlayerPokemon()!; + // Set all BattleStats to -6 + battleStatsArray.forEach(bs => playerPokemon.summonData.battleStats[bs] = -6); + + game.move.select(Moves.SPLASH); + await game.toNextTurn(); + + // Should increase one BattleStat by 2 (from -6, meaning it will be -4) + const increasedStat = battleStatsArray.filter(bs => playerPokemon.summonData.battleStats[bs] === -4); + + expect(increasedStat).toBeTruthy(); + expect(increasedStat.length).toBe(1); + }); + + it( + "should only decrease one BattleStat by 1 stage if all BattleStats are at 6", + async () => { + await game.startBattle(); + + const playerPokemon = game.scene.getPlayerPokemon()!; + // Set all BattleStats to 6 + battleStatsArray.forEach(bs => playerPokemon.summonData.battleStats[bs] = 6); + + game.move.select(Moves.SPLASH); + await game.toNextTurn(); + + // Should decrease one BattleStat by 1 (from 6, meaning it will be 5) + const decreasedStat = battleStatsArray.filter(bs => playerPokemon.summonData.battleStats[bs] === 5); + expect(decreasedStat).toBeTruthy(); + expect(decreasedStat.length).toBe(1); + }); +}); diff --git a/src/test/abilities/moxie.test.ts b/src/test/abilities/moxie.test.ts index 6550dcab526..6a1838c9a98 100644 --- a/src/test/abilities/moxie.test.ts +++ b/src/test/abilities/moxie.test.ts @@ -1,17 +1,13 @@ import { BattleStat } from "#app/data/battle-stat"; import { Stat } from "#app/data/pokemon-stat"; -import GameManager from "#test/utils/gameManager"; -import { getMovePosition } from "#test/utils/gameManagerUtils"; -import { Command } from "#app/ui/command-ui-handler"; -import { Mode } from "#app/ui/ui"; +import { EnemyCommandPhase } from "#app/phases/enemy-command-phase"; +import { VictoryPhase } from "#app/phases/victory-phase"; import { Abilities } from "#enums/abilities"; import { Moves } from "#enums/moves"; import { Species } from "#enums/species"; +import GameManager from "#test/utils/gameManager"; import Phaser from "phaser"; import { afterEach, beforeAll, beforeEach, describe, expect, it } from "vitest"; -import { CommandPhase } from "#app/phases/command-phase.js"; -import { EnemyCommandPhase } from "#app/phases/enemy-command-phase.js"; -import { VictoryPhase } from "#app/phases/victory-phase.js"; describe("Abilities - Moxie", () => { @@ -37,10 +33,10 @@ describe("Abilities - Moxie", () => { game.override.ability(Abilities.MOXIE); game.override.startingLevel(2000); game.override.moveset([moveToUse]); - game.override.enemyMoveset([Moves.TACKLE,Moves.TACKLE,Moves.TACKLE,Moves.TACKLE]); + game.override.enemyMoveset([Moves.TACKLE, Moves.TACKLE, Moves.TACKLE, Moves.TACKLE]); }); - it("MOXIE", async() => { + it("MOXIE", async () => { const moveToUse = Moves.AERIAL_ACE; await game.startBattle([ Species.MIGHTYENA, @@ -50,13 +46,7 @@ describe("Abilities - Moxie", () => { let battleStatsPokemon = game.scene.getParty()[0].summonData.battleStats; expect(battleStatsPokemon[Stat.ATK]).toBe(0); - game.onNextPrompt("CommandPhase", Mode.COMMAND, () => { - game.scene.ui.setMode(Mode.FIGHT, (game.scene.getCurrentPhase() as CommandPhase).getFieldIndex()); - }); - game.onNextPrompt("CommandPhase", Mode.FIGHT, () => { - const movePosition = getMovePosition(game.scene, 0, moveToUse); - (game.scene.getCurrentPhase() as CommandPhase).handleCommand(Command.FIGHT, movePosition, false); - }); + game.move.select(moveToUse); await game.phaseInterceptor.runFrom(EnemyCommandPhase).to(VictoryPhase); battleStatsPokemon = game.scene.getParty()[0].summonData.battleStats; expect(battleStatsPokemon[BattleStat.ATK]).toBe(1); diff --git a/src/test/abilities/mycelium_might.test.ts b/src/test/abilities/mycelium_might.test.ts index 2fcdc28b279..83396f7950f 100644 --- a/src/test/abilities/mycelium_might.test.ts +++ b/src/test/abilities/mycelium_might.test.ts @@ -1,11 +1,10 @@ -import { MovePhase } from "#app/phases/move-phase.js"; -import { TurnEndPhase } from "#app/phases/turn-end-phase.js"; -import GameManager from "#test/utils/gameManager"; -import { getMovePosition } from "#test/utils/gameManagerUtils"; -import { Abilities } from "#enums/abilities"; import { BattleStat } from "#app/data/battle-stat"; +import { MovePhase } from "#app/phases/move-phase"; +import { TurnEndPhase } from "#app/phases/turn-end-phase"; +import { Abilities } from "#enums/abilities"; import { Moves } from "#enums/moves"; import { Species } from "#enums/species"; +import GameManager from "#test/utils/gameManager"; import Phaser from "phaser"; import { afterEach, beforeAll, beforeEach, describe, expect, it } from "vitest"; @@ -42,14 +41,14 @@ describe("Abilities - Mycelium Might", () => { * https://www.smogon.com/forums/threads/scarlet-violet-battle-mechanics-research.3709545/page-24 **/ - it("If a Pokemon with Mycelium Might uses a status move, it will always move last but the status move will ignore protective abilities", async() => { - await game.startBattle([ Species.REGIELEKI ]); + it("will move last in its priority bracket and ignore protective abilities", async () => { + await game.startBattle([Species.REGIELEKI]); const leadIndex = game.scene.getPlayerPokemon()!.getBattlerIndex(); const enemyPokemon = game.scene.getEnemyPokemon(); const enemyIndex = enemyPokemon?.getBattlerIndex(); - game.doAttack(getMovePosition(game.scene, 0, Moves.BABY_DOLL_EYES)); + game.move.select(Moves.BABY_DOLL_EYES); await game.phaseInterceptor.to(MovePhase, false); // The opponent Pokemon (without Mycelium Might) goes first despite having lower speed than the player Pokemon. @@ -64,15 +63,15 @@ describe("Abilities - Mycelium Might", () => { expect(enemyPokemon?.summonData.battleStats[BattleStat.ATK]).toBe(-1); }, 20000); - it("Pokemon with Mycelium Might will go first if a status move that is in a higher priority bracket than the opponent's move is used", async() => { + it("will still go first if a status move that is in a higher priority bracket than the opponent's move is used", async () => { game.override.enemyMoveset([Moves.TACKLE, Moves.TACKLE, Moves.TACKLE, Moves.TACKLE]); - await game.startBattle([ Species.REGIELEKI ]); + await game.startBattle([Species.REGIELEKI]); const leadIndex = game.scene.getPlayerPokemon()!.getBattlerIndex(); const enemyPokemon = game.scene.getEnemyPokemon(); const enemyIndex = enemyPokemon?.getBattlerIndex(); - game.doAttack(getMovePosition(game.scene, 0, Moves.BABY_DOLL_EYES)); + game.move.select(Moves.BABY_DOLL_EYES); await game.phaseInterceptor.to(MovePhase, false); // The player Pokemon (with M.M.) goes first because its move is still within a higher priority bracket than its opponent. @@ -86,13 +85,13 @@ describe("Abilities - Mycelium Might", () => { expect(enemyPokemon?.summonData.battleStats[BattleStat.ATK]).toBe(-1); }, 20000); - it("Order is established normally if the Pokemon uses a non-status move", async() => { - await game.startBattle([ Species.REGIELEKI ]); + it("will not affect non-status moves", async () => { + await game.startBattle([Species.REGIELEKI]); const leadIndex = game.scene.getPlayerPokemon()!.getBattlerIndex(); const enemyIndex = game.scene.getEnemyPokemon()!.getBattlerIndex(); - game.doAttack(getMovePosition(game.scene, 0, Moves.QUICK_ATTACK)); + game.move.select(Moves.QUICK_ATTACK); await game.phaseInterceptor.to(MovePhase, false); // The player Pokemon (with M.M.) goes first because it has a higher speed and did not use a status move. diff --git a/src/test/abilities/parental_bond.test.ts b/src/test/abilities/parental_bond.test.ts index ef0ad7785d2..1404f597ccf 100644 --- a/src/test/abilities/parental_bond.test.ts +++ b/src/test/abilities/parental_bond.test.ts @@ -1,21 +1,21 @@ -import { BattleStat } from "#app/data/battle-stat.js"; -import { StatusEffect } from "#app/data/status-effect.js"; -import { Type } from "#app/data/type.js"; -import { BattlerTagType } from "#app/enums/battler-tag-type.js"; +import { BattleStat } from "#app/data/battle-stat"; +import { StatusEffect } from "#app/data/status-effect"; +import { Type } from "#app/data/type"; +import { BattlerTagType } from "#app/enums/battler-tag-type"; +import { BerryPhase } from "#app/phases/berry-phase"; +import { CommandPhase } from "#app/phases/command-phase"; +import { DamagePhase } from "#app/phases/damage-phase"; +import { MoveEffectPhase } from "#app/phases/move-effect-phase"; +import { MoveEndPhase } from "#app/phases/move-end-phase"; +import { TurnEndPhase } from "#app/phases/turn-end-phase"; +import { toDmgValue } from "#app/utils"; import { Abilities } from "#enums/abilities"; import { Moves } from "#enums/moves"; import { Species } from "#enums/species"; +import GameManager from "#test/utils/gameManager"; +import { SPLASH_ONLY } from "#test/utils/testUtils"; import Phaser from "phaser"; import { afterEach, beforeAll, beforeEach, describe, expect, test } from "vitest"; -import GameManager from "#test/utils/gameManager"; -import { getMovePosition } from "#test/utils/gameManagerUtils"; -import { SPLASH_ONLY } from "#test/utils/testUtils"; -import { BerryPhase } from "#app/phases/berry-phase.js"; -import { CommandPhase } from "#app/phases/command-phase.js"; -import { DamagePhase } from "#app/phases/damage-phase.js"; -import { MoveEffectPhase } from "#app/phases/move-effect-phase.js"; -import { MoveEndPhase } from "#app/phases/move-end-phase.js"; -import { TurnEndPhase } from "#app/phases/turn-end-phase.js"; const TIMEOUT = 20 * 1000; @@ -60,7 +60,7 @@ describe("Abilities - Parental Bond", () => { let enemyStartingHp = enemyPokemon.hp; - game.doAttack(getMovePosition(game.scene, 0, Moves.TACKLE)); + game.move.select(Moves.TACKLE); await game.phaseInterceptor.to(MoveEffectPhase, false); @@ -73,7 +73,7 @@ describe("Abilities - Parental Bond", () => { const secondStrikeDamage = enemyStartingHp - enemyPokemon.hp; expect(leadPokemon.turnData.hitCount).toBe(2); - expect(secondStrikeDamage).toBe(Math.ceil(0.25 * firstStrikeDamage)); + expect(secondStrikeDamage).toBe(toDmgValue(0.25 * firstStrikeDamage)); }, TIMEOUT ); @@ -91,7 +91,7 @@ describe("Abilities - Parental Bond", () => { const enemyPokemon = game.scene.getEnemyPokemon()!; expect(enemyPokemon).not.toBe(undefined); - game.doAttack(getMovePosition(game.scene, 0, Moves.POWER_UP_PUNCH)); + game.move.select(Moves.POWER_UP_PUNCH); await game.phaseInterceptor.to(BerryPhase, false); @@ -113,7 +113,7 @@ describe("Abilities - Parental Bond", () => { const enemyPokemon = game.scene.getEnemyPokemon()!; expect(enemyPokemon).not.toBe(undefined); - game.doAttack(getMovePosition(game.scene, 0, Moves.BABY_DOLL_EYES)); + game.move.select(Moves.BABY_DOLL_EYES); await game.phaseInterceptor.to(BerryPhase, false); expect(enemyPokemon.summonData.battleStats[BattleStat.ATK]).toBe(-1); @@ -133,7 +133,7 @@ describe("Abilities - Parental Bond", () => { const enemyPokemon = game.scene.getEnemyPokemon()!; expect(enemyPokemon).not.toBe(undefined); - game.doAttack(getMovePosition(game.scene, 0, Moves.DOUBLE_HIT)); + game.move.select(Moves.DOUBLE_HIT); await game.move.forceHit(); await game.phaseInterceptor.to(BerryPhase, false); @@ -155,7 +155,7 @@ describe("Abilities - Parental Bond", () => { const enemyPokemon = game.scene.getEnemyPokemon()!; expect(enemyPokemon).not.toBe(undefined); - game.doAttack(getMovePosition(game.scene, 0, Moves.SELF_DESTRUCT)); + game.move.select(Moves.SELF_DESTRUCT); await game.phaseInterceptor.to(DamagePhase, false); @@ -176,7 +176,7 @@ describe("Abilities - Parental Bond", () => { const enemyPokemon = game.scene.getEnemyPokemon()!; expect(enemyPokemon).not.toBe(undefined); - game.doAttack(getMovePosition(game.scene, 0, Moves.ROLLOUT)); + game.move.select(Moves.ROLLOUT); await game.move.forceHit(); await game.phaseInterceptor.to(DamagePhase, false); @@ -200,7 +200,7 @@ describe("Abilities - Parental Bond", () => { const enemyStartingHp = enemyPokemon.hp; - game.doAttack(getMovePosition(game.scene, 0, Moves.DRAGON_RAGE)); + game.move.select(Moves.DRAGON_RAGE); await game.phaseInterceptor.to(BerryPhase, false); expect(enemyPokemon.hp).toBe(enemyStartingHp - 80); @@ -211,7 +211,7 @@ describe("Abilities - Parental Bond", () => { "ability should not apply multiplier to counter moves", async () => { game.override.moveset([Moves.COUNTER]); - game.override.enemyMoveset([Moves.TACKLE,Moves.TACKLE,Moves.TACKLE,Moves.TACKLE]); + game.override.enemyMoveset([Moves.TACKLE, Moves.TACKLE, Moves.TACKLE, Moves.TACKLE]); await game.startBattle([Species.CHARIZARD]); @@ -224,14 +224,14 @@ describe("Abilities - Parental Bond", () => { const playerStartingHp = leadPokemon.hp; const enemyStartingHp = enemyPokemon.hp; - game.doAttack(getMovePosition(game.scene, 0, Moves.COUNTER)); + game.move.select(Moves.COUNTER); await game.phaseInterceptor.to(DamagePhase); const playerDamage = playerStartingHp - leadPokemon.hp; await game.phaseInterceptor.to(BerryPhase, false); - expect(enemyPokemon.hp).toBe(enemyStartingHp - 4*playerDamage); + expect(enemyPokemon.hp).toBe(enemyStartingHp - 4 * playerDamage); }, TIMEOUT ); @@ -251,10 +251,10 @@ describe("Abilities - Parental Bond", () => { expect(enemyPokemon.length).toBe(2); enemyPokemon.forEach(p => expect(p).not.toBe(undefined)); - game.doAttack(getMovePosition(game.scene, 0, Moves.EARTHQUAKE)); + game.move.select(Moves.EARTHQUAKE); await game.phaseInterceptor.to(CommandPhase); - game.doAttack(getMovePosition(game.scene, 1, Moves.EARTHQUAKE)); + game.move.select(Moves.EARTHQUAKE, 1); await game.phaseInterceptor.to(BerryPhase, false); playerPokemon.forEach(p => expect(p.turnData.hitCount).toBe(1)); @@ -274,7 +274,7 @@ describe("Abilities - Parental Bond", () => { const enemyPokemon = game.scene.getEnemyPokemon()!; expect(enemyPokemon).not.toBe(undefined); - game.doAttack(getMovePosition(game.scene, 0, Moves.EARTHQUAKE)); + game.move.select(Moves.EARTHQUAKE); await game.phaseInterceptor.to(DamagePhase, false); expect(leadPokemon.turnData.hitCount).toBe(2); @@ -294,7 +294,7 @@ describe("Abilities - Parental Bond", () => { const enemyPokemon = game.scene.getEnemyPokemon()!; expect(enemyPokemon).not.toBe(undefined); - game.doAttack(getMovePosition(game.scene, 0, Moves.MIND_BLOWN)); + game.move.select(Moves.MIND_BLOWN); await game.phaseInterceptor.to(DamagePhase, false); @@ -303,7 +303,7 @@ describe("Abilities - Parental Bond", () => { // This test will time out if the user faints await game.phaseInterceptor.to(BerryPhase, false); - expect(leadPokemon.hp).toBe(Math.floor(leadPokemon.getMaxHp()/2)); + expect(leadPokemon.hp).toBe(toDmgValue(leadPokemon.getMaxHp() / 2)); }, TIMEOUT ); @@ -320,7 +320,7 @@ describe("Abilities - Parental Bond", () => { const enemyPokemon = game.scene.getEnemyPokemon()!; expect(enemyPokemon).not.toBe(undefined); - game.doAttack(getMovePosition(game.scene, 0, Moves.BURN_UP)); + game.move.select(Moves.BURN_UP); await game.phaseInterceptor.to(DamagePhase); @@ -338,7 +338,7 @@ describe("Abilities - Parental Bond", () => { "Moves boosted by this ability and Multi-Lens should strike 4 times", async () => { game.override.moveset([Moves.TACKLE]); - game.override.startingHeldItems([{name: "MULTI_LENS", count: 1}]); + game.override.startingHeldItems([{ name: "MULTI_LENS", count: 1 }]); await game.startBattle([Species.CHARIZARD]); @@ -348,7 +348,7 @@ describe("Abilities - Parental Bond", () => { const enemyPokemon = game.scene.getEnemyPokemon()!; expect(enemyPokemon).not.toBe(undefined); - game.doAttack(getMovePosition(game.scene, 0, Moves.TACKLE)); + game.move.select(Moves.TACKLE); await game.phaseInterceptor.to(DamagePhase); @@ -360,7 +360,7 @@ describe("Abilities - Parental Bond", () => { "Super Fang boosted by this ability and Multi-Lens should strike twice", async () => { game.override.moveset([Moves.SUPER_FANG]); - game.override.startingHeldItems([{name: "MULTI_LENS", count: 1}]); + game.override.startingHeldItems([{ name: "MULTI_LENS", count: 1 }]); await game.startBattle([Species.CHARIZARD]); @@ -372,7 +372,7 @@ describe("Abilities - Parental Bond", () => { const enemyStartingHp = enemyPokemon.hp; - game.doAttack(getMovePosition(game.scene, 0, Moves.SUPER_FANG)); + game.move.select(Moves.SUPER_FANG); await game.move.forceHit(); await game.phaseInterceptor.to(DamagePhase); @@ -389,7 +389,7 @@ describe("Abilities - Parental Bond", () => { "Seismic Toss boosted by this ability and Multi-Lens should strike twice", async () => { game.override.moveset([Moves.SEISMIC_TOSS]); - game.override.startingHeldItems([{name: "MULTI_LENS", count: 1}]); + game.override.startingHeldItems([{ name: "MULTI_LENS", count: 1 }]); await game.startBattle([Species.CHARIZARD]); @@ -401,7 +401,7 @@ describe("Abilities - Parental Bond", () => { const enemyStartingHp = enemyPokemon.hp; - game.doAttack(getMovePosition(game.scene, 0, Moves.SEISMIC_TOSS)); + game.move.select(Moves.SEISMIC_TOSS); await game.move.forceHit(); await game.phaseInterceptor.to(DamagePhase); @@ -427,7 +427,7 @@ describe("Abilities - Parental Bond", () => { const enemyPokemon = game.scene.getEnemyPokemon()!; expect(enemyPokemon).not.toBe(undefined); - game.doAttack(getMovePosition(game.scene, 0, Moves.HYPER_BEAM)); + game.move.select(Moves.HYPER_BEAM); await game.move.forceHit(); await game.phaseInterceptor.to(DamagePhase); @@ -455,7 +455,7 @@ describe("Abilities - Parental Bond", () => { const enemyPokemon = game.scene.getEnemyPokemon()!; expect(enemyPokemon).not.toBe(undefined); - game.doAttack(getMovePosition(game.scene, 0, Moves.ANCHOR_SHOT)); + game.move.select(Moves.ANCHOR_SHOT); await game.move.forceHit(); await game.phaseInterceptor.to(DamagePhase); @@ -485,7 +485,7 @@ describe("Abilities - Parental Bond", () => { const enemyPokemon = game.scene.getEnemyPokemon()!; expect(enemyPokemon).not.toBe(undefined); - game.doAttack(getMovePosition(game.scene, 0, Moves.SMACK_DOWN)); + game.move.select(Moves.SMACK_DOWN); await game.move.forceHit(); await game.phaseInterceptor.to(DamagePhase); @@ -512,7 +512,7 @@ describe("Abilities - Parental Bond", () => { const enemyPokemon = game.scene.getEnemyPokemon()!; expect(enemyPokemon).not.toBe(undefined); - game.doAttack(getMovePosition(game.scene, 0, Moves.U_TURN)); + game.move.select(Moves.U_TURN); await game.move.forceHit(); await game.phaseInterceptor.to(MoveEffectPhase); @@ -536,7 +536,7 @@ describe("Abilities - Parental Bond", () => { const enemyPokemon = game.scene.getEnemyPokemon()!; expect(enemyPokemon).not.toBe(undefined); - game.doAttack(getMovePosition(game.scene, 0, Moves.WAKE_UP_SLAP)); + game.move.select(Moves.WAKE_UP_SLAP); await game.move.forceHit(); await game.phaseInterceptor.to(DamagePhase); @@ -554,7 +554,7 @@ describe("Abilities - Parental Bond", () => { "ability should not cause user to hit into King's Shield more than once", async () => { game.override.moveset([Moves.TACKLE]); - game.override.enemyMoveset([Moves.KINGS_SHIELD,Moves.KINGS_SHIELD,Moves.KINGS_SHIELD,Moves.KINGS_SHIELD]); + game.override.enemyMoveset([Moves.KINGS_SHIELD, Moves.KINGS_SHIELD, Moves.KINGS_SHIELD, Moves.KINGS_SHIELD]); await game.startBattle([Species.CHARIZARD]); @@ -564,7 +564,7 @@ describe("Abilities - Parental Bond", () => { const enemyPokemon = game.scene.getEnemyPokemon()!; expect(enemyPokemon).not.toBe(undefined); - game.doAttack(getMovePosition(game.scene, 0, Moves.TACKLE)); + game.move.select(Moves.TACKLE); await game.phaseInterceptor.to(BerryPhase, false); @@ -586,7 +586,7 @@ describe("Abilities - Parental Bond", () => { const enemyPokemon = game.scene.getEnemyPokemon()!; expect(enemyPokemon).not.toBe(undefined); - game.doAttack(getMovePosition(game.scene, 0, Moves.WATER_GUN)); + game.move.select(Moves.WATER_GUN); await game.phaseInterceptor.to(BerryPhase, false); @@ -599,7 +599,7 @@ describe("Abilities - Parental Bond", () => { async () => { game.override.battleType("double"); game.override.moveset([Moves.EARTHQUAKE, Moves.SPLASH]); - game.override.startingHeldItems([{name: "MULTI_LENS", count: 1}]); + game.override.startingHeldItems([{ name: "MULTI_LENS", count: 1 }]); await game.startBattle([Species.CHARIZARD, Species.PIDGEOT]); @@ -613,10 +613,10 @@ describe("Abilities - Parental Bond", () => { const enemyStartingHp = enemyPokemon.map(p => p.hp); - game.doAttack(getMovePosition(game.scene, 0, Moves.EARTHQUAKE)); + game.move.select(Moves.EARTHQUAKE); await game.phaseInterceptor.to(CommandPhase); - game.doAttack(getMovePosition(game.scene, 1, Moves.SPLASH)); + game.move.select(Moves.SPLASH, 1); await game.phaseInterceptor.to(MoveEffectPhase, false); @@ -625,7 +625,7 @@ describe("Abilities - Parental Bond", () => { await game.phaseInterceptor.to(BerryPhase, false); - enemyPokemon.forEach((p, i) => expect(enemyStartingHp[i] - p.hp).toBe(2*enemyFirstHitDamage[i])); + enemyPokemon.forEach((p, i) => expect(enemyStartingHp[i] - p.hp).toBe(2 * enemyFirstHitDamage[i])); }, TIMEOUT ); diff --git a/src/test/abilities/pastel_veil.test.ts b/src/test/abilities/pastel_veil.test.ts index cb6be666d5f..ba90c7e3b3f 100644 --- a/src/test/abilities/pastel_veil.test.ts +++ b/src/test/abilities/pastel_veil.test.ts @@ -1,15 +1,14 @@ -import { afterEach, beforeAll, beforeEach, describe, expect, it, vi } from "vitest"; -import Phaser from "phaser"; -import GameManager from "#test/utils/gameManager"; -import { Species } from "#enums/species"; +import { BattlerIndex } from "#app/battle"; +import { StatusEffect } from "#app/data/status-effect"; +import { Abilities } from "#app/enums/abilities"; +import { CommandPhase } from "#app/phases/command-phase"; +import { TurnEndPhase } from "#app/phases/turn-end-phase"; import { Moves } from "#enums/moves"; -import { getMovePosition } from "#test/utils/gameManagerUtils"; -import { StatusEffect } from "#app/data/status-effect.js"; -import { allAbilities } from "#app/data/ability.js"; -import { Abilities } from "#app/enums/abilities.js"; -import { BattlerIndex } from "#app/battle.js"; -import { CommandPhase } from "#app/phases/command-phase.js"; -import { TurnEndPhase } from "#app/phases/turn-end-phase.js"; +import { Species } from "#enums/species"; +import GameManager from "#test/utils/gameManager"; +import Phaser from "phaser"; +import { afterEach, beforeAll, beforeEach, describe, expect, it } from "vitest"; +import { SPLASH_ONLY } from "../utils/testUtils"; describe("Abilities - Pastel Veil", () => { let phaserGame: Phaser.Game; @@ -27,50 +26,49 @@ describe("Abilities - Pastel Veil", () => { beforeEach(() => { game = new GameManager(phaserGame); - game.override.battleType("double"); - game.override.moveset([Moves.SPLASH]); - game.override.enemyAbility(Abilities.BALL_FETCH); - game.override.enemySpecies(Species.MAGIKARP); - game.override.enemyMoveset([Moves.TOXIC_THREAD, Moves.TOXIC_THREAD, Moves.TOXIC_THREAD, Moves.TOXIC_THREAD]); + game.override + .battleType("double") + .moveset([Moves.TOXIC_THREAD, Moves.SPLASH]) + .enemyAbility(Abilities.BALL_FETCH) + .enemySpecies(Species.SUNKERN) + .enemyMoveset(SPLASH_ONLY); }); it("prevents the user and its allies from being afflicted by poison", async () => { - await game.startBattle([Species.GALAR_PONYTA, Species.MAGIKARP]); - const ponyta = game.scene.getPlayerField()[0]; - - vi.spyOn(ponyta, "getAbility").mockReturnValue(allAbilities[Abilities.PASTEL_VEIL]); + await game.startBattle([Species.MAGIKARP, Species.GALAR_PONYTA]); + const ponyta = game.scene.getPlayerField()[1]; + const magikarp = game.scene.getPlayerField()[0]; + ponyta.abilityIndex = 1; expect(ponyta.hasAbility(Abilities.PASTEL_VEIL)).toBe(true); - game.doAttack(getMovePosition(game.scene, 0, Moves.SPLASH)); - game.doAttack(getMovePosition(game.scene, 1, Moves.SPLASH)); + game.move.select(Moves.SPLASH); + game.move.select(Moves.TOXIC_THREAD, 1, BattlerIndex.PLAYER); await game.phaseInterceptor.to(TurnEndPhase); - expect(game.scene.getPlayerField().every(p => p.status?.effect)).toBe(false); + expect(magikarp.status?.effect).toBeUndefined(); }); it("it heals the poisoned status condition of allies if user is sent out into battle", async () => { - await game.startBattle([Species.MAGIKARP, Species.MAGIKARP, Species.GALAR_PONYTA]); - const ponyta = game.scene.getParty().find(p => p.species.speciesId === Species.GALAR_PONYTA)!; - - vi.spyOn(ponyta, "getAbility").mockReturnValue(allAbilities[Abilities.PASTEL_VEIL]); + await game.startBattle([Species.MAGIKARP, Species.FEEBAS, Species.GALAR_PONYTA]); + const ponyta = game.scene.getParty()[2]; + const magikarp = game.scene.getPlayerField()[0]; + ponyta.abilityIndex = 1; expect(ponyta.hasAbility(Abilities.PASTEL_VEIL)).toBe(true); - game.doAttack(getMovePosition(game.scene, 0, Moves.SPLASH)); - game.doAttack(getMovePosition(game.scene, 1, Moves.SPLASH)); + game.move.select(Moves.SPLASH); + game.move.select(Moves.TOXIC_THREAD, 1, BattlerIndex.PLAYER); await game.phaseInterceptor.to(TurnEndPhase); - expect(game.scene.getPlayerField().some(p => p.status?.effect === StatusEffect.POISON)).toBe(true); - - const poisonedMon = game.scene.getPlayerField().find(p => p.status?.effect === StatusEffect.POISON); + expect(magikarp.status?.effect).toBe(StatusEffect.POISON); await game.phaseInterceptor.to(CommandPhase); - game.doAttack(getMovePosition(game.scene, (poisonedMon!.getBattlerIndex() as BattlerIndex.PLAYER | BattlerIndex.PLAYER_2), Moves.SPLASH)); + game.move.select(Moves.SPLASH); game.doSwitchPokemon(2); await game.phaseInterceptor.to(TurnEndPhase); - expect(game.scene.getPlayerField().every(p => p.status?.effect)).toBe(false); + expect(magikarp.status?.effect).toBeUndefined(); }); }); diff --git a/src/test/abilities/power_construct.test.ts b/src/test/abilities/power_construct.test.ts index e6a319d229f..ec37bc96c2f 100644 --- a/src/test/abilities/power_construct.test.ts +++ b/src/test/abilities/power_construct.test.ts @@ -1,11 +1,10 @@ -import { Status, StatusEffect } from "#app/data/status-effect.js"; -import { QuietFormChangePhase } from "#app/phases/quiet-form-change-phase.js"; -import { TurnEndPhase } from "#app/phases/turn-end-phase.js"; +import { Status, StatusEffect } from "#app/data/status-effect"; +import { QuietFormChangePhase } from "#app/phases/quiet-form-change-phase"; +import { TurnEndPhase } from "#app/phases/turn-end-phase"; import { Abilities } from "#enums/abilities"; import { Moves } from "#enums/moves"; import { Species } from "#enums/species"; import GameManager from "#test/utils/gameManager"; -import { getMovePosition } from "#test/utils/gameManagerUtils"; import { afterEach, beforeAll, beforeEach, describe, expect, test } from "vitest"; const TIMEOUT = 20 * 1000; @@ -53,7 +52,7 @@ describe("Abilities - POWER CONSTRUCT", () => { zygarde!.status = new Status(StatusEffect.FAINT); expect(zygarde!.isFainted()).toBe(true); - game.doAttack(getMovePosition(game.scene, 0, Moves.SPLASH)); + game.move.select(Moves.SPLASH); await game.doKillOpponents(); await game.phaseInterceptor.to(TurnEndPhase); game.doSelectModifier(); diff --git a/src/test/abilities/power_spot.test.ts b/src/test/abilities/power_spot.test.ts index 467fc677ac0..b83284c0bac 100644 --- a/src/test/abilities/power_spot.test.ts +++ b/src/test/abilities/power_spot.test.ts @@ -1,14 +1,13 @@ -import { allMoves } from "#app/data/move.js"; -import { Abilities } from "#app/enums/abilities.js"; -import GameManager from "#test/utils/gameManager"; -import { getMovePosition } from "#test/utils/gameManagerUtils"; +import { allMoves } from "#app/data/move"; +import { Abilities } from "#app/enums/abilities"; +import { MoveEffectPhase } from "#app/phases/move-effect-phase"; +import { TurnEndPhase } from "#app/phases/turn-end-phase"; import { Moves } from "#enums/moves"; import { Species } from "#enums/species"; +import GameManager from "#test/utils/gameManager"; +import { SPLASH_ONLY } from "#test/utils/testUtils"; import Phaser from "phaser"; import { afterEach, beforeAll, beforeEach, describe, expect, it, vi } from "vitest"; -import { SPLASH_ONLY } from "#test/utils/testUtils"; -import { MoveEffectPhase } from "#app/phases/move-effect-phase.js"; -import { TurnEndPhase } from "#app/phases/turn-end-phase.js"; describe("Abilities - Power Spot", () => { let phaserGame: Phaser.Game; @@ -42,8 +41,8 @@ describe("Abilities - Power Spot", () => { vi.spyOn(moveToCheck, "calculateBattlePower"); await game.startBattle([Species.REGIELEKI, Species.STONJOURNER]); - game.doAttack(getMovePosition(game.scene, 0, Moves.DAZZLING_GLEAM)); - game.doAttack(getMovePosition(game.scene, 1, Moves.SPLASH)); + game.move.select(Moves.DAZZLING_GLEAM); + game.move.select(Moves.SPLASH, 1); await game.phaseInterceptor.to(MoveEffectPhase); expect(moveToCheck.calculateBattlePower).toHaveReturnedWith(basePower * powerSpotMultiplier); @@ -56,8 +55,8 @@ describe("Abilities - Power Spot", () => { vi.spyOn(moveToCheck, "calculateBattlePower"); await game.startBattle([Species.REGIELEKI, Species.STONJOURNER]); - game.doAttack(getMovePosition(game.scene, 0, Moves.BREAKING_SWIPE)); - game.doAttack(getMovePosition(game.scene, 1, Moves.SPLASH)); + game.move.select(Moves.BREAKING_SWIPE); + game.move.select(Moves.SPLASH, 1); await game.phaseInterceptor.to(MoveEffectPhase); expect(moveToCheck.calculateBattlePower).toHaveReturnedWith(basePower * powerSpotMultiplier); @@ -70,8 +69,8 @@ describe("Abilities - Power Spot", () => { vi.spyOn(moveToCheck, "calculateBattlePower"); await game.startBattle([Species.STONJOURNER, Species.REGIELEKI]); - game.doAttack(getMovePosition(game.scene, 0, Moves.BREAKING_SWIPE)); - game.doAttack(getMovePosition(game.scene, 1, Moves.SPLASH)); + game.move.select(Moves.BREAKING_SWIPE); + game.move.select(Moves.SPLASH, 1); await game.phaseInterceptor.to(TurnEndPhase); expect(moveToCheck.calculateBattlePower).toHaveReturnedWith(basePower); diff --git a/src/test/abilities/protean.test.ts b/src/test/abilities/protean.test.ts index ed63613945a..6ecabbfade0 100644 --- a/src/test/abilities/protean.test.ts +++ b/src/test/abilities/protean.test.ts @@ -1,18 +1,17 @@ -import { allMoves } from "#app/data/move.js"; -import { Type } from "#app/data/type.js"; -import { Weather, WeatherType } from "#app/data/weather.js"; -import { PlayerPokemon } from "#app/field/pokemon.js"; +import { allMoves } from "#app/data/move"; +import { Type } from "#app/data/type"; +import { Weather, WeatherType } from "#app/data/weather"; +import { PlayerPokemon } from "#app/field/pokemon"; +import { TurnEndPhase } from "#app/phases/turn-end-phase"; import { Abilities } from "#enums/abilities"; import { BattlerTagType } from "#enums/battler-tag-type"; import { Biome } from "#enums/biome"; import { Moves } from "#enums/moves"; import { Species } from "#enums/species"; +import GameManager from "#test/utils/gameManager"; +import { SPLASH_ONLY } from "#test/utils/testUtils"; import Phaser from "phaser"; import { afterEach, beforeAll, beforeEach, describe, expect, test, vi } from "vitest"; -import GameManager from "#test/utils/gameManager"; -import { getMovePosition } from "#test/utils/gameManagerUtils"; -import { SPLASH_ONLY } from "#test/utils/testUtils"; -import { TurnEndPhase } from "#app/phases/turn-end-phase.js"; const TIMEOUT = 20 * 1000; @@ -49,7 +48,7 @@ describe("Abilities - Protean", () => { const leadPokemon = game.scene.getPlayerPokemon()!; expect(leadPokemon).not.toBe(undefined); - game.doAttack(getMovePosition(game.scene, 0, Moves.SPLASH)); + game.move.select(Moves.SPLASH); await game.phaseInterceptor.to(TurnEndPhase); testPokemonTypeMatchesDefaultMoveType(leadPokemon, Moves.SPLASH); @@ -67,17 +66,17 @@ describe("Abilities - Protean", () => { let leadPokemon = game.scene.getPlayerPokemon()!; expect(leadPokemon).not.toBe(undefined); - game.doAttack(getMovePosition(game.scene, 0, Moves.SPLASH)); + game.move.select(Moves.SPLASH); await game.phaseInterceptor.to(TurnEndPhase); testPokemonTypeMatchesDefaultMoveType(leadPokemon, Moves.SPLASH); - game.doAttack(getMovePosition(game.scene, 0, Moves.AGILITY)); + game.move.select(Moves.AGILITY); await game.phaseInterceptor.to(TurnEndPhase); expect(leadPokemon.summonData.abilitiesApplied.filter((a) => a === Abilities.PROTEAN)).toHaveLength(1); const leadPokemonType = Type[leadPokemon.getTypes()[0]]; - const moveType = Type[allMoves[Moves.AGILITY].defaultType]; + const moveType = Type[allMoves[Moves.AGILITY].type]; expect(leadPokemonType).not.toBe(moveType); await game.toNextTurn(); @@ -89,7 +88,7 @@ describe("Abilities - Protean", () => { leadPokemon = game.scene.getPlayerPokemon()!; expect(leadPokemon).not.toBe(undefined); - game.doAttack(getMovePosition(game.scene, 0, Moves.SPLASH)); + game.move.select(Moves.SPLASH); await game.phaseInterceptor.to(TurnEndPhase); testPokemonTypeMatchesDefaultMoveType(leadPokemon, Moves.SPLASH); @@ -108,7 +107,7 @@ describe("Abilities - Protean", () => { expect(leadPokemon).not.toBe(undefined); game.scene.arena.weather = new Weather(WeatherType.SUNNY); - game.doAttack(getMovePosition(game.scene, 0, Moves.WEATHER_BALL)); + game.move.select(Moves.WEATHER_BALL); await game.phaseInterceptor.to(TurnEndPhase); expect(leadPokemon.summonData.abilitiesApplied).toContain(Abilities.PROTEAN); @@ -131,7 +130,7 @@ describe("Abilities - Protean", () => { const leadPokemon = game.scene.getPlayerPokemon()!; expect(leadPokemon).not.toBe(undefined); - game.doAttack(getMovePosition(game.scene, 0, Moves.TACKLE)); + game.move.select(Moves.TACKLE); await game.phaseInterceptor.to(TurnEndPhase); expect(leadPokemon.summonData.abilitiesApplied).toContain(Abilities.PROTEAN); @@ -154,7 +153,7 @@ describe("Abilities - Protean", () => { expect(leadPokemon).not.toBe(undefined); game.scene.arena.biomeType = Biome.MOUNTAIN; - game.doAttack(getMovePosition(game.scene, 0, Moves.NATURE_POWER)); + game.move.select(Moves.NATURE_POWER); await game.phaseInterceptor.to(TurnEndPhase); testPokemonTypeMatchesDefaultMoveType(leadPokemon, Moves.AIR_SLASH); @@ -172,7 +171,7 @@ describe("Abilities - Protean", () => { const leadPokemon = game.scene.getPlayerPokemon()!; expect(leadPokemon).not.toBe(undefined); - game.doAttack(getMovePosition(game.scene, 0, Moves.DIG)); + game.move.select(Moves.DIG); await game.phaseInterceptor.to(TurnEndPhase); testPokemonTypeMatchesDefaultMoveType(leadPokemon, Moves.DIG); @@ -191,7 +190,7 @@ describe("Abilities - Protean", () => { const leadPokemon = game.scene.getPlayerPokemon()!; expect(leadPokemon).not.toBe(undefined); - game.doAttack(getMovePosition(game.scene, 0, Moves.TACKLE)); + game.move.select(Moves.TACKLE); await game.move.forceMiss(); await game.phaseInterceptor.to(TurnEndPhase); @@ -213,7 +212,7 @@ describe("Abilities - Protean", () => { const leadPokemon = game.scene.getPlayerPokemon()!; expect(leadPokemon).not.toBe(undefined); - game.doAttack(getMovePosition(game.scene, 0, Moves.TACKLE)); + game.move.select(Moves.TACKLE); await game.phaseInterceptor.to(TurnEndPhase); testPokemonTypeMatchesDefaultMoveType(leadPokemon, Moves.TACKLE); @@ -232,7 +231,7 @@ describe("Abilities - Protean", () => { const leadPokemon = game.scene.getPlayerPokemon()!; expect(leadPokemon).not.toBe(undefined); - game.doAttack(getMovePosition(game.scene, 0, Moves.TACKLE)); + game.move.select(Moves.TACKLE); await game.phaseInterceptor.to(TurnEndPhase); testPokemonTypeMatchesDefaultMoveType(leadPokemon, Moves.TACKLE); @@ -250,8 +249,8 @@ describe("Abilities - Protean", () => { const leadPokemon = game.scene.getPlayerPokemon()!; expect(leadPokemon).not.toBe(undefined); - leadPokemon.summonData.types = [allMoves[Moves.SPLASH].defaultType]; - game.doAttack(getMovePosition(game.scene, 0, Moves.SPLASH)); + leadPokemon.summonData.types = [allMoves[Moves.SPLASH].type]; + game.move.select(Moves.SPLASH); await game.phaseInterceptor.to(TurnEndPhase); expect(leadPokemon.summonData.abilitiesApplied).not.toContain(Abilities.PROTEAN); @@ -271,7 +270,7 @@ describe("Abilities - Protean", () => { vi.spyOn(leadPokemon, "isTerastallized").mockReturnValue(true); - game.doAttack(getMovePosition(game.scene, 0, Moves.SPLASH)); + game.move.select(Moves.SPLASH); await game.phaseInterceptor.to(TurnEndPhase); expect(leadPokemon.summonData.abilitiesApplied).not.toContain(Abilities.PROTEAN); @@ -289,7 +288,7 @@ describe("Abilities - Protean", () => { const leadPokemon = game.scene.getPlayerPokemon()!; expect(leadPokemon).not.toBe(undefined); - game.doAttack(getMovePosition(game.scene, 0, Moves.STRUGGLE)); + game.move.select(Moves.STRUGGLE); await game.phaseInterceptor.to(TurnEndPhase); expect(leadPokemon.summonData.abilitiesApplied).not.toContain(Abilities.PROTEAN); @@ -307,7 +306,7 @@ describe("Abilities - Protean", () => { const leadPokemon = game.scene.getPlayerPokemon()!; expect(leadPokemon).not.toBe(undefined); - game.doAttack(getMovePosition(game.scene, 0, Moves.BURN_UP)); + game.move.select(Moves.BURN_UP); await game.phaseInterceptor.to(TurnEndPhase); expect(leadPokemon.summonData.abilitiesApplied).not.toContain(Abilities.PROTEAN); @@ -326,7 +325,7 @@ describe("Abilities - Protean", () => { const leadPokemon = game.scene.getPlayerPokemon()!; expect(leadPokemon).not.toBe(undefined); - game.doAttack(getMovePosition(game.scene, 0, Moves.TRICK_OR_TREAT)); + game.move.select(Moves.TRICK_OR_TREAT); await game.phaseInterceptor.to(TurnEndPhase); testPokemonTypeMatchesDefaultMoveType(leadPokemon, Moves.TRICK_OR_TREAT); @@ -344,7 +343,7 @@ describe("Abilities - Protean", () => { const leadPokemon = game.scene.getPlayerPokemon()!; expect(leadPokemon).not.toBe(undefined); - game.doAttack(getMovePosition(game.scene, 0, Moves.CURSE)); + game.move.select(Moves.CURSE); await game.phaseInterceptor.to(TurnEndPhase); testPokemonTypeMatchesDefaultMoveType(leadPokemon, Moves.CURSE); @@ -358,6 +357,6 @@ function testPokemonTypeMatchesDefaultMoveType(pokemon: PlayerPokemon, move: Mov expect(pokemon.summonData.abilitiesApplied).toContain(Abilities.PROTEAN); expect(pokemon.getTypes()).toHaveLength(1); const pokemonType = Type[pokemon.getTypes()[0]], - moveType = Type[allMoves[move].defaultType]; + moveType = Type[allMoves[move].type]; expect(pokemonType).toBe(moveType); } diff --git a/src/test/abilities/quick_draw.test.ts b/src/test/abilities/quick_draw.test.ts index 6e3416b0724..00d344ed333 100644 --- a/src/test/abilities/quick_draw.test.ts +++ b/src/test/abilities/quick_draw.test.ts @@ -1,12 +1,11 @@ import { allAbilities, BypassSpeedChanceAbAttr } from "#app/data/ability"; -import GameManager from "#test/utils/gameManager"; -import { getMovePosition } from "#test/utils/gameManagerUtils"; +import { FaintPhase } from "#app/phases/faint-phase"; import { Abilities } from "#enums/abilities"; import { Moves } from "#enums/moves"; import { Species } from "#enums/species"; +import GameManager from "#test/utils/gameManager"; import Phaser from "phaser"; import { afterEach, beforeAll, beforeEach, describe, expect, test, vi } from "vitest"; -import { FaintPhase } from "#app/phases/faint-phase.js"; describe("Abilities - Quick Draw", () => { let phaserGame: Phaser.Game; @@ -47,7 +46,7 @@ describe("Abilities - Quick Draw", () => { pokemon.hp = 1; enemy.hp = 1; - game.doAttack(getMovePosition(game.scene, 0, Moves.TACKLE)); + game.move.select(Moves.TACKLE); await game.phaseInterceptor.to(FaintPhase, false); expect(pokemon.isFainted()).toBe(false); @@ -67,7 +66,7 @@ describe("Abilities - Quick Draw", () => { pokemon.hp = 1; enemy.hp = 1; - game.doAttack(getMovePosition(game.scene, 0, Moves.TAIL_WHIP)); + game.move.select(Moves.TAIL_WHIP); await game.phaseInterceptor.to(FaintPhase, false); expect(pokemon.isFainted()).toBe(true); @@ -87,7 +86,7 @@ describe("Abilities - Quick Draw", () => { pokemon.hp = 1; enemy.hp = 1; - game.doAttack(getMovePosition(game.scene, 0, Moves.TACKLE)); + game.move.select(Moves.TACKLE); await game.phaseInterceptor.to(FaintPhase, false); expect(pokemon.isFainted()).toBe(true); diff --git a/src/test/abilities/sand_spit.test.ts b/src/test/abilities/sand_spit.test.ts index 59d311adb80..041e20faf7f 100644 --- a/src/test/abilities/sand_spit.test.ts +++ b/src/test/abilities/sand_spit.test.ts @@ -1,11 +1,10 @@ -import GameManager from "#test/utils/gameManager"; +import { WeatherType } from "#app/enums/weather-type"; import { Abilities } from "#enums/abilities"; import { Moves } from "#enums/moves"; import { Species } from "#enums/species"; +import GameManager from "#test/utils/gameManager"; import Phaser from "phaser"; import { afterEach, beforeAll, beforeEach, describe, expect, it } from "vitest"; -import { getMovePosition } from "#test/utils/gameManagerUtils"; -import { WeatherType } from "#app/enums/weather-type.js"; describe("Abilities - Sand Spit", () => { @@ -35,21 +34,21 @@ describe("Abilities - Sand Spit", () => { game.override.moveset([Moves.SPLASH, Moves.COIL]); }); - it("should trigger when hit with damaging move", async() => { + it("should trigger when hit with damaging move", async () => { game.override.enemyMoveset(Array(4).fill(Moves.TACKLE)); await game.startBattle(); - game.doAttack(getMovePosition(game.scene, 0, Moves.SPLASH)); + game.move.select(Moves.SPLASH); await game.toNextTurn(); expect(game.scene.arena.weather?.weatherType).toBe(WeatherType.SANDSTORM); }, 20000); - it("should not trigger when targetted with status moves", async() => { + it("should not trigger when targetted with status moves", async () => { game.override.enemyMoveset(Array(4).fill(Moves.GROWL)); await game.startBattle(); - game.doAttack(getMovePosition(game.scene, 0, Moves.COIL)); + game.move.select(Moves.COIL); await game.toNextTurn(); expect(game.scene.arena.weather?.weatherType).not.toBe(WeatherType.SANDSTORM); diff --git a/src/test/abilities/sand_veil.test.ts b/src/test/abilities/sand_veil.test.ts index 010878db68d..2336e2b50de 100644 --- a/src/test/abilities/sand_veil.test.ts +++ b/src/test/abilities/sand_veil.test.ts @@ -1,16 +1,15 @@ -import { BattleStatMultiplierAbAttr, allAbilities } from "#app/data/ability.js"; -import { BattleStat } from "#app/data/battle-stat.js"; -import { WeatherType } from "#app/data/weather.js"; +import { BattleStatMultiplierAbAttr, allAbilities } from "#app/data/ability"; +import { BattleStat } from "#app/data/battle-stat"; +import { WeatherType } from "#app/data/weather"; +import { CommandPhase } from "#app/phases/command-phase"; +import { MoveEffectPhase } from "#app/phases/move-effect-phase"; +import { MoveEndPhase } from "#app/phases/move-end-phase"; import { Abilities } from "#enums/abilities"; import { Moves } from "#enums/moves"; import { Species } from "#enums/species"; +import GameManager from "#test/utils/gameManager"; import Phaser from "phaser"; import { afterEach, beforeAll, beforeEach, describe, expect, test, vi } from "vitest"; -import GameManager from "#test/utils/gameManager"; -import { getMovePosition } from "#test/utils/gameManagerUtils"; -import { CommandPhase } from "#app/phases/command-phase.js"; -import { MoveEffectPhase } from "#app/phases/move-effect-phase.js"; -import { MoveEndPhase } from "#app/phases/move-end-phase.js"; const TIMEOUT = 20 * 1000; @@ -52,7 +51,7 @@ describe("Abilities - Sand Veil", () => { const sandVeilAttr = allAbilities[Abilities.SAND_VEIL].getAttrs(BattleStatMultiplierAbAttr)[0]; vi.spyOn(sandVeilAttr, "applyBattleStat").mockImplementation( - (pokemon, passive, battleStat, statValue, args) => { + (pokemon, passive, simulated, battleStat, statValue, args) => { if (battleStat === BattleStat.EVA && game.scene.arena.weather?.weatherType === WeatherType.SANDSTORM) { statValue.value *= -1; // will make all attacks miss return true; @@ -64,11 +63,11 @@ describe("Abilities - Sand Veil", () => { expect(leadPokemon[0].hasAbility(Abilities.SAND_VEIL)).toBe(true); expect(leadPokemon[1].hasAbility(Abilities.SAND_VEIL)).toBe(false); - game.doAttack(getMovePosition(game.scene, 0, Moves.SPLASH)); + game.move.select(Moves.SPLASH); await game.phaseInterceptor.to(CommandPhase); - game.doAttack(getMovePosition(game.scene, 1, Moves.SPLASH)); + game.move.select(Moves.SPLASH, 1); await game.phaseInterceptor.to(MoveEffectPhase, false); diff --git a/src/test/abilities/sap_sipper.test.ts b/src/test/abilities/sap_sipper.test.ts index dfb4ab7e976..f9c20e85eab 100644 --- a/src/test/abilities/sap_sipper.test.ts +++ b/src/test/abilities/sap_sipper.test.ts @@ -1,15 +1,14 @@ -import { BattleStat } from "#app/data/battle-stat.js"; -import { TerrainType } from "#app/data/terrain.js"; -import GameManager from "#test/utils/gameManager"; -import { getMovePosition } from "#test/utils/gameManagerUtils"; +import { BattleStat } from "#app/data/battle-stat"; +import { TerrainType } from "#app/data/terrain"; +import { MoveEndPhase } from "#app/phases/move-end-phase"; +import { TurnEndPhase } from "#app/phases/turn-end-phase"; import { Abilities } from "#enums/abilities"; import { BattlerTagType } from "#enums/battler-tag-type"; import { Moves } from "#enums/moves"; import { Species } from "#enums/species"; +import GameManager from "#test/utils/gameManager"; import Phaser from "phaser"; import { afterEach, beforeAll, beforeEach, describe, expect, it } from "vitest"; -import { MoveEndPhase } from "#app/phases/move-end-phase.js"; -import { TurnEndPhase } from "#app/phases/turn-end-phase.js"; // See also: TypeImmunityAbAttr describe("Abilities - Sap Sipper", () => { @@ -32,7 +31,7 @@ describe("Abilities - Sap Sipper", () => { game.override.disableCrits(); }); - it("raise attack 1 level and block effects when activated against a grass attack", async() => { + it("raise attack 1 level and block effects when activated against a grass attack", async () => { const moveToUse = Moves.LEAFAGE; const enemyAbility = Abilities.SAP_SIPPER; @@ -45,7 +44,7 @@ describe("Abilities - Sap Sipper", () => { const startingOppHp = game.scene.currentBattle.enemyParty[0].hp; - game.doAttack(getMovePosition(game.scene, 0, moveToUse)); + game.move.select(moveToUse); await game.phaseInterceptor.to(TurnEndPhase); @@ -53,7 +52,7 @@ describe("Abilities - Sap Sipper", () => { expect(game.scene.getEnemyParty()[0].summonData.battleStats[BattleStat.ATK]).toBe(1); }); - it("raise attack 1 level and block effects when activated against a grass status move", async() => { + it("raise attack 1 level and block effects when activated against a grass status move", async () => { const moveToUse = Moves.SPORE; const enemyAbility = Abilities.SAP_SIPPER; @@ -64,7 +63,7 @@ describe("Abilities - Sap Sipper", () => { await game.startBattle(); - game.doAttack(getMovePosition(game.scene, 0, moveToUse)); + game.move.select(moveToUse); await game.phaseInterceptor.to(TurnEndPhase); @@ -72,7 +71,7 @@ describe("Abilities - Sap Sipper", () => { expect(game.scene.getEnemyParty()[0].summonData.battleStats[BattleStat.ATK]).toBe(1); }); - it("do not activate against status moves that target the field", async() => { + it("do not activate against status moves that target the field", async () => { const moveToUse = Moves.GRASSY_TERRAIN; const enemyAbility = Abilities.SAP_SIPPER; @@ -83,7 +82,7 @@ describe("Abilities - Sap Sipper", () => { await game.startBattle(); - game.doAttack(getMovePosition(game.scene, 0, moveToUse)); + game.move.select(moveToUse); await game.phaseInterceptor.to(TurnEndPhase); @@ -92,7 +91,7 @@ describe("Abilities - Sap Sipper", () => { expect(game.scene.getEnemyParty()[0].summonData.battleStats[BattleStat.ATK]).toBe(0); }); - it("activate once against multi-hit grass attacks", async() => { + it("activate once against multi-hit grass attacks", async () => { const moveToUse = Moves.BULLET_SEED; const enemyAbility = Abilities.SAP_SIPPER; @@ -105,7 +104,7 @@ describe("Abilities - Sap Sipper", () => { const startingOppHp = game.scene.currentBattle.enemyParty[0].hp; - game.doAttack(getMovePosition(game.scene, 0, moveToUse)); + game.move.select(moveToUse); await game.phaseInterceptor.to(TurnEndPhase); @@ -113,7 +112,7 @@ describe("Abilities - Sap Sipper", () => { expect(game.scene.getEnemyParty()[0].summonData.battleStats[BattleStat.ATK]).toBe(1); }); - it("do not activate against status moves that target the user", async() => { + it("do not activate against status moves that target the user", async () => { const moveToUse = Moves.SPIKY_SHIELD; const ability = Abilities.SAP_SIPPER; @@ -125,7 +124,7 @@ describe("Abilities - Sap Sipper", () => { await game.startBattle(); - game.doAttack(getMovePosition(game.scene, 0, moveToUse)); + game.move.select(moveToUse); await game.phaseInterceptor.to(MoveEndPhase); @@ -139,7 +138,7 @@ describe("Abilities - Sap Sipper", () => { // TODO Add METRONOME outcome override // To run this testcase, manually modify the METRONOME move to always give SAP_SIPPER, then uncomment - it.todo("activate once against multi-hit grass attacks (metronome)", async() => { + it.todo("activate once against multi-hit grass attacks (metronome)", async () => { const moveToUse = Moves.METRONOME; const enemyAbility = Abilities.SAP_SIPPER; @@ -152,7 +151,7 @@ describe("Abilities - Sap Sipper", () => { const startingOppHp = game.scene.currentBattle.enemyParty[0].hp; - game.doAttack(getMovePosition(game.scene, 0, moveToUse)); + game.move.select(moveToUse); await game.phaseInterceptor.to(TurnEndPhase); diff --git a/src/test/abilities/schooling.test.ts b/src/test/abilities/schooling.test.ts index 62a7e98bc76..ad9663bf8e5 100644 --- a/src/test/abilities/schooling.test.ts +++ b/src/test/abilities/schooling.test.ts @@ -1,11 +1,10 @@ -import { Status, StatusEffect } from "#app/data/status-effect.js"; -import { QuietFormChangePhase } from "#app/phases/quiet-form-change-phase.js"; -import { TurnEndPhase } from "#app/phases/turn-end-phase.js"; +import { Status, StatusEffect } from "#app/data/status-effect"; +import { QuietFormChangePhase } from "#app/phases/quiet-form-change-phase"; +import { TurnEndPhase } from "#app/phases/turn-end-phase"; import { Abilities } from "#enums/abilities"; import { Moves } from "#enums/moves"; import { Species } from "#enums/species"; import GameManager from "#test/utils/gameManager"; -import { getMovePosition } from "#test/utils/gameManagerUtils"; import { afterEach, beforeAll, beforeEach, describe, expect, test } from "vitest"; const TIMEOUT = 20 * 1000; @@ -53,7 +52,7 @@ describe("Abilities - SCHOOLING", () => { wishiwashi.status = new Status(StatusEffect.FAINT); expect(wishiwashi.isFainted()).toBe(true); - game.doAttack(getMovePosition(game.scene, 0, Moves.SPLASH)); + game.move.select(Moves.SPLASH); await game.doKillOpponents(); await game.phaseInterceptor.to(TurnEndPhase); game.doSelectModifier(); diff --git a/src/test/abilities/screen_cleaner.test.ts b/src/test/abilities/screen_cleaner.test.ts index 403efcce1c0..3c0d12a06ea 100644 --- a/src/test/abilities/screen_cleaner.test.ts +++ b/src/test/abilities/screen_cleaner.test.ts @@ -1,13 +1,12 @@ -import { ArenaTagType } from "#app/enums/arena-tag-type.js"; -import GameManager from "#test/utils/gameManager"; -import { getMovePosition } from "#test/utils/gameManagerUtils"; +import { ArenaTagType } from "#app/enums/arena-tag-type"; +import { PostSummonPhase } from "#app/phases/post-summon-phase"; +import { TurnEndPhase } from "#app/phases/turn-end-phase"; import { Abilities } from "#enums/abilities"; import { Moves } from "#enums/moves"; import { Species } from "#enums/species"; +import GameManager from "#test/utils/gameManager"; import Phaser from "phaser"; import { afterEach, beforeAll, beforeEach, describe, expect, it } from "vitest"; -import { PostSummonPhase } from "#app/phases/post-summon-phase.js"; -import { TurnEndPhase } from "#app/phases/turn-end-phase.js"; describe("Abilities - Screen Cleaner", () => { let phaserGame: Phaser.Game; @@ -36,7 +35,7 @@ describe("Abilities - Screen Cleaner", () => { await game.startBattle([Species.MAGIKARP, Species.MAGIKARP]); - game.doAttack(getMovePosition(game.scene, 0, Moves.HAIL)); + game.move.select(Moves.HAIL); await game.phaseInterceptor.to(TurnEndPhase); expect(game.scene.arena.getTag(ArenaTagType.AURORA_VEIL)).toBeDefined(); @@ -53,7 +52,7 @@ describe("Abilities - Screen Cleaner", () => { await game.startBattle([Species.MAGIKARP, Species.MAGIKARP]); - game.doAttack(getMovePosition(game.scene, 0, Moves.SPLASH)); + game.move.select(Moves.SPLASH); await game.phaseInterceptor.to(TurnEndPhase); expect(game.scene.arena.getTag(ArenaTagType.LIGHT_SCREEN)).toBeDefined(); @@ -70,7 +69,7 @@ describe("Abilities - Screen Cleaner", () => { await game.startBattle([Species.MAGIKARP, Species.MAGIKARP]); - game.doAttack(getMovePosition(game.scene, 0, Moves.SPLASH)); + game.move.select(Moves.SPLASH); await game.phaseInterceptor.to(TurnEndPhase); expect(game.scene.arena.getTag(ArenaTagType.REFLECT)).toBeDefined(); diff --git a/src/test/abilities/serene_grace.test.ts b/src/test/abilities/serene_grace.test.ts index 5e4841f005a..7316b2ea920 100644 --- a/src/test/abilities/serene_grace.test.ts +++ b/src/test/abilities/serene_grace.test.ts @@ -1,18 +1,14 @@ +import { BattlerIndex } from "#app/battle"; import { applyAbAttrs, MoveEffectChanceMultiplierAbAttr } from "#app/data/ability"; import { Stat } from "#app/data/pokemon-stat"; -import GameManager from "#test/utils/gameManager"; -import { getMovePosition } from "#test/utils/gameManagerUtils"; -import { Command } from "#app/ui/command-ui-handler"; -import { Mode } from "#app/ui/ui"; +import { MoveEffectPhase } from "#app/phases/move-effect-phase"; import * as Utils from "#app/utils"; import { Abilities } from "#enums/abilities"; import { Moves } from "#enums/moves"; import { Species } from "#enums/species"; +import GameManager from "#test/utils/gameManager"; import Phaser from "phaser"; import { afterEach, beforeAll, beforeEach, describe, expect, it } from "vitest"; -import { BattlerIndex } from "#app/battle.js"; -import { CommandPhase } from "#app/phases/command-phase.js"; -import { MoveEffectPhase } from "#app/phases/move-effect-phase.js"; describe("Abilities - Serene Grace", () => { @@ -36,10 +32,10 @@ describe("Abilities - Serene Grace", () => { game.override.enemySpecies(Species.ONIX); game.override.startingLevel(100); game.override.moveset(movesToUse); - game.override.enemyMoveset([Moves.TACKLE,Moves.TACKLE,Moves.TACKLE,Moves.TACKLE]); + game.override.enemyMoveset([Moves.TACKLE, Moves.TACKLE, Moves.TACKLE, Moves.TACKLE]); }); - it("Move chance without Serene Grace", async() => { + it("Move chance without Serene Grace", async () => { const moveToUse = Moves.AIR_SLASH; await game.startBattle([ Species.PIDGEOT @@ -49,13 +45,7 @@ describe("Abilities - Serene Grace", () => { game.scene.getEnemyParty()[0].stats[Stat.SPDEF] = 10000; expect(game.scene.getParty()[0].formIndex).toBe(0); - game.onNextPrompt("CommandPhase", Mode.COMMAND, () => { - game.scene.ui.setMode(Mode.FIGHT, (game.scene.getCurrentPhase() as CommandPhase).getFieldIndex()); - }); - game.onNextPrompt("CommandPhase", Mode.FIGHT, () => { - const movePosition = getMovePosition(game.scene, 0, moveToUse); - (game.scene.getCurrentPhase() as CommandPhase).handleCommand(Command.FIGHT, movePosition, false); - }); + game.move.select(moveToUse); await game.setTurnOrder([BattlerIndex.PLAYER, BattlerIndex.ENEMY]); await game.phaseInterceptor.to(MoveEffectPhase, false); @@ -67,12 +57,12 @@ describe("Abilities - Serene Grace", () => { const chance = new Utils.IntegerHolder(move.chance); console.log(move.chance + " Their ability is " + phase.getUserPokemon()!.getAbility().name); - applyAbAttrs(MoveEffectChanceMultiplierAbAttr, phase.getUserPokemon()!, null, chance, move, phase.getTarget(), false); + applyAbAttrs(MoveEffectChanceMultiplierAbAttr, phase.getUserPokemon()!, null, false, chance, move, phase.getTarget(), false); expect(chance.value).toBe(30); }, 20000); - it("Move chance with Serene Grace", async() => { + it("Move chance with Serene Grace", async () => { const moveToUse = Moves.AIR_SLASH; game.override.ability(Abilities.SERENE_GRACE); await game.startBattle([ @@ -82,13 +72,7 @@ describe("Abilities - Serene Grace", () => { game.scene.getEnemyParty()[0].stats[Stat.SPDEF] = 10000; expect(game.scene.getParty()[0].formIndex).toBe(0); - game.onNextPrompt("CommandPhase", Mode.COMMAND, () => { - game.scene.ui.setMode(Mode.FIGHT, (game.scene.getCurrentPhase() as CommandPhase).getFieldIndex()); - }); - game.onNextPrompt("CommandPhase", Mode.FIGHT, () => { - const movePosition = getMovePosition(game.scene, 0, moveToUse); - (game.scene.getCurrentPhase() as CommandPhase).handleCommand(Command.FIGHT, movePosition, false); - }); + game.move.select(moveToUse); await game.setTurnOrder([BattlerIndex.PLAYER, BattlerIndex.ENEMY]); await game.phaseInterceptor.to(MoveEffectPhase, false); @@ -99,7 +83,7 @@ describe("Abilities - Serene Grace", () => { expect(move.id).toBe(Moves.AIR_SLASH); const chance = new Utils.IntegerHolder(move.chance); - applyAbAttrs(MoveEffectChanceMultiplierAbAttr, phase.getUserPokemon()!, null, chance, move, phase.getTarget(), false); + applyAbAttrs(MoveEffectChanceMultiplierAbAttr, phase.getUserPokemon()!, null, false, chance, move, phase.getTarget(), false); expect(chance.value).toBe(60); }, 20000); diff --git a/src/test/abilities/sheer_force.test.ts b/src/test/abilities/sheer_force.test.ts index 33b34124cc4..f73b749dac2 100644 --- a/src/test/abilities/sheer_force.test.ts +++ b/src/test/abilities/sheer_force.test.ts @@ -1,18 +1,14 @@ +import { BattlerIndex } from "#app/battle"; import { applyAbAttrs, applyPostDefendAbAttrs, applyPreAttackAbAttrs, MoveEffectChanceMultiplierAbAttr, MovePowerBoostAbAttr, PostDefendTypeChangeAbAttr } from "#app/data/ability"; import { Stat } from "#app/data/pokemon-stat"; -import { CommandPhase } from "#app/phases/command-phase.js"; -import { MoveEffectPhase } from "#app/phases/move-effect-phase.js"; -import GameManager from "#test/utils/gameManager"; -import { getMovePosition } from "#test/utils/gameManagerUtils"; -import { Command } from "#app/ui/command-ui-handler"; -import { Mode } from "#app/ui/ui"; +import { MoveEffectPhase } from "#app/phases/move-effect-phase"; import * as Utils from "#app/utils"; import { Abilities } from "#enums/abilities"; import { Moves } from "#enums/moves"; import { Species } from "#enums/species"; +import GameManager from "#test/utils/gameManager"; import Phaser from "phaser"; import { afterEach, beforeAll, beforeEach, describe, expect, it } from "vitest"; -import { BattlerIndex } from "#app/battle.js"; describe("Abilities - Sheer Force", () => { @@ -36,10 +32,10 @@ describe("Abilities - Sheer Force", () => { game.override.enemySpecies(Species.ONIX); game.override.startingLevel(100); game.override.moveset(movesToUse); - game.override.enemyMoveset([Moves.TACKLE,Moves.TACKLE,Moves.TACKLE,Moves.TACKLE]); + game.override.enemyMoveset([Moves.TACKLE, Moves.TACKLE, Moves.TACKLE, Moves.TACKLE]); }); - it("Sheer Force", async() => { + it("Sheer Force", async () => { const moveToUse = Moves.AIR_SLASH; game.override.ability(Abilities.SHEER_FORCE); await game.startBattle([ @@ -50,13 +46,7 @@ describe("Abilities - Sheer Force", () => { game.scene.getEnemyParty()[0].stats[Stat.SPDEF] = 10000; expect(game.scene.getParty()[0].formIndex).toBe(0); - game.onNextPrompt("CommandPhase", Mode.COMMAND, () => { - game.scene.ui.setMode(Mode.FIGHT, (game.scene.getCurrentPhase() as CommandPhase).getFieldIndex()); - }); - game.onNextPrompt("CommandPhase", Mode.FIGHT, () => { - const movePosition = getMovePosition(game.scene, 0, moveToUse); - (game.scene.getCurrentPhase() as CommandPhase).handleCommand(Command.FIGHT, movePosition, false); - }); + game.move.select(moveToUse); await game.setTurnOrder([BattlerIndex.PLAYER, BattlerIndex.ENEMY]); await game.phaseInterceptor.to(MoveEffectPhase, false); @@ -69,16 +59,16 @@ describe("Abilities - Sheer Force", () => { const power = new Utils.IntegerHolder(move.power); const chance = new Utils.IntegerHolder(move.chance); - applyAbAttrs(MoveEffectChanceMultiplierAbAttr, phase.getUserPokemon()!, null, chance, move, phase.getTarget(), false); - applyPreAttackAbAttrs(MovePowerBoostAbAttr, phase.getUserPokemon()!, phase.getTarget()!, move, power); + applyAbAttrs(MoveEffectChanceMultiplierAbAttr, phase.getUserPokemon()!, null, false, chance, move, phase.getTarget(), false); + applyPreAttackAbAttrs(MovePowerBoostAbAttr, phase.getUserPokemon()!, phase.getTarget()!, move, false, power); expect(chance.value).toBe(0); - expect(power.value).toBe(move.power * 5461/4096); + expect(power.value).toBe(move.power * 5461 / 4096); }, 20000); - it("Sheer Force with exceptions including binding moves", async() => { + it("Sheer Force with exceptions including binding moves", async () => { const moveToUse = Moves.BIND; game.override.ability(Abilities.SHEER_FORCE); await game.startBattle([ @@ -89,13 +79,7 @@ describe("Abilities - Sheer Force", () => { game.scene.getEnemyParty()[0].stats[Stat.DEF] = 10000; expect(game.scene.getParty()[0].formIndex).toBe(0); - game.onNextPrompt("CommandPhase", Mode.COMMAND, () => { - game.scene.ui.setMode(Mode.FIGHT, (game.scene.getCurrentPhase() as CommandPhase).getFieldIndex()); - }); - game.onNextPrompt("CommandPhase", Mode.FIGHT, () => { - const movePosition = getMovePosition(game.scene, 0, moveToUse); - (game.scene.getCurrentPhase() as CommandPhase).handleCommand(Command.FIGHT, movePosition, false); - }); + game.move.select(moveToUse); await game.setTurnOrder([BattlerIndex.PLAYER, BattlerIndex.ENEMY]); await game.phaseInterceptor.to(MoveEffectPhase, false); @@ -108,8 +92,8 @@ describe("Abilities - Sheer Force", () => { const power = new Utils.IntegerHolder(move.power); const chance = new Utils.IntegerHolder(move.chance); - applyAbAttrs(MoveEffectChanceMultiplierAbAttr, phase.getUserPokemon()!, null, chance, move, phase.getTarget(), false); - applyPreAttackAbAttrs(MovePowerBoostAbAttr, phase.getUserPokemon()!, phase.getTarget()!, move, power); + applyAbAttrs(MoveEffectChanceMultiplierAbAttr, phase.getUserPokemon()!, null, false, chance, move, phase.getTarget(), false); + applyPreAttackAbAttrs(MovePowerBoostAbAttr, phase.getUserPokemon()!, phase.getTarget()!, move, false, power); expect(chance.value).toBe(-1); expect(power.value).toBe(move.power); @@ -117,7 +101,7 @@ describe("Abilities - Sheer Force", () => { }, 20000); - it("Sheer Force with moves with no secondary effect", async() => { + it("Sheer Force with moves with no secondary effect", async () => { const moveToUse = Moves.TACKLE; game.override.ability(Abilities.SHEER_FORCE); await game.startBattle([ @@ -128,13 +112,7 @@ describe("Abilities - Sheer Force", () => { game.scene.getEnemyParty()[0].stats[Stat.DEF] = 10000; expect(game.scene.getParty()[0].formIndex).toBe(0); - game.onNextPrompt("CommandPhase", Mode.COMMAND, () => { - game.scene.ui.setMode(Mode.FIGHT, (game.scene.getCurrentPhase() as CommandPhase).getFieldIndex()); - }); - game.onNextPrompt("CommandPhase", Mode.FIGHT, () => { - const movePosition = getMovePosition(game.scene, 0, moveToUse); - (game.scene.getCurrentPhase() as CommandPhase).handleCommand(Command.FIGHT, movePosition, false); - }); + game.move.select(moveToUse); await game.setTurnOrder([BattlerIndex.PLAYER, BattlerIndex.ENEMY]); await game.phaseInterceptor.to(MoveEffectPhase, false); @@ -147,8 +125,8 @@ describe("Abilities - Sheer Force", () => { const power = new Utils.IntegerHolder(move.power); const chance = new Utils.IntegerHolder(move.chance); - applyAbAttrs(MoveEffectChanceMultiplierAbAttr, phase.getUserPokemon()!, null, chance, move, phase.getTarget(), false); - applyPreAttackAbAttrs(MovePowerBoostAbAttr, phase.getUserPokemon()!, phase.getTarget()!, move, power); + applyAbAttrs(MoveEffectChanceMultiplierAbAttr, phase.getUserPokemon()!, null, false, chance, move, phase.getTarget(), false); + applyPreAttackAbAttrs(MovePowerBoostAbAttr, phase.getUserPokemon()!, phase.getTarget()!, move, false, power); expect(chance.value).toBe(-1); expect(power.value).toBe(move.power); @@ -156,10 +134,10 @@ describe("Abilities - Sheer Force", () => { }, 20000); - it("Sheer Force Disabling Specific Abilities", async() => { + it("Sheer Force Disabling Specific Abilities", async () => { const moveToUse = Moves.CRUSH_CLAW; game.override.enemyAbility(Abilities.COLOR_CHANGE); - game.override.startingHeldItems([{name: "KINGS_ROCK", count: 1}]); + game.override.startingHeldItems([{ name: "KINGS_ROCK", count: 1 }]); game.override.ability(Abilities.SHEER_FORCE); await game.startBattle([ Species.PIDGEOT @@ -169,13 +147,7 @@ describe("Abilities - Sheer Force", () => { game.scene.getEnemyParty()[0].stats[Stat.DEF] = 10000; expect(game.scene.getParty()[0].formIndex).toBe(0); - game.onNextPrompt("CommandPhase", Mode.COMMAND, () => { - game.scene.ui.setMode(Mode.FIGHT, (game.scene.getCurrentPhase() as CommandPhase).getFieldIndex()); - }); - game.onNextPrompt("CommandPhase", Mode.FIGHT, () => { - const movePosition = getMovePosition(game.scene, 0, moveToUse); - (game.scene.getCurrentPhase() as CommandPhase).handleCommand(Command.FIGHT, movePosition, false); - }); + game.move.select(moveToUse); await game.setTurnOrder([BattlerIndex.PLAYER, BattlerIndex.ENEMY]); await game.phaseInterceptor.to(MoveEffectPhase, false); @@ -191,12 +163,12 @@ describe("Abilities - Sheer Force", () => { const target = phase.getTarget()!; const opponentType = target.getTypes()[0]; - applyAbAttrs(MoveEffectChanceMultiplierAbAttr, user, null, chance, move, target, false); - applyPreAttackAbAttrs(MovePowerBoostAbAttr, user, target, move, power); + applyAbAttrs(MoveEffectChanceMultiplierAbAttr, user, null, false, chance, move, target, false); + applyPreAttackAbAttrs(MovePowerBoostAbAttr, user, target, move, false, power); applyPostDefendAbAttrs(PostDefendTypeChangeAbAttr, target, user, move, target.apply(user, move)); expect(chance.value).toBe(0); - expect(power.value).toBe(move.power * 5461/4096); + expect(power.value).toBe(move.power * 5461 / 4096); expect(target.getTypes().length).toBe(2); expect(target.getTypes()[0]).toBe(opponentType); diff --git a/src/test/abilities/shield_dust.test.ts b/src/test/abilities/shield_dust.test.ts index b40689a180a..14770c49427 100644 --- a/src/test/abilities/shield_dust.test.ts +++ b/src/test/abilities/shield_dust.test.ts @@ -1,18 +1,14 @@ +import { BattlerIndex } from "#app/battle"; import { applyAbAttrs, applyPreDefendAbAttrs, IgnoreMoveEffectsAbAttr, MoveEffectChanceMultiplierAbAttr } from "#app/data/ability"; import { Stat } from "#app/data/pokemon-stat"; -import { CommandPhase } from "#app/phases/command-phase.js"; -import { MoveEffectPhase } from "#app/phases/move-effect-phase.js"; -import GameManager from "#test/utils/gameManager"; -import { getMovePosition } from "#test/utils/gameManagerUtils"; -import { Command } from "#app/ui/command-ui-handler"; -import { Mode } from "#app/ui/ui"; +import { MoveEffectPhase } from "#app/phases/move-effect-phase"; import * as Utils from "#app/utils"; import { Abilities } from "#enums/abilities"; import { Moves } from "#enums/moves"; import { Species } from "#enums/species"; +import GameManager from "#test/utils/gameManager"; import Phaser from "phaser"; import { afterEach, beforeAll, beforeEach, describe, expect, it } from "vitest"; -import { BattlerIndex } from "#app/battle.js"; describe("Abilities - Shield Dust", () => { @@ -37,10 +33,10 @@ describe("Abilities - Shield Dust", () => { game.override.enemyAbility(Abilities.SHIELD_DUST); game.override.startingLevel(100); game.override.moveset(movesToUse); - game.override.enemyMoveset([Moves.TACKLE,Moves.TACKLE,Moves.TACKLE,Moves.TACKLE]); + game.override.enemyMoveset([Moves.TACKLE, Moves.TACKLE, Moves.TACKLE, Moves.TACKLE]); }); - it("Shield Dust", async() => { + it("Shield Dust", async () => { const moveToUse = Moves.AIR_SLASH; await game.startBattle([ Species.PIDGEOT @@ -50,13 +46,7 @@ describe("Abilities - Shield Dust", () => { game.scene.getEnemyParty()[0].stats[Stat.SPDEF] = 10000; expect(game.scene.getParty()[0].formIndex).toBe(0); - game.onNextPrompt("CommandPhase", Mode.COMMAND, () => { - game.scene.ui.setMode(Mode.FIGHT, (game.scene.getCurrentPhase() as CommandPhase).getFieldIndex()); - }); - game.onNextPrompt("CommandPhase", Mode.FIGHT, () => { - const movePosition = getMovePosition(game.scene, 0, moveToUse); - (game.scene.getCurrentPhase() as CommandPhase).handleCommand(Command.FIGHT, movePosition, false); - }); + game.move.select(moveToUse); await game.setTurnOrder([BattlerIndex.PLAYER, BattlerIndex.ENEMY]); await game.phaseInterceptor.to(MoveEffectPhase, false); @@ -67,8 +57,8 @@ describe("Abilities - Shield Dust", () => { expect(move.id).toBe(Moves.AIR_SLASH); const chance = new Utils.IntegerHolder(move.chance); - applyAbAttrs(MoveEffectChanceMultiplierAbAttr, phase.getUserPokemon()!, null, chance, move, phase.getTarget(), false); - applyPreDefendAbAttrs(IgnoreMoveEffectsAbAttr, phase.getTarget()!, phase.getUserPokemon()!, null!, null!, chance); + applyAbAttrs(MoveEffectChanceMultiplierAbAttr, phase.getUserPokemon()!, null, false, chance, move, phase.getTarget(), false); + applyPreDefendAbAttrs(IgnoreMoveEffectsAbAttr, phase.getTarget()!, phase.getUserPokemon()!, null, null, false, chance); expect(chance.value).toBe(0); }, 20000); diff --git a/src/test/abilities/shields_down.test.ts b/src/test/abilities/shields_down.test.ts index e07c12ebb63..9bfec23ddf1 100644 --- a/src/test/abilities/shields_down.test.ts +++ b/src/test/abilities/shields_down.test.ts @@ -1,11 +1,10 @@ -import { Status, StatusEffect } from "#app/data/status-effect.js"; -import { QuietFormChangePhase } from "#app/phases/quiet-form-change-phase.js"; -import { TurnEndPhase } from "#app/phases/turn-end-phase.js"; +import { Status, StatusEffect } from "#app/data/status-effect"; +import { QuietFormChangePhase } from "#app/phases/quiet-form-change-phase"; +import { TurnEndPhase } from "#app/phases/turn-end-phase"; import { Abilities } from "#enums/abilities"; import { Moves } from "#enums/moves"; import { Species } from "#enums/species"; import GameManager from "#test/utils/gameManager"; -import { getMovePosition } from "#test/utils/gameManagerUtils"; import { afterEach, beforeAll, beforeEach, describe, expect, test } from "vitest"; const TIMEOUT = 20 * 1000; @@ -53,7 +52,7 @@ describe("Abilities - SHIELDS DOWN", () => { minior.status = new Status(StatusEffect.FAINT); expect(minior.isFainted()).toBe(true); - game.doAttack(getMovePosition(game.scene, 0, Moves.SPLASH)); + game.move.select(Moves.SPLASH); await game.doKillOpponents(); await game.phaseInterceptor.to(TurnEndPhase); game.doSelectModifier(); diff --git a/src/test/abilities/stall.test.ts b/src/test/abilities/stall.test.ts index 5410d2e953e..d8dbe9d0e06 100644 --- a/src/test/abilities/stall.test.ts +++ b/src/test/abilities/stall.test.ts @@ -1,11 +1,10 @@ -import GameManager from "#test/utils/gameManager"; -import { getMovePosition } from "#test/utils/gameManagerUtils"; +import { MovePhase } from "#app/phases/move-phase"; import { Abilities } from "#enums/abilities"; import { Moves } from "#enums/moves"; import { Species } from "#enums/species"; +import GameManager from "#test/utils/gameManager"; import Phaser from "phaser"; import { afterEach, beforeAll, beforeEach, describe, expect, it } from "vitest"; -import { MovePhase } from "#app/phases/move-phase.js"; describe("Abilities - Stall", () => { @@ -38,13 +37,13 @@ describe("Abilities - Stall", () => { * https://bulbapedia.bulbagarden.net/wiki/Priority **/ - it("Pokemon with Stall should move last in its priority bracket regardless of speed", async() => { - await game.startBattle([ Species.SHUCKLE ]); + it("Pokemon with Stall should move last in its priority bracket regardless of speed", async () => { + await game.startBattle([Species.SHUCKLE]); const leadIndex = game.scene.getPlayerPokemon()!.getBattlerIndex(); const enemyIndex = game.scene.getEnemyPokemon()!.getBattlerIndex(); - game.doAttack(getMovePosition(game.scene, 0, Moves.QUICK_ATTACK)); + game.move.select(Moves.QUICK_ATTACK); await game.phaseInterceptor.to(MovePhase, false); // The player Pokemon (without Stall) goes first despite having lower speed than the opponent. @@ -56,13 +55,13 @@ describe("Abilities - Stall", () => { expect((game.scene.getCurrentPhase() as MovePhase).pokemon.getBattlerIndex()).toBe(enemyIndex); }, 20000); - it("Pokemon with Stall will go first if a move that is in a higher priority bracket than the opponent's move is used", async() => { - await game.startBattle([ Species.SHUCKLE ]); + it("Pokemon with Stall will go first if a move that is in a higher priority bracket than the opponent's move is used", async () => { + await game.startBattle([Species.SHUCKLE]); const leadIndex = game.scene.getPlayerPokemon()!.getBattlerIndex(); const enemyIndex = game.scene.getEnemyPokemon()!.getBattlerIndex(); - game.doAttack(getMovePosition(game.scene, 0, Moves.TACKLE)); + game.move.select(Moves.TACKLE); await game.phaseInterceptor.to(MovePhase, false); // The opponent Pokemon (with Stall) goes first because its move is still within a higher priority bracket than its opponent. @@ -74,14 +73,14 @@ describe("Abilities - Stall", () => { expect((game.scene.getCurrentPhase() as MovePhase).pokemon.getBattlerIndex()).toBe(leadIndex); }, 20000); - it("If both Pokemon have stall and use the same move, speed is used to determine who goes first.", async() => { + it("If both Pokemon have stall and use the same move, speed is used to determine who goes first.", async () => { game.override.ability(Abilities.STALL); - await game.startBattle([ Species.SHUCKLE ]); + await game.startBattle([Species.SHUCKLE]); const leadIndex = game.scene.getPlayerPokemon()!.getBattlerIndex(); const enemyIndex = game.scene.getEnemyPokemon()!.getBattlerIndex(); - game.doAttack(getMovePosition(game.scene, 0, Moves.TACKLE)); + game.move.select(Moves.TACKLE); await game.phaseInterceptor.to(MovePhase, false); // The opponent Pokemon (with Stall) goes first because it has a higher speed. diff --git a/src/test/abilities/steely_spirit.test.ts b/src/test/abilities/steely_spirit.test.ts index 3ca1a55ebee..c632d0be777 100644 --- a/src/test/abilities/steely_spirit.test.ts +++ b/src/test/abilities/steely_spirit.test.ts @@ -1,15 +1,13 @@ -import { allAbilities } from "#app/data/ability.js"; -import { allMoves } from "#app/data/move.js"; -import { Abilities } from "#app/enums/abilities.js"; -import GameManager from "#test/utils/gameManager"; -import { getMovePosition } from "#test/utils/gameManagerUtils"; +import { allAbilities } from "#app/data/ability"; +import { allMoves } from "#app/data/move"; +import { Abilities } from "#app/enums/abilities"; +import { MoveEffectPhase } from "#app/phases/move-effect-phase"; import { Moves } from "#enums/moves"; import { Species } from "#enums/species"; +import GameManager from "#test/utils/gameManager"; +import { SPLASH_ONLY } from "#test/utils/testUtils"; import Phaser from "phaser"; import { afterEach, beforeAll, beforeEach, describe, expect, it, vi } from "vitest"; -import { SPLASH_ONLY } from "#test/utils/testUtils"; -import { MoveEffectPhase } from "#app/phases/move-effect-phase.js"; -import { SelectTargetPhase } from "#app/phases/select-target-phase.js"; describe("Abilities - Steely Spirit", () => { let phaserGame: Phaser.Game; @@ -47,10 +45,8 @@ describe("Abilities - Steely Spirit", () => { expect(boostSource.hasAbility(Abilities.STEELY_SPIRIT)).toBe(true); - game.doAttack(getMovePosition(game.scene, 0, moveToCheck)); - await game.phaseInterceptor.to(SelectTargetPhase, false); - game.doSelectTarget(enemyToCheck.getBattlerIndex()); - game.doAttack(getMovePosition(game.scene, 1, Moves.SPLASH)); + game.move.select(moveToCheck, 0, enemyToCheck.getBattlerIndex()); + game.move.select(Moves.SPLASH, 1); await game.phaseInterceptor.to(MoveEffectPhase); expect(allMoves[moveToCheck].calculateBattlePower).toHaveReturnedWith(ironHeadPower * steelySpiritMultiplier); @@ -66,12 +62,8 @@ describe("Abilities - Steely Spirit", () => { expect(game.scene.getPlayerField().every(p => p.hasAbility(Abilities.STEELY_SPIRIT))).toBe(true); - game.doAttack(getMovePosition(game.scene, 0, moveToCheck)); - await game.phaseInterceptor.to(SelectTargetPhase, false); - game.doSelectTarget(enemyToCheck.getBattlerIndex()); - game.doAttack(getMovePosition(game.scene, 1, moveToCheck)); - await game.phaseInterceptor.to(SelectTargetPhase, false); - game.doSelectTarget(enemyToCheck.getBattlerIndex()); + game.move.select(moveToCheck, 0, enemyToCheck.getBattlerIndex()); + game.move.select(moveToCheck, 1, enemyToCheck.getBattlerIndex()); await game.phaseInterceptor.to(MoveEffectPhase); expect(allMoves[moveToCheck].calculateBattlePower).toHaveReturnedWith(ironHeadPower * Math.pow(steelySpiritMultiplier, 2)); @@ -90,10 +82,8 @@ describe("Abilities - Steely Spirit", () => { expect(boostSource.hasAbility(Abilities.STEELY_SPIRIT)).toBe(false); expect(boostSource.summonData.abilitySuppressed).toBe(true); - game.doAttack(getMovePosition(game.scene, 0, moveToCheck)); - await game.phaseInterceptor.to(SelectTargetPhase, false); - game.doSelectTarget(enemyToCheck.getBattlerIndex()); - game.doAttack(getMovePosition(game.scene, 1, Moves.SPLASH)); + game.move.select(moveToCheck, 0, enemyToCheck.getBattlerIndex()); + game.move.select(Moves.SPLASH, 1); await game.phaseInterceptor.to(MoveEffectPhase); expect(allMoves[moveToCheck].calculateBattlePower).toHaveReturnedWith(ironHeadPower); diff --git a/src/test/abilities/sturdy.test.ts b/src/test/abilities/sturdy.test.ts index 602b2c04eb1..dc9f774cc5b 100644 --- a/src/test/abilities/sturdy.test.ts +++ b/src/test/abilities/sturdy.test.ts @@ -1,13 +1,12 @@ -import { EnemyPokemon } from "#app/field/pokemon.js"; -import GameManager from "#test/utils/gameManager"; -import { getMovePosition } from "#test/utils/gameManagerUtils"; +import { EnemyPokemon } from "#app/field/pokemon"; +import { DamagePhase } from "#app/phases/damage-phase"; +import { MoveEndPhase } from "#app/phases/move-end-phase"; import { Abilities } from "#enums/abilities"; import { Moves } from "#enums/moves"; import { Species } from "#enums/species"; +import GameManager from "#test/utils/gameManager"; import Phaser from "phaser"; import { afterEach, beforeAll, beforeEach, describe, expect, test } from "vitest"; -import { DamagePhase } from "#app/phases/damage-phase.js"; -import { MoveEndPhase } from "#app/phases/move-end-phase.js"; const TIMEOUT = 20 * 1000; @@ -42,7 +41,7 @@ describe("Abilities - Sturdy", () => { "Sturdy activates when user is at full HP", async () => { await game.startBattle(); - game.doAttack(getMovePosition(game.scene, 0, Moves.CLOSE_COMBAT)); + game.move.select(Moves.CLOSE_COMBAT); await game.phaseInterceptor.to(MoveEndPhase); expect(game.scene.getEnemyParty()[0].hp).toBe(1); }, @@ -57,7 +56,7 @@ describe("Abilities - Sturdy", () => { const enemyPokemon: EnemyPokemon = game.scene.getEnemyParty()[0]; enemyPokemon.hp = enemyPokemon.getMaxHp() - 1; - game.doAttack(getMovePosition(game.scene, 0, Moves.CLOSE_COMBAT)); + game.move.select(Moves.CLOSE_COMBAT); await game.phaseInterceptor.to(DamagePhase); expect(enemyPokemon.hp).toBe(0); @@ -70,7 +69,7 @@ describe("Abilities - Sturdy", () => { "Sturdy pokemon should be immune to OHKO moves", async () => { await game.startBattle(); - game.doAttack(getMovePosition(game.scene, 0, Moves.FISSURE)); + game.move.select(Moves.FISSURE); await game.phaseInterceptor.to(MoveEndPhase); const enemyPokemon: EnemyPokemon = game.scene.getEnemyParty()[0]; @@ -85,7 +84,7 @@ describe("Abilities - Sturdy", () => { game.override.ability(Abilities.MOLD_BREAKER); await game.startBattle(); - game.doAttack(getMovePosition(game.scene, 0, Moves.CLOSE_COMBAT)); + game.move.select(Moves.CLOSE_COMBAT); await game.phaseInterceptor.to(DamagePhase); const enemyPokemon: EnemyPokemon = game.scene.getEnemyParty()[0]; diff --git a/src/test/abilities/sweet_veil.test.ts b/src/test/abilities/sweet_veil.test.ts index 8ab384ae59e..5de3c7285a9 100644 --- a/src/test/abilities/sweet_veil.test.ts +++ b/src/test/abilities/sweet_veil.test.ts @@ -1,16 +1,14 @@ -import { afterEach, beforeAll, beforeEach, describe, expect, it } from "vitest"; -import Phaser from "phaser"; -import GameManager from "#test/utils/gameManager"; -import { Species } from "#enums/species"; +import { BattlerIndex } from "#app/battle"; +import { Abilities } from "#app/enums/abilities"; +import { BattlerTagType } from "#app/enums/battler-tag-type"; +import { CommandPhase } from "#app/phases/command-phase"; +import { TurnEndPhase } from "#app/phases/turn-end-phase"; import { Moves } from "#enums/moves"; -import { getMovePosition } from "#test/utils/gameManagerUtils"; -import { BattlerTagType } from "#app/enums/battler-tag-type.js"; -import { Abilities } from "#app/enums/abilities.js"; -import { BattlerIndex } from "#app/battle.js"; +import { Species } from "#enums/species"; +import GameManager from "#test/utils/gameManager"; import { SPLASH_ONLY } from "#test/utils/testUtils"; -import { CommandPhase } from "#app/phases/command-phase.js"; -import { MovePhase } from "#app/phases/move-phase.js"; -import { TurnEndPhase } from "#app/phases/turn-end-phase.js"; +import Phaser from "phaser"; +import { afterEach, beforeAll, beforeEach, describe, expect, it } from "vitest"; describe("Abilities - Sweet Veil", () => { let phaserGame: Phaser.Game; @@ -29,7 +27,7 @@ describe("Abilities - Sweet Veil", () => { beforeEach(() => { game = new GameManager(phaserGame); game.override.battleType("double"); - game.override.moveset([Moves.SPLASH, Moves.REST]); + game.override.moveset([Moves.SPLASH, Moves.REST, Moves.YAWN]); game.override.enemySpecies(Species.MAGIKARP); game.override.enemyAbility(Abilities.BALL_FETCH); game.override.enemyMoveset([Moves.POWDER, Moves.POWDER, Moves.POWDER, Moves.POWDER]); @@ -38,8 +36,8 @@ describe("Abilities - Sweet Veil", () => { it("prevents the user and its allies from falling asleep", async () => { await game.startBattle([Species.SWIRLIX, Species.MAGIKARP]); - game.doAttack(getMovePosition(game.scene, 0, Moves.SPLASH)); - game.doAttack(getMovePosition(game.scene, 1, Moves.SPLASH)); + game.move.select(Moves.SPLASH); + game.move.select(Moves.SPLASH, 1); await game.phaseInterceptor.to(TurnEndPhase); @@ -50,8 +48,8 @@ describe("Abilities - Sweet Veil", () => { game.override.enemyMoveset(SPLASH_ONLY); await game.startBattle([Species.SWIRLIX, Species.MAGIKARP]); - game.doAttack(getMovePosition(game.scene, 0, Moves.SPLASH)); - game.doAttack(getMovePosition(game.scene, 1, Moves.REST)); + game.move.select(Moves.SPLASH); + game.move.select(Moves.REST, 1); await game.phaseInterceptor.to(TurnEndPhase); @@ -62,8 +60,8 @@ describe("Abilities - Sweet Veil", () => { game.override.enemyMoveset([Moves.YAWN, Moves.YAWN, Moves.YAWN, Moves.YAWN]); await game.startBattle([Species.SWIRLIX, Species.MAGIKARP]); - game.doAttack(getMovePosition(game.scene, 0, Moves.SPLASH)); - game.doAttack(getMovePosition(game.scene, 1, Moves.SPLASH)); + game.move.select(Moves.SPLASH); + game.move.select(Moves.SPLASH, 1); await game.phaseInterceptor.to(TurnEndPhase); @@ -74,28 +72,19 @@ describe("Abilities - Sweet Veil", () => { game.override.enemySpecies(Species.PIKACHU); game.override.enemyLevel(5); game.override.startingLevel(5); - game.override.enemyMoveset([Moves.YAWN, Moves.YAWN, Moves.YAWN, Moves.YAWN]); + game.override.enemyMoveset(SPLASH_ONLY); await game.startBattle([Species.SHUCKLE, Species.SHUCKLE, Species.SWIRLIX]); - game.doAttack(getMovePosition(game.scene, 0, Moves.SPLASH)); - game.doAttack(getMovePosition(game.scene, 1, Moves.SPLASH)); + game.move.select(Moves.SPLASH); + game.move.select(Moves.YAWN, 1, BattlerIndex.PLAYER); - // First pokemon move - await game.move.forceHit(); - - // Second pokemon move - await game.phaseInterceptor.to(MovePhase, false); - await game.move.forceHit(); + await game.phaseInterceptor.to("BerryPhase"); expect(game.scene.getPlayerField().some(p => !!p.getTag(BattlerTagType.DROWSY))).toBe(true); - await game.phaseInterceptor.to(TurnEndPhase); - - const drowsyMon = game.scene.getPlayerField().find(p => !!p.getTag(BattlerTagType.DROWSY))!; - await game.phaseInterceptor.to(CommandPhase); - game.doAttack(getMovePosition(game.scene, (drowsyMon.getBattlerIndex() as BattlerIndex.PLAYER | BattlerIndex.PLAYER_2), Moves.SPLASH)); + game.move.select(Moves.SPLASH); game.doSwitchPokemon(2); expect(game.scene.getPlayerField().every(p => p.status?.effect)).toBe(false); diff --git a/src/test/abilities/unseen_fist.test.ts b/src/test/abilities/unseen_fist.test.ts index 7d47d73bb16..ea1996ec66b 100644 --- a/src/test/abilities/unseen_fist.test.ts +++ b/src/test/abilities/unseen_fist.test.ts @@ -1,11 +1,10 @@ +import { TurnEndPhase } from "#app/phases/turn-end-phase"; import { Abilities } from "#enums/abilities"; import { Moves } from "#enums/moves"; import { Species } from "#enums/species"; +import GameManager from "#test/utils/gameManager"; import Phaser from "phaser"; import { afterEach, beforeAll, beforeEach, describe, expect, test } from "vitest"; -import GameManager from "#test/utils/gameManager"; -import { getMovePosition } from "#test/utils/gameManagerUtils"; -import { TurnEndPhase } from "#app/phases/turn-end-phase.js"; const TIMEOUT = 20 * 1000; @@ -80,7 +79,7 @@ async function testUnseenFistHitResult(game: GameManager, attackMove: Moves, pro const enemyStartingHp = enemyPokemon.hp; - game.doAttack(getMovePosition(game.scene, 0, attackMove)); + game.move.select(attackMove); await game.phaseInterceptor.to(TurnEndPhase, false); if (shouldSucceed) { diff --git a/src/test/abilities/volt_absorb.test.ts b/src/test/abilities/volt_absorb.test.ts index 0e3d5c9792f..d9c3fe34c24 100644 --- a/src/test/abilities/volt_absorb.test.ts +++ b/src/test/abilities/volt_absorb.test.ts @@ -1,11 +1,10 @@ -import { BattleStat } from "#app/data/battle-stat.js"; -import { TurnEndPhase } from "#app/phases/turn-end-phase.js"; -import GameManager from "#test/utils/gameManager"; -import { getMovePosition } from "#test/utils/gameManagerUtils"; +import { BattleStat } from "#app/data/battle-stat"; +import { TurnEndPhase } from "#app/phases/turn-end-phase"; import { Abilities } from "#enums/abilities"; import { BattlerTagType } from "#enums/battler-tag-type"; import { Moves } from "#enums/moves"; import { Species } from "#enums/species"; +import GameManager from "#test/utils/gameManager"; import Phaser from "phaser"; import { afterEach, beforeAll, beforeEach, describe, expect, it } from "vitest"; @@ -42,7 +41,7 @@ describe("Abilities - Volt Absorb", () => { await game.startBattle(); - game.doAttack(getMovePosition(game.scene, 0, moveToUse)); + game.move.select(moveToUse); await game.phaseInterceptor.to(TurnEndPhase); diff --git a/src/test/abilities/wind_power.test.ts b/src/test/abilities/wind_power.test.ts index 24f01cceebc..c944e01b43a 100644 --- a/src/test/abilities/wind_power.test.ts +++ b/src/test/abilities/wind_power.test.ts @@ -1,13 +1,12 @@ -import { BattlerTagType } from "#app/enums/battler-tag-type.js"; -import { TurnEndPhase } from "#app/phases/turn-end-phase.js"; -import GameManager from "#test/utils/gameManager"; -import { getMovePosition } from "#test/utils/gameManagerUtils"; +import { BattlerTagType } from "#app/enums/battler-tag-type"; +import { TurnEndPhase } from "#app/phases/turn-end-phase"; import { Abilities } from "#enums/abilities"; import { Moves } from "#enums/moves"; import { Species } from "#enums/species"; +import GameManager from "#test/utils/gameManager"; +import { SPLASH_ONLY } from "#test/utils/testUtils"; import Phaser from "phaser"; import { afterEach, beforeAll, beforeEach, describe, expect, it } from "vitest"; -import { SPLASH_ONLY } from "#test/utils/testUtils"; describe("Abilities - Wind Power", () => { let phaserGame: Phaser.Game; @@ -38,7 +37,7 @@ describe("Abilities - Wind Power", () => { expect(shiftry.getTag(BattlerTagType.CHARGED)).toBeUndefined(); - game.doAttack(getMovePosition(game.scene, 0, Moves.PETAL_BLIZZARD)); + game.move.select(Moves.PETAL_BLIZZARD); await game.phaseInterceptor.to(TurnEndPhase); expect(shiftry.getTag(BattlerTagType.CHARGED)).toBeDefined(); @@ -53,7 +52,7 @@ describe("Abilities - Wind Power", () => { expect(shiftry.getTag(BattlerTagType.CHARGED)).toBeUndefined(); - game.doAttack(getMovePosition(game.scene, 0, Moves.TAILWIND)); + game.move.select(Moves.TAILWIND); await game.phaseInterceptor.to(TurnEndPhase); expect(shiftry.getTag(BattlerTagType.CHARGED)).toBeDefined(); @@ -70,7 +69,7 @@ describe("Abilities - Wind Power", () => { expect(shiftry.getTag(BattlerTagType.CHARGED)).toBeUndefined(); expect(magikarp.getTag(BattlerTagType.CHARGED)).toBeUndefined(); - game.doAttack(getMovePosition(game.scene, 0, Moves.TAILWIND)); + game.move.select(Moves.TAILWIND); await game.phaseInterceptor.to(TurnEndPhase); @@ -86,7 +85,7 @@ describe("Abilities - Wind Power", () => { expect(shiftry.getTag(BattlerTagType.CHARGED)).toBeUndefined(); - game.doAttack(getMovePosition(game.scene, 0, Moves.SANDSTORM)); + game.move.select(Moves.SANDSTORM); await game.phaseInterceptor.to(TurnEndPhase); diff --git a/src/test/abilities/wind_rider.test.ts b/src/test/abilities/wind_rider.test.ts index 92c38507e4f..97e2e6456dc 100644 --- a/src/test/abilities/wind_rider.test.ts +++ b/src/test/abilities/wind_rider.test.ts @@ -1,13 +1,12 @@ -import { BattleStat } from "#app/data/battle-stat.js"; -import { TurnEndPhase } from "#app/phases/turn-end-phase.js"; -import GameManager from "#test/utils/gameManager"; -import { getMovePosition } from "#test/utils/gameManagerUtils"; +import { BattleStat } from "#app/data/battle-stat"; +import { TurnEndPhase } from "#app/phases/turn-end-phase"; import { Abilities } from "#enums/abilities"; import { Moves } from "#enums/moves"; import { Species } from "#enums/species"; +import GameManager from "#test/utils/gameManager"; +import { SPLASH_ONLY } from "#test/utils/testUtils"; import Phaser from "phaser"; import { afterEach, beforeAll, beforeEach, describe, expect, it } from "vitest"; -import { SPLASH_ONLY } from "#test/utils/testUtils"; describe("Abilities - Wind Rider", () => { let phaserGame: Phaser.Game; @@ -38,7 +37,7 @@ describe("Abilities - Wind Rider", () => { expect(shiftry.summonData.battleStats[BattleStat.ATK]).toBe(0); - game.doAttack(getMovePosition(game.scene, 0, Moves.PETAL_BLIZZARD)); + game.move.select(Moves.PETAL_BLIZZARD); await game.phaseInterceptor.to(TurnEndPhase); @@ -55,7 +54,7 @@ describe("Abilities - Wind Rider", () => { expect(shiftry.summonData.battleStats[BattleStat.ATK]).toBe(0); - game.doAttack(getMovePosition(game.scene, 0, Moves.TAILWIND)); + game.move.select(Moves.TAILWIND); await game.phaseInterceptor.to(TurnEndPhase); @@ -73,7 +72,7 @@ describe("Abilities - Wind Rider", () => { expect(shiftry.summonData.battleStats[BattleStat.ATK]).toBe(0); expect(magikarp.summonData.battleStats[BattleStat.ATK]).toBe(0); - game.doAttack(getMovePosition(game.scene, 0, Moves.TAILWIND)); + game.move.select(Moves.TAILWIND); await game.phaseInterceptor.to(TurnEndPhase); @@ -91,7 +90,7 @@ describe("Abilities - Wind Rider", () => { expect(shiftry.summonData.battleStats[BattleStat.ATK]).toBe(0); expect(magikarp.summonData.battleStats[BattleStat.ATK]).toBe(0); - game.doAttack(getMovePosition(game.scene, 0, Moves.TAILWIND)); + game.move.select(Moves.TAILWIND); await game.phaseInterceptor.to(TurnEndPhase); @@ -108,7 +107,7 @@ describe("Abilities - Wind Rider", () => { expect(shiftry.summonData.battleStats[BattleStat.ATK]).toBe(0); expect(shiftry.isFullHp()).toBe(true); - game.doAttack(getMovePosition(game.scene, 0, Moves.SANDSTORM)); + game.move.select(Moves.SANDSTORM); await game.phaseInterceptor.to(TurnEndPhase); diff --git a/src/test/abilities/wonder_skin.test.ts b/src/test/abilities/wonder_skin.test.ts index d6e2b2443c4..0c2aedc8ce8 100644 --- a/src/test/abilities/wonder_skin.test.ts +++ b/src/test/abilities/wonder_skin.test.ts @@ -1,14 +1,13 @@ -import { allAbilities } from "#app/data/ability.js"; -import { allMoves } from "#app/data/move.js"; -import { MoveEffectPhase } from "#app/phases/move-effect-phase.js"; -import GameManager from "#test/utils/gameManager"; -import { getMovePosition } from "#test/utils/gameManagerUtils"; +import { allAbilities } from "#app/data/ability"; +import { allMoves } from "#app/data/move"; +import { MoveEffectPhase } from "#app/phases/move-effect-phase"; import { Abilities } from "#enums/abilities"; import { Moves } from "#enums/moves"; import { Species } from "#enums/species"; +import GameManager from "#test/utils/gameManager"; +import { SPLASH_ONLY } from "#test/utils/testUtils"; import Phaser from "phaser"; import { afterEach, beforeAll, beforeEach, describe, expect, it, vi } from "vitest"; -import { SPLASH_ONLY } from "#test/utils/testUtils"; describe("Abilities - Wonder Skin", () => { let phaserGame: Phaser.Game; @@ -40,7 +39,7 @@ describe("Abilities - Wonder Skin", () => { vi.spyOn(moveToCheck, "calculateBattleAccuracy"); await game.startBattle([Species.PIKACHU]); - game.doAttack(getMovePosition(game.scene, 0, Moves.CHARM)); + game.move.select(Moves.CHARM); await game.phaseInterceptor.to(MoveEffectPhase); expect(moveToCheck.calculateBattleAccuracy).toHaveReturnedWith(50); @@ -52,7 +51,7 @@ describe("Abilities - Wonder Skin", () => { vi.spyOn(moveToCheck, "calculateBattleAccuracy"); await game.startBattle([Species.PIKACHU]); - game.doAttack(getMovePosition(game.scene, 0, Moves.TACKLE)); + game.move.select(Moves.TACKLE); await game.phaseInterceptor.to(MoveEffectPhase); expect(moveToCheck.calculateBattleAccuracy).toHaveReturnedWith(100); @@ -68,7 +67,7 @@ describe("Abilities - Wonder Skin", () => { vi.spyOn(moveToCheck, "calculateBattleAccuracy"); await game.startBattle([Species.PIKACHU]); - game.doAttack(getMovePosition(game.scene, 0, Moves.CHARM)); + game.move.select(Moves.CHARM); await game.phaseInterceptor.to(MoveEffectPhase); expect(moveToCheck.calculateBattleAccuracy).toHaveReturnedWith(100); diff --git a/src/test/abilities/zen_mode.test.ts b/src/test/abilities/zen_mode.test.ts index 72fdc5442c5..677d998e876 100644 --- a/src/test/abilities/zen_mode.test.ts +++ b/src/test/abilities/zen_mode.test.ts @@ -1,26 +1,23 @@ +import { BattlerIndex } from "#app/battle"; import { Stat } from "#app/data/pokemon-stat"; -import { Status, StatusEffect } from "#app/data/status-effect.js"; -import GameManager from "#test/utils/gameManager"; -import { getMovePosition } from "#test/utils/gameManagerUtils"; -import { Command } from "#app/ui/command-ui-handler"; +import { Status, StatusEffect } from "#app/data/status-effect"; +import { DamagePhase } from "#app/phases/damage-phase"; +import { EnemyCommandPhase } from "#app/phases/enemy-command-phase"; +import { MessagePhase } from "#app/phases/message-phase"; +import { PostSummonPhase } from "#app/phases/post-summon-phase"; +import { QuietFormChangePhase } from "#app/phases/quiet-form-change-phase"; +import { SwitchPhase } from "#app/phases/switch-phase"; +import { SwitchSummonPhase } from "#app/phases/switch-summon-phase"; +import { TurnEndPhase } from "#app/phases/turn-end-phase"; +import { TurnInitPhase } from "#app/phases/turn-init-phase"; +import { TurnStartPhase } from "#app/phases/turn-start-phase"; import { Mode } from "#app/ui/ui"; import { Abilities } from "#enums/abilities"; import { Moves } from "#enums/moves"; import { Species } from "#enums/species"; +import GameManager from "#test/utils/gameManager"; import Phaser from "phaser"; import { afterEach, beforeAll, beforeEach, describe, expect, test } from "vitest"; -import { BattlerIndex } from "#app/battle.js"; -import { CommandPhase } from "#app/phases/command-phase.js"; -import { DamagePhase } from "#app/phases/damage-phase.js"; -import { EnemyCommandPhase } from "#app/phases/enemy-command-phase.js"; -import { MessagePhase } from "#app/phases/message-phase.js"; -import { PostSummonPhase } from "#app/phases/post-summon-phase.js"; -import { QuietFormChangePhase } from "#app/phases/quiet-form-change-phase.js"; -import { SwitchPhase } from "#app/phases/switch-phase.js"; -import { SwitchSummonPhase } from "#app/phases/switch-summon-phase.js"; -import { TurnEndPhase } from "#app/phases/turn-end-phase.js"; -import { TurnInitPhase } from "#app/phases/turn-init-phase.js"; -import { TurnStartPhase } from "#app/phases/turn-start-phase.js"; const TIMEOUT = 20 * 1000; @@ -59,13 +56,7 @@ describe("Abilities - ZEN MODE", () => { game.scene.getParty()[0].hp = 100; expect(game.scene.getParty()[0].formIndex).toBe(0); - game.onNextPrompt("CommandPhase", Mode.COMMAND, () => { - game.scene.ui.setMode(Mode.FIGHT, (game.scene.getCurrentPhase() as CommandPhase).getFieldIndex()); - }); - game.onNextPrompt("CommandPhase", Mode.FIGHT, () => { - const movePosition = getMovePosition(game.scene, 0, moveToUse); - (game.scene.getCurrentPhase() as CommandPhase).handleCommand(Command.FIGHT, movePosition, false); - }); + game.move.select(moveToUse); await game.setTurnOrder([BattlerIndex.ENEMY, BattlerIndex.PLAYER]); await game.phaseInterceptor.to(DamagePhase, false); @@ -88,13 +79,7 @@ describe("Abilities - ZEN MODE", () => { game.scene.getParty()[0].hp = 100; expect(game.scene.getParty()[0].formIndex).toBe(0); - game.onNextPrompt("CommandPhase", Mode.COMMAND, () => { - game.scene.ui.setMode(Mode.FIGHT, (game.scene.getCurrentPhase() as CommandPhase).getFieldIndex()); - }); - game.onNextPrompt("CommandPhase", Mode.FIGHT, () => { - const movePosition = getMovePosition(game.scene, 0, moveToUse); - (game.scene.getCurrentPhase() as CommandPhase).handleCommand(Command.FIGHT, movePosition, false); - }); + game.move.select(moveToUse); await game.setTurnOrder([BattlerIndex.ENEMY, BattlerIndex.PLAYER]); await game.phaseInterceptor.to(QuietFormChangePhase); @@ -114,13 +99,7 @@ describe("Abilities - ZEN MODE", () => { game.scene.getParty()[0].hp = 100; expect(game.scene.getParty()[0].formIndex).toBe(0); - game.onNextPrompt("CommandPhase", Mode.COMMAND, () => { - game.scene.ui.setMode(Mode.FIGHT, (game.scene.getCurrentPhase() as CommandPhase).getFieldIndex()); - }); - game.onNextPrompt("CommandPhase", Mode.FIGHT, () => { - const movePosition = getMovePosition(game.scene, 0, moveToUse); - (game.scene.getCurrentPhase() as CommandPhase).handleCommand(Command.FIGHT, movePosition, false); - }); + game.move.select(moveToUse); await game.setTurnOrder([BattlerIndex.ENEMY, BattlerIndex.PLAYER]); await game.phaseInterceptor.to(DamagePhase, false); @@ -169,7 +148,7 @@ describe("Abilities - ZEN MODE", () => { darmanitan.status = new Status(StatusEffect.FAINT); expect(darmanitan.isFainted()).toBe(true); - game.doAttack(getMovePosition(game.scene, 0, Moves.SPLASH)); + game.move.select(Moves.SPLASH); await game.doKillOpponents(); await game.phaseInterceptor.to(TurnEndPhase); game.doSelectModifier(); diff --git a/src/test/abilities/zero_to_hero.test.ts b/src/test/abilities/zero_to_hero.test.ts index ee6c07096a8..1a9697f974e 100644 --- a/src/test/abilities/zero_to_hero.test.ts +++ b/src/test/abilities/zero_to_hero.test.ts @@ -1,11 +1,10 @@ -import { Status, StatusEffect } from "#app/data/status-effect.js"; -import { QuietFormChangePhase } from "#app/phases/quiet-form-change-phase.js"; -import { TurnEndPhase } from "#app/phases/turn-end-phase.js"; +import { Status, StatusEffect } from "#app/data/status-effect"; +import { QuietFormChangePhase } from "#app/phases/quiet-form-change-phase"; +import { TurnEndPhase } from "#app/phases/turn-end-phase"; import { Abilities } from "#enums/abilities"; import { Moves } from "#enums/moves"; import { Species } from "#enums/species"; import GameManager from "#test/utils/gameManager"; -import { getMovePosition } from "#test/utils/gameManagerUtils"; import { afterEach, beforeAll, beforeEach, describe, expect, it } from "vitest"; import { SPLASH_ONLY } from "../utils/testUtils"; @@ -52,7 +51,7 @@ describe("Abilities - ZERO TO HERO", () => { palafin2.status = new Status(StatusEffect.FAINT); expect(palafin2.isFainted()).toBe(true); - game.doAttack(getMovePosition(game.scene, 0, Moves.SPLASH)); + game.move.select(Moves.SPLASH); await game.doKillOpponents(); await game.phaseInterceptor.to(TurnEndPhase); game.doSelectModifier(); @@ -80,7 +79,7 @@ describe("Abilities - ZERO TO HERO", () => { const palafin = game.scene.getPlayerPokemon()!; expect(palafin.formIndex).toBe(baseForm); - game.doAttack(getMovePosition(game.scene, 0, Moves.SPLASH)); + game.move.select(Moves.SPLASH); await game.killPokemon(palafin); game.doSelectPartyPokemon(1); await game.toNextTurn(); @@ -97,7 +96,7 @@ describe("Abilities - ZERO TO HERO", () => { const palafin = game.scene.getPlayerPokemon()!; expect(palafin.formIndex).toBe(heroForm); - game.doAttack(getMovePosition(game.scene, 0, Moves.SPLASH)); + game.move.select(Moves.SPLASH); await game.killPokemon(palafin); game.doSelectPartyPokemon(1); await game.toNextTurn(); diff --git a/src/test/account.spec.ts b/src/test/account.spec.ts index d5d0458c7e8..eb6002f3cf2 100644 --- a/src/test/account.spec.ts +++ b/src/test/account.spec.ts @@ -1,4 +1,4 @@ -import * as battleScene from "#app/battle-scene.js"; +import * as battleScene from "#app/battle-scene"; import { describe, expect, it, vi } from "vitest"; import { initLoggedInUser, loggedInUser, updateUserInfo } from "../account"; import * as utils from "../utils"; diff --git a/src/test/achievements/achievement.test.ts b/src/test/achievements/achievement.test.ts index 5cd9c4d4094..36c20ae2248 100644 --- a/src/test/achievements/achievement.test.ts +++ b/src/test/achievements/achievement.test.ts @@ -1,7 +1,7 @@ -import { TurnHeldItemTransferModifier } from "#app/modifier/modifier.js"; +import { TurnHeldItemTransferModifier } from "#app/modifier/modifier"; import { Achv, AchvTier, DamageAchv, HealAchv, LevelAchv, ModifierAchv, MoneyAchv, RibbonAchv, achvs } from "#app/system/achv"; +import { IntegerHolder, NumberHolder } from "#app/utils"; import GameManager from "#test/utils/gameManager"; -import { IntegerHolder, NumberHolder } from "#app/utils.js"; import Phaser from "phaser"; import { afterEach, beforeAll, beforeEach, describe, expect, it, vi } from "vitest"; import BattleScene from "../../battle-scene"; diff --git a/src/test/arena/arena_gravity.test.ts b/src/test/arena/arena_gravity.test.ts index 68c31258454..eda8c687ba1 100644 --- a/src/test/arena/arena_gravity.test.ts +++ b/src/test/arena/arena_gravity.test.ts @@ -1,14 +1,14 @@ -import { allMoves } from "#app/data/move.js"; -import { Abilities } from "#app/enums/abilities.js"; -import { ArenaTagType } from "#app/enums/arena-tag-type.js"; -import GameManager from "#test/utils/gameManager"; -import { getMovePosition } from "#test/utils/gameManagerUtils"; +import { allMoves } from "#app/data/move"; +import { Abilities } from "#app/enums/abilities"; +import { ArenaTagType } from "#app/enums/arena-tag-type"; +import { MoveEffectPhase } from "#app/phases/move-effect-phase"; +import { TurnEndPhase } from "#app/phases/turn-end-phase"; import { Moves } from "#enums/moves"; import { Species } from "#enums/species"; +import GameManager from "#test/utils/gameManager"; import Phaser from "phaser"; import { afterEach, beforeAll, beforeEach, describe, expect, it, vi } from "vitest"; -import { MoveEffectPhase } from "#app/phases/move-effect-phase.js"; -import { TurnEndPhase } from "#app/phases/turn-end-phase.js"; +import { SPLASH_ONLY } from "../utils/testUtils"; describe("Arena - Gravity", () => { let phaserGame: Phaser.Game; @@ -26,14 +26,17 @@ describe("Arena - Gravity", () => { beforeEach(() => { game = new GameManager(phaserGame); - game.override.battleType("single"); - game.override.moveset([Moves.TACKLE, Moves.GRAVITY, Moves.FISSURE]); - game.override.ability(Abilities.UNNERVE); - game.override.enemyAbility(Abilities.BALL_FETCH); - game.override.enemySpecies(Species.SHUCKLE); - game.override.enemyMoveset(new Array(4).fill(Moves.SPLASH)); + game.override + .battleType("single") + .moveset([Moves.TACKLE, Moves.GRAVITY, Moves.FISSURE]) + .ability(Abilities.UNNERVE) + .enemyAbility(Abilities.BALL_FETCH) + .enemySpecies(Species.SHUCKLE) + .enemyMoveset(SPLASH_ONLY); }); + // Reference: https://bulbapedia.bulbagarden.net/wiki/Gravity_(move) + it("non-OHKO move accuracy is multiplied by 1.67", async () => { const moveToCheck = allMoves[Moves.TACKLE]; @@ -41,14 +44,14 @@ describe("Arena - Gravity", () => { // Setup Gravity on first turn await game.startBattle([Species.PIKACHU]); - game.doAttack(getMovePosition(game.scene, 0, Moves.GRAVITY)); + game.move.select(Moves.GRAVITY); await game.phaseInterceptor.to(TurnEndPhase); expect(game.scene.arena.getTag(ArenaTagType.GRAVITY)).toBeDefined(); // Use non-OHKO move on second turn await game.toNextTurn(); - game.doAttack(getMovePosition(game.scene, 0, Moves.TACKLE)); + game.move.select(Moves.TACKLE); await game.phaseInterceptor.to(MoveEffectPhase); expect(moveToCheck.calculateBattleAccuracy).toHaveReturnedWith(100 * 1.67); @@ -65,16 +68,77 @@ describe("Arena - Gravity", () => { // Setup Gravity on first turn await game.startBattle([Species.PIKACHU]); - game.doAttack(getMovePosition(game.scene, 0, Moves.GRAVITY)); + game.move.select(Moves.GRAVITY); await game.phaseInterceptor.to(TurnEndPhase); expect(game.scene.arena.getTag(ArenaTagType.GRAVITY)).toBeDefined(); // Use OHKO move on second turn await game.toNextTurn(); - game.doAttack(getMovePosition(game.scene, 0, Moves.FISSURE)); + game.move.select(Moves.FISSURE); await game.phaseInterceptor.to(MoveEffectPhase); expect(moveToCheck.calculateBattleAccuracy).toHaveReturnedWith(30); }); + + describe("Against flying types", () => { + it("can be hit by ground-type moves now", async () => { + game.override + .startingLevel(5) + .enemyLevel(5) + .enemySpecies(Species.PIDGEOT) + .moveset([Moves.GRAVITY, Moves.EARTHQUAKE]); + + await game.startBattle([Species.PIKACHU]); + + const pidgeot = game.scene.getEnemyPokemon()!; + vi.spyOn(pidgeot, "getAttackTypeEffectiveness"); + + // Try earthquake on 1st turn (fails!); + game.move.select(Moves.EARTHQUAKE); + await game.phaseInterceptor.to(TurnEndPhase); + + expect(pidgeot.getAttackTypeEffectiveness).toHaveReturnedWith(0); + + // Setup Gravity on 2nd turn + await game.toNextTurn(); + game.move.select(Moves.GRAVITY); + await game.phaseInterceptor.to(TurnEndPhase); + + expect(game.scene.arena.getTag(ArenaTagType.GRAVITY)).toBeDefined(); + + // Use ground move on 3rd turn + await game.toNextTurn(); + game.move.select(Moves.EARTHQUAKE); + await game.phaseInterceptor.to(TurnEndPhase); + + expect(pidgeot.getAttackTypeEffectiveness).toHaveReturnedWith(1); + }); + + it("keeps super-effective moves super-effective after using gravity", async () => { + game.override + .startingLevel(5) + .enemyLevel(5) + .enemySpecies(Species.PIDGEOT) + .moveset([Moves.GRAVITY, Moves.THUNDERBOLT]); + + await game.startBattle([Species.PIKACHU]); + + const pidgeot = game.scene.getEnemyPokemon()!; + vi.spyOn(pidgeot, "getAttackTypeEffectiveness"); + + // Setup Gravity on 1st turn + game.move.select(Moves.GRAVITY); + await game.phaseInterceptor.to(TurnEndPhase); + + expect(game.scene.arena.getTag(ArenaTagType.GRAVITY)).toBeDefined(); + + // Use electric move on 2nd turn + await game.toNextTurn(); + game.move.select(Moves.THUNDERBOLT); + await game.phaseInterceptor.to(TurnEndPhase); + + expect(pidgeot.getAttackTypeEffectiveness).toHaveReturnedWith(2); + }); + }); }); diff --git a/src/test/arena/weather_fog.test.ts b/src/test/arena/weather_fog.test.ts index 350007ae943..b36b0de2e06 100644 --- a/src/test/arena/weather_fog.test.ts +++ b/src/test/arena/weather_fog.test.ts @@ -1,11 +1,10 @@ -import { allMoves } from "#app/data/move.js"; -import { WeatherType } from "#app/data/weather.js"; -import { Abilities } from "#app/enums/abilities.js"; -import { MoveEffectPhase } from "#app/phases/move-effect-phase.js"; -import GameManager from "#test/utils/gameManager"; -import { getMovePosition } from "#test/utils/gameManagerUtils"; +import { allMoves } from "#app/data/move"; +import { WeatherType } from "#app/data/weather"; +import { Abilities } from "#app/enums/abilities"; +import { MoveEffectPhase } from "#app/phases/move-effect-phase"; import { Moves } from "#enums/moves"; import { Species } from "#enums/species"; +import GameManager from "#test/utils/gameManager"; import Phaser from "phaser"; import { afterEach, beforeAll, beforeEach, describe, expect, it, vi } from "vitest"; @@ -41,7 +40,7 @@ describe("Weather - Fog", () => { vi.spyOn(moveToCheck, "calculateBattleAccuracy"); await game.startBattle([Species.MAGIKARP]); - game.doAttack(getMovePosition(game.scene, 0, Moves.TACKLE)); + game.move.select(Moves.TACKLE); await game.phaseInterceptor.to(MoveEffectPhase); expect(moveToCheck.calculateBattleAccuracy).toHaveReturnedWith(100 * 0.9); diff --git a/src/test/arena/weather_strong_winds.test.ts b/src/test/arena/weather_strong_winds.test.ts index 79fba30c019..8b2d3e2547e 100644 --- a/src/test/arena/weather_strong_winds.test.ts +++ b/src/test/arena/weather_strong_winds.test.ts @@ -1,12 +1,11 @@ -import { allMoves } from "#app/data/move.js"; -import GameManager from "#test/utils/gameManager"; -import { getMovePosition } from "#test/utils/gameManagerUtils"; +import { allMoves } from "#app/data/move"; +import { TurnStartPhase } from "#app/phases/turn-start-phase"; import { Abilities } from "#enums/abilities"; import { Moves } from "#enums/moves"; import { Species } from "#enums/species"; +import GameManager from "#test/utils/gameManager"; import Phaser from "phaser"; import { afterEach, beforeAll, beforeEach, describe, expect, it } from "vitest"; -import { TurnStartPhase } from "#app/phases/turn-start-phase.js"; describe("Weather - Strong Winds", () => { let phaserGame: Phaser.Game; @@ -38,7 +37,7 @@ describe("Weather - Strong Winds", () => { const pikachu = game.scene.getPlayerPokemon()!; const enemy = game.scene.getEnemyPokemon()!; - game.doAttack(getMovePosition(game.scene, 0, Moves.THUNDERBOLT)); + game.move.select(Moves.THUNDERBOLT); await game.phaseInterceptor.to(TurnStartPhase); expect(enemy.getAttackTypeEffectiveness(allMoves[Moves.THUNDERBOLT].type, pikachu)).toBe(0.5); @@ -49,7 +48,7 @@ describe("Weather - Strong Winds", () => { const pikachu = game.scene.getPlayerPokemon()!; const enemy = game.scene.getEnemyPokemon()!; - game.doAttack(getMovePosition(game.scene, 0, Moves.THUNDERBOLT)); + game.move.select(Moves.THUNDERBOLT); await game.phaseInterceptor.to(TurnStartPhase); expect(enemy.getAttackTypeEffectiveness(allMoves[Moves.THUNDERBOLT].type, pikachu)).toBe(1); @@ -60,7 +59,7 @@ describe("Weather - Strong Winds", () => { const pikachu = game.scene.getPlayerPokemon()!; const enemy = game.scene.getEnemyPokemon()!; - game.doAttack(getMovePosition(game.scene, 0, Moves.ICE_BEAM)); + game.move.select(Moves.ICE_BEAM); await game.phaseInterceptor.to(TurnStartPhase); expect(enemy.getAttackTypeEffectiveness(allMoves[Moves.ICE_BEAM].type, pikachu)).toBe(1); @@ -71,7 +70,7 @@ describe("Weather - Strong Winds", () => { const pikachu = game.scene.getPlayerPokemon()!; const enemy = game.scene.getEnemyPokemon()!; - game.doAttack(getMovePosition(game.scene, 0, Moves.ROCK_SLIDE)); + game.move.select(Moves.ROCK_SLIDE); await game.phaseInterceptor.to(TurnStartPhase); expect(enemy.getAttackTypeEffectiveness(allMoves[Moves.ROCK_SLIDE].type, pikachu)).toBe(1); diff --git a/src/test/battle-scene.test.ts b/src/test/battle-scene.test.ts index 21d3f689d1c..9e28ec99791 100644 --- a/src/test/battle-scene.test.ts +++ b/src/test/battle-scene.test.ts @@ -1,4 +1,4 @@ -import { LoadingScene } from "#app/loading-scene.js"; +import { LoadingScene } from "#app/loading-scene"; import { afterEach, beforeAll, beforeEach, describe, expect, it } from "vitest"; import GameManager from "./utils/gameManager"; diff --git a/src/test/battle-stat.spec.ts b/src/test/battle-stat.spec.ts index 775dd40ff34..16fce962838 100644 --- a/src/test/battle-stat.spec.ts +++ b/src/test/battle-stat.spec.ts @@ -1,4 +1,4 @@ -import { BattleStat, getBattleStatLevelChangeDescription, getBattleStatName } from "#app/data/battle-stat.js"; +import { BattleStat, getBattleStatLevelChangeDescription, getBattleStatName } from "#app/data/battle-stat"; import { describe, expect, it } from "vitest"; import { arrayOfRange, mockI18next } from "./utils/testUtils"; diff --git a/src/test/battle/battle-order.test.ts b/src/test/battle/battle-order.test.ts index 208b921b843..0129ecad254 100644 --- a/src/test/battle/battle-order.test.ts +++ b/src/test/battle/battle-order.test.ts @@ -1,19 +1,13 @@ import { Stat } from "#app/data/pokemon-stat"; -import GameManager from "#test/utils/gameManager"; -import { getMovePosition } from "#test/utils/gameManagerUtils"; -import { Command } from "#app/ui/command-ui-handler"; -import TargetSelectUiHandler from "#app/ui/target-select-ui-handler"; -import { Mode } from "#app/ui/ui"; +import { EnemyCommandPhase } from "#app/phases/enemy-command-phase"; +import { SelectTargetPhase } from "#app/phases/select-target-phase"; +import { TurnStartPhase } from "#app/phases/turn-start-phase"; import { Abilities } from "#enums/abilities"; -import { Button } from "#enums/buttons"; import { Moves } from "#enums/moves"; import { Species } from "#enums/species"; +import GameManager from "#test/utils/gameManager"; import Phaser from "phaser"; import { afterEach, beforeAll, beforeEach, describe, expect, it } from "vitest"; -import { CommandPhase } from "#app/phases/command-phase.js"; -import { EnemyCommandPhase } from "#app/phases/enemy-command-phase.js"; -import { SelectTargetPhase } from "#app/phases/select-target-phase.js"; -import { TurnStartPhase } from "#app/phases/turn-start-phase.js"; describe("Battle order", () => { @@ -39,20 +33,14 @@ describe("Battle order", () => { game.override.moveset([Moves.TACKLE]); }); - it("opponent faster than player 50 vs 150", async() => { + it("opponent faster than player 50 vs 150", async () => { await game.startBattle([ Species.BULBASAUR, ]); game.scene.getParty()[0].stats[Stat.SPD] = 50; game.scene.currentBattle.enemyParty[0].stats[Stat.SPD] = 150; - game.onNextPrompt("CommandPhase", Mode.COMMAND, () => { - game.scene.ui.setMode(Mode.FIGHT, (game.scene.getCurrentPhase() as CommandPhase).getFieldIndex()); - }); - game.onNextPrompt("CommandPhase", Mode.FIGHT, () => { - const movePosition = getMovePosition(game.scene, 0, Moves.TACKLE); - (game.scene.getCurrentPhase() as CommandPhase).handleCommand(Command.FIGHT, movePosition, false); - }); + game.move.select(Moves.TACKLE); await game.phaseInterceptor.run(EnemyCommandPhase); const phase = game.scene.getCurrentPhase() as TurnStartPhase; const order = phase.getOrder(); @@ -60,20 +48,14 @@ describe("Battle order", () => { expect(order[1]).toBe(0); }, 20000); - it("Player faster than opponent 150 vs 50", async() => { + it("Player faster than opponent 150 vs 50", async () => { await game.startBattle([ Species.BULBASAUR, ]); game.scene.getParty()[0].stats[Stat.SPD] = 150; game.scene.currentBattle.enemyParty[0].stats[Stat.SPD] = 50; - game.onNextPrompt("CommandPhase", Mode.COMMAND, () => { - game.scene.ui.setMode(Mode.FIGHT, (game.scene.getCurrentPhase() as CommandPhase).getFieldIndex()); - }); - game.onNextPrompt("CommandPhase", Mode.FIGHT, () => { - const movePosition = getMovePosition(game.scene, 0, Moves.TACKLE); - (game.scene.getCurrentPhase() as CommandPhase).handleCommand(Command.FIGHT, movePosition, false); - }); + game.move.select(Moves.TACKLE); await game.phaseInterceptor.run(EnemyCommandPhase); const phase = game.scene.getCurrentPhase() as TurnStartPhase; const order = phase.getOrder(); @@ -81,7 +63,7 @@ describe("Battle order", () => { expect(order[1]).toBe(2); }, 20000); - it("double - both opponents faster than player 50/50 vs 150/150", async() => { + it("double - both opponents faster than player 50/50 vs 150/150", async () => { game.override.battleType("double"); await game.startBattle([ Species.BULBASAUR, @@ -92,28 +74,8 @@ describe("Battle order", () => { game.scene.currentBattle.enemyParty[0].stats[Stat.SPD] = 150; game.scene.currentBattle.enemyParty[1].stats[Stat.SPD] = 150; - game.onNextPrompt("CommandPhase", Mode.COMMAND, () => { - game.scene.ui.setMode(Mode.FIGHT, (game.scene.getCurrentPhase() as CommandPhase).getFieldIndex()); - }); - game.onNextPrompt("CommandPhase", Mode.FIGHT, () => { - const movePosition = getMovePosition(game.scene, 0, Moves.TACKLE); - (game.scene.getCurrentPhase() as CommandPhase).handleCommand(Command.FIGHT, movePosition, false); - }); - game.onNextPrompt("SelectTargetPhase", Mode.TARGET_SELECT, () => { - const handler = game.scene.ui.getHandler() as TargetSelectUiHandler; - handler.processInput(Button.ACTION); - }); - game.onNextPrompt("CommandPhase", Mode.COMMAND, () => { - game.scene.ui.setMode(Mode.FIGHT, (game.scene.getCurrentPhase() as CommandPhase).getFieldIndex()); - }); - game.onNextPrompt("CommandPhase", Mode.FIGHT, () => { - const movePosition = getMovePosition(game.scene, 0, Moves.TACKLE); - (game.scene.getCurrentPhase() as CommandPhase).handleCommand(Command.FIGHT, movePosition, false); - }); - game.onNextPrompt("SelectTargetPhase", Mode.TARGET_SELECT, () => { - const handler = game.scene.ui.getHandler() as TargetSelectUiHandler; - handler.processInput(Button.ACTION); - }); + game.move.select(Moves.TACKLE); + game.move.select(Moves.TACKLE, 1); await game.phaseInterceptor.runFrom(SelectTargetPhase).to(TurnStartPhase, false); const phase = game.scene.getCurrentPhase() as TurnStartPhase; const order = phase.getOrder(); @@ -123,7 +85,7 @@ describe("Battle order", () => { expect(order.indexOf(1)).toBeGreaterThan(order.indexOf(3)); }, 20000); - it("double - speed tie except 1 - 100/100 vs 100/150", async() => { + it("double - speed tie except 1 - 100/100 vs 100/150", async () => { game.override.battleType("double"); await game.startBattle([ Species.BULBASAUR, @@ -134,28 +96,8 @@ describe("Battle order", () => { game.scene.currentBattle.enemyParty[0].stats[Stat.SPD] = 100; game.scene.currentBattle.enemyParty[1].stats[Stat.SPD] = 150; - game.onNextPrompt("CommandPhase", Mode.COMMAND, () => { - game.scene.ui.setMode(Mode.FIGHT, (game.scene.getCurrentPhase() as CommandPhase).getFieldIndex()); - }); - game.onNextPrompt("CommandPhase", Mode.FIGHT, () => { - const movePosition = getMovePosition(game.scene, 0, Moves.TACKLE); - (game.scene.getCurrentPhase() as CommandPhase).handleCommand(Command.FIGHT, movePosition, false); - }); - game.onNextPrompt("SelectTargetPhase", Mode.TARGET_SELECT, () => { - const handler = game.scene.ui.getHandler() as TargetSelectUiHandler; - handler.processInput(Button.ACTION); - }); - game.onNextPrompt("CommandPhase", Mode.COMMAND, () => { - game.scene.ui.setMode(Mode.FIGHT, (game.scene.getCurrentPhase() as CommandPhase).getFieldIndex()); - }); - game.onNextPrompt("CommandPhase", Mode.FIGHT, () => { - const movePosition = getMovePosition(game.scene, 0, Moves.TACKLE); - (game.scene.getCurrentPhase() as CommandPhase).handleCommand(Command.FIGHT, movePosition, false); - }); - game.onNextPrompt("SelectTargetPhase", Mode.TARGET_SELECT, () => { - const handler = game.scene.ui.getHandler() as TargetSelectUiHandler; - handler.processInput(Button.ACTION); - }); + game.move.select(Moves.TACKLE); + game.move.select(Moves.TACKLE, 1); await game.phaseInterceptor.runFrom(SelectTargetPhase).to(TurnStartPhase, false); const phase = game.scene.getCurrentPhase() as TurnStartPhase; const order = phase.getOrder(); @@ -164,7 +106,7 @@ describe("Battle order", () => { expect(order.indexOf(3)).toBeLessThan(order.indexOf(2)); }, 20000); - it("double - speed tie 100/150 vs 100/150", async() => { + it("double - speed tie 100/150 vs 100/150", async () => { game.override.battleType("double"); await game.startBattle([ Species.BULBASAUR, @@ -175,28 +117,8 @@ describe("Battle order", () => { game.scene.currentBattle.enemyParty[0].stats[Stat.SPD] = 100; game.scene.currentBattle.enemyParty[1].stats[Stat.SPD] = 150; - game.onNextPrompt("CommandPhase", Mode.COMMAND, () => { - game.scene.ui.setMode(Mode.FIGHT, (game.scene.getCurrentPhase() as CommandPhase).getFieldIndex()); - }); - game.onNextPrompt("CommandPhase", Mode.FIGHT, () => { - const movePosition = getMovePosition(game.scene, 0, Moves.TACKLE); - (game.scene.getCurrentPhase() as CommandPhase).handleCommand(Command.FIGHT, movePosition, false); - }); - game.onNextPrompt("SelectTargetPhase", Mode.TARGET_SELECT, () => { - const handler = game.scene.ui.getHandler() as TargetSelectUiHandler; - handler.processInput(Button.ACTION); - }); - game.onNextPrompt("CommandPhase", Mode.COMMAND, () => { - game.scene.ui.setMode(Mode.FIGHT, (game.scene.getCurrentPhase() as CommandPhase).getFieldIndex()); - }); - game.onNextPrompt("CommandPhase", Mode.FIGHT, () => { - const movePosition = getMovePosition(game.scene, 0, Moves.TACKLE); - (game.scene.getCurrentPhase() as CommandPhase).handleCommand(Command.FIGHT, movePosition, false); - }); - game.onNextPrompt("SelectTargetPhase", Mode.TARGET_SELECT, () => { - const handler = game.scene.ui.getHandler() as TargetSelectUiHandler; - handler.processInput(Button.ACTION); - }); + game.move.select(Moves.TACKLE); + game.move.select(Moves.TACKLE, 1); await game.phaseInterceptor.runFrom(SelectTargetPhase).to(TurnStartPhase, false); const phase = game.scene.getCurrentPhase() as TurnStartPhase; const order = phase.getOrder(); diff --git a/src/test/battle/battle.test.ts b/src/test/battle/battle.test.ts index 43d8ddce4b0..be89fdeb2af 100644 --- a/src/test/battle/battle.test.ts +++ b/src/test/battle/battle.test.ts @@ -1,10 +1,23 @@ import { allSpecies } from "#app/data/pokemon-species"; -import { TempBattleStat } from "#app/data/temp-battle-stat.js"; -import { GameModes } from "#app/game-mode"; -import { getGameMode } from "#app/game-mode.js"; +import { TempBattleStat } from "#app/data/temp-battle-stat"; +import { GameModes, getGameMode } from "#app/game-mode"; +import { BattleEndPhase } from "#app/phases/battle-end-phase"; +import { CommandPhase } from "#app/phases/command-phase"; +import { DamagePhase } from "#app/phases/damage-phase"; +import { EncounterPhase } from "#app/phases/encounter-phase"; +import { EnemyCommandPhase } from "#app/phases/enemy-command-phase"; +import { LoginPhase } from "#app/phases/login-phase"; +import { NextEncounterPhase } from "#app/phases/next-encounter-phase"; +import { SelectGenderPhase } from "#app/phases/select-gender-phase"; +import { SelectModifierPhase } from "#app/phases/select-modifier-phase"; +import { SelectStarterPhase } from "#app/phases/select-starter-phase"; +import { SummonPhase } from "#app/phases/summon-phase"; +import { SwitchPhase } from "#app/phases/switch-phase"; +import { TitlePhase } from "#app/phases/title-phase"; +import { TurnInitPhase } from "#app/phases/turn-init-phase"; +import { VictoryPhase } from "#app/phases/victory-phase"; import GameManager from "#app/test/utils/gameManager"; -import { generateStarter, getMovePosition, } from "#app/test/utils/gameManagerUtils"; -import { Command } from "#app/ui/command-ui-handler"; +import { generateStarter } from "#app/test/utils/gameManagerUtils"; import { Mode } from "#app/ui/ui"; import { Abilities } from "#enums/abilities"; import { Moves } from "#enums/moves"; @@ -13,21 +26,6 @@ import { Species } from "#enums/species"; import Phaser from "phaser"; import { afterEach, beforeAll, beforeEach, describe, expect, it } from "vitest"; import { SPLASH_ONLY } from "../utils/testUtils"; -import { BattleEndPhase } from "#app/phases/battle-end-phase.js"; -import { CommandPhase } from "#app/phases/command-phase.js"; -import { DamagePhase } from "#app/phases/damage-phase.js"; -import { EncounterPhase } from "#app/phases/encounter-phase.js"; -import { EnemyCommandPhase } from "#app/phases/enemy-command-phase.js"; -import { LoginPhase } from "#app/phases/login-phase.js"; -import { NextEncounterPhase } from "#app/phases/next-encounter-phase.js"; -import { SelectGenderPhase } from "#app/phases/select-gender-phase.js"; -import { SelectModifierPhase } from "#app/phases/select-modifier-phase.js"; -import { SelectStarterPhase } from "#app/phases/select-starter-phase.js"; -import { SummonPhase } from "#app/phases/summon-phase.js"; -import { SwitchPhase } from "#app/phases/switch-phase.js"; -import { TitlePhase } from "#app/phases/title-phase.js"; -import { TurnInitPhase } from "#app/phases/turn-init-phase.js"; -import { VictoryPhase } from "#app/phases/victory-phase.js"; describe("Test Battle Phase", () => { let phaserGame: Phaser.Game; @@ -45,9 +43,10 @@ describe("Test Battle Phase", () => { beforeEach(() => { game = new GameManager(phaserGame); + game.scene.gameData.gender = undefined!; // just for these tests! }); - it("test phase interceptor with prompt", async() => { + it("test phase interceptor with prompt", async () => { await game.phaseInterceptor.run(LoginPhase); game.onNextPrompt("SelectGenderPhase", Mode.OPTION_SELECT, () => { @@ -65,7 +64,7 @@ describe("Test Battle Phase", () => { expect(game.scene.gameData.gender).toBe(PlayerGender.MALE); }, 20000); - it("test phase interceptor with prompt with preparation for a future prompt", async() => { + it("test phase interceptor with prompt with preparation for a future prompt", async () => { await game.phaseInterceptor.run(LoginPhase); game.onNextPrompt("SelectGenderPhase", Mode.OPTION_SELECT, () => { @@ -87,13 +86,13 @@ describe("Test Battle Phase", () => { expect(game.scene.gameData.gender).toBe(PlayerGender.MALE); }, 20000); - it("newGame one-liner", async() => { + it("newGame one-liner", async () => { await game.startBattle(); expect(game.scene.ui?.getMode()).toBe(Mode.COMMAND); expect(game.scene.getCurrentPhase()!.constructor.name).toBe(CommandPhase.name); }, 20000); - it("do attack wave 3 - single battle - regular - OHKO", async() => { + it("do attack wave 3 - single battle - regular - OHKO", async () => { game.override.starterSpecies(Species.MEWTWO); game.override.enemySpecies(Species.RATTATA); game.override.startingLevel(2000); @@ -104,17 +103,11 @@ describe("Test Battle Phase", () => { game.override.enemyAbility(Abilities.HYDRATION); game.override.enemyMoveset([Moves.TACKLE, Moves.TACKLE, Moves.TACKLE, Moves.TACKLE]); await game.startBattle(); - game.onNextPrompt("CommandPhase", Mode.COMMAND, () => { - game.scene.ui.setMode(Mode.FIGHT, (game.scene.getCurrentPhase() as CommandPhase).getFieldIndex()); - }); - game.onNextPrompt("CommandPhase", Mode.FIGHT, () => { - const movePosition = getMovePosition(game.scene, 0, Moves.TACKLE); - (game.scene.getCurrentPhase() as CommandPhase).handleCommand(Command.FIGHT, movePosition, false); - }); + game.move.select(Moves.TACKLE); await game.phaseInterceptor.runFrom(EnemyCommandPhase).to(SelectModifierPhase, false); }, 20000); - it("do attack wave 3 - single battle - regular - NO OHKO with opponent using non damage attack", async() => { + it("do attack wave 3 - single battle - regular - NO OHKO with opponent using non damage attack", async () => { game.override.starterSpecies(Species.MEWTWO); game.override.enemySpecies(Species.RATTATA); game.override.startingLevel(5); @@ -124,17 +117,11 @@ describe("Test Battle Phase", () => { game.override.enemyMoveset([Moves.TAIL_WHIP, Moves.TAIL_WHIP, Moves.TAIL_WHIP, Moves.TAIL_WHIP]); game.override.battleType("single"); await game.startBattle(); - game.onNextPrompt("CommandPhase", Mode.COMMAND, () => { - game.scene.ui.setMode(Mode.FIGHT, (game.scene.getCurrentPhase() as CommandPhase).getFieldIndex()); - }); - game.onNextPrompt("CommandPhase", Mode.FIGHT, () => { - const movePosition = getMovePosition(game.scene, 0, Moves.TACKLE); - (game.scene.getCurrentPhase() as CommandPhase).handleCommand(Command.FIGHT, movePosition, false); - }); + game.move.select(Moves.TACKLE); await game.phaseInterceptor.runFrom(EnemyCommandPhase).to(TurnInitPhase, false); }, 20000); - it("load 100% data file", async() => { + it("load 100% data file", async () => { await game.importData("src/test/utils/saves/everything.prsv"); const caughtCount = Object.keys(game.scene.gameData.dexData).filter((key) => { const species = game.scene.gameData.dexData[key]; @@ -143,7 +130,7 @@ describe("Test Battle Phase", () => { expect(caughtCount).toBe(Object.keys(allSpecies).length); }, 20000); - it("start battle with selected team", async() => { + it("start battle with selected team", async () => { await game.startBattle([ Species.CHARIZARD, Species.CHANSEY, @@ -154,26 +141,26 @@ describe("Test Battle Phase", () => { expect(game.scene.getParty()[2].species.speciesId).toBe(Species.MEW); }, 20000); - it("test remove random battle seed int", async() => { - for (let i=0; i<10; i++) { + it("test remove random battle seed int", async () => { + for (let i = 0; i < 10; i++) { const rand = game.scene.randBattleSeedInt(16); expect(rand).toBe(15); } }); - it("wrong phase", async() => { + it("wrong phase", async () => { await game.phaseInterceptor.run(LoginPhase); await game.phaseInterceptor.run(LoginPhase).catch((e) => { expect(e).toBe("Wrong phase: this is SelectGenderPhase and not LoginPhase"); }); }, 20000); - it("wrong phase but skip", async() => { + it("wrong phase but skip", async () => { await game.phaseInterceptor.run(LoginPhase); await game.phaseInterceptor.run(LoginPhase, () => game.isCurrentPhase(SelectGenderPhase)); }, 20000); - it("good run", async() => { + it("good run", async () => { await game.phaseInterceptor.run(LoginPhase); game.onNextPrompt("SelectGenderPhase", Mode.OPTION_SELECT, () => { game.scene.gameData.gender = PlayerGender.MALE; @@ -183,7 +170,7 @@ describe("Test Battle Phase", () => { await game.phaseInterceptor.run(TitlePhase); }, 20000); - it("good run from select gender to title", async() => { + it("good run from select gender to title", async () => { await game.phaseInterceptor.run(LoginPhase); game.onNextPrompt("SelectGenderPhase", Mode.OPTION_SELECT, () => { game.scene.gameData.gender = PlayerGender.MALE; @@ -192,7 +179,7 @@ describe("Test Battle Phase", () => { await game.phaseInterceptor.runFrom(SelectGenderPhase).to(TitlePhase); }, 20000); - it("good run to SummonPhase phase", async() => { + it("good run to SummonPhase phase", async () => { await game.phaseInterceptor.run(LoginPhase); game.onNextPrompt("SelectGenderPhase", Mode.OPTION_SELECT, () => { game.scene.gameData.gender = PlayerGender.MALE; @@ -208,7 +195,7 @@ describe("Test Battle Phase", () => { await game.phaseInterceptor.runFrom(SelectGenderPhase).to(SummonPhase); }, 20000); - it("2vs1", async() => { + it("2vs1", async () => { game.override.battleType("single"); game.override.enemySpecies(Species.MIGHTYENA); game.override.enemyAbility(Abilities.HYDRATION); @@ -221,7 +208,7 @@ describe("Test Battle Phase", () => { expect(game.scene.getCurrentPhase()!.constructor.name).toBe(CommandPhase.name); }, 20000); - it("1vs1", async() => { + it("1vs1", async () => { game.override.battleType("single"); game.override.enemySpecies(Species.MIGHTYENA); game.override.enemyAbility(Abilities.HYDRATION); @@ -233,7 +220,7 @@ describe("Test Battle Phase", () => { expect(game.scene.getCurrentPhase()!.constructor.name).toBe(CommandPhase.name); }, 20000); - it("2vs2", async() => { + it("2vs2", async () => { game.override.battleType("double"); game.override.enemySpecies(Species.MIGHTYENA); game.override.enemyAbility(Abilities.HYDRATION); @@ -247,7 +234,7 @@ describe("Test Battle Phase", () => { expect(game.scene.getCurrentPhase()!.constructor.name).toBe(CommandPhase.name); }, 20000); - it("4vs2", async() => { + it("4vs2", async () => { game.override.battleType("double"); game.override.enemySpecies(Species.MIGHTYENA); game.override.enemyAbility(Abilities.HYDRATION); @@ -263,7 +250,7 @@ describe("Test Battle Phase", () => { expect(game.scene.getCurrentPhase()!.constructor.name).toBe(CommandPhase.name); }, 20000); - it("kill opponent pokemon", async() => { + it("kill opponent pokemon", async () => { const moveToUse = Moves.SPLASH; game.override.battleType("single"); game.override.starterSpecies(Species.MEWTWO); @@ -273,26 +260,20 @@ describe("Test Battle Phase", () => { game.override.startingLevel(2000); game.override.startingWave(3); game.override.moveset([moveToUse]); - game.override.enemyMoveset([Moves.TACKLE,Moves.TACKLE,Moves.TACKLE,Moves.TACKLE]); + game.override.enemyMoveset([Moves.TACKLE, Moves.TACKLE, Moves.TACKLE, Moves.TACKLE]); await game.startBattle([ Species.DARMANITAN, Species.CHARIZARD, ]); - game.onNextPrompt("CommandPhase", Mode.COMMAND, () => { - game.scene.ui.setMode(Mode.FIGHT, (game.scene.getCurrentPhase() as CommandPhase).getFieldIndex()); - }); - game.onNextPrompt("CommandPhase", Mode.FIGHT, () => { - const movePosition = getMovePosition(game.scene, 0, moveToUse); - (game.scene.getCurrentPhase() as CommandPhase).handleCommand(Command.FIGHT, movePosition, false); - }); + game.move.select(moveToUse); await game.phaseInterceptor.to(DamagePhase, false); await game.killPokemon(game.scene.currentBattle.enemyParty[0]); expect(game.scene.currentBattle.enemyParty[0].isFainted()).toBe(true); await game.phaseInterceptor.to(VictoryPhase, false); }, 200000); - it("to next turn", async() => { + it("to next turn", async () => { const moveToUse = Moves.SPLASH; game.override.battleType("single"); game.override.starterSpecies(Species.MEWTWO); @@ -302,15 +283,15 @@ describe("Test Battle Phase", () => { game.override.startingLevel(2000); game.override.startingWave(3); game.override.moveset([moveToUse]); - game.override.enemyMoveset([Moves.TACKLE,Moves.TACKLE,Moves.TACKLE,Moves.TACKLE]); + game.override.enemyMoveset([Moves.TACKLE, Moves.TACKLE, Moves.TACKLE, Moves.TACKLE]); await game.startBattle(); const turn = game.scene.currentBattle.turn; - game.doAttack(0); + game.move.select(moveToUse); await game.toNextTurn(); expect(game.scene.currentBattle.turn).toBeGreaterThan(turn); }, 20000); - it("to next wave with pokemon killed, single", async() => { + it("to next wave with pokemon killed, single", async () => { const moveToUse = Moves.SPLASH; game.override.battleType("single"); game.override.starterSpecies(Species.MEWTWO); @@ -320,10 +301,10 @@ describe("Test Battle Phase", () => { game.override.startingLevel(2000); game.override.startingWave(3); game.override.moveset([moveToUse]); - game.override.enemyMoveset([Moves.TACKLE,Moves.TACKLE,Moves.TACKLE,Moves.TACKLE]); + game.override.enemyMoveset([Moves.TACKLE, Moves.TACKLE, Moves.TACKLE, Moves.TACKLE]); await game.startBattle(); const waveIndex = game.scene.currentBattle.waveIndex; - game.doAttack(0); + game.move.select(moveToUse); await game.doKillOpponents(); await game.toNextWave(); expect(game.scene.currentBattle.waveIndex).toBeGreaterThan(waveIndex); @@ -343,7 +324,7 @@ describe("Test Battle Phase", () => { await game.startBattle(); game.scene.getPlayerPokemon()!.hp = 1; - game.doAttack(getMovePosition(game.scene, 0, moveToUse)); + game.move.select(moveToUse); await game.phaseInterceptor.to(BattleEndPhase); game.doRevivePokemon(0); // pretend max revive was picked diff --git a/src/test/battle/damage_calculation.test.ts b/src/test/battle/damage_calculation.test.ts new file mode 100644 index 00000000000..665000450be --- /dev/null +++ b/src/test/battle/damage_calculation.test.ts @@ -0,0 +1,70 @@ +import { DamagePhase } from "#app/phases/damage-phase.js"; +import { toDmgValue } from "#app/utils"; +import { Abilities } from "#enums/abilities"; +import { ArenaTagType } from "#enums/arena-tag-type"; +import { Moves } from "#enums/moves"; +import { Species } from "#enums/species"; +import GameManager from "#test/utils/gameManager"; +import { SPLASH_ONLY } from "#test/utils/testUtils"; +import Phaser from "phaser"; +import { afterEach, beforeAll, beforeEach, describe, expect, it } from "vitest"; + +describe("Round Down and Minimun 1 test in Damage Calculation", () => { + let phaserGame: Phaser.Game; + let game: GameManager; + + beforeAll(() => { + phaserGame = new Phaser.Game({ + type: Phaser.HEADLESS, + }); + }); + + afterEach(() => { + game.phaseInterceptor.restoreOg(); + }); + + beforeEach(() => { + game = new GameManager(phaserGame); + game.override.battleType("single"); + game.override.startingLevel(10); + }); + + it("When the user fails to use Jump Kick with Wonder Guard ability, the damage should be 1.", async () => { + game.override.enemySpecies(Species.GASTLY); + game.override.enemyMoveset(SPLASH_ONLY); + game.override.starterSpecies(Species.SHEDINJA); + game.override.moveset([Moves.JUMP_KICK]); + game.override.ability(Abilities.WONDER_GUARD); + + await game.startBattle(); + + const shedinja = game.scene.getPlayerPokemon()!; + + game.move.select(Moves.JUMP_KICK); + + await game.phaseInterceptor.to(DamagePhase); + + expect(shedinja.hp).toBe(shedinja.getMaxHp() - 1); + }); + + + it("Charizard with odd HP survives Stealth Rock damage twice", async () => { + game.scene.arena.addTag(ArenaTagType.STEALTH_ROCK, 1, Moves.STEALTH_ROCK, 0); + game.override.seed("Charizard Stealth Rock test"); + game.override.enemySpecies(Species.CHARIZARD); + game.override.enemyAbility(Abilities.BLAZE); + game.override.starterSpecies(Species.PIKACHU); + game.override.enemyLevel(100); + + await game.startBattle(); + + const charizard = game.scene.getEnemyPokemon()!; + + const maxHp = charizard.getMaxHp(); + const damage_prediction = toDmgValue(charizard.getMaxHp() / 2); + const currentHp = charizard.hp; + const expectedHP = maxHp - damage_prediction; + + expect(currentHp).toBe(expectedHP); + }); +}); diff --git a/src/test/battle/double_battle.test.ts b/src/test/battle/double_battle.test.ts index d2ee3812b3e..d264a29ef9b 100644 --- a/src/test/battle/double_battle.test.ts +++ b/src/test/battle/double_battle.test.ts @@ -1,13 +1,12 @@ -import GameManager from "#test/utils/gameManager"; -import { getMovePosition, } from "#test/utils/gameManagerUtils"; +import { Status, StatusEffect } from "#app/data/status-effect"; +import { BattleEndPhase } from "#app/phases/battle-end-phase"; +import { TurnInitPhase } from "#app/phases/turn-init-phase"; import { Moves } from "#enums/moves"; import { Species } from "#enums/species"; +import GameManager from "#test/utils/gameManager"; +import { SPLASH_ONLY } from "#test/utils/testUtils"; import Phaser from "phaser"; import { afterEach, beforeAll, beforeEach, describe, expect, it } from "vitest"; -import { SPLASH_ONLY } from "#test/utils/testUtils"; -import { Status, StatusEffect } from "#app/data/status-effect.js"; -import { BattleEndPhase } from "#app/phases/battle-end-phase.js"; -import { TurnInitPhase } from "#app/phases/turn-init-phase.js"; describe("Double Battles", () => { let phaserGame: Phaser.Game; @@ -29,7 +28,7 @@ describe("Double Battles", () => { // double-battle player's pokemon both fainted in same round, then revive one, and next double battle summons two player's pokemon successfully. // (There were bugs that either only summon one when can summon two, player stuck in switchPhase etc) - it("3v2 edge case: player summons 2 pokemon on the next battle after being fainted and revived", async() => { + it("3v2 edge case: player summons 2 pokemon on the next battle after being fainted and revived", async () => { game.override.battleType("double").enemyMoveset(SPLASH_ONLY).moveset(SPLASH_ONLY); await game.startBattle([ Species.BULBASAUR, @@ -37,8 +36,8 @@ describe("Double Battles", () => { Species.SQUIRTLE, ]); - game.doAttack(getMovePosition(game.scene, 0, Moves.SPLASH)); - game.doAttack(getMovePosition(game.scene, 1, Moves.SPLASH)); + game.move.select(Moves.SPLASH); + game.move.select(Moves.SPLASH, 1); for (const pokemon of game.scene.getPlayerField()) { pokemon.hp = 0; diff --git a/src/test/battle/error-handling.test.ts b/src/test/battle/error-handling.test.ts index a88d7cd8c18..da5cc4d1969 100644 --- a/src/test/battle/error-handling.test.ts +++ b/src/test/battle/error-handling.test.ts @@ -1,13 +1,14 @@ -import GameManager from "#test/utils/gameManager"; import { Abilities } from "#enums/abilities"; import { Moves } from "#enums/moves"; import { Species } from "#enums/species"; +import GameManager from "#test/utils/gameManager"; import Phaser from "phaser"; import { afterEach, beforeAll, beforeEach, describe, expect, it } from "vitest"; describe("Error Handling", () => { let phaserGame: Phaser.Game; let game: GameManager; + const moveToUse = Moves.SPLASH; beforeAll(() => { phaserGame = new Phaser.Game({ @@ -21,7 +22,6 @@ describe("Error Handling", () => { beforeEach(() => { game = new GameManager(phaserGame); - const moveToUse = Moves.SPLASH; game.override .battleType("single") .startingWave(3); @@ -31,13 +31,13 @@ describe("Error Handling", () => { game.override.ability(Abilities.ZEN_MODE); game.override.startingLevel(2000); game.override.moveset([moveToUse]); - game.override.enemyMoveset([Moves.TACKLE,Moves.TACKLE,Moves.TACKLE,Moves.TACKLE]); + game.override.enemyMoveset([Moves.TACKLE, Moves.TACKLE, Moves.TACKLE, Moves.TACKLE]); }); - it.skip("to next turn", async() => { + it.skip("to next turn", async () => { await game.startBattle(); const turn = game.scene.currentBattle.turn; - game.doAttack(0); + game.move.select(moveToUse); await game.toNextTurn(); expect(game.scene.currentBattle.turn).toBeGreaterThan(turn); }, 20000); diff --git a/src/test/battle/inverse_battle.test.ts b/src/test/battle/inverse_battle.test.ts new file mode 100644 index 00000000000..be8b04155eb --- /dev/null +++ b/src/test/battle/inverse_battle.test.ts @@ -0,0 +1,203 @@ +import { BattlerIndex } from "#app/battle"; +import { allMoves } from "#app/data/move"; +import { Type } from "#app/data/type"; +import { MoveEndPhase } from "#app/phases/move-end-phase"; +import { TurnEndPhase } from "#app/phases/turn-end-phase"; +import { Abilities } from "#enums/abilities"; +import { ArenaTagType } from "#enums/arena-tag-type"; +import { Challenges } from "#enums/challenges"; +import { Moves } from "#enums/moves"; +import { Species } from "#enums/species"; +import { StatusEffect } from "#enums/status-effect"; +import GameManager from "#test/utils/gameManager"; +import Phaser from "phaser"; +import { afterEach, beforeAll, beforeEach, describe, expect, it } from "vitest"; + +const TIMEOUT = 20 * 1000; + +describe("Inverse Battle", () => { + let phaserGame: Phaser.Game; + let game: GameManager; + + beforeAll(() => { + phaserGame = new Phaser.Game({ + type: Phaser.HEADLESS, + }); + }); + + afterEach(() => { + game.phaseInterceptor.restoreOg(); + }); + + beforeEach(() => { + game = new GameManager(phaserGame); + + game.challengeMode.addChallenge(Challenges.INVERSE_BATTLE, 1, 1); + + game.override + .battleType("single") + .starterSpecies(Species.FEEBAS) + .ability(Abilities.BALL_FETCH) + .enemySpecies(Species.MAGIKARP) + .enemyAbility(Abilities.BALL_FETCH); + }); + + it("1. immune types are 2x effective - Thunderbolt against Ground Type", async () => { + game.override.enemySpecies(Species.SANDSHREW); + + await game.challengeMode.startBattle(); + + const player = game.scene.getPlayerPokemon()!; + const enemy = game.scene.getEnemyPokemon()!; + + expect(enemy.getMoveEffectiveness(player, allMoves[Moves.THUNDERBOLT])).toBe(2); + }, TIMEOUT); + + it("2. 2x effective types are 0.5x effective - Thunderbolt against Flying Type", async () => { + game.override.enemySpecies(Species.PIDGEY); + + await game.challengeMode.startBattle(); + + const player = game.scene.getPlayerPokemon()!; + const enemy = game.scene.getEnemyPokemon()!; + + expect(enemy.getMoveEffectiveness(player, allMoves[Moves.THUNDERBOLT])).toBe(0.5); + }, TIMEOUT); + + it("3. 0.5x effective types are 2x effective - Thunderbolt against Electric Type", async () => { + game.override.enemySpecies(Species.CHIKORITA); + + await game.challengeMode.startBattle(); + + const player = game.scene.getPlayerPokemon()!; + const enemy = game.scene.getEnemyPokemon()!; + + expect(enemy.getMoveEffectiveness(player, allMoves[Moves.THUNDERBOLT])).toBe(2); + }, TIMEOUT); + + it("4. Stealth Rock follows the inverse matchups - Stealth Rock against Charizard deals 1/32 of max HP", async () => { + game.scene.arena.addTag(ArenaTagType.STEALTH_ROCK, 1, Moves.STEALTH_ROCK, 0); + game.override + .enemySpecies(Species.CHARIZARD) + .enemyLevel(100); + + await game.challengeMode.startBattle(); + + const charizard = game.scene.getEnemyPokemon()!; + + const maxHp = charizard.getMaxHp(); + const damage_prediction = Math.max(Math.round(charizard.getMaxHp() / 32), 1); + console.log("Damage calcuation before round: " + charizard.getMaxHp() / 32); + const currentHp = charizard.hp; + const expectedHP = maxHp - damage_prediction; + + console.log("Charizard's max HP: " + maxHp, "Damage: " + damage_prediction, "Current HP: " + currentHp, "Expected HP: " + expectedHP); + expect(currentHp).toBeGreaterThan(maxHp * 31 / 32 - 1); + }, TIMEOUT); + + it("5. Freeze Dry is 2x effective against Water Type like other Ice type Move - Freeze Dry against Squirtle", async () => { + game.override.enemySpecies(Species.SQUIRTLE); + + await game.challengeMode.startBattle(); + + const player = game.scene.getPlayerPokemon()!; + const enemy = game.scene.getEnemyPokemon()!; + + expect(enemy.getMoveEffectiveness(player, allMoves[Moves.FREEZE_DRY])).toBe(2); + }, TIMEOUT); + + it("6. Water Absorb should heal against water moves - Water Absorb against Water gun", async () => { + game.override + .moveset([Moves.WATER_GUN]) + .enemyAbility(Abilities.WATER_ABSORB); + + await game.challengeMode.startBattle(); + + const enemy = game.scene.getEnemyPokemon()!; + enemy.hp = enemy.getMaxHp() - 1; + game.move.select(Moves.WATER_GUN); + await game.setTurnOrder([BattlerIndex.PLAYER, BattlerIndex.ENEMY]); + + await game.phaseInterceptor.to(MoveEndPhase); + + expect(enemy.hp).toBe(enemy.getMaxHp()); + }, TIMEOUT); + + it("7. Fire type does not get burned - Will-O-Wisp against Charmander", async () => { + game.override + .moveset([Moves.WILL_O_WISP]) + .enemySpecies(Species.CHARMANDER); + + await game.challengeMode.startBattle(); + + const enemy = game.scene.getEnemyPokemon()!; + + game.move.select(Moves.WILL_O_WISP); + await game.setTurnOrder([BattlerIndex.PLAYER, BattlerIndex.ENEMY]); + await game.move.forceHit(); + + await game.phaseInterceptor.to(MoveEndPhase); + + expect(enemy.status?.effect).not.toBe(StatusEffect.BURN); + }, TIMEOUT); + + it("8. Electric type does not get paralyzed - Nuzzle against Pikachu", async () => { + game.override + .moveset([Moves.NUZZLE]) + .enemySpecies(Species.PIKACHU) + .enemyLevel(50); + + await game.challengeMode.startBattle(); + + const enemy = game.scene.getEnemyPokemon()!; + + game.move.select(Moves.NUZZLE); + await game.setTurnOrder([BattlerIndex.PLAYER, BattlerIndex.ENEMY]); + + await game.phaseInterceptor.to(MoveEndPhase); + + expect(enemy.status?.effect).not.toBe(StatusEffect.PARALYSIS); + }, TIMEOUT); + + + it("10. Anticipation should trigger on 2x effective moves - Anticipation against Thunderbolt", async () => { + game.override + .moveset([Moves.THUNDERBOLT]) + .enemySpecies(Species.SANDSHREW) + .enemyAbility(Abilities.ANTICIPATION); + + await game.challengeMode.startBattle(); + + expect(game.scene.getEnemyPokemon()?.summonData.abilitiesApplied[0]).toBe(Abilities.ANTICIPATION); + }, TIMEOUT); + + it("11. Conversion 2 should change the type to the resistive type - Conversion 2 against Dragonite", async () => { + game.override + .moveset([Moves.CONVERSION_2]) + .enemyMoveset([Moves.DRAGON_CLAW, Moves.DRAGON_CLAW, Moves.DRAGON_CLAW, Moves.DRAGON_CLAW]); + + await game.challengeMode.startBattle(); + + const player = game.scene.getPlayerPokemon()!; + + game.move.select(Moves.CONVERSION_2); + await game.setTurnOrder([BattlerIndex.ENEMY, BattlerIndex.PLAYER]); + + await game.phaseInterceptor.to(TurnEndPhase); + + expect(player.getTypes()[0]).toBe(Type.DRAGON); + }, TIMEOUT); + + it("12. Flying Press should be 0.25x effective against Grass + Dark Type - Flying Press against Meowscarada", async () => { + game.override + .moveset([Moves.FLYING_PRESS]) + .enemySpecies(Species.MEOWSCARADA); + + await game.challengeMode.startBattle(); + + const player = game.scene.getPlayerPokemon()!; + const enemy = game.scene.getEnemyPokemon()!; + + expect(enemy.getMoveEffectiveness(player, allMoves[Moves.FLYING_PRESS])).toBe(0.25); + }, TIMEOUT); +}); diff --git a/src/test/battle/special_battle.test.ts b/src/test/battle/special_battle.test.ts index 9b0fd1b3ab1..1d319bea372 100644 --- a/src/test/battle/special_battle.test.ts +++ b/src/test/battle/special_battle.test.ts @@ -1,9 +1,9 @@ -import { CommandPhase } from "#app/phases/command-phase.js"; -import GameManager from "#test/utils/gameManager"; +import { CommandPhase } from "#app/phases/command-phase"; import { Mode } from "#app/ui/ui"; import { Abilities } from "#enums/abilities"; import { Moves } from "#enums/moves"; import { Species } from "#enums/species"; +import GameManager from "#test/utils/gameManager"; import Phaser from "phaser"; import { afterEach, beforeAll, beforeEach, describe, expect, it } from "vitest"; diff --git a/src/test/battlerTags/octolock.test.ts b/src/test/battlerTags/octolock.test.ts index a69b45cdfd2..fa491589f09 100644 --- a/src/test/battlerTags/octolock.test.ts +++ b/src/test/battlerTags/octolock.test.ts @@ -1,10 +1,10 @@ +import BattleScene from "#app/battle-scene"; +import { BattleStat } from "#app/data/battle-stat"; +import { BattlerTag, BattlerTagLapseType, OctolockTag, TrappedTag } from "#app/data/battler-tags"; +import { BattlerTagType } from "#app/enums/battler-tag-type"; +import Pokemon from "#app/field/pokemon"; +import { StatChangePhase } from "#app/phases/stat-change-phase"; import { describe, expect, it, vi } from "vitest"; -import Pokemon from "#app/field/pokemon.js"; -import BattleScene from "#app/battle-scene.js"; -import { BattlerTag, BattlerTagLapseType, OctolockTag, TrappedTag } from "#app/data/battler-tags.js"; -import { BattleStat } from "#app/data/battle-stat.js"; -import { BattlerTagType } from "#app/enums/battler-tag-type.js"; -import { StatChangePhase } from "#app/phases/stat-change-phase.js"; vi.mock("#app/battle-scene.js"); diff --git a/src/test/battlerTags/stockpiling.test.ts b/src/test/battlerTags/stockpiling.test.ts index 1a39d11e1bd..fef1e938c09 100644 --- a/src/test/battlerTags/stockpiling.test.ts +++ b/src/test/battlerTags/stockpiling.test.ts @@ -1,10 +1,10 @@ +import BattleScene from "#app/battle-scene"; +import { BattleStat } from "#app/data/battle-stat"; +import { StockpilingTag } from "#app/data/battler-tags"; +import Pokemon, { PokemonSummonData } from "#app/field/pokemon"; +import * as messages from "#app/messages"; +import { StatChangePhase } from "#app/phases/stat-change-phase"; import { beforeEach, describe, expect, it, vi } from "vitest"; -import Pokemon, { PokemonSummonData } from "#app/field/pokemon.js"; -import BattleScene from "#app/battle-scene.js"; -import { StockpilingTag } from "#app/data/battler-tags.js"; -import { BattleStat } from "#app/data/battle-stat.js"; -import * as messages from "#app/messages.js"; -import { StatChangePhase } from "#app/phases/stat-change-phase.js"; beforeEach(() => { vi.spyOn(messages, "getPokemonNameWithAffix").mockImplementation(() => ""); diff --git a/src/test/eggs/egg.test.ts b/src/test/eggs/egg.test.ts index 0bc2972e2dc..28f1b7f0a6c 100644 --- a/src/test/eggs/egg.test.ts +++ b/src/test/eggs/egg.test.ts @@ -1,14 +1,13 @@ -import { afterEach, beforeAll, beforeEach, describe, expect, it, vi } from "vitest"; -import BattleScene from "../../battle-scene"; -import { Egg, getLegendaryGachaSpeciesForTimestamp } from "#app/data/egg.js"; +import { Egg, getLegendaryGachaSpeciesForTimestamp } from "#app/data/egg"; +import { EggSourceType } from "#app/enums/egg-source-types"; +import { EggTier } from "#app/enums/egg-type"; +import { VariantTier } from "#app/enums/variant-tiers"; +import EggData from "#app/system/egg-data"; +import * as Utils from "#app/utils"; import { Species } from "#enums/species"; -import Phaser from "phaser"; -import { EggSourceType } from "#app/enums/egg-source-types.js"; -import { EggTier } from "#app/enums/egg-type.js"; -import { VariantTier } from "#app/enums/variant-tiers.js"; import GameManager from "#test/utils/gameManager"; -import EggData from "#app/system/egg-data.js"; -import * as Utils from "#app/utils.js"; +import Phaser from "phaser"; +import { afterEach, beforeAll, beforeEach, describe, expect, it, vi } from "vitest"; describe("Egg Generation Tests", () => { let phaserGame: Phaser.Game; @@ -18,6 +17,7 @@ describe("Egg Generation Tests", () => { phaserGame = new Phaser.Game({ type: Phaser.HEADLESS, }); + game = new GameManager(phaserGame); }); afterEach(() => { @@ -25,13 +25,12 @@ describe("Egg Generation Tests", () => { vi.restoreAllMocks(); }); - beforeEach(async() => { - game = new GameManager(phaserGame); + beforeEach(async () => { await game.importData("src/test/utils/saves/everything.prsv"); }); it("should return Arceus for the 10th of June", () => { - const scene = new BattleScene(); + const scene = game.scene; const timestamp = new Date(2024, 5, 10, 15, 0, 0, 0).getTime(); const expectedSpecies = Species.ARCEUS; @@ -40,7 +39,7 @@ describe("Egg Generation Tests", () => { expect(result).toBe(expectedSpecies); }); it("should return Arceus for the 10th of July", () => { - const scene = new BattleScene(); + const scene = game.scene; const timestamp = new Date(2024, 6, 10, 15, 0, 0, 0).getTime(); const expectedSpecies = Species.ARCEUS; @@ -48,12 +47,12 @@ describe("Egg Generation Tests", () => { expect(result).toBe(expectedSpecies); }); - it("should hatch an Arceus. Set from legendary gacha", async() => { + it("should hatch an Arceus. Set from legendary gacha", async () => { const scene = game.scene; const timestamp = new Date(2024, 6, 10, 15, 0, 0, 0).getTime(); const expectedSpecies = Species.ARCEUS; - const result = new Egg({scene, timestamp, sourceType: EggSourceType.GACHA_LEGENDARY, tier: EggTier.MASTER}).generatePlayerPokemon(scene).species.speciesId; + const result = new Egg({ scene, timestamp, sourceType: EggSourceType.GACHA_LEGENDARY, tier: EggTier.MASTER }).generatePlayerPokemon(scene).species.speciesId; expect(result).toBe(expectedSpecies); }); @@ -61,7 +60,7 @@ describe("Egg Generation Tests", () => { const scene = game.scene; const expectedSpecies = Species.ARCEUS; - const result = new Egg({scene,species: expectedSpecies}).generatePlayerPokemon(scene).species.speciesId; + const result = new Egg({ scene, species: expectedSpecies }).generatePlayerPokemon(scene).species.speciesId; expect(result).toBe(expectedSpecies); }); @@ -69,7 +68,7 @@ describe("Egg Generation Tests", () => { const scene = game.scene; const expectedTier = EggTier.COMMON; - const result = new Egg({scene, tier: expectedTier}).tier; + const result = new Egg({ scene, tier: expectedTier }).tier; expect(result).toBe(expectedTier); }); @@ -77,7 +76,7 @@ describe("Egg Generation Tests", () => { const scene = game.scene; const expectedTier = EggTier.GREAT; - const result = new Egg({scene, tier: expectedTier}).tier; + const result = new Egg({ scene, tier: expectedTier }).tier; expect(result).toBe(expectedTier); }); @@ -85,7 +84,7 @@ describe("Egg Generation Tests", () => { const scene = game.scene; const expectedTier = EggTier.ULTRA; - const result = new Egg({scene, tier: expectedTier}).tier; + const result = new Egg({ scene, tier: expectedTier }).tier; expect(result).toBe(expectedTier); }); @@ -93,7 +92,7 @@ describe("Egg Generation Tests", () => { const scene = game.scene; const expectedTier = EggTier.MASTER; - const result = new Egg({scene, tier: expectedTier}).tier; + const result = new Egg({ scene, tier: expectedTier }).tier; expect(result).toBe(expectedTier); }); @@ -101,7 +100,7 @@ describe("Egg Generation Tests", () => { const scene = game.scene; const expectedResult = true; - const result = new Egg({scene, species: Species.MANAPHY}).isManaphyEgg(); + const result = new Egg({ scene, species: Species.MANAPHY }).isManaphyEgg(); expect(result).toBe(expectedResult); }); @@ -109,7 +108,7 @@ describe("Egg Generation Tests", () => { const scene = game.scene; const expectedResult = true; - const result = new Egg({scene, tier: EggTier.COMMON, id: 204}).isManaphyEgg(); + const result = new Egg({ scene, tier: EggTier.COMMON, id: 204 }).isManaphyEgg(); expect(result).toBe(expectedResult); }); @@ -117,7 +116,7 @@ describe("Egg Generation Tests", () => { const scene = game.scene; const expectedHatchWaves = 1000; - const result = new Egg({scene, hatchWaves: expectedHatchWaves}).hatchWaves; + const result = new Egg({ scene, hatchWaves: expectedHatchWaves }).hatchWaves; expect(result).toBe(expectedHatchWaves); }); @@ -125,7 +124,7 @@ describe("Egg Generation Tests", () => { const scene = game.scene; const expectedResult = true; - const result = new Egg({scene, isShiny: expectedResult, species: Species.BULBASAUR}).generatePlayerPokemon(scene).isShiny(); + const result = new Egg({ scene, isShiny: expectedResult, species: Species.BULBASAUR }).generatePlayerPokemon(scene).isShiny(); expect(result).toBe(expectedResult); }); @@ -133,7 +132,7 @@ describe("Egg Generation Tests", () => { const scene = game.scene; const expectedVariantTier = VariantTier.COMMON; - const result = new Egg({scene, isShiny: true, variantTier: expectedVariantTier, species: Species.BULBASAUR}).generatePlayerPokemon(scene).variant; + const result = new Egg({ scene, isShiny: true, variantTier: expectedVariantTier, species: Species.BULBASAUR }).generatePlayerPokemon(scene).variant; expect(result).toBe(expectedVariantTier); }); @@ -141,7 +140,7 @@ describe("Egg Generation Tests", () => { const scene = game.scene; const expectedVariantTier = VariantTier.RARE; - const result = new Egg({scene, isShiny: true, variantTier: expectedVariantTier, species: Species.BULBASAUR}).generatePlayerPokemon(scene).variant; + const result = new Egg({ scene, isShiny: true, variantTier: expectedVariantTier, species: Species.BULBASAUR }).generatePlayerPokemon(scene).variant; expect(result).toBe(expectedVariantTier); }); @@ -149,14 +148,14 @@ describe("Egg Generation Tests", () => { const scene = game.scene; const expectedVariantTier = VariantTier.EPIC; - const result = new Egg({scene, isShiny: true, variantTier: expectedVariantTier, species: Species.BULBASAUR}).generatePlayerPokemon(scene).variant; + const result = new Egg({ scene, isShiny: true, variantTier: expectedVariantTier, species: Species.BULBASAUR }).generatePlayerPokemon(scene).variant; expect(result).toBe(expectedVariantTier); }); it("should return an egg with an egg move index of 0, 1, 2 or 3", () => { const scene = game.scene; - const eggMoveIndex = new Egg({scene}).eggMoveIndex; + const eggMoveIndex = new Egg({ scene }).eggMoveIndex; const result = eggMoveIndex && eggMoveIndex >= 0 && eggMoveIndex <= 3; expect(result).toBe(true); @@ -165,14 +164,14 @@ describe("Egg Generation Tests", () => { const scene = game.scene; const expectedEggMoveIndex = 3; - const result = new Egg({scene, eggMoveIndex: expectedEggMoveIndex}).eggMoveIndex; + const result = new Egg({ scene, eggMoveIndex: expectedEggMoveIndex }).eggMoveIndex; expect(result).toBe(expectedEggMoveIndex); }); it("should return a hatched pokemon with a hidden ability", () => { const scene = game.scene; - const playerPokemon = new Egg({scene, overrideHiddenAbility: true, species: Species.BULBASAUR}).generatePlayerPokemon(scene); + const playerPokemon = new Egg({ scene, overrideHiddenAbility: true, species: Species.BULBASAUR }).generatePlayerPokemon(scene); const expectedAbilityIndex = playerPokemon.species.ability2 ? 2 : 1; const result = playerPokemon.abilityIndex; @@ -183,7 +182,7 @@ describe("Egg Generation Tests", () => { const scene = game.scene; const expectedEggCount = 1; - new Egg({scene, sourceType: EggSourceType.GACHA_LEGENDARY, pulled: true}); + new Egg({ scene, sourceType: EggSourceType.GACHA_LEGENDARY, pulled: true }); const result = scene.gameData.eggs.length; @@ -193,7 +192,7 @@ describe("Egg Generation Tests", () => { const scene = game.scene; const expectedEggTier = EggTier.COMMON; - const result = new Egg({scene, tier: EggTier.MASTER, species: Species.BULBASAUR}).tier; + const result = new Egg({ scene, tier: EggTier.MASTER, species: Species.BULBASAUR }).tier; expect(result).toBe(expectedEggTier); }); @@ -201,7 +200,7 @@ describe("Egg Generation Tests", () => { const scene = game.scene; const expectedHatchWaves = 10; - const result = new Egg({scene, tier: EggTier.MASTER, species: Species.BULBASAUR}).hatchWaves; + const result = new Egg({ scene, tier: EggTier.MASTER, species: Species.BULBASAUR }).hatchWaves; expect(result).toBe(expectedHatchWaves); }); @@ -232,7 +231,7 @@ describe("Egg Generation Tests", () => { const scene = game.scene; const startPityValues = [...scene.gameData.eggPity]; - new Egg({scene, sourceType: EggSourceType.GACHA_MOVE, pulled: true, tier: EggTier.COMMON}); + new Egg({ scene, sourceType: EggSourceType.GACHA_MOVE, pulled: true, tier: EggTier.COMMON }); expect(scene.gameData.eggPity[EggTier.GREAT]).toBe(startPityValues[EggTier.GREAT] + 1); expect(scene.gameData.eggPity[EggTier.ULTRA]).toBe(startPityValues[EggTier.ULTRA] + 1); @@ -242,7 +241,7 @@ describe("Egg Generation Tests", () => { const scene = game.scene; const startPityValues = [...scene.gameData.eggPity]; - new Egg({scene, sourceType: EggSourceType.GACHA_LEGENDARY, pulled: true, tier: EggTier.COMMON}); + new Egg({ scene, sourceType: EggSourceType.GACHA_LEGENDARY, pulled: true, tier: EggTier.COMMON }); expect(scene.gameData.eggPity[EggTier.GREAT]).toBe(startPityValues[EggTier.GREAT] + 1); expect(scene.gameData.eggPity[EggTier.ULTRA]).toBe(startPityValues[EggTier.ULTRA] + 1); @@ -253,7 +252,7 @@ describe("Egg Generation Tests", () => { const startingManaphyEggCount = scene.gameData.gameStats.manaphyEggsPulled; for (let i = 0; i < 200; i++) { - new Egg({scene, sourceType: EggSourceType.GACHA_MOVE, pulled: true, species: Species.BULBASAUR}); + new Egg({ scene, sourceType: EggSourceType.GACHA_MOVE, pulled: true, species: Species.BULBASAUR }); } expect(scene.gameData.gameStats.manaphyEggsPulled).toBe(startingManaphyEggCount); @@ -262,7 +261,7 @@ describe("Egg Generation Tests", () => { const scene = game.scene; const startingManaphyEggCount = scene.gameData.gameStats.manaphyEggsPulled; - new Egg({scene, sourceType: EggSourceType.GACHA_MOVE, pulled: true, id: 204, tier: EggTier.COMMON}); + new Egg({ scene, sourceType: EggSourceType.GACHA_MOVE, pulled: true, id: 204, tier: EggTier.COMMON }); expect(scene.gameData.gameStats.manaphyEggsPulled).toBe(startingManaphyEggCount + 1); }); @@ -270,7 +269,7 @@ describe("Egg Generation Tests", () => { const scene = game.scene; const startingRareEggsPulled = scene.gameData.gameStats.rareEggsPulled; - new Egg({scene, sourceType: EggSourceType.GACHA_MOVE, pulled: true, tier: EggTier.GREAT}); + new Egg({ scene, sourceType: EggSourceType.GACHA_MOVE, pulled: true, tier: EggTier.GREAT }); expect(scene.gameData.gameStats.rareEggsPulled).toBe(startingRareEggsPulled + 1); }); @@ -278,7 +277,7 @@ describe("Egg Generation Tests", () => { const scene = game.scene; const startingEpicEggsPulled = scene.gameData.gameStats.epicEggsPulled; - new Egg({scene, sourceType: EggSourceType.GACHA_MOVE, pulled: true, tier: EggTier.ULTRA}); + new Egg({ scene, sourceType: EggSourceType.GACHA_MOVE, pulled: true, tier: EggTier.ULTRA }); expect(scene.gameData.gameStats.epicEggsPulled).toBe(startingEpicEggsPulled + 1); }); @@ -286,7 +285,7 @@ describe("Egg Generation Tests", () => { const scene = game.scene; const startingLegendaryEggsPulled = scene.gameData.gameStats.legendaryEggsPulled; - new Egg({scene, sourceType: EggSourceType.GACHA_MOVE, pulled: true, tier: EggTier.MASTER}); + new Egg({ scene, sourceType: EggSourceType.GACHA_MOVE, pulled: true, tier: EggTier.MASTER }); expect(scene.gameData.gameStats.legendaryEggsPulled).toBe(startingLegendaryEggsPulled + 1); }); @@ -297,8 +296,8 @@ describe("Egg Generation Tests", () => { const expectedTier1 = EggTier.MASTER; const expectedTier2 = EggTier.ULTRA; - const result1 = new Egg({scene, sourceType: EggSourceType.GACHA_LEGENDARY, pulled: true}).tier; - const result2 = new Egg({scene, sourceType: EggSourceType.GACHA_MOVE, pulled: true}).tier; + const result1 = new Egg({ scene, sourceType: EggSourceType.GACHA_LEGENDARY, pulled: true }).tier; + const result2 = new Egg({ scene, sourceType: EggSourceType.GACHA_MOVE, pulled: true }).tier; expect(result1).toBe(expectedTier1); expect(result2).toBe(expectedTier2); @@ -306,7 +305,7 @@ describe("Egg Generation Tests", () => { it("should generate an epic shiny from pokemon with a different form", () => { const scene = game.scene; - const egg = new Egg({scene, isShiny: true, variantTier: VariantTier.EPIC, species: Species.MIRAIDON}); + const egg = new Egg({ scene, isShiny: true, variantTier: VariantTier.EPIC, species: Species.MIRAIDON }); expect(egg.variantTier).toBe(VariantTier.EPIC); }); diff --git a/src/test/evolution.test.ts b/src/test/evolution.test.ts index b54deaa4611..f9123cf6d9a 100644 --- a/src/test/evolution.test.ts +++ b/src/test/evolution.test.ts @@ -1,9 +1,11 @@ -import { pokemonEvolutions, SpeciesFormEvolution, SpeciesWildEvolutionDelay } from "#app/data/pokemon-evolutions.js"; -import { Abilities } from "#app/enums/abilities.js"; -import { Species } from "#app/enums/species.js"; +import { pokemonEvolutions, SpeciesFormEvolution, SpeciesWildEvolutionDelay } from "#app/data/pokemon-evolutions"; +import { Abilities } from "#app/enums/abilities"; +import { Moves } from "#app/enums/moves"; +import { Species } from "#app/enums/species"; import GameManager from "#test/utils/gameManager"; import Phaser from "phaser"; import { afterEach, beforeAll, beforeEach, describe, expect, it } from "vitest"; +import { SPLASH_ONLY } from "./utils/testUtils"; describe("Evolution", () => { let phaserGame: Phaser.Game; @@ -89,4 +91,61 @@ describe("Evolution", () => { expect(speciesFormEvo.wildDelay).toBe(SpeciesWildEvolutionDelay.NONE); }); + + it("should increase both HP and max HP when evolving", async () => { + game.override.moveset([Moves.SURF]) + .enemySpecies(Species.GOLEM) + .enemyMoveset(SPLASH_ONLY) + .startingWave(21) + .startingLevel(16) + .enemyLevel(50); + + await game.startBattle([Species.TOTODILE]); + + const totodile = game.scene.getPlayerPokemon()!; + const hpBefore = totodile.hp; + + expect(totodile.hp).toBe(totodile.getMaxHp()); + + const golem = game.scene.getEnemyPokemon()!; + golem.hp = 1; + + expect(golem.hp).toBe(1); + + game.move.select(Moves.SURF); + await game.phaseInterceptor.to("EndEvolutionPhase"); + + expect(totodile.hp).toBe(totodile.getMaxHp()); + expect(totodile.hp).toBeGreaterThan(hpBefore); + }, TIMEOUT); + + it("should not fully heal HP when evolving", async () => { + game.override.moveset([Moves.SURF]) + .enemySpecies(Species.GOLEM) + .enemyMoveset(SPLASH_ONLY) + .startingWave(21) + .startingLevel(13) + .enemyLevel(30); + + await game.startBattle([Species.CYNDAQUIL]); + + const cyndaquil = game.scene.getPlayerPokemon()!; + cyndaquil.hp = Math.floor(cyndaquil.getMaxHp() / 2); + const hpBefore = cyndaquil.hp; + const maxHpBefore = cyndaquil.getMaxHp(); + + expect(cyndaquil.hp).toBe(Math.floor(cyndaquil.getMaxHp() / 2)); + + const golem = game.scene.getEnemyPokemon()!; + golem.hp = 1; + + expect(golem.hp).toBe(1); + + game.move.select(Moves.SURF); + await game.phaseInterceptor.to("EndEvolutionPhase"); + + expect(cyndaquil.getMaxHp()).toBeGreaterThan(maxHpBefore); + expect(cyndaquil.hp).toBeGreaterThan(hpBefore); + expect(cyndaquil.hp).toBeLessThan(cyndaquil.getMaxHp()); + }, TIMEOUT); }); diff --git a/src/test/evolutions/evolutions.test.ts b/src/test/evolutions/evolutions.test.ts index af43e91b059..2028764115c 100644 --- a/src/test/evolutions/evolutions.test.ts +++ b/src/test/evolutions/evolutions.test.ts @@ -1,8 +1,8 @@ -import { afterEach, beforeAll, beforeEach, describe, expect, it, vi } from "vitest"; -import Phaser from "phaser"; -import GameManager from "#test/utils/gameManager"; -import { Species } from "#enums/species"; import * as Utils from "#app/utils"; +import { Species } from "#enums/species"; +import GameManager from "#test/utils/gameManager"; +import Phaser from "phaser"; +import { afterEach, beforeAll, beforeEach, describe, expect, it, vi } from "vitest"; describe("Evolution tests", () => { let phaserGame: Phaser.Game; diff --git a/src/test/field/pokemon.test.ts b/src/test/field/pokemon.test.ts index ee8e41e8b42..d597cd5219c 100644 --- a/src/test/field/pokemon.test.ts +++ b/src/test/field/pokemon.test.ts @@ -1,4 +1,4 @@ -import { Species } from "#app/enums/species.js"; +import { Species } from "#app/enums/species"; import { afterEach, beforeAll, beforeEach, describe, expect, it } from "vitest"; import GameManager from "../utils/gameManager"; diff --git a/src/test/final_boss.test.ts b/src/test/final_boss.test.ts index a57d71534a3..0f59572619b 100644 --- a/src/test/final_boss.test.ts +++ b/src/test/final_boss.test.ts @@ -1,8 +1,8 @@ -import { Biome } from "#app/enums/biome.js"; -import { Species } from "#app/enums/species.js"; +import { Biome } from "#app/enums/biome"; +import { Species } from "#app/enums/species"; +import { GameModes } from "#app/game-mode"; import { afterEach, beforeAll, beforeEach, describe, expect, it } from "vitest"; import GameManager from "./utils/gameManager"; -import { GameModes } from "#app/game-mode"; const FinalWave = { Classic: 200, diff --git a/src/test/game-mode.test.ts b/src/test/game-mode.test.ts index 4a1960a05ff..ccec3a3aa16 100644 --- a/src/test/game-mode.test.ts +++ b/src/test/game-mode.test.ts @@ -1,7 +1,7 @@ -import { GameMode, GameModes, getGameMode } from "#app/game-mode.js"; +import { GameMode, GameModes, getGameMode } from "#app/game-mode"; import { afterEach, beforeAll, beforeEach, describe, expect, it, vi } from "vitest"; -import GameManager from "./utils/gameManager"; import * as Utils from "../utils"; +import GameManager from "./utils/gameManager"; describe("game-mode", () => { let phaserGame: Phaser.Game; let game: GameManager; diff --git a/src/test/imports.test.ts b/src/test/imports.test.ts index 69c145236bc..305eccdc465 100644 --- a/src/test/imports.test.ts +++ b/src/test/imports.test.ts @@ -1,5 +1,5 @@ -import { describe, expect, it } from "vitest"; import { initStatsKeys } from "#app/ui/game-stats-ui-handler"; +import { describe, expect, it } from "vitest"; async function importModule() { try { diff --git a/src/test/inputs/inputs.test.ts b/src/test/inputs/inputs.test.ts index 7182ac2c02c..6306c1b9da6 100644 --- a/src/test/inputs/inputs.test.ts +++ b/src/test/inputs/inputs.test.ts @@ -1,9 +1,9 @@ -import { afterEach, beforeAll, beforeEach, describe, expect, it } from "vitest"; -import Phaser from "phaser"; -import GameManager from "#test/utils/gameManager"; -import pad_xbox360 from "#app/configs/inputs/pad_xbox360"; import cfg_keyboard_qwerty from "#app/configs/inputs/cfg_keyboard_qwerty"; +import pad_xbox360 from "#app/configs/inputs/pad_xbox360"; +import GameManager from "#test/utils/gameManager"; import InputsHandler from "#test/utils/inputsHandler"; +import Phaser from "phaser"; +import { afterEach, beforeAll, beforeEach, describe, expect, it } from "vitest"; describe("Inputs", () => { diff --git a/src/test/internals.test.ts b/src/test/internals.test.ts index 0ecd156431d..3c76b40e901 100644 --- a/src/test/internals.test.ts +++ b/src/test/internals.test.ts @@ -1,8 +1,8 @@ -import { afterEach, beforeAll, beforeEach, describe, expect, it } from "vitest"; -import Phaser from "phaser"; +import { Abilities } from "#app/enums/abilities"; +import { Species } from "#app/enums/species"; import GameManager from "#test/utils/gameManager"; -import { Species } from "#app/enums/species.js"; -import { Abilities } from "#app/enums/abilities.js"; +import Phaser from "phaser"; +import { afterEach, beforeAll, beforeEach, describe, expect, it } from "vitest"; describe("Internals", () => { let phaserGame: Phaser.Game; diff --git a/src/test/items/eviolite.test.ts b/src/test/items/eviolite.test.ts index 0fe90866de8..e491784acec 100644 --- a/src/test/items/eviolite.test.ts +++ b/src/test/items/eviolite.test.ts @@ -2,9 +2,9 @@ import { Stat } from "#app/data/pokemon-stat"; import { EvolutionStatBoosterModifier } from "#app/modifier/modifier"; import { modifierTypes } from "#app/modifier/modifier-type"; import i18next from "#app/plugins/i18n"; -import GameManager from "#test/utils/gameManager"; import * as Utils from "#app/utils"; import { Species } from "#enums/species"; +import GameManager from "#test/utils/gameManager"; import Phase from "phaser"; import { afterEach, beforeAll, beforeEach, describe, expect, it, vi } from "vitest"; diff --git a/src/test/items/exp_booster.test.ts b/src/test/items/exp_booster.test.ts index 2b700c92086..9a7464e4866 100644 --- a/src/test/items/exp_booster.test.ts +++ b/src/test/items/exp_booster.test.ts @@ -1,7 +1,7 @@ -import { Abilities } from "#app/enums/abilities.js"; -import { PokemonExpBoosterModifier } from "#app/modifier/modifier.js"; -import GameManager from "#test/utils/gameManager"; +import { Abilities } from "#app/enums/abilities"; +import { PokemonExpBoosterModifier } from "#app/modifier/modifier"; import * as Utils from "#app/utils"; +import GameManager from "#test/utils/gameManager"; import Phase from "phaser"; import { afterEach, beforeAll, beforeEach, describe, expect, it } from "vitest"; diff --git a/src/test/items/grip_claw.test.ts b/src/test/items/grip_claw.test.ts index ecf144c96c5..09afa9aea0b 100644 --- a/src/test/items/grip_claw.test.ts +++ b/src/test/items/grip_claw.test.ts @@ -1,16 +1,14 @@ -import { BattlerIndex } from "#app/battle.js"; -import { allMoves } from "#app/data/move.js"; -import { Abilities } from "#app/enums/abilities.js"; -import { BerryType } from "#app/enums/berry-type.js"; -import { Moves } from "#app/enums/moves.js"; -import { Species } from "#app/enums/species.js"; +import { BattlerIndex } from "#app/battle"; +import { allMoves } from "#app/data/move"; +import { Abilities } from "#app/enums/abilities"; +import { BerryType } from "#app/enums/berry-type"; +import { Moves } from "#app/enums/moves"; +import { Species } from "#app/enums/species"; +import { MoveEndPhase } from "#app/phases/move-end-phase"; import GameManager from "#test/utils/gameManager"; import Phase from "phaser"; import { afterEach, beforeAll, beforeEach, describe, expect, it, vi } from "vitest"; -import { getMovePosition } from "#test/utils/gameManagerUtils"; -import { CommandPhase } from "#app/phases/command-phase.js"; -import { MoveEndPhase } from "#app/phases/move-end-phase.js"; -import { SelectTargetPhase } from "#app/phases/select-target-phase.js"; +import { SPLASH_ONLY } from "../utils/testUtils"; const TIMEOUT = 20 * 1000; // 20 seconds @@ -35,12 +33,12 @@ describe("Items - Grip Claw", () => { .battleType("double") .moveset([Moves.POPULATION_BOMB, Moves.SPLASH]) .startingHeldItems([ - { name: "GRIP_CLAW", count: 5 }, + { name: "GRIP_CLAW", count: 5 }, // TODO: Find a way to mock the steal chance of grip claw { name: "MULTI_LENS", count: 3 }, ]) .enemySpecies(Species.SNORLAX) .ability(Abilities.KLUTZ) - .enemyMoveset([Moves.SPLASH, Moves.SPLASH, Moves.SPLASH, Moves.SPLASH]) + .enemyMoveset(SPLASH_ONLY) .enemyHeldItems([ { name: "BERRY", type: BerryType.SITRUS, count: 2 }, { name: "BERRY", type: BerryType.LUM, count: 2 }, @@ -54,19 +52,14 @@ describe("Items - Grip Claw", () => { it( "should only steal items from the attack target", async () => { - await game.startBattle([Species.PANSEAR, Species.ROWLET, Species.PANPOUR, Species.PANSAGE, Species.CHARMANDER, Species.SQUIRTLE]); + await game.startBattle([Species.PANSEAR, Species.ROWLET]); const enemyPokemon = game.scene.getEnemyField(); const enemyHeldItemCt = enemyPokemon.map(p => p.getHeldItems.length); - game.doAttack(getMovePosition(game.scene, 0, Moves.POPULATION_BOMB)); - - await game.phaseInterceptor.to(SelectTargetPhase, false); - game.doSelectTarget(BattlerIndex.ENEMY); - - await game.phaseInterceptor.to(CommandPhase, false); - game.doAttack(getMovePosition(game.scene, 1, Moves.SPLASH)); + game.move.select(Moves.POPULATION_BOMB, 0, BattlerIndex.ENEMY); + game.move.select(Moves.SPLASH, 1); await game.phaseInterceptor.to(MoveEndPhase, false); diff --git a/src/test/items/leek.test.ts b/src/test/items/leek.test.ts index 1e46bda9f0f..7505b6374a0 100644 --- a/src/test/items/leek.test.ts +++ b/src/test/items/leek.test.ts @@ -1,11 +1,11 @@ import { BattlerIndex } from "#app/battle"; import { CritBoosterModifier } from "#app/modifier/modifier"; import { modifierTypes } from "#app/modifier/modifier-type"; -import { MoveEffectPhase } from "#app/phases/move-effect-phase.js"; -import GameManager from "#test/utils/gameManager"; +import { MoveEffectPhase } from "#app/phases/move-effect-phase"; import * as Utils from "#app/utils"; import { Moves } from "#enums/moves"; import { Species } from "#enums/species"; +import GameManager from "#test/utils/gameManager"; import Phase from "phaser"; import { afterEach, beforeAll, beforeEach, describe, expect, it, vi } from "vitest"; @@ -27,21 +27,21 @@ describe("Items - Leek", () => { game = new GameManager(phaserGame); game.override.enemySpecies(Species.MAGIKARP); - game.override.enemyMoveset([ Moves.SPLASH, Moves.SPLASH, Moves.SPLASH, Moves.SPLASH ]); + game.override.enemyMoveset([Moves.SPLASH, Moves.SPLASH, Moves.SPLASH, Moves.SPLASH]); game.override.disableCrits(); game.override.battleType("single"); }); - it("LEEK activates in battle correctly", async() => { + it("LEEK activates in battle correctly", async () => { game.override.startingHeldItems([{ name: "LEEK" }]); - game.override.moveset([ Moves.POUND ]); + game.override.moveset([Moves.POUND]); const consoleSpy = vi.spyOn(console, "log"); await game.startBattle([ Species.FARFETCHD ]); - game.doAttack(0); + game.move.select(Moves.POUND); await game.setTurnOrder([BattlerIndex.PLAYER, BattlerIndex.ENEMY]); @@ -50,7 +50,7 @@ describe("Items - Leek", () => { expect(consoleSpy).toHaveBeenCalledWith("Applied", "Leek", ""); }, 20000); - it("LEEK held by FARFETCHD", async() => { + it("LEEK held by FARFETCHD", async () => { await game.startBattle([ Species.FARFETCHD ]); @@ -70,7 +70,7 @@ describe("Items - Leek", () => { expect(critLevel.value).toBe(2); }, 20000); - it("LEEK held by GALAR_FARFETCHD", async() => { + it("LEEK held by GALAR_FARFETCHD", async () => { await game.startBattle([ Species.GALAR_FARFETCHD ]); @@ -90,7 +90,7 @@ describe("Items - Leek", () => { expect(critLevel.value).toBe(2); }, 20000); - it("LEEK held by SIRFETCHD", async() => { + it("LEEK held by SIRFETCHD", async () => { await game.startBattle([ Species.SIRFETCHD ]); @@ -110,9 +110,9 @@ describe("Items - Leek", () => { expect(critLevel.value).toBe(2); }, 20000); - it("LEEK held by fused FARFETCHD line (base)", async() => { + it("LEEK held by fused FARFETCHD line (base)", async () => { // Randomly choose from the Farfetch'd line - const species = [ Species.FARFETCHD, Species.GALAR_FARFETCHD, Species.SIRFETCHD ]; + const species = [Species.FARFETCHD, Species.GALAR_FARFETCHD, Species.SIRFETCHD]; await game.startBattle([ species[Utils.randInt(species.length)], @@ -145,9 +145,9 @@ describe("Items - Leek", () => { expect(critLevel.value).toBe(2); }, 20000); - it("LEEK held by fused FARFETCHD line (part)", async() => { + it("LEEK held by fused FARFETCHD line (part)", async () => { // Randomly choose from the Farfetch'd line - const species = [ Species.FARFETCHD, Species.GALAR_FARFETCHD, Species.SIRFETCHD ]; + const species = [Species.FARFETCHD, Species.GALAR_FARFETCHD, Species.SIRFETCHD]; await game.startBattle([ Species.PIKACHU, @@ -180,7 +180,7 @@ describe("Items - Leek", () => { expect(critLevel.value).toBe(2); }, 20000); - it("LEEK not held by FARFETCHD line", async() => { + it("LEEK not held by FARFETCHD line", async () => { await game.startBattle([ Species.PIKACHU ]); diff --git a/src/test/items/leftovers.test.ts b/src/test/items/leftovers.test.ts index 1a1c95ad9e6..8e548542436 100644 --- a/src/test/items/leftovers.test.ts +++ b/src/test/items/leftovers.test.ts @@ -1,12 +1,11 @@ -import GameManager from "#test/utils/gameManager"; -import { getMovePosition } from "#test/utils/gameManagerUtils"; +import { DamagePhase } from "#app/phases/damage-phase"; +import { TurnEndPhase } from "#app/phases/turn-end-phase"; import { Abilities } from "#enums/abilities"; import { Moves } from "#enums/moves"; import { Species } from "#enums/species"; +import GameManager from "#test/utils/gameManager"; import Phaser from "phaser"; import { afterEach, beforeAll, beforeEach, describe, expect, it } from "vitest"; -import { DamagePhase } from "#app/phases/damage-phase.js"; -import { TurnEndPhase } from "#app/phases/turn-end-phase.js"; describe("Items - Leftovers", () => { @@ -32,10 +31,10 @@ describe("Items - Leftovers", () => { game.override.enemySpecies(Species.SHUCKLE); game.override.enemyAbility(Abilities.UNNERVE); game.override.enemyMoveset([Moves.TACKLE, Moves.TACKLE, Moves.TACKLE, Moves.TACKLE]); - game.override.startingHeldItems([{name: "LEFTOVERS", count: 1}]); + game.override.startingHeldItems([{ name: "LEFTOVERS", count: 1 }]); }); - it("leftovers works", async() => { + it("leftovers works", async () => { await game.startBattle([Species.ARCANINE]); // Make sure leftovers are there @@ -46,7 +45,7 @@ describe("Items - Leftovers", () => { // We should have full hp expect(leadPokemon.isFullHp()).toBe(true); - game.doAttack(getMovePosition(game.scene, 0, Moves.SPLASH)); + game.move.select(Moves.SPLASH); // We should have less hp after the attack await game.phaseInterceptor.to(DamagePhase, false); diff --git a/src/test/items/light_ball.test.ts b/src/test/items/light_ball.test.ts index ff7dfa4eba5..cf4f5c9e22f 100644 --- a/src/test/items/light_ball.test.ts +++ b/src/test/items/light_ball.test.ts @@ -2,9 +2,9 @@ import { Stat } from "#app/data/pokemon-stat"; import { SpeciesStatBoosterModifier } from "#app/modifier/modifier"; import { modifierTypes } from "#app/modifier/modifier-type"; import i18next from "#app/plugins/i18n"; -import GameManager from "#test/utils/gameManager"; import * as Utils from "#app/utils"; import { Species } from "#enums/species"; +import GameManager from "#test/utils/gameManager"; import Phase from "phaser"; import { afterEach, beforeAll, beforeEach, describe, expect, it, vi } from "vitest"; diff --git a/src/test/items/lock_capsule.test.ts b/src/test/items/lock_capsule.test.ts index 0909e51ea2c..bc4ca1cb014 100644 --- a/src/test/items/lock_capsule.test.ts +++ b/src/test/items/lock_capsule.test.ts @@ -1,11 +1,10 @@ +import { Abilities } from "#app/enums/abilities"; +import { Moves } from "#app/enums/moves"; +import { ModifierTypeOption, modifierTypes } from "#app/modifier/modifier-type"; +import { SelectModifierPhase } from "#app/phases/select-modifier-phase"; import GameManager from "#test/utils/gameManager"; import Phase from "phaser"; import { afterEach, beforeAll, beforeEach, describe, expect, it } from "vitest"; -import { Abilities } from "#app/enums/abilities.js"; -import { Moves } from "#app/enums/moves.js"; -import { getMovePosition } from "../utils/gameManagerUtils"; -import { ModifierTypeOption, modifierTypes } from "#app/modifier/modifier-type.js"; -import { SelectModifierPhase } from "#app/phases/select-modifier-phase.js"; describe("Items - Lock Capsule", () => { let phaserGame: Phaser.Game; @@ -29,13 +28,13 @@ describe("Items - Lock Capsule", () => { .startingLevel(200) .moveset([Moves.SURF]) .enemyAbility(Abilities.BALL_FETCH) - .startingModifier([{name: "LOCK_CAPSULE"}]); + .startingModifier([{ name: "LOCK_CAPSULE" }]); }); - it("doesn't set the cost of common tier items to 0", async() => { + it("doesn't set the cost of common tier items to 0", async () => { await game.startBattle(); - game.doAttack(getMovePosition(game.scene, 0, Moves.SURF)); + game.move.select(Moves.SURF); await game.phaseInterceptor.to(SelectModifierPhase, false); const rewards = game.scene.getCurrentPhase() as SelectModifierPhase; diff --git a/src/test/items/metal_powder.test.ts b/src/test/items/metal_powder.test.ts index 966762e4175..a3a4936532f 100644 --- a/src/test/items/metal_powder.test.ts +++ b/src/test/items/metal_powder.test.ts @@ -2,9 +2,9 @@ import { Stat } from "#app/data/pokemon-stat"; import { SpeciesStatBoosterModifier } from "#app/modifier/modifier"; import { modifierTypes } from "#app/modifier/modifier-type"; import i18next from "#app/plugins/i18n"; -import GameManager from "#test/utils/gameManager"; import * as Utils from "#app/utils"; import { Species } from "#enums/species"; +import GameManager from "#test/utils/gameManager"; import Phase from "phaser"; import { afterEach, beforeAll, beforeEach, describe, expect, it, vi } from "vitest"; diff --git a/src/test/items/quick_powder.test.ts b/src/test/items/quick_powder.test.ts index d2435dab431..53521ba78f1 100644 --- a/src/test/items/quick_powder.test.ts +++ b/src/test/items/quick_powder.test.ts @@ -2,9 +2,9 @@ import { Stat } from "#app/data/pokemon-stat"; import { SpeciesStatBoosterModifier } from "#app/modifier/modifier"; import { modifierTypes } from "#app/modifier/modifier-type"; import i18next from "#app/plugins/i18n"; -import GameManager from "#test/utils/gameManager"; import * as Utils from "#app/utils"; import { Species } from "#enums/species"; +import GameManager from "#test/utils/gameManager"; import Phase from "phaser"; import { afterEach, beforeAll, beforeEach, describe, expect, it, vi } from "vitest"; diff --git a/src/test/items/scope_lens.test.ts b/src/test/items/scope_lens.test.ts index fa605ca7129..85673218762 100644 --- a/src/test/items/scope_lens.test.ts +++ b/src/test/items/scope_lens.test.ts @@ -1,11 +1,11 @@ import { BattlerIndex } from "#app/battle"; import { CritBoosterModifier } from "#app/modifier/modifier"; import { modifierTypes } from "#app/modifier/modifier-type"; -import { MoveEffectPhase } from "#app/phases/move-effect-phase.js"; -import GameManager from "#test/utils/gameManager"; +import { MoveEffectPhase } from "#app/phases/move-effect-phase"; import * as Utils from "#app/utils"; import { Moves } from "#enums/moves"; import { Species } from "#enums/species"; +import GameManager from "#test/utils/gameManager"; import Phase from "phaser"; import { afterEach, beforeAll, beforeEach, describe, expect, it, vi } from "vitest"; @@ -27,30 +27,30 @@ describe("Items - Scope Lens", () => { game = new GameManager(phaserGame); game.override.enemySpecies(Species.MAGIKARP); - game.override.enemyMoveset([ Moves.SPLASH, Moves.SPLASH, Moves.SPLASH, Moves.SPLASH ]); + game.override.enemyMoveset([Moves.SPLASH, Moves.SPLASH, Moves.SPLASH, Moves.SPLASH]); game.override.disableCrits(); game.override.battleType("single"); }, 20000); - it("SCOPE_LENS activates in battle correctly", async() => { + it("SCOPE_LENS activates in battle correctly", async () => { game.override.startingHeldItems([{ name: "SCOPE_LENS" }]); - game.override.moveset([ Moves.POUND ]); + game.override.moveset([Moves.POUND]); const consoleSpy = vi.spyOn(console, "log"); await game.startBattle([ Species.GASTLY ]); - game.doAttack(0); + game.move.select(Moves.POUND); - await game.setTurnOrder([ BattlerIndex.PLAYER, BattlerIndex.ENEMY ]); + await game.setTurnOrder([BattlerIndex.PLAYER, BattlerIndex.ENEMY]); await game.phaseInterceptor.to(MoveEffectPhase); expect(consoleSpy).toHaveBeenCalledWith("Applied", "Scope Lens", ""); }, 20000); - it("SCOPE_LENS held by random pokemon", async() => { + it("SCOPE_LENS held by random pokemon", async () => { await game.startBattle([ Species.GASTLY ]); diff --git a/src/test/items/thick_club.test.ts b/src/test/items/thick_club.test.ts index 841cd7c90ac..347921446e6 100644 --- a/src/test/items/thick_club.test.ts +++ b/src/test/items/thick_club.test.ts @@ -2,9 +2,9 @@ import { Stat } from "#app/data/pokemon-stat"; import { SpeciesStatBoosterModifier } from "#app/modifier/modifier"; import { modifierTypes } from "#app/modifier/modifier-type"; import i18next from "#app/plugins/i18n"; -import GameManager from "#test/utils/gameManager"; import * as Utils from "#app/utils"; import { Species } from "#enums/species"; +import GameManager from "#test/utils/gameManager"; import Phase from "phaser"; import { afterEach, beforeAll, beforeEach, describe, expect, it, vi } from "vitest"; diff --git a/src/test/items/toxic_orb.test.ts b/src/test/items/toxic_orb.test.ts index 83259b67866..4235ad5215b 100644 --- a/src/test/items/toxic_orb.test.ts +++ b/src/test/items/toxic_orb.test.ts @@ -1,18 +1,14 @@ import { StatusEffect } from "#app/data/status-effect"; +import { EnemyCommandPhase } from "#app/phases/enemy-command-phase"; +import { MessagePhase } from "#app/phases/message-phase"; +import { TurnEndPhase } from "#app/phases/turn-end-phase"; import i18next, { initI18n } from "#app/plugins/i18n"; -import GameManager from "#test/utils/gameManager"; -import { getMovePosition } from "#test/utils/gameManagerUtils"; -import { Command } from "#app/ui/command-ui-handler"; -import { Mode } from "#app/ui/ui"; import { Abilities } from "#enums/abilities"; import { Moves } from "#enums/moves"; import { Species } from "#enums/species"; +import GameManager from "#test/utils/gameManager"; import Phaser from "phaser"; import { afterEach, beforeAll, beforeEach, describe, expect, it } from "vitest"; -import {CommandPhase} from "#app/phases/command-phase"; -import {EnemyCommandPhase} from "#app/phases/enemy-command-phase"; -import {TurnEndPhase} from "#app/phases/turn-end-phase"; -import {MessagePhase} from "#app/phases/message-phase"; describe("Items - Toxic orb", () => { @@ -45,7 +41,7 @@ describe("Items - Toxic orb", () => { }]); }); - it("TOXIC ORB", async() => { + it("TOXIC ORB", async () => { initI18n(); i18next.changeLanguage("en"); const moveToUse = Moves.GROWTH; @@ -55,15 +51,7 @@ describe("Items - Toxic orb", () => { ]); expect(game.scene.modifiers[0].type.id).toBe("TOXIC_ORB"); - game.onNextPrompt("CommandPhase", Mode.COMMAND, () => { - // Select Attack - game.scene.ui.setMode(Mode.FIGHT, (game.scene.getCurrentPhase() as CommandPhase).getFieldIndex()); - }); - game.onNextPrompt("CommandPhase", Mode.FIGHT, () => { - // Select Move Growth - const movePosition = getMovePosition(game.scene, 0, moveToUse); - (game.scene.getCurrentPhase() as CommandPhase).handleCommand(Command.FIGHT, movePosition, false); - }); + game.move.select(moveToUse); // will run the 13 phase from enemyCommandPhase to TurnEndPhase await game.phaseInterceptor.runFrom(EnemyCommandPhase).to(TurnEndPhase); diff --git a/src/test/localization/battle-stat.test.ts b/src/test/localization/battle-stat.test.ts index b99ed2b7064..b5ba698c4b6 100644 --- a/src/test/localization/battle-stat.test.ts +++ b/src/test/localization/battle-stat.test.ts @@ -1,26 +1,25 @@ -import { beforeAll, describe, expect, it } from "vitest"; -import { getBattleStatName, getBattleStatLevelChangeDescription } from "#app/data/battle-stat.js"; -import { BattleStat} from "#app/data/battle-stat.js"; -import { pokemonInfo as enPokemonInfo } from "#app/locales/en/pokemon-info.js"; -import { battle as enBattleStat } from "#app/locales/en/battle.js"; -import { pokemonInfo as dePokemonInfo } from "#app/locales/de/pokemon-info.js"; -import { battle as deBattleStat } from "#app/locales/de/battle.js"; -import { pokemonInfo as esPokemonInfo } from "#app/locales/es/pokemon-info.js"; -import { battle as esBattleStat } from "#app/locales/es/battle.js"; -import { pokemonInfo as frPokemonInfo } from "#app/locales/fr/pokemon-info.js"; -import { battle as frBattleStat } from "#app/locales/fr/battle.js"; -import { pokemonInfo as itPokemonInfo } from "#app/locales/it/pokemon-info.js"; -import { battle as itBattleStat } from "#app/locales/it/battle.js"; -import { pokemonInfo as koPokemonInfo } from "#app/locales/ko/pokemon-info.js"; -import { battle as koBattleStat } from "#app/locales/ko/battle.js"; -import { pokemonInfo as ptBrPokemonInfo } from "#app/locales/pt_BR/pokemon-info.js"; -import { battle as ptBrBattleStat } from "#app/locales/pt_BR/battle.js"; -import { pokemonInfo as zhCnPokemonInfo } from "#app/locales/zh_CN/pokemon-info.js"; -import { battle as zhCnBattleStat } from "#app/locales/zh_CN/battle.js"; -import { pokemonInfo as zhTwPokemonInfo } from "#app/locales/zh_TW/pokemon-info.js"; -import { battle as zhTwBattleStat } from "#app/locales/zh_TW/battle.js"; +import { BattleStat, getBattleStatLevelChangeDescription, getBattleStatName } from "#app/data/battle-stat"; +import deBattleStat from "#app/locales/de/battle.json"; +import dePokemonInfo from "#app/locales/de/pokemon-info.json"; +import enBattleStat from "#app/locales/en/battle.json"; +import enPokemonInfo from "#app/locales/en/pokemon-info.json"; +import esBattleStat from "#app/locales/es/battle.json"; +import esPokemonInfo from "#app/locales/es/pokemon-info.json"; +import frBattleStat from "#app/locales/fr/battle.json"; +import frPokemonInfo from "#app/locales/fr/pokemon-info.json"; +import itBattleStat from "#app/locales/it/battle.json"; +import itPokemonInfo from "#app/locales/it/pokemon-info.json"; +import koBattleStat from "#app/locales/ko/battle.json"; +import koPokemonInfo from "#app/locales/ko/pokemon-info.json"; +import ptBrBattleStat from "#app/locales/pt_BR/battle.json"; +import ptBrPokemonInfo from "#app/locales/pt_BR/pokemon-info.json"; +import zhCnBattleStat from "#app/locales/zh_CN/battle.json"; +import zhCnPokemonInfo from "#app/locales/zh_CN/pokemon-info.json"; +import zhTwBattleStat from "#app/locales/zh_TW/battle.json"; +import zhTwPokemonInfo from "#app/locales/zh_TW/pokemon-info.json"; import i18next, { initI18n } from "#app/plugins/i18n"; import { KoreanPostpositionProcessor } from "i18next-korean-postposition-processor"; +import { beforeAll, describe, expect, it } from "vitest"; interface BattleStatTestUnit { stat: BattleStat, @@ -35,12 +34,18 @@ interface BattleStatLevelTestUnit { } function testBattleStatName(stat: BattleStat, expectMessage: string) { + if (!expectMessage) { + return; + } // not translated yet! const message = getBattleStatName(stat); console.log(`message ${message}, expected ${expectMessage}`); expect(message).toBe(expectMessage); } function testBattleStatLevelChangeDescription(levels: integer, up: boolean, expectMessage: string, changedStats: integer) { + if (!expectMessage) { + return; + } // not translated yet! const message = getBattleStatLevelChangeDescription("{{pokemonNameWithAffix}}", "{{stats}}", levels, up, changedStats); console.log(`message ${message}, expected ${expectMessage}`); expect(message).toBe(expectMessage); diff --git a/src/test/localization/french.test.ts b/src/test/localization/french.test.ts index b03a8ee64e8..92b4c82d7cb 100644 --- a/src/test/localization/french.test.ts +++ b/src/test/localization/french.test.ts @@ -1,9 +1,9 @@ -import { afterEach, beforeAll, describe, expect, it } from "vitest"; -import Phaser from "phaser"; -import GameManager from "#test/utils/gameManager"; -import { Species } from "#enums/species"; -import i18next from "i18next"; import { initI18n } from "#app/plugins/i18n"; +import { Species } from "#enums/species"; +import GameManager from "#test/utils/gameManager"; +import i18next from "i18next"; +import Phaser from "phaser"; +import { afterEach, beforeAll, describe, expect, it } from "vitest"; describe("Lokalization - french", () => { let phaserGame: Phaser.Game; diff --git a/src/test/localization/status-effect.test.ts b/src/test/localization/status-effect.test.ts index 8a9effe1672..9dcab5aeb5f 100644 --- a/src/test/localization/status-effect.test.ts +++ b/src/test/localization/status-effect.test.ts @@ -1,7 +1,7 @@ -import { beforeAll, describe, afterEach, expect, it, vi } from "vitest"; import { StatusEffect, getStatusEffectActivationText, getStatusEffectDescriptor, getStatusEffectHealText, getStatusEffectObtainText, getStatusEffectOverlapText } from "#app/data/status-effect"; -import i18next from "i18next"; import { mockI18next } from "#test/utils/testUtils"; +import i18next from "i18next"; +import { afterEach, beforeAll, describe, expect, it, vi } from "vitest"; const pokemonName = "PKM"; const sourceText = "SOURCE"; diff --git a/src/test/localization/terrain.test.ts b/src/test/localization/terrain.test.ts index c072f9cc9ab..ed280177a06 100644 --- a/src/test/localization/terrain.test.ts +++ b/src/test/localization/terrain.test.ts @@ -1,11 +1,11 @@ import { TerrainType, getTerrainName } from "#app/data/terrain"; import { getTerrainBlockMessage, getTerrainClearMessage, getTerrainStartMessage } from "#app/data/weather"; -import GameManager from "#test/utils/gameManager"; import { Species } from "#enums/species"; +import GameManager from "#test/utils/gameManager"; +import { mockI18next } from "#test/utils/testUtils"; import i18next from "i18next"; import Phaser from "phaser"; import { afterEach, beforeAll, beforeEach, describe, expect, it, vi } from "vitest"; -import { mockI18next } from "#test/utils/testUtils"; describe("terrain", () => { let phaserGame: Phaser.Game; diff --git a/src/test/moves/astonish.test.ts b/src/test/moves/astonish.test.ts index 21a82f09d33..b21e2a06051 100644 --- a/src/test/moves/astonish.test.ts +++ b/src/test/moves/astonish.test.ts @@ -1,16 +1,15 @@ -import { allMoves } from "#app/data/move.js"; -import { BattlerTagType } from "#app/enums/battler-tag-type.js"; +import { allMoves } from "#app/data/move"; +import { BattlerTagType } from "#app/enums/battler-tag-type"; +import { BerryPhase } from "#app/phases/berry-phase"; +import { CommandPhase } from "#app/phases/command-phase"; +import { MoveEndPhase } from "#app/phases/move-end-phase"; +import { TurnEndPhase } from "#app/phases/turn-end-phase"; import { Abilities } from "#enums/abilities"; import { Moves } from "#enums/moves"; import { Species } from "#enums/species"; +import GameManager from "#test/utils/gameManager"; import Phaser from "phaser"; import { afterEach, beforeAll, beforeEach, describe, expect, test, vi } from "vitest"; -import GameManager from "#test/utils/gameManager"; -import { getMovePosition } from "#test/utils/gameManagerUtils"; -import { BerryPhase } from "#app/phases/berry-phase.js"; -import { CommandPhase } from "#app/phases/command-phase.js"; -import { MoveEndPhase } from "#app/phases/move-end-phase.js"; -import { TurnEndPhase } from "#app/phases/turn-end-phase.js"; const TIMEOUT = 20 * 1000; @@ -50,7 +49,7 @@ describe("Moves - Astonish", () => { const enemyPokemon = game.scene.getEnemyPokemon()!; - game.doAttack(getMovePosition(game.scene, 0, Moves.ASTONISH)); + game.move.select(Moves.ASTONISH); await game.phaseInterceptor.to(MoveEndPhase, false); @@ -63,7 +62,7 @@ describe("Moves - Astonish", () => { await game.phaseInterceptor.to(CommandPhase, false); - game.doAttack(getMovePosition(game.scene, 0, Moves.SPLASH)); + game.move.select(Moves.SPLASH); await game.phaseInterceptor.to(BerryPhase, false); diff --git a/src/test/moves/aurora_veil.test.ts b/src/test/moves/aurora_veil.test.ts index 5429efec2bf..fec280debf4 100644 --- a/src/test/moves/aurora_veil.test.ts +++ b/src/test/moves/aurora_veil.test.ts @@ -1,15 +1,14 @@ -import { ArenaTagSide } from "#app/data/arena-tag.js"; -import Move, { allMoves } from "#app/data/move.js"; -import { WeatherType } from "#app/data/weather.js"; -import { Abilities } from "#app/enums/abilities.js"; -import { ArenaTagType } from "#app/enums/arena-tag-type.js"; -import Pokemon from "#app/field/pokemon.js"; -import { TurnEndPhase } from "#app/phases/turn-end-phase.js"; -import GameManager from "#test/utils/gameManager"; -import { getMovePosition } from "#test/utils/gameManagerUtils"; -import { NumberHolder } from "#app/utils.js"; +import { ArenaTagSide } from "#app/data/arena-tag"; +import Move, { allMoves } from "#app/data/move"; +import { WeatherType } from "#app/data/weather"; +import { Abilities } from "#app/enums/abilities"; +import { ArenaTagType } from "#app/enums/arena-tag-type"; +import Pokemon from "#app/field/pokemon"; +import { TurnEndPhase } from "#app/phases/turn-end-phase"; +import { NumberHolder } from "#app/utils"; import { Moves } from "#enums/moves"; import { Species } from "#enums/species"; +import GameManager from "#test/utils/gameManager"; import Phaser from "phaser"; import { afterEach, beforeAll, beforeEach, describe, expect, it } from "vitest"; @@ -18,7 +17,7 @@ describe("Moves - Aurora Veil", () => { let phaserGame: Phaser.Game; let game: GameManager; const singleBattleMultiplier = 0.5; - const doubleBattleMultiplier = 2732/4096; + const doubleBattleMultiplier = 2732 / 4096; beforeAll(() => { phaserGame = new Phaser.Game({ @@ -42,11 +41,11 @@ describe("Moves - Aurora Veil", () => { game.override.weather(WeatherType.HAIL); }); - it("reduces damage of physical attacks by half in a single battle", async() => { + it("reduces damage of physical attacks by half in a single battle", async () => { const moveToUse = Moves.TACKLE; await game.startBattle([Species.SHUCKLE]); - game.doAttack(getMovePosition(game.scene, 0, moveToUse)); + game.move.select(moveToUse); await game.phaseInterceptor.to(TurnEndPhase); const mockedDmg = getMockedMoveDamage(game.scene.getEnemyPokemon()!, game.scene.getPlayerPokemon()!, allMoves[moveToUse]); @@ -54,14 +53,14 @@ describe("Moves - Aurora Veil", () => { expect(mockedDmg).toBe(allMoves[moveToUse].power * singleBattleMultiplier); }); - it("reduces damage of physical attacks by a third in a double battle", async() => { + it("reduces damage of physical attacks by a third in a double battle", async () => { game.override.battleType("double"); const moveToUse = Moves.ROCK_SLIDE; await game.startBattle([Species.SHUCKLE, Species.SHUCKLE]); - game.doAttack(getMovePosition(game.scene, 0, moveToUse)); - game.doAttack(getMovePosition(game.scene, 1, moveToUse)); + game.move.select(moveToUse); + game.move.select(moveToUse, 1); await game.phaseInterceptor.to(TurnEndPhase); const mockedDmg = getMockedMoveDamage(game.scene.getEnemyPokemon()!, game.scene.getPlayerPokemon()!, allMoves[moveToUse]); @@ -69,11 +68,11 @@ describe("Moves - Aurora Veil", () => { expect(mockedDmg).toBe(allMoves[moveToUse].power * doubleBattleMultiplier); }); - it("reduces damage of special attacks by half in a single battle", async() => { + it("reduces damage of special attacks by half in a single battle", async () => { const moveToUse = Moves.ABSORB; await game.startBattle([Species.SHUCKLE]); - game.doAttack(getMovePosition(game.scene, 0, moveToUse)); + game.move.select(moveToUse); await game.phaseInterceptor.to(TurnEndPhase); @@ -82,14 +81,14 @@ describe("Moves - Aurora Veil", () => { expect(mockedDmg).toBe(allMoves[moveToUse].power * singleBattleMultiplier); }); - it("reduces damage of special attacks by a third in a double battle", async() => { + it("reduces damage of special attacks by a third in a double battle", async () => { game.override.battleType("double"); const moveToUse = Moves.DAZZLING_GLEAM; await game.startBattle([Species.SHUCKLE, Species.SHUCKLE]); - game.doAttack(getMovePosition(game.scene, 0, moveToUse)); - game.doAttack(getMovePosition(game.scene, 1, moveToUse)); + game.move.select(moveToUse); + game.move.select(moveToUse, 1); await game.phaseInterceptor.to(TurnEndPhase); const mockedDmg = getMockedMoveDamage(game.scene.getEnemyPokemon()!, game.scene.getPlayerPokemon()!, allMoves[moveToUse]); diff --git a/src/test/moves/baton_pass.test.ts b/src/test/moves/baton_pass.test.ts index 790eddbf45c..602da9e37f8 100644 --- a/src/test/moves/baton_pass.test.ts +++ b/src/test/moves/baton_pass.test.ts @@ -1,13 +1,12 @@ -import { BattleStat } from "#app/data/battle-stat.js"; +import { BattleStat } from "#app/data/battle-stat"; +import { PostSummonPhase } from "#app/phases/post-summon-phase"; +import { TurnEndPhase } from "#app/phases/turn-end-phase"; import GameManager from "#app/test/utils/gameManager"; -import { getMovePosition } from "#app/test/utils/gameManagerUtils"; import { Moves } from "#enums/moves"; import { Species } from "#enums/species"; import Phaser from "phaser"; import { afterEach, beforeAll, beforeEach, describe, expect, it } from "vitest"; import { SPLASH_ONLY } from "../utils/testUtils"; -import { PostSummonPhase } from "#app/phases/post-summon-phase.js"; -import { TurnEndPhase } from "#app/phases/turn-end-phase.js"; describe("Moves - Baton Pass", () => { @@ -36,7 +35,7 @@ describe("Moves - Baton Pass", () => { .disableCrits(); }); - it("passes stat stage buffs when player uses it", async() => { + it("passes stat stage buffs when player uses it", async () => { // arrange await game.startBattle([ Species.RAICHU, @@ -44,12 +43,12 @@ describe("Moves - Baton Pass", () => { ]); // round 1 - buff - game.doAttack(getMovePosition(game.scene, 0, Moves.NASTY_PLOT)); + game.move.select(Moves.NASTY_PLOT); await game.toNextTurn(); expect(game.scene.getPlayerPokemon()!.summonData.battleStats[BattleStat.SPATK]).toEqual(2); // round 2 - baton pass - game.doAttack(getMovePosition(game.scene, 0, Moves.BATON_PASS)); + game.move.select(Moves.BATON_PASS); game.doSelectPartyPokemon(1); await game.phaseInterceptor.to(TurnEndPhase); @@ -59,7 +58,7 @@ describe("Moves - Baton Pass", () => { expect(playerPkm.summonData.battleStats[BattleStat.SPATK]).toEqual(2); }, 20000); - it("passes stat stage buffs when AI uses it", async() => { + it("passes stat stage buffs when AI uses it", async () => { // arrange game.override .startingWave(5) @@ -70,13 +69,13 @@ describe("Moves - Baton Pass", () => { ]); // round 1 - ai buffs - game.doAttack(getMovePosition(game.scene, 0, Moves.SPLASH)); + game.move.select(Moves.SPLASH); await game.toNextTurn(); // round 2 - baton pass game.scene.getEnemyPokemon()!.hp = 100; game.override.enemyMoveset(new Array(4).fill(Moves.BATON_PASS)); - game.doAttack(getMovePosition(game.scene, 0, Moves.SPLASH)); + game.move.select(Moves.SPLASH); await game.phaseInterceptor.to(PostSummonPhase, false); // assert diff --git a/src/test/moves/beak_blast.test.ts b/src/test/moves/beak_blast.test.ts index 8938b4c7af8..2a93dc00a54 100644 --- a/src/test/moves/beak_blast.test.ts +++ b/src/test/moves/beak_blast.test.ts @@ -1,15 +1,14 @@ -import Phaser from "phaser"; -import { afterEach, beforeAll, beforeEach, describe, expect, it } from "vitest"; -import GameManager from "#test/utils/gameManager"; -import { Species } from "#enums/species"; +import { BattlerTagType } from "#app/enums/battler-tag-type"; +import { StatusEffect } from "#app/enums/status-effect"; +import { BerryPhase } from "#app/phases/berry-phase"; +import { MovePhase } from "#app/phases/move-phase"; +import { TurnEndPhase } from "#app/phases/turn-end-phase"; import { Abilities } from "#enums/abilities"; import { Moves } from "#enums/moves"; -import { getMovePosition } from "#test/utils/gameManagerUtils"; -import { BattlerTagType } from "#app/enums/battler-tag-type.js"; -import { StatusEffect } from "#app/enums/status-effect.js"; -import { BerryPhase } from "#app/phases/berry-phase.js"; -import { MovePhase } from "#app/phases/move-phase.js"; -import { TurnEndPhase } from "#app/phases/turn-end-phase.js"; +import { Species } from "#enums/species"; +import GameManager from "#test/utils/gameManager"; +import Phaser from "phaser"; +import { afterEach, beforeAll, beforeEach, describe, expect, it } from "vitest"; const TIMEOUT = 20 * 1000; @@ -48,7 +47,7 @@ describe("Moves - Beak Blast", () => { const leadPokemon = game.scene.getPlayerPokemon()!; const enemyPokemon = game.scene.getEnemyPokemon()!; - game.doAttack(getMovePosition(game.scene, 0, Moves.BEAK_BLAST)); + game.move.select(Moves.BEAK_BLAST); await game.phaseInterceptor.to(MovePhase, false); expect(leadPokemon.getTag(BattlerTagType.BEAK_BLAST_CHARGING)).toBeDefined(); @@ -68,7 +67,7 @@ describe("Moves - Beak Blast", () => { const leadPokemon = game.scene.getPlayerPokemon()!; const enemyPokemon = game.scene.getEnemyPokemon()!; - game.doAttack(getMovePosition(game.scene, 0, Moves.BEAK_BLAST)); + game.move.select(Moves.BEAK_BLAST); await game.phaseInterceptor.to(MovePhase, false); expect(leadPokemon.getTag(BattlerTagType.BEAK_BLAST_CHARGING)).toBeDefined(); @@ -88,7 +87,7 @@ describe("Moves - Beak Blast", () => { const leadPokemon = game.scene.getPlayerPokemon()!; const enemyPokemon = game.scene.getEnemyPokemon()!; - game.doAttack(getMovePosition(game.scene, 0, Moves.BEAK_BLAST)); + game.move.select(Moves.BEAK_BLAST); await game.phaseInterceptor.to(MovePhase, false); expect(leadPokemon.getTag(BattlerTagType.BEAK_BLAST_CHARGING)).toBeDefined(); @@ -101,13 +100,13 @@ describe("Moves - Beak Blast", () => { it( "should only hit twice with Multi-Lens", async () => { - game.override.startingHeldItems([{name: "MULTI_LENS", count: 1}]); + game.override.startingHeldItems([{ name: "MULTI_LENS", count: 1 }]); await game.startBattle([Species.BLASTOISE]); const leadPokemon = game.scene.getPlayerPokemon()!; - game.doAttack(getMovePosition(game.scene, 0, Moves.BEAK_BLAST)); + game.move.select(Moves.BEAK_BLAST); await game.phaseInterceptor.to(BerryPhase, false); expect(leadPokemon.turnData.hitCount).toBe(2); @@ -124,7 +123,7 @@ describe("Moves - Beak Blast", () => { const leadPokemon = game.scene.getPlayerPokemon()!; const enemyPokemon = game.scene.getEnemyPokemon()!; - game.doAttack(getMovePosition(game.scene, 0, Moves.BEAK_BLAST)); + game.move.select(Moves.BEAK_BLAST); await game.phaseInterceptor.to(MovePhase, false); expect(leadPokemon.getTag(BattlerTagType.BEAK_BLAST_CHARGING)).toBeDefined(); diff --git a/src/test/moves/beat_up.test.ts b/src/test/moves/beat_up.test.ts index a0f168ea30f..ce1598a49b4 100644 --- a/src/test/moves/beat_up.test.ts +++ b/src/test/moves/beat_up.test.ts @@ -1,12 +1,11 @@ -import { afterEach, beforeAll, beforeEach, describe, expect, it } from "vitest"; -import Phaser from "phaser"; +import { Abilities } from "#app/enums/abilities"; +import { Moves } from "#app/enums/moves"; +import { Species } from "#app/enums/species"; +import { StatusEffect } from "#app/enums/status-effect"; +import { MoveEffectPhase } from "#app/phases/move-effect-phase"; import GameManager from "#test/utils/gameManager"; -import { Species } from "#app/enums/species.js"; -import { Moves } from "#app/enums/moves.js"; -import { Abilities } from "#app/enums/abilities.js"; -import { getMovePosition } from "#test/utils/gameManagerUtils"; -import { StatusEffect } from "#app/enums/status-effect.js"; -import { MoveEffectPhase } from "#app/phases/move-effect-phase.js"; +import Phaser from "phaser"; +import { afterEach, beforeAll, beforeEach, describe, expect, it } from "vitest"; const TIMEOUT = 20 * 1000; // 20 sec timeout @@ -46,7 +45,7 @@ describe("Moves - Beat Up", () => { const enemyPokemon = game.scene.getEnemyPokemon()!; let enemyStartingHp = enemyPokemon.hp; - game.doAttack(getMovePosition(game.scene, 0, Moves.BEAT_UP)); + game.move.select(Moves.BEAT_UP); await game.phaseInterceptor.to(MoveEffectPhase); @@ -70,7 +69,7 @@ describe("Moves - Beat Up", () => { game.scene.getParty()[1].trySetStatus(StatusEffect.BURN); - game.doAttack(getMovePosition(game.scene, 0, Moves.BEAT_UP)); + game.move.select(Moves.BEAT_UP); await game.phaseInterceptor.to(MoveEffectPhase); @@ -81,14 +80,14 @@ describe("Moves - Beat Up", () => { it( "should hit twice for each player Pokemon if the user has Multi-Lens", async () => { - game.override.startingHeldItems([{name: "MULTI_LENS", count: 1}]); + game.override.startingHeldItems([{ name: "MULTI_LENS", count: 1 }]); await game.startBattle([Species.MAGIKARP, Species.BULBASAUR, Species.CHARMANDER, Species.SQUIRTLE, Species.PIKACHU, Species.EEVEE]); const playerPokemon = game.scene.getPlayerPokemon()!; const enemyPokemon = game.scene.getEnemyPokemon()!; let enemyStartingHp = enemyPokemon.hp; - game.doAttack(getMovePosition(game.scene, 0, Moves.BEAT_UP)); + game.move.select(Moves.BEAT_UP); await game.phaseInterceptor.to(MoveEffectPhase); diff --git a/src/test/moves/belly_drum.test.ts b/src/test/moves/belly_drum.test.ts index e579a4587ad..e4956c6e83a 100644 --- a/src/test/moves/belly_drum.test.ts +++ b/src/test/moves/belly_drum.test.ts @@ -1,11 +1,13 @@ -import { afterEach, beforeAll, beforeEach, describe, expect, test } from "vitest"; -import Phaser from "phaser"; -import GameManager from "#test/utils/gameManager"; -import { TurnEndPhase } from "#app/phases/turn-end-phase.js"; -import { getMovePosition } from "#test/utils/gameManagerUtils"; +import { BattleStat } from "#app/data/battle-stat"; +import { TurnEndPhase } from "#app/phases/turn-end-phase"; +import { toDmgValue } from "#app/utils"; import { Moves } from "#enums/moves"; import { Species } from "#enums/species"; -import { BattleStat } from "#app/data/battle-stat"; +import GameManager from "#test/utils/gameManager"; +import Phaser from "phaser"; +import { afterEach, beforeAll, beforeEach, describe, expect, test } from "vitest"; +import { SPLASH_ONLY } from "../utils/testUtils"; +import { Abilities } from "#app/enums/abilities"; const TIMEOUT = 20 * 1000; // RATIO : HP Cost of Move @@ -29,24 +31,26 @@ describe("Moves - BELLY DRUM", () => { beforeEach(() => { game = new GameManager(phaserGame); - game.override.starterSpecies(Species.MAGIKARP); - game.override.enemySpecies(Species.SNORLAX); - game.override.startingLevel(100); - game.override.enemyLevel(100); - game.override.moveset([Moves.BELLY_DRUM]); - game.override.enemyMoveset([Moves.SPLASH]); + game.override + .starterSpecies(Species.MAGIKARP) + .enemySpecies(Species.SNORLAX) + .startingLevel(100) + .enemyLevel(100) + .moveset([Moves.BELLY_DRUM]) + .enemyMoveset(SPLASH_ONLY) + .enemyAbility(Abilities.BALL_FETCH); }); // Bulbapedia Reference: https://bulbapedia.bulbagarden.net/wiki/Belly_Drum_(move) test("Belly Drum raises the user's Attack to its max, at the cost of 1/2 of its maximum HP", - async() => { + async () => { await game.startBattle([Species.MAGIKARP]); const leadPokemon = game.scene.getPlayerPokemon()!; - const hpLost = Math.floor(leadPokemon.getMaxHp() / RATIO); + const hpLost = toDmgValue(leadPokemon.getMaxHp() / RATIO); - game.doAttack(getMovePosition(game.scene, 0, Moves.BELLY_DRUM)); + game.move.select(Moves.BELLY_DRUM); await game.phaseInterceptor.to(TurnEndPhase); expect(leadPokemon.hp).toBe(leadPokemon.getMaxHp() - hpLost); @@ -55,17 +59,17 @@ describe("Moves - BELLY DRUM", () => { ); test("Belly Drum will still take effect if an uninvolved stat is at max", - async() => { + async () => { await game.startBattle([Species.MAGIKARP]); const leadPokemon = game.scene.getPlayerPokemon()!; - const hpLost = Math.floor(leadPokemon.getMaxHp() / RATIO); + const hpLost = toDmgValue(leadPokemon.getMaxHp() / RATIO); // Here - BattleStat.ATK -> -3 and BattleStat.SPATK -> 6 leadPokemon.summonData.battleStats[BattleStat.ATK] = -3; leadPokemon.summonData.battleStats[BattleStat.SPATK] = 6; - game.doAttack(getMovePosition(game.scene, 0, Moves.BELLY_DRUM)); + game.move.select(Moves.BELLY_DRUM); await game.phaseInterceptor.to(TurnEndPhase); expect(leadPokemon.hp).toBe(leadPokemon.getMaxHp() - hpLost); @@ -75,14 +79,14 @@ describe("Moves - BELLY DRUM", () => { ); test("Belly Drum fails if the pokemon's attack stat is at its maximum", - async() => { + async () => { await game.startBattle([Species.MAGIKARP]); const leadPokemon = game.scene.getPlayerPokemon()!; leadPokemon.summonData.battleStats[BattleStat.ATK] = 6; - game.doAttack(getMovePosition(game.scene, 0, Moves.BELLY_DRUM)); + game.move.select(Moves.BELLY_DRUM); await game.phaseInterceptor.to(TurnEndPhase); expect(leadPokemon.hp).toBe(leadPokemon.getMaxHp()); @@ -91,14 +95,14 @@ describe("Moves - BELLY DRUM", () => { ); test("Belly Drum fails if the user's health is less than 1/2", - async() => { + async () => { await game.startBattle([Species.MAGIKARP]); const leadPokemon = game.scene.getPlayerPokemon()!; - const hpLost = Math.floor(leadPokemon.getMaxHp() / RATIO); + const hpLost = toDmgValue(leadPokemon.getMaxHp() / RATIO); leadPokemon.hp = hpLost - PREDAMAGE; - game.doAttack(getMovePosition(game.scene, 0, Moves.BELLY_DRUM)); + game.move.select(Moves.BELLY_DRUM); await game.phaseInterceptor.to(TurnEndPhase); expect(leadPokemon.hp).toBe(hpLost - PREDAMAGE); diff --git a/src/test/moves/ceaseless_edge.test.ts b/src/test/moves/ceaseless_edge.test.ts index c8291a99b59..34ecf8f39f6 100644 --- a/src/test/moves/ceaseless_edge.test.ts +++ b/src/test/moves/ceaseless_edge.test.ts @@ -2,14 +2,13 @@ import { ArenaTagSide, ArenaTrapTag } from "#app/data/arena-tag"; import { allMoves } from "#app/data/move"; import { Abilities } from "#app/enums/abilities"; import { ArenaTagType } from "#app/enums/arena-tag-type"; -import GameManager from "#test/utils/gameManager"; -import { getMovePosition } from "#test/utils/gameManagerUtils"; +import { MoveEffectPhase } from "#app/phases/move-effect-phase"; +import { TurnEndPhase } from "#app/phases/turn-end-phase"; import { Moves } from "#enums/moves"; import { Species } from "#enums/species"; +import GameManager from "#test/utils/gameManager"; import Phaser from "phaser"; import { afterEach, beforeAll, beforeEach, describe, expect, test, vi } from "vitest"; -import { MoveEffectPhase } from "#app/phases/move-effect-phase.js"; -import { TurnEndPhase } from "#app/phases/turn-end-phase.js"; const TIMEOUT = 20 * 1000; @@ -35,8 +34,8 @@ describe("Moves - Ceaseless Edge", () => { game.override.enemyPassiveAbility(Abilities.RUN_AWAY); game.override.startingLevel(100); game.override.enemyLevel(100); - game.override.moveset([ Moves.CEASELESS_EDGE, Moves.SPLASH, Moves.ROAR ]); - game.override.enemyMoveset([Moves.SPLASH,Moves.SPLASH,Moves.SPLASH,Moves.SPLASH]); + game.override.moveset([Moves.CEASELESS_EDGE, Moves.SPLASH, Moves.ROAR]); + game.override.enemyMoveset([Moves.SPLASH, Moves.SPLASH, Moves.SPLASH, Moves.SPLASH]); vi.spyOn(allMoves[Moves.CEASELESS_EDGE], "accuracy", "get").mockReturnValue(100); }); @@ -44,13 +43,13 @@ describe("Moves - Ceaseless Edge", () => { test( "move should hit and apply spikes", async () => { - await game.startBattle([ Species.ILLUMISE ]); + await game.startBattle([Species.ILLUMISE]); const enemyPokemon = game.scene.getEnemyPokemon()!; const enemyStartingHp = enemyPokemon.hp; - game.doAttack(getMovePosition(game.scene, 0, Moves.CEASELESS_EDGE)); + game.move.select(Moves.CEASELESS_EDGE); await game.phaseInterceptor.to(MoveEffectPhase, false); // Spikes should not have any layers before move effect is applied @@ -68,14 +67,14 @@ describe("Moves - Ceaseless Edge", () => { test( "move should hit twice with multi lens and apply two layers of spikes", async () => { - game.override.startingHeldItems([{name: "MULTI_LENS"}]); - await game.startBattle([ Species.ILLUMISE ]); + game.override.startingHeldItems([{ name: "MULTI_LENS" }]); + await game.startBattle([Species.ILLUMISE]); const enemyPokemon = game.scene.getEnemyPokemon()!; const enemyStartingHp = enemyPokemon.hp; - game.doAttack(getMovePosition(game.scene, 0, Moves.CEASELESS_EDGE)); + game.move.select(Moves.CEASELESS_EDGE); await game.phaseInterceptor.to(MoveEffectPhase, false); // Spikes should not have any layers before move effect is applied @@ -93,12 +92,12 @@ describe("Moves - Ceaseless Edge", () => { test( "trainer - move should hit twice, apply two layers of spikes, force switch opponent - opponent takes damage", async () => { - game.override.startingHeldItems([{name: "MULTI_LENS"}]); + game.override.startingHeldItems([{ name: "MULTI_LENS" }]); game.override.startingWave(5); - await game.startBattle([ Species.ILLUMISE ]); + await game.startBattle([Species.ILLUMISE]); - game.doAttack(getMovePosition(game.scene, 0, Moves.CEASELESS_EDGE)); + game.move.select(Moves.CEASELESS_EDGE); await game.phaseInterceptor.to(MoveEffectPhase, false); // Spikes should not have any layers before move effect is applied const tagBefore = game.scene.arena.getTagOnSide(ArenaTagType.SPIKES, ArenaTagSide.ENEMY) as ArenaTrapTag; @@ -112,7 +111,7 @@ describe("Moves - Ceaseless Edge", () => { const hpBeforeSpikes = game.scene.currentBattle.enemyParty[1].hp; // Check HP of pokemon that WILL BE switched in (index 1) game.forceOpponentToSwitch(); - game.doAttack(getMovePosition(game.scene, 0, Moves.SPLASH)); + game.move.select(Moves.SPLASH); await game.phaseInterceptor.to(TurnEndPhase, false); expect(game.scene.currentBattle.enemyParty[0].hp).toBeLessThan(hpBeforeSpikes); }, TIMEOUT diff --git a/src/test/moves/clangorous_soul.test.ts b/src/test/moves/clangorous_soul.test.ts index 5b2e8b6e06d..9ea6da91595 100644 --- a/src/test/moves/clangorous_soul.test.ts +++ b/src/test/moves/clangorous_soul.test.ts @@ -1,12 +1,12 @@ -import { afterEach, beforeAll, beforeEach, describe, expect, test } from "vitest"; -import Phaser from "phaser"; -import GameManager from "#test/utils/gameManager"; -import { TurnEndPhase } from "#app/phases/turn-end-phase.js"; -import { getMovePosition } from "#test/utils/gameManagerUtils"; +import { BattleStat } from "#app/data/battle-stat"; +import { TurnEndPhase } from "#app/phases/turn-end-phase"; +import { toDmgValue } from "#app/utils"; import { Moves } from "#enums/moves"; import { Species } from "#enums/species"; -import { BattleStat } from "#app/data/battle-stat"; +import GameManager from "#test/utils/gameManager"; import { SPLASH_ONLY } from "#test/utils/testUtils"; +import Phaser from "phaser"; +import { afterEach, beforeAll, beforeEach, describe, expect, test } from "vitest"; const TIMEOUT = 20 * 1000; /** HP Cost of Move */ @@ -41,13 +41,13 @@ describe("Moves - CLANGOROUS_SOUL", () => { //Bulbapedia Reference: https://bulbapedia.bulbagarden.net/wiki/Clangorous_Soul_(move) test("Clangorous Soul raises the user's Attack, Defense, Special Attack, Special Defense and Speed by one stage each, at the cost of 1/3 of its maximum HP", - async() => { - await game.startBattle([Species.MAGIKARP]); + async () => { + await game.startBattle([Species.MAGIKARP]); - const leadPokemon = game.scene.getPlayerPokemon()!; - const hpLost = Math.floor(leadPokemon.getMaxHp() / RATIO); + const leadPokemon = game.scene.getPlayerPokemon()!; + const hpLost = toDmgValue(leadPokemon.getMaxHp() / RATIO); - game.doAttack(getMovePosition(game.scene, 0, Moves.CLANGOROUS_SOUL)); + game.move.select(Moves.CLANGOROUS_SOUL); await game.phaseInterceptor.to(TurnEndPhase); expect(leadPokemon.hp).toBe(leadPokemon.getMaxHp() - hpLost); @@ -56,15 +56,15 @@ describe("Moves - CLANGOROUS_SOUL", () => { expect(leadPokemon.summonData.battleStats[BattleStat.SPATK]).toBe(1); expect(leadPokemon.summonData.battleStats[BattleStat.SPDEF]).toBe(1); expect(leadPokemon.summonData.battleStats[BattleStat.SPD]).toBe(1); - }, TIMEOUT + }, TIMEOUT ); test("Clangorous Soul will still take effect if one or more of the involved stats are not at max", - async() => { + async () => { await game.startBattle([Species.MAGIKARP]); const leadPokemon = game.scene.getPlayerPokemon()!; - const hpLost = Math.floor(leadPokemon.getMaxHp() / RATIO); + const hpLost = toDmgValue(leadPokemon.getMaxHp() / RATIO); //Here - BattleStat.SPD -> 0 and BattleStat.SPDEF -> 4 leadPokemon.summonData.battleStats[BattleStat.ATK] = 6; @@ -72,7 +72,7 @@ describe("Moves - CLANGOROUS_SOUL", () => { leadPokemon.summonData.battleStats[BattleStat.SPATK] = 6; leadPokemon.summonData.battleStats[BattleStat.SPDEF] = 4; - game.doAttack(getMovePosition(game.scene, 0, Moves.CLANGOROUS_SOUL)); + game.move.select(Moves.CLANGOROUS_SOUL); await game.phaseInterceptor.to(TurnEndPhase); expect(leadPokemon.hp).toBe(leadPokemon.getMaxHp() - hpLost); @@ -85,7 +85,7 @@ describe("Moves - CLANGOROUS_SOUL", () => { ); test("Clangorous Soul fails if all stats involved are at max", - async() => { + async () => { await game.startBattle([Species.MAGIKARP]); const leadPokemon = game.scene.getPlayerPokemon()!; @@ -96,7 +96,7 @@ describe("Moves - CLANGOROUS_SOUL", () => { leadPokemon.summonData.battleStats[BattleStat.SPDEF] = 6; leadPokemon.summonData.battleStats[BattleStat.SPD] = 6; - game.doAttack(getMovePosition(game.scene, 0, Moves.CLANGOROUS_SOUL)); + game.move.select(Moves.CLANGOROUS_SOUL); await game.phaseInterceptor.to(TurnEndPhase); expect(leadPokemon.hp).toBe(leadPokemon.getMaxHp()); @@ -109,14 +109,14 @@ describe("Moves - CLANGOROUS_SOUL", () => { ); test("Clangorous Soul fails if the user's health is less than 1/3", - async() => { + async () => { await game.startBattle([Species.MAGIKARP]); const leadPokemon = game.scene.getPlayerPokemon()!; - const hpLost = Math.floor(leadPokemon.getMaxHp() / RATIO); + const hpLost = toDmgValue(leadPokemon.getMaxHp() / RATIO); leadPokemon.hp = hpLost - PREDAMAGE; - game.doAttack(getMovePosition(game.scene, 0, Moves.CLANGOROUS_SOUL)); + game.move.select(Moves.CLANGOROUS_SOUL); await game.phaseInterceptor.to(TurnEndPhase); expect(leadPokemon.hp).toBe(hpLost - PREDAMAGE); diff --git a/src/test/moves/crafty_shield.test.ts b/src/test/moves/crafty_shield.test.ts index c3e50bc52c2..a341a50b0b9 100644 --- a/src/test/moves/crafty_shield.test.ts +++ b/src/test/moves/crafty_shield.test.ts @@ -1,14 +1,13 @@ +import { BattleStat } from "#app/data/battle-stat"; +import { BattlerTagType } from "#app/enums/battler-tag-type"; +import { BerryPhase } from "#app/phases/berry-phase"; +import { CommandPhase } from "#app/phases/command-phase"; +import { Abilities } from "#enums/abilities"; +import { Moves } from "#enums/moves"; +import { Species } from "#enums/species"; import Phaser from "phaser"; import { afterEach, beforeAll, beforeEach, describe, expect, test } from "vitest"; import GameManager from "../utils/gameManager"; -import { Species } from "#enums/species"; -import { Abilities } from "#enums/abilities"; -import { Moves } from "#enums/moves"; -import { getMovePosition } from "../utils/gameManagerUtils"; -import { BattleStat } from "#app/data/battle-stat.js"; -import { BattlerTagType } from "#app/enums/battler-tag-type.js"; -import { BerryPhase } from "#app/phases/berry-phase.js"; -import { CommandPhase } from "#app/phases/command-phase.js"; const TIMEOUT = 20 * 1000; @@ -48,11 +47,11 @@ describe("Moves - Crafty Shield", () => { const leadPokemon = game.scene.getPlayerField(); - game.doAttack(getMovePosition(game.scene, 0, Moves.CRAFTY_SHIELD)); + game.move.select(Moves.CRAFTY_SHIELD); await game.phaseInterceptor.to(CommandPhase); - game.doAttack(getMovePosition(game.scene, 1, Moves.SPLASH)); + game.move.select(Moves.SPLASH, 1); await game.phaseInterceptor.to(BerryPhase, false); @@ -69,11 +68,11 @@ describe("Moves - Crafty Shield", () => { const leadPokemon = game.scene.getPlayerField(); - game.doAttack(getMovePosition(game.scene, 0, Moves.CRAFTY_SHIELD)); + game.move.select(Moves.CRAFTY_SHIELD); await game.phaseInterceptor.to(CommandPhase); - game.doAttack(getMovePosition(game.scene, 1, Moves.SPLASH)); + game.move.select(Moves.SPLASH, 1); await game.phaseInterceptor.to(BerryPhase, false); @@ -91,11 +90,11 @@ describe("Moves - Crafty Shield", () => { const leadPokemon = game.scene.getPlayerField(); - game.doAttack(getMovePosition(game.scene, 0, Moves.CRAFTY_SHIELD)); + game.move.select(Moves.CRAFTY_SHIELD); await game.phaseInterceptor.to(CommandPhase); - game.doAttack(getMovePosition(game.scene, 1, Moves.SPLASH)); + game.move.select(Moves.SPLASH, 1); await game.phaseInterceptor.to(BerryPhase, false); @@ -110,11 +109,11 @@ describe("Moves - Crafty Shield", () => { const leadPokemon = game.scene.getPlayerField(); - game.doAttack(getMovePosition(game.scene, 0, Moves.CRAFTY_SHIELD)); + game.move.select(Moves.CRAFTY_SHIELD); await game.phaseInterceptor.to(CommandPhase); - game.doAttack(getMovePosition(game.scene, 1, Moves.SWORDS_DANCE)); + game.move.select(Moves.SWORDS_DANCE, 1); await game.phaseInterceptor.to(BerryPhase, false); diff --git a/src/test/moves/double_team.test.ts b/src/test/moves/double_team.test.ts index 1c89d5b6350..c45c8bd8516 100644 --- a/src/test/moves/double_team.test.ts +++ b/src/test/moves/double_team.test.ts @@ -1,10 +1,9 @@ -import { BattleStat } from "#app/data/battle-stat.js"; -import { Abilities } from "#app/enums/abilities.js"; -import { TurnEndPhase } from "#app/phases/turn-end-phase.js"; -import GameManager from "#test/utils/gameManager"; -import { getMovePosition } from "#test/utils/gameManagerUtils"; +import { BattleStat } from "#app/data/battle-stat"; +import { Abilities } from "#app/enums/abilities"; +import { TurnEndPhase } from "#app/phases/turn-end-phase"; import { Moves } from "#enums/moves"; import { Species } from "#enums/species"; +import GameManager from "#test/utils/gameManager"; import Phaser from "phaser"; import { afterEach, beforeAll, beforeEach, describe, expect, it, vi } from "vitest"; @@ -42,7 +41,7 @@ describe("Moves - Double Team", () => { vi.spyOn(enemy, "getAccuracyMultiplier"); expect(ally.summonData.battleStats[BattleStat.EVA]).toBe(0); - game.doAttack(getMovePosition(game.scene, 0, Moves.DOUBLE_TEAM)); + game.move.select(Moves.DOUBLE_TEAM); await game.phaseInterceptor.to(TurnEndPhase); await game.toNextTurn(); diff --git a/src/test/moves/dragon_rage.test.ts b/src/test/moves/dragon_rage.test.ts index 8a27f4006f4..223635575ab 100644 --- a/src/test/moves/dragon_rage.test.ts +++ b/src/test/moves/dragon_rage.test.ts @@ -1,17 +1,16 @@ import { BattleStat } from "#app/data/battle-stat"; import { Type } from "#app/data/type"; -import { Species } from "#app/enums/species.js"; +import { Species } from "#app/enums/species"; import { EnemyPokemon, PlayerPokemon } from "#app/field/pokemon"; import { modifierTypes } from "#app/modifier/modifier-type"; -import { TurnEndPhase } from "#app/phases/turn-end-phase.js"; -import GameManager from "#test/utils/gameManager"; -import { getMovePosition } from "#test/utils/gameManagerUtils"; +import { TurnEndPhase } from "#app/phases/turn-end-phase"; import { Abilities } from "#enums/abilities"; import { BattlerTagType } from "#enums/battler-tag-type"; import { Moves } from "#enums/moves"; +import GameManager from "#test/utils/gameManager"; +import { SPLASH_ONLY } from "#test/utils/testUtils"; import Phaser from "phaser"; import { afterEach, beforeAll, beforeEach, describe, expect, it, vi } from "vitest"; -import { SPLASH_ONLY } from "#test/utils/testUtils"; describe("Moves - Dragon Rage", () => { let phaserGame: Phaser.Game; @@ -62,7 +61,7 @@ describe("Moves - Dragon Rage", () => { game.override.disableCrits(); vi.spyOn(enemyPokemon, "getTypes").mockReturnValue([Type.DRAGON]); - game.doAttack(getMovePosition(game.scene, 0, Moves.DRAGON_RAGE)); + game.move.select(Moves.DRAGON_RAGE); await game.phaseInterceptor.to(TurnEndPhase); const damageDealt = enemyPokemon.getMaxHp() - enemyPokemon.hp; @@ -73,7 +72,7 @@ describe("Moves - Dragon Rage", () => { game.override.disableCrits(); vi.spyOn(enemyPokemon, "getTypes").mockReturnValue([Type.STEEL]); - game.doAttack(getMovePosition(game.scene, 0, Moves.DRAGON_RAGE)); + game.move.select(Moves.DRAGON_RAGE); await game.phaseInterceptor.to(TurnEndPhase); const damageDealt = enemyPokemon.getMaxHp() - enemyPokemon.hp; @@ -84,7 +83,7 @@ describe("Moves - Dragon Rage", () => { game.override.disableCrits(); partyPokemon.summonData.battleStats[BattleStat.SPATK] = 2; - game.doAttack(getMovePosition(game.scene, 0, Moves.DRAGON_RAGE)); + game.move.select(Moves.DRAGON_RAGE); await game.phaseInterceptor.to(TurnEndPhase); const damageDealt = enemyPokemon.getMaxHp() - enemyPokemon.hp; @@ -95,7 +94,7 @@ describe("Moves - Dragon Rage", () => { game.override.disableCrits(); vi.spyOn(partyPokemon, "getTypes").mockReturnValue([Type.DRAGON]); - game.doAttack(getMovePosition(game.scene, 0, Moves.DRAGON_RAGE)); + game.move.select(Moves.DRAGON_RAGE); await game.phaseInterceptor.to(TurnEndPhase); const damageDealt = enemyPokemon.getMaxHp() - enemyPokemon.hp; @@ -105,7 +104,7 @@ describe("Moves - Dragon Rage", () => { it("ignores criticals", async () => { partyPokemon.addTag(BattlerTagType.ALWAYS_CRIT, 99); - game.doAttack(getMovePosition(game.scene, 0, Moves.DRAGON_RAGE)); + game.move.select(Moves.DRAGON_RAGE); await game.phaseInterceptor.to(TurnEndPhase); const damageDealt = enemyPokemon.getMaxHp() - enemyPokemon.hp; @@ -116,7 +115,7 @@ describe("Moves - Dragon Rage", () => { game.override.disableCrits(); game.override.enemyAbility(Abilities.ICE_SCALES); - game.doAttack(getMovePosition(game.scene, 0, Moves.DRAGON_RAGE)); + game.move.select(Moves.DRAGON_RAGE); await game.phaseInterceptor.to(TurnEndPhase); const damageDealt = enemyPokemon.getMaxHp() - enemyPokemon.hp; @@ -127,7 +126,7 @@ describe("Moves - Dragon Rage", () => { game.override.disableCrits(); game.scene.addModifier(modifierTypes.MULTI_LENS().newModifier(partyPokemon), false); - game.doAttack(getMovePosition(game.scene, 0, Moves.DRAGON_RAGE)); + game.move.select(Moves.DRAGON_RAGE); await game.phaseInterceptor.to(TurnEndPhase); const damageDealt = enemyPokemon.getMaxHp() - enemyPokemon.hp; diff --git a/src/test/moves/dragon_tail.test.ts b/src/test/moves/dragon_tail.test.ts index 28c47a83454..362383e2fe3 100644 --- a/src/test/moves/dragon_tail.test.ts +++ b/src/test/moves/dragon_tail.test.ts @@ -1,16 +1,15 @@ -import { allMoves } from "#app/data/move.js"; -import { SPLASH_ONLY } from "../utils/testUtils"; +import { BattlerIndex } from "#app/battle"; +import { allMoves } from "#app/data/move"; +import { BattleEndPhase } from "#app/phases/battle-end-phase"; +import { BerryPhase } from "#app/phases/berry-phase"; +import { TurnEndPhase } from "#app/phases/turn-end-phase"; import { Abilities } from "#enums/abilities"; import { Moves } from "#enums/moves"; import { Species } from "#enums/species"; import Phaser from "phaser"; import { afterEach, beforeAll, beforeEach, describe, expect, test, vi } from "vitest"; import GameManager from "../utils/gameManager"; -import { getMovePosition } from "../utils/gameManagerUtils"; -import { BattlerIndex } from "#app/battle.js"; -import { BattleEndPhase } from "#app/phases/battle-end-phase.js"; -import { BerryPhase } from "#app/phases/berry-phase.js"; -import { TurnEndPhase } from "#app/phases/turn-end-phase.js"; +import { SPLASH_ONLY } from "../utils/testUtils"; const TIMEOUT = 20 * 1000; @@ -46,9 +45,8 @@ describe("Moves - Dragon Tail", () => { await game.startBattle([Species.DRATINI]); const enemyPokemon = game.scene.getEnemyPokemon()!; - expect(enemyPokemon).toBeDefined(); - game.doAttack(getMovePosition(game.scene, 0, Moves.DRAGON_TAIL)); + game.move.select(Moves.DRAGON_TAIL); await game.phaseInterceptor.to(BerryPhase); @@ -68,12 +66,9 @@ describe("Moves - Dragon Tail", () => { await game.startBattle([Species.DRATINI]); const leadPokemon = game.scene.getPlayerPokemon()!; - expect(leadPokemon).toBeDefined(); - const enemyPokemon = game.scene.getEnemyPokemon()!; - expect(enemyPokemon).toBeDefined(); - game.doAttack(getMovePosition(game.scene, 0, Moves.DRAGON_TAIL)); + game.move.select(Moves.DRAGON_TAIL); await game.phaseInterceptor.to(BerryPhase); @@ -85,7 +80,7 @@ describe("Moves - Dragon Tail", () => { ); test( - "Double battles should proceed without crashing" , + "Double battles should proceed without crashing", async () => { game.override.battleType("double").enemyMoveset(SPLASH_ONLY); game.override.moveset([Moves.DRAGON_TAIL, Moves.SPLASH, Moves.FLAMETHROWER]) @@ -93,19 +88,12 @@ describe("Moves - Dragon Tail", () => { await game.startBattle([Species.DRATINI, Species.DRATINI, Species.WAILORD, Species.WAILORD]); const leadPokemon = game.scene.getParty()[0]!; - const secPokemon = game.scene.getParty()[1]!; - expect(leadPokemon).toBeDefined(); - expect(secPokemon).toBeDefined(); - const enemyLeadPokemon = game.scene.currentBattle.enemyParty[0]!; - const enemySecPokemon = game.scene.currentBattle.enemyParty[1]!; - expect(enemyLeadPokemon).toBeDefined(); - expect(enemySecPokemon).toBeDefined(); + const enemyLeadPokemon = game.scene.getEnemyParty()[0]!; + const enemySecPokemon = game.scene.getEnemyParty()[1]!; - game.doAttack(getMovePosition(game.scene, 0, Moves.DRAGON_TAIL)); - game.doSelectTarget(BattlerIndex.ENEMY); - - game.doAttack(getMovePosition(game.scene, 1, Moves.SPLASH)); + game.move.select(Moves.DRAGON_TAIL, 0, BattlerIndex.ENEMY); + game.move.select(Moves.SPLASH, 1); await game.phaseInterceptor.to(TurnEndPhase); @@ -117,10 +105,8 @@ describe("Moves - Dragon Tail", () => { expect(leadPokemon.hp).toBeLessThan(leadPokemon.getMaxHp()); // second turn - - game.doAttack(getMovePosition(game.scene, 0, Moves.FLAMETHROWER)); - game.doSelectTarget(BattlerIndex.ENEMY_2); - game.doAttack(getMovePosition(game.scene, 1, Moves.SPLASH)); + game.move.select(Moves.FLAMETHROWER, 0, BattlerIndex.ENEMY_2); + game.move.select(Moves.SPLASH, 1); await game.phaseInterceptor.to(BerryPhase); expect(enemySecPokemon.hp).toBeLessThan(enemySecPokemon.getMaxHp()); @@ -128,7 +114,7 @@ describe("Moves - Dragon Tail", () => { ); test( - "Flee move redirection works" , + "Flee move redirection works", async () => { game.override.battleType("double").enemyMoveset(SPLASH_ONLY); game.override.moveset([Moves.DRAGON_TAIL, Moves.SPLASH, Moves.FLAMETHROWER]); @@ -137,20 +123,13 @@ describe("Moves - Dragon Tail", () => { const leadPokemon = game.scene.getParty()[0]!; const secPokemon = game.scene.getParty()[1]!; - expect(leadPokemon).toBeDefined(); - expect(secPokemon).toBeDefined(); - const enemyLeadPokemon = game.scene.currentBattle.enemyParty[0]!; - const enemySecPokemon = game.scene.currentBattle.enemyParty[1]!; - expect(enemyLeadPokemon).toBeDefined(); - expect(enemySecPokemon).toBeDefined(); - - game.doAttack(getMovePosition(game.scene, 0, Moves.DRAGON_TAIL)); - game.doSelectTarget(BattlerIndex.ENEMY); + const enemyLeadPokemon = game.scene.getEnemyParty()[0]!; + const enemySecPokemon = game.scene.getEnemyParty()[1]!; + game.move.select(Moves.DRAGON_TAIL, 0, BattlerIndex.ENEMY); // target the same pokemon, second move should be redirected after first flees - game.doAttack(getMovePosition(game.scene, 0, Moves.DRAGON_TAIL)); - game.doSelectTarget(BattlerIndex.ENEMY); + game.move.select(Moves.DRAGON_TAIL, 1, BattlerIndex.ENEMY); await game.phaseInterceptor.to(BerryPhase); diff --git a/src/test/moves/dynamax_cannon.test.ts b/src/test/moves/dynamax_cannon.test.ts index 5e81241ef46..6ac0befdb36 100644 --- a/src/test/moves/dynamax_cannon.test.ts +++ b/src/test/moves/dynamax_cannon.test.ts @@ -1,14 +1,12 @@ import { BattlerIndex } from "#app/battle"; import { allMoves } from "#app/data/move"; -import GameManager from "#test/utils/gameManager"; -import { getMovePosition } from "#test/utils/gameManagerUtils"; +import { DamagePhase } from "#app/phases/damage-phase"; +import { MoveEffectPhase } from "#app/phases/move-effect-phase"; import { Moves } from "#enums/moves"; import { Species } from "#enums/species"; +import GameManager from "#test/utils/gameManager"; import Phaser from "phaser"; import { afterEach, beforeAll, beforeEach, describe, expect, it, vi } from "vitest"; -import { DamagePhase } from "#app/phases/damage-phase.js"; -import { MoveEffectPhase } from "#app/phases/move-effect-phase.js"; -import { TurnStartPhase } from "#app/phases/turn-start-phase.js"; describe("Moves - Dynamax Cannon", () => { let phaserGame: Phaser.Game; @@ -29,7 +27,7 @@ describe("Moves - Dynamax Cannon", () => { beforeEach(() => { game = new GameManager(phaserGame); - game.override.moveset([ dynamaxCannon.id ]); + game.override.moveset([dynamaxCannon.id]); game.override.startingLevel(200); // Note that, for Waves 1-10, the level cap is 10 @@ -38,18 +36,18 @@ describe("Moves - Dynamax Cannon", () => { game.override.disableCrits(); game.override.enemySpecies(Species.MAGIKARP); - game.override.enemyMoveset([ Moves.SPLASH, Moves.SPLASH, Moves.SPLASH, Moves.SPLASH ]); + game.override.enemyMoveset([Moves.SPLASH, Moves.SPLASH, Moves.SPLASH, Moves.SPLASH]); vi.spyOn(dynamaxCannon, "calculateBattlePower"); }); - it("should return 100 power against an enemy below level cap", async() => { + it("should return 100 power against an enemy below level cap", async () => { game.override.enemyLevel(1); await game.startBattle([ Species.ETERNATUS, ]); - game.doAttack(getMovePosition(game.scene, 0, dynamaxCannon.id)); + game.move.select(dynamaxCannon.id); await game.phaseInterceptor.to(MoveEffectPhase, false); expect((game.scene.getCurrentPhase() as MoveEffectPhase).move.moveId).toBe(dynamaxCannon.id); @@ -57,13 +55,13 @@ describe("Moves - Dynamax Cannon", () => { expect(dynamaxCannon.calculateBattlePower).toHaveLastReturnedWith(100); }, 20000); - it("should return 100 power against an enemy at level cap", async() => { + it("should return 100 power against an enemy at level cap", async () => { game.override.enemyLevel(10); await game.startBattle([ Species.ETERNATUS, ]); - game.doAttack(getMovePosition(game.scene, 0, dynamaxCannon.id)); + game.move.select(dynamaxCannon.id); await game.phaseInterceptor.to(MoveEffectPhase, false); expect((game.scene.getCurrentPhase() as MoveEffectPhase).move.moveId).toBe(dynamaxCannon.id); @@ -71,13 +69,13 @@ describe("Moves - Dynamax Cannon", () => { expect(dynamaxCannon.calculateBattlePower).toHaveLastReturnedWith(100); }, 20000); - it("should return 120 power against an enemy 1% above level cap", async() => { + it("should return 120 power against an enemy 1% above level cap", async () => { game.override.enemyLevel(101); await game.startBattle([ Species.ETERNATUS, ]); - game.doAttack(getMovePosition(game.scene, 0, dynamaxCannon.id)); + game.move.select(dynamaxCannon.id); await game.phaseInterceptor.to(MoveEffectPhase, false); const phase = game.scene.getCurrentPhase() as MoveEffectPhase; @@ -88,13 +86,13 @@ describe("Moves - Dynamax Cannon", () => { expect(dynamaxCannon.calculateBattlePower).toHaveLastReturnedWith(120); }, 20000); - it("should return 140 power against an enemy 2% above level capp", async() => { + it("should return 140 power against an enemy 2% above level capp", async () => { game.override.enemyLevel(102); await game.startBattle([ Species.ETERNATUS, ]); - game.doAttack(getMovePosition(game.scene, 0, dynamaxCannon.id)); + game.move.select(dynamaxCannon.id); await game.phaseInterceptor.to(MoveEffectPhase, false); const phase = game.scene.getCurrentPhase() as MoveEffectPhase; @@ -105,13 +103,13 @@ describe("Moves - Dynamax Cannon", () => { expect(dynamaxCannon.calculateBattlePower).toHaveLastReturnedWith(140); }, 20000); - it("should return 160 power against an enemy 3% above level cap", async() => { + it("should return 160 power against an enemy 3% above level cap", async () => { game.override.enemyLevel(103); await game.startBattle([ Species.ETERNATUS, ]); - game.doAttack(getMovePosition(game.scene, 0, dynamaxCannon.id)); + game.move.select(dynamaxCannon.id); await game.phaseInterceptor.to(MoveEffectPhase, false); const phase = game.scene.getCurrentPhase() as MoveEffectPhase; @@ -122,13 +120,13 @@ describe("Moves - Dynamax Cannon", () => { expect(dynamaxCannon.calculateBattlePower).toHaveLastReturnedWith(160); }, 20000); - it("should return 180 power against an enemy 4% above level cap", async() => { + it("should return 180 power against an enemy 4% above level cap", async () => { game.override.enemyLevel(104); await game.startBattle([ Species.ETERNATUS, ]); - game.doAttack(getMovePosition(game.scene, 0, dynamaxCannon.id)); + game.move.select(dynamaxCannon.id); await game.phaseInterceptor.to(MoveEffectPhase, false); const phase = game.scene.getCurrentPhase() as MoveEffectPhase; @@ -139,13 +137,13 @@ describe("Moves - Dynamax Cannon", () => { expect(dynamaxCannon.calculateBattlePower).toHaveLastReturnedWith(180); }, 20000); - it("should return 200 power against an enemy 5% above level cap", async() => { + it("should return 200 power against an enemy 5% above level cap", async () => { game.override.enemyLevel(105); await game.startBattle([ Species.ETERNATUS, ]); - game.doAttack(getMovePosition(game.scene, 0, dynamaxCannon.id)); + game.move.select(dynamaxCannon.id); await game.phaseInterceptor.to(MoveEffectPhase, false); const phase = game.scene.getCurrentPhase() as MoveEffectPhase; @@ -156,17 +154,14 @@ describe("Moves - Dynamax Cannon", () => { expect(dynamaxCannon.calculateBattlePower).toHaveLastReturnedWith(200); }, 20000); - it("should return 200 power against an enemy way above level cap", async() => { + it("should return 200 power against an enemy way above level cap", async () => { game.override.enemyLevel(999); await game.startBattle([ Species.ETERNATUS, ]); - game.doAttack(getMovePosition(game.scene, 0, dynamaxCannon.id)); - - await game.phaseInterceptor.to(TurnStartPhase, false); - // Force user to act before enemy - vi.spyOn((game.scene.getCurrentPhase() as TurnStartPhase), "getOrder").mockReturnValue([ BattlerIndex.PLAYER, BattlerIndex. ENEMY]); + game.move.select(dynamaxCannon.id); + await game.setTurnOrder([BattlerIndex.PLAYER, BattlerIndex.ENEMY]); await game.phaseInterceptor.to(MoveEffectPhase, false); expect((game.scene.getCurrentPhase() as MoveEffectPhase).move.moveId).toBe(dynamaxCannon.id); diff --git a/src/test/moves/effectiveness.test.ts b/src/test/moves/effectiveness.test.ts new file mode 100644 index 00000000000..af44586b69d --- /dev/null +++ b/src/test/moves/effectiveness.test.ts @@ -0,0 +1,70 @@ +import { allMoves } from "#app/data/move"; +import { getPokemonSpecies } from "#app/data/pokemon-species"; +import { TrainerSlot } from "#app/data/trainer-config"; +import { Abilities } from "#app/enums/abilities"; +import { Moves } from "#app/enums/moves"; +import { Species } from "#app/enums/species"; +import * as Messages from "#app/messages"; +import GameManager from "#test/utils/gameManager"; +import Phaser from "phaser"; +import { afterEach, beforeAll, describe, expect, it, vi } from "vitest"; + +function testMoveEffectiveness(game: GameManager, move: Moves, targetSpecies: Species, + expected: number, targetAbility: Abilities = Abilities.BALL_FETCH): void { + // Suppress getPokemonNameWithAffix because it calls on a null battle spec + vi.spyOn(Messages, "getPokemonNameWithAffix").mockReturnValue(""); + game.override.enemyAbility(targetAbility); + const user = game.scene.addPlayerPokemon(getPokemonSpecies(Species.SNORLAX), 5); + const target = game.scene.addEnemyPokemon(getPokemonSpecies(targetSpecies), 5, TrainerSlot.NONE); + + expect(target.getMoveEffectiveness(user, allMoves[move])).toBe(expected); +} + +describe("Moves - Type Effectiveness", () => { + let phaserGame: Phaser.Game; + let game: GameManager; + + beforeAll(() => { + phaserGame = new Phaser.Game({ + type: Phaser.HEADLESS, + }); + game = new GameManager(phaserGame); + game.override.ability(Abilities.BALL_FETCH); + }); + + afterEach(() => { + game.phaseInterceptor.restoreOg(); + }); + + it("Normal-type attacks are neutrally effective against Normal-type Pokemon", + () => testMoveEffectiveness(game, Moves.TACKLE, Species.SNORLAX, 1) + ); + + it("Normal-type attacks are not very effective against Steel-type Pokemon", + () => testMoveEffectiveness(game, Moves.TACKLE, Species.REGISTEEL, 0.5) + ); + + it("Normal-type attacks are doubly resisted by Steel/Rock-type Pokemon", + () => testMoveEffectiveness(game, Moves.TACKLE, Species.AGGRON, 0.25) + ); + + it("Normal-type attacks have no effect on Ghost-type Pokemon", + () => testMoveEffectiveness(game, Moves.TACKLE, Species.DUSCLOPS, 0) + ); + + it("Normal-type status moves are not affected by type matchups", + () => testMoveEffectiveness(game, Moves.GROWL, Species.DUSCLOPS, 1) + ); + + it("Electric-type attacks are super-effective against Water-type Pokemon", + () => testMoveEffectiveness(game, Moves.THUNDERBOLT, Species.BLASTOISE, 2) + ); + + it("Electric-type attacks are doubly super-effective against Water/Flying-type Pokemon", + () => testMoveEffectiveness(game, Moves.THUNDERBOLT, Species.GYARADOS, 4) + ); + + it("Electric-type attacks are negated by Volt Absorb", + () => testMoveEffectiveness(game, Moves.THUNDERBOLT, Species.GYARADOS, 0, Abilities.VOLT_ABSORB) + ); +}); diff --git a/src/test/moves/fillet_away.test.ts b/src/test/moves/fillet_away.test.ts index fcad704ef29..b2ff9e25dba 100644 --- a/src/test/moves/fillet_away.test.ts +++ b/src/test/moves/fillet_away.test.ts @@ -1,12 +1,12 @@ -import { afterEach, beforeAll, beforeEach, describe, expect, test } from "vitest"; -import Phaser from "phaser"; -import GameManager from "#test/utils/gameManager"; -import { TurnEndPhase } from "#app/phases/turn-end-phase.js"; -import { getMovePosition } from "#test/utils/gameManagerUtils"; +import { BattleStat } from "#app/data/battle-stat"; +import { TurnEndPhase } from "#app/phases/turn-end-phase"; +import { toDmgValue } from "#app/utils"; import { Moves } from "#enums/moves"; import { Species } from "#enums/species"; -import { BattleStat } from "#app/data/battle-stat"; +import GameManager from "#test/utils/gameManager"; import { SPLASH_ONLY } from "#test/utils/testUtils"; +import Phaser from "phaser"; +import { afterEach, beforeAll, beforeEach, describe, expect, test } from "vitest"; const TIMEOUT = 20 * 1000; /** HP Cost of Move */ @@ -41,13 +41,13 @@ describe("Moves - FILLET AWAY", () => { //Bulbapedia Reference: https://bulbapedia.bulbagarden.net/wiki/fillet_away_(move) test("Fillet Away raises the user's Attack, Special Attack, and Speed by two stages each, at the cost of 1/2 of its maximum HP", - async() => { + async () => { await game.startBattle([Species.MAGIKARP]); const leadPokemon = game.scene.getPlayerPokemon()!; - const hpLost = Math.floor(leadPokemon.getMaxHp() / RATIO); + const hpLost = toDmgValue(leadPokemon.getMaxHp() / RATIO); - game.doAttack(getMovePosition(game.scene, 0, Moves.FILLET_AWAY)); + game.move.select(Moves.FILLET_AWAY); await game.phaseInterceptor.to(TurnEndPhase); expect(leadPokemon.hp).toBe(leadPokemon.getMaxHp() - hpLost); @@ -58,17 +58,17 @@ describe("Moves - FILLET AWAY", () => { ); test("Fillet Away will still take effect if one or more of the involved stats are not at max", - async() => { + async () => { await game.startBattle([Species.MAGIKARP]); const leadPokemon = game.scene.getPlayerPokemon()!; - const hpLost = Math.floor(leadPokemon.getMaxHp() / RATIO); + const hpLost = toDmgValue(leadPokemon.getMaxHp() / RATIO); //Here - BattleStat.SPD -> 0 and BattleStat.SPATK -> 3 leadPokemon.summonData.battleStats[BattleStat.ATK] = 6; leadPokemon.summonData.battleStats[BattleStat.SPATK] = 3; - game.doAttack(getMovePosition(game.scene, 0, Moves.FILLET_AWAY)); + game.move.select(Moves.FILLET_AWAY); await game.phaseInterceptor.to(TurnEndPhase); expect(leadPokemon.hp).toBe(leadPokemon.getMaxHp() - hpLost); @@ -79,7 +79,7 @@ describe("Moves - FILLET AWAY", () => { ); test("Fillet Away fails if all stats involved are at max", - async() => { + async () => { await game.startBattle([Species.MAGIKARP]); const leadPokemon = game.scene.getPlayerPokemon()!; @@ -88,7 +88,7 @@ describe("Moves - FILLET AWAY", () => { leadPokemon.summonData.battleStats[BattleStat.SPATK] = 6; leadPokemon.summonData.battleStats[BattleStat.SPD] = 6; - game.doAttack(getMovePosition(game.scene, 0, Moves.FILLET_AWAY)); + game.move.select(Moves.FILLET_AWAY); await game.phaseInterceptor.to(TurnEndPhase); expect(leadPokemon.hp).toBe(leadPokemon.getMaxHp()); @@ -99,14 +99,14 @@ describe("Moves - FILLET AWAY", () => { ); test("Fillet Away fails if the user's health is less than 1/2", - async() => { + async () => { await game.startBattle([Species.MAGIKARP]); const leadPokemon = game.scene.getPlayerPokemon()!; - const hpLost = Math.floor(leadPokemon.getMaxHp() / RATIO); + const hpLost = toDmgValue(leadPokemon.getMaxHp() / RATIO); leadPokemon.hp = hpLost - PREDAMAGE; - game.doAttack(getMovePosition(game.scene, 0, Moves.FILLET_AWAY)); + game.move.select(Moves.FILLET_AWAY); await game.phaseInterceptor.to(TurnEndPhase); expect(leadPokemon.hp).toBe(hpLost - PREDAMAGE); diff --git a/src/test/moves/fissure.test.ts b/src/test/moves/fissure.test.ts index 65d692a5cc1..51122b269b8 100644 --- a/src/test/moves/fissure.test.ts +++ b/src/test/moves/fissure.test.ts @@ -1,15 +1,14 @@ import { BattleStat } from "#app/data/battle-stat"; -import { Species } from "#app/enums/species.js"; +import { Species } from "#app/enums/species"; import { EnemyPokemon, PlayerPokemon } from "#app/field/pokemon"; -import GameManager from "#test/utils/gameManager"; -import { getMovePosition } from "#test/utils/gameManagerUtils"; +import { DamagePhase } from "#app/phases/damage-phase"; +import { TurnEndPhase } from "#app/phases/turn-end-phase"; import { Abilities } from "#enums/abilities"; import { Moves } from "#enums/moves"; +import GameManager from "#test/utils/gameManager"; +import { SPLASH_ONLY } from "#test/utils/testUtils"; import Phaser from "phaser"; import { afterEach, beforeAll, beforeEach, describe, expect, it, vi } from "vitest"; -import { SPLASH_ONLY } from "#test/utils/testUtils"; -import { DamagePhase } from "#app/phases/damage-phase.js"; -import { TurnEndPhase } from "#app/phases/turn-end-phase.js"; describe("Moves - Fissure", () => { let phaserGame: Phaser.Game; @@ -57,7 +56,7 @@ describe("Moves - Fissure", () => { game.override.ability(Abilities.NO_GUARD); game.override.enemyAbility(Abilities.FUR_COAT); - game.doAttack(getMovePosition(game.scene, 0, Moves.FISSURE)); + game.move.select(Moves.FISSURE); await game.phaseInterceptor.to(DamagePhase, true); expect(enemyPokemon.isFainted()).toBe(true); @@ -68,7 +67,7 @@ describe("Moves - Fissure", () => { enemyPokemon.summonData.battleStats[BattleStat.ACC] = -6; - game.doAttack(getMovePosition(game.scene, 0, Moves.FISSURE)); + game.move.select(Moves.FISSURE); // wait for TurnEndPhase instead of DamagePhase as fissure might not actually inflict damage await game.phaseInterceptor.to(TurnEndPhase); @@ -81,7 +80,7 @@ describe("Moves - Fissure", () => { enemyPokemon.summonData.battleStats[BattleStat.EVA] = 6; - game.doAttack(getMovePosition(game.scene, 0, Moves.FISSURE)); + game.move.select(Moves.FISSURE); // wait for TurnEndPhase instead of DamagePhase as fissure might not actually inflict damage await game.phaseInterceptor.to(TurnEndPhase); diff --git a/src/test/moves/flame_burst.test.ts b/src/test/moves/flame_burst.test.ts index d6679f921df..2777b8178b8 100644 --- a/src/test/moves/flame_burst.test.ts +++ b/src/test/moves/flame_burst.test.ts @@ -1,14 +1,12 @@ -import { afterEach, beforeAll, beforeEach, describe, expect, it, vi } from "vitest"; -import Phaser from "phaser"; -import GameManager from "#test/utils/gameManager"; -import { Species } from "#enums/species"; +import { allAbilities } from "#app/data/ability"; +import { Abilities } from "#app/enums/abilities"; +import Pokemon from "#app/field/pokemon"; +import { TurnEndPhase } from "#app/phases/turn-end-phase"; import { Moves } from "#enums/moves"; -import { getMovePosition } from "#test/utils/gameManagerUtils"; -import { Abilities } from "#app/enums/abilities.js"; -import { allAbilities } from "#app/data/ability.js"; -import Pokemon from "#app/field/pokemon.js"; -import { SelectTargetPhase } from "#app/phases/select-target-phase.js"; -import { TurnEndPhase } from "#app/phases/turn-end-phase.js"; +import { Species } from "#enums/species"; +import GameManager from "#test/utils/gameManager"; +import Phaser from "phaser"; +import { afterEach, beforeAll, beforeEach, describe, expect, it, vi } from "vitest"; describe("Moves - Flame Burst", () => { let phaserGame: Phaser.Game; @@ -22,7 +20,7 @@ describe("Moves - Flame Burst", () => { * @returns Effect damage of Flame Burst */ const getEffectDamage = (pokemon: Pokemon): number => { - return Math.max(1, Math.floor(pokemon.getMaxHp() * 1/16)); + return Math.max(1, Math.floor(pokemon.getMaxHp() * 1 / 16)); }; beforeAll(() => { @@ -49,12 +47,10 @@ describe("Moves - Flame Burst", () => { it("inflicts damage to the target's ally equal to 1/16 of its max HP", async () => { await game.startBattle([Species.PIKACHU, Species.PIKACHU]); - const [ leftEnemy, rightEnemy ] = game.scene.getEnemyField(); + const [leftEnemy, rightEnemy] = game.scene.getEnemyField(); - game.doAttack(getMovePosition(game.scene, 0, Moves.FLAME_BURST)); - await game.phaseInterceptor.to(SelectTargetPhase, false); - game.doSelectTarget(leftEnemy.getBattlerIndex()); - game.doAttack(getMovePosition(game.scene, 1, Moves.SPLASH)); + game.move.select(Moves.FLAME_BURST, 0, leftEnemy.getBattlerIndex()); + game.move.select(Moves.SPLASH, 1); await game.phaseInterceptor.to(TurnEndPhase); expect(leftEnemy.hp).toBeLessThan(leftEnemy.getMaxHp()); @@ -65,12 +61,10 @@ describe("Moves - Flame Burst", () => { game.override.enemyAbility(Abilities.FLASH_FIRE); await game.startBattle([Species.PIKACHU, Species.PIKACHU]); - const [ leftEnemy, rightEnemy ] = game.scene.getEnemyField(); + const [leftEnemy, rightEnemy] = game.scene.getEnemyField(); - game.doAttack(getMovePosition(game.scene, 0, Moves.FLAME_BURST)); - await game.phaseInterceptor.to(SelectTargetPhase, false); - game.doSelectTarget(leftEnemy.getBattlerIndex()); - game.doAttack(getMovePosition(game.scene, 1, Moves.SPLASH)); + game.move.select(Moves.FLAME_BURST, 0, leftEnemy.getBattlerIndex()); + game.move.select(Moves.SPLASH, 1); await game.phaseInterceptor.to(TurnEndPhase); expect(leftEnemy.hp).toBe(leftEnemy.getMaxHp()); @@ -79,14 +73,12 @@ describe("Moves - Flame Burst", () => { it("does not interact with the target ally's abilities", async () => { await game.startBattle([Species.PIKACHU, Species.PIKACHU]); - const [ leftEnemy, rightEnemy ] = game.scene.getEnemyField(); + const [leftEnemy, rightEnemy] = game.scene.getEnemyField(); vi.spyOn(rightEnemy, "getAbility").mockReturnValue(allAbilities[Abilities.FLASH_FIRE]); - game.doAttack(getMovePosition(game.scene, 0, Moves.FLAME_BURST)); - await game.phaseInterceptor.to(SelectTargetPhase, false); - game.doSelectTarget(leftEnemy.getBattlerIndex()); - game.doAttack(getMovePosition(game.scene, 1, Moves.SPLASH)); + game.move.select(Moves.FLAME_BURST, 0, leftEnemy.getBattlerIndex()); + game.move.select(Moves.SPLASH, 1); await game.phaseInterceptor.to(TurnEndPhase); expect(leftEnemy.hp).toBeLessThan(leftEnemy.getMaxHp()); @@ -95,14 +87,12 @@ describe("Moves - Flame Burst", () => { it("effect damage is prevented by Magic Guard", async () => { await game.startBattle([Species.PIKACHU, Species.PIKACHU]); - const [ leftEnemy, rightEnemy ] = game.scene.getEnemyField(); + const [leftEnemy, rightEnemy] = game.scene.getEnemyField(); vi.spyOn(rightEnemy, "getAbility").mockReturnValue(allAbilities[Abilities.MAGIC_GUARD]); - game.doAttack(getMovePosition(game.scene, 0, Moves.FLAME_BURST)); - await game.phaseInterceptor.to(SelectTargetPhase, false); - game.doSelectTarget(leftEnemy.getBattlerIndex()); - game.doAttack(getMovePosition(game.scene, 1, Moves.SPLASH)); + game.move.select(Moves.FLAME_BURST, 0, leftEnemy.getBattlerIndex()); + game.move.select(Moves.SPLASH, 1); await game.phaseInterceptor.to(TurnEndPhase); expect(leftEnemy.hp).toBeLessThan(leftEnemy.getMaxHp()); diff --git a/src/test/moves/flower_shield.test.ts b/src/test/moves/flower_shield.test.ts index 9001e8ceacb..b3e50219aec 100644 --- a/src/test/moves/flower_shield.test.ts +++ b/src/test/moves/flower_shield.test.ts @@ -1,16 +1,15 @@ -import { BattleStat } from "#app/data/battle-stat.js"; -import { SemiInvulnerableTag } from "#app/data/battler-tags.js"; -import { Type } from "#app/data/type.js"; -import { Biome } from "#app/enums/biome.js"; -import { TurnEndPhase } from "#app/phases/turn-end-phase.js"; -import GameManager from "#test/utils/gameManager"; -import { getMovePosition } from "#test/utils/gameManagerUtils"; +import { BattleStat } from "#app/data/battle-stat"; +import { SemiInvulnerableTag } from "#app/data/battler-tags"; +import { Type } from "#app/data/type"; +import { Biome } from "#app/enums/biome"; +import { TurnEndPhase } from "#app/phases/turn-end-phase"; import { Abilities } from "#enums/abilities"; import { Moves } from "#enums/moves"; import { Species } from "#enums/species"; +import GameManager from "#test/utils/gameManager"; +import { SPLASH_ONLY } from "#test/utils/testUtils"; import Phaser from "phaser"; import { afterEach, beforeAll, beforeEach, describe, expect, it } from "vitest"; -import { SPLASH_ONLY } from "#test/utils/testUtils"; describe("Moves - Flower Shield", () => { let phaserGame: Phaser.Game; @@ -45,7 +44,7 @@ describe("Moves - Flower Shield", () => { expect(magikarp.summonData.battleStats[BattleStat.DEF]).toBe(0); expect(cherrim.summonData.battleStats[BattleStat.DEF]).toBe(0); - game.doAttack(getMovePosition(game.scene, 0, Moves.FLOWER_SHIELD)); + game.move.select(Moves.FLOWER_SHIELD); await game.phaseInterceptor.to(TurnEndPhase); expect(magikarp.summonData.battleStats[BattleStat.DEF]).toBe(0); @@ -64,8 +63,8 @@ describe("Moves - Flower Shield", () => { grassPokemons.forEach(p => expect(p.summonData.battleStats[BattleStat.DEF]).toBe(0)); nonGrassPokemons.forEach(p => expect(p.summonData.battleStats[BattleStat.DEF]).toBe(0)); - game.doAttack(getMovePosition(game.scene, 0, Moves.FLOWER_SHIELD)); - game.doAttack(getMovePosition(game.scene, 1, Moves.SPLASH)); + game.move.select(Moves.FLOWER_SHIELD); + game.move.select(Moves.SPLASH, 1); await game.phaseInterceptor.to(TurnEndPhase); grassPokemons.forEach(p => expect(p.summonData.battleStats[BattleStat.DEF]).toBe(1)); @@ -88,7 +87,7 @@ describe("Moves - Flower Shield", () => { expect(cherrim.summonData.battleStats[BattleStat.DEF]).toBe(0); expect(paras.getTag(SemiInvulnerableTag)).toBeUndefined; - game.doAttack(getMovePosition(game.scene, 0, Moves.FLOWER_SHIELD)); + game.move.select(Moves.FLOWER_SHIELD); await game.phaseInterceptor.to(TurnEndPhase); expect(paras.getTag(SemiInvulnerableTag)).toBeDefined(); @@ -106,7 +105,7 @@ describe("Moves - Flower Shield", () => { expect(enemy.summonData.battleStats[BattleStat.DEF]).toBe(0); expect(ally.summonData.battleStats[BattleStat.DEF]).toBe(0); - game.doAttack(getMovePosition(game.scene, 0, Moves.FLOWER_SHIELD)); + game.move.select(Moves.FLOWER_SHIELD); await game.phaseInterceptor.to(TurnEndPhase); expect(enemy.summonData.battleStats[BattleStat.DEF]).toBe(0); diff --git a/src/test/moves/focus_punch.test.ts b/src/test/moves/focus_punch.test.ts index 385234f0b71..99399623a1c 100644 --- a/src/test/moves/focus_punch.test.ts +++ b/src/test/moves/focus_punch.test.ts @@ -1,16 +1,15 @@ -import Phaser from "phaser"; -import { afterEach, beforeAll, beforeEach, describe, expect, it } from "vitest"; -import GameManager from "#test/utils/gameManager"; -import { Species } from "#enums/species"; +import { BerryPhase } from "#app/phases/berry-phase"; +import { MessagePhase } from "#app/phases/message-phase"; +import { MoveHeaderPhase } from "#app/phases/move-header-phase"; +import { SwitchSummonPhase } from "#app/phases/switch-summon-phase"; +import { TurnStartPhase } from "#app/phases/turn-start-phase"; import { Abilities } from "#enums/abilities"; import { Moves } from "#enums/moves"; -import { getMovePosition } from "#test/utils/gameManagerUtils"; +import { Species } from "#enums/species"; +import GameManager from "#test/utils/gameManager"; import { SPLASH_ONLY } from "#test/utils/testUtils"; -import { BerryPhase } from "#app/phases/berry-phase.js"; -import { MessagePhase } from "#app/phases/message-phase.js"; -import { MoveHeaderPhase } from "#app/phases/move-header-phase.js"; -import { SwitchSummonPhase } from "#app/phases/switch-summon-phase.js"; -import { TurnStartPhase } from "#app/phases/turn-start-phase.js"; +import Phaser from "phaser"; +import { afterEach, beforeAll, beforeEach, describe, expect, it } from "vitest"; const TIMEOUT = 20 * 1000; @@ -51,7 +50,7 @@ describe("Moves - Focus Punch", () => { const enemyStartingHp = enemyPokemon.hp; - game.doAttack(getMovePosition(game.scene, 0, Moves.FOCUS_PUNCH)); + game.move.select(Moves.FOCUS_PUNCH); await game.phaseInterceptor.to(MessagePhase); @@ -78,7 +77,7 @@ describe("Moves - Focus Punch", () => { const enemyStartingHp = enemyPokemon.hp; - game.doAttack(getMovePosition(game.scene, 0, Moves.FOCUS_PUNCH)); + game.move.select(Moves.FOCUS_PUNCH); await game.phaseInterceptor.to(MessagePhase); @@ -103,7 +102,7 @@ describe("Moves - Focus Punch", () => { const leadPokemon = game.scene.getPlayerPokemon()!; const enemyPokemon = game.scene.getEnemyPokemon()!; - game.doAttack(getMovePosition(game.scene, 0, Moves.FOCUS_PUNCH)); + game.move.select(Moves.FOCUS_PUNCH); await game.phaseInterceptor.to(MessagePhase); // Header message @@ -125,7 +124,7 @@ describe("Moves - Focus Punch", () => { await game.startBattle([Species.CHARIZARD]); game.forceOpponentToSwitch(); - game.doAttack(getMovePosition(game.scene, 0, Moves.FOCUS_PUNCH)); + game.move.select(Moves.FOCUS_PUNCH); await game.phaseInterceptor.to(TurnStartPhase); diff --git a/src/test/moves/follow_me.test.ts b/src/test/moves/follow_me.test.ts index a0fff9afbf8..d7ef199df3e 100644 --- a/src/test/moves/follow_me.test.ts +++ b/src/test/moves/follow_me.test.ts @@ -1,15 +1,12 @@ -import { BattlerIndex } from "#app/battle.js"; +import { BattlerIndex } from "#app/battle"; import { Stat } from "#app/data/pokemon-stat"; -import { Abilities } from "#app/enums/abilities.js"; -import GameManager from "#test/utils/gameManager"; -import { getMovePosition } from "#test/utils/gameManagerUtils"; +import { Abilities } from "#app/enums/abilities"; +import { TurnEndPhase } from "#app/phases/turn-end-phase"; import { Moves } from "#enums/moves"; import { Species } from "#enums/species"; +import GameManager from "#test/utils/gameManager"; import Phaser from "phaser"; import { afterEach, beforeAll, beforeEach, describe, expect, test } from "vitest"; -import { CommandPhase } from "#app/phases/command-phase.js"; -import { SelectTargetPhase } from "#app/phases/select-target-phase.js"; -import { TurnEndPhase } from "#app/phases/turn-end-phase.js"; const TIMEOUT = 20 * 1000; @@ -34,32 +31,21 @@ describe("Moves - Follow Me", () => { game.override.enemySpecies(Species.SNORLAX); game.override.startingLevel(100); game.override.enemyLevel(100); - game.override.moveset([ Moves.FOLLOW_ME, Moves.RAGE_POWDER, Moves.SPOTLIGHT, Moves.QUICK_ATTACK ]); - game.override.enemyMoveset([Moves.TACKLE,Moves.TACKLE,Moves.TACKLE,Moves.TACKLE]); + game.override.moveset([Moves.FOLLOW_ME, Moves.RAGE_POWDER, Moves.SPOTLIGHT, Moves.QUICK_ATTACK]); + game.override.enemyMoveset([Moves.TACKLE, Moves.TACKLE, Moves.TACKLE, Moves.TACKLE]); }); test( "move should redirect enemy attacks to the user", async () => { - await game.startBattle([ Species.AMOONGUSS, Species.CHARIZARD ]); + await game.startBattle([Species.AMOONGUSS, Species.CHARIZARD]); const playerPokemon = game.scene.getPlayerField(); - expect(playerPokemon.length).toBe(2); - playerPokemon.forEach(p => expect(p).not.toBe(undefined)); - - const enemyPokemon = game.scene.getEnemyField(); - expect(enemyPokemon.length).toBe(2); - enemyPokemon.forEach(p => expect(p).not.toBe(undefined)); const playerStartingHp = playerPokemon.map(p => p.hp); - game.doAttack(getMovePosition(game.scene, 0, Moves.FOLLOW_ME)); - await game.phaseInterceptor.to(CommandPhase); - - game.doAttack(getMovePosition(game.scene, 1, Moves.QUICK_ATTACK)); - await game.phaseInterceptor.to(SelectTargetPhase, false); - - game.doSelectTarget(BattlerIndex.ENEMY); + game.move.select(Moves.FOLLOW_ME); + game.move.select(Moves.QUICK_ATTACK, 1, BattlerIndex.ENEMY); await game.phaseInterceptor.to(TurnEndPhase, false); expect(playerPokemon[0].hp).toBeLessThan(playerStartingHp[0]); @@ -70,22 +56,14 @@ describe("Moves - Follow Me", () => { test( "move should redirect enemy attacks to the first ally that uses it", async () => { - await game.startBattle([ Species.AMOONGUSS, Species.CHARIZARD ]); + await game.startBattle([Species.AMOONGUSS, Species.CHARIZARD]); const playerPokemon = game.scene.getPlayerField(); - expect(playerPokemon.length).toBe(2); - playerPokemon.forEach(p => expect(p).not.toBe(undefined)); - - const enemyPokemon = game.scene.getEnemyField(); - expect(enemyPokemon.length).toBe(2); - enemyPokemon.forEach(p => expect(p).not.toBe(undefined)); const playerStartingHp = playerPokemon.map(p => p.hp); - game.doAttack(getMovePosition(game.scene, 0, Moves.FOLLOW_ME)); - await game.phaseInterceptor.to(CommandPhase); - - game.doAttack(getMovePosition(game.scene, 1, Moves.FOLLOW_ME)); + game.move.select(Moves.FOLLOW_ME); + game.move.select(Moves.FOLLOW_ME, 1); await game.phaseInterceptor.to(TurnEndPhase, false); playerPokemon.sort((a, b) => a.getBattleStat(Stat.SPD) - b.getBattleStat(Stat.SPD)); @@ -99,29 +77,17 @@ describe("Moves - Follow Me", () => { "move effect should be bypassed by Stalwart", async () => { game.override.ability(Abilities.STALWART); - game.override.moveset([ Moves.QUICK_ATTACK ]); - game.override.enemyMoveset([ Moves.FOLLOW_ME, Moves.FOLLOW_ME, Moves.FOLLOW_ME, Moves.FOLLOW_ME ]); + game.override.moveset([Moves.QUICK_ATTACK]); + game.override.enemyMoveset([Moves.FOLLOW_ME, Moves.FOLLOW_ME, Moves.FOLLOW_ME, Moves.FOLLOW_ME]); - await game.startBattle([ Species.AMOONGUSS, Species.CHARIZARD ]); - - const playerPokemon = game.scene.getPlayerField(); - expect(playerPokemon.length).toBe(2); - playerPokemon.forEach(p => expect(p).not.toBe(undefined)); + await game.startBattle([Species.AMOONGUSS, Species.CHARIZARD]); const enemyPokemon = game.scene.getEnemyField(); - expect(enemyPokemon.length).toBe(2); - enemyPokemon.forEach(p => expect(p).not.toBe(undefined)); const enemyStartingHp = enemyPokemon.map(p => p.hp); - game.doAttack(getMovePosition(game.scene, 0, Moves.QUICK_ATTACK)); - await game.phaseInterceptor.to(SelectTargetPhase, false); - game.doSelectTarget(BattlerIndex.ENEMY); - await game.phaseInterceptor.to(CommandPhase); - - game.doAttack(getMovePosition(game.scene, 1, Moves.QUICK_ATTACK)); - await game.phaseInterceptor.to(SelectTargetPhase, false); - game.doSelectTarget(BattlerIndex.ENEMY_2); + game.move.select(Moves.QUICK_ATTACK, 0, BattlerIndex.ENEMY); + game.move.select(Moves.QUICK_ATTACK, 1, BattlerIndex.ENEMY_2); await game.phaseInterceptor.to(TurnEndPhase, false); // If redirection was bypassed, both enemies should be damaged @@ -133,29 +99,17 @@ describe("Moves - Follow Me", () => { test( "move effect should be bypassed by Snipe Shot", async () => { - game.override.moveset([ Moves.SNIPE_SHOT ]); - game.override.enemyMoveset([ Moves.FOLLOW_ME, Moves.FOLLOW_ME, Moves.FOLLOW_ME, Moves.FOLLOW_ME ]); + game.override.moveset([Moves.SNIPE_SHOT]); + game.override.enemyMoveset([Moves.FOLLOW_ME, Moves.FOLLOW_ME, Moves.FOLLOW_ME, Moves.FOLLOW_ME]); - await game.startBattle([ Species.AMOONGUSS, Species.CHARIZARD ]); - - const playerPokemon = game.scene.getPlayerField(); - expect(playerPokemon.length).toBe(2); - playerPokemon.forEach(p => expect(p).not.toBe(undefined)); + await game.startBattle([Species.AMOONGUSS, Species.CHARIZARD]); const enemyPokemon = game.scene.getEnemyField(); - expect(enemyPokemon.length).toBe(2); - enemyPokemon.forEach(p => expect(p).not.toBe(undefined)); const enemyStartingHp = enemyPokemon.map(p => p.hp); - game.doAttack(getMovePosition(game.scene, 0, Moves.SNIPE_SHOT)); - await game.phaseInterceptor.to(SelectTargetPhase, false); - game.doSelectTarget(BattlerIndex.ENEMY); - await game.phaseInterceptor.to(CommandPhase); - - game.doAttack(getMovePosition(game.scene, 1, Moves.SNIPE_SHOT)); - await game.phaseInterceptor.to(SelectTargetPhase, false); - game.doSelectTarget(BattlerIndex.ENEMY_2); + game.move.select(Moves.SNIPE_SHOT, 0, BattlerIndex.ENEMY); + game.move.select(Moves.SNIPE_SHOT, 1, BattlerIndex.ENEMY_2); await game.phaseInterceptor.to(TurnEndPhase, false); // If redirection was bypassed, both enemies should be damaged diff --git a/src/test/moves/foresight.test.ts b/src/test/moves/foresight.test.ts index 91d3e3c37e0..b856ec0f852 100644 --- a/src/test/moves/foresight.test.ts +++ b/src/test/moves/foresight.test.ts @@ -1,11 +1,10 @@ -import { afterEach, beforeAll, beforeEach, describe, expect, it, vi } from "vitest"; -import Phaser from "phaser"; +import { Moves } from "#app/enums/moves"; +import { Species } from "#app/enums/species"; +import { MoveEffectPhase } from "#app/phases/move-effect-phase"; import GameManager from "#test/utils/gameManager"; -import { Species } from "#app/enums/species.js"; +import Phaser from "phaser"; +import { afterEach, beforeAll, beforeEach, describe, expect, it, vi } from "vitest"; import { SPLASH_ONLY } from "../utils/testUtils"; -import { Moves } from "#app/enums/moves.js"; -import { getMovePosition } from "../utils/gameManagerUtils"; -import { MoveEffectPhase } from "#app/phases/move-effect-phase.js"; describe("Moves - Foresight", () => { let phaserGame: Phaser.Game; @@ -37,19 +36,19 @@ describe("Moves - Foresight", () => { const enemy = game.scene.getEnemyPokemon()!; - game.doAttack(getMovePosition(game.scene, 0, Moves.QUICK_ATTACK)); + game.move.select(Moves.QUICK_ATTACK); await game.toNextTurn(); expect(enemy.hp).toBe(enemy.getMaxHp()); - game.doAttack(getMovePosition(game.scene, 0, Moves.FORESIGHT)); + game.move.select(Moves.FORESIGHT); await game.toNextTurn(); - game.doAttack(getMovePosition(game.scene, 0, Moves.QUICK_ATTACK)); + game.move.select(Moves.QUICK_ATTACK); await game.toNextTurn(); expect(enemy.hp).toBeLessThan(enemy.getMaxHp()); enemy.hp = enemy.getMaxHp(); - game.doAttack(getMovePosition(game.scene, 0, Moves.MACH_PUNCH)); + game.move.select(Moves.MACH_PUNCH); await game.phaseInterceptor.to(MoveEffectPhase); expect(enemy.hp).toBeLessThan(enemy.getMaxHp()); @@ -62,9 +61,9 @@ describe("Moves - Foresight", () => { const pokemon = game.scene.getPlayerPokemon()!; vi.spyOn(pokemon, "getAccuracyMultiplier"); - game.doAttack(getMovePosition(game.scene, 0, Moves.FORESIGHT)); + game.move.select(Moves.FORESIGHT); await game.toNextTurn(); - game.doAttack(getMovePosition(game.scene, 0, Moves.QUICK_ATTACK)); + game.move.select(Moves.QUICK_ATTACK); await game.phaseInterceptor.to(MoveEffectPhase); expect(pokemon.getAccuracyMultiplier).toHaveReturnedWith(1); diff --git a/src/test/moves/freezy_frost.test.ts b/src/test/moves/freezy_frost.test.ts index b4c30279c21..00d7104d373 100644 --- a/src/test/moves/freezy_frost.test.ts +++ b/src/test/moves/freezy_frost.test.ts @@ -1,15 +1,14 @@ import { BattleStat } from "#app/data/battle-stat"; -import GameManager from "#test/utils/gameManager"; -import { getMovePosition } from "#test/utils/gameManagerUtils"; +import { allMoves } from "#app/data/move"; +import { MoveEndPhase } from "#app/phases/move-end-phase"; +import { TurnInitPhase } from "#app/phases/turn-init-phase"; import { Abilities } from "#enums/abilities"; import { Moves } from "#enums/moves"; import { Species } from "#enums/species"; +import GameManager from "#test/utils/gameManager"; +import { SPLASH_ONLY } from "#test/utils/testUtils"; import Phaser from "phaser"; import { afterEach, beforeAll, beforeEach, describe, expect, it, vi } from "vitest"; -import { SPLASH_ONLY } from "#test/utils/testUtils"; -import { allMoves } from "#app/data/move.js"; -import { MoveEndPhase } from "#app/phases/move-end-phase.js"; -import { TurnInitPhase } from "#app/phases/turn-init-phase.js"; describe("Moves - Freezy Frost", () => { describe("integration tests", () => { @@ -47,17 +46,17 @@ describe("Moves - Freezy Frost", () => { expect(user.summonData.battleStats[BattleStat.ATK]).toBe(0); expect(enemy.summonData.battleStats[BattleStat.ATK]).toBe(0); - game.doAttack(getMovePosition(game.scene, 0, Moves.SWORDS_DANCE)); + game.move.select(Moves.SWORDS_DANCE); await game.phaseInterceptor.to(TurnInitPhase); - game.doAttack(getMovePosition(game.scene, 0, Moves.CHARM)); + game.move.select(Moves.CHARM); await game.phaseInterceptor.to(TurnInitPhase); const userAtkBefore = user.summonData.battleStats[BattleStat.ATK]; const enemyAtkBefore = enemy.summonData.battleStats[BattleStat.ATK]; expect(userAtkBefore).toBe(2); expect(enemyAtkBefore).toBe(-2); - game.doAttack(getMovePosition(game.scene, 0, Moves.FREEZY_FROST)); + game.move.select(Moves.FREEZY_FROST); await game.phaseInterceptor.to(TurnInitPhase); expect(user.summonData.battleStats[BattleStat.ATK]).toBe(0); expect(enemy.summonData.battleStats[BattleStat.ATK]).toBe(0); @@ -69,13 +68,13 @@ describe("Moves - Freezy Frost", () => { const user = game.scene.getPlayerPokemon()!; expect(user.summonData.battleStats[BattleStat.ATK]).toBe(0); - game.doAttack(getMovePosition(game.scene, 0, Moves.SWORDS_DANCE)); + game.move.select(Moves.SWORDS_DANCE); await game.phaseInterceptor.to(TurnInitPhase); const userAtkBefore = user.summonData.battleStats[BattleStat.ATK]; expect(userAtkBefore).toBe(2); - game.doAttack(getMovePosition(game.scene, 0, Moves.SPLASH)); + game.move.select(Moves.SPLASH); await game.phaseInterceptor.to(MoveEndPhase); expect(user.summonData.battleStats[BattleStat.ATK]).toBe(0); }); diff --git a/src/test/moves/fusion_bolt.test.ts b/src/test/moves/fusion_bolt.test.ts index c7a21e2c736..db31863ad03 100644 --- a/src/test/moves/fusion_bolt.test.ts +++ b/src/test/moves/fusion_bolt.test.ts @@ -1,10 +1,9 @@ -import { afterEach, beforeAll, beforeEach, describe, expect, it } from "vitest"; -import Phaser from "phaser"; -import GameManager from "#test/utils/gameManager"; -import { getMovePosition } from "#test/utils/gameManagerUtils"; -import { Species } from "#enums/species"; -import { Moves } from "#enums/moves"; import { Abilities } from "#enums/abilities"; +import { Moves } from "#enums/moves"; +import { Species } from "#enums/species"; +import GameManager from "#test/utils/gameManager"; +import Phaser from "phaser"; +import { afterEach, beforeAll, beforeEach, describe, expect, it } from "vitest"; describe("Moves - Fusion Bolt", () => { let phaserGame: Phaser.Game; @@ -24,19 +23,19 @@ describe("Moves - Fusion Bolt", () => { beforeEach(() => { game = new GameManager(phaserGame); - game.override.moveset([ fusionBolt ]); + game.override.moveset([fusionBolt]); game.override.startingLevel(1); game.override.enemySpecies(Species.RESHIRAM); game.override.enemyAbility(Abilities.ROUGH_SKIN); - game.override.enemyMoveset([ Moves.SPLASH, Moves.SPLASH, Moves.SPLASH, Moves.SPLASH ]); + game.override.enemyMoveset([Moves.SPLASH, Moves.SPLASH, Moves.SPLASH, Moves.SPLASH]); game.override.battleType("single"); game.override.startingWave(97); game.override.disableCrits(); }); - it("should not make contact", async() => { + it("should not make contact", async () => { await game.startBattle([ Species.ZEKROM, ]); @@ -44,7 +43,7 @@ describe("Moves - Fusion Bolt", () => { const partyMember = game.scene.getPlayerPokemon()!; const initialHp = partyMember.hp; - game.doAttack(getMovePosition(game.scene, 0, fusionBolt)); + game.move.select(fusionBolt); await game.toNextTurn(); diff --git a/src/test/moves/fusion_flare.test.ts b/src/test/moves/fusion_flare.test.ts index aa38357ddd3..471f6a2ac7b 100644 --- a/src/test/moves/fusion_flare.test.ts +++ b/src/test/moves/fusion_flare.test.ts @@ -1,11 +1,10 @@ -import { afterEach, beforeAll, beforeEach, describe, expect, it } from "vitest"; -import Phaser from "phaser"; -import GameManager from "#test/utils/gameManager"; -import { getMovePosition } from "#test/utils/gameManagerUtils"; import { StatusEffect } from "#app/data/status-effect"; -import { Species } from "#enums/species"; +import { TurnStartPhase } from "#app/phases/turn-start-phase"; import { Moves } from "#enums/moves"; -import { TurnStartPhase } from "#app/phases/turn-start-phase.js"; +import { Species } from "#enums/species"; +import GameManager from "#test/utils/gameManager"; +import Phaser from "phaser"; +import { afterEach, beforeAll, beforeEach, describe, expect, it } from "vitest"; describe("Moves - Fusion Flare", () => { let phaserGame: Phaser.Game; @@ -25,25 +24,25 @@ describe("Moves - Fusion Flare", () => { beforeEach(() => { game = new GameManager(phaserGame); - game.override.moveset([ fusionFlare ]); + game.override.moveset([fusionFlare]); game.override.startingLevel(1); game.override.enemySpecies(Species.RESHIRAM); - game.override.enemyMoveset([ Moves.REST, Moves.REST, Moves.REST, Moves.REST ]); + game.override.enemyMoveset([Moves.REST, Moves.REST, Moves.REST, Moves.REST]); game.override.battleType("single"); game.override.startingWave(97); game.override.disableCrits(); }); - it("should thaw freeze status condition", async() => { + it("should thaw freeze status condition", async () => { await game.startBattle([ Species.RESHIRAM, ]); const partyMember = game.scene.getPlayerPokemon()!; - game.doAttack(getMovePosition(game.scene, 0, fusionFlare)); + game.move.select(fusionFlare); await game.phaseInterceptor.to(TurnStartPhase, false); diff --git a/src/test/moves/fusion_flare_bolt.test.ts b/src/test/moves/fusion_flare_bolt.test.ts index 1b95062ee81..ebef5148778 100644 --- a/src/test/moves/fusion_flare_bolt.test.ts +++ b/src/test/moves/fusion_flare_bolt.test.ts @@ -1,16 +1,15 @@ -import { afterEach, beforeAll, beforeEach, describe, expect, it, vi } from "vitest"; -import Phaser from "phaser"; -import GameManager from "#test/utils/gameManager"; -import { getMovePosition } from "#test/utils/gameManagerUtils"; -import { Stat } from "#app/data/pokemon-stat"; -import { allMoves } from "#app/data/move"; import { BattlerIndex } from "#app/battle"; -import { Species } from "#enums/species"; +import { allMoves } from "#app/data/move"; +import { Stat } from "#app/data/pokemon-stat"; +import { DamagePhase } from "#app/phases/damage-phase"; +import { MoveEffectPhase } from "#app/phases/move-effect-phase"; +import { MoveEndPhase } from "#app/phases/move-end-phase"; +import { MovePhase } from "#app/phases/move-phase"; import { Moves } from "#enums/moves"; -import { DamagePhase } from "#app/phases/damage-phase.js"; -import { MoveEffectPhase } from "#app/phases/move-effect-phase.js"; -import { MoveEndPhase } from "#app/phases/move-end-phase.js"; -import { MovePhase } from "#app/phases/move-phase.js"; +import { Species } from "#enums/species"; +import GameManager from "#test/utils/gameManager"; +import Phaser from "phaser"; +import { afterEach, beforeAll, beforeEach, describe, expect, it, vi } from "vitest"; describe("Moves - Fusion Flare and Fusion Bolt", () => { let phaserGame: Phaser.Game; @@ -31,11 +30,11 @@ describe("Moves - Fusion Flare and Fusion Bolt", () => { beforeEach(() => { game = new GameManager(phaserGame); - game.override.moveset([ fusionFlare.id, fusionBolt.id ]); + game.override.moveset([fusionFlare.id, fusionBolt.id]); game.override.startingLevel(1); game.override.enemySpecies(Species.RESHIRAM); - game.override.enemyMoveset([ Moves.REST, Moves.REST, Moves.REST, Moves.REST ]); + game.override.enemyMoveset([Moves.REST, Moves.REST, Moves.REST, Moves.REST]); game.override.battleType("double"); game.override.startingWave(97); @@ -45,20 +44,17 @@ describe("Moves - Fusion Flare and Fusion Bolt", () => { vi.spyOn(fusionBolt, "calculateBattlePower"); }); - it("FUSION_FLARE should double power of subsequent FUSION_BOLT", async() => { + it("FUSION_FLARE should double power of subsequent FUSION_BOLT", async () => { await game.startBattle([ Species.ZEKROM, Species.ZEKROM ]); - game.doAttack(getMovePosition(game.scene, 0, fusionFlare.id)); - game.doSelectTarget(BattlerIndex.ENEMY); - - game.doAttack(getMovePosition(game.scene, 0, fusionBolt.id)); - game.doSelectTarget(BattlerIndex.ENEMY); + game.move.select(fusionFlare.id, 0, BattlerIndex.ENEMY); + game.move.select(fusionBolt.id, 1, BattlerIndex.ENEMY); // Force user party to act before enemy party - await game.setTurnOrder([ BattlerIndex.PLAYER, BattlerIndex.PLAYER_2, BattlerIndex.ENEMY, BattlerIndex.ENEMY_2 ]); + await game.setTurnOrder([BattlerIndex.PLAYER, BattlerIndex.PLAYER_2, BattlerIndex.ENEMY, BattlerIndex.ENEMY_2]); await game.phaseInterceptor.to(MoveEffectPhase, false); expect((game.scene.getCurrentPhase() as MoveEffectPhase).move.moveId).toBe(fusionFlare.id); @@ -71,20 +67,17 @@ describe("Moves - Fusion Flare and Fusion Bolt", () => { expect(fusionBolt.calculateBattlePower).toHaveLastReturnedWith(200); }, 20000); - it("FUSION_BOLT should double power of subsequent FUSION_FLARE", async() => { + it("FUSION_BOLT should double power of subsequent FUSION_FLARE", async () => { await game.startBattle([ Species.ZEKROM, Species.ZEKROM ]); - game.doAttack(getMovePosition(game.scene, 0, fusionBolt.id)); - game.doSelectTarget(BattlerIndex.ENEMY); - - game.doAttack(getMovePosition(game.scene, 0, fusionFlare.id)); - game.doSelectTarget(BattlerIndex.ENEMY); + game.move.select(fusionBolt.id, 0, BattlerIndex.ENEMY); + game.move.select(fusionFlare.id, 1, BattlerIndex.ENEMY); // Force user party to act before enemy party - await game.setTurnOrder([ BattlerIndex.PLAYER, BattlerIndex.PLAYER_2, BattlerIndex.ENEMY, BattlerIndex.ENEMY_2 ]); + await game.setTurnOrder([BattlerIndex.PLAYER, BattlerIndex.PLAYER_2, BattlerIndex.ENEMY, BattlerIndex.ENEMY_2]); await game.phaseInterceptor.to(MoveEffectPhase, false); expect((game.scene.getCurrentPhase() as MoveEffectPhase).move.moveId).toBe(fusionBolt.id); @@ -97,20 +90,17 @@ describe("Moves - Fusion Flare and Fusion Bolt", () => { expect(fusionFlare.calculateBattlePower).toHaveLastReturnedWith(200); }, 20000); - it("FUSION_FLARE should double power of subsequent FUSION_BOLT if a move failed in between", async() => { + it("FUSION_FLARE should double power of subsequent FUSION_BOLT if a move failed in between", async () => { await game.startBattle([ Species.ZEKROM, Species.ZEKROM ]); - game.doAttack(getMovePosition(game.scene, 0, fusionFlare.id)); - game.doSelectTarget(0); - - game.doAttack(getMovePosition(game.scene, 0, fusionBolt.id)); - game.doSelectTarget(0); + game.move.select(fusionFlare.id, 0, BattlerIndex.PLAYER); + game.move.select(fusionBolt.id, 1, BattlerIndex.PLAYER); // Force first enemy to act (and fail) in between party - await game.setTurnOrder([ BattlerIndex.PLAYER, BattlerIndex.ENEMY_2, BattlerIndex.PLAYER_2, BattlerIndex.ENEMY ]); + await game.setTurnOrder([BattlerIndex.PLAYER, BattlerIndex.ENEMY_2, BattlerIndex.PLAYER_2, BattlerIndex.ENEMY]); await game.phaseInterceptor.to(MoveEffectPhase, false); expect((game.scene.getCurrentPhase() as MoveEffectPhase).move.moveId).toBe(fusionFlare.id); @@ -128,21 +118,18 @@ describe("Moves - Fusion Flare and Fusion Bolt", () => { expect(fusionBolt.calculateBattlePower).toHaveLastReturnedWith(200); }, 20000); - it("FUSION_FLARE should not double power of subsequent FUSION_BOLT if a move succeeded in between", async() => { - game.override.enemyMoveset([ Moves.SPLASH, Moves.SPLASH, Moves.SPLASH, Moves.SPLASH ]); + it("FUSION_FLARE should not double power of subsequent FUSION_BOLT if a move succeeded in between", async () => { + game.override.enemyMoveset([Moves.SPLASH, Moves.SPLASH, Moves.SPLASH, Moves.SPLASH]); await game.startBattle([ Species.ZEKROM, Species.ZEKROM ]); - game.doAttack(getMovePosition(game.scene, 0, fusionFlare.id)); - game.doSelectTarget(BattlerIndex.ENEMY); - - game.doAttack(getMovePosition(game.scene, 0, fusionBolt.id)); - game.doSelectTarget(BattlerIndex.ENEMY); + game.move.select(fusionFlare.id, 0, BattlerIndex.ENEMY); + game.move.select(fusionBolt.id, 1, BattlerIndex.ENEMY); // Force first enemy to act in between party - await game.setTurnOrder([ BattlerIndex.PLAYER, BattlerIndex.ENEMY_2, BattlerIndex.PLAYER_2, BattlerIndex.ENEMY ]); + await game.setTurnOrder([BattlerIndex.PLAYER, BattlerIndex.ENEMY_2, BattlerIndex.PLAYER_2, BattlerIndex.ENEMY]); await game.phaseInterceptor.to(MoveEffectPhase, false); expect((game.scene.getCurrentPhase() as MoveEffectPhase).move.moveId).toBe(fusionFlare.id); @@ -159,20 +146,17 @@ describe("Moves - Fusion Flare and Fusion Bolt", () => { expect(fusionBolt.calculateBattlePower).toHaveLastReturnedWith(100); }, 20000); - it("FUSION_FLARE should double power of subsequent FUSION_BOLT if moves are aimed at allies", async() => { + it("FUSION_FLARE should double power of subsequent FUSION_BOLT if moves are aimed at allies", async () => { await game.startBattle([ Species.ZEKROM, Species.RESHIRAM ]); - game.doAttack(getMovePosition(game.scene, 0, fusionBolt.id)); - game.doSelectTarget(BattlerIndex.PLAYER_2); - - game.doAttack(getMovePosition(game.scene, 0, fusionFlare.id)); - game.doSelectTarget(BattlerIndex.PLAYER); + game.move.select(fusionBolt.id, 0, BattlerIndex.PLAYER_2); + game.move.select(fusionFlare.id, 1, BattlerIndex.PLAYER); // Force user party to act before enemy party - await game.setTurnOrder([ BattlerIndex.PLAYER, BattlerIndex.PLAYER_2, BattlerIndex.ENEMY, BattlerIndex.ENEMY_2 ]); + await game.setTurnOrder([BattlerIndex.PLAYER, BattlerIndex.PLAYER_2, BattlerIndex.ENEMY, BattlerIndex.ENEMY_2]); await game.phaseInterceptor.to(MoveEffectPhase, false); expect((game.scene.getCurrentPhase() as MoveEffectPhase).move.moveId).toBe(fusionBolt.id); @@ -185,8 +169,8 @@ describe("Moves - Fusion Flare and Fusion Bolt", () => { expect(fusionFlare.calculateBattlePower).toHaveLastReturnedWith(200); }, 20000); - it("FUSION_FLARE and FUSION_BOLT alternating throughout turn should double power of subsequent moves", async() => { - game.override.enemyMoveset([ fusionFlare.id, fusionFlare.id, fusionFlare.id, fusionFlare.id ]); + it("FUSION_FLARE and FUSION_BOLT alternating throughout turn should double power of subsequent moves", async () => { + game.override.enemyMoveset([fusionFlare.id, fusionFlare.id, fusionFlare.id, fusionFlare.id]); await game.startBattle([ Species.ZEKROM, Species.ZEKROM @@ -217,14 +201,11 @@ describe("Moves - Fusion Flare and Fusion Bolt", () => { vi.spyOn(party[1], "stats", "get").mockReturnValue(stats.player[0].map((val, i) => (i === Stat.SPDEF ? 250 : val))); vi.spyOn(party[1], "stats", "get").mockReturnValue(stats.player[1].map((val, i) => (i === Stat.SPDEF ? 250 : val))); - game.doAttack(getMovePosition(game.scene, 0, fusionBolt.id)); - game.doSelectTarget(BattlerIndex.ENEMY); - - game.doAttack(getMovePosition(game.scene, 0, fusionBolt.id)); - game.doSelectTarget(BattlerIndex.ENEMY); + game.move.select(fusionBolt.id, 0, BattlerIndex.ENEMY); + game.move.select(fusionBolt.id, 1, BattlerIndex.ENEMY); // Force first enemy to act in between party - await game.setTurnOrder([ BattlerIndex.PLAYER, BattlerIndex.ENEMY_2, BattlerIndex.PLAYER_2, BattlerIndex.ENEMY ]); + await game.setTurnOrder([BattlerIndex.PLAYER, BattlerIndex.ENEMY_2, BattlerIndex.PLAYER_2, BattlerIndex.ENEMY]); await game.phaseInterceptor.to(MoveEffectPhase, false); expect((game.scene.getCurrentPhase() as MoveEffectPhase).move.moveId).toBe(fusionBolt.id); @@ -247,8 +228,8 @@ describe("Moves - Fusion Flare and Fusion Bolt", () => { expect(fusionFlare.calculateBattlePower).toHaveLastReturnedWith(200); }, 20000); - it("FUSION_FLARE and FUSION_BOLT alternating throughout turn should double power of subsequent moves if moves are aimed at allies", async() => { - game.override.enemyMoveset([ fusionFlare.id, fusionFlare.id, fusionFlare.id, fusionFlare.id ]); + it("FUSION_FLARE and FUSION_BOLT alternating throughout turn should double power of subsequent moves if moves are aimed at allies", async () => { + game.override.enemyMoveset([fusionFlare.id, fusionFlare.id, fusionFlare.id, fusionFlare.id]); await game.startBattle([ Species.ZEKROM, Species.ZEKROM @@ -279,14 +260,11 @@ describe("Moves - Fusion Flare and Fusion Bolt", () => { vi.spyOn(party[1], "stats", "get").mockReturnValue(stats.player[0].map((val, i) => (i === Stat.SPDEF ? 250 : val))); vi.spyOn(party[1], "stats", "get").mockReturnValue(stats.player[1].map((val, i) => (i === Stat.SPDEF ? 250 : val))); - game.doAttack(getMovePosition(game.scene, 0, fusionBolt.id)); - game.doSelectTarget(BattlerIndex.PLAYER_2); - - game.doAttack(getMovePosition(game.scene, 0, fusionBolt.id)); - game.doSelectTarget(BattlerIndex.PLAYER); + game.move.select(fusionBolt.id, 0, BattlerIndex.PLAYER_2); + game.move.select(fusionBolt.id, 1, BattlerIndex.PLAYER); // Force first enemy to act in between party - await game.setTurnOrder([ BattlerIndex.PLAYER, BattlerIndex.ENEMY_2, BattlerIndex.PLAYER_2, BattlerIndex.ENEMY ]); + await game.setTurnOrder([BattlerIndex.PLAYER, BattlerIndex.ENEMY_2, BattlerIndex.PLAYER_2, BattlerIndex.ENEMY]); await game.phaseInterceptor.to(MoveEffectPhase, false); expect((game.scene.getCurrentPhase() as MoveEffectPhase).move.moveId).toBe(fusionBolt.id); diff --git a/src/test/moves/gastro_acid.test.ts b/src/test/moves/gastro_acid.test.ts index cc247890754..67fd3464cf9 100644 --- a/src/test/moves/gastro_acid.test.ts +++ b/src/test/moves/gastro_acid.test.ts @@ -1,12 +1,11 @@ -import { BattlerIndex } from "#app/battle.js"; -import { Abilities } from "#app/enums/abilities.js"; -import { Moves } from "#app/enums/moves.js"; -import { Species } from "#app/enums/species.js"; -import { MoveResult } from "#app/field/pokemon.js"; -import { afterEach, beforeAll, beforeEach, describe, expect, it } from "vitest"; +import { BattlerIndex } from "#app/battle"; +import { Abilities } from "#app/enums/abilities"; +import { Moves } from "#app/enums/moves"; +import { Species } from "#app/enums/species"; +import { MoveResult } from "#app/field/pokemon"; import GameManager from "#test/utils/gameManager"; -import { getMovePosition } from "#test/utils/gameManagerUtils"; import { SPLASH_ONLY } from "#test/utils/testUtils"; +import { afterEach, beforeAll, beforeEach, describe, expect, it } from "vitest"; const TIMEOUT = 20 * 1000; @@ -46,10 +45,8 @@ describe("Moves - Gastro Acid", () => { await game.startBattle(); - game.doAttack(getMovePosition(game.scene, 0, Moves.GASTRO_ACID)); - game.doSelectTarget(BattlerIndex.ENEMY); - game.doAttack(getMovePosition(game.scene, 0, Moves.SPLASH)); - game.doSelectTarget(BattlerIndex.PLAYER_2); + game.move.select(Moves.GASTRO_ACID, 0, BattlerIndex.ENEMY); + game.move.select(Moves.SPLASH, 1); await game.phaseInterceptor.to("TurnInitPhase"); @@ -57,10 +54,8 @@ describe("Moves - Gastro Acid", () => { expect(enemyField[0].summonData.abilitySuppressed).toBe(true); expect(enemyField[1].summonData.abilitySuppressed).toBe(false); - game.doAttack(getMovePosition(game.scene, 0, Moves.WATER_GUN)); - game.doSelectTarget(BattlerIndex.ENEMY); - game.doAttack(getMovePosition(game.scene, 0, Moves.WATER_GUN)); - game.doSelectTarget(BattlerIndex.ENEMY_2); + game.move.select(Moves.WATER_GUN, 0, BattlerIndex.ENEMY); + game.move.select(Moves.WATER_GUN, 1, BattlerIndex.ENEMY_2); await game.phaseInterceptor.to("TurnEndPhase"); @@ -73,13 +68,13 @@ describe("Moves - Gastro Acid", () => { await game.startBattle(); - game.doAttack(getMovePosition(game.scene, 0, Moves.CORE_ENFORCER)); + game.move.select(Moves.CORE_ENFORCER); // Force player to be slower to enable Core Enforcer to proc its suppression effect await game.setTurnOrder([BattlerIndex.ENEMY, BattlerIndex.PLAYER]); await game.phaseInterceptor.to("TurnInitPhase"); - game.doAttack(getMovePosition(game.scene, 0, Moves.GASTRO_ACID)); + game.move.select(Moves.GASTRO_ACID); await game.phaseInterceptor.to("TurnInitPhase"); diff --git a/src/test/moves/glaive_rush.test.ts b/src/test/moves/glaive_rush.test.ts index f97ba1f0367..1eac3c32bb4 100644 --- a/src/test/moves/glaive_rush.test.ts +++ b/src/test/moves/glaive_rush.test.ts @@ -1,13 +1,12 @@ -import { allMoves } from "#app/data/move.js"; -import { Abilities } from "#app/enums/abilities.js"; -import GameManager from "#test/utils/gameManager"; -import { getMovePosition } from "#test/utils/gameManagerUtils"; +import { allMoves } from "#app/data/move"; +import { Abilities } from "#app/enums/abilities"; +import { DamagePhase } from "#app/phases/damage-phase"; +import { TurnEndPhase } from "#app/phases/turn-end-phase"; import { Moves } from "#enums/moves"; import { Species } from "#enums/species"; +import GameManager from "#test/utils/gameManager"; import Phaser from "phaser"; import { afterEach, beforeAll, beforeEach, describe, expect, it, vi } from "vitest"; -import { DamagePhase } from "#app/phases/damage-phase.js"; -import { TurnEndPhase } from "#app/phases/turn-end-phase.js"; describe("Moves - Glaive Rush", () => { @@ -37,36 +36,36 @@ describe("Moves - Glaive Rush", () => { game.override.moveset([Moves.SHADOW_SNEAK, Moves.AVALANCHE, Moves.SPLASH, Moves.GLAIVE_RUSH]); }); - it("takes double damage from attacks", async() => { + it("takes double damage from attacks", async () => { await game.startBattle(); const enemy = game.scene.getEnemyPokemon()!; enemy.hp = 1000; vi.spyOn(game.scene, "randBattleSeedInt").mockReturnValue(0); - game.doAttack(getMovePosition(game.scene, 0, Moves.SHADOW_SNEAK)); + game.move.select(Moves.SHADOW_SNEAK); await game.phaseInterceptor.to(DamagePhase); const damageDealt = 1000 - enemy.hp; await game.phaseInterceptor.to(TurnEndPhase); - game.doAttack(getMovePosition(game.scene, 0, Moves.SHADOW_SNEAK)); + game.move.select(Moves.SHADOW_SNEAK); await game.phaseInterceptor.to(DamagePhase); expect(enemy.hp).toBeLessThanOrEqual(1001 - (damageDealt * 3)); }, 5000); // TODO: revert back to 20s - it("always gets hit by attacks", async() => { + it("always gets hit by attacks", async () => { await game.startBattle(); const enemy = game.scene.getEnemyPokemon()!; enemy.hp = 1000; allMoves[Moves.AVALANCHE].accuracy = 0; - game.doAttack(getMovePosition(game.scene, 0, Moves.AVALANCHE)); + game.move.select(Moves.AVALANCHE); await game.phaseInterceptor.to(TurnEndPhase); expect(enemy.hp).toBeLessThan(1000); }, 20000); - it("interacts properly with multi-lens", async() => { - game.override.startingHeldItems([{name: "MULTI_LENS", count: 2}]); + it("interacts properly with multi-lens", async () => { + game.override.startingHeldItems([{ name: "MULTI_LENS", count: 2 }]); game.override.enemyMoveset(Array(4).fill(Moves.AVALANCHE)); await game.startBattle(); const player = game.scene.getPlayerPokemon()!; @@ -75,17 +74,17 @@ describe("Moves - Glaive Rush", () => { player.hp = 1000; allMoves[Moves.AVALANCHE].accuracy = 0; - game.doAttack(getMovePosition(game.scene, 0, Moves.GLAIVE_RUSH)); + game.move.select(Moves.GLAIVE_RUSH); await game.phaseInterceptor.to(TurnEndPhase); expect(player.hp).toBeLessThan(1000); player.hp = 1000; - game.doAttack(getMovePosition(game.scene, 0, Moves.SPLASH)); + game.move.select(Moves.SPLASH); await game.phaseInterceptor.to(TurnEndPhase); expect(player.hp).toBe(1000); }, 20000); - it("secondary effects only last until next move", async() => { + it("secondary effects only last until next move", async () => { game.override.enemyMoveset(Array(4).fill(Moves.SHADOW_SNEAK)); await game.startBattle(); const player = game.scene.getPlayerPokemon()!; @@ -94,22 +93,22 @@ describe("Moves - Glaive Rush", () => { player.hp = 1000; allMoves[Moves.SHADOW_SNEAK].accuracy = 0; - game.doAttack(getMovePosition(game.scene, 0, Moves.GLAIVE_RUSH)); + game.move.select(Moves.GLAIVE_RUSH); await game.phaseInterceptor.to(TurnEndPhase); expect(player.hp).toBe(1000); - game.doAttack(getMovePosition(game.scene, 0, Moves.SPLASH)); + game.move.select(Moves.SPLASH); await game.phaseInterceptor.to(TurnEndPhase); const damagedHp = player.hp; expect(player.hp).toBeLessThan(1000); - game.doAttack(getMovePosition(game.scene, 0, Moves.SPLASH)); + game.move.select(Moves.SPLASH); await game.phaseInterceptor.to(TurnEndPhase); expect(player.hp).toBe(damagedHp); }, 20000); - it("secondary effects are removed upon switching", async() => { + it("secondary effects are removed upon switching", async () => { game.override.enemyMoveset(Array(4).fill(Moves.SHADOW_SNEAK)); game.override.starterSpecies(0); await game.startBattle([Species.KLINK, Species.FEEBAS]); @@ -118,7 +117,7 @@ describe("Moves - Glaive Rush", () => { enemy.hp = 1000; allMoves[Moves.SHADOW_SNEAK].accuracy = 0; - game.doAttack(getMovePosition(game.scene, 0, Moves.GLAIVE_RUSH)); + game.move.select(Moves.GLAIVE_RUSH); await game.phaseInterceptor.to(TurnEndPhase); expect(player.hp).toBe(player.getMaxHp()); @@ -130,7 +129,7 @@ describe("Moves - Glaive Rush", () => { }, 20000); - it("secondary effects don't activate if move fails", async() => { + it("secondary effects don't activate if move fails", async () => { game.override.moveset([Moves.SHADOW_SNEAK, Moves.PROTECT, Moves.SPLASH, Moves.GLAIVE_RUSH]); await game.startBattle(); const player = game.scene.getPlayerPokemon()!; @@ -138,16 +137,16 @@ describe("Moves - Glaive Rush", () => { enemy.hp = 1000; player.hp = 1000; - game.doAttack(getMovePosition(game.scene, 0, Moves.PROTECT)); + game.move.select(Moves.PROTECT); await game.phaseInterceptor.to(TurnEndPhase); - game.doAttack(getMovePosition(game.scene, 0, Moves.SHADOW_SNEAK)); + game.move.select(Moves.SHADOW_SNEAK); await game.phaseInterceptor.to(TurnEndPhase); game.override.enemyMoveset(Array(4).fill(Moves.SPLASH)); const damagedHP1 = 1000 - enemy.hp; enemy.hp = 1000; - game.doAttack(getMovePosition(game.scene, 0, Moves.SHADOW_SNEAK)); + game.move.select(Moves.SHADOW_SNEAK); await game.phaseInterceptor.to(TurnEndPhase); const damagedHP2 = 1000 - enemy.hp; diff --git a/src/test/moves/growth.test.ts b/src/test/moves/growth.test.ts index 0c60bb723f4..dfbf5406351 100644 --- a/src/test/moves/growth.test.ts +++ b/src/test/moves/growth.test.ts @@ -1,17 +1,13 @@ import { BattleStat } from "#app/data/battle-stat"; import { Stat } from "#app/data/pokemon-stat"; -import GameManager from "#test/utils/gameManager"; -import { getMovePosition } from "#test/utils/gameManagerUtils"; -import { Command } from "#app/ui/command-ui-handler"; -import { Mode } from "#app/ui/ui"; +import { EnemyCommandPhase } from "#app/phases/enemy-command-phase"; +import { TurnInitPhase } from "#app/phases/turn-init-phase"; import { Abilities } from "#enums/abilities"; import { Moves } from "#enums/moves"; import { Species } from "#enums/species"; +import GameManager from "#test/utils/gameManager"; import Phaser from "phaser"; import { afterEach, beforeAll, beforeEach, describe, expect, it } from "vitest"; -import { CommandPhase } from "#app/phases/command-phase.js"; -import { EnemyCommandPhase } from "#app/phases/enemy-command-phase.js"; -import { TurnInitPhase } from "#app/phases/turn-init-phase.js"; describe("Moves - Growth", () => { @@ -37,10 +33,10 @@ describe("Moves - Growth", () => { game.override.ability(Abilities.INSOMNIA); game.override.startingLevel(2000); game.override.moveset([moveToUse]); - game.override.enemyMoveset([Moves.TACKLE,Moves.TACKLE,Moves.TACKLE,Moves.TACKLE]); + game.override.enemyMoveset([Moves.TACKLE, Moves.TACKLE, Moves.TACKLE, Moves.TACKLE]); }); - it("GROWTH", async() => { + it("GROWTH", async () => { const moveToUse = Moves.GROWTH; await game.startBattle([ Species.MIGHTYENA, @@ -52,13 +48,7 @@ describe("Moves - Growth", () => { const battleStatsOpponent = game.scene.currentBattle.enemyParty[0].summonData.battleStats; expect(battleStatsOpponent[BattleStat.SPATK]).toBe(0); - game.onNextPrompt("CommandPhase", Mode.COMMAND, () => { - game.scene.ui.setMode(Mode.FIGHT, (game.scene.getCurrentPhase() as CommandPhase).getFieldIndex()); - }); - game.onNextPrompt("CommandPhase", Mode.FIGHT, () => { - const movePosition = getMovePosition(game.scene, 0, moveToUse); - (game.scene.getCurrentPhase() as CommandPhase).handleCommand(Command.FIGHT, movePosition, false); - }); + game.move.select(moveToUse); await game.phaseInterceptor.runFrom(EnemyCommandPhase).to(TurnInitPhase); battleStatsPokemon = game.scene.getParty()[0].summonData.battleStats; expect(battleStatsPokemon[BattleStat.SPATK]).toBe(1); diff --git a/src/test/moves/hard_press.test.ts b/src/test/moves/hard_press.test.ts index 255b9f1f4b1..70c78490269 100644 --- a/src/test/moves/hard_press.test.ts +++ b/src/test/moves/hard_press.test.ts @@ -1,13 +1,12 @@ -import { allMoves } from "#app/data/move.js"; -import { MoveEffectPhase } from "#app/phases/move-effect-phase.js"; -import GameManager from "#test/utils/gameManager"; -import { getMovePosition } from "#test/utils/gameManagerUtils"; +import { allMoves } from "#app/data/move"; +import { MoveEffectPhase } from "#app/phases/move-effect-phase"; import { Abilities } from "#enums/abilities"; import { Moves } from "#enums/moves"; import { Species } from "#enums/species"; +import GameManager from "#test/utils/gameManager"; +import { SPLASH_ONLY } from "#test/utils/testUtils"; import Phaser from "phaser"; import { afterEach, beforeAll, beforeEach, describe, expect, it, vi } from "vitest"; -import { SPLASH_ONLY } from "#test/utils/testUtils"; describe("Moves - Hard Press", () => { let phaserGame: Phaser.Game; @@ -39,7 +38,7 @@ describe("Moves - Hard Press", () => { it("should return 100 power if target HP ratio is at 100%", async () => { await game.startBattle([Species.PIKACHU]); - game.doAttack(getMovePosition(game.scene, 0, Moves.HARD_PRESS)); + game.move.select(Moves.HARD_PRESS); await game.phaseInterceptor.to(MoveEffectPhase); expect(moveToCheck.calculateBattlePower).toHaveReturnedWith(100); @@ -52,7 +51,7 @@ describe("Moves - Hard Press", () => { vi.spyOn(enemy, "getHpRatio").mockReturnValue(targetHpRatio); - game.doAttack(getMovePosition(game.scene, 0, Moves.HARD_PRESS)); + game.move.select(Moves.HARD_PRESS); await game.phaseInterceptor.to(MoveEffectPhase); expect(moveToCheck.calculateBattlePower).toHaveReturnedWith(50); @@ -65,7 +64,7 @@ describe("Moves - Hard Press", () => { vi.spyOn(enemy, "getHpRatio").mockReturnValue(targetHpRatio); - game.doAttack(getMovePosition(game.scene, 0, Moves.HARD_PRESS)); + game.move.select(Moves.HARD_PRESS); await game.phaseInterceptor.to(MoveEffectPhase); expect(moveToCheck.calculateBattlePower).toHaveReturnedWith(1); @@ -78,7 +77,7 @@ describe("Moves - Hard Press", () => { vi.spyOn(enemy, "getHpRatio").mockReturnValue(targetHpRatio); - game.doAttack(getMovePosition(game.scene, 0, Moves.HARD_PRESS)); + game.move.select(Moves.HARD_PRESS); await game.phaseInterceptor.to(MoveEffectPhase); expect(moveToCheck.calculateBattlePower).toHaveReturnedWith(1); diff --git a/src/test/moves/haze.test.ts b/src/test/moves/haze.test.ts index d5e3efcbd9d..8a32a40cb32 100644 --- a/src/test/moves/haze.test.ts +++ b/src/test/moves/haze.test.ts @@ -1,14 +1,13 @@ import { BattleStat } from "#app/data/battle-stat"; -import GameManager from "#test/utils/gameManager"; -import { getMovePosition } from "#test/utils/gameManagerUtils"; +import { MoveEndPhase } from "#app/phases/move-end-phase"; +import { TurnInitPhase } from "#app/phases/turn-init-phase"; import { Abilities } from "#enums/abilities"; import { Moves } from "#enums/moves"; import { Species } from "#enums/species"; +import GameManager from "#test/utils/gameManager"; +import { SPLASH_ONLY } from "#test/utils/testUtils"; import Phaser from "phaser"; import { afterEach, beforeAll, beforeEach, describe, expect, it } from "vitest"; -import { SPLASH_ONLY } from "#test/utils/testUtils"; -import { MoveEndPhase } from "#app/phases/move-end-phase.js"; -import { TurnInitPhase } from "#app/phases/turn-init-phase.js"; describe("Moves - Haze", () => { describe("integration tests", () => { @@ -45,17 +44,17 @@ describe("Moves - Haze", () => { expect(user.summonData.battleStats[BattleStat.ATK]).toBe(0); expect(enemy.summonData.battleStats[BattleStat.ATK]).toBe(0); - game.doAttack(getMovePosition(game.scene, 0, Moves.SWORDS_DANCE)); + game.move.select(Moves.SWORDS_DANCE); await game.phaseInterceptor.to(TurnInitPhase); - game.doAttack(getMovePosition(game.scene, 0, Moves.CHARM)); + game.move.select(Moves.CHARM); await game.phaseInterceptor.to(TurnInitPhase); const userAtkBefore = user.summonData.battleStats[BattleStat.ATK]; const enemyAtkBefore = enemy.summonData.battleStats[BattleStat.ATK]; expect(userAtkBefore).toBe(2); expect(enemyAtkBefore).toBe(-2); - game.doAttack(getMovePosition(game.scene, 0, Moves.HAZE)); + game.move.select(Moves.HAZE); await game.phaseInterceptor.to(TurnInitPhase); expect(user.summonData.battleStats[BattleStat.ATK]).toBe(0); expect(enemy.summonData.battleStats[BattleStat.ATK]).toBe(0); @@ -67,13 +66,13 @@ describe("Moves - Haze", () => { const user = game.scene.getPlayerPokemon()!; expect(user.summonData.battleStats[BattleStat.ATK]).toBe(0); - game.doAttack(getMovePosition(game.scene, 0, Moves.SWORDS_DANCE)); + game.move.select(Moves.SWORDS_DANCE); await game.phaseInterceptor.to(TurnInitPhase); const userAtkBefore = user.summonData.battleStats[BattleStat.ATK]; expect(userAtkBefore).toBe(2); - game.doAttack(getMovePosition(game.scene, 0, Moves.SPLASH)); + game.move.select(Moves.SPLASH); await game.phaseInterceptor.to(MoveEndPhase); expect(user.summonData.battleStats[BattleStat.ATK]).toBe(0); }); diff --git a/src/test/moves/hyper_beam.test.ts b/src/test/moves/hyper_beam.test.ts index ac8075081fb..1280d8b429a 100644 --- a/src/test/moves/hyper_beam.test.ts +++ b/src/test/moves/hyper_beam.test.ts @@ -1,14 +1,13 @@ -import { allMoves } from "#app/data/move.js"; -import { Abilities } from "#app/enums/abilities.js"; -import { BattlerTagType } from "#app/enums/battler-tag-type.js"; -import { Moves } from "#app/enums/moves.js"; -import { Species } from "#app/enums/species.js"; +import { allMoves } from "#app/data/move"; +import { Abilities } from "#app/enums/abilities"; +import { BattlerTagType } from "#app/enums/battler-tag-type"; +import { Moves } from "#app/enums/moves"; +import { Species } from "#app/enums/species"; +import { BerryPhase } from "#app/phases/berry-phase"; +import { TurnEndPhase } from "#app/phases/turn-end-phase"; import GameManager from "#test/utils/gameManager"; import Phaser from "phaser"; import { afterEach, beforeAll, beforeEach, describe, expect, it, vi } from "vitest"; -import { getMovePosition } from "#test/utils/gameManagerUtils"; -import { BerryPhase } from "#app/phases/berry-phase.js"; -import { TurnEndPhase } from "#app/phases/turn-end-phase.js"; const TIMEOUT = 20 * 1000; // 20 sec timeout for all tests @@ -48,7 +47,7 @@ describe("Moves - Hyper Beam", () => { const leadPokemon = game.scene.getPlayerPokemon()!; const enemyPokemon = game.scene.getEnemyPokemon()!; - game.doAttack(getMovePosition(game.scene, 0, Moves.HYPER_BEAM)); + game.move.select(Moves.HYPER_BEAM); await game.phaseInterceptor.to(TurnEndPhase); @@ -63,7 +62,7 @@ describe("Moves - Hyper Beam", () => { expect(enemyPokemon.hp).toBe(enemyPostAttackHp); expect(leadPokemon.getTag(BattlerTagType.RECHARGING)).toBeUndefined(); - game.doAttack(getMovePosition(game.scene, 0, Moves.TACKLE)); + game.move.select(Moves.TACKLE); await game.phaseInterceptor.to(BerryPhase, false); diff --git a/src/test/moves/jaw_lock.test.ts b/src/test/moves/jaw_lock.test.ts new file mode 100644 index 00000000000..42f7a244977 --- /dev/null +++ b/src/test/moves/jaw_lock.test.ts @@ -0,0 +1,171 @@ +import { BattlerIndex } from "#app/battle"; +import { Abilities } from "#app/enums/abilities"; +import { BattlerTagType } from "#app/enums/battler-tag-type"; +import { BerryPhase } from "#app/phases/berry-phase"; +import { FaintPhase } from "#app/phases/faint-phase"; +import { MoveEffectPhase } from "#app/phases/move-effect-phase"; +import { TurnEndPhase } from "#app/phases/turn-end-phase"; +import GameManager from "#app/test/utils/gameManager"; +import { SPLASH_ONLY } from "#app/test/utils/testUtils"; +import { Moves } from "#enums/moves"; +import { Species } from "#enums/species"; +import Phaser from "phaser"; +import { afterEach, beforeAll, beforeEach, describe, expect, it } from "vitest"; + +const TIMEOUT = 20 * 1000; + +describe("Moves - Jaw Lock", () => { + let phaserGame: Phaser.Game; + let game: GameManager; + + beforeAll(() => { + phaserGame = new Phaser.Game({ + type: Phaser.HEADLESS, + }); + }); + + afterEach(() => { + game.phaseInterceptor.restoreOg(); + }); + + beforeEach(() => { + game = new GameManager(phaserGame); + + game.override + .battleType("single") + .enemySpecies(Species.SNORLAX) + .enemyAbility(Abilities.INSOMNIA) + .enemyMoveset(SPLASH_ONLY) + .moveset([Moves.JAW_LOCK, Moves.SPLASH]) + .startingLevel(100) + .enemyLevel(100) + .disableCrits(); + }); + + it( + "should trap the move's user and target", + async () => { + await game.startBattle([Species.BULBASAUR]); + + const leadPokemon = game.scene.getPlayerPokemon()!; + const enemyPokemon = game.scene.getEnemyPokemon()!; + + game.move.select(Moves.JAW_LOCK); + await game.setTurnOrder([BattlerIndex.PLAYER, BattlerIndex.ENEMY]); + + await game.phaseInterceptor.to(MoveEffectPhase, false); + + expect(leadPokemon.getTag(BattlerTagType.TRAPPED)).toBeUndefined(); + expect(enemyPokemon.getTag(BattlerTagType.TRAPPED)).toBeUndefined(); + + await game.phaseInterceptor.to(TurnEndPhase); + + expect(leadPokemon.getTag(BattlerTagType.TRAPPED)).toBeDefined(); + expect(enemyPokemon.getTag(BattlerTagType.TRAPPED)).toBeDefined(); + }, TIMEOUT + ); + + it( + "should not trap either pokemon if the target faints", + async () => { + game.override.enemyLevel(1); + await game.startBattle([Species.BULBASAUR]); + + const leadPokemon = game.scene.getPlayerPokemon()!; + const enemyPokemon = game.scene.getEnemyPokemon()!; + + game.move.select(Moves.JAW_LOCK); + await game.setTurnOrder([BattlerIndex.PLAYER, BattlerIndex.ENEMY]); + + await game.phaseInterceptor.to(MoveEffectPhase, false); + + expect(leadPokemon.getTag(BattlerTagType.TRAPPED)).toBeUndefined(); + expect(enemyPokemon.getTag(BattlerTagType.TRAPPED)).toBeUndefined(); + + await game.phaseInterceptor.to(MoveEffectPhase); + + expect(leadPokemon.getTag(BattlerTagType.TRAPPED)).toBeUndefined(); + expect(enemyPokemon.getTag(BattlerTagType.TRAPPED)).toBeUndefined(); + + await game.phaseInterceptor.to(FaintPhase); + + expect(leadPokemon.getTag(BattlerTagType.TRAPPED)).toBeUndefined(); + expect(enemyPokemon.getTag(BattlerTagType.TRAPPED)).toBeUndefined(); + }, TIMEOUT + ); + + it( + "should only trap the user until the target faints", + async () => { + await game.startBattle([Species.BULBASAUR]); + + const leadPokemon = game.scene.getPlayerPokemon()!; + const enemyPokemon = game.scene.getEnemyPokemon()!; + + game.move.select(Moves.JAW_LOCK); + await game.setTurnOrder([BattlerIndex.PLAYER, BattlerIndex.ENEMY]); + + await game.phaseInterceptor.to(MoveEffectPhase); + + expect(leadPokemon.getTag(BattlerTagType.TRAPPED)).toBeDefined(); + expect(enemyPokemon.getTag(BattlerTagType.TRAPPED)).toBeDefined(); + + await game.phaseInterceptor.to(TurnEndPhase); + + await game.doKillOpponents(); + + expect(leadPokemon.getTag(BattlerTagType.TRAPPED)).toBeUndefined(); + }, TIMEOUT + ); + + it( + "should not trap other targets after the first target is trapped", + async () => { + game.override.battleType("double"); + + await game.startBattle([Species.CHARMANDER, Species.BULBASAUR]); + + const playerPokemon = game.scene.getPlayerField(); + const enemyPokemon = game.scene.getEnemyField(); + + game.move.select(Moves.JAW_LOCK, 0, BattlerIndex.ENEMY); + game.move.select(Moves.SPLASH, 1); + await game.setTurnOrder([BattlerIndex.PLAYER, BattlerIndex.PLAYER_2, BattlerIndex.ENEMY, BattlerIndex.ENEMY_2]); + + await game.phaseInterceptor.to(MoveEffectPhase); + + expect(playerPokemon[0].getTag(BattlerTagType.TRAPPED)).toBeDefined(); + expect(enemyPokemon[0].getTag(BattlerTagType.TRAPPED)).toBeDefined(); + + await game.toNextTurn(); + + game.move.select(Moves.JAW_LOCK, 0, BattlerIndex.ENEMY_2); + game.move.select(Moves.SPLASH, 1); + + await game.phaseInterceptor.to(MoveEffectPhase); + + expect(enemyPokemon[1].getTag(BattlerTagType.TRAPPED)).toBeUndefined(); + expect(playerPokemon[0].getTag(BattlerTagType.TRAPPED)).toBeDefined(); + expect(playerPokemon[0].getTag(BattlerTagType.TRAPPED)?.sourceId).toBe(enemyPokemon[0].id); + }, TIMEOUT + ); + + it( + "should not trap either pokemon if the target is protected", + async () => { + game.override.enemyMoveset(Array(4).fill(Moves.PROTECT)); + + await game.startBattle([Species.BULBASAUR]); + + const playerPokemon = game.scene.getPlayerPokemon()!; + const enemyPokemon = game.scene.getEnemyPokemon()!; + + game.move.select(Moves.JAW_LOCK); + + await game.phaseInterceptor.to(BerryPhase, false); + + expect(playerPokemon.getTag(BattlerTagType.TRAPPED)).toBeUndefined(); + expect(enemyPokemon.getTag(BattlerTagType.TRAPPED)).toBeUndefined(); + }, TIMEOUT + ); +}); diff --git a/src/test/moves/light_screen.test.ts b/src/test/moves/light_screen.test.ts index 4577ffc574a..e94dc4a299e 100644 --- a/src/test/moves/light_screen.test.ts +++ b/src/test/moves/light_screen.test.ts @@ -1,14 +1,13 @@ -import { ArenaTagSide } from "#app/data/arena-tag.js"; -import Move, { allMoves } from "#app/data/move.js"; -import { Abilities } from "#app/enums/abilities.js"; -import { ArenaTagType } from "#app/enums/arena-tag-type.js"; -import Pokemon from "#app/field/pokemon.js"; -import { TurnEndPhase } from "#app/phases/turn-end-phase.js"; -import GameManager from "#test/utils/gameManager"; -import { getMovePosition } from "#test/utils/gameManagerUtils"; -import { NumberHolder } from "#app/utils.js"; +import { ArenaTagSide } from "#app/data/arena-tag"; +import Move, { allMoves } from "#app/data/move"; +import { Abilities } from "#app/enums/abilities"; +import { ArenaTagType } from "#app/enums/arena-tag-type"; +import Pokemon from "#app/field/pokemon"; +import { TurnEndPhase } from "#app/phases/turn-end-phase"; +import { NumberHolder } from "#app/utils"; import { Moves } from "#enums/moves"; import { Species } from "#enums/species"; +import GameManager from "#test/utils/gameManager"; import Phaser from "phaser"; import { afterEach, beforeAll, beforeEach, describe, expect, it } from "vitest"; @@ -17,7 +16,7 @@ describe("Moves - Light Screen", () => { let phaserGame: Phaser.Game; let game: GameManager; const singleBattleMultiplier = 0.5; - const doubleBattleMultiplier = 2732/4096; + const doubleBattleMultiplier = 2732 / 4096; beforeAll(() => { phaserGame = new Phaser.Game({ @@ -40,11 +39,11 @@ describe("Moves - Light Screen", () => { game.override.disableCrits(); }); - it("reduces damage of special attacks by half in a single battle", async() => { + it("reduces damage of special attacks by half in a single battle", async () => { const moveToUse = Moves.ABSORB; await game.startBattle([Species.SHUCKLE]); - game.doAttack(getMovePosition(game.scene, 0, moveToUse)); + game.move.select(moveToUse); await game.phaseInterceptor.to(TurnEndPhase); @@ -53,14 +52,14 @@ describe("Moves - Light Screen", () => { expect(mockedDmg).toBe(allMoves[moveToUse].power * singleBattleMultiplier); }); - it("reduces damage of special attacks by a third in a double battle", async() => { + it("reduces damage of special attacks by a third in a double battle", async () => { game.override.battleType("double"); const moveToUse = Moves.DAZZLING_GLEAM; await game.startBattle([Species.SHUCKLE, Species.SHUCKLE]); - game.doAttack(getMovePosition(game.scene, 0, moveToUse)); - game.doAttack(getMovePosition(game.scene, 1, moveToUse)); + game.move.select(moveToUse); + game.move.select(moveToUse, 1); await game.phaseInterceptor.to(TurnEndPhase); const mockedDmg = getMockedMoveDamage(game.scene.getEnemyPokemon()!, game.scene.getPlayerPokemon()!, allMoves[moveToUse]); @@ -68,11 +67,11 @@ describe("Moves - Light Screen", () => { expect(mockedDmg).toBe(allMoves[moveToUse].power * doubleBattleMultiplier); }); - it("does not affect physical attacks", async() => { + it("does not affect physical attacks", async () => { const moveToUse = Moves.TACKLE; await game.startBattle([Species.SHUCKLE]); - game.doAttack(getMovePosition(game.scene, 0, moveToUse)); + game.move.select(moveToUse); await game.phaseInterceptor.to(TurnEndPhase); const mockedDmg = getMockedMoveDamage(game.scene.getEnemyPokemon()!, game.scene.getPlayerPokemon()!, allMoves[moveToUse]); diff --git a/src/test/moves/lucky_chant.test.ts b/src/test/moves/lucky_chant.test.ts index 643a5eddb00..7d5bfe02476 100644 --- a/src/test/moves/lucky_chant.test.ts +++ b/src/test/moves/lucky_chant.test.ts @@ -1,12 +1,11 @@ +import { Abilities } from "#app/enums/abilities"; +import { BattlerTagType } from "#app/enums/battler-tag-type"; +import { Moves } from "#app/enums/moves"; +import { Species } from "#app/enums/species"; +import { BerryPhase } from "#app/phases/berry-phase"; +import { TurnEndPhase } from "#app/phases/turn-end-phase"; import { afterEach, beforeAll, beforeEach, describe, expect, it } from "vitest"; import GameManager from "../utils/gameManager"; -import { getMovePosition } from "../utils/gameManagerUtils"; -import { Moves } from "#app/enums/moves.js"; -import { Species } from "#app/enums/species.js"; -import { Abilities } from "#app/enums/abilities.js"; -import { BattlerTagType } from "#app/enums/battler-tag-type.js"; -import { BerryPhase } from "#app/phases/berry-phase.js"; -import { TurnEndPhase } from "#app/phases/turn-end-phase.js"; const TIMEOUT = 20 * 1000; @@ -44,13 +43,13 @@ describe("Moves - Lucky Chant", () => { const playerPokemon = game.scene.getPlayerPokemon()!; - game.doAttack(getMovePosition(game.scene, 0, Moves.SPLASH)); + game.move.select(Moves.SPLASH); await game.phaseInterceptor.to(TurnEndPhase); const firstTurnDamage = playerPokemon.getMaxHp() - playerPokemon.hp; - game.doAttack(getMovePosition(game.scene, 0, Moves.LUCKY_CHANT)); + game.move.select(Moves.LUCKY_CHANT); await game.phaseInterceptor.to(BerryPhase, false); @@ -68,15 +67,15 @@ describe("Moves - Lucky Chant", () => { const playerPokemon = game.scene.getPlayerField(); - game.doAttack(getMovePosition(game.scene, 0, Moves.FOLLOW_ME)); - game.doAttack(getMovePosition(game.scene, 1, Moves.SPLASH)); + game.move.select(Moves.FOLLOW_ME); + game.move.select(Moves.SPLASH, 1); await game.phaseInterceptor.to(TurnEndPhase); const firstTurnDamage = playerPokemon[0].getMaxHp() - playerPokemon[0].hp; - game.doAttack(getMovePosition(game.scene, 0, Moves.FOLLOW_ME)); - game.doAttack(getMovePosition(game.scene, 1, Moves.LUCKY_CHANT)); + game.move.select(Moves.FOLLOW_ME); + game.move.select(Moves.LUCKY_CHANT, 1); await game.phaseInterceptor.to(BerryPhase, false); @@ -97,13 +96,13 @@ describe("Moves - Lucky Chant", () => { enemyPokemon.addTag(BattlerTagType.ALWAYS_CRIT, 2, Moves.NONE, 0); - game.doAttack(getMovePosition(game.scene, 0, Moves.SPLASH)); + game.move.select(Moves.SPLASH); await game.phaseInterceptor.to(TurnEndPhase); const firstTurnDamage = playerPokemon.getMaxHp() - playerPokemon.hp; - game.doAttack(getMovePosition(game.scene, 0, Moves.LUCKY_CHANT)); + game.move.select(Moves.LUCKY_CHANT); await game.phaseInterceptor.to(BerryPhase, false); diff --git a/src/test/moves/lunar_blessing.test.ts b/src/test/moves/lunar_blessing.test.ts new file mode 100644 index 00000000000..73647716f06 --- /dev/null +++ b/src/test/moves/lunar_blessing.test.ts @@ -0,0 +1,83 @@ +import { StatusEffect } from "#app/enums/status-effect.js"; +import { CommandPhase } from "#app/phases/command-phase.js"; +import { Abilities } from "#enums/abilities"; +import { Moves } from "#enums/moves"; +import { Species } from "#enums/species"; +import GameManager from "#test/utils/gameManager"; +import { SPLASH_ONLY } from "#test/utils/testUtils"; +import Phaser from "phaser"; +import { afterEach, beforeAll, beforeEach, describe, expect, it, vi } from "vitest"; + +describe("Moves - Lunar Blessing", () => { + let phaserGame: Phaser.Game; + let game: GameManager; + + beforeAll(() => { + phaserGame = new Phaser.Game({ type: Phaser.HEADLESS }); + }); + + afterEach(() => { + game.phaseInterceptor.restoreOg(); + }); + + beforeEach(() => { + game = new GameManager(phaserGame); + + game.override.battleType("double"); + + game.override.enemySpecies(Species.SHUCKLE); + game.override.enemyMoveset(SPLASH_ONLY); + game.override.enemyAbility(Abilities.BALL_FETCH); + + game.override.moveset([Moves.LUNAR_BLESSING, Moves.SPLASH]); + game.override.ability(Abilities.BALL_FETCH); + }); + + it("should restore 25% HP of the user and its ally", async () => { + await game.startBattle([Species.RATTATA, Species.RATTATA]); + const [leftPlayer, rightPlayer] = game.scene.getPlayerField(); + + vi.spyOn(leftPlayer, "getMaxHp").mockReturnValue(100); + vi.spyOn(rightPlayer, "getMaxHp").mockReturnValue(100); + + const initialHp = 1; + leftPlayer["hp"] = initialHp; + rightPlayer["hp"] = initialHp; + const expectedHeal = 25; + + vi.spyOn(leftPlayer, "heal"); + vi.spyOn(rightPlayer, "heal"); + + + game.move.select(Moves.LUNAR_BLESSING, 0); + await game.phaseInterceptor.to(CommandPhase); + game.move.select(Moves.SPLASH, 1); + await game.toNextTurn(); + + expect(leftPlayer.heal).toHaveBeenCalledOnce(); + expect(leftPlayer.heal).toHaveReturnedWith(expectedHeal); + + expect(rightPlayer.heal).toHaveBeenCalledOnce(); + expect(rightPlayer.heal).toHaveReturnedWith(expectedHeal); + }); + + it("should cure status effect of the user and its ally", async () => { + game.override.statusEffect(StatusEffect.BURN); + await game.startBattle([Species.RATTATA, Species.RATTATA]); + const [leftPlayer, rightPlayer] = game.scene.getPlayerField(); + + vi.spyOn(leftPlayer, "resetStatus"); + vi.spyOn(rightPlayer, "resetStatus"); + + game.move.select(Moves.LUNAR_BLESSING, 0); + await game.phaseInterceptor.to(CommandPhase); + game.move.select(Moves.SPLASH, 1); + await game.toNextTurn(); + + expect(leftPlayer.resetStatus).toHaveBeenCalledOnce(); + expect(rightPlayer.resetStatus).toHaveBeenCalledOnce(); + + expect(leftPlayer.status?.effect).toBeUndefined(); + expect(rightPlayer.status?.effect).toBeUndefined(); + }); +}); diff --git a/src/test/moves/magnet_rise.test.ts b/src/test/moves/magnet_rise.test.ts index 4ab32b5d048..9037e377090 100644 --- a/src/test/moves/magnet_rise.test.ts +++ b/src/test/moves/magnet_rise.test.ts @@ -1,14 +1,15 @@ -import GameManager from "#test/utils/gameManager"; +import { CommandPhase } from "#app/phases/command-phase"; +import { TurnEndPhase } from "#app/phases/turn-end-phase"; import { Moves } from "#enums/moves"; import { Species } from "#enums/species"; +import GameManager from "#test/utils/gameManager"; import Phaser from "phaser"; import { afterEach, beforeAll, beforeEach, describe, expect, it } from "vitest"; -import { CommandPhase } from "#app/phases/command-phase.js"; -import { TurnEndPhase } from "#app/phases/turn-end-phase.js"; describe("Moves - Magnet Rise", () => { let phaserGame: Phaser.Game; let game: GameManager; + const moveToUse = Moves.MAGNET_RISE; beforeAll(() => { phaserGame = new Phaser.Game({ @@ -22,7 +23,6 @@ describe("Moves - Magnet Rise", () => { beforeEach(() => { game = new GameManager(phaserGame); - const moveToUse = Moves.MAGNET_RISE; game.override.battleType("single"); game.override.starterSpecies(Species.MAGNEZONE); game.override.enemySpecies(Species.RATTATA); @@ -36,7 +36,7 @@ describe("Moves - Magnet Rise", () => { await game.startBattle(); const startingHp = game.scene.getParty()[0].hp; - game.doAttack(0); + game.move.select(moveToUse); await game.phaseInterceptor.to(TurnEndPhase); const finalHp = game.scene.getParty()[0].hp; const hpLost = finalHp - startingHp; @@ -47,12 +47,12 @@ describe("Moves - Magnet Rise", () => { await game.startBattle(); const startingHp = game.scene.getParty()[0].hp; - game.doAttack(0); + game.move.select(moveToUse); await game.phaseInterceptor.to(CommandPhase); let finalHp = game.scene.getParty()[0].hp; let hpLost = finalHp - startingHp; expect(hpLost).toBe(0); - game.doAttack(2); + game.move.select(Moves.GRAVITY); await game.phaseInterceptor.to(TurnEndPhase); finalHp = game.scene.getParty()[0].hp; hpLost = finalHp - startingHp; diff --git a/src/test/moves/make_it_rain.test.ts b/src/test/moves/make_it_rain.test.ts index 5b0a8c6d62a..0af7763f175 100644 --- a/src/test/moves/make_it_rain.test.ts +++ b/src/test/moves/make_it_rain.test.ts @@ -1,14 +1,13 @@ -import { BattleStat } from "#app/data/battle-stat.js"; -import GameManager from "#test/utils/gameManager"; -import { getMovePosition } from "#test/utils/gameManagerUtils"; +import { BattleStat } from "#app/data/battle-stat"; +import { MoveEndPhase } from "#app/phases/move-end-phase"; +import { StatChangePhase } from "#app/phases/stat-change-phase"; import { Abilities } from "#enums/abilities"; import { Moves } from "#enums/moves"; import { Species } from "#enums/species"; +import GameManager from "#test/utils/gameManager"; +import { SPLASH_ONLY } from "#test/utils/testUtils"; import Phaser from "phaser"; import { afterEach, beforeAll, beforeEach, describe, expect, it } from "vitest"; -import { SPLASH_ONLY } from "#test/utils/testUtils"; -import { MoveEndPhase } from "#app/phases/move-end-phase.js"; -import { StatChangePhase } from "#app/phases/stat-change-phase.js"; const TIMEOUT = 20 * 1000; @@ -42,8 +41,8 @@ describe("Moves - Make It Rain", () => { const playerPokemon = game.scene.getPlayerField(); - game.doAttack(getMovePosition(game.scene, 0, Moves.MAKE_IT_RAIN)); - game.doAttack(getMovePosition(game.scene, 1, Moves.SPLASH)); + game.move.select(Moves.MAKE_IT_RAIN); + game.move.select(Moves.SPLASH, 1); await game.phaseInterceptor.to(MoveEndPhase); @@ -59,7 +58,7 @@ describe("Moves - Make It Rain", () => { const playerPokemon = game.scene.getPlayerPokemon()!; const enemyPokemon = game.scene.getEnemyPokemon()!; - game.doAttack(getMovePosition(game.scene, 0, Moves.MAKE_IT_RAIN)); + game.move.select(Moves.MAKE_IT_RAIN); await game.phaseInterceptor.to(StatChangePhase); @@ -75,8 +74,8 @@ describe("Moves - Make It Rain", () => { const playerPokemon = game.scene.getPlayerField(); const enemyPokemon = game.scene.getEnemyField(); - game.doAttack(getMovePosition(game.scene, 0, Moves.MAKE_IT_RAIN)); - game.doAttack(getMovePosition(game.scene, 1, Moves.SPLASH)); + game.move.select(Moves.MAKE_IT_RAIN); + game.move.select(Moves.SPLASH, 1); await game.phaseInterceptor.to(StatChangePhase); @@ -89,8 +88,8 @@ describe("Moves - Make It Rain", () => { const playerPokemon = game.scene.getPlayerField(); - game.doAttack(getMovePosition(game.scene, 0, Moves.MAKE_IT_RAIN)); - game.doAttack(getMovePosition(game.scene, 1, Moves.SPLASH)); + game.move.select(Moves.MAKE_IT_RAIN); + game.move.select(Moves.SPLASH, 1); // Make Make It Rain miss the first target await game.move.forceMiss(true); diff --git a/src/test/moves/mat_block.test.ts b/src/test/moves/mat_block.test.ts index 27a55cab289..29a97806242 100644 --- a/src/test/moves/mat_block.test.ts +++ b/src/test/moves/mat_block.test.ts @@ -1,14 +1,13 @@ +import { BattleStat } from "#app/data/battle-stat"; +import { BerryPhase } from "#app/phases/berry-phase"; +import { CommandPhase } from "#app/phases/command-phase"; +import { TurnEndPhase } from "#app/phases/turn-end-phase"; +import { Abilities } from "#enums/abilities"; +import { Moves } from "#enums/moves"; +import { Species } from "#enums/species"; import Phaser from "phaser"; import { afterEach, beforeAll, beforeEach, describe, expect, test } from "vitest"; import GameManager from "../utils/gameManager"; -import { Species } from "#enums/species"; -import { Abilities } from "#enums/abilities"; -import { Moves } from "#enums/moves"; -import { getMovePosition } from "../utils/gameManagerUtils"; -import { BattleStat } from "#app/data/battle-stat.js"; -import { BerryPhase } from "#app/phases/berry-phase.js"; -import { CommandPhase } from "#app/phases/command-phase.js"; -import { TurnEndPhase } from "#app/phases/turn-end-phase.js"; const TIMEOUT = 20 * 1000; @@ -48,11 +47,11 @@ describe("Moves - Mat Block", () => { const leadPokemon = game.scene.getPlayerField(); - game.doAttack(getMovePosition(game.scene, 0, Moves.MAT_BLOCK)); + game.move.select(Moves.MAT_BLOCK); await game.phaseInterceptor.to(CommandPhase); - game.doAttack(getMovePosition(game.scene, 1, Moves.SPLASH)); + game.move.select(Moves.SPLASH, 1); await game.phaseInterceptor.to(BerryPhase, false); @@ -69,11 +68,11 @@ describe("Moves - Mat Block", () => { const leadPokemon = game.scene.getPlayerField(); - game.doAttack(getMovePosition(game.scene, 0, Moves.MAT_BLOCK)); + game.move.select(Moves.MAT_BLOCK); await game.phaseInterceptor.to(CommandPhase); - game.doAttack(getMovePosition(game.scene, 1, Moves.SPLASH)); + game.move.select(Moves.SPLASH, 1); await game.phaseInterceptor.to(BerryPhase, false); @@ -88,18 +87,18 @@ describe("Moves - Mat Block", () => { const leadPokemon = game.scene.getPlayerField(); - game.doAttack(getMovePosition(game.scene, 0, Moves.SPLASH)); + game.move.select(Moves.SPLASH); await game.phaseInterceptor.to(CommandPhase); - game.doAttack(getMovePosition(game.scene, 1, Moves.SPLASH)); + game.move.select(Moves.SPLASH, 1); await game.phaseInterceptor.to(TurnEndPhase); const leadStartingHp = leadPokemon.map(p => p.hp); await game.phaseInterceptor.to(CommandPhase, false); - game.doAttack(getMovePosition(game.scene, 0, Moves.MAT_BLOCK)); + game.move.select(Moves.MAT_BLOCK); await game.phaseInterceptor.to(CommandPhase); - game.doAttack(getMovePosition(game.scene, 1, Moves.MAT_BLOCK)); + game.move.select(Moves.MAT_BLOCK, 1); await game.phaseInterceptor.to(BerryPhase, false); diff --git a/src/test/moves/miracle_eye.test.ts b/src/test/moves/miracle_eye.test.ts index 3e1e151e7d4..d6b21a5dc2f 100644 --- a/src/test/moves/miracle_eye.test.ts +++ b/src/test/moves/miracle_eye.test.ts @@ -1,12 +1,11 @@ -import { afterEach, beforeAll, beforeEach, describe, expect, it } from "vitest"; -import Phaser from "phaser"; +import { BattlerIndex } from "#app/battle"; +import { Moves } from "#app/enums/moves"; +import { Species } from "#app/enums/species"; +import { MoveEffectPhase } from "#app/phases/move-effect-phase"; import GameManager from "#test/utils/gameManager"; -import { Species } from "#app/enums/species.js"; +import Phaser from "phaser"; +import { afterEach, beforeAll, beforeEach, describe, expect, it } from "vitest"; import { SPLASH_ONLY } from "../utils/testUtils"; -import { Moves } from "#app/enums/moves.js"; -import { getMovePosition } from "../utils/gameManagerUtils"; -import { BattlerIndex } from "#app/battle.js"; -import { MoveEffectPhase } from "#app/phases/move-effect-phase.js"; describe("Moves - Miracle Eye", () => { let phaserGame: Phaser.Game; @@ -34,18 +33,18 @@ describe("Moves - Miracle Eye", () => { }); it("should allow Psychic moves to hit Dark types", async () => { - await game.startBattle(); + await game.classicMode.startBattle(); const enemy = game.scene.getEnemyPokemon()!; - game.doAttack(getMovePosition(game.scene, 0, Moves.CONFUSION)); - await game.setTurnOrder([BattlerIndex.PLAYER, BattlerIndex.ENEMY]); + game.move.select(Moves.CONFUSION); await game.toNextTurn(); expect(enemy.hp).toBe(enemy.getMaxHp()); - game.doAttack(getMovePosition(game.scene, 0, Moves.MIRACLE_EYE)); + game.move.select(Moves.MIRACLE_EYE); await game.toNextTurn(); - game.doAttack(getMovePosition(game.scene, 0, Moves.CONFUSION)); + game.move.select(Moves.CONFUSION); + await game.setTurnOrder([BattlerIndex.PLAYER, BattlerIndex.ENEMY]); await game.phaseInterceptor.to(MoveEffectPhase); expect(enemy.hp).toBeLessThan(enemy.getMaxHp()); diff --git a/src/test/moves/multi_target.test.ts b/src/test/moves/multi_target.test.ts index 6e8a7c99e9b..16ccd5519b1 100644 --- a/src/test/moves/multi_target.test.ts +++ b/src/test/moves/multi_target.test.ts @@ -1,17 +1,16 @@ -import { getMoveTargets } from "#app/data/move.js"; -import { Abilities } from "#app/enums/abilities.js"; -import { Species } from "#app/enums/species.js"; -import { TurnEndPhase } from "#app/phases/turn-end-phase.js"; -import GameManager from "#test/utils/gameManager"; +import { BattlerIndex } from "#app/battle"; +import { Abilities } from "#app/enums/abilities"; +import { Species } from "#app/enums/species"; +import * as Utils from "#app/utils"; import { Moves } from "#enums/moves"; +import GameManager from "#test/utils/gameManager"; +import { SPLASH_ONLY } from "#test/utils/testUtils"; import Phaser from "phaser"; import { afterEach, beforeAll, beforeEach, describe, expect, it } from "vitest"; -import { getMovePosition } from "#test/utils/gameManagerUtils"; -import { SPLASH_ONLY } from "#test/utils/testUtils"; const TIMEOUT = 20 * 1000; -describe("Moves - Multi target", () => { +describe("Multi-target damage reduction", () => { let phaserGame: Phaser.Game; let game: GameManager; @@ -22,160 +21,111 @@ describe("Moves - Multi target", () => { }); afterEach(() => { - afterTrial(game); + game.phaseInterceptor.restoreOg(); }); beforeEach(() => { - game = beforeTrial(phaserGame); + game = new GameManager(phaserGame); + game.override + .disableCrits() + .battleType("double") + .enemyLevel(100) + .startingLevel(100) + .enemySpecies(Species.POLIWAG) + .enemyMoveset(SPLASH_ONLY) + .enemyAbility(Abilities.BALL_FETCH) + .moveset([Moves.TACKLE, Moves.DAZZLING_GLEAM, Moves.EARTHQUAKE, Moves.SPLASH]) + .ability(Abilities.BALL_FETCH); }); - it("2v2 - target all near others - check modifier", () => checkTargetMultiplier(game, Moves.EARTHQUAKE, false, false, true), TIMEOUT); + it("should reduce d.gleam damage when multiple enemies but not tackle", async () => { + await game.startBattle([Species.MAGIKARP, Species.FEEBAS]); - it("2v2 - target all near others - damage decrase", () => checkDamageDecrease(game, Moves.EARTHQUAKE, false, false, true), TIMEOUT); + const [enemy1, enemy2] = game.scene.getEnemyField(); - it("2v1 - target all near others - check modifier", () => checkTargetMultiplier(game, Moves.EARTHQUAKE, false, true, true), TIMEOUT); + game.move.select(Moves.DAZZLING_GLEAM); + game.move.select(Moves.TACKLE, 1, BattlerIndex.ENEMY); + await game.setTurnOrder([BattlerIndex.PLAYER, BattlerIndex.PLAYER_2, BattlerIndex.ENEMY, BattlerIndex.ENEMY_2]); + await game.phaseInterceptor.to("MoveEndPhase"); - it("2v1 - target all near others - damage decrase", () => checkDamageDecrease(game, Moves.EARTHQUAKE, false, true, true), TIMEOUT); + const gleam1 = enemy1.getMaxHp() - enemy1.hp; + enemy1.hp = enemy1.getMaxHp(); - it("1v2 - target all near others - check modifier", () => checkTargetMultiplier(game, Moves.EARTHQUAKE, true, false, true), TIMEOUT); + await game.phaseInterceptor.to("MoveEndPhase"); - it("1v2 - target all near others - damage decrase", () => checkDamageDecrease(game, Moves.EARTHQUAKE, true, false, true), TIMEOUT); + const tackle1 = enemy1.getMaxHp() - enemy1.hp; + enemy1.hp = enemy1.getMaxHp(); - it("1v1 - target all near others - check modifier", () => checkTargetMultiplier(game, Moves.EARTHQUAKE, true, true, false), TIMEOUT); + await game.killPokemon(enemy2); + await game.toNextTurn(); - it("2v2 (immune) - target all near others - check modifier", () => checkTargetMultiplier(game, Moves.EARTHQUAKE, false, false, true, Abilities.LEVITATE), TIMEOUT); + game.move.select(Moves.DAZZLING_GLEAM); + game.move.select(Moves.TACKLE, 1, BattlerIndex.ENEMY); + await game.setTurnOrder([BattlerIndex.PLAYER, BattlerIndex.PLAYER_2, BattlerIndex.ENEMY]); - it("2v2 (immune) - target all near others - damage decrase", () => checkDamageDecrease(game, Moves.EARTHQUAKE, false, false, true, Abilities.LEVITATE), TIMEOUT); + await game.phaseInterceptor.to("MoveEndPhase"); - it("2v2 - target all near enemies - check modifier", () => checkTargetMultiplier(game, Moves.HYPER_VOICE, false, false, true), TIMEOUT); + const gleam2 = enemy1.getMaxHp() - enemy1.hp; + enemy1.hp = enemy1.getMaxHp(); - it("2v2 - target all near enemies - damage decrase", () => checkDamageDecrease(game, Moves.HYPER_VOICE, false, false, true), TIMEOUT); + await game.phaseInterceptor.to("MoveEndPhase"); + const tackle2 = enemy1.getMaxHp() - enemy1.hp; - it("2v1 - target all near enemies - check modifier", () => checkTargetMultiplier(game, Moves.HYPER_VOICE, false, true, false), TIMEOUT); + // Single target moves don't get reduced + expect(tackle1).toBe(tackle2); + // Moves that target all enemies get reduced if there's more than one enemy + expect(gleam1).toBeLessThanOrEqual(Utils.toDmgValue(gleam2 * 0.75) + 1); + expect(gleam1).toBeGreaterThanOrEqual(Utils.toDmgValue(gleam2 * 0.75) - 1); + }, TIMEOUT); - it("2v1 - target all near enemies - no damage decrase", () => checkDamageDecrease(game, Moves.HYPER_VOICE, false, true, false), TIMEOUT); + it("should reduce earthquake when more than one pokemon other than user is not fainted", async () => { + await game.startBattle([Species.MAGIKARP, Species.FEEBAS]); - it("1v2 - target all near enemies - check modifier", () => checkTargetMultiplier(game, Moves.HYPER_VOICE, true, false, true), TIMEOUT); + const player2 = game.scene.getParty()[1]; + const [enemy1, enemy2] = game.scene.getEnemyField(); - it("1v2 - target all near enemies - damage decrase", () => checkDamageDecrease(game, Moves.HYPER_VOICE, true, false, true), TIMEOUT); + game.move.select(Moves.EARTHQUAKE); + game.move.select(Moves.SPLASH, 1); + await game.setTurnOrder([BattlerIndex.PLAYER, BattlerIndex.PLAYER_2, BattlerIndex.ENEMY, BattlerIndex.ENEMY_2]); - it("1v1 - target all near enemies - check modifier", () => checkTargetMultiplier(game, Moves.HYPER_VOICE, true, true, false), TIMEOUT); + await game.phaseInterceptor.to("MoveEndPhase"); - it("2v2 (immune) - target all near enemies - check modifier", () => checkTargetMultiplier(game, Moves.HYPER_VOICE, false, false, true, Abilities.SOUNDPROOF), TIMEOUT); + const damagePlayer2Turn1 = player2.getMaxHp() - player2.hp; + const damageEnemy1Turn1 = enemy1.getMaxHp() - enemy1.hp; - it("2v2 (immune) - target all near enemies - damage decrase", () => checkDamageDecrease(game, Moves.HYPER_VOICE, false, false, true, Abilities.SOUNDPROOF), TIMEOUT); + player2.hp = player2.getMaxHp(); + enemy1.hp = enemy1.getMaxHp(); + await game.killPokemon(enemy2); + await game.toNextTurn(); + + game.move.select(Moves.EARTHQUAKE); + game.move.select(Moves.SPLASH, 1); + await game.setTurnOrder([BattlerIndex.PLAYER, BattlerIndex.PLAYER_2, BattlerIndex.ENEMY]); + + await game.phaseInterceptor.to("MoveEndPhase"); + + const damagePlayer2Turn2 = player2.getMaxHp() - player2.hp; + const damageEnemy1Turn2 = enemy1.getMaxHp() - enemy1.hp; + + enemy1.hp = enemy1.getMaxHp(); + + // Turn 1: 3 targets, turn 2: 2 targets + // Both should have damage reduction + expect(damageEnemy1Turn1).toBe(damageEnemy1Turn2); + expect(damagePlayer2Turn1).toBe(damagePlayer2Turn2); + + await game.killPokemon(player2); + await game.toNextTurn(); + + game.move.select(Moves.EARTHQUAKE); + await game.setTurnOrder([BattlerIndex.PLAYER, BattlerIndex.ENEMY]); + + await game.phaseInterceptor.to("MoveEndPhase"); + + const damageEnemy1Turn3 = enemy1.getMaxHp() - enemy1.hp; + // Turn 3: 1 target, should be no damage reduction + expect(damageEnemy1Turn1).toBeLessThanOrEqual(Utils.toDmgValue(damageEnemy1Turn3 * 0.75) + 1); + expect(damageEnemy1Turn1).toBeGreaterThanOrEqual(Utils.toDmgValue(damageEnemy1Turn3 * 0.75) - 1); + }, TIMEOUT); }); - -async function checkTargetMultiplier(game: GameManager, attackMove: Moves, killAlly: boolean, killSecondEnemy: boolean, shouldMultiplied: boolean, oppAbility?: Abilities) { - // play an attack and check target count - game.override.enemyAbility(oppAbility ? oppAbility : Abilities.BALL_FETCH); - await game.startBattle(); - - const playerPokemonRepr = game.scene.getPlayerField(); - - killAllyAndEnemy(game, killAlly, killSecondEnemy); - - const targetCount = getMoveTargets(playerPokemonRepr[0], attackMove).targets.length; - const targetMultiplier = targetCount > 1 ? 0.75 : 1; - - if (shouldMultiplied) { - expect(targetMultiplier).toBe(0.75); - } else { - expect(targetMultiplier).toBe(1); - } -} - -async function checkDamageDecrease(game: GameManager, attackMove: Moves, killAlly: boolean, killSecondEnemy: boolean, shouldDecreased: boolean, ability?: Abilities) { - // Tested combination on first turn, 1v1 on second turn - await game.classicMode.runToSummon([Species.EEVEE, Species.EEVEE]); - - if (ability !== undefined) { - game.scene.getPlayerField()[1].abilityIndex = ability; - game.scene.getEnemyField()[1].abilityIndex = ability; - } - - game.doAttack(getMovePosition(game.scene, 0, Moves.SPLASH)); - game.doAttack(getMovePosition(game.scene, 1, Moves.SPLASH)); - - - await game.phaseInterceptor.to(TurnEndPhase); - - killAllyAndEnemy(game, killAlly, killSecondEnemy); - await game.toNextTurn(); - - const initialHp = game.scene.getEnemyField()[0].hp; - game.doAttack(getMovePosition(game.scene, 0, attackMove)); - if (!killAlly) { - game.doAttack(getMovePosition(game.scene, 1, Moves.SPLASH)); - } - - await game.phaseInterceptor.to(TurnEndPhase); - const afterHp = game.scene.getEnemyField()[0].hp; - - killAllyAndEnemy(game, true, true); - await game.toNextTurn(); - - game.scene.getEnemyField()[0].hp = initialHp; - - const initialHp1v1 = game.scene.getEnemyField()[0].hp; - game.doAttack(getMovePosition(game.scene, 0, attackMove)); - - await game.phaseInterceptor.to(TurnEndPhase); - const afterHp1v1 = game.scene.getEnemyField()[0].hp; - - if (shouldDecreased) { - expect(initialHp - afterHp).toBeLessThan(0.75 * (initialHp1v1 - afterHp1v1) + 2); - expect(initialHp - afterHp).toBeGreaterThan(0.75 * (initialHp1v1 - afterHp1v1) - 2); - } else { - expect(initialHp - afterHp).toBeLessThan(initialHp1v1 - afterHp1v1 + 2); - expect(initialHp - afterHp).toBeGreaterThan(initialHp1v1 - afterHp1v1 - 2); - } - -} - -// To simulate the situation where all of the enemies or the player's Pokemons dies except for one. -function killAllyAndEnemy(game: GameManager, killAlly: boolean, killSecondEnemy: boolean) { - if (killAlly) { - leaveOnePlayerPokemon(game); - expect(game.scene.getPlayerField().filter(p => p.isActive()).length).toBe(1); - } - if (killSecondEnemy) { - leaveOneEnemyPokemon(game); - expect(game.scene.getEnemyField().filter(p => p.isActive()).length).toBe(1); - } -} - -function leaveOnePlayerPokemon(game: GameManager) { - const playerPokemons = game.scene.getParty(); - for (let i = 1; i < playerPokemons.length; i++) { - playerPokemons[i].hp = 0; - } - expect(playerPokemons.filter(pokemon => pokemon.hp > 0).length).toBe(1); -} - -function leaveOneEnemyPokemon(game: GameManager) { - const enemyPokemons = game.scene.getEnemyParty(); - for (let i = 1; i < enemyPokemons.length; i++) { - enemyPokemons[i].hp = 0; - } -} - -function beforeTrial(phaserGame: Phaser.Game, single: boolean = false) { - const game = new GameManager(phaserGame); - game.override - .battleType("double") - .moveset([Moves.EARTHQUAKE, Moves.HYPER_VOICE, Moves.SURF, Moves.SPLASH]) - .ability(Abilities.BALL_FETCH) - .passiveAbility(Abilities.UNNERVE) - .enemyMoveset(SPLASH_ONLY) - .disableCrits() - .startingLevel(50) - .enemyLevel(40) - .enemySpecies(Species.EEVEE); - return game; -} - -function afterTrial(game: GameManager) { - game.phaseInterceptor.restoreOg(); -} diff --git a/src/test/moves/octolock.test.ts b/src/test/moves/octolock.test.ts index fcd68446eff..389e4a4c4cf 100644 --- a/src/test/moves/octolock.test.ts +++ b/src/test/moves/octolock.test.ts @@ -1,16 +1,15 @@ import { BattleStat } from "#app/data/battle-stat"; -import { TrappedTag } from "#app/data/battler-tags.js"; -import GameManager from "#test/utils/gameManager"; -import { getMovePosition } from "#test/utils/gameManagerUtils"; +import { TrappedTag } from "#app/data/battler-tags"; +import { CommandPhase } from "#app/phases/command-phase"; +import { MoveEndPhase } from "#app/phases/move-end-phase"; +import { TurnInitPhase } from "#app/phases/turn-init-phase"; import { Abilities } from "#enums/abilities"; import { Moves } from "#enums/moves"; import { Species } from "#enums/species"; +import GameManager from "#test/utils/gameManager"; +import { SPLASH_ONLY } from "#test/utils/testUtils"; import Phaser from "phaser"; import { afterEach, beforeAll, beforeEach, describe, expect, it } from "vitest"; -import { SPLASH_ONLY } from "#test/utils/testUtils"; -import { CommandPhase } from "#app/phases/command-phase.js"; -import { MoveEndPhase } from "#app/phases/move-end-phase.js"; -import { TurnInitPhase } from "#app/phases/turn-init-phase.js"; describe("Moves - Octolock", () => { describe("integration tests", () => { @@ -47,7 +46,7 @@ describe("Moves - Octolock", () => { const enemyPokemon = game.scene.getEnemyField(); // use Octolock and advance to init phase of next turn to check for stat changes - game.doAttack(getMovePosition(game.scene, 0, Moves.OCTOLOCK)); + game.move.select(Moves.OCTOLOCK); await game.phaseInterceptor.to(TurnInitPhase); expect(enemyPokemon[0].summonData.battleStats[BattleStat.DEF]).toBe(-1); @@ -55,7 +54,7 @@ describe("Moves - Octolock", () => { // take a second turn to make sure stat changes occur again await game.phaseInterceptor.to(CommandPhase); - game.doAttack(getMovePosition(game.scene, 0, Moves.SPLASH)); + game.move.select(Moves.SPLASH); await game.phaseInterceptor.to(TurnInitPhase); expect(enemyPokemon[0].summonData.battleStats[BattleStat.DEF]).toBe(-2); @@ -70,7 +69,7 @@ describe("Moves - Octolock", () => { // before Octolock - enemy should not be trapped expect(enemyPokemon[0].findTag(t => t instanceof TrappedTag)).toBeUndefined(); - game.doAttack(getMovePosition(game.scene, 0, Moves.OCTOLOCK)); + game.move.select(Moves.OCTOLOCK); // after Octolock - enemy should be trapped await game.phaseInterceptor.to(MoveEndPhase); diff --git a/src/test/moves/parting_shot.test.ts b/src/test/moves/parting_shot.test.ts index 32995d2d563..7c2ca3f334c 100644 --- a/src/test/moves/parting_shot.test.ts +++ b/src/test/moves/parting_shot.test.ts @@ -1,16 +1,15 @@ -import { SPLASH_ONLY } from "../utils/testUtils"; +import { BattleStat } from "#app/data/battle-stat"; +import { BerryPhase } from "#app/phases/berry-phase"; +import { FaintPhase } from "#app/phases/faint-phase"; +import { MessagePhase } from "#app/phases/message-phase"; +import { TurnInitPhase } from "#app/phases/turn-init-phase"; import { Abilities } from "#enums/abilities"; import { Moves } from "#enums/moves"; import { Species } from "#enums/species"; import Phaser from "phaser"; -import { afterEach, beforeAll, beforeEach, describe, expect, test, it } from "vitest"; +import { afterEach, beforeAll, beforeEach, describe, expect, it, test } from "vitest"; import GameManager from "../utils/gameManager"; -import { getMovePosition } from "../utils/gameManagerUtils"; -import { BattleStat } from "#app/data/battle-stat"; -import { BerryPhase } from "#app/phases/berry-phase.js"; -import { FaintPhase } from "#app/phases/faint-phase.js"; -import { MessagePhase } from "#app/phases/message-phase.js"; -import { TurnInitPhase } from "#app/phases/turn-init-phase.js"; +import { SPLASH_ONLY } from "../utils/testUtils"; const TIMEOUT = 20 * 1000; @@ -49,7 +48,7 @@ describe("Moves - Parting Shot", () => { const enemyPokemon = game.scene.getEnemyPokemon()!; expect(enemyPokemon).toBeDefined(); - game.doAttack(getMovePosition(game.scene, 0, Moves.PARTING_SHOT)); + game.move.select(Moves.PARTING_SHOT); await game.phaseInterceptor.to(BerryPhase, false); const battleStatsOpponent = enemyPokemon.summonData.battleStats; @@ -70,7 +69,7 @@ describe("Moves - Parting Shot", () => { const enemyPokemon = game.scene.getEnemyPokemon()!; expect(enemyPokemon).toBeDefined(); - game.doAttack(getMovePosition(game.scene, 0, Moves.PARTING_SHOT)); + game.move.select(Moves.PARTING_SHOT); await game.phaseInterceptor.to(BerryPhase, false); const battleStatsOpponent = enemyPokemon.summonData.battleStats; @@ -87,19 +86,19 @@ describe("Moves - Parting Shot", () => { await game.startBattle([Species.MEOWTH, Species.MEOWTH, Species.MEOWTH, Species.MURKROW, Species.ABRA]); // use Memento 3 times to debuff enemy - game.doAttack(getMovePosition(game.scene, 0, Moves.MEMENTO)); + game.move.select(Moves.MEMENTO); await game.phaseInterceptor.to(FaintPhase); expect(game.scene.getParty()[0].isFainted()).toBe(true); game.doSelectPartyPokemon(1); await game.phaseInterceptor.to(TurnInitPhase, false); - game.doAttack(getMovePosition(game.scene, 0, Moves.MEMENTO)); + game.move.select(Moves.MEMENTO); await game.phaseInterceptor.to(FaintPhase); expect(game.scene.getParty()[0].isFainted()).toBe(true); game.doSelectPartyPokemon(2); await game.phaseInterceptor.to(TurnInitPhase, false); - game.doAttack(getMovePosition(game.scene, 0, Moves.MEMENTO)); + game.move.select(Moves.MEMENTO); await game.phaseInterceptor.to(FaintPhase); expect(game.scene.getParty()[0].isFainted()).toBe(true); game.doSelectPartyPokemon(3); @@ -114,7 +113,7 @@ describe("Moves - Parting Shot", () => { expect(battleStatsOpponent[BattleStat.SPATK]).toBe(-6); // now parting shot should fail - game.doAttack(getMovePosition(game.scene, 0, Moves.PARTING_SHOT)); + game.move.select(Moves.PARTING_SHOT); await game.phaseInterceptor.to(BerryPhase, false); expect(battleStatsOpponent[BattleStat.ATK]).toBe(-6); @@ -135,7 +134,7 @@ describe("Moves - Parting Shot", () => { const enemyPokemon = game.scene.getEnemyPokemon()!; expect(enemyPokemon).toBeDefined(); - game.doAttack(getMovePosition(game.scene, 0, Moves.PARTING_SHOT)); + game.move.select(Moves.PARTING_SHOT); await game.phaseInterceptor.to(BerryPhase, false); const battleStatsOpponent = enemyPokemon.summonData.battleStats; @@ -156,7 +155,7 @@ describe("Moves - Parting Shot", () => { const enemyPokemon = game.scene.getEnemyPokemon()!; expect(enemyPokemon).toBeDefined(); - game.doAttack(getMovePosition(game.scene, 0, Moves.PARTING_SHOT)); + game.move.select(Moves.PARTING_SHOT); await game.phaseInterceptor.to(BerryPhase, false); const battleStatsOpponent = enemyPokemon.summonData.battleStats; @@ -174,7 +173,7 @@ describe("Moves - Parting Shot", () => { const enemyPokemon = game.scene.getEnemyPokemon()!; expect(enemyPokemon).toBeDefined(); - game.doAttack(getMovePosition(game.scene, 0, Moves.PARTING_SHOT)); + game.move.select(Moves.PARTING_SHOT); await game.phaseInterceptor.to(BerryPhase, false); const battleStatsOpponent = enemyPokemon.summonData.battleStats; @@ -188,7 +187,7 @@ describe("Moves - Parting Shot", () => { "Parting shot regularly not fail if no party available to switch - party fainted", async () => { await game.startBattle([Species.MURKROW, Species.MEOWTH]); - game.doAttack(getMovePosition(game.scene, 0, Moves.SPLASH)); + game.move.select(Moves.SPLASH); // intentionally kill party pokemon, switch to second slot (now 1 party mon is fainted) await game.killPokemon(game.scene.getParty()[0]); @@ -197,7 +196,7 @@ describe("Moves - Parting Shot", () => { game.doSelectPartyPokemon(1); await game.phaseInterceptor.to(TurnInitPhase, false); - game.doAttack(getMovePosition(game.scene, 0, Moves.PARTING_SHOT)); + game.move.select(Moves.PARTING_SHOT); await game.phaseInterceptor.to(BerryPhase, false); const battleStatsOpponent = game.scene.currentBattle.enemyParty[0].summonData.battleStats; diff --git a/src/test/moves/protect.test.ts b/src/test/moves/protect.test.ts index 4d97ef5ce82..3fd51f4bc93 100644 --- a/src/test/moves/protect.test.ts +++ b/src/test/moves/protect.test.ts @@ -1,14 +1,13 @@ +import { ArenaTagSide, ArenaTrapTag } from "#app/data/arena-tag"; +import { BattleStat } from "#app/data/battle-stat"; +import { allMoves } from "#app/data/move"; +import { BerryPhase } from "#app/phases/berry-phase"; +import { Abilities } from "#enums/abilities"; +import { Moves } from "#enums/moves"; +import { Species } from "#enums/species"; import Phaser from "phaser"; import { afterEach, beforeAll, beforeEach, describe, expect, test, vi } from "vitest"; import GameManager from "../utils/gameManager"; -import { Species } from "#enums/species"; -import { Abilities } from "#enums/abilities"; -import { Moves } from "#enums/moves"; -import { getMovePosition } from "../utils/gameManagerUtils"; -import { BattleStat } from "#app/data/battle-stat.js"; -import { allMoves } from "#app/data/move.js"; -import { ArenaTagSide, ArenaTrapTag } from "#app/data/arena-tag.js"; -import { BerryPhase } from "#app/phases/berry-phase.js"; const TIMEOUT = 20 * 1000; @@ -48,7 +47,7 @@ describe("Moves - Protect", () => { const leadPokemon = game.scene.getPlayerPokemon()!; - game.doAttack(getMovePosition(game.scene, 0, Moves.PROTECT)); + game.move.select(Moves.PROTECT); await game.phaseInterceptor.to(BerryPhase, false); @@ -66,7 +65,7 @@ describe("Moves - Protect", () => { const leadPokemon = game.scene.getPlayerPokemon()!; - game.doAttack(getMovePosition(game.scene, 0, Moves.PROTECT)); + game.move.select(Moves.PROTECT); await game.phaseInterceptor.to(BerryPhase, false); @@ -84,7 +83,7 @@ describe("Moves - Protect", () => { const leadPokemon = game.scene.getPlayerPokemon()!; - game.doAttack(getMovePosition(game.scene, 0, Moves.PROTECT)); + game.move.select(Moves.PROTECT); await game.phaseInterceptor.to(BerryPhase, false); @@ -103,7 +102,7 @@ describe("Moves - Protect", () => { const enemyPokemon = game.scene.getEnemyPokemon()!; - game.doAttack(getMovePosition(game.scene, 0, Moves.PROTECT)); + game.move.select(Moves.PROTECT); await game.phaseInterceptor.to(BerryPhase, false); diff --git a/src/test/moves/purify.test.ts b/src/test/moves/purify.test.ts index 3020e4b47ac..15d684b2d60 100644 --- a/src/test/moves/purify.test.ts +++ b/src/test/moves/purify.test.ts @@ -1,13 +1,12 @@ -import { Status, StatusEffect } from "#app/data/status-effect.js"; -import { EnemyPokemon, PlayerPokemon } from "#app/field/pokemon.js"; -import GameManager from "#test/utils/gameManager"; -import { getMovePosition } from "#test/utils/gameManagerUtils"; +import { BattlerIndex } from "#app/battle"; +import { Status, StatusEffect } from "#app/data/status-effect"; +import { EnemyPokemon, PlayerPokemon } from "#app/field/pokemon"; +import { MoveEndPhase } from "#app/phases/move-end-phase"; import { Moves } from "#enums/moves"; import { Species } from "#enums/species"; +import GameManager from "#test/utils/gameManager"; import Phaser from "phaser"; import { afterEach, beforeAll, beforeEach, describe, expect, test } from "vitest"; -import { BattlerIndex } from "#app/battle.js"; -import { MoveEndPhase } from "#app/phases/move-end-phase.js"; const TIMEOUT = 20 * 1000; @@ -49,7 +48,7 @@ describe("Moves - Purify", () => { playerPokemon.hp = playerPokemon.getMaxHp() - 1; enemyPokemon.status = new Status(StatusEffect.BURN); - game.doAttack(getMovePosition(game.scene, 0, Moves.PURIFY)); + game.move.select(Moves.PURIFY); await game.setTurnOrder([BattlerIndex.PLAYER, BattlerIndex.ENEMY]); await game.phaseInterceptor.to(MoveEndPhase); @@ -69,7 +68,7 @@ describe("Moves - Purify", () => { playerPokemon.hp = playerPokemon.getMaxHp() - 1; const playerInitialHp = playerPokemon.hp; - game.doAttack(getMovePosition(game.scene, 0, Moves.PURIFY)); + game.move.select(Moves.PURIFY); await game.setTurnOrder([BattlerIndex.PLAYER, BattlerIndex.ENEMY]); await game.phaseInterceptor.to(MoveEndPhase); diff --git a/src/test/moves/quick_guard.test.ts b/src/test/moves/quick_guard.test.ts index 8bf647f2027..26d9a74e9fd 100644 --- a/src/test/moves/quick_guard.test.ts +++ b/src/test/moves/quick_guard.test.ts @@ -1,13 +1,12 @@ +import { BattleStat } from "#app/data/battle-stat"; +import { BerryPhase } from "#app/phases/berry-phase"; +import { CommandPhase } from "#app/phases/command-phase"; +import { Abilities } from "#enums/abilities"; +import { Moves } from "#enums/moves"; +import { Species } from "#enums/species"; import Phaser from "phaser"; import { afterEach, beforeAll, beforeEach, describe, expect, test } from "vitest"; import GameManager from "../utils/gameManager"; -import { Species } from "#enums/species"; -import { Abilities } from "#enums/abilities"; -import { Moves } from "#enums/moves"; -import { getMovePosition } from "../utils/gameManagerUtils"; -import { BattleStat } from "#app/data/battle-stat.js"; -import { BerryPhase } from "#app/phases/berry-phase.js"; -import { CommandPhase } from "#app/phases/command-phase.js"; const TIMEOUT = 20 * 1000; @@ -47,11 +46,11 @@ describe("Moves - Quick Guard", () => { const leadPokemon = game.scene.getPlayerField(); - game.doAttack(getMovePosition(game.scene, 0, Moves.QUICK_GUARD)); + game.move.select(Moves.QUICK_GUARD); await game.phaseInterceptor.to(CommandPhase); - game.doAttack(getMovePosition(game.scene, 1, Moves.SPLASH)); + game.move.select(Moves.SPLASH, 1); await game.phaseInterceptor.to(BerryPhase, false); @@ -69,11 +68,11 @@ describe("Moves - Quick Guard", () => { const leadPokemon = game.scene.getPlayerField(); - game.doAttack(getMovePosition(game.scene, 0, Moves.QUICK_GUARD)); + game.move.select(Moves.QUICK_GUARD); await game.phaseInterceptor.to(CommandPhase); - game.doAttack(getMovePosition(game.scene, 1, Moves.SPLASH)); + game.move.select(Moves.SPLASH, 1); await game.phaseInterceptor.to(BerryPhase, false); @@ -91,11 +90,11 @@ describe("Moves - Quick Guard", () => { const leadPokemon = game.scene.getPlayerField(); const enemyPokemon = game.scene.getEnemyField(); - game.doAttack(getMovePosition(game.scene, 0, Moves.QUICK_GUARD)); + game.move.select(Moves.QUICK_GUARD); await game.phaseInterceptor.to(CommandPhase); - game.doAttack(getMovePosition(game.scene, 1, Moves.FOLLOW_ME)); + game.move.select(Moves.FOLLOW_ME, 1); await game.phaseInterceptor.to(BerryPhase, false); diff --git a/src/test/moves/rage_powder.test.ts b/src/test/moves/rage_powder.test.ts index 17b687feead..3e78c6fe0c9 100644 --- a/src/test/moves/rage_powder.test.ts +++ b/src/test/moves/rage_powder.test.ts @@ -1,14 +1,11 @@ -import { BattlerIndex } from "#app/battle.js"; -import GameManager from "#test/utils/gameManager"; -import { getMovePosition } from "#test/utils/gameManagerUtils"; +import { BattlerIndex } from "#app/battle"; +import { TurnEndPhase } from "#app/phases/turn-end-phase"; import { Abilities } from "#enums/abilities"; import { Moves } from "#enums/moves"; import { Species } from "#enums/species"; +import GameManager from "#test/utils/gameManager"; import Phaser from "phaser"; import { afterEach, beforeAll, beforeEach, describe, expect, test } from "vitest"; -import { CommandPhase } from "#app/phases/command-phase.js"; -import { SelectTargetPhase } from "#app/phases/select-target-phase.js"; -import { TurnEndPhase } from "#app/phases/turn-end-phase.js"; const TIMEOUT = 20 * 1000; @@ -33,35 +30,23 @@ describe("Moves - Rage Powder", () => { game.override.enemySpecies(Species.SNORLAX); game.override.startingLevel(100); game.override.enemyLevel(100); - game.override.moveset([ Moves.FOLLOW_ME, Moves.RAGE_POWDER, Moves.SPOTLIGHT, Moves.QUICK_ATTACK ]); - game.override.enemyMoveset([Moves.TACKLE,Moves.TACKLE,Moves.TACKLE,Moves.TACKLE]); + game.override.moveset([Moves.FOLLOW_ME, Moves.RAGE_POWDER, Moves.SPOTLIGHT, Moves.QUICK_ATTACK]); + game.override.enemyMoveset([Moves.TACKLE, Moves.TACKLE, Moves.TACKLE, Moves.TACKLE]); }); test( "move effect should be bypassed by Grass type", async () => { - game.override.enemyMoveset([ Moves.RAGE_POWDER, Moves.RAGE_POWDER, Moves.RAGE_POWDER, Moves.RAGE_POWDER ]); + game.override.enemyMoveset([Moves.RAGE_POWDER, Moves.RAGE_POWDER, Moves.RAGE_POWDER, Moves.RAGE_POWDER]); - await game.startBattle([ Species.AMOONGUSS, Species.VENUSAUR ]); - - const playerPokemon = game.scene.getPlayerField(); - expect(playerPokemon.length).toBe(2); - playerPokemon.forEach(p => expect(p).not.toBe(undefined)); + await game.startBattle([Species.AMOONGUSS, Species.VENUSAUR]); const enemyPokemon = game.scene.getEnemyField(); - expect(enemyPokemon.length).toBe(2); - enemyPokemon.forEach(p => expect(p).not.toBe(undefined)); const enemyStartingHp = enemyPokemon.map(p => p.hp); - game.doAttack(getMovePosition(game.scene, 0, Moves.QUICK_ATTACK)); - await game.phaseInterceptor.to(SelectTargetPhase, false); - game.doSelectTarget(BattlerIndex.ENEMY); - await game.phaseInterceptor.to(CommandPhase); - - game.doAttack(getMovePosition(game.scene, 1, Moves.QUICK_ATTACK)); - await game.phaseInterceptor.to(SelectTargetPhase, false); - game.doSelectTarget(BattlerIndex.ENEMY_2); + game.move.select(Moves.QUICK_ATTACK, 0, BattlerIndex.ENEMY); + game.move.select(Moves.QUICK_ATTACK, 1, BattlerIndex.ENEMY_2); await game.phaseInterceptor.to(TurnEndPhase, false); // If redirection was bypassed, both enemies should be damaged @@ -74,29 +59,17 @@ describe("Moves - Rage Powder", () => { "move effect should be bypassed by Overcoat", async () => { game.override.ability(Abilities.OVERCOAT); - game.override.enemyMoveset([ Moves.RAGE_POWDER, Moves.RAGE_POWDER, Moves.RAGE_POWDER, Moves.RAGE_POWDER ]); + game.override.enemyMoveset([Moves.RAGE_POWDER, Moves.RAGE_POWDER, Moves.RAGE_POWDER, Moves.RAGE_POWDER]); // Test with two non-Grass type player Pokemon - await game.startBattle([ Species.BLASTOISE, Species.CHARIZARD ]); - - const playerPokemon = game.scene.getPlayerField(); - expect(playerPokemon.length).toBe(2); - playerPokemon.forEach(p => expect(p).not.toBe(undefined)); + await game.startBattle([Species.BLASTOISE, Species.CHARIZARD]); const enemyPokemon = game.scene.getEnemyField(); - expect(enemyPokemon.length).toBe(2); - enemyPokemon.forEach(p => expect(p).not.toBe(undefined)); const enemyStartingHp = enemyPokemon.map(p => p.hp); - game.doAttack(getMovePosition(game.scene, 0, Moves.QUICK_ATTACK)); - await game.phaseInterceptor.to(SelectTargetPhase, false); - game.doSelectTarget(BattlerIndex.ENEMY); - await game.phaseInterceptor.to(CommandPhase); - - game.doAttack(getMovePosition(game.scene, 1, Moves.QUICK_ATTACK)); - await game.phaseInterceptor.to(SelectTargetPhase, false); - game.doSelectTarget(BattlerIndex.ENEMY_2); + game.move.select(Moves.QUICK_ATTACK, 0, BattlerIndex.ENEMY); + game.move.select(Moves.QUICK_ATTACK, 1, BattlerIndex.ENEMY_2); await game.phaseInterceptor.to(TurnEndPhase, false); // If redirection was bypassed, both enemies should be damaged diff --git a/src/test/moves/reflect.test.ts b/src/test/moves/reflect.test.ts index 79dd4f8202b..9780ede3c55 100644 --- a/src/test/moves/reflect.test.ts +++ b/src/test/moves/reflect.test.ts @@ -1,14 +1,13 @@ -import { ArenaTagSide } from "#app/data/arena-tag.js"; -import Move, { allMoves } from "#app/data/move.js"; -import { Abilities } from "#app/enums/abilities.js"; -import { ArenaTagType } from "#app/enums/arena-tag-type.js"; -import Pokemon from "#app/field/pokemon.js"; -import { TurnEndPhase } from "#app/phases/turn-end-phase.js"; -import GameManager from "#test/utils/gameManager"; -import { getMovePosition } from "#test/utils/gameManagerUtils"; -import { NumberHolder } from "#app/utils.js"; +import { ArenaTagSide } from "#app/data/arena-tag"; +import Move, { allMoves } from "#app/data/move"; +import { Abilities } from "#app/enums/abilities"; +import { ArenaTagType } from "#app/enums/arena-tag-type"; +import Pokemon from "#app/field/pokemon"; +import { TurnEndPhase } from "#app/phases/turn-end-phase"; +import { NumberHolder } from "#app/utils"; import { Moves } from "#enums/moves"; import { Species } from "#enums/species"; +import GameManager from "#test/utils/gameManager"; import Phaser from "phaser"; import { afterEach, beforeAll, beforeEach, describe, expect, it } from "vitest"; @@ -17,7 +16,7 @@ describe("Moves - Reflect", () => { let phaserGame: Phaser.Game; let game: GameManager; const singleBattleMultiplier = 0.5; - const doubleBattleMultiplier = 2732/4096; + const doubleBattleMultiplier = 2732 / 4096; beforeAll(() => { phaserGame = new Phaser.Game({ @@ -40,11 +39,11 @@ describe("Moves - Reflect", () => { game.override.disableCrits(); }); - it("reduces damage of physical attacks by half in a single battle", async() => { + it("reduces damage of physical attacks by half in a single battle", async () => { const moveToUse = Moves.TACKLE; await game.startBattle([Species.SHUCKLE]); - game.doAttack(getMovePosition(game.scene, 0, moveToUse)); + game.move.select(moveToUse); await game.phaseInterceptor.to(TurnEndPhase); const mockedDmg = getMockedMoveDamage(game.scene.getEnemyPokemon()!, game.scene.getPlayerPokemon()!, allMoves[moveToUse]); @@ -52,14 +51,14 @@ describe("Moves - Reflect", () => { expect(mockedDmg).toBe(allMoves[moveToUse].power * singleBattleMultiplier); }); - it("reduces damage of physical attacks by a third in a double battle", async() => { + it("reduces damage of physical attacks by a third in a double battle", async () => { game.override.battleType("double"); const moveToUse = Moves.ROCK_SLIDE; await game.startBattle([Species.SHUCKLE, Species.SHUCKLE]); - game.doAttack(getMovePosition(game.scene, 0, moveToUse)); - game.doAttack(getMovePosition(game.scene, 1, moveToUse)); + game.move.select(moveToUse); + game.move.select(moveToUse, 1); await game.phaseInterceptor.to(TurnEndPhase); const mockedDmg = getMockedMoveDamage(game.scene.getEnemyPokemon()!, game.scene.getPlayerPokemon()!, allMoves[moveToUse]); @@ -67,11 +66,11 @@ describe("Moves - Reflect", () => { expect(mockedDmg).toBe(allMoves[moveToUse].power * doubleBattleMultiplier); }); - it("does not affect special attacks", async() => { + it("does not affect special attacks", async () => { const moveToUse = Moves.ABSORB; await game.startBattle([Species.SHUCKLE]); - game.doAttack(getMovePosition(game.scene, 0, moveToUse)); + game.move.select(moveToUse); await game.phaseInterceptor.to(TurnEndPhase); diff --git a/src/test/moves/rollout.test.ts b/src/test/moves/rollout.test.ts index 1fc208c6724..ddb0b22e642 100644 --- a/src/test/moves/rollout.test.ts +++ b/src/test/moves/rollout.test.ts @@ -1,18 +1,16 @@ -import { allMoves } from "#app/data/move.js"; -import { CommandPhase } from "#app/phases/command-phase.js"; -import GameManager from "#test/utils/gameManager"; -import { getMovePosition } from "#test/utils/gameManagerUtils"; +import { allMoves } from "#app/data/move"; +import { CommandPhase } from "#app/phases/command-phase"; import { Abilities } from "#enums/abilities"; import { Moves } from "#enums/moves"; import { Species } from "#enums/species"; +import GameManager from "#test/utils/gameManager"; +import { SPLASH_ONLY } from "#test/utils/testUtils"; import Phaser from "phaser"; import { afterEach, beforeAll, beforeEach, describe, expect, it, vi } from "vitest"; -import { SPLASH_ONLY } from "#test/utils/testUtils"; describe("Moves - Rollout", () => { let phaserGame: Phaser.Game; let game: GameManager; - const TIMEOUT = 20 * 1000; beforeAll(() => { phaserGame = new Phaser.Game({ @@ -29,9 +27,9 @@ describe("Moves - Rollout", () => { game.override.disableCrits(); game.override.battleType("single"); game.override.starterSpecies(Species.RATTATA); - game.override.ability(Abilities.NONE); + game.override.ability(Abilities.BALL_FETCH); game.override.enemySpecies(Species.BIDOOF); - game.override.enemyAbility(Abilities.NONE); + game.override.enemyAbility(Abilities.BALL_FETCH); game.override.startingLevel(100); game.override.enemyLevel(100); game.override.enemyMoveset(SPLASH_ONLY); @@ -58,7 +56,7 @@ describe("Moves - Rollout", () => { let previousHp = enemyPkm.hp; for (let i = 0; i < turns; i++) { - game.doAttack(getMovePosition(game.scene, 0, Moves.ROLLOUT)); + game.move.select(Moves.ROLLOUT); await game.phaseInterceptor.to(CommandPhase); dmgHistory.push(previousHp - enemyPkm.hp); @@ -78,5 +76,5 @@ describe("Moves - Rollout", () => { // reset expect(turn6Dmg).toBeGreaterThanOrEqual(turn1Dmg - variance); expect(turn6Dmg).toBeLessThanOrEqual(turn1Dmg + variance); - }, TIMEOUT); + }); }); diff --git a/src/test/moves/roost.test.ts b/src/test/moves/roost.test.ts index c40bb18cdb1..cf07a3485e7 100644 --- a/src/test/moves/roost.test.ts +++ b/src/test/moves/roost.test.ts @@ -1,13 +1,12 @@ -import { Abilities } from "#app/enums/abilities.js"; -import { BattlerTagType } from "#app/enums/battler-tag-type.js"; -import { Moves } from "#app/enums/moves.js"; -import { Species } from "#app/enums/species.js"; +import { Abilities } from "#app/enums/abilities"; +import { BattlerTagType } from "#app/enums/battler-tag-type"; +import { Moves } from "#app/enums/moves"; +import { Species } from "#app/enums/species"; +import { MoveEffectPhase } from "#app/phases/move-effect-phase"; +import { TurnEndPhase } from "#app/phases/turn-end-phase"; import GameManager from "#test/utils/gameManager"; import Phaser from "phaser"; import { afterEach, beforeAll, beforeEach, describe, expect, test } from "vitest"; -import { getMovePosition } from "#test/utils/gameManagerUtils"; -import { MoveEffectPhase } from "#app/phases/move-effect-phase.js"; -import { TurnEndPhase } from "#app/phases/turn-end-phase.js"; const TIMEOUT = 20 * 1000; @@ -32,8 +31,8 @@ describe("Moves - Roost", () => { game.override.enemyAbility(Abilities.INSOMNIA); game.override.startingLevel(100); game.override.enemyLevel(100); - game.override.moveset([ Moves.STOMPING_TANTRUM ]); - game.override.enemyMoveset([Moves.ROOST,Moves.ROOST,Moves.ROOST,Moves.ROOST]); + game.override.moveset([Moves.STOMPING_TANTRUM]); + game.override.enemyMoveset([Moves.ROOST, Moves.ROOST, Moves.ROOST, Moves.ROOST]); }); test( @@ -45,7 +44,7 @@ describe("Moves - Roost", () => { const enemyStartingHp = enemyPokemon.hp; - game.doAttack(getMovePosition(game.scene, 0, Moves.STOMPING_TANTRUM)); + game.move.select(Moves.STOMPING_TANTRUM); await game.phaseInterceptor.to(MoveEffectPhase); diff --git a/src/test/moves/shell_trap.test.ts b/src/test/moves/shell_trap.test.ts index c600b1ee1cc..4549a8b2b73 100644 --- a/src/test/moves/shell_trap.test.ts +++ b/src/test/moves/shell_trap.test.ts @@ -1,16 +1,15 @@ +import { BattlerIndex } from "#app/battle"; +import { allMoves } from "#app/data/move"; +import { Moves } from "#app/enums/moves"; +import { Species } from "#app/enums/species"; +import { MoveResult } from "#app/field/pokemon"; +import { BerryPhase } from "#app/phases/berry-phase"; +import { MoveEndPhase } from "#app/phases/move-end-phase"; +import { MovePhase } from "#app/phases/move-phase"; +import GameManager from "#test/utils/gameManager"; import Phaser from "phaser"; import { afterEach, beforeAll, beforeEach, describe, expect, it, vi } from "vitest"; -import GameManager from "#test/utils/gameManager"; -import { Moves } from "#app/enums/moves.js"; -import { Species } from "#app/enums/species.js"; -import { allMoves } from "#app/data/move.js"; -import { BattlerIndex } from "#app/battle.js"; -import { getMovePosition } from "../utils/gameManagerUtils"; import { SPLASH_ONLY } from "../utils/testUtils"; -import { MoveResult } from "#app/field/pokemon.js"; -import { BerryPhase } from "#app/phases/berry-phase.js"; -import { MoveEndPhase } from "#app/phases/move-end-phase.js"; -import { MovePhase } from "#app/phases/move-phase.js"; const TIMEOUT = 20 * 1000; @@ -49,8 +48,8 @@ describe("Moves - Shell Trap", () => { const playerPokemon = game.scene.getPlayerField(); const enemyPokemon = game.scene.getEnemyField(); - game.doAttack(getMovePosition(game.scene, 0, Moves.SPLASH)); - game.doAttack(getMovePosition(game.scene, 1, Moves.SHELL_TRAP)); + game.move.select(Moves.SPLASH); + game.move.select(Moves.SHELL_TRAP, 1); await game.setTurnOrder([BattlerIndex.ENEMY, BattlerIndex.ENEMY_2, BattlerIndex.PLAYER, BattlerIndex.PLAYER_2]); @@ -75,8 +74,8 @@ describe("Moves - Shell Trap", () => { const playerPokemon = game.scene.getPlayerField(); const enemyPokemon = game.scene.getEnemyField(); - game.doAttack(getMovePosition(game.scene, 0, Moves.SPLASH)); - game.doAttack(getMovePosition(game.scene, 1, Moves.SHELL_TRAP)); + game.move.select(Moves.SPLASH); + game.move.select(Moves.SHELL_TRAP, 1); await game.setTurnOrder([BattlerIndex.ENEMY, BattlerIndex.ENEMY_2, BattlerIndex.PLAYER, BattlerIndex.PLAYER_2]); @@ -101,8 +100,8 @@ describe("Moves - Shell Trap", () => { const playerPokemon = game.scene.getPlayerField(); const enemyPokemon = game.scene.getEnemyField(); - game.doAttack(getMovePosition(game.scene, 0, Moves.SPLASH)); - game.doAttack(getMovePosition(game.scene, 1, Moves.SHELL_TRAP)); + game.move.select(Moves.SPLASH); + game.move.select(Moves.SHELL_TRAP, 1); await game.setTurnOrder([BattlerIndex.ENEMY, BattlerIndex.ENEMY_2, BattlerIndex.PLAYER, BattlerIndex.PLAYER_2]); @@ -127,8 +126,8 @@ describe("Moves - Shell Trap", () => { const playerPokemon = game.scene.getPlayerField(); const enemyPokemon = game.scene.getEnemyField(); - game.doAttack(getMovePosition(game.scene, 0, Moves.SHELL_TRAP)); - game.doAttack(getMovePosition(game.scene, 1, Moves.BULLDOZE)); + game.move.select(Moves.SHELL_TRAP); + game.move.select(Moves.BULLDOZE, 1); await game.phaseInterceptor.to(MoveEndPhase); @@ -154,7 +153,7 @@ describe("Moves - Shell Trap", () => { const playerPokemon = game.scene.getPlayerPokemon()!; const enemyPokemon = game.scene.getEnemyPokemon()!; - game.doAttack(getMovePosition(game.scene, 0, Moves.SHELL_TRAP)); + game.move.select(Moves.SHELL_TRAP); await game.phaseInterceptor.to(BerryPhase, false); diff --git a/src/test/moves/spikes.test.ts b/src/test/moves/spikes.test.ts index ae3c676b893..c4096111c6f 100644 --- a/src/test/moves/spikes.test.ts +++ b/src/test/moves/spikes.test.ts @@ -1,8 +1,8 @@ -import { CommandPhase } from "#app/phases/command-phase.js"; -import GameManager from "#test/utils/gameManager"; +import { CommandPhase } from "#app/phases/command-phase"; import { Abilities } from "#enums/abilities"; import { Moves } from "#enums/moves"; import { Species } from "#enums/species"; +import GameManager from "#test/utils/gameManager"; import Phaser from "phaser"; import { afterEach, beforeAll, beforeEach, describe, expect, it } from "vitest"; @@ -31,14 +31,11 @@ describe("Moves - Spikes", () => { game.override.ability(Abilities.HYDRATION); game.override.passiveAbility(Abilities.HYDRATION); game.override.startingWave(3); - game.override.enemyMoveset([Moves.SPLASH,Moves.SPLASH,Moves.SPLASH,Moves.SPLASH]); - game.override.moveset([Moves.SPIKES,Moves.SPLASH, Moves.ROAR]); + game.override.enemyMoveset([Moves.SPLASH, Moves.SPLASH, Moves.SPLASH, Moves.SPLASH]); + game.override.moveset([Moves.SPIKES, Moves.SPLASH, Moves.ROAR]); }); - it("single - wild - stay on field - no damage", async() => { - // player set spikes on the field and do splash for 3 turns - // opponent do splash for 4 turns - // nobody should take damage + it("single - wild - stay on field - no damage", async () => { await game.classicMode.runToSummon([ Species.MIGHTYENA, Species.POOCHYENA, @@ -46,21 +43,14 @@ describe("Moves - Spikes", () => { await game.phaseInterceptor.to(CommandPhase, true); const initialHp = game.scene.getParty()[0].hp; expect(game.scene.getParty()[0].hp).toBe(initialHp); - game.doAttack(0); + game.move.select(Moves.SPIKES); await game.toNextTurn(); - game.doAttack(1); - await game.toNextTurn(); - game.doAttack(1); - await game.toNextTurn(); - game.doAttack(1); - await game.toNextTurn(); - game.doAttack(1); + game.move.select(Moves.SPLASH); await game.toNextTurn(); expect(game.scene.getParty()[0].hp).toBe(initialHp); - console.log(game.textInterceptor.logs); }, 20000); - it("single - wild - take some damage", async() => { + it("single - wild - take some damage", async () => { // player set spikes on the field and switch back to back // opponent do splash for 2 turns // nobody should take damage @@ -82,7 +72,7 @@ describe("Moves - Spikes", () => { expect(game.scene.getParty()[0].hp).toBe(initialHp); }, 20000); - it("trainer - wild - force switch opponent - should take damage", async() => { + it("trainer - wild - force switch opponent - should take damage", async () => { game.override.startingWave(5); // player set spikes on the field and do splash for 3 turns // opponent do splash for 4 turns @@ -93,14 +83,14 @@ describe("Moves - Spikes", () => { ]); await game.phaseInterceptor.to(CommandPhase, true); const initialHpOpponent = game.scene.currentBattle.enemyParty[1].hp; - game.doAttack(0); + game.move.select(Moves.SPIKES); await game.toNextTurn(); - game.doAttack(2); + game.move.select(Moves.ROAR); await game.toNextTurn(); expect(game.scene.currentBattle.enemyParty[0].hp).toBeLessThan(initialHpOpponent); }, 20000); - it("trainer - wild - force switch by himself opponent - should take damage", async() => { + it("trainer - wild - force switch by himself opponent - should take damage", async () => { game.override.startingWave(5); game.override.startingLevel(5000); game.override.enemySpecies(0); @@ -113,11 +103,11 @@ describe("Moves - Spikes", () => { ]); await game.phaseInterceptor.to(CommandPhase, true); const initialHpOpponent = game.scene.currentBattle.enemyParty[1].hp; - game.doAttack(0); + game.move.select(Moves.SPIKES); await game.toNextTurn(); game.forceOpponentToSwitch(); - game.doAttack(1); + game.move.select(Moves.SPLASH); await game.toNextTurn(); expect(game.scene.currentBattle.enemyParty[0].hp).toBeLessThan(initialHpOpponent); }, 20000); diff --git a/src/test/moves/spit_up.test.ts b/src/test/moves/spit_up.test.ts index 51d84a5e151..ab47e65d653 100644 --- a/src/test/moves/spit_up.test.ts +++ b/src/test/moves/spit_up.test.ts @@ -1,17 +1,17 @@ import { BattleStat } from "#app/data/battle-stat"; -import { StockpilingTag } from "#app/data/battler-tags.js"; -import { allMoves } from "#app/data/move.js"; -import { BattlerTagType } from "#app/enums/battler-tag-type.js"; -import { MoveResult, TurnMove } from "#app/field/pokemon.js"; -import GameManager from "#test/utils/gameManager"; +import { StockpilingTag } from "#app/data/battler-tags"; +import { allMoves } from "#app/data/move"; +import { BattlerTagType } from "#app/enums/battler-tag-type"; +import { MoveResult, TurnMove } from "#app/field/pokemon"; +import { MovePhase } from "#app/phases/move-phase"; +import { TurnInitPhase } from "#app/phases/turn-init-phase"; import { Abilities } from "#enums/abilities"; import { Moves } from "#enums/moves"; import { Species } from "#enums/species"; +import GameManager from "#test/utils/gameManager"; +import { SPLASH_ONLY } from "#test/utils/testUtils"; import Phaser from "phaser"; import { afterEach, beforeAll, beforeEach, describe, expect, it, vi } from "vitest"; -import { SPLASH_ONLY } from "#test/utils/testUtils"; -import { MovePhase } from "#app/phases/move-phase.js"; -import { TurnInitPhase } from "#app/phases/turn-init-phase.js"; describe("Moves - Spit Up", () => { let phaserGame: Phaser.Game; @@ -55,7 +55,7 @@ describe("Moves - Spit Up", () => { vi.spyOn(allMoves[Moves.SPIT_UP], "calculateBattlePower"); - game.doAttack(0); + game.move.select(Moves.SPIT_UP); await game.phaseInterceptor.to(TurnInitPhase); expect(allMoves[Moves.SPIT_UP].calculateBattlePower).toHaveBeenCalledOnce(); @@ -80,7 +80,7 @@ describe("Moves - Spit Up", () => { vi.spyOn(allMoves[Moves.SPIT_UP], "calculateBattlePower"); - game.doAttack(0); + game.move.select(Moves.SPIT_UP); await game.phaseInterceptor.to(TurnInitPhase); expect(allMoves[Moves.SPIT_UP].calculateBattlePower).toHaveBeenCalledOnce(); @@ -106,7 +106,7 @@ describe("Moves - Spit Up", () => { vi.spyOn(allMoves[Moves.SPIT_UP], "calculateBattlePower"); - game.doAttack(0); + game.move.select(Moves.SPIT_UP); await game.phaseInterceptor.to(TurnInitPhase); expect(allMoves[Moves.SPIT_UP].calculateBattlePower).toHaveBeenCalledOnce(); @@ -126,7 +126,7 @@ describe("Moves - Spit Up", () => { vi.spyOn(allMoves[Moves.SPIT_UP], "calculateBattlePower"); - game.doAttack(0); + game.move.select(Moves.SPIT_UP); await game.phaseInterceptor.to(TurnInitPhase); expect(pokemon.getMoveHistory().at(-1)).toMatchObject({ move: Moves.SPIT_UP, result: MoveResult.FAIL }); @@ -146,7 +146,7 @@ describe("Moves - Spit Up", () => { vi.spyOn(allMoves[Moves.SPIT_UP], "calculateBattlePower"); - game.doAttack(0); + game.move.select(Moves.SPIT_UP); await game.phaseInterceptor.to(MovePhase); expect(pokemon.summonData.battleStats[BattleStat.DEF]).toBe(1); @@ -186,7 +186,7 @@ describe("Moves - Spit Up", () => { vi.spyOn(allMoves[Moves.SPIT_UP], "calculateBattlePower"); - game.doAttack(0); + game.move.select(Moves.SPIT_UP); await game.phaseInterceptor.to(TurnInitPhase); expect(pokemon.getMoveHistory().at(-1)).toMatchObject({ move: Moves.SPIT_UP, result: MoveResult.SUCCESS }); diff --git a/src/test/moves/spotlight.test.ts b/src/test/moves/spotlight.test.ts index 40ab78471ae..e5f4719d1d3 100644 --- a/src/test/moves/spotlight.test.ts +++ b/src/test/moves/spotlight.test.ts @@ -1,14 +1,11 @@ -import { BattlerIndex } from "#app/battle.js"; +import { BattlerIndex } from "#app/battle"; import { Stat } from "#app/data/pokemon-stat"; -import GameManager from "#test/utils/gameManager"; -import { getMovePosition } from "#test/utils/gameManagerUtils"; +import { TurnEndPhase } from "#app/phases/turn-end-phase"; import { Moves } from "#enums/moves"; import { Species } from "#enums/species"; +import GameManager from "#test/utils/gameManager"; import Phaser from "phaser"; import { afterEach, beforeAll, beforeEach, describe, expect, test } from "vitest"; -import { CommandPhase } from "#app/phases/command-phase.js"; -import { SelectTargetPhase } from "#app/phases/select-target-phase.js"; -import { TurnEndPhase } from "#app/phases/turn-end-phase.js"; const TIMEOUT = 20 * 1000; @@ -33,33 +30,21 @@ describe("Moves - Spotlight", () => { game.override.enemySpecies(Species.SNORLAX); game.override.startingLevel(100); game.override.enemyLevel(100); - game.override.moveset([ Moves.FOLLOW_ME, Moves.RAGE_POWDER, Moves.SPOTLIGHT, Moves.QUICK_ATTACK ]); - game.override.enemyMoveset([Moves.TACKLE,Moves.TACKLE,Moves.TACKLE,Moves.TACKLE]); + game.override.moveset([Moves.FOLLOW_ME, Moves.RAGE_POWDER, Moves.SPOTLIGHT, Moves.QUICK_ATTACK]); + game.override.enemyMoveset([Moves.TACKLE, Moves.TACKLE, Moves.TACKLE, Moves.TACKLE]); }); test( "move should redirect attacks to the target", async () => { - await game.startBattle([ Species.AMOONGUSS, Species.CHARIZARD ]); - - const playerPokemon = game.scene.getPlayerField(); - expect(playerPokemon.length).toBe(2); - playerPokemon.forEach(p => expect(p).not.toBe(undefined)); + await game.startBattle([Species.AMOONGUSS, Species.CHARIZARD]); const enemyPokemon = game.scene.getEnemyField(); - expect(enemyPokemon.length).toBe(2); - enemyPokemon.forEach(p => expect(p).not.toBe(undefined)); const enemyStartingHp = enemyPokemon.map(p => p.hp); - game.doAttack(getMovePosition(game.scene, 0, Moves.SPOTLIGHT)); - await game.phaseInterceptor.to(SelectTargetPhase, false); - game.doSelectTarget(BattlerIndex.ENEMY); - await game.phaseInterceptor.to(CommandPhase); - - game.doAttack(getMovePosition(game.scene, 1, Moves.QUICK_ATTACK)); - await game.phaseInterceptor.to(SelectTargetPhase, false); - game.doSelectTarget(BattlerIndex.ENEMY_2); + game.move.select(Moves.SPOTLIGHT, 0, BattlerIndex.ENEMY); + game.move.select(Moves.QUICK_ATTACK, 1, BattlerIndex.ENEMY_2); await game.phaseInterceptor.to(TurnEndPhase, false); expect(enemyPokemon[0].hp).toBeLessThan(enemyStartingHp[0]); @@ -70,17 +55,11 @@ describe("Moves - Spotlight", () => { test( "move should cause other redirection moves to fail", async () => { - game.override.enemyMoveset([ Moves.FOLLOW_ME, Moves.FOLLOW_ME, Moves.FOLLOW_ME, Moves.FOLLOW_ME ]); + game.override.enemyMoveset([Moves.FOLLOW_ME, Moves.FOLLOW_ME, Moves.FOLLOW_ME, Moves.FOLLOW_ME]); - await game.startBattle([ Species.AMOONGUSS, Species.CHARIZARD ]); - - const playerPokemon = game.scene.getPlayerField(); - expect(playerPokemon.length).toBe(2); - playerPokemon.forEach(p => expect(p).not.toBe(undefined)); + await game.startBattle([Species.AMOONGUSS, Species.CHARIZARD]); const enemyPokemon = game.scene.getEnemyField(); - expect(enemyPokemon.length).toBe(2); - enemyPokemon.forEach(p => expect(p).not.toBe(undefined)); /** * Spotlight will target the slower enemy. In this situation without Spotlight being used, @@ -92,14 +71,8 @@ describe("Moves - Spotlight", () => { const enemyStartingHp = enemyPokemon.map(p => p.hp); - game.doAttack(getMovePosition(game.scene, 0, Moves.SPOTLIGHT)); - await game.phaseInterceptor.to(SelectTargetPhase, false); - game.doSelectTarget(spotTarget); - await game.phaseInterceptor.to(CommandPhase); - - game.doAttack(getMovePosition(game.scene, 1, Moves.QUICK_ATTACK)); - await game.phaseInterceptor.to(SelectTargetPhase, false); - game.doSelectTarget(attackTarget); + game.move.select(Moves.SPOTLIGHT, 0, spotTarget); + game.move.select(Moves.QUICK_ATTACK, 1, attackTarget); await game.phaseInterceptor.to(TurnEndPhase, false); expect(enemyPokemon[1].hp).toBeLessThan(enemyStartingHp[1]); diff --git a/src/test/moves/stockpile.test.ts b/src/test/moves/stockpile.test.ts index 0b208e20f81..b1941b9f9b3 100644 --- a/src/test/moves/stockpile.test.ts +++ b/src/test/moves/stockpile.test.ts @@ -1,16 +1,15 @@ import { BattleStat } from "#app/data/battle-stat"; -import { StockpilingTag } from "#app/data/battler-tags.js"; -import { MoveResult, TurnMove } from "#app/field/pokemon.js"; -import GameManager from "#test/utils/gameManager"; -import { getMovePosition } from "#test/utils/gameManagerUtils"; +import { StockpilingTag } from "#app/data/battler-tags"; +import { MoveResult, TurnMove } from "#app/field/pokemon"; +import { CommandPhase } from "#app/phases/command-phase"; +import { TurnInitPhase } from "#app/phases/turn-init-phase"; import { Abilities } from "#enums/abilities"; import { Moves } from "#enums/moves"; import { Species } from "#enums/species"; +import GameManager from "#test/utils/gameManager"; +import { SPLASH_ONLY } from "#test/utils/testUtils"; import Phaser from "phaser"; import { afterEach, beforeAll, beforeEach, describe, expect, it } from "vitest"; -import { SPLASH_ONLY } from "#test/utils/testUtils"; -import { CommandPhase } from "#app/phases/command-phase.js"; -import { TurnInitPhase } from "#app/phases/turn-init-phase.js"; describe("Moves - Stockpile", () => { describe("integration tests", () => { @@ -57,7 +56,7 @@ describe("Moves - Stockpile", () => { await game.phaseInterceptor.to(CommandPhase); } - game.doAttack(getMovePosition(game.scene, 0, Moves.STOCKPILE)); + game.move.select(Moves.STOCKPILE); await game.phaseInterceptor.to(TurnInitPhase); const stockpilingTag = user.getTag(StockpilingTag)!; @@ -92,7 +91,7 @@ describe("Moves - Stockpile", () => { expect(user.summonData.battleStats[BattleStat.DEF]).toBe(6); expect(user.summonData.battleStats[BattleStat.SPDEF]).toBe(6); - game.doAttack(getMovePosition(game.scene, 0, Moves.STOCKPILE)); + game.move.select(Moves.STOCKPILE); await game.phaseInterceptor.to(TurnInitPhase); const stockpilingTag = user.getTag(StockpilingTag)!; @@ -104,7 +103,7 @@ describe("Moves - Stockpile", () => { // do it again, just for good measure await game.phaseInterceptor.to(CommandPhase); - game.doAttack(getMovePosition(game.scene, 0, Moves.STOCKPILE)); + game.move.select(Moves.STOCKPILE); await game.phaseInterceptor.to(TurnInitPhase); const stockpilingTagAgain = user.getTag(StockpilingTag)!; diff --git a/src/test/moves/swallow.test.ts b/src/test/moves/swallow.test.ts index 6a054393acc..202f25fee74 100644 --- a/src/test/moves/swallow.test.ts +++ b/src/test/moves/swallow.test.ts @@ -1,16 +1,16 @@ import { BattleStat } from "#app/data/battle-stat"; -import { StockpilingTag } from "#app/data/battler-tags.js"; -import { BattlerTagType } from "#app/enums/battler-tag-type.js"; -import { MoveResult, TurnMove } from "#app/field/pokemon.js"; -import GameManager from "#test/utils/gameManager"; +import { StockpilingTag } from "#app/data/battler-tags"; +import { BattlerTagType } from "#app/enums/battler-tag-type"; +import { MoveResult, TurnMove } from "#app/field/pokemon"; +import { MovePhase } from "#app/phases/move-phase"; +import { TurnInitPhase } from "#app/phases/turn-init-phase"; import { Abilities } from "#enums/abilities"; import { Moves } from "#enums/moves"; import { Species } from "#enums/species"; +import GameManager from "#test/utils/gameManager"; +import { SPLASH_ONLY } from "#test/utils/testUtils"; import Phaser from "phaser"; import { afterEach, beforeAll, beforeEach, describe, expect, it, vi } from "vitest"; -import { SPLASH_ONLY } from "#test/utils/testUtils"; -import { MovePhase } from "#app/phases/move-phase.js"; -import { TurnInitPhase } from "#app/phases/turn-init-phase.js"; describe("Moves - Swallow", () => { let phaserGame: Phaser.Game; @@ -57,7 +57,7 @@ describe("Moves - Swallow", () => { vi.spyOn(pokemon, "heal"); - game.doAttack(0); + game.move.select(Moves.SWALLOW); await game.phaseInterceptor.to(TurnInitPhase); expect(pokemon.heal).toHaveBeenCalledOnce(); @@ -85,7 +85,7 @@ describe("Moves - Swallow", () => { vi.spyOn(pokemon, "heal"); - game.doAttack(0); + game.move.select(Moves.SWALLOW); await game.phaseInterceptor.to(TurnInitPhase); expect(pokemon.heal).toHaveBeenCalledOnce(); @@ -114,7 +114,7 @@ describe("Moves - Swallow", () => { vi.spyOn(pokemon, "heal"); - game.doAttack(0); + game.move.select(Moves.SWALLOW); await game.phaseInterceptor.to(TurnInitPhase); expect(pokemon.heal).toHaveBeenCalledOnce(); @@ -132,7 +132,7 @@ describe("Moves - Swallow", () => { const stockpilingTag = pokemon.getTag(StockpilingTag)!; expect(stockpilingTag).toBeUndefined(); - game.doAttack(0); + game.move.select(Moves.SWALLOW); await game.phaseInterceptor.to(TurnInitPhase); expect(pokemon.getMoveHistory().at(-1)).toMatchObject({ move: Moves.SWALLOW, result: MoveResult.FAIL }); @@ -148,7 +148,7 @@ describe("Moves - Swallow", () => { const stockpilingTag = pokemon.getTag(StockpilingTag)!; expect(stockpilingTag).toBeDefined(); - game.doAttack(0); + game.move.select(Moves.SWALLOW); await game.phaseInterceptor.to(MovePhase); expect(pokemon.summonData.battleStats[BattleStat.DEF]).toBe(1); @@ -184,7 +184,7 @@ describe("Moves - Swallow", () => { [BattleStat.SPDEF]: 2, }); - game.doAttack(0); + game.move.select(Moves.SWALLOW); await game.phaseInterceptor.to(TurnInitPhase); expect(pokemon.getMoveHistory().at(-1)).toMatchObject({ move: Moves.SWALLOW, result: MoveResult.SUCCESS }); diff --git a/src/test/moves/tackle.test.ts b/src/test/moves/tackle.test.ts index f442645baa9..5eca9e344c8 100644 --- a/src/test/moves/tackle.test.ts +++ b/src/test/moves/tackle.test.ts @@ -1,15 +1,11 @@ import { Stat } from "#app/data/pokemon-stat"; -import GameManager from "#test/utils/gameManager"; -import { getMovePosition } from "#test/utils/gameManagerUtils"; -import { Command } from "#app/ui/command-ui-handler"; -import { Mode } from "#app/ui/ui"; +import { EnemyCommandPhase } from "#app/phases/enemy-command-phase"; +import { TurnEndPhase } from "#app/phases/turn-end-phase"; import { Moves } from "#enums/moves"; import { Species } from "#enums/species"; +import GameManager from "#test/utils/gameManager"; import Phaser from "phaser"; import { afterEach, beforeAll, beforeEach, describe, expect, it } from "vitest"; -import { CommandPhase } from "#app/phases/command-phase.js"; -import { EnemyCommandPhase } from "#app/phases/enemy-command-phase.js"; -import { TurnEndPhase } from "#app/phases/turn-end-phase.js"; describe("Moves - Tackle", () => { @@ -34,30 +30,24 @@ describe("Moves - Tackle", () => { game.override.startingLevel(1); game.override.startingWave(97); game.override.moveset([moveToUse]); - game.override.enemyMoveset([Moves.GROWTH,Moves.GROWTH,Moves.GROWTH,Moves.GROWTH]); + game.override.enemyMoveset([Moves.GROWTH, Moves.GROWTH, Moves.GROWTH, Moves.GROWTH]); game.override.disableCrits(); }); - it("TACKLE against ghost", async() => { + it("TACKLE against ghost", async () => { const moveToUse = Moves.TACKLE; game.override.enemySpecies(Species.GENGAR); await game.startBattle([ Species.MIGHTYENA, ]); const hpOpponent = game.scene.currentBattle.enemyParty[0].hp; - game.onNextPrompt("CommandPhase", Mode.COMMAND, () => { - game.scene.ui.setMode(Mode.FIGHT, (game.scene.getCurrentPhase() as CommandPhase).getFieldIndex()); - }); - game.onNextPrompt("CommandPhase", Mode.FIGHT, () => { - const movePosition = getMovePosition(game.scene, 0, moveToUse); - (game.scene.getCurrentPhase() as CommandPhase).handleCommand(Command.FIGHT, movePosition, false); - }); + game.move.select(moveToUse); await game.phaseInterceptor.runFrom(EnemyCommandPhase).to(TurnEndPhase); const hpLost = hpOpponent - game.scene.currentBattle.enemyParty[0].hp; expect(hpLost).toBe(0); }, 20000); - it("TACKLE against not resistant", async() => { + it("TACKLE against not resistant", async () => { const moveToUse = Moves.TACKLE; await game.startBattle([ Species.MIGHTYENA, @@ -68,16 +58,10 @@ describe("Moves - Tackle", () => { const hpOpponent = game.scene.currentBattle.enemyParty[0].hp; - game.onNextPrompt("CommandPhase", Mode.COMMAND, () => { - game.scene.ui.setMode(Mode.FIGHT, (game.scene.getCurrentPhase() as CommandPhase).getFieldIndex()); - }); - game.onNextPrompt("CommandPhase", Mode.FIGHT, () => { - const movePosition = getMovePosition(game.scene, 0, moveToUse); - (game.scene.getCurrentPhase() as CommandPhase).handleCommand(Command.FIGHT, movePosition, false); - }); + game.move.select(moveToUse); await game.phaseInterceptor.runFrom(EnemyCommandPhase).to(TurnEndPhase); const hpLost = hpOpponent - game.scene.currentBattle.enemyParty[0].hp; expect(hpLost).toBeGreaterThan(0); - expect(hpLost).toBe(4); + expect(hpLost).toBeLessThan(4); }, 20000); }); diff --git a/src/test/moves/tail_whip.test.ts b/src/test/moves/tail_whip.test.ts index ba4a7459094..0a999fe1920 100644 --- a/src/test/moves/tail_whip.test.ts +++ b/src/test/moves/tail_whip.test.ts @@ -1,16 +1,12 @@ import { BattleStat } from "#app/data/battle-stat"; -import GameManager from "#test/utils/gameManager"; -import { getMovePosition } from "#test/utils/gameManagerUtils"; -import { Command } from "#app/ui/command-ui-handler"; -import { Mode } from "#app/ui/ui"; +import { EnemyCommandPhase } from "#app/phases/enemy-command-phase"; +import { TurnInitPhase } from "#app/phases/turn-init-phase"; import { Abilities } from "#enums/abilities"; import { Moves } from "#enums/moves"; import { Species } from "#enums/species"; +import GameManager from "#test/utils/gameManager"; import Phaser from "phaser"; import { afterEach, beforeAll, beforeEach, describe, expect, it } from "vitest"; -import { CommandPhase } from "#app/phases/command-phase.js"; -import { EnemyCommandPhase } from "#app/phases/enemy-command-phase.js"; -import { TurnInitPhase } from "#app/phases/turn-init-phase.js"; describe("Moves - Tail whip", () => { @@ -36,10 +32,10 @@ describe("Moves - Tail whip", () => { game.override.ability(Abilities.INSOMNIA); game.override.startingLevel(2000); game.override.moveset([moveToUse]); - game.override.enemyMoveset([Moves.TACKLE,Moves.TACKLE,Moves.TACKLE,Moves.TACKLE]); + game.override.enemyMoveset([Moves.TACKLE, Moves.TACKLE, Moves.TACKLE, Moves.TACKLE]); }); - it("TAIL_WHIP", async() => { + it("TAIL_WHIP", async () => { const moveToUse = Moves.TAIL_WHIP; await game.startBattle([ Species.MIGHTYENA, @@ -49,13 +45,7 @@ describe("Moves - Tail whip", () => { let battleStatsOpponent = game.scene.currentBattle.enemyParty[0].summonData.battleStats; expect(battleStatsOpponent[BattleStat.DEF]).toBe(0); - game.onNextPrompt("CommandPhase", Mode.COMMAND, () => { - game.scene.ui.setMode(Mode.FIGHT, (game.scene.getCurrentPhase() as CommandPhase).getFieldIndex()); - }); - game.onNextPrompt("CommandPhase", Mode.FIGHT, () => { - const movePosition = getMovePosition(game.scene, 0, moveToUse); - (game.scene.getCurrentPhase() as CommandPhase).handleCommand(Command.FIGHT, movePosition, false); - }); + game.move.select(moveToUse); await game.phaseInterceptor.runFrom(EnemyCommandPhase).to(TurnInitPhase); battleStatsOpponent = game.scene.currentBattle.enemyParty[0].summonData.battleStats; expect(battleStatsOpponent[BattleStat.DEF]).toBe(-1); diff --git a/src/test/moves/tailwind.test.ts b/src/test/moves/tailwind.test.ts index 115a97f3be4..6b70122d08d 100644 --- a/src/test/moves/tailwind.test.ts +++ b/src/test/moves/tailwind.test.ts @@ -1,14 +1,13 @@ -import { ArenaTagSide } from "#app/data/arena-tag.js"; -import { Stat } from "#app/data/pokemon-stat.js"; -import { ArenaTagType } from "#app/enums/arena-tag-type.js"; -import { TurnEndPhase } from "#app/phases/turn-end-phase.js"; -import GameManager from "#test/utils/gameManager"; -import { getMovePosition } from "#test/utils/gameManagerUtils"; +import { ArenaTagSide } from "#app/data/arena-tag"; +import { Stat } from "#app/data/pokemon-stat"; +import { ArenaTagType } from "#app/enums/arena-tag-type"; +import { TurnEndPhase } from "#app/phases/turn-end-phase"; import { Moves } from "#enums/moves"; import { Species } from "#enums/species"; +import GameManager from "#test/utils/gameManager"; +import { SPLASH_ONLY } from "#test/utils/testUtils"; import Phaser from "phaser"; import { afterEach, beforeAll, beforeEach, describe, expect, it } from "vitest"; -import { SPLASH_ONLY } from "#test/utils/testUtils"; describe("Moves - Tailwind", () => { let phaserGame: Phaser.Game; @@ -42,8 +41,8 @@ describe("Moves - Tailwind", () => { expect(magikarp.getBattleStat(Stat.SPD)).equal(magikarpSpd); expect(meowth.getBattleStat(Stat.SPD)).equal(meowthSpd); - game.doAttack(getMovePosition(game.scene, 0, Moves.TAILWIND)); - game.doAttack(getMovePosition(game.scene, 1, Moves.SPLASH)); + game.move.select(Moves.TAILWIND); + game.move.select(Moves.SPLASH, 1); await game.phaseInterceptor.to(TurnEndPhase); @@ -57,19 +56,19 @@ describe("Moves - Tailwind", () => { await game.startBattle([Species.MAGIKARP]); - game.doAttack(getMovePosition(game.scene, 0, Moves.TAILWIND)); + game.move.select(Moves.TAILWIND); await game.toNextTurn(); expect(game.scene.arena.getTagOnSide(ArenaTagType.TAILWIND, ArenaTagSide.PLAYER)).toBeDefined(); - game.doAttack(getMovePosition(game.scene, 0, Moves.SPLASH)); + game.move.select(Moves.SPLASH); await game.toNextTurn(); expect(game.scene.arena.getTagOnSide(ArenaTagType.TAILWIND, ArenaTagSide.PLAYER)).toBeDefined(); - game.doAttack(getMovePosition(game.scene, 0, Moves.SPLASH)); + game.move.select(Moves.SPLASH); await game.toNextTurn(); expect(game.scene.arena.getTagOnSide(ArenaTagType.TAILWIND, ArenaTagSide.PLAYER)).toBeDefined(); - game.doAttack(getMovePosition(game.scene, 0, Moves.SPLASH)); + game.move.select(Moves.SPLASH); await game.toNextTurn(); expect(game.scene.arena.getTagOnSide(ArenaTagType.TAILWIND, ArenaTagSide.PLAYER)).toBeUndefined(); @@ -92,7 +91,7 @@ describe("Moves - Tailwind", () => { expect(game.scene.arena.getTagOnSide(ArenaTagType.TAILWIND, ArenaTagSide.PLAYER)).toBeUndefined(); expect(game.scene.arena.getTagOnSide(ArenaTagType.TAILWIND, ArenaTagSide.ENEMY)).toBeUndefined(); - game.doAttack(getMovePosition(game.scene, 0, Moves.TAILWIND)); + game.move.select(Moves.TAILWIND); await game.phaseInterceptor.to(TurnEndPhase); diff --git a/src/test/moves/tera_blast.test.ts b/src/test/moves/tera_blast.test.ts new file mode 100644 index 00000000000..bd7df8403d1 --- /dev/null +++ b/src/test/moves/tera_blast.test.ts @@ -0,0 +1,118 @@ +import { BattlerIndex } from "#app/battle"; +import { BattleStat } from "#app/data/battle-stat"; +import { allMoves } from "#app/data/move"; +import { Type } from "#app/data/type"; +import { Abilities } from "#app/enums/abilities"; +import { Stat } from "#app/enums/stat"; +import { HitResult } from "#app/field/pokemon"; +import { Moves } from "#enums/moves"; +import { Species } from "#enums/species"; +import GameManager from "#test/utils/gameManager"; +import Phaser from "phaser"; +import { afterEach, beforeAll, beforeEach, describe, expect, it, vi } from "vitest"; +import { SPLASH_ONLY } from "../utils/testUtils"; + +describe("Moves - Tera Blast", () => { + let phaserGame: Phaser.Game; + let game: GameManager; + const moveToCheck = allMoves[Moves.TERA_BLAST]; + + beforeAll(() => { + phaserGame = new Phaser.Game({ + type: Phaser.HEADLESS, + }); + }); + + afterEach(() => { + game.phaseInterceptor.restoreOg(); + }); + + beforeEach(() => { + game = new GameManager(phaserGame); + + game.override + .battleType("single") + .disableCrits() + .starterSpecies(Species.FEEBAS) + .moveset([Moves.TERA_BLAST]) + .ability(Abilities.BALL_FETCH) + .startingHeldItems([{ name: "TERA_SHARD", type: Type.FIRE }]) + .enemySpecies(Species.MAGIKARP) + .enemyMoveset(SPLASH_ONLY) + .enemyAbility(Abilities.BALL_FETCH) + .enemyLevel(20); + + vi.spyOn(moveToCheck, "calculateBattlePower"); + }); + + it("changes type to match user's tera type", async () => { + game.override + .enemySpecies(Species.FURRET) + .startingHeldItems([{ name: "TERA_SHARD", type: Type.FIGHTING }]); + await game.startBattle(); + const enemyPokemon = game.scene.getEnemyPokemon()!; + vi.spyOn(enemyPokemon, "apply"); + + game.move.select(Moves.TERA_BLAST); + await game.setTurnOrder([BattlerIndex.PLAYER, BattlerIndex.ENEMY]); + await game.phaseInterceptor.to("MoveEffectPhase"); + + expect(enemyPokemon.apply).toHaveReturnedWith(HitResult.SUPER_EFFECTIVE); + }, 20000); + + it("increases power if user is Stellar tera type", async () => { + game.override.startingHeldItems([{ name: "TERA_SHARD", type: Type.STELLAR }]); + + await game.startBattle(); + + game.move.select(Moves.TERA_BLAST); + await game.setTurnOrder([BattlerIndex.PLAYER, BattlerIndex.ENEMY]); + await game.phaseInterceptor.to("MoveEffectPhase"); + + expect(moveToCheck.calculateBattlePower).toHaveReturnedWith(100); + }, 20000); + + it("is super effective against terastallized targets if user is Stellar tera type", async () => { + game.override.startingHeldItems([{ name: "TERA_SHARD", type: Type.STELLAR }]); + + await game.startBattle(); + + const enemyPokemon = game.scene.getEnemyPokemon()!; + vi.spyOn(enemyPokemon, "apply"); + vi.spyOn(enemyPokemon, "isTerastallized").mockReturnValue(true); + + game.move.select(Moves.TERA_BLAST); + await game.setTurnOrder([BattlerIndex.PLAYER, BattlerIndex.ENEMY]); + await game.phaseInterceptor.to("MoveEffectPhase"); + + expect(enemyPokemon.apply).toHaveReturnedWith(HitResult.SUPER_EFFECTIVE); + }); + + // Currently abilities are bugged and can't see when a move's category is changed + it.skip("uses the higher stat of the user's Atk and SpAtk for damage calculation", async () => { + game.override.enemyAbility(Abilities.TOXIC_DEBRIS); + await game.startBattle(); + + const playerPokemon = game.scene.getPlayerPokemon()!; + playerPokemon.stats[Stat.ATK] = 100; + playerPokemon.stats[Stat.SPATK] = 1; + + game.move.select(Moves.TERA_BLAST); + await game.phaseInterceptor.to("TurnEndPhase"); + expect(game.scene.getEnemyPokemon()!.battleData.abilityRevealed).toBe(true); + }, 20000); + + it("causes stat drops if user is Stellar tera type", async () => { + game.override.startingHeldItems([{ name: "TERA_SHARD", type: Type.STELLAR }]); + await game.startBattle(); + + const playerPokemon = game.scene.getPlayerPokemon()!; + + game.move.select(Moves.TERA_BLAST); + await game.setTurnOrder([BattlerIndex.PLAYER, BattlerIndex.ENEMY]); + await game.phaseInterceptor.to("MoveEndPhase"); + + expect(playerPokemon.summonData.battleStats[BattleStat.SPATK]).toBe(-1); + expect(playerPokemon.summonData.battleStats[BattleStat.ATK]).toBe(-1); + }, 20000); +}); diff --git a/src/test/moves/thousand_arrows.test.ts b/src/test/moves/thousand_arrows.test.ts index d72f3ed3fac..8d1d6ee5f4a 100644 --- a/src/test/moves/thousand_arrows.test.ts +++ b/src/test/moves/thousand_arrows.test.ts @@ -1,13 +1,12 @@ -import { Abilities } from "#app/enums/abilities.js"; -import { BattlerTagType } from "#app/enums/battler-tag-type.js"; -import GameManager from "#test/utils/gameManager"; -import { getMovePosition } from "#test/utils/gameManagerUtils"; +import { Abilities } from "#app/enums/abilities"; +import { BattlerTagType } from "#app/enums/battler-tag-type"; +import { BerryPhase } from "#app/phases/berry-phase"; +import { MoveEffectPhase } from "#app/phases/move-effect-phase"; import { Moves } from "#enums/moves"; import { Species } from "#enums/species"; +import GameManager from "#test/utils/gameManager"; import Phaser from "phaser"; import { afterEach, beforeAll, beforeEach, describe, expect, it } from "vitest"; -import { BerryPhase } from "#app/phases/berry-phase.js"; -import { MoveEffectPhase } from "#app/phases/move-effect-phase.js"; const TIMEOUT = 20 * 1000; @@ -31,18 +30,18 @@ describe("Moves - Thousand Arrows", () => { game.override.enemySpecies(Species.TOGETIC); game.override.startingLevel(100); game.override.enemyLevel(100); - game.override.moveset([ Moves.THOUSAND_ARROWS ]); - game.override.enemyMoveset([Moves.SPLASH,Moves.SPLASH,Moves.SPLASH,Moves.SPLASH]); + game.override.moveset([Moves.THOUSAND_ARROWS]); + game.override.enemyMoveset([Moves.SPLASH, Moves.SPLASH, Moves.SPLASH, Moves.SPLASH]); }); it( "move should hit and ground Flying-type targets", async () => { - await game.startBattle([ Species.ILLUMISE ]); + await game.startBattle([Species.ILLUMISE]); const enemyPokemon = game.scene.getEnemyPokemon()!; - game.doAttack(getMovePosition(game.scene, 0, Moves.THOUSAND_ARROWS)); + game.move.select(Moves.THOUSAND_ARROWS); await game.phaseInterceptor.to(MoveEffectPhase, false); // Enemy should not be grounded before move effect is applied @@ -61,11 +60,11 @@ describe("Moves - Thousand Arrows", () => { game.override.enemySpecies(Species.SNORLAX); game.override.enemyAbility(Abilities.LEVITATE); - await game.startBattle([ Species.ILLUMISE ]); + await game.startBattle([Species.ILLUMISE]); const enemyPokemon = game.scene.getEnemyPokemon()!; - game.doAttack(getMovePosition(game.scene, 0, Moves.THOUSAND_ARROWS)); + game.move.select(Moves.THOUSAND_ARROWS); await game.phaseInterceptor.to(MoveEffectPhase, false); // Enemy should not be grounded before move effect is applied @@ -83,13 +82,13 @@ describe("Moves - Thousand Arrows", () => { async () => { game.override.enemySpecies(Species.SNORLAX); - await game.startBattle([ Species.ILLUMISE ]); + await game.startBattle([Species.ILLUMISE]); const enemyPokemon = game.scene.getEnemyPokemon()!; enemyPokemon.addTag(BattlerTagType.MAGNET_RISEN, undefined, Moves.MAGNET_RISE); - game.doAttack(getMovePosition(game.scene, 0, Moves.THOUSAND_ARROWS)); + game.move.select(Moves.THOUSAND_ARROWS); await game.phaseInterceptor.to(BerryPhase, false); diff --git a/src/test/moves/thunder_wave.test.ts b/src/test/moves/thunder_wave.test.ts new file mode 100644 index 00000000000..0c91be29714 --- /dev/null +++ b/src/test/moves/thunder_wave.test.ts @@ -0,0 +1,102 @@ +import { StatusEffect } from "#app/data/status-effect"; +import { Abilities } from "#app/enums/abilities"; +import { EnemyPokemon } from "#app/field/pokemon"; +import { Moves } from "#enums/moves"; +import { Species } from "#enums/species"; +import GameManager from "#test/utils/gameManager"; +import Phaser from "phaser"; +import { afterEach, beforeAll, beforeEach, describe, expect, it } from "vitest"; +import { SPLASH_ONLY } from "../utils/testUtils"; + +const TIMEOUT = 20 * 1000; + +describe("Moves - Thunder Wave", () => { + let phaserGame: Phaser.Game; + let game: GameManager; + + beforeAll(() => { + phaserGame = new Phaser.Game({ + type: Phaser.HEADLESS, + }); + }); + + afterEach(() => { + game.phaseInterceptor.restoreOg(); + }); + + beforeEach(() => { + game = new GameManager(phaserGame); + game.override + .battleType("single") + .starterSpecies(Species.PIKACHU) + .moveset([Moves.THUNDER_WAVE]) + .enemyMoveset(SPLASH_ONLY); + }); + + // References: https://bulbapedia.bulbagarden.net/wiki/Thunder_Wave_(move) + + it("paralyzes non-statused Pokemon that are not Ground types", async () => { + game.override.enemySpecies(Species.MAGIKARP); + await game.startBattle(); + + const enemyPokemon: EnemyPokemon = game.scene.getEnemyPokemon()!; + + game.move.select(Moves.THUNDER_WAVE); + await game.move.forceHit(); + await game.phaseInterceptor.to("BerryPhase", false); + + expect(enemyPokemon.status?.effect).toBe(StatusEffect.PARALYSIS); + }, TIMEOUT); + + it("does not paralyze if the Pokemon is a Ground-type", async () => { + game.override.enemySpecies(Species.DIGLETT); + await game.startBattle(); + + const enemyPokemon: EnemyPokemon = game.scene.getEnemyPokemon()!; + + game.move.select(Moves.THUNDER_WAVE); + await game.move.forceHit(); + await game.phaseInterceptor.to("BerryPhase", false); + + expect(enemyPokemon.status).toBeUndefined(); + }, TIMEOUT); + + it("does not paralyze if the Pokemon already has a status effect", async () => { + game.override.enemySpecies(Species.MAGIKARP).enemyStatusEffect(StatusEffect.BURN); + await game.startBattle(); + + const enemyPokemon: EnemyPokemon = game.scene.getEnemyPokemon()!; + + game.move.select(Moves.THUNDER_WAVE); + await game.move.forceHit(); + await game.phaseInterceptor.to("BerryPhase", false); + + expect(enemyPokemon.status?.effect).not.toBe(StatusEffect.PARALYSIS); + }, TIMEOUT); + + it("affects Ground types if the user has Normalize", async () => { + game.override.ability(Abilities.NORMALIZE).enemySpecies(Species.DIGLETT); + await game.startBattle(); + + const enemyPokemon: EnemyPokemon = game.scene.getEnemyPokemon()!; + + game.move.select(Moves.THUNDER_WAVE); + await game.move.forceHit(); + await game.phaseInterceptor.to("BerryPhase", false); + + expect(enemyPokemon.status?.effect).toBe(StatusEffect.PARALYSIS); + }, TIMEOUT); + + it("does not affect Ghost types if the user has Normalize", async () => { + game.override.ability(Abilities.NORMALIZE).enemySpecies(Species.HAUNTER); + await game.startBattle(); + + const enemyPokemon: EnemyPokemon = game.scene.getEnemyPokemon()!; + + game.move.select(Moves.THUNDER_WAVE); + await game.move.forceHit(); + await game.phaseInterceptor.to("BerryPhase", false); + + expect(enemyPokemon.status).toBeUndefined(); + }, TIMEOUT); +}); diff --git a/src/test/moves/tidy_up.test.ts b/src/test/moves/tidy_up.test.ts index 64a63df08df..1ef7933c114 100644 --- a/src/test/moves/tidy_up.test.ts +++ b/src/test/moves/tidy_up.test.ts @@ -1,15 +1,14 @@ -import { BattleStat } from "#app/data/battle-stat.js"; -import { ArenaTagType } from "#app/enums/arena-tag-type.js"; -import GameManager from "#test/utils/gameManager"; -import { getMovePosition } from "#test/utils/gameManagerUtils"; +import { BattleStat } from "#app/data/battle-stat"; +import { ArenaTagType } from "#app/enums/arena-tag-type"; +import { MoveEndPhase } from "#app/phases/move-end-phase"; +import { TurnEndPhase } from "#app/phases/turn-end-phase"; import { Abilities } from "#enums/abilities"; import { Moves } from "#enums/moves"; import { Species } from "#enums/species"; +import GameManager from "#test/utils/gameManager"; +import { SPLASH_ONLY } from "#test/utils/testUtils"; import Phaser from "phaser"; import { afterEach, beforeAll, beforeEach, describe, expect, it } from "vitest"; -import { SPLASH_ONLY } from "#test/utils/testUtils"; -import { MoveEndPhase } from "#app/phases/move-end-phase.js"; -import { TurnEndPhase } from "#app/phases/turn-end-phase.js"; describe("Moves - Tidy Up", () => { @@ -38,81 +37,81 @@ describe("Moves - Tidy Up", () => { game.override.startingLevel(50); }); - it("spikes are cleared", async() => { + it("spikes are cleared", async () => { game.override.moveset([Moves.SPIKES, Moves.TIDY_UP]); game.override.enemyMoveset([Moves.SPIKES, Moves.SPIKES, Moves.SPIKES, Moves.SPIKES]); await game.startBattle(); - game.doAttack(getMovePosition(game.scene, 0, Moves.SPIKES)); + game.move.select(Moves.SPIKES); await game.phaseInterceptor.to(TurnEndPhase); - game.doAttack(getMovePosition(game.scene, 0, Moves.TIDY_UP)); + game.move.select(Moves.TIDY_UP); await game.phaseInterceptor.to(MoveEndPhase); expect(game.scene.arena.getTag(ArenaTagType.SPIKES)).toBeUndefined(); }, 20000); - it("stealth rocks are cleared", async() => { + it("stealth rocks are cleared", async () => { game.override.moveset([Moves.STEALTH_ROCK, Moves.TIDY_UP]); game.override.enemyMoveset([Moves.STEALTH_ROCK, Moves.STEALTH_ROCK, Moves.STEALTH_ROCK, Moves.STEALTH_ROCK]); await game.startBattle(); - game.doAttack(getMovePosition(game.scene, 0, Moves.STEALTH_ROCK)); + game.move.select(Moves.STEALTH_ROCK); await game.phaseInterceptor.to(TurnEndPhase); - game.doAttack(getMovePosition(game.scene, 0, Moves.TIDY_UP)); + game.move.select(Moves.TIDY_UP); await game.phaseInterceptor.to(MoveEndPhase); expect(game.scene.arena.getTag(ArenaTagType.STEALTH_ROCK)).toBeUndefined(); }, 20000); - it("toxic spikes are cleared", async() => { + it("toxic spikes are cleared", async () => { game.override.moveset([Moves.TOXIC_SPIKES, Moves.TIDY_UP]); game.override.enemyMoveset([Moves.TOXIC_SPIKES, Moves.TOXIC_SPIKES, Moves.TOXIC_SPIKES, Moves.TOXIC_SPIKES]); await game.startBattle(); - game.doAttack(getMovePosition(game.scene, 0, Moves.TOXIC_SPIKES)); + game.move.select(Moves.TOXIC_SPIKES); await game.phaseInterceptor.to(TurnEndPhase); - game.doAttack(getMovePosition(game.scene, 0, Moves.TIDY_UP)); + game.move.select(Moves.TIDY_UP); await game.phaseInterceptor.to(MoveEndPhase); expect(game.scene.arena.getTag(ArenaTagType.TOXIC_SPIKES)).toBeUndefined(); }, 20000); - it("sticky webs are cleared", async() => { + it("sticky webs are cleared", async () => { game.override.moveset([Moves.STICKY_WEB, Moves.TIDY_UP]); game.override.enemyMoveset([Moves.STICKY_WEB, Moves.STICKY_WEB, Moves.STICKY_WEB, Moves.STICKY_WEB]); await game.startBattle(); - game.doAttack(getMovePosition(game.scene, 0, Moves.STICKY_WEB)); + game.move.select(Moves.STICKY_WEB); await game.phaseInterceptor.to(TurnEndPhase); - game.doAttack(getMovePosition(game.scene, 0, Moves.TIDY_UP)); + game.move.select(Moves.TIDY_UP); await game.phaseInterceptor.to(MoveEndPhase); expect(game.scene.arena.getTag(ArenaTagType.STICKY_WEB)).toBeUndefined(); }, 20000); - it.skip("substitutes are cleared", async() => { + it.skip("substitutes are cleared", async () => { game.override.moveset([Moves.SUBSTITUTE, Moves.TIDY_UP]); game.override.enemyMoveset([Moves.SUBSTITUTE, Moves.SUBSTITUTE, Moves.SUBSTITUTE, Moves.SUBSTITUTE]); await game.startBattle(); - game.doAttack(getMovePosition(game.scene, 0, Moves.SUBSTITUTE)); + game.move.select(Moves.SUBSTITUTE); await game.phaseInterceptor.to(TurnEndPhase); - game.doAttack(getMovePosition(game.scene, 0, Moves.TIDY_UP)); + game.move.select(Moves.TIDY_UP); await game.phaseInterceptor.to(MoveEndPhase); // TODO: check for subs here once the move is implemented }, 20000); - it("user's stats are raised with no traps set", async() => { + it("user's stats are raised with no traps set", async () => { await game.startBattle(); const player = game.scene.getPlayerPokemon()!.summonData.battleStats; expect(player[BattleStat.ATK]).toBe(0); expect(player[BattleStat.SPD]).toBe(0); - game.doAttack(getMovePosition(game.scene, 0, Moves.TIDY_UP)); + game.move.select(Moves.TIDY_UP); await game.phaseInterceptor.to(TurnEndPhase); expect(player[BattleStat.ATK]).toBe(+1); diff --git a/src/test/moves/u_turn.test.ts b/src/test/moves/u_turn.test.ts index b93f997c487..ae55302bb42 100644 --- a/src/test/moves/u_turn.test.ts +++ b/src/test/moves/u_turn.test.ts @@ -1,14 +1,13 @@ -import { Abilities } from "#app/enums/abilities.js"; +import { Abilities } from "#app/enums/abilities"; +import { StatusEffect } from "#app/enums/status-effect"; +import { SwitchPhase } from "#app/phases/switch-phase"; +import { TurnEndPhase } from "#app/phases/turn-end-phase"; import GameManager from "#app/test/utils/gameManager"; -import { getMovePosition } from "#app/test/utils/gameManagerUtils"; import { Moves } from "#enums/moves"; import { Species } from "#enums/species"; import Phaser from "phaser"; import { afterEach, beforeAll, beforeEach, describe, expect, it, vi } from "vitest"; -import { StatusEffect } from "#app/enums/status-effect.js"; import { SPLASH_ONLY } from "../utils/testUtils"; -import { SwitchPhase } from "#app/phases/switch-phase.js"; -import { TurnEndPhase } from "#app/phases/turn-end-phase.js"; describe("Moves - U-turn", () => { let phaserGame: Phaser.Game; @@ -36,7 +35,7 @@ describe("Moves - U-turn", () => { .disableCrits(); }); - it("triggers regenerator a single time when a regenerator user switches out with u-turn", async() => { + it("triggers regenerator a single time when a regenerator user switches out with u-turn", async () => { // arrange const playerHp = 1; game.override.ability(Abilities.REGENERATOR); @@ -47,7 +46,7 @@ describe("Moves - U-turn", () => { game.scene.getPlayerPokemon()!.hp = playerHp; // act - game.doAttack(getMovePosition(game.scene, 0, Moves.U_TURN)); + game.move.select(Moves.U_TURN); game.doSelectPartyPokemon(1); await game.phaseInterceptor.to(TurnEndPhase); @@ -57,7 +56,7 @@ describe("Moves - U-turn", () => { expect(game.scene.getPlayerPokemon()!.species.speciesId).toBe(Species.SHUCKLE); }, 20000); - it("triggers rough skin on the u-turn user before a new pokemon is switched in", async() => { + it("triggers rough skin on the u-turn user before a new pokemon is switched in", async () => { // arrange game.override.enemyAbility(Abilities.ROUGH_SKIN); await game.startBattle([ @@ -66,7 +65,7 @@ describe("Moves - U-turn", () => { ]); // act - game.doAttack(getMovePosition(game.scene, 0, Moves.U_TURN)); + game.move.select(Moves.U_TURN); game.doSelectPartyPokemon(1); await game.phaseInterceptor.to(SwitchPhase, false); @@ -78,7 +77,7 @@ describe("Moves - U-turn", () => { expect(game.phaseInterceptor.log).not.toContain("SwitchSummonPhase"); }, 20000); - it("triggers contact abilities on the u-turn user (eg poison point) before a new pokemon is switched in", async() => { + it("triggers contact abilities on the u-turn user (eg poison point) before a new pokemon is switched in", async () => { // arrange game.override.enemyAbility(Abilities.POISON_POINT); await game.startBattle([ @@ -88,7 +87,7 @@ describe("Moves - U-turn", () => { vi.spyOn(game.scene.getEnemyPokemon()!, "randSeedInt").mockReturnValue(0); // act - game.doAttack(getMovePosition(game.scene, 0, Moves.U_TURN)); + game.move.select(Moves.U_TURN); await game.phaseInterceptor.to(SwitchPhase, false); // assert diff --git a/src/test/moves/wide_guard.test.ts b/src/test/moves/wide_guard.test.ts index 1f22428de4b..616972de01b 100644 --- a/src/test/moves/wide_guard.test.ts +++ b/src/test/moves/wide_guard.test.ts @@ -1,13 +1,12 @@ +import { BattleStat } from "#app/data/battle-stat"; +import { BerryPhase } from "#app/phases/berry-phase"; +import { CommandPhase } from "#app/phases/command-phase"; +import { Abilities } from "#enums/abilities"; +import { Moves } from "#enums/moves"; +import { Species } from "#enums/species"; import Phaser from "phaser"; import { afterEach, beforeAll, beforeEach, describe, expect, test } from "vitest"; import GameManager from "../utils/gameManager"; -import { Species } from "#enums/species"; -import { Abilities } from "#enums/abilities"; -import { Moves } from "#enums/moves"; -import { getMovePosition } from "../utils/gameManagerUtils"; -import { BattleStat } from "#app/data/battle-stat.js"; -import { BerryPhase } from "#app/phases/berry-phase.js"; -import { CommandPhase } from "#app/phases/command-phase.js"; const TIMEOUT = 20 * 1000; @@ -47,11 +46,11 @@ describe("Moves - Wide Guard", () => { const leadPokemon = game.scene.getPlayerField(); - game.doAttack(getMovePosition(game.scene, 0, Moves.WIDE_GUARD)); + game.move.select(Moves.WIDE_GUARD); await game.phaseInterceptor.to(CommandPhase); - game.doAttack(getMovePosition(game.scene, 1, Moves.SPLASH)); + game.move.select(Moves.SPLASH, 1); await game.phaseInterceptor.to(BerryPhase, false); @@ -68,11 +67,11 @@ describe("Moves - Wide Guard", () => { const leadPokemon = game.scene.getPlayerField(); - game.doAttack(getMovePosition(game.scene, 0, Moves.WIDE_GUARD)); + game.move.select(Moves.WIDE_GUARD); await game.phaseInterceptor.to(CommandPhase); - game.doAttack(getMovePosition(game.scene, 1, Moves.SPLASH)); + game.move.select(Moves.SPLASH, 1); await game.phaseInterceptor.to(BerryPhase, false); @@ -89,11 +88,11 @@ describe("Moves - Wide Guard", () => { const leadPokemon = game.scene.getPlayerField(); - game.doAttack(getMovePosition(game.scene, 0, Moves.WIDE_GUARD)); + game.move.select(Moves.WIDE_GUARD); await game.phaseInterceptor.to(CommandPhase); - game.doAttack(getMovePosition(game.scene, 1, Moves.SPLASH)); + game.move.select(Moves.SPLASH, 1); await game.phaseInterceptor.to(BerryPhase, false); @@ -111,11 +110,11 @@ describe("Moves - Wide Guard", () => { const leadPokemon = game.scene.getPlayerField(); const enemyPokemon = game.scene.getEnemyField(); - game.doAttack(getMovePosition(game.scene, 0, Moves.WIDE_GUARD)); + game.move.select(Moves.WIDE_GUARD); await game.phaseInterceptor.to(CommandPhase); - game.doAttack(getMovePosition(game.scene, 1, Moves.SURF)); + game.move.select(Moves.SURF, 1); await game.phaseInterceptor.to(BerryPhase, false); diff --git a/src/test/phases/phases.test.ts b/src/test/phases/phases.test.ts index 2ed1e48c706..5ef25361a3f 100644 --- a/src/test/phases/phases.test.ts +++ b/src/test/phases/phases.test.ts @@ -1,11 +1,11 @@ -import BattleScene from "#app/battle-scene.js"; -import { Mode } from "#app/ui/ui.js"; -import { afterEach, beforeAll, beforeEach, describe, expect, it } from "vitest"; -import Phaser from "phaser"; +import BattleScene from "#app/battle-scene"; +import { LoginPhase } from "#app/phases/login-phase"; +import { TitlePhase } from "#app/phases/title-phase"; +import { UnavailablePhase } from "#app/phases/unavailable-phase"; +import { Mode } from "#app/ui/ui"; import GameManager from "#test/utils/gameManager"; -import { LoginPhase } from "#app/phases/login-phase.js"; -import { TitlePhase } from "#app/phases/title-phase.js"; -import { UnavailablePhase } from "#app/phases/unavailable-phase.js"; +import Phaser from "phaser"; +import { afterEach, beforeAll, beforeEach, describe, expect, it } from "vitest"; describe("Phases", () => { let phaserGame: Phaser.Game; diff --git a/src/test/settingMenu/helpers/inGameManip.ts b/src/test/settingMenu/helpers/inGameManip.ts index e18a82ca571..b81e577f5b9 100644 --- a/src/test/settingMenu/helpers/inGameManip.ts +++ b/src/test/settingMenu/helpers/inGameManip.ts @@ -1,6 +1,6 @@ import { getIconForLatestInput, getSettingNameWithKeycode } from "#app/configs/inputs/configHandler"; -import { expect } from "vitest"; import { SettingKeyboard } from "#app/system/settings/settings-keyboard"; +import { expect } from "vitest"; export class InGameManip { private config; diff --git a/src/test/settingMenu/helpers/menuManip.ts b/src/test/settingMenu/helpers/menuManip.ts index 4fd5f526897..90b3f1e96e6 100644 --- a/src/test/settingMenu/helpers/menuManip.ts +++ b/src/test/settingMenu/helpers/menuManip.ts @@ -1,6 +1,6 @@ -import { expect } from "vitest"; -import { deleteBind, getIconWithKeycode, getIconWithSettingName, getKeyWithKeycode, getKeyWithSettingName, assign, getSettingNameWithKeycode, canIAssignThisKey, canIDeleteThisKey, canIOverrideThisSetting } from "#app/configs/inputs/configHandler"; +import { assign, canIAssignThisKey, canIDeleteThisKey, canIOverrideThisSetting, deleteBind, getIconWithKeycode, getIconWithSettingName, getKeyWithKeycode, getKeyWithSettingName, getSettingNameWithKeycode } from "#app/configs/inputs/configHandler"; import { SettingKeyboard } from "#app/system/settings/settings-keyboard"; +import { expect } from "vitest"; export class MenuManip { private config; diff --git a/src/test/settingMenu/rebinding_setting.test.ts b/src/test/settingMenu/rebinding_setting.test.ts index eead23972c2..ec2343cfb41 100644 --- a/src/test/settingMenu/rebinding_setting.test.ts +++ b/src/test/settingMenu/rebinding_setting.test.ts @@ -1,13 +1,13 @@ -import { beforeEach, describe, expect, it } from "vitest"; -import { deepCopy } from "#app/utils"; -import { getKeyWithKeycode, getKeyWithSettingName } from "#app/configs/inputs/configHandler"; -import { MenuManip } from "#test/settingMenu/helpers/menuManip"; -import { InGameManip } from "#test/settingMenu/helpers/inGameManip"; -import { InterfaceConfig } from "#app/inputs-controller"; import cfg_keyboard_qwerty from "#app/configs/inputs/cfg_keyboard_qwerty"; +import { getKeyWithKeycode, getKeyWithSettingName } from "#app/configs/inputs/configHandler"; +import { InterfaceConfig } from "#app/inputs-controller"; import { SettingKeyboard } from "#app/system/settings/settings-keyboard"; -import { Device } from "#enums/devices"; +import { deepCopy } from "#app/utils"; import { Button } from "#enums/buttons"; +import { Device } from "#enums/devices"; +import { InGameManip } from "#test/settingMenu/helpers/inGameManip"; +import { MenuManip } from "#test/settingMenu/helpers/menuManip"; +import { beforeEach, describe, expect, it } from "vitest"; describe("Test Rebinding", () => { diff --git a/src/test/sprites/pokemonSprite.test.ts b/src/test/sprites/pokemonSprite.test.ts index deb5844d677..faf0626b365 100644 --- a/src/test/sprites/pokemonSprite.test.ts +++ b/src/test/sprites/pokemonSprite.test.ts @@ -1,8 +1,8 @@ -import { beforeAll, describe, expect, it } from "vitest"; -import _masterlist from "../../../public/images/pokemon/variant/_masterlist.json"; +import { getAppRootDir } from "#test/sprites/spritesUtils"; import fs from "fs"; import path from "path"; -import { getAppRootDir } from "#test/sprites/spritesUtils"; +import { beforeAll, describe, expect, it } from "vitest"; +import _masterlist from "../../../public/images/pokemon/variant/_masterlist.json"; type PokemonVariantMasterlist = typeof _masterlist; diff --git a/src/test/ui/starter-select.test.ts b/src/test/ui/starter-select.test.ts index dbbdb1999b9..8ef1ea16b4a 100644 --- a/src/test/ui/starter-select.test.ts +++ b/src/test/ui/starter-select.test.ts @@ -1,21 +1,21 @@ -import { afterEach, beforeAll, beforeEach, describe, expect, it } from "vitest"; -import Phaser from "phaser"; -import GameManager from "#test/utils/gameManager"; -import { Mode } from "#app/ui/ui"; -import { GameModes } from "#app/game-mode"; -import StarterSelectUiHandler from "#app/ui/starter-select-ui-handler"; -import OptionSelectUiHandler from "#app/ui/settings/option-select-ui-handler"; -import SaveSlotSelectUiHandler from "#app/ui/save-slot-select-ui-handler"; -import { OptionSelectItem } from "#app/ui/abstact-option-select-ui-handler"; import { Gender } from "#app/data/gender"; +import { Nature } from "#app/data/nature"; import { allSpecies } from "#app/data/pokemon-species"; -import { Nature} from "#app/data/nature"; -import { Button } from "#enums/buttons"; +import { GameModes } from "#app/game-mode"; +import { EncounterPhase } from "#app/phases/encounter-phase"; +import { SelectStarterPhase } from "#app/phases/select-starter-phase"; +import { TitlePhase } from "#app/phases/title-phase"; +import { OptionSelectItem } from "#app/ui/abstact-option-select-ui-handler"; +import SaveSlotSelectUiHandler from "#app/ui/save-slot-select-ui-handler"; +import OptionSelectUiHandler from "#app/ui/settings/option-select-ui-handler"; +import StarterSelectUiHandler from "#app/ui/starter-select-ui-handler"; +import { Mode } from "#app/ui/ui"; import { Abilities } from "#enums/abilities"; +import { Button } from "#enums/buttons"; import { Species } from "#enums/species"; -import { EncounterPhase } from "#app/phases/encounter-phase.js"; -import { SelectStarterPhase } from "#app/phases/select-starter-phase.js"; -import { TitlePhase } from "#app/phases/title-phase.js"; +import GameManager from "#test/utils/gameManager"; +import Phaser from "phaser"; +import { afterEach, beforeAll, beforeEach, describe, expect, it } from "vitest"; describe("UI - Starter select", () => { diff --git a/src/test/ui/transfer-item.test.ts b/src/test/ui/transfer-item.test.ts index 21aed9b5b87..f7dea463574 100644 --- a/src/test/ui/transfer-item.test.ts +++ b/src/test/ui/transfer-item.test.ts @@ -2,16 +2,15 @@ import { BerryType } from "#app/enums/berry-type"; import { Button } from "#app/enums/buttons"; import { Moves } from "#app/enums/moves"; import { Species } from "#app/enums/species"; -import GameManager from "#test/utils/gameManager"; +import { BattleEndPhase } from "#app/phases/battle-end-phase"; +import { SelectModifierPhase } from "#app/phases/select-modifier-phase"; import ModifierSelectUiHandler from "#app/ui/modifier-select-ui-handler"; import PartyUiHandler, { PartyUiMode } from "#app/ui/party-ui-handler"; import { Mode } from "#app/ui/ui"; +import GameManager from "#test/utils/gameManager"; import Phaser from "phaser"; import BBCodeText from "phaser3-rex-plugins/plugins/bbcodetext"; import { afterEach, beforeAll, beforeEach, describe, expect, it } from "vitest"; -import { getMovePosition } from "#test/utils/gameManagerUtils"; -import { BattleEndPhase } from "#app/phases/battle-end-phase.js"; -import { SelectModifierPhase } from "#app/phases/select-modifier-phase.js"; describe("UI - Transfer Items", () => { @@ -44,7 +43,7 @@ describe("UI - Transfer Items", () => { await game.startBattle([Species.RAYQUAZA, Species.RAYQUAZA, Species.RAYQUAZA]); - game.doAttack(getMovePosition(game.scene, 0, Moves.DRAGON_CLAW)); + game.move.select(Moves.DRAGON_CLAW); game.onNextPrompt("SelectModifierPhase", Mode.MODIFIER_SELECT, () => { expect(game.scene.ui.getHandler()).toBeInstanceOf(ModifierSelectUiHandler); @@ -88,6 +87,7 @@ describe("UI - Transfer Items", () => { handler.processInput(Button.ACTION); // select Pokemon expect(handler.optionsContainer.list.some((option) => (option as BBCodeText).text?.includes("Transfer"))).toBe(true); + game.phaseInterceptor.unlock(); }); diff --git a/src/test/ui/type-hints.test.ts b/src/test/ui/type-hints.test.ts index f93260f15b7..ccab02b82bf 100644 --- a/src/test/ui/type-hints.test.ts +++ b/src/test/ui/type-hints.test.ts @@ -1,14 +1,14 @@ -import { Button } from "#app/enums/buttons.js"; +import { Button } from "#app/enums/buttons"; import { Moves } from "#app/enums/moves"; import { Species } from "#app/enums/species"; -import FightUiHandler from "#app/ui/fight-ui-handler.js"; -import { Mode } from "#app/ui/ui.js"; +import { CommandPhase } from "#app/phases/command-phase"; +import FightUiHandler from "#app/ui/fight-ui-handler"; +import { Mode } from "#app/ui/ui"; import GameManager from "#test/utils/gameManager"; import Phaser from "phaser"; import { afterEach, beforeAll, beforeEach, describe, expect, it } from "vitest"; import MockText from "../utils/mocks/mocksContainer/mockText"; import { SPLASH_ONLY } from "../utils/testUtils"; -import { CommandPhase } from "#app/phases/command-phase.js"; describe("UI - Type Hints", () => { let phaserGame: Phaser.Game; diff --git a/src/test/utils/gameManager.ts b/src/test/utils/gameManager.ts index d60cbd62836..60d07065090 100644 --- a/src/test/utils/gameManager.ts +++ b/src/test/utils/gameManager.ts @@ -1,47 +1,49 @@ -import GameWrapper from "#test/utils/gameWrapper"; -import { Mode } from "#app/ui/ui"; -import { generateStarter, waitUntil } from "#test/utils/gameManagerUtils"; -import BattleScene from "#app/battle-scene.js"; -import PhaseInterceptor from "#test/utils/phaseInterceptor"; -import TextInterceptor from "#test/utils/TextInterceptor"; -import { GameModes, getGameMode } from "#app/game-mode"; -import fs from "fs"; -import { AES, enc } from "crypto-js"; import { updateUserInfo } from "#app/account"; -import InputsHandler from "#app/test/utils/inputsHandler"; -import ErrorInterceptor from "#app/test/utils/errorInterceptor"; +import { BattlerIndex } from "#app/battle"; +import BattleScene from "#app/battle-scene"; +import { BattleStyle } from "#app/enums/battle-style"; import { EnemyPokemon, PlayerPokemon } from "#app/field/pokemon"; -import { MockClock } from "#app/test/utils/mocks/mockClock"; -import PartyUiHandler from "#app/ui/party-ui-handler"; -import CommandUiHandler, { Command } from "#app/ui/command-ui-handler"; import Trainer from "#app/field/trainer"; +import { GameModes, getGameMode } from "#app/game-mode"; +import { ModifierTypeOption, modifierTypes } from "#app/modifier/modifier-type"; +import { CommandPhase } from "#app/phases/command-phase"; +import { EncounterPhase } from "#app/phases/encounter-phase"; +import { FaintPhase } from "#app/phases/faint-phase"; +import { LoginPhase } from "#app/phases/login-phase"; +import { MovePhase } from "#app/phases/move-phase"; +import { NewBattlePhase } from "#app/phases/new-battle-phase"; +import { SelectStarterPhase } from "#app/phases/select-starter-phase"; +import { SelectTargetPhase } from "#app/phases/select-target-phase"; +import { TitlePhase } from "#app/phases/title-phase"; +import { TurnEndPhase } from "#app/phases/turn-end-phase"; +import { TurnInitPhase } from "#app/phases/turn-init-phase"; +import { TurnStartPhase } from "#app/phases/turn-start-phase"; +import ErrorInterceptor from "#app/test/utils/errorInterceptor"; +import InputsHandler from "#app/test/utils/inputsHandler"; +import { MockClock } from "#app/test/utils/mocks/mockClock"; +import CommandUiHandler from "#app/ui/command-ui-handler"; +import ModifierSelectUiHandler from "#app/ui/modifier-select-ui-handler"; +import PartyUiHandler from "#app/ui/party-ui-handler"; +import TargetSelectUiHandler from "#app/ui/target-select-ui-handler"; +import { Mode } from "#app/ui/ui"; +import { Button } from "#enums/buttons"; import { ExpNotification } from "#enums/exp-notification"; import { GameDataType } from "#enums/game-data-type"; import { PlayerGender } from "#enums/player-gender"; import { Species } from "#enums/species"; -import { Button } from "#enums/buttons"; -import { BattlerIndex } from "#app/battle.js"; -import TargetSelectUiHandler from "#app/ui/target-select-ui-handler.js"; -import { OverridesHelper } from "./helpers/overridesHelper"; -import { ModifierTypeOption, modifierTypes } from "#app/modifier/modifier-type.js"; -import ModifierSelectUiHandler from "#app/ui/modifier-select-ui-handler.js"; -import { MoveHelper } from "./helpers/moveHelper"; +import { generateStarter, waitUntil } from "#test/utils/gameManagerUtils"; +import GameWrapper from "#test/utils/gameWrapper"; +import PhaseInterceptor from "#test/utils/phaseInterceptor"; +import TextInterceptor from "#test/utils/TextInterceptor"; +import { AES, enc } from "crypto-js"; +import fs from "fs"; import { vi } from "vitest"; import { ClassicModeHelper } from "./helpers/classicModeHelper"; import { DailyModeHelper } from "./helpers/dailyModeHelper"; +import { ChallengeModeHelper } from "./helpers/challengeModeHelper"; +import { MoveHelper } from "./helpers/moveHelper"; +import { OverridesHelper } from "./helpers/overridesHelper"; import { SettingsHelper } from "./helpers/settingsHelper"; -import { CommandPhase } from "#app/phases/command-phase.js"; -import { EncounterPhase } from "#app/phases/encounter-phase.js"; -import { FaintPhase } from "#app/phases/faint-phase.js"; -import { LoginPhase } from "#app/phases/login-phase.js"; -import { MovePhase } from "#app/phases/move-phase.js"; -import { NewBattlePhase } from "#app/phases/new-battle-phase.js"; -import { SelectStarterPhase } from "#app/phases/select-starter-phase.js"; -import { SelectTargetPhase } from "#app/phases/select-target-phase.js"; -import { TitlePhase } from "#app/phases/title-phase.js"; -import { TurnEndPhase } from "#app/phases/turn-end-phase.js"; -import { TurnInitPhase } from "#app/phases/turn-init-phase.js"; -import { TurnStartPhase } from "#app/phases/turn-start-phase.js"; /** * Class to manage the game state and transitions between phases. @@ -56,6 +58,7 @@ export default class GameManager { public readonly move: MoveHelper; public readonly classicMode: ClassicModeHelper; public readonly dailyMode: DailyModeHelper; + public readonly challengeMode: ChallengeModeHelper; public readonly settings: SettingsHelper; /** @@ -76,6 +79,7 @@ export default class GameManager { this.move = new MoveHelper(this); this.classicMode = new ClassicModeHelper(this); this.dailyMode = new DailyModeHelper(this); + this.challengeMode = new ChallengeModeHelper(this); this.settings = new SettingsHelper(this); } @@ -133,7 +137,7 @@ export default class GameManager { this.scene.expParty = ExpNotification.SKIP; this.scene.hpBarSpeed = 3; this.scene.enableTutorials = false; - this.scene.gameData.gender = PlayerGender.MALE; + this.scene.gameData.gender = PlayerGender.MALE; // set initial player gender } @@ -170,6 +174,8 @@ export default class GameManager { } /** + * @deprecated Use `game.classicMode.startBattle()` or `game.dailyMode.startBattle()` instead + * * Transitions to the start of a battle. * @param species - Optional array of species to start the battle with. * @returns A promise that resolves when the battle is started. @@ -177,53 +183,40 @@ export default class GameManager { async startBattle(species?: Species[]) { await this.classicMode.runToSummon(species); - this.onNextPrompt("CheckSwitchPhase", Mode.CONFIRM, () => { - this.setMode(Mode.MESSAGE); - this.endPhase(); - }, () => this.isCurrentPhase(CommandPhase) || this.isCurrentPhase(TurnInitPhase)); + if (this.scene.battleStyle === BattleStyle.SWITCH) { + this.onNextPrompt("CheckSwitchPhase", Mode.CONFIRM, () => { + this.setMode(Mode.MESSAGE); + this.endPhase(); + }, () => this.isCurrentPhase(CommandPhase) || this.isCurrentPhase(TurnInitPhase)); - this.onNextPrompt("CheckSwitchPhase", Mode.CONFIRM, () => { - this.setMode(Mode.MESSAGE); - this.endPhase(); - }, () => this.isCurrentPhase(CommandPhase) || this.isCurrentPhase(TurnInitPhase)); + this.onNextPrompt("CheckSwitchPhase", Mode.CONFIRM, () => { + this.setMode(Mode.MESSAGE); + this.endPhase(); + }, () => this.isCurrentPhase(CommandPhase) || this.isCurrentPhase(TurnInitPhase)); + } await this.phaseInterceptor.to(CommandPhase); console.log("==================[New Turn]=================="); } /** - * Emulate a player attack - * @param movePosition the index of the move in the pokemon's moveset array + * Emulate a player's target selection after a move is chosen, usually called automatically by {@linkcode MoveHelper.select}. + * Will trigger during the next {@linkcode SelectTargetPhase} + * @param {BattlerIndex} targetIndex The index of the attack target, or `undefined` for multi-target attacks + * @param movePosition The index of the move in the pokemon's moveset array */ - doAttack(movePosition: integer) { - this.onNextPrompt("CommandPhase", Mode.COMMAND, () => { - this.scene.ui.setMode(Mode.FIGHT, (this.scene.getCurrentPhase() as CommandPhase).getFieldIndex()); - }); - this.onNextPrompt("CommandPhase", Mode.FIGHT, () => { - (this.scene.getCurrentPhase() as CommandPhase).handleCommand(Command.FIGHT, movePosition, false); - }); - - // Confirm target selection if move is multi-target + selectTarget(movePosition: integer, targetIndex?: BattlerIndex) { this.onNextPrompt("SelectTargetPhase", Mode.TARGET_SELECT, () => { const handler = this.scene.ui.getHandler() as TargetSelectUiHandler; const move = (this.scene.getCurrentPhase() as SelectTargetPhase).getPokemon().getMoveset()[movePosition]!.getMove(); // TODO: is the bang correct? - if (move.isMultiTarget()) { - handler.processInput(Button.ACTION); + if (!move.isMultiTarget()) { + handler.setCursor(targetIndex !== undefined ? targetIndex : BattlerIndex.ENEMY); + } + if (move.isMultiTarget() && targetIndex !== undefined) { + throw new Error(`targetIndex was passed to selectMove() but move ("${move.name}") is not targetted`); } - }, () => this.isCurrentPhase(CommandPhase) || this.isCurrentPhase(MovePhase) || this.isCurrentPhase(TurnEndPhase)); - } - - /** - * Emulate a player's target selection after an attack is chosen, - * usually called after {@linkcode doAttack} in a double battle. - * @param {BattlerIndex} targetIndex the index of the attack target - */ - doSelectTarget(targetIndex: BattlerIndex) { - this.onNextPrompt("SelectTargetPhase", Mode.TARGET_SELECT, () => { - const handler = this.scene.ui.getHandler() as TargetSelectUiHandler; - handler.setCursor(targetIndex); handler.processInput(Button.ACTION); - }, () => this.isCurrentPhase(CommandPhase) || this.isCurrentPhase(TurnStartPhase)); + }, () => this.isCurrentPhase(CommandPhase) || this.isCurrentPhase(MovePhase) || this.isCurrentPhase(TurnStartPhase) || this.isCurrentPhase(TurnEndPhase)); } /** Faint all opponents currently on the field */ @@ -321,7 +314,7 @@ export default class GameManager { */ async importData(path): Promise<[boolean, integer]> { const saveKey = "x0i2O7WRiANTqPmZ"; - const dataRaw = fs.readFileSync(path, {encoding: "utf8", flag: "r"}); + const dataRaw = fs.readFileSync(path, { encoding: "utf8", flag: "r" }); let dataStr = AES.decrypt(dataRaw, saveKey).toString(enc.Utf8); dataStr = this.scene.gameData.convertSystemDataStr(dataStr); const systemData = this.scene.gameData.parseSystemData(dataStr); @@ -335,7 +328,7 @@ export default class GameManager { async killPokemon(pokemon: PlayerPokemon | EnemyPokemon) { (this.scene.time as MockClock).overrideDelay = 0.01; - return new Promise(async(resolve, reject) => { + return new Promise(async (resolve, reject) => { pokemon.hp = 0; this.scene.pushPhase(new FaintPhase(this.scene, pokemon.getBattlerIndex(), true)); await this.phaseInterceptor.to(FaintPhase).catch((e) => reject(e)); diff --git a/src/test/utils/gameManagerUtils.ts b/src/test/utils/gameManagerUtils.ts index dfba55fc75c..20a3fd179fd 100644 --- a/src/test/utils/gameManagerUtils.ts +++ b/src/test/utils/gameManagerUtils.ts @@ -1,12 +1,12 @@ +import BattleScene from "#app/battle-scene"; import { getDailyRunStarters } from "#app/data/daily-run"; import { Gender } from "#app/data/gender"; -import { Species } from "#enums/species"; -import { Starter } from "#app/ui/starter-select-ui-handler"; -import { GameModes, getGameMode } from "#app/game-mode"; import { getPokemonSpecies, getPokemonSpeciesForm } from "#app/data/pokemon-species"; -import { PlayerPokemon } from "#app/field/pokemon"; import { Moves } from "#app/enums/moves"; -import BattleScene from "#app/battle-scene"; +import { PlayerPokemon } from "#app/field/pokemon"; +import { GameModes, getGameMode } from "#app/game-mode"; +import { Starter } from "#app/ui/starter-select-ui-handler"; +import { Species } from "#enums/species"; /** Function to convert Blob to string */ export function blobToString(blob) { diff --git a/src/test/utils/gameWrapper.ts b/src/test/utils/gameWrapper.ts index 49044c260fa..f3098fa9b71 100644 --- a/src/test/utils/gameWrapper.ts +++ b/src/test/utils/gameWrapper.ts @@ -1,31 +1,28 @@ /* eslint-disable */ // @ts-nocheck -import * as main from "#app/main"; +import BattleScene, * as battleScene from "#app/battle-scene"; +import { MoveAnim } from "#app/data/battle-anims"; +import Pokemon from "#app/field/pokemon"; +import * as Utils from "#app/utils"; +import { blobToString } from "#test/utils/gameManagerUtils"; +import { MockClock } from "#test/utils/mocks/mockClock"; +import mockConsoleLog from "#test/utils/mocks/mockConsoleLog"; +import { MockFetch } from "#test/utils/mocks/mockFetch"; +import MockLoader from "#test/utils/mocks/mockLoader"; +import mockLocalStorage from "#test/utils/mocks/mockLocalStorage"; +import MockImage from "#test/utils/mocks/mocksContainer/mockImage"; +import MockTextureManager from "#test/utils/mocks/mockTextureManager"; import fs from "fs"; +import Phaser from "phaser"; +import InputText from "phaser3-rex-plugins/plugins/inputtext"; +import { vi } from "vitest"; +import { MockGameObjectCreator } from "./mocks/mockGameObjectCreator"; import InputManager = Phaser.Input.InputManager; import KeyboardManager = Phaser.Input.Keyboard.KeyboardManager; import KeyboardPlugin = Phaser.Input.Keyboard.KeyboardPlugin; import GamepadPlugin = Phaser.Input.Gamepad.GamepadPlugin; import EventEmitter = Phaser.Events.EventEmitter; import UpdateList = Phaser.GameObjects.UpdateList; -import MockGraphics from "#test/utils/mocks/mocksContainer/mockGraphics"; -import MockTextureManager from "#test/utils/mocks/mockTextureManager"; -import Phaser from "phaser"; -import { blobToString } from "#test/utils/gameManagerUtils"; -import { vi } from "vitest"; -import mockLocalStorage from "#test/utils/mocks/mockLocalStorage"; -import mockConsoleLog from "#test/utils/mocks/mockConsoleLog"; -import MockLoader from "#test/utils/mocks/mockLoader"; -import { MockFetch } from "#test/utils/mocks/mockFetch"; -import * as Utils from "#app/utils"; -import InputText from "phaser3-rex-plugins/plugins/inputtext"; -import { MockClock } from "#test/utils/mocks/mockClock"; -import BattleScene from "#app/battle-scene.js"; -import { MoveAnim } from "#app/data/battle-anims"; -import Pokemon from "#app/field/pokemon"; -import * as battleScene from "#app/battle-scene"; -import MockImage from "#test/utils/mocks/mocksContainer/mockImage.js"; -import { MockGameObjectCreator } from "./mocks/mockGameObjectCreator"; Object.defineProperty(window, "localStorage", { value: mockLocalStorage(), diff --git a/src/test/utils/helpers/challengeModeHelper.ts b/src/test/utils/helpers/challengeModeHelper.ts new file mode 100644 index 00000000000..184f11f505c --- /dev/null +++ b/src/test/utils/helpers/challengeModeHelper.ts @@ -0,0 +1,78 @@ +import { BattleStyle } from "#app/enums/battle-style"; +import { Species } from "#app/enums/species"; +import overrides from "#app/overrides"; +import { EncounterPhase } from "#app/phases/encounter-phase"; +import { SelectStarterPhase } from "#app/phases/select-starter-phase"; +import { Mode } from "#app/ui/ui"; +import { generateStarter } from "../gameManagerUtils"; +import { GameManagerHelper } from "./gameManagerHelper"; +import { Challenge } from "#app/data/challenge"; +import { CommandPhase } from "#app/phases/command-phase"; +import { TurnInitPhase } from "#app/phases/turn-init-phase"; +import { Challenges } from "#enums/challenges"; +import { copyChallenge } from "data/challenge"; + +/** + * Helper to handle Challenge mode specifics + */ +export class ChallengeModeHelper extends GameManagerHelper { + + challenges: Challenge[] = []; + + /** + * Adds a challenge to the challenge mode helper. + * @param id - The challenge id. + * @param value - The challenge value. + * @param severity - The challenge severity. + */ + addChallenge(id: Challenges, value: number, severity: number) { + const challenge = copyChallenge({ id, value, severity }); + this.challenges.push(challenge); + } + + /** + * Runs the Challenge game to the summon phase. + * @param gameMode - Optional game mode to set. + * @returns A promise that resolves when the summon phase is reached. + */ + async runToSummon(species?: Species[]) { + await this.game.runToTitle(); + + this.game.onNextPrompt("TitlePhase", Mode.TITLE, () => { + this.game.scene.gameMode.challenges = this.challenges; + const starters = generateStarter(this.game.scene, species); + const selectStarterPhase = new SelectStarterPhase(this.game.scene); + this.game.scene.pushPhase(new EncounterPhase(this.game.scene, false)); + selectStarterPhase.initBattle(starters); + }); + + await this.game.phaseInterceptor.run(EncounterPhase); + if (overrides.OPP_HELD_ITEMS_OVERRIDE.length === 0) { + this.game.removeEnemyHeldItems(); + } + } + + /** + * Transitions to the start of a battle. + * @param species - Optional array of species to start the battle with. + * @returns A promise that resolves when the battle is started. + */ + async startBattle(species?: Species[]) { + await this.runToSummon(species); + + if (this.game.scene.battleStyle === BattleStyle.SWITCH) { + this.game.onNextPrompt("CheckSwitchPhase", Mode.CONFIRM, () => { + this.game.setMode(Mode.MESSAGE); + this.game.endPhase(); + }, () => this.game.isCurrentPhase(CommandPhase) || this.game.isCurrentPhase(TurnInitPhase)); + + this.game.onNextPrompt("CheckSwitchPhase", Mode.CONFIRM, () => { + this.game.setMode(Mode.MESSAGE); + this.game.endPhase(); + }, () => this.game.isCurrentPhase(CommandPhase) || this.game.isCurrentPhase(TurnInitPhase)); + } + + await this.game.phaseInterceptor.to(CommandPhase); + console.log("==================[New Turn]=================="); + } +} diff --git a/src/test/utils/helpers/classicModeHelper.ts b/src/test/utils/helpers/classicModeHelper.ts index cf59dd81183..55e995fc9dc 100644 --- a/src/test/utils/helpers/classicModeHelper.ts +++ b/src/test/utils/helpers/classicModeHelper.ts @@ -1,9 +1,12 @@ -import { Species } from "#app/enums/species.js"; -import { GameModes, getGameMode } from "#app/game-mode.js"; -import overrides from "#app/overrides.js"; -import { EncounterPhase } from "#app/phases/encounter-phase.js"; -import { SelectStarterPhase } from "#app/phases/select-starter-phase.js"; -import { Mode } from "#app/ui/ui.js"; +import { BattleStyle } from "#app/enums/battle-style"; +import { Species } from "#app/enums/species"; +import { GameModes, getGameMode } from "#app/game-mode"; +import overrides from "#app/overrides"; +import { CommandPhase } from "#app/phases/command-phase"; +import { EncounterPhase } from "#app/phases/encounter-phase"; +import { SelectStarterPhase } from "#app/phases/select-starter-phase"; +import { TurnInitPhase } from "#app/phases/turn-init-phase"; +import { Mode } from "#app/ui/ui"; import { generateStarter } from "../gameManagerUtils"; import { GameManagerHelper } from "./gameManagerHelper"; @@ -33,4 +36,28 @@ export class ClassicModeHelper extends GameManagerHelper { this.game.removeEnemyHeldItems(); } } + + /** + * Transitions to the start of a battle. + * @param species - Optional array of species to start the battle with. + * @returns A promise that resolves when the battle is started. + */ + async startBattle(species?: Species[]) { + await this.runToSummon(species); + + if (this.game.scene.battleStyle === BattleStyle.SWITCH) { + this.game.onNextPrompt("CheckSwitchPhase", Mode.CONFIRM, () => { + this.game.setMode(Mode.MESSAGE); + this.game.endPhase(); + }, () => this.game.isCurrentPhase(CommandPhase) || this.game.isCurrentPhase(TurnInitPhase)); + + this.game.onNextPrompt("CheckSwitchPhase", Mode.CONFIRM, () => { + this.game.setMode(Mode.MESSAGE); + this.game.endPhase(); + }, () => this.game.isCurrentPhase(CommandPhase) || this.game.isCurrentPhase(TurnInitPhase)); + } + + await this.game.phaseInterceptor.to(CommandPhase); + console.log("==================[New Turn]=================="); + } } diff --git a/src/test/utils/helpers/dailyModeHelper.ts b/src/test/utils/helpers/dailyModeHelper.ts index a143e212fcb..e40fada8ac7 100644 --- a/src/test/utils/helpers/dailyModeHelper.ts +++ b/src/test/utils/helpers/dailyModeHelper.ts @@ -1,9 +1,12 @@ -import { Button } from "#app/enums/buttons.js"; -import overrides from "#app/overrides.js"; -import { EncounterPhase } from "#app/phases/encounter-phase.js"; -import { TitlePhase } from "#app/phases/title-phase.js"; -import SaveSlotSelectUiHandler from "#app/ui/save-slot-select-ui-handler.js"; -import { Mode } from "#app/ui/ui.js"; +import { BattleStyle } from "#app/enums/battle-style"; +import { Button } from "#app/enums/buttons"; +import overrides from "#app/overrides"; +import { CommandPhase } from "#app/phases/command-phase"; +import { EncounterPhase } from "#app/phases/encounter-phase"; +import { TitlePhase } from "#app/phases/title-phase"; +import { TurnInitPhase } from "#app/phases/turn-init-phase"; +import SaveSlotSelectUiHandler from "#app/ui/save-slot-select-ui-handler"; +import { Mode } from "#app/ui/ui"; import { GameManagerHelper } from "./gameManagerHelper"; /** @@ -28,10 +31,33 @@ export class DailyModeHelper extends GameManagerHelper { uihandler.processInput(Button.ACTION); // select first slot. that's fine }); - await this.game.phaseInterceptor.run(EncounterPhase); + await this.game.phaseInterceptor.to(EncounterPhase); if (overrides.OPP_HELD_ITEMS_OVERRIDE.length === 0) { this.game.removeEnemyHeldItems(); } } + + /** + * Transitions to the start of a battle. + * @returns A promise that resolves when the battle is started. + */ + async startBattle() { + await this.runToSummon(); + + if (this.game.scene.battleStyle === BattleStyle.SWITCH) { + this.game.onNextPrompt("CheckSwitchPhase", Mode.CONFIRM, () => { + this.game.setMode(Mode.MESSAGE); + this.game.endPhase(); + }, () => this.game.isCurrentPhase(CommandPhase) || this.game.isCurrentPhase(TurnInitPhase)); + + this.game.onNextPrompt("CheckSwitchPhase", Mode.CONFIRM, () => { + this.game.setMode(Mode.MESSAGE); + this.game.endPhase(); + }, () => this.game.isCurrentPhase(CommandPhase) || this.game.isCurrentPhase(TurnInitPhase)); + } + + await this.game.phaseInterceptor.to(CommandPhase); + console.log("==================[New Turn]=================="); + } } diff --git a/src/test/utils/helpers/moveHelper.ts b/src/test/utils/helpers/moveHelper.ts index 3179e63a6d0..a53fa521785 100644 --- a/src/test/utils/helpers/moveHelper.ts +++ b/src/test/utils/helpers/moveHelper.ts @@ -1,6 +1,12 @@ +import { BattlerIndex } from "#app/battle"; +import { Moves } from "#app/enums/moves"; +import { CommandPhase } from "#app/phases/command-phase"; +import { MoveEffectPhase } from "#app/phases/move-effect-phase"; +import { Command } from "#app/ui/command-ui-handler"; +import { Mode } from "#app/ui/ui"; import { vi } from "vitest"; +import { getMovePosition } from "../gameManagerUtils"; import { GameManagerHelper } from "./gameManagerHelper"; -import { MoveEffectPhase } from "#app/phases/move-effect-phase.js"; /** * Helper to handle a Pokemon's move @@ -32,4 +38,25 @@ export class MoveHelper extends GameManagerHelper { hitCheck.mockReturnValue(false); } } + + /** + * Select the move to be used by the given Pokemon(-index). Triggers during the next {@linkcode CommandPhase} + * @param move the move to use + * @param pkmIndex the pokemon index. Relevant for double-battles only (defaults to 0) + * @param targetIndex The {@linkcode BattlerIndex} of the Pokemon to target for single-target moves, or `null` if a manual call to `selectTarget()` is required + */ + select(move: Moves, pkmIndex: 0 | 1 = 0, targetIndex?: BattlerIndex | null) { + const movePosition = getMovePosition(this.game.scene, pkmIndex, move); + + this.game.onNextPrompt("CommandPhase", Mode.COMMAND, () => { + this.game.scene.ui.setMode(Mode.FIGHT, (this.game.scene.getCurrentPhase() as CommandPhase).getFieldIndex()); + }); + this.game.onNextPrompt("CommandPhase", Mode.FIGHT, () => { + (this.game.scene.getCurrentPhase() as CommandPhase).handleCommand(Command.FIGHT, movePosition, false); + }); + + if (targetIndex !== null) { + this.game.selectTarget(movePosition, targetIndex); + } + } } diff --git a/src/test/utils/helpers/settingsHelper.ts b/src/test/utils/helpers/settingsHelper.ts index dec9e160d51..76ffafdbe10 100644 --- a/src/test/utils/helpers/settingsHelper.ts +++ b/src/test/utils/helpers/settingsHelper.ts @@ -1,3 +1,4 @@ +import { PlayerGender } from "#app/enums/player-gender"; import { GameManagerHelper } from "./gameManagerHelper"; /** @@ -11,5 +12,19 @@ export class SettingsHelper extends GameManagerHelper { */ typeHints(enable: boolean) { this.game.scene.typeHints = enable; + this.log(`Type Hints ${enable? "enabled" : "disabled"}` ); + } + + /** + * Change the player gender + * @param gender the {@linkcode PlayerGender} to set + */ + playerGender(gender: PlayerGender) { + this.game.scene.gameData.gender = gender; + this.log(`Gender set to: ${PlayerGender[gender]} (=${gender})` ); + } + + private log(...params: any[]) { + console.log("Settings:", ...params); } } diff --git a/src/test/utils/inputsHandler.ts b/src/test/utils/inputsHandler.ts index 148329ada32..30dd101f43d 100644 --- a/src/test/utils/inputsHandler.ts +++ b/src/test/utils/inputsHandler.ts @@ -1,11 +1,11 @@ import BattleScene from "#app/battle-scene"; -import Phaser from "phaser"; -import { InputsController } from "#app/inputs-controller"; import pad_xbox360 from "#app/configs/inputs/pad_xbox360"; -import { holdOn } from "#test/utils/gameManagerUtils"; +import { InputsController } from "#app/inputs-controller"; import TouchControl from "#app/touch-controls"; -import { JSDOM } from "jsdom"; +import { holdOn } from "#test/utils/gameManagerUtils"; import fs from "fs"; +import { JSDOM } from "jsdom"; +import Phaser from "phaser"; interface LogEntry { type: string; diff --git a/src/test/utils/misc.test.ts b/src/test/utils/misc.test.ts index c1947dbe8a2..d7c10144ead 100644 --- a/src/test/utils/misc.test.ts +++ b/src/test/utils/misc.test.ts @@ -1,8 +1,8 @@ -import { afterEach, beforeAll, beforeEach, describe, expect, it, vi } from "vitest"; -import Phaser from "phaser"; -import GameManager from "#test/utils/gameManager"; import { apiFetch } from "#app/utils"; +import GameManager from "#test/utils/gameManager"; import { waitUntil } from "#test/utils/gameManagerUtils"; +import Phaser from "phaser"; +import { afterEach, beforeAll, beforeEach, describe, expect, it, vi } from "vitest"; describe("Test misc", () => { let phaserGame: Phaser.Game; @@ -30,7 +30,7 @@ describe("Test misc", () => { return response.json(); }).then(data => { spy(); // Call the spy function - expect(data).toEqual({"username":"greenlamp","lastSessionSlot":0}); + expect(data).toEqual({"username":"greenlamp", "lastSessionSlot":0}); }); expect(spy).toHaveBeenCalled(); }); @@ -43,7 +43,7 @@ describe("Test misc", () => { return response.json(); }).then(data => { spy(); // Call the spy function - expect(data).toEqual({"username":"greenlamp","lastSessionSlot":0}); + expect(data).toEqual({"username":"greenlamp", "lastSessionSlot":0}); }); expect(spy).toHaveBeenCalled(); }); @@ -54,7 +54,7 @@ describe("Test misc", () => { expect(response.ok).toBe(true); expect(response.status).toBe(200); - expect(data).toEqual({"username":"greenlamp","lastSessionSlot":0}); + expect(data).toEqual({"username":"greenlamp", "lastSessionSlot":0}); }); it("test apifetch mock sync", async () => { diff --git a/src/test/utils/mocks/mockFetch.ts b/src/test/utils/mocks/mockFetch.ts index 8043dd993fe..ad3758775d1 100644 --- a/src/test/utils/mocks/mockFetch.ts +++ b/src/test/utils/mocks/mockFetch.ts @@ -5,12 +5,12 @@ export const MockFetch = (input, init) => { let responseText; const handlers = { - "account/info": {"username":"greenlamp","lastSessionSlot":0}, + "account/info": {"username":"greenlamp", "lastSessionSlot":0}, "savedata/session": {}, "savedata/system": {}, "savedata/updateall": "", "daily/rankingpagecount": { data: 0 }, - "game/titlestats": {"playerCount":0,"battleCount":5}, + "game/titlestats": {"playerCount":0, "battleCount":5}, "daily/rankings": [], }; diff --git a/src/test/utils/mocks/mockTextureManager.ts b/src/test/utils/mocks/mockTextureManager.ts index 330409e9776..ca8065bef97 100644 --- a/src/test/utils/mocks/mockTextureManager.ts +++ b/src/test/utils/mocks/mockTextureManager.ts @@ -1,12 +1,14 @@ import MockContainer from "#test/utils/mocks/mocksContainer/mockContainer"; -import MockSprite from "#test/utils/mocks/mocksContainer/mockSprite"; -import MockRectangle from "#test/utils/mocks/mocksContainer/mockRectangle"; -import MockNineslice from "#test/utils/mocks/mocksContainer/mockNineslice"; import MockImage from "#test/utils/mocks/mocksContainer/mockImage"; -import MockText from "#test/utils/mocks/mocksContainer/mockText"; +import MockNineslice from "#test/utils/mocks/mocksContainer/mockNineslice"; import MockPolygon from "#test/utils/mocks/mocksContainer/mockPolygon"; -import { MockGameObject } from "./mockGameObject"; +import MockRectangle from "#test/utils/mocks/mocksContainer/mockRectangle"; +import MockSprite from "#test/utils/mocks/mocksContainer/mockSprite"; +import MockText from "#test/utils/mocks/mocksContainer/mockText"; import MockTexture from "#test/utils/mocks/mocksContainer/mockTexture"; +import { MockGameObject } from "./mockGameObject"; +import { vi } from "vitest"; +import { MockVideoGameObject } from "./mockVideoGameObject"; /** * Stub class for Phaser.Textures.TextureManager @@ -34,6 +36,7 @@ export default class MockTextureManager { text: this.text.bind(this), bitmapText: this.text.bind(this), displayList: this.displayList, + video: vi.fn(() => new MockVideoGameObject()), }; } @@ -43,7 +46,7 @@ export default class MockTextureManager { return container; } - sprite(x,y, texture) { + sprite(x, y, texture) { const sprite = new MockSprite(this, x, y, texture); this.list.push(sprite); return sprite; diff --git a/src/test/utils/mocks/mockVideoGameObject.ts b/src/test/utils/mocks/mockVideoGameObject.ts new file mode 100644 index 00000000000..96f03542bbc --- /dev/null +++ b/src/test/utils/mocks/mockVideoGameObject.ts @@ -0,0 +1,13 @@ +import { vi } from "vitest"; +import { MockGameObject } from "./mockGameObject"; + +/** Mocks video-related stuff */ +export class MockVideoGameObject implements MockGameObject { + constructor() {} + + public play = vi.fn(); + public stop = vi.fn(() => this); + public setOrigin = vi.fn(); + public setScale = vi.fn(); + public setVisible = vi.fn(); +} diff --git a/src/test/utils/mocks/mocksContainer/mockSprite.ts b/src/test/utils/mocks/mocksContainer/mockSprite.ts index 9c566fc4bcb..35cd2d5faab 100644 --- a/src/test/utils/mocks/mocksContainer/mockSprite.ts +++ b/src/test/utils/mocks/mocksContainer/mockSprite.ts @@ -1,7 +1,7 @@ +import Phaser from "phaser"; import { MockGameObject } from "../mockGameObject"; import Sprite = Phaser.GameObjects.Sprite; import Frame = Phaser.Textures.Frame; -import Phaser from "phaser"; export default class MockSprite implements MockGameObject { diff --git a/src/test/utils/mocks/mocksContainer/mockTexture.ts b/src/test/utils/mocks/mocksContainer/mockTexture.ts index 03bedb4751b..cb31480cc60 100644 --- a/src/test/utils/mocks/mocksContainer/mockTexture.ts +++ b/src/test/utils/mocks/mocksContainer/mockTexture.ts @@ -1,5 +1,5 @@ -import { MockGameObject } from "../mockGameObject"; import MockTextureManager from "#test/utils/mocks/mockTextureManager"; +import { MockGameObject } from "../mockGameObject"; /** diff --git a/src/test/utils/phaseInterceptor.ts b/src/test/utils/phaseInterceptor.ts index 2304d726757..de65405abff 100644 --- a/src/test/utils/phaseInterceptor.ts +++ b/src/test/utils/phaseInterceptor.ts @@ -1,42 +1,44 @@ -import UI, { Mode } from "#app/ui/ui"; import { Phase } from "#app/phase"; +import { BattleEndPhase } from "#app/phases/battle-end-phase"; +import { BerryPhase } from "#app/phases/berry-phase"; +import { CheckSwitchPhase } from "#app/phases/check-switch-phase"; +import { CommandPhase } from "#app/phases/command-phase"; +import { DamagePhase } from "#app/phases/damage-phase"; +import { EggLapsePhase } from "#app/phases/egg-lapse-phase"; +import { EncounterPhase } from "#app/phases/encounter-phase"; +import { EndEvolutionPhase } from "#app/phases/end-evolution-phase"; +import { EnemyCommandPhase } from "#app/phases/enemy-command-phase"; +import { EvolutionPhase } from "#app/phases/evolution-phase"; +import { FaintPhase } from "#app/phases/faint-phase"; +import { LoginPhase } from "#app/phases/login-phase"; +import { MessagePhase } from "#app/phases/message-phase"; +import { MoveEffectPhase } from "#app/phases/move-effect-phase"; +import { MoveEndPhase } from "#app/phases/move-end-phase"; +import { MovePhase } from "#app/phases/move-phase"; +import { NewBattlePhase } from "#app/phases/new-battle-phase"; +import { NextEncounterPhase } from "#app/phases/next-encounter-phase"; +import { PartyHealPhase } from "#app/phases/party-heal-phase"; +import { PostSummonPhase } from "#app/phases/post-summon-phase"; +import { QuietFormChangePhase } from "#app/phases/quiet-form-change-phase"; +import { SelectGenderPhase } from "#app/phases/select-gender-phase"; +import { SelectModifierPhase } from "#app/phases/select-modifier-phase"; +import { SelectStarterPhase } from "#app/phases/select-starter-phase"; +import { SelectTargetPhase } from "#app/phases/select-target-phase"; +import { ShinySparklePhase } from "#app/phases/shiny-sparkle-phase"; +import { ShowAbilityPhase } from "#app/phases/show-ability-phase"; +import { StatChangePhase } from "#app/phases/stat-change-phase"; +import { SummonPhase } from "#app/phases/summon-phase"; +import { SwitchPhase } from "#app/phases/switch-phase"; +import { SwitchSummonPhase } from "#app/phases/switch-summon-phase"; +import { TitlePhase } from "#app/phases/title-phase"; +import { ToggleDoublePositionPhase } from "#app/phases/toggle-double-position-phase"; +import { TurnEndPhase } from "#app/phases/turn-end-phase"; +import { TurnInitPhase } from "#app/phases/turn-init-phase"; +import { TurnStartPhase } from "#app/phases/turn-start-phase"; +import { UnavailablePhase } from "#app/phases/unavailable-phase"; +import { VictoryPhase } from "#app/phases/victory-phase"; import ErrorInterceptor from "#app/test/utils/errorInterceptor"; -import { BattleEndPhase } from "#app/phases/battle-end-phase.js"; -import { BerryPhase } from "#app/phases/berry-phase.js"; -import { CheckSwitchPhase } from "#app/phases/check-switch-phase.js"; -import { CommandPhase } from "#app/phases/command-phase.js"; -import { DamagePhase } from "#app/phases/damage-phase.js"; -import { EggLapsePhase } from "#app/phases/egg-lapse-phase.js"; -import { EncounterPhase } from "#app/phases/encounter-phase.js"; -import { EnemyCommandPhase } from "#app/phases/enemy-command-phase.js"; -import { FaintPhase } from "#app/phases/faint-phase.js"; -import { LoginPhase } from "#app/phases/login-phase.js"; -import { MessagePhase } from "#app/phases/message-phase.js"; -import { MoveEffectPhase } from "#app/phases/move-effect-phase.js"; -import { MoveEndPhase } from "#app/phases/move-end-phase.js"; -import { MovePhase } from "#app/phases/move-phase.js"; -import { NewBattlePhase } from "#app/phases/new-battle-phase.js"; -import { NextEncounterPhase } from "#app/phases/next-encounter-phase.js"; -import { PostSummonPhase } from "#app/phases/post-summon-phase.js"; -import { QuietFormChangePhase } from "#app/phases/quiet-form-change-phase.js"; -import { SelectGenderPhase } from "#app/phases/select-gender-phase.js"; -import { SelectModifierPhase } from "#app/phases/select-modifier-phase.js"; -import { SelectStarterPhase } from "#app/phases/select-starter-phase.js"; -import { SelectTargetPhase } from "#app/phases/select-target-phase.js"; -import { ShinySparklePhase } from "#app/phases/shiny-sparkle-phase.js"; -import { ShowAbilityPhase } from "#app/phases/show-ability-phase.js"; -import { StatChangePhase } from "#app/phases/stat-change-phase.js"; -import { SummonPhase } from "#app/phases/summon-phase.js"; -import { SwitchPhase } from "#app/phases/switch-phase.js"; -import { SwitchSummonPhase } from "#app/phases/switch-summon-phase.js"; -import { TitlePhase } from "#app/phases/title-phase.js"; -import { ToggleDoublePositionPhase } from "#app/phases/toggle-double-position-phase.js"; -import { TurnEndPhase } from "#app/phases/turn-end-phase.js"; -import { TurnInitPhase } from "#app/phases/turn-init-phase.js"; -import { TurnStartPhase } from "#app/phases/turn-start-phase.js"; -import { UnavailablePhase } from "#app/phases/unavailable-phase.js"; -import { VictoryPhase } from "#app/phases/victory-phase.js"; -import { PartyHealPhase } from "#app/phases/party-heal-phase.js"; +import UI, { Mode } from "#app/ui/ui"; export default class PhaseInterceptor { public scene; @@ -92,6 +94,8 @@ export default class PhaseInterceptor { [SwitchPhase, this.startPhase], [SwitchSummonPhase, this.startPhase], [PartyHealPhase, this.startPhase], + [EvolutionPhase, this.startPhase], + [EndEvolutionPhase, this.startPhase], ]; private endBySetMode = [ diff --git a/src/test/vitest.setup.ts b/src/test/vitest.setup.ts index b2861b7071c..eaa987c1a66 100644 --- a/src/test/vitest.setup.ts +++ b/src/test/vitest.setup.ts @@ -9,8 +9,8 @@ import { initMoves } from "#app/data/move"; import { initPokemonPrevolutions } from "#app/data/pokemon-evolutions"; import { initPokemonForms } from "#app/data/pokemon-forms"; import { initSpecies } from "#app/data/pokemon-species"; -import { initAchievements } from "#app/system/achv.js"; -import { initVouchers } from "#app/system/voucher.js"; +import { initAchievements } from "#app/system/achv"; +import { initVouchers } from "#app/system/voucher"; import { initStatsKeys } from "#app/ui/game-stats-ui-handler"; import { beforeAll, vi } from "vitest"; diff --git a/src/timed-event-manager.ts b/src/timed-event-manager.ts index 58847006e91..18de67bfa86 100644 --- a/src/timed-event-manager.ts +++ b/src/timed-event-manager.ts @@ -111,7 +111,7 @@ export class TimedEventDisplay extends Phaser.GameObjects.Container { ); this.eventTimerText.setName("text-event-timer"); this.eventTimerText.setScale(0.15); - this.eventTimerText.setOrigin(0,0); + this.eventTimerText.setOrigin(0, 0); this.add([ this.eventTimerText, diff --git a/src/typings/phaser/index.d.ts b/src/typings/phaser/index.d.ts new file mode 100644 index 00000000000..f3665768cec --- /dev/null +++ b/src/typings/phaser/index.d.ts @@ -0,0 +1,68 @@ +import "phaser"; + +declare module "phaser" { + namespace GameObjects { + interface GameObject { + width: number; + + height: number; + + originX: number; + + originY: number; + + x: number; + + y: number; + } + + interface Container { + /** + * Sets this object's position relative to another object with a given offset + */ + setPositionRelative(guideObject: any, x: number, y: number): void; + } + interface Sprite { + /** + * Sets this object's position relative to another object with a given offset + */ + setPositionRelative(guideObject: any, x: number, y: number): void; + } + interface Image { + /** + * Sets this object's position relative to another object with a given offset + */ + setPositionRelative(guideObject: any, x: number, y: number): void; + } + interface NineSlice { + /** + * Sets this object's position relative to another object with a given offset + */ + setPositionRelative(guideObject: any, x: number, y: number): void; + } + interface Text { + /** + * Sets this object's position relative to another object with a given offset + */ + setPositionRelative(guideObject: any, x: number, y: number): void; + } + interface Rectangle { + /** + * Sets this object's position relative to another object with a given offset + */ + setPositionRelative(guideObject: any, x: number, y: number): void; + } + } + + namespace Input { + namespace Gamepad { + interface GamepadPlugin { + /** + * Refreshes the list of connected Gamepads. + * This is called automatically when a gamepad is connected or disconnected, and during the update loop. + */ + refreshPads(): void; + } + } + } +} diff --git a/src/ui-inputs.ts b/src/ui-inputs.ts index d514ddb7823..5860702a15b 100644 --- a/src/ui-inputs.ts +++ b/src/ui-inputs.ts @@ -11,6 +11,7 @@ import SettingsKeyboardUiHandler from "#app/ui/settings/settings-keyboard-ui-han import BattleScene from "./battle-scene"; import SettingsDisplayUiHandler from "./ui/settings/settings-display-ui-handler"; import SettingsAudioUiHandler from "./ui/settings/settings-audio-ui-handler"; +import RunInfoUiHandler from "./ui/run-info-ui-handler"; type ActionKeys = Record void>; @@ -181,7 +182,7 @@ export class UiInputs { break; case Mode.MENU: this.scene.ui.revertMode(); - this.scene.playSound("select"); + this.scene.playSound("ui/select"); break; default: return; @@ -189,7 +190,7 @@ export class UiInputs { } buttonCycleOption(button: Button): void { - const whitelist = [StarterSelectUiHandler, SettingsUiHandler, SettingsDisplayUiHandler, SettingsAudioUiHandler, SettingsGamepadUiHandler, SettingsKeyboardUiHandler]; + const whitelist = [StarterSelectUiHandler, SettingsUiHandler, RunInfoUiHandler, SettingsDisplayUiHandler, SettingsAudioUiHandler, SettingsGamepadUiHandler, SettingsKeyboardUiHandler]; const uiHandler = this.scene.ui?.getHandler(); if (whitelist.some(handler => uiHandler instanceof handler)) { this.scene.ui.processInput(button); diff --git a/src/ui/abstact-option-select-ui-handler.ts b/src/ui/abstact-option-select-ui-handler.ts index 5172075da52..c6abecda4c0 100644 --- a/src/ui/abstact-option-select-ui-handler.ts +++ b/src/ui/abstact-option-select-ui-handler.ts @@ -77,7 +77,21 @@ export default abstract class AbstractOptionSelectUiHandler extends UiHandler { } protected setupOptions() { - const options = this.config?.options || []; + const configOptions = this.config?.options ?? []; + + let options: OptionSelectItem[]; + + // for performance reasons, this limits how many options we can see at once. Without this, it would try to make text options for every single options + // which makes the performance take a hit. If there's not enough options to do this (set to 10 at the moment) and the ui mode !== Mode.AUTO_COMPLETE, + // this is ignored and the original code is untouched, with the options array being all the options from the config + if (configOptions.length >= 10 && this.scene.ui.getMode() === Mode.AUTO_COMPLETE) { + const optionsScrollTotal = configOptions.length; + const optionStartIndex = this.scrollCursor; + const optionEndIndex = Math.min(optionsScrollTotal, optionStartIndex + (!optionStartIndex || this.scrollCursor + (this.config?.maxOptions! - 1) >= optionsScrollTotal ? this.config?.maxOptions! - 1 : this.config?.maxOptions! - 2)); + options = configOptions.slice(optionStartIndex, optionEndIndex + 2); + } else { + options = configOptions; + } if (this.optionSelectText) { this.optionSelectText.destroy(); @@ -192,6 +206,19 @@ export default abstract class AbstractOptionSelectUiHandler extends UiHandler { } else { ui.playError(); } + } else if (button === Button.SUBMIT && ui.getMode() === Mode.AUTO_COMPLETE) { + // this is here to differentiate between a Button.SUBMIT vs Button.ACTION within the autocomplete handler + // this is here because Button.ACTION is picked up as z on the keyboard, meaning if you're typing and hit z, it'll select the option you've chosen + success = true; + const option = this.config?.options[this.cursor + (this.scrollCursor - (this.scrollCursor ? 1 : 0))]; + if (option?.handler()) { + if (!option.keepOpen) { + this.clear(); + } + playSound = !option.overrideSound; + } else { + ui.playError(); + } } else { switch (button) { case Button.UP: diff --git a/src/ui/achv-bar.ts b/src/ui/achv-bar.ts index 0f3ab7c2e47..6e7b3185024 100644 --- a/src/ui/achv-bar.ts +++ b/src/ui/achv-bar.ts @@ -25,7 +25,7 @@ export default class AchvBar extends Phaser.GameObjects.Container { } setup(): void { - this.defaultWidth = 160; + this.defaultWidth = 200; this.defaultHeight = 40; this.bg = this.scene.add.nineslice(0, 0, "achv_bar", undefined, this.defaultWidth, this.defaultHeight, 41, 6, 16, 4); @@ -90,7 +90,7 @@ export default class AchvBar extends Phaser.GameObjects.Container { this.bg.height = Math.max(this.defaultHeight, this.titleText.displayHeight + this.descriptionText.displayHeight + 8); this.icon.y = (this.bg.height / 2) - (this.icon.height / 2); - (this.scene as BattleScene).playSound("achv"); + (this.scene as BattleScene).playSound("se/achv"); this.scene.tweens.add({ targets: this, diff --git a/src/ui/achvs-ui-handler.ts b/src/ui/achvs-ui-handler.ts index ad707fb52e1..eb4316dc24b 100644 --- a/src/ui/achvs-ui-handler.ts +++ b/src/ui/achvs-ui-handler.ts @@ -2,84 +2,122 @@ import BattleScene from "../battle-scene"; import { Button } from "#enums/buttons"; import i18next from "i18next"; import { Achv, achvs, getAchievementDescription } from "../system/achv"; +import { Voucher, getVoucherTypeIcon, getVoucherTypeName, vouchers } from "../system/voucher"; import MessageUiHandler from "./message-ui-handler"; import { addTextObject, TextStyle } from "./text"; import { Mode } from "./ui"; import { addWindow } from "./ui-theme"; -import { ParseKeys } from "i18next"; import { PlayerGender } from "#enums/player-gender"; +enum Page { + ACHIEVEMENTS, + VOUCHERS +} + +interface LanguageSetting { + TextSize: string, +} + +const languageSettings: { [key: string]: LanguageSetting } = { + "de":{ + TextSize: "80px" + } +}; + export default class AchvsUiHandler extends MessageUiHandler { - private readonly ACHV_ROWS = 4; - private readonly ACHV_COLS = 17; + private readonly ROWS = 4; + private readonly COLS = 17; - private achvsContainer: Phaser.GameObjects.Container; - private achvIconsContainer: Phaser.GameObjects.Container; + private mainContainer: Phaser.GameObjects.Container; + private iconsContainer: Phaser.GameObjects.Container; + + private headerBg: Phaser.GameObjects.NineSlice; + private headerText: Phaser.GameObjects.Text; + private headerActionText: Phaser.GameObjects.Text; + private headerActionButton: Phaser.GameObjects.Sprite; + private headerBgX: number; + private iconsBg: Phaser.GameObjects.NineSlice; + private icons: Phaser.GameObjects.Sprite[]; - private achvIconsBg: Phaser.GameObjects.NineSlice; - private achvIcons: Phaser.GameObjects.Sprite[]; private titleText: Phaser.GameObjects.Text; private scoreText: Phaser.GameObjects.Text; private unlockText: Phaser.GameObjects.Text; + private achvsName: string; private achvsTotal: number; - private scrollCursor: number; + private vouchersName: string; + private vouchersTotal: number; + private currentTotal: number; + private scrollCursor: number; private cursorObj: Phaser.GameObjects.NineSlice | null; + private currentPage: Page; constructor(scene: BattleScene, mode: Mode | null = null) { super(scene, mode); this.achvsTotal = Object.keys(achvs).length; + this.vouchersTotal = Object.keys(vouchers).length; this.scrollCursor = 0; } setup() { const ui = this.getUi(); - this.achvsContainer = this.scene.add.container(1, -(this.scene.game.canvas.height / 6) + 1); + this.mainContainer = this.scene.add.container(1, -(this.scene.game.canvas.height / 6) + 1); - this.achvsContainer.setInteractive(new Phaser.Geom.Rectangle(0, 0, this.scene.game.canvas.width / 6, this.scene.game.canvas.height / 6), Phaser.Geom.Rectangle.Contains); + this.mainContainer.setInteractive(new Phaser.Geom.Rectangle(0, 0, this.scene.game.canvas.width / 6, this.scene.game.canvas.height / 6), Phaser.Geom.Rectangle.Contains); - const headerBg = addWindow(this.scene, 0, 0, (this.scene.game.canvas.width / 6) - 2, 24); - headerBg.setOrigin(0, 0); + this.headerBg = addWindow(this.scene, 0, 0, (this.scene.game.canvas.width / 6) - 2, 24); + this.headerBg.setOrigin(0, 0); + + this.headerText = addTextObject(this.scene, 0, 0, "", TextStyle.SETTINGS_LABEL); + this.headerText.setOrigin(0, 0); + this.headerText.setPositionRelative(this.headerBg, 8, 4); + this.headerActionButton = new Phaser.GameObjects.Sprite(this.scene, 0, 0, "keyboard", "SPACE.png"); + this.headerActionButton.setOrigin(0, 0); + this.headerActionButton.setPositionRelative(this.headerBg, 236, 6); + this.headerActionText = addTextObject(this.scene, 0, 0, "", TextStyle.WINDOW, {fontSize:"60px"}); + this.headerActionText.setOrigin(0, 0); + this.headerActionText.setPositionRelative(this.headerBg, 264, 8); // We need to get the player gender from the game data to add the correct prefix to the achievement name - const playerGender = this.scene.gameData.gender; - let genderPrefix = "PGM"; - if (playerGender === PlayerGender.FEMALE) { - genderPrefix = "PGF"; - } + const genderIndex = this.scene.gameData.gender ?? PlayerGender.MALE; + const genderStr = PlayerGender[genderIndex].toLowerCase(); - const headerText = addTextObject(this.scene, 0, 0, i18next.t(`${genderPrefix}achv:Achievements.name` as ParseKeys), TextStyle.SETTINGS_LABEL); - headerText.setOrigin(0, 0); - headerText.setPositionRelative(headerBg, 8, 4); + this.achvsName = i18next.t("achv:Achievements.name", { context: genderStr }); + this.vouchersName = i18next.t("voucher:vouchers"); - this.achvIconsBg = addWindow(this.scene, 0, headerBg.height, (this.scene.game.canvas.width / 6) - 2, (this.scene.game.canvas.height / 6) - headerBg.height - 68); - this.achvIconsBg.setOrigin(0, 0); + this.iconsBg = addWindow(this.scene, 0, this.headerBg.height, (this.scene.game.canvas.width / 6) - 2, (this.scene.game.canvas.height / 6) - this.headerBg.height - 68); + this.iconsBg.setOrigin(0, 0); - this.achvIconsContainer = this.scene.add.container(6, headerBg.height + 6); + this.iconsContainer = this.scene.add.container(6, this.headerBg.height + 6); - this.achvIcons = []; + this.icons = []; - for (let a = 0; a < this.ACHV_ROWS * this.ACHV_COLS; a++) { - const x = (a % this.ACHV_COLS) * 18; - const y = Math.floor(a / this.ACHV_COLS) * 18; + for (let a = 0; a < this.ROWS * this.COLS; a++) { + const x = (a % this.COLS) * 18; + const y = Math.floor(a / this.COLS) * 18; const icon = this.scene.add.sprite(x, y, "items", "unknown"); icon.setOrigin(0, 0); icon.setScale(0.5); - this.achvIcons.push(icon); - this.achvIconsContainer.add(icon); + this.icons.push(icon); + this.iconsContainer.add(icon); } - const titleBg = addWindow(this.scene, 0, headerBg.height + this.achvIconsBg.height, 174, 24); + const titleBg = addWindow(this.scene, 0, this.headerBg.height + this.iconsBg.height, 174, 24); titleBg.setOrigin(0, 0); this.titleText = addTextObject(this.scene, 0, 0, "", TextStyle.WINDOW); + const textSize = languageSettings[i18next.language]?.TextSize ?? this.titleText.style.fontSize; + this.titleText.setFontSize(textSize); this.titleText.setOrigin(0, 0); - this.titleText.setPositionRelative(titleBg, 8, 4); + const titleBgCenterX = titleBg.x + titleBg.width / 2; + const titleBgCenterY = titleBg.y + titleBg.height / 2; + this.titleText.setOrigin(0.5, 0.5); + this.titleText.setPosition(titleBgCenterX, titleBgCenterY); const scoreBg = addWindow(this.scene, titleBg.x + titleBg.width, titleBg.y, 46, 24); scoreBg.setOrigin(0, 0); @@ -105,36 +143,40 @@ export default class AchvsUiHandler extends MessageUiHandler { this.message = descriptionText; - this.achvsContainer.add(headerBg); - this.achvsContainer.add(headerText); - this.achvsContainer.add(this.achvIconsBg); - this.achvsContainer.add(this.achvIconsContainer); - this.achvsContainer.add(titleBg); - this.achvsContainer.add(this.titleText); - this.achvsContainer.add(scoreBg); - this.achvsContainer.add(this.scoreText); - this.achvsContainer.add(unlockBg); - this.achvsContainer.add(this.unlockText); - this.achvsContainer.add(descriptionBg); - this.achvsContainer.add(descriptionText); + this.mainContainer.add(this.headerBg); + this.mainContainer.add(this.headerActionButton); + this.mainContainer.add(this.headerText); + this.mainContainer.add(this.headerActionText); + this.mainContainer.add(this.iconsBg); + this.mainContainer.add(this.iconsContainer); + this.mainContainer.add(titleBg); + this.mainContainer.add(this.titleText); + this.mainContainer.add(scoreBg); + this.mainContainer.add(this.scoreText); + this.mainContainer.add(unlockBg); + this.mainContainer.add(this.unlockText); + this.mainContainer.add(descriptionBg); + this.mainContainer.add(descriptionText); - ui.add(this.achvsContainer); + ui.add(this.mainContainer); + this.currentPage = Page.ACHIEVEMENTS; this.setCursor(0); - this.achvsContainer.setVisible(false); + this.mainContainer.setVisible(false); } show(args: any[]): boolean { super.show(args); + this.headerBgX = this.headerBg.getTopRight().x; this.updateAchvIcons(); - this.achvsContainer.setVisible(true); + this.mainContainer.setVisible(true); this.setCursor(0); this.setScrollCursor(0); - this.getUi().moveTo(this.achvsContainer, this.getUi().length - 1); + this.getUi().moveTo(this.mainContainer, this.getUi().length - 1); this.getUi().hideTooltip(); @@ -143,13 +185,10 @@ export default class AchvsUiHandler extends MessageUiHandler { protected showAchv(achv: Achv) { // We need to get the player gender from the game data to add the correct prefix to the achievement name - const playerGender = this.scene.gameData.gender; - let genderPrefix = "PGM"; - if (playerGender === PlayerGender.FEMALE) { - genderPrefix = "PGF"; - } + const genderIndex = this.scene.gameData.gender ?? PlayerGender.MALE; + const genderStr = PlayerGender[genderIndex].toLowerCase(); - achv.name = i18next.t(`${genderPrefix}achv:${achv.localizationKey}.name` as ParseKeys); + achv.name = i18next.t(`achv:${achv.localizationKey}.name`, { context: genderStr }); achv.description = getAchievementDescription(achv.localizationKey); const achvUnlocks = this.scene.gameData.achvUnlocks; const unlocked = achvUnlocks.hasOwnProperty(achv.id); @@ -157,7 +196,16 @@ export default class AchvsUiHandler extends MessageUiHandler { this.titleText.setText(unlocked ? achv.name : "???"); this.showText(!hidden ? achv.description : ""); this.scoreText.setText(`${achv.score}pt`); - this.unlockText.setText(unlocked ? new Date(achvUnlocks[achv.id]).toLocaleDateString() : i18next.t(`${genderPrefix}achv:Locked.name` as ParseKeys)); + this.unlockText.setText(unlocked ? new Date(achvUnlocks[achv.id]).toLocaleDateString() : i18next.t("achv:Locked.name")); + } + + protected showVoucher(voucher: Voucher) { + const voucherUnlocks = this.scene.gameData.voucherUnlocks; + const unlocked = voucherUnlocks.hasOwnProperty(voucher.id); + + this.titleText.setText(getVoucherTypeName(voucher.voucherType)); + this.showText(voucher.description); + this.unlockText.setText(unlocked ? new Date(voucherUnlocks[voucher.id]).toLocaleDateString() : i18next.t("voucher:locked")); } processInput(button: Button): boolean { @@ -165,43 +213,56 @@ export default class AchvsUiHandler extends MessageUiHandler { let success = false; + if (button === Button.ACTION) { + success = true; + this.setScrollCursor(0); + if (this.currentPage === Page.ACHIEVEMENTS) { + this.currentPage = Page.VOUCHERS; + this.updateVoucherIcons(); + } else if (this.currentPage === Page.VOUCHERS) { + this.currentPage = Page.ACHIEVEMENTS; + this.updateAchvIcons(); + } + this.setCursor(0, true); + this.mainContainer.update(); + } if (button === Button.CANCEL) { success = true; this.scene.ui.revertMode(); } else { - const rowIndex = Math.floor(this.cursor / this.ACHV_COLS); - const itemOffset = (this.scrollCursor * this.ACHV_COLS); + const rowIndex = Math.floor(this.cursor / this.COLS); + const itemOffset = (this.scrollCursor * this.COLS); switch (button) { case Button.UP: - if (this.cursor < this.ACHV_COLS) { + if (this.cursor < this.COLS) { if (this.scrollCursor) { success = this.setScrollCursor(this.scrollCursor - 1); } } else { - success = this.setCursor(this.cursor - this.ACHV_COLS); + success = this.setCursor(this.cursor - this.COLS); } break; case Button.DOWN: - const canMoveDown = (this.cursor + itemOffset) + this.ACHV_COLS < this.achvsTotal; - if (rowIndex >= this.ACHV_ROWS - 1) { - if (this.scrollCursor < Math.ceil(this.achvsTotal / this.ACHV_COLS) - this.ACHV_ROWS && canMoveDown) { + const canMoveDown = (this.cursor + itemOffset) + this.COLS < this.currentTotal; + if (rowIndex >= this.ROWS - 1) { + if (this.scrollCursor < Math.ceil(this.currentTotal / this.COLS) - this.ROWS && canMoveDown) { success = this.setScrollCursor(this.scrollCursor + 1); } } else if (canMoveDown) { - success = this.setCursor(this.cursor + this.ACHV_COLS); + success = this.setCursor(this.cursor + this.COLS); } break; case Button.LEFT: if (!this.cursor && this.scrollCursor) { - success = this.setScrollCursor(this.scrollCursor - 1) && this.setCursor(this.cursor + (this.ACHV_COLS - 1)); + success = this.setScrollCursor(this.scrollCursor - 1) && this.setCursor(this.cursor + (this.COLS - 1)); } else if (this.cursor) { success = this.setCursor(this.cursor - 1); } break; case Button.RIGHT: - if (this.cursor + 1 === this.ACHV_ROWS * this.ACHV_COLS && this.scrollCursor < Math.ceil(this.achvsTotal / this.ACHV_COLS) - this.ACHV_ROWS) { - success = this.setScrollCursor(this.scrollCursor + 1) && this.setCursor(this.cursor - (this.ACHV_COLS - 1)); - } else if (this.cursor + itemOffset < this.achvsTotal - 1) { + if (this.cursor + 1 === this.ROWS * this.COLS && this.scrollCursor < Math.ceil(this.currentTotal / this.COLS) - this.ROWS) { + success = this.setScrollCursor(this.scrollCursor + 1) && this.setCursor(this.cursor - (this.COLS - 1)); + } else if (this.cursor + itemOffset < this.currentTotal - 1) { success = this.setCursor(this.cursor + 1); } break; @@ -215,24 +276,30 @@ export default class AchvsUiHandler extends MessageUiHandler { return success; } - setCursor(cursor: integer): boolean { + setCursor(cursor: integer, pageChange?: boolean): boolean { const ret = super.setCursor(cursor); - let updateAchv = ret; + let update = ret; if (!this.cursorObj) { this.cursorObj = this.scene.add.nineslice(0, 0, "select_cursor_highlight", undefined, 16, 16, 1, 1, 1, 1); this.cursorObj.setOrigin(0, 0); - this.achvIconsContainer.add(this.cursorObj); - updateAchv = true; + this.iconsContainer.add(this.cursorObj); + update = true; } - this.cursorObj.setPositionRelative(this.achvIcons[this.cursor], 0, 0); + this.cursorObj.setPositionRelative(this.icons[this.cursor], 0, 0); - if (updateAchv) { - this.showAchv(achvs[Object.keys(achvs)[cursor + this.scrollCursor * this.ACHV_COLS]]); + if (update || pageChange) { + switch (this.currentPage) { + case Page.ACHIEVEMENTS: + this.showAchv(achvs[Object.keys(achvs)[cursor + this.scrollCursor * this.COLS]]); + break; + case Page.VOUCHERS: + this.showVoucher(vouchers[Object.keys(vouchers)[cursor + this.scrollCursor * this.COLS]]); + break; + } } - return ret; } @@ -249,10 +316,16 @@ export default class AchvsUiHandler extends MessageUiHandler { this.scrollCursor = scrollCursor; - this.updateAchvIcons(); - - this.showAchv(achvs[Object.keys(achvs)[Math.min(this.cursor + this.scrollCursor * this.ACHV_COLS, Object.values(achvs).length - 1)]]); - + switch (this.currentPage) { + case Page.ACHIEVEMENTS: + this.updateAchvIcons(); + this.showAchv(achvs[Object.keys(achvs)[Math.min(this.cursor + this.scrollCursor * this.COLS, Object.values(achvs).length - 1)]]); + break; + case Page.VOUCHERS: + this.updateVoucherIcons(); + this.showVoucher(vouchers[Object.keys(vouchers)[Math.min(this.cursor + this.scrollCursor * this.COLS, Object.values(vouchers).length - 1)]]); + break; + } return true; } @@ -262,15 +335,21 @@ export default class AchvsUiHandler extends MessageUiHandler { * Determines what data is to be displayed on the UI and updates it accordingly based on the current value of this.scrollCursor */ updateAchvIcons(): void { + this.headerText.text = this.achvsName; + this.headerActionText.text = this.vouchersName; + const textPosition = this.headerBgX - this.headerActionText.displayWidth - 8; + this.headerActionText.setX(textPosition); + this.headerActionButton.setX(textPosition - this.headerActionButton.displayWidth - 4); + const achvUnlocks = this.scene.gameData.achvUnlocks; - const itemOffset = this.scrollCursor * this.ACHV_COLS; - const itemLimit = this.ACHV_ROWS * this.ACHV_COLS; + const itemOffset = this.scrollCursor * this.COLS; + const itemLimit = this.ROWS * this.COLS; const achvRange = Object.values(achvs).slice(itemOffset, itemLimit + itemOffset); achvRange.forEach((achv: Achv, i: integer) => { - const icon = this.achvIcons[i]; + const icon = this.icons[i]; const unlocked = achvUnlocks.hasOwnProperty(achv.id); const hidden = !unlocked && achv.secret && (!achv.parentId || !achvUnlocks.hasOwnProperty(achv.parentId)); const tinted = !hidden && !unlocked; @@ -284,14 +363,54 @@ export default class AchvsUiHandler extends MessageUiHandler { } }); - if (achvRange.length < this.achvIcons.length) { - this.achvIcons.slice(achvRange.length).map(i => i.setVisible(false)); + if (achvRange.length < this.icons.length) { + this.icons.slice(achvRange.length).map(i => i.setVisible(false)); } + + this.currentTotal = this.achvsTotal; + } + + /** + * updateVoucherIcons(): void + * Determines what data is to be displayed on the UI and updates it accordingly based on the current value of this.scrollCursor + */ + updateVoucherIcons(): void { + this.headerText.text = this.vouchersName; + this.headerActionText.text = this.achvsName; + const textPosition = this.headerBgX - this.headerActionText.displayWidth - 8; + this.headerActionText.setX(textPosition); + this.headerActionButton.setX(textPosition - this.headerActionButton.displayWidth - 4); + + const voucherUnlocks = this.scene.gameData.voucherUnlocks; + + const itemOffset = this.scrollCursor * this.COLS; + const itemLimit = this.ROWS * this.COLS; + + const voucherRange = Object.values(vouchers).slice(itemOffset, itemLimit + itemOffset); + + voucherRange.forEach((voucher: Voucher, i: integer) => { + const icon = this.icons[i]; + const unlocked = voucherUnlocks.hasOwnProperty(voucher.id); + + icon.setFrame(getVoucherTypeIcon(voucher.voucherType)); + icon.setVisible(true); + if (!unlocked) { + icon.setTintFill(0); + } else { + icon.clearTint(); + } + }); + + if (voucherRange.length < this.icons.length) { + this.icons.slice(voucherRange.length).map(i => i.setVisible(false)); + } + this.currentTotal = this.vouchersTotal; } clear() { super.clear(); - this.achvsContainer.setVisible(false); + this.currentPage = Page.ACHIEVEMENTS; + this.mainContainer.setVisible(false); this.eraseCursor(); } diff --git a/src/ui/admin-ui-handler.ts b/src/ui/admin-ui-handler.ts new file mode 100644 index 00000000000..5c91a36ab64 --- /dev/null +++ b/src/ui/admin-ui-handler.ts @@ -0,0 +1,88 @@ +import BattleScene from "#app/battle-scene.js"; +import { ModalConfig } from "./modal-ui-handler"; +import { Mode } from "./ui"; +import * as Utils from "../utils"; +import { FormModalUiHandler } from "./form-modal-ui-handler"; +import { Button } from "#app/enums/buttons.js"; + +export default class AdminUiHandler extends FormModalUiHandler { + + constructor(scene: BattleScene, mode: Mode | null = null) { + super(scene, mode); + } + + setup(): void { + super.setup(); + } + + getModalTitle(config?: ModalConfig): string { + return "Admin panel"; + } + + getFields(config?: ModalConfig): string[] { + return ["Username", "Discord ID"]; + } + + getWidth(config?: ModalConfig): number { + return 160; + } + + getMargin(config?: ModalConfig): [number, number, number, number] { + return [0, 0, 48, 0]; + } + + getButtonLabels(config?: ModalConfig): string[] { + return ["Link account", "Cancel"]; + } + + processInput(button: Button): boolean { + if (button === Button.SUBMIT && this.submitAction) { + this.submitAction(); + return true; + } + + return false; + } + + show(args: any[]): boolean { + if (super.show(args)) { + const config = args[0] as ModalConfig; + const originalSubmitAction = this.submitAction; + this.submitAction = (_) => { + this.submitAction = originalSubmitAction; + this.scene.ui.setMode(Mode.LOADING, { buttonActions: [] }); + const onFail = error => { + this.scene.ui.setMode(Mode.ADMIN, Object.assign(config, { errorMessage: error?.trim() })); + this.scene.ui.playError(); + }; + if (!this.inputs[0].text) { + return onFail("Username is required"); + } + if (!this.inputs[1].text) { + return onFail("Discord Id is required"); + } + Utils.apiPost("admin/account/discord-link", `username=${encodeURIComponent(this.inputs[0].text)}&discordId=${encodeURIComponent(this.inputs[1].text)}`, "application/x-www-form-urlencoded", true) + .then(response => { + if (!response.ok) { + console.error(response); + } + this.inputs[0].setText(""); + this.inputs[1].setText(""); + this.scene.ui.revertMode(); + }) + .catch((err) => { + console.error(err); + this.scene.ui.revertMode(); + }); + return false; + }; + return true; + } + return false; + + } + + clear(): void { + super.clear(); + } +} diff --git a/src/ui/autocomplete-ui-handler.ts b/src/ui/autocomplete-ui-handler.ts new file mode 100644 index 00000000000..480a3cf72d0 --- /dev/null +++ b/src/ui/autocomplete-ui-handler.ts @@ -0,0 +1,45 @@ +import { Button } from "#enums/buttons"; +import BattleScene from "../battle-scene"; +import AbstractOptionSelectUiHandler from "./abstact-option-select-ui-handler"; +import { Mode } from "./ui"; + +export default class AutoCompleteUiHandler extends AbstractOptionSelectUiHandler { + modalContainer: Phaser.GameObjects.Container; + constructor(scene: BattleScene, mode: Mode = Mode.OPTION_SELECT) { + super(scene, mode); + } + + getWindowWidth(): integer { + return 64; + } + + show(args: any[]): boolean { + if (args[0].modalContainer) { + const { modalContainer } = args[0]; + const show = super.show(args); + this.modalContainer = modalContainer; + this.setupOptions(); + + return show; + } + return false; + } + + protected setupOptions() { + super.setupOptions(); + if (this.modalContainer) { + this.optionSelectContainer.setSize(this.optionSelectContainer.height, Math.max(this.optionSelectText.displayWidth + 24, this.getWindowWidth())); + this.optionSelectContainer.setPositionRelative(this.modalContainer, this.optionSelectBg.width, this.optionSelectBg.height + 50); + } + } + + processInput(button: Button): boolean { + // the cancel and action button are here because if you're typing, x and z are used for cancel/action. This means you could be typing something and accidentally cancel/select when you don't mean to + // the submit button is therefore used to select a choice (the enter button), though this does not work on my local dev testing for phones, as for my phone/keyboard combo, the enter and z key are both + // bound to Button.ACTION, which makes this not work on mobile + if (button !== Button.CANCEL && button !== Button.ACTION) { + return super.processInput(button); + } + return false; + } +} diff --git a/src/ui/battle-info.ts b/src/ui/battle-info.ts index dbf0d5911c8..11b807e8ab7 100644 --- a/src/ui/battle-info.ts +++ b/src/ui/battle-info.ts @@ -713,7 +713,7 @@ export default class BattleInfo extends Phaser.GameObjects.Container { this.lastLevelExp = pokemon.levelExp; } if (duration) { - (this.scene as BattleScene).playSound("exp"); + (this.scene as BattleScene).playSound("se/exp"); } this.scene.tweens.add({ targets: this.expMaskRect, @@ -725,10 +725,10 @@ export default class BattleInfo extends Phaser.GameObjects.Container { return resolve(); } if (duration) { - this.scene.sound.stopByKey("exp"); + this.scene.sound.stopByKey("se/exp"); } if (ratio === 1) { - (this.scene as BattleScene).playSound("level_up"); + (this.scene as BattleScene).playSound("se/level_up"); this.setLevel(this.lastLevel); this.scene.time.delayedCall(500 * levelDurationMultiplier, () => { this.expMaskRect.x = 0; diff --git a/src/ui/battle-message-ui-handler.ts b/src/ui/battle-message-ui-handler.ts index 7a30e2787df..86f8d9e01a8 100644 --- a/src/ui/battle-message-ui-handler.ts +++ b/src/ui/battle-message-ui-handler.ts @@ -21,6 +21,8 @@ export default class BattleMessageUiHandler extends MessageUiHandler { public movesWindowContainer: Phaser.GameObjects.Container; public nameBoxContainer: Phaser.GameObjects.Container; + public readonly wordWrapWidth: number = 1780; + constructor(scene: BattleScene) { super(scene, Mode.MESSAGE); } @@ -63,7 +65,7 @@ export default class BattleMessageUiHandler extends MessageUiHandler { const message = addTextObject(this.scene, 0, 0, "", TextStyle.MESSAGE, { maxLines: 2, wordWrap: { - width: 1780 + width: this.wordWrapWidth } }); messageContainer.add(message); @@ -116,7 +118,7 @@ export default class BattleMessageUiHandler extends MessageUiHandler { this.levelUpStatsIncrContent = levelUpStatsIncrContent; - const levelUpStatsValuesContent = addBBCodeTextObject(this.scene, (this.scene.game.canvas.width / 6) - 7, -94, "", TextStyle.WINDOW, { maxLines: 6 , lineSpacing: 5}); + const levelUpStatsValuesContent = addBBCodeTextObject(this.scene, (this.scene.game.canvas.width / 6) - 7, -94, "", TextStyle.WINDOW, { maxLines: 6, lineSpacing: 5}); levelUpStatsValuesContent.setOrigin(1, 0); levelUpStatsValuesContent.setAlign("right"); levelUpStatsContainer.add(levelUpStatsValuesContent); @@ -129,7 +131,7 @@ export default class BattleMessageUiHandler extends MessageUiHandler { this.commandWindow.setVisible(false); this.movesWindowContainer.setVisible(false); - this.message.setWordWrapWidth(1780); + this.message.setWordWrapWidth(this.wordWrapWidth); return true; } @@ -161,7 +163,9 @@ export default class BattleMessageUiHandler extends MessageUiHandler { } showDialogue(text: string, name?: string, delay?: integer | null, callback?: Function, callbackDelay?: integer, prompt?: boolean, promptDelay?: integer) { - name && this.showNameText(name); + if (name) { + this.showNameText(name); + } super.showDialogue(text, name, delay, callback, callbackDelay, prompt, promptDelay); } @@ -252,9 +256,8 @@ export default class BattleMessageUiHandler extends MessageUiHandler { textStyle = TextStyle.SUMMARY_GREEN; } } else { - textStyle = TextStyle.SUMMARY; + textStyle = TextStyle.WINDOW; } - //const textStyle: TextStyle = isBetter ? TextStyle.SUMMARY_GREEN : TextStyle.SUMMARY; const color = getTextColor(textStyle, false, uiTheme); return `[color=${color}][shadow=${getTextColor(textStyle, true, uiTheme)}]${text}[/shadow][/color]`; }; diff --git a/src/ui/candy-bar.ts b/src/ui/candy-bar.ts index 5496ce9afce..14015f02259 100644 --- a/src/ui/candy-bar.ts +++ b/src/ui/candy-bar.ts @@ -71,7 +71,7 @@ export default class CandyBar extends Phaser.GameObjects.Container { this.tween.stop(); } - (this.scene as BattleScene).playSound("shing"); + (this.scene as BattleScene).playSound("se/shing"); this.tween = this.scene.tweens.add({ targets: this, diff --git a/src/ui/challenges-select-ui-handler.ts b/src/ui/challenges-select-ui-handler.ts index 73c47da41fe..f1ba0da6c51 100644 --- a/src/ui/challenges-select-ui-handler.ts +++ b/src/ui/challenges-select-ui-handler.ts @@ -35,6 +35,8 @@ export default class GameChallengesUiHandler extends UiHandler { private startCursor: Phaser.GameObjects.NineSlice; + private optionsWidth: number; + constructor(scene: BattleScene, mode: Mode | null = null) { super(scene, mode); } @@ -74,18 +76,19 @@ export default class GameChallengesUiHandler extends UiHandler { // difficultyName.setOrigin(0, 0); // difficultyName.setPositionRelative(difficultyBg, difficultyBg.width - difficultyName.displayWidth - 8, 4); - this.optionsBg = addWindow(this.scene, 0, headerBg.height, (this.scene.game.canvas.width / 9), (this.scene.game.canvas.height / 6) - headerBg.height - 2); + this.optionsWidth = this.scene.scaledCanvas.width * 0.6; + this.optionsBg = addWindow(this.scene, 0, headerBg.height, this.optionsWidth, this.scene.scaledCanvas.height - headerBg.height - 2); this.optionsBg.setName("window-options-bg"); this.optionsBg.setOrigin(0, 0); - const descriptionBg = addWindow(this.scene, 0, headerBg.height, (this.scene.game.canvas.width / 18) - 2, (this.scene.game.canvas.height / 6) - headerBg.height - 26); + const descriptionBg = addWindow(this.scene, 0, headerBg.height, this.scene.scaledCanvas.width - this.optionsWidth, this.scene.scaledCanvas.height - headerBg.height - 26); descriptionBg.setName("window-desc-bg"); descriptionBg.setOrigin(0, 0); descriptionBg.setPositionRelative(this.optionsBg, this.optionsBg.width, 0); this.descriptionText = new BBCodeText(this.scene, descriptionBg.x + 6, descriptionBg.y + 4, "", { fontFamily: "emerald", - fontSize: 96, + fontSize: 84, color: Color.ORANGE, padding: { bottom: 6 @@ -109,12 +112,12 @@ export default class GameChallengesUiHandler extends UiHandler { const startText = addTextObject(this.scene, 0, 0, i18next.t("common:start"), TextStyle.SETTINGS_LABEL); startText.setName("text-start"); startText.setOrigin(0, 0); - startText.setPositionRelative(startBg, 8, 4); + startText.setPositionRelative(startBg, (startBg.width - startText.displayWidth) / 2, 4); - this.startCursor = this.scene.add.nineslice(0, 0, "summary_moves_cursor", undefined, (this.scene.game.canvas.width / 18) - 10, 16, 1, 1, 1, 1); + this.startCursor = this.scene.add.nineslice(0, 0, "summary_moves_cursor", undefined, descriptionBg.width - 8, 16, 1, 1, 1, 1); this.startCursor.setName("9s-start-cursor"); this.startCursor.setOrigin(0, 0); - this.startCursor.setPositionRelative(startBg, 4, 4); + this.startCursor.setPositionRelative(startBg, 4, 3); this.startCursor.setVisible(false); this.valuesContainer = this.scene.add.container(0, 0); @@ -140,7 +143,7 @@ export default class GameChallengesUiHandler extends UiHandler { }; } - this.monoTypeValue = this.scene.add.sprite(8, 98, `types${Utils.verifyLang(i18next.resolvedLanguage) ? `_${i18next.resolvedLanguage}` : ""}`); + this.monoTypeValue = this.scene.add.sprite(8, 98, Utils.getLocalizedSpriteKey("types")); this.monoTypeValue.setName("challenge-value-monotype-sprite"); this.monoTypeValue.setScale(0.86); this.monoTypeValue.setVisible(false); @@ -355,7 +358,7 @@ export default class GameChallengesUiHandler extends UiHandler { let ret = super.setCursor(cursor); if (!this.cursorObj) { - this.cursorObj = this.scene.add.nineslice(0, 0, "summary_moves_cursor", undefined, (this.scene.game.canvas.width / 9) - 10, 16, 1, 1, 1, 1); + this.cursorObj = this.scene.add.nineslice(0, 0, "summary_moves_cursor", undefined, this.optionsWidth - 8, 16, 1, 1, 1, 1); this.cursorObj.setOrigin(0, 0); this.valuesContainer.add(this.cursorObj); } diff --git a/src/ui/dropdown.ts b/src/ui/dropdown.ts index cfe26570856..1fef7259108 100644 --- a/src/ui/dropdown.ts +++ b/src/ui/dropdown.ts @@ -472,7 +472,7 @@ export class DropDown extends Phaser.GameObjects.Container { private getSettings(): any[] { const settings : any[] = []; for (let i = 0; i < this.options.length; i++) { - settings.push({ val: this.options[i].val, state: this.options[i].state , cursor: (this.cursor === i), dir: this.options[i].dir }); + settings.push({ val: this.options[i].val, state: this.options[i].state, cursor: (this.cursor === i), dir: this.options[i].dir }); } return settings; } diff --git a/src/ui/egg-gacha-ui-handler.ts b/src/ui/egg-gacha-ui-handler.ts index 92f3aaea1a4..9497dfe58c6 100644 --- a/src/ui/egg-gacha-ui-handler.ts +++ b/src/ui/egg-gacha-ui-handler.ts @@ -221,7 +221,7 @@ export default class EggGachaUiHandler extends MessageUiHandler { const pullOptionsText = pullOptions.map(option =>{ const desc = option.description.split(" "); if (desc[0].length < 2) { - desc[0] += ["zh", "ko"].includes(resolvedLanguage.substring(0,2)) ? " " : " "; + desc[0] += ["zh", "ko"].includes(resolvedLanguage.substring(0, 2)) ? " " : " "; } if (option.multiplier === multiplierOne) { desc[0] = " " + desc[0]; @@ -355,11 +355,11 @@ export default class EggGachaUiHandler extends MessageUiHandler { this.gachaContainers[this.gachaCursor].moveTo(egg, 2); const doPullAnim = () => { - this.scene.playSound("gacha_running", { loop: true }); + this.scene.playSound("se/gacha_running", { loop: true }); this.scene.time.delayedCall(this.getDelayValue(count ? 500 : 1250), () => { - this.scene.playSound("gacha_dispense"); + this.scene.playSound("se/gacha_dispense"); this.scene.time.delayedCall(this.getDelayValue(750), () => { - this.scene.sound.stopByKey("gacha_running"); + this.scene.sound.stopByKey("se/gacha_running"); this.scene.tweens.add({ targets: egg, duration: this.getDelayValue(350), @@ -367,7 +367,7 @@ export default class EggGachaUiHandler extends MessageUiHandler { ease: "Bounce.easeOut", onComplete: () => { this.scene.time.delayedCall(this.getDelayValue(125), () => { - this.scene.playSound("pb_catch"); + this.scene.playSound("se/pb_catch"); this.gachaHatches[this.gachaCursor].play("open"); this.scene.tweens.add({ targets: egg, @@ -405,7 +405,7 @@ export default class EggGachaUiHandler extends MessageUiHandler { }; if (!count) { - this.scene.playSound("gacha_dial"); + this.scene.playSound("se/gacha_dial"); this.scene.tweens.add({ targets: this.gachaKnobs[this.gachaCursor], duration: this.getDelayValue(350), diff --git a/src/ui/fight-ui-handler.ts b/src/ui/fight-ui-handler.ts index 71d137fbfd7..0beaddbb517 100644 --- a/src/ui/fight-ui-handler.ts +++ b/src/ui/fight-ui-handler.ts @@ -44,7 +44,7 @@ export default class FightUiHandler extends UiHandler { this.moveInfoContainer.setName("move-info"); ui.add(this.moveInfoContainer); - this.typeIcon = this.scene.add.sprite(this.scene.scaledCanvas.width - 57, -36,`types${Utils.verifyLang(i18next.resolvedLanguage) ? `_${i18next.resolvedLanguage}` : ""}` , "unknown"); + this.typeIcon = this.scene.add.sprite(this.scene.scaledCanvas.width - 57, -36, Utils.getLocalizedSpriteKey("types"), "unknown"); this.typeIcon.setVisible(false); this.moveInfoContainer.add(this.typeIcon); @@ -179,15 +179,20 @@ export default class FightUiHandler extends UiHandler { if (hasMove) { const pokemonMove = moveset[cursor]!; // TODO: is the bang correct? - this.typeIcon.setTexture(`types${Utils.verifyLang(i18next.resolvedLanguage) ? `_${i18next.resolvedLanguage}` : ""}`, Type[pokemonMove.getMove().type].toLowerCase()).setScale(0.8); - this.moveCategoryIcon.setTexture("categories", MoveCategory[pokemonMove.getMove().category].toLowerCase()).setScale(1.0); + const moveType = pokemon.getMoveType(pokemonMove.getMove()); + const textureKey = Utils.getLocalizedSpriteKey("types"); + this.typeIcon.setTexture(textureKey, Type[moveType].toLowerCase()).setScale(0.8); + const moveCategory = pokemonMove.getMove().category; + this.moveCategoryIcon.setTexture("categories", MoveCategory[moveCategory].toLowerCase()).setScale(1.0); const power = pokemonMove.getMove().power; const accuracy = pokemonMove.getMove().accuracy; const maxPP = pokemonMove.getMovePp(); const pp = maxPP - pokemonMove.ppUsed; - this.ppText.setText(`${Utils.padInt(pp, 2, " ")}/${Utils.padInt(maxPP, 2, " ")}`); + const ppLeftStr = Utils.padInt(pp, 2, " "); + const ppMaxStr = Utils.padInt(maxPP, 2, " "); + this.ppText.setText(`${ppLeftStr}/${ppMaxStr}`); this.powerText.setText(`${power >= 0 ? power : "---"}`); this.accuracyText.setText(`${accuracy >= 0 ? accuracy : "---"}`); @@ -231,7 +236,7 @@ export default class FightUiHandler extends UiHandler { * Returns undefined if it's a status move */ private getEffectivenessText(pokemon: Pokemon, opponent: Pokemon, pokemonMove: PokemonMove): string | undefined { - const effectiveness = opponent.getMoveEffectiveness(pokemon, pokemonMove); + const effectiveness = opponent.getMoveEffectiveness(pokemon, pokemonMove.getMove(), !opponent.battleData?.abilityRevealed); if (effectiveness === undefined) { return undefined; } @@ -274,7 +279,7 @@ export default class FightUiHandler extends UiHandler { } const moveColors = opponents - .map((opponent) => opponent.getMoveEffectiveness(pokemon, pokemonMove)) + .map((opponent) => opponent.getMoveEffectiveness(pokemon, pokemonMove.getMove(), !opponent.battleData.abilityRevealed)) .sort((a, b) => b - a) .map((effectiveness) => getTypeDamageMultiplierColor(effectiveness ?? 0, "offense")); diff --git a/src/ui/form-modal-ui-handler.ts b/src/ui/form-modal-ui-handler.ts index 4516e39675c..8c4ea5f6768 100644 --- a/src/ui/form-modal-ui-handler.ts +++ b/src/ui/form-modal-ui-handler.ts @@ -6,7 +6,7 @@ import { WindowVariant, addWindow } from "./ui-theme"; import InputText from "phaser3-rex-plugins/plugins/inputtext"; import * as Utils from "../utils"; import i18next from "i18next"; -import {Button} from "#enums/buttons"; +import { Button } from "#enums/buttons"; export interface FormModalConfig extends ModalConfig { errorMessage?: string; @@ -60,7 +60,7 @@ export abstract class FormModalUiHandler extends ModalUiHandler { const inputBg = addWindow(this.scene, 0, 0, 80, 16, false, false, 0, 0, WindowVariant.XTHIN); const isPassword = field.includes(i18next.t("menu:password")) || field.includes(i18next.t("menu:confirmPassword")); - const input = addTextInputObject(this.scene, 4, -2, 440, 116, TextStyle.TOOLTIP_CONTENT, { type: isPassword ? "password" : "text", maxLength: isPassword ? 64 : 16 }); + const input = addTextInputObject(this.scene, 4, -2, 440, 116, TextStyle.TOOLTIP_CONTENT, { type: isPassword ? "password" : "text", maxLength: isPassword ? 64 : 18 }); input.setOrigin(0, 0); inputContainer.add(inputBg); diff --git a/src/ui/game-stats-ui-handler.ts b/src/ui/game-stats-ui-handler.ts index c28e5d851a2..967b3ae0dc4 100644 --- a/src/ui/game-stats-ui-handler.ts +++ b/src/ui/game-stats-ui-handler.ts @@ -9,6 +9,7 @@ import { DexAttr, GameData } from "../system/game-data"; import { speciesStarters } from "../data/pokemon-species"; import {Button} from "#enums/buttons"; import i18next from "i18next"; +import { UiTheme } from "#app/enums/ui-theme"; interface DisplayStat { label_key?: string; @@ -218,6 +219,9 @@ export default class GameStatsUiHandler extends UiHandler { private statLabels: Phaser.GameObjects.Text[]; private statValues: Phaser.GameObjects.Text[]; + private arrowUp: Phaser.GameObjects.Sprite; + private arrowDown: Phaser.GameObjects.Sprite; + constructor(scene: BattleScene, mode: Mode | null = null) { super(scene, mode); @@ -241,11 +245,9 @@ export default class GameStatsUiHandler extends UiHandler { const statsBgWidth = ((this.scene.game.canvas.width / 6) - 2) / 2; const [ statsBgLeft, statsBgRight ] = new Array(2).fill(null).map((_, i) => { - let width = statsBgWidth; - if (!i) { - width += 5; - } - const statsBg = addWindow(this.scene, statsBgWidth * i, headerBg.height, width, (this.scene.game.canvas.height / 6) - headerBg.height - 2, false, !!i, 2); + const width = statsBgWidth + 2; + const height = Math.floor((this.scene.game.canvas.height / 6) - headerBg.height - 2); + const statsBg = addWindow(this.scene, (statsBgWidth - 2) * i, headerBg.height, width, height, false, false, i>0?-3:0, 1); statsBg.setOrigin(0, 0); return statsBg; }); @@ -272,6 +274,14 @@ export default class GameStatsUiHandler extends UiHandler { this.gameStatsContainer.add(statsBgRight); this.gameStatsContainer.add(this.statsContainer); + // arrows to show that we can scroll through the stats + const isLegacyTheme = this.scene.uiTheme === UiTheme.LEGACY; + this.arrowDown = this.scene.add.sprite(statsBgWidth, this.scene.game.canvas.height / 6 - (isLegacyTheme? 9 : 5), "prompt"); + this.gameStatsContainer.add(this.arrowDown); + this.arrowUp = this.scene.add.sprite(statsBgWidth, headerBg.height + (isLegacyTheme? 7 : 3), "prompt"); + this.arrowUp.flipY = true; + this.gameStatsContainer.add(this.arrowUp); + ui.add(this.gameStatsContainer); this.setCursor(0); @@ -286,6 +296,15 @@ export default class GameStatsUiHandler extends UiHandler { this.updateStats(); + this.arrowUp.play("prompt"); + this.arrowDown.play("prompt"); + if (this.scene.uiTheme === UiTheme.LEGACY) { + this.arrowUp.setTint(0x484848); + this.arrowDown.setTint(0x484848); + } + + this.updateArrows(); + this.gameStatsContainer.setVisible(true); this.getUi().moveTo(this.gameStatsContainer, this.getUi().length - 1); @@ -311,6 +330,17 @@ export default class GameStatsUiHandler extends UiHandler { } } + /** + * Show arrows at the top / bottom of the page if it's possible to scroll in that direction + */ + updateArrows(): void { + const showUpArrow = this.cursor > 0; + this.arrowUp.setVisible(showUpArrow); + + const showDownArrow = this.cursor < Math.ceil((Object.keys(displayStats).length - 18) / 2); + this.arrowDown.setVisible(showDownArrow); + } + processInput(button: Button): boolean { const ui = this.getUi(); @@ -346,6 +376,7 @@ export default class GameStatsUiHandler extends UiHandler { if (ret) { this.updateStats(); + this.updateArrows(); } return ret; diff --git a/src/ui/login-form-ui-handler.ts b/src/ui/login-form-ui-handler.ts index 9a787b40b1b..5f4cb889574 100644 --- a/src/ui/login-form-ui-handler.ts +++ b/src/ui/login-form-ui-handler.ts @@ -159,7 +159,7 @@ export default class LoginFormUiHandler extends FormModalUiHandler { this.externalPartyContainer.setVisible(true); this.externalPartyBg.setSize(this.externalPartyTitle.text.length+50, this.modalBg.height); this.getUi().moveTo(this.externalPartyContainer, this.getUi().length - 1); - this.googleImage.setPosition(this.externalPartyBg.width/3.1,this.externalPartyBg.height-60); + this.googleImage.setPosition(this.externalPartyBg.width/3.1, this.externalPartyBg.height-60); this.discordImage.setPosition(this.externalPartyBg.width/3.1, this.externalPartyBg.height-40); this.externalPartyContainer.setAlpha(0); diff --git a/src/ui/menu-ui-handler.ts b/src/ui/menu-ui-handler.ts index 24e76035972..6349d219827 100644 --- a/src/ui/menu-ui-handler.ts +++ b/src/ui/menu-ui-handler.ts @@ -2,21 +2,23 @@ import BattleScene, { bypassLogin } from "../battle-scene"; import { TextStyle, addTextObject, getTextStyleOptions } from "./text"; import { Mode } from "./ui"; import * as Utils from "../utils"; -import { addWindow } from "./ui-theme"; +import { addWindow, WindowVariant } from "./ui-theme"; import MessageUiHandler from "./message-ui-handler"; import { OptionSelectConfig, OptionSelectItem } from "./abstact-option-select-ui-handler"; import { Tutorial, handleTutorial } from "../tutorial"; import { loggedInUser, updateUserInfo } from "../account"; import i18next from "i18next"; -import {Button} from "#enums/buttons"; +import { Button } from "#enums/buttons"; import { GameDataType } from "#enums/game-data-type"; import BgmBar from "#app/ui/bgm-bar"; +import AwaitableUiHandler from "./awaitable-ui-handler"; +import { SelectModifierPhase } from "#app/phases/select-modifier-phase"; enum MenuOptions { GAME_SETTINGS, ACHIEVEMENTS, STATS, - VOUCHERS, + RUN_HISTORY, EGG_LIST, EGG_GACHA, MANAGE_DATA, @@ -31,6 +33,10 @@ const githubUrl = "https://github.com/pagefaultgames/pokerogue"; const redditUrl = "https://www.reddit.com/r/pokerogue"; export default class MenuUiHandler extends MessageUiHandler { + private readonly textPadding = 8; + private readonly defaultMessageBoxWidth = 220; + private readonly defaultWordWrapWidth = 1224; + private menuContainer: Phaser.GameObjects.Container; private menuMessageBoxContainer: Phaser.GameObjects.Container; private menuOverlay: Phaser.GameObjects.Rectangle; @@ -46,17 +52,20 @@ export default class MenuUiHandler extends MessageUiHandler { protected manageDataConfig: OptionSelectConfig; protected communityConfig: OptionSelectConfig; + // Windows for the default message box and the message box for testing dialogue + private menuMessageBox: Phaser.GameObjects.NineSlice; + private dialogueMessageBox: Phaser.GameObjects.NineSlice; + protected scale: number = 0.1666666667; public bgmBar: BgmBar; - constructor(scene: BattleScene, mode: Mode | null = null) { super(scene, mode); this.excludedMenus = () => [ - { condition: [Mode.COMMAND, Mode.TITLE].includes(mode ?? Mode.TITLE), options: [ MenuOptions.EGG_GACHA, MenuOptions.EGG_LIST] }, - { condition: bypassLogin, options: [ MenuOptions.LOG_OUT ] } + { condition: [Mode.COMMAND, Mode.TITLE].includes(mode ?? Mode.TITLE), options: [MenuOptions.EGG_GACHA, MenuOptions.EGG_LIST] }, + { condition: bypassLogin, options: [MenuOptions.LOG_OUT] } ]; this.menuOptions = Utils.getEnumKeys(MenuOptions) @@ -69,7 +78,7 @@ export default class MenuUiHandler extends MessageUiHandler { setup(): void { const ui = this.getUi(); // wiki url directs based on languges available on wiki - const lang = i18next.resolvedLanguage?.substring(0,2)!; // TODO: is this bang correct? + const lang = i18next.resolvedLanguage?.substring(0, 2)!; // TODO: is this bang correct? if (["de", "fr", "ko", "zh"].includes(lang)) { wikiUrl = `https://wiki.pokerogue.net/${lang}:start`; } @@ -85,7 +94,7 @@ export default class MenuUiHandler extends MessageUiHandler { this.menuOverlay = new Phaser.GameObjects.Rectangle(this.scene, -1, -1, this.scene.scaledCanvas.width, this.scene.scaledCanvas.height, 0xffffff, 0.3); this.menuOverlay.setName("menu-overlay"); - this.menuOverlay.setOrigin(0,0); + this.menuOverlay.setOrigin(0, 0); this.menuContainer.add(this.menuOverlay); this.menuContainer.add(this.bgmBar); @@ -97,10 +106,9 @@ export default class MenuUiHandler extends MessageUiHandler { render() { const ui = this.getUi(); - console.log(ui.getModeChain()); this.excludedMenus = () => [ - { condition: ![Mode.COMMAND, Mode.TITLE].includes(ui.getModeChain()[0]), options: [ MenuOptions.EGG_GACHA, MenuOptions.EGG_LIST] }, - { condition: bypassLogin, options: [ MenuOptions.LOG_OUT ] } + { condition: this.scene.getCurrentPhase() instanceof SelectModifierPhase, options: [MenuOptions.EGG_GACHA, MenuOptions.EGG_LIST] }, + { condition: bypassLogin, options: [MenuOptions.LOG_OUT] } ]; this.menuOptions = Utils.getEnumKeys(MenuOptions) @@ -116,12 +124,12 @@ export default class MenuUiHandler extends MessageUiHandler { this.menuBg = addWindow(this.scene, (this.scene.game.canvas.width / 6) - (this.optionSelectText.displayWidth + 25), 0, - this.optionSelectText.displayWidth + 19+24*this.scale, + this.optionSelectText.displayWidth + 19 + 24 * this.scale, (this.scene.game.canvas.height / 6) - 2 ); this.menuBg.setOrigin(0, 0); - this.optionSelectText.setPositionRelative(this.menuBg, 10+24*this.scale, 6); + this.optionSelectText.setPositionRelative(this.menuBg, 10 + 24 * this.scale, 6); this.menuContainer.add(this.menuBg); @@ -132,20 +140,27 @@ export default class MenuUiHandler extends MessageUiHandler { this.menuMessageBoxContainer = this.scene.add.container(0, 130); this.menuMessageBoxContainer.setName("menu-message-box"); this.menuMessageBoxContainer.setVisible(false); - this.menuContainer.add(this.menuMessageBoxContainer); - const menuMessageBox = addWindow(this.scene, 0, -0, 220, 48); - menuMessageBox.setOrigin(0, 0); - this.menuMessageBoxContainer.add(menuMessageBox); + // Window for general messages + this.menuMessageBox = addWindow(this.scene, 0, 0, this.defaultMessageBoxWidth, 48); + this.menuMessageBox.setOrigin(0, 0); + this.menuMessageBoxContainer.add(this.menuMessageBox); - const menuMessageText = addTextObject(this.scene, 8, 8, "", TextStyle.WINDOW, { maxLines: 2 }); + // Full-width window used for testing dialog messages in debug mode + this.dialogueMessageBox = addWindow(this.scene, -this.textPadding, 0, this.scene.game.canvas.width / 6 + this.textPadding * 2, 49, false, false, 0, 0, WindowVariant.THIN); + this.dialogueMessageBox.setOrigin(0, 0); + this.menuMessageBoxContainer.add(this.dialogueMessageBox); + + const menuMessageText = addTextObject(this.scene, this.textPadding, this.textPadding, "", TextStyle.WINDOW, { maxLines: 2 }); menuMessageText.setName("menu-message"); - menuMessageText.setWordWrapWidth(1224); menuMessageText.setOrigin(0, 0); this.menuMessageBoxContainer.add(menuMessageText); this.message = menuMessageText; + // By default we use the general purpose message window + this.setDialogTestMode(false); + this.menuContainer.add(this.menuMessageBoxContainer); const manageDataOptions: any[] = []; // TODO: proper type @@ -156,7 +171,7 @@ export default class MenuUiHandler extends MessageUiHandler { const config: OptionSelectConfig = { options: new Array(5).fill(null).map((_, i) => i).filter(slotFilter).map(i => { return { - label: i18next.t("menuUiHandler:slot", {slotNumber: i+1}), + label: i18next.t("menuUiHandler:slot", { slotNumber: i + 1 }), handler: () => { callback(i); ui.revertMode(); @@ -209,6 +224,22 @@ export default class MenuUiHandler extends MessageUiHandler { }, keepOpen: true }); + manageDataOptions.push({ + label: i18next.t("menuUiHandler:importRunHistory"), + handler: () => { + this.scene.gameData.importData(GameDataType.RUN_HISTORY); + return true; + }, + keepOpen: true + }); + manageDataOptions.push({ + label: i18next.t("menuUiHandler:exportRunHistory"), + handler: () => { + this.scene.gameData.tryExportData(GameDataType.RUN_HISTORY); + return true; + }, + keepOpen: true + }); if (Utils.isLocal || Utils.isBeta) { manageDataOptions.push({ label: i18next.t("menuUiHandler:importData"), @@ -242,8 +273,55 @@ export default class MenuUiHandler extends MessageUiHandler { return true; }, keepOpen: true - }, - { + }); + if (Utils.isLocal || Utils.isBeta) { // this should make sure we don't have this option in live + manageDataOptions.push({ + label: "Test Dialogue", + handler: () => { + ui.playSelect(); + const prefilledText = ""; + const buttonAction: any = {}; + buttonAction["buttonActions"] = [ + (sanitizedName: string) => { + ui.revertMode(); + ui.playSelect(); + const dialogueTestName = sanitizedName; + const dialogueName = decodeURIComponent(escape(atob(dialogueTestName))); + const handler = ui.getHandler() as AwaitableUiHandler; + handler.tutorialActive = true; + const interpolatorOptions: any = {}; + const splitArr = dialogueName.split(" "); // this splits our inputted text into words to cycle through later + const translatedString = splitArr[0]; // this is our outputted i18 string + const regex = RegExp("\\{\\{(\\w*)\\}\\}", "g"); // this is a regex expression to find all the text between {{ }} in the i18 output + const matches = i18next.t(translatedString).match(regex) ?? []; + if (matches.length > 0) { + for (let match = 0; match < matches.length; match++) { + // we add 1 here because splitArr[0] is our first value for the translatedString, and after that is where the variables are + // the regex here in the replace (/\W/g) is to remove the {{ and }} and just give us all alphanumeric characters + if (typeof splitArr[match + 1] !== "undefined") { + interpolatorOptions[matches[match].replace(/\W/g, "")] = i18next.t(splitArr[match + 1]); + } + } + } + // Switch to the dialog test window + this.setDialogTestMode(true); + ui.showText(String(i18next.t(translatedString, interpolatorOptions)), null, () => this.scene.ui.showText("", 0, () => { + handler.tutorialActive = false; + // Go back to the default message window + this.setDialogTestMode(false); + }), null, true); + }, + () => { + ui.revertMode(); + } + ]; + ui.setMode(Mode.TEST_DIALOGUE, buttonAction, prefilledText); + return true; + }, + keepOpen: true + }); + } + manageDataOptions.push({ label: i18next.t("menuUiHandler:cancel"), handler: () => { this.scene.ui.revertMode(); @@ -252,9 +330,11 @@ export default class MenuUiHandler extends MessageUiHandler { keepOpen: true }); + //Thank you Vassiat this.manageDataConfig = { xOffset: 98, - options: manageDataOptions + options: manageDataOptions, + maxOptions: 7 }; const communityOptions: OptionSelectItem[] = [ @@ -289,16 +369,34 @@ export default class MenuUiHandler extends MessageUiHandler { return true; }, keepOpen: true - }, - { - label: i18next.t("menuUiHandler:cancel"), + }]; + if (!bypassLogin && loggedInUser?.hasAdminRole) { + communityOptions.push({ + label: "Admin", handler: () => { - this.scene.ui.revertMode(); + ui.playSelect(); + ui.setOverlayMode(Mode.ADMIN, { + buttonActions: [ + () => { + ui.revertMode(); + }, + () => { + ui.revertMode(); + } + ] + }); return true; - } + }, + keepOpen: true + }); + } + communityOptions.push({ + label: i18next.t("menuUiHandler:cancel"), + handler: () => { + this.scene.ui.revertMode(); + return true; } - ]; - + }); this.communityConfig = { xOffset: 98, options: communityOptions @@ -323,7 +421,7 @@ export default class MenuUiHandler extends MessageUiHandler { this.getUi().hideTooltip(); - this.scene.playSound("menu_open"); + this.scene.playSound("ui/menu_open"); handleTutorial(this.scene, Tutorial.Menu); @@ -365,8 +463,8 @@ export default class MenuUiHandler extends MessageUiHandler { ui.setOverlayMode(Mode.GAME_STATS); success = true; break; - case MenuOptions.VOUCHERS: - ui.setOverlayMode(Mode.VOUCHERS); + case MenuOptions.RUN_HISTORY: + ui.setOverlayMode(Mode.RUN_HISTORY); success = true; break; case MenuOptions.EGG_LIST: @@ -386,7 +484,7 @@ export default class MenuUiHandler extends MessageUiHandler { break; case MenuOptions.MANAGE_DATA: if (!bypassLogin && !this.manageDataConfig.options.some(o => o.label === i18next.t("menuUiHandler:linkDiscord") || o.label === i18next.t("menuUiHandler:unlinkDiscord"))) { - this.manageDataConfig.options.splice(this.manageDataConfig.options.length-1,0, + this.manageDataConfig.options.splice(this.manageDataConfig.options.length - 1, 0, { label: loggedInUser?.discordId === "" ? i18next.t("menuUiHandler:linkDiscord") : i18next.t("menuUiHandler:unlinkDiscord"), handler: () => { @@ -512,6 +610,21 @@ export default class MenuUiHandler extends MessageUiHandler { return success || error; } + /** + * Switch the message window style and size when we are replaying dialog for debug purposes + * In "dialog test mode", the window takes the whole width of the screen and the text + * is set up to wrap around the same way as the dialogue during the game + * @param isDialogMode whether to use the dialog test + */ + setDialogTestMode(isDialogMode: boolean) { + this.menuMessageBox.setVisible(!isDialogMode); + this.dialogueMessageBox.setVisible(isDialogMode); + // If we're testing dialog, we use the same word wrapping as the battle message handler + this.message.setWordWrapWidth(isDialogMode ? this.scene.ui.getMessageHandler().wordWrapWidth : this.defaultWordWrapWidth); + this.message.setX(isDialogMode ? this.textPadding + 1 : this.textPadding); + this.message.setY(isDialogMode ? this.textPadding + 0.4 : this.textPadding); + } + showText(text: string, delay?: number, callback?: Function, callbackDelay?: number, prompt?: boolean, promptDelay?: number): void { this.menuMessageBoxContainer.setVisible(!!text); diff --git a/src/ui/modifier-select-ui-handler.ts b/src/ui/modifier-select-ui-handler.ts index 016708027ca..6e9a33df5d8 100644 --- a/src/ui/modifier-select-ui-handler.ts +++ b/src/ui/modifier-select-ui-handler.ts @@ -12,6 +12,7 @@ import { allMoves } from "../data/move"; import * as Utils from "./../utils"; import Overrides from "#app/overrides"; import i18next from "i18next"; +import { ShopCursorTarget } from "#app/enums/shop-cursor-target"; export const SHOP_OPTIONS_ROW_LIMIT = 6; @@ -121,6 +122,9 @@ export default class ModifierSelectUiHandler extends AwaitableUiHandler { } show(args: any[]): boolean { + + this.scene.disableMenu = false; + if (this.active) { if (args.length >= 3) { this.awaitingActionInput = true; @@ -249,11 +253,22 @@ export default class ModifierSelectUiHandler extends AwaitableUiHandler { duration: 250 }); - this.setCursor(0); - this.setRowCursor(1); + const updateCursorTarget = () => { + if (this.scene.shopCursorTarget === ShopCursorTarget.CHECK_TEAM) { + this.setRowCursor(0); + this.setCursor(2); + } else { + this.setRowCursor(this.scene.shopCursorTarget); + this.setCursor(0); + } + }; - handleTutorial(this.scene, Tutorial.Select_Item).then(() => { - this.setCursor(0); + updateCursorTarget(); + + handleTutorial(this.scene, Tutorial.Select_Item).then((res) => { + if (res) { + updateCursorTarget(); + } this.awaitingActionInput = true; this.onActionInput = args[2]; }); @@ -322,7 +337,11 @@ export default class ModifierSelectUiHandler extends AwaitableUiHandler { success = false; break; case 1: - success = this.rerollButtonContainer.visible && this.setCursor(0); + if (this.lockRarityButtonContainer.visible) { + success = this.setCursor(3); + } else { + success = this.rerollButtonContainer.visible && this.setCursor(0); + } break; case 2: if (this.transferButtonContainer.visible) { @@ -356,6 +375,13 @@ export default class ModifierSelectUiHandler extends AwaitableUiHandler { case 2: success = false; break; + case 3: + if (this.transferButtonContainer.visible) { + success = this.setCursor(1); + } else { + success = this.setCursor(2); + } + break; } } else if (this.cursor < this.getRowItems(this.rowCursor) - 1) { success = this.setCursor(this.cursor + 1); @@ -631,7 +657,7 @@ class ModifierOption extends Phaser.GameObjects.Container { } const value = t.getValue(); if (!bounce && value > lastValue) { - (this.scene as BattleScene).playSound("pb_bounce_1", { volume: 1 / ++bounceCount }); + (this.scene as BattleScene).playSound("se/pb_bounce_1", { volume: 1 / ++bounceCount }); bounce = true; } else if (bounce && value < lastValue) { bounce = false; @@ -643,7 +669,7 @@ class ModifierOption extends Phaser.GameObjects.Container { for (let u = 0; u < this.modifierTypeOption.upgradeCount; u++) { const upgradeIndex = u; this.scene.time.delayedCall(remainingDuration - 2000 * (this.modifierTypeOption.upgradeCount - (upgradeIndex + 1 + upgradeCountOffset)), () => { - (this.scene as BattleScene).playSound("upgrade", { rate: 1 + 0.25 * upgradeIndex }); + (this.scene as BattleScene).playSound("se/upgrade", { rate: 1 + 0.25 * upgradeIndex }); this.pbTint.setPosition(this.pb.x, this.pb.y); this.pbTint.setTintFill(0xFFFFFF); this.pbTint.setAlpha(0); @@ -677,7 +703,7 @@ class ModifierOption extends Phaser.GameObjects.Container { if (!this.modifierTypeOption.cost) { this.pb.setTexture("pb", `${this.getPbAtlasKey(0)}_open`); - (this.scene as BattleScene).playSound("pb_rel"); + (this.scene as BattleScene).playSound("se/pb_rel"); this.scene.tweens.add({ targets: this.pb, diff --git a/src/ui/move-info-overlay.ts b/src/ui/move-info-overlay.ts index ded19b01a12..859e95a39b6 100644 --- a/src/ui/move-info-overlay.ts +++ b/src/ui/move-info-overlay.ts @@ -90,7 +90,7 @@ export default class MoveInfoOverlay extends Phaser.GameObjects.Container implem valuesBg.setOrigin(0, 0); this.val.add(valuesBg); - this.typ = this.scene.add.sprite(25, EFF_HEIGHT - 35,`types${Utils.verifyLang(i18next.language) ? `_${i18next.language}` : ""}` , "unknown"); + this.typ = this.scene.add.sprite(25, EFF_HEIGHT - 35, `types${Utils.verifyLang(i18next.language) ? `_${i18next.language}` : ""}`, "unknown"); this.typ.setScale(0.8); this.val.add(this.typ); diff --git a/src/ui/party-ui-handler.ts b/src/ui/party-ui-handler.ts index 66c777944d1..e7c4069c16e 100644 --- a/src/ui/party-ui-handler.ts +++ b/src/ui/party-ui-handler.ts @@ -5,7 +5,7 @@ import { Command } from "./command-ui-handler"; import MessageUiHandler from "./message-ui-handler"; import { Mode } from "./ui"; import * as Utils from "../utils"; -import { PokemonBaseStatModifier, PokemonFormChangeItemModifier, PokemonHeldItemModifier, SwitchEffectTransferModifier } from "../modifier/modifier"; +import { PokemonFormChangeItemModifier, PokemonHeldItemModifier, SwitchEffectTransferModifier } from "../modifier/modifier"; import { allMoves, ForceSwitchOutAttr } from "../data/move"; import { getGenderColor, getGenderSymbol } from "../data/gender"; import { StatusEffect } from "../data/status-effect"; @@ -989,14 +989,8 @@ export default class PartyUiHandler extends MessageUiHandler { optionText.setOrigin(0, 0); /** For every item that has stack bigger than 1, display the current quantity selection */ - if (this.partyUiMode === PartyUiMode.MODIFIER_TRANSFER && this.transferQuantitiesMax[option] > 1) { - const itemModifier = itemModifiers[option]; - - /** Not sure why getMaxHeldItemCount had an error, but it only checks the Pokemon parameter if the modifier is PokemonBaseStatModifier */ - if (itemModifier === undefined || itemModifier instanceof PokemonBaseStatModifier) { - continue; - } - + const itemModifier = itemModifiers[option]; + if (this.partyUiMode === PartyUiMode.MODIFIER_TRANSFER && this.transferQuantitiesMax[option] > 1 && !this.transferMode && itemModifier !== undefined && itemModifier.type.name === optionName) { let amountText = ` (${this.transferQuantities[option]})`; /** If the amount held is the maximum, display the count in red */ diff --git a/src/ui/pokeball-tray.ts b/src/ui/pokeball-tray.ts index cf3b24c4d11..0313812ef79 100644 --- a/src/ui/pokeball-tray.ts +++ b/src/ui/pokeball-tray.ts @@ -57,7 +57,7 @@ export default class PokeballTray extends Phaser.GameObjects.Container { ball.setFrame(ballFrame); }); - (this.scene as BattleScene).playSound("pb_tray_enter"); + (this.scene as BattleScene).playSound("se/pb_tray_enter"); this.scene.tweens.add({ targets: this, @@ -71,7 +71,7 @@ export default class PokeballTray extends Phaser.GameObjects.Container { x: `${this.player ? "-" : "+"}=104`, duration: b * 100, ease: "Sine.easeIn", - onComplete: () => (this.scene as BattleScene).playSound(b < party.length ? "pb_tray_ball" : "pb_tray_empty") + onComplete: () => (this.scene as BattleScene).playSound(`se/${(b < party.length ? "pb_tray_ball" : "pb_tray_empty")}`) }); }); } diff --git a/src/ui/run-history-ui-handler.ts b/src/ui/run-history-ui-handler.ts new file mode 100644 index 00000000000..8f132a1ab1c --- /dev/null +++ b/src/ui/run-history-ui-handler.ts @@ -0,0 +1,389 @@ +import BattleScene from "../battle-scene"; +import { GameModes } from "../game-mode"; +import { TextStyle, addTextObject } from "./text"; +import { Mode } from "./ui"; +import { addWindow } from "./ui-theme"; +import * as Utils from "../utils"; +import PokemonData from "../system/pokemon-data"; +import MessageUiHandler from "./message-ui-handler"; +import i18next from "i18next"; +import {Button} from "../enums/buttons"; +import { BattleType } from "../battle"; +import { RunEntry } from "../system/game-data"; +import { PlayerGender } from "#enums/player-gender"; +import { TrainerVariant } from "../field/trainer"; + +export type RunSelectCallback = (cursor: integer) => void; + +export const RUN_HISTORY_LIMIT: number = 25; + +/** + * RunHistoryUiHandler handles the UI of the Run History Menu + * Run History itself is broken into an array of RunEntryContainer objects that can show the user basic details about their run and allow them to access more details about their run through cursor action. + * It navigates similarly to the UI of the save slot select menu. + * The only valid input buttons are Button.ACTION and Button.CANCEL. + */ +export default class RunHistoryUiHandler extends MessageUiHandler { + + private runSelectContainer: Phaser.GameObjects.Container; + private runsContainer: Phaser.GameObjects.Container; + private runSelectMessageBox: Phaser.GameObjects.NineSlice; + private runSelectMessageBoxContainer: Phaser.GameObjects.Container; + private runs: RunEntryContainer[]; + + private runSelectCallback: RunSelectCallback | null; + + private scrollCursor: integer = 0; + + private cursorObj: Phaser.GameObjects.NineSlice | null; + + private runContainerInitialY: number; + + constructor(scene: BattleScene) { + super(scene, Mode.RUN_HISTORY); + } + + override setup() { + const ui = this.getUi(); + + this.runSelectContainer = this.scene.add.container(0, 0); + this.runSelectContainer.setVisible(false); + ui.add(this.runSelectContainer); + + const loadSessionBg = this.scene.add.rectangle(0, 0, this.scene.game.canvas.width / 6, -this.scene.game.canvas.height / 6, 0x006860); + loadSessionBg.setOrigin(0, 0); + this.runSelectContainer.add(loadSessionBg); + + this.runContainerInitialY = -this.scene.game.canvas.height / 6 + 8; + + this.runsContainer = this.scene.add.container(8, this.runContainerInitialY); + this.runSelectContainer.add(this.runsContainer); + + this.runs = []; + + this.scene.loadImage("hall_of_fame_red", "ui"); + this.scene.loadImage("hall_of_fame_blue", "ui"); + // For some reason, the game deletes/unloads the rival sprites. As a result, Run Info cannot access the rival sprites. + // The rivals are loaded here to have some way of accessing those sprites. + this.scene.loadAtlas("rival_f", "trainer"); + this.scene.loadAtlas("rival_m", "trainer"); + } + + override show(args: any[]): boolean { + super.show(args); + + this.getUi().bringToTop(this.runSelectContainer); + this.runSelectContainer.setVisible(true); + this.populateRuns(this.scene); + + this.setScrollCursor(0); + this.setCursor(0); + + //Destroys the cursor if there are no runs saved so far. + if (this.runs.length === 0) { + this.clearCursor(); + } + + return true; + } + + /** + * Performs a certain action based on the button pressed by the user + * @param button + * The user can navigate through the runs with Button.UP/Button.DOWN. + * Button.ACTION allows the user to access more information about their runs. + * Button.CANCEL allows the user to go back. + */ + override processInput(button: Button): boolean { + const ui = this.getUi(); + + let success = false; + const error = false; + + if ([Button.ACTION, Button.CANCEL].includes(button)) { + if (button === Button.ACTION) { + const cursor = this.cursor + this.scrollCursor; + if (this.runs[cursor]) { + this.scene.ui.setOverlayMode(Mode.RUN_INFO, this.runs[cursor].entryData, true); + } else { + return false; + } + success = true; + return success; + } else { + this.runSelectCallback = null; + success = true; + this.scene.ui.revertMode(); + } + } else if (this.runs.length > 0) { + switch (button) { + case Button.UP: + if (this.cursor) { + success = this.setCursor(this.cursor - 1); + } else if (this.scrollCursor) { + success = this.setScrollCursor(this.scrollCursor - 1); + } + break; + case Button.DOWN: + if (this.cursor < 2) { + success = this.setCursor(this.cursor + 1); + } else if (this.scrollCursor < this.runs.length - 3) { + success = this.setScrollCursor(this.scrollCursor + 1); + } + break; + } + } + + if (success) { + ui.playSelect(); + } else if (error) { + ui.playError(); + } + return success || error; + } + + /** + * This retrieves the player's run history and facilitates the processes necessary for the output display. + * @param scene: BattleScene + * Runs are displayed from newest --> oldest in descending order. + * In the for loop, each run is processed to create an RunEntryContainer used to display and store the run's unique information + */ + private async populateRuns(scene: BattleScene) { + const response = await this.scene.gameData.getRunHistoryData(this.scene); + const timestamps = Object.keys(response); + if (timestamps.length === 0) { + this.showEmpty(); + return; + } + const timestampsNo = timestamps.map(Number); + if (timestamps.length > 1) { + timestampsNo.sort((a, b) => b - a); + } + const entryCount = timestamps.length; + for (let s = 0; s < entryCount; s++) { + const entry = new RunEntryContainer(this.scene, response[timestampsNo[s]], s); + this.scene.add.existing(entry); + this.runsContainer.add(entry); + this.runs.push(entry); + } + if (this.cursorObj && timestamps.length > 0) { + this.runsContainer.bringToTop(this.cursorObj); + } + } + + /** + * If the player has no runs saved so far, this creates a giant window labeled empty instead. + */ + private async showEmpty() { + const emptyWindow = addWindow(this.scene, 0, 0, 304, 165); + this.runsContainer.add(emptyWindow); + const emptyWindowCoordinates = emptyWindow.getCenter(); + const emptyText = addTextObject(this.scene, 0, 0, i18next.t("saveSlotSelectUiHandler:empty"), TextStyle.WINDOW, {fontSize: "128px"}); + emptyText.setPosition(emptyWindowCoordinates.x-18, emptyWindowCoordinates.y-15); + this.runsContainer.add(emptyText); + } + + override setCursor(cursor: number): boolean { + const changed = super.setCursor(cursor); + + if (!this.cursorObj) { + this.cursorObj = this.scene.add.nineslice(0, 0, "select_cursor_highlight_thick", undefined, 296, 46, 6, 6, 6, 6); + this.cursorObj.setOrigin(0, 0); + this.runsContainer.add(this.cursorObj); + } + this.cursorObj.setPosition(4, 4 + (cursor + this.scrollCursor) * 56); + return changed; + } + + private setScrollCursor(scrollCursor: number): boolean { + const changed = scrollCursor !== this.scrollCursor; + + if (changed) { + this.scrollCursor = scrollCursor; + this.setCursor(this.cursor); + this.scene.tweens.add({ + targets: this.runsContainer, + y: this.runContainerInitialY - 56 * scrollCursor, + duration: Utils.fixedInt(325), + ease: "Sine.easeInOut" + }); + } + return changed; + } + + /** + * Called when the player returns back to the menu + * Uses the functions clearCursor() and clearRuns() + */ + override clear() { + super.clear(); + this.runSelectContainer.setVisible(false); + this.clearCursor(); + this.runSelectCallback = null; + this.clearRuns(); + } + + private clearCursor() { + if (this.cursorObj) { + this.cursorObj.destroy(); + } + this.cursorObj = null; + } + + private clearRuns() { + this.runs.splice(0, this.runs.length); + this.runsContainer.removeAll(true); + } +} + +/** + * RunEntryContainer : stores/displays an individual run + * slotId: necessary for positioning + * entryData: the data of an individual run + */ +class RunEntryContainer extends Phaser.GameObjects.Container { + private slotId: number; + public entryData: RunEntry; + + constructor(scene: BattleScene, entryData: RunEntry, slotId: number) { + super(scene, 0, slotId*56); + + this.slotId = slotId; + this.entryData = entryData; + + this.setup(this.entryData); + + } + + /** + * This processes the individual run's data for display. + * + * Each RunEntryContainer displayed should have the following information: + * Run Result: Victory || Defeat + * Game Mode + Final Wave + * Time Stamp + * + * The player's party and their levels at the time of the last wave of the run are also displayed. + */ + private setup(run: RunEntry) { + + const victory = run.isVictory; + const data = this.scene.gameData.parseSessionData(JSON.stringify(run.entry)); + + const slotWindow = addWindow(this.scene, 0, 0, 304, 52); + this.add(slotWindow); + + // Run Result: Victory + if (victory) { + const gameOutcomeLabel = addTextObject(this.scene, 8, 5, `${i18next.t("runHistory:victory")}`, TextStyle.WINDOW); + this.add(gameOutcomeLabel); + } else { // Run Result: Defeats + const genderIndex = this.scene.gameData.gender ?? PlayerGender.UNSET; + const genderStr = PlayerGender[genderIndex].toLowerCase(); + // Defeats from wild Pokemon battles will show the Pokemon responsible by the text of the run result. + if (data.battleType === BattleType.WILD) { + const enemyContainer = this.scene.add.container(8, 5); + const gameOutcomeLabel = addTextObject(this.scene, 0, 0, `${i18next.t("runHistory:defeatedWild", { context: genderStr })}`, TextStyle.WINDOW); + enemyContainer.add(gameOutcomeLabel); + data.enemyParty.forEach((enemyData, e) => { + const enemyIconContainer = this.scene.add.container(65+(e*25), -8); + enemyIconContainer.setScale(0.75); + enemyData.boss = false; + enemyData["player"] = true; + const enemy = enemyData.toPokemon(this.scene); + const enemyIcon = this.scene.addPokemonIcon(enemy, 0, 0, 0, 0); + const enemyLevel = addTextObject(this.scene, 32, 20, `${i18next.t("saveSlotSelectUiHandler:lv")}${Utils.formatLargeNumber(enemy.level, 1000)}`, TextStyle.PARTY, { fontSize: "54px", color: "#f8f8f8" }); + enemyLevel.setShadow(0, 0, undefined); + enemyLevel.setStroke("#424242", 14); + enemyLevel.setOrigin(1, 0); + enemyIconContainer.add(enemyIcon); + enemyIconContainer.add(enemyLevel); + enemyContainer.add(enemyIconContainer); + enemy.destroy(); + }); + this.add(enemyContainer); + } else if (data.battleType === BattleType.TRAINER) { // Defeats from Trainers show the trainer's title and name + const tObj = data.trainer.toTrainer(this.scene); + // Because of the interesting mechanics behind rival names, the rival name and title have to be retrieved differently + const RIVAL_TRAINER_ID_THRESHOLD = 375; + if (data.trainer.trainerType >= RIVAL_TRAINER_ID_THRESHOLD) { + const rivalName = (tObj.variant === TrainerVariant.FEMALE) ? "trainerNames:rival_female" : "trainerNames:rival"; + const gameOutcomeLabel = addTextObject(this.scene, 8, 5, `${i18next.t("runHistory:defeatedRival", { context: genderStr })} ${i18next.t(rivalName)}`, TextStyle.WINDOW); + this.add(gameOutcomeLabel); + } else { + const gameOutcomeLabel = addTextObject(this.scene, 8, 5, `${i18next.t("runHistory:defeatedTrainer", { context: genderStr })}${tObj.getName(0, true)}`, TextStyle.WINDOW); + this.add(gameOutcomeLabel); + } + } + } + + // Game Mode + Waves + // Because Endless (Spliced) tends to have the longest name across languages, the line tends to spill into the party icons. + // To fix this, the Spliced icon is used to indicate an Endless Spliced run + const gameModeLabel = addTextObject(this.scene, 8, 19, "", TextStyle.WINDOW); + let mode = ""; + switch (data.gameMode) { + case GameModes.DAILY: + mode = i18next.t("gameMode:dailyRun"); + break; + case GameModes.SPLICED_ENDLESS: + case GameModes.ENDLESS: + mode = i18next.t("gameMode:endless"); + break; + case GameModes.CLASSIC: + mode = i18next.t("gameMode:classic"); + break; + case GameModes.CHALLENGE: + mode = i18next.t("gameMode:challenge"); + break; + } + gameModeLabel.appendText(mode, false); + if (data.gameMode === GameModes.SPLICED_ENDLESS) { + const splicedIcon = this.scene.add.image(0, 0, "icon_spliced"); + splicedIcon.setScale(0.75); + const coords = gameModeLabel.getTopRight(); + splicedIcon.setPosition(coords.x+5, 27); + this.add(splicedIcon); + // 4 spaces of room for the Spliced icon + gameModeLabel.appendText(" - ", false); + } else { + gameModeLabel.appendText(" - ", false); + } + gameModeLabel.appendText(i18next.t("saveSlotSelectUiHandler:wave")+" "+data.waveIndex, false); + this.add(gameModeLabel); + + const timestampLabel = addTextObject(this.scene, 8, 33, new Date(data.timestamp).toLocaleString(), TextStyle.WINDOW); + this.add(timestampLabel); + + // pokemonIconsContainer holds the run's party Pokemon icons and levels + // Icons should be level with each other here, but there are significant number of icons that have a center axis / position far from the norm. + // The code here does not account for icon weirdness. + const pokemonIconsContainer = this.scene.add.container(140, 17); + + data.party.forEach((p: PokemonData, i: integer) => { + const iconContainer = this.scene.add.container(26 * i, 0); + iconContainer.setScale(0.75); + const pokemon = p.toPokemon(this.scene); + const icon = this.scene.addPokemonIcon(pokemon, 0, 0, 0, 0); + + const text = addTextObject(this.scene, 32, 20, `${i18next.t("saveSlotSelectUiHandler:lv")}${Utils.formatLargeNumber(pokemon.level, 1000)}`, TextStyle.PARTY, { fontSize: "54px", color: "#f8f8f8" }); + text.setShadow(0, 0, undefined); + text.setStroke("#424242", 14); + text.setOrigin(1, 0); + + iconContainer.add(icon); + iconContainer.add(text); + + pokemonIconsContainer.add(iconContainer); + + pokemon.destroy(); + }); + + this.add(pokemonIconsContainer); + } +} + +interface RunEntryContainer { + scene: BattleScene; +} + diff --git a/src/ui/run-info-ui-handler.ts b/src/ui/run-info-ui-handler.ts new file mode 100644 index 00000000000..25210277edc --- /dev/null +++ b/src/ui/run-info-ui-handler.ts @@ -0,0 +1,878 @@ +import BattleScene from "../battle-scene"; +import { GameModes } from "../game-mode"; +import UiHandler from "./ui-handler"; +import { SessionSaveData } from "../system/game-data"; +import { TextStyle, addTextObject, addBBCodeTextObject, getTextColor } from "./text"; +import { Mode } from "./ui"; +import { addWindow } from "./ui-theme"; +import * as Utils from "../utils"; +import PokemonData from "../system/pokemon-data"; +import i18next from "i18next"; +import {Button} from "../enums/buttons"; +import { BattleType } from "../battle"; +import { TrainerVariant } from "../field/trainer"; +import { Challenges } from "#enums/challenges"; +import { getLuckString, getLuckTextTint } from "../modifier/modifier-type"; +import RoundRectangle from "phaser3-rex-plugins/plugins/roundrectangle.js"; +import { Type, getTypeRgb } from "../data/type"; +import { getNatureStatMultiplier, getNatureName } from "../data/nature"; +import { getVariantTint } from "#app/data/variant"; +import { PokemonHeldItemModifier, TerastallizeModifier } from "../modifier/modifier"; +import {modifierSortFunc} from "../modifier/modifier"; +import { Species } from "#enums/species"; +import { PlayerGender } from "#enums/player-gender"; + +/** + * RunInfoUiMode indicates possible overlays of RunInfoUiHandler. + * MAIN <-- default overlay that can return back to RunHistoryUiHandler + should eventually have its own enum once more pages are added to RunInfoUiHandler + * HALL_OF_FAME, ENDING_ART, etc. <-- overlays that should return back to MAIN + */ +enum RunInfoUiMode { + MAIN, + HALL_OF_FAME, + ENDING_ART +} + +/** + * Some variables are protected because this UI class will most likely be extended in the future to display more information. + * These variables will most likely be shared across 'classes' aka pages. + * I believe that it is possible that the contents/methods of the first page will be placed in their own class that is an extension of RunInfoUiHandler as more pages are added. + * For now, I leave as is. + */ +export default class RunInfoUiHandler extends UiHandler { + protected runInfo: SessionSaveData; + protected isVictory: boolean; + protected pageMode: RunInfoUiMode; + protected runContainer: Phaser.GameObjects.Container; + + private runResultContainer: Phaser.GameObjects.Container; + private runInfoContainer: Phaser.GameObjects.Container; + private partyContainer: Phaser.GameObjects.Container; + private partyHeldItemsContainer: Phaser.GameObjects.Container; + private statsBgWidth: integer; + private partyContainerHeight: integer; + private partyContainerWidth: integer; + + private hallofFameContainer: Phaser.GameObjects.Container; + private endCardContainer: Phaser.GameObjects.Container; + + private partyInfo: Phaser.GameObjects.Container[]; + private partyVisibility: Boolean; + private modifiersModule: any; + + constructor(scene: BattleScene) { + super(scene, Mode.RUN_INFO); + } + + override async setup() { + this.runContainer = this.scene.add.container(1, -(this.scene.game.canvas.height / 6) + 1); + // The import of the modifiersModule is loaded here to sidestep async/await issues. + this.modifiersModule = await import("../modifier/modifier"); + this.runContainer.setVisible(false); + } + + /** + * This takes a run's RunEntry and uses the information provided to display essential information about the player's run. + * @param args[0] : a RunEntry object + * + * show() creates these UI objects in order - + * A solid-color background used to hide RunHistoryUiHandler + * Header: Page Title + Option to Display Modifiers + * Run Result Container: + * Party Container: + * this.isVictory === true --> Hall of Fame Container: + */ + override show(args: any[]): boolean { + super.show(args); + + const gameStatsBg = this.scene.add.rectangle(0, 0, this.scene.game.canvas.width, this.scene.game.canvas.height, 0x006860); + gameStatsBg.setOrigin(0, 0); + this.runContainer.add(gameStatsBg); + + const run = args[0]; + // Assigning information necessary for the UI's creation + this.runInfo = this.scene.gameData.parseSessionData(JSON.stringify(run.entry)); + this.isVictory = run.isVictory; + this.pageMode = RunInfoUiMode.MAIN; + + // Creates Header and adds to this.runContainer + this.addHeader(); + + this.statsBgWidth = ((this.scene.game.canvas.width / 6) - 2) / 3; + + // Creates Run Result Container + this.runResultContainer = this.scene.add.container(0, 24); + const runResultWindow = addWindow(this.scene, 0, 0, this.statsBgWidth-11, 65); + runResultWindow.setOrigin(0, 0); + this.runResultContainer.add(runResultWindow); + this.parseRunResult(); + + // Creates Run Info Container + this.runInfoContainer = this.scene.add.container(0, 89); + const runInfoWindow = addWindow(this.scene, 0, 0, this.statsBgWidth-11, 90); + const runInfoWindowCoords = runInfoWindow.getBottomRight(); + this.runInfoContainer.add(runInfoWindow); + this.parseRunInfo(runInfoWindowCoords.x, runInfoWindowCoords.y); + + // Creates Player Party Container + this.partyContainer = this.scene.add.container(this.statsBgWidth-10, 23); + this.parsePartyInfo(); + this.showParty(true); + + this.runContainer.setInteractive(new Phaser.Geom.Rectangle(0, 0, this.scene.game.canvas.width / 6, this.scene.game.canvas.height / 6), Phaser.Geom.Rectangle.Contains); + this.getUi().bringToTop(this.runContainer); + this.runContainer.setVisible(true); + + // Creates Hall of Fame if the run entry contains a victory + if (this.isVictory) { + this.createHallofFame(); + this.getUi().bringToTop(this.hallofFameContainer); + } + + this.setCursor(0); + + this.getUi().add(this.runContainer); + + this.getUi().hideTooltip(); + + return true; + } + + /** + * Creates and adds the header background, title text, and important buttons to RunInfoUiHandler + * It does check if the run has modifiers before adding a button for the user to display their party's held items + * It does not check if the run has any PokemonHeldItemModifiers though. + */ + private addHeader() { + const headerBg = addWindow(this.scene, 0, 0, (this.scene.game.canvas.width / 6) - 2, 24); + headerBg.setOrigin(0, 0); + this.runContainer.add(headerBg); + if (this.runInfo.modifiers.length !== 0) { + const headerBgCoords = headerBg.getTopRight(); + const abilityButtonContainer = this.scene.add.container(0, 0); + const abilityButtonText = addTextObject(this.scene, 8, 0, i18next.t("runHistory:viewHeldItems"), TextStyle.WINDOW, {fontSize:"34px"}); + const abilityButtonElement = new Phaser.GameObjects.Sprite(this.scene, 0, 2, "keyboard", "E.png"); + abilityButtonContainer.add([abilityButtonText, abilityButtonElement]); + abilityButtonContainer.setPosition(headerBgCoords.x - abilityButtonText.displayWidth - abilityButtonElement.displayWidth - 8, 10); + this.runContainer.add(abilityButtonContainer); + } + const headerText = addTextObject(this.scene, 0, 0, i18next.t("runHistory:runInfo"), TextStyle.SETTINGS_LABEL); + headerText.setOrigin(0, 0); + headerText.setPositionRelative(headerBg, 8, 4); + this.runContainer.add(headerText); + } + + /** + * Shows the run's end result + * + * Victory : The run will display options to allow the player to view the Hall of Fame + Ending Art + * Defeat : The run will show the opposing Pokemon (+ Trainer) that the trainer was defeated by. + * Defeat can call either parseWildSingleDefeat(), parseWildDoubleDefeat(), or parseTrainerDefeat() + * + */ + private async parseRunResult() { + const genderIndex = this.scene.gameData.gender ?? PlayerGender.UNSET; + const genderStr = PlayerGender[genderIndex]; + const runResultTextStyle = this.isVictory ? TextStyle.SUMMARY : TextStyle.SUMMARY_RED; + const runResultTitle = this.isVictory ? i18next.t("runHistory:victory") : i18next.t("runHistory:defeated", { context: genderStr }); + const runResultText = addBBCodeTextObject(this.scene, 6, 5, `${runResultTitle} - ${i18next.t("saveSlotSelectUiHandler:wave")} ${this.runInfo.waveIndex}`, runResultTextStyle, {fontSize : "65px", lineSpacing: 0.1}); + + if (this.isVictory) { + const hallofFameInstructionContainer = this.scene.add.container(0, 0); + const shinyButtonText = addTextObject(this.scene, 8, 0, i18next.t("runHistory:viewHallOfFame"), TextStyle.WINDOW, {fontSize:"65px"}); + const shinyButtonElement = new Phaser.GameObjects.Sprite(this.scene, 0, 4, "keyboard", "R.png"); + hallofFameInstructionContainer.add([shinyButtonText, shinyButtonElement]); + + const formButtonText = addTextObject(this.scene, 8, 12, i18next.t("runHistory:viewEndingSplash"), TextStyle.WINDOW, {fontSize:"65px"}); + const formButtonElement = new Phaser.GameObjects.Sprite(this.scene, 0, 16, "keyboard", "F.png"); + hallofFameInstructionContainer.add([formButtonText, formButtonElement]); + + hallofFameInstructionContainer.setPosition(12, 25); + this.runResultContainer.add(hallofFameInstructionContainer); + } + + this.runResultContainer.add(runResultText); + + if (!this.isVictory) { + const enemyContainer = this.scene.add.container(0, 0); + // Wild - Single and Doubles + if (this.runInfo.battleType === BattleType.WILD) { + switch (this.runInfo.enemyParty.length) { + case 1: + // Wild - Singles + this.parseWildSingleDefeat(enemyContainer); + break; + case 2: + //Wild - Doubles + this.parseWildDoubleDefeat(enemyContainer); + break; + } + } else if (this.runInfo.battleType === BattleType.TRAINER) { + this.parseTrainerDefeat(enemyContainer); + } + this.runResultContainer.add(enemyContainer); + } + this.runContainer.add(this.runResultContainer); + } + + /** + * This function is called to edit an enemyContainer to represent a loss from a defeat by a wild single Pokemon battle. + * @param enemyContainer - container holding enemy visual and level information + */ + private parseWildSingleDefeat(enemyContainer: Phaser.GameObjects.Container) { + const enemyIconContainer = this.scene.add.container(0, 0); + const enemyData = this.runInfo.enemyParty[0]; + const bossStatus = enemyData.boss; + enemyData.boss = false; + enemyData["player"] = true; + //addPokemonIcon() throws an error if the Pokemon used is a boss + const enemy = enemyData.toPokemon(this.scene); + const enemyIcon = this.scene.addPokemonIcon(enemy, 0, 0, 0, 0); + const enemyLevelStyle = bossStatus ? TextStyle.PARTY_RED : TextStyle.PARTY; + const enemyLevel = addTextObject(this.scene, 36, 26, `${i18next.t("saveSlotSelectUiHandler:lv")}${Utils.formatLargeNumber(enemy.level, 1000)}`, enemyLevelStyle, { fontSize: "44px", color: "#f8f8f8" }); + enemyLevel.setShadow(0, 0, undefined); + enemyLevel.setStroke("#424242", 14); + enemyLevel.setOrigin(1, 0); + enemyIconContainer.add(enemyIcon); + enemyIconContainer.add(enemyLevel); + enemyContainer.add(enemyIconContainer); + enemyContainer.setPosition(27, 12); + enemy.destroy(); + } + + /** + * This function is called to edit a container to represent a loss from a defeat by a wild double Pokemon battle. + * This function and parseWildSingleDefeat can technically be merged, but I find it tricky to manipulate the different 'centers' a single battle / double battle container will hold. + * @param enemyContainer - container holding enemy visuals and level information + */ + private parseWildDoubleDefeat(enemyContainer: Phaser.GameObjects.Container) { + this.runInfo.enemyParty.forEach((enemyData, e) => { + const enemyIconContainer = this.scene.add.container(0, 0); + const bossStatus = enemyData.boss; + enemyData.boss = false; + enemyData["player"] = true; + const enemy = enemyData.toPokemon(this.scene); + const enemyIcon = this.scene.addPokemonIcon(enemy, 0, 0, 0, 0); + const enemyLevel = addTextObject(this.scene, 36, 26, `${i18next.t("saveSlotSelectUiHandler:lv")}${Utils.formatLargeNumber(enemy.level, 1000)}`, bossStatus ? TextStyle.PARTY_RED : TextStyle.PARTY, { fontSize: "44px", color: "#f8f8f8" }); + enemyLevel.setShadow(0, 0, undefined); + enemyLevel.setStroke("#424242", 14); + enemyLevel.setOrigin(1, 0); + enemyIconContainer.add(enemyIcon); + enemyIconContainer.add(enemyLevel); + enemyIconContainer.setPosition(e*35, 0); + enemyContainer.add(enemyIconContainer); + enemy.destroy(); + }); + enemyContainer.setPosition(8, 14); + } + + /** + * This edits a container to represent a loss from a defeat by a trainer battle. + * @param enemyContainer - container holding enemy visuals and level information + * The trainers are placed to the left of their party. + * Depending on the trainer icon, there may be overlap between the edges of the box or their party. (Capes...) + * + * Party Pokemon have their icons, terastalization status, and level shown. + */ + private parseTrainerDefeat(enemyContainer: Phaser.GameObjects.Container) { + // Creating the trainer sprite and adding it to enemyContainer + const tObj = this.runInfo.trainer.toTrainer(this.scene); + const tObjSpriteKey = tObj.config.getSpriteKey(this.runInfo.trainer.variant === TrainerVariant.FEMALE, false); + const tObjSprite = this.scene.add.sprite(0, 5, tObjSpriteKey); + if (this.runInfo.trainer.variant === TrainerVariant.DOUBLE) { + const doubleContainer = this.scene.add.container(5, 8); + tObjSprite.setPosition(-3, -3); + const tObjPartnerSpriteKey = tObj.config.getSpriteKey(true, true); + const tObjPartnerSprite = this.scene.add.sprite(5, -3, tObjPartnerSpriteKey); + // Double Trainers have smaller sprites than Single Trainers + tObjPartnerSprite.setScale(0.20); + tObjSprite.setScale(0.20); + doubleContainer.add(tObjSprite); + doubleContainer.add(tObjPartnerSprite); + doubleContainer.setPosition(12, 38); + enemyContainer.add(doubleContainer); + } else { + tObjSprite.setScale(0.35, 0.35); + tObjSprite.setPosition(12, 28); + enemyContainer.add(tObjSprite); + } + + // Determining which Terastallize Modifier belongs to which Pokemon + // Creates a dictionary {PokemonId: TeraShardType} + const teraPokemon = {}; + this.runInfo.enemyModifiers.forEach((m) => { + const modifier = m.toModifier(this.scene, this.modifiersModule[m.className]); + if (modifier instanceof TerastallizeModifier) { + const teraDetails = modifier?.getArgs(); + const pkmnId = teraDetails[0]; + teraPokemon[pkmnId] = teraDetails[1]; + } + }); + + // Creates the Pokemon icons + level information and adds it to enemyContainer + // 2 Rows x 3 Columns + const enemyPartyContainer = this.scene.add.container(0, 0); + this.runInfo.enemyParty.forEach((enemyData, e) => { + const pokemonRowHeight = Math.floor(e/3); + const enemyIconContainer = this.scene.add.container(0, 0); + enemyIconContainer.setScale(0.6); + const isBoss = enemyData.boss; + enemyData.boss = false; + enemyData["player"] = true; + const enemy = enemyData.toPokemon(this.scene); + const enemyIcon = this.scene.addPokemonIcon(enemy, 0, 0, 0, 0); + // Applying Terastallizing Type tint to Pokemon icon + // If the Pokemon is a fusion, it has two sprites and so, the tint has to be applied to each icon separately + const enemySprite1 = enemyIcon.list[0] as Phaser.GameObjects.Sprite; + const enemySprite2 = (enemyIcon.list.length > 1) ? enemyIcon.list[1] as Phaser.GameObjects.Sprite : undefined; + if (teraPokemon[enemyData.id]) { + const teraTint = getTypeRgb(teraPokemon[enemyData.id]); + const teraColor = new Phaser.Display.Color(teraTint[0], teraTint[1], teraTint[2]); + enemySprite1.setTint(teraColor.color); + if (enemySprite2) { + enemySprite2.setTint(teraColor.color); + } + } + enemyIcon.setPosition(39*(e%3)+5, (35*pokemonRowHeight)); + const enemyLevel = addTextObject(this.scene, 43*(e%3), (27*(pokemonRowHeight+1)), `${i18next.t("saveSlotSelectUiHandler:lv")}${Utils.formatLargeNumber(enemy.level, 1000)}`, isBoss ? TextStyle.PARTY_RED : TextStyle.PARTY, { fontSize: "54px" }); + enemyLevel.setShadow(0, 0, undefined); + enemyLevel.setStroke("#424242", 14); + enemyLevel.setOrigin(0, 0); + + enemyIconContainer.add(enemyIcon); + enemyIconContainer.add(enemyLevel); + enemyPartyContainer.add(enemyIconContainer); + enemy.destroy(); + }); + enemyPartyContainer.setPosition(25, 15); + enemyContainer.add(enemyPartyContainer); + } + + /** + * Shows information about the run like the run's mode, duration, luck, money, and player held items + * The values for luck and money are from the end of the run, not the player's luck at the start of the run. + * @param windowX + * @param windowY These two params are the coordinates of the window's bottom right corner. This is used to dynamically position Luck based on its length, creating a nice layout regardless of language / luck value. + */ + private async parseRunInfo(windowX: number, windowY: number) { + // Parsing and displaying the mode. + // In the future, parsing Challenges + Challenge Rules may have to be reworked as PokeRogue adds additional challenges and users can stack these challenges in various ways. + const modeText = addBBCodeTextObject(this.scene, 7, 0, "", TextStyle.WINDOW, {fontSize : "50px", lineSpacing:3}); + modeText.setPosition(7, 5); + modeText.appendText(i18next.t("runHistory:mode")+": ", false); + switch (this.runInfo.gameMode) { + case GameModes.DAILY: + modeText.appendText(`${i18next.t("gameMode:dailyRun")}`, false); + break; + case GameModes.SPLICED_ENDLESS: + modeText.appendText(`${i18next.t("gameMode:endlessSpliced")}`, false); + if (this.runInfo.waveIndex === this.scene.gameData.gameStats.highestEndlessWave) { + modeText.appendText(` [${i18next.t("runHistory:personalBest")}]`, false); + modeText.setTint(0xffef5c, 0x47ff69, 0x6b6bff, 0xff6969); + } + break; + case GameModes.CHALLENGE: + modeText.appendText(`${i18next.t("gameMode:challenge")}`, false); + modeText.appendText(`\t\t${i18next.t("runHistory:challengeRules")}: `); + const rules: string[] = this.challengeParser(); + if (rules) { + for (let i = 0; i < rules.length; i++) { + const newline = i > 0 && i%2 === 0; + if (i > 0) { + modeText.appendText(" + ", newline); + } + modeText.appendText(rules[i], newline); + } + } + break; + case GameModes.ENDLESS: + modeText.appendText(`${i18next.t("gameMode:endless")}`, false); + // If the player achieves a personal best in Endless, the mode text will be tinted similarly to SSS luck to celebrate their achievement. + if (this.runInfo.waveIndex === this.scene.gameData.gameStats.highestEndlessWave) { + modeText.appendText(` [${i18next.t("runHistory:personalBest")}]`, false); + modeText.setTint(0xffef5c, 0x47ff69, 0x6b6bff, 0xff6969); + } + break; + case GameModes.CLASSIC: + modeText.appendText(`${i18next.t("gameMode:classic")}`, false); + break; + } + + // Duration + Money + const runInfoTextContainer = this.scene.add.container(0, 0); + // Japanese is set to a greater line spacing of 35px in addBBCodeTextObject() if lineSpacing < 12. + const lineSpacing = (i18next.resolvedLanguage === "ja") ? 12 : 3; + const runInfoText = addBBCodeTextObject(this.scene, 7, 0, "", TextStyle.WINDOW, {fontSize: "50px", lineSpacing: lineSpacing}); + const runTime = Utils.getPlayTimeString(this.runInfo.playTime); + runInfoText.appendText(`${i18next.t("runHistory:runLength")}: ${runTime}`, false); + const runMoney = Utils.formatMoney(this.scene.moneyFormat, this.runInfo.money); + runInfoText.appendText(`[color=${getTextColor(TextStyle.MONEY)}]${i18next.t("battleScene:moneyOwned", {formattedMoney : runMoney})}[/color]`); + runInfoText.setPosition(7, 70); + runInfoTextContainer.add(runInfoText); + // Luck + // Uses the parameters windowX and windowY to dynamically position the luck value neatly into the bottom right corner + const luckText = addBBCodeTextObject(this.scene, 0, 0, "", TextStyle.WINDOW, {fontSize: "55px"}); + const luckValue = Phaser.Math.Clamp(this.runInfo.party.map(p => p.toPokemon(this.scene).getLuck()).reduce((total: integer, value: integer) => total += value, 0), 0, 14); + let luckInfo = i18next.t("runHistory:luck")+": "+getLuckString(luckValue); + if (luckValue < 14) { + luckInfo = "[color=#"+(getLuckTextTint(luckValue)).toString(16)+"]"+luckInfo+"[/color]"; + } else { + luckText.setTint(0xffef5c, 0x47ff69, 0x6b6bff, 0xff6969); + } + luckText.appendText("[align=right]"+luckInfo+"[/align]", false); + luckText.setPosition(windowX-luckText.displayWidth-5, windowY-13); + runInfoTextContainer.add(luckText); + + // Player Held Items + // A max of 20 items can be displayed. A + sign will be added if the run's held items pushes past this maximum to show the user that there are more. + if (this.runInfo.modifiers.length) { + let visibleModifierIndex = 0; + + const modifierIconsContainer = this.scene.add.container(8, (this.runInfo.gameMode === GameModes.CHALLENGE) ? 20 : 15); + modifierIconsContainer.setScale(0.45); + for (const m of this.runInfo.modifiers) { + const modifier = m.toModifier(this.scene, this.modifiersModule[m.className]); + if (modifier instanceof PokemonHeldItemModifier) { + continue; + } + const icon = modifier?.getIcon(this.scene, false); + if (icon) { + const rowHeightModifier = Math.floor(visibleModifierIndex/7); + icon.setPosition(24 * (visibleModifierIndex%7), 20 + (35 * rowHeightModifier)); + modifierIconsContainer.add(icon); + } + + if (++visibleModifierIndex === 20) { + const maxItems = addTextObject(this.scene, 45, 90, "+", TextStyle.WINDOW); + maxItems.setPositionRelative(modifierIconsContainer, 70, 45); + this.runInfoContainer.add(maxItems); + break; + } + } + this.runInfoContainer.add(modifierIconsContainer); + } + + this.runInfoContainer.add(modeText); + this.runInfoContainer.add(runInfoTextContainer); + this.runContainer.add(this.runInfoContainer); + } + + /** + * This function parses the Challenges section of the Run Entry and returns a list of active challenge. + * @return string[] of active challenge names + */ + private challengeParser(): string[] { + const rules: string[] = []; + for (let i = 0; i < this.runInfo.challenges.length; i++) { + if (this.runInfo.challenges[i].value !== 0) { + switch (this.runInfo.challenges[i].id) { + case Challenges.SINGLE_GENERATION: + rules.push(i18next.t(`runHistory:challengeMonoGen${this.runInfo.challenges[i].value}`)); + break; + case Challenges.SINGLE_TYPE: + rules.push(i18next.t(`pokemonInfo:Type.${Type[this.runInfo.challenges[i].value-1]}` as const)); + break; + case Challenges.FRESH_START: + rules.push(i18next.t("challenges:freshStart.name")); + break; + case Challenges.INVERSE_BATTLE: + // + rules.push(i18next.t("challenges:inverseBattle.shortName").split("").reverse().join("")); + break; + } + } + } + return rules; + } + + /** + * Parses and displays the run's player party. + * Default Information: Icon, Level, Nature, Ability, Passive, Shiny Status, Fusion Status, Stats, and Moves. + * B-Side Information: Icon + Held Items (Can be displayed to the user through pressing the abilityButton) + */ + private parsePartyInfo(): void { + const party = this.runInfo.party; + const currentLanguage = i18next.resolvedLanguage ?? "en"; + const windowHeight = ((this.scene.game.canvas.height / 6) - 23)/6; + + party.forEach((p: PokemonData, i: integer) => { + const pokemonInfoWindow = new RoundRectangle(this.scene, 0, 14, (this.statsBgWidth*2)+10, windowHeight-2, 3); + + const pokemon = p.toPokemon(this.scene); + const pokemonInfoContainer = this.scene.add.container(this.statsBgWidth+5, (windowHeight-0.5)*i); + + const types = pokemon.getTypes(); + const type1 = getTypeRgb(types[0]); + const type1Color = new Phaser.Display.Color(type1[0], type1[1], type1[2]); + + const bgColor = type1Color.clone().darken(45); + pokemonInfoWindow.setFillStyle(bgColor.color); + + const iconContainer = this.scene.add.container(0, 0); + const icon = this.scene.addPokemonIcon(pokemon, 0, 0, 0, 0); + icon.setScale(0.75); + icon.setPosition(-99, 1); + const type2 = types[1] ? getTypeRgb(types[1]) : undefined; + const type2Color = type2 ? new Phaser.Display.Color(type2[0], type2[1], type2[2]) : undefined; + type2Color ? pokemonInfoWindow.setStrokeStyle(1, type2Color.color, 0.95) : pokemonInfoWindow.setStrokeStyle(1, type1Color.color, 0.95); + + this.getUi().bringToTop(icon); + + // Contains Name, Level + Nature, Ability, Passive + const pokeInfoTextContainer = this.scene.add.container(-85, 3.5); + const textContainerFontSize = "34px"; + const pNature = getNatureName(pokemon.nature); + const pName = pokemon.getNameToRender(); + //With the exception of Korean/Traditional Chinese/Simplified Chinese, the code shortens the terms for ability and passive to their first letter. + //These languages are exempted because they are already short enough. + const exemptedLanguages = ["ko", "zh_CN", "zh_TW"]; + let passiveLabel = i18next.t("starterSelectUiHandler:passive") ?? "-"; + let abilityLabel = i18next.t("starterSelectUiHandler:ability") ?? "-"; + if (!exemptedLanguages.includes(currentLanguage)) { + passiveLabel = passiveLabel.charAt(0); + abilityLabel = abilityLabel.charAt(0); + } + const pPassiveInfo = pokemon.passive ? passiveLabel+": "+pokemon.getPassiveAbility().name : ""; + const pAbilityInfo = abilityLabel + ": " + pokemon.getAbility().name; + // Japanese is set to a greater line spacing of 35px in addBBCodeTextObject() if lineSpacing < 12. + const lineSpacing = (i18next.resolvedLanguage === "ja") ? 12 : 3; + const pokeInfoText = addBBCodeTextObject(this.scene, 0, 0, pName, TextStyle.SUMMARY, {fontSize: textContainerFontSize, lineSpacing: lineSpacing}); + pokeInfoText.appendText(`${i18next.t("saveSlotSelectUiHandler:lv")}${Utils.formatFancyLargeNumber(pokemon.level, 1)} - ${pNature}`); + pokeInfoText.appendText(pAbilityInfo); + pokeInfoText.appendText(pPassiveInfo); + pokeInfoTextContainer.add(pokeInfoText); + + // Pokemon Stats + // Colored Arrows (Red/Blue) are placed by stats that are boosted from natures + const pokeStatTextContainer = this.scene.add.container(-35, 6); + const pStats : string[]= []; + pokemon.stats.forEach((element) => pStats.push(Utils.formatFancyLargeNumber(element, 1))); + for (let i = 0; i < pStats.length; i++) { + const isMult = getNatureStatMultiplier(pokemon.nature, i); + pStats[i] = (isMult < 1) ? pStats[i] + "[color=#40c8f8]↓[/color]" : pStats[i]; + pStats[i] = (isMult > 1) ? pStats[i] + "[color=#f89890]↑[/color]" : pStats[i]; + } + const hp = i18next.t("pokemonInfo:Stat.HPshortened")+": "+pStats[0]; + const atk = i18next.t("pokemonInfo:Stat.ATKshortened")+": "+pStats[1]; + const def = i18next.t("pokemonInfo:Stat.DEFshortened")+": "+pStats[2]; + const spatk = i18next.t("pokemonInfo:Stat.SPATKshortened")+": "+pStats[3]; + const spdef = i18next.t("pokemonInfo:Stat.SPDEFshortened")+": "+pStats[4]; + const speedLabel = (currentLanguage==="es"||currentLanguage==="pt_BR") ? i18next.t("runHistory:SPDshortened") : i18next.t("pokemonInfo:Stat.SPDshortened"); + const speed = speedLabel+": "+pStats[5]; + // Column 1: HP Atk Def + const pokeStatText1 = addBBCodeTextObject(this.scene, -5, 0, hp, TextStyle.SUMMARY, {fontSize: textContainerFontSize, lineSpacing: lineSpacing}); + pokeStatText1.appendText(atk); + pokeStatText1.appendText(def); + pokeStatTextContainer.add(pokeStatText1); + // Column 2: SpAtk SpDef Speed + const pokeStatText2 = addBBCodeTextObject(this.scene, 25, 0, spatk, TextStyle.SUMMARY, {fontSize: textContainerFontSize, lineSpacing: lineSpacing}); + pokeStatText2.appendText(spdef); + pokeStatText2.appendText(speed); + pokeStatTextContainer.add(pokeStatText2); + + // Shiny + Fusion Status + const marksContainer = this.scene.add.container(0, 0); + if (pokemon.fusionSpecies) { + const splicedIcon = this.scene.add.image(0, 0, "icon_spliced"); + splicedIcon.setScale(0.35); + splicedIcon.setOrigin(0, 0); + pokemon.isShiny() ? splicedIcon.setPositionRelative(pokeInfoTextContainer, 35, 0) : splicedIcon.setPositionRelative(pokeInfoTextContainer, 28, 0); + marksContainer.add(splicedIcon); + this.getUi().bringToTop(splicedIcon); + } + if (pokemon.isShiny()) { + const doubleShiny = pokemon.isFusion() && pokemon.shiny && pokemon.fusionShiny; + const shinyStar = this.scene.add.image(0, 0, `shiny_star_small${doubleShiny ? "_1" : ""}`); + shinyStar.setOrigin(0, 0); + shinyStar.setScale(0.65); + shinyStar.setPositionRelative(pokeInfoTextContainer, 28, 0); + shinyStar.setTint(getVariantTint(!doubleShiny ? pokemon.getVariant() : pokemon.variant)); + marksContainer.add(shinyStar); + this.getUi().bringToTop(shinyStar); + if (doubleShiny) { + const fusionShinyStar = this.scene.add.image(0, 0, "shiny_star_small_2"); + fusionShinyStar.setOrigin(0, 0); + fusionShinyStar.setScale(0.5); + fusionShinyStar.setPosition(shinyStar.x+1, shinyStar.y+1); + fusionShinyStar.setTint(getVariantTint(pokemon.fusionVariant)); + marksContainer.add(fusionShinyStar); + this.getUi().bringToTop(fusionShinyStar); + } + } + + // Pokemon Moveset + // Need to check if dynamically typed moves + const pokemonMoveset = pokemon.getMoveset(); + const movesetContainer = this.scene.add.container(70, -29); + const pokemonMoveBgs : Phaser.GameObjects.NineSlice[] = []; + const pokemonMoveLabels : Phaser.GameObjects.Text[] = []; + const movePos = [[-6.5, 35.5], [37, 35.5], [-6.5, 43.5], [37, 43.5]]; + for (let m = 0; m < pokemonMoveset?.length; m++) { + const moveContainer = this.scene.add.container(movePos[m][0], movePos[m][1]); + moveContainer.setScale(0.5); + const moveBg = this.scene.add.nineslice(0, 0, "type_bgs", "unknown", 85, 15, 2, 2, 2, 2); + moveBg.setOrigin(1, 0); + const moveLabel = addTextObject(this.scene, -moveBg.width / 2, 2, "-", TextStyle.PARTY); + moveLabel.setOrigin(0.5, 0); + moveLabel.setName("text-move-label"); + pokemonMoveBgs.push(moveBg); + pokemonMoveLabels.push(moveLabel); + moveContainer.add(moveBg); + moveContainer.add(moveLabel); + movesetContainer.add(moveContainer); + const move = pokemonMoveset[m]?.getMove(); + pokemonMoveBgs[m].setFrame(Type[move ? move.type : Type.UNKNOWN].toString().toLowerCase()); + pokemonMoveLabels[m].setText(move ? move.name : "-"); + } + + // Pokemon Held Items - not displayed by default + // Endless/Endless Spliced have a different scale because Pokemon tend to accumulate more items in these runs. + const heldItemsScale = (this.runInfo.gameMode === GameModes.SPLICED_ENDLESS || this.runInfo.gameMode === GameModes.ENDLESS) ? 0.25 : 0.5; + const heldItemsContainer = this.scene.add.container(-82, 6); + const heldItemsList : PokemonHeldItemModifier[] = []; + if (this.runInfo.modifiers.length) { + for (const m of this.runInfo.modifiers) { + const modifier = m.toModifier(this.scene, this.modifiersModule[m.className]); + if (modifier instanceof PokemonHeldItemModifier && modifier.pokemonId === pokemon.id) { + modifier.stackCount = m["stackCount"]; + heldItemsList.push(modifier); + } + } + if (heldItemsList.length > 0) { + (heldItemsList as PokemonHeldItemModifier[]).sort(modifierSortFunc); + let row = 0; + for (const [index, item] of heldItemsList.entries()) { + if ( index > 36 ) { + const overflowIcon = addTextObject(this.scene, 182, 4, "+", TextStyle.WINDOW); + heldItemsContainer.add(overflowIcon); + break; + } + const itemIcon = item?.getIcon(this.scene, true); + itemIcon.setScale(heldItemsScale); + itemIcon.setPosition((index%19) * 10, row * 10); + heldItemsContainer.add(itemIcon); + if (index !== 0 && index % 18 === 0) { + row++; + } + } + } + } + heldItemsContainer.setName("heldItems"); + heldItemsContainer.setVisible(false); + + // Labels are applied for future differentiation in showParty() + pokemonInfoContainer.add(pokemonInfoWindow); + iconContainer.add(icon); + pokemonInfoContainer.add(iconContainer); + marksContainer.setName("PkmnMarks"); + pokemonInfoContainer.add(marksContainer); + movesetContainer.setName("PkmnMoves"); + pokemonInfoContainer.add(movesetContainer); + pokeInfoTextContainer.setName("PkmnInfoText"); + pokemonInfoContainer.add(pokeInfoTextContainer); + pokeStatTextContainer.setName("PkmnStatsText"); + pokemonInfoContainer.add(pokeStatTextContainer); + pokemonInfoContainer.add(heldItemsContainer); + pokemonInfoContainer.setName("PkmnInfo"); + this.partyContainer.add(pokemonInfoContainer); + pokemon.destroy(); + }); + this.runContainer.add(this.partyContainer); + } + + /** + * Changes what is displayed of the Pokemon's held items + * @param partyVisible {boolean} + * True -> Shows the Pokemon's default information and hides held items + * False -> Shows the Pokemon's held items and hides default information + */ + private showParty(partyVisible: boolean): void { + const allContainers = this.partyContainer.getAll("name", "PkmnInfo"); + allContainers.forEach((c: Phaser.GameObjects.Container) => { + c.getByName("PkmnMoves").setVisible(partyVisible); + c.getByName("PkmnInfoText").setVisible(partyVisible); + c.getByName("PkmnStatsText").setVisible(partyVisible); + c.getByName("PkmnMarks").setVisible(partyVisible); + c.getByName("heldItems").setVisible(!partyVisible); + this.partyVisibility = partyVisible; + }); + } + + /** + * Shows the ending art. + */ + private createVictorySplash(): void { + this.endCardContainer = this.scene.add.container(0, 0); + const genderIndex = this.scene.gameData.gender ?? PlayerGender.UNSET; + const isFemale = genderIndex === PlayerGender.FEMALE; + const endCard = this.scene.add.image(0, 0, `end_${isFemale ? "f" : "m"}`); + endCard.setOrigin(0); + endCard.setScale(0.5); + const text = addTextObject(this.scene, this.scene.game.canvas.width / 12, (this.scene.game.canvas.height / 6) - 16, i18next.t("battle:congratulations"), TextStyle.SUMMARY, { fontSize: "128px" }); + text.setOrigin(0.5); + this.endCardContainer.add(endCard); + this.endCardContainer.add(text); + } + + /** createHallofFame() - if the run is victorious, this creates a hall of fame image for the player to view + * Overlay created by Koda (Thank you!) + * This could be adapted into a public-facing method for victory screens. Perhaps. + */ + private createHallofFame(): void { + const genderIndex = this.scene.gameData.gender ?? PlayerGender.UNSET; + const isFemale = genderIndex === PlayerGender.FEMALE; + const genderStr = PlayerGender[genderIndex].toLowerCase(); + // Issue Note (08-05-2024): It seems as if fused pokemon do not appear with the averaged color b/c pokemonData's loadAsset requires there to be some active battle? + // As an alternative, the icons of the second/bottom fused Pokemon have been placed next to their fellow fused Pokemon in Hall of Fame + this.hallofFameContainer = this.scene.add.container(0, 0); + // Thank you Hayuna for the code + const endCard = this.scene.add.image(0, 0, `end_${isFemale ? "f" : "m"}`); + endCard.setOrigin(0); + endCard.setPosition(-1, -1); + endCard.setScale(0.5); + const endCardCoords = endCard.getBottomCenter(); + const overlayColor = isFemale ? "red" : "blue"; + const hallofFameBg = this.scene.add.image(0, 0, "hall_of_fame_"+overlayColor); + hallofFameBg.setPosition(159, 89); + hallofFameBg.setSize(this.scene.game.canvas.width, this.scene.game.canvas.height+10); + hallofFameBg.setAlpha(0.8); + this.hallofFameContainer.add(endCard); + this.hallofFameContainer.add(hallofFameBg); + + const hallofFameText = addTextObject(this.scene, 0, 0, i18next.t("runHistory:hallofFameText", { context: genderStr }), TextStyle.WINDOW); + hallofFameText.setPosition(endCardCoords.x-(hallofFameText.displayWidth/2), 164); + this.hallofFameContainer.add(hallofFameText); + this.runInfo.party.forEach((p, i) => { + const pkmn = p.toPokemon(this.scene); + const row = i % 2; + const id = pkmn.id; + const shiny = pkmn.shiny; + const formIndex = pkmn.formIndex; + const variant = pkmn.variant; + const species = pkmn.getSpeciesForm(); + const pokemonSprite: Phaser.GameObjects.Sprite = this.scene.add.sprite(60 + 40 * i, 40 + row * 80, "pkmn__sub"); + pokemonSprite.setPipeline(this.scene.spritePipeline, { tone: [ 0.0, 0.0, 0.0, 0.0 ], ignoreTimeTint: true }); + this.hallofFameContainer.add(pokemonSprite); + const speciesLoaded: Map = new Map(); + speciesLoaded.set(id, false); + + const female = pkmn.gender === 1; + species.loadAssets(this.scene, female, formIndex, shiny, variant, true).then(() => { + speciesLoaded.set(id, true); + pokemonSprite.play(species.getSpriteKey(female, formIndex, shiny, variant)); + pokemonSprite.setPipelineData("shiny", shiny); + pokemonSprite.setPipelineData("variant", variant); + pokemonSprite.setPipelineData("spriteKey", species.getSpriteKey(female, formIndex, shiny, variant)); + pokemonSprite.setVisible(true); + }); + if (pkmn.isFusion()) { + const fusionIcon = this.scene.add.sprite(80 + 40 * i, 50 + row * 80, pkmn.getFusionIconAtlasKey()); + fusionIcon.setName("sprite-fusion-icon"); + fusionIcon.setOrigin(0.5, 0); + fusionIcon.setFrame(pkmn.getFusionIconId(true)); + this.hallofFameContainer.add(fusionIcon); + } + pkmn.destroy(); + }); + this.hallofFameContainer.setVisible(false); + this.runContainer.add(this.hallofFameContainer); + } + + /** + * Takes input from the user to perform a desired action. + * @param button - Button object to be processed + * Button.CANCEL - removes all containers related to RunInfo and returns the user to Run History + * Button.CYCLE_FORM, Button.CYCLE_SHINY, Button.CYCLE_ABILITY - runs the function buttonCycleOption() + */ + override processInput(button: Button): boolean { + const ui = this.getUi(); + + let success = false; + const error = false; + + switch (button) { + case Button.CANCEL: + success = true; + if (this.pageMode === RunInfoUiMode.MAIN) { + this.runInfoContainer.removeAll(true); + this.runResultContainer.removeAll(true); + this.partyContainer.removeAll(true); + this.runContainer.removeAll(true); + if (this.isVictory) { + this.hallofFameContainer.removeAll(true); + } + super.clear(); + this.runContainer.setVisible(false); + ui.revertMode(); + } else if (this.pageMode === RunInfoUiMode.HALL_OF_FAME) { + this.hallofFameContainer.setVisible(false); + this.pageMode = RunInfoUiMode.MAIN; + } else if (this.pageMode === RunInfoUiMode.ENDING_ART) { + this.endCardContainer.setVisible(false); + this.runContainer.remove(this.endCardContainer); + this.pageMode = RunInfoUiMode.MAIN; + } + break; + case Button.DOWN: + case Button.UP: + break; + case Button.CYCLE_FORM: + case Button.CYCLE_SHINY: + case Button.CYCLE_ABILITY: + this.buttonCycleOption(button); + break; + } + + if (success) { + ui.playSelect(); + } else if (error) { + ui.playError(); + } + return success || error; + } + + /** + * buttonCycleOption : takes a parameter button to execute different actions in the run-info page + * The use of non-directional / A / B buttons is named in relation to functions used during starter-select. + * Button.CYCLE_FORM (F key) --> displays ending art (victory only) + * Button.CYCLE_SHINY (R key) --> displays hall of fame (victory only) + * Button.CYCLE_ABILITY (E key) --> shows pokemon held items + */ + private buttonCycleOption(button: Button) { + switch (button) { + case Button.CYCLE_FORM: + if (this.isVictory) { + if (!this.endCardContainer || !this.endCardContainer.visible) { + this.createVictorySplash(); + this.endCardContainer.setVisible(true); + this.runContainer.add(this.endCardContainer); + this.pageMode = RunInfoUiMode.ENDING_ART; + } else { + this.endCardContainer.setVisible(false); + this.runContainer.remove(this.endCardContainer); + this.pageMode = RunInfoUiMode.MAIN; + } + } + break; + case Button.CYCLE_SHINY: + if (this.isVictory) { + if (!this.hallofFameContainer.visible) { + this.hallofFameContainer.setVisible(true); + this.pageMode = RunInfoUiMode.HALL_OF_FAME; + } else { + this.hallofFameContainer.setVisible(false); + this.pageMode = RunInfoUiMode.MAIN; + } + } + break; + case Button.CYCLE_ABILITY: + if (this.partyVisibility) { + this.showParty(false); + } else { + this.showParty(true); + } + break; + } + } +} + diff --git a/src/ui/scroll-bar.ts b/src/ui/scroll-bar.ts index 02282edb4cd..e756393ae1a 100644 --- a/src/ui/scroll-bar.ts +++ b/src/ui/scroll-bar.ts @@ -29,8 +29,8 @@ export class ScrollBar extends Phaser.GameObjects.Container { setPages(pages: number): void { this.pages = pages; - this.handleBody.height = (this.bg.displayHeight - 1 - this.handleBottom.displayHeight) / this.pages; + this.handleBody.height = (this.bg.displayHeight - 1 - this.handleBottom.displayHeight) * 9 / this.pages; - this.setVisible(this.pages > 1); + this.setVisible(this.pages > 9); } } diff --git a/src/ui/settings/settings-audio-ui-handler.ts b/src/ui/settings/settings-audio-ui-handler.ts index b834e37efe5..4a895fc3170 100644 --- a/src/ui/settings/settings-audio-ui-handler.ts +++ b/src/ui/settings/settings-audio-ui-handler.ts @@ -15,6 +15,6 @@ export default class SettingsAudioUiHandler extends AbstractSettingsUiHandler { super(scene, SettingType.AUDIO, mode); this.title = "Audio"; this.localStorageKey = "settings"; - this.rowsToDisplay = 4; + this.rowsToDisplay = 6; } } diff --git a/src/ui/starter-select-ui-handler.ts b/src/ui/starter-select-ui-handler.ts index 67e870838a2..267a62104e3 100644 --- a/src/ui/starter-select-ui-handler.ts +++ b/src/ui/starter-select-ui-handler.ts @@ -13,7 +13,7 @@ import { allMoves } from "../data/move"; import { Nature, getNatureName } from "../data/nature"; import { pokemonFormChanges } from "../data/pokemon-forms"; import { LevelMoves, pokemonFormLevelMoves, pokemonSpeciesLevelMoves } from "../data/pokemon-level-moves"; -import PokemonSpecies, { allSpecies, getPokemonSpecies, getPokemonSpeciesForm, getStarterValueFriendshipCap, speciesStarters, starterPassiveAbilities } from "../data/pokemon-species"; +import PokemonSpecies, { allSpecies, getPokemonSpeciesForm, getStarterValueFriendshipCap, speciesStarters, starterPassiveAbilities, getPokerusStarters } from "../data/pokemon-species"; import { Type } from "../data/type"; import { GameModes } from "../game-mode"; import { AbilityAttr, DexAttr, DexAttrProps, DexEntry, StarterMoveset, StarterAttributes, StarterPreferences, StarterPrefs } from "../system/game-data"; @@ -131,6 +131,8 @@ const starterCandyCosts: { passive: integer, costReduction: [integer, integer], { passive: 10, costReduction: [5, 15], egg: 10 }, // 10 Cost ]; +const valueReductionMax = 2; + // Position of UI elements const filterBarHeight = 17; const speciesContainerX = 109; // if team on the RIGHT: 109 / if on the LEFT: 143 @@ -408,7 +410,7 @@ export default class StarterSelectUiHandler extends MessageUiHandler { if (index === 0 || index === 19) { return; } - const typeSprite = this.scene.add.sprite(0, 0, `types${Utils.verifyLang(i18next.resolvedLanguage) ? `_${i18next.resolvedLanguage}` : ""}`); + const typeSprite = this.scene.add.sprite(0, 0, Utils.getLocalizedSpriteKey("types")); typeSprite.setScale(0.5); typeSprite.setFrame(type.toLowerCase()); typeOptions.push(new DropDownOption(this.scene, index, new DropDownLabel("", typeSprite))); @@ -666,12 +668,12 @@ export default class StarterSelectUiHandler extends MessageUiHandler { this.pokemonSprite.setPipeline(this.scene.spritePipeline, { tone: [ 0.0, 0.0, 0.0, 0.0 ], ignoreTimeTint: true }); this.starterSelectContainer.add(this.pokemonSprite); - this.type1Icon = this.scene.add.sprite(8, 98, `types${Utils.verifyLang(i18next.resolvedLanguage) ? `_${i18next.resolvedLanguage}` : ""}`); + this.type1Icon = this.scene.add.sprite(8, 98, Utils.getLocalizedSpriteKey("types")); this.type1Icon.setScale(0.5); this.type1Icon.setOrigin(0, 0); this.starterSelectContainer.add(this.type1Icon); - this.type2Icon = this.scene.add.sprite(26, 98, `types${Utils.verifyLang(i18next.resolvedLanguage) ? `_${i18next.resolvedLanguage}` : ""}`); + this.type2Icon = this.scene.add.sprite(26, 98, Utils.getLocalizedSpriteKey("types")); this.type2Icon.setScale(0.5); this.type2Icon.setOrigin(0, 0); this.starterSelectContainer.add(this.type2Icon); @@ -872,38 +874,6 @@ export default class StarterSelectUiHandler extends MessageUiHandler { this.message.setOrigin(0, 0); this.starterSelectMessageBoxContainer.add(this.message); - const date = new Date(); - date.setUTCHours(0, 0, 0, 0); - - this.scene.executeWithSeedOffset(() => { - for (let c = 0; c < 3; c++) { - let randomSpeciesId: Species; - let species: PokemonSpecies | undefined; - - const generateSpecies = () => { - randomSpeciesId = Utils.randSeedItem(starterSpecies); - species = getPokemonSpecies(randomSpeciesId); - }; - - let dupe = false; - - do { - dupe = false; - - generateSpecies(); - - for (let ps = 0; ps < c; ps++) { - if (this.pokerusSpecies[ps] === species) { - dupe = true; - break; - } - } - } while (dupe); - - this.pokerusSpecies.push(species!); // TODO: is the bang correct? - } - }, 0, date.getTime().toString()); - this.statsContainer = new StatsContainer(this.scene, 6, 16); this.scene.add.existing(this.statsContainer); @@ -934,6 +904,8 @@ export default class StarterSelectUiHandler extends MessageUiHandler { this.starterPreferences = StarterPrefs.load(); } this.moveInfoOverlay.clear(); // clear this when removing a menu; the cancel button doesn't seem to trigger this automatically on controllers + this.pokerusSpecies = getPokerusStarters(this.scene); + if (args.length >= 1 && args[0] instanceof Function) { super.show(args); this.starterSelectCallback = args[0] as StarterSelectCallback; @@ -943,7 +915,9 @@ export default class StarterSelectUiHandler extends MessageUiHandler { this.allSpecies.forEach((species, s) => { const icon = this.starterContainers[s].icon; const dexEntry = this.scene.gameData.dexData[species.speciesId]; - this.starterPreferences[species.speciesId] = this.starterPreferences[species.speciesId] ?? {}; + + // Initialize the StarterAttributes for this species + this.starterPreferences[species.speciesId] = this.initStarterPrefs(species); if (dexEntry.caughtAttr) { icon.clearTint(); @@ -970,6 +944,93 @@ export default class StarterSelectUiHandler extends MessageUiHandler { return false; } + /** + * Get the starter attributes for the given PokemonSpecies, after sanitizing them. + * If somehow a preference is set for a form, variant, gender, ability or nature + * that wasn't actually unlocked or is invalid it will be cleared here + * + * @param species The species to get Starter Preferences for + * @returns StarterAttributes for the species + */ + initStarterPrefs(species: PokemonSpecies): StarterAttributes { + const starterAttributes = this.starterPreferences[species.speciesId]; + const dexEntry = this.scene.gameData.dexData[species.speciesId]; + const starterData = this.scene.gameData.starterData[species.speciesId]; + + // no preferences or Pokemon wasn't caught, return empty attribute + if (!starterAttributes || !dexEntry.caughtAttr) { + return {}; + } + + const caughtAttr = dexEntry.caughtAttr; + + const hasShiny = caughtAttr & DexAttr.SHINY; + const hasNonShiny = caughtAttr & DexAttr.NON_SHINY; + if (starterAttributes.shiny && !hasShiny) { + // shiny form wasn't unlocked, purging shiny and variant setting + delete starterAttributes.shiny; + delete starterAttributes.variant; + } else if (starterAttributes.shiny === false && !hasNonShiny) { + // non shiny form wasn't unlocked, purging shiny setting + delete starterAttributes.shiny; + } + + if (starterAttributes.variant !== undefined && !isNaN(starterAttributes.variant)) { + const unlockedVariants = [ + hasNonShiny, + hasShiny && caughtAttr & DexAttr.DEFAULT_VARIANT, + hasShiny && caughtAttr & DexAttr.VARIANT_2, + hasShiny && caughtAttr & DexAttr.VARIANT_3 + ]; + if (!unlockedVariants[starterAttributes.variant + 1]) { // add 1 as -1 = non-shiny + // requested variant wasn't unlocked, purging setting + delete starterAttributes.variant; + } + } + + if (starterAttributes.female !== undefined) { + if (!(starterAttributes.female ? caughtAttr & DexAttr.FEMALE : caughtAttr & DexAttr.MALE)) { + // requested gender wasn't unlocked, purging setting + delete starterAttributes.female; + } + } + + if (starterAttributes.ability !== undefined) { + const speciesHasSingleAbility = species.ability2 === species.ability1; + const abilityAttr = starterData.abilityAttr; + const hasAbility1 = abilityAttr & AbilityAttr.ABILITY_1; + const hasAbility2 = abilityAttr & AbilityAttr.ABILITY_2; + const hasHiddenAbility = abilityAttr & AbilityAttr.ABILITY_HIDDEN; + // Due to a past bug it is possible that some Pokemon with a single ability have the ability2 flag + // In this case, we only count ability2 as valid if ability1 was not unlocked, otherwise we ignore it + const unlockedAbilities = [ + hasAbility1, + speciesHasSingleAbility ? hasAbility2 && !hasAbility1 : hasAbility2, + hasHiddenAbility + ]; + if (!unlockedAbilities[starterAttributes.ability]) { + // requested ability wasn't unlocked, purging setting + delete starterAttributes.ability; + } + } + + const selectedForm = starterAttributes.form; + if (selectedForm !== undefined && (!species.forms[selectedForm]?.isStarterSelectable || !(caughtAttr & this.scene.gameData.getFormAttr(selectedForm)))) { + // requested form wasn't unlocked/isn't a starter form, purging setting + delete starterAttributes.form; + } + + if (starterAttributes.nature !== undefined) { + const unlockedNatures = this.scene.gameData.getNaturesForAttr(dexEntry.natureAttr); + if (unlockedNatures.indexOf(starterAttributes.nature as unknown as Nature) < 0) { + // requested nature wasn't unlocked, purging setting + delete starterAttributes.nature; + } + } + + return starterAttributes; + } + /** * Set the selections for all filters to their default starting value */ @@ -1039,11 +1100,11 @@ export default class StarterSelectUiHandler extends MessageUiHandler { const starterData = this.scene.gameData.starterData[speciesId]; return starterData.candyCount >= getValueReductionCandyCounts(speciesStarters[speciesId])[starterData.valueReduction] - && starterData.valueReduction < 2; + && starterData.valueReduction < valueReductionMax; } /** - * Determines if an same species egg can be baught for the given species ID + * Determines if an same species egg can be bought for the given species ID * @param speciesId The ID of the species to check the value reduction of * @returns true if the user has enough candies */ @@ -1092,15 +1153,18 @@ export default class StarterSelectUiHandler extends MessageUiHandler { } ],}; - const passiveAvailable = this.isPassiveAvailable(species.speciesId); - // 'Only Passives' mode + const isPassiveAvailable = this.isPassiveAvailable(species.speciesId); + const isValueReductionAvailable = this.isValueReductionAvailable(species.speciesId); + const isSameSpeciesEggAvailable = this.isSameSpeciesEggAvailable(species.speciesId); + + // 'Passives Only' mode if (this.scene.candyUpgradeNotification === 1) { - if (passiveAvailable) { + if (isPassiveAvailable) { this.scene.tweens.chain(tweenChain).paused = startPaused; } // 'On' mode } else if (this.scene.candyUpgradeNotification === 2) { - if (passiveAvailable || this.isValueReductionAvailable(species.speciesId)) { + if (isPassiveAvailable || isValueReductionAvailable || isSameSpeciesEggAvailable) { this.scene.tweens.chain(tweenChain).paused = startPaused; } } @@ -1119,16 +1183,19 @@ export default class StarterSelectUiHandler extends MessageUiHandler { return; } - const passiveAvailable = this.isPassiveAvailable(species.speciesId); - // 'Only Passive Unlocks' mode + const isPassiveAvailable = this.isPassiveAvailable(species.speciesId); + const isValueReductionAvailable = this.isValueReductionAvailable(species.speciesId); + const isSameSpeciesEggAvailable = this.isSameSpeciesEggAvailable(species.speciesId); + + // 'Passive Only' mode if (this.scene.candyUpgradeNotification === 1) { - starter.candyUpgradeIcon.setVisible(slotVisible && passiveAvailable); + starter.candyUpgradeIcon.setVisible(slotVisible && isPassiveAvailable); starter.candyUpgradeOverlayIcon.setVisible(slotVisible && starter.candyUpgradeIcon.visible); // 'On' mode } else if (this.scene.candyUpgradeNotification === 2) { starter.candyUpgradeIcon.setVisible( - slotVisible && ( passiveAvailable || this.isValueReductionAvailable(species.speciesId))); + slotVisible && ( isPassiveAvailable || isValueReductionAvailable || isSameSpeciesEggAvailable )); starter.candyUpgradeOverlayIcon.setVisible(slotVisible && starter.candyUpgradeIcon.visible); } } @@ -1293,7 +1360,7 @@ export default class StarterSelectUiHandler extends MessageUiHandler { } else if (numberOfStarters > 0) { // UP from filter bar to bottom of Pokemon list this.setFilterMode(false); - this.scrollCursor = Math.max(0,numOfRows - 9); + this.scrollCursor = Math.max(0, numOfRows - 9); this.updateScroll(); const proportion = (this.filterBarCursor + 0.5) / this.filterBar.numFilters; const targetCol = Math.min(8, Math.floor(proportion * 11)); @@ -1660,7 +1727,7 @@ export default class StarterSelectUiHandler extends MessageUiHandler { }); } const valueReduction = starterData.valueReduction; - if (valueReduction < 2) { + if (valueReduction < valueReductionMax) { const reductionCost = getValueReductionCandyCounts(speciesStarters[this.lastSpecies.speciesId])[valueReduction]; options.push({ label: `x${reductionCost} ${i18next.t("starterSelectUiHandler:reduceCost")}`, @@ -1678,7 +1745,7 @@ export default class StarterSelectUiHandler extends MessageUiHandler { }); this.tryUpdateValue(0); ui.setMode(Mode.STARTER_SELECT); - this.scene.playSound("buy"); + this.scene.playSound("se/buy"); // if starterContainer exists, update the value reduction background if (starterContainer) { @@ -1723,7 +1790,7 @@ export default class StarterSelectUiHandler extends MessageUiHandler { } }); ui.setMode(Mode.STARTER_SELECT); - this.scene.playSound("buy"); + this.scene.playSound("se/buy"); return true; } @@ -1771,21 +1838,17 @@ export default class StarterSelectUiHandler extends MessageUiHandler { switch (button) { case Button.CYCLE_SHINY: if (this.canCycleShiny) { - const newVariant = props.variant; + const newVariant = starterAttributes.variant ? starterAttributes.variant as Variant : props.variant; starterAttributes.shiny = starterAttributes.shiny ? !starterAttributes.shiny : true; - this.setSpeciesDetails(this.lastSpecies, !props.shiny, undefined, undefined, props.shiny ? 0 : undefined, undefined, undefined); + this.setSpeciesDetails(this.lastSpecies, !props.shiny, undefined, undefined, props.shiny ? 0 : newVariant, undefined, undefined); if (starterAttributes.shiny) { - this.scene.playSound("sparkle"); + this.scene.playSound("se/sparkle"); // Set the variant label to the shiny tint const tint = getVariantTint(newVariant); this.pokemonShinyIcon.setFrame(getVariantIcon(newVariant)); this.pokemonShinyIcon.setTint(tint); this.pokemonShinyIcon.setVisible(true); } else { - // starterAttributes.variant = 0; - if (starterAttributes?.variant) { - delete starterAttributes.variant; - } this.pokemonShinyIcon.setVisible(false); success = true; } @@ -1817,15 +1880,17 @@ export default class StarterSelectUiHandler extends MessageUiHandler { if (this.canCycleAbility) { const abilityCount = this.lastSpecies.getAbilityCount(); const abilityAttr = this.scene.gameData.starterData[this.lastSpecies.speciesId].abilityAttr; + const hasAbility1 = abilityAttr & AbilityAttr.ABILITY_1; let newAbilityIndex = this.abilityCursor; do { newAbilityIndex = (newAbilityIndex + 1) % abilityCount; - if (!newAbilityIndex) { - if (abilityAttr & AbilityAttr.ABILITY_1) { + if (newAbilityIndex === 0) { + if (hasAbility1) { break; } } else if (newAbilityIndex === 1) { - if (this.lastSpecies.ability1 === this.lastSpecies.ability2) { + // If ability 1 and 2 are the same and ability 1 is unlocked, skip over ability 2 + if (this.lastSpecies.ability1 === this.lastSpecies.ability2 && hasAbility1) { newAbilityIndex = (newAbilityIndex + 1) % abilityCount; } break; @@ -2296,43 +2361,39 @@ export default class StarterSelectUiHandler extends MessageUiHandler { container.cost = this.scene.gameData.getSpeciesStarterValue(container.species.speciesId); // First, ensure you have the caught attributes for the species else default to bigint 0 - const isCaught = this.scene.gameData.dexData[container.species.speciesId]?.caughtAttr || BigInt(0); - - // Define the variables based on whether their respective variants have been caught - const isVariant3Caught = !!(isCaught & DexAttr.VARIANT_3); - const isVariant2Caught = !!(isCaught & DexAttr.VARIANT_2); - const isVariantCaught = !!(isCaught & DexAttr.SHINY); - const isUncaught = !isCaught && !isVariantCaught && !isVariant2Caught && !isVariant3Caught; - const isPassiveUnlocked = this.scene.gameData.starterData[container.species.speciesId].passiveAttr > 0; - const isPassiveUnlockable = this.isPassiveAvailable(container.species.speciesId) && !isPassiveUnlocked; - const isCostReduced = this.scene.gameData.starterData[container.species.speciesId].valueReduction > 0; - const isCostReductionUnlockable = this.isValueReductionAvailable(container.species.speciesId); - const isFavorite = this.starterPreferences[container.species.speciesId]?.favorite ?? false; - - const isWin = this.scene.gameData.starterData[container.species.speciesId].classicWinCount > 0; - const isNotWin = this.scene.gameData.starterData[container.species.speciesId].classicWinCount === 0; - const isUndefined = this.scene.gameData.starterData[container.species.speciesId].classicWinCount === undefined; - const isHA = this.scene.gameData.starterData[container.species.speciesId].abilityAttr & AbilityAttr.ABILITY_HIDDEN; - const isEggPurchasable = this.isSameSpeciesEggAvailable(container.species.speciesId); + const caughtAttr = this.scene.gameData.dexData[container.species.speciesId]?.caughtAttr || BigInt(0); + const starterData = this.scene.gameData.starterData[container.species.speciesId]; + // Gen filter const fitsGen = this.filterBar.getVals(DropDownColumn.GEN).includes(container.species.generation); + // Type filter const fitsType = this.filterBar.getVals(DropDownColumn.TYPES).some(type => container.species.isOfType((type as number) - 1)); + // Caught / Shiny filter + const isNonShinyCaught = !!(caughtAttr & DexAttr.NON_SHINY); + const isShinyCaught = !!(caughtAttr & DexAttr.SHINY); + const isVariant1Caught = isShinyCaught && !!(caughtAttr & DexAttr.DEFAULT_VARIANT); + const isVariant2Caught = isShinyCaught && !!(caughtAttr & DexAttr.VARIANT_2); + const isVariant3Caught = isShinyCaught && !!(caughtAttr & DexAttr.VARIANT_3); + const isUncaught = !isNonShinyCaught && !isVariant1Caught && !isVariant2Caught && !isVariant3Caught; const fitsCaught = this.filterBar.getVals(DropDownColumn.CAUGHT).some(caught => { if (caught === "SHINY3") { return isVariant3Caught; } else if (caught === "SHINY2") { return isVariant2Caught && !isVariant3Caught; } else if (caught === "SHINY") { - return isVariantCaught && !isVariant2Caught && !isVariant3Caught; + return isVariant1Caught && !isVariant2Caught && !isVariant3Caught; } else if (caught === "NORMAL") { - return isCaught && !isVariantCaught && !isVariant2Caught && !isVariant3Caught; + return isNonShinyCaught && !isVariant1Caught && !isVariant2Caught && !isVariant3Caught; } else if (caught === "UNCAUGHT") { return isUncaught; } }); + // Passive Filter + const isPassiveUnlocked = starterData.passiveAttr > 0; + const isPassiveUnlockable = this.isPassiveAvailable(container.species.speciesId) && !isPassiveUnlocked; const fitsPassive = this.filterBar.getVals(DropDownColumn.UNLOCKS).some(unlocks => { if (unlocks.val === "PASSIVE" && unlocks.state === DropDownState.ON) { return isPassiveUnlocked; @@ -2345,6 +2406,9 @@ export default class StarterSelectUiHandler extends MessageUiHandler { } }); + // Cost Reduction Filter + const isCostReduced = starterData.valueReduction > 0; + const isCostReductionUnlockable = this.isValueReductionAvailable(container.species.speciesId); const fitsCostReduction = this.filterBar.getVals(DropDownColumn.UNLOCKS).some(unlocks => { if (unlocks.val === "COST_REDUCTION" && unlocks.state === DropDownState.ON) { return isCostReduced; @@ -2357,6 +2421,8 @@ export default class StarterSelectUiHandler extends MessageUiHandler { } }); + // Favorite Filter + const isFavorite = this.starterPreferences[container.species.speciesId]?.favorite ?? false; const fitsFavorite = this.filterBar.getVals(DropDownColumn.MISC).some(misc => { if (misc.val === "FAVORITE" && misc.state === DropDownState.ON) { return isFavorite; @@ -2369,28 +2435,34 @@ export default class StarterSelectUiHandler extends MessageUiHandler { } }); + // Ribbon / Classic Win Filter + const hasWon = starterData.classicWinCount > 0; + const hasNotWon = starterData.classicWinCount === 0; + const isUndefined = starterData.classicWinCount === undefined; const fitsWin = this.filterBar.getVals(DropDownColumn.MISC).some(misc => { - if (container.species.speciesId < 10) { - } if (misc.val === "WIN" && misc.state === DropDownState.ON) { - return isWin; + return hasWon; } else if (misc.val === "WIN" && misc.state === DropDownState.EXCLUDE) { - return isNotWin || isUndefined; + return hasNotWon || isUndefined; } else if (misc.val === "WIN" && misc.state === DropDownState.OFF) { return true; } }); + // HA Filter + const hasHA = starterData.abilityAttr & AbilityAttr.ABILITY_HIDDEN; const fitsHA = this.filterBar.getVals(DropDownColumn.MISC).some(misc => { if (misc.val === "HIDDEN_ABILITY" && misc.state === DropDownState.ON) { - return isHA; + return hasHA; } else if (misc.val === "HIDDEN_ABILITY" && misc.state === DropDownState.EXCLUDE) { - return !isHA; + return !hasHA; } else if (misc.val === "HIDDEN_ABILITY" && misc.state === DropDownState.OFF) { return true; } }); + // Egg Purchasable Filter + const isEggPurchasable = this.isSameSpeciesEggAvailable(container.species.speciesId); const fitsEgg = this.filterBar.getVals(DropDownColumn.MISC).some(misc => { if (misc.val === "EGG" && misc.state === DropDownState.ON) { return isEggPurchasable; @@ -2401,6 +2473,7 @@ export default class StarterSelectUiHandler extends MessageUiHandler { } }); + // Pokerus Filter const fitsPokerus = this.filterBar.getVals(DropDownColumn.MISC).some(misc => { if (misc.val === "POKERUS" && misc.state === DropDownState.ON) { return this.pokerusSpecies.includes(container.species); @@ -2416,7 +2489,7 @@ export default class StarterSelectUiHandler extends MessageUiHandler { } }); - this.starterSelectScrollBar.setPages(Math.ceil((this.filteredStarterContainers.length - 81) / 9) + 1); + this.starterSelectScrollBar.setPages(Math.max(Math.ceil(this.filteredStarterContainers.length / 9), 1)); this.starterSelectScrollBar.setPage(0); // sort @@ -2536,7 +2609,7 @@ export default class StarterSelectUiHandler extends MessageUiHandler { this.filterBar.setCursor(cursor); } else { - cursor = Math.max(Math.min(this.filteredStarterContainers.length - 1, cursor),0); + cursor = Math.max(Math.min(this.filteredStarterContainers.length - 1, cursor), 0); changed = super.setCursor(cursor); const pos = calcStarterPosition(cursor, this.scrollCursor); @@ -2599,56 +2672,13 @@ export default class StarterSelectUiHandler extends MessageUiHandler { this.natureCursor = species ? this.scene.gameData.getSpeciesDefaultNature(species) : 0; const starterAttributes : StarterAttributes | null = species ? {...this.starterPreferences[species.speciesId]} : null; - // validate starterAttributes - if (starterAttributes) { - // this may cause changes so we created a copy of the attributes before - if (starterAttributes.variant && !isNaN(starterAttributes.variant)) { - if (![ - this.speciesStarterDexEntry!.caughtAttr & DexAttr.NON_SHINY, // TODO: is that bang correct? - this.speciesStarterDexEntry!.caughtAttr & DexAttr.DEFAULT_VARIANT, // TODO: is that bang correct? - this.speciesStarterDexEntry!.caughtAttr & DexAttr.VARIANT_2, // TODO: is that bang correct? - this.speciesStarterDexEntry!.caughtAttr & DexAttr.VARIANT_3 // TODO: is that bang correct? - ][starterAttributes.variant+1]) { // add 1 as -1 = non-shiny - // requested variant wasn't unlocked, purging setting - delete starterAttributes.variant; - } - } - - if (typeof starterAttributes.female !== "boolean" || !(starterAttributes.female ? - this.speciesStarterDexEntry!.caughtAttr & DexAttr.FEMALE : // TODO: is this bang correct? - this.speciesStarterDexEntry!.caughtAttr & DexAttr.MALE // TODO: is this bang correct? - )) { - // requested gender wasn't unlocked, purging setting - delete starterAttributes.female; - } - - const abilityAttr = this.scene.gameData.starterData[species!.speciesId].abilityAttr; // TODO: is this bang correct? - if (![ - abilityAttr & AbilityAttr.ABILITY_1, - species!.ability2 ? (abilityAttr & AbilityAttr.ABILITY_2) : abilityAttr & AbilityAttr.ABILITY_HIDDEN, // TODO: is this bang correct? - species!.ability2 && abilityAttr & AbilityAttr.ABILITY_HIDDEN // TODO: is this bang correct? - ][starterAttributes.ability!]) { // TODO: is this bang correct? - // requested ability wasn't unlocked, purging setting - delete starterAttributes.ability; - } - - if (!(species?.forms[starterAttributes.form!]?.isStarterSelectable && this.speciesStarterDexEntry!.caughtAttr & this.scene.gameData.getFormAttr(starterAttributes.form!))) { // TODO: are those bangs correct? - // requested form wasn't unlocked/isn't a starter form, purging setting - delete starterAttributes.form; - } - - if (this.scene.gameData.getNaturesForAttr(this.speciesStarterDexEntry?.natureAttr).indexOf(starterAttributes.nature as unknown as Nature) < 0) { - // requested nature wasn't unlocked, purging setting - delete starterAttributes.nature; - } - } if (starterAttributes?.nature) { // load default nature from stater save data, if set this.natureCursor = starterAttributes.nature; } if (starterAttributes?.ability && !isNaN(starterAttributes.ability)) { - // load default nature from stater save data, if set + // load default ability from stater save data, if set this.abilityCursor = starterAttributes.ability; } @@ -2695,7 +2725,6 @@ export default class StarterSelectUiHandler extends MessageUiHandler { this.pokemonLuckText.setText(luck.toString()); this.pokemonLuckText.setTint(getVariantTint(Math.min(luck - 1, 2) as Variant)); this.pokemonLuckLabelText.setVisible(this.pokemonLuckText.visible); - this.pokemonShinyIcon.setVisible(this.starterPreferences[species.speciesId]?.shiny ?? false); //Growth translate let growthReadable = Utils.toReadableString(GrowthRate[species.growthRate]); @@ -2719,12 +2748,14 @@ export default class StarterSelectUiHandler extends MessageUiHandler { this.pokemonHatchedIcon.setFrame(getEggTierForSpecies(species)); } this.pokemonHatchedCountText.setText(`${this.speciesStarterDexEntry.hatchedCount}`); + const defaultDexAttr = this.getCurrentDexProps(species.speciesId); const defaultProps = this.scene.gameData.getSpeciesDexAttrProps(species, defaultDexAttr); const variant = defaultProps.variant; const tint = getVariantTint(variant); this.pokemonShinyIcon.setFrame(getVariantIcon(variant)); this.pokemonShinyIcon.setTint(tint); + this.pokemonShinyIcon.setVisible(defaultProps.shiny); this.pokemonCaughtHatchedContainer.setVisible(true); if (pokemonPrevolutions.hasOwnProperty(species.speciesId)) { this.pokemonCaughtHatchedContainer.setY(16); @@ -2767,7 +2798,7 @@ export default class StarterSelectUiHandler extends MessageUiHandler { this.pokemonCandyDarknessOverlay.on("pointerout", () => (this.scene as BattleScene).ui.hideTooltip()); } - this.pokemonCandyDarknessOverlay.setCrop(0,0,16, candyCropY); + this.pokemonCandyDarknessOverlay.setCrop(0, 0, 16, candyCropY); } @@ -2914,21 +2945,13 @@ export default class StarterSelectUiHandler extends MessageUiHandler { const dexEntry = this.scene.gameData.dexData[species.speciesId]; const abilityAttr = this.scene.gameData.starterData[species.speciesId].abilityAttr; - const isCaught = this.scene.gameData.dexData[species.speciesId]?.caughtAttr || BigInt(0); - const isVariant3Caught = !!(isCaught & DexAttr.VARIANT_3); - const isVariant2Caught = !!(isCaught & DexAttr.VARIANT_2); - const isDefaultVariantCaught = !!(isCaught & DexAttr.DEFAULT_VARIANT); - const isVariantCaught = !!(isCaught & DexAttr.SHINY); - const isMaleCaught = !!(isCaught & DexAttr.MALE); - const isFemaleCaught = !!(isCaught & DexAttr.FEMALE); - - const starterAttributes = this.starterPreferences[species.speciesId]; - - const props = this.scene.gameData.getSpeciesDexAttrProps(species, this.getCurrentDexProps(species.speciesId)); - const defaultAbilityIndex = this.scene.gameData.getStarterSpeciesDefaultAbilityIndex(species); - const defaultNature = this.scene.gameData.getSpeciesDefaultNature(species); + const caughtAttr = this.scene.gameData.dexData[species.speciesId]?.caughtAttr || BigInt(0); if (!dexEntry.caughtAttr) { + const props = this.scene.gameData.getSpeciesDexAttrProps(species, this.getCurrentDexProps(species.speciesId)); + const defaultAbilityIndex = this.scene.gameData.getStarterSpeciesDefaultAbilityIndex(species); + const defaultNature = this.scene.gameData.getSpeciesDefaultNature(species); + if (shiny === undefined || shiny !== props.shiny) { shiny = props.shiny; } @@ -2947,83 +2970,6 @@ export default class StarterSelectUiHandler extends MessageUiHandler { if (natureIndex === undefined || natureIndex !== defaultNature) { natureIndex = defaultNature; } - } else { - // compare current shiny, formIndex, female, variant, abilityIndex, natureIndex with the caught ones - // if the current ones are not caught, we need to find the next caught ones - if (shiny) { - if (!(isVariantCaught || isVariant2Caught || isVariant3Caught)) { - shiny = false; - starterAttributes.shiny = false; - variant = 0; - starterAttributes.variant = 0; - } else { - shiny = true; - starterAttributes.shiny = true; - if (variant === 0 && !isDefaultVariantCaught) { - if (isVariant2Caught) { - variant = 1; - starterAttributes.variant = 1; - } else if (isVariant3Caught) { - variant = 2; - starterAttributes.variant = 2; - } else { - variant = 0; - starterAttributes.variant = 0; - } - } else if (variant === 1 && !isVariant2Caught) { - if (isVariantCaught) { - variant = 0; - starterAttributes.variant = 0; - } else if (isVariant3Caught) { - variant = 2; - starterAttributes.variant = 2; - } else { - variant = 0; - starterAttributes.variant = 0; - } - } else if (variant === 2 && !isVariant3Caught) { - if (isVariantCaught) { - variant = 0; - starterAttributes.variant = 0; - } else if (isVariant2Caught) { - variant = 1; - starterAttributes.variant = 1; - } else { - variant = 0; - starterAttributes.variant = 0; - } - } - } - } - if (female) { - if (!isFemaleCaught) { - female = false; - starterAttributes.female = false; - } - } else { - if (!isMaleCaught) { - female = true; - starterAttributes.female = true; - } - } - - if (species.forms) { - const formCount = species.forms.length; - let newFormIndex = formIndex??0; - if (species.forms[newFormIndex]) { - const isValidForm = species.forms[newFormIndex].isStarterSelectable && dexEntry.caughtAttr & this.scene.gameData.getFormAttr(newFormIndex); - if (!isValidForm) { - do { - newFormIndex = (newFormIndex + 1) % formCount; - if (species.forms[newFormIndex].isStarterSelectable && dexEntry.caughtAttr & this.scene.gameData.getFormAttr(newFormIndex)) { - break; - } - } while (newFormIndex !== props.formIndex); - formIndex = newFormIndex; - starterAttributes.form = formIndex; - } - } - } } this.shinyOverlay.setVisible(shiny ?? false); // TODO: is false the correct default? @@ -3065,13 +3011,38 @@ export default class StarterSelectUiHandler extends MessageUiHandler { currentFilteredContainer.checkIconId(female, formIndex, shiny, variant); } - this.canCycleShiny = isVariantCaught || isVariant2Caught || isVariant3Caught; + const isNonShinyCaught = !!(caughtAttr & DexAttr.NON_SHINY); + const isShinyCaught = !!(caughtAttr & DexAttr.SHINY); + const isVariant1Caught = isShinyCaught && !!(caughtAttr & DexAttr.DEFAULT_VARIANT); + const isVariant2Caught = isShinyCaught && !!(caughtAttr & DexAttr.VARIANT_2); + const isVariant3Caught = isShinyCaught && !!(caughtAttr & DexAttr.VARIANT_3); + + this.canCycleShiny = isNonShinyCaught && isShinyCaught; + this.canCycleVariant = !!shiny && [ isVariant1Caught, isVariant2Caught, isVariant3Caught].filter(v => v).length > 1; + + const isMaleCaught = !!(caughtAttr & DexAttr.MALE); + const isFemaleCaught = !!(caughtAttr & DexAttr.FEMALE); this.canCycleGender = isMaleCaught && isFemaleCaught; - this.canCycleAbility = [ abilityAttr & AbilityAttr.ABILITY_1, (abilityAttr & AbilityAttr.ABILITY_2) && species.ability2, abilityAttr & AbilityAttr.ABILITY_HIDDEN ].filter(a => a).length > 1; + + const hasAbility1 = abilityAttr & AbilityAttr.ABILITY_1; + let hasAbility2 = abilityAttr & AbilityAttr.ABILITY_2; + const hasHiddenAbility = abilityAttr & AbilityAttr.ABILITY_HIDDEN; + + /* + * Check for Pokemon with a single ability (at some point it was possible to catch them with their ability 2 attribute) + * This prevents cycling between ability 1 and 2 if they are both unlocked and the same + * but we still need to account for the possibility ability 1 was never unlocked and fallback on ability 2 in this case + */ + if (hasAbility1 && hasAbility2 && species.ability1 === species.ability2) { + hasAbility2 = 0; + } + + this.canCycleAbility = [ hasAbility1, hasAbility2, hasHiddenAbility ].filter(a => a).length > 1; + this.canCycleForm = species.forms.filter(f => f.isStarterSelectable || !pokemonFormChanges[species.speciesId]?.find(fc => fc.formKey)) .map((_, f) => dexEntry.caughtAttr & this.scene.gameData.getFormAttr(f)).filter(f => f).length > 1; this.canCycleNature = this.scene.gameData.getNaturesForAttr(dexEntry.natureAttr).length > 1; - this.canCycleVariant = !!shiny && [ dexEntry.caughtAttr & DexAttr.DEFAULT_VARIANT, dexEntry.caughtAttr & DexAttr.VARIANT_2, dexEntry.caughtAttr & DexAttr.VARIANT_3].filter(v => v).length > 1; + } if (dexEntry.caughtAttr && species.malePercent !== null) { @@ -3449,39 +3420,55 @@ export default class StarterSelectUiHandler extends MessageUiHandler { return canStart; } - /* this creates a temporary dex attr props that we use to check whether a pokemon is valid for a challenge. - * when checking for certain challenges (i.e. mono type), we need to check for form changes AND evolutions - * However, since some pokemon can evolve based on their intial gender/form, we need a way to look for that - * This temporary dex attr will therefore ONLY look at gender and form, since there's no cases of shinies/variants - * having different evolutions to their non shiny/variant part, and so those can be ignored - * Since the current form and gender is stored in the starter preferences, this is where we get the values from - */ + /** + * Creates a temporary dex attr props that will be used to check whether a pokemon is valid for a challenge + * and to display the correct shiny, variant, and form based on the StarterPreferences + * + * @param speciesId the id of the species to get props for + * @returns the dex props + */ getCurrentDexProps(speciesId: number): bigint { let props = 0n; + const caughtAttr = this.scene.gameData.dexData[speciesId].caughtAttr; - if (this.starterPreferences[speciesId]?.female) { // this checks the gender of the pokemon + /* this checks the gender of the pokemon; this works by checking a) that the starter preferences for the species exist, and if so, is it female. If so, it'll add DexAttr.FEMALE to our temp props + * It then checks b) if the caughtAttr for the pokemon is female and NOT male - this means that the ONLY gender we've gotten is female, and we need to add DexAttr.FEMALE to our temp props + * If neither of these pass, we add DexAttr.MALE to our temp props + */ + if (this.starterPreferences[speciesId]?.female || ((caughtAttr & DexAttr.FEMALE) > 0n && (caughtAttr & DexAttr.MALE) === 0n)) { props += DexAttr.FEMALE; } else { props += DexAttr.MALE; } - if (this.starterPreferences[speciesId]?.shiny) { + /* This part is very similar to above, but instead of for gender, it checks for shiny within starter preferences. + * If they're not there, it checks the caughtAttr for shiny only (i.e. SHINY === true && NON_SHINY === false) + */ + if (this.starterPreferences[speciesId]?.shiny || ((caughtAttr & DexAttr.SHINY) > 0n && (caughtAttr & DexAttr.NON_SHINY) === 0n)) { props += DexAttr.SHINY; if (this.starterPreferences[speciesId]?.variant) { props += BigInt(Math.pow(2, this.starterPreferences[speciesId]?.variant)) * DexAttr.DEFAULT_VARIANT; } else { - props += DexAttr.DEFAULT_VARIANT; + /* This calculates the correct variant if there's no starter preferences for it. + * This gets the lowest tier variant that you've caught (in line with other mechanics) and adds it to the temp props + */ + if ((caughtAttr & DexAttr.DEFAULT_VARIANT) > 0) { + props += DexAttr.DEFAULT_VARIANT; + } + if ((caughtAttr & DexAttr.VARIANT_2) > 0) { + props += DexAttr.VARIANT_2; + } else if ((caughtAttr & DexAttr.VARIANT_3) > 0) { + props += DexAttr.VARIANT_3; + } } } else { props += DexAttr.NON_SHINY; - if (this.starterPreferences[speciesId]?.variant) { - delete this.starterPreferences[speciesId].variant; - } props += DexAttr.DEFAULT_VARIANT; // we add the default variant here because non shiny versions are listed as default variant } if (this.starterPreferences[speciesId]?.form) { // this checks for the form of the pokemon props += BigInt(Math.pow(2, this.starterPreferences[speciesId]?.form)) * DexAttr.DEFAULT_FORM; } else { - props += DexAttr.DEFAULT_FORM; + // Get the first unlocked form + props += this.scene.gameData.getFormAttr(this.scene.gameData.getFormIndex(caughtAttr)); } return props; diff --git a/src/ui/stats-container.ts b/src/ui/stats-container.ts index b4e799bafc0..2bd7099a2c5 100644 --- a/src/ui/stats-container.ts +++ b/src/ui/stats-container.ts @@ -8,7 +8,7 @@ const ivChartStatCoordMultipliers = [[0, -1], [0.825, -0.5], [0.825, 0.5], [-0.8 const speedLabelOffset = -3; const sideLabelOffset = 1; const ivLabelOffset = [0, sideLabelOffset, -sideLabelOffset, sideLabelOffset, -sideLabelOffset, speedLabelOffset]; -const ivChartStatIndexes = [0,1,2,5,4,3]; // swap special attack and speed +const ivChartStatIndexes = [0, 1, 2, 5, 4, 3]; // swap special attack and speed const defaultIvChartData = new Array(12).fill(null).map(() => 0); export class StatsContainer extends Phaser.GameObjects.Container { diff --git a/src/ui/summary-ui-handler.ts b/src/ui/summary-ui-handler.ts index 030e67fcc30..ea7b798f2bf 100644 --- a/src/ui/summary-ui-handler.ts +++ b/src/ui/summary-ui-handler.ts @@ -343,7 +343,7 @@ export default class SummaryUiHandler extends UiHandler { this.candyCountText.setText(`x${this.scene.gameData.starterData[this.pokemon.species.getRootSpeciesId()].candyCount}`); - this.candyShadow.setCrop(0,0,16, candyCropY); + this.candyShadow.setCrop(0, 0, 16, candyCropY); const doubleShiny = isFusion && this.pokemon.shiny && this.pokemon.fusionShiny; const baseVariant = !doubleShiny ? this.pokemon.getVariant() : this.pokemon.variant; @@ -716,7 +716,8 @@ export default class SummaryUiHandler extends UiHandler { const getTypeIcon = (index: integer, type: Type, tera: boolean = false) => { const xCoord = typeLabel.width * typeLabel.scale + 9 + 34 * index; const typeIcon = !tera - ? this.scene.add.sprite(xCoord, 42, `types${Utils.verifyLang(i18next.resolvedLanguage) ? `_${i18next.resolvedLanguage}` : ""}`, Type[type].toLowerCase()) : this.scene.add.sprite(xCoord, 42, "type_tera"); + ? this.scene.add.sprite(xCoord, 42, Utils.getLocalizedSpriteKey("types"), Type[type].toLowerCase()) + : this.scene.add.sprite(xCoord, 42, "type_tera"); if (tera) { typeIcon.setScale(0.5); const typeRgb = getTypeRgb(type); @@ -824,10 +825,7 @@ export default class SummaryUiHandler extends UiHandler { biome: `${getBBCodeFrag(getBiomeName(this.pokemon?.metBiome!), TextStyle.SUMMARY_RED)}${closeFragment}`, // TODO: is this bang correct? level: `${getBBCodeFrag(this.pokemon?.metLevel.toString()!, TextStyle.SUMMARY_RED)}${closeFragment}`, // TODO: is this bang correct? }), - natureFragment: - i18next.exists(`pokemonSummary:natureFragment.${rawNature}`) ? - i18next.t(`pokemonSummary:natureFragment.${rawNature}`, { nature: nature }) : - nature, + natureFragment: i18next.t(`pokemonSummary:natureFragment.${rawNature}`, { nature: nature }) }); const memoText = addBBCodeTextObject(this.scene, 7, 113, String(memoString), TextStyle.WINDOW_ALT); @@ -934,10 +932,14 @@ export default class SummaryUiHandler extends UiHandler { if (this.summaryUiMode === SummaryUiMode.LEARN_MOVE) { this.extraMoveRowContainer.setVisible(true); - const newMoveTypeIcon = this.scene.add.sprite(0, 0, `types${Utils.verifyLang(i18next.resolvedLanguage) ? `_${i18next.resolvedLanguage}` : ""}`, Type[this.newMove?.type!].toLowerCase()); // TODO: is this bang correct? - newMoveTypeIcon.setOrigin(0, 1); - this.extraMoveRowContainer.add(newMoveTypeIcon); + if (this.newMove && this.pokemon) { + const spriteKey = Utils.getLocalizedSpriteKey("types"); + const moveType = this.pokemon.getMoveType(this.newMove); + const newMoveTypeIcon = this.scene.add.sprite(0, 0, spriteKey, Type[moveType].toLowerCase()); + newMoveTypeIcon.setOrigin(0, 1); + this.extraMoveRowContainer.add(newMoveTypeIcon); + } const ppOverlay = this.scene.add.image(163, -1, "summary_moves_overlay_pp"); ppOverlay.setOrigin(0, 1); this.extraMoveRowContainer.add(ppOverlay); @@ -956,8 +958,11 @@ export default class SummaryUiHandler extends UiHandler { const moveRowContainer = this.scene.add.container(0, 16 * m); this.moveRowsContainer.add(moveRowContainer); - if (move) { - const typeIcon = this.scene.add.sprite(0, 0, `types${Utils.verifyLang(i18next.resolvedLanguage) ? `_${i18next.resolvedLanguage}` : ""}`, Type[move.getMove().type].toLowerCase()); typeIcon.setOrigin(0, 1); + if (move && this.pokemon) { + const spriteKey = Utils.getLocalizedSpriteKey("types"); + const moveType = this.pokemon.getMoveType(move.getMove()); + const typeIcon = this.scene.add.sprite(0, 0, spriteKey, Type[moveType].toLowerCase()); + typeIcon.setOrigin(0, 1); moveRowContainer.add(typeIcon); } diff --git a/src/ui/target-select-ui-handler.ts b/src/ui/target-select-ui-handler.ts index 42c7fef5660..6ca580dc2b2 100644 --- a/src/ui/target-select-ui-handler.ts +++ b/src/ui/target-select-ui-handler.ts @@ -118,7 +118,7 @@ export default class TargetSelectUiHandler extends UiHandler { this.targetFlashTween = this.scene.tweens.add({ targets: this.targetsHighlighted, - key: { start: 0.55, to: 1 }, + key: { start: 1, to: 0.25 }, loop: -1, loopDelay: 150, duration: Utils.fixedInt(450), diff --git a/src/ui/test-dialogue-ui-handler.ts b/src/ui/test-dialogue-ui-handler.ts new file mode 100644 index 00000000000..3f353bbc461 --- /dev/null +++ b/src/ui/test-dialogue-ui-handler.ts @@ -0,0 +1,147 @@ +import { FormModalUiHandler } from "./form-modal-ui-handler"; +import { ModalConfig } from "./modal-ui-handler"; +import i18next from "i18next"; +import { PlayerPokemon } from "#app/field/pokemon"; +import { OptionSelectItem } from "./abstact-option-select-ui-handler"; +import { isNullOrUndefined } from "#app/utils"; +import { Mode } from "./ui"; + +export default class TestDialogueUiHandler extends FormModalUiHandler { + + keys: string[]; + + constructor(scene, mode) { + super(scene, mode); + } + + setup() { + super.setup(); + + const flattenKeys = (object, topKey?: string, midleKey?: string[]): Array => { + return Object.keys(object).map((t, i) => { + const value = Object.values(object)[i]; + + if (typeof value === "object" && !isNullOrUndefined(value)) { // we check for not null or undefined here because if the language json file has a null key, the typeof will still be an object, but that object will be null, causing issues + // If the value is an object, execute the same process + // si el valor es un objeto ejecuta el mismo proceso + + return flattenKeys(value, topKey ?? t, topKey ? midleKey ? [...midleKey, t] : [t] : undefined).filter((t) => t.length > 0); + } else if (typeof value === "string" || isNullOrUndefined(value)) { // we check for null or undefined here as per above - the typeof is still an object but the value is null so we need to exit out of this and pass the null key + + // Return in the format expected by i18next + return midleKey ? `${topKey}:${midleKey.map((m) => m).join(".")}.${t}` : `${topKey}:${t}`; + } + }).filter((t) => t); + }; + + const keysInArrays = flattenKeys(i18next.getDataByLanguage(String(i18next.resolvedLanguage))).filter((t) => t.length > 0); // Array of arrays + const keys = keysInArrays.flat(Infinity).map(String); // One array of string + this.keys = keys; + } + + getModalTitle(config?: ModalConfig): string { + return "Test Dialogue"; + } + + getFields(config?: ModalConfig): string[] { + return [ "Dialogue" ]; + } + + getWidth(config?: ModalConfig): number { + return 300; + } + + getMargin(config?: ModalConfig): [number, number, number, number] { + return [ 0, 0, 48, 0 ]; + } + + getButtonLabels(config?: ModalConfig): string[] { + return [ "Check", "Cancel" ]; + } + + getReadableErrorMessage(error: string): string { + const colonIndex = error?.indexOf(":"); + if (colonIndex > 0) { + error = error.slice(0, colonIndex); + } + + return super.getReadableErrorMessage(error); + } + + show(args: any[]): boolean { + const ui = this.getUi(); + const input = this.inputs[0]; + input.setMaxLength(255); + + input.on("keydown", (inputObject, evt: KeyboardEvent) => { + if (["escape", "space"].some((v) => v === evt.key.toLowerCase() || v === evt.code.toLowerCase()) && ui.getMode() === Mode.AUTO_COMPLETE) { + // Delete autocomplete list and recovery focus. + inputObject.on("blur", () => inputObject.node.focus(), { once: true }); + ui.revertMode(); + } + }); + + input.on("textchange", (inputObject, evt: InputEvent) => { + // Delete autocomplete. + if (ui.getMode() === Mode.AUTO_COMPLETE) { + ui.revertMode(); + } + + let options: OptionSelectItem[] = []; + const splitArr = inputObject.text.split(" "); + const filteredKeys = this.keys.filter((command) => command.toLowerCase().includes(splitArr[splitArr.length - 1].toLowerCase())); + if (inputObject.text !== "" && filteredKeys.length > 0) { + // if performance is required, you could reduce the number of total results by changing the slice below to not have all ~8000 inputs going + options = filteredKeys.slice(0).map((value) => { + return { + label: value, + handler: () => { + // this is here to make sure that if you try to backspace then enter, the last known evt.data (backspace) is picked up + // this is because evt.data is null for backspace, so without this, the autocomplete windows just closes + if (!isNullOrUndefined(evt.data) || evt.inputType?.toLowerCase() === "deletecontentbackward") { + const separatedArray = inputObject.text.split(" "); + separatedArray[separatedArray.length - 1] = value; + inputObject.setText(separatedArray.join(" ")); + } + ui.revertMode(); + return true; + } + }; + }); + } + + if (options.length > 0) { + const modalOpts = { + options: options, + maxOptions: 5, + modalContainer: this.modalContainer + }; + ui.setOverlayMode(Mode.AUTO_COMPLETE, modalOpts); + } + + }); + + + if (super.show(args)) { + const config = args[0] as ModalConfig; + this.inputs[0].resize(1150, 116); + this.inputContainers[0].list[0].width = 200; + if (args[1] && typeof (args[1] as PlayerPokemon).getNameToRender === "function") { + this.inputs[0].text = (args[1] as PlayerPokemon).getNameToRender(); + } else { + this.inputs[0].text = args[1]; + } + this.submitAction = (_) => { + if (ui.getMode() === Mode.TEST_DIALOGUE) { + this.sanitizeInputs(); + const sanitizedName = btoa(unescape(encodeURIComponent(this.inputs[0].text))); + config.buttonActions[0](sanitizedName); + return true; + } + return false; + }; + return true; + } + return false; + } +} diff --git a/src/ui/text.ts b/src/ui/text.ts index c1d7fe091c0..99a0436bba3 100644 --- a/src/ui/text.ts +++ b/src/ui/text.ts @@ -5,7 +5,7 @@ import BBCodeText from "phaser3-rex-plugins/plugins/gameobjects/tagtext/bbcodete import InputText from "phaser3-rex-plugins/plugins/inputtext"; import BattleScene from "../battle-scene"; import { ModifierTier } from "../modifier/modifier-tier"; -import i18next from "#app/plugins/i18n.js"; +import i18next from "#app/plugins/i18n"; export enum TextStyle { MESSAGE, @@ -227,6 +227,7 @@ export function getBBCodeFrag(content: string, textStyle: TextStyle, uiTheme: Ui } export function getTextColor(textStyle: TextStyle, shadow?: boolean, uiTheme: UiTheme = UiTheme.DEFAULT): string { + const isLegacyTheme = uiTheme === UiTheme.LEGACY; switch (textStyle) { case TextStyle.MESSAGE: return !shadow ? "#f8f8f8" : "#6b5a73"; @@ -235,29 +236,29 @@ export function getTextColor(textStyle: TextStyle, shadow?: boolean, uiTheme: Ui case TextStyle.MOVE_PP_FULL: case TextStyle.TOOLTIP_CONTENT: case TextStyle.SETTINGS_VALUE: - if (uiTheme) { + if (isLegacyTheme) { return !shadow ? "#484848" : "#d0d0c8"; } return !shadow ? "#f8f8f8" : "#6b5a73"; case TextStyle.MOVE_PP_HALF_FULL: - if (uiTheme) { + if (isLegacyTheme) { return !shadow ? "#a68e17" : "#ebd773"; } return !shadow ? "#ccbe00" : "#6e672c"; case TextStyle.MOVE_PP_NEAR_EMPTY: - if (uiTheme) { + if (isLegacyTheme) { return !shadow ? "#d64b00" : "#f7b18b"; } return !shadow ? "#d64b00" : "#69402a"; case TextStyle.MOVE_PP_EMPTY: - if (uiTheme) { + if (isLegacyTheme) { return !shadow ? "#e13d3d" : "#fca2a2"; } return !shadow ? "#e13d3d" : "#632929"; case TextStyle.WINDOW_ALT: return !shadow ? "#484848" : "#d0d0c8"; case TextStyle.BATTLE_INFO: - if (uiTheme) { + if (isLegacyTheme) { return !shadow ? "#404040" : "#ded6b5"; } return !shadow ? "#f8f8f8" : "#6b5a73"; @@ -268,7 +269,7 @@ export function getTextColor(textStyle: TextStyle, shadow?: boolean, uiTheme: Ui case TextStyle.SUMMARY: return !shadow ? "#f8f8f8" : "#636363"; case TextStyle.SUMMARY_ALT: - if (uiTheme) { + if (isLegacyTheme) { return !shadow ? "#f8f8f8" : "#636363"; } return !shadow ? "#484848" : "#d0d0c8"; @@ -288,6 +289,9 @@ export function getTextColor(textStyle: TextStyle, shadow?: boolean, uiTheme: Ui case TextStyle.STATS_LABEL: return !shadow ? "#f8b050" : "#c07800"; case TextStyle.STATS_VALUE: + if (isLegacyTheme) { + return !shadow ? "#484848" : "#d0d0c8"; + } return !shadow ? "#f8f8f8" : "#6b5a73"; case TextStyle.SUMMARY_GREEN: return !shadow ? "#78c850" : "#306850"; diff --git a/src/ui/ui.ts b/src/ui/ui.ts index 67002e32283..7108a8dd480 100644 --- a/src/ui/ui.ts +++ b/src/ui/ui.ts @@ -1,4 +1,4 @@ -import {default as BattleScene} from "../battle-scene"; +import { default as BattleScene } from "../battle-scene"; import UiHandler from "./ui-handler"; import BattleMessageUiHandler from "./battle-message-ui-handler"; import CommandUiHandler from "./command-ui-handler"; @@ -23,8 +23,7 @@ import OptionSelectUiHandler from "./settings/option-select-ui-handler"; import EggHatchSceneHandler from "./egg-hatch-scene-handler"; import EggListUiHandler from "./egg-list-ui-handler"; import EggGachaUiHandler from "./egg-gacha-ui-handler"; -import VouchersUiHandler from "./vouchers-ui-handler"; -import {addWindow} from "./ui-theme"; +import { addWindow } from "./ui-theme"; import LoginFormUiHandler from "./login-form-ui-handler"; import RegistrationFormUiHandler from "./registration-form-ui-handler"; import LoadingModalUiHandler from "./loading-modal-ui-handler"; @@ -37,8 +36,8 @@ import SavingIconHandler from "./saving-icon-handler"; import UnavailableModalUiHandler from "./unavailable-modal-ui-handler"; import OutdatedModalUiHandler from "./outdated-modal-ui-handler"; import SessionReloadModalUiHandler from "./session-reload-modal-ui-handler"; -import {Button} from "#enums/buttons"; -import i18next, {ParseKeys} from "i18next"; +import { Button } from "#enums/buttons"; +import i18next from "i18next"; import GamepadBindingUiHandler from "./settings/gamepad-binding-ui-handler"; import SettingsKeyboardUiHandler from "#app/ui/settings/settings-keyboard-ui-handler"; import KeyboardBindingUiHandler from "#app/ui/settings/keyboard-binding-ui-handler"; @@ -47,6 +46,11 @@ import SettingsAudioUiHandler from "./settings/settings-audio-ui-handler"; import { PlayerGender } from "#enums/player-gender"; import BgmBar from "#app/ui/bgm-bar"; import RenameFormUiHandler from "./rename-form-ui-handler"; +import AdminUiHandler from "./admin-ui-handler"; +import RunHistoryUiHandler from "./run-history-ui-handler"; +import RunInfoUiHandler from "./run-info-ui-handler"; +import TestDialogueUiHandler from "#app/ui/test-dialogue-ui-handler"; +import AutoCompleteUiHandler from "./autocomplete-ui-handler"; export enum Mode { MESSAGE, @@ -75,7 +79,6 @@ export enum Mode { KEYBOARD_BINDING, ACHIEVEMENTS, GAME_STATS, - VOUCHERS, EGG_LIST, EGG_GACHA, LOGIN_FORM, @@ -85,7 +88,12 @@ export enum Mode { UNAVAILABLE, OUTDATED, CHALLENGE_SELECT, - RENAME_POKEMON + RENAME_POKEMON, + RUN_HISTORY, + RUN_INFO, + TEST_DIALOGUE, + AUTO_COMPLETE, + ADMIN, } const transitionModes = [ @@ -97,7 +105,8 @@ const transitionModes = [ Mode.EGG_HATCH_SCENE, Mode.EGG_LIST, Mode.EGG_GACHA, - Mode.CHALLENGE_SELECT + Mode.CHALLENGE_SELECT, + Mode.RUN_HISTORY, ]; const noTransitionModes = [ @@ -115,14 +124,16 @@ const noTransitionModes = [ Mode.SETTINGS_KEYBOARD, Mode.ACHIEVEMENTS, Mode.GAME_STATS, - Mode.VOUCHERS, Mode.LOGIN_FORM, Mode.REGISTRATION_FORM, Mode.LOADING, Mode.SESSION_RELOAD, Mode.UNAVAILABLE, Mode.OUTDATED, - Mode.RENAME_POKEMON + Mode.RENAME_POKEMON, + Mode.TEST_DIALOGUE, + Mode.AUTO_COMPLETE, + Mode.ADMIN, ]; export default class UI extends Phaser.GameObjects.Container { @@ -174,7 +185,6 @@ export default class UI extends Phaser.GameObjects.Container { new KeyboardBindingUiHandler(scene), new AchvsUiHandler(scene), new GameStatsUiHandler(scene), - new VouchersUiHandler(scene), new EggListUiHandler(scene), new EggGachaUiHandler(scene), new LoginFormUiHandler(scene), @@ -185,6 +195,11 @@ export default class UI extends Phaser.GameObjects.Container { new OutdatedModalUiHandler(scene), new GameChallengesUiHandler(scene), new RenameFormUiHandler(scene), + new RunHistoryUiHandler(scene), + new RunInfoUiHandler(scene), + new TestDialogueUiHandler(scene, Mode.TEST_DIALOGUE), + new AutoCompleteUiHandler(scene), + new AdminUiHandler(scene), ]; } @@ -291,30 +306,28 @@ export default class UI extends Phaser.GameObjects.Container { } } - showDialogue(text: string, name: string | undefined, delay: integer | null = 0, callback: Function, callbackDelay?: integer, promptDelay?: integer): void { - // First get the gender of the player (default male) (also used if UNSET) - let playerGenderPrefix = "PGM"; - if ((this.scene as BattleScene).gameData.gender === PlayerGender.FEMALE) { - playerGenderPrefix = "PGF"; - } - // Add the prefix to the text - const localizationKey: string = playerGenderPrefix + text; - + showDialogue(keyOrText: string, name: string | undefined, delay: integer | null = 0, callback: Function, callbackDelay?: integer, promptDelay?: integer): void { + const battleScene = this.scene as BattleScene; // Get localized dialogue (if available) let hasi18n = false; - if (i18next.exists(localizationKey) ) { - text = i18next.t(localizationKey as ParseKeys); + let text = keyOrText; + const genderIndex = battleScene.gameData.gender ?? PlayerGender.UNSET; + const genderStr = PlayerGender[genderIndex].toLowerCase(); + + if (i18next.exists(keyOrText) ) { + const i18nKey = keyOrText; hasi18n = true; + text = i18next.t(i18nKey, { context: genderStr }); // override text with translation // Skip dialogue if the player has enabled the option and the dialogue has been already seen - if ((this.scene as BattleScene).skipSeenDialogues && (this.scene as BattleScene).gameData.getSeenDialogues()[localizationKey] === true) { - console.log(`Dialogue ${localizationKey} skipped`); + if (battleScene.skipSeenDialogues && battleScene.gameData.getSeenDialogues()[i18nKey] === true) { + console.log(`Dialogue ${i18nKey} skipped`); callback(); return; } } let showMessageAndCallback = () => { - hasi18n && (this.scene as BattleScene).gameData.saveSeenDialogue(localizationKey); + hasi18n && battleScene.gameData.saveSeenDialogue(keyOrText); callback(); }; if (text.indexOf("$") > -1) { @@ -334,16 +347,11 @@ export default class UI extends Phaser.GameObjects.Container { } } - shouldSkipDialogue(text): boolean { - let playerGenderPrefix = "PGM"; - if ((this.scene as BattleScene).gameData.gender === PlayerGender.FEMALE) { - playerGenderPrefix = "PGF"; - } + shouldSkipDialogue(i18nKey: string): boolean { + const battleScene = this.scene as BattleScene; - const key = playerGenderPrefix + text; - - if (i18next.exists(key) ) { - if ((this.scene as BattleScene).skipSeenDialogues && (this.scene as BattleScene).gameData.getSeenDialogues()[key] === true) { + if (i18next.exists(i18nKey) ) { + if (battleScene.skipSeenDialogues && battleScene.gameData.getSeenDialogues()[i18nKey] === true) { return true; } } @@ -396,11 +404,11 @@ export default class UI extends Phaser.GameObjects.Container { } playSelect(): void { - (this.scene as BattleScene).playSound("select"); + (this.scene as BattleScene).playSound("ui/select"); } playError(): void { - (this.scene as BattleScene).playSound("error"); + (this.scene as BattleScene).playSound("ui/error"); } fadeOut(duration: integer): Promise { @@ -453,6 +461,7 @@ export default class UI extends Phaser.GameObjects.Container { } if (chainMode && this.mode && !clear) { this.modeChain.push(this.mode); + (this.scene as BattleScene).updateGameInfo(); } this.mode = mode; const touchControls = document?.getElementById("touchControls"); @@ -500,6 +509,7 @@ export default class UI extends Phaser.GameObjects.Container { resetModeChain(): void { this.modeChain = []; + (this.scene as BattleScene).updateGameInfo(); } revertMode(): Promise { @@ -513,6 +523,7 @@ export default class UI extends Phaser.GameObjects.Container { const doRevertMode = () => { this.getHandler().clear(); this.mode = this.modeChain.pop()!; // TODO: is this bang correct? + (this.scene as BattleScene).updateGameInfo(); const touchControls = document.getElementById("touchControls"); if (touchControls) { touchControls.dataset.uiMode = Mode[this.mode]; diff --git a/src/ui/unavailable-modal-ui-handler.ts b/src/ui/unavailable-modal-ui-handler.ts index dab1a8c3be8..3375fb930e6 100644 --- a/src/ui/unavailable-modal-ui-handler.ts +++ b/src/ui/unavailable-modal-ui-handler.ts @@ -55,7 +55,7 @@ export default class UnavailableModalUiHandler extends ModalUiHandler { if (response[0] || [200, 400].includes(response[1])) { this.reconnectTimer = null; this.reconnectDuration = this.minTime; - this.scene.playSound("pb_bounce_1"); + this.scene.playSound("se/pb_bounce_1"); this.reconnectCallback(); } else if (response[1] === 401) { Utils.removeCookie(Utils.sessionIdKey); diff --git a/src/ui/vouchers-ui-handler.ts b/src/ui/vouchers-ui-handler.ts deleted file mode 100644 index bb2dc2cd0be..00000000000 --- a/src/ui/vouchers-ui-handler.ts +++ /dev/null @@ -1,262 +0,0 @@ -import BattleScene from "../battle-scene"; -import { Button } from "#enums/buttons"; -import i18next from "i18next"; -import { Voucher, getVoucherTypeIcon, getVoucherTypeName, vouchers } from "../system/voucher"; -import MessageUiHandler from "./message-ui-handler"; -import { TextStyle, addTextObject } from "./text"; -import { Mode } from "./ui"; -import { addWindow } from "./ui-theme"; - -const itemRows = 4; -const itemCols = 17; - -export default class VouchersUiHandler extends MessageUiHandler { - private vouchersContainer: Phaser.GameObjects.Container; - private voucherIconsContainer: Phaser.GameObjects.Container; - - private voucherIconsBg: Phaser.GameObjects.NineSlice; - private voucherIcons: Phaser.GameObjects.Sprite[]; - private titleText: Phaser.GameObjects.Text; - private unlockText: Phaser.GameObjects.Text; - - private itemsTotal: integer; - private scrollCursor: integer; - - private cursorObj: Phaser.GameObjects.NineSlice | null; - - constructor(scene: BattleScene, mode: Mode | null = null) { - super(scene, mode); - - this.itemsTotal = Object.keys(vouchers).length; - this.scrollCursor = 0; - } - - setup() { - const ui = this.getUi(); - - this.vouchersContainer = this.scene.add.container(1, -(this.scene.game.canvas.height / 6) + 1); - - this.vouchersContainer.setInteractive(new Phaser.Geom.Rectangle(0, 0, this.scene.game.canvas.width / 6, this.scene.game.canvas.height / 6), Phaser.Geom.Rectangle.Contains); - - const headerBg = addWindow(this.scene, 0, 0, (this.scene.game.canvas.width / 6) - 2, 24); - headerBg.setOrigin(0, 0); - - const headerText = addTextObject(this.scene, 0, 0, i18next.t("voucher:vouchers"), TextStyle.SETTINGS_LABEL); - headerText.setOrigin(0, 0); - headerText.setPositionRelative(headerBg, 8, 4); - - this.voucherIconsBg = addWindow(this.scene, 0, headerBg.height, (this.scene.game.canvas.width / 6) - 2, (this.scene.game.canvas.height / 6) - headerBg.height - 68); - this.voucherIconsBg.setOrigin(0, 0); - - this.voucherIconsContainer = this.scene.add.container(6, headerBg.height + 6); - - this.voucherIcons = []; - - for (let a = 0; a < itemRows * itemCols; a++) { - const x = (a % itemCols) * 18; - const y = Math.floor(a / itemCols) * 18; - - const icon = this.scene.add.sprite(x, y, "items", "unknown"); - icon.setOrigin(0, 0); - icon.setScale(0.5); - - this.voucherIcons.push(icon); - this.voucherIconsContainer.add(icon); - } - - const titleBg = addWindow(this.scene, 0, headerBg.height + this.voucherIconsBg.height, 220, 24); - titleBg.setOrigin(0, 0); - - this.titleText = addTextObject(this.scene, 0, 0, "", TextStyle.WINDOW); - this.titleText.setOrigin(0, 0); - this.titleText.setPositionRelative(titleBg, 8, 4); - - const unlockBg = addWindow(this.scene, titleBg.x + titleBg.width, titleBg.y, 98, 24); - unlockBg.setOrigin(0, 0); - - this.unlockText = addTextObject(this.scene, 0, 0, "", TextStyle.WINDOW); - this.unlockText.setOrigin(0, 0); - this.unlockText.setPositionRelative(unlockBg, 8, 4); - - const descriptionBg = addWindow(this.scene, 0, titleBg.y + titleBg.height, (this.scene.game.canvas.width / 6) - 2, 42); - descriptionBg.setOrigin(0, 0); - - const descriptionText = addTextObject(this.scene, 0, 0, "", TextStyle.WINDOW, { maxLines: 2 }); - descriptionText.setWordWrapWidth(1870); - descriptionText.setOrigin(0, 0); - descriptionText.setPositionRelative(descriptionBg, 8, 4); - - this.message = descriptionText; - - this.vouchersContainer.add(headerBg); - this.vouchersContainer.add(headerText); - this.vouchersContainer.add(this.voucherIconsBg); - this.vouchersContainer.add(this.voucherIconsContainer); - this.vouchersContainer.add(titleBg); - this.vouchersContainer.add(this.titleText); - this.vouchersContainer.add(unlockBg); - this.vouchersContainer.add(this.unlockText); - this.vouchersContainer.add(descriptionBg); - this.vouchersContainer.add(descriptionText); - - ui.add(this.vouchersContainer); - - this.setCursor(0); - - this.vouchersContainer.setVisible(false); - } - - show(args: any[]): boolean { - super.show(args); - - this.vouchersContainer.setVisible(true); - this.setCursor(0); - this.setScrollCursor(0); - - this.updateVoucherIcons(); - - this.getUi().moveTo(this.vouchersContainer, this.getUi().length - 1); - - this.getUi().hideTooltip(); - - return true; - } - - protected showVoucher(voucher: Voucher) { - const voucherUnlocks = this.scene.gameData.voucherUnlocks; - const unlocked = voucherUnlocks.hasOwnProperty(voucher.id); - - this.titleText.setText(getVoucherTypeName(voucher.voucherType)); - this.showText(voucher.description); - this.unlockText.setText(unlocked ? new Date(voucherUnlocks[voucher.id]).toLocaleDateString() : i18next.t("voucher:locked")); - } - - processInput(button: Button): boolean { - const ui = this.getUi(); - - let success = false; - - if (button === Button.CANCEL) { - success = true; - this.scene.ui.revertMode(); - } else { - const rowIndex = Math.floor(this.cursor / itemCols); - const itemOffset = (this.scrollCursor * itemCols); - switch (button) { - case Button.UP: - if (this.cursor < itemCols) { - if (this.scrollCursor) { - success = this.setScrollCursor(this.scrollCursor - 1); - } - } else { - success = this.setCursor(this.cursor - itemCols); - } - break; - case Button.DOWN: - const canMoveDown = (this.cursor + itemOffset) + itemCols < this.itemsTotal; - if (rowIndex >= itemRows - 1) { - if (this.scrollCursor < Math.ceil(this.itemsTotal / itemCols) - itemRows && canMoveDown) { - success = this.setScrollCursor(this.scrollCursor + 1); - } - } else if (canMoveDown) { - success = this.setCursor(this.cursor + itemCols); - } - break; - case Button.LEFT: - if (!this.cursor && this.scrollCursor) { - success = this.setScrollCursor(this.scrollCursor - 1) && this.setCursor(this.cursor + (itemCols - 1)); - } else if (this.cursor) { - success = this.setCursor(this.cursor - 1); - } - break; - case Button.RIGHT: - if (this.cursor + 1 === itemRows * itemCols && this.scrollCursor < Math.ceil(this.itemsTotal / itemCols) - itemRows) { - success = this.setScrollCursor(this.scrollCursor + 1) && this.setCursor(this.cursor - (itemCols - 1)); - } else if (this.cursor + itemOffset < Object.keys(vouchers).length - 1) { - success = this.setCursor(this.cursor + 1); - } - break; - } - } - - if (success) { - ui.playSelect(); - } - - return success; - } - - setCursor(cursor: integer): boolean { - const ret = super.setCursor(cursor); - - let updateVoucher = ret; - - if (!this.cursorObj) { - this.cursorObj = this.scene.add.nineslice(0, 0, "select_cursor_highlight", undefined, 16, 16, 1, 1, 1, 1); - this.cursorObj.setOrigin(0, 0); - this.voucherIconsContainer.add(this.cursorObj); - updateVoucher = true; - } - - this.cursorObj.setPositionRelative(this.voucherIcons[this.cursor], 0, 0); - - if (updateVoucher) { - this.showVoucher(vouchers[Object.keys(vouchers)[cursor + this.scrollCursor * itemCols]]); - } - - return ret; - } - - setScrollCursor(scrollCursor: integer): boolean { - if (scrollCursor === this.scrollCursor) { - return false; - } - - this.scrollCursor = scrollCursor; - - this.updateVoucherIcons(); - - this.showVoucher(vouchers[Object.keys(vouchers)[Math.min(this.cursor + this.scrollCursor * itemCols, Object.values(vouchers).length - 1)]]); - - return true; - } - - updateVoucherIcons(): void { - const voucherUnlocks = this.scene.gameData.voucherUnlocks; - - const itemOffset = this.scrollCursor * itemCols; - const itemLimit = itemRows * itemCols; - - const voucherRange = Object.values(vouchers).slice(itemOffset, itemLimit + itemOffset); - - voucherRange.forEach((voucher: Voucher, i: integer) => { - const icon = this.voucherIcons[i]; - const unlocked = voucherUnlocks.hasOwnProperty(voucher.id); - - icon.setFrame(getVoucherTypeIcon(voucher.voucherType)); - icon.setVisible(true); - if (!unlocked) { - icon.setTintFill(0); - } else { - icon.clearTint(); - } - }); - - if (voucherRange.length < this.voucherIcons.length) { - this.voucherIcons.slice(voucherRange.length).map(i => i.setVisible(false)); - } - } - - clear() { - super.clear(); - this.vouchersContainer.setVisible(false); - this.eraseCursor(); - } - - eraseCursor() { - if (this.cursorObj) { - this.cursorObj.destroy(); - } - this.cursorObj = null; - } -} diff --git a/src/utils.ts b/src/utils.ts index c51ac2b5b0b..173ea25b17c 100644 --- a/src/utils.ts +++ b/src/utils.ts @@ -560,3 +560,26 @@ export function capitalizeString(str: string, sep: string, lowerFirstChar: boole export function isNullOrUndefined(object: any): boolean { return null === object || undefined === object; } + +/** + * This function is used in the context of a Pokémon battle game to calculate the actual integer damage value from a float result. + * Many damage calculation formulas involve various parameters and result in float values. + * The actual damage applied to a Pokémon's HP must be an integer. + * This function helps in ensuring that by flooring the float value and enforcing a minimum damage value. + * + * @param value - The float value to convert. + * @param minValue - The minimum integer value to return. Defaults to 1. + * @returns The converted value as an integer. + */ +export function toDmgValue(value: number, minValue: number = 1) { + return Math.max(Math.floor(value), minValue); +} + +/** + * Helper method to localize a sprite key (e.g. for types) + * @param baseKey the base key of the sprite (e.g. `type`) + * @returns the localized sprite key + */ +export function getLocalizedSpriteKey(baseKey: string) { + return `${baseKey}${verifyLang(i18next.resolvedLanguage) ? `_${i18next.resolvedLanguage}` : ""}`; +}