import type { StatKey, TypeName } from "@/types";
import type { AbilityName } from "./abilities";
export interface Pokemon {
name: string;
types: TypeName[];
baseStats: { [stat in StatKey]: number };
abilities: AbilityName[];
weightkg: number;
}
export const POKEMONS = [
{
name: "フシギダネ",
types: ["くさ", "どく"],
baseStats: {
hp: 45,
atk: 49,
def: 49,
spa: 65,
spd: 65,
spe: 45,
},
abilities: ["しんりょく"],
weightkg: 6.9,
},
{
name: "フシギソウ",
types: ["くさ", "どく"],
baseStats: {
hp: 60,
atk: 62,
def: 63,
spa: 80,
spd: 80,
spe: 60,
},
abilities: ["しんりょく"],
weightkg: 13,
},
{
name: "フシギバナ",
types: ["くさ", "どく"],
baseStats: {
hp: 80,
atk: 82,
def: 83,
spa: 100,
spd: 100,
spe: 80,
},
abilities: ["しんりょく"],
weightkg: 100,
},
{
name: "ヒトカゲ",
types: ["ほのお"],
baseStats: {
hp: 39,
atk: 52,
def: 43,
spa: 60,
spd: 50,
spe: 65,
},
abilities: ["もうか"],
weightkg: 8.5,
},
{
name: "リザード",
types: ["ほのお"],
baseStats: {
hp: 58,
atk: 64,
def: 58,
spa: 80,
spd: 65,
spe: 80,
},
abilities: ["もうか"],
weightkg: 19,
},
{
name: "リザードン",
types: ["ほのお", "ひこう"],
baseStats: {
hp: 78,
atk: 84,
def: 78,
spa: 109,
spd: 85,
spe: 100,
},
abilities: ["もうか"],
weightkg: 90.5,
},
{
name: "ゼニガメ",
types: ["みず"],
baseStats: {
hp: 44,
atk: 48,
def: 65,
spa: 50,
spd: 64,
spe: 43,
},
abilities: ["げきりゅう"],
weightkg: 9,
},
{
name: "カメール",
types: ["みず"],
baseStats: {
hp: 59,
atk: 63,
def: 80,
spa: 65,
spd: 80,
spe: 58,
},
abilities: ["げきりゅう"],
weightkg: 22.5,
},
{
name: "カメックス",
types: ["みず"],
baseStats: {
hp: 79,
atk: 83,
def: 100,
spa: 85,
spd: 105,
spe: 78,
},
abilities: ["げきりゅう"],
weightkg: 85.5,
},
{
name: "キャタピー",
types: ["むし"],
baseStats: {
hp: 45,
atk: 30,
def: 35,
spa: 20,
spd: 20,
spe: 45,
},
abilities: ["りんぷん"],
weightkg: 2.9,
},
{
name: "トランセル",
types: ["むし"],
baseStats: {
hp: 50,
atk: 20,
def: 55,
spa: 25,
spd: 25,
spe: 30,
},
abilities: ["だっぴ"],
weightkg: 9.9,
},
{
name: "バタフリー",
types: ["むし", "ひこう"],
baseStats: {
hp: 60,
atk: 45,
def: 50,
spa: 80,
spd: 80,
spe: 70,
},
abilities: ["ふくがん"],
weightkg: 32,
},
{
name: "ビードル",
types: ["むし", "どく"],
baseStats: {
hp: 40,
atk: 35,
def: 30,
spa: 20,
spd: 20,
spe: 50,
},
abilities: ["りんぷん"],
weightkg: 3.2,
},
{
name: "コクーン",
types: ["むし", "どく"],
baseStats: {
hp: 45,
atk: 25,
def: 50,
spa: 25,
spd: 25,
spe: 35,
},
abilities: ["だっぴ"],
weightkg: 10,
},
{
name: "スピアー",
types: ["むし", "どく"],
baseStats: {
hp: 65,
atk: 80,
def: 40,
spa: 45,
spd: 80,
spe: 75,
},
abilities: ["むしのしらせ"],
weightkg: 29.5,
},
{
name: "ポッポ",
types: ["ノーマル", "ひこう"],
baseStats: {
hp: 40,
atk: 45,
def: 40,
spa: 35,
spd: 35,
spe: 56,
},
abilities: ["するどいめ"],
weightkg: 1.8,
},
{
name: "ピジョン",
types: ["ノーマル", "ひこう"],
baseStats: {
hp: 63,
atk: 60,
def: 55,
spa: 50,
spd: 50,
spe: 71,
},
abilities: ["するどいめ"],
weightkg: 30,
},
{
name: "ピジョット",
types: ["ノーマル", "ひこう"],
baseStats: {
hp: 83,
atk: 80,
def: 75,
spa: 70,
spd: 70,
spe: 91,
},
abilities: ["するどいめ"],
weightkg: 39.5,
},
{
name: "コラッタ",
types: ["ノーマル"],
baseStats: {
hp: 30,
atk: 56,
def: 35,
spa: 25,
spd: 35,
spe: 72,
},
abilities: ["にげあし", "こんじょう"],
weightkg: 3.5,
},
{
name: "ラッタ",
types: ["ノーマル"],
baseStats: {
hp: 55,
atk: 81,
def: 60,
spa: 50,
spd: 70,
spe: 97,
},
abilities: ["にげあし", "こんじょう"],
weightkg: 18.5,
},
{
name: "オニスズメ",
types: ["ノーマル", "ひこう"],
baseStats: {
hp: 40,
atk: 60,
def: 30,
spa: 31,
spd: 31,
spe: 70,
},
abilities: ["するどいめ"],
weightkg: 2,
},
{
name: "オニドリル",
types: ["ノーマル", "ひこう"],
baseStats: {
hp: 65,
atk: 90,
def: 65,
spa: 61,
spd: 61,
spe: 100,
},
abilities: ["するどいめ"],
weightkg: 38,
},
{
name: "アーボ",
types: ["どく"],
baseStats: {
hp: 35,
atk: 60,
def: 44,
spa: 40,
spd: 54,
spe: 55,
},
abilities: ["いかく", "だっぴ"],
weightkg: 6.9,
},
{
name: "アーボック",
types: ["どく"],
baseStats: {
hp: 60,
atk: 95,
def: 69,
spa: 65,
spd: 79,
spe: 80,
},
abilities: ["いかく", "だっぴ"],
weightkg: 65,
},
{
name: "ピカチュウ",
types: ["でんき"],
baseStats: {
hp: 35,
atk: 55,
def: 40,
spa: 50,
spd: 50,
spe: 90,
},
abilities: ["せいでんき"],
weightkg: 6,
},
{
name: "ライチュウ",
types: ["でんき"],
baseStats: {
hp: 60,
atk: 90,
def: 55,
spa: 90,
spd: 80,
spe: 100,
},
abilities: ["せいでんき"],
weightkg: 30,
},
{
name: "サンド",
types: ["じめん"],
baseStats: {
hp: 50,
atk: 75,
def: 85,
spa: 20,
spd: 30,
spe: 40,
},
abilities: ["すながくれ"],
weightkg: 12,
},
{
name: "サンドパン",
types: ["じめん"],
baseStats: {
hp: 75,
atk: 100,
def: 110,
spa: 45,
spd: 55,
spe: 65,
},
abilities: ["すながくれ"],
weightkg: 29.5,
},
{
name: "ニドラン♀",
types: ["どく"],
baseStats: {
hp: 55,
atk: 47,
def: 52,
spa: 40,
spd: 40,
spe: 41,
},
abilities: ["どくのトゲ"],
weightkg: 7,
},
{
name: "ニドリーナ",
types: ["どく"],
baseStats: {
hp: 70,
atk: 62,
def: 67,
spa: 55,
spd: 55,
spe: 56,
},
abilities: ["どくのトゲ"],
weightkg: 20,
},
{
name: "ニドクイン",
types: ["どく", "じめん"],
baseStats: {
hp: 90,
atk: 82,
def: 87,
spa: 75,
spd: 85,
spe: 76,
},
abilities: ["どくのトゲ"],
weightkg: 60,
},
{
name: "ニドラン♂",
types: ["どく"],
baseStats: {
hp: 46,
atk: 57,
def: 40,
spa: 40,
spd: 40,
spe: 50,
},
abilities: ["どくのトゲ"],
weightkg: 9,
},
{
name: "ニドリーノ",
types: ["どく"],
baseStats: {
hp: 61,
atk: 72,
def: 57,
spa: 55,
spd: 55,
spe: 65,
},
abilities: ["どくのトゲ"],
weightkg: 19.5,
},
{
name: "ニドキング",
types: ["どく", "じめん"],
baseStats: {
hp: 81,
atk: 92,
def: 77,
spa: 85,
spd: 75,
spe: 85,
},
abilities: ["どくのトゲ"],
weightkg: 62,
},
{
name: "ロコン",
types: ["ほのお"],
baseStats: {
hp: 38,
atk: 41,
def: 40,
spa: 50,
spd: 65,
spe: 65,
},
abilities: ["もらいび"],
weightkg: 9.9,
},
{
name: "キュウコン",
types: ["ほのお"],
baseStats: {
hp: 73,
atk: 76,
def: 75,
spa: 81,
spd: 100,
spe: 100,
},
abilities: ["もらいび"],
weightkg: 19.9,
},
{
name: "プリン",
types: ["ノーマル"],
baseStats: {
hp: 115,
atk: 45,
def: 20,
spa: 45,
spd: 25,
spe: 20,
},
abilities: ["メロメロボディ"],
weightkg: 5.5,
},
{
name: "プクリン",
types: ["ノーマル"],
baseStats: {
hp: 140,
atk: 70,
def: 45,
spa: 75,
spd: 50,
spe: 45,
},
abilities: ["メロメロボディ"],
weightkg: 12,
},
{
name: "ズバット",
types: ["どく", "ひこう"],
baseStats: {
hp: 40,
atk: 45,
def: 35,
spa: 30,
spd: 40,
spe: 55,
},
abilities: ["せいしんりょく"],
weightkg: 7.5,
},
{
name: "ゴルバット",
types: ["どく", "ひこう"],
baseStats: {
hp: 75,
atk: 80,
def: 70,
spa: 65,
spd: 75,
spe: 90,
},
abilities: ["せいしんりょく"],
weightkg: 55,
},
{
name: "ナゾノクサ",
types: ["くさ", "どく"],
baseStats: {
hp: 45,
atk: 50,
def: 55,
spa: 75,
spd: 65,
spe: 30,
},
abilities: ["ようりょくそ"],
weightkg: 5.4,
},
{
name: "クサイハナ",
types: ["くさ", "どく"],
baseStats: {
hp: 60,
atk: 65,
def: 70,
spa: 85,
spd: 75,
spe: 40,
},
abilities: ["ようりょくそ"],
weightkg: 8.6,
},
{
name: "ラフレシア",
types: ["くさ", "どく"],
baseStats: {
hp: 75,
atk: 80,
def: 85,
spa: 100,
spd: 90,
spe: 50,
},
abilities: ["ようりょくそ"],
weightkg: 18.6,
},
{
name: "パラス",
types: ["むし", "くさ"],
baseStats: {
hp: 35,
atk: 70,
def: 55,
spa: 45,
spd: 55,
spe: 25,
},
abilities: ["ほうし"],
weightkg: 5.4,
},
{
name: "パラセクト",
types: ["むし", "くさ"],
baseStats: {
hp: 60,
atk: 95,
def: 80,
spa: 60,
spd: 80,
spe: 30,
},
abilities: ["ほうし"],
weightkg: 29.5,
},
{
name: "コンパン",
types: ["むし", "どく"],
baseStats: {
hp: 60,
atk: 55,
def: 50,
spa: 40,
spd: 55,
spe: 45,
},
abilities: ["ふくがん"],
weightkg: 30,
},
{
name: "モルフォン",
types: ["むし", "どく"],
baseStats: {
hp: 70,
atk: 65,
def: 60,
spa: 90,
spd: 75,
spe: 90,
},
abilities: ["りんぷん"],
weightkg: 12.5,
},
{
name: "ディグダ",
types: ["じめん"],
baseStats: {
hp: 10,
atk: 55,
def: 25,
spa: 35,
spd: 45,
spe: 95,
},
abilities: ["すながくれ", "ありじごく"],
weightkg: 0.8,
},
{
name: "ダグトリオ",
types: ["じめん"],
baseStats: {
hp: 35,
atk: 100,
def: 50,
spa: 50,
spd: 70,
spe: 120,
},
abilities: ["すながくれ", "ありじごく"],
weightkg: 33.3,
},
{
name: "ニャース",
types: ["ノーマル"],
baseStats: {
hp: 40,
atk: 45,
def: 35,
spa: 40,
spd: 40,
spe: 90,
},
abilities: ["ものひろい"],
weightkg: 4.2,
},
{
name: "ペルシアン",
types: ["ノーマル"],
baseStats: {
hp: 65,
atk: 70,
def: 60,
spa: 65,
spd: 65,
spe: 115,
},
abilities: ["じゅうなん"],
weightkg: 32,
},
{
name: "コダック",
types: ["みず"],
baseStats: {
hp: 50,
atk: 52,
def: 48,
spa: 65,
spd: 50,
spe: 55,
},
abilities: ["しめりけ", "ノーてんき"],
weightkg: 19.6,
},
{
name: "ゴルダック",
types: ["みず"],
baseStats: {
hp: 80,
atk: 82,
def: 78,
spa: 95,
spd: 80,
spe: 85,
},
abilities: ["しめりけ", "ノーてんき"],
weightkg: 76.6,
},
{
name: "マンキー",
types: ["かくとう"],
baseStats: {
hp: 40,
atk: 80,
def: 35,
spa: 35,
spd: 45,
spe: 70,
},
abilities: ["やるき"],
weightkg: 28,
},
{
name: "オコリザル",
types: ["かくとう"],
baseStats: {
hp: 65,
atk: 105,
def: 60,
spa: 60,
spd: 70,
spe: 95,
},
abilities: ["やるき"],
weightkg: 32,
},
{
name: "ガーディ",
types: ["ほのお"],
baseStats: {
hp: 55,
atk: 70,
def: 45,
spa: 70,
spd: 50,
spe: 60,
},
abilities: ["いかく", "もらいび"],
weightkg: 19,
},
{
name: "ウインディ",
types: ["ほのお"],
baseStats: {
hp: 90,
atk: 110,
def: 80,
spa: 100,
spd: 80,
spe: 95,
},
abilities: ["いかく", "もらいび"],
weightkg: 155,
},
{
name: "ニョロモ",
types: ["みず"],
baseStats: {
hp: 40,
atk: 50,
def: 40,
spa: 40,
spd: 40,
spe: 90,
},
abilities: ["ちょすい", "しめりけ"],
weightkg: 12.4,
},
{
name: "ニョロゾ",
types: ["みず"],
baseStats: {
hp: 65,
atk: 65,
def: 65,
spa: 50,
spd: 50,
spe: 90,
},
abilities: ["ちょすい", "しめりけ"],
weightkg: 20,
},
{
name: "ニョロボン",
types: ["みず", "かくとう"],
baseStats: {
hp: 90,
atk: 95,
def: 95,
spa: 70,
spd: 90,
spe: 70,
},
abilities: ["ちょすい", "しめりけ"],
weightkg: 54,
},
{
name: "ケーシィ",
types: ["エスパー"],
baseStats: {
hp: 25,
atk: 20,
def: 15,
spa: 105,
spd: 55,
spe: 90,
},
abilities: ["シンクロ", "せいしんりょく"],
weightkg: 19.5,
},
{
name: "ユンゲラー",
types: ["エスパー"],
baseStats: {
hp: 40,
atk: 35,
def: 30,
spa: 120,
spd: 70,
spe: 105,
},
abilities: ["シンクロ", "せいしんりょく"],
weightkg: 56.5,
},
{
name: "フーディン",
types: ["エスパー"],
baseStats: {
hp: 55,
atk: 50,
def: 45,
spa: 135,
spd: 85,
spe: 120,
},
abilities: ["シンクロ", "せいしんりょく"],
weightkg: 48,
},
{
name: "ワンリキー",
types: ["かくとう"],
baseStats: {
hp: 70,
atk: 80,
def: 50,
spa: 35,
spd: 35,
spe: 35,
},
abilities: ["こんじょう"],
weightkg: 19.5,
},
{
name: "ゴーリキー",
types: ["かくとう"],
baseStats: {
hp: 80,
atk: 100,
def: 70,
spa: 50,
spd: 60,
spe: 45,
},
abilities: ["こんじょう"],
weightkg: 70.5,
},
{
name: "カイリキー",
types: ["かくとう"],
baseStats: {
hp: 90,
atk: 130,
def: 80,
spa: 65,
spd: 85,
spe: 55,
},
abilities: ["こんじょう"],
weightkg: 130,
},
{
name: "マダツボミ",
types: ["くさ", "どく"],
baseStats: {
hp: 50,
atk: 75,
def: 35,
spa: 70,
spd: 30,
spe: 40,
},
abilities: ["ようりょくそ"],
weightkg: 4,
},
{
name: "ウツドン",
types: ["くさ", "どく"],
baseStats: {
hp: 65,
atk: 90,
def: 50,
spa: 85,
spd: 45,
spe: 55,
},
abilities: ["ようりょくそ"],
weightkg: 6.4,
},
{
name: "ウツボット",
types: ["くさ", "どく"],
baseStats: {
hp: 80,
atk: 105,
def: 65,
spa: 100,
spd: 70,
spe: 70,
},
abilities: ["ようりょくそ"],
weightkg: 15.5,
},
{
name: "メノクラゲ",
types: ["みず", "どく"],
baseStats: {
hp: 40,
atk: 40,
def: 35,
spa: 50,
spd: 100,
spe: 70,
},
abilities: ["クリアボディ", "ヘドロえき"],
weightkg: 45.5,
},
{
name: "ドククラゲ",
types: ["みず", "どく"],
baseStats: {
hp: 80,
atk: 70,
def: 65,
spa: 80,
spd: 120,
spe: 100,
},
abilities: ["クリアボディ", "ヘドロえき"],
weightkg: 55,
},
{
name: "イシツブテ",
types: ["いわ", "じめん"],
baseStats: {
hp: 40,
atk: 80,
def: 100,
spa: 30,
spd: 30,
spe: 20,
},
abilities: ["いしあたま", "がんじょう"],
weightkg: 20,
},
{
name: "ゴローン",
types: ["いわ", "じめん"],
baseStats: {
hp: 55,
atk: 95,
def: 115,
spa: 45,
spd: 45,
spe: 35,
},
abilities: ["いしあたま", "がんじょう"],
weightkg: 105,
},
{
name: "ゴローニャ",
types: ["いわ", "じめん"],
baseStats: {
hp: 80,
atk: 120,
def: 130,
spa: 55,
spd: 65,
spe: 45,
},
abilities: ["いしあたま", "がんじょう"],
weightkg: 300,
},
{
name: "ポニータ",
types: ["ほのお"],
baseStats: {
hp: 50,
atk: 85,
def: 55,
spa: 65,
spd: 65,
spe: 90,
},
abilities: ["にげあし", "もらいび"],
weightkg: 30,
},
{
name: "ギャロップ",
types: ["ほのお"],
baseStats: {
hp: 65,
atk: 100,
def: 70,
spa: 80,
spd: 80,
spe: 105,
},
abilities: ["にげあし", "もらいび"],
weightkg: 95,
},
{
name: "ヤドン",
types: ["みず", "エスパー"],
baseStats: {
hp: 90,
atk: 65,
def: 65,
spa: 40,
spd: 40,
spe: 15,
},
abilities: ["どんかん", "マイペース"],
weightkg: 36,
},
{
name: "ヤドラン",
types: ["みず", "エスパー"],
baseStats: {
hp: 95,
atk: 75,
def: 110,
spa: 100,
spd: 80,
spe: 30,
},
abilities: ["どんかん", "マイペース"],
weightkg: 78.5,
},
{
name: "コイル",
types: ["でんき", "はがね"],
baseStats: {
hp: 25,
atk: 35,
def: 70,
spa: 95,
spd: 55,
spe: 45,
},
abilities: ["じりょく", "がんじょう"],
weightkg: 6,
},
{
name: "レアコイル",
types: ["でんき", "はがね"],
baseStats: {
hp: 50,
atk: 60,
def: 95,
spa: 120,
spd: 70,
spe: 70,
},
abilities: ["じりょく", "がんじょう"],
weightkg: 60,
},
{
name: "カモネギ",
types: ["ノーマル", "ひこう"],
baseStats: {
hp: 52,
atk: 65,
def: 55,
spa: 58,
spd: 62,
spe: 60,
},
abilities: ["するどいめ", "せいしんりょく"],
weightkg: 15,
},
{
name: "ドードー",
types: ["ノーマル", "ひこう"],
baseStats: {
hp: 35,
atk: 85,
def: 45,
spa: 35,
spd: 35,
spe: 75,
},
abilities: ["にげあし", "はやおき"],
weightkg: 39.2,
},
{
name: "ドードリオ",
types: ["ノーマル", "ひこう"],
baseStats: {
hp: 60,
atk: 110,
def: 70,
spa: 60,
spd: 60,
spe: 100,
},
abilities: ["にげあし", "はやおき"],
weightkg: 85.2,
},
{
name: "パウワウ",
types: ["みず"],
baseStats: {
hp: 65,
atk: 45,
def: 55,
spa: 45,
spd: 70,
spe: 45,
},
abilities: ["あついしぼう"],
weightkg: 90,
},
{
name: "ジュゴン",
types: ["みず", "こおり"],
baseStats: {
hp: 90,
atk: 70,
def: 80,
spa: 70,
spd: 95,
spe: 70,
},
abilities: ["あついしぼう"],
weightkg: 120,
},
{
name: "ベトベター",
types: ["どく"],
baseStats: {
hp: 80,
atk: 80,
def: 50,
spa: 40,
spd: 50,
spe: 25,
},
abilities: ["あくしゅう", "ねんちゃく"],
weightkg: 30,
},
{
name: "ベトベトン",
types: ["どく"],
baseStats: {
hp: 105,
atk: 105,
def: 75,
spa: 65,
spd: 100,
spe: 50,
},
abilities: ["あくしゅう", "ねんちゃく"],
weightkg: 30,
},
{
name: "シェルダー",
types: ["みず"],
baseStats: {
hp: 30,
atk: 65,
def: 100,
spa: 45,
spd: 25,
spe: 40,
},
abilities: ["シェルアーマー"],
weightkg: 4,
},
{
name: "パルシェン",
types: ["みず", "こおり"],
baseStats: {
hp: 50,
atk: 95,
def: 180,
spa: 85,
spd: 45,
spe: 70,
},
abilities: ["シェルアーマー"],
weightkg: 132.5,
},
{
name: "ゴース",
types: ["ゴースト", "どく"],
baseStats: {
hp: 30,
atk: 35,
def: 30,
spa: 100,
spd: 35,
spe: 80,
},
abilities: ["ふゆう"],
weightkg: 0.1,
},
{
name: "ゴースト",
types: ["ゴースト", "どく"],
baseStats: {
hp: 45,
atk: 50,
def: 45,
spa: 115,
spd: 55,
spe: 95,
},
abilities: ["ふゆう"],
weightkg: 0.1,
},
{
name: "ゲンガー",
types: ["ゴースト", "どく"],
baseStats: {
hp: 60,
atk: 65,
def: 60,
spa: 130,
spd: 75,
spe: 110,
},
abilities: ["ふゆう"],
weightkg: 40.5,
},
{
name: "イワーク",
types: ["いわ", "じめん"],
baseStats: {
hp: 35,
atk: 45,
def: 160,
spa: 30,
spd: 45,
spe: 70,
},
abilities: ["いしあたま", "がんじょう"],
weightkg: 210,
},
{
name: "スリープ",
types: ["エスパー"],
baseStats: {
hp: 60,
atk: 48,
def: 45,
spa: 43,
spd: 90,
spe: 42,
},
abilities: ["ふみん"],
weightkg: 32.4,
},
{
name: "スリーパー",
types: ["エスパー"],
baseStats: {
hp: 85,
atk: 73,
def: 70,
spa: 73,
spd: 115,
spe: 67,
},
abilities: ["ふみん"],
weightkg: 75.6,
},
{
name: "クラブ",
types: ["みず"],
baseStats: {
hp: 30,
atk: 105,
def: 90,
spa: 25,
spd: 25,
spe: 50,
},
abilities: ["かいりきバサミ", "シェルアーマー"],
weightkg: 6.5,
},
{
name: "キングラー",
types: ["みず"],
baseStats: {
hp: 55,
atk: 130,
def: 115,
spa: 50,
spd: 50,
spe: 75,
},
abilities: ["かいりきバサミ", "シェルアーマー"],
weightkg: 60,
},
{
name: "ビリリダマ",
types: ["でんき"],
baseStats: {
hp: 40,
atk: 30,
def: 50,
spa: 55,
spd: 55,
spe: 100,
},
abilities: ["ぼうおん", "せいでんき"],
weightkg: 10.4,
},
{
name: "マルマイン",
types: ["でんき"],
baseStats: {
hp: 60,
atk: 50,
def: 70,
spa: 80,
spd: 80,
spe: 150,
},
abilities: ["ぼうおん", "せいでんき"],
weightkg: 66.6,
},
{
name: "タマタマ",
types: ["くさ", "エスパー"],
baseStats: {
hp: 60,
atk: 40,
def: 80,
spa: 60,
spd: 45,
spe: 40,
},
abilities: ["ようりょくそ"],
weightkg: 2.5,
},
{
name: "ナッシー",
types: ["くさ", "エスパー"],
baseStats: {
hp: 95,
atk: 95,
def: 85,
spa: 125,
spd: 65,
spe: 55,
},
abilities: ["ようりょくそ"],
weightkg: 120,
},
{
name: "カラカラ",
types: ["じめん"],
baseStats: {
hp: 50,
atk: 50,
def: 95,
spa: 40,
spd: 50,
spe: 35,
},
abilities: ["いしあたま", "ひらいしん"],
weightkg: 6.5,
},
{
name: "ガラガラ",
types: ["じめん"],
baseStats: {
hp: 60,
atk: 80,
def: 110,
spa: 50,
spd: 80,
spe: 45,
},
abilities: ["いしあたま", "ひらいしん"],
weightkg: 45,
},
{
name: "サワムラー",
types: ["かくとう"],
baseStats: {
hp: 50,
atk: 120,
def: 53,
spa: 35,
spd: 110,
spe: 87,
},
abilities: ["じゅうなん"],
weightkg: 49.8,
},
{
name: "エビワラー",
types: ["かくとう"],
baseStats: {
hp: 50,
atk: 105,
def: 79,
spa: 35,
spd: 110,
spe: 76,
},
abilities: ["するどいめ"],
weightkg: 50.2,
},
{
name: "ベロリンガ",
types: ["ノーマル"],
baseStats: {
hp: 90,
atk: 55,
def: 75,
spa: 60,
spd: 75,
spe: 30,
},
abilities: ["マイペース", "どんかん"],
weightkg: 65.5,
},
{
name: "ドガース",
types: ["どく"],
baseStats: {
hp: 40,
atk: 65,
def: 95,
spa: 60,
spd: 45,
spe: 35,
},
abilities: ["ふゆう"],
weightkg: 1,
},
{
name: "マタドガス",
types: ["どく"],
baseStats: {
hp: 65,
atk: 90,
def: 120,
spa: 85,
spd: 70,
spe: 60,
},
abilities: ["ふゆう"],
weightkg: 9.5,
},
{
name: "サイホーン",
types: ["じめん", "いわ"],
baseStats: {
hp: 80,
atk: 85,
def: 95,
spa: 30,
spd: 30,
spe: 25,
},
abilities: ["ひらいしん", "いしあたま"],
weightkg: 115,
},
{
name: "サイドン",
types: ["じめん", "いわ"],
baseStats: {
hp: 105,
atk: 130,
def: 120,
spa: 45,
spd: 45,
spe: 40,
},
abilities: ["ひらいしん", "いしあたま"],
weightkg: 120,
},
{
name: "ラッキー",
types: ["ノーマル"],
baseStats: {
hp: 250,
atk: 5,
def: 5,
spa: 35,
spd: 105,
spe: 50,
},
abilities: ["しぜんかいふく", "てんのめぐみ"],
weightkg: 34.6,
},
{
name: "モンジャラ",
types: ["くさ"],
baseStats: {
hp: 65,
atk: 55,
def: 115,
spa: 100,
spd: 40,
spe: 60,
},
abilities: ["ようりょくそ"],
weightkg: 35,
},
{
name: "ガルーラ",
types: ["ノーマル"],
baseStats: {
hp: 105,
atk: 95,
def: 80,
spa: 40,
spd: 80,
spe: 90,
},
abilities: ["はやおき"],
weightkg: 80,
},
{
name: "タッツー",
types: ["みず"],
baseStats: {
hp: 30,
atk: 40,
def: 70,
spa: 70,
spd: 25,
spe: 60,
},
abilities: ["すいすい"],
weightkg: 8,
},
{
name: "シードラ",
types: ["みず"],
baseStats: {
hp: 55,
atk: 65,
def: 95,
spa: 95,
spd: 45,
spe: 85,
},
abilities: ["どくのトゲ"],
weightkg: 25,
},
{
name: "トサキント",
types: ["みず"],
baseStats: {
hp: 45,
atk: 67,
def: 60,
spa: 35,
spd: 50,
spe: 63,
},
abilities: ["すいすい", "みずのベール"],
weightkg: 15,
},
{
name: "アズマオウ",
types: ["みず"],
baseStats: {
hp: 80,
atk: 92,
def: 65,
spa: 65,
spd: 80,
spe: 68,
},
abilities: ["すいすい", "みずのベール"],
weightkg: 39,
},
{
name: "ヒトデマン",
types: ["みず"],
baseStats: {
hp: 30,
atk: 45,
def: 55,
spa: 70,
spd: 55,
spe: 85,
},
abilities: ["はっこう", "しぜんかいふく"],
weightkg: 34.5,
},
{
name: "スターミー",
types: ["みず", "エスパー"],
baseStats: {
hp: 60,
atk: 75,
def: 85,
spa: 100,
spd: 85,
spe: 115,
},
abilities: ["はっこう", "しぜんかいふく"],
weightkg: 80,
},
{
name: "バリヤード",
types: ["エスパー"],
baseStats: {
hp: 40,
atk: 45,
def: 65,
spa: 100,
spd: 120,
spe: 90,
},
abilities: ["ぼうおん"],
weightkg: 54.5,
},
{
name: "ストライク",
types: ["むし", "ひこう"],
baseStats: {
hp: 70,
atk: 110,
def: 80,
spa: 55,
spd: 80,
spe: 105,
},
abilities: ["むしのしらせ"],
weightkg: 56,
},
{
name: "ルージュラ",
types: ["こおり", "エスパー"],
baseStats: {
hp: 65,
atk: 50,
def: 35,
spa: 115,
spd: 95,
spe: 95,
},
abilities: ["どんかん"],
weightkg: 40.6,
},
{
name: "エレブー",
types: ["でんき"],
baseStats: {
hp: 65,
atk: 83,
def: 57,
spa: 95,
spd: 85,
spe: 105,
},
abilities: ["せいでんき"],
weightkg: 30,
},
{
name: "ブーバー",
types: ["ほのお"],
baseStats: {
hp: 65,
atk: 95,
def: 57,
spa: 100,
spd: 85,
spe: 93,
},
abilities: ["ほのおのからだ"],
weightkg: 44.5,
},
{
name: "カイロス",
types: ["むし"],
baseStats: {
hp: 65,
atk: 125,
def: 100,
spa: 55,
spd: 70,
spe: 85,
},
abilities: ["かいりきバサミ"],
weightkg: 55,
},
{
name: "ケンタロス",
types: ["ノーマル"],
baseStats: {
hp: 75,
atk: 100,
def: 95,
spa: 40,
spd: 70,
spe: 110,
},
abilities: ["いかく"],
weightkg: 88.4,
},
{
name: "コイキング",
types: ["みず"],
baseStats: {
hp: 20,
atk: 10,
def: 55,
spa: 15,
spd: 20,
spe: 80,
},
abilities: ["すいすい"],
weightkg: 10,
},
{
name: "ギャラドス",
types: ["みず", "ひこう"],
baseStats: {
hp: 95,
atk: 125,
def: 79,
spa: 60,
spd: 100,
spe: 81,
},
abilities: ["いかく"],
weightkg: 235,
},
{
name: "ラプラス",
types: ["みず", "こおり"],
baseStats: {
hp: 130,
atk: 85,
def: 80,
spa: 85,
spd: 95,
spe: 60,
},
abilities: ["ちょすい", "シェルアーマー"],
weightkg: 220,
},
{
name: "メタモン",
types: ["ノーマル"],
baseStats: {
hp: 48,
atk: 48,
def: 48,
spa: 48,
spd: 48,
spe: 48,
},
abilities: ["じゅうなん"],
weightkg: 4,
},
{
name: "イーブイ",
types: ["ノーマル"],
baseStats: {
hp: 65,
atk: 75,
def: 70,
spa: 65,
spd: 85,
spe: 75,
},
abilities: ["にげあし"],
weightkg: 6.5,
},
{
name: "シャワーズ",
types: ["みず"],
baseStats: {
hp: 130,
atk: 65,
def: 60,
spa: 110,
spd: 95,
spe: 65,
},
abilities: ["ちょすい"],
weightkg: 29,
},
{
name: "サンダース",
types: ["でんき"],
baseStats: {
hp: 65,
atk: 65,
def: 60,
spa: 110,
spd: 95,
spe: 130,
},
abilities: ["ちくでん"],
weightkg: 24.5,
},
{
name: "ブースター",
types: ["ほのお"],
baseStats: {
hp: 65,
atk: 130,
def: 60,
spa: 95,
spd: 110,
spe: 65,
},
abilities: ["もらいび"],
weightkg: 25,
},
{
name: "ポリゴン",
types: ["ノーマル"],
baseStats: {
hp: 65,
atk: 60,
def: 70,
spa: 85,
spd: 75,
spe: 40,
},
abilities: ["トレース"],
weightkg: 36.5,
},
{
name: "オムナイト",
types: ["いわ", "みず"],
baseStats: {
hp: 35,
atk: 40,
def: 100,
spa: 90,
spd: 55,
spe: 35,
},
abilities: ["すいすい", "シェルアーマー"],
weightkg: 7.5,
},
{
name: "オムスター",
types: ["いわ", "みず"],
baseStats: {
hp: 70,
atk: 60,
def: 125,
spa: 115,
spd: 70,
spe: 55,
},
abilities: ["すいすい", "シェルアーマー"],
weightkg: 35,
},
{
name: "カブト",
types: ["いわ", "みず"],
baseStats: {
hp: 30,
atk: 80,
def: 90,
spa: 55,
spd: 45,
spe: 55,
},
abilities: ["すいすい", "カブトアーマー"],
weightkg: 11.5,
},
{
name: "カブトプス",
types: ["いわ", "みず"],
baseStats: {
hp: 60,
atk: 115,
def: 105,
spa: 65,
spd: 70,
spe: 80,
},
abilities: ["すいすい", "カブトアーマー"],
weightkg: 40.5,
},
{
name: "プテラ",
types: ["いわ", "ひこう"],
baseStats: {
hp: 80,
atk: 105,
def: 65,
spa: 60,
spd: 75,
spe: 130,
},
abilities: ["いしあたま", "プレッシャー"],
weightkg: 59,
},
{
name: "カビゴン",
types: ["ノーマル"],
baseStats: {
hp: 160,
atk: 110,
def: 65,
spa: 65,
spd: 110,
spe: 30,
},
abilities: ["めんえき", "あついしぼう"],
weightkg: 460,
},
{
name: "フリーザー",
types: ["こおり", "ひこう"],
baseStats: {
hp: 90,
atk: 85,
def: 100,
spa: 95,
spd: 125,
spe: 85,
},
abilities: ["プレッシャー"],
weightkg: 55.4,
},
{
name: "サンダー",
types: ["でんき", "ひこう"],
baseStats: {
hp: 90,
atk: 90,
def: 85,
spa: 125,
spd: 90,
spe: 100,
},
abilities: ["プレッシャー"],
weightkg: 52.6,
},
{
name: "ファイヤー",
types: ["ほのお", "ひこう"],
baseStats: {
hp: 90,
atk: 100,
def: 90,
spa: 125,
spd: 85,
spe: 90,
},
abilities: ["プレッシャー"],
weightkg: 60,
},
{
name: "ミニリュウ",
types: ["ドラゴン"],
baseStats: {
hp: 41,
atk: 64,
def: 45,
spa: 50,
spd: 50,
spe: 50,
},
abilities: ["だっぴ"],
weightkg: 3.3,
},
{
name: "ハクリュー",
types: ["ドラゴン"],
baseStats: {
hp: 61,
atk: 84,
def: 65,
spa: 70,
spd: 70,
spe: 70,
},
abilities: ["だっぴ"],
weightkg: 16.5,
},
{
name: "カイリュー",
types: ["ドラゴン", "ひこう"],
baseStats: {
hp: 91,
atk: 134,
def: 95,
spa: 100,
spd: 100,
spe: 80,
},
abilities: ["せいしんりょく"],
weightkg: 210,
},
{
name: "ミュウツー",
types: ["エスパー"],
baseStats: {
hp: 106,
atk: 110,
def: 90,
spa: 154,
spd: 90,
spe: 130,
},
abilities: ["プレッシャー"],
weightkg: 122,
},
{
name: "ミュウ",
types: ["エスパー"],
baseStats: {
hp: 100,
atk: 100,
def: 100,
spa: 100,
spd: 100,
spe: 100,
},
abilities: ["シンクロ"],
weightkg: 4,
},
{
name: "チコリータ",
types: ["くさ"],
baseStats: {
hp: 45,
atk: 49,
def: 65,
spa: 49,
spd: 65,
spe: 45,
},
abilities: ["しんりょく"],
weightkg: 6.4,
},
{
name: "ベイリーフ",
types: ["くさ"],
baseStats: {
hp: 60,
atk: 62,
def: 80,
spa: 63,
spd: 80,
spe: 60,
},
abilities: ["しんりょく"],
weightkg: 15.8,
},
{
name: "ヒノアラシ",
types: ["ほのお"],
baseStats: {
hp: 39,
atk: 52,
def: 43,
spa: 60,
spd: 50,
spe: 65,
},
abilities: ["もうか"],
weightkg: 7.9,
},
{
name: "マグマラシ",
types: ["ほのお"],
baseStats: {
hp: 58,
atk: 64,
def: 58,
spa: 80,
spd: 65,
spe: 80,
},
abilities: ["もうか"],
weightkg: 19,
},
{
name: "バクフーン",
types: ["ほのお"],
baseStats: {
hp: 78,
atk: 84,
def: 78,
spa: 109,
spd: 85,
spe: 100,
},
abilities: ["もうか"],
weightkg: 79.5,
},
{
name: "ワニノコ",
types: ["みず"],
baseStats: {
hp: 50,
atk: 65,
def: 64,
spa: 44,
spd: 48,
spe: 43,
},
abilities: ["げきりゅう"],
weightkg: 9.5,
},
{
name: "アリゲイツ",
types: ["みず"],
baseStats: {
hp: 65,
atk: 80,
def: 80,
spa: 59,
spd: 63,
spe: 58,
},
abilities: ["げきりゅう"],
weightkg: 25,
},
{
name: "オーダイル",
types: ["みず"],
baseStats: {
hp: 85,
atk: 105,
def: 100,
spa: 79,
spd: 83,
spe: 78,
},
abilities: ["げきりゅう"],
weightkg: 88.8,
},
{
name: "オタチ",
types: ["ノーマル"],
baseStats: {
hp: 35,
atk: 46,
def: 34,
spa: 35,
spd: 45,
spe: 20,
},
abilities: ["にげあし", "するどいめ"],
weightkg: 6,
},
{
name: "オオタチ",
types: ["ノーマル"],
baseStats: {
hp: 85,
atk: 76,
def: 64,
spa: 45,
spd: 55,
spe: 90,
},
abilities: ["にげあし", "するどいめ"],
weightkg: 32.5,
},
{
name: "ホーホー",
types: ["ノーマル", "ひこう"],
baseStats: {
hp: 60,
atk: 30,
def: 30,
spa: 36,
spd: 56,
spe: 50,
},
abilities: ["ふみん", "するどいめ"],
weightkg: 21.2,
},
{
name: "ヨルノズク",
types: ["ノーマル", "ひこう"],
baseStats: {
hp: 100,
atk: 50,
def: 50,
spa: 76,
spd: 96,
spe: 70,
},
abilities: ["ふみん", "するどいめ"],
weightkg: 40.8,
},
{
name: "レディバ",
types: ["むし", "ひこう"],
baseStats: {
hp: 40,
atk: 20,
def: 30,
spa: 40,
spd: 80,
spe: 55,
},
abilities: ["むしのしらせ", "はやおき"],
weightkg: 10.8,
},
{
name: "レディアン",
types: ["むし", "ひこう"],
baseStats: {
hp: 55,
atk: 35,
def: 50,
spa: 55,
spd: 110,
spe: 85,
},
abilities: ["むしのしらせ", "はやおき"],
weightkg: 35.6,
},
{
name: "イトマル",
types: ["むし", "どく"],
baseStats: {
hp: 40,
atk: 60,
def: 40,
spa: 40,
spd: 40,
spe: 30,
},
abilities: ["むしのしらせ", "ふみん"],
weightkg: 8.5,
},
{
name: "アリアドス",
types: ["むし", "どく"],
baseStats: {
hp: 70,
atk: 90,
def: 70,
spa: 60,
spd: 60,
spe: 40,
},
abilities: ["むしのしらせ", "ふみん"],
weightkg: 33.5,
},
{
name: "クロバット",
types: ["どく", "ひこう"],
baseStats: {
hp: 85,
atk: 90,
def: 80,
spa: 70,
spd: 80,
spe: 130,
},
abilities: ["せいしんりょく"],
weightkg: 75,
},
{
name: "チョンチー",
types: ["みず", "でんき"],
baseStats: {
hp: 75,
atk: 38,
def: 38,
spa: 56,
spd: 56,
spe: 67,
},
abilities: ["ちくでん", "はっこう"],
weightkg: 12,
},
{
name: "ランターン",
types: ["みず", "でんき"],
baseStats: {
hp: 125,
atk: 58,
def: 58,
spa: 76,
spd: 76,
spe: 67,
},
abilities: ["ちくでん", "はっこう"],
weightkg: 22.5,
},
{
name: "ピチュー",
types: ["でんき"],
baseStats: {
hp: 20,
atk: 40,
def: 15,
spa: 35,
spd: 35,
spe: 60,
},
abilities: ["せいでんき"],
weightkg: 2,
},
{
name: "ププリン",
types: ["ノーマル"],
baseStats: {
hp: 90,
atk: 30,
def: 15,
spa: 40,
spd: 20,
spe: 15,
},
abilities: ["メロメロボディ"],
weightkg: 1,
},
{
name: "トゲチック",
types: ["ひこう"],
baseStats: {
hp: 55,
atk: 40,
def: 85,
spa: 80,
spd: 105,
spe: 40,
},
abilities: ["はりきり", "てんのめぐみ"],
weightkg: 3.2,
},
{
name: "ネイティ",
types: ["エスパー", "ひこう"],
baseStats: {
hp: 40,
atk: 50,
def: 45,
spa: 70,
spd: 45,
spe: 70,
},
abilities: ["シンクロ", "はやおき"],
weightkg: 2,
},
{
name: "ネイティオ",
types: ["エスパー", "ひこう"],
baseStats: {
hp: 65,
atk: 75,
def: 70,
spa: 95,
spd: 70,
spe: 95,
},
abilities: ["シンクロ", "はやおき"],
weightkg: 15,
},
{
name: "メリープ",
types: ["でんき"],
baseStats: {
hp: 55,
atk: 40,
def: 40,
spa: 65,
spd: 45,
spe: 35,
},
abilities: ["せいでんき"],
weightkg: 7.8,
},
{
name: "モココ",
types: ["でんき"],
baseStats: {
hp: 70,
atk: 55,
def: 55,
spa: 80,
spd: 60,
spe: 45,
},
abilities: ["せいでんき"],
weightkg: 13.3,
},
{
name: "デンリュウ",
types: ["でんき"],
baseStats: {
hp: 90,
atk: 75,
def: 85,
spa: 115,
spd: 90,
spe: 55,
},
abilities: ["せいでんき"],
weightkg: 61.5,
},
{
name: "キレイハナ",
types: ["くさ"],
baseStats: {
hp: 75,
atk: 80,
def: 95,
spa: 90,
spd: 100,
spe: 50,
},
abilities: ["ようりょくそ"],
weightkg: 5.8,
},
{
name: "マリル",
types: ["みず"],
baseStats: {
hp: 70,
atk: 20,
def: 50,
spa: 20,
spd: 50,
spe: 40,
},
abilities: ["あついしぼう", "ちからもち"],
weightkg: 8.5,
},
{
name: "マリルリ",
types: ["みず"],
baseStats: {
hp: 100,
atk: 50,
def: 80,
spa: 60,
spd: 80,
spe: 50,
},
abilities: ["あついしぼう", "ちからもち"],
weightkg: 28.5,
},
{
name: "ウソッキー",
types: ["いわ"],
baseStats: {
hp: 70,
atk: 100,
def: 115,
spa: 30,
spd: 65,
spe: 30,
},
abilities: ["がんじょう", "いしあたま"],
weightkg: 38,
},
{
name: "ニョロトノ",
types: ["みず"],
baseStats: {
hp: 90,
atk: 75,
def: 75,
spa: 90,
spd: 100,
spe: 70,
},
abilities: ["ちょすい", "しめりけ"],
weightkg: 33.9,
},
{
name: "ハネッコ",
types: ["くさ", "ひこう"],
baseStats: {
hp: 35,
atk: 35,
def: 40,
spa: 35,
spd: 55,
spe: 50,
},
abilities: ["ようりょくそ"],
weightkg: 0.5,
},
{
name: "ポポッコ",
types: ["くさ", "ひこう"],
baseStats: {
hp: 55,
atk: 45,
def: 50,
spa: 45,
spd: 65,
spe: 80,
},
abilities: ["ようりょくそ"],
weightkg: 1,
},
{
name: "ワタッコ",
types: ["くさ", "ひこう"],
baseStats: {
hp: 75,
atk: 55,
def: 70,
spa: 55,
spd: 95,
spe: 110,
},
abilities: ["ようりょくそ"],
weightkg: 3,
},
{
name: "エイパム",
types: ["ノーマル"],
baseStats: {
hp: 55,
atk: 70,
def: 55,
spa: 40,
spd: 55,
spe: 85,
},
abilities: ["にげあし", "ものひろい"],
weightkg: 11.5,
},
{
name: "ヒマナッツ",
types: ["くさ"],
baseStats: {
hp: 30,
atk: 30,
def: 30,
spa: 30,
spd: 30,
spe: 30,
},
abilities: ["ようりょくそ"],
weightkg: 1.8,
},
{
name: "キマワリ",
types: ["くさ"],
baseStats: {
hp: 75,
atk: 75,
def: 55,
spa: 105,
spd: 85,
spe: 30,
},
abilities: ["ようりょくそ"],
weightkg: 8.5,
},
{
name: "ヤンヤンマ",
types: ["むし", "ひこう"],
baseStats: {
hp: 65,
atk: 65,
def: 45,
spa: 75,
spd: 45,
spe: 95,
},
abilities: ["かそく", "ふくがん"],
weightkg: 38,
},
{
name: "ウパー",
types: ["みず", "じめん"],
baseStats: {
hp: 55,
atk: 45,
def: 45,
spa: 25,
spd: 25,
spe: 15,
},
abilities: ["しめりけ", "ちょすい"],
weightkg: 8.5,
},
{
name: "ヌオー",
types: ["みず", "じめん"],
baseStats: {
hp: 95,
atk: 85,
def: 85,
spa: 65,
spd: 65,
spe: 35,
},
abilities: ["しめりけ", "ちょすい"],
weightkg: 75,
},
{
name: "エーフィ",
types: ["エスパー"],
baseStats: {
hp: 65,
atk: 65,
def: 60,
spa: 130,
spd: 95,
spe: 110,
},
abilities: ["シンクロ"],
weightkg: 26.5,
},
{
name: "ブラッキー",
types: ["あく"],
baseStats: {
hp: 95,
atk: 65,
def: 110,
spa: 60,
spd: 130,
spe: 65,
},
abilities: ["シンクロ"],
weightkg: 27,
},
{
name: "ヤミカラス",
types: ["あく", "ひこう"],
baseStats: {
hp: 60,
atk: 85,
def: 42,
spa: 85,
spd: 42,
spe: 91,
},
abilities: ["ふみん"],
weightkg: 2.1,
},
{
name: "ヤドキング",
types: ["みず", "エスパー"],
baseStats: {
hp: 95,
atk: 75,
def: 80,
spa: 100,
spd: 110,
spe: 30,
},
abilities: ["どんかん", "マイペース"],
weightkg: 79.5,
},
{
name: "ムウマ",
types: ["ゴースト"],
baseStats: {
hp: 60,
atk: 60,
def: 60,
spa: 85,
spd: 85,
spe: 85,
},
abilities: ["ふゆう"],
weightkg: 1,
},
{
name: "アンノーン",
types: ["エスパー"],
baseStats: {
hp: 48,
atk: 72,
def: 48,
spa: 72,
spd: 48,
spe: 48,
},
abilities: ["ふゆう"],
weightkg: 5,
},
{
name: "ソーナンス",
types: ["エスパー"],
baseStats: {
hp: 190,
atk: 33,
def: 58,
spa: 33,
spd: 58,
spe: 33,
},
abilities: ["かげふみ"],
weightkg: 28.5,
},
{
name: "キリンリキ",
types: ["ノーマル", "エスパー"],
baseStats: {
hp: 70,
atk: 80,
def: 65,
spa: 90,
spd: 65,
spe: 85,
},
abilities: ["せいしんりょく", "はやおき"],
weightkg: 41.5,
},
{
name: "クヌギダマ",
types: ["むし"],
baseStats: {
hp: 50,
atk: 65,
def: 90,
spa: 35,
spd: 35,
spe: 15,
},
abilities: ["がんじょう"],
weightkg: 7.2,
},
{
name: "フォレトス",
types: ["むし", "はがね"],
baseStats: {
hp: 75,
atk: 90,
def: 140,
spa: 60,
spd: 60,
spe: 40,
},
abilities: ["がんじょう"],
weightkg: 125.8,
},
{
name: "ノコッチ",
types: ["ノーマル"],
baseStats: {
hp: 100,
atk: 70,
def: 70,
spa: 65,
spd: 65,
spe: 45,
},
abilities: ["てんのめぐみ", "にげあし"],
weightkg: 14,
},
{
name: "グライガー",
types: ["じめん", "ひこう"],
baseStats: {
hp: 65,
atk: 75,
def: 105,
spa: 35,
spd: 65,
spe: 85,
},
abilities: ["かいりきバサミ", "すながくれ"],
weightkg: 64.8,
},
{
name: "ハガネール",
types: ["はがね", "じめん"],
baseStats: {
hp: 75,
atk: 85,
def: 200,
spa: 55,
spd: 65,
spe: 30,
},
abilities: ["いしあたま", "がんじょう"],
weightkg: 400,
},
{
name: "ハリーセン",
types: ["みず", "どく"],
baseStats: {
hp: 65,
atk: 95,
def: 85,
spa: 55,
spd: 55,
spe: 85,
},
abilities: ["どくのトゲ", "すいすい"],
weightkg: 3.9,
},
{
name: "ハッサム",
types: ["むし", "はがね"],
baseStats: {
hp: 70,
atk: 130,
def: 100,
spa: 55,
spd: 80,
spe: 65,
},
abilities: ["むしのしらせ"],
weightkg: 118,
},
{
name: "ツボツボ",
types: ["むし", "いわ"],
baseStats: {
hp: 20,
atk: 10,
def: 230,
spa: 10,
spd: 230,
spe: 5,
},
abilities: ["がんじょう"],
weightkg: 20.5,
},
{
name: "ヘラクロス",
types: ["むし", "かくとう"],
baseStats: {
hp: 80,
atk: 125,
def: 75,
spa: 40,
spd: 95,
spe: 85,
},
abilities: ["むしのしらせ", "こんじょう"],
weightkg: 54,
},
{
name: "ニューラ",
types: ["あく", "こおり"],
baseStats: {
hp: 55,
atk: 95,
def: 55,
spa: 35,
spd: 75,
spe: 115,
},
abilities: ["せいしんりょく", "するどいめ"],
weightkg: 28,
},
{
name: "ヒメグマ",
types: ["ノーマル"],
baseStats: {
hp: 60,
atk: 80,
def: 50,
spa: 50,
spd: 50,
spe: 40,
},
abilities: ["ものひろい"],
weightkg: 8.8,
},
{
name: "リングマ",
types: ["ノーマル"],
baseStats: {
hp: 90,
atk: 130,
def: 75,
spa: 75,
spd: 75,
spe: 55,
},
abilities: ["こんじょう"],
weightkg: 125.8,
},
{
name: "マグマッグ",
types: ["ほのお"],
baseStats: {
hp: 40,
atk: 40,
def: 40,
spa: 70,
spd: 40,
spe: 20,
},
abilities: ["マグマのよろい", "ほのおのからだ"],
weightkg: 35,
},
{
name: "マグカルゴ",
types: ["ほのお", "いわ"],
baseStats: {
hp: 60,
atk: 50,
def: 120,
spa: 90,
spd: 80,
spe: 30,
},
abilities: ["マグマのよろい", "ほのおのからだ"],
weightkg: 55,
},
{
name: "ウリムー",
types: ["こおり", "じめん"],
baseStats: {
hp: 50,
atk: 50,
def: 40,
spa: 30,
spd: 30,
spe: 50,
},
abilities: ["どんかん"],
weightkg: 6.5,
},
{
name: "イノムー",
types: ["こおり", "じめん"],
baseStats: {
hp: 100,
atk: 100,
def: 80,
spa: 60,
spd: 60,
spe: 50,
},
abilities: ["どんかん"],
weightkg: 55.8,
},
{
name: "サニーゴ",
types: ["みず", "いわ"],
baseStats: {
hp: 65,
atk: 55,
def: 95,
spa: 65,
spd: 95,
spe: 35,
},
abilities: ["はりきり", "しぜんかいふく"],
weightkg: 5,
},
{
name: "テッポウオ",
types: ["みず"],
baseStats: {
hp: 35,
atk: 65,
def: 35,
spa: 65,
spd: 35,
spe: 65,
},
abilities: ["はりきり"],
weightkg: 12,
},
{
name: "オクタン",
types: ["みず"],
baseStats: {
hp: 75,
atk: 105,
def: 75,
spa: 105,
spd: 75,
spe: 45,
},
abilities: ["きゅうばん"],
weightkg: 28.5,
},
{
name: "デリバード",
types: ["こおり", "ひこう"],
baseStats: {
hp: 45,
atk: 55,
def: 45,
spa: 65,
spd: 45,
spe: 75,
},
abilities: ["やるき", "はりきり"],
weightkg: 16,
},
{
name: "マンタイン",
types: ["みず", "ひこう"],
baseStats: {
hp: 65,
atk: 40,
def: 70,
spa: 80,
spd: 140,
spe: 70,
},
abilities: ["すいすい", "ちょすい"],
weightkg: 220,
},
{
name: "エアームド",
types: ["はがね", "ひこう"],
baseStats: {
hp: 65,
atk: 80,
def: 140,
spa: 40,
spd: 70,
spe: 70,
},
abilities: ["するどいめ", "がんじょう"],
weightkg: 50.5,
},
{
name: "デルビル",
types: ["あく", "ほのお"],
baseStats: {
hp: 45,
atk: 60,
def: 30,
spa: 80,
spd: 50,
spe: 65,
},
abilities: ["はやおき", "もらいび"],
weightkg: 10.8,
},
{
name: "ヘルガー",
types: ["あく", "ほのお"],
baseStats: {
hp: 75,
atk: 90,
def: 50,
spa: 110,
spd: 80,
spe: 95,
},
abilities: ["はやおき", "もらいび"],
weightkg: 35,
},
{
name: "キングドラ",
types: ["みず", "ドラゴン"],
baseStats: {
hp: 75,
atk: 95,
def: 95,
spa: 95,
spd: 95,
spe: 85,
},
abilities: ["すいすい"],
weightkg: 152,
},
{
name: "ゴマゾウ",
types: ["じめん"],
baseStats: {
hp: 90,
atk: 60,
def: 60,
spa: 40,
spd: 40,
spe: 40,
},
abilities: ["ものひろい"],
weightkg: 33.5,
},
{
name: "ドンファン",
types: ["じめん"],
baseStats: {
hp: 90,
atk: 120,
def: 120,
spa: 60,
spd: 60,
spe: 50,
},
abilities: ["がんじょう"],
weightkg: 120,
},
{
name: "ポリゴン2",
types: ["ノーマル"],
baseStats: {
hp: 85,
atk: 80,
def: 90,
spa: 105,
spd: 95,
spe: 60,
},
abilities: ["トレース"],
weightkg: 32.5,
},
{
name: "オドシシ",
types: ["ノーマル"],
baseStats: {
hp: 73,
atk: 95,
def: 62,
spa: 85,
spd: 65,
spe: 85,
},
abilities: ["いかく"],
weightkg: 71.2,
},
{
name: "ドーブル",
types: ["ノーマル"],
baseStats: {
hp: 55,
atk: 20,
def: 35,
spa: 20,
spd: 45,
spe: 75,
},
abilities: ["マイペース"],
weightkg: 58,
},
{
name: "バルキー",
types: ["かくとう"],
baseStats: {
hp: 35,
atk: 35,
def: 35,
spa: 35,
spd: 35,
spe: 35,
},
abilities: ["こんじょう"],
weightkg: 21,
},
{
name: "カポエラー",
types: ["かくとう"],
baseStats: {
hp: 50,
atk: 95,
def: 95,
spa: 35,
spd: 110,
spe: 70,
},
abilities: ["いかく"],
weightkg: 48,
},
{
name: "ムチュール",
types: ["こおり", "エスパー"],
baseStats: {
hp: 45,
atk: 30,
def: 15,
spa: 85,
spd: 65,
spe: 65,
},
abilities: ["どんかん"],
weightkg: 6,
},
{
name: "エレキッド",
types: ["でんき"],
baseStats: {
hp: 45,
atk: 63,
def: 37,
spa: 65,
spd: 55,
spe: 95,
},
abilities: ["せいでんき"],
weightkg: 23.5,
},
{
name: "ブビィ",
types: ["ほのお"],
baseStats: {
hp: 45,
atk: 75,
def: 37,
spa: 70,
spd: 55,
spe: 83,
},
abilities: ["ほのおのからだ"],
weightkg: 21.4,
},
{
name: "ミルタンク",
types: ["ノーマル"],
baseStats: {
hp: 95,
atk: 80,
def: 105,
spa: 40,
spd: 70,
spe: 100,
},
abilities: ["あついしぼう"],
weightkg: 75.5,
},
{
name: "ハピナス",
types: ["ノーマル"],
baseStats: {
hp: 255,
atk: 10,
def: 10,
spa: 75,
spd: 135,
spe: 55,
},
abilities: ["しぜんかいふく", "てんのめぐみ"],
weightkg: 46.8,
},
{
name: "ライコウ",
types: ["でんき"],
baseStats: {
hp: 90,
atk: 85,
def: 75,
spa: 115,
spd: 100,
spe: 115,
},
abilities: ["プレッシャー"],
weightkg: 178,
},
{
name: "エンテイ",
types: ["ほのお"],
baseStats: {
hp: 115,
atk: 115,
def: 85,
spa: 90,
spd: 75,
spe: 100,
},
abilities: ["プレッシャー"],
weightkg: 198,
},
{
name: "スイクン",
types: ["みず"],
baseStats: {
hp: 100,
atk: 75,
def: 115,
spa: 90,
spd: 115,
spe: 85,
},
abilities: ["プレッシャー"],
weightkg: 187,
},
{
name: "ヨーギラス",
types: ["いわ", "じめん"],
baseStats: {
hp: 50,
atk: 64,
def: 50,
spa: 45,
spd: 50,
spe: 41,
},
abilities: ["こんじょう"],
weightkg: 72,
},
{
name: "サナギラス",
types: ["いわ", "じめん"],
baseStats: {
hp: 70,
atk: 84,
def: 70,
spa: 65,
spd: 70,
spe: 51,
},
abilities: ["だっぴ"],
weightkg: 152,
},
{
name: "バンギラス",
types: ["いわ", "あく"],
baseStats: {
hp: 100,
atk: 134,
def: 110,
spa: 95,
spd: 100,
spe: 61,
},
abilities: ["すなおこし"],
weightkg: 202,
},
{
name: "ルギア",
types: ["エスパー", "ひこう"],
baseStats: {
hp: 106,
atk: 90,
def: 130,
spa: 90,
spd: 154,
spe: 110,
},
abilities: ["プレッシャー"],
weightkg: 216,
},
{
name: "ホウオウ",
types: ["ほのお", "ひこう"],
baseStats: {
hp: 106,
atk: 130,
def: 90,
spa: 110,
spd: 154,
spe: 90,
},
abilities: ["プレッシャー"],
weightkg: 199,
},
{
name: "セレビィ",
types: ["エスパー", "くさ"],
baseStats: {
hp: 100,
atk: 100,
def: 100,
spa: 100,
spd: 100,
spe: 100,
},
abilities: ["しぜんかいふく"],
weightkg: 5,
},
{
name: "キモリ",
types: ["くさ"],
baseStats: {
hp: 40,
atk: 45,
def: 35,
spa: 65,
spd: 55,
spe: 70,
},
abilities: ["しんりょく"],
weightkg: 5,
},
{
name: "ジュプトル",
types: ["くさ"],
baseStats: {
hp: 50,
atk: 65,
def: 45,
spa: 85,
spd: 65,
spe: 95,
},
abilities: ["しんりょく"],
weightkg: 21.6,
},
{
name: "ジュカイン",
types: ["くさ"],
baseStats: {
hp: 70,
atk: 85,
def: 65,
spa: 105,
spd: 85,
spe: 120,
},
abilities: ["しんりょく"],
weightkg: 52.2,
},
{
name: "アチャモ",
types: ["ほのお"],
baseStats: {
hp: 45,
atk: 60,
def: 40,
spa: 70,
spd: 50,
spe: 45,
},
abilities: ["もうか"],
weightkg: 2.5,
},
{
name: "ワカシャモ",
types: ["ほのお", "かくとう"],
baseStats: {
hp: 60,
atk: 85,
def: 60,
spa: 85,
spd: 60,
spe: 55,
},
abilities: ["もうか"],
weightkg: 19.5,
},
{
name: "バシャーモ",
types: ["ほのお", "かくとう"],
baseStats: {
hp: 80,
atk: 120,
def: 70,
spa: 110,
spd: 70,
spe: 80,
},
abilities: ["もうか"],
weightkg: 52,
},
{
name: "ミズゴロウ",
types: ["みず"],
baseStats: {
hp: 50,
atk: 70,
def: 50,
spa: 50,
spd: 50,
spe: 40,
},
abilities: ["げきりゅう"],
weightkg: 7.6,
},
{
name: "ヌマクロー",
types: ["みず", "じめん"],
baseStats: {
hp: 70,
atk: 85,
def: 70,
spa: 60,
spd: 70,
spe: 50,
},
abilities: ["げきりゅう"],
weightkg: 28,
},
{
name: "ラグラージ",
types: ["みず", "じめん"],
baseStats: {
hp: 100,
atk: 110,
def: 90,
spa: 85,
spd: 90,
spe: 60,
},
abilities: ["げきりゅう"],
weightkg: 81.9,
},
{
name: "ポチエナ",
types: ["あく"],
baseStats: {
hp: 35,
atk: 55,
def: 35,
spa: 30,
spd: 30,
spe: 35,
},
abilities: ["にげあし"],
weightkg: 13.6,
},
{
name: "グラエナ",
types: ["あく"],
baseStats: {
hp: 70,
atk: 90,
def: 70,
spa: 60,
spd: 60,
spe: 70,
},
abilities: ["いかく"],
weightkg: 37,
},
{
name: "ジグザグマ",
types: ["ノーマル"],
baseStats: {
hp: 38,
atk: 30,
def: 41,
spa: 30,
spd: 41,
spe: 60,
},
abilities: ["ものひろい"],
weightkg: 17.5,
},
{
name: "マッスグマ",
types: ["ノーマル"],
baseStats: {
hp: 78,
atk: 70,
def: 61,
spa: 50,
spd: 61,
spe: 100,
},
abilities: ["ものひろい"],
weightkg: 32.5,
},
{
name: "ケムッソ",
types: ["むし"],
baseStats: {
hp: 45,
atk: 45,
def: 35,
spa: 20,
spd: 30,
spe: 20,
},
abilities: ["りんぷん"],
weightkg: 3.6,
},
{
name: "カラサリス",
types: ["むし"],
baseStats: {
hp: 50,
atk: 35,
def: 55,
spa: 25,
spd: 25,
spe: 15,
},
abilities: ["だっぴ"],
weightkg: 10,
},
{
name: "アゲハント",
types: ["むし", "ひこう"],
baseStats: {
hp: 60,
atk: 70,
def: 50,
spa: 100,
spd: 50,
spe: 65,
},
abilities: ["むしのしらせ"],
weightkg: 28.4,
},
{
name: "マユルド",
types: ["むし"],
baseStats: {
hp: 50,
atk: 35,
def: 55,
spa: 25,
spd: 25,
spe: 15,
},
abilities: ["だっぴ"],
weightkg: 11.5,
},
{
name: "ドクケイル",
types: ["むし", "どく"],
baseStats: {
hp: 60,
atk: 50,
def: 70,
spa: 50,
spd: 90,
spe: 65,
},
abilities: ["りんぷん"],
weightkg: 31.6,
},
{
name: "ハスボー",
types: ["みず", "くさ"],
baseStats: {
hp: 40,
atk: 30,
def: 30,
spa: 40,
spd: 50,
spe: 30,
},
abilities: ["すいすい", "あめうけざら"],
weightkg: 2.6,
},
{
name: "ハスブレロ",
types: ["みず", "くさ"],
baseStats: {
hp: 60,
atk: 50,
def: 50,
spa: 60,
spd: 70,
spe: 50,
},
abilities: ["すいすい", "あめうけざら"],
weightkg: 32.5,
},
{
name: "ルンパッパ",
types: ["みず", "くさ"],
baseStats: {
hp: 80,
atk: 70,
def: 70,
spa: 90,
spd: 100,
spe: 70,
},
abilities: ["すいすい", "あめうけざら"],
weightkg: 55,
},
{
name: "タネボー",
types: ["くさ"],
baseStats: {
hp: 40,
atk: 40,
def: 50,
spa: 30,
spd: 30,
spe: 30,
},
abilities: ["ようりょくそ", "はやおき"],
weightkg: 4,
},
{
name: "コノハナ",
types: ["くさ", "あく"],
baseStats: {
hp: 70,
atk: 70,
def: 40,
spa: 60,
spd: 40,
spe: 60,
},
abilities: ["ようりょくそ", "はやおき"],
weightkg: 28,
},
{
name: "ダーテング",
types: ["くさ", "あく"],
baseStats: {
hp: 90,
atk: 100,
def: 60,
spa: 90,
spd: 60,
spe: 80,
},
abilities: ["ようりょくそ"],
weightkg: 59.6,
},
{
name: "スバメ",
types: ["ノーマル", "ひこう"],
baseStats: {
hp: 40,
atk: 55,
def: 30,
spa: 30,
spd: 30,
spe: 85,
},
abilities: ["こんじょう"],
weightkg: 2.3,
},
{
name: "オオスバメ",
types: ["ノーマル", "ひこう"],
baseStats: {
hp: 60,
atk: 85,
def: 60,
spa: 50,
spd: 50,
spe: 125,
},
abilities: ["こんじょう"],
weightkg: 19.8,
},
{
name: "キャモメ",
types: ["みず", "ひこう"],
baseStats: {
hp: 40,
atk: 30,
def: 30,
spa: 55,
spd: 30,
spe: 85,
},
abilities: ["するどいめ"],
weightkg: 9.5,
},
{
name: "ペリッパー",
types: ["みず", "ひこう"],
baseStats: {
hp: 60,
atk: 50,
def: 100,
spa: 85,
spd: 70,
spe: 65,
},
abilities: ["するどいめ", "あめふらし"],
weightkg: 28,
},
{
name: "ラルトス",
types: ["エスパー"],
baseStats: {
hp: 28,
atk: 25,
def: 25,
spa: 45,
spd: 35,
spe: 40,
},
abilities: ["シンクロ", "トレース"],
weightkg: 6.6,
},
{
name: "キルリア",
types: ["エスパー"],
baseStats: {
hp: 38,
atk: 35,
def: 35,
spa: 65,
spd: 55,
spe: 50,
},
abilities: ["シンクロ", "トレース"],
weightkg: 20.2,
},
{
name: "サーナイト",
types: ["エスパー"],
baseStats: {
hp: 68,
atk: 65,
def: 65,
spa: 125,
spd: 115,
spe: 80,
},
abilities: ["シンクロ", "トレース"],
weightkg: 48.4,
},
{
name: "アメタマ",
types: ["むし", "みず"],
baseStats: {
hp: 40,
atk: 30,
def: 32,
spa: 50,
spd: 52,
spe: 65,
},
abilities: ["すいすい"],
weightkg: 1.7,
},
{
name: "アメモース",
types: ["むし", "ひこう"],
baseStats: {
hp: 70,
atk: 60,
def: 62,
spa: 80,
spd: 82,
spe: 60,
},
abilities: ["いかく"],
weightkg: 3.6,
},
{
name: "キノココ",
types: ["くさ"],
baseStats: {
hp: 60,
atk: 40,
def: 60,
spa: 40,
spd: 60,
spe: 35,
},
abilities: ["ほうし"],
weightkg: 4.5,
},
{
name: "キノガッサ",
types: ["くさ", "かくとう"],
baseStats: {
hp: 60,
atk: 130,
def: 80,
spa: 60,
spd: 60,
spe: 70,
},
abilities: ["ほうし"],
weightkg: 39.2,
},
{
name: "ナマケロ",
types: ["ノーマル"],
baseStats: {
hp: 60,
atk: 60,
def: 60,
spa: 35,
spd: 35,
spe: 30,
},
abilities: ["なまけ"],
weightkg: 24,
},
{
name: "ヤルキモノ",
types: ["ノーマル"],
baseStats: {
hp: 80,
atk: 80,
def: 80,
spa: 55,
spd: 55,
spe: 90,
},
abilities: ["やるき"],
weightkg: 46.5,
},
{
name: "ケッキング",
types: ["ノーマル"],
baseStats: {
hp: 150,
atk: 160,
def: 100,
spa: 95,
spd: 65,
spe: 100,
},
abilities: ["なまけ"],
weightkg: 130.5,
},
{
name: "ツチニン",
types: ["むし", "じめん"],
baseStats: {
hp: 31,
atk: 45,
def: 90,
spa: 30,
spd: 30,
spe: 40,
},
abilities: ["ふくがん"],
weightkg: 5.5,
},
{
name: "テッカニン",
types: ["むし", "ひこう"],
baseStats: {
hp: 61,
atk: 90,
def: 45,
spa: 50,
spd: 50,
spe: 160,
},
abilities: ["かそく"],
weightkg: 12,
},
{
name: "ヌケニン",
types: ["むし", "ゴースト"],
baseStats: {
hp: 1,
atk: 90,
def: 45,
spa: 30,
spd: 30,
spe: 40,
},
abilities: ["ふしぎなまもり"],
weightkg: 1.2,
},
{
name: "ゴニョニョ",
types: ["ノーマル"],
baseStats: {
hp: 64,
atk: 51,
def: 23,
spa: 51,
spd: 23,
spe: 28,
},
abilities: ["ぼうおん"],
weightkg: 16.3,
},
{
name: "ドゴーム",
types: ["ノーマル"],
baseStats: {
hp: 84,
atk: 71,
def: 43,
spa: 71,
spd: 43,
spe: 48,
},
abilities: ["ぼうおん"],
weightkg: 40.5,
},
{
name: "バクオング",
types: ["ノーマル"],
baseStats: {
hp: 104,
atk: 91,
def: 63,
spa: 91,
spd: 63,
spe: 68,
},
abilities: ["ぼうおん"],
weightkg: 84,
},
{
name: "マクノシタ",
types: ["かくとう"],
baseStats: {
hp: 72,
atk: 60,
def: 30,
spa: 20,
spd: 30,
spe: 25,
},
abilities: ["あついしぼう", "こんじょう"],
weightkg: 86.4,
},
{
name: "ハリテヤマ",
types: ["かくとう"],
baseStats: {
hp: 144,
atk: 120,
def: 60,
spa: 40,
spd: 60,
spe: 50,
},
abilities: ["あついしぼう", "こんじょう"],
weightkg: 253.8,
},
{
name: "ルリリ",
types: ["ノーマル"],
baseStats: {
hp: 50,
atk: 20,
def: 40,
spa: 20,
spd: 40,
spe: 20,
},
abilities: ["あついしぼう", "ちからもち"],
weightkg: 2,
},
{
name: "ノズパス",
types: ["いわ"],
baseStats: {
hp: 30,
atk: 45,
def: 135,
spa: 45,
spd: 90,
spe: 30,
},
abilities: ["がんじょう", "じりょく"],
weightkg: 97,
},
{
name: "エネコ",
types: ["ノーマル"],
baseStats: {
hp: 50,
atk: 45,
def: 45,
spa: 35,
spd: 35,
spe: 50,
},
abilities: ["メロメロボディ"],
weightkg: 11,
},
{
name: "エネコロロ",
types: ["ノーマル"],
baseStats: {
hp: 70,
atk: 65,
def: 65,
spa: 55,
spd: 55,
spe: 90,
},
abilities: ["メロメロボディ"],
weightkg: 32.6,
},
{
name: "ヤミラミ",
types: ["あく", "ゴースト"],
baseStats: {
hp: 50,
atk: 75,
def: 75,
spa: 65,
spd: 65,
spe: 50,
},
abilities: ["するどいめ"],
weightkg: 11,
},
{
name: "クチート",
types: ["はがね"],
baseStats: {
hp: 50,
atk: 85,
def: 85,
spa: 55,
spd: 55,
spe: 50,
},
abilities: ["かいりきバサミ", "いかく"],
weightkg: 11.5,
},
{
name: "ココドラ",
types: ["はがね", "いわ"],
baseStats: {
hp: 50,
atk: 70,
def: 100,
spa: 40,
spd: 40,
spe: 30,
},
abilities: ["がんじょう", "いしあたま"],
weightkg: 60,
},
{
name: "コドラ",
types: ["はがね", "いわ"],
baseStats: {
hp: 60,
atk: 90,
def: 140,
spa: 50,
spd: 50,
spe: 40,
},
abilities: ["がんじょう", "いしあたま"],
weightkg: 120,
},
{
name: "ボスゴドラ",
types: ["はがね", "いわ"],
baseStats: {
hp: 70,
atk: 110,
def: 180,
spa: 60,
spd: 60,
spe: 50,
},
abilities: ["がんじょう", "いしあたま"],
weightkg: 360,
},
{
name: "アサナン",
types: ["かくとう", "エスパー"],
baseStats: {
hp: 30,
atk: 40,
def: 55,
spa: 40,
spd: 55,
spe: 60,
},
abilities: ["ヨガパワー"],
weightkg: 11.2,
},
{
name: "チャーレム",
types: ["かくとう", "エスパー"],
baseStats: {
hp: 60,
atk: 60,
def: 75,
spa: 60,
spd: 75,
spe: 80,
},
abilities: ["ヨガパワー"],
weightkg: 31.5,
},
{
name: "ラクライ",
types: ["でんき"],
baseStats: {
hp: 40,
atk: 45,
def: 40,
spa: 65,
spd: 40,
spe: 65,
},
abilities: ["せいでんき", "ひらいしん"],
weightkg: 15.2,
},
{
name: "ライボルト",
types: ["でんき"],
baseStats: {
hp: 70,
atk: 75,
def: 60,
spa: 105,
spd: 60,
spe: 105,
},
abilities: ["せいでんき", "ひらいしん"],
weightkg: 40.2,
},
{
name: "プラスル",
types: ["でんき"],
baseStats: {
hp: 60,
atk: 50,
def: 40,
spa: 85,
spd: 75,
spe: 95,
},
abilities: ["プラス"],
weightkg: 4.2,
},
{
name: "マイナン",
types: ["でんき"],
baseStats: {
hp: 60,
atk: 40,
def: 50,
spa: 75,
spd: 85,
spe: 95,
},
abilities: ["マイナス"],
weightkg: 4.2,
},
{
name: "バルビート",
types: ["むし"],
baseStats: {
hp: 65,
atk: 73,
def: 75,
spa: 47,
spd: 85,
spe: 85,
},
abilities: ["はっこう", "むしのしらせ"],
weightkg: 17.7,
},
{
name: "イルミーゼ",
types: ["むし"],
baseStats: {
hp: 65,
atk: 47,
def: 75,
spa: 73,
spd: 85,
spe: 85,
},
abilities: ["どんかん"],
weightkg: 17.7,
},
{
name: "ロゼリア",
types: ["くさ", "どく"],
baseStats: {
hp: 50,
atk: 60,
def: 45,
spa: 100,
spd: 80,
spe: 65,
},
abilities: ["しぜんかいふく", "どくのトゲ"],
weightkg: 2,
},
{
name: "ゴクリン",
types: ["どく"],
baseStats: {
hp: 70,
atk: 43,
def: 53,
spa: 43,
spd: 53,
spe: 40,
},
abilities: ["ヘドロえき", "ねんちゃく"],
weightkg: 10.3,
},
{
name: "マルノーム",
types: ["どく"],
baseStats: {
hp: 100,
atk: 73,
def: 83,
spa: 73,
spd: 83,
spe: 55,
},
abilities: ["ヘドロえき", "ねんちゃく"],
weightkg: 80,
},
{
name: "キバニア",
types: ["みず", "あく"],
baseStats: {
hp: 45,
atk: 90,
def: 20,
spa: 65,
spd: 20,
spe: 65,
},
abilities: ["さめはだ"],
weightkg: 20.8,
},
{
name: "サメハダー",
types: ["みず", "あく"],
baseStats: {
hp: 70,
atk: 120,
def: 40,
spa: 95,
spd: 40,
spe: 95,
},
abilities: ["さめはだ"],
weightkg: 88.8,
},
{
name: "ホエルコ",
types: ["みず"],
baseStats: {
hp: 130,
atk: 70,
def: 35,
spa: 70,
spd: 35,
spe: 60,
},
abilities: ["みずのベール", "どんかん"],
weightkg: 130,
},
{
name: "ホエルオー",
types: ["みず"],
baseStats: {
hp: 170,
atk: 90,
def: 45,
spa: 90,
spd: 45,
spe: 60,
},
abilities: ["みずのベール", "どんかん"],
weightkg: 398,
},
{
name: "ドンメル",
types: ["ほのお", "じめん"],
baseStats: {
hp: 60,
atk: 60,
def: 40,
spa: 65,
spd: 45,
spe: 35,
},
abilities: ["どんかん"],
weightkg: 24,
},
{
name: "バクーダ",
types: ["ほのお", "じめん"],
baseStats: {
hp: 70,
atk: 100,
def: 70,
spa: 105,
spd: 75,
spe: 40,
},
abilities: ["マグマのよろい"],
weightkg: 220,
},
{
name: "コータス",
types: ["ほのお"],
baseStats: {
hp: 70,
atk: 85,
def: 140,
spa: 85,
spd: 70,
spe: 20,
},
abilities: ["しろいけむり", "ひでり"],
weightkg: 80.4,
},
{
name: "バネブー",
types: ["エスパー"],
baseStats: {
hp: 60,
atk: 25,
def: 35,
spa: 70,
spd: 80,
spe: 60,
},
abilities: ["あついしぼう", "マイペース"],
weightkg: 30.6,
},
{
name: "ブーピッグ",
types: ["エスパー"],
baseStats: {
hp: 80,
atk: 45,
def: 65,
spa: 90,
spd: 110,
spe: 80,
},
abilities: ["あついしぼう", "マイペース"],
weightkg: 71.5,
},
{
name: "パッチール",
types: ["ノーマル"],
baseStats: {
hp: 60,
atk: 60,
def: 60,
spa: 60,
spd: 60,
spe: 60,
},
abilities: ["マイペース"],
weightkg: 5,
},
{
name: "ナックラー",
types: ["じめん"],
baseStats: {
hp: 45,
atk: 100,
def: 45,
spa: 45,
spd: 45,
spe: 10,
},
abilities: ["かいりきバサミ", "ありじごく"],
weightkg: 15,
},
{
name: "ビブラーバ",
types: ["じめん", "ドラゴン"],
baseStats: {
hp: 50,
atk: 70,
def: 50,
spa: 50,
spd: 50,
spe: 70,
},
abilities: ["ふゆう"],
weightkg: 15.3,
},
{
name: "フライゴン",
types: ["じめん", "ドラゴン"],
baseStats: {
hp: 80,
atk: 100,
def: 80,
spa: 80,
spd: 80,
spe: 100,
},
abilities: ["ふゆう"],
weightkg: 82,
},
{
name: "サボネア",
types: ["くさ"],
baseStats: {
hp: 50,
atk: 85,
def: 40,
spa: 85,
spd: 40,
spe: 35,
},
abilities: ["すながくれ"],
weightkg: 51.3,
},
{
name: "ノクタス",
types: ["くさ", "あく"],
baseStats: {
hp: 70,
atk: 115,
def: 60,
spa: 115,
spd: 60,
spe: 55,
},
abilities: ["すながくれ"],
weightkg: 77.4,
},
{
name: "チルット",
types: ["ノーマル", "ひこう"],
baseStats: {
hp: 45,
atk: 40,
def: 60,
spa: 40,
spd: 75,
spe: 50,
},
abilities: ["しぜんかいふく"],
weightkg: 1.2,
},
{
name: "チルタリス",
types: ["ドラゴン", "ひこう"],
baseStats: {
hp: 75,
atk: 70,
def: 90,
spa: 70,
spd: 105,
spe: 80,
},
abilities: ["しぜんかいふく"],
weightkg: 20.6,
},
{
name: "ザングース",
types: ["ノーマル"],
baseStats: {
hp: 73,
atk: 115,
def: 60,
spa: 60,
spd: 60,
spe: 90,
},
abilities: ["めんえき"],
weightkg: 40.3,
},
{
name: "ハブネーク",
types: ["どく"],
baseStats: {
hp: 73,
atk: 100,
def: 60,
spa: 100,
spd: 60,
spe: 65,
},
abilities: ["だっぴ"],
weightkg: 52.5,
},
{
name: "ルナトーン",
types: ["いわ", "エスパー"],
baseStats: {
hp: 70,
atk: 55,
def: 65,
spa: 95,
spd: 85,
spe: 70,
},
abilities: ["ふゆう"],
weightkg: 168,
},
{
name: "ソルロック",
types: ["いわ", "エスパー"],
baseStats: {
hp: 70,
atk: 95,
def: 85,
spa: 55,
spd: 65,
spe: 70,
},
abilities: ["ふゆう"],
weightkg: 154,
},
{
name: "ドジョッチ",
types: ["みず", "じめん"],
baseStats: {
hp: 50,
atk: 48,
def: 43,
spa: 46,
spd: 41,
spe: 60,
},
abilities: ["どんかん"],
weightkg: 1.9,
},
{
name: "ナマズン",
types: ["みず", "じめん"],
baseStats: {
hp: 110,
atk: 78,
def: 73,
spa: 76,
spd: 71,
spe: 60,
},
abilities: ["どんかん"],
weightkg: 23.6,
},
{
name: "ヘイガニ",
types: ["みず"],
baseStats: {
hp: 43,
atk: 80,
def: 65,
spa: 50,
spd: 35,
spe: 35,
},
abilities: ["かいりきバサミ", "シェルアーマー"],
weightkg: 11.5,
},
{
name: "シザリガー",
types: ["みず", "あく"],
baseStats: {
hp: 63,
atk: 120,
def: 85,
spa: 90,
spd: 55,
spe: 55,
},
abilities: ["かいりきバサミ", "シェルアーマー"],
weightkg: 32.8,
},
{
name: "ヤジロン",
types: ["じめん", "エスパー"],
baseStats: {
hp: 40,
atk: 40,
def: 55,
spa: 40,
spd: 70,
spe: 55,
},
abilities: ["ふゆう"],
weightkg: 21.5,
},
{
name: "ネンドール",
types: ["じめん", "エスパー"],
baseStats: {
hp: 60,
atk: 70,
def: 105,
spa: 70,
spd: 120,
spe: 75,
},
abilities: ["ふゆう"],
weightkg: 108,
},
{
name: "リリーラ",
types: ["いわ", "くさ"],
baseStats: {
hp: 66,
atk: 41,
def: 77,
spa: 61,
spd: 87,
spe: 23,
},
abilities: ["きゅうばん"],
weightkg: 23.8,
},
{
name: "ユレイドル",
types: ["いわ", "くさ"],
baseStats: {
hp: 86,
atk: 81,
def: 97,
spa: 81,
spd: 107,
spe: 43,
},
abilities: ["きゅうばん"],
weightkg: 60.4,
},
{
name: "アノプス",
types: ["いわ", "むし"],
baseStats: {
hp: 45,
atk: 95,
def: 50,
spa: 40,
spd: 50,
spe: 75,
},
abilities: ["カブトアーマー"],
weightkg: 12.5,
},
{
name: "アーマルド",
types: ["いわ", "むし"],
baseStats: {
hp: 75,
atk: 125,
def: 100,
spa: 70,
spd: 80,
spe: 45,
},
abilities: ["カブトアーマー"],
weightkg: 68.2,
},
{
name: "ヒンバス",
types: ["みず"],
baseStats: {
hp: 20,
atk: 15,
def: 20,
spa: 10,
spd: 55,
spe: 80,
},
abilities: ["すいすい", "どんかん"],
weightkg: 7.4,
},
{
name: "ミロカロス",
types: ["みず"],
baseStats: {
hp: 95,
atk: 60,
def: 79,
spa: 100,
spd: 125,
spe: 81,
},
abilities: ["ふしぎなうろこ"],
weightkg: 162,
},
{
name: "カクレオン",
types: ["ノーマル"],
baseStats: {
hp: 60,
atk: 90,
def: 70,
spa: 60,
spd: 120,
spe: 40,
},
abilities: ["へんしょく"],
weightkg: 22,
},
{
name: "カゲボウズ",
types: ["ゴースト"],
baseStats: {
hp: 44,
atk: 75,
def: 35,
spa: 63,
spd: 33,
spe: 45,
},
abilities: ["ふみん"],
weightkg: 2.3,
},
{
name: "ジュペッタ",
types: ["ゴースト"],
baseStats: {
hp: 64,
atk: 115,
def: 65,
spa: 83,
spd: 63,
spe: 65,
},
abilities: ["ふみん"],
weightkg: 12.5,
},
{
name: "ヨマワル",
types: ["ゴースト"],
baseStats: {
hp: 20,
atk: 40,
def: 90,
spa: 30,
spd: 90,
spe: 25,
},
abilities: ["ふゆう"],
weightkg: 15,
},
{
name: "サマヨール",
types: ["ゴースト"],
baseStats: {
hp: 40,
atk: 70,
def: 130,
spa: 60,
spd: 130,
spe: 25,
},
abilities: ["プレッシャー"],
weightkg: 30.6,
},
{
name: "トロピウス",
types: ["くさ", "ひこう"],
baseStats: {
hp: 99,
atk: 68,
def: 83,
spa: 72,
spd: 87,
spe: 51,
},
abilities: ["ようりょくそ"],
weightkg: 100,
},
{
name: "チリーン",
types: ["エスパー"],
baseStats: {
hp: 65,
atk: 50,
def: 70,
spa: 95,
spd: 80,
spe: 65,
},
abilities: ["ふゆう"],
weightkg: 1,
},
{
name: "アブソル",
types: ["あく"],
baseStats: {
hp: 65,
atk: 130,
def: 60,
spa: 75,
spd: 60,
spe: 75,
},
abilities: ["プレッシャー"],
weightkg: 47,
},
{
name: "ソーナノ",
types: ["エスパー"],
baseStats: {
hp: 95,
atk: 23,
def: 48,
spa: 23,
spd: 48,
spe: 23,
},
abilities: ["かげふみ"],
weightkg: 14,
},
{
name: "ユキワラシ",
types: ["こおり"],
baseStats: {
hp: 50,
atk: 50,
def: 50,
spa: 50,
spd: 50,
spe: 50,
},
abilities: ["せいしんりょく"],
weightkg: 16.8,
},
{
name: "オニゴーリ",
types: ["こおり"],
baseStats: {
hp: 80,
atk: 80,
def: 80,
spa: 80,
spd: 80,
spe: 80,
},
abilities: ["せいしんりょく"],
weightkg: 256.5,
},
{
name: "タマザラシ",
types: ["こおり", "みず"],
baseStats: {
hp: 70,
atk: 40,
def: 50,
spa: 55,
spd: 50,
spe: 25,
},
abilities: ["あついしぼう"],
weightkg: 39.5,
},
{
name: "トドグラー",
types: ["こおり", "みず"],
baseStats: {
hp: 90,
atk: 60,
def: 70,
spa: 75,
spd: 70,
spe: 45,
},
abilities: ["あついしぼう"],
weightkg: 87.6,
},
{
name: "トドゼルガ",
types: ["こおり", "みず"],
baseStats: {
hp: 110,
atk: 80,
def: 90,
spa: 95,
spd: 90,
spe: 65,
},
abilities: ["あついしぼう"],
weightkg: 150.6,
},
{
name: "パールル",
types: ["みず"],
baseStats: {
hp: 35,
atk: 64,
def: 85,
spa: 74,
spd: 55,
spe: 32,
},
abilities: ["シェルアーマー"],
weightkg: 52.5,
},
{
name: "ハンテール",
types: ["みず"],
baseStats: {
hp: 55,
atk: 104,
def: 105,
spa: 94,
spd: 75,
spe: 52,
},
abilities: ["すいすい"],
weightkg: 27,
},
{
name: "サクラビス",
types: ["みず"],
baseStats: {
hp: 55,
atk: 84,
def: 105,
spa: 114,
spd: 75,
spe: 52,
},
abilities: ["すいすい"],
weightkg: 22.6,
},
{
name: "ジーランス",
types: ["みず", "いわ"],
baseStats: {
hp: 100,
atk: 90,
def: 130,
spa: 45,
spd: 65,
spe: 55,
},
abilities: ["すいすい", "いしあたま"],
weightkg: 23.4,
},
{
name: "ラブカス",
types: ["みず"],
baseStats: {
hp: 43,
atk: 30,
def: 55,
spa: 40,
spd: 65,
spe: 97,
},
abilities: ["すいすい"],
weightkg: 8.7,
},
{
name: "タツベイ",
types: ["ドラゴン"],
baseStats: {
hp: 45,
atk: 75,
def: 60,
spa: 40,
spd: 30,
spe: 50,
},
abilities: ["いしあたま"],
weightkg: 42.1,
},
{
name: "コモルー",
types: ["ドラゴン"],
baseStats: {
hp: 65,
atk: 95,
def: 100,
spa: 60,
spd: 50,
spe: 50,
},
abilities: ["いしあたま"],
weightkg: 110.5,
},
{
name: "ボーマンダ",
types: ["ドラゴン", "ひこう"],
baseStats: {
hp: 95,
atk: 135,
def: 80,
spa: 110,
spd: 80,
spe: 100,
},
abilities: ["いかく"],
weightkg: 102.6,
},
{
name: "ダンバル",
types: ["はがね", "エスパー"],
baseStats: {
hp: 40,
atk: 55,
def: 80,
spa: 35,
spd: 60,
spe: 30,
},
abilities: ["クリアボディ"],
weightkg: 95.2,
},
{
name: "メタング",
types: ["はがね", "エスパー"],
baseStats: {
hp: 60,
atk: 75,
def: 100,
spa: 55,
spd: 80,
spe: 50,
},
abilities: ["クリアボディ"],
weightkg: 202.5,
},
{
name: "メタグロス",
types: ["はがね", "エスパー"],
baseStats: {
hp: 80,
atk: 135,
def: 130,
spa: 95,
spd: 90,
spe: 70,
},
abilities: ["クリアボディ"],
weightkg: 550,
},
{
name: "レジロック",
types: ["いわ"],
baseStats: {
hp: 80,
atk: 100,
def: 200,
spa: 50,
spd: 100,
spe: 50,
},
abilities: ["クリアボディ"],
weightkg: 230,
},
{
name: "レジアイス",
types: ["こおり"],
baseStats: {
hp: 80,
atk: 50,
def: 100,
spa: 100,
spd: 200,
spe: 50,
},
abilities: ["クリアボディ"],
weightkg: 175,
},
{
name: "レジスチル",
types: ["はがね"],
baseStats: {
hp: 80,
atk: 75,
def: 150,
spa: 75,
spd: 150,
spe: 50,
},
abilities: ["クリアボディ"],
weightkg: 205,
},
{
name: "ラティアス",
types: ["ドラゴン", "エスパー"],
baseStats: {
hp: 80,
atk: 80,
def: 90,
spa: 110,
spd: 130,
spe: 110,
},
abilities: ["ふゆう"],
weightkg: 40,
},
{
name: "ラティオス",
types: ["ドラゴン", "エスパー"],
baseStats: {
hp: 80,
atk: 90,
def: 80,
spa: 130,
spd: 110,
spe: 110,
},
abilities: ["ふゆう"],
weightkg: 60,
},
{
name: "カイオーガ",
types: ["みず"],
baseStats: {
hp: 100,
atk: 150,
def: 90,
spa: 180,
spd: 160,
spe: 90,
},
abilities: ["あめふらし"],
weightkg: 430,
},
{
name: "グラードン",
types: ["じめん", "ほのお"],
baseStats: {
hp: 100,
atk: 180,
def: 160,
spa: 150,
spd: 90,
spe: 90,
},
abilities: ["ひでり"],
weightkg: 999.7,
},
{
name: "レックウザ",
types: ["ドラゴン", "ひこう"],
baseStats: {
hp: 105,
atk: 150,
def: 90,
spa: 150,
spd: 90,
spe: 95,
},
abilities: ["エアロック"],
weightkg: 206.5,
},
{
name: "ジラーチ",
types: ["はがね", "エスパー"],
baseStats: {
hp: 100,
atk: 100,
def: 100,
spa: 100,
spd: 100,
spe: 100,
},
abilities: ["てんのめぐみ"],
weightkg: 1.1,
},
{
name: "デオキシス",
types: ["エスパー"],
baseStats: {
hp: 50,
atk: 150,
def: 50,
spa: 150,
spd: 50,
spe: 150,
},
abilities: ["プレッシャー"],
weightkg: 60.8,
},
{
name: "デオキシス(アタックフォルム)",
types: ["エスパー"],
baseStats: {
hp: 50,
atk: 180,
def: 20,
spa: 180,
spd: 20,
spe: 150,
},
abilities: ["プレッシャー"],
weightkg: 60.8,
},
{
name: "デオキシス(ディフェンスフォルム)",
types: ["エスパー"],
baseStats: {
hp: 50,
atk: 70,
def: 160,
spa: 70,
spd: 160,
spe: 90,
},
abilities: ["プレッシャー"],
weightkg: 60.8,
},
{
name: "デオキシス(スピードフォルム)",
types: ["エスパー"],
baseStats: {
hp: 50,
atk: 95,
def: 90,
spa: 95,
spd: 90,
spe: 180,
},
abilities: ["プレッシャー"],
weightkg: 60.8,
},
{
name: "ポワルン",
types: ["ノーマル"],
baseStats: {
hp: 70,
atk: 70,
def: 70,
spa: 70,
spd: 70,
spe: 70,
},
abilities: ["てんきや"],
weightkg: 0.8,
},
{
name: "ポワルン(たいようのすがた)",
types: ["ほのお"],
baseStats: {
hp: 70,
atk: 70,
def: 70,
spa: 70,
spd: 70,
spe: 70,
},
abilities: ["てんきや"],
weightkg: 0.8,
},
{
name: "ポワルン(あまみずのすがた)",
types: ["みず"],
baseStats: {
hp: 70,
atk: 70,
def: 70,
spa: 70,
spd: 70,
spe: 70,
},
abilities: ["てんきや"],
weightkg: 0.8,
},
{
name: "ポワルン(ゆきぐものすがた)",
types: ["こおり"],
baseStats: {
hp: 70,
atk: 70,
def: 70,
spa: 70,
spd: 70,
spe: 70,
},
abilities: ["てんきや"],
weightkg: 0.8,
},
] as const satisfies Pokemon[];
export type PokemonName = (typeof POKEMONS)[number]["name"];