diff --git a/src/ability.js b/src/ability.js index 9a2cd0c..b118b21 100644 --- a/src/ability.js +++ b/src/ability.js @@ -306,6 +306,7 @@ const abilityMap = new Map( ['テラスチェンジ', 'Tera Shift'], ['テラスシェル', 'Tera Shell'], ['ゼロフォーミング', 'Teraform Zero'], + ['どくくぐつ', 'Poison Puppeteer'], ] ) diff --git a/src/resources/pokemon/gen9.json b/src/resources/pokemon/gen9.json index d270ce7..a92fb92 100644 --- a/src/resources/pokemon/gen9.json +++ b/src/resources/pokemon/gen9.json @@ -3535,5 +3535,29 @@ "egg_groups": [ "タマゴ未発見" ] + }, + { + "id": "1025", + "name": "モモワロウ", + "type": [ + "どく", + "ゴースト" + ], + "abilities": [ + { + "name": "どくくぐつ" + } + ], + "status": { + "H": "88", + "A": "88", + "B": "160", + "C": "88", + "D": "88", + "S": "88" + }, + "egg_groups": [ + "タマゴ未発見" + ] } ] diff --git a/src/resources/pokemon/gen9_name.json b/src/resources/pokemon/gen9_name.json index 9755621..5f3e70d 100644 --- a/src/resources/pokemon/gen9_name.json +++ b/src/resources/pokemon/gen9_name.json @@ -831,5 +831,12 @@ "ja": "テラパゴス", "en": "Terapagos" } + }, + { + "id": "1025", + "name": { + "ja": "モモワロウ", + "en": "Pecharunt" + } } ] diff --git a/test/index.spec.ts b/test/index.spec.ts index 01bb70b..48e91d9 100644 --- a/test/index.spec.ts +++ b/test/index.spec.ts @@ -282,7 +282,7 @@ describe('Pokedex class (ts)', () => { } it('returns all Pokemon', () => { - const totalCount = 1024 + const totalCount = 1025 const all = pokedex.getPokemon() expect(all.every((pokemon) => isValidPokemon(pokemon))).to.equal(true)